Expand PMF_FN_* macros.
[netbsd-mini2440.git] / dist / tcpdump / print-ether.c
blob859398f158002237809455f86ab5d5f94acd38f7
1 /* $NetBSD$ */
3 /*
4 * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that: (1) source code distributions
9 * retain the above copyright notice and this paragraph in its entirety, (2)
10 * distributions including binary code include the above copyright notice and
11 * this paragraph in its entirety in the documentation or other materials
12 * provided with the distribution, and (3) all advertising materials mentioning
13 * features or use of this software display the following acknowledgement:
14 * ``This product includes software developed by the University of California,
15 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
16 * the University nor the names of its contributors may be used to endorse
17 * or promote products derived from this software without specific prior
18 * written permission.
19 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
20 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
23 #include <sys/cdefs.h>
24 #ifndef lint
25 #if 0
26 static const char rcsid[] _U_ =
27 "@(#) Header: /tcpdump/master/tcpdump/print-ether.c,v 1.95.2.6 2006/02/20 18:15:03 hannes Exp (LBL)";
28 #else
29 __RCSID("$NetBSD: tcpdump2rcsid.ex,v 1.1 2001/06/25 20:09:58 itojun Exp $");
30 #endif
31 #endif
33 #ifdef HAVE_CONFIG_H
34 #include "config.h"
35 #endif
37 #include <tcpdump-stdinc.h>
39 #include <stdio.h>
40 #include <pcap.h>
42 #include "interface.h"
43 #include "addrtoname.h"
44 #include "ethertype.h"
46 #include "ether.h"
48 const struct tok ethertype_values[] = {
49 { ETHERTYPE_IP, "IPv4" },
50 { ETHERTYPE_MPLS, "MPLS unicast" },
51 { ETHERTYPE_MPLS_MULTI, "MPLS multicast" },
52 { ETHERTYPE_IPV6, "IPv6" },
53 { ETHERTYPE_8021Q, "802.1Q" },
54 { ETHERTYPE_VMAN, "VMAN" },
55 { ETHERTYPE_PUP, "PUP" },
56 { ETHERTYPE_ARP, "ARP"},
57 { ETHERTYPE_REVARP, "Reverse ARP"},
58 { ETHERTYPE_NS, "NS" },
59 { ETHERTYPE_SPRITE, "Sprite" },
60 { ETHERTYPE_TRAIL, "Trail" },
61 { ETHERTYPE_MOPDL, "MOP DL" },
62 { ETHERTYPE_MOPRC, "MOP RC" },
63 { ETHERTYPE_DN, "DN" },
64 { ETHERTYPE_LAT, "LAT" },
65 { ETHERTYPE_SCA, "SCA" },
66 { ETHERTYPE_LANBRIDGE, "Lanbridge" },
67 { ETHERTYPE_DECDNS, "DEC DNS" },
68 { ETHERTYPE_DECDTS, "DEC DTS" },
69 { ETHERTYPE_VEXP, "VEXP" },
70 { ETHERTYPE_VPROD, "VPROD" },
71 { ETHERTYPE_ATALK, "Appletalk" },
72 { ETHERTYPE_AARP, "Appletalk ARP" },
73 { ETHERTYPE_IPX, "IPX" },
74 { ETHERTYPE_PPP, "PPP" },
75 { ETHERTYPE_SLOW, "Slow Protocols" },
76 { ETHERTYPE_PPPOED, "PPPoE D" },
77 { ETHERTYPE_PPPOES, "PPPoE S" },
78 { ETHERTYPE_EAPOL, "EAPOL" },
79 { ETHERTYPE_JUMBO, "Jumbo" },
80 { ETHERTYPE_LOOPBACK, "Loopback" },
81 { ETHERTYPE_ISO, "OSI" },
82 { ETHERTYPE_GRE_ISO, "GRE-OSI" },
83 { 0, NULL}
86 static inline void
87 ether_hdr_print(register const u_char *bp, u_int length)
89 register const struct ether_header *ep;
90 ep = (const struct ether_header *)bp;
92 (void)printf("%s > %s",
93 etheraddr_string(ESRC(ep)),
94 etheraddr_string(EDST(ep)));
96 if (!qflag) {
97 if (ntohs(ep->ether_type) <= ETHERMTU)
98 (void)printf(", 802.3");
99 else
100 (void)printf(", ethertype %s (0x%04x)",
101 tok2str(ethertype_values,"Unknown", ntohs(ep->ether_type)),
102 ntohs(ep->ether_type));
103 } else {
104 if (ntohs(ep->ether_type) <= ETHERMTU)
105 (void)printf(", 802.3");
106 else
107 (void)printf(", %s", tok2str(ethertype_values,"Unknown Ethertype (0x%04x)", ntohs(ep->ether_type)));
110 (void)printf(", length %u: ", length);
113 void
114 ether_print(const u_char *p, u_int length, u_int caplen)
116 struct ether_header *ep;
117 u_short ether_type;
118 u_short extracted_ether_type;
120 if (caplen < ETHER_HDRLEN) {
121 printf("[|ether]");
122 return;
125 if (eflag)
126 ether_hdr_print(p, length);
128 length -= ETHER_HDRLEN;
129 caplen -= ETHER_HDRLEN;
130 ep = (struct ether_header *)p;
131 p += ETHER_HDRLEN;
133 ether_type = ntohs(ep->ether_type);
136 * Is it (gag) an 802.3 encapsulation?
138 if (ether_type <= ETHERMTU) {
139 /* Try to print the LLC-layer header & higher layers */
140 if (llc_print(p, length, caplen, ESRC(ep), EDST(ep),
141 &extracted_ether_type) == 0) {
142 /* ether_type not known, print raw packet */
143 if (!eflag)
144 ether_hdr_print((u_char *)ep, length + ETHER_HDRLEN);
146 if (!suppress_default_print)
147 default_print(p, caplen);
149 } else if (ether_encap_print(ether_type, p, length, caplen,
150 &extracted_ether_type) == 0) {
151 /* ether_type not known, print raw packet */
152 if (!eflag)
153 ether_hdr_print((u_char *)ep, length + ETHER_HDRLEN);
155 if (!suppress_default_print)
156 default_print(p, caplen);
161 * This is the top level routine of the printer. 'p' points
162 * to the ether header of the packet, 'h->ts' is the timestamp,
163 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
164 * is the number of bytes actually captured.
166 u_int
167 ether_if_print(const struct pcap_pkthdr *h, const u_char *p)
169 ether_print(p, h->len, h->caplen);
171 return (ETHER_HDRLEN);
175 * Prints the packet encapsulated in an Ethernet data segment
176 * (or an equivalent encapsulation), given the Ethernet type code.
178 * Returns non-zero if it can do so, zero if the ethertype is unknown.
180 * The Ethernet type code is passed through a pointer; if it was
181 * ETHERTYPE_8021Q, it gets updated to be the Ethernet type of
182 * the 802.1Q payload, for the benefit of lower layers that might
183 * want to know what it is.
187 ether_encap_print(u_short ether_type, const u_char *p,
188 u_int length, u_int caplen, u_short *extracted_ether_type)
190 recurse:
191 *extracted_ether_type = ether_type;
193 switch (ether_type) {
195 case ETHERTYPE_IP:
196 ip_print(gndo, p, length);
197 return (1);
199 #ifdef INET6
200 case ETHERTYPE_IPV6:
201 ip6_print(p, length);
202 return (1);
203 #endif /*INET6*/
205 case ETHERTYPE_ARP:
206 case ETHERTYPE_REVARP:
207 arp_print(gndo, p, length, caplen);
208 return (1);
210 case ETHERTYPE_DN:
211 decnet_print(p, length, caplen);
212 return (1);
214 case ETHERTYPE_ATALK:
215 if (vflag)
216 fputs("et1 ", stdout);
217 atalk_print(p, length);
218 return (1);
220 case ETHERTYPE_AARP:
221 aarp_print(p, length);
222 return (1);
224 case ETHERTYPE_IPX:
225 printf("(NOV-ETHII) ");
226 ipx_print(p, length);
227 return (1);
229 case ETHERTYPE_8021Q:
230 if (eflag)
231 printf("vlan %u, p %u%s, ",
232 ntohs(*(u_int16_t *)p) & 0xfff,
233 ntohs(*(u_int16_t *)p) >> 13,
234 (ntohs(*(u_int16_t *)p) & 0x1000) ? ", CFI" : "");
236 ether_type = ntohs(*(u_int16_t *)(p + 2));
237 p += 4;
238 length -= 4;
239 caplen -= 4;
241 if (ether_type > ETHERMTU) {
242 if (eflag)
243 printf("ethertype %s, ",
244 tok2str(ethertype_values,"0x%04x", ether_type));
245 goto recurse;
248 *extracted_ether_type = 0;
250 if (llc_print(p, length, caplen, p - 18, p - 12,
251 extracted_ether_type) == 0) {
252 ether_hdr_print(p - 18, length + 4);
254 if (!suppress_default_print) {
255 default_print(p - 18, caplen + 4);
260 return (1);
262 case ETHERTYPE_JUMBO:
263 ether_type = ntohs(*(u_int16_t *)(p));
264 p += 2;
265 length -= 2;
266 caplen -= 2;
268 if (ether_type > ETHERMTU) {
269 if (eflag)
270 printf("ethertype %s, ",
271 tok2str(ethertype_values,"0x%04x", ether_type));
272 goto recurse;
275 *extracted_ether_type = 0;
277 if (llc_print(p, length, caplen, p - 16, p - 10,
278 extracted_ether_type) == 0) {
279 ether_hdr_print(p - 16, length + 2);
281 if (!suppress_default_print) {
282 default_print(p - 16, caplen + 2);
286 return (1);
288 case ETHERTYPE_ISO:
289 isoclns_print(p+1, length-1, length-1);
290 return(1);
292 case ETHERTYPE_PPPOED:
293 case ETHERTYPE_PPPOES:
294 pppoe_print(p, length);
295 return (1);
297 case ETHERTYPE_EAPOL:
298 eap_print(gndo, p, length);
299 return (1);
301 case ETHERTYPE_PPP:
302 if (length) {
303 printf(": ");
304 ppp_print(p, length);
306 return (1);
308 case ETHERTYPE_SLOW:
309 slow_print(p, length);
310 return (1);
312 case ETHERTYPE_LOOPBACK:
313 return (1);
315 case ETHERTYPE_MPLS:
316 case ETHERTYPE_MPLS_MULTI:
317 mpls_print(p, length);
318 return (1);
320 case ETHERTYPE_LAT:
321 case ETHERTYPE_SCA:
322 case ETHERTYPE_MOPRC:
323 case ETHERTYPE_MOPDL:
324 /* default_print for now */
325 default:
326 return (0);
332 * Local Variables:
333 * c-style: whitesmith
334 * c-basic-offset: 8
335 * End: