Skip to content

Commit

Permalink
macvlan: fix the problem when mac address changes for passthru mode
Browse files Browse the repository at this point in the history
The macvlan dev should always have the same mac address like lowerdev
when in the passthru mode, change the mac address alone will break the
work mechanism, so when the lowerdev or macvlan mac address changes,
we should propagate the changes to another dev.

v1->v2: Allow macvlan dev to change mac address for passthru mode and propagate to
	lowerdev.

v2->v3: Don't set the mac address to the lower dev's unicast address for
	passthru mode when mac address changes.

Signed-off-by: Ding Tianhong <dingtianhong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
dingtianhong authored and davem330 committed Jun 2, 2014
1 parent d7ec858 commit e289fd2
Showing 1 changed file with 38 additions and 12 deletions.
50 changes: 38 additions & 12 deletions drivers/net/macvlan.c
Original file line number Diff line number Diff line change
Expand Up @@ -494,35 +494,49 @@ static int macvlan_stop(struct net_device *dev)
return 0;
}

static int macvlan_set_mac_address(struct net_device *dev, void *p)
static int macvlan_sync_address(struct net_device *dev, unsigned char *addr)
{
struct macvlan_dev *vlan = netdev_priv(dev);
struct net_device *lowerdev = vlan->lowerdev;
struct sockaddr *addr = p;
int err;

if (!is_valid_ether_addr(addr->sa_data))
return -EADDRNOTAVAIL;

if (!(dev->flags & IFF_UP)) {
/* Just copy in the new address */
memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
ether_addr_copy(dev->dev_addr, addr);
} else {
/* Rehash and update the device filters */
if (macvlan_addr_busy(vlan->port, addr->sa_data))
if (macvlan_addr_busy(vlan->port, addr))
return -EBUSY;

err = dev_uc_add(lowerdev, addr->sa_data);
if (err)
return err;
if (!vlan->port->passthru) {
err = dev_uc_add(lowerdev, addr);
if (err)
return err;

dev_uc_del(lowerdev, dev->dev_addr);
dev_uc_del(lowerdev, dev->dev_addr);
}

macvlan_hash_change_addr(vlan, addr->sa_data);
macvlan_hash_change_addr(vlan, addr);
}
return 0;
}

static int macvlan_set_mac_address(struct net_device *dev, void *p)
{
struct macvlan_dev *vlan = netdev_priv(dev);
struct sockaddr *addr = p;

if (!is_valid_ether_addr(addr->sa_data))
return -EADDRNOTAVAIL;

if (vlan->mode == MACVLAN_MODE_PASSTHRU) {
dev_set_mac_address(vlan->lowerdev, addr);
return 0;
}

return macvlan_sync_address(dev, addr->sa_data);
}

static void macvlan_change_rx_flags(struct net_device *dev, int change)
{
struct macvlan_dev *vlan = netdev_priv(dev);
Expand Down Expand Up @@ -1105,6 +1119,18 @@ static int macvlan_device_event(struct notifier_block *unused,
continue;
dev_set_mtu(vlan->dev, dev->mtu);
}
break;
case NETDEV_CHANGEADDR:
if (!port->passthru)
return NOTIFY_DONE;

vlan = list_first_entry_or_null(&port->vlans,
struct macvlan_dev,
list);

if (macvlan_sync_address(vlan->dev, dev->dev_addr))
return NOTIFY_BAD;

break;
case NETDEV_UNREGISTER:
/* twiddle thumbs on netns device moves */
Expand Down

0 comments on commit e289fd2

Please sign in to comment.