2 * Copyright (C) 1998 and 1999 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
30 /* \summary: IPv6 DHCP printer */
34 * supported DHCPv6 options:
35 * RFC3319: Session Initiation Protocol (SIP) Servers options,
36 * RFC3633: IPv6 Prefix options,
37 * RFC3646: DNS Configuration options,
38 * RFC3898: Network Information Service (NIS) Configuration options,
39 * RFC4075: Simple Network Time Protocol (SNTP) Configuration option,
40 * RFC4242: Information Refresh Time option,
41 * RFC4280: Broadcast and Multicast Control Servers options,
42 * RFC5908: Network Time Protocol (NTP) Server Option for DHCPv6
43 * RFC6334: Dual-Stack Lite option,
48 #include "netdissect-stdinc.h"
50 #include "netdissect.h"
51 #include "addrtoname.h"
55 #define DHCP6_DURATION_INFINITE 0xffffffff
58 #define DH6ERR_FAILURE 16
59 #define DH6ERR_AUTHFAIL 17
60 #define DH6ERR_POORLYFORMED 18
61 #define DH6ERR_UNAVAIL 19
62 #define DH6ERR_OPTUNAVAIL 20
66 #define DH6_ADVERTISE 2
74 #define DH6_RECONFIGURE 10
75 #define DH6_INFORM_REQ 11
76 #define DH6_RELAY_FORW 12
77 #define DH6_RELAY_REPLY 13
78 #define DH6_LEASEQUERY 14
79 #define DH6_LQ_REPLY 15
81 static const struct tok dh6_msgtype_str
[] = {
82 { DH6_SOLICIT
, "solicit" },
83 { DH6_ADVERTISE
, "advertise" },
84 { DH6_REQUEST
, "request" },
85 { DH6_CONFIRM
, "confirm" },
86 { DH6_RENEW
, "renew" },
87 { DH6_REBIND
, "rebind" },
88 { DH6_REPLY
, "reply" },
89 { DH6_RELEASE
, "release" },
90 { DH6_DECLINE
, "decline" },
91 { DH6_RECONFIGURE
, "reconfigure" },
92 { DH6_INFORM_REQ
, "inf-req" },
93 { DH6_RELAY_FORW
, "relay-fwd" },
94 { DH6_RELAY_REPLY
, "relay-reply" },
95 { DH6_LEASEQUERY
, "leasequery" },
96 { DH6_LQ_REPLY
, "leasequery-reply" },
100 /* DHCP6 base packet format */
108 #define DH6_XIDMASK 0x00ffffff
110 /* DHCPv6 relay messages */
112 nd_uint8_t dh6relay_msgtype
;
113 nd_uint8_t dh6relay_hcnt
;
114 nd_ipv6 dh6relay_linkaddr
; /* XXX: badly aligned */
115 nd_ipv6 dh6relay_peeraddr
;
120 #define DH6OPT_CLIENTID 1
121 #define DH6OPT_SERVERID 2
122 # define DUID_LLT 1 /* RFC8415 */
123 # define DUID_EN 2 /* RFC8415 */
124 # define DUID_LL 3 /* RFC8415 */
125 # define DUID_UUID 4 /* RFC6355 */
126 #define DH6OPT_IA_NA 3
127 #define DH6OPT_IA_TA 4
128 #define DH6OPT_IA_ADDR 5
130 #define DH6OPT_PREFERENCE 7
131 # define DH6OPT_PREF_MAX 255
132 #define DH6OPT_ELAPSED_TIME 8
133 #define DH6OPT_RELAY_MSG 9
134 /*#define DH6OPT_SERVER_MSG 10 deprecated */
135 #define DH6OPT_AUTH 11
136 # define DH6OPT_AUTHPROTO_DELAYED 2
137 # define DH6OPT_AUTHPROTO_RECONFIG 3
138 # define DH6OPT_AUTHALG_HMACMD5 1
139 # define DH6OPT_AUTHRDM_MONOCOUNTER 0
140 # define DH6OPT_AUTHRECONFIG_KEY 1
141 # define DH6OPT_AUTHRECONFIG_HMACMD5 2
142 #define DH6OPT_UNICAST 12
143 #define DH6OPT_STATUS_CODE 13
144 # define DH6OPT_STCODE_SUCCESS 0
145 # define DH6OPT_STCODE_UNSPECFAIL 1
146 # define DH6OPT_STCODE_NOADDRAVAIL 2
147 # define DH6OPT_STCODE_NOBINDING 3
148 # define DH6OPT_STCODE_NOTONLINK 4
149 # define DH6OPT_STCODE_USEMULTICAST 5
150 # define DH6OPT_STCODE_NOPREFIXAVAIL 6
151 # define DH6OPT_STCODE_UNKNOWNQUERYTYPE 7
152 # define DH6OPT_STCODE_MALFORMEDQUERY 8
153 # define DH6OPT_STCODE_NOTCONFIGURED 9
154 # define DH6OPT_STCODE_NOTALLOWED 10
155 #define DH6OPT_RAPID_COMMIT 14
156 #define DH6OPT_USER_CLASS 15
157 #define DH6OPT_VENDOR_CLASS 16
158 #define DH6OPT_VENDOR_OPTS 17
159 #define DH6OPT_INTERFACE_ID 18
160 #define DH6OPT_RECONF_MSG 19
161 #define DH6OPT_RECONF_ACCEPT 20
162 #define DH6OPT_SIP_SERVER_D 21
163 #define DH6OPT_SIP_SERVER_A 22
164 #define DH6OPT_DNS_SERVERS 23
165 #define DH6OPT_DOMAIN_LIST 24
166 #define DH6OPT_IA_PD 25
167 #define DH6OPT_IA_PD_PREFIX 26
168 #define DH6OPT_NIS_SERVERS 27
169 #define DH6OPT_NISP_SERVERS 28
170 #define DH6OPT_NIS_NAME 29
171 #define DH6OPT_NISP_NAME 30
172 #define DH6OPT_SNTP_SERVERS 31
173 #define DH6OPT_LIFETIME 32
174 #define DH6OPT_BCMCS_SERVER_D 33
175 #define DH6OPT_BCMCS_SERVER_A 34
176 #define DH6OPT_GEOCONF_CIVIC 36
177 #define DH6OPT_REMOTE_ID 37
178 #define DH6OPT_SUBSCRIBER_ID 38
179 #define DH6OPT_CLIENT_FQDN 39
180 #define DH6OPT_PANA_AGENT 40
181 #define DH6OPT_NEW_POSIX_TIMEZONE 41
182 #define DH6OPT_NEW_TZDB_TIMEZONE 42
183 #define DH6OPT_ERO 43
184 #define DH6OPT_LQ_QUERY 44
185 #define DH6OPT_CLIENT_DATA 45
186 #define DH6OPT_CLT_TIME 46
187 #define DH6OPT_LQ_RELAY_DATA 47
188 #define DH6OPT_LQ_CLIENT_LINK 48
189 #define DH6OPT_NTP_SERVER 56
190 # define DH6OPT_NTP_SUBOPTION_SRV_ADDR 1
191 # define DH6OPT_NTP_SUBOPTION_MC_ADDR 2
192 # define DH6OPT_NTP_SUBOPTION_SRV_FQDN 3
193 #define DH6OPT_BOOTFILE_URL 59 /* RFC5970 */
194 #define DH6OPT_AFTR_NAME 64
195 #define DH6OPT_MUDURL 112
196 #define DH6OPT_SZTP_REDIRECT 136 /* RFC8572 */
198 static const struct tok dh6opt_str
[] = {
199 { DH6OPT_CLIENTID
, "client-ID" },
200 { DH6OPT_SERVERID
, "server-ID" },
201 { DH6OPT_IA_NA
, "IA_NA" },
202 { DH6OPT_IA_TA
, "IA_TA" },
203 { DH6OPT_IA_ADDR
, "IA_ADDR" },
204 { DH6OPT_ORO
, "option-request" },
205 { DH6OPT_PREFERENCE
, "preference" },
206 { DH6OPT_ELAPSED_TIME
, "elapsed-time" },
207 { DH6OPT_RELAY_MSG
, "relay-message" },
208 { DH6OPT_AUTH
, "authentication" },
209 { DH6OPT_UNICAST
, "server-unicast" },
210 { DH6OPT_STATUS_CODE
, "status-code" },
211 { DH6OPT_RAPID_COMMIT
, "rapid-commit" },
212 { DH6OPT_USER_CLASS
, "user-class" },
213 { DH6OPT_VENDOR_CLASS
, "vendor-class" },
214 { DH6OPT_VENDOR_OPTS
, "vendor-specific-info" },
215 { DH6OPT_INTERFACE_ID
, "interface-ID" },
216 { DH6OPT_RECONF_MSG
, "reconfigure-message" },
217 { DH6OPT_RECONF_ACCEPT
, "reconfigure-accept" },
218 { DH6OPT_SIP_SERVER_D
, "SIP-servers-domain" },
219 { DH6OPT_SIP_SERVER_A
, "SIP-servers-address" },
220 { DH6OPT_DNS_SERVERS
, "DNS-server" },
221 { DH6OPT_DOMAIN_LIST
, "DNS-search-list" },
222 { DH6OPT_IA_PD
, "IA_PD" },
223 { DH6OPT_IA_PD_PREFIX
, "IA_PD-prefix" },
224 { DH6OPT_SNTP_SERVERS
, "SNTP-servers" },
225 { DH6OPT_LIFETIME
, "lifetime" },
226 { DH6OPT_NIS_SERVERS
, "NIS-server" },
227 { DH6OPT_NISP_SERVERS
, "NIS+-server" },
228 { DH6OPT_NIS_NAME
, "NIS-domain-name" },
229 { DH6OPT_NISP_NAME
, "NIS+-domain-name" },
230 { DH6OPT_BCMCS_SERVER_D
, "BCMCS-domain-name" },
231 { DH6OPT_BCMCS_SERVER_A
, "BCMCS-server" },
232 { DH6OPT_GEOCONF_CIVIC
, "Geoconf-Civic" },
233 { DH6OPT_REMOTE_ID
, "Remote-ID" },
234 { DH6OPT_SUBSCRIBER_ID
, "Subscriber-ID" },
235 { DH6OPT_CLIENT_FQDN
, "Client-FQDN" },
236 { DH6OPT_PANA_AGENT
, "PANA-agent" },
237 { DH6OPT_NEW_POSIX_TIMEZONE
, "POSIX-timezone" },
238 { DH6OPT_NEW_TZDB_TIMEZONE
, "POSIX-tz-database" },
239 { DH6OPT_ERO
, "Echo-request-option" },
240 { DH6OPT_LQ_QUERY
, "Lease-query" },
241 { DH6OPT_CLIENT_DATA
, "LQ-client-data" },
242 { DH6OPT_CLT_TIME
, "Clt-time" },
243 { DH6OPT_LQ_RELAY_DATA
, "LQ-relay-data" },
244 { DH6OPT_LQ_CLIENT_LINK
, "LQ-client-link" },
245 { DH6OPT_NTP_SERVER
, "NTP-server" },
246 { DH6OPT_BOOTFILE_URL
, "Bootfile-URL" },
247 { DH6OPT_AFTR_NAME
, "AFTR-Name" },
248 { DH6OPT_MUDURL
, "MUD-URL" },
249 { DH6OPT_SZTP_REDIRECT
, "SZTP-redirect" },
253 static const struct tok dh6opt_stcode_str
[] = {
254 { DH6OPT_STCODE_SUCCESS
, "Success" }, /* RFC3315 */
255 { DH6OPT_STCODE_UNSPECFAIL
, "UnspecFail" }, /* RFC3315 */
256 { DH6OPT_STCODE_NOADDRAVAIL
, "NoAddrsAvail" }, /* RFC3315 */
257 { DH6OPT_STCODE_NOBINDING
, "NoBinding" }, /* RFC3315 */
258 { DH6OPT_STCODE_NOTONLINK
, "NotOnLink" }, /* RFC3315 */
259 { DH6OPT_STCODE_USEMULTICAST
, "UseMulticast" }, /* RFC3315 */
260 { DH6OPT_STCODE_NOPREFIXAVAIL
, "NoPrefixAvail" }, /* RFC3633 */
261 { DH6OPT_STCODE_UNKNOWNQUERYTYPE
, "UnknownQueryType" }, /* RFC5007 */
262 { DH6OPT_STCODE_MALFORMEDQUERY
, "MalformedQuery" }, /* RFC5007 */
263 { DH6OPT_STCODE_NOTCONFIGURED
, "NotConfigured" }, /* RFC5007 */
264 { DH6OPT_STCODE_NOTALLOWED
, "NotAllowed" }, /* RFC5007 */
269 nd_uint16_t dh6opt_type
;
270 nd_uint16_t dh6opt_len
;
271 /* type-dependent data follows */
275 dhcp6stcode(const uint16_t code
)
277 return code
> 255 ? "INVALID code" : tok2str(dh6opt_stcode_str
, "code%u", code
);
281 dhcp6opt_print(netdissect_options
*ndo
,
282 const u_char
*cp
, const u_char
*ep
)
284 const struct dhcp6opt
*dh6o
;
292 u_int authinfolen
, authrealmlen
;
293 u_int remain_len
; /* Length of remaining options */
294 u_int label_len
; /* Label length */
295 uint16_t subopt_code
;
297 uint8_t dh6_reconf_type
;
298 uint8_t dh6_lq_query_type
;
299 u_int first_list_value
;
300 uint16_t remainder_len
;
305 if (ep
< cp
+ sizeof(*dh6o
))
307 dh6o
= (const struct dhcp6opt
*)cp
;
308 ND_TCHECK_SIZE(dh6o
);
309 optlen
= GET_BE_U_2(dh6o
->dh6opt_len
);
310 if (ep
< cp
+ sizeof(*dh6o
) + optlen
)
312 opttype
= GET_BE_U_2(dh6o
->dh6opt_type
);
313 ND_PRINT(" (%s", tok2str(dh6opt_str
, "opt_%u", opttype
));
314 ND_TCHECK_LEN(cp
+ sizeof(*dh6o
), optlen
);
316 case DH6OPT_CLIENTID
:
317 case DH6OPT_SERVERID
:
323 tp
= (const u_char
*)(dh6o
+ 1);
324 switch (GET_BE_U_2(tp
)) {
326 if (optlen
>= 2 + 6) {
327 ND_PRINT(" hwaddr/time type %u time %u ",
330 for (i
= 8; i
< optlen
; i
++)
341 if (optlen
>= 2 + 4) {
342 ND_PRINT(" enterprise %u ", GET_BE_U_4(tp
+ 2));
343 for (i
= 2 + 4; i
< optlen
; i
++)
354 if (optlen
>= 2 + 2) {
355 ND_PRINT(" hwaddr type %u ",
357 for (i
= 4; i
< optlen
; i
++)
369 if (optlen
== 2 + 16) {
370 for (i
= 2; i
< optlen
; i
++)
381 ND_PRINT(" type %u)", GET_BE_U_2(tp
));
391 tp
= (const u_char
*)(dh6o
+ 1);
392 ND_PRINT(" %s", GET_IP6ADDR_STRING(tp
));
393 ND_PRINT(" pltime:%u vltime:%u",
395 GET_BE_U_4(tp
+ 20));
397 /* there are sub-options */
398 dhcp6opt_print(ndo
, tp
+ 24, tp
+ optlen
);
408 tp
= (const u_char
*)(dh6o
+ 1);
409 for (i
= 0; i
< optlen
; i
+= 2) {
411 tok2str(dh6opt_str
, "opt_%u", GET_BE_U_2(tp
+ i
)));
415 case DH6OPT_PREFERENCE
:
420 tp
= (const u_char
*)(dh6o
+ 1);
421 ND_PRINT(" %u)", GET_U_1(tp
));
423 case DH6OPT_ELAPSED_TIME
:
428 tp
= (const u_char
*)(dh6o
+ 1);
429 ND_PRINT(" %u)", GET_BE_U_2(tp
));
431 case DH6OPT_RELAY_MSG
:
433 const u_char
*snapend_save
;
436 tp
= (const u_char
*)(dh6o
+ 1);
438 * Update the snapend to the end of the option before
439 * calling recursively dhcp6_print() for the nested
440 * packet. Other options may be present after the
441 * nested DHCPv6 packet. This prevents that, in
442 * dhcp6_print(), for the nested DHCPv6 packet, the
443 * remaining length < remaining caplen.
445 snapend_save
= ndo
->ndo_snapend
;
446 ndo
->ndo_snapend
= ND_MIN(tp
+ optlen
, ndo
->ndo_snapend
);
447 dhcp6_print(ndo
, tp
, optlen
);
448 ndo
->ndo_snapend
= snapend_save
;
457 tp
= (const u_char
*)(dh6o
+ 1);
458 auth_proto
= GET_U_1(tp
);
459 switch (auth_proto
) {
460 case DH6OPT_AUTHPROTO_DELAYED
:
461 ND_PRINT(" proto: delayed");
463 case DH6OPT_AUTHPROTO_RECONFIG
:
464 ND_PRINT(" proto: reconfigure");
467 ND_PRINT(" proto: %u", auth_proto
);
471 auth_alg
= GET_U_1(tp
);
473 case DH6OPT_AUTHALG_HMACMD5
:
474 /* XXX: may depend on the protocol */
475 ND_PRINT(", alg: HMAC-MD5");
478 ND_PRINT(", alg: %u", auth_alg
);
482 auth_rdm
= GET_U_1(tp
);
484 case DH6OPT_AUTHRDM_MONOCOUNTER
:
485 ND_PRINT(", RDM: mono");
488 ND_PRINT(", RDM: %u", auth_rdm
);
493 for (i
= 0; i
< 4; i
++, tp
+= 2)
494 ND_PRINT(" %04x", GET_BE_U_2(tp
));
496 /* protocol dependent part */
497 authinfolen
= optlen
- 11;
498 switch (auth_proto
) {
499 case DH6OPT_AUTHPROTO_DELAYED
:
500 if (authinfolen
== 0)
502 if (authinfolen
< 20) {
506 authrealmlen
= authinfolen
- 20;
507 if (authrealmlen
> 0) {
508 ND_PRINT(", realm: ");
510 for (i
= 0; i
< authrealmlen
; i
++, tp
++)
511 ND_PRINT("%02x", GET_U_1(tp
));
512 ND_PRINT(", key ID: %08x", GET_BE_U_4(tp
));
514 ND_PRINT(", HMAC-MD5:");
515 for (i
= 0; i
< 4; i
++, tp
+= 4)
516 ND_PRINT(" %08x", GET_BE_U_4(tp
));
518 case DH6OPT_AUTHPROTO_RECONFIG
:
519 if (authinfolen
!= 17) {
523 switch (GET_U_1(tp
)) {
524 case DH6OPT_AUTHRECONFIG_KEY
:
525 ND_PRINT(" reconfig-key");
527 case DH6OPT_AUTHRECONFIG_HMACMD5
:
528 ND_PRINT(" type: HMAC-MD5");
531 ND_PRINT(" type: ??");
536 for (i
= 0; i
< 4; i
++, tp
+= 4)
537 ND_PRINT(" %08x", GET_BE_U_4(tp
));
546 case DH6OPT_RAPID_COMMIT
: /* nothing todo */
549 case DH6OPT_INTERFACE_ID
:
550 case DH6OPT_SUBSCRIBER_ID
:
552 * Since we cannot predict the encoding, print hex dump
553 * at most 10 characters.
555 tp
= (const u_char
*)(dh6o
+ 1);
557 for (i
= 0; i
< optlen
&& i
< 10; i
++)
558 ND_PRINT("%02x", GET_U_1(tp
+ i
));
561 case DH6OPT_RECONF_MSG
:
566 tp
= (const u_char
*)(dh6o
+ 1);
567 dh6_reconf_type
= GET_U_1(tp
);
568 switch (dh6_reconf_type
) {
570 ND_PRINT(" for renew)");
573 ND_PRINT(" for inf-req)");
576 ND_PRINT(" for ?\?\?(%02x))", dh6_reconf_type
);
580 case DH6OPT_RECONF_ACCEPT
: /* nothing todo */
583 case DH6OPT_SIP_SERVER_A
:
584 case DH6OPT_DNS_SERVERS
:
585 case DH6OPT_SNTP_SERVERS
:
586 case DH6OPT_NIS_SERVERS
:
587 case DH6OPT_NISP_SERVERS
:
588 case DH6OPT_BCMCS_SERVER_A
:
589 case DH6OPT_PANA_AGENT
:
590 case DH6OPT_LQ_CLIENT_LINK
:
595 tp
= (const u_char
*)(dh6o
+ 1);
596 for (i
= 0; i
< optlen
; i
+= 16)
597 ND_PRINT(" %s", GET_IP6ADDR_STRING(tp
+ i
));
600 case DH6OPT_SIP_SERVER_D
:
601 case DH6OPT_DOMAIN_LIST
:
602 tp
= (const u_char
*)(dh6o
+ 1);
603 while (tp
< cp
+ sizeof(*dh6o
) + optlen
) {
605 if ((tp
= fqdn_print(ndo
, tp
, cp
+ sizeof(*dh6o
) + optlen
)) == NULL
)
610 case DH6OPT_STATUS_CODE
:
615 tp
= (const u_char
*)(dh6o
+ 1);
616 ND_PRINT(" %s)", dhcp6stcode(GET_BE_U_2(tp
)));
624 tp
= (const u_char
*)(dh6o
+ 1);
625 ND_PRINT(" IAID:%u T1:%u T2:%u",
630 /* there are sub-options */
631 dhcp6opt_print(ndo
, tp
+ 12, tp
+ optlen
);
640 tp
= (const u_char
*)(dh6o
+ 1);
641 ND_PRINT(" IAID:%u", GET_BE_U_4(tp
));
643 /* there are sub-options */
644 dhcp6opt_print(ndo
, tp
+ 4, tp
+ optlen
);
648 case DH6OPT_IA_PD_PREFIX
:
653 tp
= (const u_char
*)(dh6o
+ 1);
654 ND_PRINT(" %s/%u", GET_IP6ADDR_STRING(tp
+ 9),
656 ND_PRINT(" pltime:%u vltime:%u",
660 /* there are sub-options */
661 dhcp6opt_print(ndo
, tp
+ 25, tp
+ optlen
);
665 case DH6OPT_LIFETIME
:
666 case DH6OPT_CLT_TIME
:
671 tp
= (const u_char
*)(dh6o
+ 1);
672 ND_PRINT(" %u)", GET_BE_U_4(tp
));
674 case DH6OPT_REMOTE_ID
:
679 tp
= (const u_char
*)(dh6o
+ 1);
680 ND_PRINT(" %u ", GET_BE_U_4(tp
));
682 * Print hex dump first 10 characters.
684 for (i
= 4; i
< optlen
&& i
< 14; i
++)
685 ND_PRINT("%02x", GET_U_1(tp
+ i
));
688 case DH6OPT_LQ_QUERY
:
693 tp
= (const u_char
*)(dh6o
+ 1);
694 dh6_lq_query_type
= GET_U_1(tp
);
695 switch (dh6_lq_query_type
) {
697 ND_PRINT(" by-address");
700 ND_PRINT(" by-clientID");
703 ND_PRINT(" type_%u", dh6_lq_query_type
);
706 ND_PRINT(" %s", GET_IP6ADDR_STRING(tp
+ 1));
708 /* there are query-options */
709 dhcp6opt_print(ndo
, tp
+ 17, tp
+ optlen
);
713 case DH6OPT_CLIENT_DATA
:
714 tp
= (const u_char
*)(dh6o
+ 1);
716 /* there are encapsulated options */
717 dhcp6opt_print(ndo
, tp
, tp
+ optlen
);
721 case DH6OPT_LQ_RELAY_DATA
:
726 tp
= (const u_char
*)(dh6o
+ 1);
727 ND_PRINT(" %s ", GET_IP6ADDR_STRING(tp
));
729 * Print hex dump first 10 characters.
731 for (i
= 16; i
< optlen
&& i
< 26; i
++)
732 ND_PRINT("%02x", GET_U_1(tp
+ i
));
735 case DH6OPT_NTP_SERVER
:
740 tp
= (const u_char
*)(dh6o
+ 1);
741 while (tp
< cp
+ sizeof(*dh6o
) + optlen
- 4) {
742 subopt_code
= GET_BE_U_2(tp
);
744 subopt_len
= GET_BE_U_2(tp
);
746 if (tp
+ subopt_len
> cp
+ sizeof(*dh6o
) + optlen
)
748 ND_PRINT(" subopt:%u", subopt_code
);
749 switch (subopt_code
) {
750 case DH6OPT_NTP_SUBOPTION_SRV_ADDR
:
751 case DH6OPT_NTP_SUBOPTION_MC_ADDR
:
752 if (subopt_len
!= 16) {
756 ND_PRINT(" %s", GET_IP6ADDR_STRING(tp
));
758 case DH6OPT_NTP_SUBOPTION_SRV_FQDN
:
760 if (fqdn_print(ndo
, tp
, tp
+ subopt_len
) == NULL
)
771 case DH6OPT_AFTR_NAME
:
776 tp
= (const u_char
*)(dh6o
+ 1);
779 /* Encoding is described in section 3.1 of RFC 1035 */
780 while (remain_len
&& GET_U_1(tp
)) {
781 label_len
= GET_U_1(tp
);
783 if (label_len
< remain_len
- 1) {
784 nd_printjnp(ndo
, tp
, label_len
);
786 remain_len
-= (label_len
+ 1);
787 if(GET_U_1(tp
)) ND_PRINT(".");
795 case DH6OPT_NEW_POSIX_TIMEZONE
: /* all three of these options */
796 case DH6OPT_NEW_TZDB_TIMEZONE
: /* are encoded similarly */
797 case DH6OPT_MUDURL
: /* although GMT might not work */
802 tp
= (const u_char
*)(dh6o
+ 1);
804 nd_printjnp(ndo
, tp
, optlen
);
808 case DH6OPT_BOOTFILE_URL
:
809 tp
= (const u_char
*)(dh6o
+ 1);
811 nd_printjn(ndo
, tp
, optlen
);
815 case DH6OPT_SZTP_REDIRECT
:
816 case DH6OPT_USER_CLASS
:
818 tp
= (const u_char
*)(dh6o
+ 1);
819 first_list_value
= TRUE
;
820 remainder_len
= optlen
;
821 while (remainder_len
>= 2) {
822 if (first_list_value
== FALSE
) {
825 first_list_value
= FALSE
;
826 subopt_len
= GET_BE_U_2(tp
);
827 if (subopt_len
> remainder_len
-2) {
831 nd_printjn(ndo
, tp
, subopt_len
);
833 remainder_len
-= (subopt_len
+2);
835 if (remainder_len
!= 0 ) {
846 cp
+= sizeof(*dh6o
) + optlen
;
855 * Print dhcp6 packets
858 dhcp6_print(netdissect_options
*ndo
,
859 const u_char
*cp
, u_int length
)
861 const struct dhcp6
*dh6
;
862 const struct dhcp6_relay
*dh6relay
;
868 ndo
->ndo_protocol
= "dhcp6";
871 ep
= ndo
->ndo_snapend
;
872 if (cp
+ length
< ep
)
875 dh6
= (const struct dhcp6
*)cp
;
876 dh6relay
= (const struct dhcp6_relay
*)cp
;
877 ND_TCHECK_4(dh6
->dh6_msgtypexid
.xid
);
878 msgtype
= GET_U_1(dh6
->dh6_msgtypexid
.msgtype
);
879 name
= tok2str(dh6_msgtype_str
, "msgtype-%u", msgtype
);
881 if (!ndo
->ndo_vflag
) {
882 ND_PRINT(" %s", name
);
886 /* XXX relay agent messages have to be handled differently */
888 ND_PRINT(" %s (", name
); /*)*/
889 if (msgtype
!= DH6_RELAY_FORW
&& msgtype
!= DH6_RELAY_REPLY
) {
891 GET_BE_U_4(dh6
->dh6_msgtypexid
.xid
) & DH6_XIDMASK
);
892 extp
= (const u_char
*)(dh6
+ 1);
893 dhcp6opt_print(ndo
, extp
, ep
);
894 } else { /* relay messages */
895 ND_PRINT("linkaddr=%s", GET_IP6ADDR_STRING(dh6relay
->dh6relay_linkaddr
));
897 ND_PRINT(" peeraddr=%s", GET_IP6ADDR_STRING(dh6relay
->dh6relay_peeraddr
));
899 dhcp6opt_print(ndo
, (const u_char
*)(dh6relay
+ 1), ep
);