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 /* \summary: Linux cooked sockets capture printer */
32 #include "netdissect-stdinc.h"
34 #include "netdissect.h"
35 #include "addrtoname.h"
36 #include "ethertype.h"
40 * For captures on Linux cooked sockets, we construct a fake header
43 * a 2-byte "packet type" which is one of:
45 * LINUX_SLL_HOST packet was sent to us
46 * LINUX_SLL_BROADCAST packet was broadcast
47 * LINUX_SLL_MULTICAST packet was multicast
48 * LINUX_SLL_OTHERHOST packet was sent to somebody else
49 * LINUX_SLL_OUTGOING packet was sent *by* us;
51 * a 2-byte Ethernet protocol field;
53 * a 2-byte link-layer type;
55 * a 2-byte link-layer address length;
57 * an 8-byte source link-layer address, whose actual length is
58 * specified by the previous value.
60 * All fields except for the link-layer address are in network byte order.
62 * DO NOT change the layout of this structure, or change any of the
63 * LINUX_SLL_ values below. If you must change the link-layer header
64 * for a "cooked" Linux capture, introduce a new DLT_ type (ask
65 * "tcpdump-workers@lists.tcpdump.org" for one, so that you don't give it
66 * a value that collides with a value already being used), and use the
67 * new header in captures of that type, so that programs that can
68 * handle DLT_LINUX_SLL captures will continue to handle them correctly
69 * without any change, and so that capture files with different headers
70 * can be told apart and programs that read them can dissect the
73 * This structure, and the #defines below, must be the same in the
74 * libpcap and tcpdump versions of "sll.h".
78 * A DLT_LINUX_SLL fake link-layer header.
80 #define SLL_HDR_LEN 16 /* total header length */
81 #define SLL_ADDRLEN 8 /* length of address field */
84 nd_uint16_t sll_pkttype
; /* packet type */
85 nd_uint16_t sll_hatype
; /* link-layer address type */
86 nd_uint16_t sll_halen
; /* link-layer address length */
87 nd_byte sll_addr
[SLL_ADDRLEN
]; /* link-layer address */
88 nd_uint16_t sll_protocol
; /* protocol */
92 * A DLT_LINUX_SLL2 fake link-layer header.
94 #define SLL2_HDR_LEN 20 /* total header length */
97 nd_uint16_t sll2_protocol
; /* protocol */
98 nd_uint16_t sll2_reserved_mbz
; /* reserved - must be zero */
99 nd_uint32_t sll2_if_index
; /* 1-based interface index */
100 nd_uint16_t sll2_hatype
; /* link-layer address type */
101 nd_uint8_t sll2_pkttype
; /* packet type */
102 nd_uint8_t sll2_halen
; /* link-layer address length */
103 nd_byte sll2_addr
[SLL_ADDRLEN
]; /* link-layer address */
107 * The LINUX_SLL_ values for "sll_pkttype"; these correspond to the
108 * PACKET_ values on Linux, but are defined here so that they're
109 * available even on systems other than Linux, and so that they
110 * don't change even if the PACKET_ values change.
112 #define LINUX_SLL_HOST 0
113 #define LINUX_SLL_BROADCAST 1
114 #define LINUX_SLL_MULTICAST 2
115 #define LINUX_SLL_OTHERHOST 3
116 #define LINUX_SLL_OUTGOING 4
119 * The LINUX_SLL_ values for "sll_protocol"; these correspond to the
120 * ETH_P_ values on Linux, but are defined here so that they're
121 * available even on systems other than Linux. We assume, for now,
122 * that the ETH_P_ values won't change in Linux; if they do, then:
124 * if we don't translate them in "pcap-linux.c", capture files
125 * won't necessarily be readable if captured on a system that
126 * defines ETH_P_ values that don't match these values;
128 * if we do translate them in "pcap-linux.c", that makes life
129 * unpleasant for the BPF code generator, as the values you test
130 * for in the kernel aren't the values that you test for when
131 * reading a capture file, so the fixup code run on BPF programs
132 * handed to the kernel ends up having to do more work.
134 * Add other values here as necessary, for handling packet types that
135 * might show up on non-Ethernet, non-802.x networks. (Not all the ones
136 * in the Linux "if_ether.h" will, I suspect, actually show up in
139 #define LINUX_SLL_P_802_3 0x0001 /* Novell 802.3 frames without 802.2 LLC header */
140 #define LINUX_SLL_P_802_2 0x0004 /* 802.2 frames (not D/I/X Ethernet) */
142 static const struct tok sll_pkttype_values
[] = {
143 { LINUX_SLL_HOST
, "In" },
144 { LINUX_SLL_BROADCAST
, "B" },
145 { LINUX_SLL_MULTICAST
, "M" },
146 { LINUX_SLL_OTHERHOST
, "P" },
147 { LINUX_SLL_OUTGOING
, "Out" },
152 sll_print(netdissect_options
*ndo
, const struct sll_header
*sllp
, u_int length
)
156 ndo
->ndo_protocol
= "sll";
157 ND_PRINT("%3s ",tok2str(sll_pkttype_values
,"?",EXTRACT_BE_U_2(sllp
->sll_pkttype
)));
160 * XXX - check the link-layer address type value?
161 * For now, we just assume 6 means Ethernet.
162 * XXX - print others as strings of hex?
164 if (EXTRACT_BE_U_2(sllp
->sll_halen
) == 6)
165 ND_PRINT("%s ", etheraddr_string(ndo
, sllp
->sll_addr
));
167 if (!ndo
->ndo_qflag
) {
168 ether_type
= EXTRACT_BE_U_2(sllp
->sll_protocol
);
170 if (ether_type
<= MAX_ETHERNET_LENGTH_VAL
) {
172 * Not an Ethernet type; what type is it?
174 switch (ether_type
) {
176 case LINUX_SLL_P_802_3
:
178 * Ethernet_802.3 IPX frame.
183 case LINUX_SLL_P_802_2
:
194 ND_PRINT("ethertype Unknown (0x%04x)",
199 ND_PRINT("ethertype %s (0x%04x)",
200 tok2str(ethertype_values
, "Unknown", ether_type
),
203 ND_PRINT(", length %u: ", length
);
208 * This is the top level routine of the printer. 'p' points to the
209 * Linux "cooked capture" header of the packet, 'h->ts' is the timestamp,
210 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
211 * is the number of bytes actually captured.
214 sll_if_print(netdissect_options
*ndo
, const struct pcap_pkthdr
*h
, const u_char
*p
)
216 u_int caplen
= h
->caplen
;
217 u_int length
= h
->len
;
218 const struct sll_header
*sllp
;
224 ndo
->ndo_protocol
= "sll_if";
225 if (caplen
< SLL_HDR_LEN
) {
227 * XXX - this "can't happen" because "pcap-linux.c" always
228 * adds this many bytes of header to every packet in a
229 * cooked socket capture.
235 sllp
= (const struct sll_header
*)p
;
238 sll_print(ndo
, sllp
, length
);
241 * Go past the cooked-mode header.
243 length
-= SLL_HDR_LEN
;
244 caplen
-= SLL_HDR_LEN
;
246 hdrlen
= SLL_HDR_LEN
;
248 hatype
= EXTRACT_BE_U_2(sllp
->sll_hatype
);
253 * This is an packet with a radiotap header;
254 * just dissect the payload as such.
256 return (SLL_HDR_LEN
+ ieee802_11_radio_print(ndo
, p
, length
, caplen
));
258 ether_type
= EXTRACT_BE_U_2(sllp
->sll_protocol
);
262 * Is it (gag) an 802.3 encapsulation, or some non-Ethernet
265 if (ether_type
<= MAX_ETHERNET_LENGTH_VAL
) {
267 * Yes - what type is it?
269 switch (ether_type
) {
271 case LINUX_SLL_P_802_3
:
273 * Ethernet_802.3 IPX frame.
275 ipx_print(ndo
, p
, length
);
278 case LINUX_SLL_P_802_2
:
281 * Try to print the LLC-layer header & higher layers.
283 llc_hdrlen
= llc_print(ndo
, p
, length
, caplen
, NULL
, NULL
);
285 goto unknown
; /* unknown LLC type */
286 hdrlen
+= llc_hdrlen
;
293 /* packet type not known, print raw packet */
294 if (!ndo
->ndo_suppress_default_print
)
295 ND_DEFAULTPRINT(p
, caplen
);
298 } else if (ether_type
== ETHERTYPE_8021Q
) {
300 * Print VLAN information, and then go back and process
301 * the enclosed type field.
304 ndo
->ndo_protocol
= "vlan";
306 return (hdrlen
+ caplen
);
308 if (ndo
->ndo_eflag
) {
309 uint16_t tag
= EXTRACT_BE_U_2(p
);
311 ND_PRINT("%s, ", ieee8021q_tci_string(tag
));
314 ether_type
= EXTRACT_BE_U_2(p
+ 2);
315 if (ether_type
<= MAX_ETHERNET_LENGTH_VAL
)
316 ether_type
= LINUX_SLL_P_802_2
;
317 if (!ndo
->ndo_qflag
) {
318 ND_PRINT("ethertype %s, ",
319 tok2str(ethertype_values
, "Unknown", ether_type
));
327 if (ethertype_print(ndo
, ether_type
, p
, length
, caplen
, NULL
, NULL
) == 0) {
328 /* ether_type not known, print raw packet */
330 sll_print(ndo
, sllp
, length
+ SLL_HDR_LEN
);
331 if (!ndo
->ndo_suppress_default_print
)
332 ND_DEFAULTPRINT(p
, caplen
);
340 sll2_print(netdissect_options
*ndo
, const struct sll2_header
*sllp
, u_int length
)
344 ndo
->ndo_protocol
= "sll2";
345 ND_PRINT("%3s ",tok2str(sll_pkttype_values
,"?",EXTRACT_U_1(sllp
->sll2_pkttype
)));
348 * XXX - check the link-layer address type value?
349 * For now, we just assume 6 means Ethernet.
350 * XXX - print others as strings of hex?
352 if (EXTRACT_U_1(sllp
->sll2_halen
) == 6)
353 ND_PRINT("%s ", etheraddr_string(ndo
, sllp
->sll2_addr
));
355 if (!ndo
->ndo_qflag
) {
356 ether_type
= EXTRACT_BE_U_2(sllp
->sll2_protocol
);
358 if (ether_type
<= MAX_ETHERNET_LENGTH_VAL
) {
360 * Not an Ethernet type; what type is it?
362 switch (ether_type
) {
364 case LINUX_SLL_P_802_3
:
366 * Ethernet_802.3 IPX frame.
371 case LINUX_SLL_P_802_2
:
382 ND_PRINT("ethertype Unknown (0x%04x)",
387 ND_PRINT("ethertype %s (0x%04x)",
388 tok2str(ethertype_values
, "Unknown", ether_type
),
391 ND_PRINT(", length %u: ", length
);
396 * This is the top level routine of the printer. 'p' points to the
397 * Linux "cooked capture" header of the packet, 'h->ts' is the timestamp,
398 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
399 * is the number of bytes actually captured.
402 sll2_if_print(netdissect_options
*ndo
, const struct pcap_pkthdr
*h
, const u_char
*p
)
404 u_int caplen
= h
->caplen
;
405 u_int length
= h
->len
;
406 const struct sll2_header
*sllp
;
413 char ifname
[IF_NAMESIZE
];
416 ndo
->ndo_protocol
= "sll2_if";
417 if (caplen
< SLL2_HDR_LEN
) {
419 * XXX - this "can't happen" because "pcap-linux.c" always
420 * adds this many bytes of header to every packet in a
421 * cooked socket capture.
427 sllp
= (const struct sll2_header
*)p
;
429 if_index
= EXTRACT_BE_U_4(sllp
->sll2_if_index
);
430 if (if_indextoname(if_index
, ifname
))
431 ND_PRINT("ifindex %u (%s) ", if_index
, ifname
);
433 ND_PRINT("ifindex %u ", if_index
);
437 sll2_print(ndo
, sllp
, length
);
440 * Go past the cooked-mode header.
442 length
-= SLL2_HDR_LEN
;
443 caplen
-= SLL2_HDR_LEN
;
445 hdrlen
= SLL2_HDR_LEN
;
447 hatype
= EXTRACT_BE_U_2(sllp
->sll2_hatype
);
452 * This is an packet with a radiotap header;
453 * just dissect the payload as such.
455 return (SLL_HDR_LEN
+ ieee802_11_radio_print(ndo
, p
, length
, caplen
));
457 ether_type
= EXTRACT_BE_U_2(sllp
->sll2_protocol
);
461 * Is it (gag) an 802.3 encapsulation, or some non-Ethernet
464 if (ether_type
<= MAX_ETHERNET_LENGTH_VAL
) {
466 * Yes - what type is it?
468 switch (ether_type
) {
470 case LINUX_SLL_P_802_3
:
472 * Ethernet_802.3 IPX frame.
474 ipx_print(ndo
, p
, length
);
477 case LINUX_SLL_P_802_2
:
480 * Try to print the LLC-layer header & higher layers.
482 llc_hdrlen
= llc_print(ndo
, p
, length
, caplen
, NULL
, NULL
);
484 goto unknown
; /* unknown LLC type */
485 hdrlen
+= llc_hdrlen
;
492 /* packet type not known, print raw packet */
493 if (!ndo
->ndo_suppress_default_print
)
494 ND_DEFAULTPRINT(p
, caplen
);
497 } else if (ether_type
== ETHERTYPE_8021Q
) {
499 * Print VLAN information, and then go back and process
500 * the enclosed type field.
503 ndo
->ndo_protocol
= "vlan";
505 return (hdrlen
+ caplen
);
507 if (ndo
->ndo_eflag
) {
508 uint16_t tag
= EXTRACT_BE_U_2(p
);
510 ND_PRINT("%s, ", ieee8021q_tci_string(tag
));
513 ether_type
= EXTRACT_BE_U_2(p
+ 2);
514 if (ether_type
<= MAX_ETHERNET_LENGTH_VAL
)
515 ether_type
= LINUX_SLL_P_802_2
;
516 if (!ndo
->ndo_qflag
) {
517 ND_PRINT("ethertype %s, ",
518 tok2str(ethertype_values
, "Unknown", ether_type
));
526 if (ethertype_print(ndo
, ether_type
, p
, length
, caplen
, NULL
, NULL
) == 0) {
527 /* ether_type not known, print raw packet */
529 sll2_print(ndo
, sllp
, length
+ SLL_HDR_LEN
);
530 if (!ndo
->ndo_suppress_default_print
)
531 ND_DEFAULTPRINT(p
, caplen
);