Fix uci odhcpd config parsing
[project/odhcpd.git] / src / config.c
1 #include <fcntl.h>
2 #include <resolv.h>
3 #include <signal.h>
4 #include <arpa/inet.h>
5 #include <unistd.h>
6
7 #include <uci.h>
8 #include <uci_blob.h>
9
10 #include "odhcpd.h"
11
12 static struct blob_buf b;
13 static int reload_pipe[2];
14 struct list_head leases = LIST_HEAD_INIT(leases);
15 struct list_head interfaces = LIST_HEAD_INIT(interfaces);
16 struct config config = {false, NULL, NULL};
17
18 enum {
19 IFACE_ATTR_INTERFACE,
20 IFACE_ATTR_IFNAME,
21 IFACE_ATTR_NETWORKID,
22 IFACE_ATTR_DYNAMICDHCP,
23 IFACE_ATTR_IGNORE,
24 IFACE_ATTR_LEASETIME,
25 IFACE_ATTR_LIMIT,
26 IFACE_ATTR_START,
27 IFACE_ATTR_MASTER,
28 IFACE_ATTR_UPSTREAM,
29 IFACE_ATTR_RA,
30 IFACE_ATTR_DHCPV4,
31 IFACE_ATTR_DHCPV6,
32 IFACE_ATTR_NDP,
33 IFACE_ATTR_DNS,
34 IFACE_ATTR_DOMAIN,
35 IFACE_ATTR_ULA_COMPAT,
36 IFACE_ATTR_RA_DEFAULT,
37 IFACE_ATTR_RA_MANAGEMENT,
38 IFACE_ATTR_RA_OFFLINK,
39 IFACE_ATTR_RA_PREFERENCE,
40 IFACE_ATTR_NDPROXY_ROUTING,
41 IFACE_ATTR_NDPROXY_SLAVE,
42 IFACE_ATTR_NDPROXY_STATIC,
43 IFACE_ATTR_MAX
44 };
45
46 static const struct blobmsg_policy iface_attrs[IFACE_ATTR_MAX] = {
47 [IFACE_ATTR_INTERFACE] = { .name = "interface", .type = BLOBMSG_TYPE_STRING },
48 [IFACE_ATTR_IFNAME] = { .name = "ifname", .type = BLOBMSG_TYPE_STRING },
49 [IFACE_ATTR_NETWORKID] = { .name = "networkid", .type = BLOBMSG_TYPE_STRING },
50 [IFACE_ATTR_DYNAMICDHCP] = { .name = "dynamicdhcp", .type = BLOBMSG_TYPE_BOOL },
51 [IFACE_ATTR_IGNORE] = { .name = "ignore", .type = BLOBMSG_TYPE_BOOL },
52 [IFACE_ATTR_LEASETIME] = { .name = "leasetime", .type = BLOBMSG_TYPE_STRING },
53 [IFACE_ATTR_START] = { .name = "start", .type = BLOBMSG_TYPE_INT32 },
54 [IFACE_ATTR_LIMIT] = { .name = "limit", .type = BLOBMSG_TYPE_INT32 },
55 [IFACE_ATTR_MASTER] = { .name = "master", .type = BLOBMSG_TYPE_BOOL },
56 [IFACE_ATTR_UPSTREAM] = { .name = "upstream", .type = BLOBMSG_TYPE_ARRAY },
57 [IFACE_ATTR_RA] = { .name = "ra", .type = BLOBMSG_TYPE_STRING },
58 [IFACE_ATTR_DHCPV4] = { .name = "dhcpv4", .type = BLOBMSG_TYPE_STRING },
59 [IFACE_ATTR_DHCPV6] = { .name = "dhcpv6", .type = BLOBMSG_TYPE_STRING },
60 [IFACE_ATTR_NDP] = { .name = "ndp", .type = BLOBMSG_TYPE_STRING },
61 [IFACE_ATTR_DNS] = { .name = "dns", .type = BLOBMSG_TYPE_ARRAY },
62 [IFACE_ATTR_DOMAIN] = { .name = "domain", .type = BLOBMSG_TYPE_ARRAY },
63 [IFACE_ATTR_ULA_COMPAT] = { .name = "ula_compat", .type = BLOBMSG_TYPE_BOOL },
64 [IFACE_ATTR_RA_DEFAULT] = { .name = "ra_default", .type = BLOBMSG_TYPE_INT32 },
65 [IFACE_ATTR_RA_MANAGEMENT] = { .name = "ra_management", .type = BLOBMSG_TYPE_INT32 },
66 [IFACE_ATTR_RA_OFFLINK] = { .name = "ra_offlink", .type = BLOBMSG_TYPE_BOOL },
67 [IFACE_ATTR_RA_PREFERENCE] = { .name = "ra_preference", .type = BLOBMSG_TYPE_STRING },
68 [IFACE_ATTR_NDPROXY_ROUTING] = { .name = "ndproxy_routing", .type = BLOBMSG_TYPE_BOOL },
69 [IFACE_ATTR_NDPROXY_SLAVE] = { .name = "ndproxy_slave", .type = BLOBMSG_TYPE_BOOL },
70 [IFACE_ATTR_NDPROXY_STATIC] = { .name = "ndproxy_static", .type = BLOBMSG_TYPE_ARRAY },
71 };
72
73 static const struct uci_blob_param_info iface_attr_info[IFACE_ATTR_MAX] = {
74 [IFACE_ATTR_UPSTREAM] = { .type = BLOBMSG_TYPE_STRING },
75 [IFACE_ATTR_DNS] = { .type = BLOBMSG_TYPE_STRING },
76 [IFACE_ATTR_DOMAIN] = { .type = BLOBMSG_TYPE_STRING },
77 [IFACE_ATTR_NDPROXY_STATIC] = { .type = BLOBMSG_TYPE_STRING },
78 };
79
80 const struct uci_blob_param_list interface_attr_list = {
81 .n_params = IFACE_ATTR_MAX,
82 .params = iface_attrs,
83 .info = iface_attr_info,
84 };
85
86
87 enum {
88 LEASE_ATTR_IP,
89 LEASE_ATTR_MAC,
90 LEASE_ATTR_DUID,
91 LEASE_ATTR_HOSTID,
92 LEASE_ATTR_HOSTNAME,
93 LEASE_ATTR_MAX
94 };
95
96
97 static const struct blobmsg_policy lease_attrs[LEASE_ATTR_MAX] = {
98 [LEASE_ATTR_IP] = { .name = "ip", .type = BLOBMSG_TYPE_STRING },
99 [LEASE_ATTR_MAC] = { .name = "mac", .type = BLOBMSG_TYPE_STRING },
100 [LEASE_ATTR_DUID] = { .name = "duid", .type = BLOBMSG_TYPE_STRING },
101 [LEASE_ATTR_HOSTID] = { .name = "hostid", .type = BLOBMSG_TYPE_STRING },
102 [LEASE_ATTR_HOSTNAME] = { .name = "hostname", .type = BLOBMSG_TYPE_STRING },
103 };
104
105
106 const struct uci_blob_param_list lease_attr_list = {
107 .n_params = LEASE_ATTR_MAX,
108 .params = lease_attrs,
109 };
110
111
112 enum {
113 ODHCPD_ATTR_LEGACY,
114 ODHCPD_ATTR_LEASEFILE,
115 ODHCPD_ATTR_LEASETRIGGER,
116 ODHCPD_ATTR_MAX
117 };
118
119
120 static const struct blobmsg_policy odhcpd_attrs[LEASE_ATTR_MAX] = {
121 [ODHCPD_ATTR_LEGACY] = { .name = "legacy", .type = BLOBMSG_TYPE_BOOL },
122 [ODHCPD_ATTR_LEASEFILE] = { .name = "leasefile", .type = BLOBMSG_TYPE_STRING },
123 [ODHCPD_ATTR_LEASETRIGGER] = { .name = "leasetrigger", .type = BLOBMSG_TYPE_STRING },
124 };
125
126
127 const struct uci_blob_param_list odhcpd_attr_list = {
128 .n_params = ODHCPD_ATTR_MAX,
129 .params = odhcpd_attrs,
130 };
131
132
133 static struct interface* get_interface(const char *name)
134 {
135 struct interface *c;
136 list_for_each_entry(c, &interfaces, head)
137 if (!strcmp(c->name, name))
138 return c;
139 return NULL;
140 }
141
142
143 static void clean_interface(struct interface *iface)
144 {
145 free(iface->dns);
146 free(iface->search);
147 free(iface->upstream);
148 free(iface->static_ndp);
149 free(iface->dhcpv4_dns);
150 memset(&iface->ra, 0, sizeof(*iface) - offsetof(struct interface, ra));
151 }
152
153
154 static void close_interface(struct interface *iface)
155 {
156 if (iface->head.next)
157 list_del(&iface->head);
158
159 setup_router_interface(iface, false);
160 setup_dhcpv6_interface(iface, false);
161 setup_ndp_interface(iface, false);
162 setup_dhcpv4_interface(iface, false);
163
164 clean_interface(iface);
165 free(iface);
166 }
167
168
169 static int parse_mode(const char *mode)
170 {
171 if (!strcmp(mode, "disabled")) {
172 return RELAYD_DISABLED;
173 } else if (!strcmp(mode, "server")) {
174 return RELAYD_SERVER;
175 } else if (!strcmp(mode, "relay")) {
176 return RELAYD_RELAY;
177 } else if (!strcmp(mode, "hybrid")) {
178 return RELAYD_HYBRID;
179 } else {
180 return -1;
181 }
182 }
183
184
185 static void set_config(struct uci_section *s)
186 {
187 struct blob_attr *tb[ODHCPD_ATTR_MAX], *c;
188
189 blob_buf_init(&b, 0);
190 uci_to_blob(&b, s, &odhcpd_attr_list);
191 blobmsg_parse(odhcpd_attrs, ODHCPD_ATTR_MAX, tb, blob_data(b.head), blob_len(b.head));
192
193 if ((c = tb[ODHCPD_ATTR_LEGACY]))
194 config.legacy = blobmsg_get_bool(c);
195
196 if ((c = tb[ODHCPD_ATTR_LEASEFILE])) {
197 free(config.dhcp_statefile);
198 config.dhcp_statefile = strdup(blobmsg_get_string(c));
199 }
200
201 if ((c = tb[ODHCPD_ATTR_LEASETRIGGER])) {
202 free(config.dhcp_cb);
203 config.dhcp_cb = strdup(blobmsg_get_string(c));
204 }
205 }
206
207
208 static int set_lease(struct uci_section *s)
209 {
210 struct blob_attr *tb[LEASE_ATTR_MAX], *c;
211
212 blob_buf_init(&b, 0);
213 uci_to_blob(&b, s, &lease_attr_list);
214 blobmsg_parse(lease_attrs, LEASE_ATTR_MAX, tb, blob_data(b.head), blob_len(b.head));
215
216 size_t hostlen = 1;
217 if ((c = tb[LEASE_ATTR_HOSTNAME]))
218 hostlen = blobmsg_data_len(c);
219
220 struct lease *lease = calloc(1, sizeof(*lease) + hostlen);
221
222 if (hostlen > 1)
223 memcpy(lease->hostname, blobmsg_get_string(c), hostlen);
224
225 if ((c = tb[LEASE_ATTR_IP]))
226 if (inet_pton(AF_INET, blobmsg_get_string(c), &lease->ipaddr) < 0)
227 goto err;
228
229 if ((c = tb[LEASE_ATTR_MAC]))
230 if (!ether_aton_r(blobmsg_get_string(c), &lease->mac))
231 goto err;
232
233 if ((c = tb[LEASE_ATTR_DUID])) {
234 size_t duidlen = (blobmsg_data_len(c) - 1) / 2;
235 lease->duid = malloc(duidlen);
236 ssize_t len = odhcpd_unhexlify(lease->duid,
237 duidlen, blobmsg_get_string(c));
238
239 if (len < 0)
240 goto err;
241
242 lease->duid_len = len;
243 }
244
245 if ((c = tb[LEASE_ATTR_HOSTID]))
246 if (odhcpd_unhexlify((uint8_t*)&lease->hostid, sizeof(lease->hostid),
247 blobmsg_get_string(c)) < 0)
248 goto err;
249
250 list_add(&lease->head, &leases);
251 return 0;
252
253 err:
254 free(lease->duid);
255 free(lease);
256 return -1;
257 }
258
259
260 int config_parse_interface(void *data, size_t len, const char *name, bool overwrite)
261 {
262 struct blob_attr *tb[IFACE_ATTR_MAX], *c;
263 blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb, data, len);
264
265 if (tb[IFACE_ATTR_INTERFACE])
266 name = blobmsg_get_string(tb[IFACE_ATTR_INTERFACE]);
267
268 if (!name)
269 return -1;
270
271 struct interface *iface = get_interface(name);
272 if (!iface) {
273 iface = calloc(1, sizeof(*iface));
274 strncpy(iface->name, name, sizeof(iface->name) - 1);
275 list_add(&iface->head, &interfaces);
276 }
277
278 const char *ifname = NULL;
279 #ifdef WITH_UBUS
280 if (overwrite || !iface->ifname[0])
281 ifname = ubus_get_ifname(name);
282 #endif
283
284 if (overwrite) {
285 if ((c = tb[IFACE_ATTR_IFNAME]))
286 ifname = blobmsg_get_string(c);
287 else if ((c = tb[IFACE_ATTR_NETWORKID]))
288 ifname = blobmsg_get_string(c);
289 }
290
291 if (!iface->ifname[0] && !ifname)
292 return -1;
293
294 if (ifname)
295 strncpy(iface->ifname, ifname, sizeof(iface->ifname) - 1);
296
297 iface->inuse = true;
298
299 if ((c = tb[IFACE_ATTR_DYNAMICDHCP]))
300 iface->no_dynamic_dhcp = !blobmsg_get_bool(c);
301
302 if (overwrite && (c = tb[IFACE_ATTR_IGNORE]))
303 iface->ignore = blobmsg_get_bool(c);
304
305 if ((c = tb[IFACE_ATTR_LEASETIME])) {
306 char *val = blobmsg_get_string(c), *endptr;
307 double time = strtod(val, &endptr);
308 if (time && endptr[0]) {
309 if (endptr[0] == 's')
310 time *= 1;
311 else if (endptr[0] == 'm')
312 time *= 60;
313 else if (endptr[0] == 'h')
314 time *= 3600;
315 else if (endptr[0] == 'd')
316 time *= 24 * 3600;
317 else if (endptr[0] == 'w')
318 time *= 7 * 24 * 3600;
319 else
320 goto err;
321 }
322
323 if (time >= 60)
324 iface->dhcpv4_leasetime = time;
325 }
326
327 if ((c = tb[IFACE_ATTR_START])) {
328 iface->dhcpv4_start.s_addr = htonl(blobmsg_get_u32(c));
329
330 if (config.legacy)
331 iface->dhcpv4 = RELAYD_SERVER;
332 }
333
334 if ((c = tb[IFACE_ATTR_LIMIT]))
335 iface->dhcpv4_end.s_addr = htonl(
336 ntohl(iface->dhcpv4_start.s_addr) + blobmsg_get_u32(c));
337
338 if ((c = tb[IFACE_ATTR_MASTER]))
339 iface->master = blobmsg_get_bool(c);
340
341 if (overwrite && (c = tb[IFACE_ATTR_UPSTREAM])) {
342 struct blob_attr *cur;
343 unsigned rem;
344
345 blobmsg_for_each_attr(cur, c, rem) {
346 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING || !blobmsg_check_attr(cur, NULL))
347 continue;
348
349 iface->upstream = realloc(iface->upstream,
350 iface->upstream_len + blobmsg_data_len(cur));
351 memcpy(iface->upstream + iface->upstream_len, blobmsg_get_string(cur), blobmsg_data_len(cur));
352 iface->upstream_len += blobmsg_data_len(cur);
353 }
354 }
355
356 int mode;
357 if ((c = tb[IFACE_ATTR_RA])) {
358 if ((mode = parse_mode(blobmsg_get_string(c))) >= 0)
359 iface->ra = mode;
360 else
361 goto err;
362 }
363
364 if ((c = tb[IFACE_ATTR_DHCPV4])) {
365 if ((mode = parse_mode(blobmsg_get_string(c))) >= 0)
366 iface->dhcpv4 = mode;
367 else
368 goto err;
369 }
370
371 if ((c = tb[IFACE_ATTR_DHCPV6])) {
372 if ((mode = parse_mode(blobmsg_get_string(c))) >= 0)
373 iface->dhcpv6 = mode;
374 else
375 goto err;
376 }
377
378 if ((c = tb[IFACE_ATTR_NDP])) {
379 if ((mode = parse_mode(blobmsg_get_string(c))) >= 0)
380 iface->ndp = mode;
381 else
382 goto err;
383 }
384
385 if ((c = tb[IFACE_ATTR_DNS])) {
386 struct blob_attr *cur;
387 unsigned rem;
388
389 iface->always_rewrite_dns = true;
390 blobmsg_for_each_attr(cur, c, rem) {
391 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING || !blobmsg_check_attr(cur, NULL))
392 continue;
393
394 struct in_addr addr4;
395 struct in6_addr addr6;
396 if (inet_pton(AF_INET, blobmsg_get_string(cur), &addr4) == 1) {
397 iface->dhcpv4_dns = realloc(iface->dhcpv4_dns,
398 (++iface->dhcpv4_dns_cnt) * sizeof(*iface->dhcpv4_dns));
399 iface->dhcpv4_dns[iface->dhcpv4_dns_cnt - 1] = addr4;
400 } else if (inet_pton(AF_INET6, blobmsg_get_string(cur), &addr6) == 1) {
401 iface->dns = realloc(iface->dns,
402 (++iface->dns_cnt) * sizeof(*iface->dns));
403 iface->dns[iface->dns_cnt - 1] = addr6;
404 } else {
405 goto err;
406 }
407 }
408 }
409
410 if ((c = tb[IFACE_ATTR_DOMAIN])) {
411 struct blob_attr *cur;
412 unsigned rem;
413
414 blobmsg_for_each_attr(cur, c, rem) {
415 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING || !blobmsg_check_attr(cur, NULL))
416 continue;
417
418 uint8_t buf[256];
419 int len = dn_comp(blobmsg_get_string(cur), buf, sizeof(buf), NULL, NULL);
420 if (len <= 0)
421 goto err;
422
423 iface->search = realloc(iface->search, iface->search_len + len);
424 memcpy(&iface->search[iface->search_len], buf, len);
425 iface->search_len += len;
426 }
427 }
428
429 if ((c = tb[IFACE_ATTR_ULA_COMPAT]))
430 iface->deprecate_ula_if_public_avail = blobmsg_get_bool(c);
431
432 if ((c = tb[IFACE_ATTR_RA_DEFAULT]))
433 iface->default_router = blobmsg_get_u32(c);
434
435 if ((c = tb[IFACE_ATTR_RA_MANAGEMENT]))
436 iface->managed = blobmsg_get_u32(c);
437
438 if ((c = tb[IFACE_ATTR_RA_OFFLINK]))
439 iface->ra_not_onlink = blobmsg_get_bool(c);
440
441 if ((c = tb[IFACE_ATTR_RA_PREFERENCE])) {
442 const char *prio = blobmsg_get_string(c);
443
444 if (!strcmp(prio, "high"))
445 iface->route_preference = 1;
446 else if (!strcmp(prio, "low"))
447 iface->route_preference = -1;
448 else if (!strcmp(prio, "medium") || !strcmp(prio, "default"))
449 iface->route_preference = 0;
450 else
451 goto err;
452 }
453
454 if ((c = tb[IFACE_ATTR_NDPROXY_ROUTING]))
455 iface->learn_routes = blobmsg_get_bool(c);
456
457 if ((c = tb[IFACE_ATTR_NDPROXY_SLAVE]))
458 iface->external = blobmsg_get_bool(c);
459
460 if ((c = tb[IFACE_ATTR_NDPROXY_STATIC])) {
461 struct blob_attr *cur;
462 unsigned rem;
463
464 blobmsg_for_each_attr(cur, c, rem) {
465 if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING || !blobmsg_check_attr(cur, NULL))
466 continue;
467
468 int len = blobmsg_data_len(cur);
469 iface->static_ndp = realloc(iface->static_ndp, iface->static_ndp_len + len);
470 memcpy(&iface->static_ndp[iface->static_ndp_len], blobmsg_get_string(cur), len);
471 iface->static_ndp_len += len;
472 }
473 }
474
475 iface->ignore = (iface->ifindex = if_nametoindex(iface->ifname)) < 0;
476 return 0;
477
478 err:
479 close_interface(iface);
480 return -1;
481 }
482
483 static int set_interface(struct uci_section *s)
484 {
485 blob_buf_init(&b, 0);
486 uci_to_blob(&b, s, &interface_attr_list);
487 return config_parse_interface(blob_data(b.head), blob_len(b.head), s->e.name, true);
488 }
489
490
491 void odhcpd_reload(void)
492 {
493 struct uci_context *uci = uci_alloc_context();
494 struct lease *l;
495 list_for_each_entry(l, &leases, head) {
496 list_del(&l->head);
497 free(l->duid);
498 free(l);
499 }
500
501 struct interface *master = NULL, *i, *n;
502 list_for_each_entry(i, &interfaces, head)
503 clean_interface(i);
504
505 struct uci_package *dhcp = NULL;
506 if (!uci_load(uci, "dhcp", &dhcp)) {
507 struct uci_element *e;
508 uci_foreach_element(&dhcp->sections, e) {
509 struct uci_section *s = uci_to_section(e);
510 if (!strcmp(s->type, "lease"))
511 set_lease(s);
512 else if (!strcmp(s->type, "odhcpd"))
513 set_config(s);
514 }
515
516 uci_foreach_element(&dhcp->sections, e) {
517 struct uci_section *s = uci_to_section(e);
518 if (!strcmp(s->type, "dhcp"))
519 set_interface(s);
520 }
521 }
522
523
524 #ifdef WITH_UBUS
525 ubus_apply_network();
526 #endif
527
528 // Evaluate hybrid mode for master
529 list_for_each_entry(i, &interfaces, head) {
530 if (!i->master)
531 continue;
532
533 enum odhcpd_mode hybrid_mode = RELAYD_DISABLED;
534 #ifdef WITH_UBUS
535 if (ubus_has_prefix(i->name, i->ifname))
536 hybrid_mode = RELAYD_RELAY;
537 #endif
538
539 if (i->dhcpv6 == RELAYD_HYBRID)
540 i->dhcpv6 = hybrid_mode;
541
542 if (i->ra == RELAYD_HYBRID)
543 i->ra = hybrid_mode;
544
545 if (i->ndp == RELAYD_HYBRID)
546 i->ndp = hybrid_mode;
547
548 if (i->dhcpv6 == RELAYD_RELAY || i->ra == RELAYD_RELAY || i->ndp == RELAYD_RELAY)
549 master = i;
550 }
551
552
553 list_for_each_entry_safe(i, n, &interfaces, head) {
554 if (i->inuse) {
555 // Resolve hybrid mode
556 if (i->dhcpv6 == RELAYD_HYBRID)
557 i->dhcpv6 = (master && master->dhcpv6 == RELAYD_RELAY) ?
558 RELAYD_RELAY : RELAYD_SERVER;
559
560 if (i->ra == RELAYD_HYBRID)
561 i->ra = (master && master->ra == RELAYD_RELAY) ?
562 RELAYD_RELAY : RELAYD_SERVER;
563
564 if (i->ndp == RELAYD_HYBRID)
565 i->ndp = (master && master->ndp == RELAYD_RELAY) ?
566 RELAYD_RELAY : RELAYD_SERVER;
567
568 setup_router_interface(i, true);
569 setup_dhcpv6_interface(i, true);
570 setup_ndp_interface(i, true);
571 setup_dhcpv4_interface(i, true);
572 } else {
573 close_interface(i);
574 }
575 }
576
577 uci_unload(uci, dhcp);
578 uci_free_context(uci);
579 }
580
581
582 static void handle_signal(int signal)
583 {
584 char b[1] = {0};
585 if (signal == SIGHUP)
586 write(reload_pipe[1], b, sizeof(b));
587 else
588 uloop_end();
589 }
590
591
592
593 static void reload_cb(struct uloop_fd *u, _unused unsigned int events)
594 {
595 char b[512];
596 read(u->fd, b, sizeof(b));
597 odhcpd_reload();
598 }
599
600 static struct uloop_fd reload_fd = { .cb = reload_cb };
601
602 void odhcpd_run(void)
603 {
604 pipe2(reload_pipe, O_NONBLOCK | O_CLOEXEC);
605 reload_fd.fd = reload_pipe[0];
606 uloop_fd_add(&reload_fd, ULOOP_READ);
607
608 signal(SIGTERM, handle_signal);
609 signal(SIGINT, handle_signal);
610 signal(SIGHUP, handle_signal);
611
612 #ifdef WITH_UBUS
613 while (init_ubus())
614 sleep(1);
615 #endif
616
617 odhcpd_reload();
618 uloop_run();
619 }
620