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