add copyright headers
[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 struct netifd_fd ubus_fd;
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_MAX
54 };
55
56 static const struct blobmsg_policy route_policy[__HR_MAX] = {
57 [HR_TARGET] = { .name = "target", .type = BLOBMSG_TYPE_STRING },
58 [HR_V6] = { .name = "v6", .type = BLOBMSG_TYPE_BOOL },
59 };
60
61 static int
62 netifd_add_host_route(struct ubus_context *ctx, struct ubus_object *obj,
63 struct ubus_request_data *req, const char *method,
64 struct blob_attr *msg)
65 {
66 struct blob_attr *tb[__HR_MAX];
67 struct interface *iface;
68 union if_addr a;
69 bool v6 = false;
70
71 blobmsg_parse(route_policy, __HR_MAX, tb, blob_data(msg), blob_len(msg));
72 if (!tb[HR_TARGET])
73 return UBUS_STATUS_INVALID_ARGUMENT;
74
75 if (tb[HR_V6])
76 v6 = blobmsg_get_bool(tb[HR_V6]);
77
78 memset(&a, 0, sizeof(a));
79 if (!inet_pton(v6 ? AF_INET6 : AF_INET, blobmsg_data(tb[HR_TARGET]), &a))
80 return UBUS_STATUS_INVALID_ARGUMENT;
81
82
83 iface = interface_ip_add_target_route(&a, v6);
84 if (!iface)
85 return UBUS_STATUS_NOT_FOUND;
86
87 blob_buf_init(&b, 0);
88 blobmsg_add_string(&b, "interface", iface->name);
89 ubus_send_reply(ctx, req, b.head);
90
91 return 0;
92 }
93
94 static struct ubus_method main_object_methods[] = {
95 { .name = "restart", .handler = netifd_handle_restart },
96 { .name = "reload", .handler = netifd_handle_reload },
97 UBUS_METHOD("add_host_route", netifd_add_host_route, route_policy),
98 };
99
100 static struct ubus_object_type main_object_type =
101 UBUS_OBJECT_TYPE("netifd", main_object_methods);
102
103 static struct ubus_object main_object = {
104 .name = "network",
105 .type = &main_object_type,
106 .methods = main_object_methods,
107 .n_methods = ARRAY_SIZE(main_object_methods),
108 };
109
110 enum {
111 DEV_NAME,
112 __DEV_MAX,
113 };
114
115 static const struct blobmsg_policy dev_policy[__DEV_MAX] = {
116 [DEV_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
117 };
118
119 static int
120 netifd_dev_status(struct ubus_context *ctx, struct ubus_object *obj,
121 struct ubus_request_data *req, const char *method,
122 struct blob_attr *msg)
123 {
124 struct device *dev = NULL;
125 struct blob_attr *tb[__DEV_MAX];
126
127 blobmsg_parse(dev_policy, __DEV_MAX, tb, blob_data(msg), blob_len(msg));
128
129 if (tb[DEV_NAME]) {
130 dev = device_get(blobmsg_data(tb[DEV_NAME]), false);
131 if (!dev)
132 return UBUS_STATUS_INVALID_ARGUMENT;
133 }
134
135 blob_buf_init(&b, 0);
136 device_dump_status(&b, dev);
137 ubus_send_reply(ctx, req, b.head);
138
139 return 0;
140 }
141
142 enum {
143 ALIAS_ATTR_ALIAS,
144 ALIAS_ATTR_DEV,
145 __ALIAS_ATTR_MAX,
146 };
147
148 static const struct blobmsg_policy alias_attrs[__ALIAS_ATTR_MAX] = {
149 [ALIAS_ATTR_ALIAS] = { "alias", BLOBMSG_TYPE_ARRAY },
150 [ALIAS_ATTR_DEV] = { "device", BLOBMSG_TYPE_STRING },
151 };
152
153 static int
154 netifd_handle_alias(struct ubus_context *ctx, struct ubus_object *obj,
155 struct ubus_request_data *req, const char *method,
156 struct blob_attr *msg)
157 {
158 struct device *dev = NULL;
159 struct blob_attr *tb[__ALIAS_ATTR_MAX];
160 struct blob_attr *cur;
161 int rem;
162
163 blobmsg_parse(alias_attrs, __ALIAS_ATTR_MAX, tb, blob_data(msg), blob_len(msg));
164
165 if (!tb[ALIAS_ATTR_ALIAS])
166 return UBUS_STATUS_INVALID_ARGUMENT;
167
168 if ((cur = tb[ALIAS_ATTR_DEV]) != NULL) {
169 dev = device_get(blobmsg_data(cur), true);
170 if (!dev)
171 return UBUS_STATUS_NOT_FOUND;
172 }
173
174 blobmsg_for_each_attr(cur, tb[ALIAS_ATTR_ALIAS], rem) {
175 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING)
176 goto error;
177
178 if (!blobmsg_check_attr(cur, NULL))
179 goto error;
180
181 alias_notify_device(blobmsg_data(cur), dev);
182 }
183 return 0;
184
185 error:
186 device_free_unused(dev);
187 return UBUS_STATUS_INVALID_ARGUMENT;
188 }
189
190 static struct ubus_method dev_object_methods[] = {
191 UBUS_METHOD("status", netifd_dev_status, dev_policy),
192 UBUS_METHOD("set_alias", netifd_handle_alias, alias_attrs),
193 };
194
195 static struct ubus_object_type dev_object_type =
196 UBUS_OBJECT_TYPE("device", dev_object_methods);
197
198 static struct ubus_object dev_object = {
199 .name = "network.device",
200 .type = &dev_object_type,
201 .methods = dev_object_methods,
202 .n_methods = ARRAY_SIZE(dev_object_methods),
203 };
204
205 int
206 netifd_ubus_init(const char *path)
207 {
208 int ret;
209
210 ctx = ubus_connect(path);
211 if (!ctx)
212 return -EIO;
213
214 DPRINTF("connected as %08x\n", ctx->local_id);
215 uloop_init();
216 ubus_add_uloop(ctx);
217 ubus_fd.fd = ctx->sock.fd;
218 netifd_fd_add(&ubus_fd);
219
220 ret = ubus_add_object(ctx, &main_object);
221 if (ret)
222 goto out;
223
224 ret = ubus_add_object(ctx, &dev_object);
225
226 out:
227 if (ret != 0)
228 fprintf(stderr, "Failed to publish object: %s\n", ubus_strerror(ret));
229 return ret;
230 }
231
232 void
233 netifd_ubus_done(void)
234 {
235 ubus_free(ctx);
236 }
237
238
239 /* per-interface object */
240
241 static int
242 netifd_handle_up(struct ubus_context *ctx, struct ubus_object *obj,
243 struct ubus_request_data *req, const char *method,
244 struct blob_attr *msg)
245 {
246 struct interface *iface;
247
248 iface = container_of(obj, struct interface, ubus);
249 interface_set_up(iface);
250
251 return 0;
252 }
253
254 static int
255 netifd_handle_down(struct ubus_context *ctx, struct ubus_object *obj,
256 struct ubus_request_data *req, const char *method,
257 struct blob_attr *msg)
258 {
259 struct interface *iface;
260
261 iface = container_of(obj, struct interface, ubus);
262 interface_set_down(iface);
263
264 return 0;
265 }
266
267 static void
268 netifd_add_interface_errors(struct blob_buf *b, struct interface *iface)
269 {
270 struct interface_error *error;
271 void *e, *e2, *e3;
272 int i;
273
274 e = blobmsg_open_array(b, "errors");
275 list_for_each_entry(error, &iface->errors, list) {
276 e2 = blobmsg_open_table(b, NULL);
277
278 blobmsg_add_string(b, "subsystem", error->subsystem);
279 blobmsg_add_string(b, "code", error->code);
280 if (error->data[0]) {
281 e3 = blobmsg_open_array(b, "data");
282 for (i = 0; error->data[i]; i++)
283 blobmsg_add_string(b, NULL, error->data[i]);
284 blobmsg_close_array(b, e3);
285 }
286
287 blobmsg_close_table(b, e2);
288 }
289 blobmsg_close_array(b, e);
290 }
291
292 static void
293 interface_ip_dump_address_list(struct interface_ip_settings *ip)
294 {
295 struct device_addr *addr;
296 char *buf;
297 void *a;
298 int buflen = 128;
299 int af;
300
301 vlist_for_each_element(&ip->addr, addr, node) {
302 if ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET4)
303 af = AF_INET;
304 else
305 af = AF_INET6;
306
307 a = blobmsg_open_table(&b, NULL);
308
309 buf = blobmsg_alloc_string_buffer(&b, "address", buflen);
310 inet_ntop(af, &addr->addr, buf, buflen);
311 blobmsg_add_string_buffer(&b);
312
313 blobmsg_add_u32(&b, "mask", addr->mask);
314
315 blobmsg_close_table(&b, a);
316 }
317 }
318
319 static void
320 interface_ip_dump_route_list(struct interface_ip_settings *ip)
321 {
322 struct device_route *route;
323 static char *buf;
324 int buflen = 128;
325 void *r;
326 int af;
327
328 vlist_for_each_element(&ip->route, route, node) {
329 if ((route->flags & DEVADDR_FAMILY) == DEVADDR_INET4)
330 af = AF_INET;
331 else
332 af = AF_INET6;
333
334 r = blobmsg_open_table(&b, NULL);
335
336 buf = blobmsg_alloc_string_buffer(&b, "target", buflen);
337 inet_ntop(af, &route->addr, buf, buflen);
338 blobmsg_add_string_buffer(&b);
339
340 blobmsg_add_u32(&b, "mask", route->mask);
341
342 buf = blobmsg_alloc_string_buffer(&b, "nexthop", buflen);
343 inet_ntop(af, &route->nexthop, buf, buflen);
344 blobmsg_add_string_buffer(&b);
345
346 blobmsg_close_table(&b, r);
347 }
348 }
349
350 static int
351 netifd_handle_status(struct ubus_context *ctx, struct ubus_object *obj,
352 struct ubus_request_data *req, const char *method,
353 struct blob_attr *msg)
354 {
355 struct interface *iface;
356 struct interface_data *data;
357 struct device *dev;
358 void *a;
359
360 iface = container_of(obj, struct interface, ubus);
361
362 blob_buf_init(&b, 0);
363 blobmsg_add_u8(&b, "up", iface->state == IFS_UP);
364 blobmsg_add_u8(&b, "pending", iface->state == IFS_SETUP);
365 blobmsg_add_u8(&b, "available", iface->available);
366 blobmsg_add_u8(&b, "autostart", iface->autostart);
367
368 if (iface->state == IFS_UP) {
369 time_t cur = system_get_rtime();
370 blobmsg_add_u32(&b, "uptime", cur - iface->start_time);
371 blobmsg_add_string(&b, "l3_device", iface->l3_dev.dev->ifname);
372 }
373
374 dev = iface->main_dev.dev;
375 if (dev && !(iface->proto_handler->flags & PROTO_FLAG_NODEV))
376 blobmsg_add_string(&b, "device", dev->ifname);
377
378 if (iface->state == IFS_UP) {
379 a = blobmsg_open_array(&b, "address");
380 interface_ip_dump_address_list(&iface->config_ip);
381 interface_ip_dump_address_list(&iface->proto_ip);
382 blobmsg_close_array(&b, a);
383 a = blobmsg_open_array(&b, "route");
384 interface_ip_dump_route_list(&iface->config_ip);
385 interface_ip_dump_route_list(&iface->proto_ip);
386 blobmsg_close_array(&b, a);
387 }
388
389 a = blobmsg_open_table(&b, "data");
390 avl_for_each_element(&iface->data, data, node)
391 blob_put(&b, blob_id(data->data), blob_data(data->data), blob_len(data->data));
392
393 blobmsg_close_table(&b, a);
394
395 if (!list_is_empty(&iface->errors))
396 netifd_add_interface_errors(&b, iface);
397
398 ubus_send_reply(ctx, req, b.head);
399
400 return 0;
401 }
402
403 static int
404 netifd_iface_handle_device(struct ubus_context *ctx, struct ubus_object *obj,
405 struct ubus_request_data *req, const char *method,
406 struct blob_attr *msg)
407 {
408 struct blob_attr *tb[__DEV_MAX];
409 struct interface *iface;
410 struct device *dev;
411 bool add = !strncmp(method, "add", 3);
412 int ret;
413
414 iface = container_of(obj, struct interface, ubus);
415
416 blobmsg_parse(dev_policy, __DEV_MAX, tb, blob_data(msg), blob_len(msg));
417
418 if (!tb[DEV_NAME])
419 return UBUS_STATUS_INVALID_ARGUMENT;
420
421 device_lock();
422
423 dev = device_get(blobmsg_data(tb[DEV_NAME]), add ? 2 : 0);
424 if (add && !dev)
425 return UBUS_STATUS_NOT_FOUND;
426
427 if (add)
428 return interface_add_link(iface, dev);
429 else
430 return interface_remove_link(iface, dev);
431
432 device_unlock();
433
434 return ret;
435 }
436
437
438 static int
439 netifd_iface_notify_proto(struct ubus_context *ctx, struct ubus_object *obj,
440 struct ubus_request_data *req, const char *method,
441 struct blob_attr *msg)
442 {
443 struct interface *iface;
444
445 iface = container_of(obj, struct interface, ubus);
446
447 if (!iface->proto || !iface->proto->notify)
448 return UBUS_STATUS_NOT_SUPPORTED;
449
450 return iface->proto->notify(iface->proto, msg);
451 }
452
453 static void
454 netifd_iface_do_remove(struct uloop_timeout *timeout)
455 {
456 struct interface *iface;
457
458 iface = container_of(timeout, struct interface, remove_timer);
459 vlist_delete(&interfaces, &iface->node);
460 }
461
462 static int
463 netifd_iface_remove(struct ubus_context *ctx, struct ubus_object *obj,
464 struct ubus_request_data *req, const char *method,
465 struct blob_attr *msg)
466 {
467 struct interface *iface;
468
469 iface = container_of(obj, struct interface, ubus);
470 if (iface->remove_timer.cb)
471 return UBUS_STATUS_INVALID_ARGUMENT;
472
473 iface->remove_timer.cb = netifd_iface_do_remove;
474 uloop_timeout_set(&iface->remove_timer, 100);
475 return 0;
476 }
477
478 static int
479 netifd_handle_iface_prepare(struct ubus_context *ctx, struct ubus_object *obj,
480 struct ubus_request_data *req, const char *method,
481 struct blob_attr *msg)
482 {
483 struct interface *iface;
484 struct device *dev;
485 const struct device_hotplug_ops *ops;
486
487 iface = container_of(obj, struct interface, ubus);
488 dev = iface->main_dev.dev;
489 if (!dev)
490 return 0;
491
492 ops = dev->hotplug_ops;
493 if (!ops)
494 return 0;
495
496 return ops->prepare(dev);
497 }
498
499 static int
500 netifd_handle_set_data(struct ubus_context *ctx, struct ubus_object *obj,
501 struct ubus_request_data *req, const char *method,
502 struct blob_attr *msg)
503 {
504 struct interface *iface;
505 struct blob_attr *cur;
506 int rem, ret;
507
508 iface = container_of(obj, struct interface, ubus);
509
510 blob_for_each_attr(cur, msg, rem) {
511 ret = interface_add_data(iface, cur);
512 if (ret)
513 return ret;
514 }
515
516 return 0;
517 }
518
519 static struct ubus_method iface_object_methods[] = {
520 { .name = "up", .handler = netifd_handle_up },
521 { .name = "down", .handler = netifd_handle_down },
522 { .name = "status", .handler = netifd_handle_status },
523 { .name = "prepare", .handler = netifd_handle_iface_prepare },
524 UBUS_METHOD("add_device", netifd_iface_handle_device, dev_policy ),
525 UBUS_METHOD("remove_device", netifd_iface_handle_device, dev_policy ),
526 { .name = "notify_proto", .handler = netifd_iface_notify_proto },
527 { .name = "remove", .handler = netifd_iface_remove },
528 { .name = "set_data", .handler = netifd_handle_set_data },
529 };
530
531 static struct ubus_object_type iface_object_type =
532 UBUS_OBJECT_TYPE("netifd_iface", iface_object_methods);
533
534
535 void
536 netifd_ubus_interface_event(struct interface *iface, bool up)
537 {
538 blob_buf_init(&b, 0);
539 blobmsg_add_string(&b, "action", up ? "ifup" : "ifdown");
540 blobmsg_add_string(&b, "interface", iface->name);
541 ubus_send_event(ctx, "network.interface", b.head);
542 }
543
544 void
545 netifd_ubus_add_interface(struct interface *iface)
546 {
547 struct ubus_object *obj = &iface->ubus;
548 char *name = NULL;
549
550 asprintf(&name, "%s.interface.%s", main_object.name, iface->name);
551 if (!name)
552 return;
553
554 obj->name = name;
555 obj->type = &iface_object_type;
556 obj->methods = iface_object_methods;
557 obj->n_methods = ARRAY_SIZE(iface_object_methods);
558 if (ubus_add_object(ctx, &iface->ubus)) {
559 DPRINTF("failed to publish ubus object for interface '%s'\n", iface->name);
560 free(name);
561 obj->name = NULL;
562 }
563 }
564
565 void
566 netifd_ubus_remove_interface(struct interface *iface)
567 {
568 if (!iface->ubus.name)
569 return;
570
571 ubus_remove_object(ctx, &iface->ubus);
572 free((void *) iface->ubus.name);
573 }