]>
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.
22 /* \summary: Compressed Serial Line Internet Protocol printer */
26 #include "netdissect-stdinc.h"
28 #define ND_LONGJMP_FROM_TCHECK
29 #include "netdissect.h"
34 #include "slcompress.h"
37 * definitions of the pseudo- link-level header attached to slip
38 * packets grabbed by the packet filter (bpf) traffic monitor.
40 #define SLIP_HDRLEN 16
49 static u_int lastlen
[2][256];
50 static u_int lastconn
= 255;
52 static void sliplink_print(netdissect_options
*, const u_char
*, const struct ip
*, u_int
);
53 static void compressed_sl_print(netdissect_options
*, const u_char
*, const struct ip
*, u_int
, int);
56 sl_if_print(netdissect_options
*ndo
,
57 const struct pcap_pkthdr
*h
, const u_char
*p
)
59 u_int length
= h
->len
;
62 ndo
->ndo_protocol
= "slip";
63 ND_TCHECK_LEN(p
, SLIP_HDRLEN
);
64 ndo
->ndo_ll_hdr_len
+= SLIP_HDRLEN
;
66 length
-= SLIP_HDRLEN
;
68 ip
= (const struct ip
*)(p
+ SLIP_HDRLEN
);
71 sliplink_print(ndo
, p
, ip
, length
);
75 ip_print(ndo
, (const u_char
*)ip
, length
);
78 ip6_print(ndo
, (const u_char
*)ip
, length
);
81 ND_PRINT("ip v%u", IP_V(ip
));
86 sl_bsdos_if_print(netdissect_options
*ndo
,
87 const struct pcap_pkthdr
*h
, const u_char
*p
)
89 u_int length
= h
->len
;
92 ndo
->ndo_protocol
= "slip_bsdos";
93 ND_TCHECK_LEN(p
, SLIP_HDRLEN
);
94 ndo
->ndo_ll_hdr_len
+= SLIP_HDRLEN
;
96 length
-= SLIP_HDRLEN
;
98 ip
= (const struct ip
*)(p
+ SLIP_HDRLEN
);
102 sliplink_print(ndo
, p
, ip
, length
);
105 ip_print(ndo
, (const u_char
*)ip
, length
);
109 sliplink_print(netdissect_options
*ndo
,
110 const u_char
*p
, const struct ip
*ip
,
116 dir
= GET_U_1(p
+ SLX_DIR
);
128 ND_PRINT("Invalid direction %d ", dir
);
132 switch (GET_U_1(p
+ SLX_CHDR
) & 0xf0) {
135 ND_PRINT("ip %u: ", length
+ SLIP_HDRLEN
);
138 case TYPE_UNCOMPRESSED_TCP
:
140 * The connection id is stored in the IP protocol field.
141 * Get it from the link layer since sl_uncompress_tcp()
142 * has restored the IP header copy to IPPROTO_TCP.
144 lastconn
= GET_U_1(((const struct ip
*)(p
+ SLX_CHDR
))->ip_p
);
145 ND_PRINT("utcp %u: ", lastconn
);
147 /* Direction is bogus, don't use it */
151 hlen
+= TH_OFF((const struct tcphdr
*)&((const int *)ip
)[hlen
]);
152 lastlen
[dir
][lastconn
] = length
- (hlen
<< 2);
157 /* Direction is bogus, don't use it */
160 if (GET_U_1(p
+ SLX_CHDR
) & TYPE_COMPRESSED_TCP
) {
161 compressed_sl_print(ndo
, p
+ SLX_CHDR
, ip
, length
, dir
);
164 ND_PRINT("slip-%u!: ", GET_U_1(p
+ SLX_CHDR
));
168 static const u_char
*
169 print_sl_change(netdissect_options
*ndo
,
170 const char *str
, const u_char
*cp
)
174 if ((i
= GET_U_1(cp
)) == 0) {
179 ND_PRINT(" %s%u", str
, i
);
183 static const u_char
*
184 print_sl_winchange(netdissect_options
*ndo
,
189 if ((i
= GET_U_1(cp
)) == 0) {
195 ND_PRINT(" W+%d", i
);
202 compressed_sl_print(netdissect_options
*ndo
,
203 const u_char
*chdr
, const struct ip
*ip
,
204 u_int length
, int dir
)
206 const u_char
*cp
= chdr
;
212 lastconn
= GET_U_1(cp
);
214 ND_PRINT("ctcp %u", lastconn
);
218 /* skip tcp checksum */
221 switch (flags
& SPECIALS_MASK
) {
223 ND_PRINT(" *SA+%u", lastlen
[dir
][lastconn
]);
227 ND_PRINT(" *S+%u", 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((const struct tcphdr
*)&((const int32_t *)ip
)[hlen
]);
251 lastlen
[dir
][lastconn
] = length
- (hlen
<< 2);
252 ND_PRINT(" %u (%ld)", lastlen
[dir
][lastconn
], (long)(cp
- chdr
));