summaryrefslogtreecommitdiff
path: root/ring.h
diff options
context:
space:
mode:
authorVadim Kochan <vadim4j@gmail.com>2015-08-17 00:21:31 +0300
committerTobias Klauser <tklauser@distanz.ch>2015-08-17 09:54:55 +0200
commit579e8524cb9c68dab9117981966b18d2494b0787 (patch)
tree2bbf08b50cd14071a0602bbb9dbd116dd1612c82 /ring.h
parentf4b90d0194cdb5275823116b2229c04249225d7e (diff)
netsniff-ng: vlan: Show vlan info from tpacket v3
Show vlan info (vid, prio & proto) from tpacket struct, in separated line. It might be useful to sniff it in case if vlan reordering is on (which is by default) and physical (vlan underlying) device supports vlan offloading. Meanwhile it uses only v3 tpacket info as location of vlan fields are different between v2 & v3 (v1 does not have it at all), but current code only has possibility to check if v3 is used which is not enough. Signed-off-by: Vadim Kochan <vadim4j@gmail.com> [ tk: make print format consistent with VLAN dissector ] Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'ring.h')
-rw-r--r--ring.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/ring.h b/ring.h
index e9f1b18..c8562b8 100644
--- a/ring.h
+++ b/ring.h
@@ -47,6 +47,30 @@ union tpacket_uhdr {
(((hdr).h2)->member)
#endif /* HAVE_TPACKET3 */
+static inline uint16_t tpacket_uhdr_vlan_tci(union tpacket_uhdr *hdr, bool v3)
+{
+#ifdef HAVE_TPACKET3
+ if (v3)
+ return hdr->h3->hv1.tp_vlan_tci;
+#endif
+ return 0;
+}
+
+static inline uint16_t tpacket_uhdr_vlan_proto(union tpacket_uhdr *hdr, bool v3)
+{
+#ifdef HAVE_TPACKET3
+ if (v3)
+ return hdr->h3->hv1.tp_vlan_tpid;
+#endif
+ return 0;
+}
+
+static inline bool tpacket_has_vlan_info(union tpacket_uhdr *hdr)
+{
+ return tpacket_uhdr(*hdr, tp_status, true) &
+ (TP_STATUS_VLAN_VALID | TP_STATUS_VLAN_TPID_VALID);
+}
+
struct frame_map {
struct tpacket2_hdr tp_h __aligned_tpacket;
struct sockaddr_ll s_ll __align_tpacket(sizeof(struct tpacket2_hdr));