summaryrefslogtreecommitdiff
path: root/proto-static.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-09-12 11:46:17 +0200
committerFelix Fietkau <nbd@openwrt.org>2011-09-12 11:46:17 +0200
commit3bd56db589071948eebd30b00cda7ef1fb38a61b (patch)
tree51ce67ccfadba42b29d06d7c81a9534810b7c4e5 /proto-static.c
parentaa446207119b958eb51c6b9d447cd03a011927bd (diff)
downloadnetifd-3bd56db589071948eebd30b00cda7ef1fb38a61b.tar.gz
move ip address parsing code to proto.c
Diffstat (limited to 'proto-static.c')
-rw-r--r--proto-static.c44
1 files changed, 2 insertions, 42 deletions
diff --git a/proto-static.c b/proto-static.c
index 57da77d..17cff0a 100644
--- a/proto-static.c
+++ b/proto-static.c
@@ -46,53 +46,13 @@ struct static_proto_state {
};
static bool
-split_netmask(char *str, unsigned int *netmask)
-{
- char *delim, *err = NULL;
-
- delim = strchr(str, '/');
- if (delim) {
- *(delim++) = 0;
-
- *netmask = strtoul(delim, &err, 10);
- if (err && *err)
- return false;
- }
- 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;
- }
-
- return inet_pton(af, str, addr);
-}
-
-static bool
parse_addr(struct interface *iface, const char *str, bool v6, int mask)
{
struct device_addr *addr;
- int af = v6 ? AF_INET6 : AF_INET;
- addr = calloc(1, sizeof(*addr));
- addr->flags = v6 ? DEVADDR_INET6 : DEVADDR_INET4;
- addr->mask = mask;
- if (!parse_ip_and_netmask(af, str, &addr->addr, &addr->mask)) {
+ addr = proto_parse_ip_addr_string(str, v6, mask);
+ if (!addr) {
interface_add_error(iface, "proto-static", "INVALID_ADDRESS", &str, 1);
- free(addr);
return false;
}
vlist_add(&iface->proto_addr, &addr->node);