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