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