etc/services - sync with NetBSD-8
[minix.git] / external / bsd / tcpdump / dist / print-sl.c
blob99f9606d0ecfea1841848cdf4e4091d1906d774d
1 /*
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
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.
22 #include <sys/cdefs.h>
23 #ifndef lint
24 __RCSID("$NetBSD: print-sl.c,v 1.5 2015/03/31 21:59:35 christos Exp $");
25 #endif
27 #define NETDISSECT_REWORKED
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif
32 #include <tcpdump-stdinc.h>
34 #include "interface.h"
35 #include "extract.h" /* must come after interface.h */
37 #include "ip.h"
38 #include "tcp.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
47 #define SLX_DIR 0
48 #define SLX_CHDR 1
49 #define CHDR_LEN 15
51 #define SLIPDIR_IN 0
52 #define SLIPDIR_OUT 1
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);
62 u_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));
72 return (caplen);
75 length -= SLIP_HDRLEN;
77 ip = (struct ip *)(p + SLIP_HDRLEN);
79 if (ndo->ndo_eflag)
80 sliplink_print(ndo, p, ip, length);
82 switch (IP_V(ip)) {
83 case 4:
84 ip_print(ndo, (u_char *)ip, length);
85 break;
86 case 6:
87 ip6_print(ndo, (u_char *)ip, length);
88 break;
89 default:
90 ND_PRINT((ndo, "ip v%d", IP_V(ip)));
93 return (SLIP_HDRLEN);
96 u_int
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));
106 return (caplen);
109 length -= SLIP_HDRLEN;
111 ip = (struct ip *)(p + SLIP_HDRLEN);
113 #ifdef notdef
114 if (ndo->ndo_eflag)
115 sliplink_print(ndo, p, ip, length);
116 #endif
118 ip_print(ndo, (u_char *)ip, length);
120 return (SLIP_HDRLEN);
123 static void
124 sliplink_print(netdissect_options *ndo,
125 register const u_char *p, register const struct ip *ip,
126 register u_int length)
128 int dir;
129 u_int hlen;
131 dir = p[SLX_DIR];
132 ND_PRINT((ndo, dir == SLIPDIR_IN ? "I " : "O "));
134 if (ndo->ndo_nflag) {
135 /* XXX just dump the header */
136 register int i;
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]));
141 return;
143 switch (p[SLX_CHDR] & 0xf0) {
145 case TYPE_IP:
146 ND_PRINT((ndo, "ip %d: ", length + SLIP_HDRLEN));
147 break;
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;
156 hlen = IP_HL(ip);
157 hlen += TH_OFF((struct tcphdr *)&((int *)ip)[hlen]);
158 lastlen[dir][lastconn] = length - (hlen << 2);
159 ND_PRINT((ndo, "utcp %d: ", lastconn));
160 break;
162 default:
163 if (p[SLX_CHDR] & TYPE_COMPRESSED_TCP) {
164 compressed_sl_print(ndo, &p[SLX_CHDR], ip,
165 length, dir);
166 ND_PRINT((ndo, ": "));
167 } else
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)
176 register u_int i;
178 if ((i = *cp++) == 0) {
179 i = EXTRACT_16BITS(cp);
180 cp += 2;
182 ND_PRINT((ndo, " %s%d", str, i));
183 return (cp);
186 static const u_char *
187 print_sl_winchange(netdissect_options *ndo,
188 register const u_char *cp)
190 register short i;
192 if ((i = *cp++) == 0) {
193 i = EXTRACT_16BITS(cp);
194 cp += 2;
196 if (i >= 0)
197 ND_PRINT((ndo, " W+%d", i));
198 else
199 ND_PRINT((ndo, " W%d", i));
200 return (cp);
203 static void
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;
211 flags = *cp++;
212 if (flags & NEW_C) {
213 lastconn = *cp++;
214 ND_PRINT((ndo, "ctcp %d", lastconn));
215 } else
216 ND_PRINT((ndo, "ctcp *"));
218 /* skip tcp checksum */
219 cp += 2;
221 switch (flags & SPECIALS_MASK) {
222 case SPECIAL_I:
223 ND_PRINT((ndo, " *SA+%d", lastlen[dir][lastconn]));
224 break;
226 case SPECIAL_D:
227 ND_PRINT((ndo, " *S+%d", lastlen[dir][lastconn]));
228 break;
230 default:
231 if (flags & NEW_U)
232 cp = print_sl_change(ndo, "U=", cp);
233 if (flags & NEW_W)
234 cp = print_sl_winchange(ndo, cp);
235 if (flags & NEW_A)
236 cp = print_sl_change(ndo, "A+", cp);
237 if (flags & NEW_S)
238 cp = print_sl_change(ndo, "S+", cp);
239 break;
241 if (flags & NEW_I)
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.
249 hlen = IP_HL(ip);
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)));