Skip to content

Commit 3439352

Browse files
iveceradavem330
authored andcommitted
be2net: fix MAC addr setting on privileged BE3 VFs
During interface opening MAC address stored in netdev->dev_addr is programmed in the HW with exception of BE3 VFs where the initial MAC is programmed by parent PF. This is OK when MAC address is not changed when an interfaces is down. In this case the requested MAC is stored to netdev->dev_addr and later is stored into HW during opening. But this is not done for all BE3 VFs so the NIC HW does not know anything about this change and all traffic is filtered. This is the case of bonding if fail_over_mac == 0 where the MACs of the slaves are changed while they are down. The be2net behavior is too restrictive because if a BE3 VF has the FILTMGMT privilege then it is able to modify its MAC without any restriction. To solve the described problem the driver should take care about these privileged BE3 VFs so the MAC is programmed during opening. And by contrast unpriviled BE3 VFs should not be allowed to change its MAC in any case. Cc: Sathya Perla <sathya.perla@broadcom.com> Cc: Ajit Khaparde <ajit.khaparde@broadcom.com> Cc: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com> Cc: Somnath Kotur <somnath.kotur@broadcom.com> Signed-off-by: Ivan Vecera <cera@cera.cz> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 6d928ae commit 3439352

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

drivers/net/ethernet/emulex/benet/be_main.c

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,13 @@ static int be_mac_addr_set(struct net_device *netdev, void *p)
318318
if (ether_addr_equal(addr->sa_data, adapter->dev_mac))
319319
return 0;
320320

321+
/* BE3 VFs without FILTMGMT privilege are not allowed to set its MAC
322+
* address
323+
*/
324+
if (BEx_chip(adapter) && be_virtfn(adapter) &&
325+
!check_privilege(adapter, BE_PRIV_FILTMGMT))
326+
return -EPERM;
327+
321328
/* if device is not running, copy MAC to netdev->dev_addr */
322329
if (!netif_running(netdev))
323330
goto done;
@@ -3766,8 +3773,9 @@ static int be_enable_if_filters(struct be_adapter *adapter)
37663773
if (status)
37673774
return status;
37683775

3769-
/* For BE3 VFs, the PF programs the initial MAC address */
3770-
if (!(BEx_chip(adapter) && be_virtfn(adapter))) {
3776+
/* Don't add MAC on BE3 VFs without FILTMGMT privilege */
3777+
if (!BEx_chip(adapter) || !be_virtfn(adapter) ||
3778+
check_privilege(adapter, BE_PRIV_FILTMGMT)) {
37713779
status = be_dev_mac_add(adapter, adapter->netdev->dev_addr);
37723780
if (status)
37733781
return status;

0 commit comments

Comments
 (0)