]> The Tcpdump Group git mirrors - tcpdump/blob - print-icmp6.c
2db36a6d39e5d436a0018481bf1c88471f44e0d7
[tcpdump] / print-icmp6.c
1 /*
2 * Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994
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
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #include <netdissect-stdinc.h>
27
28 #include <stdio.h>
29 #include <string.h>
30
31 #include "netdissect.h"
32 #include "addrtoname.h"
33 #include "addrtostr.h"
34 #include "extract.h"
35
36 #include "ip6.h"
37 #include "ipproto.h"
38
39 #include "udp.h"
40 #include "ah.h"
41
42 /* NetBSD: icmp6.h,v 1.13 2000/08/03 16:30:37 itojun Exp */
43 /* $KAME: icmp6.h,v 1.22 2000/08/03 15:25:16 jinmei Exp $ */
44
45 /*
46 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
47 * All rights reserved.
48 *
49 * Redistribution and use in source and binary forms, with or without
50 * modification, are permitted provided that the following conditions
51 * are met:
52 * 1. Redistributions of source code must retain the above copyright
53 * notice, this list of conditions and the following disclaimer.
54 * 2. Redistributions in binary form must reproduce the above copyright
55 * notice, this list of conditions and the following disclaimer in the
56 * documentation and/or other materials provided with the distribution.
57 * 3. Neither the name of the project nor the names of its contributors
58 * may be used to endorse or promote products derived from this software
59 * without specific prior written permission.
60 *
61 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
62 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
63 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
64 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
65 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
66 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
67 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
68 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
69 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
70 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
71 * SUCH DAMAGE.
72 */
73
74 struct icmp6_hdr {
75 uint8_t icmp6_type; /* type field */
76 uint8_t icmp6_code; /* code field */
77 uint16_t icmp6_cksum; /* checksum field */
78 union {
79 uint32_t icmp6_un_data32[1]; /* type-specific field */
80 uint16_t icmp6_un_data16[2]; /* type-specific field */
81 uint8_t icmp6_un_data8[4]; /* type-specific field */
82 } icmp6_dataun;
83 };
84
85 #define icmp6_data32 icmp6_dataun.icmp6_un_data32
86 #define icmp6_data16 icmp6_dataun.icmp6_un_data16
87 #define icmp6_data8 icmp6_dataun.icmp6_un_data8
88 #define icmp6_pptr icmp6_data32[0] /* parameter prob */
89 #define icmp6_mtu icmp6_data32[0] /* packet too big */
90 #define icmp6_id icmp6_data16[0] /* echo request/reply */
91 #define icmp6_seq icmp6_data16[1] /* echo request/reply */
92 #define icmp6_maxdelay icmp6_data16[0] /* mcast group membership */
93
94 #define ICMP6_DST_UNREACH 1 /* dest unreachable, codes: */
95 #define ICMP6_PACKET_TOO_BIG 2 /* packet too big */
96 #define ICMP6_TIME_EXCEEDED 3 /* time exceeded, code: */
97 #define ICMP6_PARAM_PROB 4 /* ip6 header bad */
98
99 #define ICMP6_ECHO_REQUEST 128 /* echo service */
100 #define ICMP6_ECHO_REPLY 129 /* echo reply */
101 #define ICMP6_MEMBERSHIP_QUERY 130 /* group membership query */
102 #define MLD6_LISTENER_QUERY 130 /* multicast listener query */
103 #define ICMP6_MEMBERSHIP_REPORT 131 /* group membership report */
104 #define MLD6_LISTENER_REPORT 131 /* multicast listener report */
105 #define ICMP6_MEMBERSHIP_REDUCTION 132 /* group membership termination */
106 #define MLD6_LISTENER_DONE 132 /* multicast listener done */
107
108 #define ND_ROUTER_SOLICIT 133 /* router solicitation */
109 #define ND_ROUTER_ADVERT 134 /* router advertisement */
110 #define ND_NEIGHBOR_SOLICIT 135 /* neighbor solicitation */
111 #define ND_NEIGHBOR_ADVERT 136 /* neighbor advertisement */
112 #define ND_REDIRECT 137 /* redirect */
113
114 #define ICMP6_ROUTER_RENUMBERING 138 /* router renumbering */
115
116 #define ICMP6_WRUREQUEST 139 /* who are you request */
117 #define ICMP6_WRUREPLY 140 /* who are you reply */
118 #define ICMP6_FQDN_QUERY 139 /* FQDN query */
119 #define ICMP6_FQDN_REPLY 140 /* FQDN reply */
120 #define ICMP6_NI_QUERY 139 /* node information request */
121 #define ICMP6_NI_REPLY 140 /* node information reply */
122 #define IND_SOLICIT 141 /* inverse neighbor solicitation */
123 #define IND_ADVERT 142 /* inverse neighbor advertisement */
124
125 #define ICMP6_V2_MEMBERSHIP_REPORT 143 /* v2 membership report */
126 #define MLDV2_LISTENER_REPORT 143 /* v2 multicast listener report */
127 #define ICMP6_HADISCOV_REQUEST 144
128 #define ICMP6_HADISCOV_REPLY 145
129 #define ICMP6_MOBILEPREFIX_SOLICIT 146
130 #define ICMP6_MOBILEPREFIX_ADVERT 147
131
132 #define MLD6_MTRACE_RESP 200 /* mtrace response(to sender) */
133 #define MLD6_MTRACE 201 /* mtrace messages */
134
135 #define ICMP6_MAXTYPE 201
136
137 #define ICMP6_DST_UNREACH_NOROUTE 0 /* no route to destination */
138 #define ICMP6_DST_UNREACH_ADMIN 1 /* administratively prohibited */
139 #define ICMP6_DST_UNREACH_NOTNEIGHBOR 2 /* not a neighbor(obsolete) */
140 #define ICMP6_DST_UNREACH_BEYONDSCOPE 2 /* beyond scope of source address */
141 #define ICMP6_DST_UNREACH_ADDR 3 /* address unreachable */
142 #define ICMP6_DST_UNREACH_NOPORT 4 /* port unreachable */
143
144 #define ICMP6_TIME_EXCEED_TRANSIT 0 /* ttl==0 in transit */
145 #define ICMP6_TIME_EXCEED_REASSEMBLY 1 /* ttl==0 in reass */
146
147 #define ICMP6_PARAMPROB_HEADER 0 /* erroneous header field */
148 #define ICMP6_PARAMPROB_NEXTHEADER 1 /* unrecognized next header */
149 #define ICMP6_PARAMPROB_OPTION 2 /* unrecognized option */
150
151 #define ICMP6_INFOMSG_MASK 0x80 /* all informational messages */
152
153 #define ICMP6_NI_SUBJ_IPV6 0 /* Query Subject is an IPv6 address */
154 #define ICMP6_NI_SUBJ_FQDN 1 /* Query Subject is a Domain name */
155 #define ICMP6_NI_SUBJ_IPV4 2 /* Query Subject is an IPv4 address */
156
157 #define ICMP6_NI_SUCCESS 0 /* node information successful reply */
158 #define ICMP6_NI_REFUSED 1 /* node information request is refused */
159 #define ICMP6_NI_UNKNOWN 2 /* unknown Qtype */
160
161 #define ICMP6_ROUTER_RENUMBERING_COMMAND 0 /* rr command */
162 #define ICMP6_ROUTER_RENUMBERING_RESULT 1 /* rr result */
163 #define ICMP6_ROUTER_RENUMBERING_SEQNUM_RESET 255 /* rr seq num reset */
164
165 /* Used in kernel only */
166 #define ND_REDIRECT_ONLINK 0 /* redirect to an on-link node */
167 #define ND_REDIRECT_ROUTER 1 /* redirect to a better router */
168
169 /*
170 * Multicast Listener Discovery
171 */
172 struct mld6_hdr {
173 struct icmp6_hdr mld6_hdr;
174 struct in6_addr mld6_addr; /* multicast address */
175 };
176
177 #define mld6_type mld6_hdr.icmp6_type
178 #define mld6_code mld6_hdr.icmp6_code
179 #define mld6_cksum mld6_hdr.icmp6_cksum
180 #define mld6_maxdelay mld6_hdr.icmp6_data16[0]
181 #define mld6_reserved mld6_hdr.icmp6_data16[1]
182
183 #define MLD_MINLEN 24
184 #define MLDV2_MINLEN 28
185
186 /*
187 * Neighbor Discovery
188 */
189
190 struct nd_router_solicit { /* router solicitation */
191 struct icmp6_hdr nd_rs_hdr;
192 /* could be followed by options */
193 };
194
195 #define nd_rs_type nd_rs_hdr.icmp6_type
196 #define nd_rs_code nd_rs_hdr.icmp6_code
197 #define nd_rs_cksum nd_rs_hdr.icmp6_cksum
198 #define nd_rs_reserved nd_rs_hdr.icmp6_data32[0]
199
200 struct nd_router_advert { /* router advertisement */
201 struct icmp6_hdr nd_ra_hdr;
202 uint32_t nd_ra_reachable; /* reachable time */
203 uint32_t nd_ra_retransmit; /* retransmit timer */
204 /* could be followed by options */
205 };
206
207 #define nd_ra_type nd_ra_hdr.icmp6_type
208 #define nd_ra_code nd_ra_hdr.icmp6_code
209 #define nd_ra_cksum nd_ra_hdr.icmp6_cksum
210 #define nd_ra_curhoplimit nd_ra_hdr.icmp6_data8[0]
211 #define nd_ra_flags_reserved nd_ra_hdr.icmp6_data8[1]
212 #define ND_RA_FLAG_MANAGED 0x80
213 #define ND_RA_FLAG_OTHER 0x40
214 #define ND_RA_FLAG_HOME_AGENT 0x20
215
216 /*
217 * Router preference values based on draft-draves-ipngwg-router-selection-01.
218 * These are non-standard definitions.
219 */
220 #define ND_RA_FLAG_RTPREF_MASK 0x18 /* 00011000 */
221
222 #define ND_RA_FLAG_RTPREF_HIGH 0x08 /* 00001000 */
223 #define ND_RA_FLAG_RTPREF_MEDIUM 0x00 /* 00000000 */
224 #define ND_RA_FLAG_RTPREF_LOW 0x18 /* 00011000 */
225 #define ND_RA_FLAG_RTPREF_RSV 0x10 /* 00010000 */
226
227 #define nd_ra_router_lifetime nd_ra_hdr.icmp6_data16[1]
228
229 struct nd_neighbor_solicit { /* neighbor solicitation */
230 struct icmp6_hdr nd_ns_hdr;
231 struct in6_addr nd_ns_target; /*target address */
232 /* could be followed by options */
233 };
234
235 #define nd_ns_type nd_ns_hdr.icmp6_type
236 #define nd_ns_code nd_ns_hdr.icmp6_code
237 #define nd_ns_cksum nd_ns_hdr.icmp6_cksum
238 #define nd_ns_reserved nd_ns_hdr.icmp6_data32[0]
239
240 struct nd_neighbor_advert { /* neighbor advertisement */
241 struct icmp6_hdr nd_na_hdr;
242 struct in6_addr nd_na_target; /* target address */
243 /* could be followed by options */
244 };
245
246 #define nd_na_type nd_na_hdr.icmp6_type
247 #define nd_na_code nd_na_hdr.icmp6_code
248 #define nd_na_cksum nd_na_hdr.icmp6_cksum
249 #define nd_na_flags_reserved nd_na_hdr.icmp6_data32[0]
250
251 #define ND_NA_FLAG_ROUTER 0x80000000
252 #define ND_NA_FLAG_SOLICITED 0x40000000
253 #define ND_NA_FLAG_OVERRIDE 0x20000000
254
255 struct nd_redirect { /* redirect */
256 struct icmp6_hdr nd_rd_hdr;
257 struct in6_addr nd_rd_target; /* target address */
258 struct in6_addr nd_rd_dst; /* destination address */
259 /* could be followed by options */
260 };
261
262 #define nd_rd_type nd_rd_hdr.icmp6_type
263 #define nd_rd_code nd_rd_hdr.icmp6_code
264 #define nd_rd_cksum nd_rd_hdr.icmp6_cksum
265 #define nd_rd_reserved nd_rd_hdr.icmp6_data32[0]
266
267 struct nd_opt_hdr { /* Neighbor discovery option header */
268 uint8_t nd_opt_type;
269 uint8_t nd_opt_len;
270 /* followed by option specific data*/
271 };
272
273 #define ND_OPT_SOURCE_LINKADDR 1
274 #define ND_OPT_TARGET_LINKADDR 2
275 #define ND_OPT_PREFIX_INFORMATION 3
276 #define ND_OPT_REDIRECTED_HEADER 4
277 #define ND_OPT_MTU 5
278 #define ND_OPT_ADVINTERVAL 7
279 #define ND_OPT_HOMEAGENT_INFO 8
280 #define ND_OPT_ROUTE_INFO 24 /* RFC4191 */
281 #define ND_OPT_RDNSS 25
282 #define ND_OPT_DNSSL 31
283
284 struct nd_opt_prefix_info { /* prefix information */
285 uint8_t nd_opt_pi_type;
286 uint8_t nd_opt_pi_len;
287 uint8_t nd_opt_pi_prefix_len;
288 uint8_t nd_opt_pi_flags_reserved;
289 uint8_t nd_opt_pi_valid_time[4];
290 uint8_t nd_opt_pi_preferred_time[4];
291 uint8_t nd_opt_pi_reserved2[4];
292 struct in6_addr nd_opt_pi_prefix;
293 };
294
295 #define ND_OPT_PI_FLAG_ONLINK 0x80
296 #define ND_OPT_PI_FLAG_AUTO 0x40
297 #define ND_OPT_PI_FLAG_ROUTER 0x20 /*2292bis*/
298
299 struct nd_opt_rd_hdr { /* redirected header */
300 uint8_t nd_opt_rh_type;
301 uint8_t nd_opt_rh_len;
302 uint16_t nd_opt_rh_reserved1;
303 uint32_t nd_opt_rh_reserved2;
304 /* followed by IP header and data */
305 };
306
307 struct nd_opt_mtu { /* MTU option */
308 uint8_t nd_opt_mtu_type;
309 uint8_t nd_opt_mtu_len;
310 uint16_t nd_opt_mtu_reserved;
311 uint32_t nd_opt_mtu_mtu;
312 };
313
314 struct nd_opt_rdnss { /* RDNSS RFC 6106 5.1 */
315 uint8_t nd_opt_rdnss_type;
316 uint8_t nd_opt_rdnss_len;
317 uint16_t nd_opt_rdnss_reserved;
318 uint32_t nd_opt_rdnss_lifetime;
319 struct in6_addr nd_opt_rdnss_addr[1]; /* variable-length */
320 };
321
322 struct nd_opt_dnssl { /* DNSSL RFC 6106 5.2 */
323 uint8_t nd_opt_dnssl_type;
324 uint8_t nd_opt_dnssl_len;
325 uint16_t nd_opt_dnssl_reserved;
326 uint32_t nd_opt_dnssl_lifetime;
327 /* followed by list of DNS search domains, variable-length */
328 };
329
330 struct nd_opt_advinterval { /* Advertisement interval option */
331 uint8_t nd_opt_adv_type;
332 uint8_t nd_opt_adv_len;
333 uint16_t nd_opt_adv_reserved;
334 uint32_t nd_opt_adv_interval;
335 };
336
337 struct nd_opt_homeagent_info { /* Home Agent info */
338 uint8_t nd_opt_hai_type;
339 uint8_t nd_opt_hai_len;
340 uint16_t nd_opt_hai_reserved;
341 int16_t nd_opt_hai_preference;
342 uint16_t nd_opt_hai_lifetime;
343 };
344
345 struct nd_opt_route_info { /* route info */
346 uint8_t nd_opt_rti_type;
347 uint8_t nd_opt_rti_len;
348 uint8_t nd_opt_rti_prefixlen;
349 uint8_t nd_opt_rti_flags;
350 uint32_t nd_opt_rti_lifetime;
351 /* prefix follows */
352 };
353
354 /*
355 * icmp6 namelookup
356 */
357
358 struct icmp6_namelookup {
359 struct icmp6_hdr icmp6_nl_hdr;
360 uint8_t icmp6_nl_nonce[8];
361 int32_t icmp6_nl_ttl;
362 #if 0
363 uint8_t icmp6_nl_len;
364 uint8_t icmp6_nl_name[3];
365 #endif
366 /* could be followed by options */
367 };
368
369 /*
370 * icmp6 node information
371 */
372 struct icmp6_nodeinfo {
373 struct icmp6_hdr icmp6_ni_hdr;
374 uint8_t icmp6_ni_nonce[8];
375 /* could be followed by reply data */
376 };
377
378 #define ni_type icmp6_ni_hdr.icmp6_type
379 #define ni_code icmp6_ni_hdr.icmp6_code
380 #define ni_cksum icmp6_ni_hdr.icmp6_cksum
381 #define ni_qtype icmp6_ni_hdr.icmp6_data16[0]
382 #define ni_flags icmp6_ni_hdr.icmp6_data16[1]
383
384 #define NI_QTYPE_NOOP 0 /* NOOP */
385 #define NI_QTYPE_SUPTYPES 1 /* Supported Qtypes */
386 #define NI_QTYPE_FQDN 2 /* FQDN (draft 04) */
387 #define NI_QTYPE_DNSNAME 2 /* DNS Name */
388 #define NI_QTYPE_NODEADDR 3 /* Node Addresses */
389 #define NI_QTYPE_IPV4ADDR 4 /* IPv4 Addresses */
390
391 /* network endian */
392 #define NI_SUPTYPE_FLAG_COMPRESS ((uint16_t)htons(0x1))
393 #define NI_FQDN_FLAG_VALIDTTL ((uint16_t)htons(0x1))
394
395 /* network endian */
396 #define NI_NODEADDR_FLAG_TRUNCATE ((uint16_t)htons(0x1))
397 #define NI_NODEADDR_FLAG_ALL ((uint16_t)htons(0x2))
398 #define NI_NODEADDR_FLAG_COMPAT ((uint16_t)htons(0x4))
399 #define NI_NODEADDR_FLAG_LINKLOCAL ((uint16_t)htons(0x8))
400 #define NI_NODEADDR_FLAG_SITELOCAL ((uint16_t)htons(0x10))
401 #define NI_NODEADDR_FLAG_GLOBAL ((uint16_t)htons(0x20))
402 #define NI_NODEADDR_FLAG_ANYCAST ((uint16_t)htons(0x40)) /* just experimental. not in spec */
403
404 struct ni_reply_fqdn {
405 uint32_t ni_fqdn_ttl; /* TTL */
406 uint8_t ni_fqdn_namelen; /* length in octets of the FQDN */
407 uint8_t ni_fqdn_name[3]; /* XXX: alignment */
408 };
409
410 /*
411 * Router Renumbering. as router-renum-08.txt
412 */
413 struct icmp6_router_renum { /* router renumbering header */
414 struct icmp6_hdr rr_hdr;
415 uint8_t rr_segnum;
416 uint8_t rr_flags;
417 uint16_t rr_maxdelay;
418 uint32_t rr_reserved;
419 };
420 #define ICMP6_RR_FLAGS_TEST 0x80
421 #define ICMP6_RR_FLAGS_REQRESULT 0x40
422 #define ICMP6_RR_FLAGS_FORCEAPPLY 0x20
423 #define ICMP6_RR_FLAGS_SPECSITE 0x10
424 #define ICMP6_RR_FLAGS_PREVDONE 0x08
425
426 #define rr_type rr_hdr.icmp6_type
427 #define rr_code rr_hdr.icmp6_code
428 #define rr_cksum rr_hdr.icmp6_cksum
429 #define rr_seqnum rr_hdr.icmp6_data32[0]
430
431 struct rr_pco_match { /* match prefix part */
432 uint8_t rpm_code;
433 uint8_t rpm_len;
434 uint8_t rpm_ordinal;
435 uint8_t rpm_matchlen;
436 uint8_t rpm_minlen;
437 uint8_t rpm_maxlen;
438 uint16_t rpm_reserved;
439 struct in6_addr rpm_prefix;
440 };
441
442 #define RPM_PCO_ADD 1
443 #define RPM_PCO_CHANGE 2
444 #define RPM_PCO_SETGLOBAL 3
445 #define RPM_PCO_MAX 4
446
447 struct rr_pco_use { /* use prefix part */
448 uint8_t rpu_uselen;
449 uint8_t rpu_keeplen;
450 uint8_t rpu_ramask;
451 uint8_t rpu_raflags;
452 uint32_t rpu_vltime;
453 uint32_t rpu_pltime;
454 uint32_t rpu_flags;
455 struct in6_addr rpu_prefix;
456 };
457 #define ICMP6_RR_PCOUSE_RAFLAGS_ONLINK 0x80
458 #define ICMP6_RR_PCOUSE_RAFLAGS_AUTO 0x40
459
460 /* network endian */
461 #define ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME ((uint32_t)htonl(0x80000000))
462 #define ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME ((uint32_t)htonl(0x40000000))
463
464 struct rr_result { /* router renumbering result message */
465 uint16_t rrr_flags;
466 uint8_t rrr_ordinal;
467 uint8_t rrr_matchedlen;
468 uint32_t rrr_ifid;
469 struct in6_addr rrr_prefix;
470 };
471 /* network endian */
472 #define ICMP6_RR_RESULT_FLAGS_OOB ((uint16_t)htons(0x0002))
473 #define ICMP6_RR_RESULT_FLAGS_FORBIDDEN ((uint16_t)htons(0x0001))
474
475 static const char *get_rtpref(u_int);
476 static const char *get_lifetime(uint32_t);
477 static void print_lladdr(netdissect_options *ndo, const u_char *, size_t);
478 static void icmp6_opt_print(netdissect_options *ndo, const u_char *, int);
479 static void mld6_print(netdissect_options *ndo, const u_char *);
480 static void mldv2_report_print(netdissect_options *ndo, const u_char *, u_int);
481 static void mldv2_query_print(netdissect_options *ndo, const u_char *, u_int);
482 static const struct udphdr *get_upperlayer(netdissect_options *ndo, const u_char *, u_int *);
483 static void dnsname_print(netdissect_options *ndo, const u_char *, const u_char *);
484 static void icmp6_nodeinfo_print(netdissect_options *ndo, u_int, const u_char *, const u_char *);
485 static void icmp6_rrenum_print(netdissect_options *ndo, const u_char *, const u_char *);
486
487 #ifndef abs
488 #define abs(a) ((0 < (a)) ? (a) : -(a))
489 #endif
490
491 #include "rpl.h"
492
493 static const struct tok icmp6_type_values[] = {
494 { ICMP6_DST_UNREACH, "destination unreachable"},
495 { ICMP6_PACKET_TOO_BIG, "packet too big"},
496 { ICMP6_TIME_EXCEEDED, "time exceeded in-transit"},
497 { ICMP6_PARAM_PROB, "parameter problem"},
498 { ICMP6_ECHO_REQUEST, "echo request"},
499 { ICMP6_ECHO_REPLY, "echo reply"},
500 { MLD6_LISTENER_QUERY, "multicast listener query"},
501 { MLD6_LISTENER_REPORT, "multicast listener report"},
502 { MLD6_LISTENER_DONE, "multicast listener done"},
503 { ND_ROUTER_SOLICIT, "router solicitation"},
504 { ND_ROUTER_ADVERT, "router advertisement"},
505 { ND_NEIGHBOR_SOLICIT, "neighbor solicitation"},
506 { ND_NEIGHBOR_ADVERT, "neighbor advertisement"},
507 { ND_REDIRECT, "redirect"},
508 { ICMP6_ROUTER_RENUMBERING, "router renumbering"},
509 { IND_SOLICIT, "inverse neighbor solicitation"},
510 { IND_ADVERT, "inverse neighbor advertisement"},
511 { MLDV2_LISTENER_REPORT, "multicast listener report v2"},
512 { ICMP6_HADISCOV_REQUEST, "ha discovery request"},
513 { ICMP6_HADISCOV_REPLY, "ha discovery reply"},
514 { ICMP6_MOBILEPREFIX_SOLICIT, "mobile router solicitation"},
515 { ICMP6_MOBILEPREFIX_ADVERT, "mobile router advertisement"},
516 { ICMP6_WRUREQUEST, "who-are-you request"},
517 { ICMP6_WRUREPLY, "who-are-you reply"},
518 { ICMP6_NI_QUERY, "node information query"},
519 { ICMP6_NI_REPLY, "node information reply"},
520 { MLD6_MTRACE, "mtrace message"},
521 { MLD6_MTRACE_RESP, "mtrace response"},
522 { ND_RPL_MESSAGE, "RPL"},
523 { 0, NULL }
524 };
525
526 static const struct tok icmp6_dst_unreach_code_values[] = {
527 { ICMP6_DST_UNREACH_NOROUTE, "unreachable route" },
528 { ICMP6_DST_UNREACH_ADMIN, " unreachable prohibited"},
529 { ICMP6_DST_UNREACH_BEYONDSCOPE, "beyond scope"},
530 { ICMP6_DST_UNREACH_ADDR, "unreachable address"},
531 { ICMP6_DST_UNREACH_NOPORT, "unreachable port"},
532 { 0, NULL }
533 };
534
535 static const struct tok icmp6_opt_pi_flag_values[] = {
536 { ND_OPT_PI_FLAG_ONLINK, "onlink" },
537 { ND_OPT_PI_FLAG_AUTO, "auto" },
538 { ND_OPT_PI_FLAG_ROUTER, "router" },
539 { 0, NULL }
540 };
541
542 static const struct tok icmp6_opt_ra_flag_values[] = {
543 { ND_RA_FLAG_MANAGED, "managed" },
544 { ND_RA_FLAG_OTHER, "other stateful"},
545 { ND_RA_FLAG_HOME_AGENT, "home agent"},
546 { 0, NULL }
547 };
548
549 static const struct tok icmp6_nd_na_flag_values[] = {
550 { ND_NA_FLAG_ROUTER, "router" },
551 { ND_NA_FLAG_SOLICITED, "solicited" },
552 { ND_NA_FLAG_OVERRIDE, "override" },
553 { 0, NULL }
554 };
555
556
557 static const struct tok icmp6_opt_values[] = {
558 { ND_OPT_SOURCE_LINKADDR, "source link-address"},
559 { ND_OPT_TARGET_LINKADDR, "destination link-address"},
560 { ND_OPT_PREFIX_INFORMATION, "prefix info"},
561 { ND_OPT_REDIRECTED_HEADER, "redirected header"},
562 { ND_OPT_MTU, "mtu"},
563 { ND_OPT_RDNSS, "rdnss"},
564 { ND_OPT_DNSSL, "dnssl"},
565 { ND_OPT_ADVINTERVAL, "advertisement interval"},
566 { ND_OPT_HOMEAGENT_INFO, "homeagent information"},
567 { ND_OPT_ROUTE_INFO, "route info"},
568 { 0, NULL }
569 };
570
571 /* mldv2 report types */
572 static const struct tok mldv2report2str[] = {
573 { 1, "is_in" },
574 { 2, "is_ex" },
575 { 3, "to_in" },
576 { 4, "to_ex" },
577 { 5, "allow" },
578 { 6, "block" },
579 { 0, NULL }
580 };
581
582 static const char *
583 get_rtpref(u_int v)
584 {
585 static const char *rtpref_str[] = {
586 "medium", /* 00 */
587 "high", /* 01 */
588 "rsv", /* 10 */
589 "low" /* 11 */
590 };
591
592 return rtpref_str[((v & ND_RA_FLAG_RTPREF_MASK) >> 3) & 0xff];
593 }
594
595 static const char *
596 get_lifetime(uint32_t v)
597 {
598 static char buf[20];
599
600 if (v == (uint32_t)~0UL)
601 return "infinity";
602 else {
603 snprintf(buf, sizeof(buf), "%us", v);
604 return buf;
605 }
606 }
607
608 static void
609 print_lladdr(netdissect_options *ndo, const uint8_t *p, size_t l)
610 {
611 const uint8_t *ep, *q;
612
613 q = p;
614 ep = p + l;
615 while (l > 0 && q < ep) {
616 if (q > p)
617 ND_PRINT((ndo,":"));
618 ND_PRINT((ndo,"%02x", *q++));
619 l--;
620 }
621 }
622
623 static int icmp6_cksum(netdissect_options *ndo, const struct ip6_hdr *ip6,
624 const struct icmp6_hdr *icp, u_int len)
625 {
626 return nextproto6_cksum(ndo, ip6, (const uint8_t *)(const void *)icp, len, len,
627 IPPROTO_ICMPV6);
628 }
629
630 const struct tok rpl_mop_values[] = {
631 { RPL_DIO_NONSTORING, "nonstoring"},
632 { RPL_DIO_STORING, "storing"},
633 { RPL_DIO_NONSTORING_MULTICAST, "nonstoring-multicast"},
634 { RPL_DIO_STORING_MULTICAST, "storing-multicast"},
635 { 0, NULL},
636 };
637
638 const struct tok rpl_subopt_values[] = {
639 { RPL_OPT_PAD0, "pad0"},
640 { RPL_OPT_PADN, "padN"},
641 { RPL_DIO_METRICS, "metrics"},
642 { RPL_DIO_ROUTINGINFO, "routinginfo"},
643 { RPL_DIO_CONFIG, "config"},
644 { RPL_DAO_RPLTARGET, "rpltarget"},
645 { RPL_DAO_TRANSITINFO, "transitinfo"},
646 { RPL_DIO_DESTPREFIX, "destprefix"},
647 { RPL_DAO_RPLTARGET_DESC, "rpltargetdesc"},
648 { 0, NULL},
649 };
650
651 static void
652 rpl_format_dagid(char dagid_str[65], const u_char *dagid)
653 {
654 inet_ntop(AF_INET6, dagid, dagid_str, 64);
655 }
656
657 static void
658 rpl_dio_printopt(netdissect_options *ndo,
659 const struct rpl_dio_genoption *opt,
660 u_int length)
661 {
662 if(length < RPL_DIO_GENOPTION_LEN) return;
663 length -= RPL_DIO_GENOPTION_LEN;
664
665 ND_TCHECK(opt->rpl_dio_len);
666
667 while((opt->rpl_dio_type == RPL_OPT_PAD0 &&
668 (const u_char *)opt < ndo->ndo_snapend) ||
669 ND_TTEST2(*opt,(opt->rpl_dio_len+2))) {
670
671 unsigned int optlen = opt->rpl_dio_len+2;
672 if(opt->rpl_dio_type == RPL_OPT_PAD0) {
673 optlen = 1;
674 ND_PRINT((ndo, " opt:pad0"));
675 } else {
676 ND_PRINT((ndo, " opt:%s len:%u ",
677 tok2str(rpl_subopt_values, "subopt:%u", opt->rpl_dio_type),
678 optlen));
679 if(ndo->ndo_vflag > 2) {
680 unsigned int paylen = opt->rpl_dio_len;
681 if(paylen > length) paylen = length;
682 hex_print(ndo,
683 " ",
684 ((const uint8_t *)opt) + RPL_DIO_GENOPTION_LEN, /* content of DIO option */
685 paylen);
686 }
687 }
688 opt = (const struct rpl_dio_genoption *)(((const char *)opt) + optlen);
689 length -= optlen;
690 }
691 return;
692 trunc:
693 ND_PRINT((ndo," [|truncated]"));
694 return;
695 }
696
697 static void
698 rpl_dio_print(netdissect_options *ndo,
699 const u_char *bp, u_int length)
700 {
701 const struct nd_rpl_dio *dio = (const struct nd_rpl_dio *)bp;
702 char dagid_str[65];
703
704 ND_TCHECK(*dio);
705 rpl_format_dagid(dagid_str, dio->rpl_dagid);
706
707 ND_PRINT((ndo, " [dagid:%s,seq:%u,instance:%u,rank:%u,%smop:%s,prf:%u]",
708 dagid_str,
709 dio->rpl_dtsn,
710 dio->rpl_instanceid,
711 EXTRACT_16BITS(&dio->rpl_dagrank),
712 RPL_DIO_GROUNDED(dio->rpl_mopprf) ? "grounded,":"",
713 tok2str(rpl_mop_values, "mop%u", RPL_DIO_MOP(dio->rpl_mopprf)),
714 RPL_DIO_PRF(dio->rpl_mopprf)));
715
716 if(ndo->ndo_vflag > 1) {
717 const struct rpl_dio_genoption *opt = (const struct rpl_dio_genoption *)&dio[1];
718 rpl_dio_printopt(ndo, opt, length);
719 }
720 return;
721 trunc:
722 ND_PRINT((ndo," [|truncated]"));
723 return;
724 }
725
726 static void
727 rpl_dao_print(netdissect_options *ndo,
728 const u_char *bp, u_int length)
729 {
730 const struct nd_rpl_dao *dao = (const struct nd_rpl_dao *)bp;
731 char dagid_str[65];
732
733 ND_TCHECK(*dao);
734 if (length < ND_RPL_DAO_MIN_LEN)
735 goto tooshort;
736
737 strcpy(dagid_str,"<elided>");
738 bp += ND_RPL_DAO_MIN_LEN;
739 length -= ND_RPL_DAO_MIN_LEN;
740 if(RPL_DAO_D(dao->rpl_flags)) {
741 ND_TCHECK2(dao->rpl_dagid, DAGID_LEN);
742 if (length < DAGID_LEN)
743 goto tooshort;
744 rpl_format_dagid(dagid_str, dao->rpl_dagid);
745 bp += DAGID_LEN;
746 length -= DAGID_LEN;
747 }
748
749 ND_PRINT((ndo, " [dagid:%s,seq:%u,instance:%u%s%s,%02x]",
750 dagid_str,
751 dao->rpl_daoseq,
752 dao->rpl_instanceid,
753 RPL_DAO_K(dao->rpl_flags) ? ",acK":"",
754 RPL_DAO_D(dao->rpl_flags) ? ",Dagid":"",
755 dao->rpl_flags));
756
757 if(ndo->ndo_vflag > 1) {
758 const struct rpl_dio_genoption *opt = (const struct rpl_dio_genoption *)bp;
759 rpl_dio_printopt(ndo, opt, length);
760 }
761 return;
762
763 trunc:
764 ND_PRINT((ndo," [|truncated]"));
765 return;
766
767 tooshort:
768 ND_PRINT((ndo," [|length too short]"));
769 return;
770 }
771
772 static void
773 rpl_daoack_print(netdissect_options *ndo,
774 const u_char *bp, u_int length)
775 {
776 const struct nd_rpl_daoack *daoack = (const struct nd_rpl_daoack *)bp;
777 char dagid_str[65];
778
779 ND_TCHECK2(*daoack, ND_RPL_DAOACK_MIN_LEN);
780 if (length < ND_RPL_DAOACK_MIN_LEN)
781 goto tooshort;
782
783 strcpy(dagid_str,"<elided>");
784 bp += ND_RPL_DAOACK_MIN_LEN;
785 length -= ND_RPL_DAOACK_MIN_LEN;
786 if(RPL_DAOACK_D(daoack->rpl_flags)) {
787 ND_TCHECK2(daoack->rpl_dagid, 16);
788 if (length < DAGID_LEN)
789 goto tooshort;
790 rpl_format_dagid(dagid_str, daoack->rpl_dagid);
791 bp += DAGID_LEN;
792 length -= DAGID_LEN;
793 }
794
795 ND_PRINT((ndo, " [dagid:%s,seq:%u,instance:%u,status:%u]",
796 dagid_str,
797 daoack->rpl_daoseq,
798 daoack->rpl_instanceid,
799 daoack->rpl_status));
800
801 /* no officially defined options for DAOACK, but print any we find */
802 if(ndo->ndo_vflag > 1) {
803 const struct rpl_dio_genoption *opt = (const struct rpl_dio_genoption *)bp;
804 rpl_dio_printopt(ndo, opt, length);
805 }
806 return;
807
808 trunc:
809 ND_PRINT((ndo," [|dao-truncated]"));
810 return;
811
812 tooshort:
813 ND_PRINT((ndo," [|dao-length too short]"));
814 return;
815 }
816
817 static void
818 rpl_print(netdissect_options *ndo,
819 const struct icmp6_hdr *hdr,
820 const u_char *bp, u_int length)
821 {
822 int secured = hdr->icmp6_code & 0x80;
823 int basecode= hdr->icmp6_code & 0x7f;
824
825 if(secured) {
826 ND_PRINT((ndo, ", (SEC) [worktodo]"));
827 /* XXX
828 * the next header pointer needs to move forward to
829 * skip the secure part.
830 */
831 return;
832 } else {
833 ND_PRINT((ndo, ", (CLR)"));
834 }
835
836 switch(basecode) {
837 case ND_RPL_DAG_IS:
838 ND_PRINT((ndo, "DODAG Information Solicitation"));
839 if(ndo->ndo_vflag) {
840 }
841 break;
842 case ND_RPL_DAG_IO:
843 ND_PRINT((ndo, "DODAG Information Object"));
844 if(ndo->ndo_vflag) {
845 rpl_dio_print(ndo, bp, length);
846 }
847 break;
848 case ND_RPL_DAO:
849 ND_PRINT((ndo, "Destination Advertisement Object"));
850 if(ndo->ndo_vflag) {
851 rpl_dao_print(ndo, bp, length);
852 }
853 break;
854 case ND_RPL_DAO_ACK:
855 ND_PRINT((ndo, "Destination Advertisement Object Ack"));
856 if(ndo->ndo_vflag) {
857 rpl_daoack_print(ndo, bp, length);
858 }
859 break;
860 default:
861 ND_PRINT((ndo, "RPL message, unknown code %u",hdr->icmp6_code));
862 break;
863 }
864 return;
865
866 #if 0
867 trunc:
868 ND_PRINT((ndo," [|truncated]"));
869 return;
870 #endif
871
872 }
873
874
875 void
876 icmp6_print(netdissect_options *ndo,
877 const u_char *bp, u_int length, const u_char *bp2, int fragmented)
878 {
879 const struct icmp6_hdr *dp;
880 const struct ip6_hdr *ip;
881 const struct ip6_hdr *oip;
882 const struct udphdr *ouh;
883 int dport;
884 const u_char *ep;
885 u_int prot;
886
887 dp = (const struct icmp6_hdr *)bp;
888 ip = (const struct ip6_hdr *)bp2;
889 oip = (const struct ip6_hdr *)(dp + 1);
890 /* 'ep' points to the end of available data. */
891 ep = ndo->ndo_snapend;
892
893 ND_TCHECK(dp->icmp6_cksum);
894
895 if (ndo->ndo_vflag && !fragmented) {
896 uint16_t sum, udp_sum;
897
898 if (ND_TTEST2(bp[0], length)) {
899 udp_sum = EXTRACT_16BITS(&dp->icmp6_cksum);
900 sum = icmp6_cksum(ndo, ip, dp, length);
901 if (sum != 0)
902 ND_PRINT((ndo,"[bad icmp6 cksum 0x%04x -> 0x%04x!] ",
903 udp_sum,
904 in_cksum_shouldbe(udp_sum, sum)));
905 else
906 ND_PRINT((ndo,"[icmp6 sum ok] "));
907 }
908 }
909
910 ND_PRINT((ndo,"ICMP6, %s", tok2str(icmp6_type_values,"unknown icmp6 type (%u)",dp->icmp6_type)));
911
912 /* display cosmetics: print the packet length for printer that use the vflag now */
913 if (ndo->ndo_vflag && (dp->icmp6_type == ND_ROUTER_SOLICIT ||
914 dp->icmp6_type == ND_ROUTER_ADVERT ||
915 dp->icmp6_type == ND_NEIGHBOR_ADVERT ||
916 dp->icmp6_type == ND_NEIGHBOR_SOLICIT ||
917 dp->icmp6_type == ND_REDIRECT ||
918 dp->icmp6_type == ICMP6_HADISCOV_REPLY ||
919 dp->icmp6_type == ICMP6_MOBILEPREFIX_ADVERT ))
920 ND_PRINT((ndo,", length %u", length));
921
922 switch (dp->icmp6_type) {
923 case ICMP6_DST_UNREACH:
924 ND_TCHECK(oip->ip6_dst);
925 ND_PRINT((ndo,", %s", tok2str(icmp6_dst_unreach_code_values,"unknown unreach code (%u)",dp->icmp6_code)));
926 switch (dp->icmp6_code) {
927
928 case ICMP6_DST_UNREACH_NOROUTE: /* fall through */
929 case ICMP6_DST_UNREACH_ADMIN:
930 case ICMP6_DST_UNREACH_ADDR:
931 ND_PRINT((ndo," %s",ip6addr_string(ndo, &oip->ip6_dst)));
932 break;
933 case ICMP6_DST_UNREACH_BEYONDSCOPE:
934 ND_PRINT((ndo," %s, source address %s",
935 ip6addr_string(ndo, &oip->ip6_dst),
936 ip6addr_string(ndo, &oip->ip6_src)));
937 break;
938 case ICMP6_DST_UNREACH_NOPORT:
939 if ((ouh = get_upperlayer(ndo, (const u_char *)oip, &prot))
940 == NULL)
941 goto trunc;
942
943 dport = EXTRACT_16BITS(&ouh->uh_dport);
944 switch (prot) {
945 case IPPROTO_TCP:
946 ND_PRINT((ndo,", %s tcp port %s",
947 ip6addr_string(ndo, &oip->ip6_dst),
948 tcpport_string(ndo, dport)));
949 break;
950 case IPPROTO_UDP:
951 ND_PRINT((ndo,", %s udp port %s",
952 ip6addr_string(ndo, &oip->ip6_dst),
953 udpport_string(ndo, dport)));
954 break;
955 default:
956 ND_PRINT((ndo,", %s protocol %d port %d unreachable",
957 ip6addr_string(ndo, &oip->ip6_dst),
958 oip->ip6_nxt, dport));
959 break;
960 }
961 break;
962 default:
963 if (ndo->ndo_vflag <= 1) {
964 print_unknown_data(ndo, bp,"\n\t",length);
965 return;
966 }
967 break;
968 }
969 break;
970 case ICMP6_PACKET_TOO_BIG:
971 ND_TCHECK(dp->icmp6_mtu);
972 ND_PRINT((ndo,", mtu %u", EXTRACT_32BITS(&dp->icmp6_mtu)));
973 break;
974 case ICMP6_TIME_EXCEEDED:
975 ND_TCHECK(oip->ip6_dst);
976 switch (dp->icmp6_code) {
977 case ICMP6_TIME_EXCEED_TRANSIT:
978 ND_PRINT((ndo," for %s",
979 ip6addr_string(ndo, &oip->ip6_dst)));
980 break;
981 case ICMP6_TIME_EXCEED_REASSEMBLY:
982 ND_PRINT((ndo," (reassembly)"));
983 break;
984 default:
985 ND_PRINT((ndo,", unknown code (%u)", dp->icmp6_code));
986 break;
987 }
988 break;
989 case ICMP6_PARAM_PROB:
990 ND_TCHECK(oip->ip6_dst);
991 switch (dp->icmp6_code) {
992 case ICMP6_PARAMPROB_HEADER:
993 ND_PRINT((ndo,", erroneous - octet %u", EXTRACT_32BITS(&dp->icmp6_pptr)));
994 break;
995 case ICMP6_PARAMPROB_NEXTHEADER:
996 ND_PRINT((ndo,", next header - octet %u", EXTRACT_32BITS(&dp->icmp6_pptr)));
997 break;
998 case ICMP6_PARAMPROB_OPTION:
999 ND_PRINT((ndo,", option - octet %u", EXTRACT_32BITS(&dp->icmp6_pptr)));
1000 break;
1001 default:
1002 ND_PRINT((ndo,", code-#%d",
1003 dp->icmp6_code));
1004 break;
1005 }
1006 break;
1007 case ICMP6_ECHO_REQUEST:
1008 case ICMP6_ECHO_REPLY:
1009 ND_TCHECK(dp->icmp6_seq);
1010 ND_PRINT((ndo,", seq %u", EXTRACT_16BITS(&dp->icmp6_seq)));
1011 break;
1012 case ICMP6_MEMBERSHIP_QUERY:
1013 if (length == MLD_MINLEN) {
1014 mld6_print(ndo, (const u_char *)dp);
1015 } else if (length >= MLDV2_MINLEN) {
1016 ND_PRINT((ndo," v2"));
1017 mldv2_query_print(ndo, (const u_char *)dp, length);
1018 } else {
1019 ND_PRINT((ndo," unknown-version (len %u) ", length));
1020 }
1021 break;
1022 case ICMP6_MEMBERSHIP_REPORT:
1023 mld6_print(ndo, (const u_char *)dp);
1024 break;
1025 case ICMP6_MEMBERSHIP_REDUCTION:
1026 mld6_print(ndo, (const u_char *)dp);
1027 break;
1028 case ND_ROUTER_SOLICIT:
1029 #define RTSOLLEN 8
1030 if (ndo->ndo_vflag) {
1031 icmp6_opt_print(ndo, (const u_char *)dp + RTSOLLEN,
1032 length - RTSOLLEN);
1033 }
1034 break;
1035 case ND_ROUTER_ADVERT:
1036 #define RTADVLEN 16
1037 if (ndo->ndo_vflag) {
1038 const struct nd_router_advert *p;
1039
1040 p = (const struct nd_router_advert *)dp;
1041 ND_TCHECK(p->nd_ra_retransmit);
1042 ND_PRINT((ndo,"\n\thop limit %u, Flags [%s]" \
1043 ", pref %s, router lifetime %us, reachable time %us, retrans time %us",
1044 (u_int)p->nd_ra_curhoplimit,
1045 bittok2str(icmp6_opt_ra_flag_values,"none",(p->nd_ra_flags_reserved)),
1046 get_rtpref(p->nd_ra_flags_reserved),
1047 EXTRACT_16BITS(&p->nd_ra_router_lifetime),
1048 EXTRACT_32BITS(&p->nd_ra_reachable),
1049 EXTRACT_32BITS(&p->nd_ra_retransmit)));
1050
1051 icmp6_opt_print(ndo, (const u_char *)dp + RTADVLEN,
1052 length - RTADVLEN);
1053 }
1054 break;
1055 case ND_NEIGHBOR_SOLICIT:
1056 {
1057 const struct nd_neighbor_solicit *p;
1058 p = (const struct nd_neighbor_solicit *)dp;
1059 ND_TCHECK(p->nd_ns_target);
1060 ND_PRINT((ndo,", who has %s", ip6addr_string(ndo, &p->nd_ns_target)));
1061 if (ndo->ndo_vflag) {
1062 #define NDSOLLEN 24
1063 icmp6_opt_print(ndo, (const u_char *)dp + NDSOLLEN,
1064 length - NDSOLLEN);
1065 }
1066 }
1067 break;
1068 case ND_NEIGHBOR_ADVERT:
1069 {
1070 const struct nd_neighbor_advert *p;
1071
1072 p = (const struct nd_neighbor_advert *)dp;
1073 ND_TCHECK(p->nd_na_target);
1074 ND_PRINT((ndo,", tgt is %s",
1075 ip6addr_string(ndo, &p->nd_na_target)));
1076 if (ndo->ndo_vflag) {
1077 ND_PRINT((ndo,", Flags [%s]",
1078 bittok2str(icmp6_nd_na_flag_values,
1079 "none",
1080 EXTRACT_32BITS(&p->nd_na_flags_reserved))));
1081 #define NDADVLEN 24
1082 icmp6_opt_print(ndo, (const u_char *)dp + NDADVLEN,
1083 length - NDADVLEN);
1084 #undef NDADVLEN
1085 }
1086 }
1087 break;
1088 case ND_REDIRECT:
1089 #define RDR(i) ((const struct nd_redirect *)(i))
1090 ND_TCHECK(RDR(dp)->nd_rd_dst);
1091 ND_PRINT((ndo,", %s", ip6addr_string(ndo, &RDR(dp)->nd_rd_dst)));
1092 ND_TCHECK(RDR(dp)->nd_rd_target);
1093 ND_PRINT((ndo," to %s",
1094 ip6addr_string(ndo, &RDR(dp)->nd_rd_target)));
1095 #define REDIRECTLEN 40
1096 if (ndo->ndo_vflag) {
1097 icmp6_opt_print(ndo, (const u_char *)dp + REDIRECTLEN,
1098 length - REDIRECTLEN);
1099 }
1100 break;
1101 #undef REDIRECTLEN
1102 #undef RDR
1103 case ICMP6_ROUTER_RENUMBERING:
1104 icmp6_rrenum_print(ndo, bp, ep);
1105 break;
1106 case ICMP6_NI_QUERY:
1107 case ICMP6_NI_REPLY:
1108 icmp6_nodeinfo_print(ndo, length, bp, ep);
1109 break;
1110 case IND_SOLICIT:
1111 case IND_ADVERT:
1112 break;
1113 case ICMP6_V2_MEMBERSHIP_REPORT:
1114 mldv2_report_print(ndo, (const u_char *) dp, length);
1115 break;
1116 case ICMP6_MOBILEPREFIX_SOLICIT: /* fall through */
1117 case ICMP6_HADISCOV_REQUEST:
1118 ND_TCHECK(dp->icmp6_data16[0]);
1119 ND_PRINT((ndo,", id 0x%04x", EXTRACT_16BITS(&dp->icmp6_data16[0])));
1120 break;
1121 case ICMP6_HADISCOV_REPLY:
1122 if (ndo->ndo_vflag) {
1123 const struct in6_addr *in6;
1124 const u_char *cp;
1125
1126 ND_TCHECK(dp->icmp6_data16[0]);
1127 ND_PRINT((ndo,", id 0x%04x", EXTRACT_16BITS(&dp->icmp6_data16[0])));
1128 cp = (const u_char *)dp + length;
1129 in6 = (const struct in6_addr *)(dp + 1);
1130 for (; (const u_char *)in6 < cp; in6++) {
1131 ND_TCHECK(*in6);
1132 ND_PRINT((ndo,", %s", ip6addr_string(ndo, in6)));
1133 }
1134 }
1135 break;
1136 case ICMP6_MOBILEPREFIX_ADVERT:
1137 if (ndo->ndo_vflag) {
1138 ND_TCHECK(dp->icmp6_data16[0]);
1139 ND_PRINT((ndo,", id 0x%04x", EXTRACT_16BITS(&dp->icmp6_data16[0])));
1140 if (dp->icmp6_data16[1] & 0xc0)
1141 ND_PRINT((ndo," "));
1142 if (dp->icmp6_data16[1] & 0x80)
1143 ND_PRINT((ndo,"M"));
1144 if (dp->icmp6_data16[1] & 0x40)
1145 ND_PRINT((ndo,"O"));
1146 #define MPADVLEN 8
1147 icmp6_opt_print(ndo, (const u_char *)dp + MPADVLEN,
1148 length - MPADVLEN);
1149 }
1150 break;
1151 case ND_RPL_MESSAGE:
1152 /* plus 4, because struct icmp6_hdr contains 4 bytes of icmp payload */
1153 rpl_print(ndo, dp, &dp->icmp6_data8[0], length-sizeof(struct icmp6_hdr)+4);
1154 break;
1155 default:
1156 ND_PRINT((ndo,", length %u", length));
1157 if (ndo->ndo_vflag <= 1)
1158 print_unknown_data(ndo, bp,"\n\t", length);
1159 return;
1160 }
1161 if (!ndo->ndo_vflag)
1162 ND_PRINT((ndo,", length %u", length));
1163 return;
1164 trunc:
1165 ND_PRINT((ndo, "[|icmp6]"));
1166 }
1167
1168 static const struct udphdr *
1169 get_upperlayer(netdissect_options *ndo, const u_char *bp, u_int *prot)
1170 {
1171 const u_char *ep;
1172 const struct ip6_hdr *ip6 = (const struct ip6_hdr *)bp;
1173 const struct udphdr *uh;
1174 const struct ip6_hbh *hbh;
1175 const struct ip6_frag *fragh;
1176 const struct ah *ah;
1177 u_int nh;
1178 int hlen;
1179
1180 /* 'ep' points to the end of available data. */
1181 ep = ndo->ndo_snapend;
1182
1183 if (!ND_TTEST(ip6->ip6_nxt))
1184 return NULL;
1185
1186 nh = ip6->ip6_nxt;
1187 hlen = sizeof(struct ip6_hdr);
1188
1189 while (bp < ep) {
1190 bp += hlen;
1191
1192 switch(nh) {
1193 case IPPROTO_UDP:
1194 case IPPROTO_TCP:
1195 uh = (const struct udphdr *)bp;
1196 if (ND_TTEST(uh->uh_dport)) {
1197 *prot = nh;
1198 return(uh);
1199 }
1200 else
1201 return(NULL);
1202 /* NOTREACHED */
1203
1204 case IPPROTO_HOPOPTS:
1205 case IPPROTO_DSTOPTS:
1206 case IPPROTO_ROUTING:
1207 hbh = (const struct ip6_hbh *)bp;
1208 if (!ND_TTEST(hbh->ip6h_len))
1209 return(NULL);
1210 nh = hbh->ip6h_nxt;
1211 hlen = (hbh->ip6h_len + 1) << 3;
1212 break;
1213
1214 case IPPROTO_FRAGMENT: /* this should be odd, but try anyway */
1215 fragh = (const struct ip6_frag *)bp;
1216 if (!ND_TTEST(fragh->ip6f_offlg))
1217 return(NULL);
1218 /* fragments with non-zero offset are meaningless */
1219 if ((EXTRACT_16BITS(&fragh->ip6f_offlg) & IP6F_OFF_MASK) != 0)
1220 return(NULL);
1221 nh = fragh->ip6f_nxt;
1222 hlen = sizeof(struct ip6_frag);
1223 break;
1224
1225 case IPPROTO_AH:
1226 ah = (const struct ah *)bp;
1227 if (!ND_TTEST(ah->ah_len))
1228 return(NULL);
1229 nh = ah->ah_nxt;
1230 hlen = (ah->ah_len + 2) << 2;
1231 break;
1232
1233 default: /* unknown or undecodable header */
1234 *prot = nh; /* meaningless, but set here anyway */
1235 return(NULL);
1236 }
1237 }
1238
1239 return(NULL); /* should be notreached, though */
1240 }
1241
1242 static void
1243 icmp6_opt_print(netdissect_options *ndo, const u_char *bp, int resid)
1244 {
1245 const struct nd_opt_hdr *op;
1246 const struct nd_opt_prefix_info *opp;
1247 const struct nd_opt_mtu *opm;
1248 const struct nd_opt_rdnss *oprd;
1249 const struct nd_opt_dnssl *opds;
1250 const struct nd_opt_advinterval *opa;
1251 const struct nd_opt_homeagent_info *oph;
1252 const struct nd_opt_route_info *opri;
1253 const u_char *cp, *ep, *domp;
1254 struct in6_addr in6;
1255 const struct in6_addr *in6p;
1256 size_t l;
1257 u_int i;
1258
1259 #define ECHECK(var) if ((const u_char *)&(var) > ep - sizeof(var)) return
1260
1261 cp = bp;
1262 /* 'ep' points to the end of available data. */
1263 ep = ndo->ndo_snapend;
1264
1265 while (cp < ep) {
1266 op = (const struct nd_opt_hdr *)cp;
1267
1268 ECHECK(op->nd_opt_len);
1269 if (resid <= 0)
1270 return;
1271 if (op->nd_opt_len == 0)
1272 goto trunc;
1273 if (cp + (op->nd_opt_len << 3) > ep)
1274 goto trunc;
1275
1276 ND_PRINT((ndo,"\n\t %s option (%u), length %u (%u): ",
1277 tok2str(icmp6_opt_values, "unknown", op->nd_opt_type),
1278 op->nd_opt_type,
1279 op->nd_opt_len << 3,
1280 op->nd_opt_len));
1281
1282 switch (op->nd_opt_type) {
1283 case ND_OPT_SOURCE_LINKADDR:
1284 l = (op->nd_opt_len << 3) - 2;
1285 print_lladdr(ndo, cp + 2, l);
1286 break;
1287 case ND_OPT_TARGET_LINKADDR:
1288 l = (op->nd_opt_len << 3) - 2;
1289 print_lladdr(ndo, cp + 2, l);
1290 break;
1291 case ND_OPT_PREFIX_INFORMATION:
1292 opp = (const struct nd_opt_prefix_info *)op;
1293 ND_TCHECK(opp->nd_opt_pi_prefix);
1294 ND_PRINT((ndo,"%s/%u%s, Flags [%s], valid time %s",
1295 ip6addr_string(ndo, &opp->nd_opt_pi_prefix),
1296 opp->nd_opt_pi_prefix_len,
1297 (op->nd_opt_len != 4) ? "badlen" : "",
1298 bittok2str(icmp6_opt_pi_flag_values, "none", opp->nd_opt_pi_flags_reserved),
1299 get_lifetime(EXTRACT_32BITS(&opp->nd_opt_pi_valid_time))));
1300 ND_PRINT((ndo,", pref. time %s", get_lifetime(EXTRACT_32BITS(&opp->nd_opt_pi_preferred_time))));
1301 break;
1302 case ND_OPT_REDIRECTED_HEADER:
1303 print_unknown_data(ndo, bp,"\n\t ",op->nd_opt_len<<3);
1304 /* xxx */
1305 break;
1306 case ND_OPT_MTU:
1307 opm = (const struct nd_opt_mtu *)op;
1308 ND_TCHECK(opm->nd_opt_mtu_mtu);
1309 ND_PRINT((ndo," %u%s",
1310 EXTRACT_32BITS(&opm->nd_opt_mtu_mtu),
1311 (op->nd_opt_len != 1) ? "bad option length" : "" ));
1312 break;
1313 case ND_OPT_RDNSS:
1314 oprd = (const struct nd_opt_rdnss *)op;
1315 l = (op->nd_opt_len - 1) / 2;
1316 ND_PRINT((ndo," lifetime %us,",
1317 EXTRACT_32BITS(&oprd->nd_opt_rdnss_lifetime)));
1318 for (i = 0; i < l; i++) {
1319 ND_TCHECK(oprd->nd_opt_rdnss_addr[i]);
1320 ND_PRINT((ndo," addr: %s",
1321 ip6addr_string(ndo, &oprd->nd_opt_rdnss_addr[i])));
1322 }
1323 break;
1324 case ND_OPT_DNSSL:
1325 opds = (const struct nd_opt_dnssl *)op;
1326 ND_PRINT((ndo," lifetime %us, domain(s):",
1327 EXTRACT_32BITS(&opds->nd_opt_dnssl_lifetime)));
1328 domp = cp + 8; /* domain names, variable-sized, RFC1035-encoded */
1329 while (domp < cp + (op->nd_opt_len << 3) && *domp != '\0')
1330 {
1331 ND_PRINT((ndo, " "));
1332 if ((domp = ns_nprint (ndo, domp, bp)) == NULL)
1333 goto trunc;
1334 }
1335 break;
1336 case ND_OPT_ADVINTERVAL:
1337 opa = (const struct nd_opt_advinterval *)op;
1338 ND_TCHECK(opa->nd_opt_adv_interval);
1339 ND_PRINT((ndo," %ums", EXTRACT_32BITS(&opa->nd_opt_adv_interval)));
1340 break;
1341 case ND_OPT_HOMEAGENT_INFO:
1342 oph = (const struct nd_opt_homeagent_info *)op;
1343 ND_TCHECK(oph->nd_opt_hai_lifetime);
1344 ND_PRINT((ndo," preference %u, lifetime %u",
1345 EXTRACT_16BITS(&oph->nd_opt_hai_preference),
1346 EXTRACT_16BITS(&oph->nd_opt_hai_lifetime)));
1347 break;
1348 case ND_OPT_ROUTE_INFO:
1349 opri = (const struct nd_opt_route_info *)op;
1350 ND_TCHECK(opri->nd_opt_rti_lifetime);
1351 memset(&in6, 0, sizeof(in6));
1352 in6p = (const struct in6_addr *)(opri + 1);
1353 switch (op->nd_opt_len) {
1354 case 1:
1355 break;
1356 case 2:
1357 ND_TCHECK2(*in6p, 8);
1358 memcpy(&in6, opri + 1, 8);
1359 break;
1360 case 3:
1361 ND_TCHECK(*in6p);
1362 memcpy(&in6, opri + 1, sizeof(in6));
1363 break;
1364 default:
1365 goto trunc;
1366 }
1367 ND_PRINT((ndo," %s/%u", ip6addr_string(ndo, &in6),
1368 opri->nd_opt_rti_prefixlen));
1369 ND_PRINT((ndo,", pref=%s", get_rtpref(opri->nd_opt_rti_flags)));
1370 ND_PRINT((ndo,", lifetime=%s",
1371 get_lifetime(EXTRACT_32BITS(&opri->nd_opt_rti_lifetime))));
1372 break;
1373 default:
1374 if (ndo->ndo_vflag <= 1) {
1375 print_unknown_data(ndo,cp+2,"\n\t ", (op->nd_opt_len << 3) - 2); /* skip option header */
1376 return;
1377 }
1378 break;
1379 }
1380 /* do we want to see an additional hexdump ? */
1381 if (ndo->ndo_vflag> 1)
1382 print_unknown_data(ndo, cp+2,"\n\t ", (op->nd_opt_len << 3) - 2); /* skip option header */
1383
1384 cp += op->nd_opt_len << 3;
1385 resid -= op->nd_opt_len << 3;
1386 }
1387 return;
1388
1389 trunc:
1390 ND_PRINT((ndo, "[ndp opt]"));
1391 return;
1392 #undef ECHECK
1393 }
1394
1395 static void
1396 mld6_print(netdissect_options *ndo, const u_char *bp)
1397 {
1398 const struct mld6_hdr *mp = (const struct mld6_hdr *)bp;
1399 const u_char *ep;
1400
1401 /* 'ep' points to the end of available data. */
1402 ep = ndo->ndo_snapend;
1403
1404 if ((const u_char *)mp + sizeof(*mp) > ep)
1405 return;
1406
1407 ND_PRINT((ndo,"max resp delay: %d ", EXTRACT_16BITS(&mp->mld6_maxdelay)));
1408 ND_PRINT((ndo,"addr: %s", ip6addr_string(ndo, &mp->mld6_addr)));
1409 }
1410
1411 static void
1412 mldv2_report_print(netdissect_options *ndo, const u_char *bp, u_int len)
1413 {
1414 const struct icmp6_hdr *icp = (const struct icmp6_hdr *) bp;
1415 u_int group, nsrcs, ngroups;
1416 u_int i, j;
1417
1418 /* Minimum len is 8 */
1419 if (len < 8) {
1420 ND_PRINT((ndo," [invalid len %d]", len));
1421 return;
1422 }
1423
1424 ND_TCHECK(icp->icmp6_data16[1]);
1425 ngroups = EXTRACT_16BITS(&icp->icmp6_data16[1]);
1426 ND_PRINT((ndo,", %d group record(s)", ngroups));
1427 if (ndo->ndo_vflag > 0) {
1428 /* Print the group records */
1429 group = 8;
1430 for (i = 0; i < ngroups; i++) {
1431 /* type(1) + auxlen(1) + numsrc(2) + grp(16) */
1432 if (len < group + 20) {
1433 ND_PRINT((ndo," [invalid number of groups]"));
1434 return;
1435 }
1436 ND_TCHECK2(bp[group + 4], sizeof(struct in6_addr));
1437 ND_PRINT((ndo," [gaddr %s", ip6addr_string(ndo, &bp[group + 4])));
1438 ND_PRINT((ndo," %s", tok2str(mldv2report2str, " [v2-report-#%d]",
1439 bp[group])));
1440 nsrcs = (bp[group + 2] << 8) + bp[group + 3];
1441 /* Check the number of sources and print them */
1442 if (len < group + 20 + (nsrcs * sizeof(struct in6_addr))) {
1443 ND_PRINT((ndo," [invalid number of sources %d]", nsrcs));
1444 return;
1445 }
1446 if (ndo->ndo_vflag == 1)
1447 ND_PRINT((ndo,", %d source(s)", nsrcs));
1448 else {
1449 /* Print the sources */
1450 ND_PRINT((ndo," {"));
1451 for (j = 0; j < nsrcs; j++) {
1452 ND_TCHECK2(bp[group + 20 + j * sizeof(struct in6_addr)],
1453 sizeof(struct in6_addr));
1454 ND_PRINT((ndo," %s", ip6addr_string(ndo, &bp[group + 20 + j * sizeof(struct in6_addr)])));
1455 }
1456 ND_PRINT((ndo," }"));
1457 }
1458 /* Next group record */
1459 group += 20 + nsrcs * sizeof(struct in6_addr);
1460 ND_PRINT((ndo,"]"));
1461 }
1462 }
1463 return;
1464 trunc:
1465 ND_PRINT((ndo,"[|icmp6]"));
1466 return;
1467 }
1468
1469 static void
1470 mldv2_query_print(netdissect_options *ndo, const u_char *bp, u_int len)
1471 {
1472 const struct icmp6_hdr *icp = (const struct icmp6_hdr *) bp;
1473 u_int mrc;
1474 int mrt, qqi;
1475 u_int nsrcs;
1476 register u_int i;
1477
1478 /* Minimum len is 28 */
1479 if (len < 28) {
1480 ND_PRINT((ndo," [invalid len %d]", len));
1481 return;
1482 }
1483 ND_TCHECK(icp->icmp6_data16[0]);
1484 mrc = EXTRACT_16BITS(&icp->icmp6_data16[0]);
1485 if (mrc < 32768) {
1486 mrt = mrc;
1487 } else {
1488 mrt = ((mrc & 0x0fff) | 0x1000) << (((mrc & 0x7000) >> 12) + 3);
1489 }
1490 if (ndo->ndo_vflag) {
1491 ND_PRINT((ndo," [max resp delay=%d]", mrt));
1492 }
1493 ND_TCHECK2(bp[8], sizeof(struct in6_addr));
1494 ND_PRINT((ndo," [gaddr %s", ip6addr_string(ndo, &bp[8])));
1495
1496 if (ndo->ndo_vflag) {
1497 ND_TCHECK(bp[25]);
1498 if (bp[24] & 0x08) {
1499 ND_PRINT((ndo," sflag"));
1500 }
1501 if (bp[24] & 0x07) {
1502 ND_PRINT((ndo," robustness=%d", bp[24] & 0x07));
1503 }
1504 if (bp[25] < 128) {
1505 qqi = bp[25];
1506 } else {
1507 qqi = ((bp[25] & 0x0f) | 0x10) << (((bp[25] & 0x70) >> 4) + 3);
1508 }
1509 ND_PRINT((ndo," qqi=%d", qqi));
1510 }
1511
1512 ND_TCHECK2(bp[26], 2);
1513 nsrcs = EXTRACT_16BITS(&bp[26]);
1514 if (nsrcs > 0) {
1515 if (len < 28 + nsrcs * sizeof(struct in6_addr))
1516 ND_PRINT((ndo," [invalid number of sources]"));
1517 else if (ndo->ndo_vflag > 1) {
1518 ND_PRINT((ndo," {"));
1519 for (i = 0; i < nsrcs; i++) {
1520 ND_TCHECK2(bp[28 + i * sizeof(struct in6_addr)],
1521 sizeof(struct in6_addr));
1522 ND_PRINT((ndo," %s", ip6addr_string(ndo, &bp[28 + i * sizeof(struct in6_addr)])));
1523 }
1524 ND_PRINT((ndo," }"));
1525 } else
1526 ND_PRINT((ndo,", %d source(s)", nsrcs));
1527 }
1528 ND_PRINT((ndo,"]"));
1529 return;
1530 trunc:
1531 ND_PRINT((ndo,"[|icmp6]"));
1532 return;
1533 }
1534
1535 static void
1536 dnsname_print(netdissect_options *ndo, const u_char *cp, const u_char *ep)
1537 {
1538 int i;
1539
1540 /* DNS name decoding - no decompression */
1541 ND_PRINT((ndo,", \""));
1542 while (cp < ep) {
1543 i = *cp++;
1544 if (i) {
1545 if (i > ep - cp) {
1546 ND_PRINT((ndo,"???"));
1547 break;
1548 }
1549 while (i-- && cp < ep) {
1550 safeputchar(ndo, *cp);
1551 cp++;
1552 }
1553 if (cp + 1 < ep && *cp)
1554 ND_PRINT((ndo,"."));
1555 } else {
1556 if (cp == ep) {
1557 /* FQDN */
1558 ND_PRINT((ndo,"."));
1559 } else if (cp + 1 == ep && *cp == '\0') {
1560 /* truncated */
1561 } else {
1562 /* invalid */
1563 ND_PRINT((ndo,"???"));
1564 }
1565 break;
1566 }
1567 }
1568 ND_PRINT((ndo,"\""));
1569 }
1570
1571 static void
1572 icmp6_nodeinfo_print(netdissect_options *ndo, u_int icmp6len, const u_char *bp, const u_char *ep)
1573 {
1574 const struct icmp6_nodeinfo *ni6;
1575 const struct icmp6_hdr *dp;
1576 const u_char *cp;
1577 size_t siz, i;
1578 int needcomma;
1579
1580 if (ep < bp)
1581 return;
1582 dp = (const struct icmp6_hdr *)bp;
1583 ni6 = (const struct icmp6_nodeinfo *)bp;
1584 siz = ep - bp;
1585
1586 switch (ni6->ni_type) {
1587 case ICMP6_NI_QUERY:
1588 if (siz == sizeof(*dp) + 4) {
1589 /* KAME who-are-you */
1590 ND_PRINT((ndo," who-are-you request"));
1591 break;
1592 }
1593 ND_PRINT((ndo," node information query"));
1594
1595 ND_TCHECK2(*dp, sizeof(*ni6));
1596 ni6 = (const struct icmp6_nodeinfo *)dp;
1597 ND_PRINT((ndo," (")); /*)*/
1598 switch (EXTRACT_16BITS(&ni6->ni_qtype)) {
1599 case NI_QTYPE_NOOP:
1600 ND_PRINT((ndo,"noop"));
1601 break;
1602 case NI_QTYPE_SUPTYPES:
1603 ND_PRINT((ndo,"supported qtypes"));
1604 i = EXTRACT_16BITS(&ni6->ni_flags);
1605 if (i)
1606 ND_PRINT((ndo," [%s]", (i & 0x01) ? "C" : ""));
1607 break;
1608 case NI_QTYPE_FQDN:
1609 ND_PRINT((ndo,"DNS name"));
1610 break;
1611 case NI_QTYPE_NODEADDR:
1612 ND_PRINT((ndo,"node addresses"));
1613 i = ni6->ni_flags;
1614 if (!i)
1615 break;
1616 /* NI_NODEADDR_FLAG_TRUNCATE undefined for query */
1617 ND_PRINT((ndo," [%s%s%s%s%s%s]",
1618 (i & NI_NODEADDR_FLAG_ANYCAST) ? "a" : "",
1619 (i & NI_NODEADDR_FLAG_GLOBAL) ? "G" : "",
1620 (i & NI_NODEADDR_FLAG_SITELOCAL) ? "S" : "",
1621 (i & NI_NODEADDR_FLAG_LINKLOCAL) ? "L" : "",
1622 (i & NI_NODEADDR_FLAG_COMPAT) ? "C" : "",
1623 (i & NI_NODEADDR_FLAG_ALL) ? "A" : ""));
1624 break;
1625 default:
1626 ND_PRINT((ndo,"unknown"));
1627 break;
1628 }
1629
1630 if (ni6->ni_qtype == NI_QTYPE_NOOP ||
1631 ni6->ni_qtype == NI_QTYPE_SUPTYPES) {
1632 if (siz != sizeof(*ni6))
1633 if (ndo->ndo_vflag)
1634 ND_PRINT((ndo,", invalid len"));
1635 /*(*/
1636 ND_PRINT((ndo,")"));
1637 break;
1638 }
1639
1640
1641 /* XXX backward compat, icmp-name-lookup-03 */
1642 if (siz == sizeof(*ni6)) {
1643 ND_PRINT((ndo,", 03 draft"));
1644 /*(*/
1645 ND_PRINT((ndo,")"));
1646 break;
1647 }
1648
1649 switch (ni6->ni_code) {
1650 case ICMP6_NI_SUBJ_IPV6:
1651 if (!ND_TTEST2(*dp,
1652 sizeof(*ni6) + sizeof(struct in6_addr)))
1653 break;
1654 if (siz != sizeof(*ni6) + sizeof(struct in6_addr)) {
1655 if (ndo->ndo_vflag)
1656 ND_PRINT((ndo,", invalid subject len"));
1657 break;
1658 }
1659 ND_PRINT((ndo,", subject=%s",
1660 ip6addr_string(ndo, ni6 + 1)));
1661 break;
1662 case ICMP6_NI_SUBJ_FQDN:
1663 ND_PRINT((ndo,", subject=DNS name"));
1664 cp = (const u_char *)(ni6 + 1);
1665 if (cp[0] == ep - cp - 1) {
1666 /* icmp-name-lookup-03, pascal string */
1667 if (ndo->ndo_vflag)
1668 ND_PRINT((ndo,", 03 draft"));
1669 cp++;
1670 ND_PRINT((ndo,", \""));
1671 while (cp < ep) {
1672 safeputchar(ndo, *cp);
1673 cp++;
1674 }
1675 ND_PRINT((ndo,"\""));
1676 } else
1677 dnsname_print(ndo, cp, ep);
1678 break;
1679 case ICMP6_NI_SUBJ_IPV4:
1680 if (!ND_TTEST2(*dp, sizeof(*ni6) + sizeof(struct in_addr)))
1681 break;
1682 if (siz != sizeof(*ni6) + sizeof(struct in_addr)) {
1683 if (ndo->ndo_vflag)
1684 ND_PRINT((ndo,", invalid subject len"));
1685 break;
1686 }
1687 ND_PRINT((ndo,", subject=%s",
1688 getname(ndo, (const u_char *)(ni6 + 1))));
1689 break;
1690 default:
1691 ND_PRINT((ndo,", unknown subject"));
1692 break;
1693 }
1694
1695 /*(*/
1696 ND_PRINT((ndo,")"));
1697 break;
1698
1699 case ICMP6_NI_REPLY:
1700 if (icmp6len > siz) {
1701 ND_PRINT((ndo,"[|icmp6: node information reply]"));
1702 break;
1703 }
1704
1705 needcomma = 0;
1706
1707 ni6 = (const struct icmp6_nodeinfo *)dp;
1708 ND_PRINT((ndo," node information reply"));
1709 ND_PRINT((ndo," (")); /*)*/
1710 switch (ni6->ni_code) {
1711 case ICMP6_NI_SUCCESS:
1712 if (ndo->ndo_vflag) {
1713 ND_PRINT((ndo,"success"));
1714 needcomma++;
1715 }
1716 break;
1717 case ICMP6_NI_REFUSED:
1718 ND_PRINT((ndo,"refused"));
1719 needcomma++;
1720 if (siz != sizeof(*ni6))
1721 if (ndo->ndo_vflag)
1722 ND_PRINT((ndo,", invalid length"));
1723 break;
1724 case ICMP6_NI_UNKNOWN:
1725 ND_PRINT((ndo,"unknown"));
1726 needcomma++;
1727 if (siz != sizeof(*ni6))
1728 if (ndo->ndo_vflag)
1729 ND_PRINT((ndo,", invalid length"));
1730 break;
1731 }
1732
1733 if (ni6->ni_code != ICMP6_NI_SUCCESS) {
1734 /*(*/
1735 ND_PRINT((ndo,")"));
1736 break;
1737 }
1738
1739 switch (EXTRACT_16BITS(&ni6->ni_qtype)) {
1740 case NI_QTYPE_NOOP:
1741 if (needcomma)
1742 ND_PRINT((ndo,", "));
1743 ND_PRINT((ndo,"noop"));
1744 if (siz != sizeof(*ni6))
1745 if (ndo->ndo_vflag)
1746 ND_PRINT((ndo,", invalid length"));
1747 break;
1748 case NI_QTYPE_SUPTYPES:
1749 if (needcomma)
1750 ND_PRINT((ndo,", "));
1751 ND_PRINT((ndo,"supported qtypes"));
1752 i = EXTRACT_16BITS(&ni6->ni_flags);
1753 if (i)
1754 ND_PRINT((ndo," [%s]", (i & 0x01) ? "C" : ""));
1755 break;
1756 case NI_QTYPE_FQDN:
1757 if (needcomma)
1758 ND_PRINT((ndo,", "));
1759 ND_PRINT((ndo,"DNS name"));
1760 cp = (const u_char *)(ni6 + 1) + 4;
1761 if (cp[0] == ep - cp - 1) {
1762 /* icmp-name-lookup-03, pascal string */
1763 if (ndo->ndo_vflag)
1764 ND_PRINT((ndo,", 03 draft"));
1765 cp++;
1766 ND_PRINT((ndo,", \""));
1767 while (cp < ep) {
1768 safeputchar(ndo, *cp);
1769 cp++;
1770 }
1771 ND_PRINT((ndo,"\""));
1772 } else
1773 dnsname_print(ndo, cp, ep);
1774 if ((EXTRACT_16BITS(&ni6->ni_flags) & 0x01) != 0)
1775 ND_PRINT((ndo," [TTL=%u]", EXTRACT_32BITS(ni6 + 1)));
1776 break;
1777 case NI_QTYPE_NODEADDR:
1778 if (needcomma)
1779 ND_PRINT((ndo,", "));
1780 ND_PRINT((ndo,"node addresses"));
1781 i = sizeof(*ni6);
1782 while (i < siz) {
1783 if (i + sizeof(struct in6_addr) + sizeof(int32_t) > siz)
1784 break;
1785 ND_PRINT((ndo," %s", ip6addr_string(ndo, bp + i)));
1786 i += sizeof(struct in6_addr);
1787 ND_PRINT((ndo,"(%d)", (int32_t)EXTRACT_32BITS(bp + i)));
1788 i += sizeof(int32_t);
1789 }
1790 i = ni6->ni_flags;
1791 if (!i)
1792 break;
1793 ND_PRINT((ndo," [%s%s%s%s%s%s%s]",
1794 (i & NI_NODEADDR_FLAG_ANYCAST) ? "a" : "",
1795 (i & NI_NODEADDR_FLAG_GLOBAL) ? "G" : "",
1796 (i & NI_NODEADDR_FLAG_SITELOCAL) ? "S" : "",
1797 (i & NI_NODEADDR_FLAG_LINKLOCAL) ? "L" : "",
1798 (i & NI_NODEADDR_FLAG_COMPAT) ? "C" : "",
1799 (i & NI_NODEADDR_FLAG_ALL) ? "A" : "",
1800 (i & NI_NODEADDR_FLAG_TRUNCATE) ? "T" : ""));
1801 break;
1802 default:
1803 if (needcomma)
1804 ND_PRINT((ndo,", "));
1805 ND_PRINT((ndo,"unknown"));
1806 break;
1807 }
1808
1809 /*(*/
1810 ND_PRINT((ndo,")"));
1811 break;
1812 }
1813 return;
1814
1815 trunc:
1816 ND_PRINT((ndo, "[|icmp6]"));
1817 }
1818
1819 static void
1820 icmp6_rrenum_print(netdissect_options *ndo, const u_char *bp, const u_char *ep)
1821 {
1822 const struct icmp6_router_renum *rr6;
1823 const char *cp;
1824 const struct rr_pco_match *match;
1825 const struct rr_pco_use *use;
1826 char hbuf[NI_MAXHOST];
1827 int n;
1828
1829 if (ep < bp)
1830 return;
1831 rr6 = (const struct icmp6_router_renum *)bp;
1832 cp = (const char *)(rr6 + 1);
1833
1834 ND_TCHECK(rr6->rr_reserved);
1835 switch (rr6->rr_code) {
1836 case ICMP6_ROUTER_RENUMBERING_COMMAND:
1837 ND_PRINT((ndo,"router renum: command"));
1838 break;
1839 case ICMP6_ROUTER_RENUMBERING_RESULT:
1840 ND_PRINT((ndo,"router renum: result"));
1841 break;
1842 case ICMP6_ROUTER_RENUMBERING_SEQNUM_RESET:
1843 ND_PRINT((ndo,"router renum: sequence number reset"));
1844 break;
1845 default:
1846 ND_PRINT((ndo,"router renum: code-#%d", rr6->rr_code));
1847 break;
1848 }
1849
1850 ND_PRINT((ndo,", seq=%u", EXTRACT_32BITS(&rr6->rr_seqnum)));
1851
1852 if (ndo->ndo_vflag) {
1853 #define F(x, y) ((rr6->rr_flags) & (x) ? (y) : "")
1854 ND_PRINT((ndo,"[")); /*]*/
1855 if (rr6->rr_flags) {
1856 ND_PRINT((ndo,"%s%s%s%s%s,", F(ICMP6_RR_FLAGS_TEST, "T"),
1857 F(ICMP6_RR_FLAGS_REQRESULT, "R"),
1858 F(ICMP6_RR_FLAGS_FORCEAPPLY, "A"),
1859 F(ICMP6_RR_FLAGS_SPECSITE, "S"),
1860 F(ICMP6_RR_FLAGS_PREVDONE, "P")));
1861 }
1862 ND_PRINT((ndo,"seg=%u,", rr6->rr_segnum));
1863 ND_PRINT((ndo,"maxdelay=%u", EXTRACT_16BITS(&rr6->rr_maxdelay)));
1864 if (rr6->rr_reserved)
1865 ND_PRINT((ndo,"rsvd=0x%x", EXTRACT_32BITS(&rr6->rr_reserved)));
1866 /*[*/
1867 ND_PRINT((ndo,"]"));
1868 #undef F
1869 }
1870
1871 if (rr6->rr_code == ICMP6_ROUTER_RENUMBERING_COMMAND) {
1872 match = (const struct rr_pco_match *)cp;
1873 cp = (const char *)(match + 1);
1874
1875 ND_TCHECK(match->rpm_prefix);
1876
1877 if (ndo->ndo_vflag > 1)
1878 ND_PRINT((ndo,"\n\t"));
1879 else
1880 ND_PRINT((ndo," "));
1881 ND_PRINT((ndo,"match(")); /*)*/
1882 switch (match->rpm_code) {
1883 case RPM_PCO_ADD: ND_PRINT((ndo,"add")); break;
1884 case RPM_PCO_CHANGE: ND_PRINT((ndo,"change")); break;
1885 case RPM_PCO_SETGLOBAL: ND_PRINT((ndo,"setglobal")); break;
1886 default: ND_PRINT((ndo,"#%u", match->rpm_code)); break;
1887 }
1888
1889 if (ndo->ndo_vflag) {
1890 ND_PRINT((ndo,",ord=%u", match->rpm_ordinal));
1891 ND_PRINT((ndo,",min=%u", match->rpm_minlen));
1892 ND_PRINT((ndo,",max=%u", match->rpm_maxlen));
1893 }
1894 if (addrtostr6(&match->rpm_prefix, hbuf, sizeof(hbuf)))
1895 ND_PRINT((ndo,",%s/%u", hbuf, match->rpm_matchlen));
1896 else
1897 ND_PRINT((ndo,",?/%u", match->rpm_matchlen));
1898 /*(*/
1899 ND_PRINT((ndo,")"));
1900
1901 n = match->rpm_len - 3;
1902 if (n % 4)
1903 goto trunc;
1904 n /= 4;
1905 while (n-- > 0) {
1906 use = (const struct rr_pco_use *)cp;
1907 cp = (const char *)(use + 1);
1908
1909 ND_TCHECK(use->rpu_prefix);
1910
1911 if (ndo->ndo_vflag > 1)
1912 ND_PRINT((ndo,"\n\t"));
1913 else
1914 ND_PRINT((ndo," "));
1915 ND_PRINT((ndo,"use(")); /*)*/
1916 if (use->rpu_flags) {
1917 #define F(x, y) ((use->rpu_flags) & (x) ? (y) : "")
1918 ND_PRINT((ndo,"%s%s,",
1919 F(ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME, "V"),
1920 F(ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME, "P")));
1921 #undef F
1922 }
1923 if (ndo->ndo_vflag) {
1924 ND_PRINT((ndo,"mask=0x%x,", use->rpu_ramask));
1925 ND_PRINT((ndo,"raflags=0x%x,", use->rpu_raflags));
1926 if (~use->rpu_vltime == 0)
1927 ND_PRINT((ndo,"vltime=infty,"));
1928 else
1929 ND_PRINT((ndo,"vltime=%u,",
1930 EXTRACT_32BITS(&use->rpu_vltime)));
1931 if (~use->rpu_pltime == 0)
1932 ND_PRINT((ndo,"pltime=infty,"));
1933 else
1934 ND_PRINT((ndo,"pltime=%u,",
1935 EXTRACT_32BITS(&use->rpu_pltime)));
1936 }
1937 if (addrtostr6(&use->rpu_prefix, hbuf, sizeof(hbuf)))
1938 ND_PRINT((ndo,"%s/%u/%u", hbuf, use->rpu_uselen,
1939 use->rpu_keeplen));
1940 else
1941 ND_PRINT((ndo,"?/%u/%u", use->rpu_uselen,
1942 use->rpu_keeplen));
1943 /*(*/
1944 ND_PRINT((ndo,")"));
1945 }
1946 }
1947
1948 return;
1949
1950 trunc:
1951 ND_PRINT((ndo,"[|icmp6]"));
1952 }
1953
1954 /*
1955 * Local Variables:
1956 * c-style: whitesmith
1957 * c-basic-offset: 8
1958 * End:
1959 */