X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=vlan.c;h=f70420a257f71b77d5b6e95b1051a2a9a01b300a;hp=208ff73d594e572c1cfc766e475c2dd7f0d51ee6;hb=37769eb666aa614b76df9b537db35c2c70e3ac7a;hpb=0b461898555d81efe1b57ec1cd9b9b1529cecd0f;ds=sidebyside diff --git a/vlan.c b/vlan.c index 208ff73..f70420a 100644 --- a/vlan.c +++ b/vlan.c @@ -1,3 +1,16 @@ +/* + * netifd - network interface daemon + * Copyright (C) 2012 Felix Fietkau + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 + * as published by the Free Software Foundation + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ #include #include #include @@ -32,22 +45,28 @@ static int vlan_set_device_state(struct device *dev, bool up) if (!up) { vldev->set_state(dev, false); system_vlan_del(dev); - release_device(vldev->dep.dev); + device_release(&vldev->dep); return 0; } - ret = claim_device(vldev->dep.dev); + ret = device_claim(&vldev->dep); if (ret) return ret; system_vlan_add(vldev->dep.dev, vldev->id); ret = vldev->set_state(dev, true); if (ret) - release_device(vldev->dep.dev); + device_release(&vldev->dep); return ret; } +static void vlan_dev_set_name(struct vlan_device *vldev, struct device *dev) +{ + vldev->dev.hidden = dev->hidden; + snprintf(vldev->dev.ifname, IFNAMSIZ, "%s.%d", dev->ifname, vldev->id); +} + static void vlan_dev_cb(struct device_user *dep, enum device_event ev) { struct vlan_device *vldev; @@ -60,6 +79,10 @@ static void vlan_dev_cb(struct device_user *dep, enum device_event ev) case DEV_EVENT_REMOVE: device_set_present(&vldev->dev, false); break; + case DEV_EVENT_UPDATE_IFNAME: + vlan_dev_set_name(vldev, dep->dev); + device_broadcast_event(&vldev->dev, ev); + break; default: break; } @@ -69,13 +92,14 @@ static struct device *get_vlan_device(struct device *dev, int id, bool create) { static const struct device_type vlan_type = { .name = "VLAN", + .config_params = &device_attr_list, .free = free_vlan_if, }; struct vlan_device *vldev; struct device_user *dep; /* look for an existing interface before creating a new one */ - list_for_each_entry(dep, &dev->users, list) { + list_for_each_entry(dep, &dev->users.list, list.list) { if (dep->cb != vlan_dev_cb) continue; @@ -90,15 +114,16 @@ static struct device *get_vlan_device(struct device *dev, int id, bool create) return NULL; vldev = calloc(1, sizeof(*vldev)); - snprintf(vldev->dev.ifname, IFNAMSIZ, "%s.%d", dev->ifname, id); - init_device(&vldev->dev, &vlan_type, NULL); + vldev->id = id; + vlan_dev_set_name(vldev, dev); + + device_init_virtual(&vldev->dev, &vlan_type, NULL); + vldev->dev.default_config = true; vldev->set_state = vldev->dev.set_state; vldev->dev.set_state = vlan_set_device_state; - vldev->id = id; - vldev->dep.cb = vlan_dev_cb; device_add_user(&vldev->dep, dev); @@ -120,7 +145,7 @@ out: struct device *get_vlan_device_chain(const char *ifname, bool create) { - struct device *iface = NULL; + struct device *dev = NULL; char *buf, *s, *next, *err = NULL; int id; @@ -129,8 +154,8 @@ struct device *get_vlan_device_chain(const char *ifname, bool create) return NULL; s = split_vlan(buf); - iface = device_get(buf, create); - if (!iface && !create) + dev = device_get(buf, create); + if (!dev) goto error; do { @@ -139,8 +164,8 @@ struct device *get_vlan_device_chain(const char *ifname, bool create) if (err && *err) goto error; - iface = get_vlan_device(iface, id, create); - if (!iface) + dev = get_vlan_device(dev, id, create); + if (!dev) goto error; s = next; @@ -149,8 +174,8 @@ struct device *get_vlan_device_chain(const char *ifname, bool create) } while (1); error: - iface = NULL; + dev = NULL; out: free(buf); - return iface; + return dev; }