summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorChris Cappuccio <chris@cvs.openbsd.org>2000-03-07 16:50:43 +0000
committerChris Cappuccio <chris@cvs.openbsd.org>2000-03-07 16:50:43 +0000
commit14d1411845fca4e0dedd5d642004e0ce400684ff (patch)
tree93d92717bcced9a655ced34cf30ce369f6120108 /usr.sbin
parenteff77ed475acbd1cdaae5dd438ab2540e16ba401 (diff)
Add 802.1Q from kuznet@ms2.inr.ac.ru via tcpdump.org
also, make extracted_ethertype not extern
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/tcpdump/print-ether.c35
-rw-r--r--usr.sbin/tcpdump/print-fddi.c4
2 files changed, 33 insertions, 6 deletions
diff --git a/usr.sbin/tcpdump/print-ether.c b/usr.sbin/tcpdump/print-ether.c
index d561cce4dc2..2e8659bde70 100644
--- a/usr.sbin/tcpdump/print-ether.c
+++ b/usr.sbin/tcpdump/print-ether.c
@@ -20,7 +20,7 @@
*/
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-ether.c,v 1.12 2000/02/19 14:55:18 chris Exp $ (LBL)";
+ "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-ether.c,v 1.13 2000/03/07 16:50:42 chris Exp $ (LBL)";
#endif
#include <sys/param.h>
@@ -72,6 +72,8 @@ ether_print(register const u_char *bp, u_int length)
length);
}
+static u_short extracted_ethertype;
+
/*
* This is the top level routine of the printer. 'p' is the points
* to the ether header of the packet, 'tvp' is the timestamp,
@@ -85,7 +87,6 @@ ether_if_print(u_char *user, const struct pcap_pkthdr *h, const u_char *p)
u_int length = h->len;
struct ether_header *ep;
u_short ether_type;
- extern u_short extracted_ethertype;
ts_print(&h->ts);
@@ -152,12 +153,11 @@ ether_if_print(u_char *user, const struct pcap_pkthdr *h, const u_char *p)
* that might want to know what it is.
*/
-u_short extracted_ethertype;
-
int
ether_encap_print(u_short ethertype, const u_char *p,
u_int length, u_int caplen)
{
+recurse:
extracted_ethertype = ethertype;
switch (ethertype) {
@@ -185,6 +185,33 @@ ether_encap_print(u_short ethertype, const u_char *p,
aarp_print(p, length);
return (1);
+ case ETHERTYPE_VLAN:
+ printf("802.1Q vid %d pri %d%s",
+ ntohs(*(unsigned short*)p)&0xFFF,
+ ntohs(*(unsigned short*)p)>>13,
+ (ntohs(*(unsigned short*)p)&0x1000) ? " cfi " : " ");
+ ethertype = ntohs(*(unsigned short*)(p+2));
+ p += 4;
+ length -= 4;
+ caplen -= 4;
+ if (ethertype > ETHERMTU)
+ goto recurse;
+
+ extracted_ethertype = 0;
+
+ if (llc_print(p, length, caplen, p-18, p-12) == 0) {
+ /* ether_type not known, print raw packet */
+ if (!eflag)
+ ether_print(p-18, length+4);
+ if (extracted_ethertype) {
+ printf("(LLC %s) ",
+ etherproto_string(htons(extracted_ethertype)));
+ }
+ if (!xflag && !qflag)
+ default_print(p-18, caplen+4);
+ }
+ return (1);
+
#ifdef PPP
case ETHERTYPE_PPPOEDISC:
case ETHERTYPE_PPPOE:
diff --git a/usr.sbin/tcpdump/print-fddi.c b/usr.sbin/tcpdump/print-fddi.c
index afc1ee63721..eadc798d802 100644
--- a/usr.sbin/tcpdump/print-fddi.c
+++ b/usr.sbin/tcpdump/print-fddi.c
@@ -21,7 +21,7 @@
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-fddi.c,v 1.8 1999/09/16 20:58:46 brad Exp $ (LBL)";
+ "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-fddi.c,v 1.9 2000/03/07 16:50:42 chris Exp $ (LBL)";
#endif
#ifdef HAVE_FDDI
@@ -267,8 +267,8 @@ fddi_if_print(u_char *pcap, const struct pcap_pkthdr *h,
{
u_int caplen = h->caplen;
u_int length = h->len;
+ u_short extracted_ethertype;
const struct fddi_header *fddip = (struct fddi_header *)p;
- extern u_short extracted_ethertype;
struct ether_header ehdr;
ts_print(&h->ts);