dhcpv6-ia: remove assignment equal to 0 checks
[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 current = (c->assigned + (1 << (64 - c->length)));
622 }
623 }
624
625 /* Fallback to a variable assignment */
626 current = 1;
627 list_for_each_entry(c, &iface->ia_assignments, head) {
628 if (c->flags & OAF_DHCPV6_NA)
629 continue;
630
631 current = (current + asize) & (~asize);
632
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 current = (c->assigned + (1 << (64 - c->length)));
644 }
645
646 return false;
647 }
648
649 static bool assign_na(struct interface *iface, struct dhcp_assignment *a)
650 {
651 struct dhcp_assignment *c;
652 uint32_t seed = 0;
653
654 /* Preconfigured assignment by static lease */
655 if (a->assigned) {
656 list_for_each_entry(c, &iface->ia_assignments, head) {
657 if (c->assigned > a->assigned || !(c->flags & OAF_DHCPV6_NA)) {
658 list_add_tail(&a->head, &c->head);
659 return true;
660 } else if (c->assigned == a->assigned)
661 return false;
662 }
663 }
664
665 /* Seed RNG with checksum of DUID */
666 for (size_t i = 0; i < a->clid_len; ++i)
667 seed += a->clid_data[i];
668 srand(seed);
669
670 /* Try to assign up to 100x */
671 for (size_t i = 0; i < 100; ++i) {
672 uint32_t try;
673 do try = ((uint32_t)rand()) % 0x0fff; while (try < 0x100);
674
675 if (config_find_lease_by_hostid(try))
676 continue;
677
678 list_for_each_entry(c, &iface->ia_assignments, head) {
679 if (c->assigned > try || !(c->flags & OAF_DHCPV6_NA)) {
680 a->assigned = try;
681 list_add_tail(&a->head, &c->head);
682 return true;
683 } else if (c->assigned == try)
684 break;
685 }
686 }
687
688 return false;
689 }
690
691 static void handle_addrlist_change(struct netevent_handler_info *info)
692 {
693 struct interface *iface = info->iface;
694 struct dhcp_assignment *c, *d, *border = list_last_entry(
695 &iface->ia_assignments, struct dhcp_assignment, head);
696 struct list_head reassign = LIST_HEAD_INIT(reassign);
697 time_t now = odhcpd_time();
698
699 list_for_each_entry(c, &iface->ia_assignments, head) {
700 if ((c->flags & OAF_DHCPV6_PD) && !(iface->ra_flags & ND_RA_FLAG_MANAGED)
701 && (c->flags & OAF_BOUND))
702 __apply_lease(c, info->addrs_old.addrs,
703 info->addrs_old.len, false);
704 }
705
706 set_border_assignment_size(iface, border);
707
708 list_for_each_entry_safe(c, d, &iface->ia_assignments, head) {
709 if (c->clid_len == 0 ||
710 !(c->flags & OAF_DHCPV6_PD) ||
711 (!INFINITE_VALID(c->valid_until) && c->valid_until < now) ||
712 c->managed_size)
713 continue;
714
715 if (c->assigned >= border->assigned)
716 list_move(&c->head, &reassign);
717 else if (c->flags & OAF_BOUND)
718 apply_lease(c, true);
719
720 if (c->accept_reconf && c->reconf_cnt == 0) {
721 struct dhcp_assignment *a;
722
723 start_reconf(c);
724
725 /* Leave all other assignments of that client alone */
726 list_for_each_entry(a, &iface->ia_assignments, head)
727 if (a != c && a->clid_len == c->clid_len &&
728 !memcmp(a->clid_data, c->clid_data, a->clid_len))
729 a->reconf_cnt = INT_MAX;
730 }
731 }
732
733 while (!list_empty(&reassign)) {
734 c = list_first_entry(&reassign, struct dhcp_assignment, head);
735 list_del_init(&c->head);
736 if (!assign_pd(iface, c))
737 free_assignment(c);
738 }
739
740 dhcpv6_ia_write_statefile();
741 }
742
743 static void reconf_timeout_cb(struct uloop_timeout *event)
744 {
745 struct dhcp_assignment *a = container_of(event, struct dhcp_assignment, reconf_timer);
746
747 if (a->reconf_cnt > 0 && a->reconf_cnt < DHCPV6_REC_MAX_RC) {
748 send_reconf(a);
749 uloop_timeout_set(&a->reconf_timer,
750 DHCPV6_REC_TIMEOUT << a->reconf_cnt);
751 a->reconf_cnt++;
752 } else
753 stop_reconf(a);
754 }
755
756 static void start_reconf(struct dhcp_assignment *a)
757 {
758 uloop_timeout_set(&a->reconf_timer,
759 DHCPV6_REC_TIMEOUT << a->reconf_cnt);
760 a->reconf_timer.cb = reconf_timeout_cb;
761 a->reconf_cnt++;
762
763 send_reconf(a);
764 }
765
766 static void stop_reconf(struct dhcp_assignment *a)
767 {
768 uloop_timeout_cancel(&a->reconf_timer);
769 a->reconf_cnt = 0;
770 a->reconf_timer.cb = NULL;
771 }
772
773 static void valid_until_cb(struct uloop_timeout *event)
774 {
775 struct interface *iface;
776 time_t now = odhcpd_time();
777
778 avl_for_each_element(&interfaces, iface, avl) {
779 struct dhcp_assignment *a, *n;
780
781 if (iface->dhcpv6 != MODE_SERVER)
782 continue;
783
784 list_for_each_entry_safe(a, n, &iface->ia_assignments, head) {
785 if (a->clid_len > 0 && !INFINITE_VALID(a->valid_until) && a->valid_until < now)
786 free_assignment(a);
787 }
788 }
789 uloop_timeout_set(event, 1000);
790 }
791
792 static size_t build_ia(uint8_t *buf, size_t buflen, uint16_t status,
793 const struct dhcpv6_ia_hdr *ia, struct dhcp_assignment *a,
794 struct interface *iface, bool request)
795 {
796 struct dhcpv6_ia_hdr o_ia = {
797 .type = ia->type,
798 .len = 0,
799 .iaid = ia->iaid,
800 .t1 = 0,
801 .t2 = 0,
802 };
803 size_t ia_len = sizeof(o_ia);
804 time_t now = odhcpd_time();
805
806 if (buflen < ia_len)
807 return 0;
808
809 if (status) {
810 struct __attribute__((packed)) {
811 uint16_t type;
812 uint16_t len;
813 uint16_t val;
814 } o_status = {
815 .type = htons(DHCPV6_OPT_STATUS),
816 .len = htons(sizeof(o_status) - 4),
817 .val = htons(status),
818 };
819
820 memcpy(buf + ia_len, &o_status, sizeof(o_status));
821 ia_len += sizeof(o_status);
822
823 o_ia.len = htons(ia_len - 4);
824 memcpy(buf, &o_ia, sizeof(o_ia));
825
826 return ia_len;
827 }
828
829 if (a) {
830 uint32_t leasetime;
831
832 if (a->leasetime)
833 leasetime = a->leasetime;
834 else
835 leasetime = iface->dhcp_leasetime;
836
837 uint32_t pref = leasetime;
838 uint32_t valid = leasetime;
839
840 struct odhcpd_ipaddr *addrs = (a->managed) ? a->managed : iface->addr6;
841 size_t addrlen = (a->managed) ? (size_t)a->managed_size : iface->addr6_len;
842 size_t m = get_preferred_addr(addrs, addrlen);
843
844 for (size_t i = 0; i < addrlen; ++i) {
845 uint32_t prefix_pref = addrs[i].preferred;
846 uint32_t prefix_valid = addrs[i].valid;
847
848 if (!valid_addr(&addrs[i], now))
849 continue;
850
851 if (prefix_pref != UINT32_MAX)
852 prefix_pref -= now;
853
854 if (prefix_pref > leasetime)
855 prefix_pref = leasetime;
856
857 if (prefix_valid != UINT32_MAX)
858 prefix_valid -= now;
859
860 if (prefix_valid > leasetime)
861 prefix_valid = leasetime;
862
863 if (a->flags & OAF_DHCPV6_PD) {
864 struct dhcpv6_ia_prefix o_ia_p = {
865 .type = htons(DHCPV6_OPT_IA_PREFIX),
866 .len = htons(sizeof(o_ia_p) - 4),
867 .preferred = htonl(prefix_pref),
868 .valid = htonl(prefix_valid),
869 .prefix = (a->managed_size) ? addrs[i].prefix : a->length,
870 .addr = addrs[i].addr.in6,
871 };
872
873 o_ia_p.addr.s6_addr32[1] |= htonl(a->assigned);
874 o_ia_p.addr.s6_addr32[2] = o_ia_p.addr.s6_addr32[3] = 0;
875
876 if (!valid_prefix_length(a, addrs[i].prefix))
877 continue;
878
879 if (buflen < ia_len + sizeof(o_ia_p))
880 return 0;
881
882 memcpy(buf + ia_len, &o_ia_p, sizeof(o_ia_p));
883 ia_len += sizeof(o_ia_p);
884 }
885
886 if (a->flags & OAF_DHCPV6_NA) {
887 struct dhcpv6_ia_addr o_ia_a = {
888 .type = htons(DHCPV6_OPT_IA_ADDR),
889 .len = htons(sizeof(o_ia_a) - 4),
890 .addr = addrs[i].addr.in6,
891 .preferred = htonl(prefix_pref),
892 .valid = htonl(prefix_valid)
893 };
894
895 o_ia_a.addr.s6_addr32[3] = htonl(a->assigned);
896
897 if (!ADDR_ENTRY_VALID_IA_ADDR(iface, i, m, addrs))
898 continue;
899
900 if (buflen < ia_len + sizeof(o_ia_a))
901 return 0;
902
903 memcpy(buf + ia_len, &o_ia_a, sizeof(o_ia_a));
904 ia_len += sizeof(o_ia_a);
905 }
906
907 /* Calculate T1 / T2 based on non-deprecated addresses */
908 if (prefix_pref > 0) {
909 if (prefix_pref < pref)
910 pref = prefix_pref;
911
912 if (prefix_valid < valid)
913 valid = prefix_valid;
914 }
915 }
916
917 if (!INFINITE_VALID(a->valid_until))
918 /* UINT32_MAX is considered as infinite leasetime */
919 a->valid_until = (valid == UINT32_MAX) ? 0 : valid + now;
920
921 o_ia.t1 = htonl((pref == UINT32_MAX) ? pref : pref * 5 / 10);
922 o_ia.t2 = htonl((pref == UINT32_MAX) ? pref : pref * 8 / 10);
923
924 if (!o_ia.t1)
925 o_ia.t1 = htonl(1);
926
927 if (!o_ia.t2)
928 o_ia.t2 = htonl(1);
929 }
930
931 if (!request) {
932 uint8_t *odata, *end = ((uint8_t*)ia) + htons(ia->len) + 4;
933 uint16_t otype, olen;
934
935 dhcpv6_for_each_option((uint8_t*)&ia[1], end, otype, olen, odata) {
936 struct dhcpv6_ia_prefix *ia_p = (struct dhcpv6_ia_prefix *)&odata[-4];
937 struct dhcpv6_ia_addr *ia_a = (struct dhcpv6_ia_addr *)&odata[-4];
938 bool found = false;
939
940 if ((otype != DHCPV6_OPT_IA_PREFIX || olen < sizeof(*ia_p) - 4) &&
941 (otype != DHCPV6_OPT_IA_ADDR || olen < sizeof(*ia_a) - 4))
942 continue;
943
944 if (a) {
945 struct odhcpd_ipaddr *addrs = (a->managed) ? a->managed : iface->addr6;
946 size_t addrlen = (a->managed) ? (size_t)a->managed_size : iface->addr6_len;
947
948 for (size_t i = 0; i < addrlen; ++i) {
949 if (!valid_addr(&addrs[i], now) ||
950 !valid_prefix_length(a, addrs[i].prefix))
951 continue;
952
953 struct in6_addr addr = addrs[i].addr.in6;
954 if (ia->type == htons(DHCPV6_OPT_IA_PD)) {
955 addr.s6_addr32[1] |= htonl(a->assigned);
956 addr.s6_addr32[2] = addr.s6_addr32[3] = 0;
957
958 if (!memcmp(&ia_p->addr, &addr, sizeof(addr)) &&
959 ia_p->prefix == ((a->managed) ? addrs[i].prefix : a->length))
960 found = true;
961 } else {
962 addr.s6_addr32[3] = htonl(a->assigned);
963
964 if (!memcmp(&ia_a->addr, &addr, sizeof(addr)))
965 found = true;
966 }
967 }
968 }
969
970 if (!found) {
971 if (otype == DHCPV6_OPT_IA_PREFIX) {
972 struct dhcpv6_ia_prefix o_ia_p = {
973 .type = htons(DHCPV6_OPT_IA_PREFIX),
974 .len = htons(sizeof(o_ia_p) - 4),
975 .preferred = 0,
976 .valid = 0,
977 .prefix = ia_p->prefix,
978 .addr = ia_p->addr,
979 };
980
981 if (buflen < ia_len + sizeof(o_ia_p))
982 return 0;
983
984 memcpy(buf + ia_len, &o_ia_p, sizeof(o_ia_p));
985 ia_len += sizeof(o_ia_p);
986 } else {
987 struct dhcpv6_ia_addr o_ia_a = {
988 .type = htons(DHCPV6_OPT_IA_ADDR),
989 .len = htons(sizeof(o_ia_a) - 4),
990 .addr = ia_a->addr,
991 .preferred = 0,
992 .valid = 0,
993 };
994
995 if (buflen < ia_len + sizeof(o_ia_a))
996 continue;
997
998 memcpy(buf + ia_len, &o_ia_a, sizeof(o_ia_a));
999 ia_len += sizeof(o_ia_a);
1000 }
1001 }
1002 }
1003 }
1004
1005 o_ia.len = htons(ia_len - 4);
1006 memcpy(buf, &o_ia, sizeof(o_ia));
1007 return ia_len;
1008 }
1009
1010 struct log_ctxt {
1011 char *buf;
1012 int buf_len;
1013 int buf_idx;
1014 };
1015
1016 static void dhcpv6_log_ia_addr(struct in6_addr *addr, int prefix, _unused uint32_t pref,
1017 _unused uint32_t valid, void *arg)
1018 {
1019 struct log_ctxt *ctxt = (struct log_ctxt *)arg;
1020 char addrbuf[INET6_ADDRSTRLEN];
1021
1022 inet_ntop(AF_INET6, addr, addrbuf, sizeof(addrbuf));
1023 ctxt->buf_idx += snprintf(ctxt->buf + ctxt->buf_idx, ctxt->buf_len - ctxt->buf_idx,
1024 "%s/%d ", addrbuf, prefix);
1025 }
1026
1027 static void dhcpv6_log(uint8_t msgtype, struct interface *iface, time_t now,
1028 const char *duidbuf, bool is_pd, struct dhcp_assignment *a, int code)
1029 {
1030 const char *type = "UNKNOWN";
1031 const char *status = "UNKNOWN";
1032
1033 switch (msgtype) {
1034 case DHCPV6_MSG_SOLICIT:
1035 type = "SOLICIT";
1036 break;
1037 case DHCPV6_MSG_REQUEST:
1038 type = "REQUEST";
1039 break;
1040 case DHCPV6_MSG_CONFIRM:
1041 type = "CONFIRM";
1042 break;
1043 case DHCPV6_MSG_RENEW:
1044 type = "RENEW";
1045 break;
1046 case DHCPV6_MSG_REBIND:
1047 type = "REBIND";
1048 break;
1049 case DHCPV6_MSG_RELEASE:
1050 type = "RELEASE";
1051 break;
1052 case DHCPV6_MSG_DECLINE:
1053 type = "DECLINE";
1054 break;
1055 }
1056
1057 switch (code) {
1058 case DHCPV6_STATUS_OK:
1059 status = "ok";
1060 break;
1061 case DHCPV6_STATUS_NOADDRSAVAIL:
1062 status = "no addresses available";
1063 break;
1064 case DHCPV6_STATUS_NOBINDING:
1065 status = "no binding";
1066 break;
1067 case DHCPV6_STATUS_NOTONLINK:
1068 status = "not on-link";
1069 break;
1070 case DHCPV6_STATUS_NOPREFIXAVAIL:
1071 status = "no prefix available";
1072 break;
1073 }
1074
1075 char leasebuf[256] = "";
1076
1077 if (a) {
1078 struct log_ctxt ctxt = {.buf = leasebuf,
1079 .buf_len = sizeof(leasebuf),
1080 .buf_idx = 0 };
1081
1082 dhcpv6_ia_enum_addrs(iface, a, now, dhcpv6_log_ia_addr, &ctxt);
1083 }
1084
1085 syslog(LOG_INFO, "DHCPV6 %s %s from %s on %s: %s %s", type, (is_pd) ? "IA_PD" : "IA_NA",
1086 duidbuf, iface->name, status, leasebuf);
1087 }
1088
1089 static bool dhcpv6_ia_on_link(const struct dhcpv6_ia_hdr *ia, struct dhcp_assignment *a,
1090 struct interface *iface)
1091 {
1092 struct odhcpd_ipaddr *addrs = (a && a->managed) ? a->managed : iface->addr6;
1093 size_t addrlen = (a && a->managed) ? (size_t)a->managed_size : iface->addr6_len;
1094 time_t now = odhcpd_time();
1095 uint8_t *odata, *end = ((uint8_t*)ia) + htons(ia->len) + 4;
1096 uint16_t otype, olen;
1097 bool onlink = true;
1098
1099 dhcpv6_for_each_option((uint8_t*)&ia[1], end, otype, olen, odata) {
1100 struct dhcpv6_ia_prefix *p = (struct dhcpv6_ia_prefix *)&odata[-4];
1101 struct dhcpv6_ia_addr *n = (struct dhcpv6_ia_addr *)&odata[-4];
1102
1103 if ((otype != DHCPV6_OPT_IA_PREFIX || olen < sizeof(*p) - 4) &&
1104 (otype != DHCPV6_OPT_IA_ADDR || olen < sizeof(*n) - 4))
1105 continue;
1106
1107 onlink = false;
1108 for (size_t i = 0; i < addrlen; ++i) {
1109 if (!valid_addr(&addrs[i], now))
1110 continue;
1111
1112 if (ia->type == htons(DHCPV6_OPT_IA_PD)) {
1113 if (p->prefix < addrs[i].prefix ||
1114 odhcpd_bmemcmp(&p->addr, &addrs[i].addr.in6, addrs[i].prefix))
1115 continue;
1116
1117 } else if (odhcpd_bmemcmp(&n->addr, &addrs[i].addr.in6, addrs[i].prefix))
1118 continue;
1119
1120 onlink = true;
1121 }
1122
1123 if (!onlink)
1124 break;
1125 }
1126
1127 return onlink;
1128 }
1129
1130 ssize_t dhcpv6_ia_handle_IAs(uint8_t *buf, size_t buflen, struct interface *iface,
1131 const struct sockaddr_in6 *addr, const void *data, const uint8_t *end)
1132 {
1133 struct lease *l;
1134 struct dhcp_assignment *first = NULL;
1135 const struct dhcpv6_client_header *hdr = data;
1136 time_t now = odhcpd_time();
1137 uint16_t otype, olen, clid_len = 0;
1138 uint8_t *start = (uint8_t *)&hdr[1], *odata;
1139 uint8_t *clid_data = NULL, mac[6] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
1140 size_t hostname_len = 0, response_len = 0;
1141 bool notonlink = false, rapid_commit = false, accept_reconf = false;
1142 char duidbuf[261], hostname[256];
1143
1144 dhcpv6_for_each_option(start, end, otype, olen, odata) {
1145 if (otype == DHCPV6_OPT_CLIENTID) {
1146 clid_data = odata;
1147 clid_len = olen;
1148
1149 if (olen == 14 && odata[0] == 0 && odata[1] == 1)
1150 memcpy(mac, &odata[8], sizeof(mac));
1151 else if (olen == 10 && odata[0] == 0 && odata[1] == 3)
1152 memcpy(mac, &odata[4], sizeof(mac));
1153
1154 if (olen <= 130)
1155 odhcpd_hexlify(duidbuf, odata, olen);
1156 } else if (otype == DHCPV6_OPT_FQDN && olen >= 2 && olen <= 255) {
1157 uint8_t fqdn_buf[256];
1158 memcpy(fqdn_buf, odata, olen);
1159 fqdn_buf[olen++] = 0;
1160
1161 if (dn_expand(&fqdn_buf[1], &fqdn_buf[olen], &fqdn_buf[1], hostname, sizeof(hostname)) > 0)
1162 hostname_len = strcspn(hostname, ".");
1163 } else if (otype == DHCPV6_OPT_RECONF_ACCEPT)
1164 accept_reconf = true;
1165 else if (otype == DHCPV6_OPT_RAPID_COMMIT && hdr->msg_type == DHCPV6_MSG_SOLICIT)
1166 rapid_commit = true;
1167 }
1168
1169 if (!clid_data || !clid_len || clid_len > 130)
1170 goto out;
1171
1172 l = config_find_lease_by_duid(clid_data, clid_len);
1173 if (!l)
1174 l = config_find_lease_by_mac(mac);
1175
1176 dhcpv6_for_each_option(start, end, otype, olen, odata) {
1177 bool is_pd = (otype == DHCPV6_OPT_IA_PD);
1178 bool is_na = (otype == DHCPV6_OPT_IA_NA);
1179 bool ia_addr_present = false;
1180 if (!is_pd && !is_na)
1181 continue;
1182
1183 struct dhcpv6_ia_hdr *ia = (struct dhcpv6_ia_hdr*)&odata[-4];
1184 size_t ia_response_len = 0;
1185 uint8_t reqlen = (is_pd) ? 62 : 128;
1186 uint32_t reqhint = 0;
1187
1188 /* Parse request hint for IA-PD */
1189 if (is_pd) {
1190 uint8_t *sdata;
1191 uint16_t stype, slen;
1192 dhcpv6_for_each_option(&ia[1], odata + olen, stype, slen, sdata) {
1193 if (stype != DHCPV6_OPT_IA_PREFIX || slen < sizeof(struct dhcpv6_ia_prefix) - 4)
1194 continue;
1195
1196 struct dhcpv6_ia_prefix *p = (struct dhcpv6_ia_prefix*)&sdata[-4];
1197 if (p->prefix) {
1198 reqlen = p->prefix;
1199 reqhint = ntohl(p->addr.s6_addr32[1]);
1200 if (reqlen > 32 && reqlen <= 64)
1201 reqhint &= (1U << (64 - reqlen)) - 1;
1202 }
1203 }
1204
1205 if (reqlen > 64)
1206 reqlen = 64;
1207 } else if (is_na) {
1208 uint8_t *sdata;
1209 uint16_t stype, slen;
1210 dhcpv6_for_each_option(&ia[1], odata + olen, stype, slen, sdata) {
1211 if (stype != DHCPV6_OPT_IA_ADDR || slen < sizeof(struct dhcpv6_ia_addr) - 4)
1212 continue;
1213
1214 ia_addr_present = true;
1215 }
1216 }
1217
1218 /* Find assignment */
1219 struct dhcp_assignment *c, *a = NULL;
1220 list_for_each_entry(c, &iface->ia_assignments, head) {
1221 if ((c->clid_len == clid_len && !memcmp(c->clid_data, clid_data, clid_len)) &&
1222 c->iaid == ia->iaid && (INFINITE_VALID(c->valid_until) || now < c->valid_until) &&
1223 ((is_pd && (c->flags & OAF_DHCPV6_PD)) || (is_na && (c->flags & OAF_DHCPV6_NA)))) {
1224 a = c;
1225
1226 /* Reset state */
1227 if (a->flags & OAF_BOUND)
1228 apply_lease(a, false);
1229
1230 stop_reconf(a);
1231 break;
1232 }
1233 }
1234
1235 if (l && a && a->lease != l) {
1236 free_assignment(a);
1237 a = NULL;
1238 }
1239
1240 /* Generic message handling */
1241 uint16_t status = DHCPV6_STATUS_OK;
1242 if (a && a->managed_size < 0)
1243 return -1;
1244
1245 if (hdr->msg_type == DHCPV6_MSG_SOLICIT ||
1246 hdr->msg_type == DHCPV6_MSG_REQUEST ||
1247 (hdr->msg_type == DHCPV6_MSG_REBIND && !a)) {
1248 bool assigned = !!a;
1249
1250 if (!a) {
1251 if ((!iface->no_dynamic_dhcp || (l && is_na)) &&
1252 (iface->dhcpv6_pd || iface->dhcpv6_na)) {
1253 /* Create new binding */
1254 a = alloc_assignment(clid_len);
1255
1256 if (a) {
1257 a->clid_len = clid_len;
1258 memcpy(a->clid_data, clid_data, clid_len);
1259 a->iaid = ia->iaid;
1260 a->length = reqlen;
1261 a->peer = *addr;
1262 a->assigned = is_na && l ? l->hostid : reqhint;
1263 a->valid_until = now;
1264 a->dhcp_free_cb = dhcpv6_ia_free_assignment;
1265 a->iface = iface;
1266 a->flags = (is_pd ? OAF_DHCPV6_PD : OAF_DHCPV6_NA);
1267
1268 if (first)
1269 memcpy(a->key, first->key, sizeof(a->key));
1270 else
1271 odhcpd_urandom(a->key, sizeof(a->key));
1272
1273 if (is_pd && iface->dhcpv6_pd)
1274 while (!(assigned = assign_pd(iface, a)) &&
1275 !a->managed_size && ++a->length <= 64);
1276 else if (is_na && iface->dhcpv6_na)
1277 assigned = assign_na(iface, a);
1278
1279 if (l && assigned) {
1280 a->flags |= OAF_STATIC;
1281
1282 if (l->hostname)
1283 a->hostname = strdup(l->hostname);
1284
1285 if (l->leasetime)
1286 a->leasetime = l->leasetime;
1287
1288 list_add(&a->lease_list, &l->assignments);
1289 a->lease = l;
1290 }
1291
1292 if (a->managed_size && !assigned)
1293 return -1;
1294 }
1295 }
1296 }
1297
1298 if (!assigned || iface->addr6_len == 0)
1299 /* Set error status */
1300 status = (is_pd) ? DHCPV6_STATUS_NOPREFIXAVAIL : DHCPV6_STATUS_NOADDRSAVAIL;
1301 else if (hdr->msg_type == DHCPV6_MSG_REQUEST && !dhcpv6_ia_on_link(ia, a, iface)) {
1302 /* Send NOTONLINK staus for the IA */
1303 status = DHCPV6_STATUS_NOTONLINK;
1304 assigned = false;
1305 } else if (accept_reconf && assigned && !first &&
1306 hdr->msg_type != DHCPV6_MSG_REBIND) {
1307 size_t handshake_len = 4;
1308 buf[0] = 0;
1309 buf[1] = DHCPV6_OPT_RECONF_ACCEPT;
1310 buf[2] = 0;
1311 buf[3] = 0;
1312
1313 if (hdr->msg_type == DHCPV6_MSG_REQUEST) {
1314 struct dhcpv6_auth_reconfigure auth = {
1315 htons(DHCPV6_OPT_AUTH),
1316 htons(sizeof(auth) - 4),
1317 3, 1, 0,
1318 {htonl(time(NULL)), htonl(++serial)},
1319 1,
1320 {0}
1321 };
1322 memcpy(auth.key, a->key, sizeof(a->key));
1323 memcpy(buf + handshake_len, &auth, sizeof(auth));
1324 handshake_len += sizeof(auth);
1325 }
1326
1327
1328 buf += handshake_len;
1329 buflen -= handshake_len;
1330 response_len += handshake_len;
1331
1332 first = a;
1333 }
1334
1335 ia_response_len = build_ia(buf, buflen, status, ia, a, iface,
1336 hdr->msg_type == DHCPV6_MSG_REBIND ? false : true);
1337
1338 /* Was only a solicitation: mark binding for removal */
1339 if (assigned && hdr->msg_type == DHCPV6_MSG_SOLICIT && !rapid_commit) {
1340 a->flags &= ~OAF_BOUND;
1341 a->flags |= OAF_TENTATIVE;
1342
1343 /* Keep tentative assignment around for 60 seconds */
1344 a->valid_until = now + 60;
1345
1346 } else if (assigned &&
1347 ((hdr->msg_type == DHCPV6_MSG_SOLICIT && rapid_commit) ||
1348 hdr->msg_type == DHCPV6_MSG_REQUEST ||
1349 hdr->msg_type == DHCPV6_MSG_REBIND)) {
1350 if ((!(a->flags & OAF_STATIC) || !a->hostname) && hostname_len > 0) {
1351 a->hostname = realloc(a->hostname, hostname_len + 1);
1352 if (a->hostname) {
1353 memcpy(a->hostname, hostname, hostname_len);
1354 a->hostname[hostname_len] = 0;
1355
1356 if (odhcpd_valid_hostname(a->hostname))
1357 a->flags &= ~OAF_BROKEN_HOSTNAME;
1358 else
1359 a->flags |= OAF_BROKEN_HOSTNAME;
1360 }
1361 }
1362 a->accept_reconf = accept_reconf;
1363 a->flags &= ~OAF_TENTATIVE;
1364 a->flags |= OAF_BOUND;
1365 apply_lease(a, true);
1366 } else if (!assigned && a && a->managed_size == 0) {
1367 /* Cleanup failed assignment */
1368 free_assignment(a);
1369 a = NULL;
1370 }
1371 } else if (hdr->msg_type == DHCPV6_MSG_RENEW ||
1372 hdr->msg_type == DHCPV6_MSG_RELEASE ||
1373 hdr->msg_type == DHCPV6_MSG_REBIND ||
1374 hdr->msg_type == DHCPV6_MSG_DECLINE) {
1375 if (!a && hdr->msg_type != DHCPV6_MSG_REBIND) {
1376 status = DHCPV6_STATUS_NOBINDING;
1377 ia_response_len = build_ia(buf, buflen, status, ia, a, iface, false);
1378 } else if (hdr->msg_type == DHCPV6_MSG_RENEW ||
1379 hdr->msg_type == DHCPV6_MSG_REBIND) {
1380 ia_response_len = build_ia(buf, buflen, status, ia, a, iface, false);
1381 if (a) {
1382 a->flags |= OAF_BOUND;
1383 apply_lease(a, true);
1384 }
1385 } else if (hdr->msg_type == DHCPV6_MSG_RELEASE) {
1386 a->valid_until = now - 1;
1387 } else if ((a->flags & OAF_DHCPV6_NA) && hdr->msg_type == DHCPV6_MSG_DECLINE) {
1388 a->flags &= ~OAF_BOUND;
1389
1390 if (!(a->flags & OAF_STATIC) || a->lease->hostid != a->assigned) {
1391 memset(a->clid_data, 0, a->clid_len);
1392 a->valid_until = now + 3600; /* Block address for 1h */
1393 } else
1394 a->valid_until = now - 1;
1395 }
1396 } else if (hdr->msg_type == DHCPV6_MSG_CONFIRM) {
1397 if (ia_addr_present && !dhcpv6_ia_on_link(ia, a, iface)) {
1398 notonlink = true;
1399 break;
1400 }
1401
1402 if (!ia_addr_present || !a || !(a->flags & OAF_BOUND)) {
1403 response_len = 0;
1404 goto out;
1405 }
1406 }
1407
1408 buf += ia_response_len;
1409 buflen -= ia_response_len;
1410 response_len += ia_response_len;
1411 dhcpv6_log(hdr->msg_type, iface, now, duidbuf, is_pd, a, status);
1412 }
1413
1414 switch (hdr->msg_type) {
1415 case DHCPV6_MSG_RELEASE:
1416 case DHCPV6_MSG_DECLINE:
1417 case DHCPV6_MSG_CONFIRM:
1418 if (response_len + 6 < buflen) {
1419 buf[0] = 0;
1420 buf[1] = DHCPV6_OPT_STATUS;
1421 buf[2] = 0;
1422 buf[3] = 2;
1423 buf[4] = 0;
1424 buf[5] = (notonlink) ? DHCPV6_STATUS_NOTONLINK : DHCPV6_STATUS_OK;
1425 response_len += 6;
1426 }
1427 break;
1428
1429 default:
1430 break;
1431 }
1432
1433 dhcpv6_ia_write_statefile();
1434
1435 out:
1436 return response_len;
1437 }