]>
The Tcpdump Group git mirrors - tcpdump/blob - print-sl.c
2 * Copyright (c) 1989, 1990, 1991, 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.
23 static const char rcsid
[] =
24 "@(#) $Header: /tcpdump/master/tcpdump/print-sl.c,v 1.46 1999-11-21 12:38:24 itojun Exp $ (LBL)";
31 #ifdef HAVE_NET_SLIP_H
32 #include <sys/param.h>
34 #include <sys/timeb.h>
36 #include <sys/ioctl.h>
38 #include <sys/socket.h>
45 #include <netinet/in.h>
46 #include <netinet/in_systm.h>
47 #include <netinet/ip.h>
48 #include <netinet/if_ether.h>
49 #include <netinet/udp.h>
50 #include <netinet/tcp.h>
52 #include <net/slcompress.h>
60 #include "interface.h"
61 #include "addrtoname.h"
62 #include "extract.h" /* must come after interface.h */
64 static u_int lastlen
[2][256];
65 static u_int lastconn
= 255;
67 static void sliplink_print(const u_char
*, const struct ip
*, u_int
);
68 static void compressed_sl_print(const u_char
*, const struct ip
*, u_int
, int);
70 /* XXX BSD/OS 2.1 compatibility */
71 #if !defined(SLIP_HDRLEN) && defined(SLC_BPFHDR)
72 #define SLIP_HDRLEN SLC_BPFHDR
74 #define SLX_CHDR (SLC_BPFHDRLEN - 1)
75 #define CHDR_LEN (SLC_BPFHDR - SLC_BPFHDRLEN)
78 /* XXX needs more hacking to work right */
81 sl_if_print(u_char
*user
, const struct pcap_pkthdr
*h
, const u_char
*p
)
83 register u_int caplen
= h
->caplen
;
84 register u_int length
= h
->len
;
85 register const struct ip
*ip
;
89 if (caplen
< SLIP_HDRLEN
) {
94 * Some printers want to get back at the link level addresses,
95 * and/or check that they're not walking off the end of the packet.
96 * Rather than pass them all the way down, we set these globals.
101 length
-= SLIP_HDRLEN
;
103 ip
= (struct ip
*)(p
+ SLIP_HDRLEN
);
106 sliplink_print(p
, ip
, length
);
110 ip_print((u_char
*)ip
, length
);
114 ip6_print((u_char
*)ip
, length
);
118 printf ("ip v%d", ip
->ip_v
);
122 default_print((u_char
*)ip
, caplen
- SLIP_HDRLEN
);
129 sl_bsdos_if_print(u_char
*user
, const struct pcap_pkthdr
*h
, const u_char
*p
)
131 register u_int caplen
= h
->caplen
;
132 register u_int length
= h
->len
;
133 register const struct ip
*ip
;
137 if (caplen
< SLIP_HDRLEN
) {
142 * Some printers want to get back at the link level addresses,
143 * and/or check that they're not walking off the end of the packet.
144 * Rather than pass them all the way down, we set these globals.
147 snapend
= p
+ caplen
;
149 length
-= SLIP_HDRLEN
;
151 ip
= (struct ip
*)(p
+ SLIP_HDRLEN
);
155 sliplink_print(p
, ip
, length
);
158 ip_print((u_char
*)ip
, length
);
161 default_print((u_char
*)ip
, caplen
- SLIP_HDRLEN
);
167 sliplink_print(register const u_char
*p
, register const struct ip
*ip
,
168 register u_int length
)
174 putchar(dir
== SLIPDIR_IN
? 'I' : 'O');
178 /* XXX just dump the header */
181 for (i
= SLX_CHDR
; i
< SLX_CHDR
+ CHDR_LEN
- 1; ++i
)
182 printf("%02x.", p
[i
]);
183 printf("%02x: ", p
[SLX_CHDR
+ CHDR_LEN
- 1]);
186 switch (p
[SLX_CHDR
] & 0xf0) {
189 printf("ip %d: ", length
+ SLIP_HDRLEN
);
192 case TYPE_UNCOMPRESSED_TCP
:
194 * The connection id is stored in the IP protocol field.
195 * Get it from the link layer since sl_uncompress_tcp()
196 * has restored the IP header copy to IPPROTO_TCP.
198 lastconn
= ((struct ip
*)&p
[SLX_CHDR
])->ip_p
;
200 hlen
+= ((struct tcphdr
*)&((int *)ip
)[hlen
])->th_off
;
201 lastlen
[dir
][lastconn
] = length
- (hlen
<< 2);
202 printf("utcp %d: ", lastconn
);
206 if (p
[SLX_CHDR
] & TYPE_COMPRESSED_TCP
) {
207 compressed_sl_print(&p
[SLX_CHDR
], ip
,
211 printf("slip-%d!: ", p
[SLX_CHDR
]);
215 static const u_char
*
216 print_sl_change(const char *str
, register const u_char
*cp
)
220 if ((i
= *cp
++) == 0) {
221 i
= EXTRACT_16BITS(cp
);
224 printf(" %s%d", str
, i
);
228 static const u_char
*
229 print_sl_winchange(register const u_char
*cp
)
233 if ((i
= *cp
++) == 0) {
234 i
= EXTRACT_16BITS(cp
);
245 compressed_sl_print(const u_char
*chdr
, const struct ip
*ip
,
246 u_int length
, int dir
)
248 register const u_char
*cp
= chdr
;
249 register u_int flags
, hlen
;
254 printf("ctcp %d", lastconn
);
258 /* skip tcp checksum */
261 switch (flags
& SPECIALS_MASK
) {
263 printf(" *SA+%d", lastlen
[dir
][lastconn
]);
267 printf(" *S+%d", lastlen
[dir
][lastconn
]);
272 cp
= print_sl_change("U=", cp
);
274 cp
= print_sl_winchange(cp
);
276 cp
= print_sl_change("A+", cp
);
278 cp
= print_sl_change("S+", cp
);
282 cp
= print_sl_change("I+", cp
);
285 * 'hlen' is the length of the uncompressed TCP/IP header (in words).
286 * 'cp - chdr' is the length of the compressed header.
287 * 'length - hlen' is the amount of data in the packet.
290 hlen
+= ((struct tcphdr
*)&((int32_t *)ip
)[hlen
])->th_off
;
291 lastlen
[dir
][lastconn
] = length
- (hlen
<< 2);
292 printf(" %d (%d)", lastlen
[dir
][lastconn
], cp
- chdr
);
295 #include <sys/types.h>
296 #include <sys/time.h>
301 #include "interface.h"
304 sl_if_print(u_char
*user
, const struct pcap_pkthdr
*h
, const u_char
*p
)
307 error("not configured for slip");
312 sl_bsdos_if_print(u_char
*user
, const struct pcap_pkthdr
*h
, const u_char
*p
)
315 error("not configured for slip");