1 /* $OpenBSD: print-gre.c,v 1.6 2002/10/30 03:04:04 fgsch Exp $ */
4 * Copyright (c) 2002 Jason L. Wright (jason@thought.net)
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Jason L. Wright
18 * 4. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
25 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
35 * tcpdump filter for GRE - Generic Routing Encapsulation
36 * RFC1701 (GRE), RFC1702 (GRE IPv4), and RFC2637 (Enhanced GRE)
40 static const char rcsid
[] _U_
=
41 "@(#) $Header: /tcpdump/master/tcpdump/print-gre.c,v 1.28 2005-04-06 21:32:39 mcr Exp $ (LBL)";
48 #include <tcpdump-stdinc.h>
53 #include "interface.h"
54 #include "addrtoname.h"
58 #include "ethertype.h"
60 #define GRE_CP 0x8000 /* checksum present */
61 #define GRE_RP 0x4000 /* routing present */
62 #define GRE_KP 0x2000 /* key present */
63 #define GRE_SP 0x1000 /* sequence# present */
64 #define GRE_sP 0x0800 /* source routing */
65 #define GRE_RECRS 0x0700 /* recursion count */
66 #define GRE_AP 0x0080 /* acknowledgment# present */
68 struct tok gre_flag_values
[] = {
69 { GRE_CP
, "checksum present"},
70 { GRE_RP
, "routing present"},
71 { GRE_KP
, "key present"},
72 { GRE_SP
, "sequence# present"},
73 { GRE_sP
, "source routing present"},
74 { GRE_RECRS
, "recursion count"},
75 { GRE_AP
, "ack present"},
79 #define GRE_VERS_MASK 0x0007 /* protocol version */
81 /* source route entry types */
82 #define GRESRE_IP 0x0800 /* IP */
83 #define GRESRE_ASN 0xfffe /* ASN */
85 void gre_print_0(const u_char
*, u_int
);
86 void gre_print_1(const u_char
*, u_int
);
87 void gre_sre_print(u_int16_t
, u_int8_t
, u_int8_t
, const u_char
*, u_int
);
88 void gre_sre_ip_print(u_int8_t
, u_int8_t
, const u_char
*, u_int
);
89 void gre_sre_asn_print(u_int8_t
, u_int8_t
, const u_char
*, u_int
);
92 gre_print(const u_char
*bp
, u_int length
)
94 u_int len
= length
, vers
;
100 vers
= EXTRACT_16BITS(bp
) & GRE_VERS_MASK
;
101 printf("GREv%u",vers
);
105 gre_print_0(bp
, len
);
108 gre_print_1(bp
, len
);
111 printf(" ERROR: unknown-version");
119 gre_print_0(const u_char
*bp
, u_int length
)
122 u_int16_t flags
, prot
;
124 flags
= EXTRACT_16BITS(bp
);
126 printf(", Flags [%s]",
127 bittok2str(gre_flag_values
,"none",flags
));
134 prot
= EXTRACT_16BITS(bp
);
138 if ((flags
& GRE_CP
) | (flags
& GRE_RP
)) {
142 printf(", sum 0x%x", EXTRACT_16BITS(bp
));
148 printf(", off 0x%x", EXTRACT_16BITS(bp
));
153 if (flags
& GRE_KP
) {
156 printf(", key=0x%x", EXTRACT_32BITS(bp
));
161 if (flags
& GRE_SP
) {
164 printf(", seq %u", EXTRACT_32BITS(bp
));
169 if (flags
& GRE_RP
) {
177 af
= EXTRACT_16BITS(bp
);
183 if (af
== 0 && srelen
== 0)
186 gre_sre_print(af
, sreoff
, srelen
, bp
, len
);
196 printf(", proto %s (0x%04x)",
197 tok2str(ethertype_values
,"unknown",prot
),
200 printf(", length %u",length
);
203 printf(": "); /* put in a colon as protocol demarc */
205 printf("\n\t"); /* if verbose go multiline */
209 ip_print(gndo
, bp
, len
);
213 ip6_print(gndo
, bp
, len
);
222 case ETHERTYPE_ATALK
:
223 atalk_print(bp
, len
);
225 case ETHERTYPE_GRE_ISO
:
226 isoclns_print(bp
, len
, len
);
229 ether_print(gndo
, bp
, len
, len
, NULL
, NULL
);
232 printf("gre-proto-0x%x", prot
);
241 gre_print_1(const u_char
*bp
, u_int length
)
244 u_int16_t flags
, prot
;
246 flags
= EXTRACT_16BITS(bp
);
251 printf(", Flags [%s]",
252 bittok2str(gre_flag_values
,"none",flags
));
256 prot
= EXTRACT_16BITS(bp
);
261 if (flags
& GRE_KP
) {
266 k
= EXTRACT_32BITS(bp
);
267 printf(", call %d", k
& 0xffff);
272 if (flags
& GRE_SP
) {
275 printf(", seq %u", EXTRACT_32BITS(bp
));
280 if (flags
& GRE_AP
) {
283 printf(", ack %u", EXTRACT_32BITS(bp
));
288 if ((flags
& GRE_SP
) == 0)
289 printf(", no-payload");
292 printf(", proto %s (0x%04x)",
293 tok2str(ethertype_values
,"unknown",prot
),
296 printf(", length %u",length
);
298 if ((flags
& GRE_SP
) == 0)
302 printf(": "); /* put in a colon as protocol demarc */
304 printf("\n\t"); /* if verbose go multiline */
311 printf("gre-proto-0x%x", prot
);
321 gre_sre_print(u_int16_t af
, u_int8_t sreoff
, u_int8_t srelen
,
322 const u_char
*bp
, u_int len
)
326 printf(", (rtaf=ip");
327 gre_sre_ip_print(sreoff
, srelen
, bp
, len
);
331 printf(", (rtaf=asn");
332 gre_sre_asn_print(sreoff
, srelen
, bp
, len
);
336 printf(", (rtaf=0x%x) ", af
);
340 gre_sre_ip_print(u_int8_t sreoff
, u_int8_t srelen
, const u_char
*bp
, u_int len
)
343 const u_char
*up
= bp
;
346 printf(", badoffset=%u", sreoff
);
350 printf(", badlength=%u", srelen
);
353 if (sreoff
>= srelen
) {
354 printf(", badoff/len=%u/%u", sreoff
, srelen
);
359 if (len
< 4 || srelen
== 0)
362 memcpy(&a
, bp
, sizeof(a
));
364 ((bp
- up
) == sreoff
) ? "*" : "",
374 gre_sre_asn_print(u_int8_t sreoff
, u_int8_t srelen
, const u_char
*bp
, u_int len
)
376 const u_char
*up
= bp
;
379 printf(", badoffset=%u", sreoff
);
383 printf(", badlength=%u", srelen
);
386 if (sreoff
>= srelen
) {
387 printf(", badoff/len=%u/%u", sreoff
, srelen
);
392 if (len
< 2 || srelen
== 0)
396 ((bp
- up
) == sreoff
) ? "*" : "",