X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=blobdiff_plain;f=src%2Fconfig.c;h=5d29173ed58895016581bb497326a0c9878d029d;hp=9228a3725829bf59bea45e6060845459d303f1f7;hb=491200f3ffae5c9599124e0b2eccbdf566de4cf4;hpb=24cf1c534166aedd4af0498257a05a265128733d diff --git a/src/config.c b/src/config.c index 9228a37..5d29173 100644 --- a/src/config.c +++ b/src/config.c @@ -254,20 +254,23 @@ err: } -int config_parse_interface(struct blob_attr *b, const char *name, bool overwrite) +int config_parse_interface(void *data, size_t len, const char *name, bool overwrite) { struct blob_attr *tb[IFACE_ATTR_MAX], *c; - blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb, blob_data(b), blob_len(b)); + blobmsg_parse(iface_attrs, IFACE_ATTR_MAX, tb, data, len); if (tb[IFACE_ATTR_INTERFACE]) - name = blobmsg_data(tb[IFACE_ATTR_INTERFACE]); + name = blobmsg_get_string(tb[IFACE_ATTR_INTERFACE]); + + if (!name) + return -1; struct interface *iface = get_interface(name); if (!iface) { iface = calloc(1, sizeof(*iface)); strncpy(iface->name, name, sizeof(iface->name) - 1); list_add(&iface->head, &interfaces); - } else { + } else if (overwrite) { clean_interface(iface); } @@ -281,7 +284,12 @@ int config_parse_interface(struct blob_attr *b, const char *name, bool overwrite else if ((c = tb[IFACE_ATTR_NETWORKID])) ifname = blobmsg_get_string(c); - strncpy(iface->ifname, ifname, sizeof(iface->ifname) - 1); + if (!iface->ifname[0] && !ifname) + return -1; + + if (ifname) + strncpy(iface->ifname, ifname, sizeof(iface->ifname) - 1); + iface->inuse = true; if (overwrite) @@ -475,7 +483,7 @@ static int set_interface(struct uci_section *s) { blob_buf_init(&b, 0); uci_to_blob(&b, s, &interface_attr_list); - return config_parse_interface(b.head, s->e.name, true); + return config_parse_interface(blob_data(b.head), blob_len(b.head), s->e.name, true); } @@ -493,6 +501,10 @@ void odhcpd_run(void) signal(SIGHUP, set_stop); signal(SIGINT, set_stop); +#ifdef WITH_UBUS + init_ubus(); +#endif + do { do_reload = uloop_cancelled = false; @@ -526,7 +538,7 @@ void odhcpd_run(void) #endif // Evaluate hybrid mode for master - struct interface *master = NULL, *i; + struct interface *master = NULL, *i, *n; list_for_each_entry(i, &interfaces, head) { if (!i->master) continue; @@ -551,8 +563,8 @@ void odhcpd_run(void) } - list_for_each_entry(i, &interfaces, head) { - if (i->inuse && !i->ignore) { + list_for_each_entry_safe(i, n, &interfaces, head) { + if (i->inuse) { // Resolve hybrid mode if (i->dhcpv6 == RELAYD_HYBRID) i->dhcpv6 = (master && master->dhcpv6 == RELAYD_RELAY) ?