sxgbe: Fix off by one in samsung driver strncpy size arg
authorDominik Czarnota <dominik.b.czarnota@gmail.com>
Mon, 9 Mar 2020 15:22:50 +0000 (16:22 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 2 Apr 2020 15:20:32 +0000 (17:20 +0200)
commit2f5432ef98d71f18d714251efc9885891989c0e6
treef7ec57320868b62b8e9e230042af9c34249b30f7
parenta8351c8a9eb24c664290098fc97df6573c1a6468
sxgbe: Fix off by one in samsung driver strncpy size arg

[ Upstream commit f3cc008bf6d59b8d93b4190e01d3e557b0040e15 ]

This patch fixes an off-by-one error in strncpy size argument in
drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c. The issue is that in:

        strncmp(opt, "eee_timer:", 6)

the passed string literal: "eee_timer:" has 10 bytes (without the NULL
byte) and the passed size argument is 6. As a result, the logic will
also accept other, malformed strings, e.g. "eee_tiXXX:".

This bug doesn't seem to have any security impact since its present in
module's cmdline parsing code.

Signed-off-by: Dominik Czarnota <dominik.b.czarnota@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c