]> The Tcpdump Group git mirrors - tcpdump/blob - print-atm.c
Get rid of some includes of <net/route.h>, and empty declarations of
[tcpdump] / print-atm.c
1 /*
2 * Copyright (c) 1994, 1995, 1996, 1997
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-atm.c,v 1.19 2000-10-06 04:23:10 guy Exp $ (LBL)";
24 #endif
25
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include <sys/param.h>
31 #include <sys/time.h>
32 #include <sys/socket.h>
33
34 #include <netinet/in.h>
35
36 #include <stdio.h>
37 #include <pcap.h>
38
39 #include "interface.h"
40 #include "addrtoname.h"
41 #include "ethertype.h"
42
43 /*
44 * This is the top level routine of the printer. 'p' is the points
45 * to the LLC/SNAP header of the packet, 'tvp' is the timestamp,
46 * 'length' is the length of the packet off the wire, and 'caplen'
47 * is the number of bytes actually captured.
48 */
49 void
50 atm_if_print(u_char *user, const struct pcap_pkthdr *h, const u_char *p)
51 {
52 u_int caplen = h->caplen;
53 u_int length = h->len;
54 u_short ethertype;
55
56 ts_print(&h->ts);
57
58 if (caplen < 8) {
59 printf("[|atm]");
60 goto out;
61 }
62 if (p[0] != 0xaa || p[1] != 0xaa || p[2] != 0x03) {
63 /*XXX assume 802.6 MAC header from fore driver */
64 if (eflag)
65 printf("%04x%04x %04x%04x ",
66 p[0] << 24 | p[1] << 16 | p[2] << 8 | p[3],
67 p[4] << 24 | p[5] << 16 | p[6] << 8 | p[7],
68 p[8] << 24 | p[9] << 16 | p[10] << 8 | p[11],
69 p[12] << 24 | p[13] << 16 | p[14] << 8 | p[15]);
70 p += 20;
71 length -= 20;
72 caplen -= 20;
73 }
74 ethertype = p[6] << 8 | p[7];
75 if (eflag)
76 printf("%02x %02x %02x %02x-%02x-%02x %04x: ",
77 p[0], p[1], p[2], /* dsap/ssap/ctrl */
78 p[3], p[4], p[5], /* manufacturer's code */
79 ethertype);
80
81 /*
82 * Some printers want to get back at the ethernet addresses,
83 * and/or check that they're not walking off the end of the packet.
84 * Rather than pass them all the way down, we set these globals.
85 */
86 packetp = p;
87 snapend = p + caplen;
88
89 length -= 8;
90 caplen -= 8;
91 p += 8;
92
93 switch (ethertype) {
94
95 case ETHERTYPE_IP:
96 ip_print(p, length);
97 break;
98
99 #ifdef INET6
100 case ETHERTYPE_IPV6:
101 ip6_print(p, length);
102 break;
103 #endif /*INET6*/
104
105 /*XXX this probably isn't right */
106 case ETHERTYPE_ARP:
107 case ETHERTYPE_REVARP:
108 arp_print(p, length, caplen);
109 break;
110 #ifdef notyet
111 case ETHERTYPE_DN:
112 decnet_print(p, length, caplen);
113 break;
114
115 case ETHERTYPE_ATALK:
116 if (vflag)
117 fputs("et1 ", stdout);
118 atalk_print(p, length);
119 break;
120
121 case ETHERTYPE_AARP:
122 aarp_print(p, length);
123 break;
124
125 case ETHERTYPE_LAT:
126 case ETHERTYPE_MOPRC:
127 case ETHERTYPE_MOPDL:
128 /* default_print for now */
129 #endif
130 default:
131 /* ether_type not known, print raw packet */
132 if (!eflag)
133 printf("%02x %02x %02x %02x-%02x-%02x %04x: ",
134 p[0], p[1], p[2], /* dsap/ssap/ctrl */
135 p[3], p[4], p[5], /* manufacturer's code */
136 ethertype);
137 if (!xflag && !qflag)
138 default_print(p, caplen);
139 }
140 if (xflag)
141 default_print(p, caplen);
142 out:
143 putchar('\n');
144 }