IPv6: Export delegation setting via ubus
[project/netifd.git] / ubus.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 #define _GNU_SOURCE
15
16 #include <arpa/inet.h>
17 #include <string.h>
18 #include <stdio.h>
19
20 #include "netifd.h"
21 #include "interface.h"
22 #include "proto.h"
23 #include "ubus.h"
24 #include "system.h"
25
26 static struct ubus_context *ctx = NULL;
27 static struct blob_buf b;
28 static const char *ubus_path;
29
30 /* global object */
31
32 static int
33 netifd_handle_restart(struct ubus_context *ctx, struct ubus_object *obj,
34 struct ubus_request_data *req, const char *method,
35 struct blob_attr *msg)
36 {
37 netifd_restart();
38 return 0;
39 }
40
41 static int
42 netifd_handle_reload(struct ubus_context *ctx, struct ubus_object *obj,
43 struct ubus_request_data *req, const char *method,
44 struct blob_attr *msg)
45 {
46 netifd_reload();
47 return 0;
48 }
49
50 enum {
51 HR_TARGET,
52 HR_V6,
53 HR_INTERFACE,
54 __HR_MAX
55 };
56
57 static const struct blobmsg_policy route_policy[__HR_MAX] = {
58 [HR_TARGET] = { .name = "target", .type = BLOBMSG_TYPE_STRING },
59 [HR_V6] = { .name = "v6", .type = BLOBMSG_TYPE_BOOL },
60 [HR_INTERFACE] = { .name = "interface", .type = BLOBMSG_TYPE_STRING },
61 };
62
63 static int
64 netifd_add_host_route(struct ubus_context *ctx, struct ubus_object *obj,
65 struct ubus_request_data *req, const char *method,
66 struct blob_attr *msg)
67 {
68 struct blob_attr *tb[__HR_MAX];
69 struct interface *iface = NULL;
70 union if_addr a;
71 bool v6 = false;
72
73 blobmsg_parse(route_policy, __HR_MAX, tb, blob_data(msg), blob_len(msg));
74 if (!tb[HR_TARGET])
75 return UBUS_STATUS_INVALID_ARGUMENT;
76
77 if (tb[HR_V6])
78 v6 = blobmsg_get_bool(tb[HR_V6]);
79
80 if (tb[HR_INTERFACE])
81 iface = vlist_find(&interfaces, blobmsg_data(tb[HR_INTERFACE]), iface, node);
82
83 memset(&a, 0, sizeof(a));
84 if (!inet_pton(v6 ? AF_INET6 : AF_INET, blobmsg_data(tb[HR_TARGET]), &a))
85 return UBUS_STATUS_INVALID_ARGUMENT;
86
87
88 iface = interface_ip_add_target_route(&a, v6, iface);
89 if (!iface)
90 return UBUS_STATUS_NOT_FOUND;
91
92 blob_buf_init(&b, 0);
93 blobmsg_add_string(&b, "interface", iface->name);
94 ubus_send_reply(ctx, req, b.head);
95
96 return 0;
97 }
98
99 static int
100 netifd_get_proto_handlers(struct ubus_context *ctx, struct ubus_object *obj,
101 struct ubus_request_data *req, const char *method,
102 struct blob_attr *msg)
103 {
104 blob_buf_init(&b, 0);
105 proto_dump_handlers(&b);
106 ubus_send_reply(ctx, req, b.head);
107
108 return 0;
109 }
110
111
112 enum {
113 DI_NAME,
114 __DI_MAX
115 };
116
117 static const struct blobmsg_policy dynamic_policy[__DI_MAX] = {
118 [DI_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
119 };
120
121 static int
122 netifd_add_dynamic(struct ubus_context *ctx, struct ubus_object *obj,
123 struct ubus_request_data *req, const char *method,
124 struct blob_attr *msg)
125 {
126 struct blob_attr *tb[__DI_MAX];
127 struct interface *iface;
128 struct blob_attr *config;
129 struct device *dev;
130
131 blobmsg_parse(dynamic_policy, __DI_MAX, tb, blob_data(msg), blob_len(msg));
132
133 if (!tb[DI_NAME])
134 return UBUS_STATUS_INVALID_ARGUMENT;
135
136 const char *name = blobmsg_get_string(tb[DI_NAME]);
137
138 iface = interface_alloc(name, msg);
139 if (!iface)
140 return UBUS_STATUS_UNKNOWN_ERROR;
141
142 interface_set_dynamic(iface);
143 iface->device_config = true;
144
145 config = blob_memdup(msg);
146 if (!config)
147 goto error;
148
149 interface_add(iface, config);
150
151 // need to look up the interface name again, in case of config update,
152 iface = vlist_find(&interfaces, name, iface, node);
153 if (!iface)
154 return UBUS_STATUS_UNKNOWN_ERROR;
155
156 dev = iface->main_dev.dev;
157 if (!dev || !dev->default_config)
158 return UBUS_STATUS_UNKNOWN_ERROR;
159
160 device_set_config(dev, dev->type, msg);
161 return UBUS_STATUS_OK;
162
163 error:
164 free(iface);
165 return UBUS_STATUS_UNKNOWN_ERROR;
166 }
167
168 static struct ubus_method main_object_methods[] = {
169 { .name = "restart", .handler = netifd_handle_restart },
170 { .name = "reload", .handler = netifd_handle_reload },
171 UBUS_METHOD("add_host_route", netifd_add_host_route, route_policy),
172 { .name = "get_proto_handlers", .handler = netifd_get_proto_handlers },
173 UBUS_METHOD("add_dynamic", netifd_add_dynamic, dynamic_policy),
174 };
175
176 static struct ubus_object_type main_object_type =
177 UBUS_OBJECT_TYPE("netifd", main_object_methods);
178
179 static struct ubus_object main_object = {
180 .name = "network",
181 .type = &main_object_type,
182 .methods = main_object_methods,
183 .n_methods = ARRAY_SIZE(main_object_methods),
184 };
185
186 enum {
187 DEV_NAME,
188 __DEV_MAX,
189 };
190
191 static const struct blobmsg_policy dev_policy[__DEV_MAX] = {
192 [DEV_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
193 };
194
195 static int
196 netifd_dev_status(struct ubus_context *ctx, struct ubus_object *obj,
197 struct ubus_request_data *req, const char *method,
198 struct blob_attr *msg)
199 {
200 struct device *dev = NULL;
201 struct blob_attr *tb[__DEV_MAX];
202
203 blobmsg_parse(dev_policy, __DEV_MAX, tb, blob_data(msg), blob_len(msg));
204
205 if (tb[DEV_NAME]) {
206 dev = device_get(blobmsg_data(tb[DEV_NAME]), false);
207 if (!dev)
208 return UBUS_STATUS_INVALID_ARGUMENT;
209 }
210
211 blob_buf_init(&b, 0);
212 device_dump_status(&b, dev);
213 ubus_send_reply(ctx, req, b.head);
214
215 return 0;
216 }
217
218 enum {
219 ALIAS_ATTR_ALIAS,
220 ALIAS_ATTR_DEV,
221 __ALIAS_ATTR_MAX,
222 };
223
224 static const struct blobmsg_policy alias_attrs[__ALIAS_ATTR_MAX] = {
225 [ALIAS_ATTR_ALIAS] = { "alias", BLOBMSG_TYPE_ARRAY },
226 [ALIAS_ATTR_DEV] = { "device", BLOBMSG_TYPE_STRING },
227 };
228
229 static int
230 netifd_handle_alias(struct ubus_context *ctx, struct ubus_object *obj,
231 struct ubus_request_data *req, const char *method,
232 struct blob_attr *msg)
233 {
234 struct device *dev = NULL;
235 struct blob_attr *tb[__ALIAS_ATTR_MAX];
236 struct blob_attr *cur;
237 int rem;
238
239 blobmsg_parse(alias_attrs, __ALIAS_ATTR_MAX, tb, blob_data(msg), blob_len(msg));
240
241 if (!tb[ALIAS_ATTR_ALIAS])
242 return UBUS_STATUS_INVALID_ARGUMENT;
243
244 if ((cur = tb[ALIAS_ATTR_DEV]) != NULL) {
245 dev = device_get(blobmsg_data(cur), true);
246 if (!dev)
247 return UBUS_STATUS_NOT_FOUND;
248 }
249
250 blobmsg_for_each_attr(cur, tb[ALIAS_ATTR_ALIAS], rem) {
251 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
252 goto error;
253
254 if (!blobmsg_check_attr(cur, NULL))
255 goto error;
256
257 alias_notify_device(blobmsg_data(cur), dev);
258 }
259 return 0;
260
261 error:
262 device_free_unused(dev);
263 return UBUS_STATUS_INVALID_ARGUMENT;
264 }
265
266 enum {
267 DEV_STATE_NAME,
268 DEV_STATE_DEFER,
269 __DEV_STATE_MAX,
270 };
271
272 static const struct blobmsg_policy dev_state_policy[__DEV_STATE_MAX] = {
273 [DEV_STATE_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
274 [DEV_STATE_DEFER] = { .name = "defer", .type = BLOBMSG_TYPE_BOOL },
275 };
276
277 static int
278 netifd_handle_set_state(struct ubus_context *ctx, struct ubus_object *obj,
279 struct ubus_request_data *req, const char *method,
280 struct blob_attr *msg)
281 {
282 struct device *dev = NULL;
283 struct blob_attr *tb[__DEV_STATE_MAX];
284 struct blob_attr *cur;
285
286 blobmsg_parse(dev_state_policy, __DEV_STATE_MAX, tb, blob_data(msg), blob_len(msg));
287
288 cur = tb[DEV_STATE_NAME];
289 if (!cur)
290 return UBUS_STATUS_INVALID_ARGUMENT;
291
292 dev = device_get(blobmsg_data(cur), false);
293 if (!dev)
294 return UBUS_STATUS_NOT_FOUND;
295
296 cur = tb[DEV_STATE_DEFER];
297 if (cur)
298 device_set_deferred(dev, !!blobmsg_get_u8(cur));
299
300 return 0;
301 }
302
303 static struct ubus_method dev_object_methods[] = {
304 UBUS_METHOD("status", netifd_dev_status, dev_policy),
305 UBUS_METHOD("set_alias", netifd_handle_alias, alias_attrs),
306 UBUS_METHOD("set_state", netifd_handle_set_state, dev_state_policy),
307 };
308
309 static struct ubus_object_type dev_object_type =
310 UBUS_OBJECT_TYPE("device", dev_object_methods);
311
312 static struct ubus_object dev_object = {
313 .name = "network.device",
314 .type = &dev_object_type,
315 .methods = dev_object_methods,
316 .n_methods = ARRAY_SIZE(dev_object_methods),
317 };
318
319 static void
320 netifd_ubus_add_fd(void)
321 {
322 ubus_add_uloop(ctx);
323 system_fd_set_cloexec(ctx->sock.fd);
324 }
325
326 static void
327 netifd_ubus_reconnect_timer(struct uloop_timeout *timeout)
328 {
329 static struct uloop_timeout retry = {
330 .cb = netifd_ubus_reconnect_timer,
331 };
332 int t = 2;
333
334 if (ubus_reconnect(ctx, ubus_path) != 0) {
335 DPRINTF("failed to reconnect, trying again in %d seconds\n", t);
336 uloop_timeout_set(&retry, t * 1000);
337 return;
338 }
339
340 DPRINTF("reconnected to ubus, new id: %08x\n", ctx->local_id);
341 netifd_ubus_add_fd();
342 }
343
344 static void
345 netifd_ubus_connection_lost(struct ubus_context *ctx)
346 {
347 netifd_ubus_reconnect_timer(NULL);
348 }
349
350 /* per-interface object */
351
352 static int
353 netifd_handle_up(struct ubus_context *ctx, struct ubus_object *obj,
354 struct ubus_request_data *req, const char *method,
355 struct blob_attr *msg)
356 {
357 struct interface *iface;
358
359 iface = container_of(obj, struct interface, ubus);
360 interface_set_up(iface);
361
362 return 0;
363 }
364
365 static int
366 netifd_handle_down(struct ubus_context *ctx, struct ubus_object *obj,
367 struct ubus_request_data *req, const char *method,
368 struct blob_attr *msg)
369 {
370 struct interface *iface;
371
372 iface = container_of(obj, struct interface, ubus);
373 interface_set_down(iface);
374
375 return 0;
376 }
377
378 static void
379 netifd_add_interface_errors(struct blob_buf *b, struct interface *iface)
380 {
381 struct interface_error *error;
382 void *e, *e2, *e3;
383 int i;
384
385 e = blobmsg_open_array(b, "errors");
386 list_for_each_entry(error, &iface->errors, list) {
387 e2 = blobmsg_open_table(b, NULL);
388
389 blobmsg_add_string(b, "subsystem", error->subsystem);
390 blobmsg_add_string(b, "code", error->code);
391 if (error->data[0]) {
392 e3 = blobmsg_open_array(b, "data");
393 for (i = 0; error->data[i]; i++)
394 blobmsg_add_string(b, NULL, error->data[i]);
395 blobmsg_close_array(b, e3);
396 }
397
398 blobmsg_close_table(b, e2);
399 }
400 blobmsg_close_array(b, e);
401 }
402
403 static void
404 interface_ip_dump_address_list(struct interface_ip_settings *ip, bool v6,
405 bool enabled)
406 {
407 struct device_addr *addr;
408 char *buf;
409 void *a;
410 int buflen = 128;
411 int af;
412
413 time_t now = system_get_rtime();
414 vlist_for_each_element(&ip->addr, addr, node) {
415 if (addr->enabled != enabled)
416 continue;
417
418 if ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET4)
419 af = AF_INET;
420 else
421 af = AF_INET6;
422
423 if (af != (v6 ? AF_INET6 : AF_INET))
424 continue;
425
426 a = blobmsg_open_table(&b, NULL);
427
428 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
429 inet_ntop(af, &addr->addr, buf, buflen);
430 blobmsg_add_string_buffer(&b);
431
432 blobmsg_add_u32(&b, "mask", addr->mask);
433
434 if (addr->preferred_until) {
435 int preferred = addr->preferred_until - now;
436 if (preferred < 0)
437 preferred = 0;
438 blobmsg_add_u32(&b, "preferred", preferred);
439 }
440
441 if (addr->valid_until)
442 blobmsg_add_u32(&b, "valid", addr->valid_until - now);
443
444 blobmsg_close_table(&b, a);
445 }
446 }
447
448 static void
449 interface_ip_dump_route_list(struct interface_ip_settings *ip, bool enabled)
450 {
451 struct device_route *route;
452 int buflen = 128;
453 char *buf;
454 void *r;
455 int af;
456
457 time_t now = system_get_rtime();
458 vlist_for_each_element(&ip->route, route, node) {
459 if (route->enabled != enabled)
460 continue;
461
462 if ((route->flags & DEVADDR_FAMILY) == DEVADDR_INET4)
463 af = AF_INET;
464 else
465 af = AF_INET6;
466
467 r = blobmsg_open_table(&b, NULL);
468
469 buf = blobmsg_alloc_string_buffer(&b, "target", buflen);
470 inet_ntop(af, &route->addr, buf, buflen);
471 blobmsg_add_string_buffer(&b);
472
473 blobmsg_add_u32(&b, "mask", route->mask);
474
475 buf = blobmsg_alloc_string_buffer(&b, "nexthop", buflen);
476 inet_ntop(af, &route->nexthop, buf, buflen);
477 blobmsg_add_string_buffer(&b);
478
479 if (route->flags & DEVROUTE_MTU)
480 blobmsg_add_u32(&b, "mtu", route->mtu);
481
482 if (route->flags & DEVROUTE_METRIC)
483 blobmsg_add_u32(&b, "metric", route->metric);
484
485 if (route->flags & DEVROUTE_TABLE)
486 blobmsg_add_u32(&b, "table", route->table);
487
488 if (route->valid_until)
489 blobmsg_add_u32(&b, "valid", route->valid_until - now);
490
491 buf = blobmsg_alloc_string_buffer(&b, "source", buflen);
492 inet_ntop(af, &route->source, buf, buflen);
493 snprintf(buf + strlen(buf), 4, "/%u", route->sourcemask);
494 blobmsg_add_string_buffer(&b);
495
496 blobmsg_close_table(&b, r);
497 }
498 }
499
500
501 static void
502 interface_ip_dump_prefix_list(struct interface_ip_settings *ip)
503 {
504 struct device_prefix *prefix;
505 char *buf;
506 void *a, *c;
507 const int buflen = INET6_ADDRSTRLEN;
508
509 time_t now = system_get_rtime();
510 vlist_for_each_element(&ip->prefix, prefix, node) {
511 a = blobmsg_open_table(&b, NULL);
512
513 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
514 inet_ntop(AF_INET6, &prefix->addr, buf, buflen);
515 blobmsg_add_string_buffer(&b);
516
517 blobmsg_add_u32(&b, "mask", prefix->length);
518
519 if (prefix->preferred_until) {
520 int preferred = prefix->preferred_until - now;
521 if (preferred < 0)
522 preferred = 0;
523 blobmsg_add_u32(&b, "preferred", preferred);
524 }
525
526 if (prefix->valid_until)
527 blobmsg_add_u32(&b, "valid", prefix->valid_until - now);
528
529 blobmsg_add_string(&b, "class", prefix->pclass);
530
531 c = blobmsg_open_table(&b, "assigned");
532 struct device_prefix_assignment *assign;
533 list_for_each_entry(assign, &prefix->assignments, head) {
534 if (!assign->name[0])
535 continue;
536
537 struct in6_addr addr = prefix->addr;
538 addr.s6_addr32[1] |= htonl(assign->assigned);
539
540 void *d = blobmsg_open_table(&b, assign->name);
541
542 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
543 inet_ntop(AF_INET6, &addr, buf, buflen);
544 blobmsg_add_string_buffer(&b);
545
546 blobmsg_add_u32(&b, "mask", assign->length);
547
548 blobmsg_close_table(&b, d);
549 }
550 blobmsg_close_table(&b, c);
551
552 blobmsg_close_table(&b, a);
553 }
554 }
555
556
557 static void
558 interface_ip_dump_prefix_assignment_list(struct interface *iface)
559 {
560 void *a;
561 char *buf;
562 const int buflen = INET6_ADDRSTRLEN;
563 time_t now = system_get_rtime();
564
565 struct device_prefix *prefix;
566 list_for_each_entry(prefix, &prefixes, head) {
567 struct device_prefix_assignment *assign;
568 list_for_each_entry(assign, &prefix->assignments, head) {
569 if (strcmp(assign->name, iface->name))
570 continue;
571
572 struct in6_addr addr = prefix->addr;
573 addr.s6_addr32[1] |= htonl(assign->assigned);
574
575 a = blobmsg_open_table(&b, NULL);
576
577 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
578 inet_ntop(AF_INET6, &addr, buf, buflen);
579 blobmsg_add_string_buffer(&b);
580
581 blobmsg_add_u32(&b, "mask", assign->length);
582
583 if (prefix->preferred_until) {
584 int preferred = prefix->preferred_until - now;
585 if (preferred < 0)
586 preferred = 0;
587 blobmsg_add_u32(&b, "preferred", preferred);
588 }
589
590 if (prefix->valid_until)
591 blobmsg_add_u32(&b, "valid", prefix->valid_until - now);
592
593 blobmsg_close_table(&b, a);
594 }
595 }
596 }
597
598
599 static void
600 interface_ip_dump_dns_server_list(struct interface_ip_settings *ip,
601 bool enabled)
602 {
603 struct dns_server *dns;
604 int buflen = 128;
605 char *buf;
606
607 vlist_simple_for_each_element(&ip->dns_servers, dns, node) {
608 if (ip->no_dns == enabled)
609 continue;
610
611 buf = blobmsg_alloc_string_buffer(&b, NULL, buflen);
612 inet_ntop(dns->af, &dns->addr, buf, buflen);
613 blobmsg_add_string_buffer(&b);
614 }
615 }
616
617 static void
618 interface_ip_dump_dns_search_list(struct interface_ip_settings *ip,
619 bool enabled)
620 {
621 struct dns_search_domain *dns;
622
623 vlist_simple_for_each_element(&ip->dns_search, dns, node) {
624 if (ip->no_dns == enabled)
625 continue;
626
627 blobmsg_add_string(&b, NULL, dns->name);
628 }
629 }
630
631 static void
632 netifd_dump_status(struct interface *iface)
633 {
634 struct interface_data *data;
635 struct device *dev;
636 void *a, *inactive;
637
638 blobmsg_add_u8(&b, "up", iface->state == IFS_UP);
639 blobmsg_add_u8(&b, "pending", iface->state == IFS_SETUP);
640 blobmsg_add_u8(&b, "available", iface->available);
641 blobmsg_add_u8(&b, "autostart", iface->autostart);
642
643 if (iface->state == IFS_UP) {
644 time_t cur = system_get_rtime();
645 blobmsg_add_u32(&b, "uptime", cur - iface->start_time);
646 blobmsg_add_string(&b, "l3_device", iface->l3_dev.dev->ifname);
647 }
648
649 if (iface->proto_handler)
650 blobmsg_add_string(&b, "proto", iface->proto_handler->name);
651
652 dev = iface->main_dev.dev;
653 if (dev && !dev->hidden &&
654 !(iface->proto_handler->flags & PROTO_FLAG_NODEV))
655 blobmsg_add_string(&b, "device", dev->ifname);
656
657 if (iface->state == IFS_UP) {
658 blobmsg_add_u32(&b, "metric", iface->metric);
659 blobmsg_add_u8(&b, "delegation", !iface->proto_ip.no_delegation);
660 a = blobmsg_open_array(&b, "ipv4-address");
661 interface_ip_dump_address_list(&iface->config_ip, false, true);
662 interface_ip_dump_address_list(&iface->proto_ip, false, true);
663 blobmsg_close_array(&b, a);
664 a = blobmsg_open_array(&b, "ipv6-address");
665 interface_ip_dump_address_list(&iface->config_ip, true, true);
666 interface_ip_dump_address_list(&iface->proto_ip, true, true);
667 blobmsg_close_array(&b, a);
668 a = blobmsg_open_array(&b, "ipv6-prefix");
669 interface_ip_dump_prefix_list(&iface->config_ip);
670 interface_ip_dump_prefix_list(&iface->proto_ip);
671 blobmsg_close_array(&b, a);
672 a = blobmsg_open_array(&b, "ipv6-prefix-assignment");
673 interface_ip_dump_prefix_assignment_list(iface);
674 blobmsg_close_array(&b, a);
675 a = blobmsg_open_array(&b, "route");
676 interface_ip_dump_route_list(&iface->config_ip, true);
677 interface_ip_dump_route_list(&iface->proto_ip, true);
678 blobmsg_close_array(&b, a);
679 a = blobmsg_open_array(&b, "dns-server");
680 interface_ip_dump_dns_server_list(&iface->config_ip, true);
681 interface_ip_dump_dns_server_list(&iface->proto_ip, true);
682 blobmsg_close_array(&b, a);
683 a = blobmsg_open_array(&b, "dns-search");
684 interface_ip_dump_dns_search_list(&iface->config_ip, true);
685 interface_ip_dump_dns_search_list(&iface->proto_ip, true);
686 blobmsg_close_array(&b, a);
687
688 inactive = blobmsg_open_table(&b, "inactive");
689 a = blobmsg_open_array(&b, "ipv4-address");
690 interface_ip_dump_address_list(&iface->config_ip, false, false);
691 interface_ip_dump_address_list(&iface->proto_ip, false, false);
692 blobmsg_close_array(&b, a);
693 a = blobmsg_open_array(&b, "ipv6-address");
694 interface_ip_dump_address_list(&iface->config_ip, true, false);
695 interface_ip_dump_address_list(&iface->proto_ip, true, false);
696 blobmsg_close_array(&b, a);
697 a = blobmsg_open_array(&b, "route");
698 interface_ip_dump_route_list(&iface->config_ip, false);
699 interface_ip_dump_route_list(&iface->proto_ip, false);
700 blobmsg_close_array(&b, a);
701 a = blobmsg_open_array(&b, "dns-server");
702 interface_ip_dump_dns_server_list(&iface->config_ip, false);
703 interface_ip_dump_dns_server_list(&iface->proto_ip, false);
704 blobmsg_close_array(&b, a);
705 a = blobmsg_open_array(&b, "dns-search");
706 interface_ip_dump_dns_search_list(&iface->config_ip, false);
707 interface_ip_dump_dns_search_list(&iface->proto_ip, false);
708 blobmsg_close_array(&b, a);
709 blobmsg_close_table(&b, inactive);
710 }
711
712 a = blobmsg_open_table(&b, "data");
713 avl_for_each_element(&iface->data, data, node)
714 blob_put(&b, blob_id(data->data), blob_data(data->data), blob_len(data->data));
715
716 blobmsg_close_table(&b, a);
717
718 if (!list_is_empty(&iface->errors))
719 netifd_add_interface_errors(&b, iface);
720 }
721
722 static int
723 netifd_handle_status(struct ubus_context *ctx, struct ubus_object *obj,
724 struct ubus_request_data *req, const char *method,
725 struct blob_attr *msg)
726 {
727 struct interface *iface = container_of(obj, struct interface, ubus);
728
729 blob_buf_init(&b, 0);
730 netifd_dump_status(iface);
731 ubus_send_reply(ctx, req, b.head);
732
733 return 0;
734 }
735
736
737 static int
738 netifd_handle_dump(struct ubus_context *ctx, struct ubus_object *obj,
739 struct ubus_request_data *req, const char *method,
740 struct blob_attr *msg)
741 {
742 blob_buf_init(&b, 0);
743 void *a = blobmsg_open_array(&b, "interface");
744
745 struct interface *iface;
746 vlist_for_each_element(&interfaces, iface, node) {
747 void *i = blobmsg_open_table(&b, NULL);
748 blobmsg_add_string(&b, "interface", iface->name);
749 netifd_dump_status(iface);
750 blobmsg_close_table(&b, i);
751 }
752
753 blobmsg_close_array(&b, a);
754 ubus_send_reply(ctx, req, b.head);
755
756 return 0;
757 }
758
759 static int
760 netifd_iface_handle_device(struct ubus_context *ctx, struct ubus_object *obj,
761 struct ubus_request_data *req, const char *method,
762 struct blob_attr *msg)
763 {
764 struct blob_attr *tb[__DEV_MAX];
765 struct interface *iface;
766 bool add = !strncmp(method, "add", 3);
767
768 iface = container_of(obj, struct interface, ubus);
769
770 blobmsg_parse(dev_policy, __DEV_MAX, tb, blob_data(msg), blob_len(msg));
771
772 if (!tb[DEV_NAME])
773 return UBUS_STATUS_INVALID_ARGUMENT;
774
775 return interface_handle_link(iface, blobmsg_data(tb[DEV_NAME]), add);
776 }
777
778
779 static int
780 netifd_iface_notify_proto(struct ubus_context *ctx, struct ubus_object *obj,
781 struct ubus_request_data *req, const char *method,
782 struct blob_attr *msg)
783 {
784 struct interface *iface;
785
786 iface = container_of(obj, struct interface, ubus);
787
788 if (!iface->proto || !iface->proto->notify)
789 return UBUS_STATUS_NOT_SUPPORTED;
790
791 return iface->proto->notify(iface->proto, msg);
792 }
793
794 static void
795 netifd_iface_do_remove(struct uloop_timeout *timeout)
796 {
797 struct interface *iface;
798
799 iface = container_of(timeout, struct interface, remove_timer);
800 vlist_delete(&interfaces, &iface->node);
801 }
802
803 static int
804 netifd_iface_remove(struct ubus_context *ctx, struct ubus_object *obj,
805 struct ubus_request_data *req, const char *method,
806 struct blob_attr *msg)
807 {
808 struct interface *iface;
809
810 iface = container_of(obj, struct interface, ubus);
811 if (iface->remove_timer.cb)
812 return UBUS_STATUS_INVALID_ARGUMENT;
813
814 iface->remove_timer.cb = netifd_iface_do_remove;
815 uloop_timeout_set(&iface->remove_timer, 100);
816 return 0;
817 }
818
819 static int
820 netifd_handle_iface_prepare(struct ubus_context *ctx, struct ubus_object *obj,
821 struct ubus_request_data *req, const char *method,
822 struct blob_attr *msg)
823 {
824 struct interface *iface;
825 struct device *dev;
826 const struct device_hotplug_ops *ops;
827
828 iface = container_of(obj, struct interface, ubus);
829 dev = iface->main_dev.dev;
830 if (!dev)
831 return 0;
832
833 ops = dev->hotplug_ops;
834 if (!ops)
835 return 0;
836
837 return ops->prepare(dev);
838 }
839
840 static int
841 netifd_handle_set_data(struct ubus_context *ctx, struct ubus_object *obj,
842 struct ubus_request_data *req, const char *method,
843 struct blob_attr *msg)
844 {
845 struct interface *iface;
846 struct blob_attr *cur;
847 int rem, ret;
848
849 iface = container_of(obj, struct interface, ubus);
850
851 blob_for_each_attr(cur, msg, rem) {
852 ret = interface_add_data(iface, cur);
853 if (ret)
854 return ret;
855 }
856
857 return 0;
858 }
859
860 static struct ubus_method iface_object_methods[] = {
861 { .name = "up", .handler = netifd_handle_up },
862 { .name = "down", .handler = netifd_handle_down },
863 { .name = "status", .handler = netifd_handle_status },
864 { .name = "prepare", .handler = netifd_handle_iface_prepare },
865 { .name = "dump", .handler = netifd_handle_dump },
866 UBUS_METHOD("add_device", netifd_iface_handle_device, dev_policy ),
867 UBUS_METHOD("remove_device", netifd_iface_handle_device, dev_policy ),
868 { .name = "notify_proto", .handler = netifd_iface_notify_proto },
869 { .name = "remove", .handler = netifd_iface_remove },
870 { .name = "set_data", .handler = netifd_handle_set_data },
871 };
872
873 static struct ubus_object_type iface_object_type =
874 UBUS_OBJECT_TYPE("netifd_iface", iface_object_methods);
875
876
877 static struct ubus_object iface_object = {
878 .name = "network.interface",
879 .type = &iface_object_type,
880 .n_methods = ARRAY_SIZE(iface_object_methods),
881 };
882
883 static void netifd_add_object(struct ubus_object *obj)
884 {
885 int ret = ubus_add_object(ctx, obj);
886
887 if (ret != 0)
888 fprintf(stderr, "Failed to publish object '%s': %s\n", obj->name, ubus_strerror(ret));
889 }
890
891 static const struct blobmsg_policy iface_policy = {
892 .name = "interface",
893 .type = BLOBMSG_TYPE_STRING,
894 };
895
896 static int
897 netifd_handle_iface(struct ubus_context *ctx, struct ubus_object *obj,
898 struct ubus_request_data *req, const char *method,
899 struct blob_attr *msg)
900 {
901 struct interface *iface;
902 struct blob_attr *tb;
903 int i;
904
905 blobmsg_parse(&iface_policy, 1, &tb, blob_data(msg), blob_len(msg));
906 if (!tb)
907 return UBUS_STATUS_INVALID_ARGUMENT;
908
909 iface = vlist_find(&interfaces, blobmsg_data(tb), iface, node);
910 if (!iface)
911 return UBUS_STATUS_NOT_FOUND;
912
913 for (i = 0; i < ARRAY_SIZE(iface_object_methods); i++) {
914 ubus_handler_t cb;
915
916 if (strcmp(method, iface_object_methods[i].name) != 0)
917 continue;
918
919 cb = iface_object_methods[i].handler;
920 return cb(ctx, &iface->ubus, req, method, msg);
921 }
922
923 return UBUS_STATUS_INVALID_ARGUMENT;
924 }
925
926 static void netifd_add_iface_object(void)
927 {
928 struct ubus_method *methods;
929 int i;
930
931 methods = calloc(1, sizeof(iface_object_methods));
932 memcpy(methods, iface_object_methods, sizeof(iface_object_methods));
933 iface_object.methods = methods;
934
935 for (i = 0; i < ARRAY_SIZE(iface_object_methods); i++) {
936 if (methods[i].handler == netifd_handle_dump)
937 continue;
938
939 methods[i].handler = netifd_handle_iface;
940 methods[i].policy = &iface_policy;
941 methods[i].n_policy = 1;
942 }
943 netifd_add_object(&iface_object);
944 }
945
946 int
947 netifd_ubus_init(const char *path)
948 {
949 uloop_init();
950 ubus_path = path;
951
952 ctx = ubus_connect(path);
953 if (!ctx)
954 return -EIO;
955
956 DPRINTF("connected as %08x\n", ctx->local_id);
957 ctx->connection_lost = netifd_ubus_connection_lost;
958 netifd_ubus_add_fd();
959
960 netifd_add_object(&main_object);
961 netifd_add_object(&dev_object);
962 netifd_add_iface_object();
963
964 return 0;
965 }
966
967 void
968 netifd_ubus_done(void)
969 {
970 ubus_free(ctx);
971 }
972
973 void
974 netifd_ubus_interface_event(struct interface *iface, bool up)
975 {
976 blob_buf_init(&b, 0);
977 blobmsg_add_string(&b, "action", up ? "ifup" : "ifdown");
978 blobmsg_add_string(&b, "interface", iface->name);
979 ubus_send_event(ctx, "network.interface", b.head);
980 }
981
982 void
983 netifd_ubus_interface_notify(struct interface *iface, bool up)
984 {
985 const char *event = (up) ? "update" : "down";
986 blob_buf_init(&b, 0);
987 blobmsg_add_string(&b, "interface", iface->name);
988 netifd_dump_status(iface);
989 ubus_notify(ctx, &iface_object, event, b.head, -1);
990 ubus_notify(ctx, &iface->ubus, event, b.head, -1);
991 }
992
993 void
994 netifd_ubus_add_interface(struct interface *iface)
995 {
996 struct ubus_object *obj = &iface->ubus;
997 char *name = NULL;
998
999 if (asprintf(&name, "%s.interface.%s", main_object.name, iface->name) == -1)
1000 return;
1001
1002 obj->name = name;
1003 obj->type = &iface_object_type;
1004 obj->methods = iface_object_methods;
1005 obj->n_methods = ARRAY_SIZE(iface_object_methods);
1006 if (ubus_add_object(ctx, &iface->ubus)) {
1007 DPRINTF("failed to publish ubus object for interface '%s'\n", iface->name);
1008 free(name);
1009 obj->name = NULL;
1010 }
1011 }
1012
1013 void
1014 netifd_ubus_remove_interface(struct interface *iface)
1015 {
1016 if (!iface->ubus.name)
1017 return;
1018
1019 ubus_remove_object(ctx, &iface->ubus);
1020 free((void *) iface->ubus.name);
1021 }