blob: 4bc8ad3a3d2e4738209c9065b143978bd1976693 [file] [log] [blame]
The Android Open Source Project2949f582009-03-03 19:30:46 -08001/*
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
22static const char rcsid[] _U_ =
JP Abgrall53f17a92014-02-12 14:02:41 -080023 "@(#) $Header: /tcpdump/master/tcpdump/print-ether.c,v 1.106 2008-02-06 10:47:53 guy Exp $ (LBL)";
The Android Open Source Project2949f582009-03-03 19:30:46 -080024#endif
25
JP Abgrall53f17a92014-02-12 14:02:41 -080026#define NETDISSECT_REWORKED
The Android Open Source Project2949f582009-03-03 19:30:46 -080027#ifdef HAVE_CONFIG_H
28#include "config.h"
29#endif
30
31#include <tcpdump-stdinc.h>
32
33#include <stdio.h>
34#include <pcap.h>
35
36#include "interface.h"
JP Abgrall53f17a92014-02-12 14:02:41 -080037#include "extract.h"
The Android Open Source Project2949f582009-03-03 19:30:46 -080038#include "addrtoname.h"
39#include "ethertype.h"
The Android Open Source Project2949f582009-03-03 19:30:46 -080040#include "ether.h"
41
42const struct tok ethertype_values[] = {
43 { ETHERTYPE_IP, "IPv4" },
44 { ETHERTYPE_MPLS, "MPLS unicast" },
45 { ETHERTYPE_MPLS_MULTI, "MPLS multicast" },
46 { ETHERTYPE_IPV6, "IPv6" },
47 { ETHERTYPE_8021Q, "802.1Q" },
JP Abgrall53f17a92014-02-12 14:02:41 -080048 { ETHERTYPE_8021Q9100, "802.1Q-9100" },
49 { ETHERTYPE_8021QinQ, "802.1Q-QinQ" },
50 { ETHERTYPE_8021Q9200, "802.1Q-9200" },
The Android Open Source Project2949f582009-03-03 19:30:46 -080051 { ETHERTYPE_VMAN, "VMAN" },
52 { ETHERTYPE_PUP, "PUP" },
53 { ETHERTYPE_ARP, "ARP"},
54 { ETHERTYPE_REVARP, "Reverse ARP"},
55 { ETHERTYPE_NS, "NS" },
56 { ETHERTYPE_SPRITE, "Sprite" },
57 { ETHERTYPE_TRAIL, "Trail" },
58 { ETHERTYPE_MOPDL, "MOP DL" },
59 { ETHERTYPE_MOPRC, "MOP RC" },
60 { ETHERTYPE_DN, "DN" },
61 { ETHERTYPE_LAT, "LAT" },
62 { ETHERTYPE_SCA, "SCA" },
JP Abgrall53f17a92014-02-12 14:02:41 -080063 { ETHERTYPE_TEB, "TEB" },
The Android Open Source Project2949f582009-03-03 19:30:46 -080064 { ETHERTYPE_LANBRIDGE, "Lanbridge" },
65 { ETHERTYPE_DECDNS, "DEC DNS" },
66 { ETHERTYPE_DECDTS, "DEC DTS" },
67 { ETHERTYPE_VEXP, "VEXP" },
68 { ETHERTYPE_VPROD, "VPROD" },
69 { ETHERTYPE_ATALK, "Appletalk" },
70 { ETHERTYPE_AARP, "Appletalk ARP" },
71 { ETHERTYPE_IPX, "IPX" },
72 { ETHERTYPE_PPP, "PPP" },
JP Abgrall53f17a92014-02-12 14:02:41 -080073 { ETHERTYPE_MPCP, "MPCP" },
The Android Open Source Project2949f582009-03-03 19:30:46 -080074 { ETHERTYPE_SLOW, "Slow Protocols" },
75 { ETHERTYPE_PPPOED, "PPPoE D" },
76 { ETHERTYPE_PPPOES, "PPPoE S" },
77 { ETHERTYPE_EAPOL, "EAPOL" },
JP Abgrall53f17a92014-02-12 14:02:41 -080078 { ETHERTYPE_RRCP, "RRCP" },
79 { ETHERTYPE_MS_NLB_HB, "MS NLB heartbeat" },
The Android Open Source Project2949f582009-03-03 19:30:46 -080080 { ETHERTYPE_JUMBO, "Jumbo" },
81 { ETHERTYPE_LOOPBACK, "Loopback" },
82 { ETHERTYPE_ISO, "OSI" },
83 { ETHERTYPE_GRE_ISO, "GRE-OSI" },
JP Abgrall53f17a92014-02-12 14:02:41 -080084 { ETHERTYPE_CFM_OLD, "CFM (old)" },
85 { ETHERTYPE_CFM, "CFM" },
86 { ETHERTYPE_LLDP, "LLDP" },
87 { ETHERTYPE_TIPC, "TIPC"},
88 { ETHERTYPE_GEONET_OLD, "GeoNet (old)"},
89 { ETHERTYPE_GEONET, "GeoNet"},
90 { ETHERTYPE_CALM_FAST, "CALM FAST"},
The Android Open Source Project2949f582009-03-03 19:30:46 -080091 { 0, NULL}
92};
93
94static inline void
JP Abgrall53f17a92014-02-12 14:02:41 -080095ether_hdr_print(netdissect_options *ndo,
96 const u_char *bp, u_int length)
The Android Open Source Project2949f582009-03-03 19:30:46 -080097{
98 register const struct ether_header *ep;
JP Abgrall53f17a92014-02-12 14:02:41 -080099 u_int16_t ether_type;
100
The Android Open Source Project2949f582009-03-03 19:30:46 -0800101 ep = (const struct ether_header *)bp;
102
JP Abgrall53f17a92014-02-12 14:02:41 -0800103 (void)ND_PRINT((ndo, "%s > %s",
The Android Open Source Project2949f582009-03-03 19:30:46 -0800104 etheraddr_string(ESRC(ep)),
JP Abgrall53f17a92014-02-12 14:02:41 -0800105 etheraddr_string(EDST(ep))));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800106
JP Abgrall53f17a92014-02-12 14:02:41 -0800107 ether_type = EXTRACT_16BITS(&ep->ether_type);
108 if (!ndo->ndo_qflag) {
109 if (ether_type <= ETHERMTU)
110 (void)ND_PRINT((ndo, ", 802.3"));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800111 else
JP Abgrall53f17a92014-02-12 14:02:41 -0800112 (void)ND_PRINT((ndo, ", ethertype %s (0x%04x)",
113 tok2str(ethertype_values,"Unknown", ether_type),
114 ether_type));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800115 } else {
JP Abgrall53f17a92014-02-12 14:02:41 -0800116 if (ether_type <= ETHERMTU)
117 (void)ND_PRINT((ndo, ", 802.3"));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800118 else
JP Abgrall53f17a92014-02-12 14:02:41 -0800119 (void)ND_PRINT((ndo, ", %s", tok2str(ethertype_values,"Unknown Ethertype (0x%04x)", ether_type)));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800120 }
121
JP Abgrall53f17a92014-02-12 14:02:41 -0800122 (void)ND_PRINT((ndo, ", length %u: ", length));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800123}
124
JP Abgrall53f17a92014-02-12 14:02:41 -0800125/*
126 * Print an Ethernet frame.
127 * This might be encapsulated within another frame; we might be passed
128 * a pointer to a function that can print header information for that
129 * frame's protocol, and an argument to pass to that function.
130 */
The Android Open Source Project2949f582009-03-03 19:30:46 -0800131void
JP Abgrall53f17a92014-02-12 14:02:41 -0800132ether_print(netdissect_options *ndo,
133 const u_char *p, u_int length, u_int caplen,
134 void (*print_encap_header)(netdissect_options *ndo, const u_char *), const u_char *encap_header_arg)
The Android Open Source Project2949f582009-03-03 19:30:46 -0800135{
136 struct ether_header *ep;
JP Abgrall53f17a92014-02-12 14:02:41 -0800137 u_int orig_length;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800138 u_short ether_type;
139 u_short extracted_ether_type;
140
JP Abgrall53f17a92014-02-12 14:02:41 -0800141 if (caplen < ETHER_HDRLEN || length < ETHER_HDRLEN) {
142 ND_PRINT((ndo, "[|ether]"));
The Android Open Source Project2949f582009-03-03 19:30:46 -0800143 return;
144 }
145
JP Abgrall53f17a92014-02-12 14:02:41 -0800146 if (ndo->ndo_eflag) {
147 if (print_encap_header != NULL)
148 (*print_encap_header)(ndo, encap_header_arg);
149 ether_hdr_print(ndo, p, length);
150 }
151 orig_length = length;
The Android Open Source Project2949f582009-03-03 19:30:46 -0800152
153 length -= ETHER_HDRLEN;
154 caplen -= ETHER_HDRLEN;
155 ep = (struct ether_header *)p;
156 p += ETHER_HDRLEN;
157
JP Abgrall53f17a92014-02-12 14:02:41 -0800158 ether_type = EXTRACT_16BITS(&ep->ether_type);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800159
JP Abgrall53f17a92014-02-12 14:02:41 -0800160recurse:
The Android Open Source Project2949f582009-03-03 19:30:46 -0800161 /*
162 * Is it (gag) an 802.3 encapsulation?
163 */
164 if (ether_type <= ETHERMTU) {
165 /* Try to print the LLC-layer header & higher layers */
166 if (llc_print(p, length, caplen, ESRC(ep), EDST(ep),
167 &extracted_ether_type) == 0) {
168 /* ether_type not known, print raw packet */
JP Abgrall53f17a92014-02-12 14:02:41 -0800169 if (!ndo->ndo_eflag) {
170 if (print_encap_header != NULL)
171 (*print_encap_header)(ndo, encap_header_arg);
172 ether_hdr_print(ndo, (u_char *)ep, orig_length);
173 }
The Android Open Source Project2949f582009-03-03 19:30:46 -0800174
JP Abgrall53f17a92014-02-12 14:02:41 -0800175 if (!ndo->ndo_suppress_default_print)
176 ndo->ndo_default_print(ndo, p, caplen);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800177 }
JP Abgrall53f17a92014-02-12 14:02:41 -0800178 } else if (ether_type == ETHERTYPE_8021Q ||
179 ether_type == ETHERTYPE_8021Q9100 ||
180 ether_type == ETHERTYPE_8021Q9200 ||
181 ether_type == ETHERTYPE_8021QinQ) {
182 /*
183 * Print VLAN information, and then go back and process
184 * the enclosed type field.
185 */
186 if (caplen < 4 || length < 4) {
187 ND_PRINT((ndo, "[|vlan]"));
188 return;
189 }
190 if (ndo->ndo_eflag) {
191 u_int16_t tag = EXTRACT_16BITS(p);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800192
JP Abgrall53f17a92014-02-12 14:02:41 -0800193 ND_PRINT((ndo, "vlan %u, p %u%s, ",
194 tag & 0xfff,
195 tag >> 13,
196 (tag & 0x1000) ? ", CFI" : ""));
197 }
198
199 ether_type = EXTRACT_16BITS(p + 2);
200 if (ndo->ndo_eflag && ether_type > ETHERMTU)
201 ND_PRINT((ndo, "ethertype %s, ", tok2str(ethertype_values,"0x%04x", ether_type)));
202 p += 4;
203 length -= 4;
204 caplen -= 4;
205 goto recurse;
206 } else if (ether_type == ETHERTYPE_JUMBO) {
207 /*
208 * Alteon jumbo frames.
209 * See
210 *
211 * http://tools.ietf.org/html/draft-ietf-isis-ext-eth-01
212 *
213 * which indicates that, following the type field,
214 * there's an LLC header and payload.
215 */
216 /* Try to print the LLC-layer header & higher layers */
217 if (llc_print(p, length, caplen, ESRC(ep), EDST(ep),
218 &extracted_ether_type) == 0) {
219 /* ether_type not known, print raw packet */
220 if (!ndo->ndo_eflag) {
221 if (print_encap_header != NULL)
222 (*print_encap_header)(ndo, encap_header_arg);
223 ether_hdr_print(ndo, (u_char *)ep, orig_length);
224 }
225
226 if (!ndo->ndo_suppress_default_print)
227 ndo->ndo_default_print(ndo, p, caplen);
228 }
229 } else {
230 if (ethertype_print(ndo, ether_type, p, length, caplen) == 0) {
231 /* ether_type not known, print raw packet */
232 if (!ndo->ndo_eflag) {
233 if (print_encap_header != NULL)
234 (*print_encap_header)(ndo, encap_header_arg);
235 ether_hdr_print(ndo, (u_char *)ep, orig_length);
236 }
237
238 if (!ndo->ndo_suppress_default_print)
239 ndo->ndo_default_print(ndo, p, caplen);
240 }
241 }
The Android Open Source Project2949f582009-03-03 19:30:46 -0800242}
243
244/*
245 * This is the top level routine of the printer. 'p' points
246 * to the ether header of the packet, 'h->ts' is the timestamp,
247 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
248 * is the number of bytes actually captured.
249 */
250u_int
JP Abgrall53f17a92014-02-12 14:02:41 -0800251ether_if_print(netdissect_options *ndo, const struct pcap_pkthdr *h,
252 const u_char *p)
The Android Open Source Project2949f582009-03-03 19:30:46 -0800253{
JP Abgrall53f17a92014-02-12 14:02:41 -0800254 ether_print(ndo, p, h->len, h->caplen, NULL, NULL);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800255
256 return (ETHER_HDRLEN);
257}
258
259/*
JP Abgrall53f17a92014-02-12 14:02:41 -0800260 * This is the top level routine of the printer. 'p' points
261 * to the ether header of the packet, 'h->ts' is the timestamp,
262 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
263 * is the number of bytes actually captured.
264 *
265 * This is for DLT_NETANALYZER, which has a 4-byte pseudo-header
266 * before the Ethernet header.
267 */
268u_int
269netanalyzer_if_print(netdissect_options *ndo, const struct pcap_pkthdr *h,
270 const u_char *p)
271{
272 /*
273 * Fail if we don't have enough data for the Hilscher pseudo-header.
274 */
275 if (h->len < 4 || h->caplen < 4) {
276 printf("[|netanalyzer]");
277 return (h->caplen);
278 }
279
280 /* Skip the pseudo-header. */
281 ether_print(ndo, p + 4, h->len - 4, h->caplen - 4, NULL, NULL);
282
283 return (4 + ETHER_HDRLEN);
284}
285
286/*
287 * This is the top level routine of the printer. 'p' points
288 * to the ether header of the packet, 'h->ts' is the timestamp,
289 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
290 * is the number of bytes actually captured.
291 *
292 * This is for DLT_NETANALYZER_TRANSPARENT, which has a 4-byte
293 * pseudo-header, a 7-byte Ethernet preamble, and a 1-byte Ethernet SOF
294 * before the Ethernet header.
295 */
296u_int
297netanalyzer_transparent_if_print(netdissect_options *ndo,
298 const struct pcap_pkthdr *h,
299 const u_char *p)
300{
301 /*
302 * Fail if we don't have enough data for the Hilscher pseudo-header,
303 * preamble, and SOF.
304 */
305 if (h->len < 12 || h->caplen < 12) {
306 printf("[|netanalyzer-transparent]");
307 return (h->caplen);
308 }
309
310 /* Skip the pseudo-header, preamble, and SOF. */
311 ether_print(ndo, p + 12, h->len - 12, h->caplen - 12, NULL, NULL);
312
313 return (12 + ETHER_HDRLEN);
314}
315
316/*
317 * Prints the packet payload, given an Ethernet type code for the payload's
318 * protocol.
The Android Open Source Project2949f582009-03-03 19:30:46 -0800319 *
320 * Returns non-zero if it can do so, zero if the ethertype is unknown.
The Android Open Source Project2949f582009-03-03 19:30:46 -0800321 */
322
323int
JP Abgrall53f17a92014-02-12 14:02:41 -0800324ethertype_print(netdissect_options *ndo,
325 u_short ether_type, const u_char *p,
326 u_int length, u_int caplen)
The Android Open Source Project2949f582009-03-03 19:30:46 -0800327{
The Android Open Source Project2949f582009-03-03 19:30:46 -0800328 switch (ether_type) {
329
330 case ETHERTYPE_IP:
JP Abgrall53f17a92014-02-12 14:02:41 -0800331 ip_print(ndo, p, length);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800332 return (1);
333
334#ifdef INET6
335 case ETHERTYPE_IPV6:
JP Abgrall53f17a92014-02-12 14:02:41 -0800336 ip6_print(ndo, p, length);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800337 return (1);
338#endif /*INET6*/
339
340 case ETHERTYPE_ARP:
341 case ETHERTYPE_REVARP:
JP Abgrall53f17a92014-02-12 14:02:41 -0800342 arp_print(ndo, p, length, caplen);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800343 return (1);
344
345 case ETHERTYPE_DN:
JP Abgrall53f17a92014-02-12 14:02:41 -0800346 decnet_print(/*ndo,*/p, length, caplen);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800347 return (1);
348
349 case ETHERTYPE_ATALK:
JP Abgrall53f17a92014-02-12 14:02:41 -0800350 if (ndo->ndo_vflag)
The Android Open Source Project2949f582009-03-03 19:30:46 -0800351 fputs("et1 ", stdout);
JP Abgrall53f17a92014-02-12 14:02:41 -0800352 atalk_print(/*ndo,*/p, length);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800353 return (1);
354
355 case ETHERTYPE_AARP:
JP Abgrall53f17a92014-02-12 14:02:41 -0800356 aarp_print(/*ndo,*/p, length);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800357 return (1);
358
359 case ETHERTYPE_IPX:
JP Abgrall53f17a92014-02-12 14:02:41 -0800360 ND_PRINT((ndo, "(NOV-ETHII) "));
361 ipx_print(/*ndo,*/p, length);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800362 return (1);
363
The Android Open Source Project2949f582009-03-03 19:30:46 -0800364 case ETHERTYPE_ISO:
JP Abgrall53f17a92014-02-12 14:02:41 -0800365 isoclns_print(/*ndo,*/p+1, length-1, length-1);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800366 return(1);
367
368 case ETHERTYPE_PPPOED:
369 case ETHERTYPE_PPPOES:
JP Abgrall53f17a92014-02-12 14:02:41 -0800370 case ETHERTYPE_PPPOED2:
371 case ETHERTYPE_PPPOES2:
372 pppoe_print(/*ndo,*/p, length);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800373 return (1);
374
375 case ETHERTYPE_EAPOL:
JP Abgrall53f17a92014-02-12 14:02:41 -0800376 eap_print(ndo, p, length);
377 return (1);
378
379 case ETHERTYPE_RRCP:
380 rrcp_print(ndo, p - 14 , length + 14);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800381 return (1);
382
383 case ETHERTYPE_PPP:
384 if (length) {
385 printf(": ");
JP Abgrall53f17a92014-02-12 14:02:41 -0800386 ppp_print(/*ndo,*/p, length);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800387 }
388 return (1);
389
JP Abgrall53f17a92014-02-12 14:02:41 -0800390 case ETHERTYPE_MPCP:
391 mpcp_print(/*ndo,*/p, length);
392 return (1);
393
The Android Open Source Project2949f582009-03-03 19:30:46 -0800394 case ETHERTYPE_SLOW:
JP Abgrall53f17a92014-02-12 14:02:41 -0800395 slow_print(/*ndo,*/p, length);
396 return (1);
397
398 case ETHERTYPE_CFM:
399 case ETHERTYPE_CFM_OLD:
400 cfm_print(/*ndo,*/p, length);
401 return (1);
402
403 case ETHERTYPE_LLDP:
404 lldp_print(/*ndo,*/p, length);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800405 return (1);
406
407 case ETHERTYPE_LOOPBACK:
408 return (1);
409
410 case ETHERTYPE_MPLS:
411 case ETHERTYPE_MPLS_MULTI:
JP Abgrall53f17a92014-02-12 14:02:41 -0800412 mpls_print(/*ndo,*/p, length);
The Android Open Source Project2949f582009-03-03 19:30:46 -0800413 return (1);
414
JP Abgrall53f17a92014-02-12 14:02:41 -0800415 case ETHERTYPE_TIPC:
416 tipc_print(ndo, p, length, caplen);
417 return (1);
418
419 case ETHERTYPE_MS_NLB_HB:
420 msnlb_print(ndo, p);
421 return (1);
422
423 case ETHERTYPE_GEONET_OLD:
424 case ETHERTYPE_GEONET:
425 geonet_print(ndo, p-14, p, length);
426 return (1);
427
428 case ETHERTYPE_CALM_FAST:
429 calm_fast_print(ndo, p-14, p, length);
430 return (1);
431
The Android Open Source Project2949f582009-03-03 19:30:46 -0800432 case ETHERTYPE_LAT:
433 case ETHERTYPE_SCA:
434 case ETHERTYPE_MOPRC:
435 case ETHERTYPE_MOPDL:
436 /* default_print for now */
437 default:
438 return (0);
439 }
440}
441
442
443/*
444 * Local Variables:
445 * c-style: whitesmith
446 * c-basic-offset: 8
447 * End:
448 */
449