X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=proto-static.c;h=ca39b7c8edf86271c8c72226c88cebacad59cf6c;hp=cdaea7647031132fae8e8993ba7f1a1378247125;hb=937a95ad71e00e99bd21add761e2f810b7fb4026;hpb=abe9ac8a972f610783349062a0e3b91b3891121e diff --git a/proto-static.c b/proto-static.c index cdaea76..ca39b7c 100644 --- a/proto-static.c +++ b/proto-static.c @@ -7,229 +7,217 @@ #include "netifd.h" #include "interface.h" +#include "interface-ip.h" #include "proto.h" +#include "system.h" -struct v4_addr { - struct in_addr addr; - unsigned int prefix; +enum { + OPT_IPADDR, + OPT_IP6ADDR, + OPT_NETMASK, + OPT_GATEWAY, + OPT_IP6GW, + OPT_DNS, + __OPT_MAX, }; -struct v6_addr { - struct in6_addr addr; - unsigned int prefix; +static const struct blobmsg_policy static_attrs[__OPT_MAX] = { + [OPT_IPADDR] = { .name = "ipaddr", .type = BLOBMSG_TYPE_ARRAY }, + [OPT_IP6ADDR] = { .name = "ip6addr", .type = BLOBMSG_TYPE_ARRAY }, + [OPT_NETMASK] = { .name = "netmask", .type = BLOBMSG_TYPE_STRING }, + [OPT_GATEWAY] = { .name = "gateway", .type = BLOBMSG_TYPE_STRING }, + [OPT_IP6GW] = { .name = "ip6gw", .type = BLOBMSG_TYPE_STRING }, + [OPT_DNS] = { .name = "dns", .type = BLOBMSG_TYPE_ARRAY }, }; -struct static_proto_state { - struct interface_proto_state proto; +static const union config_param_info static_attr_info[__OPT_MAX] = { + [OPT_IPADDR] = { .type = BLOBMSG_TYPE_STRING }, + [OPT_IP6ADDR] = { .type = BLOBMSG_TYPE_STRING }, + [OPT_DNS] = { .type = BLOBMSG_TYPE_STRING }, +}; - int n_v4; - struct v4_addr *v4; +static const struct config_param_list static_attr_list = { + .n_params = __OPT_MAX, + .params = static_attrs, + .info = static_attr_info, +}; - int n_v6; - struct v4_addr *v6; +struct static_proto_state { + struct interface_proto_state proto; + + struct blob_attr *config; }; +static bool +parse_addr(struct interface *iface, const char *str, bool v6, int mask) +{ + struct device_addr *addr; + + addr = proto_parse_ip_addr_string(str, v6, mask); + if (!addr) { + interface_add_error(iface, "proto-static", "INVALID_ADDRESS", &str, 1); + return false; + } + vlist_add(&iface->proto_ip.addr, &addr->node); + return true; +} + static int -static_handler(struct interface_proto_state *proto, - enum interface_proto_cmd cmd, bool force) +parse_address_option(struct interface *iface, struct blob_attr *attr, bool v6, int netmask) { - return 0; + struct blob_attr *cur; + int n_addr = 0; + int rem; + + blobmsg_for_each_attr(cur, attr, rem) { + n_addr++; + if (!parse_addr(iface, blobmsg_data(cur), v6, netmask)) + return -1; + } + + return n_addr; } -static void -static_free(struct interface_proto_state *proto) +static bool +parse_gateway_option(struct interface *iface, struct blob_attr *attr, bool v6) { - struct static_proto_state *state; + struct device_route *route; + const char *str = blobmsg_data(attr); + int af = v6 ? AF_INET6 : AF_INET; + + route = calloc(1, sizeof(*route)); + if (!inet_pton(af, str, &route->nexthop)) { + interface_add_error(iface, "proto-static", + "INVALID_GATEWAY", &str, 1); + free(route); + return false; + } + route->mask = 0; + route->flags = DEVADDR_DEVICE | (v6 ? DEVADDR_INET6 : DEVADDR_INET4); + vlist_add(&iface->proto_ip.route, &route->node); - state = container_of(proto, struct static_proto_state, proto); - free(state); + return true; } -struct interface_proto_state * -static_create_state(struct v4_addr *v4, int n_v4, struct v6_addr *v6, int n_v6) +static int +proto_apply_static_settings(struct interface *iface, struct blob_attr *attr) { - struct static_proto_state *state; - int v4_len = sizeof(struct v4_addr) * n_v4; - int v6_len = sizeof(struct v6_addr) * n_v6; - void *next; + struct blob_attr *tb[__OPT_MAX]; + const char *error; + unsigned int netmask = 32; + int n_v4 = 0, n_v6 = 0; - state = calloc(1, sizeof(*state) + v4_len + v6_len); - state->proto.free = static_free; - state->proto.handler = static_handler; - state->proto.flags = PROTO_FLAG_IMMEDIATE; - next = (void *) state + 1; - - if (n_v4) { - state->v4 = next; - memcpy(state->v4, v4, sizeof(*v4) * n_v4); - next = state->v4 + n_v4; - } + blobmsg_parse(static_attrs, __OPT_MAX, tb, blob_data(attr), blob_len(attr)); - if (n_v6) { - state->v6 = next; - memcpy(state->v6, v6, sizeof(*v6) * n_v6); + if (tb[OPT_NETMASK]) { + netmask = parse_netmask_string(blobmsg_data(tb[OPT_NETMASK]), false); + if (netmask > 32) { + error = "INVALID_NETMASK"; + goto error; + } } - return &state->proto; -} + if (tb[OPT_IPADDR]) + n_v4 = parse_address_option(iface, tb[OPT_IPADDR], false, netmask); -static bool -split_netmask(char *str, unsigned int *netmask) -{ - char *delim, *err = NULL; + if (tb[OPT_IP6ADDR]) + n_v6 = parse_address_option(iface, tb[OPT_IP6ADDR], true, netmask); - delim = strchr(str, '/'); - if (delim) { - *(delim++) = 0; + if (!n_v4 && !n_v6) { + error = "NO_ADDRESS"; + goto error; + } + + if (n_v4 < 0 || n_v6 < 0) + goto out; - *netmask = strtoul(delim, &err, 10); - if (err && *err) - return false; + if (n_v4 && tb[OPT_GATEWAY]) { + if (!parse_gateway_option(iface, tb[OPT_GATEWAY], false)) + goto out; } - return true; -} -static int -parse_ip_and_netmask(int af, const char *str, void *addr, unsigned int *netmask) -{ - char *astr = alloca(strlen(str) + 1); - - strcpy(astr, str); - if (!split_netmask(astr, netmask)) - return 0; - - if (af == AF_INET6) { - if (*netmask > 128) - return 0; - } else { - if (*netmask > 32) - return 0; + if (n_v6 && tb[OPT_IP6GW]) { + if (!parse_gateway_option(iface, tb[OPT_IP6GW], true)) + goto out; } - return inet_pton(af, str, addr); -} + if (tb[OPT_DNS]) + interface_add_dns_server_list(&iface->proto_ip, tb[OPT_DNS]); -static int -parse_v4(const char *str, struct v4_addr *v4, int netmask) -{ - v4->prefix = netmask; - return parse_ip_and_netmask(AF_INET, str, &v4->addr, &v4->prefix); + return 0; + +error: + interface_add_error(iface, "proto-static", error, NULL, 0); +out: + return -1; } -static int -parse_v6(const char *str, struct v6_addr *v6, int netmask) +static bool +static_proto_setup(struct static_proto_state *state) { - v6->prefix = netmask; - return parse_ip_and_netmask(AF_INET6, str, &v6->addr, &v6->prefix); + return proto_apply_static_settings(state->proto.iface, state->config) == 0; } static int -count_list_entries(struct uci_option *o) +static_handler(struct interface_proto_state *proto, + enum interface_proto_cmd cmd, bool force) { - struct uci_element *e; - int n = 0; - - uci_foreach_element(&o->v.list, e) - n++; + struct static_proto_state *state; + int ret = 0; - return n; -} + state = container_of(proto, struct static_proto_state, proto); -enum { - OPT_IPADDR, - OPT_IP6ADDR, - OPT_NETMASK, - OPT_GATEWAY, - OPT_DNS, - __OPT_MAX, -}; + switch (cmd) { + case PROTO_CMD_SETUP: + if (!static_proto_setup(state)) + return -1; -static const struct uci_parse_option opts[__OPT_MAX] = { - [OPT_IPADDR] = { .name = "ipaddr" }, - [OPT_IP6ADDR] = { .name = "ip6addr" }, - [OPT_NETMASK] = { .name = "netmask", .type = UCI_TYPE_STRING }, - [OPT_GATEWAY] = { .name = "gateway", .type = UCI_TYPE_STRING }, - [OPT_DNS] = { .name = "dns" }, -}; + break; + case PROTO_CMD_TEARDOWN: + break; + } + return ret; +} -struct interface_proto_state * -static_attach(struct proto_handler *h, struct interface *iface, - struct uci_section *s) +static void +static_free(struct interface_proto_state *proto) { - struct uci_option *tb[__OPT_MAX]; - struct uci_element *e; - struct v4_addr *v4 = NULL; - struct v6_addr *v6 = NULL; - int n_v4 = 0, n_v6 = 0; - struct in_addr ina = {}; - const char *error = NULL; - int netmask = 32; - int i; - - uci_parse_section(s, opts, __OPT_MAX, tb); - - if (tb[OPT_NETMASK]) { - if (!inet_aton(tb[OPT_NETMASK]->v.string, &ina)) { - error = "INVALID_NETMASK"; - goto error; - } - - netmask = 32 - fls(~(ntohl(ina.s_addr))); - } + struct static_proto_state *state; - if (tb[OPT_IPADDR]) { - if (tb[OPT_IPADDR]->type == UCI_TYPE_STRING) { - n_v4 = 1; - v4 = alloca(sizeof(*v4)); - if (!parse_v4(tb[OPT_IPADDR]->v.string, v4, netmask)) - goto invalid_addr; - } else { - i = 0; - n_v4 = count_list_entries(tb[OPT_IPADDR]); - v4 = alloca(sizeof(*v4) * n_v4); - uci_foreach_element(&tb[OPT_IPADDR]->v.list, e) { - if (!parse_v4(e->name, &v4[i++], netmask)) - goto invalid_addr; - } - } - } + state = container_of(proto, struct static_proto_state, proto); + free(state->config); + free(state); +} - if (tb[OPT_IP6ADDR]) { - if (tb[OPT_IP6ADDR]->type == UCI_TYPE_STRING) { - n_v6 = 1; - v6 = alloca(sizeof(*v6)); - v6->prefix = netmask; - if (!parse_v6(tb[OPT_IP6ADDR]->v.string, v6, netmask)) - goto invalid_addr; - } else { - i = 0; - n_v6 = count_list_entries(tb[OPT_IP6ADDR]); - v6 = alloca(sizeof(*v6) * n_v6); - uci_foreach_element(&tb[OPT_IP6ADDR]->v.list, e) { - if (!parse_v6(e->name, &v6[i++], netmask)) - goto invalid_addr; - } - } - } +static struct interface_proto_state * +static_attach(const struct proto_handler *h, struct interface *iface, + struct blob_attr *attr) +{ + struct static_proto_state *state; + state = calloc(1, sizeof(*state)); + if (!state) + return NULL; - if (!n_v4 && !n_v6) { - error = "NO_ADDRESS"; + state->config = malloc(blob_pad_len(attr)); + if (!state->config) goto error; - } - return static_create_state(v4, n_v4, v6, n_v6); + memcpy(state->config, attr, blob_pad_len(attr)); + state->proto.free = static_free; + state->proto.cb = static_handler; -invalid_addr: - error = "INVALID_ADDRESS"; + return &state->proto; error: - interface_add_error(iface, "proto-static", error, NULL, 0); + free(state); return NULL; } static struct proto_handler static_proto = { .name = "static", + .flags = PROTO_FLAG_IMMEDIATE, + .config_params = &static_attr_list, .attach = static_attach, };