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.
16 #include <arpa/inet.h>
21 #include "interface.h"
27 struct ubus_context *ubus_ctx = NULL;
28 static struct blob_buf b;
29 static const char *ubus_path;
34 netifd_handle_restart(struct ubus_context *ctx, struct ubus_object *obj,
35 struct ubus_request_data *req, const char *method,
36 struct blob_attr *msg)
43 netifd_handle_reload(struct ubus_context *ctx, struct ubus_object *obj,
44 struct ubus_request_data *req, const char *method,
45 struct blob_attr *msg)
58 static const struct blobmsg_policy route_policy[__HR_MAX] = {
59 [HR_TARGET] = { .name = "target", .type = BLOBMSG_TYPE_STRING },
60 [HR_V6] = { .name = "v6", .type = BLOBMSG_TYPE_BOOL },
61 [HR_INTERFACE] = { .name = "interface", .type = BLOBMSG_TYPE_STRING },
65 netifd_add_host_route(struct ubus_context *ctx, struct ubus_object *obj,
66 struct ubus_request_data *req, const char *method,
67 struct blob_attr *msg)
69 struct blob_attr *tb[__HR_MAX];
70 struct interface *iface = NULL;
74 blobmsg_parse(route_policy, __HR_MAX, tb, blob_data(msg), blob_len(msg));
76 return UBUS_STATUS_INVALID_ARGUMENT;
79 v6 = blobmsg_get_bool(tb[HR_V6]);
82 iface = vlist_find(&interfaces, blobmsg_data(tb[HR_INTERFACE]), iface, node);
84 memset(&a, 0, sizeof(a));
85 if (!inet_pton(v6 ? AF_INET6 : AF_INET, blobmsg_data(tb[HR_TARGET]), &a))
86 return UBUS_STATUS_INVALID_ARGUMENT;
89 iface = interface_ip_add_target_route(&a, v6, iface);
91 return UBUS_STATUS_NOT_FOUND;
94 blobmsg_add_string(&b, "interface", iface->name);
95 ubus_send_reply(ctx, req, b.head);
101 netifd_get_proto_handlers(struct ubus_context *ctx, struct ubus_object *obj,
102 struct ubus_request_data *req, const char *method,
103 struct blob_attr *msg)
105 blob_buf_init(&b, 0);
106 proto_dump_handlers(&b);
107 ubus_send_reply(ctx, req, b.head);
118 static const struct blobmsg_policy dynamic_policy[__DI_MAX] = {
119 [DI_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
123 netifd_add_dynamic(struct ubus_context *ctx, struct ubus_object *obj,
124 struct ubus_request_data *req, const char *method,
125 struct blob_attr *msg)
127 struct blob_attr *tb[__DI_MAX];
128 struct interface *iface;
129 struct blob_attr *config;
132 blobmsg_parse(dynamic_policy, __DI_MAX, tb, blob_data(msg), blob_len(msg));
135 return UBUS_STATUS_INVALID_ARGUMENT;
137 const char *name = blobmsg_get_string(tb[DI_NAME]);
139 iface = interface_alloc(name, msg);
141 return UBUS_STATUS_UNKNOWN_ERROR;
143 interface_set_dynamic(iface);
144 iface->device_config = true;
146 config = blob_memdup(msg);
150 interface_add(iface, config);
152 // need to look up the interface name again, in case of config update,
153 iface = vlist_find(&interfaces, name, iface, node);
155 return UBUS_STATUS_UNKNOWN_ERROR;
157 dev = iface->main_dev.dev;
158 if (!dev || !dev->default_config)
159 return UBUS_STATUS_UNKNOWN_ERROR;
161 device_set_config(dev, dev->type, msg);
162 return UBUS_STATUS_OK;
166 return UBUS_STATUS_UNKNOWN_ERROR;
169 static struct ubus_method main_object_methods[] = {
170 { .name = "restart", .handler = netifd_handle_restart },
171 { .name = "reload", .handler = netifd_handle_reload },
172 UBUS_METHOD("add_host_route", netifd_add_host_route, route_policy),
173 { .name = "get_proto_handlers", .handler = netifd_get_proto_handlers },
174 UBUS_METHOD("add_dynamic", netifd_add_dynamic, dynamic_policy),
177 static struct ubus_object_type main_object_type =
178 UBUS_OBJECT_TYPE("netifd", main_object_methods);
180 static struct ubus_object main_object = {
182 .type = &main_object_type,
183 .methods = main_object_methods,
184 .n_methods = ARRAY_SIZE(main_object_methods),
192 static const struct blobmsg_policy dev_policy[__DEV_MAX] = {
193 [DEV_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
197 netifd_dev_status(struct ubus_context *ctx, struct ubus_object *obj,
198 struct ubus_request_data *req, const char *method,
199 struct blob_attr *msg)
201 struct device *dev = NULL;
202 struct blob_attr *tb[__DEV_MAX];
204 blobmsg_parse(dev_policy, __DEV_MAX, tb, blob_data(msg), blob_len(msg));
207 dev = device_get(blobmsg_data(tb[DEV_NAME]), false);
209 return UBUS_STATUS_INVALID_ARGUMENT;
212 blob_buf_init(&b, 0);
213 device_dump_status(&b, dev);
214 ubus_send_reply(ctx, req, b.head);
225 static const struct blobmsg_policy alias_attrs[__ALIAS_ATTR_MAX] = {
226 [ALIAS_ATTR_ALIAS] = { "alias", BLOBMSG_TYPE_ARRAY },
227 [ALIAS_ATTR_DEV] = { "device", BLOBMSG_TYPE_STRING },
231 netifd_handle_alias(struct ubus_context *ctx, struct ubus_object *obj,
232 struct ubus_request_data *req, const char *method,
233 struct blob_attr *msg)
235 struct device *dev = NULL;
236 struct blob_attr *tb[__ALIAS_ATTR_MAX];
237 struct blob_attr *cur;
240 blobmsg_parse(alias_attrs, __ALIAS_ATTR_MAX, tb, blob_data(msg), blob_len(msg));
242 if (!tb[ALIAS_ATTR_ALIAS])
243 return UBUS_STATUS_INVALID_ARGUMENT;
245 if ((cur = tb[ALIAS_ATTR_DEV]) != NULL) {
246 dev = device_get(blobmsg_data(cur), true);
248 return UBUS_STATUS_NOT_FOUND;
251 blobmsg_for_each_attr(cur, tb[ALIAS_ATTR_ALIAS], rem) {
252 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
255 if (!blobmsg_check_attr(cur, NULL))
258 alias_notify_device(blobmsg_data(cur), dev);
263 device_free_unused(dev);
264 return UBUS_STATUS_INVALID_ARGUMENT;
273 static const struct blobmsg_policy dev_state_policy[__DEV_STATE_MAX] = {
274 [DEV_STATE_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
275 [DEV_STATE_DEFER] = { .name = "defer", .type = BLOBMSG_TYPE_BOOL },
279 netifd_handle_set_state(struct ubus_context *ctx, struct ubus_object *obj,
280 struct ubus_request_data *req, const char *method,
281 struct blob_attr *msg)
283 struct device *dev = NULL;
284 struct blob_attr *tb[__DEV_STATE_MAX];
285 struct blob_attr *cur;
287 blobmsg_parse(dev_state_policy, __DEV_STATE_MAX, tb, blob_data(msg), blob_len(msg));
289 cur = tb[DEV_STATE_NAME];
291 return UBUS_STATUS_INVALID_ARGUMENT;
293 dev = device_get(blobmsg_data(cur), false);
295 return UBUS_STATUS_NOT_FOUND;
297 cur = tb[DEV_STATE_DEFER];
299 device_set_deferred(dev, !!blobmsg_get_u8(cur));
304 static struct ubus_method dev_object_methods[] = {
305 UBUS_METHOD("status", netifd_dev_status, dev_policy),
306 UBUS_METHOD("set_alias", netifd_handle_alias, alias_attrs),
307 UBUS_METHOD("set_state", netifd_handle_set_state, dev_state_policy),
310 static struct ubus_object_type dev_object_type =
311 UBUS_OBJECT_TYPE("device", dev_object_methods);
313 static struct ubus_object dev_object = {
314 .name = "network.device",
315 .type = &dev_object_type,
316 .methods = dev_object_methods,
317 .n_methods = ARRAY_SIZE(dev_object_methods),
321 netifd_ubus_add_fd(void)
323 ubus_add_uloop(ubus_ctx);
324 system_fd_set_cloexec(ubus_ctx->sock.fd);
328 netifd_ubus_reconnect_timer(struct uloop_timeout *timeout)
330 static struct uloop_timeout retry = {
331 .cb = netifd_ubus_reconnect_timer,
335 if (ubus_reconnect(ubus_ctx, ubus_path) != 0) {
336 DPRINTF("failed to reconnect, trying again in %d seconds\n", t);
337 uloop_timeout_set(&retry, t * 1000);
341 DPRINTF("reconnected to ubus, new id: %08x\n", ubus_ctx->local_id);
342 netifd_ubus_add_fd();
346 netifd_ubus_connection_lost(struct ubus_context *ctx)
348 netifd_ubus_reconnect_timer(NULL);
351 /* per-interface object */
354 netifd_handle_up(struct ubus_context *ctx, struct ubus_object *obj,
355 struct ubus_request_data *req, const char *method,
356 struct blob_attr *msg)
358 struct interface *iface;
360 iface = container_of(obj, struct interface, ubus);
361 interface_set_up(iface);
367 netifd_handle_down(struct ubus_context *ctx, struct ubus_object *obj,
368 struct ubus_request_data *req, const char *method,
369 struct blob_attr *msg)
371 struct interface *iface;
373 iface = container_of(obj, struct interface, ubus);
374 interface_set_down(iface);
380 netifd_add_interface_errors(struct blob_buf *b, struct interface *iface)
382 struct interface_error *error;
386 e = blobmsg_open_array(b, "errors");
387 list_for_each_entry(error, &iface->errors, list) {
388 e2 = blobmsg_open_table(b, NULL);
390 blobmsg_add_string(b, "subsystem", error->subsystem);
391 blobmsg_add_string(b, "code", error->code);
392 if (error->data[0]) {
393 e3 = blobmsg_open_array(b, "data");
394 for (i = 0; error->data[i]; i++)
395 blobmsg_add_string(b, NULL, error->data[i]);
396 blobmsg_close_array(b, e3);
399 blobmsg_close_table(b, e2);
401 blobmsg_close_array(b, e);
405 interface_ip_dump_address_list(struct interface_ip_settings *ip, bool v6,
408 struct device_addr *addr;
414 time_t now = system_get_rtime();
415 vlist_for_each_element(&ip->addr, addr, node) {
416 if (addr->enabled != enabled)
419 if ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET4)
424 if (af != (v6 ? AF_INET6 : AF_INET))
427 a = blobmsg_open_table(&b, NULL);
429 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
430 inet_ntop(af, &addr->addr, buf, buflen);
431 blobmsg_add_string_buffer(&b);
433 blobmsg_add_u32(&b, "mask", addr->mask);
435 if (addr->preferred_until) {
436 int preferred = addr->preferred_until - now;
439 blobmsg_add_u32(&b, "preferred", preferred);
442 if (addr->valid_until)
443 blobmsg_add_u32(&b, "valid", addr->valid_until - now);
446 blobmsg_add_string(&b, "class", addr->pclass);
448 blobmsg_close_table(&b, a);
453 interface_ip_dump_route_list(struct interface_ip_settings *ip, bool enabled)
455 struct device_route *route;
461 time_t now = system_get_rtime();
462 vlist_for_each_element(&ip->route, route, node) {
463 if (route->enabled != enabled)
466 if ((route->flags & DEVADDR_FAMILY) == DEVADDR_INET4)
471 r = blobmsg_open_table(&b, NULL);
473 buf = blobmsg_alloc_string_buffer(&b, "target", buflen);
474 inet_ntop(af, &route->addr, buf, buflen);
475 blobmsg_add_string_buffer(&b);
477 blobmsg_add_u32(&b, "mask", route->mask);
479 buf = blobmsg_alloc_string_buffer(&b, "nexthop", buflen);
480 inet_ntop(af, &route->nexthop, buf, buflen);
481 blobmsg_add_string_buffer(&b);
483 if (route->flags & DEVROUTE_MTU)
484 blobmsg_add_u32(&b, "mtu", route->mtu);
486 if (route->flags & DEVROUTE_METRIC)
487 blobmsg_add_u32(&b, "metric", route->metric);
489 if (route->flags & DEVROUTE_TABLE)
490 blobmsg_add_u32(&b, "table", route->table);
492 if (route->valid_until)
493 blobmsg_add_u32(&b, "valid", route->valid_until - now);
495 buf = blobmsg_alloc_string_buffer(&b, "source", buflen);
496 inet_ntop(af, &route->source, buf, buflen);
497 snprintf(buf + strlen(buf), 4, "/%u", route->sourcemask);
498 blobmsg_add_string_buffer(&b);
500 blobmsg_close_table(&b, r);
506 interface_ip_dump_prefix_list(struct interface_ip_settings *ip)
508 struct device_prefix *prefix;
511 const int buflen = INET6_ADDRSTRLEN;
513 time_t now = system_get_rtime();
514 vlist_for_each_element(&ip->prefix, prefix, node) {
515 a = blobmsg_open_table(&b, NULL);
517 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
518 inet_ntop(AF_INET6, &prefix->addr, buf, buflen);
519 blobmsg_add_string_buffer(&b);
521 blobmsg_add_u32(&b, "mask", prefix->length);
523 if (prefix->preferred_until) {
524 int preferred = prefix->preferred_until - now;
527 blobmsg_add_u32(&b, "preferred", preferred);
530 if (prefix->valid_until)
531 blobmsg_add_u32(&b, "valid", prefix->valid_until - now);
533 blobmsg_add_string(&b, "class", prefix->pclass);
535 c = blobmsg_open_table(&b, "assigned");
536 struct device_prefix_assignment *assign;
537 list_for_each_entry(assign, &prefix->assignments, head) {
538 if (!assign->name[0])
541 struct in6_addr addr = prefix->addr;
542 addr.s6_addr32[1] |= htonl(assign->assigned);
544 void *d = blobmsg_open_table(&b, assign->name);
546 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
547 inet_ntop(AF_INET6, &addr, buf, buflen);
548 blobmsg_add_string_buffer(&b);
550 blobmsg_add_u32(&b, "mask", assign->length);
552 blobmsg_close_table(&b, d);
554 blobmsg_close_table(&b, c);
556 blobmsg_close_table(&b, a);
562 interface_ip_dump_prefix_assignment_list(struct interface *iface)
566 const int buflen = INET6_ADDRSTRLEN;
567 time_t now = system_get_rtime();
569 struct device_prefix *prefix;
570 list_for_each_entry(prefix, &prefixes, head) {
571 struct device_prefix_assignment *assign;
572 list_for_each_entry(assign, &prefix->assignments, head) {
573 if (strcmp(assign->name, iface->name))
576 struct in6_addr addr = prefix->addr;
577 addr.s6_addr32[1] |= htonl(assign->assigned);
579 a = blobmsg_open_table(&b, NULL);
581 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
582 inet_ntop(AF_INET6, &addr, buf, buflen);
583 blobmsg_add_string_buffer(&b);
585 blobmsg_add_u32(&b, "mask", assign->length);
587 if (prefix->preferred_until) {
588 int preferred = prefix->preferred_until - now;
591 blobmsg_add_u32(&b, "preferred", preferred);
594 if (prefix->valid_until)
595 blobmsg_add_u32(&b, "valid", prefix->valid_until - now);
597 blobmsg_close_table(&b, a);
604 interface_ip_dump_dns_server_list(struct interface_ip_settings *ip,
607 struct dns_server *dns;
611 vlist_simple_for_each_element(&ip->dns_servers, dns, node) {
612 if (ip->no_dns == enabled)
615 buf = blobmsg_alloc_string_buffer(&b, NULL, buflen);
616 inet_ntop(dns->af, &dns->addr, buf, buflen);
617 blobmsg_add_string_buffer(&b);
622 interface_ip_dump_dns_search_list(struct interface_ip_settings *ip,
625 struct dns_search_domain *dns;
627 vlist_simple_for_each_element(&ip->dns_search, dns, node) {
628 if (ip->no_dns == enabled)
631 blobmsg_add_string(&b, NULL, dns->name);
636 netifd_dump_status(struct interface *iface)
638 struct interface_data *data;
642 blobmsg_add_u8(&b, "up", iface->state == IFS_UP);
643 blobmsg_add_u8(&b, "pending", iface->state == IFS_SETUP);
644 blobmsg_add_u8(&b, "available", iface->available);
645 blobmsg_add_u8(&b, "autostart", iface->autostart);
647 if (iface->state == IFS_UP) {
648 time_t cur = system_get_rtime();
649 blobmsg_add_u32(&b, "uptime", cur - iface->start_time);
650 blobmsg_add_string(&b, "l3_device", iface->l3_dev.dev->ifname);
653 if (iface->proto_handler)
654 blobmsg_add_string(&b, "proto", iface->proto_handler->name);
656 dev = iface->main_dev.dev;
657 if (dev && !dev->hidden &&
658 !(iface->proto_handler->flags & PROTO_FLAG_NODEV))
659 blobmsg_add_string(&b, "device", dev->ifname);
661 if (iface->state == IFS_UP) {
663 blobmsg_add_u32(&b, "ip4table", iface->ip4table);
665 blobmsg_add_u32(&b, "ip6table", iface->ip6table);
666 blobmsg_add_u32(&b, "metric", iface->metric);
667 blobmsg_add_u8(&b, "delegation", !iface->proto_ip.no_delegation);
668 a = blobmsg_open_array(&b, "ipv4-address");
669 interface_ip_dump_address_list(&iface->config_ip, false, true);
670 interface_ip_dump_address_list(&iface->proto_ip, false, true);
671 blobmsg_close_array(&b, a);
672 a = blobmsg_open_array(&b, "ipv6-address");
673 interface_ip_dump_address_list(&iface->config_ip, true, true);
674 interface_ip_dump_address_list(&iface->proto_ip, true, true);
675 blobmsg_close_array(&b, a);
676 a = blobmsg_open_array(&b, "ipv6-prefix");
677 interface_ip_dump_prefix_list(&iface->config_ip);
678 interface_ip_dump_prefix_list(&iface->proto_ip);
679 blobmsg_close_array(&b, a);
680 a = blobmsg_open_array(&b, "ipv6-prefix-assignment");
681 interface_ip_dump_prefix_assignment_list(iface);
682 blobmsg_close_array(&b, a);
683 a = blobmsg_open_array(&b, "route");
684 interface_ip_dump_route_list(&iface->config_ip, true);
685 interface_ip_dump_route_list(&iface->proto_ip, true);
686 blobmsg_close_array(&b, a);
687 a = blobmsg_open_array(&b, "dns-server");
688 interface_ip_dump_dns_server_list(&iface->config_ip, true);
689 interface_ip_dump_dns_server_list(&iface->proto_ip, true);
690 blobmsg_close_array(&b, a);
691 a = blobmsg_open_array(&b, "dns-search");
692 interface_ip_dump_dns_search_list(&iface->config_ip, true);
693 interface_ip_dump_dns_search_list(&iface->proto_ip, true);
694 blobmsg_close_array(&b, a);
696 inactive = blobmsg_open_table(&b, "inactive");
697 a = blobmsg_open_array(&b, "ipv4-address");
698 interface_ip_dump_address_list(&iface->config_ip, false, false);
699 interface_ip_dump_address_list(&iface->proto_ip, false, false);
700 blobmsg_close_array(&b, a);
701 a = blobmsg_open_array(&b, "ipv6-address");
702 interface_ip_dump_address_list(&iface->config_ip, true, false);
703 interface_ip_dump_address_list(&iface->proto_ip, true, false);
704 blobmsg_close_array(&b, a);
705 a = blobmsg_open_array(&b, "route");
706 interface_ip_dump_route_list(&iface->config_ip, false);
707 interface_ip_dump_route_list(&iface->proto_ip, false);
708 blobmsg_close_array(&b, a);
709 a = blobmsg_open_array(&b, "dns-server");
710 interface_ip_dump_dns_server_list(&iface->config_ip, false);
711 interface_ip_dump_dns_server_list(&iface->proto_ip, false);
712 blobmsg_close_array(&b, a);
713 a = blobmsg_open_array(&b, "dns-search");
714 interface_ip_dump_dns_search_list(&iface->config_ip, false);
715 interface_ip_dump_dns_search_list(&iface->proto_ip, false);
716 blobmsg_close_array(&b, a);
717 blobmsg_close_table(&b, inactive);
720 a = blobmsg_open_table(&b, "data");
721 avl_for_each_element(&iface->data, data, node)
722 blob_put(&b, blob_id(data->data), blob_data(data->data), blob_len(data->data));
724 blobmsg_close_table(&b, a);
726 if (!list_is_empty(&iface->errors))
727 netifd_add_interface_errors(&b, iface);
731 netifd_handle_status(struct ubus_context *ctx, struct ubus_object *obj,
732 struct ubus_request_data *req, const char *method,
733 struct blob_attr *msg)
735 struct interface *iface = container_of(obj, struct interface, ubus);
737 blob_buf_init(&b, 0);
738 netifd_dump_status(iface);
739 ubus_send_reply(ctx, req, b.head);
746 netifd_handle_dump(struct ubus_context *ctx, struct ubus_object *obj,
747 struct ubus_request_data *req, const char *method,
748 struct blob_attr *msg)
750 blob_buf_init(&b, 0);
751 void *a = blobmsg_open_array(&b, "interface");
753 struct interface *iface;
754 vlist_for_each_element(&interfaces, iface, node) {
755 void *i = blobmsg_open_table(&b, NULL);
756 blobmsg_add_string(&b, "interface", iface->name);
757 netifd_dump_status(iface);
758 blobmsg_close_table(&b, i);
761 blobmsg_close_array(&b, a);
762 ubus_send_reply(ctx, req, b.head);
768 netifd_iface_handle_device(struct ubus_context *ctx, struct ubus_object *obj,
769 struct ubus_request_data *req, const char *method,
770 struct blob_attr *msg)
772 struct blob_attr *tb[__DEV_MAX];
773 struct interface *iface;
774 bool add = !strncmp(method, "add", 3);
776 iface = container_of(obj, struct interface, ubus);
778 blobmsg_parse(dev_policy, __DEV_MAX, tb, blob_data(msg), blob_len(msg));
781 return UBUS_STATUS_INVALID_ARGUMENT;
783 return interface_handle_link(iface, blobmsg_data(tb[DEV_NAME]), add);
788 netifd_iface_notify_proto(struct ubus_context *ctx, struct ubus_object *obj,
789 struct ubus_request_data *req, const char *method,
790 struct blob_attr *msg)
792 struct interface *iface;
794 iface = container_of(obj, struct interface, ubus);
796 if (!iface->proto || !iface->proto->notify)
797 return UBUS_STATUS_NOT_SUPPORTED;
799 return iface->proto->notify(iface->proto, msg);
803 netifd_iface_do_remove(struct uloop_timeout *timeout)
805 struct interface *iface;
807 iface = container_of(timeout, struct interface, remove_timer);
808 vlist_delete(&interfaces, &iface->node);
812 netifd_iface_remove(struct ubus_context *ctx, struct ubus_object *obj,
813 struct ubus_request_data *req, const char *method,
814 struct blob_attr *msg)
816 struct interface *iface;
818 iface = container_of(obj, struct interface, ubus);
819 if (iface->remove_timer.cb)
820 return UBUS_STATUS_INVALID_ARGUMENT;
822 iface->remove_timer.cb = netifd_iface_do_remove;
823 uloop_timeout_set(&iface->remove_timer, 100);
828 netifd_handle_iface_prepare(struct ubus_context *ctx, struct ubus_object *obj,
829 struct ubus_request_data *req, const char *method,
830 struct blob_attr *msg)
832 struct interface *iface;
834 const struct device_hotplug_ops *ops;
836 iface = container_of(obj, struct interface, ubus);
837 dev = iface->main_dev.dev;
841 ops = dev->hotplug_ops;
845 return ops->prepare(dev);
849 netifd_handle_set_data(struct ubus_context *ctx, struct ubus_object *obj,
850 struct ubus_request_data *req, const char *method,
851 struct blob_attr *msg)
853 struct interface *iface;
854 struct blob_attr *cur;
857 iface = container_of(obj, struct interface, ubus);
859 blob_for_each_attr(cur, msg, rem) {
860 ret = interface_add_data(iface, cur);
868 static struct ubus_method iface_object_methods[] = {
869 { .name = "up", .handler = netifd_handle_up },
870 { .name = "down", .handler = netifd_handle_down },
871 { .name = "status", .handler = netifd_handle_status },
872 { .name = "prepare", .handler = netifd_handle_iface_prepare },
873 { .name = "dump", .handler = netifd_handle_dump },
874 UBUS_METHOD("add_device", netifd_iface_handle_device, dev_policy ),
875 UBUS_METHOD("remove_device", netifd_iface_handle_device, dev_policy ),
876 { .name = "notify_proto", .handler = netifd_iface_notify_proto },
877 { .name = "remove", .handler = netifd_iface_remove },
878 { .name = "set_data", .handler = netifd_handle_set_data },
881 static struct ubus_object_type iface_object_type =
882 UBUS_OBJECT_TYPE("netifd_iface", iface_object_methods);
885 static struct ubus_object iface_object = {
886 .name = "network.interface",
887 .type = &iface_object_type,
888 .n_methods = ARRAY_SIZE(iface_object_methods),
891 static void netifd_add_object(struct ubus_object *obj)
893 int ret = ubus_add_object(ubus_ctx, obj);
896 fprintf(stderr, "Failed to publish object '%s': %s\n", obj->name, ubus_strerror(ret));
899 static const struct blobmsg_policy iface_policy = {
901 .type = BLOBMSG_TYPE_STRING,
905 netifd_handle_iface(struct ubus_context *ctx, struct ubus_object *obj,
906 struct ubus_request_data *req, const char *method,
907 struct blob_attr *msg)
909 struct interface *iface;
910 struct blob_attr *tb;
913 blobmsg_parse(&iface_policy, 1, &tb, blob_data(msg), blob_len(msg));
915 return UBUS_STATUS_INVALID_ARGUMENT;
917 iface = vlist_find(&interfaces, blobmsg_data(tb), iface, node);
919 return UBUS_STATUS_NOT_FOUND;
921 for (i = 0; i < ARRAY_SIZE(iface_object_methods); i++) {
924 if (strcmp(method, iface_object_methods[i].name) != 0)
927 cb = iface_object_methods[i].handler;
928 return cb(ctx, &iface->ubus, req, method, msg);
931 return UBUS_STATUS_INVALID_ARGUMENT;
934 static void netifd_add_iface_object(void)
936 struct ubus_method *methods;
939 methods = calloc(1, sizeof(iface_object_methods));
940 memcpy(methods, iface_object_methods, sizeof(iface_object_methods));
941 iface_object.methods = methods;
943 for (i = 0; i < ARRAY_SIZE(iface_object_methods); i++) {
944 if (methods[i].handler == netifd_handle_dump)
947 methods[i].handler = netifd_handle_iface;
948 methods[i].policy = &iface_policy;
949 methods[i].n_policy = 1;
951 netifd_add_object(&iface_object);
954 static struct wireless_device *
955 get_wdev(struct blob_attr *msg, int *ret)
957 struct blobmsg_policy wdev_policy = {
959 .type = BLOBMSG_TYPE_STRING,
961 struct blob_attr *dev_attr;
962 struct wireless_device *wdev = NULL;
965 blobmsg_parse(&wdev_policy, 1, &dev_attr, blob_data(msg), blob_len(msg));
967 *ret = UBUS_STATUS_INVALID_ARGUMENT;
971 wdev = vlist_find(&wireless_devices, blobmsg_data(dev_attr), wdev, node);
973 *ret = UBUS_STATUS_NOT_FOUND;
982 netifd_handle_wdev_up(struct ubus_context *ctx, struct ubus_object *obj,
983 struct ubus_request_data *req, const char *method,
984 struct blob_attr *msg)
986 struct wireless_device *wdev;
989 wdev = get_wdev(msg, &ret);
990 if (ret == UBUS_STATUS_NOT_FOUND)
994 wireless_device_set_up(wdev);
996 vlist_for_each_element(&wireless_devices, wdev, node)
997 wireless_device_set_up(wdev);
1004 netifd_handle_wdev_down(struct ubus_context *ctx, struct ubus_object *obj,
1005 struct ubus_request_data *req, const char *method,
1006 struct blob_attr *msg)
1008 struct wireless_device *wdev;
1011 wdev = get_wdev(msg, &ret);
1012 if (ret == UBUS_STATUS_NOT_FOUND)
1016 wireless_device_set_down(wdev);
1018 vlist_for_each_element(&wireless_devices, wdev, node)
1019 wireless_device_set_down(wdev);
1026 netifd_handle_wdev_status(struct ubus_context *ctx, struct ubus_object *obj,
1027 struct ubus_request_data *req, const char *method,
1028 struct blob_attr *msg)
1030 struct wireless_device *wdev;
1033 wdev = get_wdev(msg, &ret);
1034 if (ret == UBUS_STATUS_NOT_FOUND)
1037 blob_buf_init(&b, 0);
1039 wireless_device_status(wdev, &b);
1041 vlist_for_each_element(&wireless_devices, wdev, node)
1042 wireless_device_status(wdev, &b);
1044 ubus_send_reply(ctx, req, b.head);
1049 netifd_handle_wdev_notify(struct ubus_context *ctx, struct ubus_object *obj,
1050 struct ubus_request_data *req, const char *method,
1051 struct blob_attr *msg)
1053 struct wireless_device *wdev;
1056 wdev = get_wdev(msg, &ret);
1060 return wireless_device_notify(wdev, msg, req);
1063 static struct ubus_method wireless_object_methods[] = {
1064 { .name = "up", .handler = netifd_handle_wdev_up },
1065 { .name = "down", .handler = netifd_handle_wdev_down },
1066 { .name = "status", .handler = netifd_handle_wdev_status },
1067 { .name = "notify", .handler = netifd_handle_wdev_notify },
1070 static struct ubus_object_type wireless_object_type =
1071 UBUS_OBJECT_TYPE("netifd_iface", wireless_object_methods);
1074 static struct ubus_object wireless_object = {
1075 .name = "network.wireless",
1076 .type = &wireless_object_type,
1077 .methods = wireless_object_methods,
1078 .n_methods = ARRAY_SIZE(wireless_object_methods),
1082 netifd_ubus_init(const char *path)
1087 ubus_ctx = ubus_connect(path);
1091 DPRINTF("connected as %08x\n", ubus_ctx->local_id);
1092 ubus_ctx->connection_lost = netifd_ubus_connection_lost;
1093 netifd_ubus_add_fd();
1095 netifd_add_object(&main_object);
1096 netifd_add_object(&dev_object);
1097 netifd_add_object(&wireless_object);
1098 netifd_add_iface_object();
1104 netifd_ubus_done(void)
1106 ubus_free(ubus_ctx);
1110 netifd_ubus_interface_event(struct interface *iface, bool up)
1112 blob_buf_init(&b, 0);
1113 blobmsg_add_string(&b, "action", up ? "ifup" : "ifdown");
1114 blobmsg_add_string(&b, "interface", iface->name);
1115 ubus_send_event(ubus_ctx, "network.interface", b.head);
1119 netifd_ubus_interface_notify(struct interface *iface, bool up)
1121 const char *event = (up) ? "update" : "down";
1122 blob_buf_init(&b, 0);
1123 blobmsg_add_string(&b, "interface", iface->name);
1124 netifd_dump_status(iface);
1125 ubus_notify(ubus_ctx, &iface_object, event, b.head, -1);
1126 ubus_notify(ubus_ctx, &iface->ubus, event, b.head, -1);
1130 netifd_ubus_add_interface(struct interface *iface)
1132 struct ubus_object *obj = &iface->ubus;
1135 if (asprintf(&name, "%s.interface.%s", main_object.name, iface->name) == -1)
1139 obj->type = &iface_object_type;
1140 obj->methods = iface_object_methods;
1141 obj->n_methods = ARRAY_SIZE(iface_object_methods);
1142 if (ubus_add_object(ubus_ctx, &iface->ubus)) {
1143 DPRINTF("failed to publish ubus object for interface '%s'\n", iface->name);
1150 netifd_ubus_remove_interface(struct interface *iface)
1152 if (!iface->ubus.name)
1155 ubus_remove_object(ubus_ctx, &iface->ubus);
1156 free((void *) iface->ubus.name);