dhcpv6-ia: fix logic to include IA_PD prefix with lifetimes set to 0
[project/odhcpd.git] / src / dhcpv6-ia.c
1 /**
2 * Copyright (C) 2013 Steven Barth <steven@midlink.org>
3 * Copyright (C) 2016 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 "odhcpd.h"
17 #include "dhcpv6.h"
18 #include "dhcpv4.h"
19
20 #include <time.h>
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <stdio.h>
24 #include <poll.h>
25 #include <alloca.h>
26 #include <resolv.h>
27 #include <limits.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <unistd.h>
31 #include <stdbool.h>
32 #include <arpa/inet.h>
33 #include <sys/timerfd.h>
34
35 #include <libubox/md5.h>
36 #include <libubox/usock.h>
37
38 #define ADDR_ENTRY_VALID_IA_ADDR(iface, i, m, addrs) \
39 ((iface)->dhcpv6_assignall || (i) == (m) || \
40 (addrs)[(i)].prefix > 64)
41
42 static void dhcpv6_netevent_cb(unsigned long event, struct netevent_handler_info *info);
43 static void apply_lease(struct dhcp_assignment *a, bool add);
44 static void set_border_assignment_size(struct interface *iface, struct dhcp_assignment *b);
45 static void handle_addrlist_change(struct netevent_handler_info *info);
46 static void start_reconf(struct dhcp_assignment *a);
47 static void stop_reconf(struct dhcp_assignment *a);
48 static void valid_until_cb(struct uloop_timeout *event);
49
50 static struct netevent_handler dhcpv6_netevent_handler = { .cb = dhcpv6_netevent_cb, };
51 static struct uloop_timeout valid_until_timeout = {.cb = valid_until_cb};
52 static uint32_t serial = 0;
53 static uint8_t statemd5[16];
54
55 int dhcpv6_ia_init(void)
56 {
57 uloop_timeout_set(&valid_until_timeout, 1000);
58
59 netlink_add_netevent_handler(&dhcpv6_netevent_handler);
60
61 return 0;
62 }
63
64 int dhcpv6_ia_setup_interface(struct interface *iface, bool enable)
65 {
66 enable = enable && (iface->dhcpv6 == MODE_SERVER);
67
68 if (enable) {
69 struct dhcp_assignment *border;
70
71 if (list_empty(&iface->ia_assignments)) {
72 border = alloc_assignment(0);
73
74 if (!border) {
75 syslog(LOG_WARNING, "Failed to alloc border on %s", iface->name);
76 return -1;
77 }
78
79 border->length = 64;
80 list_add(&border->head, &iface->ia_assignments);
81 } else
82 border = list_last_entry(&iface->ia_assignments, struct dhcp_assignment, head);
83
84 set_border_assignment_size(iface, border);
85 } else {
86 struct dhcp_assignment *c;
87
88 while (!list_empty(&iface->ia_assignments)) {
89 c = list_first_entry(&iface->ia_assignments, struct dhcp_assignment, head);
90 free_assignment(c);
91 }
92 }
93
94 return 0;
95 }
96
97
98 static void dhcpv6_netevent_cb(unsigned long event, struct netevent_handler_info *info)
99 {
100 struct interface *iface = info->iface;
101
102 if (!iface || iface->dhcpv6 != MODE_SERVER)
103 return;
104
105 switch (event) {
106 case NETEV_ADDR6LIST_CHANGE:
107 handle_addrlist_change(info);
108 break;
109 default:
110 break;
111 }
112 }
113
114
115 static inline bool valid_prefix_length(const struct dhcp_assignment *a, const uint8_t prefix_length)
116 {
117 return (a->managed_size || a->length > prefix_length);
118 }
119
120 static inline bool valid_addr(const struct odhcpd_ipaddr *addr, time_t now)
121 {
122 return (addr->prefix <= 96 && addr->preferred > (uint32_t)now);
123 }
124
125 static size_t get_preferred_addr(const struct odhcpd_ipaddr *addrs, const size_t addrlen)
126 {
127 size_t i, m;
128
129 for (i = 0, m = 0; i < addrlen; ++i) {
130 if (addrs[i].preferred > addrs[m].preferred ||
131 (addrs[i].preferred == addrs[m].preferred &&
132 memcmp(&addrs[i].addr, &addrs[m].addr, 16) > 0))
133 m = i;
134 }
135
136 return m;
137 }
138
139 static int send_reconf(struct dhcp_assignment *assign)
140 {
141 struct {
142 struct dhcpv6_client_header hdr;
143 uint16_t srvid_type;
144 uint16_t srvid_len;
145 uint16_t duid_type;
146 uint16_t hardware_type;
147 uint8_t mac[6];
148 uint16_t msg_type;
149 uint16_t msg_len;
150 uint8_t msg_id;
151 struct dhcpv6_auth_reconfigure auth;
152 uint16_t clid_type;
153 uint16_t clid_len;
154 uint8_t clid_data[128];
155 } __attribute__((packed)) reconf_msg = {
156 .hdr = {DHCPV6_MSG_RECONFIGURE, {0, 0, 0}},
157 .srvid_type = htons(DHCPV6_OPT_SERVERID),
158 .srvid_len = htons(10),
159 .duid_type = htons(3),
160 .hardware_type = htons(1),
161 .msg_type = htons(DHCPV6_OPT_RECONF_MSG),
162 .msg_len = htons(1),
163 .msg_id = DHCPV6_MSG_RENEW,
164 .auth = {htons(DHCPV6_OPT_AUTH),
165 htons(sizeof(reconf_msg.auth) - 4), 3, 1, 0,
166 {htonl(time(NULL)), htonl(++serial)}, 2, {0}},
167 .clid_type = htons(DHCPV6_OPT_CLIENTID),
168 .clid_len = htons(assign->clid_len),
169 .clid_data = {0},
170 };
171 struct interface *iface = assign->iface;
172
173 odhcpd_get_mac(iface, reconf_msg.mac);
174 memcpy(reconf_msg.clid_data, assign->clid_data, assign->clid_len);
175 struct iovec iov = {&reconf_msg, sizeof(reconf_msg) - 128 + assign->clid_len};
176
177 md5_ctx_t md5;
178 uint8_t secretbytes[64];
179 memset(secretbytes, 0, sizeof(secretbytes));
180 memcpy(secretbytes, assign->key, sizeof(assign->key));
181
182 for (size_t i = 0; i < sizeof(secretbytes); ++i)
183 secretbytes[i] ^= 0x36;
184
185 md5_begin(&md5);
186 md5_hash(secretbytes, sizeof(secretbytes), &md5);
187 md5_hash(iov.iov_base, iov.iov_len, &md5);
188 md5_end(reconf_msg.auth.key, &md5);
189
190 for (size_t i = 0; i < sizeof(secretbytes); ++i) {
191 secretbytes[i] ^= 0x36;
192 secretbytes[i] ^= 0x5c;
193 }
194
195 md5_begin(&md5);
196 md5_hash(secretbytes, sizeof(secretbytes), &md5);
197 md5_hash(reconf_msg.auth.key, 16, &md5);
198 md5_end(reconf_msg.auth.key, &md5);
199
200 return odhcpd_send(iface->dhcpv6_event.uloop.fd, &assign->peer, &iov, 1, iface);
201 }
202
203 static void dhcpv6_ia_free_assignment(struct dhcp_assignment *a)
204 {
205 if (a->managed_sock.fd.registered) {
206 ustream_free(&a->managed_sock.stream);
207 close(a->managed_sock.fd.fd);
208 }
209
210 if ((a->flags & OAF_BOUND) && (a->flags & OAF_DHCPV6_PD))
211 apply_lease(a, false);
212
213 if (a->reconf_cnt)
214 stop_reconf(a);
215
216 free(a->managed);
217 }
218
219 void dhcpv6_ia_enum_addrs(struct interface *iface, struct dhcp_assignment *c,
220 time_t now, dhcpv6_binding_cb_handler_t func, void *arg)
221 {
222 struct odhcpd_ipaddr *addrs = (c->managed) ? c->managed : iface->addr6;
223 size_t addrlen = (c->managed) ? (size_t)c->managed_size : iface->addr6_len;
224 size_t m = get_preferred_addr(addrs, addrlen);
225
226 for (size_t i = 0; i < addrlen; ++i) {
227 struct in6_addr addr;
228 uint32_t pref, valid;
229 int prefix = c->managed ? addrs[i].prefix : c->length;
230
231 if (!valid_addr(&addrs[i], now))
232 continue;
233
234 addr = addrs[i].addr.in6;
235 pref = addrs[i].preferred;
236 valid = addrs[i].valid;
237 if (c->flags & OAF_DHCPV6_NA) {
238 if (!ADDR_ENTRY_VALID_IA_ADDR(iface, i, m, addrs))
239 continue;
240
241 addr.s6_addr32[3] = htonl(c->assigned);
242 } else {
243 if (!valid_prefix_length(c, addrs[i].prefix))
244 continue;
245
246 addr.s6_addr32[1] |= htonl(c->assigned);
247 addr.s6_addr32[2] = addr.s6_addr32[3] = 0;
248 }
249
250 if (pref > (uint32_t)c->valid_until)
251 pref = c->valid_until;
252
253 if (pref != UINT32_MAX)
254 pref -= now;
255
256 if (valid > (uint32_t)c->valid_until)
257 valid = c->valid_until;
258
259 if (valid != UINT32_MAX)
260 valid -= now;
261
262 func(&addr, prefix, pref, valid, arg);
263 }
264 }
265
266 struct write_ctxt {
267 FILE *fp;
268 md5_ctx_t md5;
269 struct dhcp_assignment *c;
270 struct interface *iface;
271 char *buf;
272 int buf_len;
273 int buf_idx;
274 };
275
276 static void dhcpv6_write_ia_addr(struct in6_addr *addr, int prefix, _unused uint32_t pref,
277 _unused uint32_t valid, void *arg)
278 {
279 struct write_ctxt *ctxt = (struct write_ctxt *)arg;
280 char ipbuf[INET6_ADDRSTRLEN];
281
282 inet_ntop(AF_INET6, addr, ipbuf, sizeof(ipbuf) - 1);
283
284 if ((ctxt->c->flags & OAF_DHCPV6_NA) && ctxt->c->hostname &&
285 !(ctxt->c->flags & OAF_BROKEN_HOSTNAME)) {
286 fputs(ipbuf, ctxt->fp);
287
288 char b[256];
289 if (dn_expand(ctxt->iface->search, ctxt->iface->search + ctxt->iface->search_len,
290 ctxt->iface->search, b, sizeof(b)) > 0)
291 fprintf(ctxt->fp, "\t%s.%s", ctxt->c->hostname, b);
292
293 fprintf(ctxt->fp, "\t%s\n", ctxt->c->hostname);
294 md5_hash(ipbuf, strlen(ipbuf), &ctxt->md5);
295 md5_hash(ctxt->c->hostname, strlen(ctxt->c->hostname), &ctxt->md5);
296 }
297
298 ctxt->buf_idx += snprintf(ctxt->buf + ctxt->buf_idx,ctxt->buf_len - ctxt->buf_idx,
299 "%s/%d ", ipbuf, prefix);
300 }
301
302 void dhcpv6_ia_write_statefile(void)
303 {
304 struct write_ctxt ctxt;
305
306 md5_begin(&ctxt.md5);
307
308 if (config.dhcp_statefile) {
309 unsigned tmp_statefile_strlen = strlen(config.dhcp_statefile) + strlen(".tmp") + 1;
310 char *tmp_statefile = alloca(tmp_statefile_strlen);
311 time_t now = odhcpd_time(), wall_time = time(NULL);
312 int fd, ret;
313 char leasebuf[512];
314
315 snprintf(tmp_statefile, tmp_statefile_strlen, "%s.tmp", config.dhcp_statefile);
316
317 fd = open(tmp_statefile, O_CREAT | O_WRONLY | O_CLOEXEC, 0644);
318 if (fd < 0)
319 return;
320
321 ret = lockf(fd, F_LOCK, 0);
322 if (ret < 0) {
323 close(fd);
324 return;
325 }
326
327 if (ftruncate(fd, 0) < 0) {}
328
329 ctxt.fp = fdopen(fd, "w");
330 if (!ctxt.fp) {
331 close(fd);
332 return;
333 }
334
335 ctxt.buf = leasebuf;
336 ctxt.buf_len = sizeof(leasebuf);
337
338 avl_for_each_element(&interfaces, ctxt.iface, avl) {
339 if (ctxt.iface->dhcpv6 != MODE_SERVER &&
340 ctxt.iface->dhcpv4 != MODE_SERVER)
341 continue;
342
343 if (ctxt.iface->dhcpv6 == MODE_SERVER) {
344 list_for_each_entry(ctxt.c, &ctxt.iface->ia_assignments, head) {
345 if (!(ctxt.c->flags & OAF_BOUND) || ctxt.c->managed_size < 0)
346 continue;
347
348 char duidbuf[264];
349
350 odhcpd_hexlify(duidbuf, ctxt.c->clid_data, ctxt.c->clid_len);
351
352 /* iface DUID iaid hostname lifetime assigned length [addrs...] */
353 ctxt.buf_idx = snprintf(ctxt.buf, ctxt.buf_len, "# %s %s %x %s%s %"PRId64" %x %u ",
354 ctxt.iface->ifname, duidbuf, ntohl(ctxt.c->iaid),
355 (ctxt.c->flags & OAF_BROKEN_HOSTNAME) ? "broken\\x20" : "",
356 (ctxt.c->hostname ? ctxt.c->hostname : "-"),
357 (ctxt.c->valid_until > now ?
358 (int64_t)(ctxt.c->valid_until - now + wall_time) :
359 (INFINITE_VALID(ctxt.c->valid_until) ? -1 : 0)),
360 ctxt.c->assigned, (unsigned)ctxt.c->length);
361
362 if (INFINITE_VALID(ctxt.c->valid_until) || ctxt.c->valid_until > now)
363 dhcpv6_ia_enum_addrs(ctxt.iface, ctxt.c, now,
364 dhcpv6_write_ia_addr, &ctxt);
365
366 ctxt.buf[ctxt.buf_idx - 1] = '\n';
367 fwrite(ctxt.buf, 1, ctxt.buf_idx, ctxt.fp);
368 }
369 }
370
371 if (ctxt.iface->dhcpv4 == MODE_SERVER) {
372 struct dhcp_assignment *c;
373
374 list_for_each_entry(c, &ctxt.iface->dhcpv4_assignments, head) {
375 if (!(c->flags & OAF_BOUND))
376 continue;
377
378 char ipbuf[INET6_ADDRSTRLEN];
379 char duidbuf[16];
380 odhcpd_hexlify(duidbuf, c->hwaddr, sizeof(c->hwaddr));
381
382 /* iface DUID iaid hostname lifetime assigned length [addrs...] */
383 ctxt.buf_idx = snprintf(ctxt.buf, ctxt.buf_len, "# %s %s ipv4 %s%s %"PRId64" %x 32 ",
384 ctxt.iface->ifname, duidbuf,
385 (c->flags & OAF_BROKEN_HOSTNAME) ? "broken\\x20" : "",
386 (c->hostname ? c->hostname : "-"),
387 (c->valid_until > now ?
388 (int64_t)(c->valid_until - now + wall_time) :
389 (INFINITE_VALID(c->valid_until) ? -1 : 0)),
390 ntohl(c->addr));
391
392 struct in_addr addr = {.s_addr = c->addr};
393 inet_ntop(AF_INET, &addr, ipbuf, sizeof(ipbuf) - 1);
394
395 if (c->hostname && !(c->flags & OAF_BROKEN_HOSTNAME)) {
396 fputs(ipbuf, ctxt.fp);
397
398 char b[256];
399 if (dn_expand(ctxt.iface->search,
400 ctxt.iface->search + ctxt.iface->search_len,
401 ctxt.iface->search, b, sizeof(b)) > 0)
402 fprintf(ctxt.fp, "\t%s.%s", c->hostname, b);
403
404 fprintf(ctxt.fp, "\t%s\n", c->hostname);
405 md5_hash(ipbuf, strlen(ipbuf), &ctxt.md5);
406 md5_hash(c->hostname, strlen(c->hostname), &ctxt.md5);
407 }
408
409 ctxt.buf_idx += snprintf(ctxt.buf + ctxt.buf_idx,
410 ctxt.buf_len - ctxt.buf_idx,
411 "%s/32 ", ipbuf);
412 ctxt.buf[ctxt.buf_idx - 1] = '\n';
413 fwrite(ctxt.buf, 1, ctxt.buf_idx, ctxt.fp);
414 }
415 }
416 }
417
418 fclose(ctxt.fp);
419
420 rename(tmp_statefile, config.dhcp_statefile);
421 }
422
423 uint8_t newmd5[16];
424 md5_end(newmd5, &ctxt.md5);
425
426 if (config.dhcp_cb && memcmp(newmd5, statemd5, sizeof(newmd5))) {
427 memcpy(statemd5, newmd5, sizeof(statemd5));
428 char *argv[2] = {config.dhcp_cb, NULL};
429 if (!vfork()) {
430 execv(argv[0], argv);
431 _exit(128);
432 }
433 }
434 }
435
436 static void __apply_lease(struct dhcp_assignment *a,
437 struct odhcpd_ipaddr *addrs, ssize_t addr_len, bool add)
438 {
439 if (a->flags & OAF_DHCPV6_NA)
440 return;
441
442 for (ssize_t i = 0; i < addr_len; ++i) {
443 struct in6_addr prefix = addrs[i].addr.in6;
444 prefix.s6_addr32[1] |= htonl(a->assigned);
445 prefix.s6_addr32[2] = prefix.s6_addr32[3] = 0;
446 netlink_setup_route(&prefix, (a->managed_size) ? addrs[i].prefix : a->length,
447 a->iface->ifindex, &a->peer.sin6_addr, 1024, add);
448 }
449 }
450
451 static void apply_lease(struct dhcp_assignment *a, bool add)
452 {
453 struct interface *iface = a->iface;
454 struct odhcpd_ipaddr *addrs = (a->managed) ? a->managed : iface->addr6;
455 ssize_t addrlen = (a->managed) ? a->managed_size : (ssize_t)iface->addr6_len;
456
457 __apply_lease(a, addrs, addrlen, add);
458 }
459
460 /* Set border assignment size based on the IPv6 address prefixes */
461 static void set_border_assignment_size(struct interface *iface, struct dhcp_assignment *b)
462 {
463 time_t now = odhcpd_time();
464 int minprefix = -1;
465
466 for (size_t i = 0; i < iface->addr6_len; ++i) {
467 if (iface->addr6[i].preferred > (uint32_t)now &&
468 iface->addr6[i].prefix < 64 &&
469 iface->addr6[i].prefix > minprefix)
470 minprefix = iface->addr6[i].prefix;
471 }
472
473 if (minprefix > 32 && minprefix <= 64)
474 b->assigned = 1U << (64 - minprefix);
475 else
476 b->assigned = 0;
477 }
478
479 /* More data was received from TCP connection */
480 static void managed_handle_pd_data(struct ustream *s, _unused int bytes_new)
481 {
482 struct ustream_fd *fd = container_of(s, struct ustream_fd, stream);
483 struct dhcp_assignment *c = container_of(fd, struct dhcp_assignment, managed_sock);
484 time_t now = odhcpd_time();
485 bool first = c->managed_size < 0;
486
487 for (;;) {
488 int pending;
489 char *data = ustream_get_read_buf(s, &pending);
490 char *end = memmem(data, pending, "\n\n", 2);
491
492 if (!end)
493 break;
494
495 end += 2;
496 end[-1] = 0;
497
498 c->managed_size = 0;
499 if (c->accept_reconf)
500 c->reconf_cnt = 1;
501
502 char *saveptr;
503 for (char *line = strtok_r(data, "\n", &saveptr); line; line = strtok_r(NULL, "\n", &saveptr)) {
504 c->managed = realloc(c->managed, (c->managed_size + 1) * sizeof(*c->managed));
505 struct odhcpd_ipaddr *n = &c->managed[c->managed_size];
506
507 char *saveptr2, *x = strtok_r(line, "/", &saveptr2);
508 if (!x || inet_pton(AF_INET6, x, &n->addr) < 1)
509 continue;
510
511 x = strtok_r(NULL, ",", &saveptr2);
512 if (sscanf(x, "%hhu", &n->prefix) < 1)
513 continue;
514
515 x = strtok_r(NULL, ",", &saveptr2);
516 if (sscanf(x, "%u", &n->preferred) < 1)
517 continue;
518
519 x = strtok_r(NULL, ",", &saveptr2);
520 if (sscanf(x, "%u", &n->valid) < 1)
521 continue;
522
523 if (n->preferred > n->valid)
524 continue;
525
526 if (UINT32_MAX - now < n->preferred)
527 n->preferred = UINT32_MAX;
528 else
529 n->preferred += now;
530
531 if (UINT32_MAX - now < n->valid)
532 n->valid = UINT32_MAX;
533 else
534 n->valid += now;
535
536 n->dprefix = 0;
537
538 ++c->managed_size;
539 }
540
541 ustream_consume(s, end - data);
542 }
543
544 if (first && c->managed_size == 0)
545 free_assignment(c);
546 else if (first)
547 c->valid_until = now + 150;
548 }
549
550
551 /* TCP transmission has ended, either because of success or timeout or other error */
552 static void managed_handle_pd_done(struct ustream *s)
553 {
554 struct ustream_fd *fd = container_of(s, struct ustream_fd, stream);
555 struct dhcp_assignment *c = container_of(fd, struct dhcp_assignment, managed_sock);
556
557 c->valid_until = odhcpd_time() + 15;
558
559 c->managed_size = 0;
560
561 if (c->accept_reconf)
562 c->reconf_cnt = 1;
563 }
564
565 static bool assign_pd(struct interface *iface, struct dhcp_assignment *assign)
566 {
567 struct dhcp_assignment *c;
568
569 if (iface->dhcpv6_pd_manager[0]) {
570 int fd = usock(USOCK_UNIX | USOCK_TCP, iface->dhcpv6_pd_manager, NULL);
571 if (fd >= 0) {
572 struct pollfd pfd = { .fd = fd, .events = POLLIN };
573 char iaidbuf[298];
574
575 odhcpd_hexlify(iaidbuf, assign->clid_data, assign->clid_len);
576
577 assign->managed_sock.stream.notify_read = managed_handle_pd_data;
578 assign->managed_sock.stream.notify_state = managed_handle_pd_done;
579 ustream_fd_init(&assign->managed_sock, fd);
580 ustream_printf(&assign->managed_sock.stream, "%s,%x\n::/%d,0,0\n\n",
581 iaidbuf, assign->iaid, assign->length);
582 ustream_write_pending(&assign->managed_sock.stream);
583 assign->managed_size = -1;
584
585 assign->valid_until = odhcpd_time() + 15;
586
587 list_add(&assign->head, &iface->ia_assignments);
588
589 /* Wait initial period of up to 250ms for immediate assignment */
590 if (poll(&pfd, 1, 250) < 0) {
591 syslog(LOG_ERR, "poll(): %m");
592 return false;
593 }
594
595 managed_handle_pd_data(&assign->managed_sock.stream, 0);
596
597 if (fcntl(fd, F_GETFL) >= 0 && assign->managed_size > 0)
598 return true;
599 }
600
601 return false;
602 } else if (iface->addr6_len < 1)
603 return false;
604
605 /* Try honoring the hint first */
606 uint32_t current = 1, asize = (1 << (64 - assign->length)) - 1;
607 if (assign->assigned) {
608 list_for_each_entry(c, &iface->ia_assignments, head) {
609 if (c->flags & OAF_DHCPV6_NA)
610 continue;
611
612 if (assign->assigned >= current && assign->assigned + asize < c->assigned) {
613 list_add_tail(&assign->head, &c->head);
614
615 if (assign->flags & OAF_BOUND)
616 apply_lease(assign, true);
617
618 return true;
619 }
620
621 if (c->assigned != 0)
622 current = (c->assigned + (1 << (64 - c->length)));
623 }
624 }
625
626 /* Fallback to a variable assignment */
627 current = 1;
628 list_for_each_entry(c, &iface->ia_assignments, head) {
629 if (c->flags & OAF_DHCPV6_NA)
630 continue;
631
632 current = (current + asize) & (~asize);
633 if (current + asize < c->assigned) {
634 assign->assigned = current;
635 list_add_tail(&assign->head, &c->head);
636
637 if (assign->flags & OAF_BOUND)
638 apply_lease(assign, true);
639
640 return true;
641 }
642
643 if (c->assigned != 0)
644 current = (c->assigned + (1 << (64 - c->length)));
645 }
646
647 return false;
648 }
649
650 static bool assign_na(struct interface *iface, struct dhcp_assignment *a)
651 {
652 struct dhcp_assignment *c;
653 uint32_t seed = 0;
654
655 /* Preconfigured assignment by static lease */
656 if (a->assigned) {
657 list_for_each_entry(c, &iface->ia_assignments, head) {
658 if (c->assigned > a->assigned || !(c->flags & OAF_DHCPV6_NA)) {
659 list_add_tail(&a->head, &c->head);
660 return true;
661 } else if (c->assigned == a->assigned)
662 return false;
663 }
664 }
665
666 /* Seed RNG with checksum of DUID */
667 for (size_t i = 0; i < a->clid_len; ++i)
668 seed += a->clid_data[i];
669 srand(seed);
670
671 /* Try to assign up to 100x */
672 for (size_t i = 0; i < 100; ++i) {
673 uint32_t try;
674 do try = ((uint32_t)rand()) % 0x0fff; while (try < 0x100);
675
676 if (config_find_lease_by_hostid(try))
677 continue;
678
679 list_for_each_entry(c, &iface->ia_assignments, head) {
680 if (c->assigned > try || !(c->flags & OAF_DHCPV6_NA)) {
681 a->assigned = try;
682 list_add_tail(&a->head, &c->head);
683 return true;
684 } else if (c->assigned == try)
685 break;
686 }
687 }
688
689 return false;
690 }
691
692 static void handle_addrlist_change(struct netevent_handler_info *info)
693 {
694 struct interface *iface = info->iface;
695 struct dhcp_assignment *c, *d, *border = list_last_entry(
696 &iface->ia_assignments, struct dhcp_assignment, head);
697 struct list_head reassign = LIST_HEAD_INIT(reassign);
698 time_t now = odhcpd_time();
699
700 list_for_each_entry(c, &iface->ia_assignments, head) {
701 if ((c->flags & OAF_DHCPV6_PD) && !(iface->ra_flags & ND_RA_FLAG_MANAGED)
702 && (c->flags & OAF_BOUND))
703 __apply_lease(c, info->addrs_old.addrs,
704 info->addrs_old.len, false);
705 }
706
707 set_border_assignment_size(iface, border);
708
709 list_for_each_entry_safe(c, d, &iface->ia_assignments, head) {
710 if (c->clid_len == 0 ||
711 !(c->flags & OAF_DHCPV6_PD) ||
712 (!INFINITE_VALID(c->valid_until) && c->valid_until < now) ||
713 c->managed_size)
714 continue;
715
716 if (c->assigned == 0 || c->assigned >= border->assigned)
717 list_move(&c->head, &reassign);
718 else if (c->flags & OAF_BOUND)
719 apply_lease(c, true);
720
721 if (c->accept_reconf && c->reconf_cnt == 0) {
722 struct dhcp_assignment *a;
723
724 start_reconf(c);
725
726 /* Leave all other assignments of that client alone */
727 list_for_each_entry(a, &iface->ia_assignments, head)
728 if (a != c && a->clid_len == c->clid_len &&
729 !memcmp(a->clid_data, c->clid_data, a->clid_len))
730 a->reconf_cnt = INT_MAX;
731 }
732 }
733
734 while (!list_empty(&reassign)) {
735 c = list_first_entry(&reassign, struct dhcp_assignment, head);
736 list_del_init(&c->head);
737 if (!assign_pd(iface, c))
738 free_assignment(c);
739 }
740
741 dhcpv6_ia_write_statefile();
742 }
743
744 static void reconf_timeout_cb(struct uloop_timeout *event)
745 {
746 struct dhcp_assignment *a = container_of(event, struct dhcp_assignment, reconf_timer);
747
748 if (a->reconf_cnt > 0 && a->reconf_cnt < DHCPV6_REC_MAX_RC) {
749 send_reconf(a);
750 uloop_timeout_set(&a->reconf_timer,
751 DHCPV6_REC_TIMEOUT << a->reconf_cnt);
752 a->reconf_cnt++;
753 } else
754 stop_reconf(a);
755 }
756
757 static void start_reconf(struct dhcp_assignment *a)
758 {
759 uloop_timeout_set(&a->reconf_timer,
760 DHCPV6_REC_TIMEOUT << a->reconf_cnt);
761 a->reconf_timer.cb = reconf_timeout_cb;
762 a->reconf_cnt++;
763
764 send_reconf(a);
765 }
766
767 static void stop_reconf(struct dhcp_assignment *a)
768 {
769 uloop_timeout_cancel(&a->reconf_timer);
770 a->reconf_cnt = 0;
771 a->reconf_timer.cb = NULL;
772 }
773
774 static void valid_until_cb(struct uloop_timeout *event)
775 {
776 struct interface *iface;
777 time_t now = odhcpd_time();
778
779 avl_for_each_element(&interfaces, iface, avl) {
780 struct dhcp_assignment *a, *n;
781
782 if (iface->dhcpv6 != MODE_SERVER)
783 continue;
784
785 list_for_each_entry_safe(a, n, &iface->ia_assignments, head) {
786 if (a->clid_len > 0 && !INFINITE_VALID(a->valid_until) && a->valid_until < now)
787 free_assignment(a);
788 }
789 }
790 uloop_timeout_set(event, 1000);
791 }
792
793 static size_t build_ia(uint8_t *buf, size_t buflen, uint16_t status,
794 const struct dhcpv6_ia_hdr *ia, struct dhcp_assignment *a,
795 struct interface *iface, bool request)
796 {
797 struct dhcpv6_ia_hdr o_ia = {
798 .type = ia->type,
799 .len = 0,
800 .iaid = ia->iaid,
801 .t1 = 0,
802 .t2 = 0,
803 };
804 size_t ia_len = sizeof(o_ia);
805 time_t now = odhcpd_time();
806
807 if (buflen < ia_len)
808 return 0;
809
810 if (status) {
811 struct __attribute__((packed)) {
812 uint16_t type;
813 uint16_t len;
814 uint16_t val;
815 } o_status = {
816 .type = htons(DHCPV6_OPT_STATUS),
817 .len = htons(sizeof(o_status) - 4),
818 .val = htons(status),
819 };
820
821 memcpy(buf + ia_len, &o_status, sizeof(o_status));
822 ia_len += sizeof(o_status);
823
824 o_ia.len = htons(ia_len - 4);
825 memcpy(buf, &o_ia, sizeof(o_ia));
826
827 return ia_len;
828 }
829
830 if (a) {
831 uint32_t leasetime;
832
833 if (a->leasetime)
834 leasetime = a->leasetime;
835 else
836 leasetime = iface->dhcp_leasetime;
837
838 uint32_t pref = leasetime;
839 uint32_t valid = leasetime;
840
841 struct odhcpd_ipaddr *addrs = (a->managed) ? a->managed : iface->addr6;
842 size_t addrlen = (a->managed) ? (size_t)a->managed_size : iface->addr6_len;
843 size_t m = get_preferred_addr(addrs, addrlen);
844
845 for (size_t i = 0; i < addrlen; ++i) {
846 uint32_t prefix_pref = addrs[i].preferred;
847 uint32_t prefix_valid = addrs[i].valid;
848
849 if (!valid_addr(&addrs[i], now))
850 continue;
851
852 if (prefix_pref != UINT32_MAX)
853 prefix_pref -= now;
854
855 if (prefix_pref > leasetime)
856 prefix_pref = leasetime;
857
858 if (prefix_valid != UINT32_MAX)
859 prefix_valid -= now;
860
861 if (prefix_valid > leasetime)
862 prefix_valid = leasetime;
863
864 if (a->flags & OAF_DHCPV6_PD) {
865 struct dhcpv6_ia_prefix o_ia_p = {
866 .type = htons(DHCPV6_OPT_IA_PREFIX),
867 .len = htons(sizeof(o_ia_p) - 4),
868 .preferred = htonl(prefix_pref),
869 .valid = htonl(prefix_valid),
870 .prefix = (a->managed_size) ? addrs[i].prefix : a->length,
871 .addr = addrs[i].addr.in6,
872 };
873
874 o_ia_p.addr.s6_addr32[1] |= htonl(a->assigned);
875 o_ia_p.addr.s6_addr32[2] = o_ia_p.addr.s6_addr32[3] = 0;
876
877 if ((a->assigned == 0 && a->managed_size == 0) ||
878 !valid_prefix_length(a, addrs[i].prefix))
879 continue;
880
881 if (buflen < ia_len + sizeof(o_ia_p))
882 return 0;
883
884 memcpy(buf + ia_len, &o_ia_p, sizeof(o_ia_p));
885 ia_len += sizeof(o_ia_p);
886 }
887
888 if (a->flags & OAF_DHCPV6_NA) {
889 struct dhcpv6_ia_addr o_ia_a = {
890 .type = htons(DHCPV6_OPT_IA_ADDR),
891 .len = htons(sizeof(o_ia_a) - 4),
892 .addr = addrs[i].addr.in6,
893 .preferred = htonl(prefix_pref),
894 .valid = htonl(prefix_valid)
895 };
896
897 o_ia_a.addr.s6_addr32[3] = htonl(a->assigned);
898
899 if (!ADDR_ENTRY_VALID_IA_ADDR(iface, i, m, addrs) ||
900 a->assigned == 0)
901 continue;
902
903 if (buflen < ia_len + sizeof(o_ia_a))
904 return 0;
905
906 memcpy(buf + ia_len, &o_ia_a, sizeof(o_ia_a));
907 ia_len += sizeof(o_ia_a);
908 }
909
910 /* Calculate T1 / T2 based on non-deprecated addresses */
911 if (prefix_pref > 0) {
912 if (prefix_pref < pref)
913 pref = prefix_pref;
914
915 if (prefix_valid < valid)
916 valid = prefix_valid;
917 }
918 }
919
920 if (!INFINITE_VALID(a->valid_until))
921 /* UINT32_MAX is considered as infinite leasetime */
922 a->valid_until = (valid == UINT32_MAX) ? 0 : valid + now;
923
924 o_ia.t1 = htonl((pref == UINT32_MAX) ? pref : pref * 5 / 10);
925 o_ia.t2 = htonl((pref == UINT32_MAX) ? pref : pref * 8 / 10);
926
927 if (!o_ia.t1)
928 o_ia.t1 = htonl(1);
929
930 if (!o_ia.t2)
931 o_ia.t2 = htonl(1);
932 }
933
934 if (!request) {
935 uint8_t *odata, *end = ((uint8_t*)ia) + htons(ia->len) + 4;
936 uint16_t otype, olen;
937
938 dhcpv6_for_each_option((uint8_t*)&ia[1], end, otype, olen, odata) {
939 struct dhcpv6_ia_prefix *ia_p = (struct dhcpv6_ia_prefix *)&odata[-4];
940 struct dhcpv6_ia_addr *ia_a = (struct dhcpv6_ia_addr *)&odata[-4];
941 bool found = false;
942
943 if ((otype != DHCPV6_OPT_IA_PREFIX || olen < sizeof(*ia_p) - 4) &&
944 (otype != DHCPV6_OPT_IA_ADDR || olen < sizeof(*ia_a) - 4))
945 continue;
946
947 if (a) {
948 struct odhcpd_ipaddr *addrs = (a->managed) ? a->managed : iface->addr6;
949 size_t addrlen = (a->managed) ? (size_t)a->managed_size : iface->addr6_len;
950
951 for (size_t i = 0; i < addrlen; ++i) {
952 if (!valid_addr(&addrs[i], now) ||
953 !valid_prefix_length(a, addrs[i].prefix))
954 continue;
955
956 struct in6_addr addr = addrs[i].addr.in6;
957 if (ia->type == htons(DHCPV6_OPT_IA_PD)) {
958 addr.s6_addr32[1] |= htonl(a->assigned);
959 addr.s6_addr32[2] = addr.s6_addr32[3] = 0;
960
961 if (!memcmp(&ia_p->addr, &addr, sizeof(addr)) &&
962 ia_p->prefix == ((a->managed) ? addrs[i].prefix : a->length))
963 found = true;
964 } else {
965 addr.s6_addr32[3] = htonl(a->assigned);
966
967 if (!memcmp(&ia_a->addr, &addr, sizeof(addr)))
968 found = true;
969 }
970 }
971 }
972
973 if (!found) {
974 if (otype == DHCPV6_OPT_IA_PREFIX) {
975 struct dhcpv6_ia_prefix o_ia_p = {
976 .type = htons(DHCPV6_OPT_IA_PREFIX),
977 .len = htons(sizeof(o_ia_p) - 4),
978 .preferred = 0,
979 .valid = 0,
980 .prefix = ia_p->prefix,
981 .addr = ia_p->addr,
982 };
983
984 if (buflen < ia_len + sizeof(o_ia_p))
985 return 0;
986
987 memcpy(buf + ia_len, &o_ia_p, sizeof(o_ia_p));
988 ia_len += sizeof(o_ia_p);
989 } else {
990 struct dhcpv6_ia_addr o_ia_a = {
991 .type = htons(DHCPV6_OPT_IA_ADDR),
992 .len = htons(sizeof(o_ia_a) - 4),
993 .addr = ia_a->addr,
994 .preferred = 0,
995 .valid = 0,
996 };
997
998 if (buflen < ia_len + sizeof(o_ia_a))
999 continue;
1000
1001 memcpy(buf + ia_len, &o_ia_a, sizeof(o_ia_a));
1002 ia_len += sizeof(o_ia_a);
1003 }
1004 }
1005 }
1006 }
1007
1008 o_ia.len = htons(ia_len - 4);
1009 memcpy(buf, &o_ia, sizeof(o_ia));
1010 return ia_len;
1011 }
1012
1013 struct log_ctxt {
1014 char *buf;
1015 int buf_len;
1016 int buf_idx;
1017 };
1018
1019 static void dhcpv6_log_ia_addr(struct in6_addr *addr, int prefix, _unused uint32_t pref,
1020 _unused uint32_t valid, void *arg)
1021 {
1022 struct log_ctxt *ctxt = (struct log_ctxt *)arg;
1023 char addrbuf[INET6_ADDRSTRLEN];
1024
1025 inet_ntop(AF_INET6, addr, addrbuf, sizeof(addrbuf));
1026 ctxt->buf_idx += snprintf(ctxt->buf + ctxt->buf_idx, ctxt->buf_len - ctxt->buf_idx,
1027 "%s/%d ", addrbuf, prefix);
1028 }
1029
1030 static void dhcpv6_log(uint8_t msgtype, struct interface *iface, time_t now,
1031 const char *duidbuf, bool is_pd, struct dhcp_assignment *a, int code)
1032 {
1033 const char *type = "UNKNOWN";
1034 const char *status = "UNKNOWN";
1035
1036 switch (msgtype) {
1037 case DHCPV6_MSG_SOLICIT:
1038 type = "SOLICIT";
1039 break;
1040 case DHCPV6_MSG_REQUEST:
1041 type = "REQUEST";
1042 break;
1043 case DHCPV6_MSG_CONFIRM:
1044 type = "CONFIRM";
1045 break;
1046 case DHCPV6_MSG_RENEW:
1047 type = "RENEW";
1048 break;
1049 case DHCPV6_MSG_REBIND:
1050 type = "REBIND";
1051 break;
1052 case DHCPV6_MSG_RELEASE:
1053 type = "RELEASE";
1054 break;
1055 case DHCPV6_MSG_DECLINE:
1056 type = "DECLINE";
1057 break;
1058 }
1059
1060 switch (code) {
1061 case DHCPV6_STATUS_OK:
1062 status = "ok";
1063 break;
1064 case DHCPV6_STATUS_NOADDRSAVAIL:
1065 status = "no addresses available";
1066 break;
1067 case DHCPV6_STATUS_NOBINDING:
1068 status = "no binding";
1069 break;
1070 case DHCPV6_STATUS_NOTONLINK:
1071 status = "not on-link";
1072 break;
1073 case DHCPV6_STATUS_NOPREFIXAVAIL:
1074 status = "no prefix available";
1075 break;
1076 }
1077
1078 char leasebuf[256] = "";
1079
1080 if (a) {
1081 struct log_ctxt ctxt = {.buf = leasebuf,
1082 .buf_len = sizeof(leasebuf),
1083 .buf_idx = 0 };
1084
1085 dhcpv6_ia_enum_addrs(iface, a, now, dhcpv6_log_ia_addr, &ctxt);
1086 }
1087
1088 syslog(LOG_INFO, "DHCPV6 %s %s from %s on %s: %s %s", type, (is_pd) ? "IA_PD" : "IA_NA",
1089 duidbuf, iface->name, status, leasebuf);
1090 }
1091
1092 static bool dhcpv6_ia_on_link(const struct dhcpv6_ia_hdr *ia, struct dhcp_assignment *a,
1093 struct interface *iface)
1094 {
1095 struct odhcpd_ipaddr *addrs = (a && a->managed) ? a->managed : iface->addr6;
1096 size_t addrlen = (a && a->managed) ? (size_t)a->managed_size : iface->addr6_len;
1097 time_t now = odhcpd_time();
1098 uint8_t *odata, *end = ((uint8_t*)ia) + htons(ia->len) + 4;
1099 uint16_t otype, olen;
1100 bool onlink = true;
1101
1102 dhcpv6_for_each_option((uint8_t*)&ia[1], end, otype, olen, odata) {
1103 struct dhcpv6_ia_prefix *p = (struct dhcpv6_ia_prefix *)&odata[-4];
1104 struct dhcpv6_ia_addr *n = (struct dhcpv6_ia_addr *)&odata[-4];
1105
1106 if ((otype != DHCPV6_OPT_IA_PREFIX || olen < sizeof(*p) - 4) &&
1107 (otype != DHCPV6_OPT_IA_ADDR || olen < sizeof(*n) - 4))
1108 continue;
1109
1110 onlink = false;
1111 for (size_t i = 0; i < addrlen; ++i) {
1112 if (!valid_addr(&addrs[i], now))
1113 continue;
1114
1115 if (ia->type == htons(DHCPV6_OPT_IA_PD)) {
1116 if (p->prefix < addrs[i].prefix ||
1117 odhcpd_bmemcmp(&p->addr, &addrs[i].addr.in6, addrs[i].prefix))
1118 continue;
1119
1120 } else if (odhcpd_bmemcmp(&n->addr, &addrs[i].addr.in6, addrs[i].prefix))
1121 continue;
1122
1123 onlink = true;
1124 }
1125
1126 if (!onlink)
1127 break;
1128 }
1129
1130 return onlink;
1131 }
1132
1133 ssize_t dhcpv6_ia_handle_IAs(uint8_t *buf, size_t buflen, struct interface *iface,
1134 const struct sockaddr_in6 *addr, const void *data, const uint8_t *end)
1135 {
1136 struct lease *l;
1137 struct dhcp_assignment *first = NULL;
1138 const struct dhcpv6_client_header *hdr = data;
1139 time_t now = odhcpd_time();
1140 uint16_t otype, olen, clid_len = 0;
1141 uint8_t *start = (uint8_t *)&hdr[1], *odata;
1142 uint8_t *clid_data = NULL, mac[6] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
1143 size_t hostname_len = 0, response_len = 0;
1144 bool notonlink = false, rapid_commit = false, accept_reconf = false;
1145 char duidbuf[261], hostname[256];
1146
1147 dhcpv6_for_each_option(start, end, otype, olen, odata) {
1148 if (otype == DHCPV6_OPT_CLIENTID) {
1149 clid_data = odata;
1150 clid_len = olen;
1151
1152 if (olen == 14 && odata[0] == 0 && odata[1] == 1)
1153 memcpy(mac, &odata[8], sizeof(mac));
1154 else if (olen == 10 && odata[0] == 0 && odata[1] == 3)
1155 memcpy(mac, &odata[4], sizeof(mac));
1156
1157 if (olen <= 130)
1158 odhcpd_hexlify(duidbuf, odata, olen);
1159 } else if (otype == DHCPV6_OPT_FQDN && olen >= 2 && olen <= 255) {
1160 uint8_t fqdn_buf[256];
1161 memcpy(fqdn_buf, odata, olen);
1162 fqdn_buf[olen++] = 0;
1163
1164 if (dn_expand(&fqdn_buf[1], &fqdn_buf[olen], &fqdn_buf[1], hostname, sizeof(hostname)) > 0)
1165 hostname_len = strcspn(hostname, ".");
1166 } else if (otype == DHCPV6_OPT_RECONF_ACCEPT)
1167 accept_reconf = true;
1168 else if (otype == DHCPV6_OPT_RAPID_COMMIT && hdr->msg_type == DHCPV6_MSG_SOLICIT)
1169 rapid_commit = true;
1170 }
1171
1172 if (!clid_data || !clid_len || clid_len > 130)
1173 goto out;
1174
1175 l = config_find_lease_by_duid(clid_data, clid_len);
1176 if (!l)
1177 l = config_find_lease_by_mac(mac);
1178
1179 dhcpv6_for_each_option(start, end, otype, olen, odata) {
1180 bool is_pd = (otype == DHCPV6_OPT_IA_PD);
1181 bool is_na = (otype == DHCPV6_OPT_IA_NA);
1182 bool ia_addr_present = false;
1183 if (!is_pd && !is_na)
1184 continue;
1185
1186 struct dhcpv6_ia_hdr *ia = (struct dhcpv6_ia_hdr*)&odata[-4];
1187 size_t ia_response_len = 0;
1188 uint8_t reqlen = (is_pd) ? 62 : 128;
1189 uint32_t reqhint = 0;
1190
1191 /* Parse request hint for IA-PD */
1192 if (is_pd) {
1193 uint8_t *sdata;
1194 uint16_t stype, slen;
1195 dhcpv6_for_each_option(&ia[1], odata + olen, stype, slen, sdata) {
1196 if (stype != DHCPV6_OPT_IA_PREFIX || slen < sizeof(struct dhcpv6_ia_prefix) - 4)
1197 continue;
1198
1199 struct dhcpv6_ia_prefix *p = (struct dhcpv6_ia_prefix*)&sdata[-4];
1200 if (p->prefix) {
1201 reqlen = p->prefix;
1202 reqhint = ntohl(p->addr.s6_addr32[1]);
1203 if (reqlen > 32 && reqlen <= 64)
1204 reqhint &= (1U << (64 - reqlen)) - 1;
1205 }
1206 }
1207
1208 if (reqlen > 64)
1209 reqlen = 64;
1210 } else if (is_na) {
1211 uint8_t *sdata;
1212 uint16_t stype, slen;
1213 dhcpv6_for_each_option(&ia[1], odata + olen, stype, slen, sdata) {
1214 if (stype != DHCPV6_OPT_IA_ADDR || slen < sizeof(struct dhcpv6_ia_addr) - 4)
1215 continue;
1216
1217 ia_addr_present = true;
1218 }
1219 }
1220
1221 /* Find assignment */
1222 struct dhcp_assignment *c, *a = NULL;
1223 list_for_each_entry(c, &iface->ia_assignments, head) {
1224 if ((c->clid_len == clid_len && !memcmp(c->clid_data, clid_data, clid_len)) &&
1225 c->iaid == ia->iaid && (INFINITE_VALID(c->valid_until) || now < c->valid_until) &&
1226 ((is_pd && (c->flags & OAF_DHCPV6_PD)) || (is_na && (c->flags & OAF_DHCPV6_NA)))) {
1227 a = c;
1228
1229 /* Reset state */
1230 if (a->flags & OAF_BOUND)
1231 apply_lease(a, false);
1232
1233 stop_reconf(a);
1234 break;
1235 }
1236 }
1237
1238 if (l && a && a->lease != l) {
1239 free_assignment(a);
1240 a = NULL;
1241 }
1242
1243 /* Generic message handling */
1244 uint16_t status = DHCPV6_STATUS_OK;
1245 if (a && a->managed_size < 0)
1246 return -1;
1247
1248 if (hdr->msg_type == DHCPV6_MSG_SOLICIT ||
1249 hdr->msg_type == DHCPV6_MSG_REQUEST ||
1250 (hdr->msg_type == DHCPV6_MSG_REBIND && !a)) {
1251 bool assigned = !!a;
1252
1253 if (!a) {
1254 if ((!iface->no_dynamic_dhcp || (l && is_na)) &&
1255 (iface->dhcpv6_pd || iface->dhcpv6_na)) {
1256 /* Create new binding */
1257 a = alloc_assignment(clid_len);
1258
1259 if (a) {
1260 a->clid_len = clid_len;
1261 memcpy(a->clid_data, clid_data, clid_len);
1262 a->iaid = ia->iaid;
1263 a->length = reqlen;
1264 a->peer = *addr;
1265 a->assigned = is_na && l ? l->hostid : reqhint;
1266 a->valid_until = now;
1267 a->dhcp_free_cb = dhcpv6_ia_free_assignment;
1268 a->iface = iface;
1269 a->flags = (is_pd ? OAF_DHCPV6_PD : OAF_DHCPV6_NA);
1270
1271 if (first)
1272 memcpy(a->key, first->key, sizeof(a->key));
1273 else
1274 odhcpd_urandom(a->key, sizeof(a->key));
1275
1276 if (is_pd && iface->dhcpv6_pd)
1277 while (!(assigned = assign_pd(iface, a)) &&
1278 !a->managed_size && ++a->length <= 64);
1279 else if (is_na && iface->dhcpv6_na)
1280 assigned = assign_na(iface, a);
1281
1282 if (l && assigned) {
1283 a->flags |= OAF_STATIC;
1284
1285 if (l->hostname)
1286 a->hostname = strdup(l->hostname);
1287
1288 if (l->leasetime)
1289 a->leasetime = l->leasetime;
1290
1291 list_add(&a->lease_list, &l->assignments);
1292 a->lease = l;
1293 }
1294
1295 if (a->managed_size && !assigned)
1296 return -1;
1297 }
1298 }
1299 }
1300
1301 if (!assigned || iface->addr6_len == 0)
1302 /* Set error status */
1303 status = (is_pd) ? DHCPV6_STATUS_NOPREFIXAVAIL : DHCPV6_STATUS_NOADDRSAVAIL;
1304 else if (hdr->msg_type == DHCPV6_MSG_REQUEST && !dhcpv6_ia_on_link(ia, a, iface)) {
1305 /* Send NOTONLINK staus for the IA */
1306 status = DHCPV6_STATUS_NOTONLINK;
1307 assigned = false;
1308 } else if (accept_reconf && assigned && !first &&
1309 hdr->msg_type != DHCPV6_MSG_REBIND) {
1310 size_t handshake_len = 4;
1311 buf[0] = 0;
1312 buf[1] = DHCPV6_OPT_RECONF_ACCEPT;
1313 buf[2] = 0;
1314 buf[3] = 0;
1315
1316 if (hdr->msg_type == DHCPV6_MSG_REQUEST) {
1317 struct dhcpv6_auth_reconfigure auth = {
1318 htons(DHCPV6_OPT_AUTH),
1319 htons(sizeof(auth) - 4),
1320 3, 1, 0,
1321 {htonl(time(NULL)), htonl(++serial)},
1322 1,
1323 {0}
1324 };
1325 memcpy(auth.key, a->key, sizeof(a->key));
1326 memcpy(buf + handshake_len, &auth, sizeof(auth));
1327 handshake_len += sizeof(auth);
1328 }
1329
1330
1331 buf += handshake_len;
1332 buflen -= handshake_len;
1333 response_len += handshake_len;
1334
1335 first = a;
1336 }
1337
1338 ia_response_len = build_ia(buf, buflen, status, ia, a, iface,
1339 hdr->msg_type == DHCPV6_MSG_REBIND ? false : true);
1340
1341 /* Was only a solicitation: mark binding for removal */
1342 if (assigned && hdr->msg_type == DHCPV6_MSG_SOLICIT && !rapid_commit) {
1343 a->flags &= ~OAF_BOUND;
1344 a->flags |= OAF_TENTATIVE;
1345
1346 /* Keep tentative assignment around for 60 seconds */
1347 a->valid_until = now + 60;
1348
1349 } else if (assigned &&
1350 ((hdr->msg_type == DHCPV6_MSG_SOLICIT && rapid_commit) ||
1351 hdr->msg_type == DHCPV6_MSG_REQUEST ||
1352 hdr->msg_type == DHCPV6_MSG_REBIND)) {
1353 if ((!(a->flags & OAF_STATIC) || !a->hostname) && hostname_len > 0) {
1354 a->hostname = realloc(a->hostname, hostname_len + 1);
1355 if (a->hostname) {
1356 memcpy(a->hostname, hostname, hostname_len);
1357 a->hostname[hostname_len] = 0;
1358
1359 if (odhcpd_valid_hostname(a->hostname))
1360 a->flags &= ~OAF_BROKEN_HOSTNAME;
1361 else
1362 a->flags |= OAF_BROKEN_HOSTNAME;
1363 }
1364 }
1365 a->accept_reconf = accept_reconf;
1366 a->flags &= ~OAF_TENTATIVE;
1367 a->flags |= OAF_BOUND;
1368 apply_lease(a, true);
1369 } else if (!assigned && a && a->managed_size == 0) {
1370 /* Cleanup failed assignment */
1371 free_assignment(a);
1372 a = NULL;
1373 }
1374 } else if (hdr->msg_type == DHCPV6_MSG_RENEW ||
1375 hdr->msg_type == DHCPV6_MSG_RELEASE ||
1376 hdr->msg_type == DHCPV6_MSG_REBIND ||
1377 hdr->msg_type == DHCPV6_MSG_DECLINE) {
1378 if (!a && hdr->msg_type != DHCPV6_MSG_REBIND) {
1379 status = DHCPV6_STATUS_NOBINDING;
1380 ia_response_len = build_ia(buf, buflen, status, ia, a, iface, false);
1381 } else if (hdr->msg_type == DHCPV6_MSG_RENEW ||
1382 hdr->msg_type == DHCPV6_MSG_REBIND) {
1383 ia_response_len = build_ia(buf, buflen, status, ia, a, iface, false);
1384 if (a) {
1385 a->flags |= OAF_BOUND;
1386 apply_lease(a, true);
1387 }
1388 } else if (hdr->msg_type == DHCPV6_MSG_RELEASE) {
1389 a->valid_until = now - 1;
1390 } else if ((a->flags & OAF_DHCPV6_NA) && hdr->msg_type == DHCPV6_MSG_DECLINE) {
1391 a->flags &= ~OAF_BOUND;
1392
1393 if (!(a->flags & OAF_STATIC) || a->lease->hostid != a->assigned) {
1394 memset(a->clid_data, 0, a->clid_len);
1395 a->valid_until = now + 3600; /* Block address for 1h */
1396 } else
1397 a->valid_until = now - 1;
1398 }
1399 } else if (hdr->msg_type == DHCPV6_MSG_CONFIRM) {
1400 if (ia_addr_present && !dhcpv6_ia_on_link(ia, a, iface)) {
1401 notonlink = true;
1402 break;
1403 }
1404
1405 if (!ia_addr_present || !a || !(a->flags & OAF_BOUND)) {
1406 response_len = 0;
1407 goto out;
1408 }
1409 }
1410
1411 buf += ia_response_len;
1412 buflen -= ia_response_len;
1413 response_len += ia_response_len;
1414 dhcpv6_log(hdr->msg_type, iface, now, duidbuf, is_pd, a, status);
1415 }
1416
1417 switch (hdr->msg_type) {
1418 case DHCPV6_MSG_RELEASE:
1419 case DHCPV6_MSG_DECLINE:
1420 case DHCPV6_MSG_CONFIRM:
1421 if (response_len + 6 < buflen) {
1422 buf[0] = 0;
1423 buf[1] = DHCPV6_OPT_STATUS;
1424 buf[2] = 0;
1425 buf[3] = 2;
1426 buf[4] = 0;
1427 buf[5] = (notonlink) ? DHCPV6_STATUS_NOTONLINK : DHCPV6_STATUS_OK;
1428 response_len += 6;
1429 }
1430 break;
1431
1432 default:
1433 break;
1434 }
1435
1436 dhcpv6_ia_write_statefile();
1437
1438 out:
1439 return response_len;
1440 }