X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=device.c;h=9e0881ae570fdbb340282cf60aed3955fd40da5a;hp=ef706853e7806771cff66274a35433457f0e7ab7;hb=50eb00f20aaf86c84a24b8d2aaad13ffff52d3f1;hpb=f2382b059a30759d41b248c6235f32de8c26047f diff --git a/device.c b/device.c index ef70685..9e0881a 100644 --- a/device.c +++ b/device.c @@ -3,11 +3,94 @@ #include #include +#include +#include +#include + #include "netifd.h" #include "system.h" +#include "config.h" static struct avl_tree devices; +enum { + DEV_ATTR_NAME, + DEV_ATTR_TYPE, + DEV_ATTR_MTU, + DEV_ATTR_MACADDR, + DEV_ATTR_TXQUEUELEN, + __DEV_ATTR_MAX, +}; + +static const struct blobmsg_policy dev_attrs[__DEV_ATTR_MAX] = { + [DEV_ATTR_NAME] = { "name", BLOBMSG_TYPE_STRING }, + [DEV_ATTR_TYPE] = { "type", BLOBMSG_TYPE_STRING }, + [DEV_ATTR_MTU] = { "mtu", BLOBMSG_TYPE_INT32 }, + [DEV_ATTR_MACADDR] = { "macaddr", BLOBMSG_TYPE_STRING }, + [DEV_ATTR_TXQUEUELEN] = { "txqueuelen", BLOBMSG_TYPE_INT32 }, +}; + +const struct config_param_list device_attr_list = { + .n_params = __DEV_ATTR_MAX, + .params = dev_attrs, +}; + +static void +device_init_settings(struct device *dev, struct blob_attr **tb) +{ + struct blob_attr *cur; + struct ether_addr *ea; + + dev->flags = 0; + + if ((cur = tb[DEV_ATTR_MTU])) { + dev->mtu = blobmsg_get_u32(cur); + dev->flags |= DEV_OPT_MTU; + } + + if ((cur = tb[DEV_ATTR_TXQUEUELEN])) { + dev->txqueuelen = blobmsg_get_u32(cur); + dev->flags |= DEV_OPT_TXQUEUELEN; + } + + if ((cur = tb[DEV_ATTR_MACADDR])) { + ea = ether_aton(blob_data(cur)); + if (ea) { + memcpy(dev->macaddr, ea, sizeof(dev->macaddr)); + dev->flags |= DEV_OPT_MACADDR; + } + } +} + +struct device * +device_create(struct blob_attr *attr, struct uci_section *s) +{ + struct blob_attr *tb[__DEV_ATTR_MAX]; + struct blob_attr *cur; + struct device *dev = NULL; + const char *name; + + blobmsg_parse(dev_attrs, __DEV_ATTR_MAX, tb, blob_data(attr), blob_len(attr)); + if (!tb[DEV_ATTR_NAME]) + return NULL; + + name = blobmsg_data(tb[DEV_ATTR_NAME]); + if ((cur = tb[DEV_ATTR_TYPE])) { + if (!strcmp(blobmsg_data(cur), "bridge")) + dev = bridge_create(name, s); + } else { + dev = get_device(name, true); + } + + if (!dev) + return NULL; + + device_init_settings(dev, tb); + + return dev; +} + + static void __init dev_init(void) { avl_init(&devices, avl_strcmp, false, NULL);