]> git.baikalelectronics.ru Git - kernel.git/commit
net: dsa: bcm_sf2: Fix array overrun in bcm_sf2_num_active_ports()
authorFlorian Fainelli <f.fainelli@gmail.com>
Thu, 16 Sep 2021 21:33:35 +0000 (14:33 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 17 Sep 2021 13:21:46 +0000 (14:21 +0100)
commit4be373fedc81e990ba727fce75b05118338a077b
tree8dbd658f239e9c8bea35e0253613ec158e7a118c
parent2a4daece55b1f3d3725e8624aa2ddcf6c1d903cc
net: dsa: bcm_sf2: Fix array overrun in bcm_sf2_num_active_ports()

After b753756be883 ("net: dsa: b53: Set correct number of ports in the
DSA struct") we stopped setting dsa_switch::num_ports to DSA_MAX_PORTS,
which created an off by one error between the statically allocated
bcm_sf2_priv::port_sts array (of size DSA_MAX_PORTS). When
dsa_is_cpu_port() is used, we end-up accessing an out of bounds member
and causing a NPD.

Fix this by iterating with the appropriate port count using
ds->num_ports.

Fixes: b753756be883 ("net: dsa: b53: Set correct number of ports in the DSA struct")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/dsa/bcm_sf2.c