xref: /freebsd/contrib/tcpdump/print-sl.c (revision bc96366c864c07ef352edb92017357917c75b36c)
1 /*
2  * Copyright (c) 1989, 1990, 1991, 1993, 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  * $FreeBSD$
22  */
23 
24 #define NETDISSECT_REWORKED
25 #ifdef HAVE_CONFIG_H
26 #include "config.h"
27 #endif
28 
29 #include <tcpdump-stdinc.h>
30 
31 #include "interface.h"
32 #include "extract.h"			/* must come after interface.h */
33 
34 #include "ip.h"
35 #include "tcp.h"
36 #include "slcompress.h"
37 
38 /*
39  * definitions of the pseudo- link-level header attached to slip
40  * packets grabbed by the packet filter (bpf) traffic monitor.
41  */
42 #define SLIP_HDRLEN 16
43 
44 #define SLX_DIR 0
45 #define SLX_CHDR 1
46 #define CHDR_LEN 15
47 
48 #define SLIPDIR_IN 0
49 #define SLIPDIR_OUT 1
50 
51 static const char tstr[] = "[|slip]";
52 
53 static u_int lastlen[2][256];
54 static u_int lastconn = 255;
55 
56 static void sliplink_print(netdissect_options *, const u_char *, const struct ip *, u_int);
57 static void compressed_sl_print(netdissect_options *, const u_char *, const struct ip *, u_int, int);
58 
59 u_int
60 sl_if_print(netdissect_options *ndo,
61             const struct pcap_pkthdr *h, const u_char *p)
62 {
63 	register u_int caplen = h->caplen;
64 	register u_int length = h->len;
65 	register const struct ip *ip;
66 
67 	if (caplen < SLIP_HDRLEN) {
68 		ND_PRINT((ndo, "%s", tstr));
69 		return (caplen);
70 	}
71 
72 	length -= SLIP_HDRLEN;
73 
74 	ip = (struct ip *)(p + SLIP_HDRLEN);
75 
76 	if (ndo->ndo_eflag)
77 		sliplink_print(ndo, p, ip, length);
78 
79 	switch (IP_V(ip)) {
80 	case 4:
81 	        ip_print(ndo, (u_char *)ip, length);
82 		break;
83 #ifdef INET6
84 	case 6:
85 		ip6_print(ndo, (u_char *)ip, length);
86 		break;
87 #endif
88 	default:
89 		ND_PRINT((ndo, "ip v%d", IP_V(ip)));
90 	}
91 
92 	return (SLIP_HDRLEN);
93 }
94 
95 u_int
96 sl_bsdos_if_print(netdissect_options *ndo,
97                   const struct pcap_pkthdr *h, const u_char *p)
98 {
99 	register u_int caplen = h->caplen;
100 	register u_int length = h->len;
101 	register const struct ip *ip;
102 
103 	if (caplen < SLIP_HDRLEN) {
104 		ND_PRINT((ndo, "%s", tstr));
105 		return (caplen);
106 	}
107 
108 	length -= SLIP_HDRLEN;
109 
110 	ip = (struct ip *)(p + SLIP_HDRLEN);
111 
112 #ifdef notdef
113 	if (ndo->ndo_eflag)
114 		sliplink_print(ndo, p, ip, length);
115 #endif
116 
117 	ip_print(ndo, (u_char *)ip, length);
118 
119 	return (SLIP_HDRLEN);
120 }
121 
122 static void
123 sliplink_print(netdissect_options *ndo,
124                register const u_char *p, register const struct ip *ip,
125                register u_int length)
126 {
127 	int dir;
128 	u_int hlen;
129 
130 	dir = p[SLX_DIR];
131 	ND_PRINT((ndo, dir == SLIPDIR_IN ? "I " : "O "));
132 
133 	if (ndo->ndo_nflag) {
134 		/* XXX just dump the header */
135 		register int i;
136 
137 		for (i = SLX_CHDR; i < SLX_CHDR + CHDR_LEN - 1; ++i)
138 			ND_PRINT((ndo, "%02x.", p[i]));
139 		ND_PRINT((ndo, "%02x: ", p[SLX_CHDR + CHDR_LEN - 1]));
140 		return;
141 	}
142 	switch (p[SLX_CHDR] & 0xf0) {
143 
144 	case TYPE_IP:
145 		ND_PRINT((ndo, "ip %d: ", length + SLIP_HDRLEN));
146 		break;
147 
148 	case TYPE_UNCOMPRESSED_TCP:
149 		/*
150 		 * The connection id is stored in the IP protocol field.
151 		 * Get it from the link layer since sl_uncompress_tcp()
152 		 * has restored the IP header copy to IPPROTO_TCP.
153 		 */
154 		lastconn = ((struct ip *)&p[SLX_CHDR])->ip_p;
155 		hlen = IP_HL(ip);
156 		hlen += TH_OFF((struct tcphdr *)&((int *)ip)[hlen]);
157 		lastlen[dir][lastconn] = length - (hlen << 2);
158 		ND_PRINT((ndo, "utcp %d: ", lastconn));
159 		break;
160 
161 	default:
162 		if (p[SLX_CHDR] & TYPE_COMPRESSED_TCP) {
163 			compressed_sl_print(ndo, &p[SLX_CHDR], ip,
164 			    length, dir);
165 			ND_PRINT((ndo, ": "));
166 		} else
167 			ND_PRINT((ndo, "slip-%d!: ", p[SLX_CHDR]));
168 	}
169 }
170 
171 static const u_char *
172 print_sl_change(netdissect_options *ndo,
173                 const char *str, register const u_char *cp)
174 {
175 	register u_int i;
176 
177 	if ((i = *cp++) == 0) {
178 		i = EXTRACT_16BITS(cp);
179 		cp += 2;
180 	}
181 	ND_PRINT((ndo, " %s%d", str, i));
182 	return (cp);
183 }
184 
185 static const u_char *
186 print_sl_winchange(netdissect_options *ndo,
187                    register const u_char *cp)
188 {
189 	register short i;
190 
191 	if ((i = *cp++) == 0) {
192 		i = EXTRACT_16BITS(cp);
193 		cp += 2;
194 	}
195 	if (i >= 0)
196 		ND_PRINT((ndo, " W+%d", i));
197 	else
198 		ND_PRINT((ndo, " W%d", i));
199 	return (cp);
200 }
201 
202 static void
203 compressed_sl_print(netdissect_options *ndo,
204                     const u_char *chdr, const struct ip *ip,
205                     u_int length, int dir)
206 {
207 	register const u_char *cp = chdr;
208 	register u_int flags, hlen;
209 
210 	flags = *cp++;
211 	if (flags & NEW_C) {
212 		lastconn = *cp++;
213 		ND_PRINT((ndo, "ctcp %d", lastconn));
214 	} else
215 		ND_PRINT((ndo, "ctcp *"));
216 
217 	/* skip tcp checksum */
218 	cp += 2;
219 
220 	switch (flags & SPECIALS_MASK) {
221 	case SPECIAL_I:
222 		ND_PRINT((ndo, " *SA+%d", lastlen[dir][lastconn]));
223 		break;
224 
225 	case SPECIAL_D:
226 		ND_PRINT((ndo, " *S+%d", lastlen[dir][lastconn]));
227 		break;
228 
229 	default:
230 		if (flags & NEW_U)
231 			cp = print_sl_change(ndo, "U=", cp);
232 		if (flags & NEW_W)
233 			cp = print_sl_winchange(ndo, cp);
234 		if (flags & NEW_A)
235 			cp = print_sl_change(ndo, "A+", cp);
236 		if (flags & NEW_S)
237 			cp = print_sl_change(ndo, "S+", cp);
238 		break;
239 	}
240 	if (flags & NEW_I)
241 		cp = print_sl_change(ndo, "I+", cp);
242 
243 	/*
244 	 * 'hlen' is the length of the uncompressed TCP/IP header (in words).
245 	 * 'cp - chdr' is the length of the compressed header.
246 	 * 'length - hlen' is the amount of data in the packet.
247 	 */
248 	hlen = IP_HL(ip);
249 	hlen += TH_OFF((struct tcphdr *)&((int32_t *)ip)[hlen]);
250 	lastlen[dir][lastconn] = length - (hlen << 2);
251 	ND_PRINT((ndo, " %d (%ld)", lastlen[dir][lastconn], (long)(cp - chdr)));
252 }
253