summaryrefslogtreecommitdiff
path: root/proto-static.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-04-14 20:41:06 +0200
committerFelix Fietkau <nbd@openwrt.org>2011-04-14 23:24:49 +0200
commit3e22e5b6bddce74aa7b3ca92ff0f089ac9b59ccb (patch)
treee368e6bbd389f951ba6a1ef850ab90ab55335fdc /proto-static.c
parentabe9ac8a972f610783349062a0e3b91b3891121e (diff)
downloadnetifd-3e22e5b6bddce74aa7b3ca92ff0f089ac9b59ccb.tar.gz
add code to set ip addresses when an interface with the static proto is brought up
Diffstat (limited to 'proto-static.c')
-rw-r--r--proto-static.c54
1 files changed, 48 insertions, 6 deletions
diff --git a/proto-static.c b/proto-static.c
index cdaea76..97b2b58 100644
--- a/proto-static.c
+++ b/proto-static.c
@@ -8,19 +8,21 @@
#include "netifd.h"
#include "interface.h"
#include "proto.h"
+#include "system.h"
struct v4_addr {
- struct in_addr addr;
unsigned int prefix;
+ struct in_addr addr;
};
struct v6_addr {
- struct in6_addr addr;
unsigned int prefix;
+ struct in6_addr addr;
};
struct static_proto_state {
struct interface_proto_state proto;
+ struct interface *iface;
int n_v4;
struct v4_addr *v4;
@@ -33,7 +35,44 @@ static int
static_handler(struct interface_proto_state *proto,
enum interface_proto_cmd cmd, bool force)
{
- return 0;
+ struct static_proto_state *state;
+ struct device *dev;
+ int ret = 0;
+ int i;
+
+ state = container_of(proto, struct static_proto_state, proto);
+ dev = state->iface->main_dev.dev;
+
+ switch (cmd) {
+ case PROTO_CMD_SETUP:
+ for (i = 0; i < state->n_v4; i++) {
+ if (ret)
+ break;
+ ret = system_add_address(dev, AF_INET,
+ &state->v4[i].addr, state->v4[i].prefix);
+ }
+ for (i = 0; i < state->n_v6; i++) {
+ if (ret)
+ break;
+ ret = system_add_address(dev, AF_INET6,
+ &state->v6[i].addr, state->v6[i].prefix);
+ }
+
+ if (!ret)
+ return 0;
+
+ interface_add_error(state->iface, "proto-static",
+ "SET_ADDRESS_FAILED", NULL, 0);
+ /* fall through */
+
+ case PROTO_CMD_TEARDOWN:
+ for (i = 0; i < state->n_v4; i++)
+ system_del_address(dev, AF_INET, &state->v4[i].addr);
+ for (i = 0; i < state->n_v6; i++)
+ system_del_address(dev, AF_INET6, &state->v6[i].addr);
+ break;
+ }
+ return ret;
}
static void
@@ -46,7 +85,7 @@ static_free(struct interface_proto_state *proto)
}
struct interface_proto_state *
-static_create_state(struct v4_addr *v4, int n_v4, struct v6_addr *v6, int n_v6)
+static_create_state(struct interface *iface, struct v4_addr *v4, int n_v4, struct v6_addr *v6, int n_v6)
{
struct static_proto_state *state;
int v4_len = sizeof(struct v4_addr) * n_v4;
@@ -54,18 +93,21 @@ static_create_state(struct v4_addr *v4, int n_v4, struct v6_addr *v6, int n_v6)
void *next;
state = calloc(1, sizeof(*state) + v4_len + v6_len);
+ state->iface = iface;
state->proto.free = static_free;
state->proto.handler = static_handler;
state->proto.flags = PROTO_FLAG_IMMEDIATE;
- next = (void *) state + 1;
+ next = (void *) (state + 1);
if (n_v4) {
+ state->n_v4 = n_v4;
state->v4 = next;
memcpy(state->v4, v4, sizeof(*v4) * n_v4);
next = state->v4 + n_v4;
}
if (n_v6) {
+ state->n_v6 = n_v6;
state->v6 = next;
memcpy(state->v6, v6, sizeof(*v6) * n_v6);
}
@@ -218,7 +260,7 @@ static_attach(struct proto_handler *h, struct interface *iface,
goto error;
}
- return static_create_state(v4, n_v4, v6, n_v6);
+ return static_create_state(iface, v4, n_v4, v6, n_v6);
invalid_addr:
error = "INVALID_ADDRESS";