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