Begin rewrite of NDP-relay
[project/odhcpd.git] / src / ubus.c
1 #include <syslog.h>
2 #include <libubus.h>
3 #include <libubox/uloop.h>
4 #include <arpa/inet.h>
5
6 #include "odhcpd.h"
7 #include "dhcpv6.h"
8 #include "dhcpv4.h"
9
10
11 static struct ubus_context *ubus = NULL;
12 static struct ubus_subscriber netifd;
13 static struct blob_buf b;
14 static struct blob_attr *dump = NULL;
15 static uint32_t objid = 0;
16 static struct ubus_request req_dump = { .list = LIST_HEAD_INIT(req_dump.list) };
17
18
19 static int handle_dhcpv4_leases(struct ubus_context *ctx, _unused struct ubus_object *obj,
20                 struct ubus_request_data *req, _unused const char *method,
21                 _unused struct blob_attr *msg)
22 {
23         blob_buf_init(&b, 0);
24         void *a = blobmsg_open_table(&b, "device");
25         time_t now = odhcpd_time();
26
27         struct interface *iface;
28         list_for_each_entry(iface, &interfaces, head) {
29                 if (iface->dhcpv4 != RELAYD_SERVER)
30                         continue;
31
32                 void *i = blobmsg_open_table(&b, iface->ifname);
33                 void *j = blobmsg_open_array(&b, "leases");
34
35                 struct dhcpv4_assignment *lease;
36                 list_for_each_entry(lease, &iface->dhcpv4_assignments, head) {
37                         if (lease->valid_until < now)
38                                 continue;
39
40                         void *l = blobmsg_open_table(&b, NULL);
41
42                         char *buf = blobmsg_alloc_string_buffer(&b, "mac", 13);
43                         odhcpd_hexlify(buf, lease->hwaddr, sizeof(lease->hwaddr));
44                         blobmsg_add_string_buffer(&b);
45
46                         blobmsg_add_string(&b, "hostname", lease->hostname);
47
48                         buf = blobmsg_alloc_string_buffer(&b, "ip", INET_ADDRSTRLEN);
49                         struct in_addr addr = {htonl(lease->addr)};
50                         inet_ntop(AF_INET, &addr, buf, INET_ADDRSTRLEN);
51                         blobmsg_add_string_buffer(&b);
52
53                         blobmsg_add_u32(&b, "valid", now - lease->valid_until);
54
55                         blobmsg_close_table(&b, l);
56                 }
57
58                 blobmsg_close_array(&b, j);
59                 blobmsg_close_table(&b, i);
60         }
61
62         blobmsg_close_table(&b, a);
63         ubus_send_reply(ctx, req, b.head);
64         return 0;
65 }
66
67
68 static int handle_dhcpv6_leases(_unused struct ubus_context *ctx, _unused struct ubus_object *obj,
69                 _unused struct ubus_request_data *req, _unused const char *method,
70                 _unused struct blob_attr *msg)
71 {
72         blob_buf_init(&b, 0);
73         void *a = blobmsg_open_table(&b, "device");
74         time_t now = odhcpd_time();
75
76         struct interface *iface;
77         list_for_each_entry(iface, &interfaces, head) {
78                 if (iface->dhcpv6 != RELAYD_SERVER)
79                         continue;
80
81                 void *i = blobmsg_open_table(&b, iface->ifname);
82                 void *j = blobmsg_open_array(&b, "leases");
83
84                 struct dhcpv6_assignment *lease;
85                 list_for_each_entry(lease, &iface->ia_assignments, head) {
86                         if (lease->valid_until < now)
87                                 continue;
88
89                         void *l = blobmsg_open_table(&b, NULL);
90
91                         char *buf = blobmsg_alloc_string_buffer(&b, "duid", 264);
92                         odhcpd_hexlify(buf, lease->clid_data, lease->clid_len);
93                         blobmsg_add_string_buffer(&b);
94
95                         blobmsg_add_u32(&b, "iaid", ntohl(lease->iaid));
96                         blobmsg_add_string(&b, "hostname", (lease->hostname) ? lease->hostname : "");
97                         blobmsg_add_u32(&b, "assigned", lease->assigned);
98                         blobmsg_add_u32(&b, "length", lease->length);
99
100                         void *m = blobmsg_open_array(&b, "ipv6");
101                         struct in6_addr addr;
102                         for (size_t i = 0; i < iface->ia_addr_len; ++i) {
103                                 if (iface->ia_addr[i].prefix > 64)
104                                         continue;
105
106                                 addr = iface->ia_addr[i].addr;
107                                 if (lease->length == 128)
108                                         addr.s6_addr32[3] = htonl(lease->assigned);
109                                 else
110                                         addr.s6_addr32[1] |= htonl(lease->assigned);
111
112                                 char *c = blobmsg_alloc_string_buffer(&b, NULL, INET6_ADDRSTRLEN);
113                                 inet_ntop(AF_INET6, &addr, c, INET6_ADDRSTRLEN);
114                                 blobmsg_add_string_buffer(&b);
115                         }
116                         blobmsg_close_table(&b, m);
117
118                         blobmsg_add_u32(&b, "valid", now - lease->valid_until);
119
120                         blobmsg_close_table(&b, l);
121                 }
122
123                 blobmsg_close_array(&b, j);
124                 blobmsg_close_table(&b, i);
125         }
126
127         blobmsg_close_table(&b, a);
128         ubus_send_reply(ctx, req, b.head);
129         return 0;
130 }
131
132
133 static struct ubus_method main_object_methods[] = {
134         {.name = "ipv4leases", .handler = handle_dhcpv4_leases},
135         {.name = "ipv6leases", .handler = handle_dhcpv6_leases},
136 };
137
138 static struct ubus_object_type main_object_type =
139                 UBUS_OBJECT_TYPE("dhcp", main_object_methods);
140
141 static struct ubus_object main_object = {
142         .name = "dhcp",
143         .type = &main_object_type,
144         .methods = main_object_methods,
145         .n_methods = ARRAY_SIZE(main_object_methods),
146 };
147
148
149 enum {
150         DUMP_ATTR_INTERFACE,
151         DUMP_ATTR_MAX
152 };
153
154 static const struct blobmsg_policy dump_attrs[DUMP_ATTR_MAX] = {
155         [DUMP_ATTR_INTERFACE] = { .name = "interface", .type = BLOBMSG_TYPE_ARRAY },
156 };
157
158
159 enum {
160         IFACE_ATTR_INTERFACE,
161         IFACE_ATTR_IFNAME,
162         IFACE_ATTR_UP,
163         IFACE_ATTR_DATA,
164         IFACE_ATTR_PREFIX,
165         IFACE_ATTR_ADDRESS,
166         IFACE_ATTR_MAX,
167 };
168
169 static const struct blobmsg_policy iface_attrs[IFACE_ATTR_MAX] = {
170         [IFACE_ATTR_INTERFACE] = { .name = "interface", .type = BLOBMSG_TYPE_STRING },
171         [IFACE_ATTR_IFNAME] = { .name = "l3_device", .type = BLOBMSG_TYPE_STRING },
172         [IFACE_ATTR_UP] = { .name = "up", .type = BLOBMSG_TYPE_BOOL },
173         [IFACE_ATTR_DATA] = { .name = "data", .type = BLOBMSG_TYPE_TABLE },
174         [IFACE_ATTR_PREFIX] = { .name = "ipv6-prefix", .type = BLOBMSG_TYPE_ARRAY },
175         [IFACE_ATTR_ADDRESS] = { .name = "ipv6-address", .type = BLOBMSG_TYPE_ARRAY },
176 };
177
178 static void handle_dump(_unused struct ubus_request *req, _unused int type, struct blob_attr *msg)
179 {
180         struct blob_attr *tb[DUMP_ATTR_MAX];
181         blobmsg_parse(dump_attrs, DUMP_ATTR_MAX, tb, blob_data(msg), blob_len(msg));
182
183         if (!tb[DUMP_ATTR_INTERFACE])
184                 return;
185
186         free(dump);
187         dump = blob_memdup(tb[DUMP_ATTR_INTERFACE]);
188         odhcpd_reload();
189 }
190
191
192 static void update_netifd(bool subscribe)
193 {
194         if (subscribe)
195                 ubus_subscribe(ubus, &netifd, objid);
196
197         ubus_abort_request(ubus, &req_dump);
198         if (!ubus_invoke_async(ubus, objid, "dump", NULL, &req_dump)) {
199                 req_dump.data_cb = handle_dump;
200                 ubus_complete_request_async(ubus, &req_dump);
201         }
202 }
203
204
205 static int handle_update(_unused struct ubus_context *ctx, _unused struct ubus_object *obj,
206                 _unused struct ubus_request_data *req, _unused const char *method,
207                 struct blob_attr *msg)
208 {
209         struct blob_attr *tb[IFACE_ATTR_MAX];
210         blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb, blob_data(msg), blob_len(msg));
211
212         const char *interface = (tb[IFACE_ATTR_INTERFACE]) ?
213                         blobmsg_get_string(tb[IFACE_ATTR_INTERFACE]) : "";
214         const char *ifname = (tb[IFACE_ATTR_IFNAME]) ?
215                         blobmsg_get_string(tb[IFACE_ATTR_IFNAME]) : "";
216
217         struct interface *c, *iface = NULL;
218         list_for_each_entry(c, &interfaces, head)
219                 if (!strcmp(interface, c->name) || !strcmp(ifname, c->ifname))
220                         iface = c;
221
222         if (iface && iface->ignore)
223                 return 0;
224
225         update_netifd(false);
226         return 0;
227 }
228
229
230 void ubus_apply_network(void)
231 {
232         struct blob_attr *a;
233         unsigned rem;
234
235         if (!dump)
236                 return;
237
238         blobmsg_for_each_attr(a, dump, rem) {
239                 struct blob_attr *tb[IFACE_ATTR_MAX];
240                 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb, blobmsg_data(a), blobmsg_data_len(a));
241
242                 if (!tb[IFACE_ATTR_INTERFACE] || !tb[IFACE_ATTR_DATA])
243                         continue;
244
245                 const char *interface = (tb[IFACE_ATTR_INTERFACE]) ?
246                                 blobmsg_get_string(tb[IFACE_ATTR_INTERFACE]) : "";
247                 const char *ifname = (tb[IFACE_ATTR_IFNAME]) ?
248                                 blobmsg_get_string(tb[IFACE_ATTR_IFNAME]) : "";
249
250                 bool matched = false;
251                 struct interface *c, *n;
252                 list_for_each_entry_safe(c, n, &interfaces, head) {
253                         char *f = memmem(c->upstream, c->upstream_len,
254                                         interface, strlen(interface) + 1);
255                         bool cmatched = !strcmp(interface, c->name) || !strcmp(ifname, c->ifname);
256                         matched |= cmatched;
257
258                         if (!cmatched && (!c->upstream_len || !f || (f != c->upstream && f[-1] != 0)))
259                                 continue;
260
261                         if (!c->ignore)
262                                 config_parse_interface(blobmsg_data(tb[IFACE_ATTR_DATA]),
263                                                 blobmsg_data_len(tb[IFACE_ATTR_DATA]), c->name, false);
264                 }
265
266                 if (!matched)
267                         config_parse_interface(blobmsg_data(tb[IFACE_ATTR_DATA]),
268                                         blobmsg_data_len(tb[IFACE_ATTR_DATA]), interface, false);
269         }
270 }
271
272
273 enum {
274         OBJ_ATTR_ID,
275         OBJ_ATTR_PATH,
276         OBJ_ATTR_MAX
277 };
278
279 static const struct blobmsg_policy obj_attrs[OBJ_ATTR_MAX] = {
280         [OBJ_ATTR_ID] = { .name = "id", .type = BLOBMSG_TYPE_INT32 },
281         [OBJ_ATTR_PATH] = { .name = "path", .type = BLOBMSG_TYPE_STRING },
282 };
283
284
285 static void handle_event(_unused struct ubus_context *ctx, _unused struct ubus_event_handler *ev,
286                 _unused const char *type, struct blob_attr *msg)
287 {
288         struct blob_attr *tb[OBJ_ATTR_MAX];
289         blobmsg_parse(obj_attrs, OBJ_ATTR_MAX, tb, blob_data(msg), blob_len(msg));
290
291         if (!tb[OBJ_ATTR_ID] || !tb[OBJ_ATTR_PATH])
292                 return;
293
294         if (strcmp(blobmsg_get_string(tb[OBJ_ATTR_PATH]), "network.interface"))
295                 return;
296
297         objid = blobmsg_get_u32(tb[OBJ_ATTR_ID]);
298         update_netifd(true);
299 }
300
301 static struct ubus_event_handler event_handler = { .cb = handle_event };
302
303
304 const char* ubus_get_ifname(const char *name)
305 {
306         struct blob_attr *c;
307         unsigned rem;
308
309         if (!dump)
310                 return NULL;
311
312         blobmsg_for_each_attr(c, dump, rem) {
313                 struct blob_attr *tb[IFACE_ATTR_MAX];
314                 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb, blobmsg_data(c), blobmsg_data_len(c));
315
316                 if (!tb[IFACE_ATTR_INTERFACE] || strcmp(name,
317                                 blobmsg_get_string(tb[IFACE_ATTR_INTERFACE])))
318                         continue;
319
320                 if (tb[IFACE_ATTR_IFNAME])
321                         return blobmsg_get_string(tb[IFACE_ATTR_IFNAME]);
322         }
323
324         return NULL;
325 }
326
327
328 bool ubus_has_prefix(const char *name, const char *ifname)
329 {
330         struct blob_attr *c, *cur;
331         unsigned rem;
332
333         if (!dump)
334                 return NULL;
335
336         blobmsg_for_each_attr(c, dump, rem) {
337                 struct blob_attr *tb[IFACE_ATTR_MAX];
338                 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb, blobmsg_data(c), blobmsg_data_len(c));
339
340                 if (!tb[IFACE_ATTR_INTERFACE] || !tb[IFACE_ATTR_IFNAME])
341                         continue;
342
343                 if (strcmp(name, blobmsg_get_string(tb[IFACE_ATTR_INTERFACE])) ||
344                                 strcmp(ifname, blobmsg_get_string(tb[IFACE_ATTR_IFNAME])))
345                         continue;
346
347                 if ((cur = tb[IFACE_ATTR_PREFIX])) {
348                         if (blobmsg_type(cur) != BLOBMSG_TYPE_ARRAY || !blobmsg_check_attr(cur, NULL))
349                                 continue;
350
351                         struct blob_attr *d;
352                         unsigned drem;
353                         blobmsg_for_each_attr(d, cur, drem) {
354                                 return true;
355                         }
356                 }
357         }
358
359         return false;
360 }
361
362
363 enum {
364         ADDR_ATTR_ADDR,
365         ADDR_ATTR_CLASS,
366         ADDR_ATTR_MAX
367 };
368
369 static const struct blobmsg_policy addr_attrs[ADDR_ATTR_MAX] = {
370         [ADDR_ATTR_ADDR] = { .name = "address", .type = BLOBMSG_TYPE_STRING },
371         [ADDR_ATTR_CLASS] = { .name = "class", .type = BLOBMSG_TYPE_STRING },
372 };
373
374 bool ubus_get_class(const char *ifname, const struct in6_addr *addr, uint16_t *pclass)
375 {
376         struct blob_attr *c, *cur;
377         unsigned rem;
378
379         if (!dump)
380                 return false;
381
382         blobmsg_for_each_attr(c, dump, rem) {
383                 struct blob_attr *tb[IFACE_ATTR_MAX];
384                 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb, blobmsg_data(c), blobmsg_data_len(c));
385
386                 if (!tb[IFACE_ATTR_IFNAME])
387                         continue;
388
389                 if (strcmp(ifname, blobmsg_get_string(tb[IFACE_ATTR_IFNAME])))
390                         continue;
391
392                 if ((cur = tb[IFACE_ATTR_ADDRESS])) {
393                         if (blobmsg_type(cur) != BLOBMSG_TYPE_ARRAY || !blobmsg_check_attr(cur, NULL))
394                                 continue;
395
396                         struct blob_attr *d;
397                         unsigned drem;
398                         blobmsg_for_each_attr(d, cur, drem) {
399                                 struct blob_attr *t[ADDR_ATTR_MAX];
400                                 blobmsg_parse(addr_attrs, ADDR_ATTR_MAX, t, blobmsg_data(d), blobmsg_data_len(d));
401
402                                 if (!t[ADDR_ATTR_ADDR] || !t[ADDR_ATTR_CLASS])
403                                         continue;
404
405                                 const char *addrs = blobmsg_get_string(t[ADDR_ATTR_ADDR]);
406                                 const char *class = blobmsg_get_string(t[ADDR_ATTR_CLASS]);
407
408                                 struct in6_addr ip6addr;
409                                 inet_pton(AF_INET6, addrs, &ip6addr);
410
411                                 if (IN6_ARE_ADDR_EQUAL(&ip6addr, addr)) {
412                                         *pclass = atoi(class);
413                                         return true;
414                                 }
415                         }
416                 }
417
418                 return false;
419         }
420
421         return false;
422 }
423
424
425 int init_ubus(void)
426 {
427         if (!(ubus = ubus_connect(NULL))) {
428                 syslog(LOG_ERR, "Unable to connect to ubus: %s", strerror(errno));
429                 return -1;
430         }
431
432         netifd.cb = handle_update;
433         ubus_register_subscriber(ubus, &netifd);
434
435         ubus_add_uloop(ubus);
436         ubus_add_object(ubus, &main_object);
437         ubus_register_event_handler(ubus, &event_handler, "ubus.object.add");
438         if (!ubus_lookup_id(ubus, "network.interface", &objid))
439                 update_netifd(true);
440
441         return 0;
442 }
443