ra: always trigger update in case of RA parameter change
[oweals/odhcp6c.git] / src / ra.c
1 /**
2  * Copyright (C) 2012-2014 Steven Barth <steven@midlink.org>
3  * Copyright (C) 2017-2018 Hans Dedecker <dedeckeh@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License v2 as published by
7  * the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  */
15
16 #include <errno.h>
17 #include <fcntl.h>
18 #include <stdio.h>
19 #include <signal.h>
20 #include <string.h>
21 #include <stddef.h>
22 #include <stdbool.h>
23 #include <syslog.h>
24 #include <unistd.h>
25 #include <resolv.h>
26 #include <alloca.h>
27
28 #include <net/if.h>
29 #include <arpa/inet.h>
30 #include <sys/socket.h>
31 #include <sys/types.h>
32 #include <netinet/in.h>
33 #include <netinet/icmp6.h>
34
35 #include <linux/rtnetlink.h>
36
37 #ifndef SOL_NETLINK
38 #define SOL_NETLINK 270
39 #endif
40
41 #ifndef NETLINK_ADD_MEMBERSHIP
42 #define NETLINK_ADD_MEMBERSHIP 1
43 #endif
44
45 #ifndef IFF_LOWER_UP
46 #define IFF_LOWER_UP 0x10000
47 #endif
48
49 #include "odhcp6c.h"
50 #include "ra.h"
51
52 static bool nocarrier = false;
53
54 static int sock = -1, rtnl = -1;
55 static int if_index = 0;
56 static char if_name[IF_NAMESIZE] = {0};
57 static volatile int rs_attempt = 0;
58 static struct in6_addr lladdr = IN6ADDR_ANY_INIT;
59 static unsigned int ra_options = 0;
60 static unsigned int ra_holdoff_interval = 0;
61 static int ra_hoplimit = 0;
62 static int ra_mtu = 0;
63 static int ra_reachable = 0;
64 static int ra_retransmit = 0;
65
66 struct {
67         struct icmp6_hdr hdr;
68         struct icmpv6_opt lladdr;
69 } rs = {
70         .hdr = {ND_ROUTER_SOLICIT, 0, 0, {{0}}},
71         .lladdr = {ND_OPT_SOURCE_LINKADDR, 1, {0}},
72 };
73
74 static void ra_send_rs(int signal __attribute__((unused)));
75
76 int ra_init(const char *ifname, const struct in6_addr *ifid,
77                 unsigned int options, unsigned int holdoff_interval)
78 {
79         ra_options = options;
80         ra_holdoff_interval = holdoff_interval;
81
82         const pid_t ourpid = getpid();
83         sock = socket(AF_INET6, SOCK_RAW | SOCK_CLOEXEC, IPPROTO_ICMPV6);
84         if (sock < 0)
85                 goto failure;
86
87         if_index = if_nametoindex(ifname);
88         if (!if_index)
89                 goto failure;
90
91         strncpy(if_name, ifname, sizeof(if_name) - 1);
92         lladdr = *ifid;
93
94         rtnl = socket(AF_NETLINK, SOCK_DGRAM | SOCK_CLOEXEC, NETLINK_ROUTE);
95         if (rtnl < 0)
96                 goto failure;
97
98         struct sockaddr_nl rtnl_kernel = { .nl_family = AF_NETLINK };
99         if (connect(rtnl, (const struct sockaddr*)&rtnl_kernel, sizeof(rtnl_kernel)) < 0)
100                 goto failure;
101
102         int val = RTNLGRP_LINK;
103         if (setsockopt(rtnl, SOL_NETLINK, NETLINK_ADD_MEMBERSHIP, &val, sizeof(val)) < 0)
104                 goto failure;
105
106         if (fcntl(rtnl, F_SETOWN, ourpid) < 0)
107                 goto failure;
108
109         if (fcntl(rtnl, F_SETFL, fcntl(sock, F_GETFL) | O_ASYNC) < 0)
110                 goto failure;
111
112         struct {
113                 struct nlmsghdr hdr;
114                 struct ifinfomsg ifi;
115         } req = {
116                 .hdr = {sizeof(req), RTM_GETLINK, NLM_F_REQUEST, 1, 0},
117                 .ifi = {.ifi_index = if_index}
118         };
119         if (send(rtnl, &req, sizeof(req), 0) < 0)
120                 goto failure;
121
122         ra_link_up();
123
124         // Filter ICMPv6 package types
125         struct icmp6_filter filt;
126         ICMP6_FILTER_SETBLOCKALL(&filt);
127         ICMP6_FILTER_SETPASS(ND_ROUTER_ADVERT, &filt);
128         if (setsockopt(sock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt, sizeof(filt)) < 0)
129                 goto failure;
130
131         // Bind to all-nodes
132         struct ipv6_mreq an = {ALL_IPV6_NODES, if_index};
133         if (setsockopt(sock, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP, &an, sizeof(an)) < 0)
134                 goto failure;
135
136         // Let the kernel compute our checksums
137         val = 2;
138         if (setsockopt(sock, IPPROTO_RAW, IPV6_CHECKSUM, &val, sizeof(val)) < 0)
139                 goto failure;
140
141         // This is required by RFC 4861
142         val = 255;
143         if (setsockopt(sock, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &val, sizeof(val)) < 0)
144                 goto failure;
145
146         // Receive multicast hops
147         val = 1;
148         if (setsockopt(sock, IPPROTO_IPV6, IPV6_RECVHOPLIMIT, &val, sizeof(val)) < 0)
149                 goto failure;
150
151         // Bind to one device
152         if (setsockopt(sock, SOL_SOCKET, SO_BINDTODEVICE, ifname, strlen(ifname)) < 0)
153                 goto failure;
154
155         // Add async-mode
156         if (fcntl(sock, F_SETOWN, ourpid) < 0)
157                 goto failure;
158
159         val = fcntl(sock, F_GETFL);
160         if (val < 0)
161                 goto failure;
162
163         if (fcntl(sock, F_SETFL, val | O_ASYNC) < 0)
164                 goto failure;
165
166         // Send RS
167         signal(SIGALRM, ra_send_rs);
168         ra_send_rs(SIGALRM);
169
170         return 0;
171
172 failure:
173         if (sock >= 0)
174                 close(sock);
175
176         if (rtnl >= 0)
177                 close(rtnl);
178
179         return -1;
180 }
181
182 static void ra_send_rs(int signal __attribute__((unused)))
183 {
184         const struct sockaddr_in6 dest = {AF_INET6, 0, 0, ALL_IPV6_ROUTERS, if_index};
185         const struct icmpv6_opt llnull = {ND_OPT_SOURCE_LINKADDR, 1, {0}};
186         size_t len;
187
188         if ((rs_attempt % 2 == 0) && memcmp(&rs.lladdr, &llnull, sizeof(llnull)))
189                 len = sizeof(rs);
190         else
191                 len = sizeof(struct icmp6_hdr);
192
193         if (sendto(sock, &rs, len, MSG_DONTWAIT, (struct sockaddr*)&dest, sizeof(dest)) < 0)
194                 syslog(LOG_ERR, "Failed to send RS (%s)",  strerror(errno));
195
196         if (++rs_attempt <= 3)
197                 alarm(4);
198 }
199
200 static int16_t pref_to_priority(uint8_t flags)
201 {
202         flags = (flags >> 3) & 0x03;
203
204         return (flags == 0x0) ? 512 : (flags == 0x1) ? 384 :
205                         (flags == 0x3) ? 640 : -1;
206 }
207
208 bool ra_link_up(void)
209 {
210         static bool firstcall = true;
211         struct {
212                 struct nlmsghdr hdr;
213                 struct ifinfomsg msg;
214                 uint8_t pad[4000];
215         } resp;
216         bool ret = false;
217         ssize_t read;
218
219         do {
220                 read = recv(rtnl, &resp, sizeof(resp), MSG_DONTWAIT);
221
222                 if (read < 0 || !NLMSG_OK(&resp.hdr, (size_t)read) ||
223                                 resp.hdr.nlmsg_type != RTM_NEWLINK ||
224                                 resp.msg.ifi_index != if_index)
225                         continue;
226
227                 ssize_t alen = NLMSG_PAYLOAD(&resp.hdr, sizeof(resp.msg));
228                 for (struct rtattr *rta = (struct rtattr*)(resp.pad);
229                                 RTA_OK(rta, alen); rta = RTA_NEXT(rta, alen)) {
230                         if (rta->rta_type == IFLA_ADDRESS &&
231                                         RTA_PAYLOAD(rta) >= sizeof(rs.lladdr.data))
232                                 memcpy(rs.lladdr.data, RTA_DATA(rta), sizeof(rs.lladdr.data));
233                 }
234
235                 bool hascarrier = resp.msg.ifi_flags & IFF_LOWER_UP;
236                 if (!firstcall && nocarrier != !hascarrier)
237                         ret = true;
238
239                 nocarrier = !hascarrier;
240                 firstcall = false;
241         } while (read > 0);
242
243         if (ret) {
244                 syslog(LOG_NOTICE, "carrier => %i event on %s", (int)!nocarrier, if_name);
245
246                 rs_attempt = 0;
247                 ra_send_rs(SIGALRM);
248         }
249
250         return ret;
251 }
252
253 static bool ra_icmpv6_valid(struct sockaddr_in6 *source, int hlim, uint8_t *data, size_t len)
254 {
255         struct icmp6_hdr *hdr = (struct icmp6_hdr*)data;
256         struct icmpv6_opt *opt, *end = (struct icmpv6_opt*)&data[len];
257
258         if (hlim != 255 || len < sizeof(*hdr) || hdr->icmp6_code)
259                 return false;
260
261         switch (hdr->icmp6_type) {
262         case ND_ROUTER_ADVERT:
263                 if (!IN6_IS_ADDR_LINKLOCAL(&source->sin6_addr))
264                         return false;
265
266                 opt = (struct icmpv6_opt*)((struct nd_router_advert*)data + 1);
267                 break;
268
269         default:
270                 return false;
271         }
272
273         icmpv6_for_each_option(opt, opt, end)
274                 ;
275
276         return opt == end;
277 }
278
279 static bool ra_set_hoplimit(int val)
280 {
281         if (val > 0 && val != ra_hoplimit) {
282                 ra_hoplimit = val;
283                 return true;
284         }
285
286         return false;
287 }
288
289 static bool ra_set_mtu(int val)
290 {
291         if (val >= 1280 && val <= 65535 && ra_mtu != val) {
292                 ra_mtu = val;
293                 return true;
294         }
295
296         return false;
297 }
298
299 static bool ra_set_reachable(int val)
300 {
301         if (val > 0 && val <= 3600000 && ra_reachable != val) {
302                 ra_reachable = val;
303                 return true;
304         }
305
306         return false;
307 }
308
309 static bool ra_set_retransmit(int val)
310 {
311         if (val > 0 && val <= 60000 && ra_retransmit != val) {
312                 ra_retransmit = val;
313                 return true;
314         }
315
316         return false;
317 }
318
319 int ra_get_hoplimit(void)
320 {
321         return ra_hoplimit;
322 }
323
324 int ra_get_mtu(void)
325 {
326         return ra_mtu;
327 }
328
329 int ra_get_reachable(void)
330 {
331         return ra_reachable;
332 }
333
334 int ra_get_retransmit(void)
335 {
336         return ra_retransmit;
337 }
338
339 bool ra_process(void)
340 {
341         bool found = false;
342         bool changed = false;
343         uint8_t buf[1500] _aligned(4);
344         union {
345                 struct cmsghdr hdr;
346                 uint8_t buf[CMSG_SPACE(sizeof(int))];
347         } cmsg_buf;
348         struct nd_router_advert *adv = (struct nd_router_advert*)buf;
349         struct odhcp6c_entry *entry = alloca(sizeof(*entry) + 256);
350         const struct in6_addr any = IN6ADDR_ANY_INIT;
351
352         memset(entry, 0, sizeof(*entry));
353
354         if (IN6_IS_ADDR_UNSPECIFIED(&lladdr)) {
355                 struct sockaddr_in6 addr = {AF_INET6, 0, 0, ALL_IPV6_ROUTERS, if_index};
356                 socklen_t alen = sizeof(addr);
357                 int sock = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6);
358
359                 if (sock >= 0) {
360                         if (!connect(sock, (struct sockaddr*)&addr, sizeof(addr)) &&
361                                         !getsockname(sock, (struct sockaddr*)&addr, &alen))
362                                 lladdr = addr.sin6_addr;
363
364                         close(sock);
365                 }
366         }
367
368         while (true) {
369                 struct sockaddr_in6 from;
370                 struct iovec iov = {buf, sizeof(buf)};
371                 struct msghdr msg = {
372                         .msg_name = (void *) &from,
373                         .msg_namelen = sizeof(from),
374                         .msg_iov = &iov,
375                         .msg_iovlen = 1,
376                         .msg_control = cmsg_buf.buf,
377                         .msg_controllen = sizeof(cmsg_buf),
378                         .msg_flags = 0
379                 };
380
381                 ssize_t len = recvmsg(sock, &msg, MSG_DONTWAIT);
382                 if (len <= 0)
383                         break;
384
385                 if (IN6_IS_ADDR_UNSPECIFIED(&lladdr))
386                         continue;
387
388                 int hlim = 0;
389                 for (struct cmsghdr *ch = CMSG_FIRSTHDR(&msg); ch != NULL;
390                                 ch = CMSG_NXTHDR(&msg, ch))
391                         if (ch->cmsg_level == IPPROTO_IPV6 &&
392                                         ch->cmsg_type == IPV6_HOPLIMIT)
393                                 memcpy(&hlim, CMSG_DATA(ch), sizeof(hlim));
394
395                 if (!ra_icmpv6_valid(&from, hlim, buf, len))
396                         continue;
397
398                 // Stop sending solicits
399                 if (rs_attempt > 0) {
400                         alarm(0);
401                         rs_attempt = 0;
402                 }
403
404                 if (!found) {
405                         odhcp6c_expire();
406                         found = true;
407                 }
408                 uint32_t router_valid = ntohs(adv->nd_ra_router_lifetime);
409
410                 // Parse default route
411                 entry->target = any;
412                 entry->length = 0;
413                 entry->router = from.sin6_addr;
414                 entry->priority = pref_to_priority(adv->nd_ra_flags_reserved);
415                 if (entry->priority < 0)
416                         entry->priority = pref_to_priority(0);
417
418                 entry->valid = router_valid;
419                 entry->preferred = entry->valid;
420                 changed |= odhcp6c_update_entry(STATE_RA_ROUTE, entry,
421                                                 0, ra_holdoff_interval);
422
423                 // Parse hoplimit
424                 changed |= ra_set_hoplimit(adv->nd_ra_curhoplimit);
425
426                 // Parse ND parameters
427                 changed |= ra_set_reachable(ntohl(adv->nd_ra_reachable));
428                 changed |= ra_set_retransmit(ntohl(adv->nd_ra_retransmit));
429
430                 // Evaluate options
431                 struct icmpv6_opt *opt;
432                 icmpv6_for_each_option(opt, &adv[1], &buf[len]) {
433                         if (opt->type == ND_OPT_MTU) {
434                                 uint32_t *mtu = (uint32_t*)&opt->data[2];
435                                 changed |= ra_set_mtu(ntohl(*mtu));
436                         } else if (opt->type == ND_OPT_ROUTE_INFORMATION && opt->len <= 3) {
437                                 struct icmpv6_opt_route_info *ri = (struct icmpv6_opt_route_info *)opt;
438
439                                 if (ri->prefix_len > 128) {
440                                         continue;
441                                 } else if (ri->prefix_len > 64) {
442                                         if (ri->len < 2)
443                                                 continue;
444                                 } else if (ri->prefix_len > 0) {
445                                         if (ri->len < 1)
446                                                 continue;
447                                 }
448
449                                 entry->router = from.sin6_addr;
450                                 entry->target = any;
451                                 entry->priority = pref_to_priority(ri->flags);
452                                 entry->length = ri->prefix_len;
453                                 entry->valid = ntohl(ri->lifetime);
454                                 memcpy(&entry->target, ri->prefix, (ri->len - 1) * 8);
455
456                                 if (IN6_IS_ADDR_LINKLOCAL(&entry->target)
457                                                 || IN6_IS_ADDR_LOOPBACK(&entry->target)
458                                                 || IN6_IS_ADDR_MULTICAST(&entry->target))
459                                         continue;
460
461                                 if (entry->priority > 0)
462                                         changed |= odhcp6c_update_entry(STATE_RA_ROUTE, entry,
463                                                                         0, ra_holdoff_interval);
464                         } else if (opt->type == ND_OPT_PREFIX_INFORMATION && opt->len == 4) {
465                                 struct nd_opt_prefix_info *pinfo = (struct nd_opt_prefix_info*)opt;
466                                 entry->router = any;
467                                 entry->target = pinfo->nd_opt_pi_prefix;
468                                 entry->priority = 256;
469                                 entry->length = pinfo->nd_opt_pi_prefix_len;
470                                 entry->valid = ntohl(pinfo->nd_opt_pi_valid_time);
471                                 entry->preferred = ntohl(pinfo->nd_opt_pi_preferred_time);
472
473                                 if (entry->length > 128 || IN6_IS_ADDR_LINKLOCAL(&entry->target)
474                                                 || IN6_IS_ADDR_LOOPBACK(&entry->target)
475                                                 || IN6_IS_ADDR_MULTICAST(&entry->target)
476                                                 || entry->valid < entry->preferred)
477                                         continue;
478
479                                 if (pinfo->nd_opt_pi_flags_reserved & ND_OPT_PI_FLAG_ONLINK)
480                                         changed |= odhcp6c_update_entry(STATE_RA_ROUTE, entry,
481                                                                         7200, ra_holdoff_interval);
482
483                                 if (!(pinfo->nd_opt_pi_flags_reserved & ND_OPT_PI_FLAG_AUTO) ||
484                                                 pinfo->nd_opt_pi_prefix_len != 64)
485                                         continue;
486
487                                 entry->target.s6_addr32[2] = lladdr.s6_addr32[2];
488                                 entry->target.s6_addr32[3] = lladdr.s6_addr32[3];
489
490                                 changed |= odhcp6c_update_entry(STATE_RA_PREFIX, entry,
491                                                                 7200, ra_holdoff_interval);
492                         } else if (opt->type == ND_OPT_RECURSIVE_DNS && opt->len > 2) {
493                                 entry->router = from.sin6_addr;
494                                 entry->priority = 0;
495                                 entry->length = 128;
496                                 uint32_t *valid = (uint32_t*)&opt->data[2];
497                                 entry->valid = ntohl(*valid);
498                                 entry->preferred = 0;
499
500                                 for (ssize_t i = 0; i < (opt->len - 1) / 2; ++i) {
501                                         memcpy(&entry->target, &opt->data[6 + i * sizeof(entry->target)],
502                                                         sizeof(entry->target));
503                                         changed |= odhcp6c_update_entry(STATE_RA_DNS, entry,
504                                                                         0, ra_holdoff_interval);
505                                 }
506                         } else if (opt->type == ND_OPT_DNSSL && opt->len > 1) {
507                                 uint32_t *valid = (uint32_t*)&opt->data[2];
508                                 uint8_t *buf = &opt->data[6];
509                                 uint8_t *end = &buf[(opt->len - 1) * 8];
510
511                                 entry->router = from.sin6_addr;
512                                 entry->valid = ntohl(*valid);
513
514                                 while (buf < end) {
515                                         int len = dn_expand(buf, end, buf, (char*)entry->auxtarget, 256);
516                                         if (len < 1)
517                                                 break;
518
519                                         buf = &buf[len];
520                                         entry->auxlen = strlen((char*)entry->auxtarget);
521
522                                         if (entry->auxlen == 0)
523                                                 continue;
524
525                                         changed |= odhcp6c_update_entry(STATE_RA_SEARCH, entry,
526                                                                         0, ra_holdoff_interval);
527                                         entry->auxlen = 0;
528                                 }
529                         }
530                 }
531
532                 if (ra_options & RA_RDNSS_DEFAULT_LIFETIME) {
533                         int states[2] = {STATE_RA_DNS, STATE_RA_SEARCH};
534
535                         for (size_t i = 0; i < 2; ++i) {
536                                 size_t ra_dns_len;
537                                 uint8_t *start = odhcp6c_get_state(states[i], &ra_dns_len);
538
539                                 for (struct odhcp6c_entry *c = (struct odhcp6c_entry*)start;
540                                                         (uint8_t*)c < &start[ra_dns_len] &&
541                                                         (uint8_t*)odhcp6c_next_entry(c) <= &start[ra_dns_len];
542                                                         c = odhcp6c_next_entry(c)) {
543                                         if (IN6_ARE_ADDR_EQUAL(&c->router, &from.sin6_addr) &&
544                                                         c->valid > router_valid)
545                                                 c->valid = router_valid;
546                                 }
547                         }
548                 }
549         }
550
551         if (found)
552                 odhcp6c_expire();
553
554         return found && changed;
555 }