Message ID | 20220207082253.GA28514@kili (mailing list archive) |
---|---|
State | Accepted |
Commit | dde41a697331fdcf1fd0eae85dc061d289626f1e |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [1/2,net-next] net: dsa: mv88e6xxx: Fix off by in one in mv88e6185_phylink_get_caps() | expand |
On Mon, Feb 07, 2022 at 11:22:53AM +0300, Dan Carpenter wrote: > The <= ARRAY_SIZE() needs to be < ARRAY_SIZE() to prevent an out of > bounds error. > > Fixes: d4ebf12bcec4 ("net: dsa: mv88e6xxx: populate supported_interfaces and mac_capabilities") > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Good catch, thanks. Reviewed-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Hello: This series was applied to netdev/net-next.git (master) by David S. Miller <davem@davemloft.net>: On Mon, 7 Feb 2022 11:22:53 +0300 you wrote: > The <= ARRAY_SIZE() needs to be < ARRAY_SIZE() to prevent an out of > bounds error. > > Fixes: d4ebf12bcec4 ("net: dsa: mv88e6xxx: populate supported_interfaces and mac_capabilities") > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> > --- > drivers/net/dsa/mv88e6xxx/chip.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [1/2,net-next] net: dsa: mv88e6xxx: Fix off by in one in mv88e6185_phylink_get_caps() https://git.kernel.org/netdev/net-next/c/dde41a697331 - [2/2,net-next] net: dsa: mv88e6xxx: Unlock on error in mv88e6xxx_port_bridge_join() https://git.kernel.org/netdev/net-next/c/ff62433883b3 You are awesome, thank you!
diff --git a/drivers/net/dsa/mv88e6xxx/chip.c b/drivers/net/dsa/mv88e6xxx/chip.c index 7670796c2aa1..192a7688b4df 100644 --- a/drivers/net/dsa/mv88e6xxx/chip.c +++ b/drivers/net/dsa/mv88e6xxx/chip.c @@ -585,7 +585,7 @@ static void mv88e6185_phylink_get_caps(struct mv88e6xxx_chip *chip, int port, { u8 cmode = chip->ports[port].cmode; - if (cmode <= ARRAY_SIZE(mv88e6185_phy_interface_modes) && + if (cmode < ARRAY_SIZE(mv88e6185_phy_interface_modes) && mv88e6185_phy_interface_modes[cmode]) __set_bit(mv88e6185_phy_interface_modes[cmode], config->supported_interfaces);
The <= ARRAY_SIZE() needs to be < ARRAY_SIZE() to prevent an out of bounds error. Fixes: d4ebf12bcec4 ("net: dsa: mv88e6xxx: populate supported_interfaces and mac_capabilities") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> --- drivers/net/dsa/mv88e6xxx/chip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)