]> The Tcpdump Group git mirrors - tcpdump/blob - print-ether.c
We no longer use "packetp" for anything, so eliminate it. (If any
[tcpdump] / print-ether.c
1 /*
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.
4 *
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
16 * written permission.
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.
20 */
21 #ifndef lint
22 static const char rcsid[] =
23 "@(#) $Header: /tcpdump/master/tcpdump/print-ether.c,v 1.74 2002-12-18 08:53:21 guy Exp $ (LBL)";
24 #endif
25
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include <tcpdump-stdinc.h>
31
32 #include <stdio.h>
33 #include <pcap.h>
34
35 #include "interface.h"
36 #include "addrtoname.h"
37 #include "ethertype.h"
38
39 #include "ether.h"
40
41 const u_char *snapend;
42
43 static inline void
44 ether_hdr_print(register const u_char *bp, u_int length)
45 {
46 register const struct ether_header *ep;
47
48 ep = (const struct ether_header *)bp;
49 if (qflag)
50 (void)printf("%s %s %d: ",
51 etheraddr_string(ESRC(ep)),
52 etheraddr_string(EDST(ep)),
53 length);
54 else
55 (void)printf("%s %s %s %d: ",
56 etheraddr_string(ESRC(ep)),
57 etheraddr_string(EDST(ep)),
58 etherproto_string(ep->ether_type),
59 length);
60 }
61
62 void
63 ether_print(const u_char *p, u_int length, u_int caplen)
64 {
65 struct ether_header *ep;
66 u_short ether_type;
67 u_short extracted_ethertype;
68
69 if (caplen < ETHER_HDRLEN) {
70 printf("[|ether]");
71 return;
72 }
73
74 if (eflag)
75 ether_hdr_print(p, length);
76
77 /*
78 * Some printers want to check that they're not walking off the
79 * end of the packet.
80 * Rather than pass it all the way down, we set this global.
81 */
82 snapend = p + caplen;
83
84 length -= ETHER_HDRLEN;
85 caplen -= ETHER_HDRLEN;
86 ep = (struct ether_header *)p;
87 p += ETHER_HDRLEN;
88
89 ether_type = ntohs(ep->ether_type);
90
91 /*
92 * Is it (gag) an 802.3 encapsulation?
93 */
94 extracted_ethertype = 0;
95 if (ether_type <= ETHERMTU) {
96 /* Try to print the LLC-layer header & higher layers */
97 if (llc_print(p, length, caplen, ESRC(ep), EDST(ep),
98 &extracted_ethertype) == 0) {
99 /* ether_type not known, print raw packet */
100 if (!eflag)
101 ether_hdr_print((u_char *)ep, length + ETHER_HDRLEN);
102 if (extracted_ethertype) {
103 printf("(LLC %s) ",
104 etherproto_string(htons(extracted_ethertype)));
105 }
106 if (!xflag && !qflag)
107 default_print(p, caplen);
108 }
109 } else if (ether_encap_print(ether_type, p, length, caplen,
110 &extracted_ethertype) == 0) {
111 /* ether_type not known, print raw packet */
112 if (!eflag)
113 ether_hdr_print((u_char *)ep, length + ETHER_HDRLEN);
114 if (!xflag && !qflag)
115 default_print(p, caplen);
116 }
117 }
118
119 /*
120 * This is the top level routine of the printer. 'p' points
121 * to the ether header of the packet, 'h->ts' is the timestamp,
122 * 'h->length' is the length of the packet off the wire, and 'h->caplen'
123 * is the number of bytes actually captured.
124 */
125 void
126 ether_if_print(u_char *user _U_, const struct pcap_pkthdr *h, const u_char *p)
127 {
128 u_int caplen = h->caplen;
129 u_int length = h->len;
130
131 ++infodelay;
132 ts_print(&h->ts);
133
134 ether_print(p, length, caplen);
135
136 /*
137 * If "-x" was specified, print stuff past the Ethernet header,
138 * if there's anything to print.
139 */
140 if (xflag && caplen > ETHER_HDRLEN)
141 default_print(p + ETHER_HDRLEN, caplen - ETHER_HDRLEN);
142
143 putchar('\n');
144
145 --infodelay;
146 if (infoprint)
147 info(0);
148 }
149
150 /*
151 * Prints the packet encapsulated in an Ethernet data segment
152 * (or an equivalent encapsulation), given the Ethernet type code.
153 *
154 * Returns non-zero if it can do so, zero if the ethertype is unknown.
155 *
156 * The Ethernet type code is passed through a pointer; if it was
157 * ETHERTYPE_8021Q, it gets updated to be the Ethernet type of
158 * the 802.1Q payload, for the benefit of lower layers that might
159 * want to know what it is.
160 */
161
162 int
163 ether_encap_print(u_short ethertype, const u_char *p,
164 u_int length, u_int caplen, u_short *extracted_ethertype)
165 {
166 recurse:
167 *extracted_ethertype = ethertype;
168
169 switch (ethertype) {
170
171 case ETHERTYPE_IP:
172 ip_print(p, length);
173 return (1);
174
175 #ifdef INET6
176 case ETHERTYPE_IPV6:
177 ip6_print(p, length);
178 return (1);
179 #endif /*INET6*/
180
181 case ETHERTYPE_ARP:
182 case ETHERTYPE_REVARP:
183 arp_print(p, length, caplen);
184 return (1);
185
186 case ETHERTYPE_DN:
187 decnet_print(p, length, caplen);
188 return (1);
189
190 case ETHERTYPE_ATALK:
191 if (vflag)
192 fputs("et1 ", stdout);
193 atalk_print(p, length);
194 return (1);
195
196 case ETHERTYPE_AARP:
197 aarp_print(p, length);
198 return (1);
199
200 case ETHERTYPE_IPX:
201 printf("(NOV-ETHII) ");
202 ipx_print(p, length);
203 return (1);
204
205 case ETHERTYPE_8021Q:
206 printf("802.1Q vlan#%d P%d%s ",
207 ntohs(*(u_int16_t *)p) & 0xfff,
208 ntohs(*(u_int16_t *)p) >> 13,
209 (ntohs(*(u_int16_t *)p) & 0x1000) ? " CFI" : "");
210 ethertype = ntohs(*(u_int16_t *)(p + 2));
211 p += 4;
212 length -= 4;
213 caplen -= 4;
214 if (ethertype > ETHERMTU)
215 goto recurse;
216
217 *extracted_ethertype = 0;
218
219 if (llc_print(p, length, caplen, p - 18, p - 12,
220 extracted_ethertype) == 0) {
221 /* ether_type not known, print raw packet */
222 if (!eflag)
223 ether_hdr_print(p - 18, length + 4);
224 if (*extracted_ethertype) {
225 printf("(LLC %s) ",
226 etherproto_string(htons(*extracted_ethertype)));
227 }
228 if (!xflag && !qflag)
229 default_print(p - 18, caplen + 4);
230 }
231 return (1);
232
233 case ETHERTYPE_PPPOED:
234 case ETHERTYPE_PPPOES:
235 pppoe_print(p, length);
236 return (1);
237
238 case ETHERTYPE_PPP:
239 printf("ppp");
240 if (length) {
241 printf(": ");
242 ppp_print(p, length);
243 }
244 return (1);
245
246 case ETHERTYPE_LOOPBACK:
247 printf("loopback");
248 return (1);
249
250 case ETHERTYPE_MPLS:
251 case ETHERTYPE_MPLS_MULTI:
252 mpls_print(p, length);
253 return (1);
254
255 case ETHERTYPE_LAT:
256 case ETHERTYPE_SCA:
257 case ETHERTYPE_MOPRC:
258 case ETHERTYPE_MOPDL:
259 /* default_print for now */
260 default:
261 return (0);
262 }
263 }