]> git.baikalelectronics.ru Git - kernel.git/commit
net: qcom/emac: Replace strlcpy with strscpy
authorJason Wang <wangborong@cdjrlc.com>
Mon, 6 Sep 2021 13:56:53 +0000 (21:56 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 6 Sep 2021 15:43:17 +0000 (16:43 +0100)
commitcc168c407833358967898ca473360a85bb23dd91
treed6c5dd99173b30a79e948c53d549ab3c39aab83c
parentd34f256d87e6a064b9fdc87754d774f13e5eb294
net: qcom/emac: Replace strlcpy with strscpy

The strlcpy should not be used because it doesn't limit the source
length. As linus says, it's a completely useless function if you
can't implicitly trust the source string - but that is almost always
why people think they should use it! All in all the BSD function
will lead some potential bugs.

But the strscpy doesn't require reading memory from the src string
beyond the specified "count" bytes, and since the return value is
easier to error-check than strlcpy()'s. In addition, the implementation
is robust to the string changing out from underneath it, unlike the
current strlcpy() implementation.

Thus, We prefer using strscpy instead of strlcpy.

Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qualcomm/emac/emac-ethtool.c