2 * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
22 static const char rcsid
[] =
23 "@(#) $Header: /tcpdump/master/tcpdump/print-ether.c,v 1.73 2002-09-05 21:25:40 guy Exp $ (LBL)";
30 #include <tcpdump-stdinc.h>
35 #include "interface.h"
36 #include "addrtoname.h"
37 #include "ethertype.h"
41 const u_char
*packetp
;
42 const u_char
*snapend
;
45 ether_hdr_print(register const u_char
*bp
, u_int length
)
47 register const struct ether_header
*ep
;
49 ep
= (const struct ether_header
*)bp
;
51 (void)printf("%s %s %d: ",
52 etheraddr_string(ESRC(ep
)),
53 etheraddr_string(EDST(ep
)),
56 (void)printf("%s %s %s %d: ",
57 etheraddr_string(ESRC(ep
)),
58 etheraddr_string(EDST(ep
)),
59 etherproto_string(ep
->ether_type
),
64 ether_print(const u_char
*p
, u_int length
, u_int caplen
)
66 struct ether_header
*ep
;
68 u_short extracted_ethertype
;
70 if (caplen
< ETHER_HDRLEN
) {
76 ether_hdr_print(p
, length
);
79 * Some printers want to get back at the ethernet addresses,
80 * and/or check that they're not walking off the end of the packet.
81 * Rather than pass them all the way down, we set these globals.
86 length
-= ETHER_HDRLEN
;
87 caplen
-= ETHER_HDRLEN
;
88 ep
= (struct ether_header
*)p
;
91 ether_type
= ntohs(ep
->ether_type
);
94 * Is it (gag) an 802.3 encapsulation?
96 extracted_ethertype
= 0;
97 if (ether_type
<= ETHERMTU
) {
98 /* Try to print the LLC-layer header & higher layers */
99 if (llc_print(p
, length
, caplen
, ESRC(ep
), EDST(ep
),
100 &extracted_ethertype
) == 0) {
101 /* ether_type not known, print raw packet */
103 ether_hdr_print((u_char
*)ep
, length
+ ETHER_HDRLEN
);
104 if (extracted_ethertype
) {
106 etherproto_string(htons(extracted_ethertype
)));
108 if (!xflag
&& !qflag
)
109 default_print(p
, caplen
);
111 } else if (ether_encap_print(ether_type
, p
, length
, caplen
,
112 &extracted_ethertype
) == 0) {
113 /* ether_type not known, print raw packet */
115 ether_hdr_print((u_char
*)ep
, length
+ ETHER_HDRLEN
);
116 if (!xflag
&& !qflag
)
117 default_print(p
, caplen
);
122 * This is the top level routine of the printer. 'p' points
123 * to the ether header of the packet, 'h->ts' is the timestamp,
124 * 'h->length' is the length of the packet off the wire, and 'h->caplen'
125 * is the number of bytes actually captured.
128 ether_if_print(u_char
*user _U_
, const struct pcap_pkthdr
*h
, const u_char
*p
)
130 u_int caplen
= h
->caplen
;
131 u_int length
= h
->len
;
136 ether_print(p
, length
, caplen
);
139 * If "-x" was specified, print stuff past the Ethernet header,
140 * if there's anything to print.
142 if (xflag
&& caplen
> ETHER_HDRLEN
)
143 default_print(p
+ ETHER_HDRLEN
, caplen
- ETHER_HDRLEN
);
153 * Prints the packet encapsulated in an Ethernet data segment
154 * (or an equivalent encapsulation), given the Ethernet type code.
156 * Returns non-zero if it can do so, zero if the ethertype is unknown.
158 * The Ethernet type code is passed through a pointer; if it was
159 * ETHERTYPE_8021Q, it gets updated to be the Ethernet type of
160 * the 802.1Q payload, for the benefit of lower layers that might
161 * want to know what it is.
165 ether_encap_print(u_short ethertype
, const u_char
*p
,
166 u_int length
, u_int caplen
, u_short
*extracted_ethertype
)
169 *extracted_ethertype
= ethertype
;
179 ip6_print(p
, length
);
184 case ETHERTYPE_REVARP
:
185 arp_print(p
, length
, caplen
);
189 decnet_print(p
, length
, caplen
);
192 case ETHERTYPE_ATALK
:
194 fputs("et1 ", stdout
);
195 atalk_print(p
, length
);
199 aarp_print(p
, length
);
203 printf("(NOV-ETHII) ");
204 ipx_print(p
, length
);
207 case ETHERTYPE_8021Q
:
208 printf("802.1Q vlan#%d P%d%s ",
209 ntohs(*(u_int16_t
*)p
) & 0xfff,
210 ntohs(*(u_int16_t
*)p
) >> 13,
211 (ntohs(*(u_int16_t
*)p
) & 0x1000) ? " CFI" : "");
212 ethertype
= ntohs(*(u_int16_t
*)(p
+ 2));
216 if (ethertype
> ETHERMTU
)
219 *extracted_ethertype
= 0;
221 if (llc_print(p
, length
, caplen
, p
- 18, p
- 12,
222 extracted_ethertype
) == 0) {
223 /* ether_type not known, print raw packet */
225 ether_hdr_print(p
- 18, length
+ 4);
226 if (*extracted_ethertype
) {
228 etherproto_string(htons(*extracted_ethertype
)));
230 if (!xflag
&& !qflag
)
231 default_print(p
- 18, caplen
+ 4);
235 case ETHERTYPE_PPPOED
:
236 case ETHERTYPE_PPPOES
:
237 pppoe_print(p
, length
);
244 ppp_print(p
, length
);
248 case ETHERTYPE_LOOPBACK
:
253 case ETHERTYPE_MPLS_MULTI
:
254 mpls_print(p
, length
);
259 case ETHERTYPE_MOPRC
:
260 case ETHERTYPE_MOPDL
:
261 /* default_print for now */