lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 23 Jul 2020 01:06:50 +0300
From:   Vladimir Oltean <olteanv@...il.com>
To:     Florian Fainelli <f.fainelli@...il.com>
Cc:     kuba@...nel.org, davem@...emloft.net, netdev@...r.kernel.org,
        andrew@...n.ch, vivien.didelot@...il.com, jiri@...lanox.com,
        edumazet@...gle.com, ap420073@...il.com, xiyou.wangcong@...il.com,
        maximmi@...lanox.com, mkubecek@...e.cz, richardcochran@...il.com
Subject: Re: [PATCH net-next] net: restore DSA behavior of not overriding
 ndo_get_phys_port_name if present

On Wed, Jul 22, 2020 at 02:53:28PM -0700, Florian Fainelli wrote:
> On 7/22/20 1:53 PM, Vladimir Oltean wrote:
> > Prior to the commit below, dsa_master_ndo_setup() used to avoid
> > overriding .ndo_get_phys_port_name() unless the callback was empty.
> > 
> > https://elixir.bootlin.com/linux/v5.7.7/source/net/dsa/master.c#L269
> > 
> > Now, it overrides it unconditionally.
> > 
> > This matters for boards where DSA switches are hanging off of other DSA
> > switches, or switchdev interfaces.
> > Say a user has these udev rules for the top-level switch:
> > 
> > ACTION=="add", SUBSYSTEM=="net", KERNELS=="0000:00:00.5", DRIVERS=="mscc_felix", ATTR{phys_port_name}=="p0", NAME="swp0"
> > ACTION=="add", SUBSYSTEM=="net", KERNELS=="0000:00:00.5", DRIVERS=="mscc_felix", ATTR{phys_port_name}=="p1", NAME="swp1"
> > ACTION=="add", SUBSYSTEM=="net", KERNELS=="0000:00:00.5", DRIVERS=="mscc_felix", ATTR{phys_port_name}=="p2", NAME="swp2"
> > ACTION=="add", SUBSYSTEM=="net", KERNELS=="0000:00:00.5", DRIVERS=="mscc_felix", ATTR{phys_port_name}=="p3", NAME="swp3"
> > ACTION=="add", SUBSYSTEM=="net", KERNELS=="0000:00:00.5", DRIVERS=="mscc_felix", ATTR{phys_port_name}=="p4", NAME="swp4"
> > ACTION=="add", SUBSYSTEM=="net", KERNELS=="0000:00:00.5", DRIVERS=="mscc_felix", ATTR{phys_port_name}=="p5", NAME="swp5"
> > 
> > If the DSA switches below start randomly overriding
> > ndo_get_phys_port_name with their own CPU port, bad things can happen.
> > Not only may the CPU port number be not unique among different
> > downstream DSA switches, but one of the upstream switchdev interfaces
> > may also happen to have a port with the same number. So, we may even end
> > up in a situation where all interfaces of the top-level switch end up
> > having a phys_port_name attribute of "p0". Clearly not ok if the purpose
> > of the udev rules is to assign unique names.
> > 
> > Fix this by restoring the old behavior, which did not overlay this
> > operation on top of the DSA master logic, if there was one in place
> > already.
> > 
> > Fixes: 3369afba1e46 ("net: Call into DSA netdevice_ops wrappers")
> > Signed-off-by: Vladimir Oltean <olteanv@...il.com>
> > ---
> > This is brain-dead, please consider killing this and retrieving the CPU
> > port number from "devlink port"...
> 
> That is fair enough. Do you want to submit such a change while you are
> at it?
> 

If I'm getting you right, you mean I should be dropping this patch, and
send another one that deletes dsa_ndo_get_phys_port_name()?
I would expect that to be so - the problem is the fact that we're
retrieving the number of the CPU port through an ndo of the master
interface, it's not something we can fix by just calling into devlink
from kernel side. The user has to call into devlink.

> > 
> > pci/0000:00:00.5/0: type eth netdev swp0 flavour physical port 0
> > pci/0000:00:00.5/2: type eth netdev swp2 flavour physical port 2
> > pci/0000:00:00.5/4: type notset flavour cpu port 4
> > spi/spi2.0/0: type eth netdev sw0p0 flavour physical port 0
> > spi/spi2.0/1: type eth netdev sw0p1 flavour physical port 1
> > spi/spi2.0/2: type eth netdev sw0p2 flavour physical port 2
> > spi/spi2.0/4: type notset flavour cpu port 4
> > spi/spi2.1/0: type eth netdev sw1p0 flavour physical port 0
> > spi/spi2.1/1: type eth netdev sw1p1 flavour physical port 1
> > spi/spi2.1/2: type eth netdev sw1p2 flavour physical port 2
> > spi/spi2.1/3: type eth netdev sw1p3 flavour physical port 3
> > spi/spi2.1/4: type notset flavour cpu port 4
> > 
> >  net/core/dev.c | 13 +++++++++----
> >  1 file changed, 9 insertions(+), 4 deletions(-)
> > 
> > diff --git a/net/core/dev.c b/net/core/dev.c
> > index 19f1abc26fcd..60778bd8c3b1 100644
> > --- a/net/core/dev.c
> > +++ b/net/core/dev.c
> > @@ -8603,15 +8603,20 @@ int dev_get_phys_port_name(struct net_device *dev,
> >  	const struct net_device_ops *ops = dev->netdev_ops;
> >  	int err;
> >  
> > -	err  = dsa_ndo_get_phys_port_name(dev, name, len);
> > -	if (err == 0 || err != -EOPNOTSUPP)
> > -		return err;
> > -
> >  	if (ops->ndo_get_phys_port_name) {
> >  		err = ops->ndo_get_phys_port_name(dev, name, len);
> >  		if (err != -EOPNOTSUPP)
> >  			return err;
> > +	} else {
> > +		/* DSA may override this operation, but only if the master
> > +		 * isn't a switchdev or another DSA, in that case it breaks
> > +		 * their port numbering.
> > +		 */
> > +		err  = dsa_ndo_get_phys_port_name(dev, name, len);
> 
> Extraneous space here.
> 

I understand what you mean, but I was just moving it...
I wouldn't exactly respin for a whitespace. Although I might end up
dropping this patch if I understand your first comment correctly.

> Acked-by: Florian Fainelli <f.fainelli@...il.com>
> -- 
> Florian

Thanks,
-Vladimir

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ