add a new event for interface reload
[project/netifd.git] / interface.c
1 #include <string.h>
2 #include <stdlib.h>
3 #include <stdio.h>
4
5 #include "netifd.h"
6 #include "device.h"
7 #include "interface.h"
8 #include "interface-ip.h"
9 #include "proto.h"
10 #include "ubus.h"
11 #include "config.h"
12 #include "system.h"
13
14 struct vlist_tree interfaces;
15 static LIST_HEAD(iface_all_users);
16
17 enum {
18 IFACE_ATTR_IFNAME,
19 IFACE_ATTR_PROTO,
20 IFACE_ATTR_AUTO,
21 IFACE_ATTR_DEFAULTROUTE,
22 IFACE_ATTR_METRIC,
23 IFACE_ATTR_MAX
24 };
25
26 static const struct blobmsg_policy iface_attrs[IFACE_ATTR_MAX] = {
27 [IFACE_ATTR_PROTO] = { .name = "proto", .type = BLOBMSG_TYPE_STRING },
28 [IFACE_ATTR_IFNAME] = { .name = "ifname", .type = BLOBMSG_TYPE_STRING },
29 [IFACE_ATTR_AUTO] = { .name = "auto", .type = BLOBMSG_TYPE_BOOL },
30 [IFACE_ATTR_DEFAULTROUTE] = { .name = "defaultroute", .type = BLOBMSG_TYPE_BOOL },
31 [IFACE_ATTR_METRIC] = { .name = "metric", .type = BLOBMSG_TYPE_INT32 },
32 };
33
34 const struct config_param_list interface_attr_list = {
35 .n_params = IFACE_ATTR_MAX,
36 .params = iface_attrs,
37 };
38
39 static void
40 interface_clear_errors(struct interface *iface)
41 {
42 struct interface_error *error, *tmp;
43
44 list_for_each_entry_safe(error, tmp, &iface->errors, list) {
45 list_del(&error->list);
46 free(error);
47 }
48 }
49
50 void interface_add_error(struct interface *iface, const char *subsystem,
51 const char *code, const char **data, int n_data)
52 {
53 struct interface_error *error;
54 int i, len = 0;
55 int *datalen = NULL;
56 char *dest;
57
58 if (n_data) {
59 len = n_data * sizeof(char *);
60 datalen = alloca(len);
61 for (i = 0; i < n_data; i++) {
62 datalen[i] = strlen(data[i]) + 1;
63 len += datalen[i];
64 }
65 }
66
67 error = calloc(1, sizeof(*error) + sizeof(char *) + len);
68 if (!error)
69 return;
70
71 list_add_tail(&error->list, &iface->errors);
72 error->subsystem = subsystem;
73 error->code = code;
74
75 dest = (char *) &error->data[n_data + 1];
76 for (i = 0; i < n_data; i++) {
77 error->data[i] = dest;
78 memcpy(dest, data[i], datalen[i]);
79 dest += datalen[i];
80 }
81 error->data[n_data] = NULL;
82 }
83
84 static void
85 interface_data_del(struct interface *iface, struct interface_data *data)
86 {
87 avl_delete(&iface->data, &data->node);
88 free(data);
89 }
90
91 static void
92 interface_data_flush(struct interface *iface)
93 {
94 struct interface_data *d, *tmp;
95
96 avl_for_each_element_safe(&iface->data, d, node, tmp)
97 interface_data_del(iface, d);
98 }
99
100 int
101 interface_add_data(struct interface *iface, const struct blob_attr *data)
102 {
103 struct interface_data *n, *o;
104
105 if (!blobmsg_check_attr(data, true))
106 return UBUS_STATUS_INVALID_ARGUMENT;
107
108 n = calloc(1, sizeof(*data) + blob_pad_len(data));
109 memcpy(n->data, data, blob_pad_len(data));
110 n->node.key = blobmsg_name(data);
111
112 o = avl_find_element(&iface->data, n->node.key, o, node);
113 if (o)
114 interface_data_del(iface, o);
115
116 avl_insert(&iface->data, &n->node);
117 return 0;
118 }
119
120 static void
121 interface_event(struct interface *iface, enum interface_event ev)
122 {
123 struct interface_user *dep, *tmp;
124
125 list_for_each_entry_safe(dep, tmp, &iface->users, list)
126 dep->cb(dep, iface, ev);
127
128 list_for_each_entry_safe(dep, tmp, &iface_all_users, list)
129 dep->cb(dep, iface, ev);
130
131 interface_queue_event(iface, ev);
132 }
133
134 static void
135 interface_flush_state(struct interface *iface)
136 {
137 if (iface->main_dev.dev)
138 device_release(&iface->main_dev);
139 if (iface->l3_dev.dev)
140 device_release(&iface->l3_dev);
141 interface_data_flush(iface);
142 }
143
144 static void
145 mark_interface_down(struct interface *iface)
146 {
147 if (iface->state == IFS_UP)
148 interface_event(iface, IFEV_DOWN);
149 interface_ip_set_enabled(&iface->config_ip, false);
150 interface_ip_flush(&iface->proto_ip);
151 interface_flush_state(iface);
152 system_flush_routes();
153 iface->state = IFS_DOWN;
154 }
155
156 void
157 __interface_set_down(struct interface *iface, bool force)
158 {
159 interface_clear_errors(iface);
160
161 if (iface->state == IFS_DOWN ||
162 iface->state == IFS_TEARDOWN)
163 return;
164
165 if (iface->state == IFS_UP)
166 interface_event(iface, IFEV_DOWN);
167 iface->state = IFS_TEARDOWN;
168 interface_proto_event(iface->proto, PROTO_CMD_TEARDOWN, force);
169 if (force)
170 interface_flush_state(iface);
171 }
172
173 static void
174 interface_cb(struct device_user *dep, enum device_event ev)
175 {
176 struct interface *iface;
177 bool new_state;
178
179 iface = container_of(dep, struct interface, main_dev);
180 switch (ev) {
181 case DEV_EVENT_ADD:
182 new_state = true;
183 break;
184 case DEV_EVENT_REMOVE:
185 new_state = false;
186 break;
187 default:
188 return;
189 }
190
191 interface_set_available(iface, new_state);
192 }
193
194 void
195 interface_set_available(struct interface *iface, bool new_state)
196 {
197 if (iface->available == new_state)
198 return;
199
200 D(INTERFACE, "Interface '%s', available=%d\n", iface->name, new_state);
201 iface->available = new_state;
202
203 if (new_state) {
204 if (iface->autostart && !config_init)
205 interface_set_up(iface);
206 } else
207 __interface_set_down(iface, true);
208 }
209
210 void
211 interface_add_user(struct interface_user *dep, struct interface *iface)
212 {
213 if (!iface) {
214 list_add(&dep->list, &iface_all_users);
215 return;
216 }
217
218 dep->iface = iface;
219 list_add(&dep->list, &iface->users);
220 if (iface->state == IFS_UP)
221 dep->cb(dep, iface, IFEV_UP);
222 }
223
224 void
225 interface_remove_user(struct interface_user *dep)
226 {
227 list_del_init(&dep->list);
228 dep->iface = NULL;
229 }
230
231 static void
232 interface_claim_device(struct interface *iface)
233 {
234 struct device *dev;
235
236 if (iface->ifname &&
237 !(iface->proto_handler->flags & PROTO_FLAG_NODEV)) {
238 dev = device_get(iface->ifname, true);
239 if (dev)
240 interface_set_main_dev(iface, dev);
241 }
242 if (iface->proto_handler->flags & PROTO_FLAG_INIT_AVAILABLE)
243 interface_set_available(iface, true);
244 }
245
246
247 static void
248 interface_cleanup(struct interface *iface, bool reload)
249 {
250 struct interface_user *dep, *tmp;
251
252 list_for_each_entry_safe(dep, tmp, &iface->users, list)
253 interface_remove_user(dep);
254
255 interface_dequeue_event(iface);
256 interface_ip_flush(&iface->config_ip);
257 interface_flush_state(iface);
258 interface_clear_errors(iface);
259 if (iface->main_dev.dev &&
260 (!reload || !iface->main_dev.hotplug))
261 interface_set_main_dev(iface, NULL);
262 interface_set_proto_state(iface, NULL);
263 }
264
265 static void
266 interface_do_free(struct interface *iface)
267 {
268 interface_event(iface, IFEV_FREE);
269 interface_cleanup(iface, false);
270 free(iface->config);
271 netifd_ubus_remove_interface(iface);
272 avl_delete(&interfaces.avl, &iface->node.avl);
273 free(iface);
274 }
275
276 static void
277 interface_do_reload(struct interface *iface)
278 {
279 interface_event(iface, IFEV_RELOAD);
280 interface_cleanup(iface, true);
281 proto_init_interface(iface, iface->config);
282 interface_claim_device(iface);
283 }
284
285 static void
286 interface_handle_config_change(struct interface *iface)
287 {
288 switch(iface->config_state) {
289 case IFC_NORMAL:
290 break;
291 case IFC_RELOAD:
292 interface_do_reload(iface);
293 break;
294 case IFC_REMOVE:
295 interface_do_free(iface);
296 return;
297 }
298 if (iface->autostart && iface->available)
299 interface_set_up(iface);
300 }
301
302 static void
303 interface_proto_cb(struct interface_proto_state *state, enum interface_proto_event ev)
304 {
305 struct interface *iface = state->iface;
306
307 switch (ev) {
308 case IFPEV_UP:
309 if (iface->state != IFS_SETUP)
310 return;
311
312 interface_ip_set_enabled(&iface->config_ip, true);
313 system_flush_routes();
314 iface->state = IFS_UP;
315 iface->start_time = system_get_rtime();
316 interface_event(iface, IFEV_UP);
317 interface_write_resolv_conf();
318 netifd_log_message(L_NOTICE, "Interface '%s' is now up\n", iface->name);
319 break;
320 case IFPEV_DOWN:
321 if (iface->state == IFS_DOWN)
322 return;
323
324 netifd_log_message(L_NOTICE, "Interface '%s' is now down\n", iface->name);
325 mark_interface_down(iface);
326 interface_handle_config_change(iface);
327 break;
328 case IFPEV_LINK_LOST:
329 if (iface->state != IFS_UP)
330 return;
331
332 netifd_log_message(L_NOTICE, "Interface '%s' has lost the connection\n", iface->name);
333 mark_interface_down(iface);
334 iface->state = IFS_SETUP;
335 break;
336 }
337 }
338
339 void interface_set_proto_state(struct interface *iface, struct interface_proto_state *state)
340 {
341 if (iface->proto) {
342 iface->proto->free(iface->proto);
343 iface->proto = NULL;
344 }
345 iface->state = IFS_DOWN;
346 iface->proto = state;
347 if (!state)
348 return;
349
350 state->proto_event = interface_proto_cb;
351 state->iface = iface;
352 }
353
354 void
355 interface_init(struct interface *iface, const char *name,
356 struct blob_attr *config)
357 {
358 struct blob_attr *tb[IFACE_ATTR_MAX];
359 struct blob_attr *cur;
360 const char *proto_name = NULL;
361
362 strncpy(iface->name, name, sizeof(iface->name) - 1);
363 INIT_LIST_HEAD(&iface->errors);
364 INIT_LIST_HEAD(&iface->users);
365 INIT_LIST_HEAD(&iface->hotplug_list);
366 interface_ip_init(iface);
367 avl_init(&iface->data, avl_strcmp, false, NULL);
368 iface->config_ip.enabled = false;
369
370 iface->main_dev.cb = interface_cb;
371
372 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb,
373 blob_data(config), blob_len(config));
374
375 if ((cur = tb[IFACE_ATTR_PROTO]))
376 proto_name = blobmsg_data(cur);
377
378 proto_attach_interface(iface, proto_name);
379
380 iface->autostart = blobmsg_get_bool_default(tb[IFACE_ATTR_AUTO], true);
381 iface->proto_ip.no_defaultroute =
382 !blobmsg_get_bool_default(tb[IFACE_ATTR_DEFAULTROUTE], true);
383
384 iface->config_autostart = iface->autostart;
385 }
386
387 void
388 interface_add(struct interface *iface, struct blob_attr *config)
389 {
390 struct blob_attr *tb[IFACE_ATTR_MAX];
391 struct blob_attr *cur;
392
393 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb,
394 blob_data(config), blob_len(config));
395
396 if ((cur = tb[IFACE_ATTR_IFNAME]))
397 iface->ifname = blobmsg_data(cur);
398
399 iface->config = config;
400 vlist_add(&interfaces, &iface->node, iface->name);
401 }
402
403 void
404 interface_set_l3_dev(struct interface *iface, struct device *dev)
405 {
406 bool enabled = iface->config_ip.enabled;
407 bool claimed = iface->l3_dev.claimed;
408
409 if (iface->l3_dev.dev == dev)
410 return;
411
412 interface_ip_set_enabled(&iface->config_ip, false);
413 interface_ip_flush(&iface->proto_ip);
414 device_add_user(&iface->l3_dev, dev);
415
416 if (dev) {
417 if (claimed)
418 device_claim(&iface->l3_dev);
419 interface_ip_set_enabled(&iface->config_ip, enabled);
420 }
421 }
422
423 void
424 interface_set_main_dev(struct interface *iface, struct device *dev)
425 {
426 bool set_l3 = (iface->main_dev.dev == iface->l3_dev.dev);
427 bool claimed = iface->l3_dev.claimed;
428
429 if (iface->main_dev.dev == dev)
430 return;
431
432 if (set_l3)
433 interface_set_l3_dev(iface, dev);
434
435 device_add_user(&iface->main_dev, dev);
436 if (claimed)
437 device_claim(&iface->l3_dev);
438
439 if (!iface->l3_dev.dev)
440 interface_set_l3_dev(iface, dev);
441 }
442
443 int
444 interface_remove_link(struct interface *iface, struct device *dev)
445 {
446 struct device *mdev = iface->main_dev.dev;
447
448 if (mdev && mdev->hotplug_ops)
449 return mdev->hotplug_ops->del(mdev, dev);
450
451 if (!iface->main_dev.hotplug)
452 return UBUS_STATUS_INVALID_ARGUMENT;
453
454 if (dev != iface->main_dev.dev)
455 return UBUS_STATUS_INVALID_ARGUMENT;
456
457 device_remove_user(&iface->main_dev);
458 return 0;
459 }
460
461 int
462 interface_add_link(struct interface *iface, struct device *dev)
463 {
464 struct device *mdev = iface->main_dev.dev;
465
466 if (mdev == dev)
467 return 0;
468
469 if (iface->main_dev.hotplug)
470 device_remove_user(&iface->main_dev);
471
472 if (mdev) {
473 if (mdev->hotplug_ops)
474 return mdev->hotplug_ops->add(mdev, dev);
475 else
476 return UBUS_STATUS_NOT_SUPPORTED;
477 }
478
479 interface_set_main_dev(iface, dev);
480 iface->main_dev.hotplug = true;
481 return 0;
482 }
483
484 int
485 interface_set_up(struct interface *iface)
486 {
487 int ret;
488
489 iface->autostart = true;
490
491 if (iface->state != IFS_DOWN)
492 return 0;
493
494 interface_clear_errors(iface);
495 if (!iface->available) {
496 interface_add_error(iface, "interface", "NO_DEVICE", NULL, 0);
497 return -1;
498 }
499
500 if (iface->main_dev.dev) {
501 ret = device_claim(&iface->main_dev);
502 if (ret)
503 return ret;
504 }
505
506 iface->state = IFS_SETUP;
507 ret = interface_proto_event(iface->proto, PROTO_CMD_SETUP, false);
508 if (ret) {
509 mark_interface_down(iface);
510 return ret;
511 }
512
513 return 0;
514 }
515
516 int
517 interface_set_down(struct interface *iface)
518 {
519 if (!iface) {
520 vlist_for_each_element(&interfaces, iface, node)
521 __interface_set_down(iface, false);
522 } else {
523 iface->autostart = false;
524 __interface_set_down(iface, false);
525 }
526
527 return 0;
528 }
529
530 void
531 interface_start_pending(void)
532 {
533 struct interface *iface;
534
535 vlist_for_each_element(&interfaces, iface, node) {
536 if (iface->available && iface->autostart)
537 interface_set_up(iface);
538 }
539 }
540
541 static void
542 set_config_state(struct interface *iface, enum interface_config_state s)
543 {
544 iface->config_state = s;
545 if (iface->state == IFS_DOWN)
546 interface_handle_config_change(iface);
547 else
548 __interface_set_down(iface, false);
549 }
550
551 void
552 interface_update_start(struct interface *iface)
553 {
554 interface_ip_update_start(&iface->proto_ip);
555 }
556
557 void
558 interface_update_complete(struct interface *iface)
559 {
560 interface_ip_update_complete(&iface->proto_ip);
561 }
562
563 static void
564 interface_change_config(struct interface *if_old, struct interface *if_new)
565 {
566 struct blob_attr *old_config = if_old->config;
567 const char *old_ifname = if_old->ifname;
568 const struct proto_handler *proto = if_old->proto_handler;
569
570 interface_clear_errors(if_old);
571 if_old->config = if_new->config;
572 if (!if_old->config_autostart && if_new->config_autostart)
573 if_old->autostart = true;
574
575 if_old->config_autostart = if_new->config_autostart;
576 if_old->ifname = if_new->ifname;
577 if_old->proto_handler = if_new->proto_handler;
578
579 if ((!!old_ifname != !!if_new->ifname) ||
580 (old_ifname && strcmp(old_ifname, if_new->ifname) != 0) ||
581 proto != if_new->proto_handler) {
582 D(INTERFACE, "Reload interface '%s' because of ifname/proto change\n",
583 if_old->name);
584 goto reload;
585 }
586
587 if (!proto->config_params)
588 D(INTERFACE, "No config parameters for interface '%s'\n",
589 if_old->name);
590 else if (!config_check_equal(old_config, if_new->config,
591 proto->config_params)) {
592 D(INTERFACE, "Reload interface '%s because of config changes\n",
593 if_old->name);
594 goto reload;
595 }
596
597 #define UPDATE(field) ({ \
598 bool __changed = (if_old->field != if_new->field); \
599 if_old->field = if_new->field; \
600 __changed; \
601 })
602
603 if (UPDATE(metric) || UPDATE(proto_ip.no_defaultroute)) {
604 interface_ip_set_enabled(&if_old->config_ip, false);
605 interface_ip_set_enabled(&if_old->config_ip, if_new->config_ip.enabled);
606 interface_ip_set_enabled(&if_old->proto_ip, false);
607 interface_ip_set_enabled(&if_old->proto_ip, if_new->proto_ip.enabled);
608 }
609
610 #undef UPDATE
611
612 goto out;
613
614 reload:
615 set_config_state(if_old, IFC_RELOAD);
616 out:
617 free(old_config);
618 free(if_new);
619 }
620
621 static void
622 interface_update(struct vlist_tree *tree, struct vlist_node *node_new,
623 struct vlist_node *node_old)
624 {
625 struct interface *if_old = container_of(node_old, struct interface, node);
626 struct interface *if_new = container_of(node_new, struct interface, node);
627
628 if (node_old && node_new) {
629 D(INTERFACE, "Update interface '%s'\n", if_new->name);
630 interface_change_config(if_old, if_new);
631 } else if (node_old) {
632 D(INTERFACE, "Remove interface '%s'\n", if_old->name);
633 set_config_state(if_old, IFC_REMOVE);
634 } else if (node_new) {
635 D(INTERFACE, "Create interface '%s'\n", if_new->name);
636 proto_init_interface(if_new, if_new->config);
637 interface_claim_device(if_new);
638 netifd_ubus_add_interface(if_new);
639 }
640 }
641
642
643 static void __init
644 interface_init_list(void)
645 {
646 vlist_init(&interfaces, avl_strcmp, interface_update);
647 interfaces.keep_old = true;
648 interfaces.no_delete = true;
649 }