]> git.decadent.org.uk Git - odhcp6c.git/blob - src/dhcpv6.c
Add support for DS-Lite AFTR
[odhcp6c.git] / src / dhcpv6.c
1 /**
2  * Copyright (C) 2012-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 <time.h>
16 #include <fcntl.h>
17 #include <errno.h>
18 #include <stdlib.h>
19 #include <signal.h>
20 #include <limits.h>
21 #include <resolv.h>
22 #include <string.h>
23 #include <unistd.h>
24 #include <syslog.h>
25 #include <stdbool.h>
26 #include <sys/time.h>
27 #include <sys/ioctl.h>
28 #include <sys/socket.h>
29 #include <netinet/in.h>
30
31 #include <net/if.h>
32 #include <net/ethernet.h>
33
34 #include "odhcp6c.h"
35 #include "md5.h"
36
37
38 #define ALL_DHCPV6_RELAYS {{{0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\
39                 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02}}}
40 #define DHCPV6_CLIENT_PORT 546
41 #define DHCPV6_SERVER_PORT 547
42 #define DHCPV6_DUID_LLADDR 3
43 #define DHCPV6_REQ_DELAY 1
44
45
46 static bool dhcpv6_response_is_valid(const void *buf, ssize_t len,
47                 const uint8_t transaction[3], enum dhcpv6_msg type);
48
49 static uint32_t dhcpv6_parse_ia(void *opt, void *end);
50
51 static reply_handler dhcpv6_handle_reply;
52 static reply_handler dhcpv6_handle_advert;
53 static reply_handler dhcpv6_handle_rebind_reply;
54 static reply_handler dhcpv6_handle_reconfigure;
55 static int dhcpv6_commit_advert(void);
56
57
58
59 // RFC 3315 - 5.5 Timeout and Delay values
60 static struct dhcpv6_retx dhcpv6_retx[_DHCPV6_MSG_MAX] = {
61         [DHCPV6_MSG_UNKNOWN] = {false, 1, 120, "<POLL>",
62                         dhcpv6_handle_reconfigure, NULL},
63         [DHCPV6_MSG_SOLICIT] = {true, 1, 3600, "SOLICIT",
64                         dhcpv6_handle_advert, dhcpv6_commit_advert},
65         [DHCPV6_MSG_REQUEST] = {true, 30, 10, "REQUEST",
66                         dhcpv6_handle_reply, NULL},
67         [DHCPV6_MSG_RENEW] = {false, 10, 600, "RENEW",
68                         dhcpv6_handle_reply, NULL},
69         [DHCPV6_MSG_REBIND] = {false, 10, 600, "REBIND",
70                         dhcpv6_handle_rebind_reply, NULL},
71         [DHCPV6_MSG_RELEASE] = {false, 1, 600, "RELEASE", NULL, NULL},
72         [DHCPV6_MSG_DECLINE] = {false, 1, 3, "DECLINE", NULL, NULL},
73         [DHCPV6_MSG_INFO_REQ] = {true, 1, 120, "INFOREQ",
74                         dhcpv6_handle_reply, NULL},
75 };
76
77
78 // Sockets
79 static int sock = -1;
80 static int ifindex = -1;
81 static int64_t t1 = 0, t2 = 0, t3 = 0;
82
83 // IA states
84 static int request_prefix = -1;
85 static enum odhcp6c_ia_mode na_mode = IA_MODE_NONE;
86 static bool accept_reconfig = false;
87
88 // Reconfigure key
89 static uint8_t reconf_key[16];
90
91
92
93 int init_dhcpv6(const char *ifname, int request_pd)
94 {
95         request_prefix = request_pd;
96
97         sock = socket(AF_INET6, SOCK_DGRAM | SOCK_CLOEXEC, IPPROTO_UDP);
98
99         // Detect interface
100         struct ifreq ifr;
101         strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name));
102         if (ioctl(sock, SIOCGIFINDEX, &ifr))
103                 return -1;
104         ifindex = ifr.ifr_ifindex;
105
106         // Create client DUID
107         size_t client_id_len;
108         odhcp6c_get_state(STATE_CLIENT_ID, &client_id_len);
109         if (client_id_len == 0) {
110                 ioctl(sock, SIOCGIFHWADDR, &ifr);
111                 uint8_t duid[14] = {0, DHCPV6_OPT_CLIENTID, 0, 10, 0,
112                                 DHCPV6_DUID_LLADDR, 0, 1};
113                 memcpy(&duid[8], ifr.ifr_hwaddr.sa_data, ETHER_ADDR_LEN);
114
115                 uint8_t zero[ETHER_ADDR_LEN] = {0, 0, 0, 0, 0, 0};
116                 struct ifreq ifs[100], *ifp, *ifend;
117                 struct ifconf ifc;
118                 ifc.ifc_req = ifs;
119                 ifc.ifc_len = sizeof(ifs);
120
121                 if (!memcmp(&duid[8], zero, ETHER_ADDR_LEN) &&
122                                 ioctl(sock, SIOCGIFCONF, &ifc) >= 0) {
123                         // If our interface doesn't have an address...
124                         ifend = ifs + (ifc.ifc_len / sizeof(struct ifreq));
125                         for (ifp = ifc.ifc_req; ifp < ifend &&
126                                         !memcmp(&duid[8], zero, 6); ifp++) {
127                                 memcpy(ifr.ifr_name, ifp->ifr_name,
128                                                 sizeof(ifr.ifr_name));
129                                 ioctl(sock, SIOCGIFHWADDR, &ifr);
130                                 memcpy(&duid[8], ifr.ifr_hwaddr.sa_data,
131                                                 ETHER_ADDR_LEN);
132                         }
133                 }
134
135                 odhcp6c_add_state(STATE_CLIENT_ID, duid, sizeof(duid));
136         }
137
138         // Create ORO
139         uint16_t oro[] = {
140                         htons(DHCPV6_OPT_SIP_SERVER_D),
141                         htons(DHCPV6_OPT_SIP_SERVER_A),
142                         htons(DHCPV6_OPT_DNS_SERVERS),
143                         htons(DHCPV6_OPT_DNS_DOMAIN),
144                         htons(DHCPV6_OPT_NTP_SERVER),
145                         htons(DHCPV6_OPT_AFTR_NAME),
146                         htons(DHCPV6_OPT_PD_EXCLUDE),
147         };
148         odhcp6c_add_state(STATE_ORO, oro, sizeof(oro));
149
150
151         // Configure IPv6-options
152         int val = 1;
153         setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, &val, sizeof(val));
154         setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &val, sizeof(val));
155         setsockopt(sock, SOL_SOCKET, SO_BINDTODEVICE, ifname, strlen(ifname));
156
157         struct sockaddr_in6 client_addr = { .sin6_family = AF_INET6,
158                 .sin6_port = htons(DHCPV6_CLIENT_PORT), .sin6_flowinfo = 0 };
159         if (bind(sock, (struct sockaddr*)&client_addr, sizeof(client_addr)))
160                 return -1;
161
162         return 0;
163 }
164
165
166 void dhcpv6_set_ia_na_mode(enum odhcp6c_ia_mode mode)
167 {
168         na_mode = mode;
169 }
170
171
172 static void dhcpv6_send(enum dhcpv6_msg type, uint8_t trid[3], uint32_t ecs)
173 {
174         // Build FQDN
175         char fqdn_buf[256];
176         gethostname(fqdn_buf, sizeof(fqdn_buf));
177         struct {
178                 uint16_t type;
179                 uint16_t len;
180                 uint8_t flags;
181                 uint8_t data[256];
182         } fqdn;
183         size_t fqdn_len = 5 + dn_comp(fqdn_buf, fqdn.data,
184                         sizeof(fqdn.data), NULL, NULL);
185         fqdn.type = htons(DHCPV6_OPT_FQDN);
186         fqdn.len = htons(fqdn_len - 4);
187         fqdn.flags = 0;
188
189
190         // Build Client ID
191         size_t cl_id_len;
192         void *cl_id = odhcp6c_get_state(STATE_CLIENT_ID, &cl_id_len);
193
194         // Get Server ID
195         size_t srv_id_len;
196         void *srv_id = odhcp6c_get_state(STATE_SERVER_ID, &srv_id_len);
197
198         // Build IA_PDs
199         size_t ia_pd_entries, ia_pd_len = 0;
200         struct odhcp6c_entry *e = odhcp6c_get_state(STATE_IA_PD, &ia_pd_entries);
201         ia_pd_entries /= sizeof(*e);
202         struct dhcpv6_ia_hdr hdr_ia_pd = {
203                 htons(DHCPV6_OPT_IA_PD),
204                 htons(sizeof(hdr_ia_pd) - 4),
205                 1, 0, 0
206         };
207
208
209         uint8_t *ia_pd = alloca(ia_pd_entries * (sizeof(struct dhcpv6_ia_prefix) + 10));
210         for (size_t i = 0; i < ia_pd_entries; ++i) {
211                 uint8_t ex_len = 0;
212                 if (e[i].priority > 0)
213                         ex_len = ((e[i].priority - e[i].length - 1) / 8) + 6;
214
215                 struct dhcpv6_ia_prefix p = {
216                         .type = htons(DHCPV6_OPT_IA_PREFIX),
217                         .len = htons(sizeof(p) - 4U + ex_len),
218                         .prefix = e[i].length,
219                         .addr = e[i].target
220                 };
221
222                 memcpy(ia_pd + ia_pd_len, &p, sizeof(p));
223                 ia_pd_len += sizeof(p);
224
225                 if (ex_len) {
226                         ia_pd[ia_pd_len++] = 0;
227                         ia_pd[ia_pd_len++] = DHCPV6_OPT_PD_EXCLUDE;
228                         ia_pd[ia_pd_len++] = 0;
229                         ia_pd[ia_pd_len++] = ex_len - 4;
230                         ia_pd[ia_pd_len++] = e[i].priority;
231
232                         uint32_t excl = ntohl(e[i].router.s6_addr32[1]);
233                         excl >>= (64 - e[i].priority);
234                         excl <<= 8 - ((e[i].priority - e[i].length) % 8);
235
236                         for (size_t i = ex_len - 5; i > 0; --i, excl >>= 8)
237                                 ia_pd[ia_pd_len + i] = excl & 0xff;
238                         ia_pd_len += ex_len - 5;
239                 }
240         }
241
242         struct dhcpv6_ia_prefix pref = {
243                 .type = htons(DHCPV6_OPT_IA_PREFIX),
244                 .len = htons(25), .prefix = request_prefix
245         };
246         if (request_prefix > 0 && ia_pd_len == 0 &&
247                         (type == DHCPV6_MSG_SOLICIT ||
248                         type == DHCPV6_MSG_REQUEST)) {
249                 ia_pd = (uint8_t*)&pref;
250                 ia_pd_len = sizeof(pref);
251         }
252         hdr_ia_pd.len = htons(ntohs(hdr_ia_pd.len) + ia_pd_len);
253
254         // Build IA_NAs
255         size_t ia_na_entries, ia_na_len = 0;
256         void *ia_na = NULL;
257         e = odhcp6c_get_state(STATE_IA_NA, &ia_na_entries);
258         ia_na_entries /= sizeof(*e);
259
260         struct dhcpv6_ia_hdr hdr_ia_na = {
261                 htons(DHCPV6_OPT_IA_NA),
262                 htons(sizeof(hdr_ia_na) - 4),
263                 1, 0, 0
264         };
265
266         struct dhcpv6_ia_addr pa[ia_na_entries];
267         for (size_t i = 0; i < ia_na_entries; ++i) {
268                 pa[i].type = htons(DHCPV6_OPT_IA_ADDR);
269                 pa[i].len = htons(sizeof(pa[i]) - 4U);
270                 pa[i].addr = e[i].target;
271                 pa[i].preferred = 0;
272                 pa[i].valid = 0;
273         }
274
275         ia_na = pa;
276         ia_na_len = sizeof(pa);
277         hdr_ia_na.len = htons(ntohs(hdr_ia_na.len) + ia_na_len);
278
279         // Reconfigure Accept
280         struct {
281                 uint16_t type;
282                 uint16_t length;
283         } reconf_accept = {htons(DHCPV6_OPT_RECONF_ACCEPT), 0};
284
285         // Request Information Refresh
286         uint16_t oro_refresh = htons(DHCPV6_OPT_INFO_REFRESH);
287
288         // Prepare Header
289         size_t oro_len;
290         void *oro = odhcp6c_get_state(STATE_ORO, &oro_len);
291         struct {
292                 uint8_t type;
293                 uint8_t trid[3];
294                 uint16_t elapsed_type;
295                 uint16_t elapsed_len;
296                 uint16_t elapsed_value;
297                 uint16_t oro_type;
298                 uint16_t oro_len;
299         } hdr = {
300                 type, {trid[0], trid[1], trid[2]},
301                 htons(DHCPV6_OPT_ELAPSED), htons(2),
302                         htons((ecs > 0xffff) ? 0xffff : ecs),
303                 htons(DHCPV6_OPT_ORO), htons(oro_len),
304         };
305
306         struct iovec iov[] = {
307                 {&hdr, sizeof(hdr)},
308                 {oro, oro_len},
309                 {&oro_refresh, 0},
310                 {cl_id, cl_id_len},
311                 {srv_id, srv_id_len},
312                 {&reconf_accept, 0},
313                 {&fqdn, fqdn_len},
314                 {&hdr_ia_na, sizeof(hdr_ia_na)},
315                 {ia_na, ia_na_len},
316                 {&hdr_ia_pd, sizeof(hdr_ia_pd)},
317                 {ia_pd, ia_pd_len},
318         };
319
320         size_t cnt = ARRAY_SIZE(iov);
321         if (type == DHCPV6_MSG_INFO_REQ) {
322                 cnt = 5;
323                 iov[2].iov_len = sizeof(oro_refresh);
324                 hdr.oro_len = htons(oro_len + sizeof(oro_refresh));
325         } else if (!request_prefix) {
326                 cnt = 9;
327         }
328
329         // Disable IAs if not used
330         if (type == DHCPV6_MSG_SOLICIT) {
331                 iov[5].iov_len = sizeof(reconf_accept);
332         } else if (type != DHCPV6_MSG_REQUEST) {
333                 if (ia_na_len == 0)
334                         iov[7].iov_len = 0;
335                 if (ia_pd_len == 0)
336                         iov[9].iov_len = 0;
337         }
338
339         if (na_mode == IA_MODE_NONE)
340                 iov[7].iov_len = 0;
341
342         struct sockaddr_in6 srv = {AF_INET6, htons(DHCPV6_SERVER_PORT),
343                 0, ALL_DHCPV6_RELAYS, ifindex};
344         struct msghdr msg = {&srv, sizeof(srv), iov, cnt, NULL, 0, 0};
345
346         sendmsg(sock, &msg, 0);
347 }
348
349
350 static int64_t dhcpv6_rand_delay(int64_t time)
351 {
352         int random;
353         odhcp6c_random(&random, sizeof(random));
354         return (time * (random % 1000)) / 10000;
355 }
356
357
358 int dhcpv6_request(enum dhcpv6_msg type)
359 {
360         uint8_t buf[1536];
361         uint32_t timeout = UINT32_MAX;
362         struct dhcpv6_retx *retx = &dhcpv6_retx[type];
363
364         if (retx->delay) {
365                 struct timespec ts = {0, 0};
366                 ts.tv_nsec = dhcpv6_rand_delay(10 * DHCPV6_REQ_DELAY);
367                 nanosleep(&ts, NULL);
368         }
369
370         if (type == DHCPV6_MSG_RELEASE || type == DHCPV6_MSG_DECLINE)
371                 timeout = 3;
372         else if (type == DHCPV6_MSG_UNKNOWN)
373                 timeout = t1;
374         else if (type == DHCPV6_MSG_RENEW)
375                 timeout = t2 - t1;
376         else if (type == DHCPV6_MSG_REBIND)
377                 timeout = t3 - t2;
378
379         if (timeout == 0)
380                 return -1;
381
382         syslog(LOG_NOTICE, "Sending %s (timeout %us)", retx->name, timeout);
383
384         uint64_t start = odhcp6c_get_milli_time(), round_start = start, elapsed;
385
386         // Generate transaction ID
387         uint8_t trid[3] = {0, 0, 0};
388         if (type != DHCPV6_MSG_UNKNOWN)
389                 odhcp6c_random(trid, sizeof(trid));
390         ssize_t len = -1;
391         int64_t rto = 0;
392
393         do {
394                 rto = (rto == 0) ? (retx->init_timeo * 1000 +
395                                 dhcpv6_rand_delay(retx->init_timeo * 1000)) :
396                                 (2 * rto + dhcpv6_rand_delay(rto));
397
398                 if (rto >= retx->max_timeo * 1000)
399                         rto = retx->max_timeo * 1000 +
400                                 dhcpv6_rand_delay(retx->max_timeo * 1000);
401
402                 // Calculate end for this round and elapsed time
403                 uint64_t round_end = round_start + rto;
404                 elapsed = round_start - start;
405
406                 // Don't wait too long
407                 if (round_end - start > timeout * 1000)
408                         round_end = timeout * 1000 + start;
409
410                 // Built and send package
411                 if (type != DHCPV6_MSG_UNKNOWN)
412                         dhcpv6_send(type, trid, elapsed / 10);
413
414                 // Receive rounds
415                 for (; len < 0 && round_start < round_end;
416                                 round_start = odhcp6c_get_milli_time()) {
417                         // Check for pending signal
418                         if (odhcp6c_signal_process())
419                                 return -1;
420
421                         // Set timeout for receiving
422                         uint64_t t = round_end - round_start;
423                         struct timeval timeout = {t / 1000, (t % 1000) * 1000};
424                         setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO,
425                                         &timeout, sizeof(timeout));
426
427                         // Receive cycle
428                         len = recv(sock, buf, sizeof(buf), 0);
429
430                         if (!dhcpv6_response_is_valid(buf, len, trid, type))
431                                 len = -1;
432
433                         if (len > 0) {
434                                 uint8_t *opt = &buf[4];
435                                 uint8_t *opt_end = opt + len - 4;
436
437                                 round_start = odhcp6c_get_milli_time();
438                                 elapsed = round_start - start;
439                                 syslog(LOG_NOTICE, "Got a valid reply after "
440                                                 "%ums", (unsigned)elapsed);
441
442                                 if (retx->handler_reply)
443                                         len = retx->handler_reply(
444                                                         type, opt, opt_end);
445
446                                 if (round_end - round_start > 1000)
447                                         round_end = 1000 + round_start;
448                         }
449                 }
450
451                 // Allow
452                 if (retx->handler_finish)
453                         len = retx->handler_finish();
454         } while (len < 0 && elapsed / 1000 < timeout);
455
456         return len;
457 }
458
459
460 static bool dhcpv6_response_is_valid(const void *buf, ssize_t len,
461                 const uint8_t transaction[3], enum dhcpv6_msg type)
462 {
463         const struct dhcpv6_header *rep = buf;
464         if (len < (ssize_t)sizeof(*rep) || memcmp(rep->tr_id,
465                         transaction, sizeof(rep->tr_id)))
466                 return false; // Invalid reply
467
468         if (type == DHCPV6_MSG_SOLICIT) {
469                 if (rep->msg_type != DHCPV6_MSG_ADVERT &&
470                                 rep->msg_type != DHCPV6_MSG_REPLY)
471                         return false;
472         } else if (type == DHCPV6_MSG_UNKNOWN) {
473                 if (!accept_reconfig || rep->msg_type != DHCPV6_MSG_RECONF)
474                         return false;
475         } else if (rep->msg_type != DHCPV6_MSG_REPLY) {
476                 return false;
477         }
478
479         uint8_t *end = ((uint8_t*)buf) + len, *odata;
480         uint16_t otype, olen;
481         bool clientid_ok = false, serverid_ok = false, rcauth_ok = false;
482
483         size_t client_id_len, server_id_len;
484         void *client_id = odhcp6c_get_state(STATE_CLIENT_ID, &client_id_len);
485         void *server_id = odhcp6c_get_state(STATE_SERVER_ID, &server_id_len);
486
487         dhcpv6_for_each_option(&rep[1], end, otype, olen, odata) {
488                 if (otype == DHCPV6_OPT_CLIENTID) {
489                         clientid_ok = (olen + 4U == client_id_len) && !memcmp(
490                                         &odata[-4], client_id, client_id_len);
491                 } else if (otype == DHCPV6_OPT_SERVERID) {
492                         serverid_ok = (olen + 4U == server_id_len) && !memcmp(
493                                         &odata[-4], server_id, server_id_len);
494                 } else if (otype == DHCPV6_OPT_AUTH && olen == -4 +
495                                 sizeof(struct dhcpv6_auth_reconfigure)) {
496                         struct dhcpv6_auth_reconfigure *r = (void*)&odata[-4];
497                         if (r->protocol != 3 || r->algorithm != 1 || r->reconf_type != 2)
498                                 continue;
499
500                         md5_state_t md5;
501                         uint8_t serverhash[16], secretbytes[16], hash[16];
502                         memcpy(serverhash, r->key, sizeof(serverhash));
503                         memset(r->key, 0, sizeof(r->key));
504                         memcpy(secretbytes, reconf_key, sizeof(secretbytes));
505
506                         for (size_t i = 0; i < sizeof(secretbytes); ++i)
507                                 secretbytes[i] ^= 0x36;
508
509                         md5_init(&md5);
510                         md5_append(&md5, secretbytes, sizeof(secretbytes));
511                         md5_append(&md5, buf, len);
512                         md5_finish(&md5, hash);
513
514                         for (size_t i = 0; i < sizeof(secretbytes); ++i) {
515                                 secretbytes[i] ^= 0x36;
516                                 secretbytes[i] ^= 0x5c;
517                         }
518
519                         md5_init(&md5);
520                         md5_append(&md5, secretbytes, sizeof(secretbytes));
521                         md5_append(&md5, hash, 16);
522                         md5_finish(&md5, hash);
523
524                         rcauth_ok = !memcmp(hash, serverhash, sizeof(hash));
525                 }
526         }
527
528         if (rep->msg_type == DHCPV6_MSG_RECONF && !rcauth_ok)
529                 return false;
530
531         return clientid_ok && (serverid_ok || server_id_len == 0);
532 }
533
534
535 int dhcpv6_poll_reconfigure(void)
536 {
537         int ret = dhcpv6_request(DHCPV6_MSG_UNKNOWN);
538         if (ret != -1)
539                 ret = dhcpv6_request(ret);
540
541         return ret;
542 }
543
544
545 static int dhcpv6_handle_reconfigure(_unused enum dhcpv6_msg orig,
546                 const void *opt, const void *end)
547 {
548         // TODO: should verify the reconfigure message
549         uint16_t otype, olen;
550         uint8_t *odata, msg = DHCPV6_MSG_RENEW;
551         dhcpv6_for_each_option(opt, end, otype, olen, odata)
552                 if (otype == DHCPV6_OPT_RECONF_MESSAGE && olen == 1 && (
553                                 odata[0] == DHCPV6_MSG_RENEW ||
554                                 odata[0] == DHCPV6_MSG_INFO_REQ))
555                         msg = odata[0];
556
557         dhcpv6_handle_reply(DHCPV6_MSG_UNKNOWN, NULL, NULL);
558         return msg;
559 }
560
561
562 // Collect all advertised servers
563 static int dhcpv6_handle_advert(_unused enum dhcpv6_msg orig,
564                 const void *opt, const void *end)
565 {
566         uint16_t olen, otype;
567         uint8_t *odata;
568         struct dhcpv6_server_cand cand = {false, false, 0, 0, {0}};
569
570         dhcpv6_for_each_option(opt, end, otype, olen, odata) {
571                 if (otype == DHCPV6_OPT_SERVERID && olen <= 130) {
572                         memcpy(cand.duid, odata, olen);
573                         cand.duid_len = olen;
574                 } else if (otype == DHCPV6_OPT_STATUS && olen >= 2 && !odata[0]
575                                 && odata[1] == DHCPV6_NoAddrsAvail) {
576                         if (na_mode == IA_MODE_FORCE) {
577                                 return -1;
578                         } else {
579                                 cand.has_noaddravail = true;
580                                 cand.preference -= 1000;
581                         }
582                 } else if (otype == DHCPV6_OPT_STATUS && olen >= 2 && !odata[0]
583                                 && odata[1] == DHCPV6_NoPrefixAvail) {
584                         cand.preference -= 2000;
585                 } else if (otype == DHCPV6_OPT_PREF && olen >= 1 &&
586                                 cand.preference >= 0) {
587                         cand.preference = odata[0];
588                 } else if (otype == DHCPV6_OPT_RECONF_ACCEPT) {
589                         cand.wants_reconfigure = true;
590                 } else if (otype == DHCPV6_OPT_IA_PD && request_prefix) {
591                         struct dhcpv6_ia_hdr *h = (struct dhcpv6_ia_hdr*)&odata[-4];
592                         uint8_t *oend = odata + olen, *d;
593                         dhcpv6_for_each_option(&h[1], oend, otype, olen, d) {
594                                 if (otype == DHCPV6_OPT_IA_PREFIX)
595                                         cand.preference += 2000;
596                                 else if (otype == DHCPV6_OPT_STATUS &&
597                                                 olen >= 2 && d[0] == 0 &&
598                                                 d[1] == DHCPV6_NoPrefixAvail)
599                                         cand.preference -= 2000;
600                         }
601                 }
602         }
603
604         if (cand.duid_len > 0)
605                 odhcp6c_add_state(STATE_SERVER_CAND, &cand, sizeof(cand));
606
607         return -1;
608 }
609
610
611 static int dhcpv6_commit_advert(void)
612 {
613         size_t cand_len;
614         struct dhcpv6_server_cand *c = NULL, *cand =
615                         odhcp6c_get_state(STATE_SERVER_CAND, &cand_len);
616
617         bool retry = false;
618         for (size_t i = 0; i < cand_len / sizeof(*c); ++i) {
619                 if (cand[i].has_noaddravail)
620                         retry = true; // We want to try again
621
622                 if (!c || c->preference < cand[i].preference)
623                         c = &cand[i];
624         }
625
626         if (retry && na_mode == IA_MODE_TRY) {
627                 // We give it a second try without the IA_NA
628                 na_mode = IA_MODE_NONE;
629                 return dhcpv6_request(DHCPV6_MSG_SOLICIT);
630         }
631
632         if (c) {
633                 uint16_t hdr[2] = {htons(DHCPV6_OPT_SERVERID),
634                                 htons(c->duid_len)};
635                 odhcp6c_add_state(STATE_SERVER_ID, hdr, sizeof(hdr));
636                 odhcp6c_add_state(STATE_SERVER_ID, c->duid, c->duid_len);
637                 accept_reconfig = c->wants_reconfigure;
638         }
639
640         odhcp6c_clear_state(STATE_SERVER_CAND);
641
642         if (!c)
643                 return -1;
644         else if (request_prefix || na_mode != IA_MODE_NONE)
645                 return DHCPV6_STATEFUL;
646         else
647                 return DHCPV6_STATELESS;
648 }
649
650
651 static int dhcpv6_handle_rebind_reply(enum dhcpv6_msg orig,
652                 const void *opt, const void *end)
653 {
654         dhcpv6_handle_advert(orig, opt, end);
655         if (dhcpv6_commit_advert() < 0) {
656                 dhcpv6_handle_reply(DHCPV6_MSG_UNKNOWN, NULL, NULL);
657                 return -1;
658         }
659
660         return dhcpv6_handle_reply(orig, opt, end);
661 }
662
663
664 static int dhcpv6_handle_reply(enum dhcpv6_msg orig,
665                 const void *opt, const void *end)
666 {
667         uint8_t *odata;
668         uint16_t otype, olen;
669
670         static time_t last_update = 0;
671         time_t now = odhcp6c_get_milli_time() / 1000;
672
673         uint32_t elapsed = now - last_update;
674         odhcp6c_expire();
675
676         if (orig == DHCPV6_MSG_UNKNOWN) {
677                 t1 -= elapsed;
678                 t2 -= elapsed;
679                 t3 -= elapsed;
680
681                 if (t1 < 0)
682                         t1 = 0;
683
684                 if (t2 < 0)
685                         t2 = 0;
686
687                 if (t3 < 0)
688                         t3 = 0;
689         } else {
690                 t1 = t2 = t3 = UINT32_MAX;
691         }
692
693         if (opt) {
694                 odhcp6c_clear_state(STATE_DNS);
695                 odhcp6c_clear_state(STATE_SEARCH);
696                 odhcp6c_clear_state(STATE_SNTP_IP);
697                 odhcp6c_clear_state(STATE_SNTP_FQDN);
698                 odhcp6c_clear_state(STATE_SIP_IP);
699                 odhcp6c_clear_state(STATE_SIP_FQDN);
700                 odhcp6c_clear_state(STATE_AFTR_NAME);
701         }
702
703         // Parse and find all matching IAs
704         dhcpv6_for_each_option(opt, end, otype, olen, odata) {
705                 if ((otype == DHCPV6_OPT_IA_PD || otype == DHCPV6_OPT_IA_NA)
706                                 && olen > sizeof(struct dhcpv6_ia_hdr)) {
707                         struct dhcpv6_ia_hdr *ia_hdr = (void*)(&odata[-4]);
708                         uint32_t l_t1 = ntohl(ia_hdr->t1);
709                         uint32_t l_t2 = ntohl(ia_hdr->t2);
710
711                         // Test ID and T1-T2 validity
712                         if (ia_hdr->iaid != 1 || l_t2 < l_t1)
713                                 continue;
714
715                         bool error = false;
716                         uint16_t stype, slen;
717                         uint8_t *sdata;
718                         // Test status and bail if error
719                         dhcpv6_for_each_option(&ia_hdr[1], odata + olen,
720                                         stype, slen, sdata)
721                                 if (stype == DHCPV6_OPT_STATUS && slen >= 2 &&
722                                                 (sdata[0] || sdata[1]))
723                                         error = true;
724
725                         if (error)
726                                 continue;
727
728                         // Update times
729                         if (l_t1 > 0 && t1 > l_t1)
730                                 t1 = l_t1;
731
732                         if (l_t2 > 0 && t2 > l_t2)
733                                 t2 = l_t2;
734
735                         uint32_t n = dhcpv6_parse_ia(&ia_hdr[1], odata + olen);
736
737                         if (n < t1)
738                                 t1 = n;
739
740                         if (n < t2)
741                                 t2 = n;
742
743                         if (n < t3)
744                                 t3 = n;
745
746                         if (t2 >= t3)
747                                 t2 = 8 * t3 / 10;
748
749                         if (t1 >= t2)
750                                 t1 = 5 * t2 / 8;
751
752                 } else if (otype == DHCPV6_OPT_DNS_SERVERS) {
753                         if (olen % 16 == 0)
754                                 odhcp6c_add_state(STATE_DNS, odata, olen);
755                 } else if (otype == DHCPV6_OPT_DNS_DOMAIN) {
756                         odhcp6c_add_state(STATE_SEARCH, odata, olen);
757                 } else if (otype == DHCPV6_OPT_NTP_SERVER) {
758                         uint16_t stype, slen;
759                         uint8_t *sdata;
760                         // Test status and bail if error
761                         dhcpv6_for_each_option(odata, odata + olen,
762                                         stype, slen, sdata) {
763                                 if (slen == 16 && (stype == NTP_MC_ADDR ||
764                                                 stype == NTP_SRV_ADDR))
765                                         odhcp6c_add_state(STATE_SNTP_IP,
766                                                         sdata, slen);
767                                 else if (slen > 0 && stype == NTP_SRV_FQDN)
768                                         odhcp6c_add_state(STATE_SNTP_FQDN,
769                                                         sdata, slen);
770                         }
771                 } else if (otype == DHCPV6_OPT_SIP_SERVER_A) {
772                         if (olen == 16)
773                                 odhcp6c_add_state(STATE_SIP_IP, odata, olen);
774                 } else if (otype == DHCPV6_OPT_SIP_SERVER_D) {
775                         odhcp6c_add_state(STATE_SIP_FQDN, odata, olen);
776                 } else if (otype == DHCPV6_OPT_INFO_REFRESH && olen >= 4) {
777                         uint32_t refresh = ntohl(*((uint32_t*)odata));
778                         if (refresh < (uint32_t)t1)
779                                 t1 = refresh;
780                 } else if (otype == DHCPV6_OPT_AUTH && olen == -4 +
781                                 sizeof(struct dhcpv6_auth_reconfigure)) {
782                         struct dhcpv6_auth_reconfigure *r = (void*)&odata[-4];
783                         if (r->protocol == 3 && r->algorithm == 1 &&
784                                         r->reconf_type == 1)
785                                 memcpy(reconf_key, r->key, sizeof(r->key));
786                 } else if (otype == DHCPV6_OPT_AFTR_NAME && olen > 3) {
787                         size_t cur_len;
788                         odhcp6c_get_state(STATE_AFTR_NAME, &cur_len);
789                         if (cur_len == 0)
790                                 odhcp6c_add_state(STATE_AFTR_NAME, odata, olen);
791                 } else if (otype != DHCPV6_OPT_CLIENTID &&
792                                 otype != DHCPV6_OPT_SERVERID) {
793                         odhcp6c_add_state(STATE_CUSTOM_OPTS,
794                                         &odata[-4], olen + 4);
795                 }
796         }
797
798         return true;
799 }
800
801
802 static uint32_t dhcpv6_parse_ia(void *opt, void *end)
803 {
804         uint32_t timeout = UINT32_MAX; // Minimum timeout
805         uint16_t otype, olen;
806         uint8_t *odata;
807
808         struct odhcp6c_entry entry = {IN6ADDR_ANY_INIT,
809                         0, 0, IN6ADDR_ANY_INIT, 0, 0};
810
811         // Update address IA
812         dhcpv6_for_each_option(opt, end, otype, olen, odata) {
813                 if (otype == DHCPV6_OPT_IA_PREFIX) {
814                         struct dhcpv6_ia_prefix *prefix = (void*)&odata[-4];
815                         if (olen + 4U < sizeof(*prefix))
816                                 continue;
817
818                         entry.valid = ntohl(prefix->valid);
819                         entry.preferred = ntohl(prefix->preferred);
820
821                         if (entry.preferred > entry.valid)
822                                 continue;
823
824                         entry.length = prefix->prefix;
825                         entry.target = prefix->addr;
826
827                         // Parse PD-exclude
828                         bool ok = true;
829                         uint16_t stype, slen;
830                         uint8_t *sdata;
831                         dhcpv6_for_each_option(odata + sizeof(*prefix) - 4U,
832                                         odata + olen, stype, slen, sdata) {
833                                 if (stype != DHCPV6_OPT_PD_EXCLUDE || slen < 2)
834                                         continue;
835
836                                 uint8_t elen = sdata[0];
837                                 if (elen > 64)
838                                         elen = 64;
839
840                                 if (elen <= 32 || elen <= entry.length) {
841                                         ok = false;
842                                         continue;
843                                 }
844
845
846                                 uint8_t bytes = ((elen - entry.length - 1) / 8) + 1;
847                                 if (slen <= bytes) {
848                                         ok = false;
849                                         continue;
850                                 }
851
852                                 uint32_t exclude = 0;
853                                 do {
854                                         exclude = exclude << 8 | sdata[bytes];
855                                 } while (--bytes);
856
857                                 exclude >>= 8 - ((elen - entry.length) % 8);
858                                 exclude <<= 64 - elen;
859
860                                 // Abusing router & priority fields for exclusion
861                                 entry.router = entry.target;
862                                 entry.router.s6_addr32[1] |= htonl(exclude);
863                                 entry.priority = elen;
864                         }
865
866                         if (ok)
867                                 odhcp6c_update_entry(STATE_IA_PD, &entry);
868
869                         entry.priority = 0;
870                         memset(&entry.router, 0, sizeof(entry.router));
871                 } else if (otype == DHCPV6_OPT_IA_ADDR) {
872                         struct dhcpv6_ia_addr *addr = (void*)&odata[-4];
873                         if (olen + 4U < sizeof(*addr))
874                                 continue;
875
876                         entry.preferred = ntohl(addr->preferred);
877                         entry.valid = ntohl(addr->valid);
878
879                         if (entry.preferred > entry.valid)
880                                 continue;
881
882                         entry.length = 128;
883                         entry.target = addr->addr;
884
885                         odhcp6c_update_entry(STATE_IA_NA, &entry);
886                 }
887
888                 if (entry.valid > 0 && timeout > entry.valid)
889                         timeout = entry.valid;
890         }
891
892         return timeout;
893 }