Revert "CMakeLists: fix label mismatch"
[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 #include <libgen.h>
7 #include <string.h>
8 #include <sys/stat.h>
9 #include <syslog.h>
10
11 #include <uci.h>
12 #include <uci_blob.h>
13
14 #include "odhcpd.h"
15
16 static struct blob_buf b;
17 static int reload_pipe[2];
18 struct list_head leases = LIST_HEAD_INIT(leases);
19 struct list_head interfaces = LIST_HEAD_INIT(interfaces);
20 struct config config = {.legacy = false, .main_dhcpv4 = false,
21                         .dhcp_cb = NULL, .dhcp_statefile = NULL,
22                         .log_level = LOG_INFO};
23
24 enum {
25         IFACE_ATTR_INTERFACE,
26         IFACE_ATTR_IFNAME,
27         IFACE_ATTR_NETWORKID,
28         IFACE_ATTR_DYNAMICDHCP,
29         IFACE_ATTR_IGNORE,
30         IFACE_ATTR_LEASETIME,
31         IFACE_ATTR_LIMIT,
32         IFACE_ATTR_START,
33         IFACE_ATTR_MASTER,
34         IFACE_ATTR_UPSTREAM,
35         IFACE_ATTR_RA,
36         IFACE_ATTR_DHCPV4,
37         IFACE_ATTR_DHCPV6,
38         IFACE_ATTR_NDP,
39         IFACE_ATTR_ROUTER,
40         IFACE_ATTR_DNS,
41         IFACE_ATTR_DOMAIN,
42         IFACE_ATTR_FILTER_CLASS,
43         IFACE_ATTR_DHCPV6_RAW,
44         IFACE_ATTR_DHCPV6_ASSIGNALL,
45         IFACE_ATTR_RA_DEFAULT,
46         IFACE_ATTR_RA_MANAGEMENT,
47         IFACE_ATTR_RA_OFFLINK,
48         IFACE_ATTR_RA_PREFERENCE,
49         IFACE_ATTR_RA_ADVROUTER,
50         IFACE_ATTR_RA_MININTERVAL,
51         IFACE_ATTR_RA_MAXINTERVAL,
52         IFACE_ATTR_RA_LIFETIME,
53         IFACE_ATTR_RA_USELEASETIME,
54         IFACE_ATTR_PD_MANAGER,
55         IFACE_ATTR_PD_CER,
56         IFACE_ATTR_NDPROXY_ROUTING,
57         IFACE_ATTR_NDPROXY_SLAVE,
58         IFACE_ATTR_MAX
59 };
60
61 static const struct blobmsg_policy iface_attrs[IFACE_ATTR_MAX] = {
62         [IFACE_ATTR_INTERFACE] = { .name = "interface", .type = BLOBMSG_TYPE_STRING },
63         [IFACE_ATTR_IFNAME] = { .name = "ifname", .type = BLOBMSG_TYPE_STRING },
64         [IFACE_ATTR_NETWORKID] = { .name = "networkid", .type = BLOBMSG_TYPE_STRING },
65         [IFACE_ATTR_DYNAMICDHCP] = { .name = "dynamicdhcp", .type = BLOBMSG_TYPE_BOOL },
66         [IFACE_ATTR_IGNORE] = { .name = "ignore", .type = BLOBMSG_TYPE_BOOL },
67         [IFACE_ATTR_LEASETIME] = { .name = "leasetime", .type = BLOBMSG_TYPE_STRING },
68         [IFACE_ATTR_START] = { .name = "start", .type = BLOBMSG_TYPE_INT32 },
69         [IFACE_ATTR_LIMIT] = { .name = "limit", .type = BLOBMSG_TYPE_INT32 },
70         [IFACE_ATTR_MASTER] = { .name = "master", .type = BLOBMSG_TYPE_BOOL },
71         [IFACE_ATTR_UPSTREAM] = { .name = "upstream", .type = BLOBMSG_TYPE_ARRAY },
72         [IFACE_ATTR_RA] = { .name = "ra", .type = BLOBMSG_TYPE_STRING },
73         [IFACE_ATTR_DHCPV4] = { .name = "dhcpv4", .type = BLOBMSG_TYPE_STRING },
74         [IFACE_ATTR_DHCPV6] = { .name = "dhcpv6", .type = BLOBMSG_TYPE_STRING },
75         [IFACE_ATTR_NDP] = { .name = "ndp", .type = BLOBMSG_TYPE_STRING },
76         [IFACE_ATTR_ROUTER] = { .name = "router", .type = BLOBMSG_TYPE_ARRAY },
77         [IFACE_ATTR_DNS] = { .name = "dns", .type = BLOBMSG_TYPE_ARRAY },
78         [IFACE_ATTR_DOMAIN] = { .name = "domain", .type = BLOBMSG_TYPE_ARRAY },
79         [IFACE_ATTR_FILTER_CLASS] = { .name = "filter_class", .type = BLOBMSG_TYPE_STRING },
80         [IFACE_ATTR_DHCPV6_RAW] = { .name = "dhcpv6_raw", .type = BLOBMSG_TYPE_STRING },
81         [IFACE_ATTR_DHCPV6_ASSIGNALL] = { .name ="dhcpv6_assignall", .type = BLOBMSG_TYPE_BOOL },
82         [IFACE_ATTR_PD_MANAGER] = { .name = "pd_manager", .type = BLOBMSG_TYPE_STRING },
83         [IFACE_ATTR_PD_CER] = { .name = "pd_cer", .type = BLOBMSG_TYPE_STRING },
84         [IFACE_ATTR_RA_DEFAULT] = { .name = "ra_default", .type = BLOBMSG_TYPE_INT32 },
85         [IFACE_ATTR_RA_MANAGEMENT] = { .name = "ra_management", .type = BLOBMSG_TYPE_INT32 },
86         [IFACE_ATTR_RA_OFFLINK] = { .name = "ra_offlink", .type = BLOBMSG_TYPE_BOOL },
87         [IFACE_ATTR_RA_PREFERENCE] = { .name = "ra_preference", .type = BLOBMSG_TYPE_STRING },
88         [IFACE_ATTR_RA_ADVROUTER] = { .name = "ra_advrouter", .type = BLOBMSG_TYPE_BOOL },
89         [IFACE_ATTR_RA_MININTERVAL] = { .name = "ra_mininterval", .type = BLOBMSG_TYPE_INT32 },
90         [IFACE_ATTR_RA_MAXINTERVAL] = { .name = "ra_maxinterval", .type = BLOBMSG_TYPE_INT32 },
91         [IFACE_ATTR_RA_LIFETIME] = { .name = "ra_lifetime", .type = BLOBMSG_TYPE_INT32 },
92         [IFACE_ATTR_RA_USELEASETIME] = { .name = "ra_useleasetime", .type = BLOBMSG_TYPE_BOOL },
93         [IFACE_ATTR_NDPROXY_ROUTING] = { .name = "ndproxy_routing", .type = BLOBMSG_TYPE_BOOL },
94         [IFACE_ATTR_NDPROXY_SLAVE] = { .name = "ndproxy_slave", .type = BLOBMSG_TYPE_BOOL },
95 };
96
97 static const struct uci_blob_param_info iface_attr_info[IFACE_ATTR_MAX] = {
98         [IFACE_ATTR_UPSTREAM] = { .type = BLOBMSG_TYPE_STRING },
99         [IFACE_ATTR_DNS] = { .type = BLOBMSG_TYPE_STRING },
100         [IFACE_ATTR_DOMAIN] = { .type = BLOBMSG_TYPE_STRING },
101 };
102
103 const struct uci_blob_param_list interface_attr_list = {
104         .n_params = IFACE_ATTR_MAX,
105         .params = iface_attrs,
106         .info = iface_attr_info,
107 };
108
109 enum {
110         LEASE_ATTR_IP,
111         LEASE_ATTR_MAC,
112         LEASE_ATTR_DUID,
113         LEASE_ATTR_HOSTID,
114         LEASE_ATTR_LEASETIME,
115         LEASE_ATTR_NAME,
116         LEASE_ATTR_MAX
117 };
118
119 static const struct blobmsg_policy lease_attrs[LEASE_ATTR_MAX] = {
120         [LEASE_ATTR_IP] = { .name = "ip", .type = BLOBMSG_TYPE_STRING },
121         [LEASE_ATTR_MAC] = { .name = "mac", .type = BLOBMSG_TYPE_STRING },
122         [LEASE_ATTR_DUID] = { .name = "duid", .type = BLOBMSG_TYPE_STRING },
123         [LEASE_ATTR_HOSTID] = { .name = "hostid", .type = BLOBMSG_TYPE_STRING },
124         [LEASE_ATTR_LEASETIME] = { .name = "leasetime", .type = BLOBMSG_TYPE_STRING },
125         [LEASE_ATTR_NAME] = { .name = "name", .type = BLOBMSG_TYPE_STRING },
126 };
127
128 const struct uci_blob_param_list lease_attr_list = {
129         .n_params = LEASE_ATTR_MAX,
130         .params = lease_attrs,
131 };
132
133 enum {
134         ODHCPD_ATTR_LEGACY,
135         ODHCPD_ATTR_MAINDHCP,
136         ODHCPD_ATTR_LEASEFILE,
137         ODHCPD_ATTR_LEASETRIGGER,
138         ODHCPD_ATTR_LOGLEVEL,
139         ODHCPD_ATTR_MAX
140 };
141
142 static const struct blobmsg_policy odhcpd_attrs[LEASE_ATTR_MAX] = {
143         [ODHCPD_ATTR_LEGACY] = { .name = "legacy", .type = BLOBMSG_TYPE_BOOL },
144         [ODHCPD_ATTR_MAINDHCP] = { .name = "maindhcp", .type = BLOBMSG_TYPE_BOOL },
145         [ODHCPD_ATTR_LEASEFILE] = { .name = "leasefile", .type = BLOBMSG_TYPE_STRING },
146         [ODHCPD_ATTR_LEASETRIGGER] = { .name = "leasetrigger", .type = BLOBMSG_TYPE_STRING },
147         [ODHCPD_ATTR_LOGLEVEL] = { .name = "loglevel", .type = BLOBMSG_TYPE_INT32 },
148 };
149
150 const struct uci_blob_param_list odhcpd_attr_list = {
151         .n_params = ODHCPD_ATTR_MAX,
152         .params = odhcpd_attrs,
153 };
154
155 static int mkdir_p(char *dir, mode_t mask)
156 {
157         char *l = strrchr(dir, '/');
158         int ret;
159
160         if (!l)
161                 return 0;
162
163         *l = '\0';
164
165         if (mkdir_p(dir, mask))
166                 return -1;
167
168         *l = '/';
169
170         ret = mkdir(dir, mask);
171         if (ret && errno == EEXIST)
172                 return 0;
173
174         if (ret)
175                 syslog(LOG_ERR, "mkdir(%s, %d) failed: %s\n", dir, mask, strerror(errno));
176
177         return ret;
178 }
179
180 static void free_lease(struct lease *l)
181 {
182         if (l->head.next)
183                 list_del(&l->head);
184
185         free(l->duid);
186         free(l);
187 }
188
189 static struct interface* get_interface(const char *name)
190 {
191         struct interface *c;
192         list_for_each_entry(c, &interfaces, head)
193                 if (!strcmp(c->name, name))
194                         return c;
195         return NULL;
196 }
197
198 static void set_interface_defaults(struct interface *iface)
199 {
200         iface->managed = 1;
201         iface->learn_routes = 1;
202         iface->dhcpv4_leasetime = 43200;
203         iface->dhcpv6_assignall = true;
204         iface->ra_maxinterval = 600;
205         iface->ra_mininterval = iface->ra_maxinterval/3;
206         iface->ra_lifetime = -1;
207 }
208
209 static void clean_interface(struct interface *iface)
210 {
211         free(iface->dns);
212         free(iface->search);
213         free(iface->upstream);
214         free(iface->dhcpv4_router);
215         free(iface->dhcpv4_dns);
216         free(iface->dhcpv6_raw);
217         free(iface->filter_class);
218         memset(&iface->ra, 0, sizeof(*iface) - offsetof(struct interface, ra));
219         set_interface_defaults(iface);
220 }
221
222 static void close_interface(struct interface *iface)
223 {
224         if (iface->head.next)
225                 list_del(&iface->head);
226
227         setup_router_interface(iface, false);
228         setup_dhcpv6_interface(iface, false);
229         setup_ndp_interface(iface, false);
230 #ifdef DHCPV4_SUPPORT
231         setup_dhcpv4_interface(iface, false);
232 #endif
233
234         clean_interface(iface);
235         free(iface);
236 }
237
238 static int parse_mode(const char *mode)
239 {
240         if (!strcmp(mode, "disabled"))
241                 return RELAYD_DISABLED;
242         else if (!strcmp(mode, "server"))
243                 return RELAYD_SERVER;
244         else if (!strcmp(mode, "relay"))
245                 return RELAYD_RELAY;
246         else if (!strcmp(mode, "hybrid"))
247                 return RELAYD_HYBRID;
248         else
249                 return -1;
250 }
251
252 static void set_config(struct uci_section *s)
253 {
254         struct blob_attr *tb[ODHCPD_ATTR_MAX], *c;
255
256         blob_buf_init(&b, 0);
257         uci_to_blob(&b, s, &odhcpd_attr_list);
258         blobmsg_parse(odhcpd_attrs, ODHCPD_ATTR_MAX, tb, blob_data(b.head), blob_len(b.head));
259
260         if ((c = tb[ODHCPD_ATTR_LEGACY]))
261                 config.legacy = blobmsg_get_bool(c);
262
263         if ((c = tb[ODHCPD_ATTR_MAINDHCP]))
264                 config.main_dhcpv4 = blobmsg_get_bool(c);
265
266         if ((c = tb[ODHCPD_ATTR_LEASEFILE])) {
267                 free(config.dhcp_statefile);
268                 config.dhcp_statefile = strdup(blobmsg_get_string(c));
269         }
270
271         if ((c = tb[ODHCPD_ATTR_LEASETRIGGER])) {
272                 free(config.dhcp_cb);
273                 config.dhcp_cb = strdup(blobmsg_get_string(c));
274         }
275
276         if ((c = tb[ODHCPD_ATTR_LOGLEVEL])) {
277                 int log_level = (blobmsg_get_u32(c) & LOG_PRIMASK);
278
279                 if (config.log_level != log_level) {
280                         config.log_level = log_level;
281                         setlogmask(LOG_UPTO(config.log_level));
282                 }
283         }
284 }
285
286 static double parse_leasetime(struct blob_attr *c) {
287         char *val = blobmsg_get_string(c), *endptr = NULL;
288         double time = strcmp(val, "infinite") ? strtod(val, &endptr) : UINT32_MAX;
289
290         if (time && endptr && endptr[0]) {
291                 if (endptr[0] == 's')
292                         time *= 1;
293                 else if (endptr[0] == 'm')
294                         time *= 60;
295                 else if (endptr[0] == 'h')
296                         time *= 3600;
297                 else if (endptr[0] == 'd')
298                         time *= 24 * 3600;
299                 else if (endptr[0] == 'w')
300                         time *= 7 * 24 * 3600;
301                 else
302                         goto err;
303         }
304
305         if (time < 60)
306                 time = 60;
307
308         return time;
309
310 err:
311         return -1;
312 }
313
314 static int set_lease(struct uci_section *s)
315 {
316         struct blob_attr *tb[LEASE_ATTR_MAX], *c;
317
318         blob_buf_init(&b, 0);
319         uci_to_blob(&b, s, &lease_attr_list);
320         blobmsg_parse(lease_attrs, LEASE_ATTR_MAX, tb, blob_data(b.head), blob_len(b.head));
321
322         size_t hostlen = 1;
323         if ((c = tb[LEASE_ATTR_NAME]))
324                 hostlen = blobmsg_data_len(c);
325
326         struct lease *lease = calloc(1, sizeof(*lease) + hostlen);
327         if (!lease)
328                 goto err;
329
330         if (hostlen > 1)
331                 memcpy(lease->hostname, blobmsg_get_string(c), hostlen);
332
333         if ((c = tb[LEASE_ATTR_IP]))
334                 if (inet_pton(AF_INET, blobmsg_get_string(c), &lease->ipaddr) < 0)
335                         goto err;
336
337         if ((c = tb[LEASE_ATTR_MAC]))
338                 if (!ether_aton_r(blobmsg_get_string(c), &lease->mac))
339                         goto err;
340
341         if ((c = tb[LEASE_ATTR_DUID])) {
342                 size_t duidlen = (blobmsg_data_len(c) - 1) / 2;
343                 lease->duid = malloc(duidlen);
344                 if (!lease->duid)
345                         goto err;
346
347                 ssize_t len = odhcpd_unhexlify(lease->duid,
348                                 duidlen, blobmsg_get_string(c));
349
350                 if (len < 0)
351                         goto err;
352
353                 lease->duid_len = len;
354         }
355
356         if ((c = tb[LEASE_ATTR_HOSTID])) {
357                 errno = 0;
358                 lease->hostid = strtoul(blobmsg_get_string(c), NULL, 16);
359                 if (errno)
360                         goto err;
361         }
362
363         if ((c = tb[LEASE_ATTR_LEASETIME])) {
364                 double time = parse_leasetime(c);
365                 if (time < 0)
366                         goto err;
367
368                 lease->dhcpv4_leasetime = time;
369         }
370
371         list_add(&lease->head, &leases);
372         return 0;
373
374 err:
375         if (lease)
376                 free_lease(lease);
377
378         return -1;
379 }
380
381 int config_parse_interface(void *data, size_t len, const char *name, bool overwrite)
382 {
383         struct blob_attr *tb[IFACE_ATTR_MAX], *c;
384         blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb, data, len);
385
386         if (tb[IFACE_ATTR_INTERFACE])
387                 name = blobmsg_get_string(tb[IFACE_ATTR_INTERFACE]);
388
389         if (!name)
390                 return -1;
391
392         struct interface *iface = get_interface(name);
393         if (!iface) {
394                 iface = calloc(1, sizeof(*iface));
395                 if (!iface)
396                         return -1;
397
398                 strncpy(iface->name, name, sizeof(iface->name) - 1);
399
400                 set_interface_defaults(iface);
401
402                 list_add(&iface->head, &interfaces);
403                 overwrite = true;
404         }
405
406         const char *ifname = NULL;
407         if (overwrite) {
408                 if ((c = tb[IFACE_ATTR_IFNAME]))
409                         ifname = blobmsg_get_string(c);
410                 else if ((c = tb[IFACE_ATTR_NETWORKID]))
411                         ifname = blobmsg_get_string(c);
412         }
413
414 #ifdef WITH_UBUS
415         if (overwrite || !iface->ifname[0])
416                 ifname = ubus_get_ifname(name);
417 #endif
418
419         if (!iface->ifname[0] && !ifname)
420                 goto err;
421
422         if (ifname)
423                 strncpy(iface->ifname, ifname, sizeof(iface->ifname) - 1);
424
425         if ((iface->ifindex = if_nametoindex(iface->ifname)) <= 0)
426                 goto err;
427
428         iface->inuse = true;
429
430         if ((c = tb[IFACE_ATTR_DYNAMICDHCP]))
431                 iface->no_dynamic_dhcp = !blobmsg_get_bool(c);
432
433         if (overwrite && (c = tb[IFACE_ATTR_IGNORE]))
434                 iface->ignore = blobmsg_get_bool(c);
435
436         if ((c = tb[IFACE_ATTR_LEASETIME])) {
437                 double time = parse_leasetime(c);
438                 if (time < 0)
439                         goto err;
440
441                 iface->dhcpv4_leasetime = time;
442         }
443
444         if ((c = tb[IFACE_ATTR_START])) {
445                 iface->dhcpv4_start.s_addr = htonl(blobmsg_get_u32(c));
446
447                 if (config.main_dhcpv4 && config.legacy)
448                         iface->dhcpv4 = RELAYD_SERVER;
449         }
450
451         if ((c = tb[IFACE_ATTR_LIMIT]))
452                 iface->dhcpv4_end.s_addr = htonl(
453                                 ntohl(iface->dhcpv4_start.s_addr) + blobmsg_get_u32(c));
454
455         if ((c = tb[IFACE_ATTR_MASTER]))
456                 iface->master = blobmsg_get_bool(c);
457
458         if (overwrite && (c = tb[IFACE_ATTR_UPSTREAM])) {
459                 struct blob_attr *cur;
460                 unsigned rem;
461
462                 blobmsg_for_each_attr(cur, c, rem) {
463                         if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING || !blobmsg_check_attr(cur, false))
464                                 continue;
465
466                         iface->upstream = realloc(iface->upstream,
467                                         iface->upstream_len + blobmsg_data_len(cur));
468                         if (!iface->upstream)
469                                 goto err;
470
471                         memcpy(iface->upstream + iface->upstream_len, blobmsg_get_string(cur), blobmsg_data_len(cur));
472                         iface->upstream_len += blobmsg_data_len(cur);
473                 }
474         }
475
476         int mode;
477         if ((c = tb[IFACE_ATTR_RA])) {
478                 if ((mode = parse_mode(blobmsg_get_string(c))) >= 0)
479                         iface->ra = mode;
480                 else
481                         goto err;
482         }
483
484         if ((c = tb[IFACE_ATTR_DHCPV4])) {
485                 if ((mode = parse_mode(blobmsg_get_string(c))) >= 0) {
486                         if (config.main_dhcpv4)
487                                 iface->dhcpv4 = mode;
488                 }
489                 else
490                         goto err;
491         }
492
493         if ((c = tb[IFACE_ATTR_DHCPV6])) {
494                 if ((mode = parse_mode(blobmsg_get_string(c))) >= 0)
495                         iface->dhcpv6 = mode;
496                 else
497                         goto err;
498         }
499
500         if ((c = tb[IFACE_ATTR_NDP])) {
501                 if ((mode = parse_mode(blobmsg_get_string(c))) >= 0)
502                         iface->ndp = mode;
503                 else
504                         goto err;
505         }
506
507         if ((c = tb[IFACE_ATTR_ROUTER])) {
508                 struct blob_attr *cur;
509                 unsigned rem;
510
511                 blobmsg_for_each_attr(cur, c, rem) {
512                         if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING || !blobmsg_check_attr(cur, false))
513                                 continue;
514
515                         struct in_addr addr4;
516                         if (inet_pton(AF_INET, blobmsg_get_string(cur), &addr4) == 1) {
517                                 iface->dhcpv4_router = realloc(iface->dhcpv4_router,
518                                                 (++iface->dhcpv4_router_cnt) * sizeof(*iface->dhcpv4_router));
519                                 if (!iface->dhcpv4_router)
520                                         goto err;
521
522                                 iface->dhcpv4_router[iface->dhcpv4_router_cnt - 1] = addr4;
523                         } else
524                                 goto err;
525                 }
526         }
527
528         if ((c = tb[IFACE_ATTR_DNS])) {
529                 struct blob_attr *cur;
530                 unsigned rem;
531
532                 iface->always_rewrite_dns = true;
533                 blobmsg_for_each_attr(cur, c, rem) {
534                         if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING || !blobmsg_check_attr(cur, false))
535                                 continue;
536
537                         struct in_addr addr4;
538                         struct in6_addr addr6;
539                         if (inet_pton(AF_INET, blobmsg_get_string(cur), &addr4) == 1) {
540                                 iface->dhcpv4_dns = realloc(iface->dhcpv4_dns,
541                                                 (++iface->dhcpv4_dns_cnt) * sizeof(*iface->dhcpv4_dns));
542                                 if (!iface->dhcpv4_dns)
543                                         goto err;
544
545                                 iface->dhcpv4_dns[iface->dhcpv4_dns_cnt - 1] = addr4;
546                         } else if (inet_pton(AF_INET6, blobmsg_get_string(cur), &addr6) == 1) {
547                                 iface->dns = realloc(iface->dns,
548                                                 (++iface->dns_cnt) * sizeof(*iface->dns));
549                                 if (!iface->dns)
550                                         goto err;
551
552                                 iface->dns[iface->dns_cnt - 1] = addr6;
553                         } else
554                                 goto err;
555                 }
556         }
557
558         if ((c = tb[IFACE_ATTR_DOMAIN])) {
559                 struct blob_attr *cur;
560                 unsigned rem;
561
562                 blobmsg_for_each_attr(cur, c, rem) {
563                         if (blobmsg_type(cur) != BLOBMSG_TYPE_STRING || !blobmsg_check_attr(cur, false))
564                                 continue;
565
566                         uint8_t buf[256];
567                         char *domain = blobmsg_get_string(cur);
568                         size_t domainlen = strlen(domain);
569                         if (domainlen > 0 && domain[domainlen - 1] == '.')
570                                 domain[domainlen - 1] = 0;
571
572                         int len = dn_comp(domain, buf, sizeof(buf), NULL, NULL);
573                         if (len <= 0)
574                                 goto err;
575
576                         iface->search = realloc(iface->search, iface->search_len + len);
577                         if (!iface->search)
578                                 goto err;
579
580                         memcpy(&iface->search[iface->search_len], buf, len);
581                         iface->search_len += len;
582                 }
583         }
584
585         if ((c = tb[IFACE_ATTR_FILTER_CLASS])) {
586                 iface->filter_class = realloc(iface->filter_class, blobmsg_data_len(c) + 1);
587                 memcpy(iface->filter_class, blobmsg_get_string(c), blobmsg_data_len(c) + 1);
588         }
589
590         if ((c = tb[IFACE_ATTR_DHCPV6_RAW])) {
591                 iface->dhcpv6_raw_len = blobmsg_data_len(c) / 2;
592                 iface->dhcpv6_raw = realloc(iface->dhcpv6_raw, iface->dhcpv6_raw_len);
593                 odhcpd_unhexlify(iface->dhcpv6_raw, iface->dhcpv6_raw_len, blobmsg_get_string(c));
594         }
595
596         if ((c = tb[IFACE_ATTR_DHCPV6_ASSIGNALL]))
597                 iface->dhcpv6_assignall = blobmsg_get_bool(c);
598
599         if ((c = tb[IFACE_ATTR_RA_DEFAULT]))
600                 iface->default_router = blobmsg_get_u32(c);
601
602         if ((c = tb[IFACE_ATTR_RA_MANAGEMENT]))
603                 iface->managed = blobmsg_get_u32(c);
604
605         if ((c = tb[IFACE_ATTR_RA_OFFLINK]))
606                 iface->ra_not_onlink = blobmsg_get_bool(c);
607
608         if ((c = tb[IFACE_ATTR_RA_ADVROUTER]))
609                 iface->ra_advrouter = blobmsg_get_bool(c);
610
611         if ((c = tb[IFACE_ATTR_RA_MININTERVAL]))
612                 iface->ra_mininterval =  blobmsg_get_u32(c);
613
614         if ((c = tb[IFACE_ATTR_RA_MAXINTERVAL]))
615                 iface->ra_maxinterval = blobmsg_get_u32(c);
616
617         if ((c = tb[IFACE_ATTR_RA_LIFETIME]))
618                 iface->ra_lifetime = blobmsg_get_u32(c);
619
620         if ((c = tb[IFACE_ATTR_RA_USELEASETIME]))
621                 iface->ra_useleasetime = blobmsg_get_bool(c);
622
623         if ((c = tb[IFACE_ATTR_RA_PREFERENCE])) {
624                 const char *prio = blobmsg_get_string(c);
625
626                 if (!strcmp(prio, "high"))
627                         iface->route_preference = 1;
628                 else if (!strcmp(prio, "low"))
629                         iface->route_preference = -1;
630                 else if (!strcmp(prio, "medium") || !strcmp(prio, "default"))
631                         iface->route_preference = 0;
632                 else
633                         goto err;
634         }
635
636         if ((c = tb[IFACE_ATTR_PD_MANAGER]))
637                 strncpy(iface->dhcpv6_pd_manager, blobmsg_get_string(c),
638                                 sizeof(iface->dhcpv6_pd_manager) - 1);
639
640         if ((c = tb[IFACE_ATTR_PD_CER]) &&
641                         inet_pton(AF_INET6, blobmsg_get_string(c), &iface->dhcpv6_pd_cer) < 1)
642                 goto err;
643
644         if ((c = tb[IFACE_ATTR_NDPROXY_ROUTING]))
645                 iface->learn_routes = blobmsg_get_bool(c);
646
647         if ((c = tb[IFACE_ATTR_NDPROXY_SLAVE]))
648                 iface->external = blobmsg_get_bool(c);
649
650         return 0;
651
652 err:
653         close_interface(iface);
654         return -1;
655 }
656
657 static int set_interface(struct uci_section *s)
658 {
659         blob_buf_init(&b, 0);
660         uci_to_blob(&b, s, &interface_attr_list);
661
662         return config_parse_interface(blob_data(b.head), blob_len(b.head), s->e.name, true);
663 }
664
665 void odhcpd_reload(void)
666 {
667         struct uci_context *uci = uci_alloc_context();
668
669         while (!list_empty(&leases))
670                 free_lease(list_first_entry(&leases, struct lease, head));
671
672         struct interface *master = NULL, *i, *n;
673
674         if (!uci)
675                 return;
676
677         list_for_each_entry(i, &interfaces, head)
678                 clean_interface(i);
679
680         struct uci_package *dhcp = NULL;
681         if (!uci_load(uci, "dhcp", &dhcp)) {
682                 struct uci_element *e;
683                 uci_foreach_element(&dhcp->sections, e) {
684                         struct uci_section *s = uci_to_section(e);
685                         if (!strcmp(s->type, "host"))
686                                 set_lease(s);
687                         else if (!strcmp(s->type, "odhcpd"))
688                                 set_config(s);
689                 }
690
691                 uci_foreach_element(&dhcp->sections, e) {
692                         struct uci_section *s = uci_to_section(e);
693                         if (!strcmp(s->type, "dhcp"))
694                                 set_interface(s);
695                 }
696         }
697
698         if (config.dhcp_statefile) {
699                 char *path = strdup(config.dhcp_statefile);
700
701                 mkdir_p(dirname(path), 0755);
702                 free(path);
703         }
704
705 #ifdef WITH_UBUS
706         ubus_apply_network();
707 #endif
708
709         bool any_dhcpv6_slave = false, any_ra_slave = false, any_ndp_slave = false;
710
711         /* Test for */
712         list_for_each_entry(i, &interfaces, head) {
713                 if (i->master)
714                         continue;
715
716                 if (i->dhcpv6 == RELAYD_HYBRID || i->dhcpv6 == RELAYD_RELAY)
717                         any_dhcpv6_slave = true;
718
719                 if (i->ra == RELAYD_HYBRID || i->ra == RELAYD_RELAY)
720                         any_ra_slave = true;
721
722                 if (i->ndp == RELAYD_HYBRID || i->ndp == RELAYD_RELAY)
723                         any_ndp_slave = true;
724         }
725
726         /* Evaluate hybrid mode for master */
727         list_for_each_entry(i, &interfaces, head) {
728                 if (!i->master)
729                         continue;
730
731                 enum odhcpd_mode hybrid_mode = RELAYD_DISABLED;
732 #ifdef WITH_UBUS
733                 if (!ubus_has_prefix(i->name, i->ifname))
734                         hybrid_mode = RELAYD_RELAY;
735 #endif
736
737                 if (i->dhcpv6 == RELAYD_HYBRID)
738                         i->dhcpv6 = hybrid_mode;
739
740                 if (i->dhcpv6 == RELAYD_RELAY && !any_dhcpv6_slave)
741                         i->dhcpv6 = RELAYD_DISABLED;
742
743                 if (i->ra == RELAYD_HYBRID)
744                         i->ra = hybrid_mode;
745
746                 if (i->ra == RELAYD_RELAY && !any_ra_slave)
747                         i->ra = RELAYD_DISABLED;
748
749                 if (i->ndp == RELAYD_HYBRID)
750                         i->ndp = hybrid_mode;
751
752                 if (i->ndp == RELAYD_RELAY && !any_ndp_slave)
753                         i->ndp = RELAYD_DISABLED;
754
755                 if (i->dhcpv6 == RELAYD_RELAY || i->ra == RELAYD_RELAY || i->ndp == RELAYD_RELAY)
756                         master = i;
757         }
758
759
760         list_for_each_entry_safe(i, n, &interfaces, head) {
761                 if (i->inuse) {
762                         /* Resolve hybrid mode */
763                         if (i->dhcpv6 == RELAYD_HYBRID)
764                                 i->dhcpv6 = (master && master->dhcpv6 == RELAYD_RELAY) ?
765                                                 RELAYD_RELAY : RELAYD_SERVER;
766
767                         if (i->ra == RELAYD_HYBRID)
768                                 i->ra = (master && master->ra == RELAYD_RELAY) ?
769                                                 RELAYD_RELAY : RELAYD_SERVER;
770
771                         if (i->ndp == RELAYD_HYBRID)
772                                 i->ndp = (master && master->ndp == RELAYD_RELAY) ?
773                                                 RELAYD_RELAY : RELAYD_DISABLED;
774
775                         setup_router_interface(i, !i->ignore || i->ra != RELAYD_DISABLED);
776                         setup_dhcpv6_interface(i, !i->ignore || i->dhcpv6 != RELAYD_DISABLED);
777                         setup_ndp_interface(i, !i->ignore || i->ndp != RELAYD_DISABLED);
778 #ifdef DHCPV4_SUPPORT
779                         setup_dhcpv4_interface(i, !i->ignore || i->dhcpv4 != RELAYD_DISABLED);
780 #endif
781                 } else
782                         close_interface(i);
783         }
784
785         ndp_handle_addr6_dump();
786         uci_unload(uci, dhcp);
787         uci_free_context(uci);
788 }
789
790 static void handle_signal(int signal)
791 {
792         char b[1] = {0};
793
794         if (signal == SIGHUP) {
795                 if (write(reload_pipe[1], b, sizeof(b)) < 0) {}
796         } else
797                 uloop_end();
798 }
799
800 static void reload_cb(struct uloop_fd *u, _unused unsigned int events)
801 {
802         char b[512];
803         if (read(u->fd, b, sizeof(b)) < 0) {}
804
805         odhcpd_reload();
806 }
807
808 static struct uloop_fd reload_fd = { .cb = reload_cb };
809
810 void odhcpd_run(void)
811 {
812         if (pipe2(reload_pipe, O_NONBLOCK | O_CLOEXEC) < 0) {}
813
814         reload_fd.fd = reload_pipe[0];
815         uloop_fd_add(&reload_fd, ULOOP_READ);
816
817         signal(SIGTERM, handle_signal);
818         signal(SIGINT, handle_signal);
819         signal(SIGHUP, handle_signal);
820
821 #ifdef WITH_UBUS
822         while (init_ubus())
823                 sleep(1);
824 #endif
825
826         odhcpd_reload();
827         uloop_run();
828
829         while (!list_empty(&interfaces))
830                 close_interface(list_first_entry(&interfaces, struct interface, head));
831 }
832