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.
22 #include <sys/cdefs.h>
24 __RCSID("$NetBSD: print-sl.c,v 1.5 2015/03/31 21:59:35 christos Exp $");
27 #define NETDISSECT_REWORKED
32 #include <tcpdump-stdinc.h>
34 #include "interface.h"
35 #include "extract.h" /* must come after interface.h */
39 #include "slcompress.h"
42 * definitions of the pseudo- link-level header attached to slip
43 * packets grabbed by the packet filter (bpf) traffic monitor.
45 #define SLIP_HDRLEN 16
54 static const char tstr
[] = "[|slip]";
56 static u_int lastlen
[2][256];
57 static u_int lastconn
= 255;
59 static void sliplink_print(netdissect_options
*, const u_char
*, const struct ip
*, u_int
);
60 static void compressed_sl_print(netdissect_options
*, const u_char
*, const struct ip
*, u_int
, int);
63 sl_if_print(netdissect_options
*ndo
,
64 const struct pcap_pkthdr
*h
, const u_char
*p
)
66 register u_int caplen
= h
->caplen
;
67 register u_int length
= h
->len
;
68 register const struct ip
*ip
;
70 if (caplen
< SLIP_HDRLEN
|| length
< SLIP_HDRLEN
) {
71 ND_PRINT((ndo
, "%s", tstr
));
75 length
-= SLIP_HDRLEN
;
77 ip
= (struct ip
*)(p
+ SLIP_HDRLEN
);
80 sliplink_print(ndo
, p
, ip
, length
);
84 ip_print(ndo
, (u_char
*)ip
, length
);
87 ip6_print(ndo
, (u_char
*)ip
, length
);
90 ND_PRINT((ndo
, "ip v%d", IP_V(ip
)));
97 sl_bsdos_if_print(netdissect_options
*ndo
,
98 const struct pcap_pkthdr
*h
, const u_char
*p
)
100 register u_int caplen
= h
->caplen
;
101 register u_int length
= h
->len
;
102 register const struct ip
*ip
;
104 if (caplen
< SLIP_HDRLEN
) {
105 ND_PRINT((ndo
, "%s", tstr
));
109 length
-= SLIP_HDRLEN
;
111 ip
= (struct ip
*)(p
+ SLIP_HDRLEN
);
115 sliplink_print(ndo
, p
, ip
, length
);
118 ip_print(ndo
, (u_char
*)ip
, length
);
120 return (SLIP_HDRLEN
);
124 sliplink_print(netdissect_options
*ndo
,
125 register const u_char
*p
, register const struct ip
*ip
,
126 register u_int length
)
132 ND_PRINT((ndo
, dir
== SLIPDIR_IN
? "I " : "O "));
134 if (ndo
->ndo_nflag
) {
135 /* XXX just dump the header */
138 for (i
= SLX_CHDR
; i
< SLX_CHDR
+ CHDR_LEN
- 1; ++i
)
139 ND_PRINT((ndo
, "%02x.", p
[i
]));
140 ND_PRINT((ndo
, "%02x: ", p
[SLX_CHDR
+ CHDR_LEN
- 1]));
143 switch (p
[SLX_CHDR
] & 0xf0) {
146 ND_PRINT((ndo
, "ip %d: ", length
+ SLIP_HDRLEN
));
149 case TYPE_UNCOMPRESSED_TCP
:
151 * The connection id is stored in the IP protocol field.
152 * Get it from the link layer since sl_uncompress_tcp()
153 * has restored the IP header copy to IPPROTO_TCP.
155 lastconn
= ((struct ip
*)&p
[SLX_CHDR
])->ip_p
;
157 hlen
+= TH_OFF((struct tcphdr
*)&((int *)ip
)[hlen
]);
158 lastlen
[dir
][lastconn
] = length
- (hlen
<< 2);
159 ND_PRINT((ndo
, "utcp %d: ", lastconn
));
163 if (p
[SLX_CHDR
] & TYPE_COMPRESSED_TCP
) {
164 compressed_sl_print(ndo
, &p
[SLX_CHDR
], ip
,
166 ND_PRINT((ndo
, ": "));
168 ND_PRINT((ndo
, "slip-%d!: ", p
[SLX_CHDR
]));
172 static const u_char
*
173 print_sl_change(netdissect_options
*ndo
,
174 const char *str
, register const u_char
*cp
)
178 if ((i
= *cp
++) == 0) {
179 i
= EXTRACT_16BITS(cp
);
182 ND_PRINT((ndo
, " %s%d", str
, i
));
186 static const u_char
*
187 print_sl_winchange(netdissect_options
*ndo
,
188 register const u_char
*cp
)
192 if ((i
= *cp
++) == 0) {
193 i
= EXTRACT_16BITS(cp
);
197 ND_PRINT((ndo
, " W+%d", i
));
199 ND_PRINT((ndo
, " W%d", i
));
204 compressed_sl_print(netdissect_options
*ndo
,
205 const u_char
*chdr
, const struct ip
*ip
,
206 u_int length
, int dir
)
208 register const u_char
*cp
= chdr
;
209 register u_int flags
, hlen
;
214 ND_PRINT((ndo
, "ctcp %d", lastconn
));
216 ND_PRINT((ndo
, "ctcp *"));
218 /* skip tcp checksum */
221 switch (flags
& SPECIALS_MASK
) {
223 ND_PRINT((ndo
, " *SA+%d", lastlen
[dir
][lastconn
]));
227 ND_PRINT((ndo
, " *S+%d", lastlen
[dir
][lastconn
]));
232 cp
= print_sl_change(ndo
, "U=", cp
);
234 cp
= print_sl_winchange(ndo
, cp
);
236 cp
= print_sl_change(ndo
, "A+", cp
);
238 cp
= print_sl_change(ndo
, "S+", cp
);
242 cp
= print_sl_change(ndo
, "I+", cp
);
245 * 'hlen' is the length of the uncompressed TCP/IP header (in words).
246 * 'cp - chdr' is the length of the compressed header.
247 * 'length - hlen' is the amount of data in the packet.
250 hlen
+= TH_OFF((struct tcphdr
*)&((int32_t *)ip
)[hlen
]);
251 lastlen
[dir
][lastconn
] = length
- (hlen
<< 2);
252 ND_PRINT((ndo
, " %d (%ld)", lastlen
[dir
][lastconn
], (long)(cp
- chdr
)));