summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Borkmann <dborkman@redhat.com>2013-07-03 13:07:19 +0200
committerDaniel Borkmann <dborkman@redhat.com>2013-07-03 13:07:19 +0200
commitcdafc50c08c2daecd96c84c24faf51248b77b6fb (patch)
tree661f539a3abcbbe26b2da3f736163cbd09747a89
parent20425ad2544bd1d8fb2c2c17cfb0a71026816826 (diff)
pcap_io: add LINKTYPE_NETLINK for netlink pcaps
This adds basic linktype support for netlink "nlmon" devices. Todo: we sill need to set the correct pcap type on capturing. Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
-rw-r--r--pcap_io.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/pcap_io.h b/pcap_io.h
index 7739868..5488788 100644
--- a/pcap_io.h
+++ b/pcap_io.h
@@ -35,6 +35,7 @@
#define LINKTYPE_EN10MB 1 /* Ethernet (10Mb) */
#define LINKTYPE_IEEE802_11 105 /* IEEE 802.11 wireless */
+#define LINKTYPE_NETLINK 253 /* Netlink messages */
struct pcap_filehdr {
uint32_t magic;
@@ -573,8 +574,10 @@ static inline void pcap_validate_header(const struct pcap_filehdr *hdr)
switch (hdr->linktype) {
case LINKTYPE_EN10MB:
case LINKTYPE_IEEE802_11:
+ case LINKTYPE_NETLINK:
case ___constant_swab32(LINKTYPE_EN10MB):
case ___constant_swab32(LINKTYPE_IEEE802_11):
+ case ___constant_swab32(LINKTYPE_NETLINK):
break;
default:
panic("This file has not a valid pcap header\n");
new vlan tunnel code - I have kept the vlan tunnel code isolated in separate files. - most of the netlink vlan tunnel code is handling of vlan-tunid ranges (follows the vlan range handling code). To conserve space vlan-tunid by default are always dumped in ranges if applicable. Use case: example use for this is a vxlan bridging gateway or vtep which maps vlans to vn-segments (or vnis). iproute2 example (patched and pruned iproute2 output to just show relevant fdb entries): example shows same host mac learnt on two vni's and vlan 100 maps to vni 1000, vlan 101 maps to vni 1001 before (netdev per vni): $bridge fdb show | grep "00:02:00:00:00:03" 00:02:00:00:00:03 dev vxlan1001 vlan 101 master bridge 00:02:00:00:00:03 dev vxlan1001 dst 12.0.0.8 self 00:02:00:00:00:03 dev vxlan1000 vlan 100 master bridge 00:02:00:00:00:03 dev vxlan1000 dst 12.0.0.8 self after this patch with collect metdata in bridged mode (single netdev): $bridge fdb show | grep "00:02:00:00:00:03" 00:02:00:00:00:03 dev vxlan0 vlan 101 master bridge 00:02:00:00:00:03 dev vxlan0 src_vni 1001 dst 12.0.0.8 self 00:02:00:00:00:03 dev vxlan0 vlan 100 master bridge 00:02:00:00:00:03 dev vxlan0 src_vni 1000 dst 12.0.0.8 self CC: Nikolay Aleksandrov <nikolay@cumulusnetworks.com> Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>