dhcpv6: add extra syslog info traces
[project/odhcp6c.git] / src / dhcpv6.c
1 /**
2 * Copyright (C) 2012-2014 Steven Barth <steven@midlink.org>
3 * Copyright (C) 2017-2018 Hans Dedecker <dedeckeh@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License v2 as published by
7 * the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 */
15
16 #include <time.h>
17 #include <fcntl.h>
18 #include <errno.h>
19 #include <inttypes.h>
20 #include <stdlib.h>
21 #include <signal.h>
22 #include <limits.h>
23 #include <resolv.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <syslog.h>
27 #include <stdbool.h>
28 #include <ctype.h>
29 #include <sys/time.h>
30 #include <sys/ioctl.h>
31 #include <sys/socket.h>
32 #include <arpa/inet.h>
33 #include <netinet/in.h>
34
35 #include <net/if.h>
36 #include <net/ethernet.h>
37
38 #include "odhcp6c.h"
39 #ifdef USE_LIBUBOX
40 #include <libubox/md5.h>
41 #else
42 #include "md5.h"
43 #endif
44
45
46 #define ALL_DHCPV6_RELAYS {{{0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\
47 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02}}}
48 #define DHCPV6_CLIENT_PORT 546
49 #define DHCPV6_SERVER_PORT 547
50 #define DHCPV6_DUID_LLADDR 3
51 #define DHCPV6_REQ_DELAY 1
52
53 #define DHCPV6_SOL_MAX_RT_MIN 60
54 #define DHCPV6_SOL_MAX_RT_MAX 86400
55 #define DHCPV6_INF_MAX_RT_MIN 60
56 #define DHCPV6_INF_MAX_RT_MAX 86400
57
58 static bool dhcpv6_response_is_valid(const void *buf, ssize_t len,
59 const uint8_t transaction[3], enum dhcpv6_msg type,
60 const struct in6_addr *daddr);
61
62 static unsigned int dhcpv6_parse_ia(void *opt, void *end);
63
64 static int dhcpv6_calc_refresh_timers(void);
65 static void dhcpv6_handle_status_code(_unused const enum dhcpv6_msg orig,
66 const uint16_t code, const void *status_msg, const int len,
67 int *ret);
68 static void dhcpv6_handle_ia_status_code(const enum dhcpv6_msg orig,
69 const struct dhcpv6_ia_hdr *ia_hdr, const uint16_t code,
70 const void *status_msg, const int len,
71 bool handled_status_codes[_DHCPV6_Status_Max],
72 int *ret);
73 static void dhcpv6_add_server_cand(const struct dhcpv6_server_cand *cand);
74 static void dhcpv6_clear_all_server_cand(void);
75
76 static reply_handler dhcpv6_handle_reply;
77 static reply_handler dhcpv6_handle_advert;
78 static reply_handler dhcpv6_handle_rebind_reply;
79 static reply_handler dhcpv6_handle_reconfigure;
80 static int dhcpv6_commit_advert(void);
81
82 // RFC 3315 - 5.5 Timeout and Delay values
83 static struct dhcpv6_retx dhcpv6_retx[_DHCPV6_MSG_MAX] = {
84 [DHCPV6_MSG_UNKNOWN] = {false, 1, 120, 0, "<POLL>",
85 dhcpv6_handle_reconfigure, NULL},
86 [DHCPV6_MSG_SOLICIT] = {true, 1, DHCPV6_SOL_MAX_RT, 0, "SOLICIT",
87 dhcpv6_handle_advert, dhcpv6_commit_advert},
88 [DHCPV6_MSG_REQUEST] = {true, 1, DHCPV6_REQ_MAX_RT, 10, "REQUEST",
89 dhcpv6_handle_reply, NULL},
90 [DHCPV6_MSG_RENEW] = {false, 10, DHCPV6_REN_MAX_RT, 0, "RENEW",
91 dhcpv6_handle_reply, NULL},
92 [DHCPV6_MSG_REBIND] = {false, 10, DHCPV6_REB_MAX_RT, 0, "REBIND",
93 dhcpv6_handle_rebind_reply, NULL},
94 [DHCPV6_MSG_RELEASE] = {false, 1, 0, 5, "RELEASE", NULL, NULL},
95 [DHCPV6_MSG_DECLINE] = {false, 1, 0, 5, "DECLINE", NULL, NULL},
96 [DHCPV6_MSG_INFO_REQ] = {true, 1, DHCPV6_INF_MAX_RT, 0, "INFOREQ",
97 dhcpv6_handle_reply, NULL},
98 };
99
100 // Sockets
101 static int sock = -1;
102 static int ifindex = -1;
103 static int64_t t1 = 0, t2 = 0, t3 = 0;
104
105 // IA states
106 static enum odhcp6c_ia_mode na_mode = IA_MODE_NONE, pd_mode = IA_MODE_NONE;
107 static bool accept_reconfig = false;
108 // Server unicast address
109 static struct in6_addr server_addr = IN6ADDR_ANY_INIT;
110
111 // Reconfigure key
112 static uint8_t reconf_key[16];
113
114 // client options
115 static unsigned int client_options = 0;
116
117 static uint32_t ntohl_unaligned(const uint8_t *data)
118 {
119 uint32_t buf;
120
121 memcpy(&buf, data, sizeof(buf));
122 return ntohl(buf);
123 }
124
125 static char *dhcpv6_msg_to_str(enum dhcpv6_msg msg)
126 {
127 static char *dhcpv6_msg_str[] = {
128 "UNKNOWN",
129 "SOLICIT",
130 "ADVERTISE",
131 "REQUEST",
132 "RENEW",
133 "REBIND",
134 "REPLY",
135 "DECLINE",
136 "RECONFIGURE",
137 "INFORMATION REQUEST",
138 };
139
140 if (msg < _DHCPV6_MSG_MAX)
141 return dhcpv6_msg_str[msg];
142
143 return "Unknown";
144 }
145
146 int init_dhcpv6(const char *ifname, unsigned int options, int sol_timeout)
147 {
148 client_options = options;
149 dhcpv6_retx[DHCPV6_MSG_SOLICIT].max_timeo = sol_timeout;
150
151 sock = socket(AF_INET6, SOCK_DGRAM | SOCK_CLOEXEC, IPPROTO_UDP);
152 if (sock < 0)
153 goto failure;
154
155 // Detect interface
156 struct ifreq ifr;
157 memset(&ifr, 0, sizeof(ifr));
158 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name) - 1);
159 if (ioctl(sock, SIOCGIFINDEX, &ifr) < 0)
160 goto failure;
161
162 ifindex = ifr.ifr_ifindex;
163
164 // Create client DUID
165 size_t client_id_len;
166 odhcp6c_get_state(STATE_CLIENT_ID, &client_id_len);
167 if (client_id_len == 0) {
168 uint8_t duid[14] = {0, DHCPV6_OPT_CLIENTID, 0, 10, 0,
169 DHCPV6_DUID_LLADDR, 0, 1};
170
171 if (ioctl(sock, SIOCGIFHWADDR, &ifr) >= 0)
172 memcpy(&duid[8], ifr.ifr_hwaddr.sa_data, ETHER_ADDR_LEN);
173
174 uint8_t zero[ETHER_ADDR_LEN] = {0, 0, 0, 0, 0, 0};
175 struct ifreq ifs[100], *ifp, *ifend;
176 struct ifconf ifc;
177 ifc.ifc_req = ifs;
178 ifc.ifc_len = sizeof(ifs);
179
180 if (!memcmp(&duid[8], zero, ETHER_ADDR_LEN) &&
181 ioctl(sock, SIOCGIFCONF, &ifc) >= 0) {
182 // If our interface doesn't have an address...
183 ifend = ifs + (ifc.ifc_len / sizeof(struct ifreq));
184 for (ifp = ifc.ifc_req; ifp < ifend &&
185 !memcmp(&duid[8], zero, ETHER_ADDR_LEN); ifp++) {
186 memcpy(ifr.ifr_name, ifp->ifr_name,
187 sizeof(ifr.ifr_name));
188 if (ioctl(sock, SIOCGIFHWADDR, &ifr) < 0)
189 continue;
190
191 memcpy(&duid[8], ifr.ifr_hwaddr.sa_data,
192 ETHER_ADDR_LEN);
193 }
194 }
195
196 odhcp6c_add_state(STATE_CLIENT_ID, duid, sizeof(duid));
197 }
198
199 // Create ORO
200 if (!(client_options & DHCPV6_STRICT_OPTIONS)) {
201 uint16_t oro[] = {
202 htons(DHCPV6_OPT_SIP_SERVER_D),
203 htons(DHCPV6_OPT_SIP_SERVER_A),
204 htons(DHCPV6_OPT_DNS_SERVERS),
205 htons(DHCPV6_OPT_DNS_DOMAIN),
206 htons(DHCPV6_OPT_SNTP_SERVERS),
207 htons(DHCPV6_OPT_NTP_SERVER),
208 htons(DHCPV6_OPT_AFTR_NAME),
209 htons(DHCPV6_OPT_PD_EXCLUDE),
210 #ifdef EXT_CER_ID
211 htons(DHCPV6_OPT_CER_ID),
212 #endif
213 htons(DHCPV6_OPT_S46_CONT_MAPE),
214 htons(DHCPV6_OPT_S46_CONT_MAPT),
215 htons(DHCPV6_OPT_S46_CONT_LW),
216 };
217 odhcp6c_add_state(STATE_ORO, oro, sizeof(oro));
218 }
219 // Required oro
220 uint16_t req_oro[] = {
221 htons(DHCPV6_OPT_INF_MAX_RT),
222 htons(DHCPV6_OPT_SOL_MAX_RT),
223 htons(DHCPV6_OPT_INFO_REFRESH),
224 };
225 odhcp6c_add_state(STATE_ORO, req_oro, sizeof(req_oro));
226
227 // Configure IPv6-options
228 int val = 1;
229 if (setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &val, sizeof(val)) < 0)
230 goto failure;
231
232 if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val)) < 0)
233 goto failure;
234
235 if (setsockopt(sock, IPPROTO_IPV6, IPV6_RECVPKTINFO, &val, sizeof(val)) < 0)
236 goto failure;
237
238 if (setsockopt(sock, SOL_SOCKET, SO_BINDTODEVICE, ifname, strlen(ifname)) < 0)
239 goto failure;
240
241 struct sockaddr_in6 client_addr = { .sin6_family = AF_INET6,
242 .sin6_port = htons(DHCPV6_CLIENT_PORT), .sin6_flowinfo = 0 };
243
244 if (bind(sock, (struct sockaddr*)&client_addr, sizeof(client_addr)) < 0)
245 goto failure;
246
247 return 0;
248
249 failure:
250 if (sock >= 0)
251 close(sock);
252
253 return -1;
254 }
255
256 enum {
257 IOV_HDR=0,
258 IOV_ORO,
259 IOV_CL_ID,
260 IOV_SRV_ID,
261 IOV_OPTS,
262 IOV_RECONF_ACCEPT,
263 IOV_FQDN,
264 IOV_HDR_IA_NA,
265 IOV_IA_NA,
266 IOV_IA_PD,
267 IOV_TOTAL
268 };
269
270 int dhcpv6_set_ia_mode(enum odhcp6c_ia_mode na, enum odhcp6c_ia_mode pd)
271 {
272 int mode = DHCPV6_UNKNOWN;
273
274 na_mode = na;
275 pd_mode = pd;
276
277 if (na_mode == IA_MODE_NONE && pd_mode == IA_MODE_NONE)
278 mode = DHCPV6_STATELESS;
279 else if (na_mode == IA_MODE_FORCE || pd_mode == IA_MODE_FORCE)
280 mode = DHCPV6_STATEFUL;
281
282 return mode;
283 }
284
285 static void dhcpv6_send(enum dhcpv6_msg type, uint8_t trid[3], uint32_t ecs)
286 {
287 // Build FQDN
288 char fqdn_buf[256];
289 gethostname(fqdn_buf, sizeof(fqdn_buf));
290 struct {
291 uint16_t type;
292 uint16_t len;
293 uint8_t flags;
294 uint8_t data[256];
295 } fqdn;
296 size_t fqdn_len = 5 + dn_comp(fqdn_buf, fqdn.data,
297 sizeof(fqdn.data), NULL, NULL);
298 fqdn.type = htons(DHCPV6_OPT_FQDN);
299 fqdn.len = htons(fqdn_len - 4);
300 fqdn.flags = 0;
301
302 // Build Client ID
303 size_t cl_id_len;
304 void *cl_id = odhcp6c_get_state(STATE_CLIENT_ID, &cl_id_len);
305
306 // Get Server ID
307 size_t srv_id_len;
308 void *srv_id = odhcp6c_get_state(STATE_SERVER_ID, &srv_id_len);
309
310 // Build IA_PDs
311 size_t ia_pd_entries = 0, ia_pd_len = 0;
312 uint8_t *ia_pd;
313
314 if (type == DHCPV6_MSG_SOLICIT) {
315 odhcp6c_clear_state(STATE_IA_PD);
316 size_t n_prefixes;
317 struct odhcp6c_request_prefix *request_prefixes = odhcp6c_get_state(STATE_IA_PD_INIT, &n_prefixes);
318 n_prefixes /= sizeof(struct odhcp6c_request_prefix);
319
320 ia_pd = alloca(n_prefixes * (sizeof(struct dhcpv6_ia_hdr) + sizeof(struct dhcpv6_ia_prefix)));
321
322 for (size_t i = 0; i < n_prefixes; i++) {
323 struct dhcpv6_ia_hdr hdr_ia_pd = {
324 htons(DHCPV6_OPT_IA_PD),
325 htons(sizeof(hdr_ia_pd) - 4 +
326 sizeof(struct dhcpv6_ia_prefix) * !!request_prefixes[i].length),
327 request_prefixes[i].iaid, 0, 0
328 };
329 struct dhcpv6_ia_prefix pref = {
330 .type = htons(DHCPV6_OPT_IA_PREFIX),
331 .len = htons(sizeof(pref) - 4),
332 .prefix = request_prefixes[i].length
333 };
334 memcpy(ia_pd + ia_pd_len, &hdr_ia_pd, sizeof(hdr_ia_pd));
335 ia_pd_len += sizeof(hdr_ia_pd);
336 if (request_prefixes[i].length) {
337 memcpy(ia_pd + ia_pd_len, &pref, sizeof(pref));
338 ia_pd_len += sizeof(pref);
339 }
340 }
341 } else {
342 struct odhcp6c_entry *e = odhcp6c_get_state(STATE_IA_PD, &ia_pd_entries);
343 ia_pd_entries /= sizeof(*e);
344
345 // we're too lazy to count our distinct IAIDs,
346 // so just allocate maximally needed space
347 ia_pd = alloca(ia_pd_entries * (sizeof(struct dhcpv6_ia_prefix) + 10 +
348 sizeof(struct dhcpv6_ia_hdr)));
349
350 for (size_t i = 0; i < ia_pd_entries; ++i) {
351 uint32_t iaid = e[i].iaid;
352
353 // check if this is an unprocessed IAID and skip if not.
354 int new_iaid = 1;
355 for (int j = i-1; j >= 0; j--) {
356 if (e[j].iaid == iaid) {
357 new_iaid = 0;
358 break;
359 }
360 }
361
362 if (!new_iaid)
363 continue;
364
365 // construct header
366 struct dhcpv6_ia_hdr hdr_ia_pd = {
367 htons(DHCPV6_OPT_IA_PD),
368 htons(sizeof(hdr_ia_pd) - 4),
369 iaid, 0, 0
370 };
371
372 memcpy(ia_pd + ia_pd_len, &hdr_ia_pd, sizeof(hdr_ia_pd));
373 struct dhcpv6_ia_hdr *hdr = (struct dhcpv6_ia_hdr *) (ia_pd + ia_pd_len);
374 ia_pd_len += sizeof(hdr_ia_pd);
375
376 for (size_t j = i; j < ia_pd_entries; j++) {
377 if (e[j].iaid != iaid)
378 continue;
379
380 uint8_t ex_len = 0;
381 if (e[j].priority > 0)
382 ex_len = ((e[j].priority - e[j].length - 1) / 8) + 6;
383
384 struct dhcpv6_ia_prefix p = {
385 .type = htons(DHCPV6_OPT_IA_PREFIX),
386 .len = htons(sizeof(p) - 4U + ex_len),
387 .prefix = e[j].length,
388 .addr = e[j].target
389 };
390
391 if (type == DHCPV6_MSG_REQUEST) {
392 p.preferred = htonl(e[j].preferred);
393 p.valid = htonl(e[j].valid);
394 }
395
396 memcpy(ia_pd + ia_pd_len, &p, sizeof(p));
397 ia_pd_len += sizeof(p);
398
399 if (ex_len) {
400 ia_pd[ia_pd_len++] = 0;
401 ia_pd[ia_pd_len++] = DHCPV6_OPT_PD_EXCLUDE;
402 ia_pd[ia_pd_len++] = 0;
403 ia_pd[ia_pd_len++] = ex_len - 4;
404 ia_pd[ia_pd_len++] = e[j].priority;
405
406 uint32_t excl = ntohl(e[j].router.s6_addr32[1]);
407 excl >>= (64 - e[j].priority);
408 excl <<= 8 - ((e[j].priority - e[j].length) % 8);
409
410 for (size_t i = ex_len - 5; i > 0; --i, excl >>= 8)
411 ia_pd[ia_pd_len + i] = excl & 0xff;
412 ia_pd_len += ex_len - 5;
413 }
414
415 hdr->len = htons(ntohs(hdr->len) + ntohs(p.len) + 4U);
416 }
417 }
418 }
419
420 // Build IA_NAs
421 size_t ia_na_entries, ia_na_len = 0;
422 void *ia_na = NULL;
423 struct odhcp6c_entry *e = odhcp6c_get_state(STATE_IA_NA, &ia_na_entries);
424 ia_na_entries /= sizeof(*e);
425
426 struct dhcpv6_ia_hdr hdr_ia_na = {
427 htons(DHCPV6_OPT_IA_NA),
428 htons(sizeof(hdr_ia_na) - 4),
429 htonl(1), 0, 0
430 };
431
432 struct dhcpv6_ia_addr pa[ia_na_entries];
433 for (size_t i = 0; i < ia_na_entries; ++i) {
434 pa[i].type = htons(DHCPV6_OPT_IA_ADDR);
435 pa[i].len = htons(sizeof(pa[i]) - 4U);
436 pa[i].addr = e[i].target;
437
438 if (type == DHCPV6_MSG_REQUEST) {
439 pa[i].preferred = htonl(e[i].preferred);
440 pa[i].valid = htonl(e[i].valid);
441 } else {
442 pa[i].preferred = 0;
443 pa[i].valid = 0;
444 }
445 }
446
447 ia_na = pa;
448 ia_na_len = sizeof(pa);
449 hdr_ia_na.len = htons(ntohs(hdr_ia_na.len) + ia_na_len);
450
451 // Reconfigure Accept
452 struct {
453 uint16_t type;
454 uint16_t length;
455 } reconf_accept = {htons(DHCPV6_OPT_RECONF_ACCEPT), 0};
456
457 // Option list
458 size_t opts_len;
459 void *opts = odhcp6c_get_state(STATE_OPTS, &opts_len);
460
461 // Option Request List
462 size_t oro_entries, oro_len = 0;
463 uint16_t *oro, *s_oro = odhcp6c_get_state(STATE_ORO, &oro_entries);
464
465 oro_entries /= sizeof(*s_oro);
466 oro = alloca(oro_entries * sizeof(*oro));
467
468 for (size_t i = 0; i < oro_entries; i++) {
469 struct odhcp6c_opt *opt = odhcp6c_find_opt(htons(s_oro[i]));
470
471 if (opt) {
472 if (!(opt->flags & OPT_ORO))
473 continue;
474
475 if ((opt->flags & OPT_ORO_SOLICIT) && type != DHCPV6_MSG_SOLICIT)
476 continue;
477
478 if ((opt->flags & OPT_ORO_STATELESS) && type != DHCPV6_MSG_INFO_REQ)
479 continue;
480
481 if ((opt->flags & OPT_ORO_STATEFUL) && type == DHCPV6_MSG_INFO_REQ)
482 continue;
483 }
484
485 oro[oro_len++] = s_oro[i];
486 }
487 oro_len *= sizeof(*oro);
488
489 // Prepare Header
490 struct {
491 uint8_t type;
492 uint8_t trid[3];
493 uint16_t elapsed_type;
494 uint16_t elapsed_len;
495 uint16_t elapsed_value;
496 uint16_t oro_type;
497 uint16_t oro_len;
498 } hdr = {
499 type, {trid[0], trid[1], trid[2]},
500 htons(DHCPV6_OPT_ELAPSED), htons(2),
501 htons((ecs > 0xffff) ? 0xffff : ecs),
502 htons(DHCPV6_OPT_ORO), htons(oro_len),
503 };
504
505 struct iovec iov[IOV_TOTAL] = {
506 [IOV_HDR] = {&hdr, sizeof(hdr)},
507 [IOV_ORO] = {oro, oro_len},
508 [IOV_CL_ID] = {cl_id, cl_id_len},
509 [IOV_SRV_ID] = {srv_id, srv_id_len},
510 [IOV_OPTS] = { opts, opts_len },
511 [IOV_RECONF_ACCEPT] = {&reconf_accept, sizeof(reconf_accept)},
512 [IOV_FQDN] = {&fqdn, fqdn_len},
513 [IOV_HDR_IA_NA] = {&hdr_ia_na, sizeof(hdr_ia_na)},
514 [IOV_IA_NA] = {ia_na, ia_na_len},
515 [IOV_IA_PD] = {ia_pd, ia_pd_len},
516 };
517
518 size_t cnt = IOV_TOTAL;
519 if (type == DHCPV6_MSG_INFO_REQ)
520 cnt = IOV_HDR_IA_NA;
521
522 // Disable IAs if not used
523 if (type != DHCPV6_MSG_SOLICIT && ia_na_len == 0)
524 iov[IOV_HDR_IA_NA].iov_len = 0;
525
526 if (na_mode == IA_MODE_NONE)
527 iov[IOV_HDR_IA_NA].iov_len = 0;
528
529 if ((type != DHCPV6_MSG_SOLICIT && type != DHCPV6_MSG_REQUEST) ||
530 !(client_options & DHCPV6_ACCEPT_RECONFIGURE))
531 iov[IOV_RECONF_ACCEPT].iov_len = 0;
532
533 if (!(client_options & DHCPV6_CLIENT_FQDN))
534 iov[IOV_FQDN].iov_len = 0;
535
536 struct sockaddr_in6 srv = {AF_INET6, htons(DHCPV6_SERVER_PORT),
537 0, ALL_DHCPV6_RELAYS, ifindex};
538 struct msghdr msg = {.msg_name = &srv, .msg_namelen = sizeof(srv),
539 .msg_iov = iov, .msg_iovlen = cnt};
540
541 switch (type) {
542 case DHCPV6_MSG_REQUEST:
543 case DHCPV6_MSG_RENEW:
544 case DHCPV6_MSG_RELEASE:
545 case DHCPV6_MSG_DECLINE:
546 if (!IN6_IS_ADDR_UNSPECIFIED(&server_addr) &&
547 odhcp6c_addr_in_scope(&server_addr)) {
548 srv.sin6_addr = server_addr;
549 if (!IN6_IS_ADDR_LINKLOCAL(&server_addr))
550 srv.sin6_scope_id = 0;
551 }
552 break;
553 default:
554 break;
555 }
556
557 if (sendmsg(sock, &msg, 0) < 0) {
558 char in6_str[INET6_ADDRSTRLEN];
559
560 syslog(LOG_ERR, "Failed to send %s message to %s (%s)",
561 dhcpv6_msg_to_str(type),
562 inet_ntop(AF_INET6, (const void *)&srv.sin6_addr,
563 in6_str, sizeof(in6_str)), strerror(errno));
564 }
565 }
566
567 static int64_t dhcpv6_rand_delay(int64_t time)
568 {
569 int random;
570 odhcp6c_random(&random, sizeof(random));
571
572 return (time * ((int64_t)random % 1000LL)) / 10000LL;
573 }
574
575 int dhcpv6_request(enum dhcpv6_msg type)
576 {
577 uint8_t rc = 0;
578 uint64_t timeout = UINT32_MAX;
579 struct dhcpv6_retx *retx = &dhcpv6_retx[type];
580
581 if (retx->delay) {
582 struct timespec ts = {0, 0};
583 ts.tv_nsec = (dhcpv6_rand_delay((10000 * DHCPV6_REQ_DELAY) / 2) + (1000 * DHCPV6_REQ_DELAY) / 2) * 1000000;
584
585 while (nanosleep(&ts, &ts) < 0 && errno == EINTR);
586 }
587
588 if (type == DHCPV6_MSG_UNKNOWN)
589 timeout = t1;
590 else if (type == DHCPV6_MSG_RENEW)
591 timeout = (t2 > t1) ? t2 - t1 : ((t1 == UINT32_MAX) ? UINT32_MAX : 0);
592 else if (type == DHCPV6_MSG_REBIND)
593 timeout = (t3 > t2) ? t3 - t2 : ((t2 == UINT32_MAX) ? UINT32_MAX : 0);
594
595 if (timeout == 0)
596 return -1;
597
598 syslog(LOG_NOTICE, "Starting %s transaction (timeout %"PRIu64"s, max rc %d)",
599 retx->name, timeout, retx->max_rc);
600
601 uint64_t start = odhcp6c_get_milli_time(), round_start = start, elapsed;
602
603 // Generate transaction ID
604 uint8_t trid[3] = {0, 0, 0};
605 if (type != DHCPV6_MSG_UNKNOWN)
606 odhcp6c_random(trid, sizeof(trid));
607
608 ssize_t len = -1;
609 int64_t rto = 0;
610
611 do {
612 if (rto == 0) {
613 int64_t delay = dhcpv6_rand_delay(retx->init_timeo * 1000);
614
615 // First RT MUST be strictly greater than IRT for solicit messages (RFC3313 17.1.2)
616 while (type == DHCPV6_MSG_SOLICIT && delay <= 0)
617 delay = dhcpv6_rand_delay(retx->init_timeo * 1000);
618
619 rto = (retx->init_timeo * 1000 + delay);
620 } else
621 rto = (2 * rto + dhcpv6_rand_delay(rto));
622
623 if (retx->max_timeo && (rto >= retx->max_timeo * 1000))
624 rto = retx->max_timeo * 1000 +
625 dhcpv6_rand_delay(retx->max_timeo * 1000);
626
627 // Calculate end for this round and elapsed time
628 uint64_t round_end = round_start + rto;
629 elapsed = round_start - start;
630
631 // Don't wait too long if timeout differs from infinite
632 if ((timeout != UINT32_MAX) && (round_end - start > timeout * 1000))
633 round_end = timeout * 1000 + start;
634
635 // Built and send package
636 switch (type) {
637 case DHCPV6_MSG_UNKNOWN:
638 break;
639 default:
640 syslog(LOG_NOTICE, "Send %s message (elapsed %"PRIu64"ms, rc %d)",
641 retx->name, elapsed, rc);
642 // Fall through
643 case DHCPV6_MSG_SOLICIT:
644 case DHCPV6_MSG_INFO_REQ:
645 dhcpv6_send(type, trid, elapsed / 10);
646 rc++;
647 }
648
649 // Receive rounds
650 for (; len < 0 && (round_start < round_end);
651 round_start = odhcp6c_get_milli_time()) {
652 uint8_t buf[1536];
653 union {
654 struct cmsghdr hdr;
655 uint8_t buf[CMSG_SPACE(sizeof(struct in6_pktinfo))];
656 } cmsg_buf;
657 struct iovec iov = {buf, sizeof(buf)};
658 struct sockaddr_in6 addr;
659 struct msghdr msg = {.msg_name = &addr, .msg_namelen = sizeof(addr),
660 .msg_iov = &iov, .msg_iovlen = 1, .msg_control = cmsg_buf.buf,
661 .msg_controllen = sizeof(cmsg_buf)};
662 struct in6_pktinfo *pktinfo = NULL;
663
664 // Check for pending signal
665 if (odhcp6c_signal_process())
666 return -1;
667
668 // Set timeout for receiving
669 uint64_t t = round_end - round_start;
670 struct timeval tv = {t / 1000, (t % 1000) * 1000};
671 if (setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO,
672 &tv, sizeof(tv)) < 0)
673 syslog(LOG_ERR, "setsockopt SO_RCVTIMEO failed (%s)",
674 strerror(errno));
675
676 // Receive cycle
677 len = recvmsg(sock, &msg, 0);
678 if (len < 0)
679 continue;
680
681 for (struct cmsghdr *ch = CMSG_FIRSTHDR(&msg); ch != NULL;
682 ch = CMSG_NXTHDR(&msg, ch)) {
683 if (ch->cmsg_level == SOL_IPV6 &&
684 ch->cmsg_type == IPV6_PKTINFO) {
685 pktinfo = (struct in6_pktinfo *)CMSG_DATA(ch);
686 break;
687 }
688 }
689
690 if (pktinfo == NULL) {
691 len = -1;
692 continue;
693 }
694
695 if (!dhcpv6_response_is_valid(buf, len, trid,
696 type, &pktinfo->ipi6_addr)) {
697 len = -1;
698 continue;
699 }
700
701 uint8_t *opt = &buf[4];
702 uint8_t *opt_end = opt + len - 4;
703
704 round_start = odhcp6c_get_milli_time();
705 elapsed = round_start - start;
706 syslog(LOG_NOTICE, "Got a valid reply after %"PRIu64"ms",
707 elapsed);
708
709 if (retx->handler_reply)
710 len = retx->handler_reply(type, rc, opt, opt_end, &addr);
711
712 if (len > 0 && round_end - round_start > 1000)
713 round_end = 1000 + round_start;
714 }
715
716 // Allow
717 if (retx->handler_finish)
718 len = retx->handler_finish();
719 } while (len < 0 && ((timeout == UINT32_MAX) || (elapsed / 1000 < timeout)) &&
720 (!retx->max_rc || rc < retx->max_rc));
721 return len;
722 }
723
724 // Message validation checks according to RFC3315 chapter 15
725 static bool dhcpv6_response_is_valid(const void *buf, ssize_t len,
726 const uint8_t transaction[3], enum dhcpv6_msg type,
727 const struct in6_addr *daddr)
728 {
729 const struct dhcpv6_header *rep = buf;
730 if (len < (ssize_t)sizeof(*rep) || memcmp(rep->tr_id,
731 transaction, sizeof(rep->tr_id)))
732 return false; // Invalid reply
733
734 if (type == DHCPV6_MSG_SOLICIT) {
735 if (rep->msg_type != DHCPV6_MSG_ADVERT &&
736 rep->msg_type != DHCPV6_MSG_REPLY)
737 return false;
738
739 } else if (type == DHCPV6_MSG_UNKNOWN) {
740 if (!accept_reconfig || rep->msg_type != DHCPV6_MSG_RECONF)
741 return false;
742
743 } else if (rep->msg_type != DHCPV6_MSG_REPLY)
744 return false;
745
746 uint8_t *end = ((uint8_t*)buf) + len, *odata = NULL,
747 rcmsg = DHCPV6_MSG_UNKNOWN;
748 uint16_t otype, olen = UINT16_MAX;
749 bool clientid_ok = false, serverid_ok = false, rcauth_ok = false,
750 ia_present = false, options_valid = true;
751
752 size_t client_id_len, server_id_len;
753 void *client_id = odhcp6c_get_state(STATE_CLIENT_ID, &client_id_len);
754 void *server_id = odhcp6c_get_state(STATE_SERVER_ID, &server_id_len);
755
756 dhcpv6_for_each_option(&rep[1], end, otype, olen, odata) {
757 if (otype == DHCPV6_OPT_CLIENTID) {
758 clientid_ok = (olen + 4U == client_id_len) && !memcmp(
759 &odata[-4], client_id, client_id_len);
760 } else if (otype == DHCPV6_OPT_SERVERID) {
761 if (server_id_len)
762 serverid_ok = (olen + 4U == server_id_len) && !memcmp(
763 &odata[-4], server_id, server_id_len);
764 else
765 serverid_ok = true;
766 } else if (otype == DHCPV6_OPT_AUTH && olen == -4 +
767 sizeof(struct dhcpv6_auth_reconfigure)) {
768 struct dhcpv6_auth_reconfigure *r = (void*)&odata[-4];
769 if (r->protocol != 3 || r->algorithm != 1 || r->reconf_type != 2)
770 continue;
771
772 md5_ctx_t md5;
773 uint8_t serverhash[16], secretbytes[64];
774 uint32_t hash[4];
775 memcpy(serverhash, r->key, sizeof(serverhash));
776 memset(r->key, 0, sizeof(r->key));
777
778 memset(secretbytes, 0, sizeof(secretbytes));
779 memcpy(secretbytes, reconf_key, sizeof(reconf_key));
780
781 for (size_t i = 0; i < sizeof(secretbytes); ++i)
782 secretbytes[i] ^= 0x36;
783
784 md5_begin(&md5);
785 md5_hash(secretbytes, sizeof(secretbytes), &md5);
786 md5_hash(buf, len, &md5);
787 md5_end(hash, &md5);
788
789 for (size_t i = 0; i < sizeof(secretbytes); ++i) {
790 secretbytes[i] ^= 0x36;
791 secretbytes[i] ^= 0x5c;
792 }
793
794 md5_begin(&md5);
795 md5_hash(secretbytes, sizeof(secretbytes), &md5);
796 md5_hash(hash, 16, &md5);
797 md5_end(hash, &md5);
798
799 rcauth_ok = !memcmp(hash, serverhash, sizeof(hash));
800 } else if (otype == DHCPV6_OPT_RECONF_MESSAGE && olen == 1) {
801 rcmsg = odata[0];
802 } else if ((otype == DHCPV6_OPT_IA_PD || otype == DHCPV6_OPT_IA_NA)) {
803 ia_present = true;
804 if (olen < -4 + sizeof(struct dhcpv6_ia_hdr))
805 options_valid = false;
806 } else if ((otype == DHCPV6_OPT_IA_ADDR) || (otype == DHCPV6_OPT_IA_PREFIX) ||
807 (otype == DHCPV6_OPT_PD_EXCLUDE))
808 // Options are not allowed on global level
809 options_valid = false;
810 }
811
812 if (!options_valid || ((odata + olen) > end))
813 return false;
814
815 if (type == DHCPV6_MSG_INFO_REQ && ia_present)
816 return false;
817
818 if (rep->msg_type == DHCPV6_MSG_RECONF) {
819 if ((rcmsg != DHCPV6_MSG_RENEW && rcmsg != DHCPV6_MSG_REBIND && rcmsg != DHCPV6_MSG_INFO_REQ) ||
820 (rcmsg == DHCPV6_MSG_INFO_REQ && ia_present) ||
821 !rcauth_ok || IN6_IS_ADDR_MULTICAST(daddr))
822 return false;
823 }
824
825 return clientid_ok && serverid_ok;
826 }
827
828 int dhcpv6_poll_reconfigure(void)
829 {
830 int ret = dhcpv6_request(DHCPV6_MSG_UNKNOWN);
831
832 if (ret != -1)
833 ret = dhcpv6_request(ret);
834
835 return ret;
836 }
837
838 static int dhcpv6_handle_reconfigure(enum dhcpv6_msg orig, const int rc,
839 const void *opt, const void *end, _unused const struct sockaddr_in6 *from)
840 {
841 uint16_t otype, olen;
842 uint8_t *odata;
843 int msg = -1;
844
845 dhcpv6_for_each_option(opt, end, otype, olen, odata) {
846 if (otype == DHCPV6_OPT_RECONF_MESSAGE && olen == 1) {
847 switch (odata[0]) {
848 case DHCPV6_MSG_REBIND:
849 if (t2 != UINT32_MAX)
850 t2 = 0;
851 // Fall through
852 case DHCPV6_MSG_RENEW:
853 if (t1 != UINT32_MAX)
854 t1 = 0;
855 // Fall through
856 case DHCPV6_MSG_INFO_REQ:
857 msg = odata[0];
858 syslog(LOG_NOTICE, "Got a %s (msg-type %s)",
859 dhcpv6_msg_to_str(otype),
860 dhcpv6_msg_to_str(msg));
861 break;
862
863 default:
864 break;
865 }
866 }
867 }
868
869 dhcpv6_handle_reply(orig, rc, NULL, NULL, NULL);
870
871 return msg;
872 }
873
874 // Collect all advertised servers
875 static int dhcpv6_handle_advert(enum dhcpv6_msg orig, const int rc,
876 const void *opt, const void *end, _unused const struct sockaddr_in6 *from)
877 {
878 uint16_t olen, otype;
879 uint8_t *odata, pref = 0;
880 struct dhcpv6_server_cand cand = {false, false, 0, 0, {0},
881 IN6ADDR_ANY_INIT, DHCPV6_SOL_MAX_RT,
882 DHCPV6_INF_MAX_RT, NULL, NULL, 0, 0};
883 bool have_na = false;
884 int have_pd = 0;
885
886 dhcpv6_for_each_option(opt, end, otype, olen, odata) {
887 if (orig == DHCPV6_MSG_SOLICIT &&
888 ((otype == DHCPV6_OPT_IA_PD && pd_mode != IA_MODE_NONE) ||
889 (otype == DHCPV6_OPT_IA_NA && na_mode != IA_MODE_NONE)) &&
890 olen > -4 + sizeof(struct dhcpv6_ia_hdr)) {
891 struct dhcpv6_ia_hdr *ia_hdr = (void*)(&odata[-4]);
892 dhcpv6_parse_ia(ia_hdr, odata + olen + sizeof(*ia_hdr));
893 }
894
895 if (otype == DHCPV6_OPT_SERVERID && olen <= 130) {
896 memcpy(cand.duid, odata, olen);
897 cand.duid_len = olen;
898 } else if (otype == DHCPV6_OPT_PREF && olen >= 1 &&
899 cand.preference >= 0) {
900 cand.preference = pref = odata[0];
901 } else if (otype == DHCPV6_OPT_UNICAST && olen == sizeof(cand.server_addr)) {
902 if (!(client_options & DHCPV6_IGNORE_OPT_UNICAST))
903 cand.server_addr = *(struct in6_addr *)odata;
904
905 } else if (otype == DHCPV6_OPT_RECONF_ACCEPT) {
906 cand.wants_reconfigure = true;
907 } else if (otype == DHCPV6_OPT_SOL_MAX_RT && olen == 4) {
908 uint32_t sol_max_rt = ntohl_unaligned(odata);
909 if (sol_max_rt >= DHCPV6_SOL_MAX_RT_MIN &&
910 sol_max_rt <= DHCPV6_SOL_MAX_RT_MAX)
911 cand.sol_max_rt = sol_max_rt;
912
913 } else if (otype == DHCPV6_OPT_INF_MAX_RT && olen == 4) {
914 uint32_t inf_max_rt = ntohl_unaligned(odata);
915 if (inf_max_rt >= DHCPV6_INF_MAX_RT_MIN &&
916 inf_max_rt <= DHCPV6_INF_MAX_RT_MAX)
917 cand.inf_max_rt = inf_max_rt;
918
919 } else if (otype == DHCPV6_OPT_IA_PD &&
920 olen >= -4 + sizeof(struct dhcpv6_ia_hdr)) {
921 struct dhcpv6_ia_hdr *h = (struct dhcpv6_ia_hdr*)&odata[-4];
922 uint8_t *oend = odata + olen, *d;
923 dhcpv6_for_each_option(&h[1], oend, otype, olen, d) {
924 if (otype == DHCPV6_OPT_IA_PREFIX &&
925 olen >= -4 + sizeof(struct dhcpv6_ia_prefix)) {
926 struct dhcpv6_ia_prefix *p = (struct dhcpv6_ia_prefix*)&d[-4];
927 have_pd = p->prefix;
928 }
929 }
930 } else if (otype == DHCPV6_OPT_IA_NA &&
931 olen >= -4 + sizeof(struct dhcpv6_ia_hdr)) {
932 struct dhcpv6_ia_hdr *h = (struct dhcpv6_ia_hdr*)&odata[-4];
933 uint8_t *oend = odata + olen, *d;
934
935 dhcpv6_for_each_option(&h[1], oend, otype, olen, d) {
936 if (otype == DHCPV6_OPT_IA_ADDR &&
937 olen >= -4 + sizeof(struct dhcpv6_ia_addr))
938 have_na = true;
939 }
940 }
941 }
942
943 if ((!have_na && na_mode == IA_MODE_FORCE) ||
944 (!have_pd && pd_mode == IA_MODE_FORCE)) {
945 /*
946 * RFC7083 states to process the SOL_MAX_RT and
947 * INF_MAX_RT options even if the DHCPv6 server
948 * did not propose any IA_NA and/or IA_PD
949 */
950 dhcpv6_retx[DHCPV6_MSG_SOLICIT].max_timeo = cand.sol_max_rt;
951 dhcpv6_retx[DHCPV6_MSG_INFO_REQ].max_timeo = cand.inf_max_rt;
952 return -1;
953 }
954
955 if (na_mode != IA_MODE_NONE && !have_na) {
956 cand.has_noaddravail = true;
957 cand.preference -= 1000;
958 }
959
960 if (pd_mode != IA_MODE_NONE) {
961 if (have_pd)
962 cand.preference += 2000 + (128 - have_pd);
963 else
964 cand.preference -= 2000;
965 }
966
967 if (cand.duid_len > 0) {
968 cand.ia_na = odhcp6c_move_state(STATE_IA_NA, &cand.ia_na_len);
969 cand.ia_pd = odhcp6c_move_state(STATE_IA_PD, &cand.ia_pd_len);
970 dhcpv6_add_server_cand(&cand);
971 }
972
973 return (rc > 1 || (pref == 255 && cand.preference > 0)) ? 1 : -1;
974 }
975
976 static int dhcpv6_commit_advert(void)
977 {
978 return dhcpv6_promote_server_cand();
979 }
980
981 static int dhcpv6_handle_rebind_reply(enum dhcpv6_msg orig, const int rc,
982 const void *opt, const void *end, const struct sockaddr_in6 *from)
983 {
984 dhcpv6_handle_advert(orig, rc, opt, end, from);
985 if (dhcpv6_commit_advert() < 0)
986 return -1;
987
988 return dhcpv6_handle_reply(orig, rc, opt, end, from);
989 }
990
991 static int dhcpv6_handle_reply(enum dhcpv6_msg orig, _unused const int rc,
992 const void *opt, const void *end, const struct sockaddr_in6 *from)
993 {
994 uint8_t *odata;
995 uint16_t otype, olen;
996 uint32_t refresh = 86400;
997 int ret = 1;
998 unsigned int updated_IAs = 0;
999 bool handled_status_codes[_DHCPV6_Status_Max] = { false, };
1000
1001 odhcp6c_expire();
1002
1003 if (orig == DHCPV6_MSG_UNKNOWN) {
1004 static time_t last_update = 0;
1005 time_t now = odhcp6c_get_milli_time() / 1000;
1006
1007 uint32_t elapsed = (last_update > 0) ? now - last_update : 0;
1008 last_update = now;
1009
1010 if (t1 != UINT32_MAX)
1011 t1 -= elapsed;
1012
1013 if (t2 != UINT32_MAX)
1014 t2 -= elapsed;
1015
1016 if (t3 != UINT32_MAX)
1017 t3 -= elapsed;
1018
1019 if (t1 < 0)
1020 t1 = 0;
1021
1022 if (t2 < 0)
1023 t2 = 0;
1024
1025 if (t3 < 0)
1026 t3 = 0;
1027 }
1028
1029 if (orig == DHCPV6_MSG_REQUEST && !odhcp6c_is_bound()) {
1030 // Delete NA and PD we have in the state from the Advert
1031 odhcp6c_clear_state(STATE_IA_NA);
1032 odhcp6c_clear_state(STATE_IA_PD);
1033 }
1034
1035 if (opt) {
1036 odhcp6c_clear_state(STATE_DNS);
1037 odhcp6c_clear_state(STATE_SEARCH);
1038 odhcp6c_clear_state(STATE_SNTP_IP);
1039 odhcp6c_clear_state(STATE_NTP_IP);
1040 odhcp6c_clear_state(STATE_NTP_FQDN);
1041 odhcp6c_clear_state(STATE_SIP_IP);
1042 odhcp6c_clear_state(STATE_SIP_FQDN);
1043 odhcp6c_clear_state(STATE_AFTR_NAME);
1044 odhcp6c_clear_state(STATE_CER);
1045 odhcp6c_clear_state(STATE_S46_MAPT);
1046 odhcp6c_clear_state(STATE_S46_MAPE);
1047 odhcp6c_clear_state(STATE_S46_LW);
1048 odhcp6c_clear_state(STATE_PASSTHRU);
1049 odhcp6c_clear_state(STATE_CUSTOM_OPTS);
1050
1051 // Parse and find all matching IAs
1052 dhcpv6_for_each_option(opt, end, otype, olen, odata) {
1053 struct odhcp6c_opt *dopt = odhcp6c_find_opt(otype);
1054
1055 if ((otype == DHCPV6_OPT_IA_PD || otype == DHCPV6_OPT_IA_NA)
1056 && olen > -4 + sizeof(struct dhcpv6_ia_hdr)) {
1057 struct dhcpv6_ia_hdr *ia_hdr = (void*)(&odata[-4]);
1058
1059 if ((na_mode == IA_MODE_NONE && otype == DHCPV6_OPT_IA_NA) ||
1060 (pd_mode == IA_MODE_NONE && otype == DHCPV6_OPT_IA_PD))
1061 continue;
1062
1063 // Test ID
1064 if (ia_hdr->iaid != htonl(1) && otype == DHCPV6_OPT_IA_NA)
1065 continue;
1066
1067 uint16_t code = DHCPV6_Success;
1068 uint16_t stype, slen;
1069 uint8_t *sdata;
1070 // Get and handle status code
1071 dhcpv6_for_each_option(&ia_hdr[1], odata + olen,
1072 stype, slen, sdata) {
1073 if (stype == DHCPV6_OPT_STATUS && slen >= 2) {
1074 uint8_t *mdata = (slen > 2) ? &sdata[2] : NULL;
1075 uint16_t mlen = (slen > 2) ? slen - 2 : 0;
1076
1077 code = ((int)sdata[0]) << 8 | ((int)sdata[1]);
1078
1079 if (code == DHCPV6_Success)
1080 continue;
1081
1082 dhcpv6_handle_ia_status_code(orig, ia_hdr,
1083 code, mdata, mlen, handled_status_codes, &ret);
1084
1085 if (ret > 0)
1086 return ret;
1087
1088 break;
1089 }
1090 }
1091
1092 if (code != DHCPV6_Success)
1093 continue;
1094
1095 updated_IAs += dhcpv6_parse_ia(ia_hdr, odata + olen);
1096 } else if (otype == DHCPV6_OPT_UNICAST && olen == sizeof(server_addr)) {
1097 if (!(client_options & DHCPV6_IGNORE_OPT_UNICAST))
1098 server_addr = *(struct in6_addr *)odata;
1099
1100 }
1101 else if (otype == DHCPV6_OPT_STATUS && olen >= 2) {
1102 uint8_t *mdata = (olen > 2) ? &odata[2] : NULL;
1103 uint16_t mlen = (olen > 2) ? olen - 2 : 0;
1104 uint16_t code = ((int)odata[0]) << 8 | ((int)odata[1]);
1105
1106 dhcpv6_handle_status_code(orig, code, mdata, mlen, &ret);
1107 } else if (otype == DHCPV6_OPT_DNS_SERVERS) {
1108 if (olen % 16 == 0)
1109 odhcp6c_add_state(STATE_DNS, odata, olen);
1110 } else if (otype == DHCPV6_OPT_DNS_DOMAIN)
1111 odhcp6c_add_state(STATE_SEARCH, odata, olen);
1112 else if (otype == DHCPV6_OPT_SNTP_SERVERS) {
1113 if (olen % 16 == 0)
1114 odhcp6c_add_state(STATE_SNTP_IP, odata, olen);
1115 } else if (otype == DHCPV6_OPT_NTP_SERVER) {
1116 uint16_t stype, slen;
1117 uint8_t *sdata;
1118 // Test status and bail if error
1119 dhcpv6_for_each_option(odata, odata + olen,
1120 stype, slen, sdata) {
1121 if (slen == 16 && (stype == NTP_MC_ADDR ||
1122 stype == NTP_SRV_ADDR))
1123 odhcp6c_add_state(STATE_NTP_IP,
1124 sdata, slen);
1125 else if (slen > 0 && stype == NTP_SRV_FQDN)
1126 odhcp6c_add_state(STATE_NTP_FQDN,
1127 sdata, slen);
1128 }
1129 } else if (otype == DHCPV6_OPT_SIP_SERVER_A) {
1130 if (olen == 16)
1131 odhcp6c_add_state(STATE_SIP_IP, odata, olen);
1132 } else if (otype == DHCPV6_OPT_SIP_SERVER_D)
1133 odhcp6c_add_state(STATE_SIP_FQDN, odata, olen);
1134 else if (otype == DHCPV6_OPT_INFO_REFRESH && olen >= 4) {
1135 refresh = ntohl_unaligned(odata);
1136 } else if (otype == DHCPV6_OPT_AUTH) {
1137 if (olen == -4 + sizeof(struct dhcpv6_auth_reconfigure)) {
1138 struct dhcpv6_auth_reconfigure *r = (void*)&odata[-4];
1139 if (r->protocol == 3 && r->algorithm == 1 &&
1140 r->reconf_type == 1)
1141 memcpy(reconf_key, r->key, sizeof(r->key));
1142 }
1143 } else if (otype == DHCPV6_OPT_AFTR_NAME && olen > 3) {
1144 size_t cur_len;
1145 odhcp6c_get_state(STATE_AFTR_NAME, &cur_len);
1146 if (cur_len == 0)
1147 odhcp6c_add_state(STATE_AFTR_NAME, odata, olen);
1148 } else if (otype == DHCPV6_OPT_SOL_MAX_RT && olen == 4) {
1149 uint32_t sol_max_rt = ntohl_unaligned(odata);
1150 if (sol_max_rt >= DHCPV6_SOL_MAX_RT_MIN &&
1151 sol_max_rt <= DHCPV6_SOL_MAX_RT_MAX)
1152 dhcpv6_retx[DHCPV6_MSG_SOLICIT].max_timeo = sol_max_rt;
1153 } else if (otype == DHCPV6_OPT_INF_MAX_RT && olen == 4) {
1154 uint32_t inf_max_rt = ntohl_unaligned(odata);
1155 if (inf_max_rt >= DHCPV6_INF_MAX_RT_MIN &&
1156 inf_max_rt <= DHCPV6_INF_MAX_RT_MAX)
1157 dhcpv6_retx[DHCPV6_MSG_INFO_REQ].max_timeo = inf_max_rt;
1158 #ifdef EXT_CER_ID
1159 } else if (otype == DHCPV6_OPT_CER_ID && olen == -4 +
1160 sizeof(struct dhcpv6_cer_id)) {
1161 struct dhcpv6_cer_id *cer_id = (void*)&odata[-4];
1162 struct in6_addr any = IN6ADDR_ANY_INIT;
1163 if (memcmp(&cer_id->addr, &any, sizeof(any)))
1164 odhcp6c_add_state(STATE_CER, &cer_id->addr, sizeof(any));
1165 #endif
1166 } else if (otype == DHCPV6_OPT_S46_CONT_MAPT) {
1167 odhcp6c_add_state(STATE_S46_MAPT, odata, olen);
1168 } else if (otype == DHCPV6_OPT_S46_CONT_MAPE) {
1169 size_t mape_len;
1170 odhcp6c_get_state(STATE_S46_MAPE, &mape_len);
1171 if (mape_len == 0)
1172 odhcp6c_add_state(STATE_S46_MAPE, odata, olen);
1173 } else if (otype == DHCPV6_OPT_S46_CONT_LW) {
1174 odhcp6c_add_state(STATE_S46_LW, odata, olen);
1175 } else
1176 odhcp6c_add_state(STATE_CUSTOM_OPTS, &odata[-4], olen + 4);
1177
1178 if (!dopt || !(dopt->flags & OPT_NO_PASSTHRU))
1179 odhcp6c_add_state(STATE_PASSTHRU, &odata[-4], olen + 4);
1180 }
1181 }
1182
1183 switch (orig) {
1184 case DHCPV6_MSG_REQUEST:
1185 case DHCPV6_MSG_REBIND:
1186 case DHCPV6_MSG_RENEW:
1187 // Update refresh timers if no fatal status code was received
1188 if ((ret > 0) && (ret = dhcpv6_calc_refresh_timers())) {
1189 if (orig == DHCPV6_MSG_REQUEST) {
1190 // All server candidates can be cleared if not yet bound
1191 if (!odhcp6c_is_bound())
1192 dhcpv6_clear_all_server_cand();
1193
1194 odhcp6c_clear_state(STATE_SERVER_ADDR);
1195 odhcp6c_add_state(STATE_SERVER_ADDR, &from->sin6_addr, 16);
1196 } else if (orig == DHCPV6_MSG_RENEW) {
1197 // Send further renews if T1 is not set and
1198 // no updated IAs
1199 if (!t1) {
1200 if (!updated_IAs)
1201 ret = -1;
1202 else if ((t2 - t1) > 1)
1203 // Grace period of 1 second
1204 t1 = 1;
1205 }
1206
1207 } else if (orig == DHCPV6_MSG_REBIND) {
1208 // Send further rebinds if T1 and T2 is not set and
1209 // no updated IAs
1210 if (!t1 && !t2) {
1211 if (!updated_IAs)
1212 ret = -1;
1213 else if ((t3 - t2) > 1)
1214 // Grace period of 1 second
1215 t2 = 1;
1216 }
1217
1218 odhcp6c_clear_state(STATE_SERVER_ADDR);
1219 odhcp6c_add_state(STATE_SERVER_ADDR, &from->sin6_addr, 16);
1220 }
1221 }
1222 break;
1223
1224 case DHCPV6_MSG_INFO_REQ:
1225 if (ret > 0) {
1226 // All server candidates can be cleared if not yet bound
1227 if (!odhcp6c_is_bound())
1228 dhcpv6_clear_all_server_cand();
1229
1230 t1 = refresh;
1231 }
1232 break;
1233
1234 default:
1235 break;
1236 }
1237
1238 return ret;
1239 }
1240
1241 static unsigned int dhcpv6_parse_ia(void *opt, void *end)
1242 {
1243 struct dhcpv6_ia_hdr *ia_hdr = (struct dhcpv6_ia_hdr *)opt;
1244 unsigned int updated_IAs = 0;
1245 uint32_t t1, t2;
1246 uint16_t otype, olen;
1247 uint8_t *odata;
1248 char buf[INET6_ADDRSTRLEN];
1249
1250 t1 = ntohl(ia_hdr->t1);
1251 t2 = ntohl(ia_hdr->t2);
1252
1253 if (t1 > t2)
1254 return 0;
1255
1256 syslog(LOG_INFO, "IAID %04x T1 %d T2 %d", ia_hdr->iaid, t1, t2);
1257
1258 // Update address IA
1259 dhcpv6_for_each_option(&ia_hdr[1], end, otype, olen, odata) {
1260 struct odhcp6c_entry entry = {IN6ADDR_ANY_INIT, 0, 0,
1261 IN6ADDR_ANY_INIT, 0, 0, 0, 0, 0, 0};
1262
1263 entry.iaid = ia_hdr->iaid;
1264
1265 if (otype == DHCPV6_OPT_IA_PREFIX) {
1266 struct dhcpv6_ia_prefix *prefix = (void*)&odata[-4];
1267 if (olen + 4U < sizeof(*prefix))
1268 continue;
1269
1270 entry.valid = ntohl(prefix->valid);
1271 entry.preferred = ntohl(prefix->preferred);
1272
1273 if (entry.preferred > entry.valid)
1274 continue;
1275
1276 entry.t1 = (t1 ? t1 : (entry.preferred != UINT32_MAX ? 0.5 * entry.preferred : UINT32_MAX));
1277 entry.t2 = (t2 ? t2 : (entry.preferred != UINT32_MAX ? 0.8 * entry.preferred : UINT32_MAX));
1278 if (entry.t1 > entry.t2)
1279 entry.t1 = entry.t2;
1280
1281 entry.length = prefix->prefix;
1282 entry.target = prefix->addr;
1283 uint16_t stype, slen;
1284 uint8_t *sdata;
1285
1286 // Parse PD-exclude
1287 bool ok = true;
1288 dhcpv6_for_each_option(odata + sizeof(*prefix) - 4U,
1289 odata + olen, stype, slen, sdata) {
1290 if (stype != DHCPV6_OPT_PD_EXCLUDE || slen < 2)
1291 continue;
1292
1293 uint8_t elen = sdata[0];
1294 if (elen > 64)
1295 elen = 64;
1296
1297 if (entry.length < 32 || elen <= entry.length) {
1298 ok = false;
1299 continue;
1300 }
1301
1302 uint8_t bytes = ((elen - entry.length - 1) / 8) + 1;
1303 if (slen <= bytes) {
1304 ok = false;
1305 continue;
1306 }
1307
1308 uint32_t exclude = 0;
1309 do {
1310 exclude = exclude << 8 | sdata[bytes];
1311 } while (--bytes);
1312
1313 exclude >>= 8 - ((elen - entry.length) % 8);
1314 exclude <<= 64 - elen;
1315
1316 // Abusing router & priority fields for exclusion
1317 entry.router = entry.target;
1318 entry.router.s6_addr32[1] |= htonl(exclude);
1319 entry.priority = elen;
1320 }
1321
1322 if (ok) {
1323 if (odhcp6c_update_entry(STATE_IA_PD, &entry, 0, 0))
1324 updated_IAs++;
1325
1326 syslog(LOG_INFO, "%s/%d preferred %d valid %d",
1327 inet_ntop(AF_INET6, &entry.target, buf, sizeof(buf)),
1328 entry.length, entry.preferred , entry.valid);
1329 }
1330
1331 entry.priority = 0;
1332 memset(&entry.router, 0, sizeof(entry.router));
1333 } else if (otype == DHCPV6_OPT_IA_ADDR) {
1334 struct dhcpv6_ia_addr *addr = (void*)&odata[-4];
1335 if (olen + 4U < sizeof(*addr))
1336 continue;
1337
1338 entry.preferred = ntohl(addr->preferred);
1339 entry.valid = ntohl(addr->valid);
1340
1341 if (entry.preferred > entry.valid)
1342 continue;
1343
1344 entry.t1 = (t1 ? t1 : (entry.preferred != UINT32_MAX ? 0.5 * entry.preferred : UINT32_MAX));
1345 entry.t2 = (t2 ? t2 : (entry.preferred != UINT32_MAX ? 0.8 * entry.preferred : UINT32_MAX));
1346 if (entry.t1 > entry.t2)
1347 entry.t1 = entry.t2;
1348
1349 entry.length = 128;
1350 entry.target = addr->addr;
1351
1352 if (odhcp6c_update_entry(STATE_IA_NA, &entry, 0, 0))
1353 updated_IAs++;
1354
1355 syslog(LOG_INFO, "%s preferred %d valid %d",
1356 inet_ntop(AF_INET6, &entry.target, buf, sizeof(buf)),
1357 entry.preferred , entry.valid);
1358 }
1359 }
1360
1361 return updated_IAs;
1362 }
1363
1364 static int dhcpv6_calc_refresh_timers(void)
1365 {
1366 struct odhcp6c_entry *e;
1367 size_t ia_na_entries, ia_pd_entries, i;
1368 int64_t l_t1 = UINT32_MAX, l_t2 = UINT32_MAX, l_t3 = 0;
1369
1370 e = odhcp6c_get_state(STATE_IA_NA, &ia_na_entries);
1371 ia_na_entries /= sizeof(*e);
1372
1373 for (i = 0; i < ia_na_entries; i++) {
1374 if (e[i].t1 < l_t1)
1375 l_t1 = e[i].t1;
1376
1377 if (e[i].t2 < l_t2)
1378 l_t2 = e[i].t2;
1379
1380 if (e[i].valid > l_t3)
1381 l_t3 = e[i].valid;
1382 }
1383
1384 e = odhcp6c_get_state(STATE_IA_PD, &ia_pd_entries);
1385 ia_pd_entries /= sizeof(*e);
1386
1387 for (i = 0; i < ia_pd_entries; i++) {
1388 if (e[i].t1 < l_t1)
1389 l_t1 = e[i].t1;
1390
1391 if (e[i].t2 < l_t2)
1392 l_t2 = e[i].t2;
1393
1394 if (e[i].valid > l_t3)
1395 l_t3 = e[i].valid;
1396 }
1397
1398 if (ia_pd_entries || ia_na_entries) {
1399 t1 = l_t1;
1400 t2 = l_t2;
1401 t3 = l_t3;
1402
1403 syslog(LOG_INFO, "T1 %"PRId64"s, T2 %"PRId64"s, T3 %"PRId64"s", t1, t2, t3);
1404 }
1405
1406 return (int)(ia_pd_entries + ia_na_entries);
1407 }
1408
1409 static void dhcpv6_log_status_code(const uint16_t code, const char *scope,
1410 const void *status_msg, int len)
1411 {
1412 const char *src = status_msg;
1413 char buf[len + 3];
1414 char *dst = buf;
1415
1416 if (len) {
1417 *dst++ = '(';
1418 while (len--) {
1419 *dst = isprint((unsigned char)*src) ? *src : '?';
1420 src++;
1421 dst++;
1422 }
1423 *dst++ = ')';
1424 }
1425
1426 *dst = 0;
1427
1428 syslog(LOG_WARNING, "Server returned %s status %i %s",
1429 scope, code, buf);
1430 }
1431
1432 static void dhcpv6_handle_status_code(const enum dhcpv6_msg orig,
1433 const uint16_t code, const void *status_msg, const int len,
1434 int *ret)
1435 {
1436 dhcpv6_log_status_code(code, "message", status_msg, len);
1437
1438 switch (code) {
1439 case DHCPV6_UnspecFail:
1440 // Generic failure
1441 *ret = 0;
1442 break;
1443
1444 case DHCPV6_UseMulticast:
1445 switch(orig) {
1446 case DHCPV6_MSG_REQUEST:
1447 case DHCPV6_MSG_RENEW:
1448 case DHCPV6_MSG_RELEASE:
1449 case DHCPV6_MSG_DECLINE:
1450 // Message needs to be retransmitted according to RFC3315 chapter 18.1.8
1451 server_addr = in6addr_any;
1452 *ret = 0;
1453 break;
1454 default:
1455 break;
1456 }
1457 break;
1458
1459 case DHCPV6_NoAddrsAvail:
1460 case DHCPV6_NoPrefixAvail:
1461 if (orig == DHCPV6_MSG_REQUEST)
1462 *ret = 0; // Failure
1463 break;
1464
1465 default:
1466 break;
1467 }
1468 }
1469
1470 static void dhcpv6_handle_ia_status_code(const enum dhcpv6_msg orig,
1471 const struct dhcpv6_ia_hdr *ia_hdr, const uint16_t code,
1472 const void *status_msg, const int len,
1473 bool handled_status_codes[_DHCPV6_Status_Max], int *ret)
1474 {
1475 dhcpv6_log_status_code(code, ia_hdr->type == DHCPV6_OPT_IA_NA ?
1476 "IA_NA" : "IA_PD", status_msg, len);
1477
1478 switch (code) {
1479 case DHCPV6_NoBinding:
1480 switch (orig) {
1481 case DHCPV6_MSG_RENEW:
1482 case DHCPV6_MSG_REBIND:
1483 if ((*ret > 0) && !handled_status_codes[code])
1484 *ret = dhcpv6_request(DHCPV6_MSG_REQUEST);
1485 break;
1486
1487 default:
1488 break;
1489 }
1490 break;
1491
1492 default:
1493 *ret = 0;
1494 break;
1495 }
1496 }
1497
1498 // Note this always takes ownership of cand->ia_na and cand->ia_pd
1499 static void dhcpv6_add_server_cand(const struct dhcpv6_server_cand *cand)
1500 {
1501 size_t cand_len, i;
1502 struct dhcpv6_server_cand *c = odhcp6c_get_state(STATE_SERVER_CAND, &cand_len);
1503
1504 // Remove identical duid server candidate
1505 for (i = 0; i < cand_len / sizeof(*c); ++i) {
1506 if (cand->duid_len == c[i].duid_len &&
1507 !memcmp(cand->duid, c[i].duid, cand->duid_len)) {
1508 free(c[i].ia_na);
1509 free(c[i].ia_pd);
1510 odhcp6c_remove_state(STATE_SERVER_CAND, i * sizeof(*c), sizeof(*c));
1511 break;
1512 }
1513 }
1514
1515 for (i = 0, c = odhcp6c_get_state(STATE_SERVER_CAND, &cand_len);
1516 i < cand_len / sizeof(*c); ++i) {
1517 if (c[i].preference < cand->preference)
1518 break;
1519 }
1520
1521 if (odhcp6c_insert_state(STATE_SERVER_CAND, i * sizeof(*c), cand, sizeof(*cand))) {
1522 free(cand->ia_na);
1523 free(cand->ia_pd);
1524 }
1525 }
1526
1527 static void dhcpv6_clear_all_server_cand(void)
1528 {
1529 size_t cand_len, i;
1530 struct dhcpv6_server_cand *c = odhcp6c_get_state(STATE_SERVER_CAND, &cand_len);
1531
1532 // Server candidates need deep delete for IA_NA/IA_PD
1533 for (i = 0; i < cand_len / sizeof(*c); ++i) {
1534 free(c[i].ia_na);
1535 free(c[i].ia_pd);
1536 }
1537 odhcp6c_clear_state(STATE_SERVER_CAND);
1538 }
1539
1540 int dhcpv6_promote_server_cand(void)
1541 {
1542 size_t cand_len;
1543 struct dhcpv6_server_cand *cand = odhcp6c_get_state(STATE_SERVER_CAND, &cand_len);
1544 uint16_t hdr[2];
1545 int ret = DHCPV6_STATELESS;
1546
1547 // Clear lingering candidate state info
1548 odhcp6c_clear_state(STATE_SERVER_ID);
1549 odhcp6c_clear_state(STATE_IA_NA);
1550 odhcp6c_clear_state(STATE_IA_PD);
1551
1552 if (!cand_len)
1553 return -1;
1554
1555 if (cand->has_noaddravail && na_mode == IA_MODE_TRY) {
1556 na_mode = IA_MODE_NONE;
1557
1558 dhcpv6_retx[DHCPV6_MSG_SOLICIT].max_timeo = cand->sol_max_rt;
1559 dhcpv6_retx[DHCPV6_MSG_INFO_REQ].max_timeo = cand->inf_max_rt;
1560
1561 return dhcpv6_request(DHCPV6_MSG_SOLICIT);
1562 }
1563
1564 hdr[0] = htons(DHCPV6_OPT_SERVERID);
1565 hdr[1] = htons(cand->duid_len);
1566 odhcp6c_add_state(STATE_SERVER_ID, hdr, sizeof(hdr));
1567 odhcp6c_add_state(STATE_SERVER_ID, cand->duid, cand->duid_len);
1568 accept_reconfig = cand->wants_reconfigure;
1569
1570 if (cand->ia_na_len) {
1571 odhcp6c_add_state(STATE_IA_NA, cand->ia_na, cand->ia_na_len);
1572 free(cand->ia_na);
1573 if (na_mode != IA_MODE_NONE)
1574 ret = DHCPV6_STATEFUL;
1575 }
1576
1577 if (cand->ia_pd_len) {
1578 odhcp6c_add_state(STATE_IA_PD, cand->ia_pd, cand->ia_pd_len);
1579 free(cand->ia_pd);
1580 if (pd_mode != IA_MODE_NONE)
1581 ret = DHCPV6_STATEFUL;
1582 }
1583
1584 dhcpv6_retx[DHCPV6_MSG_SOLICIT].max_timeo = cand->sol_max_rt;
1585 dhcpv6_retx[DHCPV6_MSG_INFO_REQ].max_timeo = cand->inf_max_rt;
1586
1587 odhcp6c_remove_state(STATE_SERVER_CAND, 0, sizeof(*cand));
1588
1589 return ret;
1590 }