2 * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
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.46 1999-10-30 05:11:13 itojun Exp $ (LBL)";
26 #include <sys/param.h>
28 #include <sys/socket.h>
36 #include <netinet/in.h>
37 #include <netinet/if_ether.h>
38 #include <netinet/in_systm.h>
39 #include <netinet/ip.h>
40 #include <netinet/ip_var.h>
41 #include <netinet/udp.h>
42 #include <netinet/udp_var.h>
43 #include <netinet/tcp.h>
49 #include <netinet/ip6.h>
52 #include "interface.h"
53 #include "addrtoname.h"
54 #include "ethertype.h"
56 const u_char
*packetp
;
57 const u_char
*snapend
;
60 ether_print(register const u_char
*bp
, u_int length
)
62 register const struct ether_header
*ep
;
64 ep
= (const struct ether_header
*)bp
;
66 (void)printf("%s %s %d: ",
67 etheraddr_string(ESRC(ep
)),
68 etheraddr_string(EDST(ep
)),
71 (void)printf("%s %s %s %d: ",
72 etheraddr_string(ESRC(ep
)),
73 etheraddr_string(EDST(ep
)),
74 etherproto_string(ep
->ether_type
),
79 * This is the top level routine of the printer. 'p' is the points
80 * to the ether header of the packet, 'tvp' is the timestamp,
81 * 'length' is the length of the packet off the wire, and 'caplen'
82 * is the number of bytes actually captured.
85 ether_if_print(u_char
*user
, const struct pcap_pkthdr
*h
, const u_char
*p
)
87 u_int caplen
= h
->caplen
;
88 u_int length
= h
->len
;
89 struct ether_header
*ep
;
91 extern u_short extracted_ethertype
;
95 if (caplen
< sizeof(struct ether_header
)) {
101 ether_print(p
, length
);
104 * Some printers want to get back at the ethernet addresses,
105 * and/or check that they're not walking off the end of the packet.
106 * Rather than pass them all the way down, we set these globals.
109 snapend
= p
+ caplen
;
111 length
-= sizeof(struct ether_header
);
112 caplen
-= sizeof(struct ether_header
);
113 ep
= (struct ether_header
*)p
;
114 p
+= sizeof(struct ether_header
);
116 ether_type
= ntohs(ep
->ether_type
);
119 * Is it (gag) an 802.3 encapsulation?
121 extracted_ethertype
= 0;
122 if (ether_type
<= ETHERMTU
) {
123 /* Try to print the LLC-layer header & higher layers */
124 if (llc_print(p
, length
, caplen
, ESRC(ep
), EDST(ep
)) == 0) {
125 /* ether_type not known, print raw packet */
127 ether_print((u_char
*)ep
, length
);
128 if (extracted_ethertype
) {
130 etherproto_string(htons(extracted_ethertype
)));
132 if (!xflag
&& !qflag
)
133 default_print(p
, caplen
);
135 } else if (ether_encap_print(ether_type
, p
, length
, caplen
) == 0) {
136 /* ether_type not known, print raw packet */
138 ether_print((u_char
*)ep
, length
+ sizeof(*ep
));
139 if (!xflag
&& !qflag
)
140 default_print(p
, caplen
);
143 default_print(p
, caplen
);
149 * Prints the packet encapsulated in an Ethernet data segment
150 * (or an equivalent encapsulation), given the Ethernet type code.
152 * Returns non-zero if it can do so, zero if the ethertype is unknown.
154 * Stuffs the ether type into a global for the benefit of lower layers
155 * that might want to know what it is.
158 u_short extracted_ethertype
;
161 ether_encap_print(u_short ethertype
, const u_char
*p
,
162 u_int length
, u_int caplen
)
164 extracted_ethertype
= ethertype
;
174 ip6_print(p
, length
);
179 case ETHERTYPE_REVARP
:
180 arp_print(p
, length
, caplen
);
184 decnet_print(p
, length
, caplen
);
187 case ETHERTYPE_ATALK
:
189 fputs("et1 ", stdout
);
190 atalk_print(p
, length
);
194 aarp_print(p
, length
);
199 case ETHERTYPE_MOPRC
:
200 case ETHERTYPE_MOPDL
:
201 /* default_print for now */