2 * Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994
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.
23 static const char rcsid
[] _U_
=
24 "@(#) $Header: /tcpdump/master/tcpdump/print-icmp6.c,v 1.86 2008-02-05 19:36:13 guy Exp $";
33 #include <tcpdump-stdinc.h>
38 #include "interface.h"
39 #include "addrtoname.h"
49 static const char *get_rtpref(u_int
);
50 static const char *get_lifetime(u_int32_t
);
51 static void print_lladdr(const u_char
*, size_t);
52 static void icmp6_opt_print(const u_char
*, int);
53 static void mld6_print(const u_char
*);
54 static void mldv2_report_print(const u_char
*, u_int
);
55 static void mldv2_query_print(const u_char
*, u_int
);
56 static struct udphdr
*get_upperlayer(u_char
*, u_int
*);
57 static void dnsname_print(const u_char
*, const u_char
*);
58 static void icmp6_nodeinfo_print(u_int
, const u_char
*, const u_char
*);
59 static void icmp6_rrenum_print(const u_char
*, const u_char
*);
62 #define abs(a) ((0 < (a)) ? (a) : -(a))
65 /* inline the various RPL definitions */
66 #define ND_RPL_MESSAGE 0x9B
68 static struct tok icmp6_type_values
[] = {
69 { ICMP6_DST_UNREACH
, "destination unreachable"},
70 { ICMP6_PACKET_TOO_BIG
, "packet too big"},
71 { ICMP6_TIME_EXCEEDED
, "time exceeded in-transit"},
72 { ICMP6_PARAM_PROB
, "parameter problem"},
73 { ICMP6_ECHO_REQUEST
, "echo request"},
74 { ICMP6_ECHO_REPLY
, "echo reply"},
75 { MLD6_LISTENER_QUERY
, "multicast listener query"},
76 { MLD6_LISTENER_REPORT
, "multicast listener report"},
77 { MLD6_LISTENER_DONE
, "multicast listener done"},
78 { ND_ROUTER_SOLICIT
, "router solicitation"},
79 { ND_ROUTER_ADVERT
, "router advertisement"},
80 { ND_NEIGHBOR_SOLICIT
, "neighbor solicitation"},
81 { ND_NEIGHBOR_ADVERT
, "neighbor advertisement"},
82 { ND_REDIRECT
, "redirect"},
83 { ICMP6_ROUTER_RENUMBERING
, "router renumbering"},
84 { IND_SOLICIT
, "inverse neighbor solicitation"},
85 { IND_ADVERT
, "inverse neighbor advertisement"},
86 { MLDV2_LISTENER_REPORT
, "multicast listener report v2"},
87 { ICMP6_HADISCOV_REQUEST
, "ha discovery request"},
88 { ICMP6_HADISCOV_REPLY
, "ha discovery reply"},
89 { ICMP6_MOBILEPREFIX_SOLICIT
, "mobile router solicitation"},
90 { ICMP6_MOBILEPREFIX_ADVERT
, "mobile router advertisement"},
91 { ICMP6_WRUREQUEST
, "who-are-you request"},
92 { ICMP6_WRUREPLY
, "who-are-you reply"},
93 { ICMP6_NI_QUERY
, "node information query"},
94 { ICMP6_NI_REPLY
, "node information reply"},
95 { MLD6_MTRACE
, "mtrace message"},
96 { MLD6_MTRACE_RESP
, "mtrace response"},
97 { ND_RPL_MESSAGE
, "RPL"},
101 static struct tok icmp6_dst_unreach_code_values
[] = {
102 { ICMP6_DST_UNREACH_NOROUTE
, "unreachable route" },
103 { ICMP6_DST_UNREACH_ADMIN
, " unreachable prohibited"},
104 { ICMP6_DST_UNREACH_BEYONDSCOPE
, "beyond scope"},
105 { ICMP6_DST_UNREACH_ADDR
, "unreachable address"},
106 { ICMP6_DST_UNREACH_NOPORT
, "unreachable port"},
110 static struct tok icmp6_opt_pi_flag_values
[] = {
111 { ND_OPT_PI_FLAG_ONLINK
, "onlink" },
112 { ND_OPT_PI_FLAG_AUTO
, "auto" },
113 { ND_OPT_PI_FLAG_ROUTER
, "router" },
117 static struct tok icmp6_opt_ra_flag_values
[] = {
118 { ND_RA_FLAG_MANAGED
, "managed" },
119 { ND_RA_FLAG_OTHER
, "other stateful"},
120 { ND_RA_FLAG_HOME_AGENT
, "home agent"},
124 static struct tok icmp6_nd_na_flag_values
[] = {
125 { ND_NA_FLAG_ROUTER
, "router" },
126 { ND_NA_FLAG_SOLICITED
, "solicited" },
127 { ND_NA_FLAG_OVERRIDE
, "override" },
132 static struct tok icmp6_opt_values
[] = {
133 { ND_OPT_SOURCE_LINKADDR
, "source link-address"},
134 { ND_OPT_TARGET_LINKADDR
, "destination link-address"},
135 { ND_OPT_PREFIX_INFORMATION
, "prefix info"},
136 { ND_OPT_REDIRECTED_HEADER
, "redirected header"},
137 { ND_OPT_MTU
, "mtu"},
138 { ND_OPT_ADVINTERVAL
, "advertisement interval"},
139 { ND_OPT_HOMEAGENT_INFO
, "homeagent information"},
140 { ND_OPT_ROUTE_INFO
, "route info"},
144 /* mldv2 report types */
145 static struct tok mldv2report2str
[] = {
158 static const char *rtpref_str
[] = {
165 return rtpref_str
[((v
& ND_RA_FLAG_RTPREF_MASK
) >> 3) & 0xff];
169 get_lifetime(u_int32_t v
)
173 if (v
== (u_int32_t
)~0UL)
176 snprintf(buf
, sizeof(buf
), "%u", v
);
182 print_lladdr(const u_int8_t
*p
, size_t l
)
184 const u_int8_t
*ep
, *q
;
188 while (l
> 0 && q
< ep
) {
191 printf("%02x", *q
++);
196 static int icmp6_cksum(const struct ip6_hdr
*ip6
, const struct icmp6_hdr
*icp
,
200 register const u_int16_t
*sp
;
204 struct in6_addr ph_src
;
205 struct in6_addr ph_dst
;
214 memset(&phu
, 0, sizeof(phu
));
215 phu
.ph
.ph_src
= ip6
->ip6_src
;
216 phu
.ph
.ph_dst
= ip6
->ip6_dst
;
217 phu
.ph
.ph_len
= htonl(len
);
218 phu
.ph
.ph_nxt
= IPPROTO_ICMPV6
;
221 for (i
= 0; i
< sizeof(phu
.pa
) / sizeof(phu
.pa
[0]); i
++)
224 sp
= (const u_int16_t
*)icp
;
226 for (i
= 0; i
< (len
& ~1); i
+= 2)
230 sum
+= htons((*(const u_int8_t
*)sp
) << 8);
233 sum
= (sum
& 0xffff) + (sum
>> 16);
245 enum ND_RPL_DIO_FLAGS
{
246 ND_RPL_DIO_GROUNDED
= 0x80,
247 ND_RPL_DIO_DATRIG
= 0x40,
248 ND_RPL_DIO_DASUPPORT
= 0x20,
249 ND_RPL_DIO_RES4
= 0x10,
250 ND_RPL_DIO_RES3
= 0x08,
251 ND_RPL_DIO_PRF_MASK
= 0x07, /* 3-bit preference */
257 u_int8_t rpl_instanceid
;
258 u_int8_t rpl_dagrank
;
259 u_int8_t rpl_dagid
[16];
263 rpl_print(netdissect_options
*ndo
,
264 const struct icmp6_hdr
*hdr
,
265 const u_char
*bp
, u_int length
)
267 struct nd_rpl_dio
*dio
= (struct nd_rpl_dio
*)bp
;
269 ND_TCHECK(dio
->rpl_dagid
);
271 switch(hdr
->icmp6_code
) {
273 ND_PRINT((ndo
, ", DAG Information Solicitation"));
278 ND_PRINT((ndo
, ", DAG Information Object"));
284 if(isprint(dio
->rpl_dagid
[i
])) {
285 *d
++ = dio
->rpl_dagid
[i
];
287 int cnt
=snprintf(d
,4,"0x%02x",
293 ND_PRINT((ndo
, " [seq:%u,instance:%u,rank:%u,dagid:%s]",
301 ND_PRINT((ndo
, ", Destination Advertisement Object"));
306 ND_PRINT((ndo
, ", RPL message, unknown code %u",hdr
->icmp6_code
));
311 ND_PRINT((ndo
," [|truncated]"));
318 icmp6_print(netdissect_options
*ndo
,
319 const u_char
*bp
, u_int length
, const u_char
*bp2
, int fragmented
)
321 const struct icmp6_hdr
*dp
;
322 const struct ip6_hdr
*ip
;
323 const struct ip6_hdr
*oip
;
324 const struct udphdr
*ouh
;
329 dp
= (struct icmp6_hdr
*)bp
;
330 ip
= (struct ip6_hdr
*)bp2
;
331 oip
= (struct ip6_hdr
*)(dp
+ 1);
332 /* 'ep' points to the end of available data. */
335 TCHECK(dp
->icmp6_cksum
);
337 if (vflag
&& !fragmented
) {
338 int sum
= dp
->icmp6_cksum
;
340 if (TTEST2(bp
[0], length
)) {
341 sum
= icmp6_cksum(ip
, dp
, length
);
343 (void)printf("[bad icmp6 cksum %x!] ", sum
);
345 (void)printf("[icmp6 sum ok] ");
349 printf("ICMP6, %s", tok2str(icmp6_type_values
,"unknown icmp6 type (%u)",dp
->icmp6_type
));
351 /* display cosmetics: print the packet length for printer that use the vflag now */
352 if (vflag
&& (dp
->icmp6_type
==
355 ND_NEIGHBOR_ADVERT
||
356 ND_NEIGHBOR_SOLICIT
||
358 ICMP6_HADISCOV_REPLY
||
359 ICMP6_MOBILEPREFIX_ADVERT
))
360 printf(", length %u", length
);
362 switch (dp
->icmp6_type
) {
363 case ICMP6_DST_UNREACH
:
364 TCHECK(oip
->ip6_dst
);
365 printf(", %s", tok2str(icmp6_dst_unreach_code_values
,"unknown unreach code (%u)",dp
->icmp6_code
));
366 switch (dp
->icmp6_code
) {
368 case ICMP6_DST_UNREACH_NOROUTE
: /* fall through */
369 case ICMP6_DST_UNREACH_ADMIN
:
370 case ICMP6_DST_UNREACH_ADDR
:
371 printf(" %s",ip6addr_string(&oip
->ip6_dst
));
373 case ICMP6_DST_UNREACH_BEYONDSCOPE
:
374 printf(" %s, source address %s",
375 ip6addr_string(&oip
->ip6_dst
),
376 ip6addr_string(&oip
->ip6_src
));
378 case ICMP6_DST_UNREACH_NOPORT
:
379 if ((ouh
= get_upperlayer((u_char
*)oip
, &prot
))
383 dport
= EXTRACT_16BITS(&ouh
->uh_dport
);
386 printf(", %s tcp port %s",
387 ip6addr_string(&oip
->ip6_dst
),
388 tcpport_string(dport
));
391 printf(", %s udp port %s",
392 ip6addr_string(&oip
->ip6_dst
),
393 udpport_string(dport
));
396 printf(", %s protocol %d port %d unreachable",
397 ip6addr_string(&oip
->ip6_dst
),
398 oip
->ip6_nxt
, dport
);
404 print_unknown_data(bp
,"\n\t",length
);
410 case ICMP6_PACKET_TOO_BIG
:
411 TCHECK(dp
->icmp6_mtu
);
412 printf(", mtu %u", EXTRACT_32BITS(&dp
->icmp6_mtu
));
414 case ICMP6_TIME_EXCEEDED
:
415 TCHECK(oip
->ip6_dst
);
416 switch (dp
->icmp6_code
) {
417 case ICMP6_TIME_EXCEED_TRANSIT
:
419 ip6addr_string(&oip
->ip6_dst
));
421 case ICMP6_TIME_EXCEED_REASSEMBLY
:
422 printf(" (reassembly)");
425 printf(", unknown code (%u)", dp
->icmp6_code
);
429 case ICMP6_PARAM_PROB
:
430 TCHECK(oip
->ip6_dst
);
431 switch (dp
->icmp6_code
) {
432 case ICMP6_PARAMPROB_HEADER
:
433 printf(", errorneous - octet %u", EXTRACT_32BITS(&dp
->icmp6_pptr
));
435 case ICMP6_PARAMPROB_NEXTHEADER
:
436 printf(", next header - octet %u", EXTRACT_32BITS(&dp
->icmp6_pptr
));
438 case ICMP6_PARAMPROB_OPTION
:
439 printf(", option - octet %u", EXTRACT_32BITS(&dp
->icmp6_pptr
));
447 case ICMP6_ECHO_REQUEST
:
448 case ICMP6_ECHO_REPLY
:
449 TCHECK(dp
->icmp6_seq
);
450 printf(", seq %u", EXTRACT_16BITS(&dp
->icmp6_seq
));
452 case ICMP6_MEMBERSHIP_QUERY
:
453 if (length
== MLD_MINLEN
) {
454 mld6_print((const u_char
*)dp
);
455 } else if (length
>= MLDV2_MINLEN
) {
457 mldv2_query_print((const u_char
*)dp
, length
);
459 printf(" unknown-version (len %u) ", length
);
462 case ICMP6_MEMBERSHIP_REPORT
:
463 mld6_print((const u_char
*)dp
);
465 case ICMP6_MEMBERSHIP_REDUCTION
:
466 mld6_print((const u_char
*)dp
);
468 case ND_ROUTER_SOLICIT
:
471 icmp6_opt_print((const u_char
*)dp
+ RTSOLLEN
,
475 case ND_ROUTER_ADVERT
:
478 struct nd_router_advert
*p
;
480 p
= (struct nd_router_advert
*)dp
;
481 TCHECK(p
->nd_ra_retransmit
);
482 printf("\n\thop limit %u, Flags [%s]" \
483 ", pref %s, router lifetime %us, reachable time %us, retrans time %us",
484 (u_int
)p
->nd_ra_curhoplimit
,
485 bittok2str(icmp6_opt_ra_flag_values
,"none",(p
->nd_ra_flags_reserved
)),
486 get_rtpref(p
->nd_ra_flags_reserved
),
487 EXTRACT_16BITS(&p
->nd_ra_router_lifetime
),
488 EXTRACT_32BITS(&p
->nd_ra_reachable
),
489 EXTRACT_32BITS(&p
->nd_ra_retransmit
));
491 icmp6_opt_print((const u_char
*)dp
+ RTADVLEN
,
495 case ND_NEIGHBOR_SOLICIT
:
497 struct nd_neighbor_solicit
*p
;
498 p
= (struct nd_neighbor_solicit
*)dp
;
499 TCHECK(p
->nd_ns_target
);
500 printf(", who has %s", ip6addr_string(&p
->nd_ns_target
));
503 icmp6_opt_print((const u_char
*)dp
+ NDSOLLEN
,
508 case ND_NEIGHBOR_ADVERT
:
510 struct nd_neighbor_advert
*p
;
512 p
= (struct nd_neighbor_advert
*)dp
;
513 TCHECK(p
->nd_na_target
);
514 printf(", tgt is %s",
515 ip6addr_string(&p
->nd_na_target
));
517 printf(", Flags [%s]",
518 bittok2str(icmp6_nd_na_flag_values
,
520 EXTRACT_32BITS(&p
->nd_na_flags_reserved
)));
522 icmp6_opt_print((const u_char
*)dp
+ NDADVLEN
,
529 #define RDR(i) ((struct nd_redirect *)(i))
530 TCHECK(RDR(dp
)->nd_rd_dst
);
531 printf(", %s", getname6((const u_char
*)&RDR(dp
)->nd_rd_dst
));
532 TCHECK(RDR(dp
)->nd_rd_target
);
534 getname6((const u_char
*)&RDR(dp
)->nd_rd_target
));
535 #define REDIRECTLEN 40
537 icmp6_opt_print((const u_char
*)dp
+ REDIRECTLEN
,
538 length
- REDIRECTLEN
);
543 case ICMP6_ROUTER_RENUMBERING
:
544 icmp6_rrenum_print(bp
, ep
);
548 icmp6_nodeinfo_print(length
, bp
, ep
);
553 case ICMP6_V2_MEMBERSHIP_REPORT
:
554 mldv2_report_print((const u_char
*) dp
, length
);
556 case ICMP6_MOBILEPREFIX_SOLICIT
: /* fall through */
557 case ICMP6_HADISCOV_REQUEST
:
558 TCHECK(dp
->icmp6_data16
[0]);
559 printf(", id 0x%04x", EXTRACT_16BITS(&dp
->icmp6_data16
[0]));
561 case ICMP6_HADISCOV_REPLY
:
563 struct in6_addr
*in6
;
566 TCHECK(dp
->icmp6_data16
[0]);
567 printf(", id 0x%04x", EXTRACT_16BITS(&dp
->icmp6_data16
[0]));
568 cp
= (u_char
*)dp
+ length
;
569 in6
= (struct in6_addr
*)(dp
+ 1);
570 for (; (u_char
*)in6
< cp
; in6
++) {
572 printf(", %s", ip6addr_string(in6
));
576 case ICMP6_MOBILEPREFIX_ADVERT
:
578 TCHECK(dp
->icmp6_data16
[0]);
579 printf(", id 0x%04x", EXTRACT_16BITS(&dp
->icmp6_data16
[0]));
580 if (dp
->icmp6_data16
[1] & 0xc0)
582 if (dp
->icmp6_data16
[1] & 0x80)
584 if (dp
->icmp6_data16
[1] & 0x40)
587 icmp6_opt_print((const u_char
*)dp
+ MPADVLEN
,
592 rpl_print(ndo
, dp
, &dp
->icmp6_data8
[0], length
);
595 printf(", length %u", length
);
597 print_unknown_data(bp
,"\n\t", length
);
601 printf(", length %u", length
);
604 fputs("[|icmp6]", stdout
);
607 static struct udphdr
*
608 get_upperlayer(u_char
*bp
, u_int
*prot
)
611 struct ip6_hdr
*ip6
= (struct ip6_hdr
*)bp
;
614 struct ip6_frag
*fragh
;
619 /* 'ep' points to the end of available data. */
622 if (!TTEST(ip6
->ip6_nxt
))
626 hlen
= sizeof(struct ip6_hdr
);
634 uh
= (struct udphdr
*)bp
;
635 if (TTEST(uh
->uh_dport
)) {
643 case IPPROTO_HOPOPTS
:
644 case IPPROTO_DSTOPTS
:
645 case IPPROTO_ROUTING
:
646 hbh
= (struct ip6_hbh
*)bp
;
647 if (!TTEST(hbh
->ip6h_len
))
650 hlen
= (hbh
->ip6h_len
+ 1) << 3;
653 case IPPROTO_FRAGMENT
: /* this should be odd, but try anyway */
654 fragh
= (struct ip6_frag
*)bp
;
655 if (!TTEST(fragh
->ip6f_offlg
))
657 /* fragments with non-zero offset are meaningless */
658 if ((EXTRACT_16BITS(&fragh
->ip6f_offlg
) & IP6F_OFF_MASK
) != 0)
660 nh
= fragh
->ip6f_nxt
;
661 hlen
= sizeof(struct ip6_frag
);
665 ah
= (struct ah
*)bp
;
666 if (!TTEST(ah
->ah_len
))
669 hlen
= (ah
->ah_len
+ 2) << 2;
672 default: /* unknown or undecodable header */
673 *prot
= nh
; /* meaningless, but set here anyway */
678 return(NULL
); /* should be notreached, though */
682 icmp6_opt_print(const u_char
*bp
, int resid
)
684 const struct nd_opt_hdr
*op
;
685 const struct nd_opt_hdr
*opl
; /* why there's no struct? */
686 const struct nd_opt_prefix_info
*opp
;
687 const struct icmp6_opts_redirect
*opr
;
688 const struct nd_opt_mtu
*opm
;
689 const struct nd_opt_advinterval
*opa
;
690 const struct nd_opt_homeagent_info
*oph
;
691 const struct nd_opt_route_info
*opri
;
692 const u_char
*cp
, *ep
;
693 struct in6_addr in6
, *in6p
;
696 #define ECHECK(var) if ((u_char *)&(var) > ep - sizeof(var)) return
699 /* 'ep' points to the end of available data. */
703 op
= (struct nd_opt_hdr
*)cp
;
705 ECHECK(op
->nd_opt_len
);
708 if (op
->nd_opt_len
== 0)
710 if (cp
+ (op
->nd_opt_len
<< 3) > ep
)
713 printf("\n\t %s option (%u), length %u (%u): ",
714 tok2str(icmp6_opt_values
, "unknown", op
->nd_opt_type
),
719 switch (op
->nd_opt_type
) {
720 case ND_OPT_SOURCE_LINKADDR
:
721 opl
= (struct nd_opt_hdr
*)op
;
722 l
= (op
->nd_opt_len
<< 3) - 2;
723 print_lladdr(cp
+ 2, l
);
725 case ND_OPT_TARGET_LINKADDR
:
726 opl
= (struct nd_opt_hdr
*)op
;
727 l
= (op
->nd_opt_len
<< 3) - 2;
728 print_lladdr(cp
+ 2, l
);
730 case ND_OPT_PREFIX_INFORMATION
:
731 opp
= (struct nd_opt_prefix_info
*)op
;
732 TCHECK(opp
->nd_opt_pi_prefix
);
733 printf("%s/%u%s, Flags [%s], valid time %ss",
734 ip6addr_string(&opp
->nd_opt_pi_prefix
),
735 opp
->nd_opt_pi_prefix_len
,
736 (op
->nd_opt_len
!= 4) ? "badlen" : "",
737 bittok2str(icmp6_opt_pi_flag_values
, "none", opp
->nd_opt_pi_flags_reserved
),
738 get_lifetime(EXTRACT_32BITS(&opp
->nd_opt_pi_valid_time
)));
739 printf(", pref. time %ss", get_lifetime(EXTRACT_32BITS(&opp
->nd_opt_pi_preferred_time
)));
741 case ND_OPT_REDIRECTED_HEADER
:
742 opr
= (struct icmp6_opts_redirect
*)op
;
743 print_unknown_data(bp
,"\n\t ",op
->nd_opt_len
<<3);
747 opm
= (struct nd_opt_mtu
*)op
;
748 TCHECK(opm
->nd_opt_mtu_mtu
);
750 EXTRACT_32BITS(&opm
->nd_opt_mtu_mtu
),
751 (op
->nd_opt_len
!= 1) ? "bad option length" : "" );
753 case ND_OPT_ADVINTERVAL
:
754 opa
= (struct nd_opt_advinterval
*)op
;
755 TCHECK(opa
->nd_opt_adv_interval
);
756 printf(" %us", EXTRACT_32BITS(&opa
->nd_opt_adv_interval
));
758 case ND_OPT_HOMEAGENT_INFO
:
759 oph
= (struct nd_opt_homeagent_info
*)op
;
760 TCHECK(oph
->nd_opt_hai_lifetime
);
761 printf(" preference %u, lifetime %u",
762 EXTRACT_16BITS(&oph
->nd_opt_hai_preference
),
763 EXTRACT_16BITS(&oph
->nd_opt_hai_lifetime
));
765 case ND_OPT_ROUTE_INFO
:
766 opri
= (struct nd_opt_route_info
*)op
;
767 TCHECK(opri
->nd_opt_rti_lifetime
);
768 memset(&in6
, 0, sizeof(in6
));
769 in6p
= (struct in6_addr
*)(opri
+ 1);
770 switch (op
->nd_opt_len
) {
775 memcpy(&in6
, opri
+ 1, 8);
779 memcpy(&in6
, opri
+ 1, sizeof(in6
));
784 printf(" %s/%u", ip6addr_string(&in6
),
785 opri
->nd_opt_rti_prefixlen
);
786 printf(", pref=%s", get_rtpref(opri
->nd_opt_rti_flags
));
787 printf(", lifetime=%s",
788 get_lifetime(EXTRACT_32BITS(&opri
->nd_opt_rti_lifetime
)));
792 print_unknown_data(cp
+2,"\n\t ", (op
->nd_opt_len
<< 3) - 2); /* skip option header */
797 /* do we want to see an additional hexdump ? */
799 print_unknown_data(cp
+2,"\n\t ", (op
->nd_opt_len
<< 3) - 2); /* skip option header */
801 cp
+= op
->nd_opt_len
<< 3;
802 resid
-= op
->nd_opt_len
<< 3;
807 fputs("[ndp opt]", stdout
);
813 mld6_print(const u_char
*bp
)
815 struct mld6_hdr
*mp
= (struct mld6_hdr
*)bp
;
818 /* 'ep' points to the end of available data. */
821 if ((u_char
*)mp
+ sizeof(*mp
) > ep
)
824 printf("max resp delay: %d ", EXTRACT_16BITS(&mp
->mld6_maxdelay
));
825 printf("addr: %s", ip6addr_string(&mp
->mld6_addr
));
829 mldv2_report_print(const u_char
*bp
, u_int len
)
831 struct icmp6_hdr
*icp
= (struct icmp6_hdr
*) bp
;
832 u_int group
, nsrcs
, ngroups
;
835 /* Minimum len is 8 */
837 printf(" [invalid len %d]", len
);
841 TCHECK(icp
->icmp6_data16
[1]);
842 ngroups
= ntohs(icp
->icmp6_data16
[1]);
843 printf(", %d group record(s)", ngroups
);
845 /* Print the group records */
847 for (i
= 0; i
< ngroups
; i
++) {
848 /* type(1) + auxlen(1) + numsrc(2) + grp(16) */
849 if (len
< group
+ 20) {
850 printf(" [invalid number of groups]");
853 TCHECK2(bp
[group
+ 4], sizeof(struct in6_addr
));
854 printf(" [gaddr %s", ip6addr_string(&bp
[group
+ 4]));
855 printf(" %s", tok2str(mldv2report2str
, " [v2-report-#%d]",
857 nsrcs
= (bp
[group
+ 2] << 8) + bp
[group
+ 3];
858 /* Check the number of sources and print them */
859 if (len
< group
+ 20 + (nsrcs
* sizeof(struct in6_addr
))) {
860 printf(" [invalid number of sources %d]", nsrcs
);
864 printf(", %d source(s)", nsrcs
);
866 /* Print the sources */
868 for (j
= 0; j
< nsrcs
; j
++) {
869 TCHECK2(bp
[group
+ 20 + j
* sizeof(struct in6_addr
)],
870 sizeof(struct in6_addr
));
871 printf(" %s", ip6addr_string(&bp
[group
+ 20 + j
* sizeof(struct in6_addr
)]));
875 /* Next group record */
876 group
+= 20 + nsrcs
* sizeof(struct in6_addr
);
882 (void)printf("[|icmp6]");
887 mldv2_query_print(const u_char
*bp
, u_int len
)
889 struct icmp6_hdr
*icp
= (struct icmp6_hdr
*) bp
;
895 /* Minimum len is 28 */
897 printf(" [invalid len %d]", len
);
900 TCHECK(icp
->icmp6_data16
[0]);
901 mrc
= ntohs(icp
->icmp6_data16
[0]);
905 mrt
= ((mrc
& 0x0fff) | 0x1000) << (((mrc
& 0x7000) >> 12) + 3);
908 (void)printf(" [max resp delay=%d]", mrt
);
910 TCHECK2(bp
[8], sizeof(struct in6_addr
));
911 printf(" [gaddr %s", ip6addr_string(&bp
[8]));
919 printf(" robustness=%d", bp
[24] & 0x07);
924 qqi
= ((bp
[25] & 0x0f) | 0x10) << (((bp
[25] & 0x70) >> 4) + 3);
926 printf(" qqi=%d", qqi
);
930 nsrcs
= ntohs(*(u_short
*)&bp
[26]);
932 if (len
< 28 + nsrcs
* sizeof(struct in6_addr
))
933 printf(" [invalid number of sources]");
934 else if (vflag
> 1) {
936 for (i
= 0; i
< nsrcs
; i
++) {
937 TCHECK2(bp
[28 + i
* sizeof(struct in6_addr
)],
938 sizeof(struct in6_addr
));
939 printf(" %s", ip6addr_string(&bp
[28 + i
* sizeof(struct in6_addr
)]));
943 printf(", %d source(s)", nsrcs
);
948 (void)printf("[|icmp6]");
953 dnsname_print(const u_char
*cp
, const u_char
*ep
)
957 /* DNS name decoding - no decompression */
966 while (i
-- && cp
< ep
) {
970 if (cp
+ 1 < ep
&& *cp
)
976 } else if (cp
+ 1 == ep
&& *cp
== '\0') {
989 icmp6_nodeinfo_print(u_int icmp6len
, const u_char
*bp
, const u_char
*ep
)
991 struct icmp6_nodeinfo
*ni6
;
992 struct icmp6_hdr
*dp
;
999 dp
= (struct icmp6_hdr
*)bp
;
1000 ni6
= (struct icmp6_nodeinfo
*)bp
;
1003 switch (ni6
->ni_type
) {
1004 case ICMP6_NI_QUERY
:
1005 if (siz
== sizeof(*dp
) + 4) {
1006 /* KAME who-are-you */
1007 printf(" who-are-you request");
1010 printf(" node information query");
1012 TCHECK2(*dp
, sizeof(*ni6
));
1013 ni6
= (struct icmp6_nodeinfo
*)dp
;
1015 switch (EXTRACT_16BITS(&ni6
->ni_qtype
)) {
1019 case NI_QTYPE_SUPTYPES
:
1020 printf("supported qtypes");
1021 i
= EXTRACT_16BITS(&ni6
->ni_flags
);
1023 printf(" [%s]", (i
& 0x01) ? "C" : "");
1029 case NI_QTYPE_NODEADDR
:
1030 printf("node addresses");
1034 /* NI_NODEADDR_FLAG_TRUNCATE undefined for query */
1035 printf(" [%s%s%s%s%s%s]",
1036 (i
& NI_NODEADDR_FLAG_ANYCAST
) ? "a" : "",
1037 (i
& NI_NODEADDR_FLAG_GLOBAL
) ? "G" : "",
1038 (i
& NI_NODEADDR_FLAG_SITELOCAL
) ? "S" : "",
1039 (i
& NI_NODEADDR_FLAG_LINKLOCAL
) ? "L" : "",
1040 (i
& NI_NODEADDR_FLAG_COMPAT
) ? "C" : "",
1041 (i
& NI_NODEADDR_FLAG_ALL
) ? "A" : "");
1048 if (ni6
->ni_qtype
== NI_QTYPE_NOOP
||
1049 ni6
->ni_qtype
== NI_QTYPE_SUPTYPES
) {
1050 if (siz
!= sizeof(*ni6
))
1052 printf(", invalid len");
1059 /* XXX backward compat, icmp-name-lookup-03 */
1060 if (siz
== sizeof(*ni6
)) {
1061 printf(", 03 draft");
1067 switch (ni6
->ni_code
) {
1068 case ICMP6_NI_SUBJ_IPV6
:
1070 sizeof(*ni6
) + sizeof(struct in6_addr
)))
1072 if (siz
!= sizeof(*ni6
) + sizeof(struct in6_addr
)) {
1074 printf(", invalid subject len");
1077 printf(", subject=%s",
1078 getname6((const u_char
*)(ni6
+ 1)));
1080 case ICMP6_NI_SUBJ_FQDN
:
1081 printf(", subject=DNS name");
1082 cp
= (const u_char
*)(ni6
+ 1);
1083 if (cp
[0] == ep
- cp
- 1) {
1084 /* icmp-name-lookup-03, pascal string */
1086 printf(", 03 draft");
1095 dnsname_print(cp
, ep
);
1097 case ICMP6_NI_SUBJ_IPV4
:
1098 if (!TTEST2(*dp
, sizeof(*ni6
) + sizeof(struct in_addr
)))
1100 if (siz
!= sizeof(*ni6
) + sizeof(struct in_addr
)) {
1102 printf(", invalid subject len");
1105 printf(", subject=%s",
1106 getname((const u_char
*)(ni6
+ 1)));
1109 printf(", unknown subject");
1117 case ICMP6_NI_REPLY
:
1118 if (icmp6len
> siz
) {
1119 printf("[|icmp6: node information reply]");
1125 ni6
= (struct icmp6_nodeinfo
*)dp
;
1126 printf(" node information reply");
1128 switch (ni6
->ni_code
) {
1129 case ICMP6_NI_SUCCESS
:
1135 case ICMP6_NI_REFUSED
:
1138 if (siz
!= sizeof(*ni6
))
1140 printf(", invalid length");
1142 case ICMP6_NI_UNKNOWN
:
1145 if (siz
!= sizeof(*ni6
))
1147 printf(", invalid length");
1151 if (ni6
->ni_code
!= ICMP6_NI_SUCCESS
) {
1157 switch (EXTRACT_16BITS(&ni6
->ni_qtype
)) {
1162 if (siz
!= sizeof(*ni6
))
1164 printf(", invalid length");
1166 case NI_QTYPE_SUPTYPES
:
1169 printf("supported qtypes");
1170 i
= EXTRACT_16BITS(&ni6
->ni_flags
);
1172 printf(" [%s]", (i
& 0x01) ? "C" : "");
1178 cp
= (const u_char
*)(ni6
+ 1) + 4;
1179 if (cp
[0] == ep
- cp
- 1) {
1180 /* icmp-name-lookup-03, pascal string */
1182 printf(", 03 draft");
1191 dnsname_print(cp
, ep
);
1192 if ((EXTRACT_16BITS(&ni6
->ni_flags
) & 0x01) != 0)
1193 printf(" [TTL=%u]", *(u_int32_t
*)(ni6
+ 1));
1195 case NI_QTYPE_NODEADDR
:
1198 printf("node addresses");
1201 if (i
+ sizeof(struct in6_addr
) + sizeof(int32_t) > siz
)
1203 printf(" %s", getname6(bp
+ i
));
1204 i
+= sizeof(struct in6_addr
);
1205 printf("(%d)", (int32_t)EXTRACT_32BITS(bp
+ i
));
1206 i
+= sizeof(int32_t);
1211 printf(" [%s%s%s%s%s%s%s]",
1212 (i
& NI_NODEADDR_FLAG_ANYCAST
) ? "a" : "",
1213 (i
& NI_NODEADDR_FLAG_GLOBAL
) ? "G" : "",
1214 (i
& NI_NODEADDR_FLAG_SITELOCAL
) ? "S" : "",
1215 (i
& NI_NODEADDR_FLAG_LINKLOCAL
) ? "L" : "",
1216 (i
& NI_NODEADDR_FLAG_COMPAT
) ? "C" : "",
1217 (i
& NI_NODEADDR_FLAG_ALL
) ? "A" : "",
1218 (i
& NI_NODEADDR_FLAG_TRUNCATE
) ? "T" : "");
1234 fputs("[|icmp6]", stdout
);
1238 icmp6_rrenum_print(const u_char
*bp
, const u_char
*ep
)
1240 struct icmp6_router_renum
*rr6
;
1242 struct rr_pco_match
*match
;
1243 struct rr_pco_use
*use
;
1244 char hbuf
[NI_MAXHOST
];
1249 rr6
= (struct icmp6_router_renum
*)bp
;
1250 cp
= (const char *)(rr6
+ 1);
1252 TCHECK(rr6
->rr_reserved
);
1253 switch (rr6
->rr_code
) {
1254 case ICMP6_ROUTER_RENUMBERING_COMMAND
:
1255 printf("router renum: command");
1257 case ICMP6_ROUTER_RENUMBERING_RESULT
:
1258 printf("router renum: result");
1260 case ICMP6_ROUTER_RENUMBERING_SEQNUM_RESET
:
1261 printf("router renum: sequence number reset");
1264 printf("router renum: code-#%d", rr6
->rr_code
);
1268 printf(", seq=%u", EXTRACT_32BITS(&rr6
->rr_seqnum
));
1271 #define F(x, y) ((rr6->rr_flags) & (x) ? (y) : "")
1273 if (rr6
->rr_flags
) {
1274 printf("%s%s%s%s%s,", F(ICMP6_RR_FLAGS_TEST
, "T"),
1275 F(ICMP6_RR_FLAGS_REQRESULT
, "R"),
1276 F(ICMP6_RR_FLAGS_FORCEAPPLY
, "A"),
1277 F(ICMP6_RR_FLAGS_SPECSITE
, "S"),
1278 F(ICMP6_RR_FLAGS_PREVDONE
, "P"));
1280 printf("seg=%u,", rr6
->rr_segnum
);
1281 printf("maxdelay=%u", EXTRACT_16BITS(&rr6
->rr_maxdelay
));
1282 if (rr6
->rr_reserved
)
1283 printf("rsvd=0x%x", EXTRACT_32BITS(&rr6
->rr_reserved
));
1289 if (rr6
->rr_code
== ICMP6_ROUTER_RENUMBERING_COMMAND
) {
1290 match
= (struct rr_pco_match
*)cp
;
1291 cp
= (const char *)(match
+ 1);
1293 TCHECK(match
->rpm_prefix
);
1299 printf("match("); /*)*/
1300 switch (match
->rpm_code
) {
1301 case RPM_PCO_ADD
: printf("add"); break;
1302 case RPM_PCO_CHANGE
: printf("change"); break;
1303 case RPM_PCO_SETGLOBAL
: printf("setglobal"); break;
1304 default: printf("#%u", match
->rpm_code
); break;
1308 printf(",ord=%u", match
->rpm_ordinal
);
1309 printf(",min=%u", match
->rpm_minlen
);
1310 printf(",max=%u", match
->rpm_maxlen
);
1312 if (inet_ntop(AF_INET6
, &match
->rpm_prefix
, hbuf
, sizeof(hbuf
)))
1313 printf(",%s/%u", hbuf
, match
->rpm_matchlen
);
1315 printf(",?/%u", match
->rpm_matchlen
);
1319 n
= match
->rpm_len
- 3;
1324 use
= (struct rr_pco_use
*)cp
;
1325 cp
= (const char *)(use
+ 1);
1327 TCHECK(use
->rpu_prefix
);
1333 printf("use("); /*)*/
1334 if (use
->rpu_flags
) {
1335 #define F(x, y) ((use->rpu_flags) & (x) ? (y) : "")
1337 F(ICMP6_RR_PCOUSE_FLAGS_DECRVLTIME
, "V"),
1338 F(ICMP6_RR_PCOUSE_FLAGS_DECRPLTIME
, "P"));
1342 printf("mask=0x%x,", use
->rpu_ramask
);
1343 printf("raflags=0x%x,", use
->rpu_raflags
);
1344 if (~use
->rpu_vltime
== 0)
1345 printf("vltime=infty,");
1347 printf("vltime=%u,",
1348 EXTRACT_32BITS(&use
->rpu_vltime
));
1349 if (~use
->rpu_pltime
== 0)
1350 printf("pltime=infty,");
1352 printf("pltime=%u,",
1353 EXTRACT_32BITS(&use
->rpu_pltime
));
1355 if (inet_ntop(AF_INET6
, &use
->rpu_prefix
, hbuf
,
1357 printf("%s/%u/%u", hbuf
, use
->rpu_uselen
,
1360 printf("?/%u/%u", use
->rpu_uselen
,
1370 fputs("[|icmp6]", stdout
);