interface: proto_ip: order by address index first
[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 #include "wireless.h"
26
27 struct ubus_context *ubus_ctx = NULL;
28 static struct blob_buf b;
29 static const char *ubus_path;
30
31 /* global object */
32
33 static int
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)
37 {
38 netifd_restart();
39 return 0;
40 }
41
42 static int
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)
46 {
47 if (netifd_reload())
48 return UBUS_STATUS_NOT_FOUND;
49
50 return UBUS_STATUS_OK;
51 }
52
53 enum {
54 HR_TARGET,
55 HR_V6,
56 HR_INTERFACE,
57 __HR_MAX
58 };
59
60 static const struct blobmsg_policy route_policy[__HR_MAX] = {
61 [HR_TARGET] = { .name = "target", .type = BLOBMSG_TYPE_STRING },
62 [HR_V6] = { .name = "v6", .type = BLOBMSG_TYPE_BOOL },
63 [HR_INTERFACE] = { .name = "interface", .type = BLOBMSG_TYPE_STRING },
64 };
65
66 static int
67 netifd_add_host_route(struct ubus_context *ctx, struct ubus_object *obj,
68 struct ubus_request_data *req, const char *method,
69 struct blob_attr *msg)
70 {
71 struct blob_attr *tb[__HR_MAX];
72 struct interface *iface = NULL;
73 union if_addr a;
74 bool v6 = false;
75
76 blobmsg_parse(route_policy, __HR_MAX, tb, blob_data(msg), blob_len(msg));
77 if (!tb[HR_TARGET])
78 return UBUS_STATUS_INVALID_ARGUMENT;
79
80 if (tb[HR_V6])
81 v6 = blobmsg_get_bool(tb[HR_V6]);
82
83 if (tb[HR_INTERFACE])
84 iface = vlist_find(&interfaces, blobmsg_data(tb[HR_INTERFACE]), iface, node);
85
86 memset(&a, 0, sizeof(a));
87 if (!inet_pton(v6 ? AF_INET6 : AF_INET, blobmsg_data(tb[HR_TARGET]), &a))
88 return UBUS_STATUS_INVALID_ARGUMENT;
89
90
91 iface = interface_ip_add_target_route(&a, v6, iface);
92 if (!iface)
93 return UBUS_STATUS_NOT_FOUND;
94
95 blob_buf_init(&b, 0);
96 blobmsg_add_string(&b, "interface", iface->name);
97 ubus_send_reply(ctx, req, b.head);
98
99 return 0;
100 }
101
102 static int
103 netifd_get_proto_handlers(struct ubus_context *ctx, struct ubus_object *obj,
104 struct ubus_request_data *req, const char *method,
105 struct blob_attr *msg)
106 {
107 blob_buf_init(&b, 0);
108 proto_dump_handlers(&b);
109 ubus_send_reply(ctx, req, b.head);
110
111 return 0;
112 }
113
114
115 enum {
116 DI_NAME,
117 __DI_MAX
118 };
119
120 static const struct blobmsg_policy dynamic_policy[__DI_MAX] = {
121 [DI_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
122 };
123
124 static int
125 netifd_add_dynamic(struct ubus_context *ctx, struct ubus_object *obj,
126 struct ubus_request_data *req, const char *method,
127 struct blob_attr *msg)
128 {
129 struct blob_attr *tb[__DI_MAX];
130 struct interface *iface;
131 struct blob_attr *config;
132
133 blobmsg_parse(dynamic_policy, __DI_MAX, tb, blob_data(msg), blob_len(msg));
134
135 if (!tb[DI_NAME])
136 return UBUS_STATUS_INVALID_ARGUMENT;
137
138 const char *name = blobmsg_get_string(tb[DI_NAME]);
139
140 iface = interface_alloc(name, msg, true);
141 if (!iface)
142 return UBUS_STATUS_UNKNOWN_ERROR;
143
144 config = blob_memdup(msg);
145 if (!config)
146 goto error;
147
148 if (!interface_add(iface, config))
149 goto error_free_config;
150
151 return UBUS_STATUS_OK;
152
153 error_free_config:
154 free(config);
155 error:
156 free(iface);
157 return UBUS_STATUS_UNKNOWN_ERROR;
158 }
159
160 enum {
161 NETNS_UPDOWN_JAIL,
162 NETNS_UPDOWN_PID,
163 NETNS_UPDOWN_START,
164 __NETNS_UPDOWN_MAX
165 };
166
167 static const struct blobmsg_policy netns_updown_policy[__NETNS_UPDOWN_MAX] = {
168 [NETNS_UPDOWN_JAIL] = { .name = "jail", .type = BLOBMSG_TYPE_STRING },
169 [NETNS_UPDOWN_PID] = { .name = "pid", .type = BLOBMSG_TYPE_INT32 },
170 [NETNS_UPDOWN_START] = { .name = "start", .type = BLOBMSG_TYPE_BOOL },
171 };
172
173 static int
174 netifd_netns_updown(struct ubus_context *ctx, struct ubus_object *obj,
175 struct ubus_request_data *req, const char *method,
176 struct blob_attr *msg)
177 {
178 struct blob_attr *tb[__NETNS_UPDOWN_MAX];
179 char *jail;
180 pid_t netns_pid;
181 bool start;
182
183 blobmsg_parse(netns_updown_policy, __NETNS_UPDOWN_MAX, tb, blob_data(msg), blob_len(msg));
184 if (!tb[NETNS_UPDOWN_JAIL] || !tb[NETNS_UPDOWN_PID])
185 return UBUS_STATUS_INVALID_ARGUMENT;
186
187 start = tb[NETNS_UPDOWN_START] && blobmsg_get_bool(tb[NETNS_UPDOWN_START]);
188 jail = blobmsg_get_string(tb[NETNS_UPDOWN_JAIL]);
189 netns_pid = blobmsg_get_u32(tb[NETNS_UPDOWN_PID]);
190
191 if (start)
192 interface_start_jail(jail, netns_pid);
193 else
194 interface_stop_jail(jail, netns_pid);
195
196 return UBUS_STATUS_OK;
197 }
198
199 static struct ubus_method main_object_methods[] = {
200 { .name = "restart", .handler = netifd_handle_restart },
201 { .name = "reload", .handler = netifd_handle_reload },
202 UBUS_METHOD("add_host_route", netifd_add_host_route, route_policy),
203 { .name = "get_proto_handlers", .handler = netifd_get_proto_handlers },
204 UBUS_METHOD("add_dynamic", netifd_add_dynamic, dynamic_policy),
205 UBUS_METHOD("netns_updown", netifd_netns_updown, netns_updown_policy),
206 };
207
208 static struct ubus_object_type main_object_type =
209 UBUS_OBJECT_TYPE("netifd", main_object_methods);
210
211 static struct ubus_object main_object = {
212 .name = "network",
213 .type = &main_object_type,
214 .methods = main_object_methods,
215 .n_methods = ARRAY_SIZE(main_object_methods),
216 };
217
218 enum {
219 DEV_NAME,
220 __DEV_MAX,
221 };
222
223 static const struct blobmsg_policy dev_policy[__DEV_MAX] = {
224 [DEV_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
225 };
226
227 static int
228 netifd_dev_status(struct ubus_context *ctx, struct ubus_object *obj,
229 struct ubus_request_data *req, const char *method,
230 struct blob_attr *msg)
231 {
232 struct device *dev = NULL;
233 struct blob_attr *tb[__DEV_MAX];
234
235 blobmsg_parse(dev_policy, __DEV_MAX, tb, blob_data(msg), blob_len(msg));
236
237 if (tb[DEV_NAME]) {
238 dev = device_find(blobmsg_data(tb[DEV_NAME]));
239 if (!dev)
240 return UBUS_STATUS_INVALID_ARGUMENT;
241 }
242
243 blob_buf_init(&b, 0);
244 device_dump_status(&b, dev);
245 ubus_send_reply(ctx, req, b.head);
246
247 return 0;
248 }
249
250 enum {
251 ALIAS_ATTR_ALIAS,
252 ALIAS_ATTR_DEV,
253 __ALIAS_ATTR_MAX,
254 };
255
256 static const struct blobmsg_policy alias_attrs[__ALIAS_ATTR_MAX] = {
257 [ALIAS_ATTR_ALIAS] = { "alias", BLOBMSG_TYPE_ARRAY },
258 [ALIAS_ATTR_DEV] = { "device", BLOBMSG_TYPE_STRING },
259 };
260
261 static int
262 netifd_handle_alias(struct ubus_context *ctx, struct ubus_object *obj,
263 struct ubus_request_data *req, const char *method,
264 struct blob_attr *msg)
265 {
266 struct device *dev = NULL;
267 struct blob_attr *tb[__ALIAS_ATTR_MAX];
268 struct blob_attr *cur;
269 int rem;
270
271 blobmsg_parse(alias_attrs, __ALIAS_ATTR_MAX, tb, blob_data(msg), blob_len(msg));
272
273 if (!tb[ALIAS_ATTR_ALIAS])
274 return UBUS_STATUS_INVALID_ARGUMENT;
275
276 if ((cur = tb[ALIAS_ATTR_DEV]) != NULL) {
277 dev = device_get(blobmsg_data(cur), true);
278 if (!dev)
279 return UBUS_STATUS_NOT_FOUND;
280 }
281
282 blobmsg_for_each_attr(cur, tb[ALIAS_ATTR_ALIAS], rem) {
283 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
284 goto error;
285
286 if (!blobmsg_check_attr(cur, false))
287 goto error;
288
289 alias_notify_device(blobmsg_data(cur), dev);
290 }
291 return 0;
292
293 error:
294 device_free_unused(dev);
295 return UBUS_STATUS_INVALID_ARGUMENT;
296 }
297
298 enum {
299 DEV_STATE_NAME,
300 DEV_STATE_DEFER,
301 __DEV_STATE_MAX,
302 };
303
304 static const struct blobmsg_policy dev_state_policy[__DEV_STATE_MAX] = {
305 [DEV_STATE_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
306 [DEV_STATE_DEFER] = { .name = "defer", .type = BLOBMSG_TYPE_BOOL },
307 };
308
309 static int
310 netifd_handle_set_state(struct ubus_context *ctx, struct ubus_object *obj,
311 struct ubus_request_data *req, const char *method,
312 struct blob_attr *msg)
313 {
314 struct device *dev = NULL;
315 struct blob_attr *tb[__DEV_STATE_MAX];
316 struct blob_attr *cur;
317
318 blobmsg_parse(dev_state_policy, __DEV_STATE_MAX, tb, blob_data(msg), blob_len(msg));
319
320 cur = tb[DEV_STATE_NAME];
321 if (!cur)
322 return UBUS_STATUS_INVALID_ARGUMENT;
323
324 dev = device_find(blobmsg_data(cur));
325 if (!dev)
326 return UBUS_STATUS_NOT_FOUND;
327
328 cur = tb[DEV_STATE_DEFER];
329 if (cur)
330 device_set_deferred(dev, !!blobmsg_get_u8(cur));
331
332 return 0;
333 }
334
335 static struct ubus_method dev_object_methods[] = {
336 UBUS_METHOD("status", netifd_dev_status, dev_policy),
337 UBUS_METHOD("set_alias", netifd_handle_alias, alias_attrs),
338 UBUS_METHOD("set_state", netifd_handle_set_state, dev_state_policy),
339 };
340
341 static struct ubus_object_type dev_object_type =
342 UBUS_OBJECT_TYPE("device", dev_object_methods);
343
344 static struct ubus_object dev_object = {
345 .name = "network.device",
346 .type = &dev_object_type,
347 .methods = dev_object_methods,
348 .n_methods = ARRAY_SIZE(dev_object_methods),
349 };
350
351 static void
352 netifd_ubus_add_fd(void)
353 {
354 ubus_add_uloop(ubus_ctx);
355 system_fd_set_cloexec(ubus_ctx->sock.fd);
356 }
357
358 static void
359 netifd_ubus_reconnect_timer(struct uloop_timeout *timeout)
360 {
361 static struct uloop_timeout retry = {
362 .cb = netifd_ubus_reconnect_timer,
363 };
364 int t = 2;
365
366 if (ubus_reconnect(ubus_ctx, ubus_path) != 0) {
367 DPRINTF("failed to reconnect, trying again in %d seconds\n", t);
368 uloop_timeout_set(&retry, t * 1000);
369 return;
370 }
371
372 DPRINTF("reconnected to ubus, new id: %08x\n", ubus_ctx->local_id);
373 netifd_ubus_add_fd();
374 }
375
376 static void
377 netifd_ubus_connection_lost(struct ubus_context *ctx)
378 {
379 netifd_ubus_reconnect_timer(NULL);
380 }
381
382 /* per-interface object */
383
384 static int
385 netifd_handle_up(struct ubus_context *ctx, struct ubus_object *obj,
386 struct ubus_request_data *req, const char *method,
387 struct blob_attr *msg)
388 {
389 struct interface *iface;
390
391 iface = container_of(obj, struct interface, ubus);
392 interface_set_up(iface);
393
394 return 0;
395 }
396
397 static int
398 netifd_handle_down(struct ubus_context *ctx, struct ubus_object *obj,
399 struct ubus_request_data *req, const char *method,
400 struct blob_attr *msg)
401 {
402 struct interface *iface;
403
404 iface = container_of(obj, struct interface, ubus);
405 interface_set_down(iface);
406
407 return 0;
408 }
409
410 static int
411 netifd_handle_renew(struct ubus_context *ctx, struct ubus_object *obj,
412 struct ubus_request_data *req, const char *method,
413 struct blob_attr *msg)
414 {
415 struct interface *iface;
416
417 iface = container_of(obj, struct interface, ubus);
418 interface_renew(iface);
419
420 return 0;
421 }
422
423 static void
424 netifd_add_interface_errors(struct blob_buf *b, struct interface *iface)
425 {
426 struct interface_error *error;
427 void *e, *e2, *e3;
428 int i;
429
430 e = blobmsg_open_array(b, "errors");
431 list_for_each_entry(error, &iface->errors, list) {
432 e2 = blobmsg_open_table(b, NULL);
433
434 blobmsg_add_string(b, "subsystem", error->subsystem);
435 blobmsg_add_string(b, "code", error->code);
436 if (error->data[0]) {
437 e3 = blobmsg_open_array(b, "data");
438 for (i = 0; error->data[i]; i++)
439 blobmsg_add_string(b, NULL, error->data[i]);
440 blobmsg_close_array(b, e3);
441 }
442
443 blobmsg_close_table(b, e2);
444 }
445 blobmsg_close_array(b, e);
446 }
447
448 static void
449 interface_ip_dump_address_list(struct interface_ip_settings *ip, bool v6, bool enabled)
450 {
451 struct device_addr *addr;
452 char *buf;
453 void *a;
454 int buflen = 128;
455 int af;
456
457 time_t now = system_get_rtime();
458 vlist_for_each_element(&ip->addr, addr, node) {
459 if (addr->enabled != enabled)
460 continue;
461
462 if ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET4)
463 af = AF_INET;
464 else
465 af = AF_INET6;
466
467 if (af != (v6 ? AF_INET6 : AF_INET))
468 continue;
469
470 a = blobmsg_open_table(&b, NULL);
471
472 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
473 inet_ntop(af, &addr->addr, buf, buflen);
474 blobmsg_add_string_buffer(&b);
475
476 blobmsg_add_u32(&b, "mask", addr->mask);
477
478 if (addr->point_to_point) {
479 buf = blobmsg_alloc_string_buffer(&b, "ptpaddress", buflen);
480 inet_ntop(af, &addr->point_to_point, buf, buflen);
481 blobmsg_add_string_buffer(&b);
482 }
483
484 if (addr->preferred_until) {
485 int preferred = addr->preferred_until - now;
486 if (preferred < 0)
487 preferred = 0;
488 blobmsg_add_u32(&b, "preferred", preferred);
489 }
490
491 if (addr->valid_until)
492 blobmsg_add_u32(&b, "valid", addr->valid_until - now);
493
494 if (addr->pclass)
495 blobmsg_add_string(&b, "class", addr->pclass);
496
497 blobmsg_close_table(&b, a);
498 }
499 }
500
501 static void
502 interface_ip_dump_neighbor_list(struct interface_ip_settings *ip, bool enabled)
503 {
504 struct device_neighbor *neighbor;
505 int buflen = 128;
506 char *buf;
507 void *r;
508 int af;
509
510 vlist_for_each_element(&ip->neighbor, neighbor, node) {
511 if (neighbor->enabled != enabled)
512 continue;
513
514 if ((neighbor->flags & DEVADDR_FAMILY) == DEVADDR_INET4)
515 af = AF_INET;
516 else
517 af = AF_INET6;
518
519 r = blobmsg_open_table(&b, NULL);
520
521 if (neighbor->flags & DEVNEIGH_MAC)
522 blobmsg_add_string(&b, "mac", format_macaddr(neighbor->macaddr));
523
524 buf = blobmsg_alloc_string_buffer(&b , "address", buflen);
525 inet_ntop(af, &neighbor->addr, buf, buflen);
526 blobmsg_add_string_buffer(&b);
527
528 if (neighbor->proxy)
529 blobmsg_add_u32(&b, "proxy", neighbor->proxy);
530
531 if (neighbor->router)
532 blobmsg_add_u32(&b, "router", neighbor->router);
533
534 blobmsg_close_table(&b, r);
535 }
536 }
537
538 static void
539 interface_ip_dump_route_list(struct interface_ip_settings *ip, bool enabled)
540 {
541 struct device_route *route;
542 int buflen = 128;
543 char *buf;
544 void *r;
545 int af;
546
547 time_t now = system_get_rtime();
548 vlist_for_each_element(&ip->route, route, node) {
549 if (route->enabled != enabled)
550 continue;
551
552 if ((ip->no_defaultroute == enabled) && !route->mask)
553 continue;
554
555 if ((route->flags & DEVADDR_FAMILY) == DEVADDR_INET4)
556 af = AF_INET;
557 else
558 af = AF_INET6;
559
560 r = blobmsg_open_table(&b, NULL);
561
562 buf = blobmsg_alloc_string_buffer(&b, "target", buflen);
563 inet_ntop(af, &route->addr, buf, buflen);
564 blobmsg_add_string_buffer(&b);
565
566 blobmsg_add_u32(&b, "mask", route->mask);
567
568 buf = blobmsg_alloc_string_buffer(&b, "nexthop", buflen);
569 inet_ntop(af, &route->nexthop, buf, buflen);
570 blobmsg_add_string_buffer(&b);
571
572 if (route->flags & DEVROUTE_TYPE)
573 blobmsg_add_u32(&b, "type", route->type);
574
575 if (route->flags & DEVROUTE_PROTO)
576 blobmsg_add_u32(&b, "proto", route->proto);
577
578 if (route->flags & DEVROUTE_MTU)
579 blobmsg_add_u32(&b, "mtu", route->mtu);
580
581 if (route->flags & DEVROUTE_METRIC)
582 blobmsg_add_u32(&b, "metric", route->metric);
583
584 if (route->flags & DEVROUTE_TABLE)
585 blobmsg_add_u32(&b, "table", route->table);
586
587 if (route->valid_until)
588 blobmsg_add_u32(&b, "valid", route->valid_until - now);
589
590 buf = blobmsg_alloc_string_buffer(&b, "source", buflen);
591 inet_ntop(af, &route->source, buf, buflen);
592 snprintf(buf + strlen(buf), buflen - strlen(buf), "/%u", route->sourcemask);
593 blobmsg_add_string_buffer(&b);
594
595 blobmsg_close_table(&b, r);
596 }
597 }
598
599
600 static void
601 interface_ip_dump_prefix_list(struct interface_ip_settings *ip)
602 {
603 struct device_prefix *prefix;
604 char *buf;
605 void *a, *c;
606 const int buflen = INET6_ADDRSTRLEN;
607
608 time_t now = system_get_rtime();
609 vlist_for_each_element(&ip->prefix, prefix, node) {
610 a = blobmsg_open_table(&b, NULL);
611
612 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
613 inet_ntop(AF_INET6, &prefix->addr, buf, buflen);
614 blobmsg_add_string_buffer(&b);
615
616 blobmsg_add_u32(&b, "mask", prefix->length);
617
618 if (prefix->preferred_until) {
619 int preferred = prefix->preferred_until - now;
620 if (preferred < 0)
621 preferred = 0;
622 blobmsg_add_u32(&b, "preferred", preferred);
623 }
624
625 if (prefix->valid_until)
626 blobmsg_add_u32(&b, "valid", prefix->valid_until - now);
627
628 blobmsg_add_string(&b, "class", prefix->pclass);
629
630 c = blobmsg_open_table(&b, "assigned");
631 struct device_prefix_assignment *assign;
632 list_for_each_entry(assign, &prefix->assignments, head) {
633 if (!assign->name[0])
634 continue;
635
636 struct in6_addr addr = prefix->addr;
637 addr.s6_addr32[1] |= htonl(assign->assigned);
638
639 void *d = blobmsg_open_table(&b, assign->name);
640
641 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
642 inet_ntop(AF_INET6, &addr, buf, buflen);
643 blobmsg_add_string_buffer(&b);
644
645 blobmsg_add_u32(&b, "mask", assign->length);
646
647 blobmsg_close_table(&b, d);
648 }
649 blobmsg_close_table(&b, c);
650
651 blobmsg_close_table(&b, a);
652 }
653 }
654
655
656 static void
657 interface_ip_dump_prefix_assignment_list(struct interface *iface)
658 {
659 void *a;
660 char *buf;
661 const int buflen = INET6_ADDRSTRLEN;
662 time_t now = system_get_rtime();
663
664 struct device_prefix *prefix;
665 list_for_each_entry(prefix, &prefixes, head) {
666 struct device_prefix_assignment *assign;
667 list_for_each_entry(assign, &prefix->assignments, head) {
668 if (strcmp(assign->name, iface->name))
669 continue;
670
671 struct in6_addr addr = prefix->addr;
672 addr.s6_addr32[1] |= htonl(assign->assigned);
673
674 a = blobmsg_open_table(&b, NULL);
675
676 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
677 inet_ntop(AF_INET6, &addr, buf, buflen);
678 blobmsg_add_string_buffer(&b);
679
680 blobmsg_add_u32(&b, "mask", assign->length);
681
682 if (prefix->preferred_until) {
683 int preferred = prefix->preferred_until - now;
684 if (preferred < 0)
685 preferred = 0;
686 blobmsg_add_u32(&b, "preferred", preferred);
687 }
688
689 if (prefix->valid_until)
690 blobmsg_add_u32(&b, "valid", prefix->valid_until - now);
691
692 void *c = blobmsg_open_table(&b, "local-address");
693 if (assign->enabled) {
694 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
695 inet_ntop(AF_INET6, &assign->addr, buf, buflen);
696 blobmsg_add_string_buffer(&b);
697
698 blobmsg_add_u32(&b, "mask", assign->length);
699 }
700 blobmsg_close_table(&b, c);
701
702 blobmsg_close_table(&b, a);
703 }
704 }
705 }
706
707 static void
708 interface_ip_dump_dns_server_list(struct interface_ip_settings *ip, bool enabled)
709 {
710 struct dns_server *dns;
711 int buflen = 128;
712 char *buf;
713
714 vlist_simple_for_each_element(&ip->dns_servers, dns, node) {
715 if (ip->no_dns == enabled)
716 continue;
717
718 buf = blobmsg_alloc_string_buffer(&b, NULL, buflen);
719 inet_ntop(dns->af, &dns->addr, buf, buflen);
720 blobmsg_add_string_buffer(&b);
721 }
722 }
723
724 static void
725 interface_ip_dump_dns_search_list(struct interface_ip_settings *ip, bool enabled)
726 {
727 struct dns_search_domain *dns;
728
729 vlist_simple_for_each_element(&ip->dns_search, dns, node) {
730 if (ip->no_dns == enabled)
731 continue;
732
733 blobmsg_add_string(&b, NULL, dns->name);
734 }
735 }
736
737 static void
738 netifd_dump_status(struct interface *iface)
739 {
740 struct interface_data *data;
741 struct device *dev;
742 void *a, *inactive;
743
744 blobmsg_add_u8(&b, "up", iface->state == IFS_UP);
745 blobmsg_add_u8(&b, "pending", iface->state == IFS_SETUP);
746 blobmsg_add_u8(&b, "available", iface->available);
747 blobmsg_add_u8(&b, "autostart", iface->autostart);
748 blobmsg_add_u8(&b, "dynamic", iface->dynamic);
749
750 if (iface->state == IFS_UP) {
751 time_t cur = system_get_rtime();
752 blobmsg_add_u32(&b, "uptime", cur - iface->start_time);
753 if (iface->l3_dev.dev)
754 blobmsg_add_string(&b, "l3_device", iface->l3_dev.dev->ifname);
755 }
756
757 if (iface->proto_handler)
758 blobmsg_add_string(&b, "proto", iface->proto_handler->name);
759
760 dev = iface->main_dev.dev;
761 if (dev && !dev->hidden && iface->proto_handler &&
762 !(iface->proto_handler->flags & PROTO_FLAG_NODEV))
763 blobmsg_add_string(&b, "device", dev->ifname);
764
765 if (iface->jail)
766 blobmsg_add_string(&b, "jail", iface->jail);
767
768 if (iface->jail_ifname)
769 blobmsg_add_string(&b, "jail_ifname", iface->jail_ifname);
770
771 if (iface->state == IFS_UP) {
772 if (iface->updated) {
773 a = blobmsg_open_array(&b, "updated");
774
775 if (iface->updated & IUF_ADDRESS)
776 blobmsg_add_string(&b, NULL, "addresses");
777 if (iface->updated & IUF_ROUTE)
778 blobmsg_add_string(&b, NULL, "routes");
779 if (iface->updated & IUF_PREFIX)
780 blobmsg_add_string(&b, NULL, "prefixes");
781 if (iface->updated & IUF_DATA)
782 blobmsg_add_string(&b, NULL, "data");
783
784 blobmsg_close_array(&b, a);
785 }
786
787 if (iface->ip4table)
788 blobmsg_add_u32(&b, "ip4table", iface->ip4table);
789 if (iface->ip6table)
790 blobmsg_add_u32(&b, "ip6table", iface->ip6table);
791 blobmsg_add_u32(&b, "metric", iface->metric);
792 blobmsg_add_u32(&b, "dns_metric", iface->dns_metric);
793 blobmsg_add_u8(&b, "delegation", !iface->proto_ip.no_delegation);
794 if (iface->assignment_weight)
795 blobmsg_add_u32(&b, "ip6weight", iface->assignment_weight);
796 a = blobmsg_open_array(&b, "ipv4-address");
797 interface_ip_dump_address_list(&iface->config_ip, false, true);
798 interface_ip_dump_address_list(&iface->proto_ip, false, true);
799 blobmsg_close_array(&b, a);
800 a = blobmsg_open_array(&b, "ipv6-address");
801 interface_ip_dump_address_list(&iface->config_ip, true, true);
802 interface_ip_dump_address_list(&iface->proto_ip, true, true);
803 blobmsg_close_array(&b, a);
804 a = blobmsg_open_array(&b, "ipv6-prefix");
805 interface_ip_dump_prefix_list(&iface->config_ip);
806 interface_ip_dump_prefix_list(&iface->proto_ip);
807 blobmsg_close_array(&b, a);
808 a = blobmsg_open_array(&b, "ipv6-prefix-assignment");
809 interface_ip_dump_prefix_assignment_list(iface);
810 blobmsg_close_array(&b, a);
811 a = blobmsg_open_array(&b, "route");
812 interface_ip_dump_route_list(&iface->config_ip, true);
813 interface_ip_dump_route_list(&iface->proto_ip, true);
814 blobmsg_close_array(&b, a);
815 a = blobmsg_open_array(&b, "dns-server");
816 interface_ip_dump_dns_server_list(&iface->config_ip, true);
817 interface_ip_dump_dns_server_list(&iface->proto_ip, true);
818 blobmsg_close_array(&b, a);
819 a = blobmsg_open_array(&b, "dns-search");
820 interface_ip_dump_dns_search_list(&iface->config_ip, true);
821 interface_ip_dump_dns_search_list(&iface->proto_ip, true);
822 blobmsg_close_array(&b, a);
823 a = blobmsg_open_array(&b, "neighbors");
824 interface_ip_dump_neighbor_list(&iface->config_ip, true);
825 interface_ip_dump_neighbor_list(&iface->proto_ip, true);
826 blobmsg_close_array(&b, a);
827
828 inactive = blobmsg_open_table(&b, "inactive");
829 a = blobmsg_open_array(&b, "ipv4-address");
830 interface_ip_dump_address_list(&iface->config_ip, false, false);
831 interface_ip_dump_address_list(&iface->proto_ip, false, false);
832 blobmsg_close_array(&b, a);
833 a = blobmsg_open_array(&b, "ipv6-address");
834 interface_ip_dump_address_list(&iface->config_ip, true, false);
835 interface_ip_dump_address_list(&iface->proto_ip, true, false);
836 blobmsg_close_array(&b, a);
837 a = blobmsg_open_array(&b, "route");
838 interface_ip_dump_route_list(&iface->config_ip, false);
839 interface_ip_dump_route_list(&iface->proto_ip, false);
840 blobmsg_close_array(&b, a);
841 a = blobmsg_open_array(&b, "dns-server");
842 interface_ip_dump_dns_server_list(&iface->config_ip, false);
843 interface_ip_dump_dns_server_list(&iface->proto_ip, false);
844 blobmsg_close_array(&b, a);
845 a = blobmsg_open_array(&b, "dns-search");
846 interface_ip_dump_dns_search_list(&iface->config_ip, false);
847 interface_ip_dump_dns_search_list(&iface->proto_ip, false);
848 blobmsg_close_array(&b, a);
849 a = blobmsg_open_array(&b, "neighbors");
850 interface_ip_dump_neighbor_list(&iface->config_ip, false);
851 interface_ip_dump_neighbor_list(&iface->proto_ip, false);
852 blobmsg_close_array(&b, a);
853 blobmsg_close_table(&b, inactive);
854 }
855
856 a = blobmsg_open_table(&b, "data");
857 avl_for_each_element(&iface->data, data, node)
858 blobmsg_add_blob(&b, data->data);
859
860 blobmsg_close_table(&b, a);
861
862 if (!list_empty(&iface->errors))
863 netifd_add_interface_errors(&b, iface);
864 }
865
866 static int
867 netifd_handle_status(struct ubus_context *ctx, struct ubus_object *obj,
868 struct ubus_request_data *req, const char *method,
869 struct blob_attr *msg)
870 {
871 struct interface *iface = container_of(obj, struct interface, ubus);
872
873 blob_buf_init(&b, 0);
874 netifd_dump_status(iface);
875 ubus_send_reply(ctx, req, b.head);
876
877 return 0;
878 }
879
880
881 static int
882 netifd_handle_dump(struct ubus_context *ctx, struct ubus_object *obj,
883 struct ubus_request_data *req, const char *method,
884 struct blob_attr *msg)
885 {
886 blob_buf_init(&b, 0);
887 void *a = blobmsg_open_array(&b, "interface");
888
889 struct interface *iface;
890 vlist_for_each_element(&interfaces, iface, node) {
891 void *i = blobmsg_open_table(&b, NULL);
892 blobmsg_add_string(&b, "interface", iface->name);
893 netifd_dump_status(iface);
894 blobmsg_close_table(&b, i);
895 }
896
897 blobmsg_close_array(&b, a);
898 ubus_send_reply(ctx, req, b.head);
899
900 return 0;
901 }
902
903 enum {
904 DEV_LINK_NAME,
905 DEV_LINK_EXT,
906 __DEV_LINK_MAX,
907 };
908
909 static const struct blobmsg_policy dev_link_policy[__DEV_LINK_MAX] = {
910 [DEV_LINK_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
911 [DEV_LINK_EXT] = { .name = "link-ext", .type = BLOBMSG_TYPE_BOOL },
912 };
913
914 static int
915 netifd_iface_handle_device(struct ubus_context *ctx, struct ubus_object *obj,
916 struct ubus_request_data *req, const char *method,
917 struct blob_attr *msg)
918 {
919 struct blob_attr *tb[__DEV_LINK_MAX];
920 struct blob_attr *cur;
921 struct interface *iface;
922 bool add = !strncmp(method, "add", 3);
923 bool link_ext = true;
924
925 iface = container_of(obj, struct interface, ubus);
926
927 blobmsg_parse(dev_link_policy, __DEV_LINK_MAX, tb, blob_data(msg), blob_len(msg));
928
929 if (!tb[DEV_LINK_NAME])
930 return UBUS_STATUS_INVALID_ARGUMENT;
931
932 cur = tb[DEV_LINK_EXT];
933 if (cur)
934 link_ext = blobmsg_get_bool(cur);
935
936 return interface_handle_link(iface, blobmsg_data(tb[DEV_LINK_NAME]), add, link_ext);
937 }
938
939
940 static int
941 netifd_iface_notify_proto(struct ubus_context *ctx, struct ubus_object *obj,
942 struct ubus_request_data *req, const char *method,
943 struct blob_attr *msg)
944 {
945 struct interface *iface;
946
947 iface = container_of(obj, struct interface, ubus);
948
949 if (!iface->proto || !iface->proto->notify)
950 return UBUS_STATUS_NOT_SUPPORTED;
951
952 return iface->proto->notify(iface->proto, msg);
953 }
954
955 static void
956 netifd_iface_do_remove(struct uloop_timeout *timeout)
957 {
958 struct interface *iface;
959
960 iface = container_of(timeout, struct interface, remove_timer);
961 vlist_delete(&interfaces, &iface->node);
962 }
963
964 static int
965 netifd_iface_remove(struct ubus_context *ctx, struct ubus_object *obj,
966 struct ubus_request_data *req, const char *method,
967 struct blob_attr *msg)
968 {
969 struct interface *iface;
970
971 iface = container_of(obj, struct interface, ubus);
972 if (iface->remove_timer.cb)
973 return UBUS_STATUS_INVALID_ARGUMENT;
974
975 iface->remove_timer.cb = netifd_iface_do_remove;
976 uloop_timeout_set(&iface->remove_timer, 100);
977 return 0;
978 }
979
980 static int
981 netifd_handle_iface_prepare(struct ubus_context *ctx, struct ubus_object *obj,
982 struct ubus_request_data *req, const char *method,
983 struct blob_attr *msg)
984 {
985 struct interface *iface;
986 struct device *dev;
987 const struct device_hotplug_ops *ops;
988
989 iface = container_of(obj, struct interface, ubus);
990 dev = iface->main_dev.dev;
991 if (!dev)
992 return 0;
993
994 ops = dev->hotplug_ops;
995 if (!ops)
996 return 0;
997
998 return ops->prepare(dev);
999 }
1000
1001 static int
1002 netifd_handle_set_data(struct ubus_context *ctx, struct ubus_object *obj,
1003 struct ubus_request_data *req, const char *method,
1004 struct blob_attr *msg)
1005 {
1006 struct interface *iface;
1007
1008 iface = container_of(obj, struct interface, ubus);
1009
1010 return interface_parse_data(iface, msg);
1011 }
1012
1013 static struct ubus_method iface_object_methods[] = {
1014 { .name = "up", .handler = netifd_handle_up },
1015 { .name = "down", .handler = netifd_handle_down },
1016 { .name = "renew", .handler = netifd_handle_renew },
1017 { .name = "status", .handler = netifd_handle_status },
1018 { .name = "prepare", .handler = netifd_handle_iface_prepare },
1019 { .name = "dump", .handler = netifd_handle_dump },
1020 UBUS_METHOD("add_device", netifd_iface_handle_device, dev_link_policy ),
1021 UBUS_METHOD("remove_device", netifd_iface_handle_device, dev_link_policy ),
1022 { .name = "notify_proto", .handler = netifd_iface_notify_proto },
1023 { .name = "remove", .handler = netifd_iface_remove },
1024 { .name = "set_data", .handler = netifd_handle_set_data },
1025 };
1026
1027 static struct ubus_object_type iface_object_type =
1028 UBUS_OBJECT_TYPE("netifd_iface", iface_object_methods);
1029
1030
1031 static struct ubus_object iface_object = {
1032 .name = "network.interface",
1033 .type = &iface_object_type,
1034 .n_methods = ARRAY_SIZE(iface_object_methods),
1035 };
1036
1037 static void netifd_add_object(struct ubus_object *obj)
1038 {
1039 int ret = ubus_add_object(ubus_ctx, obj);
1040
1041 if (ret != 0)
1042 fprintf(stderr, "Failed to publish object '%s': %s\n", obj->name, ubus_strerror(ret));
1043 }
1044
1045 static const struct blobmsg_policy iface_policy = {
1046 .name = "interface",
1047 .type = BLOBMSG_TYPE_STRING,
1048 };
1049
1050 static int
1051 netifd_handle_iface(struct ubus_context *ctx, struct ubus_object *obj,
1052 struct ubus_request_data *req, const char *method,
1053 struct blob_attr *msg)
1054 {
1055 struct interface *iface;
1056 struct blob_attr *tb;
1057 int i;
1058
1059 blobmsg_parse(&iface_policy, 1, &tb, blob_data(msg), blob_len(msg));
1060 if (!tb)
1061 return UBUS_STATUS_INVALID_ARGUMENT;
1062
1063 iface = vlist_find(&interfaces, blobmsg_data(tb), iface, node);
1064 if (!iface)
1065 return UBUS_STATUS_NOT_FOUND;
1066
1067 for (i = 0; i < ARRAY_SIZE(iface_object_methods); i++) {
1068 ubus_handler_t cb;
1069
1070 if (strcmp(method, iface_object_methods[i].name) != 0)
1071 continue;
1072
1073 cb = iface_object_methods[i].handler;
1074 return cb(ctx, &iface->ubus, req, method, msg);
1075 }
1076
1077 return UBUS_STATUS_INVALID_ARGUMENT;
1078 }
1079
1080 static void netifd_add_iface_object(void)
1081 {
1082 struct ubus_method *methods;
1083 int i;
1084
1085 methods = calloc(1, sizeof(iface_object_methods));
1086 if (!methods)
1087 return;
1088
1089 memcpy(methods, iface_object_methods, sizeof(iface_object_methods));
1090 iface_object.methods = methods;
1091
1092 for (i = 0; i < ARRAY_SIZE(iface_object_methods); i++) {
1093 if (methods[i].handler == netifd_handle_dump)
1094 continue;
1095
1096 methods[i].handler = netifd_handle_iface;
1097 methods[i].policy = &iface_policy;
1098 methods[i].n_policy = 1;
1099 }
1100 netifd_add_object(&iface_object);
1101 }
1102
1103 static struct wireless_device *
1104 get_wdev(struct blob_attr *msg, int *ret)
1105 {
1106 struct blobmsg_policy wdev_policy = {
1107 .name = "device",
1108 .type = BLOBMSG_TYPE_STRING,
1109 };
1110 struct blob_attr *dev_attr;
1111 struct wireless_device *wdev = NULL;
1112
1113
1114 blobmsg_parse(&wdev_policy, 1, &dev_attr, blob_data(msg), blob_len(msg));
1115 if (!dev_attr) {
1116 *ret = UBUS_STATUS_INVALID_ARGUMENT;
1117 return NULL;
1118 }
1119
1120 wdev = vlist_find(&wireless_devices, blobmsg_data(dev_attr), wdev, node);
1121 if (!wdev) {
1122 *ret = UBUS_STATUS_NOT_FOUND;
1123 return NULL;
1124 }
1125
1126 *ret = 0;
1127 return wdev;
1128 }
1129
1130 static int
1131 netifd_handle_wdev_reconf(struct ubus_context *ctx, struct ubus_object *obj,
1132 struct ubus_request_data *req, const char *method,
1133 struct blob_attr *msg)
1134 {
1135 struct wireless_device *wdev;
1136 int ret;
1137
1138 wdev = get_wdev(msg, &ret);
1139 if (ret == UBUS_STATUS_NOT_FOUND)
1140 return ret;
1141
1142 if (wdev) {
1143 wireless_device_reconf(wdev);
1144 } else {
1145 vlist_for_each_element(&wireless_devices, wdev, node)
1146 wireless_device_reconf(wdev);
1147 }
1148
1149 return 0;
1150 }
1151
1152 static int
1153 netifd_handle_wdev_up(struct ubus_context *ctx, struct ubus_object *obj,
1154 struct ubus_request_data *req, const char *method,
1155 struct blob_attr *msg)
1156 {
1157 struct wireless_device *wdev;
1158 int ret;
1159
1160 wdev = get_wdev(msg, &ret);
1161 if (ret == UBUS_STATUS_NOT_FOUND)
1162 return ret;
1163
1164 if (wdev) {
1165 wireless_device_set_up(wdev);
1166 } else {
1167 vlist_for_each_element(&wireless_devices, wdev, node)
1168 wireless_device_set_up(wdev);
1169 }
1170
1171 return 0;
1172 }
1173
1174 static int
1175 netifd_handle_wdev_down(struct ubus_context *ctx, struct ubus_object *obj,
1176 struct ubus_request_data *req, const char *method,
1177 struct blob_attr *msg)
1178 {
1179 struct wireless_device *wdev;
1180 int ret;
1181
1182 wdev = get_wdev(msg, &ret);
1183 if (ret == UBUS_STATUS_NOT_FOUND)
1184 return ret;
1185
1186 if (wdev) {
1187 wireless_device_set_down(wdev);
1188 } else {
1189 vlist_for_each_element(&wireless_devices, wdev, node)
1190 wireless_device_set_down(wdev);
1191 }
1192
1193 return 0;
1194 }
1195
1196 static int
1197 netifd_handle_wdev_status(struct ubus_context *ctx, struct ubus_object *obj,
1198 struct ubus_request_data *req, const char *method,
1199 struct blob_attr *msg)
1200 {
1201 struct wireless_device *wdev;
1202 int ret;
1203
1204 wdev = get_wdev(msg, &ret);
1205 if (ret == UBUS_STATUS_NOT_FOUND)
1206 return ret;
1207
1208 blob_buf_init(&b, 0);
1209 if (wdev) {
1210 wireless_device_status(wdev, &b);
1211 } else {
1212 vlist_for_each_element(&wireless_devices, wdev, node)
1213 wireless_device_status(wdev, &b);
1214 }
1215 ubus_send_reply(ctx, req, b.head);
1216 return 0;
1217 }
1218
1219 static int
1220 netifd_handle_wdev_get_validate(struct ubus_context *ctx, struct ubus_object *obj,
1221 struct ubus_request_data *req, const char *method,
1222 struct blob_attr *msg)
1223 {
1224 struct wireless_device *wdev;
1225 int ret;
1226
1227 wdev = get_wdev(msg, &ret);
1228 if (ret == UBUS_STATUS_NOT_FOUND)
1229 return ret;
1230
1231 blob_buf_init(&b, 0);
1232 if (wdev) {
1233 wireless_device_get_validate(wdev, &b);
1234 } else {
1235 vlist_for_each_element(&wireless_devices, wdev, node)
1236 wireless_device_get_validate(wdev, &b);
1237 }
1238 ubus_send_reply(ctx, req, b.head);
1239 return 0;
1240 }
1241
1242 static int
1243 netifd_handle_wdev_notify(struct ubus_context *ctx, struct ubus_object *obj,
1244 struct ubus_request_data *req, const char *method,
1245 struct blob_attr *msg)
1246 {
1247 struct wireless_device *wdev;
1248 int ret;
1249
1250 wdev = get_wdev(msg, &ret);
1251 if (!wdev)
1252 return ret;
1253
1254 return wireless_device_notify(wdev, msg, req);
1255 }
1256
1257 static struct ubus_method wireless_object_methods[] = {
1258 { .name = "up", .handler = netifd_handle_wdev_up },
1259 { .name = "down", .handler = netifd_handle_wdev_down },
1260 { .name = "reconf", .handler = netifd_handle_wdev_reconf },
1261 { .name = "status", .handler = netifd_handle_wdev_status },
1262 { .name = "notify", .handler = netifd_handle_wdev_notify },
1263 { .name = "get_validate", .handler = netifd_handle_wdev_get_validate },
1264 };
1265
1266 static struct ubus_object_type wireless_object_type =
1267 UBUS_OBJECT_TYPE("netifd_iface", wireless_object_methods);
1268
1269
1270 static struct ubus_object wireless_object = {
1271 .name = "network.wireless",
1272 .type = &wireless_object_type,
1273 .methods = wireless_object_methods,
1274 .n_methods = ARRAY_SIZE(wireless_object_methods),
1275 };
1276
1277 int
1278 netifd_ubus_init(const char *path)
1279 {
1280 uloop_init();
1281 ubus_path = path;
1282
1283 ubus_ctx = ubus_connect(path);
1284 if (!ubus_ctx)
1285 return -EIO;
1286
1287 DPRINTF("connected as %08x\n", ubus_ctx->local_id);
1288 ubus_ctx->connection_lost = netifd_ubus_connection_lost;
1289 netifd_ubus_add_fd();
1290
1291 netifd_add_object(&main_object);
1292 netifd_add_object(&dev_object);
1293 netifd_add_object(&wireless_object);
1294 netifd_add_iface_object();
1295
1296 return 0;
1297 }
1298
1299 void
1300 netifd_ubus_done(void)
1301 {
1302 ubus_free(ubus_ctx);
1303 }
1304
1305 void
1306 netifd_ubus_interface_event(struct interface *iface, bool up)
1307 {
1308 blob_buf_init(&b, 0);
1309 blobmsg_add_string(&b, "action", up ? "ifup" : "ifdown");
1310 blobmsg_add_string(&b, "interface", iface->name);
1311 ubus_send_event(ubus_ctx, "network.interface", b.head);
1312 }
1313
1314 void
1315 netifd_ubus_interface_notify(struct interface *iface, bool up)
1316 {
1317 const char *event = (up) ? "interface.update" : "interface.down";
1318 blob_buf_init(&b, 0);
1319 blobmsg_add_string(&b, "interface", iface->name);
1320 netifd_dump_status(iface);
1321 ubus_notify(ubus_ctx, &iface_object, event, b.head, -1);
1322 ubus_notify(ubus_ctx, &iface->ubus, event, b.head, -1);
1323 }
1324
1325 void
1326 netifd_ubus_add_interface(struct interface *iface)
1327 {
1328 struct ubus_object *obj = &iface->ubus;
1329 char *name = NULL;
1330
1331 if (asprintf(&name, "%s.interface.%s", main_object.name, iface->name) == -1)
1332 return;
1333
1334 obj->name = name;
1335 obj->type = &iface_object_type;
1336 obj->methods = iface_object_methods;
1337 obj->n_methods = ARRAY_SIZE(iface_object_methods);
1338 if (ubus_add_object(ubus_ctx, &iface->ubus)) {
1339 DPRINTF("failed to publish ubus object for interface '%s'\n", iface->name);
1340 free(name);
1341 obj->name = NULL;
1342 }
1343 }
1344
1345 void
1346 netifd_ubus_remove_interface(struct interface *iface)
1347 {
1348 if (!iface->ubus.name)
1349 return;
1350
1351 ubus_remove_object(ubus_ctx, &iface->ubus);
1352 free((void *) iface->ubus.name);
1353 }