interface: cancel the remove timer on cleanup
[project/netifd.git] / interface.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
18 #include "netifd.h"
19 #include "device.h"
20 #include "interface.h"
21 #include "interface-ip.h"
22 #include "proto.h"
23 #include "ubus.h"
24 #include "config.h"
25 #include "system.h"
26
27 struct vlist_tree interfaces;
28 static LIST_HEAD(iface_all_users);
29
30 enum {
31 IFACE_ATTR_IFNAME,
32 IFACE_ATTR_PROTO,
33 IFACE_ATTR_AUTO,
34 IFACE_ATTR_DEFAULTROUTE,
35 IFACE_ATTR_PEERDNS,
36 IFACE_ATTR_DNS,
37 IFACE_ATTR_DNS_SEARCH,
38 IFACE_ATTR_METRIC,
39 IFACE_ATTR_INTERFACE,
40 IFACE_ATTR_IP6ASSIGN,
41 IFACE_ATTR_IP6HINT,
42 IFACE_ATTR_IP4TABLE,
43 IFACE_ATTR_IP6TABLE,
44 IFACE_ATTR_IP6CLASS,
45 IFACE_ATTR_DELEGATE,
46 IFACE_ATTR_FORCE_LINK,
47 IFACE_ATTR_MAX
48 };
49
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 },
67 };
68
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 },
72 };
73
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,
78 };
79
80 static void
81 interface_clear_errors(struct interface *iface)
82 {
83 struct interface_error *error, *tmp;
84
85 list_for_each_entry_safe(error, tmp, &iface->errors, list) {
86 list_del(&error->list);
87 free(error);
88 }
89 }
90
91 void interface_add_error(struct interface *iface, const char *subsystem,
92 const char *code, const char **data, int n_data)
93 {
94 struct interface_error *error;
95 int i, len = 0;
96 int *datalen = NULL;
97 char *dest, *d_subsys, *d_code;
98
99 if (n_data) {
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;
104 len += datalen[i];
105 }
106 }
107
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);
111 if (!error)
112 return;
113
114 list_add_tail(&error->list, &iface->errors);
115
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]);
120 dest += datalen[i];
121 }
122 error->data[n_data++] = NULL;
123
124 if (subsystem)
125 error->subsystem = strcpy(d_subsys, subsystem);
126
127 if (code)
128 error->code = strcpy(d_code, code);
129 }
130
131 static void
132 interface_data_del(struct interface *iface, struct interface_data *data)
133 {
134 avl_delete(&iface->data, &data->node);
135 free(data);
136 }
137
138 static void
139 interface_data_flush(struct interface *iface)
140 {
141 struct interface_data *d, *tmp;
142
143 avl_for_each_element_safe(&iface->data, d, node, tmp)
144 interface_data_del(iface, d);
145 }
146
147 int
148 interface_add_data(struct interface *iface, const struct blob_attr *data)
149 {
150 struct interface_data *n, *o;
151
152 if (!blobmsg_check_attr(data, true))
153 return UBUS_STATUS_INVALID_ARGUMENT;
154
155 const char *name = blobmsg_name(data);
156 unsigned len = blob_pad_len(data);
157
158 o = avl_find_element(&iface->data, name, o, node);
159 if (o) {
160 if (blob_pad_len(o->data) == len && !memcmp(o->data, data, len))
161 return 0;
162
163 interface_data_del(iface, o);
164 }
165
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);
170
171 iface->updated |= IUF_DATA;
172 return 0;
173 }
174
175 static void
176 interface_event(struct interface *iface, enum interface_event ev)
177 {
178 struct interface_user *dep, *tmp;
179 struct device *adev = NULL;
180
181 list_for_each_entry_safe(dep, tmp, &iface->users, list)
182 dep->cb(dep, iface, ev);
183
184 list_for_each_entry_safe(dep, tmp, &iface_all_users, list)
185 dep->cb(dep, iface, ev);
186
187 switch (ev) {
188 case IFEV_UP:
189 adev = iface->l3_dev.dev;
190 /* fall through */
191 case IFEV_DOWN:
192 alias_notify_device(iface->name, adev);
193 break;
194 default:
195 break;
196 }
197 }
198
199 static void
200 interface_flush_state(struct interface *iface)
201 {
202 if (iface->l3_dev.dev)
203 device_release(&iface->l3_dev);
204 interface_data_flush(iface);
205 }
206
207 static void
208 mark_interface_down(struct interface *iface)
209 {
210 enum interface_state state = iface->state;
211
212 if (state == IFS_DOWN)
213 return;
214
215 iface->state = IFS_DOWN;
216 if (state == IFS_UP)
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();
222 }
223
224 void
225 __interface_set_down(struct interface *iface, bool force)
226 {
227 enum interface_state state = iface->state;
228 switch (state) {
229 case IFS_UP:
230 case IFS_SETUP:
231 iface->state = IFS_TEARDOWN;
232 if (state == IFS_UP)
233 interface_event(iface, IFEV_DOWN);
234
235 interface_proto_event(iface->proto, PROTO_CMD_TEARDOWN, force);
236 if (force)
237 interface_flush_state(iface);
238
239 if (iface->dynamic)
240 vlist_delete(&interfaces, &iface->node);
241 break;
242
243 case IFS_DOWN:
244 if (iface->main_dev.dev)
245 device_release(&iface->main_dev);
246 case IFS_TEARDOWN:
247 default:
248 break;
249 }
250 }
251
252 static int
253 __interface_set_up(struct interface *iface)
254 {
255 int ret;
256
257 netifd_log_message(L_NOTICE, "Interface '%s' is setting up now\n", iface->name);
258
259 iface->state = IFS_SETUP;
260 ret = interface_proto_event(iface->proto, PROTO_CMD_SETUP, false);
261 if (ret)
262 mark_interface_down(iface);
263
264 return ret;
265 }
266
267 static void
268 interface_check_state(struct interface *iface)
269 {
270 bool link_state = iface->link_state || iface->force_link;
271
272 switch (iface->state) {
273 case IFS_UP:
274 if (!iface->enabled || !link_state) {
275 mark_interface_down(iface);
276 interface_proto_event(iface->proto, PROTO_CMD_TEARDOWN, false);
277 }
278 break;
279 case IFS_DOWN:
280 if (iface->autostart && iface->enabled && link_state && !config_init)
281 __interface_set_up(iface);
282 break;
283 default:
284 break;
285 }
286 }
287
288 static void
289 interface_set_enabled(struct interface *iface, bool new_state)
290 {
291 if (iface->enabled == new_state)
292 return;
293
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);
297 }
298
299 static void
300 interface_set_link_state(struct interface *iface, bool new_state)
301 {
302 if (iface->link_state == new_state)
303 return;
304
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);
308 }
309
310 static void
311 interface_ext_cb(struct device_user *dep, enum device_event ev)
312 {
313 if (ev == DEV_EVENT_REMOVE)
314 device_remove_user(dep);
315 }
316
317 static void
318 interface_cb(struct device_user *dep, enum device_event ev)
319 {
320 struct interface *iface;
321 bool new_state = false;
322
323 iface = container_of(dep, struct interface, main_dev);
324 switch (ev) {
325 case DEV_EVENT_ADD:
326 new_state = true;
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);
331 break;
332 case DEV_EVENT_UP:
333 new_state = true;
334 case DEV_EVENT_DOWN:
335 interface_set_enabled(iface, new_state);
336 break;
337 case DEV_EVENT_LINK_UP:
338 new_state = true;
339 case DEV_EVENT_LINK_DOWN:
340 interface_set_link_state(iface, new_state);
341 break;
342 case DEV_EVENT_TOPO_CHANGE:
343 interface_proto_event(iface->proto, PROTO_CMD_RENEW, false);
344 return;
345 default:
346 break;
347 }
348 }
349
350 void
351 interface_set_available(struct interface *iface, bool new_state)
352 {
353 if (iface->available == new_state)
354 return;
355
356 D(INTERFACE, "Interface '%s', available=%d\n", iface->name, new_state);
357 iface->available = new_state;
358
359 if (new_state) {
360 if (iface->autostart && !config_init)
361 interface_set_up(iface);
362 } else
363 __interface_set_down(iface, true);
364 }
365
366 void
367 interface_add_user(struct interface_user *dep, struct interface *iface)
368 {
369 if (!iface) {
370 list_add(&dep->list, &iface_all_users);
371 return;
372 }
373
374 dep->iface = iface;
375 list_add(&dep->list, &iface->users);
376 if (iface->state == IFS_UP)
377 dep->cb(dep, iface, IFEV_UP);
378 }
379
380 void
381 interface_remove_user(struct interface_user *dep)
382 {
383 list_del_init(&dep->list);
384 dep->iface = NULL;
385 }
386
387 static void
388 interface_add_assignment_classes(struct interface *iface, struct blob_attr *list)
389 {
390 struct blob_attr *cur;
391 int rem;
392
393 blobmsg_for_each_attr(cur, list, rem) {
394 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
395 continue;
396
397 if (!blobmsg_check_attr(cur, NULL))
398 continue;
399
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);
403 }
404 }
405
406 static void
407 interface_clear_assignment_classes(struct interface *iface)
408 {
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);
412 list_del(&c->head);
413 free(c);
414 }
415 }
416
417 static void
418 interface_merge_assignment_data(struct interface *old, struct interface *new)
419 {
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));
423
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
428 changed = true;
429
430 if (changed)
431 break;
432
433 struct interface_assignment_class *c_old = list_first_entry(&old->assignment_classes,
434 struct interface_assignment_class, head);
435
436 if (strcmp(c_old->name, c->name)) // An entry didn't match
437 break;
438
439 list_del(&c_old->head);
440 free(c_old);
441 }
442
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);
446 changed = true;
447 }
448
449 list_splice_init(&new->assignment_classes, &old->assignment_classes);
450
451 if (changed) {
452 old->assignment_hint = new->assignment_hint;
453 old->assignment_length = new->assignment_length;
454 interface_refresh_assignments(true);
455 }
456 }
457
458 static void
459 interface_alias_cb(struct interface_user *dep, struct interface *iface, enum interface_event ev)
460 {
461 struct interface *alias = container_of(dep, struct interface, parent_iface);
462 struct device *dev = iface->l3_dev.dev;
463
464 switch (ev) {
465 case IFEV_UP:
466 if (!dev)
467 return;
468
469 interface_set_main_dev(alias, dev);
470 interface_set_available(alias, true);
471 break;
472 case IFEV_DOWN:
473 interface_set_available(alias, false);
474 interface_set_main_dev(alias, NULL);
475 break;
476 case IFEV_FREE:
477 interface_remove_user(dep);
478 break;
479 case IFEV_RELOAD:
480 case IFEV_UPDATE:
481 break;
482 }
483 }
484
485 static void
486 interface_claim_device(struct interface *iface)
487 {
488 struct interface *parent;
489 struct device *dev = NULL;
490
491 if (iface->parent_iface.iface)
492 interface_remove_user(&iface->parent_iface);
493
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);
501 } else {
502 dev = iface->ext_dev.dev;
503 }
504
505 if (dev)
506 interface_set_main_dev(iface, dev);
507
508 if (iface->proto_handler->flags & PROTO_FLAG_INIT_AVAILABLE)
509 interface_set_available(iface, true);
510 }
511
512 static void
513 interface_cleanup_state(struct interface *iface)
514 {
515 interface_set_available(iface, false);
516
517 interface_flush_state(iface);
518 interface_clear_errors(iface);
519 interface_set_proto_state(iface, NULL);
520
521 interface_set_main_dev(iface, NULL);
522 interface_set_l3_dev(iface, NULL);
523 }
524
525 static void
526 interface_cleanup(struct interface *iface)
527 {
528 struct interface_user *dep, *tmp;
529
530 uloop_timeout_cancel(&iface->remove_timer);
531 device_remove_user(&iface->ext_dev);
532
533 if (iface->parent_iface.iface)
534 interface_remove_user(&iface->parent_iface);
535
536 list_for_each_entry_safe(dep, tmp, &iface->users, list)
537 interface_remove_user(dep);
538
539 interface_clear_assignment_classes(iface);
540 interface_ip_flush(&iface->config_ip);
541 interface_cleanup_state(iface);
542 }
543
544 static void
545 interface_do_free(struct interface *iface)
546 {
547 interface_event(iface, IFEV_FREE);
548 interface_cleanup(iface);
549 free(iface->config);
550 netifd_ubus_remove_interface(iface);
551 avl_delete(&interfaces.avl, &iface->node.avl);
552 free(iface);
553 }
554
555 static void
556 interface_do_reload(struct interface *iface)
557 {
558 interface_event(iface, IFEV_RELOAD);
559 interface_cleanup_state(iface);
560 proto_init_interface(iface, iface->config);
561 interface_claim_device(iface);
562 }
563
564 static void
565 interface_handle_config_change(struct interface *iface)
566 {
567 enum interface_config_state state = iface->config_state;
568
569 iface->config_state = IFC_NORMAL;
570 switch(state) {
571 case IFC_NORMAL:
572 break;
573 case IFC_RELOAD:
574 interface_do_reload(iface);
575 break;
576 case IFC_REMOVE:
577 interface_do_free(iface);
578 return;
579 }
580 if (iface->autostart && iface->available)
581 interface_set_up(iface);
582 }
583
584 static void
585 interface_proto_cb(struct interface_proto_state *state, enum interface_proto_event ev)
586 {
587 struct interface *iface = state->iface;
588
589 switch (ev) {
590 case IFPEV_UP:
591 if (iface->state != IFS_SETUP) {
592 interface_event(iface, IFEV_UPDATE);
593 return;
594 }
595
596 if (!iface->l3_dev.dev)
597 interface_set_l3_dev(iface, iface->main_dev.dev);
598
599 interface_ip_set_enabled(&iface->config_ip, true);
600 system_flush_routes();
601 iface->state = IFS_UP;
602 iface->start_time = system_get_rtime();
603 interface_event(iface, IFEV_UP);
604 netifd_log_message(L_NOTICE, "Interface '%s' is now up\n", iface->name);
605 break;
606 case IFPEV_DOWN:
607 if (iface->state == IFS_DOWN)
608 return;
609
610 netifd_log_message(L_NOTICE, "Interface '%s' is now down\n", iface->name);
611 mark_interface_down(iface);
612 if (iface->main_dev.dev)
613 device_release(&iface->main_dev);
614 if (iface->l3_dev.dev)
615 device_remove_user(&iface->l3_dev);
616 interface_handle_config_change(iface);
617 break;
618 case IFPEV_LINK_LOST:
619 if (iface->state != IFS_UP)
620 return;
621
622 netifd_log_message(L_NOTICE, "Interface '%s' has lost the connection\n", iface->name);
623 mark_interface_down(iface);
624 iface->state = IFS_SETUP;
625 break;
626 default:
627 return;
628 }
629
630 interface_write_resolv_conf();
631 }
632
633 void interface_set_proto_state(struct interface *iface, struct interface_proto_state *state)
634 {
635 if (iface->proto) {
636 iface->proto->free(iface->proto);
637 iface->proto = NULL;
638 }
639 iface->state = IFS_DOWN;
640 iface->proto = state;
641 if (!state)
642 return;
643
644 state->proto_event = interface_proto_cb;
645 state->iface = iface;
646 }
647
648 struct interface *
649 interface_alloc(const char *name, struct blob_attr *config)
650 {
651 struct interface *iface;
652 struct blob_attr *tb[IFACE_ATTR_MAX];
653 struct blob_attr *cur;
654 const char *proto_name = NULL;
655 char *iface_name;
656 bool force_link = false;
657
658 iface = calloc_a(sizeof(*iface), &iface_name, strlen(name) + 1);
659 iface->name = strcpy(iface_name, name);
660 INIT_LIST_HEAD(&iface->errors);
661 INIT_LIST_HEAD(&iface->users);
662 INIT_LIST_HEAD(&iface->hotplug_list);
663 INIT_LIST_HEAD(&iface->assignment_classes);
664 interface_ip_init(iface);
665 avl_init(&iface->data, avl_strcmp, false, NULL);
666 iface->config_ip.enabled = false;
667
668 iface->main_dev.cb = interface_cb;
669 iface->ext_dev.cb = interface_ext_cb;
670
671 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb,
672 blob_data(config), blob_len(config));
673
674 if ((cur = tb[IFACE_ATTR_PROTO]))
675 proto_name = blobmsg_data(cur);
676
677 proto_attach_interface(iface, proto_name);
678 if (iface->proto_handler->flags & PROTO_FLAG_FORCE_LINK_DEFAULT)
679 force_link = true;
680
681 iface->autostart = blobmsg_get_bool_default(tb[IFACE_ATTR_AUTO], true);
682 iface->force_link = blobmsg_get_bool_default(tb[IFACE_ATTR_FORCE_LINK], force_link);
683 iface->proto_ip.no_defaultroute =
684 !blobmsg_get_bool_default(tb[IFACE_ATTR_DEFAULTROUTE], true);
685 iface->proto_ip.no_dns =
686 !blobmsg_get_bool_default(tb[IFACE_ATTR_PEERDNS], true);
687
688 if ((cur = tb[IFACE_ATTR_DNS]))
689 interface_add_dns_server_list(&iface->config_ip, cur);
690
691 if ((cur = tb[IFACE_ATTR_DNS_SEARCH]))
692 interface_add_dns_search_list(&iface->config_ip, cur);
693
694 if ((cur = tb[IFACE_ATTR_METRIC]))
695 iface->metric = blobmsg_get_u32(cur);
696
697 if ((cur = tb[IFACE_ATTR_IP6ASSIGN]))
698 iface->assignment_length = blobmsg_get_u32(cur);
699
700 iface->assignment_hint = -1;
701 if ((cur = tb[IFACE_ATTR_IP6HINT]))
702 iface->assignment_hint = strtol(blobmsg_get_string(cur), NULL, 16) &
703 ~((1 << (64 - iface->assignment_length)) - 1);
704
705 if ((cur = tb[IFACE_ATTR_IP6CLASS]))
706 interface_add_assignment_classes(iface, cur);
707
708
709 if ((cur = tb[IFACE_ATTR_IP4TABLE])) {
710 if (!system_resolve_rt_table(blobmsg_data(cur), &iface->ip4table))
711 DPRINTF("Failed to resolve routing table: %s\n", (char *) blobmsg_data(cur));
712 }
713
714 if ((cur = tb[IFACE_ATTR_IP6TABLE])) {
715 if (!system_resolve_rt_table(blobmsg_data(cur), &iface->ip6table))
716 DPRINTF("Failed to resolve routing table: %s\n", (char *) blobmsg_data(cur));
717 }
718
719 iface->proto_ip.no_delegation = !blobmsg_get_bool_default(tb[IFACE_ATTR_DELEGATE], true);
720
721 iface->config_autostart = iface->autostart;
722 return iface;
723 }
724
725 void interface_set_dynamic(struct interface *iface)
726 {
727 iface->dynamic = true;
728 iface->autostart = true;
729 iface->node.version = -1; // Don't delete on reload
730 }
731
732 static bool __interface_add(struct interface *iface, struct blob_attr *config, bool alias)
733 {
734 struct blob_attr *tb[IFACE_ATTR_MAX];
735 struct blob_attr *cur;
736
737 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb,
738 blob_data(config), blob_len(config));
739
740 if (alias) {
741 if ((cur = tb[IFACE_ATTR_INTERFACE]))
742 iface->parent_ifname = blobmsg_data(cur);
743
744 if (!iface->parent_ifname)
745 return false;
746 } else {
747 if ((cur = tb[IFACE_ATTR_IFNAME]))
748 iface->ifname = blobmsg_data(cur);
749 }
750
751
752 iface->config = config;
753 vlist_add(&interfaces, &iface->node, iface->name);
754 return true;
755 }
756
757 void
758 interface_add(struct interface *iface, struct blob_attr *config)
759 {
760 __interface_add(iface, config, false);
761 }
762
763 bool
764 interface_add_alias(struct interface *iface, struct blob_attr *config)
765 {
766 if (iface->proto_handler->flags & PROTO_FLAG_NODEV)
767 return false;
768
769 return __interface_add(iface, config, true);
770 }
771
772 void
773 interface_set_l3_dev(struct interface *iface, struct device *dev)
774 {
775 bool enabled = iface->config_ip.enabled;
776 bool claimed = iface->l3_dev.claimed;
777
778 if (iface->l3_dev.dev == dev)
779 return;
780
781 interface_ip_set_enabled(&iface->config_ip, false);
782 interface_ip_flush(&iface->proto_ip);
783 device_add_user(&iface->l3_dev, dev);
784
785 if (dev) {
786 if (claimed) {
787 if (device_claim(&iface->l3_dev) < 0)
788 return;
789 }
790 interface_ip_set_enabled(&iface->config_ip, enabled);
791 }
792 }
793
794 void
795 interface_set_main_dev(struct interface *iface, struct device *dev)
796 {
797 bool claimed = iface->l3_dev.claimed;
798
799 if (iface->main_dev.dev == dev)
800 return;
801
802 interface_set_available(iface, false);
803 device_add_user(&iface->main_dev, dev);
804 if (!dev) {
805 interface_set_link_state(iface, false);
806 return;
807 }
808
809 if (claimed) {
810 if (device_claim(&iface->l3_dev) < 0)
811 return;
812 }
813
814 if (!iface->l3_dev.dev)
815 interface_set_l3_dev(iface, dev);
816 }
817
818 int
819 interface_remove_link(struct interface *iface, struct device *dev)
820 {
821 struct device *mdev = iface->main_dev.dev;
822
823 if (mdev && mdev->hotplug_ops)
824 return mdev->hotplug_ops->del(mdev, dev);
825
826 if (dev == iface->ext_dev.dev)
827 device_remove_user(&iface->ext_dev);
828
829 if (!iface->main_dev.hotplug)
830 return UBUS_STATUS_INVALID_ARGUMENT;
831
832 if (dev != iface->main_dev.dev)
833 return UBUS_STATUS_INVALID_ARGUMENT;
834
835 interface_set_main_dev(iface, NULL);
836 return 0;
837 }
838
839 static int
840 interface_add_link(struct interface *iface, struct device *dev, bool link_ext)
841 {
842 struct device *mdev = iface->main_dev.dev;
843
844 if (mdev == dev)
845 return 0;
846
847 if (iface->main_dev.hotplug)
848 device_remove_user(&iface->main_dev);
849
850 if (mdev) {
851 if (mdev->hotplug_ops)
852 return mdev->hotplug_ops->add(mdev, dev);
853 else
854 return UBUS_STATUS_NOT_SUPPORTED;
855 }
856
857 if (link_ext)
858 device_add_user(&iface->ext_dev, dev);
859
860 interface_set_main_dev(iface, dev);
861 iface->main_dev.hotplug = true;
862 return 0;
863 }
864
865 int
866 interface_handle_link(struct interface *iface, const char *name, bool add, bool link_ext)
867 {
868 struct device *dev;
869 int ret;
870
871 device_lock();
872
873 dev = device_get(name, add ? (link_ext ? 2 : 1) : 0);
874 if (!dev) {
875 ret = UBUS_STATUS_NOT_FOUND;
876 goto out;
877 }
878
879 if (add) {
880 device_set_present(dev, true);
881 if (iface->device_config)
882 device_set_config(dev, &simple_device_type, iface->config);
883
884 system_if_apply_settings(dev, &dev->settings, dev->settings.flags);
885 ret = interface_add_link(iface, dev, link_ext);
886 } else {
887 ret = interface_remove_link(iface, dev);
888 }
889
890 out:
891 device_unlock();
892
893 return ret;
894 }
895
896 int
897 interface_set_up(struct interface *iface)
898 {
899 int ret;
900
901 iface->autostart = true;
902
903 if (iface->state != IFS_DOWN)
904 return 0;
905
906 interface_clear_errors(iface);
907 if (!iface->available) {
908 interface_add_error(iface, "interface", "NO_DEVICE", NULL, 0);
909 return -1;
910 }
911
912 if (iface->main_dev.dev) {
913 ret = device_claim(&iface->main_dev);
914 if (!ret)
915 interface_check_state(iface);
916 }
917 else
918 ret = __interface_set_up(iface);
919
920 return ret;
921 }
922
923 int
924 interface_set_down(struct interface *iface)
925 {
926 if (!iface) {
927 vlist_for_each_element(&interfaces, iface, node)
928 __interface_set_down(iface, false);
929 } else {
930 iface->autostart = false;
931 __interface_set_down(iface, false);
932 }
933
934 return 0;
935 }
936
937 void
938 interface_start_pending(void)
939 {
940 struct interface *iface;
941
942 vlist_for_each_element(&interfaces, iface, node) {
943 if (iface->available && iface->autostart)
944 interface_set_up(iface);
945 }
946 }
947
948 static void
949 set_config_state(struct interface *iface, enum interface_config_state s)
950 {
951 iface->config_state = s;
952 if (iface->state == IFS_DOWN)
953 interface_handle_config_change(iface);
954 else
955 __interface_set_down(iface, false);
956 }
957
958 void
959 interface_update_start(struct interface *iface)
960 {
961 iface->updated = 0;
962 interface_ip_update_start(&iface->proto_ip);
963 }
964
965 void
966 interface_update_complete(struct interface *iface)
967 {
968 interface_ip_update_complete(&iface->proto_ip);
969 }
970
971 static void
972 interface_replace_dns(struct interface_ip_settings *new, struct interface_ip_settings *old)
973 {
974 vlist_simple_replace(&new->dns_servers, &old->dns_servers);
975 vlist_simple_replace(&new->dns_search, &old->dns_search);
976 }
977
978 static void
979 interface_change_config(struct interface *if_old, struct interface *if_new)
980 {
981 struct blob_attr *old_config = if_old->config;
982 bool reload = false, reload_ip = false;
983
984 #define FIELD_CHANGED_STR(field) \
985 ((!!if_old->field != !!if_new->field) || \
986 (if_old->field && \
987 strcmp(if_old->field, if_new->field) != 0))
988
989 if (FIELD_CHANGED_STR(parent_ifname)) {
990 if (if_old->parent_iface.iface)
991 interface_remove_user(&if_old->parent_iface);
992 reload = true;
993 }
994
995 if (FIELD_CHANGED_STR(ifname) ||
996 if_old->proto_handler != if_new->proto_handler)
997 reload = true;
998
999 if (!if_old->proto_handler->config_params)
1000 D(INTERFACE, "No config parameters for interface '%s'\n",
1001 if_old->name);
1002 else if (!uci_blob_check_equal(if_old->config, if_new->config,
1003 if_old->proto_handler->config_params))
1004 reload = true;
1005
1006 #define UPDATE(field, __var) ({ \
1007 bool __changed = (if_old->field != if_new->field); \
1008 if_old->field = if_new->field; \
1009 __var |= __changed; \
1010 })
1011
1012 if_old->config = if_new->config;
1013 if (!if_old->config_autostart && if_new->config_autostart)
1014 if_old->autostart = true;
1015
1016 if_old->device_config = if_new->device_config;
1017 if_old->config_autostart = if_new->config_autostart;
1018 if_old->ifname = if_new->ifname;
1019 if_old->parent_ifname = if_new->parent_ifname;
1020 if_old->proto_handler = if_new->proto_handler;
1021 if_old->force_link = if_new->force_link;
1022
1023 if_old->proto_ip.no_dns = if_new->proto_ip.no_dns;
1024 interface_replace_dns(&if_old->config_ip, &if_new->config_ip);
1025
1026 UPDATE(metric, reload_ip);
1027 UPDATE(proto_ip.no_defaultroute, reload_ip);
1028 UPDATE(ip4table, reload_ip);
1029 UPDATE(ip6table, reload_ip);
1030 interface_merge_assignment_data(if_old, if_new);
1031
1032 #undef UPDATE
1033
1034 if (reload) {
1035 D(INTERFACE, "Reload interface '%s' because of config changes\n",
1036 if_old->name);
1037 interface_clear_errors(if_old);
1038 set_config_state(if_old, IFC_RELOAD);
1039 goto out;
1040 }
1041
1042 if (reload_ip) {
1043 interface_ip_set_enabled(&if_old->config_ip, false);
1044 interface_ip_set_enabled(&if_old->proto_ip, false);
1045 interface_ip_set_enabled(&if_old->proto_ip, if_new->proto_ip.enabled);
1046 interface_ip_set_enabled(&if_old->config_ip, if_new->config_ip.enabled);
1047 }
1048
1049 interface_write_resolv_conf();
1050 if (if_old->main_dev.dev)
1051 interface_check_state(if_old);
1052
1053 out:
1054 if_new->config = NULL;
1055 interface_cleanup(if_new);
1056 free(old_config);
1057 free(if_new);
1058 }
1059
1060 static void
1061 interface_update(struct vlist_tree *tree, struct vlist_node *node_new,
1062 struct vlist_node *node_old)
1063 {
1064 struct interface *if_old = container_of(node_old, struct interface, node);
1065 struct interface *if_new = container_of(node_new, struct interface, node);
1066
1067 if (node_old && node_new) {
1068 D(INTERFACE, "Update interface '%s'\n", if_new->name);
1069 interface_change_config(if_old, if_new);
1070 } else if (node_old) {
1071 D(INTERFACE, "Remove interface '%s'\n", if_old->name);
1072 set_config_state(if_old, IFC_REMOVE);
1073 } else if (node_new) {
1074 D(INTERFACE, "Create interface '%s'\n", if_new->name);
1075 proto_init_interface(if_new, if_new->config);
1076 interface_claim_device(if_new);
1077 netifd_ubus_add_interface(if_new);
1078 }
1079 }
1080
1081
1082 static void __init
1083 interface_init_list(void)
1084 {
1085 vlist_init(&interfaces, avl_strcmp, interface_update);
1086 interfaces.keep_old = true;
1087 interfaces.no_delete = true;
1088 }