mlxsw: spectrum: Sanitize port netdev upper devices
authorIdo Schimmel <idosch@mellanox.com>
Mon, 20 Jun 2016 21:04:00 +0000 (23:04 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 21 Jun 2016 09:02:48 +0000 (05:02 -0400)
We currently only support the following upper devices for port netdevs:
1) Bridge
2) LAG (bond / team)
3) VLAN

Any other device is forbidden, so return an error.

Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlxsw/spectrum.c

index 3d57008..b47e3fb 100644 (file)
@@ -3034,6 +3034,10 @@ static int mlxsw_sp_netdevice_port_upper_event(struct net_device *dev,
        switch (event) {
        case NETDEV_PRECHANGEUPPER:
                upper_dev = info->upper_dev;
+               if (!is_vlan_dev(upper_dev) &&
+                   !netif_is_lag_master(upper_dev) &&
+                   !netif_is_bridge_master(upper_dev))
+                       return -EINVAL;
                if (!info->master || !info->linking)
                        break;
                /* HW limitation forbids to put ports to multiple bridges. */
@@ -3070,6 +3074,9 @@ static int mlxsw_sp_netdevice_port_upper_event(struct net_device *dev,
                        else
                                err = mlxsw_sp_port_lag_leave(mlxsw_sp_port,
                                                              upper_dev);
+               } else {
+                       err = -EINVAL;
+                       WARN_ON(1);
                }
                break;
        }