]>
The Tcpdump Group git mirrors - tcpdump/blob - print-arcnet.c
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.
21 * From: NetBSD: print-arcnet.c,v 1.2 2000/04/24 13:02:28 itojun Exp
28 #include <tcpdump-stdinc.h>
33 #include "interface.h"
37 * from: NetBSD: if_arc.h,v 1.13 1999/11/19 20:41:19 thorpej Exp
41 * Structure of a 2.5MB/s Arcnet header on the BSDs,
42 * as given to interface code.
49 * only present for newstyle encoding with LL fragmentation.
50 * Don't use sizeof(anything), use ARC_HDR{,NEW}LEN instead.
56 * only present in exception packets (arc_flag == 0xff)
58 u_int8_t arc_type2
; /* same as arc_type */
59 u_int8_t arc_flag2
; /* real flag value */
60 u_int16_t arc_seqid2
; /* real seqid value */
64 #define ARC_HDRNEWLEN 6
65 #define ARC_HDRNEWLEN_EXC 10
68 #define ARCTYPE_IP_OLD 240 /* IP protocol */
69 #define ARCTYPE_ARP_OLD 241 /* address resolution protocol */
72 #define ARCTYPE_IP 212 /* IP protocol */
73 #define ARCTYPE_ARP 213 /* address resolution protocol */
74 #define ARCTYPE_REVARP 214 /* reverse addr resolution protocol */
76 #define ARCTYPE_ATALK 221 /* Appletalk */
77 #define ARCTYPE_BANIAN 247 /* Banyan Vines */
78 #define ARCTYPE_IPX 250 /* Novell IPX */
80 #define ARCTYPE_INET6 0xc4 /* IPng */
81 #define ARCTYPE_DIAGNOSE 0x80 /* as per ANSI/ATA 878.1 */
84 * Structure of a 2.5MB/s Arcnet header on Linux. Linux has
85 * an extra "offset" field when given to interface code, and
86 * never presents packets that look like exception frames.
88 struct arc_linux_header
{
94 * only present for newstyle encoding with LL fragmentation.
95 * Don't use sizeof(anything), use ARC_LINUX_HDR{,NEW}LEN
102 #define ARC_LINUX_HDRLEN 5
103 #define ARC_LINUX_HDRNEWLEN 8
105 static int arcnet_encap_print(u_char arctype
, const u_char
*p
,
106 u_int length
, u_int caplen
);
108 static const struct tok arctypemap
[] = {
109 { ARCTYPE_IP_OLD
, "oldip" },
110 { ARCTYPE_ARP_OLD
, "oldarp" },
111 { ARCTYPE_IP
, "ip" },
112 { ARCTYPE_ARP
, "arp" },
113 { ARCTYPE_REVARP
, "rarp" },
114 { ARCTYPE_ATALK
, "atalk" },
115 { ARCTYPE_BANIAN
, "banyan" },
116 { ARCTYPE_IPX
, "ipx" },
117 { ARCTYPE_INET6
, "ipv6" },
118 { ARCTYPE_DIAGNOSE
, "diag" },
123 arcnet_print(const u_char
*bp
, u_int length
, int phds
, int flag
, u_int seqid
)
125 const struct arc_header
*ap
;
126 const char *arctypename
;
129 ap
= (const struct arc_header
*)bp
;
133 (void)printf("%02x %02x %d: ",
140 arctypename
= tok2str(arctypemap
, "%02x", ap
->arc_type
);
143 (void)printf("%02x %02x %s %d: ",
144 ap
->arc_shost
, ap
->arc_dhost
, arctypename
,
150 (void)printf("%02x %02x %s seqid %04x %d: ",
151 ap
->arc_shost
, ap
->arc_dhost
, arctypename
, seqid
,
157 (void)printf("%02x %02x %s seqid %04x "
158 "(first of %d fragments) %d: ",
159 ap
->arc_shost
, ap
->arc_dhost
, arctypename
, seqid
,
160 (flag
+ 3) / 2, length
);
162 (void)printf("%02x %02x %s seqid %04x "
163 "(fragment %d) %d: ",
164 ap
->arc_shost
, ap
->arc_dhost
, arctypename
, seqid
,
169 * This is the top level routine of the printer. 'p' points
170 * to the ARCNET header of the packet, 'h->ts' is the timestamp,
171 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
172 * is the number of bytes actually captured.
175 arcnet_if_print(const struct pcap_pkthdr
*h
, const u_char
*p
)
177 u_int caplen
= h
->caplen
;
178 u_int length
= h
->len
;
179 const struct arc_header
*ap
;
181 int phds
, flag
= 0, archdrlen
= 0;
185 if (caplen
< ARC_HDRLEN
) {
190 ap
= (const struct arc_header
*)p
;
191 arc_type
= ap
->arc_type
;
198 case ARCTYPE_ARP_OLD
:
199 case ARCTYPE_DIAGNOSE
:
201 archdrlen
= ARC_HDRLEN
;
206 if (caplen
< ARC_HDRNEWLEN
) {
207 arcnet_print(p
, length
, 0, 0, 0);
212 if (ap
->arc_flag
== 0xff) {
213 if (caplen
< ARC_HDRNEWLEN_EXC
) {
214 arcnet_print(p
, length
, 0, 0, 0);
215 printf("[|phds extended]");
218 flag
= ap
->arc_flag2
;
219 seqid
= EXTRACT_16BITS(&ap
->arc_seqid2
);
220 archdrlen
= ARC_HDRNEWLEN_EXC
;
223 seqid
= EXTRACT_16BITS(&ap
->arc_seqid
);
224 archdrlen
= ARC_HDRNEWLEN
;
230 arcnet_print(p
, length
, phds
, flag
, seqid
);
233 * Go past the ARCNET header.
239 if (phds
&& flag
&& (flag
& 1) == 0) {
241 * This is a middle fragment.
246 if (!arcnet_encap_print(arc_type
, p
, length
, caplen
))
247 default_print(p
, caplen
);
253 * This is the top level routine of the printer. 'p' points
254 * to the ARCNET header of the packet, 'h->ts' is the timestamp,
255 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
256 * is the number of bytes actually captured. It is quite similar
257 * to the non-Linux style printer except that Linux doesn't ever
258 * supply packets that look like exception frames, it always supplies
259 * reassembled packets rather than raw frames, and headers have an
260 * extra "offset" field between the src/dest and packet type.
263 arcnet_linux_if_print(const struct pcap_pkthdr
*h
, const u_char
*p
)
265 u_int caplen
= h
->caplen
;
266 u_int length
= h
->len
;
267 const struct arc_linux_header
*ap
;
272 if (caplen
< ARC_LINUX_HDRLEN
) {
277 ap
= (const struct arc_linux_header
*)p
;
278 arc_type
= ap
->arc_type
;
282 archdrlen
= ARC_LINUX_HDRNEWLEN
;
283 if (caplen
< ARC_LINUX_HDRNEWLEN
) {
289 case ARCTYPE_ARP_OLD
:
290 case ARCTYPE_DIAGNOSE
:
291 archdrlen
= ARC_LINUX_HDRLEN
;
296 arcnet_print(p
, length
, 0, 0, 0);
299 * Go past the ARCNET header.
305 if (!arcnet_encap_print(arc_type
, p
, length
, caplen
))
306 default_print(p
, caplen
);
312 * Prints the packet encapsulated in an ARCnet data field,
313 * given the ARCnet system code.
315 * Returns non-zero if it can do so, zero if the system code is unknown.
320 arcnet_encap_print(u_char arctype
, const u_char
*p
,
321 u_int length
, u_int caplen
)
327 ip_print(gndo
, p
, length
);
332 ip6_print(gndo
, p
, length
);
336 case ARCTYPE_ARP_OLD
:
339 arp_print(gndo
, p
, length
, caplen
);
342 case ARCTYPE_ATALK
: /* XXX was this ever used? */
344 fputs("et1 ", stdout
);
345 atalk_print(p
, length
);
349 ipx_print(p
, length
);