]> The Tcpdump Group git mirrors - tcpdump/blob - print-ether.c
don't pass on src & dst MAC adresses to the isoclns decoder as MAC adresses
[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.80 2003-05-22 14:31:36 hannes 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 ep = (const struct ether_header *)bp;
48
49 (void)printf("%s > %s",
50 etheraddr_string(ESRC(ep)),
51 etheraddr_string(EDST(ep)));
52
53 if (!qflag) {
54 if (ntohs(ep->ether_type) <= ETHERMTU)
55 (void)printf(", 802.2");
56 else
57 (void)printf(", ethertype %s",
58 etherproto_string(ep->ether_type));
59 }
60
61 (void)printf(", length %u: ", length);
62 }
63
64 void
65 ether_print(const u_char *p, u_int length, u_int caplen)
66 {
67 struct ether_header *ep;
68 u_short ether_type;
69 u_short extracted_ethertype;
70
71 if (caplen < ETHER_HDRLEN) {
72 printf("[|ether]");
73 return;
74 }
75
76 if (eflag)
77 ether_hdr_print(p, length);
78
79 length -= ETHER_HDRLEN;
80 caplen -= ETHER_HDRLEN;
81 ep = (struct ether_header *)p;
82 p += ETHER_HDRLEN;
83
84 ether_type = ntohs(ep->ether_type);
85
86 /*
87 * Is it (gag) an 802.3 encapsulation?
88 */
89 extracted_ethertype = 0;
90 if (ether_type <= ETHERMTU) {
91 /* Try to print the LLC-layer header & higher layers */
92 if (llc_print(p, length, caplen, ESRC(ep), EDST(ep),
93 &extracted_ethertype) == 0) {
94 /* ether_type not known, print raw packet */
95 if (!eflag)
96 ether_hdr_print((u_char *)ep, length + ETHER_HDRLEN);
97 if (extracted_ethertype) {
98 printf("(LLC %s) ",
99 etherproto_string(htons(extracted_ethertype)));
100 }
101 if (!xflag && !qflag)
102 default_print(p, caplen);
103 }
104 } else if (ether_encap_print(ether_type, p, length, caplen,
105 &extracted_ethertype) == 0) {
106 /* ether_type not known, print raw packet */
107 if (!eflag)
108 ether_hdr_print((u_char *)ep, length + ETHER_HDRLEN);
109 if (!xflag && !qflag)
110 default_print(p, caplen);
111 }
112 }
113
114 /*
115 * This is the top level routine of the printer. 'p' points
116 * to the ether header of the packet, 'h->ts' is the timestamp,
117 * 'h->length' is the length of the packet off the wire, and 'h->caplen'
118 * is the number of bytes actually captured.
119 */
120 u_int
121 ether_if_print(const struct pcap_pkthdr *h, const u_char *p)
122 {
123 ether_print(p, h->len, h->caplen);
124
125 return (ETHER_HDRLEN);
126 }
127
128 /*
129 * Prints the packet encapsulated in an Ethernet data segment
130 * (or an equivalent encapsulation), given the Ethernet type code.
131 *
132 * Returns non-zero if it can do so, zero if the ethertype is unknown.
133 *
134 * The Ethernet type code is passed through a pointer; if it was
135 * ETHERTYPE_8021Q, it gets updated to be the Ethernet type of
136 * the 802.1Q payload, for the benefit of lower layers that might
137 * want to know what it is.
138 */
139
140 int
141 ether_encap_print(u_short ethertype, const u_char *p,
142 u_int length, u_int caplen, u_short *extracted_ethertype)
143 {
144 recurse:
145 *extracted_ethertype = ethertype;
146
147 switch (ethertype) {
148
149 case ETHERTYPE_IP:
150 ip_print(p, length);
151 return (1);
152
153 #ifdef INET6
154 case ETHERTYPE_IPV6:
155 ip6_print(p, length);
156 return (1);
157 #endif /*INET6*/
158
159 case ETHERTYPE_ARP:
160 case ETHERTYPE_REVARP:
161 arp_print(p, length, caplen);
162 return (1);
163
164 case ETHERTYPE_DN:
165 decnet_print(p, length, caplen);
166 return (1);
167
168 case ETHERTYPE_ATALK:
169 if (vflag)
170 fputs("et1 ", stdout);
171 atalk_print(p, length);
172 return (1);
173
174 case ETHERTYPE_AARP:
175 aarp_print(p, length);
176 return (1);
177
178 case ETHERTYPE_IPX:
179 printf("(NOV-ETHII) ");
180 ipx_print(p, length);
181 return (1);
182
183 case ETHERTYPE_8021Q:
184 printf("802.1Q vlan#%d P%d%s ",
185 ntohs(*(u_int16_t *)p) & 0xfff,
186 ntohs(*(u_int16_t *)p) >> 13,
187 (ntohs(*(u_int16_t *)p) & 0x1000) ? " CFI" : "");
188 ethertype = ntohs(*(u_int16_t *)(p + 2));
189 p += 4;
190 length -= 4;
191 caplen -= 4;
192 if (ethertype > ETHERMTU)
193 goto recurse;
194
195 *extracted_ethertype = 0;
196
197 if (llc_print(p, length, caplen, p - 18, p - 12,
198 extracted_ethertype) == 0) {
199 /* ether_type not known, print raw packet */
200 if (!eflag)
201 ether_hdr_print(p - 18, length + 4);
202 if (*extracted_ethertype) {
203 printf("(LLC %s) ",
204 etherproto_string(htons(*extracted_ethertype)));
205 }
206 if (!xflag && !qflag)
207 default_print(p - 18, caplen + 4);
208 }
209 return (1);
210
211 case ETHERTYPE_PPPOED:
212 case ETHERTYPE_PPPOES:
213 pppoe_print(p, length);
214 return (1);
215
216 case ETHERTYPE_PPP:
217 printf("ppp");
218 if (length) {
219 printf(": ");
220 ppp_print(p, length);
221 }
222 return (1);
223
224 case ETHERTYPE_LOOPBACK:
225 printf("loopback");
226 return (1);
227
228 case ETHERTYPE_MPLS:
229 case ETHERTYPE_MPLS_MULTI:
230 mpls_print(p, length);
231 return (1);
232
233 case ETHERTYPE_LAT:
234 case ETHERTYPE_SCA:
235 case ETHERTYPE_MOPRC:
236 case ETHERTYPE_MOPDL:
237 /* default_print for now */
238 default:
239 return (0);
240 }
241 }