]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
net: mvpp2: Use strscpy to handle stat strings
authorMaxime Chevallier <maxime.chevallier@bootlin.com>
Thu, 6 Jun 2019 08:42:56 +0000 (10:42 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 6 Jun 2019 17:38:42 +0000 (10:38 -0700)
Use a safe strscpy call to copy the ethtool stat strings into the
relevant buffers, instead of a memcpy that will be accessing
out-of-bound data.

Fixes: 118d6298f6f0 ("net: mvpp2: add ethtool GOP statistics")
Signed-off-by: Maxime Chevallier <maxime.chevallier@bootlin.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c

index 7a67e23a2c2b017ea7ed08531983d7948d393454..d8e5241097a9a957b9e959fa7cd605d286212c7f 100644 (file)
@@ -1304,8 +1304,8 @@ static void mvpp2_ethtool_get_strings(struct net_device *netdev, u32 sset,
                int i;
 
                for (i = 0; i < ARRAY_SIZE(mvpp2_ethtool_regs); i++)
-                       memcpy(data + i * ETH_GSTRING_LEN,
-                              &mvpp2_ethtool_regs[i].string, ETH_GSTRING_LEN);
+                       strscpy(data + i * ETH_GSTRING_LEN,
+                               mvpp2_ethtool_regs[i].string, ETH_GSTRING_LEN);
        }
 }