Skip to content

Commit

Permalink
[netdevice] Mark devices as open before calling open() method
Browse files Browse the repository at this point in the history
When opening a VLAN device, vlan_open() will call netdev_open() on the
trunk device.  This will result in a call to netdev_notify(), which
will cause vlan_notify() to call vlan_sync() on the original VLAN
device, which will see that the trunk device is now open but the VLAN
device apparently isn't (since it has not yet been flagged as open by
netdev_open()).  The upshot is a second attempt to open the VLAN
device, which will result in an erroneous second call to vlan_open().
This convoluted chain of events then terminates harmlessly since
vlan_open() calls netdev_open() on the trunk device, which just
returns immediately since the trunk device is by now flagged as being
already open.

Prevent this from happening by having netdev_open() flag the device as
open prior to calling the device's open() method, and reflagging it as
closed if the open() method fails.

Originally-fixed-by: Wissam Shoukair <wissams@mellanox.com>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
mcb30 committed Mar 5, 2014
1 parent 1137fa3 commit f17a30d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/net/netdevice.c
Expand Up @@ -636,20 +636,24 @@ int netdev_open ( struct net_device *netdev ) {

DBGC ( netdev, "NETDEV %s opening\n", netdev->name );

/* Open the device */
if ( ( rc = netdev->op->open ( netdev ) ) != 0 )
return rc;

/* Mark as opened */
netdev->state |= NETDEV_OPEN;

/* Open the device */
if ( ( rc = netdev->op->open ( netdev ) ) != 0 )
goto err;

/* Add to head of open devices list */
list_add ( &netdev->open_list, &open_net_devices );

/* Notify drivers of device state change */
netdev_notify ( netdev );

return 0;

err:
netdev->state &= ~NETDEV_OPEN;
return rc;
}

/**
Expand Down

0 comments on commit f17a30d

Please sign in to comment.