8 #include "interface-ip.h"
14 struct vlist_tree interfaces;
23 static const struct blobmsg_policy iface_attrs[IFACE_ATTR_MAX] = {
24 [IFACE_ATTR_PROTO] = { .name = "proto", .type = BLOBMSG_TYPE_STRING },
25 [IFACE_ATTR_IFNAME] = { .name = "ifname", .type = BLOBMSG_TYPE_STRING },
26 [IFACE_ATTR_AUTO] = { .name = "auto", .type = BLOBMSG_TYPE_BOOL },
29 const struct config_param_list interface_attr_list = {
30 .n_params = IFACE_ATTR_MAX,
31 .params = iface_attrs,
35 interface_clear_errors(struct interface *iface)
37 struct interface_error *error, *tmp;
39 list_for_each_entry_safe(error, tmp, &iface->errors, list) {
40 list_del(&error->list);
45 void interface_add_error(struct interface *iface, const char *subsystem,
46 const char *code, const char **data, int n_data)
48 struct interface_error *error;
54 len = n_data * sizeof(char *);
55 datalen = alloca(len);
56 for (i = 0; i < n_data; i++) {
57 datalen[i] = strlen(data[i]) + 1;
62 error = calloc(1, sizeof(*error) + sizeof(char *) + len);
66 list_add_tail(&error->list, &iface->errors);
67 error->subsystem = subsystem;
70 dest = (char *) &error->data[n_data + 1];
71 for (i = 0; i < n_data; i++) {
72 error->data[i] = dest;
73 memcpy(dest, data[i], datalen[i]);
76 error->data[n_data] = NULL;
80 interface_event(struct interface *iface, enum interface_event ev)
82 struct interface_user *dep, *tmp;
84 list_for_each_entry_safe(dep, tmp, &iface->users, list)
85 dep->cb(dep, IFEV_UP);
87 interface_queue_event(iface, ev);
91 mark_interface_down(struct interface *iface)
93 interface_clear_dns(iface);
94 vlist_flush_all(&iface->proto_addr);
95 vlist_flush_all(&iface->proto_route);
96 if (iface->main_dev.dev)
97 device_release(&iface->main_dev);
98 iface->state = IFS_DOWN;
102 __interface_set_up(struct interface *iface)
106 if (iface->state != IFS_DOWN)
109 if (iface->main_dev.dev) {
110 ret = device_claim(&iface->main_dev);
115 iface->state = IFS_SETUP;
116 ret = interface_proto_event(iface->proto, PROTO_CMD_SETUP, false);
118 mark_interface_down(iface);
126 __interface_set_down(struct interface *iface, bool force)
128 interface_clear_errors(iface);
130 if (iface->state == IFS_DOWN ||
131 iface->state == IFS_TEARDOWN)
134 iface->state = IFS_TEARDOWN;
135 interface_event(iface, IFEV_DOWN);
136 interface_proto_event(iface->proto, PROTO_CMD_TEARDOWN, force);
140 interface_cb(struct device_user *dep, enum device_event ev)
142 struct interface *iface;
145 iface = container_of(dep, struct interface, main_dev);
150 case DEV_EVENT_REMOVE:
157 interface_set_available(iface, new_state);
161 interface_set_available(struct interface *iface, bool new_state)
163 if (iface->available == new_state)
166 D(INTERFACE, "Interface '%s', available=%d\n", iface->name, new_state);
167 iface->available = new_state;
170 if (iface->autostart && !config_init)
171 interface_set_up(iface);
173 __interface_set_down(iface, true);
177 interface_add_user(struct interface_user *dep, struct interface *iface)
180 list_add(&dep->list, &iface->users);
181 if (iface->state == IFS_UP)
182 dep->cb(dep, IFEV_UP);
186 interface_remove_user(struct interface_user *dep)
188 list_del_init(&dep->list);
193 interface_claim_device(struct interface *iface)
197 if (iface->proto_handler &&
198 !(iface->proto_handler->flags & PROTO_FLAG_NODEV)) {
199 dev = device_get(iface->ifname, true);
201 device_add_user(&iface->main_dev, dev);
207 interface_cleanup(struct interface *iface)
209 struct interface_user *dep, *tmp;
211 list_for_each_entry_safe(dep, tmp, &iface->users, list)
212 interface_remove_user(dep);
214 interface_clear_dns(iface);
215 interface_clear_errors(iface);
216 if (iface->main_dev.dev)
217 device_remove_user(&iface->main_dev);
218 interface_set_proto_state(iface, NULL);
222 interface_do_free(struct interface *iface)
224 interface_cleanup(iface);
226 netifd_ubus_remove_interface(iface);
227 avl_delete(&interfaces.avl, &iface->node.avl);
232 interface_do_reload(struct interface *iface)
234 interface_cleanup(iface);
236 interface_claim_device(iface);
237 proto_init_interface(iface, iface->config);
239 if (iface->autostart && !config_init)
240 interface_set_up(iface);
244 interface_handle_config_change(struct interface *iface)
246 switch(iface->config_state) {
250 interface_do_reload(iface);
253 interface_do_free(iface);
259 interface_proto_cb(struct interface_proto_state *state, enum interface_proto_event ev)
261 struct interface *iface = state->iface;
265 if (iface->state != IFS_SETUP)
268 system_flush_routes();
269 iface->state = IFS_UP;
270 iface->start_time = system_get_rtime();
271 interface_event(iface, IFEV_UP);
272 interface_write_resolv_conf();
275 if (iface->state == IFS_DOWN)
278 system_flush_routes();
279 mark_interface_down(iface);
280 interface_handle_config_change(iface);
281 if (iface->autostart)
282 __interface_set_up(iface);
283 if (iface->l3_dev->dev)
284 device_release(iface->l3_dev);
286 case IFPEV_LINK_LOST:
287 if (iface->state != IFS_UP)
290 iface->state = IFS_SETUP;
291 interface_event(iface, IFEV_DOWN);
296 void interface_set_proto_state(struct interface *iface, struct interface_proto_state *state)
299 iface->proto->free(iface->proto);
302 iface->state = IFS_DOWN;
303 iface->proto = state;
307 state->proto_event = interface_proto_cb;
308 state->iface = iface;
312 interface_init(struct interface *iface, const char *name,
313 struct blob_attr *config)
315 struct blob_attr *tb[IFACE_ATTR_MAX];
316 struct blob_attr *cur;
317 const char *proto_name = NULL;
319 strncpy(iface->name, name, sizeof(iface->name) - 1);
320 INIT_LIST_HEAD(&iface->errors);
321 INIT_LIST_HEAD(&iface->users);
322 INIT_LIST_HEAD(&iface->hotplug_list);
323 INIT_LIST_HEAD(&iface->proto_dns_search);
324 INIT_LIST_HEAD(&iface->proto_dns_servers);
326 iface->main_dev.cb = interface_cb;
327 iface->l3_dev = &iface->main_dev;
329 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb,
330 blob_data(config), blob_len(config));
332 if ((cur = tb[IFACE_ATTR_PROTO]))
333 proto_name = blobmsg_data(cur);
335 proto_attach_interface(iface, proto_name);
337 if ((cur = tb[IFACE_ATTR_AUTO]))
338 iface->autostart = blobmsg_get_bool(cur);
340 iface->autostart = true;
341 iface->config_autostart = iface->autostart;
345 interface_add(struct interface *iface, struct blob_attr *config)
347 struct blob_attr *tb[IFACE_ATTR_MAX];
348 struct blob_attr *cur;
350 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb,
351 blob_data(config), blob_len(config));
353 if ((cur = tb[IFACE_ATTR_IFNAME]))
354 iface->ifname = blobmsg_data(cur);
356 iface->config = config;
357 vlist_add(&interfaces, &iface->node);
361 interface_remove_link(struct interface *iface, struct device *dev)
363 struct device *mdev = iface->main_dev.dev;
365 if (mdev && mdev->hotplug_ops) {
366 mdev->hotplug_ops->del(mdev, dev);
370 device_remove_user(&iface->main_dev);
374 interface_add_link(struct interface *iface, struct device *dev)
376 struct device *mdev = iface->main_dev.dev;
378 if (mdev && mdev->hotplug_ops)
379 return mdev->hotplug_ops->add(mdev, dev);
381 if (iface->main_dev.dev)
382 interface_remove_link(iface, NULL);
384 device_add_user(&iface->main_dev, dev);
390 interface_set_up(struct interface *iface)
392 iface->autostart = true;
394 if (iface->state != IFS_DOWN)
397 interface_clear_errors(iface);
398 if (!iface->available) {
399 interface_add_error(iface, "interface", "NO_DEVICE", NULL, 0);
403 return __interface_set_up(iface);
407 interface_set_down(struct interface *iface)
410 vlist_for_each_element(&interfaces, iface, node)
411 __interface_set_down(iface, false);
413 iface->autostart = false;
414 __interface_set_down(iface, false);
421 interface_start_pending(void)
423 struct interface *iface;
425 vlist_for_each_element(&interfaces, iface, node) {
426 if (iface->available && iface->autostart)
427 interface_set_up(iface);
432 set_config_state(struct interface *iface, enum interface_config_state s)
434 iface->config_state = s;
435 if (iface->state == IFS_DOWN)
436 interface_handle_config_change(iface);
438 __interface_set_down(iface, false);
442 interface_change_config(struct interface *if_old, struct interface *if_new)
444 struct blob_attr *old_config = if_old->config;
445 const char *old_ifname = if_old->ifname;
446 const struct proto_handler *proto = if_old->proto_handler;
448 interface_clear_errors(if_old);
449 if_old->config = if_new->config;
450 if (!if_old->config_autostart && if_new->config_autostart)
451 if_old->autostart = true;
453 if_old->config_autostart = if_new->config_autostart;
454 if_old->ifname = if_new->ifname;
455 if_old->proto_handler = if_new->proto_handler;
457 if (strcmp(old_ifname, if_new->ifname) != 0 ||
458 proto != if_new->proto_handler) {
459 D(INTERFACE, "Reload interface '%s' because of ifname/proto change\n",
464 if (!proto->config_params)
465 D(INTERFACE, "No config parameters for interface '%s'\n",
467 else if (!config_check_equal(old_config, if_new->config,
468 proto->config_params)) {
469 D(INTERFACE, "Reload interface '%s because of config changes\n",
477 set_config_state(if_old, IFC_RELOAD);
484 interface_update(struct vlist_tree *tree, struct vlist_node *node_new,
485 struct vlist_node *node_old)
487 struct interface *if_old = container_of(node_old, struct interface, node);
488 struct interface *if_new = container_of(node_new, struct interface, node);
490 if (node_old && node_new) {
491 D(INTERFACE, "Update interface '%s'\n", if_new->name);
492 interface_change_config(if_old, if_new);
493 } else if (node_old) {
494 D(INTERFACE, "Remove interface '%s'\n", if_old->name);
495 set_config_state(if_old, IFC_REMOVE);
496 } else if (node_new) {
497 D(INTERFACE, "Create interface '%s'\n", if_new->name);
498 interface_claim_device(if_new);
499 proto_init_interface(if_new, if_new->config);
500 interface_ip_init(if_new);
501 netifd_ubus_add_interface(if_new);
507 interface_init_list(void)
509 vlist_init(&interfaces, avl_strcmp, interface_update,
510 struct interface, node, name);
511 interfaces.keep_old = true;
512 interfaces.no_delete = true;