2 * netifd - network interface daemon
3 * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
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
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.
20 #include "interface.h"
21 #include "interface-ip.h"
27 struct vlist_tree interfaces;
28 static LIST_HEAD(iface_all_users);
34 IFACE_ATTR_DEFAULTROUTE,
37 IFACE_ATTR_DNS_SEARCH,
46 IFACE_ATTR_FORCE_LINK,
50 static const struct blobmsg_policy iface_attrs[IFACE_ATTR_MAX] = {
51 [IFACE_ATTR_PROTO] = { .name = "proto", .type = BLOBMSG_TYPE_STRING },
52 [IFACE_ATTR_IFNAME] = { .name = "ifname", .type = BLOBMSG_TYPE_STRING },
53 [IFACE_ATTR_AUTO] = { .name = "auto", .type = BLOBMSG_TYPE_BOOL },
54 [IFACE_ATTR_DEFAULTROUTE] = { .name = "defaultroute", .type = BLOBMSG_TYPE_BOOL },
55 [IFACE_ATTR_PEERDNS] = { .name = "peerdns", .type = BLOBMSG_TYPE_BOOL },
56 [IFACE_ATTR_METRIC] = { .name = "metric", .type = BLOBMSG_TYPE_INT32 },
57 [IFACE_ATTR_DNS] = { .name = "dns", .type = BLOBMSG_TYPE_ARRAY },
58 [IFACE_ATTR_DNS_SEARCH] = { .name = "dns_search", .type = BLOBMSG_TYPE_ARRAY },
59 [IFACE_ATTR_INTERFACE] = { .name = "interface", .type = BLOBMSG_TYPE_STRING },
60 [IFACE_ATTR_IP6ASSIGN] = { .name = "ip6assign", .type = BLOBMSG_TYPE_INT32 },
61 [IFACE_ATTR_IP6HINT] = { .name = "ip6hint", .type = BLOBMSG_TYPE_STRING },
62 [IFACE_ATTR_IP4TABLE] = { .name = "ip4table", .type = BLOBMSG_TYPE_STRING },
63 [IFACE_ATTR_IP6TABLE] = { .name = "ip6table", .type = BLOBMSG_TYPE_STRING },
64 [IFACE_ATTR_IP6CLASS] = { .name = "ip6class", .type = BLOBMSG_TYPE_ARRAY },
65 [IFACE_ATTR_DELEGATE] = { .name = "delegate", .type = BLOBMSG_TYPE_BOOL },
66 [IFACE_ATTR_FORCE_LINK] = { .name = "force_link", .type = BLOBMSG_TYPE_BOOL },
69 static const struct uci_blob_param_info iface_attr_info[IFACE_ATTR_MAX] = {
70 [IFACE_ATTR_DNS] = { .type = BLOBMSG_TYPE_STRING },
71 [IFACE_ATTR_IP6CLASS] = { .type = BLOBMSG_TYPE_STRING },
74 const struct uci_blob_param_list interface_attr_list = {
75 .n_params = IFACE_ATTR_MAX,
76 .params = iface_attrs,
77 .info = iface_attr_info,
81 interface_clear_errors(struct interface *iface)
83 struct interface_error *error, *tmp;
85 list_for_each_entry_safe(error, tmp, &iface->errors, list) {
86 list_del(&error->list);
91 void interface_add_error(struct interface *iface, const char *subsystem,
92 const char *code, const char **data, int n_data)
94 struct interface_error *error;
97 char *dest, *d_subsys, *d_code;
100 len = n_data * sizeof(char *);
101 datalen = alloca(len);
102 for (i = 0; i < n_data; i++) {
103 datalen[i] = strlen(data[i]) + 1;
108 error = calloc_a(sizeof(*error) + sizeof(char *) + len,
109 &d_subsys, subsystem ? strlen(subsystem) + 1 : 0,
110 &d_code, code ? strlen(code) + 1 : 0);
114 list_add_tail(&error->list, &iface->errors);
116 dest = (char *) &error->data[n_data + 1];
117 for (i = 0; i < n_data; i++) {
118 error->data[i] = dest;
119 memcpy(dest, data[i], datalen[i]);
122 error->data[n_data++] = NULL;
125 error->subsystem = strcpy(d_subsys, subsystem);
128 error->code = strcpy(d_code, code);
132 interface_data_del(struct interface *iface, struct interface_data *data)
134 avl_delete(&iface->data, &data->node);
139 interface_data_flush(struct interface *iface)
141 struct interface_data *d, *tmp;
143 avl_for_each_element_safe(&iface->data, d, node, tmp)
144 interface_data_del(iface, d);
148 interface_add_data(struct interface *iface, const struct blob_attr *data)
150 struct interface_data *n, *o;
152 if (!blobmsg_check_attr(data, true))
153 return UBUS_STATUS_INVALID_ARGUMENT;
155 const char *name = blobmsg_name(data);
156 unsigned len = blob_pad_len(data);
158 o = avl_find_element(&iface->data, name, o, node);
160 if (blob_pad_len(o->data) == len && !memcmp(o->data, data, len))
163 interface_data_del(iface, o);
166 n = calloc(1, sizeof(*n) + len);
167 memcpy(n->data, data, len);
168 n->node.key = blobmsg_name(n->data);
169 avl_insert(&iface->data, &n->node);
171 iface->updated |= IUF_DATA;
176 interface_event(struct interface *iface, enum interface_event ev)
178 struct interface_user *dep, *tmp;
179 struct device *adev = NULL;
181 list_for_each_entry_safe(dep, tmp, &iface->users, list)
182 dep->cb(dep, iface, ev);
184 list_for_each_entry_safe(dep, tmp, &iface_all_users, list)
185 dep->cb(dep, iface, ev);
189 adev = iface->l3_dev.dev;
192 alias_notify_device(iface->name, adev);
200 interface_flush_state(struct interface *iface)
202 if (iface->l3_dev.dev)
203 device_release(&iface->l3_dev);
204 interface_data_flush(iface);
208 mark_interface_down(struct interface *iface)
210 enum interface_state state = iface->state;
212 if (state == IFS_DOWN)
215 iface->state = IFS_DOWN;
217 interface_event(iface, IFEV_DOWN);
218 interface_ip_set_enabled(&iface->config_ip, false);
219 interface_ip_flush(&iface->proto_ip);
220 interface_flush_state(iface);
221 system_flush_routes();
225 __interface_set_down(struct interface *iface, bool force)
227 enum interface_state state = iface->state;
231 iface->state = IFS_TEARDOWN;
233 interface_event(iface, IFEV_DOWN);
235 interface_proto_event(iface->proto, PROTO_CMD_TEARDOWN, force);
237 interface_flush_state(iface);
240 vlist_delete(&interfaces, &iface->node);
244 if (iface->main_dev.dev)
245 device_release(&iface->main_dev);
253 __interface_set_up(struct interface *iface)
257 netifd_log_message(L_NOTICE, "Interface '%s' is setting up now\n", iface->name);
259 iface->state = IFS_SETUP;
260 ret = interface_proto_event(iface->proto, PROTO_CMD_SETUP, false);
262 mark_interface_down(iface);
268 interface_check_state(struct interface *iface)
270 bool link_state = iface->link_state || iface->force_link;
272 switch (iface->state) {
274 if (!iface->enabled || !link_state) {
275 mark_interface_down(iface);
276 interface_proto_event(iface->proto, PROTO_CMD_TEARDOWN, false);
280 if (iface->autostart && iface->enabled && link_state && !config_init)
281 __interface_set_up(iface);
289 interface_set_enabled(struct interface *iface, bool new_state)
291 if (iface->enabled == new_state)
294 netifd_log_message(L_NOTICE, "Interface '%s' is %s\n", iface->name, new_state ? "enabled" : "disabled");
295 iface->enabled = new_state;
296 interface_check_state(iface);
300 interface_set_link_state(struct interface *iface, bool new_state)
302 if (iface->link_state == new_state)
305 netifd_log_message(L_NOTICE, "Interface '%s' has link connectivity %s\n", iface->name, new_state ? "" : "loss");
306 iface->link_state = new_state;
307 interface_check_state(iface);
311 interface_ext_cb(struct device_user *dep, enum device_event ev)
313 if (ev == DEV_EVENT_REMOVE)
314 device_remove_user(dep);
318 interface_cb(struct device_user *dep, enum device_event ev)
320 struct interface *iface;
321 bool new_state = false;
323 iface = container_of(dep, struct interface, main_dev);
327 case DEV_EVENT_REMOVE:
328 interface_set_available(iface, new_state);
329 if (!new_state && dep->dev && dep->dev->external)
330 interface_set_main_dev(iface, NULL);
335 interface_set_enabled(iface, new_state);
337 case DEV_EVENT_LINK_UP:
339 case DEV_EVENT_LINK_DOWN:
340 interface_set_link_state(iface, new_state);
342 case DEV_EVENT_TOPO_CHANGE:
343 interface_proto_event(iface->proto, PROTO_CMD_RENEW, false);
351 interface_set_available(struct interface *iface, bool new_state)
353 if (iface->available == new_state)
356 D(INTERFACE, "Interface '%s', available=%d\n", iface->name, new_state);
357 iface->available = new_state;
360 if (iface->autostart && !config_init)
361 interface_set_up(iface);
363 __interface_set_down(iface, true);
367 interface_add_user(struct interface_user *dep, struct interface *iface)
370 list_add(&dep->list, &iface_all_users);
375 list_add(&dep->list, &iface->users);
376 if (iface->state == IFS_UP)
377 dep->cb(dep, iface, IFEV_UP);
381 interface_remove_user(struct interface_user *dep)
383 list_del_init(&dep->list);
388 interface_add_assignment_classes(struct interface *iface, struct blob_attr *list)
390 struct blob_attr *cur;
393 blobmsg_for_each_attr(cur, list, rem) {
394 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
397 if (!blobmsg_check_attr(cur, NULL))
400 struct interface_assignment_class *c = malloc(sizeof(*c) + blobmsg_data_len(cur));
401 memcpy(c->name, blobmsg_data(cur), blobmsg_data_len(cur));
402 list_add(&c->head, &iface->assignment_classes);
407 interface_clear_assignment_classes(struct interface *iface)
409 while (!list_empty(&iface->assignment_classes)) {
410 struct interface_assignment_class *c = list_first_entry(&iface->assignment_classes,
411 struct interface_assignment_class, head);
418 interface_merge_assignment_data(struct interface *old, struct interface *new)
420 bool changed = (old->assignment_hint != new->assignment_hint ||
421 old->assignment_length != new->assignment_length ||
422 list_empty(&old->assignment_classes) != list_empty(&new->assignment_classes));
424 struct interface_assignment_class *c;
425 list_for_each_entry(c, &new->assignment_classes, head) {
426 // Compare list entries one-by-one to see if there was a change
427 if (list_empty(&old->assignment_classes)) // The new list is longer
433 struct interface_assignment_class *c_old = list_first_entry(&old->assignment_classes,
434 struct interface_assignment_class, head);
436 if (strcmp(c_old->name, c->name)) // An entry didn't match
439 list_del(&c_old->head);
443 // The old list was longer than the new one or the last entry didn't match
444 if (!list_empty(&old->assignment_classes)) {
445 interface_clear_assignment_classes(old);
449 list_splice_init(&new->assignment_classes, &old->assignment_classes);
452 old->assignment_hint = new->assignment_hint;
453 old->assignment_length = new->assignment_length;
454 interface_refresh_assignments(true);
459 interface_alias_cb(struct interface_user *dep, struct interface *iface, enum interface_event ev)
461 struct interface *alias = container_of(dep, struct interface, parent_iface);
462 struct device *dev = iface->l3_dev.dev;
469 interface_set_main_dev(alias, dev);
470 interface_set_available(alias, true);
473 interface_set_available(alias, false);
474 interface_set_main_dev(alias, NULL);
477 interface_remove_user(dep);
486 interface_claim_device(struct interface *iface)
488 struct interface *parent;
489 struct device *dev = NULL;
491 if (iface->parent_iface.iface)
492 interface_remove_user(&iface->parent_iface);
494 if (iface->parent_ifname) {
495 parent = vlist_find(&interfaces, iface->parent_ifname, parent, node);
496 iface->parent_iface.cb = interface_alias_cb;
497 interface_add_user(&iface->parent_iface, parent);
498 } else if (iface->ifname &&
499 !(iface->proto_handler->flags & PROTO_FLAG_NODEV)) {
500 dev = device_get(iface->ifname, true);
502 dev = iface->ext_dev.dev;
506 interface_set_main_dev(iface, dev);
508 if (iface->proto_handler->flags & PROTO_FLAG_INIT_AVAILABLE)
509 interface_set_available(iface, true);
513 interface_cleanup_state(struct interface *iface)
515 interface_set_available(iface, false);
517 interface_flush_state(iface);
518 interface_clear_errors(iface);
519 interface_set_proto_state(iface, NULL);
521 interface_set_main_dev(iface, NULL);
522 interface_set_l3_dev(iface, NULL);
526 interface_cleanup(struct interface *iface)
528 struct interface_user *dep, *tmp;
530 device_remove_user(&iface->ext_dev);
532 if (iface->parent_iface.iface)
533 interface_remove_user(&iface->parent_iface);
535 list_for_each_entry_safe(dep, tmp, &iface->users, list)
536 interface_remove_user(dep);
538 interface_clear_assignment_classes(iface);
539 interface_ip_flush(&iface->config_ip);
540 interface_cleanup_state(iface);
544 interface_do_free(struct interface *iface)
546 interface_event(iface, IFEV_FREE);
547 interface_cleanup(iface);
549 netifd_ubus_remove_interface(iface);
550 avl_delete(&interfaces.avl, &iface->node.avl);
555 interface_do_reload(struct interface *iface)
557 interface_event(iface, IFEV_RELOAD);
558 interface_cleanup_state(iface);
559 proto_init_interface(iface, iface->config);
560 interface_claim_device(iface);
564 interface_handle_config_change(struct interface *iface)
566 enum interface_config_state state = iface->config_state;
568 iface->config_state = IFC_NORMAL;
573 interface_do_reload(iface);
576 interface_do_free(iface);
579 if (iface->autostart && iface->available)
580 interface_set_up(iface);
584 interface_proto_cb(struct interface_proto_state *state, enum interface_proto_event ev)
586 struct interface *iface = state->iface;
590 if (iface->state != IFS_SETUP) {
591 interface_event(iface, IFEV_UPDATE);
595 if (!iface->l3_dev.dev)
596 interface_set_l3_dev(iface, iface->main_dev.dev);
598 interface_ip_set_enabled(&iface->config_ip, true);
599 system_flush_routes();
600 iface->state = IFS_UP;
601 iface->start_time = system_get_rtime();
602 interface_event(iface, IFEV_UP);
603 netifd_log_message(L_NOTICE, "Interface '%s' is now up\n", iface->name);
606 if (iface->state == IFS_DOWN)
609 netifd_log_message(L_NOTICE, "Interface '%s' is now down\n", iface->name);
610 mark_interface_down(iface);
611 if (iface->main_dev.dev)
612 device_release(&iface->main_dev);
613 if (iface->l3_dev.dev)
614 device_remove_user(&iface->l3_dev);
615 interface_handle_config_change(iface);
617 case IFPEV_LINK_LOST:
618 if (iface->state != IFS_UP)
621 netifd_log_message(L_NOTICE, "Interface '%s' has lost the connection\n", iface->name);
622 mark_interface_down(iface);
623 iface->state = IFS_SETUP;
629 interface_write_resolv_conf();
632 void interface_set_proto_state(struct interface *iface, struct interface_proto_state *state)
635 iface->proto->free(iface->proto);
638 iface->state = IFS_DOWN;
639 iface->proto = state;
643 state->proto_event = interface_proto_cb;
644 state->iface = iface;
648 interface_alloc(const char *name, struct blob_attr *config)
650 struct interface *iface;
651 struct blob_attr *tb[IFACE_ATTR_MAX];
652 struct blob_attr *cur;
653 const char *proto_name = NULL;
655 bool force_link = false;
657 iface = calloc_a(sizeof(*iface), &iface_name, strlen(name) + 1);
658 iface->name = strcpy(iface_name, name);
659 INIT_LIST_HEAD(&iface->errors);
660 INIT_LIST_HEAD(&iface->users);
661 INIT_LIST_HEAD(&iface->hotplug_list);
662 INIT_LIST_HEAD(&iface->assignment_classes);
663 interface_ip_init(iface);
664 avl_init(&iface->data, avl_strcmp, false, NULL);
665 iface->config_ip.enabled = false;
667 iface->main_dev.cb = interface_cb;
668 iface->ext_dev.cb = interface_ext_cb;
670 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb,
671 blob_data(config), blob_len(config));
673 if ((cur = tb[IFACE_ATTR_PROTO]))
674 proto_name = blobmsg_data(cur);
676 proto_attach_interface(iface, proto_name);
677 if (iface->proto_handler->flags & PROTO_FLAG_FORCE_LINK_DEFAULT)
680 iface->autostart = blobmsg_get_bool_default(tb[IFACE_ATTR_AUTO], true);
681 iface->force_link = blobmsg_get_bool_default(tb[IFACE_ATTR_FORCE_LINK], force_link);
682 iface->proto_ip.no_defaultroute =
683 !blobmsg_get_bool_default(tb[IFACE_ATTR_DEFAULTROUTE], true);
684 iface->proto_ip.no_dns =
685 !blobmsg_get_bool_default(tb[IFACE_ATTR_PEERDNS], true);
687 if ((cur = tb[IFACE_ATTR_DNS]))
688 interface_add_dns_server_list(&iface->config_ip, cur);
690 if ((cur = tb[IFACE_ATTR_DNS_SEARCH]))
691 interface_add_dns_search_list(&iface->config_ip, cur);
693 if ((cur = tb[IFACE_ATTR_METRIC]))
694 iface->metric = blobmsg_get_u32(cur);
696 if ((cur = tb[IFACE_ATTR_IP6ASSIGN]))
697 iface->assignment_length = blobmsg_get_u32(cur);
699 iface->assignment_hint = -1;
700 if ((cur = tb[IFACE_ATTR_IP6HINT]))
701 iface->assignment_hint = strtol(blobmsg_get_string(cur), NULL, 16) &
702 ~((1 << (64 - iface->assignment_length)) - 1);
704 if ((cur = tb[IFACE_ATTR_IP6CLASS]))
705 interface_add_assignment_classes(iface, cur);
708 if ((cur = tb[IFACE_ATTR_IP4TABLE])) {
709 if (!system_resolve_rt_table(blobmsg_data(cur), &iface->ip4table))
710 DPRINTF("Failed to resolve routing table: %s\n", (char *) blobmsg_data(cur));
713 if ((cur = tb[IFACE_ATTR_IP6TABLE])) {
714 if (!system_resolve_rt_table(blobmsg_data(cur), &iface->ip6table))
715 DPRINTF("Failed to resolve routing table: %s\n", (char *) blobmsg_data(cur));
718 iface->proto_ip.no_delegation = !blobmsg_get_bool_default(tb[IFACE_ATTR_DELEGATE], true);
720 iface->config_autostart = iface->autostart;
724 void interface_set_dynamic(struct interface *iface)
726 iface->dynamic = true;
727 iface->autostart = true;
728 iface->node.version = -1; // Don't delete on reload
731 static bool __interface_add(struct interface *iface, struct blob_attr *config, bool alias)
733 struct blob_attr *tb[IFACE_ATTR_MAX];
734 struct blob_attr *cur;
736 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb,
737 blob_data(config), blob_len(config));
740 if ((cur = tb[IFACE_ATTR_INTERFACE]))
741 iface->parent_ifname = blobmsg_data(cur);
743 if (!iface->parent_ifname)
746 if ((cur = tb[IFACE_ATTR_IFNAME]))
747 iface->ifname = blobmsg_data(cur);
751 iface->config = config;
752 vlist_add(&interfaces, &iface->node, iface->name);
757 interface_add(struct interface *iface, struct blob_attr *config)
759 __interface_add(iface, config, false);
763 interface_add_alias(struct interface *iface, struct blob_attr *config)
765 if (iface->proto_handler->flags & PROTO_FLAG_NODEV)
768 return __interface_add(iface, config, true);
772 interface_set_l3_dev(struct interface *iface, struct device *dev)
774 bool enabled = iface->config_ip.enabled;
775 bool claimed = iface->l3_dev.claimed;
777 if (iface->l3_dev.dev == dev)
780 interface_ip_set_enabled(&iface->config_ip, false);
781 interface_ip_flush(&iface->proto_ip);
782 device_add_user(&iface->l3_dev, dev);
786 if (device_claim(&iface->l3_dev) < 0)
789 interface_ip_set_enabled(&iface->config_ip, enabled);
794 interface_set_main_dev(struct interface *iface, struct device *dev)
796 bool claimed = iface->l3_dev.claimed;
798 if (iface->main_dev.dev == dev)
801 interface_set_available(iface, false);
802 device_add_user(&iface->main_dev, dev);
804 interface_set_link_state(iface, false);
809 if (device_claim(&iface->l3_dev) < 0)
813 if (!iface->l3_dev.dev)
814 interface_set_l3_dev(iface, dev);
818 interface_remove_link(struct interface *iface, struct device *dev)
820 struct device *mdev = iface->main_dev.dev;
822 if (mdev && mdev->hotplug_ops)
823 return mdev->hotplug_ops->del(mdev, dev);
825 if (dev == iface->ext_dev.dev)
826 device_remove_user(&iface->ext_dev);
828 if (!iface->main_dev.hotplug)
829 return UBUS_STATUS_INVALID_ARGUMENT;
831 if (dev != iface->main_dev.dev)
832 return UBUS_STATUS_INVALID_ARGUMENT;
834 interface_set_main_dev(iface, NULL);
839 interface_add_link(struct interface *iface, struct device *dev, bool link_ext)
841 struct device *mdev = iface->main_dev.dev;
846 if (iface->main_dev.hotplug)
847 device_remove_user(&iface->main_dev);
850 if (mdev->hotplug_ops)
851 return mdev->hotplug_ops->add(mdev, dev);
853 return UBUS_STATUS_NOT_SUPPORTED;
857 device_add_user(&iface->ext_dev, dev);
859 interface_set_main_dev(iface, dev);
860 iface->main_dev.hotplug = true;
865 interface_handle_link(struct interface *iface, const char *name, bool add, bool link_ext)
872 dev = device_get(name, add ? (link_ext ? 2 : 1) : 0);
874 ret = UBUS_STATUS_NOT_FOUND;
879 device_set_present(dev, true);
880 if (iface->device_config)
881 device_set_config(dev, &simple_device_type, iface->config);
883 system_if_apply_settings(dev, &dev->settings, dev->settings.flags);
884 ret = interface_add_link(iface, dev, link_ext);
886 ret = interface_remove_link(iface, dev);
896 interface_set_up(struct interface *iface)
900 iface->autostart = true;
902 if (iface->state != IFS_DOWN)
905 interface_clear_errors(iface);
906 if (!iface->available) {
907 interface_add_error(iface, "interface", "NO_DEVICE", NULL, 0);
911 if (iface->main_dev.dev) {
912 ret = device_claim(&iface->main_dev);
914 interface_check_state(iface);
917 ret = __interface_set_up(iface);
923 interface_set_down(struct interface *iface)
926 vlist_for_each_element(&interfaces, iface, node)
927 __interface_set_down(iface, false);
929 iface->autostart = false;
930 __interface_set_down(iface, false);
937 interface_start_pending(void)
939 struct interface *iface;
941 vlist_for_each_element(&interfaces, iface, node) {
942 if (iface->available && iface->autostart)
943 interface_set_up(iface);
948 set_config_state(struct interface *iface, enum interface_config_state s)
950 iface->config_state = s;
951 if (iface->state == IFS_DOWN)
952 interface_handle_config_change(iface);
954 __interface_set_down(iface, false);
958 interface_update_start(struct interface *iface)
961 interface_ip_update_start(&iface->proto_ip);
965 interface_update_complete(struct interface *iface)
967 interface_ip_update_complete(&iface->proto_ip);
971 interface_replace_dns(struct interface_ip_settings *new, struct interface_ip_settings *old)
973 vlist_simple_replace(&new->dns_servers, &old->dns_servers);
974 vlist_simple_replace(&new->dns_search, &old->dns_search);
978 interface_change_config(struct interface *if_old, struct interface *if_new)
980 struct blob_attr *old_config = if_old->config;
981 bool reload = false, reload_ip = false;
983 #define FIELD_CHANGED_STR(field) \
984 ((!!if_old->field != !!if_new->field) || \
986 strcmp(if_old->field, if_new->field) != 0))
988 if (FIELD_CHANGED_STR(parent_ifname)) {
989 if (if_old->parent_iface.iface)
990 interface_remove_user(&if_old->parent_iface);
994 if (FIELD_CHANGED_STR(ifname) ||
995 if_old->proto_handler != if_new->proto_handler)
998 if (!if_old->proto_handler->config_params)
999 D(INTERFACE, "No config parameters for interface '%s'\n",
1001 else if (!uci_blob_check_equal(if_old->config, if_new->config,
1002 if_old->proto_handler->config_params))
1005 #define UPDATE(field, __var) ({ \
1006 bool __changed = (if_old->field != if_new->field); \
1007 if_old->field = if_new->field; \
1008 __var |= __changed; \
1011 if_old->config = if_new->config;
1012 if (!if_old->config_autostart && if_new->config_autostart)
1013 if_old->autostart = true;
1015 if_old->device_config = if_new->device_config;
1016 if_old->config_autostart = if_new->config_autostart;
1017 if_old->ifname = if_new->ifname;
1018 if_old->parent_ifname = if_new->parent_ifname;
1019 if_old->proto_handler = if_new->proto_handler;
1020 if_old->force_link = if_new->force_link;
1022 if_old->proto_ip.no_dns = if_new->proto_ip.no_dns;
1023 interface_replace_dns(&if_old->config_ip, &if_new->config_ip);
1025 UPDATE(metric, reload_ip);
1026 UPDATE(proto_ip.no_defaultroute, reload_ip);
1027 UPDATE(ip4table, reload_ip);
1028 UPDATE(ip6table, reload_ip);
1029 interface_merge_assignment_data(if_old, if_new);
1034 D(INTERFACE, "Reload interface '%s' because of config changes\n",
1036 interface_clear_errors(if_old);
1037 set_config_state(if_old, IFC_RELOAD);
1042 interface_ip_set_enabled(&if_old->config_ip, false);
1043 interface_ip_set_enabled(&if_old->proto_ip, false);
1044 interface_ip_set_enabled(&if_old->proto_ip, if_new->proto_ip.enabled);
1045 interface_ip_set_enabled(&if_old->config_ip, if_new->config_ip.enabled);
1048 interface_write_resolv_conf();
1049 if (if_old->main_dev.dev)
1050 interface_check_state(if_old);
1053 if_new->config = NULL;
1054 interface_cleanup(if_new);
1060 interface_update(struct vlist_tree *tree, struct vlist_node *node_new,
1061 struct vlist_node *node_old)
1063 struct interface *if_old = container_of(node_old, struct interface, node);
1064 struct interface *if_new = container_of(node_new, struct interface, node);
1066 if (node_old && node_new) {
1067 D(INTERFACE, "Update interface '%s'\n", if_new->name);
1068 interface_change_config(if_old, if_new);
1069 } else if (node_old) {
1070 D(INTERFACE, "Remove interface '%s'\n", if_old->name);
1071 set_config_state(if_old, IFC_REMOVE);
1072 } else if (node_new) {
1073 D(INTERFACE, "Create interface '%s'\n", if_new->name);
1074 proto_init_interface(if_new, if_new->config);
1075 interface_claim_device(if_new);
1076 netifd_ubus_add_interface(if_new);
1082 interface_init_list(void)
1084 vlist_init(&interfaces, avl_strcmp, interface_update);
1085 interfaces.keep_old = true;
1086 interfaces.no_delete = true;