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