Merge pull request #19 from dedeckeh/bugfixes
[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_PREFIX_CLASS
177 htons(DHCPV6_OPT_PREFIX_CLASS),
178 #endif
179 #ifdef EXT_CER_ID
180 htons(DHCPV6_OPT_CER_ID),
181 #endif
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 memcpy(ia_pd + ia_pd_len, &p, sizeof(p));
329 ia_pd_len += sizeof(p);
330
331 if (ex_len) {
332 ia_pd[ia_pd_len++] = 0;
333 ia_pd[ia_pd_len++] = DHCPV6_OPT_PD_EXCLUDE;
334 ia_pd[ia_pd_len++] = 0;
335 ia_pd[ia_pd_len++] = ex_len - 4;
336 ia_pd[ia_pd_len++] = e[j].priority;
337
338 uint32_t excl = ntohl(e[j].router.s6_addr32[1]);
339 excl >>= (64 - e[j].priority);
340 excl <<= 8 - ((e[j].priority - e[j].length) % 8);
341
342 for (size_t i = ex_len - 5; i > 0; --i, excl >>= 8)
343 ia_pd[ia_pd_len + i] = excl & 0xff;
344 ia_pd_len += ex_len - 5;
345 }
346
347 hdr->len = htons(ntohs(hdr->len) + ntohs(p.len) + 4U);
348 }
349 }
350 }
351
352 if (ia_pd_entries > 0)
353 request_prefix = 1;
354
355 // Build IA_NAs
356 size_t ia_na_entries, ia_na_len = 0;
357 void *ia_na = NULL;
358 struct odhcp6c_entry *e = odhcp6c_get_state(STATE_IA_NA, &ia_na_entries);
359 ia_na_entries /= sizeof(*e);
360
361 struct dhcpv6_ia_hdr hdr_ia_na = {
362 htons(DHCPV6_OPT_IA_NA),
363 htons(sizeof(hdr_ia_na) - 4),
364 1, 0, 0
365 };
366
367 struct dhcpv6_ia_addr pa[ia_na_entries];
368 for (size_t i = 0; i < ia_na_entries; ++i) {
369 pa[i].type = htons(DHCPV6_OPT_IA_ADDR);
370 pa[i].len = htons(sizeof(pa[i]) - 4U);
371 pa[i].addr = e[i].target;
372 pa[i].preferred = 0;
373 pa[i].valid = 0;
374 }
375
376 ia_na = pa;
377 ia_na_len = sizeof(pa);
378 hdr_ia_na.len = htons(ntohs(hdr_ia_na.len) + ia_na_len);
379
380 // Reconfigure Accept
381 struct {
382 uint16_t type;
383 uint16_t length;
384 } reconf_accept = {htons(DHCPV6_OPT_RECONF_ACCEPT), 0};
385
386 // Request Information Refresh
387 uint16_t oro_refresh = htons(DHCPV6_OPT_INFO_REFRESH);
388
389 // Build vendor-class option
390 size_t vendor_class_len, user_class_len;
391 struct dhcpv6_vendorclass *vendor_class = odhcp6c_get_state(STATE_VENDORCLASS, &vendor_class_len);
392 void *user_class = odhcp6c_get_state(STATE_USERCLASS, &user_class_len);
393
394 struct {
395 uint16_t type;
396 uint16_t length;
397 } vendor_class_hdr = {htons(DHCPV6_OPT_VENDOR_CLASS), htons(vendor_class_len)};
398
399 struct {
400 uint16_t type;
401 uint16_t length;
402 } user_class_hdr = {htons(DHCPV6_OPT_USER_CLASS), htons(user_class_len)};
403
404 // Prepare Header
405 size_t oro_len;
406 void *oro = odhcp6c_get_state(STATE_ORO, &oro_len);
407 struct {
408 uint8_t type;
409 uint8_t trid[3];
410 uint16_t elapsed_type;
411 uint16_t elapsed_len;
412 uint16_t elapsed_value;
413 uint16_t oro_type;
414 uint16_t oro_len;
415 } hdr = {
416 type, {trid[0], trid[1], trid[2]},
417 htons(DHCPV6_OPT_ELAPSED), htons(2),
418 htons((ecs > 0xffff) ? 0xffff : ecs),
419 htons(DHCPV6_OPT_ORO), htons(oro_len),
420 };
421
422 struct iovec iov[IOV_TOTAL] = {
423 [IOV_HDR] = {&hdr, sizeof(hdr)},
424 [IOV_ORO] = {oro, oro_len},
425 [IOV_ORO_REFRESH] = {&oro_refresh, 0},
426 [IOV_CL_ID] = {cl_id, cl_id_len},
427 [IOV_SRV_ID] = {srv_id, srv_id_len},
428 [IOV_VENDOR_CLASS_HDR] = {&vendor_class_hdr, vendor_class_len ? sizeof(vendor_class_hdr) : 0},
429 [IOV_VENDOR_CLASS] = {vendor_class, vendor_class_len},
430 [IOV_USER_CLASS_HDR] = {&user_class_hdr, user_class_len ? sizeof(user_class_hdr) : 0},
431 [IOV_USER_CLASS] = {user_class, user_class_len},
432 [IOV_RECONF_ACCEPT] = {&reconf_accept, sizeof(reconf_accept)},
433 [IOV_FQDN] = {&fqdn, fqdn_len},
434 [IOV_HDR_IA_NA] = {&hdr_ia_na, sizeof(hdr_ia_na)},
435 [IOV_IA_NA] = {ia_na, ia_na_len},
436 [IOV_IA_PD] = {ia_pd, ia_pd_len},
437 };
438
439 size_t cnt = IOV_TOTAL;
440 if (type == DHCPV6_MSG_INFO_REQ) {
441 cnt = 9;
442 iov[IOV_ORO_REFRESH].iov_len = sizeof(oro_refresh);
443 hdr.oro_len = htons(oro_len + sizeof(oro_refresh));
444 } else if (!request_prefix) {
445 cnt = 13;
446 }
447
448 // Disable IAs if not used
449 if (type != DHCPV6_MSG_SOLICIT && ia_na_len == 0)
450 iov[IOV_HDR_IA_NA].iov_len = 0;
451
452 if (na_mode == IA_MODE_NONE)
453 iov[IOV_HDR_IA_NA].iov_len = 0;
454
455 if ((type != DHCPV6_MSG_SOLICIT && type != DHCPV6_MSG_REQUEST) ||
456 !(client_options & DHCPV6_ACCEPT_RECONFIGURE))
457 iov[IOV_RECONF_ACCEPT].iov_len = 0;
458
459 if (!(client_options & DHCPV6_CLIENT_FQDN))
460 iov[IOV_FQDN].iov_len = 0;
461
462 struct sockaddr_in6 srv = {AF_INET6, htons(DHCPV6_SERVER_PORT),
463 0, ALL_DHCPV6_RELAYS, ifindex};
464 struct msghdr msg = {&srv, sizeof(srv), iov, cnt, NULL, 0, 0};
465
466 sendmsg(sock, &msg, 0);
467 }
468
469
470 static int64_t dhcpv6_rand_delay(int64_t time)
471 {
472 int random;
473 odhcp6c_random(&random, sizeof(random));
474 return (time * ((int64_t)random % 1000LL)) / 10000LL;
475 }
476
477
478 int dhcpv6_request(enum dhcpv6_msg type)
479 {
480 uint8_t rc = 0;
481 uint64_t timeout = UINT32_MAX;
482 struct dhcpv6_retx *retx = &dhcpv6_retx[type];
483
484 if (retx->delay) {
485 struct timespec ts = {0, 0};
486 ts.tv_nsec = dhcpv6_rand_delay(10 * DHCPV6_REQ_DELAY);
487 nanosleep(&ts, NULL);
488 }
489
490 if (type == DHCPV6_MSG_UNKNOWN)
491 timeout = t1;
492 else if (type == DHCPV6_MSG_RENEW)
493 timeout = (t2 > t1) ? t2 - t1 : ((t1 == UINT32_MAX) ? UINT32_MAX : 0);
494 else if (type == DHCPV6_MSG_REBIND)
495 timeout = (t3 > t2) ? t3 - t2 : ((t2 == UINT32_MAX) ? UINT32_MAX : 0);
496
497 if (timeout == 0)
498 return -1;
499
500 syslog(LOG_NOTICE, "Starting %s transaction (timeout %llus, max rc %d)",
501 retx->name, (unsigned long long)timeout, retx->max_rc);
502
503 uint64_t start = odhcp6c_get_milli_time(), round_start = start, elapsed;
504
505 // Generate transaction ID
506 uint8_t trid[3] = {0, 0, 0};
507 if (type != DHCPV6_MSG_UNKNOWN)
508 odhcp6c_random(trid, sizeof(trid));
509 ssize_t len = -1;
510 int64_t rto = 0;
511
512 do {
513 if (rto == 0) {
514 int64_t delay = dhcpv6_rand_delay(retx->init_timeo * 1000);
515
516 // First RT MUST be strictly greater than IRT for solicit messages (RFC3313 17.1.2)
517 while (type == DHCPV6_MSG_SOLICIT && delay <= 0)
518 delay = dhcpv6_rand_delay(retx->init_timeo * 1000);
519
520 rto = (retx->init_timeo * 1000 + delay);
521 }
522 else
523 rto = (2 * rto + dhcpv6_rand_delay(rto));
524
525 if (retx->max_timeo && (rto >= retx->max_timeo * 1000))
526 rto = retx->max_timeo * 1000 +
527 dhcpv6_rand_delay(retx->max_timeo * 1000);
528
529 // Calculate end for this round and elapsed time
530 uint64_t round_end = round_start + rto;
531 elapsed = round_start - start;
532
533 // Don't wait too long if timeout differs from infinite
534 if ((timeout != UINT32_MAX) && (round_end - start > timeout * 1000))
535 round_end = timeout * 1000 + start;
536
537 // Built and send package
538 if (type != DHCPV6_MSG_UNKNOWN) {
539 if (type != DHCPV6_MSG_SOLICIT)
540 syslog(LOG_NOTICE, "Send %s message (elapsed %llums, rc %d)",
541 retx->name, (unsigned long long)elapsed, rc);
542 dhcpv6_send(type, trid, elapsed / 10);
543 rc++;
544 }
545
546 // Receive rounds
547 for (; len < 0 && (round_start < round_end);
548 round_start = odhcp6c_get_milli_time()) {
549 uint8_t buf[1536], cmsg_buf[CMSG_SPACE(sizeof(struct in6_pktinfo))];
550 struct iovec iov = {buf, sizeof(buf)};
551 struct msghdr msg = {NULL, 0, &iov, 1,
552 cmsg_buf, sizeof(cmsg_buf), 0};
553 struct in6_pktinfo *pktinfo = NULL;
554
555 // Check for pending signal
556 if (odhcp6c_signal_process())
557 return -1;
558
559 // Set timeout for receiving
560 uint64_t t = round_end - round_start;
561 struct timeval tv = {t / 1000, (t % 1000) * 1000};
562 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO,
563 &tv, sizeof(tv));
564
565 // Receive cycle
566 len = recvmsg(sock, &msg, 0);
567 if (len < 0)
568 continue;
569
570 for (struct cmsghdr *ch = CMSG_FIRSTHDR(&msg); ch != NULL;
571 ch = CMSG_NXTHDR(&msg, ch)) {
572 if (ch->cmsg_level == SOL_IPV6 &&
573 ch->cmsg_type == IPV6_PKTINFO) {
574 pktinfo = (struct in6_pktinfo *)CMSG_DATA(ch);
575 break;
576 }
577 }
578
579 if (pktinfo == NULL) {
580 len = -1;
581 continue;
582 }
583
584 if (!dhcpv6_response_is_valid(buf, len, trid,
585 type, &pktinfo->ipi6_addr)) {
586 len = -1;
587 continue;
588 }
589
590 uint8_t *opt = &buf[4];
591 uint8_t *opt_end = opt + len - 4;
592
593 round_start = odhcp6c_get_milli_time();
594 elapsed = round_start - start;
595 syslog(LOG_NOTICE, "Got a valid reply after "
596 "%llums", (unsigned long long)elapsed);
597
598 if (retx->handler_reply)
599 len = retx->handler_reply(type, rc, opt, opt_end);
600
601 if (len > 0 && round_end - round_start > 1000)
602 round_end = 1000 + round_start;
603 }
604
605 // Allow
606 if (retx->handler_finish)
607 len = retx->handler_finish();
608 } while (len < 0 && ((timeout == UINT32_MAX) || (elapsed / 1000 < timeout)) &&
609 (!retx->max_rc || rc < retx->max_rc));
610 return len;
611 }
612
613 // Message validation checks according to RFC3315 chapter 15
614 static bool dhcpv6_response_is_valid(const void *buf, ssize_t len,
615 const uint8_t transaction[3], enum dhcpv6_msg type,
616 const struct in6_addr *daddr)
617 {
618 const struct dhcpv6_header *rep = buf;
619 if (len < (ssize_t)sizeof(*rep) || memcmp(rep->tr_id,
620 transaction, sizeof(rep->tr_id)))
621 return false; // Invalid reply
622
623 if (type == DHCPV6_MSG_SOLICIT) {
624 if (rep->msg_type != DHCPV6_MSG_ADVERT &&
625 rep->msg_type != DHCPV6_MSG_REPLY)
626 return false;
627 } else if (type == DHCPV6_MSG_UNKNOWN) {
628 if (!accept_reconfig || rep->msg_type != DHCPV6_MSG_RECONF)
629 return false;
630 } else if (rep->msg_type != DHCPV6_MSG_REPLY) {
631 return false;
632 }
633
634 uint8_t *end = ((uint8_t*)buf) + len, *odata = NULL,
635 rcmsg = DHCPV6_MSG_UNKNOWN;
636 uint16_t otype, olen = UINT16_MAX;
637 bool clientid_ok = false, serverid_ok = false, rcauth_ok = false,
638 ia_present = false, options_valid = true;
639
640 size_t client_id_len, server_id_len;
641 void *client_id = odhcp6c_get_state(STATE_CLIENT_ID, &client_id_len);
642 void *server_id = odhcp6c_get_state(STATE_SERVER_ID, &server_id_len);
643
644 dhcpv6_for_each_option(&rep[1], end, otype, olen, odata) {
645 if (otype == DHCPV6_OPT_CLIENTID) {
646 clientid_ok = (olen + 4U == client_id_len) && !memcmp(
647 &odata[-4], client_id, client_id_len);
648 } else if (otype == DHCPV6_OPT_SERVERID) {
649 if (server_id_len)
650 serverid_ok = (olen + 4U == server_id_len) && !memcmp(
651 &odata[-4], server_id, server_id_len);
652 else
653 serverid_ok = true;
654 } else if (otype == DHCPV6_OPT_AUTH && olen == -4 +
655 sizeof(struct dhcpv6_auth_reconfigure)) {
656 struct dhcpv6_auth_reconfigure *r = (void*)&odata[-4];
657 if (r->protocol != 3 || r->algorithm != 1 || r->reconf_type != 2)
658 continue;
659
660 md5_ctx_t md5;
661 uint8_t serverhash[16], secretbytes[64], hash[16];
662 memcpy(serverhash, r->key, sizeof(serverhash));
663 memset(r->key, 0, sizeof(r->key));
664
665 memset(secretbytes, 0, sizeof(secretbytes));
666 memcpy(secretbytes, reconf_key, sizeof(reconf_key));
667
668 for (size_t i = 0; i < sizeof(secretbytes); ++i)
669 secretbytes[i] ^= 0x36;
670
671 md5_begin(&md5);
672 md5_hash(secretbytes, sizeof(secretbytes), &md5);
673 md5_hash(buf, len, &md5);
674 md5_end(hash, &md5);
675
676 for (size_t i = 0; i < sizeof(secretbytes); ++i) {
677 secretbytes[i] ^= 0x36;
678 secretbytes[i] ^= 0x5c;
679 }
680
681 md5_begin(&md5);
682 md5_hash(secretbytes, sizeof(secretbytes), &md5);
683 md5_hash(hash, 16, &md5);
684 md5_end(hash, &md5);
685
686 rcauth_ok = !memcmp(hash, serverhash, sizeof(hash));
687 } else if (otype == DHCPV6_OPT_RECONF_MESSAGE && olen == 1) {
688 rcmsg = odata[0];
689 } else if ((otype == DHCPV6_OPT_IA_PD || otype == DHCPV6_OPT_IA_NA)) {
690 ia_present = true;
691 if (olen < sizeof(struct dhcpv6_ia_hdr))
692 options_valid = false;
693 }
694 else if ((otype == DHCPV6_OPT_IA_ADDR) || (otype == DHCPV6_OPT_IA_PREFIX) ||
695 (otype == DHCPV6_OPT_PD_EXCLUDE)) {
696 // Options are not allowed on global level
697 options_valid = false;
698 }
699 }
700
701 if (!options_valid || ((odata + olen) > end))
702 return false;
703
704 if (type == DHCPV6_MSG_INFO_REQ && ia_present)
705 return false;
706
707 if (rep->msg_type == DHCPV6_MSG_RECONF) {
708 if ((rcmsg != DHCPV6_MSG_RENEW && rcmsg != DHCPV6_MSG_INFO_REQ) ||
709 (rcmsg == DHCPV6_MSG_INFO_REQ && ia_present) ||
710 !rcauth_ok || IN6_IS_ADDR_MULTICAST(daddr))
711 return false;
712 }
713
714 return clientid_ok && serverid_ok;
715 }
716
717
718 int dhcpv6_poll_reconfigure(void)
719 {
720 int ret = dhcpv6_request(DHCPV6_MSG_UNKNOWN);
721 if (ret != -1)
722 ret = dhcpv6_request(ret);
723
724 return ret;
725 }
726
727
728 static int dhcpv6_handle_reconfigure(_unused enum dhcpv6_msg orig, const int rc,
729 const void *opt, const void *end)
730 {
731 uint16_t otype, olen;
732 uint8_t *odata, msg = DHCPV6_MSG_RENEW;
733 dhcpv6_for_each_option(opt, end, otype, olen, odata)
734 if (otype == DHCPV6_OPT_RECONF_MESSAGE && olen == 1 && (
735 odata[0] == DHCPV6_MSG_RENEW ||
736 odata[0] == DHCPV6_MSG_INFO_REQ))
737 msg = odata[0];
738
739 dhcpv6_handle_reply(DHCPV6_MSG_UNKNOWN, rc, NULL, NULL);
740 return msg;
741 }
742
743
744 // Collect all advertised servers
745 static int dhcpv6_handle_advert(enum dhcpv6_msg orig, const int rc,
746 const void *opt, const void *end)
747 {
748 uint16_t olen, otype;
749 uint8_t *odata, pref = 0;
750 struct dhcpv6_server_cand cand = {false, false, 0, 0, {0},
751 DHCPV6_SOL_MAX_RT,
752 DHCPV6_INF_MAX_RT, NULL, NULL, 0, 0};
753 bool have_na = false;
754 int have_pd = 0;
755
756 dhcpv6_for_each_option(opt, end, otype, olen, odata) {
757 if (orig == DHCPV6_MSG_SOLICIT &&
758 (otype == DHCPV6_OPT_IA_PD || otype == DHCPV6_OPT_IA_NA) &&
759 olen > sizeof(struct dhcpv6_ia_hdr)) {
760 struct dhcpv6_ia_hdr *ia_hdr = (void*)(&odata[-4]);
761 dhcpv6_parse_ia(ia_hdr, odata + olen + sizeof(*ia_hdr));
762 }
763
764 if (otype == DHCPV6_OPT_SERVERID && olen <= 130) {
765 memcpy(cand.duid, odata, olen);
766 cand.duid_len = olen;
767 } else if (otype == DHCPV6_OPT_STATUS && olen >= 2) {
768 int error = ((int)odata[0] << 8 | (int)odata[1]);
769
770 switch (error) {
771 case DHCPV6_NoPrefixAvail:
772 // Status code on global level
773 cand.preference -= 2000;
774 break;
775
776 default :
777 break;
778 }
779 } else if (otype == DHCPV6_OPT_PREF && olen >= 1 &&
780 cand.preference >= 0) {
781 cand.preference = pref = odata[0];
782 } else if (otype == DHCPV6_OPT_RECONF_ACCEPT) {
783 cand.wants_reconfigure = true;
784 } else if (otype == DHCPV6_OPT_SOL_MAX_RT && olen == 4) {
785 uint32_t sol_max_rt = ntohl(*((uint32_t *)odata));
786 if (sol_max_rt >= DHCPV6_SOL_MAX_RT_MIN &&
787 sol_max_rt <= DHCPV6_SOL_MAX_RT_MAX)
788 cand.sol_max_rt = sol_max_rt;
789 } else if (otype == DHCPV6_OPT_INF_MAX_RT && olen == 4) {
790 uint32_t inf_max_rt = ntohl(*((uint32_t *)odata));
791 if (inf_max_rt >= DHCPV6_INF_MAX_RT_MIN &&
792 inf_max_rt <= DHCPV6_INF_MAX_RT_MAX)
793 cand.inf_max_rt = inf_max_rt;
794 } else if (otype == DHCPV6_OPT_IA_PD && request_prefix) {
795 struct dhcpv6_ia_hdr *h = (struct dhcpv6_ia_hdr*)&odata[-4];
796 uint8_t *oend = odata + olen, *d;
797 dhcpv6_for_each_option(&h[1], oend, otype, olen, d) {
798 if (otype == DHCPV6_OPT_IA_PREFIX && (olen + 4) >=
799 (uint16_t)sizeof(struct dhcpv6_ia_prefix)) {
800 struct dhcpv6_ia_prefix *p = (struct dhcpv6_ia_prefix*)&d[-4];
801 have_pd = p->prefix;
802 }
803 }
804 } else if (otype == DHCPV6_OPT_IA_NA) {
805 struct dhcpv6_ia_hdr *h = (struct dhcpv6_ia_hdr*)&odata[-4];
806 uint8_t *oend = odata + olen, *d;
807 dhcpv6_for_each_option(&h[1], oend, otype, olen, d)
808 if (otype == DHCPV6_OPT_IA_ADDR)
809 have_na = true;
810 }
811 }
812
813 if ((!have_na && na_mode == IA_MODE_FORCE) ||
814 (!have_pd && pd_mode == IA_MODE_FORCE)) {
815 /*
816 * RFC7083 states to process the SOL_MAX_RT and
817 * INF_MAX_RT options even if the DHCPv6 server
818 * did not propose any IA_NA and/or IA_PD
819 */
820 dhcpv6_retx[DHCPV6_MSG_SOLICIT].max_timeo = cand.sol_max_rt;
821 dhcpv6_retx[DHCPV6_MSG_INFO_REQ].max_timeo = cand.inf_max_rt;
822 return -1;
823 }
824
825 if (na_mode != IA_MODE_NONE && !have_na) {
826 cand.has_noaddravail = true;
827 cand.preference -= 1000;
828 }
829
830 if (pd_mode != IA_MODE_NONE) {
831 if (have_pd)
832 cand.preference += 2000 + (128 - have_pd);
833 else
834 cand.preference -= 2000;
835 }
836
837 if (cand.duid_len > 0) {
838 cand.ia_na = odhcp6c_move_state(STATE_IA_NA, &cand.ia_na_len);
839 cand.ia_pd = odhcp6c_move_state(STATE_IA_PD, &cand.ia_pd_len);
840 dhcpv6_add_server_cand(&cand);
841 }
842
843 return (rc > 1 || (pref == 255 && cand.preference > 0)) ? 1 : -1;
844 }
845
846
847 static int dhcpv6_commit_advert(void)
848 {
849 return dhcpv6_promote_server_cand();
850 }
851
852
853 static int dhcpv6_handle_rebind_reply(enum dhcpv6_msg orig, const int rc,
854 const void *opt, const void *end)
855 {
856 dhcpv6_handle_advert(orig, rc, opt, end);
857 if (dhcpv6_commit_advert() < 0)
858 return -1;
859
860 return dhcpv6_handle_reply(orig, rc, opt, end);
861 }
862
863
864 static int dhcpv6_handle_reply(enum dhcpv6_msg orig, _unused const int rc,
865 const void *opt, const void *end)
866 {
867 uint8_t *odata;
868 uint16_t otype, olen;
869 uint32_t refresh = UINT32_MAX;
870 int ret = 1;
871 bool handled_status_codes[_DHCPV6_Status_Max] = { false, };
872
873 odhcp6c_expire();
874
875 if (orig == DHCPV6_MSG_UNKNOWN) {
876 static time_t last_update = 0;
877 time_t now = odhcp6c_get_milli_time() / 1000;
878
879 uint32_t elapsed = (last_update > 0) ? now - last_update : 0;
880 last_update = now;
881
882 if (t1 != UINT32_MAX)
883 t1 -= elapsed;
884
885 if (t2 != UINT32_MAX)
886 t2 -= elapsed;
887
888 if (t3 != UINT32_MAX)
889 t3 -= elapsed;
890
891 if (t1 < 0)
892 t1 = 0;
893
894 if (t2 < 0)
895 t2 = 0;
896
897 if (t3 < 0)
898 t3 = 0;
899 }
900
901 if (orig == DHCPV6_MSG_REQUEST && !odhcp6c_is_bound()) {
902 // Delete NA and PD we have in the state from the Advert
903 odhcp6c_clear_state(STATE_IA_NA);
904 odhcp6c_clear_state(STATE_IA_PD);
905 }
906
907 if (opt) {
908 odhcp6c_clear_state(STATE_DNS);
909 odhcp6c_clear_state(STATE_SEARCH);
910 odhcp6c_clear_state(STATE_SNTP_IP);
911 odhcp6c_clear_state(STATE_NTP_IP);
912 odhcp6c_clear_state(STATE_NTP_FQDN);
913 odhcp6c_clear_state(STATE_SIP_IP);
914 odhcp6c_clear_state(STATE_SIP_FQDN);
915 odhcp6c_clear_state(STATE_AFTR_NAME);
916 odhcp6c_clear_state(STATE_CER);
917 }
918
919 // Parse and find all matching IAs
920 dhcpv6_for_each_option(opt, end, otype, olen, odata) {
921 if ((otype == DHCPV6_OPT_IA_PD || otype == DHCPV6_OPT_IA_NA)
922 && olen > sizeof(struct dhcpv6_ia_hdr)) {
923 struct dhcpv6_ia_hdr *ia_hdr = (void*)(&odata[-4]);
924
925 // Test ID
926 if (ia_hdr->iaid != 1 && otype == DHCPV6_OPT_IA_NA)
927 continue;
928
929 uint16_t code = DHCPV6_Success;
930 uint16_t stype, slen;
931 uint8_t *sdata;
932 // Get and handle status code
933 dhcpv6_for_each_option(&ia_hdr[1], odata + olen,
934 stype, slen, sdata) {
935 if (stype == DHCPV6_OPT_STATUS && slen >= 2) {
936 uint8_t *mdata = (slen > 2) ? &sdata[2] : NULL;
937 uint16_t mlen = (slen > 2) ? slen - 2 : 0;
938
939 code = ((int)sdata[0]) << 8 | ((int)sdata[1]);
940
941 if (code == DHCPV6_Success)
942 continue;
943
944 dhcpv6_handle_ia_status_code(orig, ia_hdr,
945 code, mdata, mlen, handled_status_codes, &ret);
946
947
948 if (ret > 0)
949 return ret;
950 break;
951 }
952 }
953
954 if (code != DHCPV6_Success)
955 continue;
956
957 dhcpv6_parse_ia(ia_hdr, odata + olen + sizeof(*ia_hdr));
958 } else if (otype == DHCPV6_OPT_STATUS && olen >= 2) {
959 uint8_t *mdata = (olen > 2) ? &odata[2] : NULL;
960 uint16_t mlen = (olen > 2) ? olen - 2 : 0;
961 uint16_t code = ((int)odata[0]) << 8 | ((int)odata[1]);
962
963 dhcpv6_handle_status_code(orig, code, mdata, mlen, &ret);
964 }
965 else if (otype == DHCPV6_OPT_DNS_SERVERS) {
966 if (olen % 16 == 0)
967 odhcp6c_add_state(STATE_DNS, odata, olen);
968 } else if (otype == DHCPV6_OPT_DNS_DOMAIN) {
969 odhcp6c_add_state(STATE_SEARCH, odata, olen);
970 } else if (otype == DHCPV6_OPT_SNTP_SERVERS) {
971 if (olen % 16 == 0)
972 odhcp6c_add_state(STATE_SNTP_IP, odata, olen);
973 } else if (otype == DHCPV6_OPT_NTP_SERVER) {
974 uint16_t stype, slen;
975 uint8_t *sdata;
976 // Test status and bail if error
977 dhcpv6_for_each_option(odata, odata + olen,
978 stype, slen, sdata) {
979 if (slen == 16 && (stype == NTP_MC_ADDR ||
980 stype == NTP_SRV_ADDR))
981 odhcp6c_add_state(STATE_NTP_IP,
982 sdata, slen);
983 else if (slen > 0 && stype == NTP_SRV_FQDN)
984 odhcp6c_add_state(STATE_NTP_FQDN,
985 sdata, slen);
986 }
987 } else if (otype == DHCPV6_OPT_SIP_SERVER_A) {
988 if (olen == 16)
989 odhcp6c_add_state(STATE_SIP_IP, odata, olen);
990 } else if (otype == DHCPV6_OPT_SIP_SERVER_D) {
991 odhcp6c_add_state(STATE_SIP_FQDN, odata, olen);
992 } else if (otype == DHCPV6_OPT_INFO_REFRESH && olen >= 4) {
993 refresh = ntohl(*((uint32_t*)odata));
994 } else if (otype == DHCPV6_OPT_AUTH && olen == -4 +
995 sizeof(struct dhcpv6_auth_reconfigure)) {
996 struct dhcpv6_auth_reconfigure *r = (void*)&odata[-4];
997 if (r->protocol == 3 && r->algorithm == 1 &&
998 r->reconf_type == 1)
999 memcpy(reconf_key, r->key, sizeof(r->key));
1000 } else if (otype == DHCPV6_OPT_AFTR_NAME && olen > 3) {
1001 size_t cur_len;
1002 odhcp6c_get_state(STATE_AFTR_NAME, &cur_len);
1003 if (cur_len == 0)
1004 odhcp6c_add_state(STATE_AFTR_NAME, odata, olen);
1005 } else if (otype == DHCPV6_OPT_SOL_MAX_RT && olen == 4) {
1006 uint32_t sol_max_rt = ntohl(*((uint32_t *)odata));
1007 if (sol_max_rt >= DHCPV6_SOL_MAX_RT_MIN &&
1008 sol_max_rt <= DHCPV6_SOL_MAX_RT_MAX)
1009 dhcpv6_retx[DHCPV6_MSG_SOLICIT].max_timeo = sol_max_rt;
1010 } else if (otype == DHCPV6_OPT_INF_MAX_RT && olen == 4) {
1011 uint32_t inf_max_rt = ntohl(*((uint32_t *)odata));
1012 if (inf_max_rt >= DHCPV6_INF_MAX_RT_MIN &&
1013 inf_max_rt <= DHCPV6_INF_MAX_RT_MAX)
1014 dhcpv6_retx[DHCPV6_MSG_INFO_REQ].max_timeo = inf_max_rt;
1015 #ifdef EXT_CER_ID
1016 } else if (otype == DHCPV6_OPT_CER_ID && olen == -4 +
1017 sizeof(struct dhcpv6_cer_id)) {
1018 struct dhcpv6_cer_id *cer_id = (void*)&odata[-4];
1019 struct in6_addr any = IN6ADDR_ANY_INIT;
1020 if (memcmp(&cer_id->addr, &any, sizeof(any)))
1021 odhcp6c_add_state(STATE_CER, &cer_id->addr, sizeof(any));
1022 #endif
1023 } else if (otype != DHCPV6_OPT_CLIENTID &&
1024 otype != DHCPV6_OPT_SERVERID) {
1025 odhcp6c_add_state(STATE_CUSTOM_OPTS,
1026 &odata[-4], olen + 4);
1027 }
1028 }
1029
1030 if (orig != DHCPV6_MSG_INFO_REQ) {
1031 // Update refresh timers if no fatal status code was received
1032 if ((ret > 0) && dhcpv6_calc_refresh_timers()) {
1033 switch (orig) {
1034 case DHCPV6_MSG_RENEW:
1035 // Send further renews if T1 is not set
1036 if (!t1)
1037 ret = -1;
1038 break;
1039 case DHCPV6_MSG_REBIND:
1040 // Send further rebinds if T1 and T2 is not set
1041 if (!t1 && !t2)
1042 ret = -1;
1043 break;
1044
1045 case DHCPV6_MSG_REQUEST:
1046 // All server candidates can be cleared if not yet bound
1047 if (!odhcp6c_is_bound())
1048 dhcpv6_clear_all_server_cand();
1049
1050 default :
1051 break;
1052 }
1053 }
1054 }
1055 else if (ret > 0) {
1056 // All server candidates can be cleared if not yet bound
1057 if (!odhcp6c_is_bound())
1058 dhcpv6_clear_all_server_cand();
1059
1060 t1 = refresh;
1061 }
1062
1063 return ret;
1064 }
1065
1066
1067 static int dhcpv6_parse_ia(void *opt, void *end)
1068 {
1069 struct dhcpv6_ia_hdr *ia_hdr = (struct dhcpv6_ia_hdr *)opt;
1070 int parsed_ia = 0;
1071 uint32_t t1, t2;
1072 uint16_t otype, olen;
1073 uint8_t *odata;
1074
1075 t1 = ntohl(ia_hdr->t1);
1076 t2 = ntohl(ia_hdr->t2);
1077
1078 if (t1 > t2)
1079 return 0;
1080
1081 // Update address IA
1082 dhcpv6_for_each_option(&ia_hdr[1], end, otype, olen, odata) {
1083 struct odhcp6c_entry entry = {IN6ADDR_ANY_INIT, 0, 0,
1084 IN6ADDR_ANY_INIT, 0, 0, 0, 0, 0, 0};
1085
1086 entry.iaid = ia_hdr->iaid;
1087
1088 if (otype == DHCPV6_OPT_IA_PREFIX) {
1089 struct dhcpv6_ia_prefix *prefix = (void*)&odata[-4];
1090 if (olen + 4U < sizeof(*prefix))
1091 continue;
1092
1093 entry.valid = ntohl(prefix->valid);
1094 entry.preferred = ntohl(prefix->preferred);
1095
1096 if (entry.preferred > entry.valid)
1097 continue;
1098
1099 entry.t1 = (t1 ? t1 : (entry.preferred != UINT32_MAX ? 0.5 * entry.preferred : UINT32_MAX));
1100 entry.t2 = (t2 ? t2 : (entry.preferred != UINT32_MAX ? 0.8 * entry.preferred : UINT32_MAX));
1101 if (entry.t1 > entry.t2)
1102 entry.t1 = entry.t2;
1103
1104 entry.length = prefix->prefix;
1105 entry.target = prefix->addr;
1106 uint16_t stype, slen;
1107 uint8_t *sdata;
1108
1109 #ifdef EXT_PREFIX_CLASS
1110 // Find prefix class, if any
1111 dhcpv6_for_each_option(&prefix[1], odata + olen,
1112 stype, slen, sdata)
1113 if (stype == DHCPV6_OPT_PREFIX_CLASS && slen == 2)
1114 entry.class = sdata[0] << 8 | sdata[1];
1115 #endif
1116
1117 // Parse PD-exclude
1118 bool ok = true;
1119 dhcpv6_for_each_option(odata + sizeof(*prefix) - 4U,
1120 odata + olen, stype, slen, sdata) {
1121 if (stype != DHCPV6_OPT_PD_EXCLUDE || slen < 2)
1122 continue;
1123
1124 uint8_t elen = sdata[0];
1125 if (elen > 64)
1126 elen = 64;
1127
1128 if (elen <= 32 || elen <= entry.length) {
1129 ok = false;
1130 continue;
1131 }
1132
1133
1134 uint8_t bytes = ((elen - entry.length - 1) / 8) + 1;
1135 if (slen <= bytes) {
1136 ok = false;
1137 continue;
1138 }
1139
1140 uint32_t exclude = 0;
1141 do {
1142 exclude = exclude << 8 | sdata[bytes];
1143 } while (--bytes);
1144
1145 exclude >>= 8 - ((elen - entry.length) % 8);
1146 exclude <<= 64 - elen;
1147
1148 // Abusing router & priority fields for exclusion
1149 entry.router = entry.target;
1150 entry.router.s6_addr32[1] |= htonl(exclude);
1151 entry.priority = elen;
1152 }
1153
1154 if (ok) {
1155 odhcp6c_update_entry(STATE_IA_PD, &entry);
1156 parsed_ia++;
1157 }
1158
1159 entry.priority = 0;
1160 memset(&entry.router, 0, sizeof(entry.router));
1161 } else if (otype == DHCPV6_OPT_IA_ADDR) {
1162 struct dhcpv6_ia_addr *addr = (void*)&odata[-4];
1163 if (olen + 4U < sizeof(*addr))
1164 continue;
1165
1166 entry.preferred = ntohl(addr->preferred);
1167 entry.valid = ntohl(addr->valid);
1168
1169 if (entry.preferred > entry.valid)
1170 continue;
1171
1172 entry.t1 = (t1 ? t1 : (entry.preferred != UINT32_MAX ? 0.5 * entry.preferred : UINT32_MAX));
1173 entry.t2 = (t2 ? t2 : (entry.preferred != UINT32_MAX ? 0.8 * entry.preferred : UINT32_MAX));
1174 if (entry.t1 > entry.t2)
1175 entry.t1 = entry.t2;
1176
1177 entry.length = 128;
1178 entry.target = addr->addr;
1179
1180 #ifdef EXT_PREFIX_CLASS
1181 uint16_t stype, slen;
1182 uint8_t *sdata;
1183 // Find prefix class, if any
1184 dhcpv6_for_each_option(&addr[1], odata + olen,
1185 stype, slen, sdata)
1186 if (stype == DHCPV6_OPT_PREFIX_CLASS && slen == 2)
1187 entry.class = sdata[0] << 8 | sdata[1];
1188 #endif
1189
1190 odhcp6c_update_entry(STATE_IA_NA, &entry);
1191 parsed_ia++;
1192 }
1193 }
1194 return parsed_ia;
1195 }
1196
1197
1198 static int dhcpv6_calc_refresh_timers(void)
1199 {
1200 struct odhcp6c_entry *e;
1201 size_t ia_na_entries, ia_pd_entries, i;
1202 int64_t l_t1 = UINT32_MAX, l_t2 = UINT32_MAX, l_t3 = 0;
1203
1204 e = odhcp6c_get_state(STATE_IA_NA, &ia_na_entries);
1205 ia_na_entries /= sizeof(*e);
1206 for (i = 0; i < ia_na_entries; i++) {
1207 if (e[i].t1 < l_t1)
1208 l_t1 = e[i].t1;
1209
1210 if (e[i].t2 < l_t2)
1211 l_t2 = e[i].t2;
1212
1213 if (e[i].valid > l_t3)
1214 l_t3 = e[i].valid;
1215 }
1216
1217 e = odhcp6c_get_state(STATE_IA_PD, &ia_pd_entries);
1218 ia_pd_entries /= sizeof(*e);
1219 for (i = 0; i < ia_pd_entries; i++) {
1220 if (e[i].t1 < l_t1)
1221 l_t1 = e[i].t1;
1222
1223 if (e[i].t2 < l_t2)
1224 l_t2 = e[i].t2;
1225
1226 if (e[i].valid > l_t3)
1227 l_t3 = e[i].valid;
1228 }
1229
1230 if (ia_pd_entries || ia_na_entries) {
1231 t1 = l_t1;
1232 t2 = l_t2;
1233 t3 = l_t3;
1234 } else {
1235 t1 = 600;
1236 }
1237
1238 return (int)(ia_pd_entries + ia_na_entries);
1239 }
1240
1241
1242 static void dhcpv6_log_status_code(const uint16_t code, const char *scope,
1243 const void *status_msg, const int len)
1244 {
1245 uint8_t buf[len + 3];
1246
1247 memset(buf, 0, sizeof(buf));
1248 if (len) {
1249 buf[0] = '(';
1250 memcpy(&buf[1], status_msg, len);
1251 buf[len + 1] = ')';
1252 }
1253
1254 syslog(LOG_WARNING, "Server returned %s status %i %s",
1255 scope, code, buf);
1256 }
1257
1258
1259 static void dhcpv6_handle_status_code(const enum dhcpv6_msg orig,
1260 const uint16_t code, const void *status_msg, const int len,
1261 int *ret)
1262 {
1263 dhcpv6_log_status_code(code, "message", status_msg, len);
1264
1265 switch (code) {
1266 case DHCPV6_UnspecFail:
1267 // Generic failure
1268 *ret = 0;
1269 break;
1270
1271 case DHCPV6_UseMulticast:
1272 // TODO handle multicast status code
1273 break;
1274
1275 case DHCPV6_NoAddrsAvail:
1276 case DHCPV6_NoPrefixAvail:
1277 if (orig == DHCPV6_MSG_REQUEST)
1278 *ret = 0; // Failure
1279 break;
1280
1281 default:
1282 break;
1283 }
1284 }
1285
1286
1287 static void dhcpv6_handle_ia_status_code(const enum dhcpv6_msg orig,
1288 const struct dhcpv6_ia_hdr *ia_hdr, const uint16_t code,
1289 const void *status_msg, const int len,
1290 bool handled_status_codes[_DHCPV6_Status_Max], int *ret)
1291 {
1292 dhcpv6_log_status_code(code, ia_hdr->type == DHCPV6_OPT_IA_NA ?
1293 "IA_NA" : "IA_PD", status_msg, len);
1294
1295 switch (code) {
1296 case DHCPV6_NoBinding:
1297 switch (orig) {
1298 case DHCPV6_MSG_RENEW:
1299 case DHCPV6_MSG_REBIND:
1300 if ((*ret > 0) && !handled_status_codes[code])
1301 *ret = dhcpv6_request(DHCPV6_MSG_REQUEST);
1302 break;
1303
1304 default:
1305 break;
1306 }
1307 break;
1308
1309 case DHCPV6_NoAddrsAvail:
1310 case DHCPV6_NoPrefixAvail:
1311 switch (orig) {
1312 case DHCPV6_MSG_REQUEST:
1313 if (*ret != 0)
1314 *ret = 0;
1315 break;
1316 default:
1317 break;
1318 }
1319 break;
1320
1321 case DHCPV6_NotOnLink:
1322 // TODO handle not onlink in case of confirm
1323 break;
1324
1325 default:
1326 break;
1327 }
1328 }
1329
1330 static void dhcpv6_add_server_cand(const struct dhcpv6_server_cand *cand)
1331 {
1332 size_t cand_len, i;
1333 struct dhcpv6_server_cand *c = odhcp6c_get_state(STATE_SERVER_CAND, &cand_len);
1334
1335 // Remove identical duid server candidate
1336 for (i = 0; i < cand_len / sizeof(*c); ++i) {
1337 if (cand->duid_len == c[i].duid_len &&
1338 !memcmp(cand->duid, c[i].duid, cand->duid_len)) {
1339 free(c[i].ia_na);
1340 free(c[i].ia_pd);
1341 odhcp6c_remove_state(STATE_SERVER_CAND, i * sizeof(*c), sizeof(*c));
1342 break;
1343 }
1344 }
1345
1346 for (i = 0, c = odhcp6c_get_state(STATE_SERVER_CAND, &cand_len);
1347 i < cand_len / sizeof(*c); ++i) {
1348 if (c[i].preference < cand->preference)
1349 break;
1350 }
1351
1352 odhcp6c_insert_state(STATE_SERVER_CAND, i * sizeof(*c), cand, sizeof(*cand));
1353 }
1354
1355 static void dhcpv6_clear_all_server_cand(void)
1356 {
1357 size_t cand_len, i;
1358 struct dhcpv6_server_cand *c = odhcp6c_get_state(STATE_SERVER_CAND, &cand_len);
1359
1360 // Server candidates need deep delete for IA_NA/IA_PD
1361 for (i = 0; i < cand_len / sizeof(*c); ++i) {
1362 free(c[i].ia_na);
1363 free(c[i].ia_pd);
1364 }
1365 odhcp6c_clear_state(STATE_SERVER_CAND);
1366 }
1367
1368 int dhcpv6_promote_server_cand(void)
1369 {
1370 size_t cand_len;
1371 struct dhcpv6_server_cand *cand = odhcp6c_get_state(STATE_SERVER_CAND, &cand_len);
1372 uint16_t hdr[2];
1373 int ret = (na_mode == IA_MODE_NONE && pd_mode == IA_MODE_NONE) ?
1374 DHCPV6_STATELESS : DHCPV6_STATEFUL;
1375
1376 // Clear lingering candidate state info
1377 odhcp6c_clear_state(STATE_SERVER_ID);
1378 odhcp6c_clear_state(STATE_IA_NA);
1379 odhcp6c_clear_state(STATE_IA_PD);
1380
1381 if (!cand_len)
1382 return -1;
1383
1384 if (cand->has_noaddravail && na_mode == IA_MODE_TRY) {
1385 na_mode = IA_MODE_NONE;
1386
1387 dhcpv6_retx[DHCPV6_MSG_SOLICIT].max_timeo = cand->sol_max_rt;
1388 dhcpv6_retx[DHCPV6_MSG_INFO_REQ].max_timeo = cand->inf_max_rt;
1389
1390 return dhcpv6_request(DHCPV6_MSG_SOLICIT);
1391 }
1392
1393 hdr[0] = htons(DHCPV6_OPT_SERVERID);
1394 hdr[1] = htons(cand->duid_len);
1395 odhcp6c_add_state(STATE_SERVER_ID, hdr, sizeof(hdr));
1396 odhcp6c_add_state(STATE_SERVER_ID, cand->duid, cand->duid_len);
1397 accept_reconfig = cand->wants_reconfigure;
1398 if (cand->ia_na_len) {
1399 odhcp6c_add_state(STATE_IA_NA, cand->ia_na, cand->ia_na_len);
1400 free(cand->ia_na);
1401 if (na_mode != IA_MODE_NONE)
1402 ret = DHCPV6_STATEFUL;
1403 }
1404 if (cand->ia_pd_len) {
1405 odhcp6c_add_state(STATE_IA_PD, cand->ia_pd, cand->ia_pd_len);
1406 free(cand->ia_pd);
1407 if (request_prefix)
1408 ret = DHCPV6_STATEFUL;
1409 }
1410
1411 dhcpv6_retx[DHCPV6_MSG_SOLICIT].max_timeo = cand->sol_max_rt;
1412 dhcpv6_retx[DHCPV6_MSG_INFO_REQ].max_timeo = cand->inf_max_rt;
1413
1414 odhcp6c_remove_state(STATE_SERVER_CAND, 0, sizeof(*cand));
1415
1416 return ret;
1417 }