config: Support infinite as DHCP pool leasetime value
[project/odhcpd.git] / src / dhcpv6-ia.c
1 /**
2 * Copyright (C) 2013 Steven Barth <steven@midlink.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License v2 as published by
6 * the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 */
14
15 #include "odhcpd.h"
16 #include "dhcpv6.h"
17 #include "dhcpv4.h"
18 #include "libubox/md5.h"
19 #include "libubox/usock.h"
20
21 #include <time.h>
22 #include <errno.h>
23 #include <fcntl.h>
24 #include <stdio.h>
25 #include <poll.h>
26 #include <alloca.h>
27 #include <resolv.h>
28 #include <limits.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <unistd.h>
32 #include <stdbool.h>
33 #include <arpa/inet.h>
34 #include <sys/timerfd.h>
35
36
37 static void reconf_timer(struct uloop_timeout *event);
38 static struct uloop_timeout reconf_event = {.cb = reconf_timer};
39 static uint32_t serial = 0;
40 static uint8_t statemd5[16];
41
42
43 int dhcpv6_ia_init(void)
44 {
45 uloop_timeout_set(&reconf_event, 2000);
46 return 0;
47 }
48
49
50 void free_dhcpv6_assignment(struct dhcpv6_assignment *c)
51 {
52 if (c->managed_sock.fd.registered) {
53 ustream_free(&c->managed_sock.stream);
54 close(c->managed_sock.fd.fd);
55 }
56
57 if (c->head.next)
58 list_del(&c->head);
59
60 free(c->managed);
61 free(c->hostname);
62 free(c);
63 }
64
65
66 int setup_dhcpv6_ia_interface(struct interface *iface, bool enable)
67 {
68 if (!enable && iface->ia_assignments.next) {
69 struct dhcpv6_assignment *c;
70 while (!list_empty(&iface->ia_assignments)) {
71 c = list_first_entry(&iface->ia_assignments, struct dhcpv6_assignment, head);
72 free_dhcpv6_assignment(c);
73 }
74 }
75
76 if (enable && iface->dhcpv6 == RELAYD_SERVER) {
77 if (!iface->ia_assignments.next)
78 INIT_LIST_HEAD(&iface->ia_assignments);
79
80 if (list_empty(&iface->ia_assignments)) {
81 struct dhcpv6_assignment *border = calloc(1, sizeof(*border));
82 if (!border) {
83 syslog(LOG_ERR, "Calloc failed for border on interface %s", iface->ifname);
84 return -1;
85 }
86
87 border->length = 64;
88 list_add(&border->head, &iface->ia_assignments);
89 }
90
91 // Parse static entries
92 struct lease *lease;
93 list_for_each_entry(lease, &leases, head) {
94 // Construct entry
95 size_t duid_len = lease->duid_len ? lease->duid_len : 14;
96 struct dhcpv6_assignment *a = calloc(1, sizeof(*a) + duid_len);
97 if (!a) {
98 syslog(LOG_ERR, "Calloc failed for static lease assignment on interface %s",
99 iface->ifname);
100 return -1;
101 }
102
103 if (lease->dhcpv4_leasetime > 0)
104 a->leasetime = lease->dhcpv4_leasetime;
105
106 a->clid_len = duid_len;
107 a->length = 128;
108 if (lease->hostid) {
109 a->assigned = lease->hostid;
110 } else {
111 uint32_t i4a = ntohl(lease->ipaddr.s_addr) & 0xff;
112 a->assigned = ((i4a / 100) << 8) | (((i4a % 100) / 10) << 4) | (i4a % 10);
113 }
114 odhcpd_urandom(a->key, sizeof(a->key));
115 memcpy(a->clid_data, lease->duid, lease->duid_len);
116 memcpy(a->mac, lease->mac.ether_addr_octet, sizeof(a->mac));
117
118 // Assign to all interfaces
119 struct dhcpv6_assignment *c;
120 list_for_each_entry(c, &iface->ia_assignments, head) {
121 if (c->length != 128 || c->assigned > a->assigned) {
122 list_add_tail(&a->head, &c->head);
123 break;
124 } else if (c->assigned == a->assigned) {
125 // Already an assignment with that number
126 break;
127 }
128 }
129
130 if (a->head.next) {
131 if (lease->hostname[0]) {
132 free(a->hostname);
133 a->hostname = strdup(lease->hostname);
134 }
135 } else {
136 free(a->hostname);
137 free(a);
138 }
139 }
140 }
141 return 0;
142 }
143
144
145 static int send_reconf(struct interface *iface, struct dhcpv6_assignment *assign)
146 {
147 struct {
148 struct dhcpv6_client_header hdr;
149 uint16_t srvid_type;
150 uint16_t srvid_len;
151 uint16_t duid_type;
152 uint16_t hardware_type;
153 uint8_t mac[6];
154 uint16_t msg_type;
155 uint16_t msg_len;
156 uint8_t msg_id;
157 struct dhcpv6_auth_reconfigure auth;
158 uint16_t clid_type;
159 uint16_t clid_len;
160 uint8_t clid_data[128];
161 } __attribute__((packed)) reconf_msg = {
162 .hdr = {DHCPV6_MSG_RECONFIGURE, {0, 0, 0}},
163 .srvid_type = htons(DHCPV6_OPT_SERVERID),
164 .srvid_len = htons(10),
165 .duid_type = htons(3),
166 .hardware_type = htons(1),
167 .msg_type = htons(DHCPV6_OPT_RECONF_MSG),
168 .msg_len = htons(1),
169 .msg_id = DHCPV6_MSG_RENEW,
170 .auth = {htons(DHCPV6_OPT_AUTH),
171 htons(sizeof(reconf_msg.auth) - 4), 3, 1, 0,
172 {htonl(time(NULL)), htonl(++serial)}, 2, {0}},
173 .clid_type = htons(DHCPV6_OPT_CLIENTID),
174 .clid_len = htons(assign->clid_len),
175 .clid_data = {0},
176 };
177
178 odhcpd_get_mac(iface, reconf_msg.mac);
179 memcpy(reconf_msg.clid_data, assign->clid_data, assign->clid_len);
180 struct iovec iov = {&reconf_msg, sizeof(reconf_msg) - 128 + assign->clid_len};
181
182 md5_ctx_t md5;
183 uint8_t secretbytes[64];
184 memset(secretbytes, 0, sizeof(secretbytes));
185 memcpy(secretbytes, assign->key, sizeof(assign->key));
186
187 for (size_t i = 0; i < sizeof(secretbytes); ++i)
188 secretbytes[i] ^= 0x36;
189
190 md5_begin(&md5);
191 md5_hash(secretbytes, sizeof(secretbytes), &md5);
192 md5_hash(iov.iov_base, iov.iov_len, &md5);
193 md5_end(reconf_msg.auth.key, &md5);
194
195 for (size_t i = 0; i < sizeof(secretbytes); ++i) {
196 secretbytes[i] ^= 0x36;
197 secretbytes[i] ^= 0x5c;
198 }
199
200 md5_begin(&md5);
201 md5_hash(secretbytes, sizeof(secretbytes), &md5);
202 md5_hash(reconf_msg.auth.key, 16, &md5);
203 md5_end(reconf_msg.auth.key, &md5);
204
205 return odhcpd_send(iface->dhcpv6_event.uloop.fd, &assign->peer, &iov, 1, iface);
206 }
207
208
209 void dhcpv6_write_statefile(void)
210 {
211 md5_ctx_t md5;
212 md5_begin(&md5);
213
214 if (config.dhcp_statefile) {
215 time_t now = odhcpd_time(), wall_time = time(NULL);
216 int fd = open(config.dhcp_statefile, O_CREAT | O_WRONLY | O_CLOEXEC, 0644);
217 if (fd < 0)
218 return;
219
220 lockf(fd, F_LOCK, 0);
221 if (ftruncate(fd, 0) < 0) {}
222
223 FILE *fp = fdopen(fd, "w");
224 if (!fp) {
225 close(fd);
226 return;
227 }
228
229 struct interface *iface;
230 list_for_each_entry(iface, &interfaces, head) {
231 if (iface->dhcpv6 != RELAYD_SERVER && iface->dhcpv4 != RELAYD_SERVER)
232 continue;
233
234 if (iface->dhcpv6 == RELAYD_SERVER && iface->ia_assignments.next) {
235 struct dhcpv6_assignment *c;
236 list_for_each_entry(c, &iface->ia_assignments, head) {
237 if (c->clid_len == 0 || c->managed_size < 0)
238 continue;
239
240 char ipbuf[INET6_ADDRSTRLEN];
241 char leasebuf[512];
242 char duidbuf[264];
243 odhcpd_hexlify(duidbuf, c->clid_data, c->clid_len);
244
245 // iface DUID iaid hostname lifetime assigned length [addrs...]
246 int l = snprintf(leasebuf, sizeof(leasebuf), "# %s %s %x %s %u %x %u ",
247 iface->ifname, duidbuf, ntohl(c->iaid),
248 (c->hostname ? c->hostname : "-"),
249 (unsigned)(c->valid_until > now ?
250 (c->valid_until - now + wall_time) : 0),
251 c->assigned, (unsigned)c->length);
252
253 struct in6_addr addr;
254 struct odhcpd_ipaddr *addrs = (c->managed) ? c->managed : iface->ia_addr;
255 size_t addrlen = (c->managed) ? (size_t)c->managed_size : iface->ia_addr_len;
256 size_t m = 0;
257
258 for (size_t i = 0; i < addrlen; ++i)
259 if (addrs[i].preferred > addrs[m].preferred ||
260 (addrs[i].preferred == addrs[m].preferred &&
261 memcmp(&addrs[i].addr, &addrs[m].addr, 16) > 0))
262 m = i;
263
264 for (size_t i = 0; i < addrlen; ++i) {
265 if (addrs[i].prefix > 96 || (!INFINITE_VALID(c->valid_until) && c->valid_until <= now) ||
266 (iface->managed < RELAYD_MANAGED_NO_AFLAG && i != m &&
267 addrs[i].prefix == 64))
268 continue;
269
270 addr = addrs[i].addr;
271 if (c->length == 128)
272 addr.s6_addr32[3] = htonl(c->assigned);
273 else
274 addr.s6_addr32[1] |= htonl(c->assigned);
275
276 inet_ntop(AF_INET6, &addr, ipbuf, sizeof(ipbuf) - 1);
277
278 if (c->length == 128 && c->hostname) {
279 fputs(ipbuf, fp);
280
281 char b[256];
282 if (dn_expand(iface->search, iface->search + iface->search_len,
283 iface->search, b, sizeof(b)) > 0)
284 fprintf(fp, "\t%s.%s", c->hostname, b);
285
286 fprintf(fp, "\t%s\n", c->hostname);
287 md5_hash(ipbuf, strlen(ipbuf), &md5);
288 md5_hash(c->hostname, strlen(c->hostname), &md5);
289 }
290
291 l += snprintf(leasebuf + l, sizeof(leasebuf) - l, "%s/%d ", ipbuf,
292 (c->managed_size) ? addrs[i].prefix : c->length);
293 }
294 leasebuf[l - 1] = '\n';
295 fwrite(leasebuf, 1, l, fp);
296 }
297 }
298
299 if (iface->dhcpv4 == RELAYD_SERVER && iface->dhcpv4_assignments.next) {
300 struct dhcpv4_assignment *c;
301 list_for_each_entry(c, &iface->dhcpv4_assignments, head) {
302 char ipbuf[INET6_ADDRSTRLEN];
303 char leasebuf[512];
304 char duidbuf[16];
305 odhcpd_hexlify(duidbuf, c->hwaddr, sizeof(c->hwaddr));
306
307 // iface DUID iaid hostname lifetime assigned length [addrs...]
308 int l = snprintf(leasebuf, sizeof(leasebuf), "# %s %s ipv4 %s %u %x 32 ",
309 iface->ifname, duidbuf,
310 (c->hostname ? c->hostname : "-"),
311 (unsigned)(c->valid_until > now ?
312 (c->valid_until - now + wall_time) : 0),
313 c->addr);
314
315 struct in_addr addr = {htonl(c->addr)};
316 inet_ntop(AF_INET, &addr, ipbuf, sizeof(ipbuf) - 1);
317
318 if (c->hostname[0]) {
319 fputs(ipbuf, fp);
320
321 char b[256];
322 if (dn_expand(iface->search, iface->search + iface->search_len,
323 iface->search, b, sizeof(b)) > 0)
324 fprintf(fp, "\t%s.%s", c->hostname, b);
325
326 fprintf(fp, "\t%s\n", c->hostname);
327 md5_hash(ipbuf, strlen(ipbuf), &md5);
328 md5_hash(c->hostname, strlen(c->hostname), &md5);
329 }
330
331 l += snprintf(leasebuf + l, sizeof(leasebuf) - l, "%s/32 ", ipbuf);
332 leasebuf[l - 1] = '\n';
333 fwrite(leasebuf, 1, l, fp);
334 }
335 }
336 }
337
338 fclose(fp);
339 }
340
341 uint8_t newmd5[16];
342 md5_end(newmd5, &md5);
343
344 if (config.dhcp_cb && memcmp(newmd5, statemd5, sizeof(newmd5))) {
345 memcpy(statemd5, newmd5, sizeof(statemd5));
346 char *argv[2] = {config.dhcp_cb, NULL};
347 if (!vfork()) {
348 execv(argv[0], argv);
349 _exit(128);
350 }
351 }
352 }
353
354
355 static void apply_lease(struct interface *iface, struct dhcpv6_assignment *a, bool add)
356 {
357 if (a->length > 64 || a->managed_size < 0)
358 return;
359
360 struct odhcpd_ipaddr *addrs = (a->managed) ? a->managed : iface->ia_addr;
361 size_t addrlen = (a->managed) ? (size_t)a->managed_size : iface->ia_addr_len;
362
363 for (size_t i = 0; i < addrlen; ++i) {
364 struct in6_addr prefix = addrs[i].addr;
365 prefix.s6_addr32[1] |= htonl(a->assigned);
366 odhcpd_setup_route(&prefix, (a->managed_size) ? addrs[i].prefix : a->length,
367 iface, &a->peer.sin6_addr, 1024, add);
368 }
369 }
370
371
372 // More data was received from TCP connection
373 static void managed_handle_pd_data(struct ustream *s, _unused int bytes_new)
374 {
375 struct dhcpv6_assignment *c = container_of(s, struct dhcpv6_assignment, managed_sock);
376 time_t now = odhcpd_time();
377 bool first = c->managed_size < 0;
378
379 for (;;) {
380 int pending;
381 char *data = ustream_get_read_buf(s, &pending);
382 char *end = memmem(data, pending, "\n\n", 2);
383
384 if (!end)
385 break;
386
387 end += 2;
388 end[-1] = 0;
389
390 c->managed_size = 0;
391 if (c->accept_reconf)
392 c->reconf_cnt = 1;
393
394 char *saveptr;
395 for (char *line = strtok_r(data, "\n", &saveptr); line; line = strtok_r(NULL, "\n", &saveptr)) {
396 c->managed = realloc(c->managed, (c->managed_size + 1) * sizeof(*c->managed));
397 struct odhcpd_ipaddr *n = &c->managed[c->managed_size];
398
399 char *saveptr2, *x = strtok_r(line, "/", &saveptr2);
400 if (!x || inet_pton(AF_INET6, x, &n->addr) < 1)
401 continue;
402
403 x = strtok_r(NULL, ",", &saveptr2);
404 if (sscanf(x, "%hhu", &n->prefix) < 1)
405 continue;
406
407 x = strtok_r(NULL, ",", &saveptr2);
408 if (sscanf(x, "%u", &n->preferred) < 1)
409 continue;
410
411 x = strtok_r(NULL, ",", &saveptr2);
412 if (sscanf(x, "%u", &n->valid) < 1)
413 continue;
414
415 if (n->preferred > n->valid)
416 continue;
417
418 if (UINT32_MAX - now < n->preferred)
419 n->preferred = UINT32_MAX;
420 else
421 n->preferred += now;
422
423 if (UINT32_MAX - now < n->valid)
424 n->valid = UINT32_MAX;
425 else
426 n->valid += now;
427
428 n->dprefix = 0;
429
430 ++c->managed_size;
431 }
432
433 ustream_consume(s, end - data);
434 }
435
436 if (first && c->managed_size == 0)
437 free_dhcpv6_assignment(c);
438 else if (first)
439 c->valid_until = now + 150;
440 }
441
442
443 // TCP transmission has ended, either because of success or timeout or other error
444 static void managed_handle_pd_done(struct ustream *s)
445 {
446 struct dhcpv6_assignment *c = container_of(s, struct dhcpv6_assignment, managed_sock);
447 c->valid_until = odhcpd_time() + 15;
448 c->managed_size = 0;
449 if (c->accept_reconf)
450 c->reconf_cnt = 1;
451 }
452
453
454
455 static bool assign_pd(struct interface *iface, struct dhcpv6_assignment *assign)
456 {
457 struct dhcpv6_assignment *c;
458
459 if (iface->dhcpv6_pd_manager[0]) {
460 int fd = usock(USOCK_UNIX | USOCK_TCP, iface->dhcpv6_pd_manager, NULL);
461 if (fd >= 0) {
462 char iaidbuf[298];
463 odhcpd_hexlify(iaidbuf, assign->clid_data, assign->clid_len);
464
465 assign->managed_sock.stream.notify_read = managed_handle_pd_data;
466 assign->managed_sock.stream.notify_state = managed_handle_pd_done;
467 ustream_fd_init(&assign->managed_sock, fd);
468 ustream_printf(&assign->managed_sock.stream, "%s,%x\n::/%d,0,0\n\n",
469 iaidbuf, assign->iaid, assign->length);
470 ustream_write_pending(&assign->managed_sock.stream);
471 assign->managed_size = -1;
472 assign->valid_until = odhcpd_time() + 15;
473 list_add(&assign->head, &iface->ia_assignments);
474
475 // Wait initial period of up to 250ms for immediate assignment
476 struct pollfd pfd = { .fd = fd, .events = POLLIN };
477 poll(&pfd, 1, 250);
478 managed_handle_pd_data(&assign->managed_sock.stream, 0);
479
480 if (fcntl(fd, F_GETFL) >= 0 && assign->managed_size > 0)
481 return true;
482 }
483
484 return false;
485 } else if (iface->ia_addr_len < 1) {
486 return false;
487 }
488
489 // Try honoring the hint first
490 uint32_t current = 1, asize = (1 << (64 - assign->length)) - 1;
491 if (assign->assigned) {
492 list_for_each_entry(c, &iface->ia_assignments, head) {
493 if (c->length == 128 || c->length == 0)
494 continue;
495
496 if (assign->assigned >= current && assign->assigned + asize < c->assigned) {
497 list_add_tail(&assign->head, &c->head);
498 apply_lease(iface, assign, true);
499 return true;
500 }
501
502 if (c->assigned != 0)
503 current = (c->assigned + (1 << (64 - c->length)));
504 }
505 }
506
507 // Fallback to a variable assignment
508 current = 1;
509 list_for_each_entry(c, &iface->ia_assignments, head) {
510 if (c->length == 128 || c->length == 0)
511 continue;
512
513 current = (current + asize) & (~asize);
514 if (current + asize < c->assigned) {
515 assign->assigned = current;
516 list_add_tail(&assign->head, &c->head);
517 apply_lease(iface, assign, true);
518 return true;
519 }
520
521 if (c->assigned != 0)
522 current = (c->assigned + (1 << (64 - c->length)));
523 }
524
525 return false;
526 }
527
528
529 static bool assign_na(struct interface *iface, struct dhcpv6_assignment *assign)
530 {
531 // Seed RNG with checksum of DUID
532 uint32_t seed = 0;
533 for (size_t i = 0; i < assign->clid_len; ++i)
534 seed += assign->clid_data[i];
535 srand(seed);
536
537 // Try to assign up to 100x
538 for (size_t i = 0; i < 100; ++i) {
539 uint32_t try;
540 do try = ((uint32_t)rand()) % 0x0fff; while (try < 0x100);
541
542 struct dhcpv6_assignment *c;
543 list_for_each_entry(c, &iface->ia_assignments, head) {
544 if (c->length == 0)
545 continue;
546
547 if (c->assigned > try || c->length != 128) {
548 assign->assigned = try;
549 list_add_tail(&assign->head, &c->head);
550 return true;
551 } else if (c->assigned == try) {
552 break;
553 }
554 }
555 }
556
557 return false;
558 }
559
560 void dhcpv6_ia_preupdate(struct interface *iface)
561 {
562 if (iface->dhcpv6 != RELAYD_SERVER)
563 return;
564
565 struct dhcpv6_assignment *c, *border = list_last_entry(
566 &iface->ia_assignments, struct dhcpv6_assignment, head);
567 list_for_each_entry(c, &iface->ia_assignments, head)
568 if (c != border && !iface->managed)
569 apply_lease(iface, c, false);
570 }
571
572 void dhcpv6_ia_postupdate(struct interface *iface, time_t now)
573 {
574 if (iface->dhcpv6 != RELAYD_SERVER)
575 return;
576
577 int minprefix = -1;
578 for (size_t i = 0; i < iface->ia_addr_len; ++i) {
579 if (iface->ia_addr[i].preferred > (uint32_t)now &&
580 iface->ia_addr[i].prefix < 64 &&
581 iface->ia_addr[i].prefix > minprefix)
582 minprefix = iface->ia_addr[i].prefix;
583 }
584
585 struct dhcpv6_assignment *border = list_last_entry(
586 &iface->ia_assignments, struct dhcpv6_assignment, head);
587 if (minprefix > 32 && minprefix <= 64)
588 border->assigned = 1U << (64 - minprefix);
589 else
590 border->assigned = 0;
591
592 struct list_head reassign = LIST_HEAD_INIT(reassign);
593 struct dhcpv6_assignment *c, *d;
594 list_for_each_entry_safe(c, d, &iface->ia_assignments, head) {
595 if (c->clid_len == 0 || (!INFINITE_VALID(c->valid_until) && c->valid_until < now) ||
596 c->managed_size)
597 continue;
598
599 if (c->length < 128 && c->assigned >= border->assigned && c != border)
600 list_move(&c->head, &reassign);
601 else if (c != border)
602 apply_lease(iface, c, true);
603
604 if (c->accept_reconf && c->reconf_cnt == 0) {
605 c->reconf_cnt = 1;
606 c->reconf_sent = now;
607 send_reconf(iface, c);
608
609 // Leave all other assignments of that client alone
610 struct dhcpv6_assignment *a;
611 list_for_each_entry(a, &iface->ia_assignments, head)
612 if (a != c && a->clid_len == c->clid_len &&
613 !memcmp(a->clid_data, c->clid_data, a->clid_len))
614 c->reconf_cnt = INT_MAX;
615 }
616 }
617
618 while (!list_empty(&reassign)) {
619 c = list_first_entry(&reassign, struct dhcpv6_assignment, head);
620 list_del(&c->head);
621 if (!assign_pd(iface, c)) {
622 c->assigned = 0;
623 list_add(&c->head, &iface->ia_assignments);
624 }
625 }
626
627 dhcpv6_write_statefile();
628 }
629
630
631 static void reconf_timer(struct uloop_timeout *event)
632 {
633 time_t now = odhcpd_time();
634 struct interface *iface;
635 list_for_each_entry(iface, &interfaces, head) {
636 if (iface->dhcpv6 != RELAYD_SERVER || iface->ia_assignments.next == NULL)
637 continue;
638
639 struct dhcpv6_assignment *a, *n;
640 list_for_each_entry_safe(a, n, &iface->ia_assignments, head) {
641 if (!INFINITE_VALID(a->valid_until) && a->valid_until < now) {
642 if ((a->length < 128 && a->clid_len > 0) ||
643 (a->length == 128 && a->clid_len == 0)) {
644 list_del(&a->head);
645 free_dhcpv6_assignment(a);
646 }
647 } else if (a->reconf_cnt > 0 && a->reconf_cnt < 8 &&
648 now > a->reconf_sent + (1 << a->reconf_cnt)) {
649 ++a->reconf_cnt;
650 a->reconf_sent = now;
651 send_reconf(iface, a);
652 }
653 }
654 }
655 uloop_timeout_set(event, 2000);
656 }
657
658
659 static size_t append_reply(uint8_t *buf, size_t buflen, uint16_t status,
660 const struct dhcpv6_ia_hdr *ia, struct dhcpv6_assignment *a,
661 struct interface *iface, bool request)
662 {
663 if (buflen < sizeof(*ia) + sizeof(struct dhcpv6_ia_prefix))
664 return 0;
665
666 struct dhcpv6_ia_hdr out = {ia->type, 0, ia->iaid, 0, 0};
667 size_t datalen = sizeof(out);
668 time_t now = odhcpd_time();
669
670 if (status) {
671 struct __attribute__((packed)) {
672 uint16_t type;
673 uint16_t len;
674 uint16_t value;
675 } stat = {htons(DHCPV6_OPT_STATUS), htons(sizeof(stat) - 4),
676 htons(status)};
677
678 memcpy(buf + datalen, &stat, sizeof(stat));
679 datalen += sizeof(stat);
680 } else {
681 if (a) {
682 uint32_t leasetime;
683 if (a->leasetime > 0) {
684 leasetime = a->leasetime;
685 } else {
686 leasetime = iface->dhcpv4_leasetime;
687 }
688 if (leasetime == 0)
689 leasetime = 3600;
690 else if (leasetime < 60)
691 leasetime = 60;
692
693 uint32_t pref = leasetime;
694 uint32_t valid = leasetime;
695
696 struct odhcpd_ipaddr *addrs = (a->managed) ? a->managed : iface->ia_addr;
697 size_t addrlen = (a->managed) ? (size_t)a->managed_size : iface->ia_addr_len;
698 size_t m = 0;
699
700 for (size_t i = 0; i < addrlen; ++i)
701 if (addrs[i].preferred > addrs[m].preferred ||
702 (addrs[i].preferred == addrs[m].preferred &&
703 memcmp(&addrs[i].addr, &addrs[m].addr, 16) > 0))
704 m = i;
705
706 for (size_t i = 0; i < addrlen; ++i) {
707 uint32_t prefix_pref = addrs[i].preferred;
708 uint32_t prefix_valid = addrs[i].valid;
709
710 if (addrs[i].prefix > 96 ||
711 addrs[i].preferred <= (uint32_t)now)
712 continue;
713
714 if (prefix_pref != UINT32_MAX)
715 prefix_pref -= now;
716
717 if (prefix_valid != UINT32_MAX)
718 prefix_valid -= now;
719
720 if (a->length < 128) {
721 struct dhcpv6_ia_prefix p = {
722 .type = htons(DHCPV6_OPT_IA_PREFIX),
723 .len = htons(sizeof(p) - 4),
724 .preferred = htonl(prefix_pref),
725 .valid = htonl(prefix_valid),
726 .prefix = (a->managed_size) ? addrs[i].prefix : a->length,
727 .addr = addrs[i].addr
728 };
729 p.addr.s6_addr32[1] |= htonl(a->assigned);
730
731 size_t entrlen = sizeof(p) - 4;
732
733 if (datalen + entrlen + 4 > buflen ||
734 (a->assigned == 0 && a->managed_size == 0) ||
735 (!a->managed_size && a->length <= addrs[i].prefix))
736 continue;
737
738 memcpy(buf + datalen, &p, sizeof(p));
739 datalen += entrlen + 4;
740 } else {
741 struct dhcpv6_ia_addr n = {
742 .type = htons(DHCPV6_OPT_IA_ADDR),
743 .len = htons(sizeof(n) - 4),
744 .addr = addrs[i].addr,
745 .preferred = htonl(prefix_pref),
746 .valid = htonl(prefix_valid)
747 };
748 n.addr.s6_addr32[3] = htonl(a->assigned);
749 size_t entrlen = sizeof(n) - 4;
750
751 if (iface->managed < RELAYD_MANAGED_NO_AFLAG && i != m &&
752 addrs[i].prefix <= 64)
753 continue;
754
755 if (datalen + entrlen + 4 > buflen || a->assigned == 0)
756 continue;
757
758 memcpy(buf + datalen, &n, sizeof(n));
759 datalen += entrlen + 4;
760 }
761
762 // Calculate T1 / T2 based on non-deprecated addresses
763 if (prefix_pref > 0) {
764 if (prefix_pref < pref)
765 pref = prefix_pref;
766
767 if (prefix_valid < valid)
768 valid = prefix_valid;
769 }
770 }
771
772 /* UINT32_MAX is considered as infinite leasetime */
773 a->valid_until = (valid == UINT32_MAX) ? 0 : valid + now;
774 out.t1 = htonl((pref == UINT32_MAX) ? pref : pref * 5 / 10);
775 out.t2 = htonl((pref == UINT32_MAX) ? pref : pref * 8 / 10);
776
777 if (!out.t1)
778 out.t1 = htonl(1);
779
780 if (!out.t2)
781 out.t2 = htonl(1);
782 }
783
784 if (!request) {
785 uint8_t *odata, *end = ((uint8_t*)ia) + htons(ia->len) + 4;
786 uint16_t otype, olen;
787 dhcpv6_for_each_option((uint8_t*)&ia[1], end, otype, olen, odata) {
788 struct dhcpv6_ia_prefix *p = (struct dhcpv6_ia_prefix*)&odata[-4];
789 struct dhcpv6_ia_addr *n = (struct dhcpv6_ia_addr*)&odata[-4];
790 if ((otype != DHCPV6_OPT_IA_PREFIX || olen < sizeof(*p) - 4) &&
791 (otype != DHCPV6_OPT_IA_ADDR || olen < sizeof(*n) - 4))
792 continue;
793
794 bool found = false;
795 if (a) {
796 struct odhcpd_ipaddr *addrs = (a->managed) ? a->managed : iface->ia_addr;
797 size_t addrlen = (a->managed) ? (size_t)a->managed_size : iface->ia_addr_len;
798
799 for (size_t i = 0; i < addrlen; ++i) {
800 if (addrs[i].prefix > 96 ||
801 addrs[i].preferred <= (uint32_t)now)
802 continue;
803
804 struct in6_addr addr = addrs[i].addr;
805 if (ia->type == htons(DHCPV6_OPT_IA_PD)) {
806 addr.s6_addr32[1] |= htonl(a->assigned);
807
808 if (!memcmp(&p->addr, &addr, sizeof(addr)) &&
809 p->prefix == ((a->managed) ? addrs[i].prefix : a->length))
810 found = true;
811 } else {
812 addr.s6_addr32[3] = htonl(a->assigned);
813
814 if (!memcmp(&n->addr, &addr, sizeof(addr)))
815 found = true;
816 }
817 }
818 }
819
820 if (!found) {
821 if (otype == DHCPV6_OPT_IA_PREFIX) {
822 struct dhcpv6_ia_prefix inv = {
823 .type = htons(DHCPV6_OPT_IA_PREFIX),
824 .len = htons(sizeof(inv) - 4),
825 .preferred = 0,
826 .valid = 0,
827 .prefix = p->prefix,
828 .addr = p->addr
829 };
830
831 if (datalen + sizeof(inv) > buflen)
832 continue;
833
834 memcpy(buf + datalen, &inv, sizeof(inv));
835 datalen += sizeof(inv);
836 } else {
837 struct dhcpv6_ia_addr inv = {
838 .type = htons(DHCPV6_OPT_IA_ADDR),
839 .len = htons(sizeof(inv) - 4),
840 .addr = n->addr,
841 .preferred = 0,
842 .valid = 0
843 };
844
845 if (datalen + sizeof(inv) > buflen)
846 continue;
847
848 memcpy(buf + datalen, &inv, sizeof(inv));
849 datalen += sizeof(inv);
850 }
851 }
852 }
853 }
854 }
855
856 out.len = htons(datalen - 4);
857 memcpy(buf, &out, sizeof(out));
858 return datalen;
859 }
860
861
862 static void dhcpv6_log(uint8_t msgtype, struct interface *iface, time_t now,
863 const char *duidbuf, bool is_pd, struct dhcpv6_assignment *a, int code)
864 {
865 const char *type = "UNKNOWN";
866 const char *status = "UNKNOWN";
867
868 if (msgtype == DHCPV6_MSG_RENEW)
869 return;
870
871 switch (msgtype) {
872 case DHCPV6_MSG_SOLICIT:
873 type = "SOLICIT";
874 break;
875 case DHCPV6_MSG_REQUEST:
876 type = "REQUEST";
877 break;
878 case DHCPV6_MSG_CONFIRM:
879 type = "CONFIRM";
880 break;
881 case DHCPV6_MSG_RENEW:
882 type = "RENEW";
883 break;
884 case DHCPV6_MSG_REBIND:
885 type = "REBIND";
886 break;
887 case DHCPV6_MSG_RELEASE:
888 type = "RELEASE";
889 break;
890 case DHCPV6_MSG_DECLINE:
891 type = "DECLINE";
892 break;
893 }
894
895 switch (code) {
896 case DHCPV6_STATUS_OK:
897 status = "ok";
898 break;
899 case DHCPV6_STATUS_NOADDRSAVAIL:
900 status = "no addresses available";
901 break;
902 case DHCPV6_STATUS_NOBINDING:
903 status = "no binding";
904 break;
905 case DHCPV6_STATUS_NOTONLINK:
906 status = "not on-link";
907 break;
908 case DHCPV6_STATUS_NOPREFIXAVAIL:
909 status = "no prefix available";
910 break;
911 }
912
913 char leasebuf[256] = "";
914
915 if (a) {
916 struct odhcpd_ipaddr *addrs = (a->managed) ? a->managed : iface->ia_addr;
917 size_t addrlen = (a->managed) ? (size_t)a->managed_size : iface->ia_addr_len;
918 size_t lbsize = 0;
919 char addrbuf[INET6_ADDRSTRLEN];
920
921 for (size_t i = 0; i < addrlen; ++i) {
922 if (addrs[i].prefix > 96 || addrs[i].preferred <= (uint32_t)now)
923 continue;
924
925 struct in6_addr addr = addrs[i].addr;
926 int prefix = a->managed ? addrs[i].prefix : a->length;
927 if (prefix == 128)
928 addr.s6_addr32[3] = htonl(a->assigned);
929 else
930 addr.s6_addr32[1] |= htonl(a->assigned);
931
932 inet_ntop(AF_INET6, &addr, addrbuf, sizeof(addrbuf));
933 lbsize += snprintf(leasebuf + lbsize, sizeof(leasebuf) - lbsize, "%s/%d ", addrbuf, prefix);
934 }
935 }
936
937 syslog(LOG_WARNING, "DHCPV6 %s %s from %s on %s: %s %s", type, (is_pd) ? "IA_PD" : "IA_NA",
938 duidbuf, iface->ifname, status, leasebuf);
939 }
940
941
942
943 ssize_t dhcpv6_handle_ia(uint8_t *buf, size_t buflen, struct interface *iface,
944 const struct sockaddr_in6 *addr, const void *data, const uint8_t *end)
945 {
946 time_t now = odhcpd_time();
947 size_t response_len = 0;
948 const struct dhcpv6_client_header *hdr = data;
949 uint8_t *start = (uint8_t*)&hdr[1], *odata;
950 uint16_t otype, olen;
951
952 // Find and parse client-id and hostname
953 bool accept_reconf = false;
954 uint8_t *clid_data = NULL, clid_len = 0, mac[6] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
955 char hostname[256];
956 size_t hostname_len = 0;
957 bool notonlink = false;
958 char duidbuf[261];
959
960 dhcpv6_for_each_option(start, end, otype, olen, odata) {
961 if (otype == DHCPV6_OPT_CLIENTID) {
962 clid_data = odata;
963 clid_len = olen;
964
965 if (olen == 14 && odata[0] == 0 && odata[1] == 1)
966 memcpy(mac, &odata[8], sizeof(mac));
967 else if (olen == 10 && odata[0] == 0 && odata[1] == 3)
968 memcpy(mac, &odata[4], sizeof(mac));
969
970 if (olen <= 130)
971 odhcpd_hexlify(duidbuf, odata, olen);
972 } else if (otype == DHCPV6_OPT_FQDN && olen >= 2 && olen <= 255) {
973 uint8_t fqdn_buf[256];
974 memcpy(fqdn_buf, odata, olen);
975 fqdn_buf[olen++] = 0;
976
977 if (dn_expand(&fqdn_buf[1], &fqdn_buf[olen], &fqdn_buf[1], hostname, sizeof(hostname)) > 0)
978 hostname_len = strcspn(hostname, ".");
979 } else if (otype == DHCPV6_OPT_RECONF_ACCEPT) {
980 accept_reconf = true;
981 }
982 }
983
984 if (!clid_data || !clid_len || clid_len > 130)
985 goto out;
986
987 struct dhcpv6_assignment *first = NULL;
988 dhcpv6_for_each_option(start, end, otype, olen, odata) {
989 bool is_pd = (otype == DHCPV6_OPT_IA_PD);
990 bool is_na = (otype == DHCPV6_OPT_IA_NA);
991 bool ia_addr_present = false;
992 if (!is_pd && !is_na)
993 continue;
994
995 struct dhcpv6_ia_hdr *ia = (struct dhcpv6_ia_hdr*)&odata[-4];
996 size_t ia_response_len = 0;
997 uint8_t reqlen = (is_pd) ? 62 : 128;
998 uint32_t reqhint = 0;
999
1000 // Parse request hint for IA-PD
1001 if (is_pd) {
1002 uint8_t *sdata;
1003 uint16_t stype, slen;
1004 dhcpv6_for_each_option(&ia[1], odata + olen, stype, slen, sdata) {
1005 if (stype != DHCPV6_OPT_IA_PREFIX || slen < sizeof(struct dhcpv6_ia_prefix) - 4)
1006 continue;
1007
1008 struct dhcpv6_ia_prefix *p = (struct dhcpv6_ia_prefix*)&sdata[-4];
1009 if (p->prefix) {
1010 reqlen = p->prefix;
1011 reqhint = ntohl(p->addr.s6_addr32[1]);
1012 if (reqlen > 32 && reqlen <= 64)
1013 reqhint &= (1U << (64 - reqlen)) - 1;
1014 }
1015 }
1016
1017 if (reqlen > 64)
1018 reqlen = 64;
1019 } else if (is_na) {
1020 uint8_t *sdata;
1021 uint16_t stype, slen;
1022 dhcpv6_for_each_option(&ia[1], odata + olen, stype, slen, sdata) {
1023 if (stype != DHCPV6_OPT_IA_ADDR || slen < sizeof(struct dhcpv6_ia_addr) - 4)
1024 continue;
1025
1026 ia_addr_present = true;
1027 }
1028 }
1029
1030 // Find assignment
1031 struct dhcpv6_assignment *c, *a = NULL;
1032 list_for_each_entry(c, &iface->ia_assignments, head) {
1033 if (((c->clid_len == clid_len && !memcmp(c->clid_data, clid_data, clid_len)) ||
1034 (c->clid_len >= clid_len && !c->clid_data[0] && !c->clid_data[1]
1035 && !memcmp(c->mac, mac, sizeof(mac)))) &&
1036 (c->iaid == ia->iaid || (!INFINITE_VALID(c->valid_until) && c->valid_until < now)) &&
1037 ((is_pd && c->length <= 64) || (is_na && c->length == 128))) {
1038 a = c;
1039
1040 // Reset state
1041 apply_lease(iface, a, false);
1042 memcpy(a->clid_data, clid_data, clid_len);
1043 a->clid_len = clid_len;
1044 a->iaid = ia->iaid;
1045 a->peer = *addr;
1046 a->reconf_cnt = 0;
1047 a->reconf_sent = 0;
1048 break;
1049 }
1050 }
1051
1052 // Generic message handling
1053 uint16_t status = DHCPV6_STATUS_OK;
1054 if (a && a->managed_size < 0) {
1055 return -1;
1056 } else if (hdr->msg_type == DHCPV6_MSG_SOLICIT || hdr->msg_type == DHCPV6_MSG_REQUEST) {
1057 bool assigned = !!a;
1058
1059 if (!a && !iface->no_dynamic_dhcp) { // Create new binding
1060 a = calloc(1, sizeof(*a) + clid_len);
1061 if (a) {
1062 a->clid_len = clid_len;
1063 a->iaid = ia->iaid;
1064 a->length = reqlen;
1065 a->peer = *addr;
1066 a->assigned = reqhint;
1067
1068 if (first)
1069 memcpy(a->key, first->key, sizeof(a->key));
1070 else
1071 odhcpd_urandom(a->key, sizeof(a->key));
1072 memcpy(a->clid_data, clid_data, clid_len);
1073
1074 if (is_pd)
1075 while (!(assigned = assign_pd(iface, a)) &&
1076 !a->managed_size && ++a->length <= 64);
1077 else
1078 assigned = assign_na(iface, a);
1079
1080 if (a->managed_size && !assigned)
1081 return -1;
1082 }
1083 }
1084
1085 if (!assigned || iface->ia_addr_len == 0) { // Set error status
1086 status = (is_pd) ? DHCPV6_STATUS_NOPREFIXAVAIL : DHCPV6_STATUS_NOADDRSAVAIL;
1087 } else if (assigned && !first) { //
1088 size_t handshake_len = 4;
1089 buf[0] = 0;
1090 buf[1] = DHCPV6_OPT_RECONF_ACCEPT;
1091 buf[2] = 0;
1092 buf[3] = 0;
1093
1094 if (hdr->msg_type == DHCPV6_MSG_REQUEST) {
1095 struct dhcpv6_auth_reconfigure auth = {
1096 htons(DHCPV6_OPT_AUTH),
1097 htons(sizeof(auth) - 4),
1098 3, 1, 0,
1099 {htonl(time(NULL)), htonl(++serial)},
1100 1,
1101 {0}
1102 };
1103 memcpy(auth.key, a->key, sizeof(a->key));
1104 memcpy(buf + handshake_len, &auth, sizeof(auth));
1105 handshake_len += sizeof(auth);
1106 }
1107
1108 buf += handshake_len;
1109 buflen -= handshake_len;
1110 response_len += handshake_len;
1111
1112 first = a;
1113 }
1114
1115 ia_response_len = append_reply(buf, buflen, status, ia, a, iface, true);
1116
1117 // Was only a solicitation: mark binding for removal
1118 if (assigned && hdr->msg_type == DHCPV6_MSG_SOLICIT) {
1119 a->valid_until = now;
1120 } else if (assigned && hdr->msg_type == DHCPV6_MSG_REQUEST) {
1121 if (hostname_len > 0) {
1122 a->hostname = realloc(a->hostname, hostname_len + 1);
1123 if (a->hostname) {
1124 memcpy(a->hostname, hostname, hostname_len);
1125 a->hostname[hostname_len] = 0;
1126 }
1127 }
1128 a->accept_reconf = accept_reconf;
1129 apply_lease(iface, a, true);
1130 } else if (!assigned && a && a->managed_size == 0) { // Cleanup failed assignment
1131 free_dhcpv6_assignment(a);
1132 }
1133 } else if (hdr->msg_type == DHCPV6_MSG_RENEW ||
1134 hdr->msg_type == DHCPV6_MSG_RELEASE ||
1135 hdr->msg_type == DHCPV6_MSG_REBIND ||
1136 hdr->msg_type == DHCPV6_MSG_DECLINE) {
1137 if (!a && hdr->msg_type != DHCPV6_MSG_REBIND) {
1138 status = DHCPV6_STATUS_NOBINDING;
1139 ia_response_len = append_reply(buf, buflen, status, ia, a, iface, false);
1140 } else if (hdr->msg_type == DHCPV6_MSG_RENEW ||
1141 hdr->msg_type == DHCPV6_MSG_REBIND) {
1142 ia_response_len = append_reply(buf, buflen, status, ia, a, iface, false);
1143 if (a)
1144 apply_lease(iface, a, true);
1145 } else if (hdr->msg_type == DHCPV6_MSG_RELEASE) {
1146 a->valid_until = now - 1;
1147 apply_lease(iface, a, false);
1148 } else if (hdr->msg_type == DHCPV6_MSG_DECLINE && a->length == 128) {
1149 a->clid_len = 0;
1150 a->valid_until = now + 3600; // Block address for 1h
1151 }
1152 } else if (hdr->msg_type == DHCPV6_MSG_CONFIRM && ia_addr_present) {
1153 // Send NOTONLINK for CONFIRM with addr present so that clients restart connection
1154 status = DHCPV6_STATUS_NOTONLINK;
1155 ia_response_len = append_reply(buf, buflen, status, ia, a, iface, true);
1156 notonlink = true;
1157 }
1158
1159 buf += ia_response_len;
1160 buflen -= ia_response_len;
1161 response_len += ia_response_len;
1162 dhcpv6_log(hdr->msg_type, iface, now, duidbuf, is_pd, a, status);
1163 }
1164
1165 if ((hdr->msg_type == DHCPV6_MSG_RELEASE || hdr->msg_type == DHCPV6_MSG_DECLINE || notonlink) &&
1166 response_len + 6 < buflen) {
1167 buf[0] = 0;
1168 buf[1] = DHCPV6_OPT_STATUS;
1169 buf[2] = 0;
1170 buf[3] = 2;
1171 buf[4] = 0;
1172 buf[5] = (notonlink) ? DHCPV6_STATUS_NOTONLINK : DHCPV6_STATUS_OK;
1173 response_len += 6;
1174 }
1175
1176 dhcpv6_write_statefile();
1177
1178 out:
1179 return response_len;
1180 }