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