]>
The Tcpdump Group git mirrors - tcpdump/blob - print-ip6opts.c
2 * Copyright (C) 1998 WIDE Project.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the project nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 #include <tcpdump-stdinc.h>
41 #include "interface.h"
42 #include "addrtoname.h"
46 ip6_sopt_print(const u_char
*bp
, int len
)
51 for (i
= 0; i
< len
; i
+= optlen
) {
52 if (bp
[i
] == IP6OPT_PAD1
)
56 optlen
= bp
[i
+ 1] + 2;
68 if (len
- i
< IP6OPT_MINLEN
) {
69 printf(", padn: trunc");
75 if (len
- i
< IP6OPT_MINLEN
) {
76 printf(", sopt_type %d: trunc)", bp
[i
]);
79 printf(", sopt_type 0x%02x: len=%d", bp
[i
], bp
[i
+ 1]);
90 ip6_opt_print(const u_char
*bp
, int len
)
97 for (i
= 0; i
< len
; i
+= optlen
) {
98 if (bp
[i
] == IP6OPT_PAD1
)
102 optlen
= bp
[i
+ 1] + 2;
106 if (i
+ optlen
> len
)
114 if (len
- i
< IP6OPT_MINLEN
) {
115 printf("(padn: trunc)");
120 case IP6OPT_ROUTER_ALERT
:
121 if (len
- i
< IP6OPT_RTALERT_LEN
) {
122 printf("(rtalert: trunc)");
125 if (bp
[i
+ 1] != IP6OPT_RTALERT_LEN
- 2) {
126 printf("(rtalert: invalid len %d)", bp
[i
+ 1]);
129 printf("(rtalert: 0x%04x) ", EXTRACT_16BITS(&bp
[i
+ 2]));
132 if (len
- i
< IP6OPT_JUMBO_LEN
) {
133 printf("(jumbo: trunc)");
136 if (bp
[i
+ 1] != IP6OPT_JUMBO_LEN
- 2) {
137 printf("(jumbo: invalid len %d)", bp
[i
+ 1]);
140 printf("(jumbo: %u) ", EXTRACT_32BITS(&bp
[i
+ 2]));
142 case IP6OPT_HOME_ADDRESS
:
143 if (len
- i
< IP6OPT_HOMEADDR_MINLEN
) {
144 printf("(homeaddr: trunc)");
147 if (bp
[i
+ 1] < IP6OPT_HOMEADDR_MINLEN
- 2) {
148 printf("(homeaddr: invalid len %d)", bp
[i
+ 1]);
151 printf("(homeaddr: %s", ip6addr_string(&bp
[i
+ 2]));
152 if (bp
[i
+ 1] > IP6OPT_HOMEADDR_MINLEN
- 2) {
153 ip6_sopt_print(&bp
[i
+ IP6OPT_HOMEADDR_MINLEN
],
154 (optlen
- IP6OPT_HOMEADDR_MINLEN
));
159 if (len
- i
< IP6OPT_MINLEN
) {
160 printf("(type %d: trunc)", bp
[i
]);
163 printf("(opt_type 0x%02x: len=%d)", bp
[i
], bp
[i
+ 1]);
175 hbhopt_print(register const u_char
*bp
)
177 const struct ip6_hbh
*dp
= (struct ip6_hbh
*)bp
;
180 TCHECK(dp
->ip6h_len
);
181 hbhlen
= (int)((dp
->ip6h_len
+ 1) << 3);
182 TCHECK2(*dp
, hbhlen
);
185 ip6_opt_print((const u_char
*)dp
+ sizeof(*dp
), hbhlen
- sizeof(*dp
));
190 fputs("[|HBH]", stdout
);
195 dstopt_print(register const u_char
*bp
)
197 const struct ip6_dest
*dp
= (struct ip6_dest
*)bp
;
200 TCHECK(dp
->ip6d_len
);
201 dstoptlen
= (int)((dp
->ip6d_len
+ 1) << 3);
202 TCHECK2(*dp
, dstoptlen
);
205 ip6_opt_print((const u_char
*)dp
+ sizeof(*dp
),
206 dstoptlen
- sizeof(*dp
));
212 fputs("[|DSTOPT]", stdout
);