Initial IPv6 prefix support
[project/netifd.git] / interface-ip.c
1 /*
2  * netifd - network interface daemon
3  * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
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 version 2
7  * as published by 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 #include <string.h>
15 #include <stdlib.h>
16 #include <stdio.h>
17 #include <unistd.h>
18
19 #include <arpa/inet.h>
20
21 #include "netifd.h"
22 #include "device.h"
23 #include "interface.h"
24 #include "interface-ip.h"
25 #include "proto.h"
26 #include "ubus.h"
27 #include "system.h"
28
29 enum {
30         ROUTE_INTERFACE,
31         ROUTE_TARGET,
32         ROUTE_MASK,
33         ROUTE_GATEWAY,
34         ROUTE_METRIC,
35         ROUTE_MTU,
36         __ROUTE_MAX
37 };
38
39 static const struct blobmsg_policy route_attr[__ROUTE_MAX] = {
40         [ROUTE_INTERFACE] = { .name = "interface", .type = BLOBMSG_TYPE_STRING },
41         [ROUTE_TARGET] = { .name = "target", .type = BLOBMSG_TYPE_STRING },
42         [ROUTE_MASK] = { .name = "netmask", .type = BLOBMSG_TYPE_STRING },
43         [ROUTE_GATEWAY] = { .name = "gateway", .type = BLOBMSG_TYPE_STRING },
44         [ROUTE_METRIC] = { .name = "metric", .type = BLOBMSG_TYPE_INT32 },
45         [ROUTE_MTU] = { .name = "mtu", .type = BLOBMSG_TYPE_INT32 },
46 };
47
48 const struct config_param_list route_attr_list = {
49         .n_params = __ROUTE_MAX,
50         .params = route_attr,
51 };
52
53
54 struct list_head prefixes = LIST_HEAD_INIT(prefixes);
55 static struct device_prefix *ula_prefix = NULL;
56
57
58 static void
59 clear_if_addr(union if_addr *a, int mask)
60 {
61         int m_bytes = (mask + 7) / 8;
62         uint8_t m_clear = (1 << (m_bytes * 8 - mask)) - 1;
63         uint8_t *p = (uint8_t *) a;
64
65         if (m_bytes < sizeof(a))
66                 memset(p + m_bytes, 0, sizeof(a) - m_bytes);
67
68         p[m_bytes - 1] &= ~m_clear;
69 }
70
71 static bool
72 match_if_addr(union if_addr *a1, union if_addr *a2, int mask)
73 {
74         union if_addr *p1, *p2;
75
76         p1 = alloca(sizeof(*a1));
77         p2 = alloca(sizeof(*a2));
78
79         memcpy(p1, a1, sizeof(*a1));
80         clear_if_addr(p1, mask);
81         memcpy(p2, a2, sizeof(*a2));
82         clear_if_addr(p2, mask);
83
84         return !memcmp(p1, p2, sizeof(*p1));
85 }
86
87 static bool
88 __find_ip_addr_target(struct interface_ip_settings *ip, union if_addr *a, bool v6)
89 {
90         struct device_addr *addr;
91
92         vlist_for_each_element(&ip->addr, addr, node) {
93                 if (!addr->enabled)
94                         continue;
95
96                 if (v6 != ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET6))
97                         continue;
98
99                 if (!match_if_addr(&addr->addr, a, addr->mask))
100                         continue;
101
102                 return true;
103         }
104
105         return false;
106 }
107
108 static void
109 __find_ip_route_target(struct interface_ip_settings *ip, union if_addr *a,
110                        bool v6, struct device_route **res)
111 {
112         struct device_route *route;
113
114         vlist_for_each_element(&ip->route, route, node) {
115                 if (!route->enabled)
116                         continue;
117
118                 if (v6 != ((route->flags & DEVADDR_FAMILY) == DEVADDR_INET6))
119                         continue;
120
121                 if (!match_if_addr(&route->addr, a, route->mask))
122                         continue;
123
124                 if (!*res || route->mask < (*res)->mask)
125                         *res = route;
126         }
127 }
128
129 static bool
130 interface_ip_find_addr_target(struct interface *iface, union if_addr *a, bool v6)
131 {
132         return __find_ip_addr_target(&iface->proto_ip, a, v6) ||
133                __find_ip_addr_target(&iface->config_ip, a, v6);
134 }
135
136 static void
137 interface_ip_find_route_target(struct interface *iface, union if_addr *a,
138                                bool v6, struct device_route **route)
139 {
140         __find_ip_route_target(&iface->proto_ip, a, v6, route);
141         __find_ip_route_target(&iface->config_ip, a, v6, route);
142 }
143
144 struct interface *
145 interface_ip_add_target_route(union if_addr *addr, bool v6)
146 {
147         struct interface *iface;
148         struct device_route *route, *r_next = NULL;
149         bool defaultroute_target = false;
150         int addrsize = v6 ? sizeof(addr->in6) : sizeof(addr->in);
151
152         route = calloc(1, sizeof(*route));
153         if (!route)
154                 return NULL;
155
156         route->flags = v6 ? DEVADDR_INET6 : DEVADDR_INET4;
157         route->mask = v6 ? 128 : 32;
158         if (memcmp(&route->addr, addr, addrsize) == 0)
159                 defaultroute_target = true;
160         else
161                 memcpy(&route->addr, addr, addrsize);
162
163         vlist_for_each_element(&interfaces, iface, node) {
164                 /* look for locally addressable target first */
165                 if (interface_ip_find_addr_target(iface, addr, v6))
166                         goto done;
167
168                 /* do not stop at the first route, let the lookup compare
169                  * masks to find the best match */
170                 interface_ip_find_route_target(iface, addr, v6, &r_next);
171         }
172
173         if (!r_next) {
174                 free(route);
175                 return NULL;
176         }
177
178         iface = r_next->iface;
179         memcpy(&route->nexthop, &r_next->nexthop, sizeof(route->nexthop));
180         route->mtu = r_next->mtu;
181         route->metric = r_next->metric;
182
183 done:
184         route->iface = iface;
185         if (defaultroute_target)
186                 free(route);
187         else
188                 vlist_add(&iface->host_routes, &route->node, &route->flags);
189         return iface;
190 }
191
192 void
193 interface_ip_add_route(struct interface *iface, struct blob_attr *attr, bool v6)
194 {
195         struct interface_ip_settings *ip;
196         struct blob_attr *tb[__ROUTE_MAX], *cur;
197         struct device_route *route;
198         int af = v6 ? AF_INET6 : AF_INET;
199
200         blobmsg_parse(route_attr, __ROUTE_MAX, tb, blobmsg_data(attr), blobmsg_data_len(attr));
201
202         if (!iface) {
203                 if ((cur = tb[ROUTE_INTERFACE]) == NULL)
204                         return;
205
206                 iface = vlist_find(&interfaces, blobmsg_data(cur), iface, node);
207                 if (!iface)
208                         return;
209
210                 ip = &iface->config_ip;
211         } else {
212                 ip = &iface->proto_ip;
213         }
214
215         route = calloc(1, sizeof(*route));
216         if (!route)
217                 return;
218
219         route->flags = v6 ? DEVADDR_INET6 : DEVADDR_INET4;
220         route->mask = v6 ? 128 : 32;
221         if ((cur = tb[ROUTE_MASK]) != NULL) {
222                 route->mask = parse_netmask_string(blobmsg_data(cur), v6);
223                 if (route->mask > (v6 ? 128 : 32))
224                         goto error;
225         }
226
227         if ((cur = tb[ROUTE_TARGET]) != NULL) {
228                 if (!parse_ip_and_netmask(af, blobmsg_data(cur), &route->addr, &route->mask)) {
229                         DPRINTF("Failed to parse route target: %s\n", (char *) blobmsg_data(cur));
230                         goto error;
231                 }
232         }
233
234         if ((cur = tb[ROUTE_GATEWAY]) != NULL) {
235                 if (!inet_pton(af, blobmsg_data(cur), &route->nexthop)) {
236                         DPRINTF("Failed to parse route gateway: %s\n", (char *) blobmsg_data(cur));
237                         goto error;
238                 }
239         }
240
241         if ((cur = tb[ROUTE_METRIC]) != NULL) {
242                 route->metric = blobmsg_get_u32(cur);
243                 route->flags |= DEVROUTE_METRIC;
244         }
245
246         if ((cur = tb[ROUTE_MTU]) != NULL) {
247                 route->mtu = blobmsg_get_u32(cur);
248                 route->flags |= DEVROUTE_MTU;
249         }
250
251         vlist_add(&ip->route, &route->node, &route->flags);
252         return;
253
254 error:
255         free(route);
256 }
257
258 static int
259 addr_cmp(const void *k1, const void *k2, void *ptr)
260 {
261         return memcmp(k1, k2, sizeof(struct device_addr) -
262                       offsetof(struct device_addr, flags));
263 }
264
265 static int
266 route_cmp(const void *k1, const void *k2, void *ptr)
267 {
268         return memcmp(k1, k2, sizeof(struct device_route) -
269                       offsetof(struct device_route, flags));
270 }
271
272 static int
273 prefix_cmp(const void *k1, const void *k2, void *ptr)
274 {
275         return memcmp(k1, k2, sizeof(struct device_prefix) -
276                         offsetof(struct device_prefix, addr));
277 }
278
279 static int
280 prefix_assignment_cmp(const void *k1, const void *k2, void *ptr)
281 {
282         return strcmp((const char*)k1, (const char*)k2);
283 }
284
285 static void
286 interface_handle_subnet_route(struct interface *iface, struct device_addr *addr, bool add)
287 {
288         struct device *dev = iface->l3_dev.dev;
289         struct device_route route;
290
291         memset(&route, 0, sizeof(route));
292         route.iface = iface;
293         route.flags = addr->flags;
294         route.mask = addr->mask;
295         memcpy(&route.addr, &addr->addr, sizeof(route.addr));
296         clear_if_addr(&route.addr, route.mask);
297
298         if (add) {
299                 route.flags |= DEVADDR_KERNEL;
300                 system_del_route(dev, &route);
301
302                 route.flags &= ~DEVADDR_KERNEL;
303                 route.metric = iface->metric;
304                 system_add_route(dev, &route);
305         } else {
306                 system_del_route(dev, &route);
307         }
308 }
309
310 static void
311 interface_update_proto_addr(struct vlist_tree *tree,
312                             struct vlist_node *node_new,
313                             struct vlist_node *node_old)
314 {
315         struct interface_ip_settings *ip;
316         struct interface *iface;
317         struct device *dev;
318         struct device_addr *a_new = NULL, *a_old = NULL;
319         bool keep = false;
320
321         ip = container_of(tree, struct interface_ip_settings, addr);
322         iface = ip->iface;
323         dev = iface->l3_dev.dev;
324
325         if (node_new) {
326                 a_new = container_of(node_new, struct device_addr, node);
327
328                 if ((a_new->flags & DEVADDR_FAMILY) == DEVADDR_INET4 &&
329                     !a_new->broadcast) {
330
331                         uint32_t mask = ~0;
332                         uint32_t *a = (uint32_t *) &a_new->addr;
333
334                         mask >>= a_new->mask;
335                         a_new->broadcast = *a | htonl(mask);
336                 }
337         }
338
339         if (node_old)
340                 a_old = container_of(node_old, struct device_addr, node);
341
342         if (a_new && a_old) {
343                 keep = true;
344
345                 if (a_old->flags != a_new->flags)
346                         keep = false;
347
348                 if ((a_new->flags & DEVADDR_FAMILY) == DEVADDR_INET4 &&
349                     a_new->broadcast != a_old->broadcast)
350                         keep = false;
351         }
352
353         if (node_old) {
354                 if (!(a_old->flags & DEVADDR_EXTERNAL) && a_old->enabled && !keep) {
355                         interface_handle_subnet_route(iface, a_old, false);
356                         system_del_address(dev, a_old);
357                 }
358                 free(a_old);
359         }
360
361         if (node_new) {
362                 a_new->enabled = true;
363                 if (!(a_new->flags & DEVADDR_EXTERNAL) && !keep) {
364                         system_add_address(dev, a_new);
365                         if (iface->metric)
366                                 interface_handle_subnet_route(iface, a_new, true);
367                 }
368         }
369 }
370
371 static bool
372 enable_route(struct interface_ip_settings *ip, struct device_route *route)
373 {
374         if (ip->no_defaultroute && !route->mask)
375                 return false;
376
377         return ip->enabled;
378 }
379
380 static void
381 interface_update_proto_route(struct vlist_tree *tree,
382                              struct vlist_node *node_new,
383                              struct vlist_node *node_old)
384 {
385         struct interface_ip_settings *ip;
386         struct interface *iface;
387         struct device *dev;
388         struct device_route *route_old, *route_new;
389         bool keep = false;
390
391         ip = container_of(tree, struct interface_ip_settings, route);
392         iface = ip->iface;
393         dev = iface->l3_dev.dev;
394
395         route_old = container_of(node_old, struct device_route, node);
396         route_new = container_of(node_new, struct device_route, node);
397
398         if (node_old && node_new)
399                 keep = !memcmp(&route_old->nexthop, &route_new->nexthop, sizeof(route_old->nexthop));
400
401         if (node_old) {
402                 if (!(route_old->flags & DEVADDR_EXTERNAL) && route_old->enabled && !keep)
403                         system_del_route(dev, route_old);
404                 free(route_old);
405         }
406
407         if (node_new) {
408                 bool _enabled = enable_route(ip, route_new);
409
410                 if (!(route_new->flags & DEVROUTE_METRIC))
411                         route_new->metric = iface->metric;
412
413                 if (!(route_new->flags & DEVADDR_EXTERNAL) && !keep && _enabled)
414                         system_add_route(dev, route_new);
415
416                 route_new->iface = iface;
417                 route_new->enabled = _enabled;
418         }
419 }
420
421 static void
422 interface_update_host_route(struct vlist_tree *tree,
423                              struct vlist_node *node_new,
424                              struct vlist_node *node_old)
425 {
426         struct interface *iface;
427         struct device *dev;
428         struct device_route *route_old, *route_new;
429
430         iface = container_of(tree, struct interface, host_routes);
431         dev = iface->l3_dev.dev;
432
433         route_old = container_of(node_old, struct device_route, node);
434         route_new = container_of(node_new, struct device_route, node);
435
436         if (node_old) {
437                 system_del_route(dev, route_old);
438                 free(route_old);
439         }
440
441         if (node_new)
442                 system_add_route(dev, route_new);
443 }
444
445
446 static void
447 interface_set_prefix_address(struct interface *iface, bool add,
448                 struct device_prefix_assignment *assignment)
449 {
450         struct interface *uplink = assignment->prefix->iface;
451         if (!iface->l3_dev.dev)
452                 return;
453
454         struct device *l3_downlink = iface->l3_dev.dev;
455
456         struct device_addr addr;
457         memset(&addr, 0, sizeof(addr));
458         addr.addr.in6 = assignment->addr;
459         addr.mask = assignment->length;
460         addr.flags = DEVADDR_INET6;
461         addr.preferred_until = assignment->prefix->preferred_until;
462         addr.valid_until = assignment->prefix->valid_until;
463
464         if (!add) {
465                 if (assignment->enabled)
466                         system_del_address(l3_downlink, &addr);
467         } else {
468                 system_add_address(l3_downlink, &addr);
469
470                 if (uplink && uplink->l3_dev.dev) {
471                         int mtu = system_update_ipv6_mtu(
472                                         uplink->l3_dev.dev, 0);
473                         if (mtu > 0)
474                                 system_update_ipv6_mtu(l3_downlink, mtu);
475                 }
476         }
477         assignment->enabled = add;
478 }
479
480
481 static void
482 interface_update_prefix_assignments(struct vlist_tree *tree,
483                              struct vlist_node *node_new,
484                              struct vlist_node *node_old)
485 {
486         struct device_prefix_assignment *old, *new;
487         old = container_of(node_old, struct device_prefix_assignment, node);
488         new = container_of(node_new, struct device_prefix_assignment, node);
489
490         // Assignments persist across interface reloads etc.
491         // so use indirection to avoid dangling pointers
492         struct interface *iface = vlist_find(&interfaces,
493                         (node_new) ? new->name : old->name, iface, node);
494
495         if (node_old && node_new) {
496                 new->addr = old->addr;
497                 new->length = old->length;
498         } else if (node_old) {
499                 if (iface)
500                         interface_set_prefix_address(iface, false, old);
501                 free(old->name);
502                 free(old);
503         } else if (node_new) {
504                 struct device_prefix *prefix = new->prefix;
505                 uint64_t want = 1ULL << (64 - new->length);
506                 prefix->avail &= ~(want - 1);
507                 prefix->avail -= want;
508
509                 // Invert assignment
510                 uint64_t assigned = ~prefix->avail;
511                 assigned &= (1ULL << (64 - prefix->length)) - 1;
512                 assigned &= ~(want - 1);
513
514                 // Assignment
515                 new->addr = prefix->addr;
516                 new->addr.s6_addr32[0] |=
517                                 htonl(assigned >> 32);
518                 new->addr.s6_addr32[1] |=
519                                 htonl(assigned & 0xffffffffU);
520                 new->addr.s6_addr[15] += 1;
521         }
522
523         if (node_new && (iface->state == IFS_UP || iface->state == IFS_SETUP))
524                 interface_set_prefix_address(iface, true, new);
525 }
526
527
528 void
529 interface_ip_set_prefix_assignment(struct device_prefix *prefix,
530                 struct interface *iface, uint8_t length)
531 {
532         if (!length || length > 64) {
533                 struct device_prefix_assignment *assignment = vlist_find(
534                                 prefix->assignments, &iface, assignment, node);
535                 if (assignment)
536                         interface_set_prefix_address(iface, false, assignment);
537         } else {
538                 uint8_t length = iface->proto_ip.assignment_length;
539                 uint64_t want = 1ULL << (64 - length);
540                 if (prefix->avail < want && prefix->avail > 0) {
541                         do {
542                                 want = 1ULL << (64 - ++length);
543                         } while (want > prefix->avail);
544                 }
545
546                 if (prefix->avail < want)
547                         return;
548
549                 // Assignment
550                 struct device_prefix_assignment *assignment = calloc(1, sizeof(*assignment));
551                 assignment->prefix = prefix;
552                 assignment->length = length;
553                 assignment->name = strdup(iface->name);
554
555                 vlist_add(prefix->assignments, &assignment->node, assignment->name);
556         }
557 }
558
559 static void
560 interface_update_prefix(struct vlist_tree *tree,
561                              struct vlist_node *node_new,
562                              struct vlist_node *node_old)
563 {
564         struct device_prefix *prefix_old, *prefix_new;
565         prefix_old = container_of(node_old, struct device_prefix, node);
566         prefix_new = container_of(node_new, struct device_prefix, node);
567
568         struct device_route route;
569         memset(&route, 0, sizeof(route));
570         route.flags = DEVADDR_INET6;
571         route.metric = INT32_MAX;
572         route.mask = (node_new) ? prefix_new->length : prefix_old->length;
573         route.addr.in6 = (node_new) ? prefix_new->addr : prefix_old->addr;
574
575         if (node_old && node_new) {
576                 prefix_new->avail = prefix_old->avail;
577                 prefix_new->assignments = prefix_old->assignments;
578                 prefix_old->assignments = NULL;
579
580                 // Update all assignments
581                 struct device_prefix_assignment *assignment;
582                 struct vlist_tree *assignments = prefix_new->assignments;
583                 vlist_for_each_element(assignments, assignment, node)
584                         assignments->update(assignments,
585                                         &assignment->node, &assignment->node);
586         } else if (node_new) {
587                 prefix_new->avail = 1ULL << (64 - prefix_new->length);
588                 prefix_new->assignments = calloc(1, sizeof(*prefix_new->assignments));
589                 vlist_init(prefix_new->assignments, prefix_assignment_cmp,
590                                 interface_update_prefix_assignments);
591
592                 // Create initial assignments for interfaces
593                 struct interface *iface;
594                 vlist_for_each_element(&interfaces, iface, node)
595                         interface_ip_set_prefix_assignment(prefix_new, iface,
596                                         iface->proto_ip.assignment_length);
597
598                 list_add(&prefix_new->head, &prefixes);
599
600                 // Set null-route to avoid routing loops
601                 system_add_route(NULL, &route);
602         }
603
604         if (node_old) {
605                 // Remove null-route
606                 system_del_route(NULL, &route);
607
608                 list_del(&prefix_old->head);
609
610                 if (prefix_old->assignments) {
611                         vlist_flush_all(prefix_old->assignments);
612                         free(prefix_old->assignments);
613                 }
614                 free(prefix_old);
615         }
616 }
617
618 void
619 interface_ip_add_device_prefix(struct interface *iface, struct in6_addr *addr,
620                 uint8_t length, time_t valid_until, time_t preferred_until)
621 {
622         struct device_prefix *prefix = calloc(1, sizeof(*prefix));
623         prefix->length = length;
624         prefix->addr = *addr;
625         prefix->preferred_until = preferred_until;
626         prefix->valid_until = valid_until;
627         prefix->iface = iface;
628
629         if (iface)
630                 vlist_add(&iface->proto_ip.prefix, &prefix->node, &prefix->addr);
631         else
632                 interface_update_prefix(NULL, &prefix->node, NULL);
633 }
634
635 void
636 interface_ip_set_ula_prefix(const char *prefix)
637 {
638         char buf[INET6_ADDRSTRLEN + 4] = {0}, *saveptr;
639         strncpy(buf, prefix, sizeof(buf) - 1);
640         char *prefixaddr = strtok_r(buf, "/", &saveptr);
641
642         struct in6_addr addr;
643         if (!prefixaddr || inet_pton(AF_INET6, prefixaddr, &addr) < 1)
644                 return;
645
646         int length;
647         char *prefixlen = strtok_r(NULL, ",", &saveptr);
648         if (!prefixlen || (length = atoi(prefixlen)) < 1 || length > 64)
649                 return;
650
651         if (ula_prefix && (!IN6_ARE_ADDR_EQUAL(&addr, &ula_prefix->addr) ||
652                         ula_prefix->length != length)) {
653                 interface_update_prefix(NULL, NULL, &ula_prefix->node);
654                 ula_prefix = NULL;
655         }
656
657         interface_ip_add_device_prefix(NULL, &addr, length, 0, 0);
658 }
659
660 void
661 interface_add_dns_server(struct interface_ip_settings *ip, const char *str)
662 {
663         struct dns_server *s;
664
665         s = calloc(1, sizeof(*s));
666         if (!s)
667                 return;
668
669         s->af = AF_INET;
670         if (inet_pton(s->af, str, &s->addr.in))
671                 goto add;
672
673         s->af = AF_INET6;
674         if (inet_pton(s->af, str, &s->addr.in))
675                 goto add;
676
677         free(s);
678         return;
679
680 add:
681         D(INTERFACE, "Add IPv%c DNS server: %s\n",
682           s->af == AF_INET6 ? '6' : '4', str);
683         vlist_simple_add(&ip->dns_servers, &s->node);
684 }
685
686 void
687 interface_add_dns_server_list(struct interface_ip_settings *ip, struct blob_attr *list)
688 {
689         struct blob_attr *cur;
690         int rem;
691
692         blobmsg_for_each_attr(cur, list, rem) {
693                 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
694                         continue;
695
696                 if (!blobmsg_check_attr(cur, NULL))
697                         continue;
698
699                 interface_add_dns_server(ip, blobmsg_data(cur));
700         }
701 }
702
703 static void
704 interface_add_dns_search_domain(struct interface_ip_settings *ip, const char *str)
705 {
706         struct dns_search_domain *s;
707         int len = strlen(str);
708
709         s = calloc(1, sizeof(*s) + len + 1);
710         if (!s)
711                 return;
712
713         D(INTERFACE, "Add DNS search domain: %s\n", str);
714         memcpy(s->name, str, len);
715         vlist_simple_add(&ip->dns_search, &s->node);
716 }
717
718 void
719 interface_add_dns_search_list(struct interface_ip_settings *ip, struct blob_attr *list)
720 {
721         struct blob_attr *cur;
722         int rem;
723
724         blobmsg_for_each_attr(cur, list, rem) {
725                 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
726                         continue;
727
728                 if (!blobmsg_check_attr(cur, NULL))
729                         continue;
730
731                 interface_add_dns_search_domain(ip, blobmsg_data(cur));
732         }
733 }
734
735 static void
736 write_resolv_conf_entries(FILE *f, struct interface_ip_settings *ip)
737 {
738         struct dns_server *s;
739         struct dns_search_domain *d;
740         const char *str;
741         char buf[32];
742
743         vlist_simple_for_each_element(&ip->dns_servers, s, node) {
744                 str = inet_ntop(s->af, &s->addr, buf, sizeof(buf));
745                 if (!str)
746                         continue;
747
748                 fprintf(f, "nameserver %s\n", str);
749         }
750
751         vlist_simple_for_each_element(&ip->dns_search, d, node) {
752                 fprintf(f, "search %s\n", d->name);
753         }
754 }
755
756 void
757 interface_write_resolv_conf(void)
758 {
759         struct interface *iface;
760         char *path = alloca(strlen(resolv_conf) + 5);
761         FILE *f;
762
763         sprintf(path, "%s.tmp", resolv_conf);
764         unlink(path);
765         f = fopen(path, "w");
766         if (!f) {
767                 D(INTERFACE, "Failed to open %s for writing\n", path);
768                 return;
769         }
770
771         vlist_for_each_element(&interfaces, iface, node) {
772                 if (iface->state != IFS_UP)
773                         continue;
774
775                 if (vlist_simple_empty(&iface->proto_ip.dns_search) &&
776                     vlist_simple_empty(&iface->proto_ip.dns_servers) &&
777                         vlist_simple_empty(&iface->config_ip.dns_search) &&
778                     vlist_simple_empty(&iface->config_ip.dns_servers))
779                         continue;
780
781                 fprintf(f, "# Interface %s\n", iface->name);
782                 write_resolv_conf_entries(f, &iface->config_ip);
783                 if (!iface->proto_ip.no_dns)
784                         write_resolv_conf_entries(f, &iface->proto_ip);
785         }
786         fclose(f);
787         if (rename(path, resolv_conf) < 0) {
788                 D(INTERFACE, "Failed to replace %s\n", resolv_conf);
789                 unlink(path);
790         }
791 }
792
793 void interface_ip_set_enabled(struct interface_ip_settings *ip, bool enabled)
794 {
795         struct device_addr *addr;
796         struct device_route *route;
797         struct device *dev;
798
799         ip->enabled = enabled;
800         dev = ip->iface->l3_dev.dev;
801         if (!dev)
802                 return;
803
804         vlist_for_each_element(&ip->addr, addr, node) {
805                 if (addr->enabled == enabled)
806                         continue;
807
808                 if (enabled)
809                         system_add_address(dev, addr);
810                 else
811                         system_del_address(dev, addr);
812                 addr->enabled = enabled;
813         }
814
815         vlist_for_each_element(&ip->route, route, node) {
816                 bool _enabled = enabled;
817
818                 if (!enable_route(ip, route))
819                         _enabled = false;
820
821                 if (route->enabled == _enabled)
822                         continue;
823
824                 if (_enabled) {
825                         if (!(route->flags & DEVROUTE_METRIC))
826                                 route->metric = ip->iface->metric;
827
828                         system_add_route(dev, route);
829                 } else
830                         system_del_route(dev, route);
831                 route->enabled = _enabled;
832         }
833 }
834
835 void
836 interface_ip_update_start(struct interface_ip_settings *ip)
837 {
838         if (ip != &ip->iface->config_ip) {
839                 vlist_simple_update(&ip->dns_servers);
840                 vlist_simple_update(&ip->dns_search);
841         }
842         vlist_update(&ip->route);
843         vlist_update(&ip->addr);
844         vlist_update(&ip->prefix);
845 }
846
847 void
848 interface_ip_update_complete(struct interface_ip_settings *ip)
849 {
850         vlist_simple_flush(&ip->dns_servers);
851         vlist_simple_flush(&ip->dns_search);
852         vlist_flush(&ip->route);
853         vlist_flush(&ip->addr);
854         vlist_flush(&ip->prefix);
855         interface_write_resolv_conf();
856 }
857
858 void
859 interface_ip_flush(struct interface_ip_settings *ip)
860 {
861         if (ip == &ip->iface->proto_ip)
862                 vlist_flush_all(&ip->iface->host_routes);
863         vlist_simple_flush_all(&ip->dns_servers);
864         vlist_simple_flush_all(&ip->dns_search);
865         vlist_flush_all(&ip->route);
866         vlist_flush_all(&ip->addr);
867         vlist_flush_all(&ip->prefix);
868 }
869
870 static void
871 __interface_ip_init(struct interface_ip_settings *ip, struct interface *iface)
872 {
873         ip->iface = iface;
874         ip->enabled = true;
875         vlist_simple_init(&ip->dns_search, struct dns_search_domain, node);
876         vlist_simple_init(&ip->dns_servers, struct dns_server, node);
877         vlist_init(&ip->route, route_cmp, interface_update_proto_route);
878         vlist_init(&ip->addr, addr_cmp, interface_update_proto_addr);
879         vlist_init(&ip->prefix, prefix_cmp, interface_update_prefix);
880 }
881
882 void
883 interface_ip_init(struct interface *iface)
884 {
885         __interface_ip_init(&iface->proto_ip, iface);
886         __interface_ip_init(&iface->config_ip, iface);
887         vlist_init(&iface->host_routes, route_cmp, interface_update_host_route);
888 }