8 #include "interface-ip.h"
13 struct vlist_tree interfaces;
22 static const struct blobmsg_policy iface_attrs[IFACE_ATTR_MAX] = {
23 [IFACE_ATTR_PROTO] = { .name = "proto", .type = BLOBMSG_TYPE_STRING },
24 [IFACE_ATTR_IFNAME] = { .name = "ifname", .type = BLOBMSG_TYPE_STRING },
25 [IFACE_ATTR_AUTO] = { .name = "auto", .type = BLOBMSG_TYPE_BOOL },
28 const struct config_param_list interface_attr_list = {
29 .n_params = IFACE_ATTR_MAX,
30 .params = iface_attrs,
34 interface_clear_errors(struct interface *iface)
36 struct interface_error *error, *tmp;
38 list_for_each_entry_safe(error, tmp, &iface->errors, list) {
39 list_del(&error->list);
44 void interface_add_error(struct interface *iface, const char *subsystem,
45 const char *code, const char **data, int n_data)
47 struct interface_error *error;
53 len = n_data * sizeof(char *);
54 datalen = alloca(len);
55 for (i = 0; i < n_data; i++) {
56 datalen[i] = strlen(data[i]) + 1;
61 error = calloc(1, sizeof(*error) + sizeof(char *) + len);
65 list_add_tail(&error->list, &iface->errors);
66 error->subsystem = subsystem;
69 dest = (char *) &error->data[n_data + 1];
70 for (i = 0; i < n_data; i++) {
71 error->data[i] = dest;
72 memcpy(dest, data[i], datalen[i]);
75 error->data[n_data] = NULL;
79 interface_event(struct interface *iface, enum interface_event ev)
85 mark_interface_down(struct interface *iface)
87 vlist_flush_all(&iface->proto_addr);
88 vlist_flush_all(&iface->proto_route);
89 if (iface->main_dev.dev)
90 device_release(&iface->main_dev);
91 iface->state = IFS_DOWN;
95 __interface_set_up(struct interface *iface)
99 if (iface->state != IFS_DOWN)
102 if (iface->main_dev.dev) {
103 ret = device_claim(&iface->main_dev);
108 iface->state = IFS_SETUP;
109 ret = interface_proto_event(iface->proto, PROTO_CMD_SETUP, false);
111 mark_interface_down(iface);
120 __interface_set_down(struct interface *iface, bool force)
122 interface_clear_errors(iface);
124 if (iface->state == IFS_DOWN ||
125 iface->state == IFS_TEARDOWN)
128 iface->state = IFS_TEARDOWN;
129 interface_event(iface, IFEV_DOWN);
130 interface_proto_event(iface->proto, PROTO_CMD_TEARDOWN, force);
134 interface_cb(struct device_user *dep, enum device_event ev)
136 struct interface *iface;
139 iface = container_of(dep, struct interface, main_dev);
144 case DEV_EVENT_REMOVE:
151 interface_set_available(iface, new_state);
155 interface_set_available(struct interface *iface, bool new_state)
157 if (iface->available == new_state)
160 D(INTERFACE, "Interface '%s', available=%d\n", iface->name, new_state);
161 iface->available = new_state;
164 if (iface->autostart && !config_init)
165 interface_set_up(iface);
167 __interface_set_down(iface, true);
171 interface_claim_device(struct interface *iface)
175 if (iface->proto_handler &&
176 !(iface->proto_handler->flags & PROTO_FLAG_NODEV)) {
177 dev = device_get(iface->ifname, true);
179 device_add_user(&iface->main_dev, dev);
185 interface_cleanup(struct interface *iface)
187 interface_clear_errors(iface);
188 if (iface->main_dev.dev)
189 device_remove_user(&iface->main_dev);
190 interface_set_proto_state(iface, NULL);
194 interface_do_free(struct interface *iface)
196 interface_cleanup(iface);
198 netifd_ubus_remove_interface(iface);
203 interface_do_reload(struct interface *iface)
205 interface_cleanup(iface);
207 interface_claim_device(iface);
208 proto_init_interface(iface, iface->config);
210 if (iface->autostart && !config_init)
211 interface_set_up(iface);
215 interface_handle_config_change(struct interface *iface)
217 switch(iface->config_state) {
221 interface_do_reload(iface);
224 interface_do_free(iface);
230 interface_proto_cb(struct interface_proto_state *state, enum interface_proto_event ev)
232 struct interface *iface = state->iface;
236 if (iface->state != IFS_SETUP)
239 iface->state = IFS_UP;
240 interface_event(iface, IFEV_UP);
243 if (iface->state == IFS_DOWN)
246 mark_interface_down(iface);
247 interface_handle_config_change(iface);
249 case IFPEV_LINK_LOST:
250 if (iface->state != IFS_UP)
253 iface->state = IFS_SETUP;
254 interface_event(iface, IFEV_DOWN);
259 void interface_set_proto_state(struct interface *iface, struct interface_proto_state *state)
262 iface->proto->free(iface->proto);
265 iface->state = IFS_DOWN;
266 iface->proto = state;
270 state->proto_event = interface_proto_cb;
271 state->iface = iface;
275 interface_init(struct interface *iface, const char *name,
276 struct blob_attr *config)
278 struct blob_attr *tb[IFACE_ATTR_MAX];
279 struct blob_attr *cur;
280 const char *proto_name = NULL;
282 strncpy(iface->name, name, sizeof(iface->name) - 1);
283 INIT_LIST_HEAD(&iface->errors);
285 iface->main_dev.cb = interface_cb;
286 iface->l3_dev = &iface->main_dev;
288 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb,
289 blob_data(config), blob_len(config));
291 if ((cur = tb[IFACE_ATTR_PROTO]))
292 proto_name = blobmsg_data(cur);
294 proto_attach_interface(iface, proto_name);
296 if ((cur = tb[IFACE_ATTR_AUTO]))
297 iface->autostart = blobmsg_get_bool(cur);
299 iface->autostart = true;
300 iface->config_autostart = iface->autostart;
304 interface_add(struct interface *iface, struct blob_attr *config)
306 struct blob_attr *tb[IFACE_ATTR_MAX];
307 struct blob_attr *cur;
309 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb,
310 blob_data(config), blob_len(config));
312 if ((cur = tb[IFACE_ATTR_IFNAME]))
313 iface->ifname = blobmsg_data(cur);
315 iface->config = config;
316 vlist_add(&interfaces, &iface->node);
320 interface_remove_link(struct interface *iface, struct device *dev)
322 struct device *mdev = iface->main_dev.dev;
324 if (mdev && mdev->hotplug_ops) {
325 mdev->hotplug_ops->del(mdev, dev);
329 device_remove_user(&iface->main_dev);
333 interface_add_link(struct interface *iface, struct device *dev)
335 struct device *mdev = iface->main_dev.dev;
337 if (mdev && mdev->hotplug_ops)
338 return mdev->hotplug_ops->add(mdev, dev);
340 if (iface->main_dev.dev)
341 interface_remove_link(iface, NULL);
343 device_add_user(&iface->main_dev, dev);
349 interface_set_up(struct interface *iface)
351 iface->autostart = true;
353 if (!iface->available) {
354 interface_add_error(iface, "interface", "NO_DEVICE", NULL, 0);
358 if (iface->state != IFS_DOWN)
361 return __interface_set_up(iface);
365 interface_set_down(struct interface *iface)
368 vlist_for_each_element(&interfaces, iface, node)
369 __interface_set_down(iface, false);
371 iface->autostart = false;
372 __interface_set_down(iface, false);
379 interface_start_pending(void)
381 struct interface *iface;
383 vlist_for_each_element(&interfaces, iface, node) {
384 if (iface->available && iface->autostart)
385 interface_set_up(iface);
390 set_config_state(struct interface *iface, enum interface_config_state s)
392 iface->config_state = s;
393 if (iface->state == IFS_DOWN)
394 interface_handle_config_change(iface);
396 __interface_set_down(iface, false);
400 interface_change_config(struct interface *if_old, struct interface *if_new)
402 struct blob_attr *old_config = if_old->config;
403 const char *old_ifname = if_old->ifname;
404 const struct proto_handler *proto = if_old->proto_handler;
406 interface_clear_errors(if_old);
407 if_old->config = if_new->config;
408 if (!if_old->config_autostart && if_new->config_autostart)
409 if_old->autostart = true;
411 if_old->config_autostart = if_new->config_autostart;
412 if_old->ifname = if_new->ifname;
413 if_old->proto_handler = if_new->proto_handler;
415 if (strcmp(old_ifname, if_new->ifname) != 0 ||
416 proto != if_new->proto_handler) {
417 D(INTERFACE, "Reload interface '%s' because of ifname/proto change\n",
422 if (!proto->config_params)
423 D(INTERFACE, "No config parameters for interface '%s'\n",
425 else if (!config_check_equal(old_config, if_new->config,
426 proto->config_params)) {
427 D(INTERFACE, "Reload interface '%s because of config changes\n",
435 set_config_state(if_old, IFC_RELOAD);
442 interface_update(struct vlist_tree *tree, struct vlist_node *node_new,
443 struct vlist_node *node_old)
445 struct interface *if_old = container_of(node_old, struct interface, node);
446 struct interface *if_new = container_of(node_new, struct interface, node);
448 if (node_old && node_new) {
449 D(INTERFACE, "Update interface '%s'\n", if_new->name);
450 interface_change_config(if_old, if_new);
451 } else if (node_old) {
452 D(INTERFACE, "Remove interface '%s'\n", if_old->name);
453 set_config_state(if_old, IFC_REMOVE);
454 } else if (node_new) {
455 D(INTERFACE, "Create interface '%s'\n", if_new->name);
456 interface_claim_device(if_new);
457 proto_init_interface(if_new, if_new->config);
458 interface_ip_init(if_new);
459 netifd_ubus_add_interface(if_new);
465 interface_init_list(void)
467 vlist_init(&interfaces, avl_strcmp, interface_update,
468 struct interface, node, name);
469 interfaces.keep_old = true;
470 interfaces.no_delete = true;