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