IPv6: Log a warning if users have prefixes but haven't assigned them
[project/netifd.git] / interface-ip.c
1 /*
2 * netifd - network interface daemon
3 * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
4 * Copyright (C) 2012 Steven Barth <steven@midlink.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15 #include <string.h>
16 #include <stdlib.h>
17 #include <stdio.h>
18 #include <unistd.h>
19
20 #include <limits.h>
21 #include <arpa/inet.h>
22
23 #include "netifd.h"
24 #include "device.h"
25 #include "interface.h"
26 #include "interface-ip.h"
27 #include "proto.h"
28 #include "ubus.h"
29 #include "system.h"
30
31 enum {
32 ROUTE_INTERFACE,
33 ROUTE_TARGET,
34 ROUTE_MASK,
35 ROUTE_GATEWAY,
36 ROUTE_METRIC,
37 ROUTE_MTU,
38 ROUTE_VALID,
39 ROUTE_TABLE,
40 __ROUTE_MAX
41 };
42
43 static const struct blobmsg_policy route_attr[__ROUTE_MAX] = {
44 [ROUTE_INTERFACE] = { .name = "interface", .type = BLOBMSG_TYPE_STRING },
45 [ROUTE_TARGET] = { .name = "target", .type = BLOBMSG_TYPE_STRING },
46 [ROUTE_MASK] = { .name = "netmask", .type = BLOBMSG_TYPE_STRING },
47 [ROUTE_GATEWAY] = { .name = "gateway", .type = BLOBMSG_TYPE_STRING },
48 [ROUTE_METRIC] = { .name = "metric", .type = BLOBMSG_TYPE_INT32 },
49 [ROUTE_MTU] = { .name = "mtu", .type = BLOBMSG_TYPE_INT32 },
50 [ROUTE_TABLE] = { .name = "table", .type = BLOBMSG_TYPE_STRING },
51 [ROUTE_VALID] = { .name = "valid", .type = BLOBMSG_TYPE_INT32 },
52 };
53
54 const struct config_param_list route_attr_list = {
55 .n_params = __ROUTE_MAX,
56 .params = route_attr,
57 };
58
59
60 struct list_head prefixes = LIST_HEAD_INIT(prefixes);
61 static struct device_prefix *ula_prefix = NULL;
62 static struct uloop_timeout valid_until_timeout;
63
64
65 static void
66 clear_if_addr(union if_addr *a, int mask)
67 {
68 int m_bytes = (mask + 7) / 8;
69 uint8_t m_clear = (1 << (m_bytes * 8 - mask)) - 1;
70 uint8_t *p = (uint8_t *) a;
71
72 if (m_bytes < sizeof(a))
73 memset(p + m_bytes, 0, sizeof(a) - m_bytes);
74
75 p[m_bytes - 1] &= ~m_clear;
76 }
77
78 static bool
79 match_if_addr(union if_addr *a1, union if_addr *a2, int mask)
80 {
81 union if_addr *p1, *p2;
82
83 p1 = alloca(sizeof(*a1));
84 p2 = alloca(sizeof(*a2));
85
86 memcpy(p1, a1, sizeof(*a1));
87 clear_if_addr(p1, mask);
88 memcpy(p2, a2, sizeof(*a2));
89 clear_if_addr(p2, mask);
90
91 return !memcmp(p1, p2, sizeof(*p1));
92 }
93
94 static int set_ip_source_policy(bool add, bool v6, unsigned int priority,
95 const union if_addr *addr, uint8_t mask, struct interface *iface)
96 {
97
98
99 struct iprule rule = {
100 .flags = IPRULE_SRC | IPRULE_LOOKUP | IPRULE_PRIORITY,
101 .priority = priority,
102 .lookup = (v6) ? iface->ip6table : iface->ip4table,
103 .src_addr = *addr,
104 .src_mask = mask,
105 };
106
107 if (!rule.lookup)
108 return 0;
109
110 rule.flags |= (v6) ? IPRULE_INET6 : IPRULE_INET4;
111
112 return (add) ? system_add_iprule(&rule) : system_del_iprule(&rule);
113 }
114
115 static int set_ip_lo_policy(bool add, bool v6, struct interface *iface)
116 {
117 struct iprule rule = {
118 .flags = IPRULE_IN | IPRULE_LOOKUP | IPRULE_PRIORITY,
119 .priority = IPRULE_PRIORITY_NW + iface->l3_dev.dev->ifindex,
120 .lookup = (v6) ? iface->ip6table : iface->ip4table,
121 .in_dev = "lo"
122 };
123
124 if (!rule.lookup)
125 return 0;
126
127 rule.flags |= (v6) ? IPRULE_INET6 : IPRULE_INET4;
128
129 return (add) ? system_add_iprule(&rule) : system_del_iprule(&rule);
130 }
131
132 static bool
133 __find_ip_addr_target(struct interface_ip_settings *ip, union if_addr *a, bool v6)
134 {
135 struct device_addr *addr;
136
137 vlist_for_each_element(&ip->addr, addr, node) {
138 if (!addr->enabled)
139 continue;
140
141 if (v6 != ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET6))
142 continue;
143
144 // Handle offlink addresses correctly
145 unsigned int mask = addr->mask;
146 if ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET6 &&
147 (addr->flags & DEVADDR_OFFLINK))
148 mask = 128;
149
150 if (!match_if_addr(&addr->addr, a, mask))
151 continue;
152
153 return true;
154 }
155
156 return false;
157 }
158
159 static void
160 __find_ip_route_target(struct interface_ip_settings *ip, union if_addr *a,
161 bool v6, struct device_route **res)
162 {
163 struct device_route *route;
164
165 vlist_for_each_element(&ip->route, route, node) {
166 if (!route->enabled)
167 continue;
168
169 if (v6 != ((route->flags & DEVADDR_FAMILY) == DEVADDR_INET6))
170 continue;
171
172 if (!match_if_addr(&route->addr, a, route->mask))
173 continue;
174
175 if (route->flags & DEVROUTE_TABLE)
176 continue;
177
178 if (!*res || route->mask < (*res)->mask)
179 *res = route;
180 }
181 }
182
183 static bool
184 interface_ip_find_addr_target(struct interface *iface, union if_addr *a, bool v6)
185 {
186 return __find_ip_addr_target(&iface->proto_ip, a, v6) ||
187 __find_ip_addr_target(&iface->config_ip, a, v6);
188 }
189
190 static void
191 interface_ip_find_route_target(struct interface *iface, union if_addr *a,
192 bool v6, struct device_route **route)
193 {
194 __find_ip_route_target(&iface->proto_ip, a, v6, route);
195 __find_ip_route_target(&iface->config_ip, a, v6, route);
196 }
197
198 struct interface *
199 interface_ip_add_target_route(union if_addr *addr, bool v6, struct interface *iface)
200 {
201 struct device_route *route, *r_next = NULL;
202 bool defaultroute_target = false;
203 int addrsize = v6 ? sizeof(addr->in6) : sizeof(addr->in);
204
205 route = calloc(1, sizeof(*route));
206 if (!route)
207 return NULL;
208
209 route->flags = v6 ? DEVADDR_INET6 : DEVADDR_INET4;
210 route->mask = v6 ? 128 : 32;
211 if (memcmp(&route->addr, addr, addrsize) == 0)
212 defaultroute_target = true;
213 else
214 memcpy(&route->addr, addr, addrsize);
215
216 if (iface) {
217 /* look for locally addressable target first */
218 if (interface_ip_find_addr_target(iface, addr, v6))
219 goto done;
220
221 /* do not stop at the first route, let the lookup compare
222 * masks to find the best match */
223 interface_ip_find_route_target(iface, addr, v6, &r_next);
224 } else {
225 vlist_for_each_element(&interfaces, iface, node) {
226 /* look for locally addressable target first */
227 if (interface_ip_find_addr_target(iface, addr, v6))
228 goto done;
229
230 /* do not stop at the first route, let the lookup compare
231 * masks to find the best match */
232 interface_ip_find_route_target(iface, addr, v6, &r_next);
233 }
234 }
235
236 if (!r_next) {
237 free(route);
238 return NULL;
239 }
240
241 iface = r_next->iface;
242 memcpy(&route->nexthop, &r_next->nexthop, sizeof(route->nexthop));
243 route->mtu = r_next->mtu;
244 route->metric = r_next->metric;
245 route->table = r_next->table;
246
247 done:
248 route->iface = iface;
249 if (defaultroute_target)
250 free(route);
251 else
252 vlist_add(&iface->host_routes, &route->node, route);
253 return iface;
254 }
255
256 void
257 interface_ip_add_route(struct interface *iface, struct blob_attr *attr, bool v6)
258 {
259 struct interface_ip_settings *ip;
260 struct blob_attr *tb[__ROUTE_MAX], *cur;
261 struct device_route *route;
262 int af = v6 ? AF_INET6 : AF_INET;
263 bool is_proto_route = !!iface;
264
265 blobmsg_parse(route_attr, __ROUTE_MAX, tb, blobmsg_data(attr), blobmsg_data_len(attr));
266
267 if (!iface) {
268 if ((cur = tb[ROUTE_INTERFACE]) == NULL)
269 return;
270
271 iface = vlist_find(&interfaces, blobmsg_data(cur), iface, node);
272 if (!iface)
273 return;
274
275 ip = &iface->config_ip;
276 } else {
277 ip = &iface->proto_ip;
278 }
279
280 route = calloc(1, sizeof(*route));
281 if (!route)
282 return;
283
284 route->flags = v6 ? DEVADDR_INET6 : DEVADDR_INET4;
285 route->mask = v6 ? 128 : 32;
286 if ((cur = tb[ROUTE_MASK]) != NULL) {
287 route->mask = parse_netmask_string(blobmsg_data(cur), v6);
288 if (route->mask > (v6 ? 128 : 32))
289 goto error;
290 }
291
292 if ((cur = tb[ROUTE_TARGET]) != NULL) {
293 if (!parse_ip_and_netmask(af, blobmsg_data(cur), &route->addr, &route->mask)) {
294 DPRINTF("Failed to parse route target: %s\n", (char *) blobmsg_data(cur));
295 goto error;
296 }
297 }
298
299 if ((cur = tb[ROUTE_GATEWAY]) != NULL) {
300 if (!inet_pton(af, blobmsg_data(cur), &route->nexthop)) {
301 DPRINTF("Failed to parse route gateway: %s\n", (char *) blobmsg_data(cur));
302 goto error;
303 }
304 }
305
306 if ((cur = tb[ROUTE_METRIC]) != NULL) {
307 route->metric = blobmsg_get_u32(cur);
308 route->flags |= DEVROUTE_METRIC;
309 }
310
311 if ((cur = tb[ROUTE_MTU]) != NULL) {
312 route->mtu = blobmsg_get_u32(cur);
313 route->flags |= DEVROUTE_MTU;
314 }
315
316 // Use source-based routing
317 if (is_proto_route) {
318 route->table = (v6) ? iface->ip6table : iface->ip4table;
319 route->flags |= DEVROUTE_SRCTABLE;
320 }
321
322 if ((cur = tb[ROUTE_TABLE]) != NULL) {
323 if (!system_resolve_rt_table(blobmsg_data(cur), &route->table)) {
324 DPRINTF("Failed to resolve routing table: %s\n", (char *) blobmsg_data(cur));
325 goto error;
326 }
327
328 if (route->table)
329 route->flags |= DEVROUTE_TABLE;
330 }
331
332 if ((cur = tb[ROUTE_VALID]) != NULL) {
333 int64_t valid = blobmsg_get_u32(cur);
334 int64_t valid_until = valid + (int64_t)system_get_rtime();
335 if (valid_until <= LONG_MAX && valid != 0xffffffffLL) // Catch overflow
336 route->valid_until = valid_until;
337 }
338
339 vlist_add(&ip->route, &route->node, route);
340 return;
341
342 error:
343 free(route);
344 }
345
346 static int
347 addr_cmp(const void *k1, const void *k2, void *ptr)
348 {
349 return memcmp(k1, k2, sizeof(struct device_addr) -
350 offsetof(struct device_addr, flags));
351 }
352
353 static int
354 route_cmp(const void *k1, const void *k2, void *ptr)
355 {
356 const struct device_route *r1 = k1, *r2 = k2;
357
358 if (r1->mask != r2->mask)
359 return r2->mask - r1->mask;
360
361 if (r1->metric != r2->metric)
362 return r1->metric - r2->metric;
363
364 if (r1->flags != r2->flags)
365 return r2->flags - r1->flags;
366
367 return memcmp(&r1->addr, &r2->addr, sizeof(r1->addr));
368 }
369
370 static int
371 prefix_cmp(const void *k1, const void *k2, void *ptr)
372 {
373 return memcmp(k1, k2, sizeof(struct device_prefix) -
374 offsetof(struct device_prefix, addr));
375 }
376
377 static void
378 interface_handle_subnet_route(struct interface *iface, struct device_addr *addr, bool add)
379 {
380 struct device *dev = iface->l3_dev.dev;
381 struct device_route route;
382
383 memset(&route, 0, sizeof(route));
384 route.iface = iface;
385 route.flags = addr->flags;
386 route.mask = addr->mask;
387 memcpy(&route.addr, &addr->addr, sizeof(route.addr));
388 clear_if_addr(&route.addr, route.mask);
389
390 if (add) {
391 route.flags |= DEVADDR_KERNEL;
392 system_del_route(dev, &route);
393
394 if (!(addr->flags & DEVADDR_OFFLINK)) {
395 route.flags &= ~DEVADDR_KERNEL;
396 route.metric = iface->metric;
397 system_add_route(dev, &route);
398 }
399 } else {
400 if (!(addr->flags & DEVADDR_OFFLINK))
401 system_del_route(dev, &route);
402 }
403 }
404
405 static void
406 interface_update_proto_addr(struct vlist_tree *tree,
407 struct vlist_node *node_new,
408 struct vlist_node *node_old)
409 {
410 struct interface_ip_settings *ip;
411 struct interface *iface;
412 struct device *dev;
413 struct device_addr *a_new = NULL, *a_old = NULL;
414 bool keep = false;
415 bool v6 = false;
416
417 ip = container_of(tree, struct interface_ip_settings, addr);
418 iface = ip->iface;
419 dev = iface->l3_dev.dev;
420
421 if (node_new) {
422 a_new = container_of(node_new, struct device_addr, node);
423
424 if ((a_new->flags & DEVADDR_FAMILY) == DEVADDR_INET4 &&
425 !a_new->broadcast) {
426
427 uint32_t mask = ~0;
428 uint32_t *a = (uint32_t *) &a_new->addr;
429
430 mask >>= a_new->mask;
431 a_new->broadcast = *a | htonl(mask);
432 }
433 }
434
435 if (node_old)
436 a_old = container_of(node_old, struct device_addr, node);
437
438 if (a_new && a_old) {
439 keep = true;
440
441 if (a_old->flags != a_new->flags ||
442 a_old->valid_until != a_new->valid_until ||
443 a_old->preferred_until != a_new->preferred_until)
444 keep = false;
445
446 if ((a_new->flags & DEVADDR_FAMILY) == DEVADDR_INET4 &&
447 a_new->broadcast != a_old->broadcast)
448 keep = false;
449 }
450
451 if (node_old) {
452 if (!(a_old->flags & DEVADDR_EXTERNAL) && a_old->enabled && !keep) {
453 interface_handle_subnet_route(iface, a_old, false);
454
455 if ((a_old->flags & DEVADDR_FAMILY) == DEVADDR_INET6)
456 v6 = true;
457
458 //This is needed for source routing to work correctly. If a device
459 //has two connections to a network using the same subnet, adding
460 //only the network-rule will cause packets to be routed through the
461 //first matching network (source IP matches both masks).
462 set_ip_source_policy(false, v6, IPRULE_PRIORITY_ADDR, &a_old->addr,
463 (v6) ? 128 : 32, iface);
464 set_ip_source_policy(false, v6, IPRULE_PRIORITY_NW, &a_old->addr,
465 a_old->mask, iface);
466
467 system_del_address(dev, a_old);
468 }
469 free(a_old);
470 }
471
472 if (node_new) {
473 a_new->enabled = true;
474 if (!(a_new->flags & DEVADDR_EXTERNAL) && !keep) {
475 system_add_address(dev, a_new);
476
477 if ((a_new->flags & DEVADDR_FAMILY) == DEVADDR_INET6)
478 v6 = true;
479
480 set_ip_source_policy(true, v6, IPRULE_PRIORITY_ADDR, &a_new->addr,
481 (v6) ? 128 : 32, iface);
482 set_ip_source_policy(true, v6, IPRULE_PRIORITY_NW, &a_new->addr,
483 a_new->mask, iface);
484
485 if ((a_new->flags & DEVADDR_OFFLINK) || iface->metric)
486 interface_handle_subnet_route(iface, a_new, true);
487 }
488 }
489 }
490
491 static bool
492 enable_route(struct interface_ip_settings *ip, struct device_route *route)
493 {
494 if (ip->no_defaultroute && !route->mask)
495 return false;
496
497 return ip->enabled;
498 }
499
500 static void
501 interface_update_proto_route(struct vlist_tree *tree,
502 struct vlist_node *node_new,
503 struct vlist_node *node_old)
504 {
505 struct interface_ip_settings *ip;
506 struct interface *iface;
507 struct device *dev;
508 struct device_route *route_old, *route_new;
509 bool keep = false;
510
511 ip = container_of(tree, struct interface_ip_settings, route);
512 iface = ip->iface;
513 dev = iface->l3_dev.dev;
514
515 route_old = container_of(node_old, struct device_route, node);
516 route_new = container_of(node_new, struct device_route, node);
517
518 if (node_old && node_new)
519 keep = !memcmp(&route_old->nexthop, &route_new->nexthop, sizeof(route_old->nexthop));
520
521 if (node_old) {
522 if (!(route_old->flags & DEVADDR_EXTERNAL) && route_old->enabled && !keep)
523 system_del_route(dev, route_old);
524 free(route_old);
525 }
526
527 if (node_new) {
528 bool _enabled = enable_route(ip, route_new);
529
530 if (!(route_new->flags & DEVROUTE_METRIC))
531 route_new->metric = iface->metric;
532
533 if (!(route_new->flags & DEVADDR_EXTERNAL) && !keep && _enabled)
534 system_add_route(dev, route_new);
535
536 route_new->iface = iface;
537 route_new->enabled = _enabled;
538 }
539 }
540
541 static void
542 interface_update_host_route(struct vlist_tree *tree,
543 struct vlist_node *node_new,
544 struct vlist_node *node_old)
545 {
546 struct interface *iface;
547 struct device *dev;
548 struct device_route *route_old, *route_new;
549
550 iface = container_of(tree, struct interface, host_routes);
551 dev = iface->l3_dev.dev;
552
553 route_old = container_of(node_old, struct device_route, node);
554 route_new = container_of(node_new, struct device_route, node);
555
556 if (node_old) {
557 system_del_route(dev, route_old);
558 free(route_old);
559 }
560
561 if (node_new)
562 system_add_route(dev, route_new);
563 }
564
565
566 static void
567 interface_set_prefix_address(struct device_prefix_assignment *assignment,
568 const struct device_prefix *prefix, struct interface *iface, bool add)
569 {
570 const struct interface *uplink = prefix->iface;
571 if (!iface->l3_dev.dev)
572 return;
573
574 struct device *l3_downlink = iface->l3_dev.dev;
575
576 struct device_addr addr;
577 memset(&addr, 0, sizeof(addr));
578 addr.addr.in6 = prefix->addr;
579 addr.addr.in6.s6_addr32[1] |= htonl(assignment->assigned);
580 addr.addr.in6.s6_addr[15] += 1;
581 addr.mask = assignment->length;
582 addr.flags = DEVADDR_INET6;
583 addr.preferred_until = prefix->preferred_until;
584 addr.valid_until = prefix->valid_until;
585
586 if (!add && assignment->enabled) {
587 time_t now = system_get_rtime();
588 addr.preferred_until = now;
589 if (!addr.valid_until || addr.valid_until - now > 7200)
590 addr.valid_until = now + 7200;
591 system_add_address(l3_downlink, &addr);
592 assignment->enabled = false;
593 } else if (add && (iface->state == IFS_UP || iface->state == IFS_SETUP)) {
594 system_add_address(l3_downlink, &addr);
595 if (uplink && uplink->l3_dev.dev) {
596 int mtu = system_update_ipv6_mtu(
597 uplink->l3_dev.dev, 0);
598 if (mtu > 0)
599 system_update_ipv6_mtu(l3_downlink, mtu);
600 }
601 assignment->enabled = true;
602 }
603 }
604
605 static bool interface_prefix_assign(struct list_head *list,
606 struct device_prefix_assignment *assign)
607 {
608 int32_t current = 0, asize = (1 << (64 - assign->length)) - 1;
609 struct device_prefix_assignment *c;
610 list_for_each_entry(c, list, head) {
611 if (assign->assigned != -1) {
612 if (assign->assigned > current && assign->assigned + asize < c->assigned) {
613 list_add_tail(&assign->head, &c->head);
614 return true;
615 }
616 } else if (assign->assigned == -1) {
617 current = (current + asize) & (~asize);
618 if (current + asize < c->assigned) {
619 assign->assigned = current;
620 list_add_tail(&assign->head, &c->head);
621 return true;
622 }
623 }
624 current = (c->assigned + (1 << (64 - c->length)));
625 }
626 return false;
627 }
628
629 static void interface_update_prefix_assignments(struct device_prefix *prefix, bool setup)
630 {
631 struct device_prefix_assignment *c;
632 struct interface *iface;
633
634 // Delete all assignments
635 while (!list_empty(&prefix->assignments)) {
636 c = list_first_entry(&prefix->assignments,
637 struct device_prefix_assignment, head);
638 if ((iface = vlist_find(&interfaces, c->name, iface, node)))
639 interface_set_prefix_address(c, prefix, iface, false);
640 list_del(&c->head);
641 free(c);
642 }
643
644 if (!setup)
645 return;
646
647 // End-of-assignment sentinel
648 c = malloc(sizeof(*c) + 1);
649 c->assigned = 1 << (64 - prefix->length);
650 c->length = 64;
651 c->name[0] = 0;
652 list_add(&c->head, &prefix->assignments);
653
654 // Excluded prefix
655 if (prefix->excl_length > 0) {
656 const char name[] = "!excluded";
657 c = malloc(sizeof(*c) + sizeof(name));
658 c->assigned = ntohl(prefix->excl_addr.s6_addr32[1]) &
659 ((1 << (64 - prefix->length)) - 1);
660 c->length = prefix->excl_length;
661 memcpy(c->name, name, sizeof(name));
662 list_add(&c->head, &prefix->assignments);
663 }
664
665 bool assigned_any = false;
666 struct list_head assign_later = LIST_HEAD_INIT(assign_later);
667 vlist_for_each_element(&interfaces, iface, node) {
668 if (iface->config_ip.assignment_length < 48 ||
669 iface->config_ip.assignment_length > 64)
670 continue;
671
672 size_t namelen = strlen(iface->name) + 1;
673 c = malloc(sizeof(*c) + namelen);
674 c->length = iface->config_ip.assignment_length;
675 c->assigned = iface->config_ip.assignment_hint;
676 c->enabled = false;
677 memcpy(c->name, iface->name, namelen);
678
679 // First process all custom assignments, put all others in later-list
680 if (c->assigned == -1 || !interface_prefix_assign(&prefix->assignments, c)) {
681 if (c->assigned != -1) {
682 c->assigned = -1;
683 netifd_log_message(L_WARNING, "Failed to assign requested subprefix "
684 "of size %hhu for %s, trying other\n", c->length, c->name);
685 }
686 list_add_tail(&c->head, &assign_later);
687 }
688
689 if (c->assigned != -1)
690 assigned_any = true;
691 }
692
693 // Then try to assign all other + failed custom assignments
694 while (!list_empty(&assign_later)) {
695 c = list_first_entry(&assign_later, struct device_prefix_assignment, head);
696 list_del(&c->head);
697
698 bool assigned = false;
699 do {
700 assigned = interface_prefix_assign(&prefix->assignments, c);
701 } while (!assigned && ++c->length <= 64);
702
703 if (!assigned) {
704 netifd_log_message(L_WARNING, "Failed to assign subprefix "
705 "of size %hhu for %s\n", c->length, c->name);
706 free(c);
707 } else {
708 assigned_any = true;
709 }
710 }
711
712 list_for_each_entry(c, &prefix->assignments, head)
713 if ((iface = vlist_find(&interfaces, c->name, iface, node)))
714 interface_set_prefix_address(c, prefix, iface, true);
715
716 if (!assigned_any)
717 netifd_log_message(L_WARNING, "You have delegated IPv6-prefixes but haven't assigned them "
718 "to any interface. Did you forget to set option ip6assign on your lan-interfaces?");
719 }
720
721
722 void interface_refresh_assignments(bool hint)
723 {
724 static bool refresh = false;
725 if (!hint && refresh) {
726 struct device_prefix *p;
727 list_for_each_entry(p, &prefixes, head)
728 interface_update_prefix_assignments(p, true);
729 }
730 refresh = hint;
731 }
732
733
734 static void
735 interface_update_prefix(struct vlist_tree *tree,
736 struct vlist_node *node_new,
737 struct vlist_node *node_old)
738 {
739 struct device_prefix *prefix_old, *prefix_new;
740 prefix_old = container_of(node_old, struct device_prefix, node);
741 prefix_new = container_of(node_new, struct device_prefix, node);
742
743 struct device_route route;
744 memset(&route, 0, sizeof(route));
745 route.flags = DEVADDR_INET6;
746 route.metric = INT32_MAX;
747 route.mask = (node_new) ? prefix_new->length : prefix_old->length;
748 route.addr.in6 = (node_new) ? prefix_new->addr : prefix_old->addr;
749
750
751 struct device_prefix_assignment *c;
752 struct interface *iface;
753
754 if (node_old && node_new) {
755 // Move assignments and refresh addresses to update valid times
756 list_splice(&prefix_old->assignments, &prefix_new->assignments);
757
758 list_for_each_entry(c, &prefix_new->assignments, head)
759 if ((iface = vlist_find(&interfaces, c->name, iface, node)))
760 interface_set_prefix_address(c, prefix_new, iface, true);
761 } else if (node_new) {
762 // Set null-route to avoid routing loops and set routing policy
763 system_add_route(NULL, &route);
764 if (prefix_new->iface)
765 set_ip_source_policy(true, true, IPRULE_PRIORITY_NW, &route.addr,
766 route.mask, prefix_new->iface);
767
768
769 interface_update_prefix_assignments(prefix_new, true);
770 } else if (node_old) {
771 interface_update_prefix_assignments(prefix_old, false);
772
773 // Remove null-route
774 if (prefix_old->iface)
775 set_ip_source_policy(false, true, IPRULE_PRIORITY_NW, &route.addr,
776 route.mask, prefix_old->iface);
777 system_del_route(NULL, &route);
778 }
779
780 if (node_old) {
781 list_del(&prefix_old->head);
782 free(prefix_old);
783 }
784
785 if (node_new)
786 list_add(&prefix_new->head, &prefixes);
787
788 }
789
790 struct device_prefix*
791 interface_ip_add_device_prefix(struct interface *iface, struct in6_addr *addr,
792 uint8_t length, time_t valid_until, time_t preferred_until,
793 struct in6_addr *excl_addr, uint8_t excl_length)
794 {
795 struct device_prefix *prefix = calloc(1, sizeof(*prefix));
796 prefix->length = length;
797 prefix->addr = *addr;
798 prefix->preferred_until = preferred_until;
799 prefix->valid_until = valid_until;
800 prefix->iface = iface;
801 INIT_LIST_HEAD(&prefix->assignments);
802
803 if (excl_addr) {
804 prefix->excl_addr = *excl_addr;
805 prefix->excl_length = excl_length;
806 }
807
808 if (iface)
809 vlist_add(&iface->proto_ip.prefix, &prefix->node, &prefix->addr);
810 else
811 interface_update_prefix(NULL, &prefix->node, NULL);
812
813 return prefix;
814 }
815
816 void
817 interface_ip_set_ula_prefix(const char *prefix)
818 {
819 char buf[INET6_ADDRSTRLEN + 4] = {0}, *saveptr;
820 if (prefix)
821 strncpy(buf, prefix, sizeof(buf) - 1);
822 char *prefixaddr = strtok_r(buf, "/", &saveptr);
823
824 struct in6_addr addr;
825 if (!prefixaddr || inet_pton(AF_INET6, prefixaddr, &addr) < 1) {
826 if (ula_prefix) {
827 interface_update_prefix(NULL, NULL, &ula_prefix->node);
828 ula_prefix = NULL;
829 }
830 return;
831 }
832
833 int length;
834 char *prefixlen = strtok_r(NULL, ",", &saveptr);
835 if (!prefixlen || (length = atoi(prefixlen)) < 1 || length > 64)
836 return;
837
838 if (!ula_prefix || !IN6_ARE_ADDR_EQUAL(&addr, &ula_prefix->addr) ||
839 ula_prefix->length != length) {
840 if (ula_prefix)
841 interface_update_prefix(NULL, NULL, &ula_prefix->node);
842
843 ula_prefix = interface_ip_add_device_prefix(NULL, &addr, length,
844 0, 0, NULL, 0);
845 }
846 }
847
848 void
849 interface_add_dns_server(struct interface_ip_settings *ip, const char *str)
850 {
851 struct dns_server *s;
852
853 s = calloc(1, sizeof(*s));
854 if (!s)
855 return;
856
857 s->af = AF_INET;
858 if (inet_pton(s->af, str, &s->addr.in))
859 goto add;
860
861 s->af = AF_INET6;
862 if (inet_pton(s->af, str, &s->addr.in))
863 goto add;
864
865 free(s);
866 return;
867
868 add:
869 D(INTERFACE, "Add IPv%c DNS server: %s\n",
870 s->af == AF_INET6 ? '6' : '4', str);
871 vlist_simple_add(&ip->dns_servers, &s->node);
872 }
873
874 void
875 interface_add_dns_server_list(struct interface_ip_settings *ip, struct blob_attr *list)
876 {
877 struct blob_attr *cur;
878 int rem;
879
880 blobmsg_for_each_attr(cur, list, rem) {
881 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
882 continue;
883
884 if (!blobmsg_check_attr(cur, NULL))
885 continue;
886
887 interface_add_dns_server(ip, blobmsg_data(cur));
888 }
889 }
890
891 static void
892 interface_add_dns_search_domain(struct interface_ip_settings *ip, const char *str)
893 {
894 struct dns_search_domain *s;
895 int len = strlen(str);
896
897 s = calloc(1, sizeof(*s) + len + 1);
898 if (!s)
899 return;
900
901 D(INTERFACE, "Add DNS search domain: %s\n", str);
902 memcpy(s->name, str, len);
903 vlist_simple_add(&ip->dns_search, &s->node);
904 }
905
906 void
907 interface_add_dns_search_list(struct interface_ip_settings *ip, struct blob_attr *list)
908 {
909 struct blob_attr *cur;
910 int rem;
911
912 blobmsg_for_each_attr(cur, list, rem) {
913 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
914 continue;
915
916 if (!blobmsg_check_attr(cur, NULL))
917 continue;
918
919 interface_add_dns_search_domain(ip, blobmsg_data(cur));
920 }
921 }
922
923 static void
924 write_resolv_conf_entries(FILE *f, struct interface_ip_settings *ip)
925 {
926 struct dns_server *s;
927 struct dns_search_domain *d;
928 const char *str;
929 char buf[INET6_ADDRSTRLEN];
930
931 vlist_simple_for_each_element(&ip->dns_servers, s, node) {
932 str = inet_ntop(s->af, &s->addr, buf, sizeof(buf));
933 if (!str)
934 continue;
935
936 fprintf(f, "nameserver %s\n", str);
937 }
938
939 vlist_simple_for_each_element(&ip->dns_search, d, node) {
940 fprintf(f, "search %s\n", d->name);
941 }
942 }
943
944 void
945 interface_write_resolv_conf(void)
946 {
947 struct interface *iface;
948 char *path = alloca(strlen(resolv_conf) + 5);
949 FILE *f;
950 uint32_t crcold, crcnew;
951
952 sprintf(path, "%s.tmp", resolv_conf);
953 unlink(path);
954 f = fopen(path, "w+");
955 if (!f) {
956 D(INTERFACE, "Failed to open %s for writing\n", path);
957 return;
958 }
959
960 vlist_for_each_element(&interfaces, iface, node) {
961 if (iface->state != IFS_UP)
962 continue;
963
964 if (vlist_simple_empty(&iface->proto_ip.dns_search) &&
965 vlist_simple_empty(&iface->proto_ip.dns_servers) &&
966 vlist_simple_empty(&iface->config_ip.dns_search) &&
967 vlist_simple_empty(&iface->config_ip.dns_servers))
968 continue;
969
970 fprintf(f, "# Interface %s\n", iface->name);
971 write_resolv_conf_entries(f, &iface->config_ip);
972 if (!iface->proto_ip.no_dns)
973 write_resolv_conf_entries(f, &iface->proto_ip);
974 }
975 fflush(f);
976 rewind(f);
977 crcnew = crc32_file(f);
978 fclose(f);
979
980 crcold = crcnew + 1;
981 f = fopen(resolv_conf, "r");
982 if (f) {
983 crcold = crc32_file(f);
984 fclose(f);
985 }
986
987 if (crcold == crcnew) {
988 unlink(path);
989 } else if (rename(path, resolv_conf) < 0) {
990 D(INTERFACE, "Failed to replace %s\n", resolv_conf);
991 unlink(path);
992 }
993 }
994
995 void interface_ip_set_enabled(struct interface_ip_settings *ip, bool enabled)
996 {
997 struct device_addr *addr;
998 struct device_route *route;
999 struct device *dev;
1000
1001 ip->enabled = enabled;
1002 dev = ip->iface->l3_dev.dev;
1003 if (!dev)
1004 return;
1005
1006 vlist_for_each_element(&ip->addr, addr, node) {
1007 if (addr->enabled == enabled)
1008 continue;
1009
1010 if (enabled)
1011 system_add_address(dev, addr);
1012 else
1013 system_del_address(dev, addr);
1014 addr->enabled = enabled;
1015 }
1016
1017 vlist_for_each_element(&ip->route, route, node) {
1018 bool _enabled = enabled;
1019
1020 if (!enable_route(ip, route))
1021 _enabled = false;
1022
1023 if (route->enabled == _enabled)
1024 continue;
1025
1026 if (_enabled) {
1027 if (!(route->flags & DEVROUTE_METRIC))
1028 route->metric = ip->iface->metric;
1029
1030 system_add_route(dev, route);
1031 } else
1032 system_del_route(dev, route);
1033 route->enabled = _enabled;
1034 }
1035
1036 struct device_prefix *c;
1037 struct device_prefix_assignment *a;
1038 list_for_each_entry(c, &prefixes, head)
1039 list_for_each_entry(a, &c->assignments, head)
1040 if (!strcmp(a->name, ip->iface->name))
1041 interface_set_prefix_address(a, c, ip->iface, enabled);
1042
1043 set_ip_lo_policy(enabled, true, ip->iface);
1044 set_ip_lo_policy(enabled, false, ip->iface);
1045 }
1046
1047 void
1048 interface_ip_update_start(struct interface_ip_settings *ip)
1049 {
1050 if (ip != &ip->iface->config_ip) {
1051 vlist_simple_update(&ip->dns_servers);
1052 vlist_simple_update(&ip->dns_search);
1053 }
1054 vlist_update(&ip->route);
1055 vlist_update(&ip->addr);
1056 vlist_update(&ip->prefix);
1057 }
1058
1059 void
1060 interface_ip_update_complete(struct interface_ip_settings *ip)
1061 {
1062 vlist_simple_flush(&ip->dns_servers);
1063 vlist_simple_flush(&ip->dns_search);
1064 vlist_flush(&ip->route);
1065 vlist_flush(&ip->addr);
1066 vlist_flush(&ip->prefix);
1067 interface_write_resolv_conf();
1068 }
1069
1070 void
1071 interface_ip_flush(struct interface_ip_settings *ip)
1072 {
1073 if (ip == &ip->iface->proto_ip)
1074 vlist_flush_all(&ip->iface->host_routes);
1075 vlist_simple_flush_all(&ip->dns_servers);
1076 vlist_simple_flush_all(&ip->dns_search);
1077 vlist_flush_all(&ip->route);
1078 vlist_flush_all(&ip->addr);
1079 vlist_flush_all(&ip->prefix);
1080 }
1081
1082 static void
1083 __interface_ip_init(struct interface_ip_settings *ip, struct interface *iface)
1084 {
1085 ip->iface = iface;
1086 ip->enabled = true;
1087 vlist_simple_init(&ip->dns_search, struct dns_search_domain, node);
1088 vlist_simple_init(&ip->dns_servers, struct dns_server, node);
1089 vlist_init(&ip->route, route_cmp, interface_update_proto_route);
1090 vlist_init(&ip->addr, addr_cmp, interface_update_proto_addr);
1091 vlist_init(&ip->prefix, prefix_cmp, interface_update_prefix);
1092 }
1093
1094 void
1095 interface_ip_init(struct interface *iface)
1096 {
1097 __interface_ip_init(&iface->proto_ip, iface);
1098 __interface_ip_init(&iface->config_ip, iface);
1099 vlist_init(&iface->host_routes, route_cmp, interface_update_host_route);
1100
1101 }
1102
1103 static void
1104 interface_ip_valid_until_handler(struct uloop_timeout *t)
1105 {
1106 time_t now = system_get_rtime();
1107 struct interface *iface;
1108 vlist_for_each_element(&interfaces, iface, node) {
1109 if (iface->state != IFS_UP)
1110 continue;
1111
1112 struct device_addr *addr, *addrp;
1113 struct device_route *route, *routep;
1114 struct device_prefix *pref, *prefp;
1115
1116 vlist_for_each_element_safe(&iface->proto_ip.addr, addr, node, addrp)
1117 if (addr->valid_until && addr->valid_until < now)
1118 vlist_delete(&iface->proto_ip.addr, &addr->node);
1119
1120 vlist_for_each_element_safe(&iface->proto_ip.route, route, node, routep)
1121 if (route->valid_until && route->valid_until < now)
1122 vlist_delete(&iface->proto_ip.route, &route->node);
1123
1124 vlist_for_each_element_safe(&iface->proto_ip.prefix, pref, node, prefp)
1125 if (pref->valid_until && pref->valid_until < now)
1126 vlist_delete(&iface->proto_ip.prefix, &pref->node);
1127
1128 }
1129
1130 uloop_timeout_set(t, 1000);
1131 }
1132
1133 static void __init
1134 interface_ip_init_worker(void)
1135 {
1136 valid_until_timeout.cb = interface_ip_valid_until_handler;
1137 uloop_timeout_set(&valid_until_timeout, 1000);
1138 }