netifd: Fix device ifindex overwrite when processing netlink event messages
authorHans Dedecker <dedeckeh@gmail.com>
Thu, 13 Nov 2014 15:57:56 +0000 (15:57 +0000)
committerSteven Barth <steven@midlink.org>
Wed, 19 Nov 2014 08:30:12 +0000 (09:30 +0100)
When a device with the same name is deleted and created again in the kernel
the ifindex changes.
A race condition will occur when netlink event messages linked to the old device
are processed and will thus overwrite the correct ifindex of the new device.
Further make sure a valid ifindex is in place for both external and internal
devices when setting the state to enabled.

Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
device.c
system-dummy.c
system-linux.c
system.h

index b29d73b..5d1dcac 100644 (file)
--- a/device.c
+++ b/device.c
@@ -62,6 +62,14 @@ void device_unlock(void)
 
 static int set_device_state(struct device *dev, bool state)
 {
+       if (state) {
+               /* Set ifindex for all devices being enabled so a valid  */
+               /* ifindex is in place avoiding possible race conditions */
+               device_set_ifindex(dev, system_if_resolve(dev));
+               if (!dev->ifindex)
+                       return -1;
+       }
+
        if (dev->external)
                return 0;
 
index 8e420e1..7d54315 100644 (file)
@@ -96,6 +96,11 @@ int system_if_check(struct device *dev)
        return 0;
 }
 
+int system_if_resolve(struct device *dev)
+{
+       return 0;
+}
+
 struct device *
 system_if_get_parent(struct device *dev)
 {
index 02574fc..6a6028c 100644 (file)
@@ -316,11 +316,7 @@ static int cb_rtnl_event(struct nl_msg *msg, void *arg)
                goto out;
 
        struct device *dev = device_get(nla_data(nla[IFLA_IFNAME]), false);
-       if (!dev)
-               goto out;
-
-       device_set_ifindex(dev, ifi->ifi_index);
-       if (dev->type->keep_link_status)
+       if (!dev || dev->type->keep_link_status)
                goto out;
 
        if (!system_get_dev_sysctl("/sys/class/net/%s/carrier", dev->ifname, buf, sizeof(buf)))
@@ -497,7 +493,7 @@ int system_bridge_delif(struct device *bridge, struct device *dev)
        return system_bridge_if(bridge->ifname, dev, SIOCBRDELIF, NULL);
 }
 
-static int system_if_resolve(struct device *dev)
+int system_if_resolve(struct device *dev)
 {
        struct ifreq ifr;
        strncpy(ifr.ifr_name, dev->ifname, sizeof(ifr.ifr_name));
@@ -1006,7 +1002,6 @@ int system_if_up(struct device *dev)
 {
        system_if_get_settings(dev, &dev->orig_settings);
        system_if_apply_settings(dev, &dev->settings, dev->settings.flags);
-       device_set_ifindex(dev, system_if_resolve(dev));
        return system_if_flags(dev->ifname, IFF_UP, 0);
 }
 
index b1215d1..3bf6f97 100644 (file)
--- a/system.h
+++ b/system.h
@@ -116,6 +116,8 @@ void system_if_clear_state(struct device *dev);
 int system_if_up(struct device *dev);
 int system_if_down(struct device *dev);
 int system_if_check(struct device *dev);
+int system_if_resolve(struct device *dev);
+
 int system_if_dump_info(struct device *dev, struct blob_buf *b);
 int system_if_dump_stats(struct device *dev, struct blob_buf *b);
 struct device *system_if_get_parent(struct device *dev);