X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=bridge.c;h=5ac5cfeaa88d3dc94a11f1767666615c1d34f214;hb=547d96cd6d1bdf3624711b08491ca7fce6b4b0a3;hp=c3b02bd2d5ecdd5442498a0da0ffad0fc194dcb4;hpb=cd51d94890e819e6e72fd9dc221716131e69dea7;p=project%2Fnetifd.git diff --git a/bridge.c b/bridge.c index c3b02bd..5ac5cfe 100644 --- a/bridge.c +++ b/bridge.c @@ -12,12 +12,20 @@ enum { BRIDGE_ATTR_IFNAME, BRIDGE_ATTR_STP, + BRIDGE_ATTR_FORWARD_DELAY, + BRIDGE_ATTR_AGEING_TIME, + BRIDGE_ATTR_HELLO_TIME, + BRIDGE_ATTR_MAX_AGE, __BRIDGE_ATTR_MAX }; static const struct blobmsg_policy bridge_attrs[__BRIDGE_ATTR_MAX] = { [BRIDGE_ATTR_IFNAME] = { "ifname", BLOBMSG_TYPE_ARRAY }, [BRIDGE_ATTR_STP] = { "stp", BLOBMSG_TYPE_BOOL }, + [BRIDGE_ATTR_FORWARD_DELAY] = { "forward_delay", BLOBMSG_TYPE_INT32 }, + [BRIDGE_ATTR_AGEING_TIME] = { "ageing_time", BLOBMSG_TYPE_INT32 }, + [BRIDGE_ATTR_HELLO_TIME] = { "hello_time", BLOBMSG_TYPE_INT32 }, + [BRIDGE_ATTR_MAX_AGE] = { "max_age", BLOBMSG_TYPE_INT32 }, }; static const union config_param_info bridge_attr_info[__BRIDGE_ATTR_MAX] = { @@ -36,7 +44,7 @@ static const struct config_param_list bridge_attr_list = { static struct device *bridge_create(struct blob_attr *attr); static void bridge_config_init(struct device *dev); static void bridge_free(struct device *dev); -static void bridge_dump_status(struct device *dev, struct blob_buf *b); +static void bridge_dump_info(struct device *dev, struct blob_buf *b); const struct device_type bridge_device_type = { .name = "Bridge", @@ -45,13 +53,14 @@ const struct device_type bridge_device_type = { .create = bridge_create, .config_init = bridge_config_init, .free = bridge_free, - .dump_status = bridge_dump_status, + .dump_info = bridge_dump_info, }; struct bridge_state { struct device dev; device_state_cb set_state; + struct bridge_config config; struct blob_attr *ifnames; bool active; @@ -166,7 +175,7 @@ bridge_set_up(struct bridge_state *bst) if (!bst->n_present) return -ENOENT; - ret = system_bridge_addbr(&bst->dev); + ret = system_bridge_addbr(&bst->dev, &bst->config); if (ret < 0) goto out; @@ -294,7 +303,7 @@ bridge_free(struct device *dev) } static void -bridge_dump_status(struct device *dev, struct blob_buf *b) +bridge_dump_info(struct device *dev, struct blob_buf *b) { struct bridge_state *bst; struct bridge_member *bm; @@ -322,6 +331,38 @@ bridge_config_init(struct device *dev) } } +static void +bridge_apply_settings(struct bridge_state *bst, struct blob_attr **tb) +{ + struct bridge_config *cfg = &bst->config; + struct blob_attr *cur; + + /* defaults */ + cfg->stp = true; + cfg->forward_delay = 1; + + if ((cur = tb[BRIDGE_ATTR_STP])) + cfg->stp = blobmsg_get_bool(cur); + + if ((cur = tb[BRIDGE_ATTR_FORWARD_DELAY])) + cfg->forward_delay = blobmsg_get_u32(cur); + + if ((cur = tb[BRIDGE_ATTR_AGEING_TIME])) { + cfg->ageing_time = blobmsg_get_u32(cur); + cfg->flags |= BRIDGE_OPT_AGEING_TIME; + } + + if ((cur = tb[BRIDGE_ATTR_HELLO_TIME])) { + cfg->hello_time = blobmsg_get_u32(cur); + cfg->flags |= BRIDGE_OPT_HELLO_TIME; + } + + if ((cur = tb[BRIDGE_ATTR_MAX_AGE])) { + cfg->max_age = blobmsg_get_u32(cur); + cfg->flags |= BRIDGE_OPT_MAX_AGE; + } +} + static struct device * bridge_create(struct blob_attr *attr) { @@ -353,6 +394,7 @@ bridge_create(struct blob_attr *attr) device_init_settings(dev, tb_dev); dev->config_pending = true; bst->ifnames = tb_br[BRIDGE_ATTR_IFNAME]; + bridge_apply_settings(bst, tb_br); bst->set_state = dev->set_state; dev->set_state = bridge_set_state;