summaryrefslogtreecommitdiffstats
path: root/net/wireless/ethtool.c
diff options
context:
space:
mode:
authorXueBing Chen <chenxuebing@jari.cn>2022-07-11 22:27:58 +0800
committerJohannes Berg <johannes.berg@intel.com>2022-07-15 11:43:12 +0200
commit59e8ef18f6a1b7712bfb6889fcd808b7b5951600 (patch)
tree1e533a05fb869fd7db79d49c79d021b90b50108d /net/wireless/ethtool.c
parent51d3cfaf992ff52c2e922dc935a78f415038a2da (diff)
downloadlinux-59e8ef18f6a1b7712bfb6889fcd808b7b5951600.tar.gz
linux-59e8ef18f6a1b7712bfb6889fcd808b7b5951600.tar.bz2
linux-59e8ef18f6a1b7712bfb6889fcd808b7b5951600.zip
wifi: cfg80211: use strscpy to replace strlcpy
The strlcpy should not be used because it doesn't limit the source length. Preferred is strscpy. Signed-off-by: XueBing Chen <chenxuebing@jari.cn> Link: https://lore.kernel.org/r/2d2fcbf7.e33.181eda8e70e.Coremail.chenxuebing@jari.cn Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless/ethtool.c')
-rw-r--r--net/wireless/ethtool.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/net/wireless/ethtool.c b/net/wireless/ethtool.c
index 24e18405cdb4..2613d6ac0fda 100644
--- a/net/wireless/ethtool.c
+++ b/net/wireless/ethtool.c
@@ -10,20 +10,20 @@ void cfg80211_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
struct device *pdev = wiphy_dev(wdev->wiphy);
if (pdev->driver)
- strlcpy(info->driver, pdev->driver->name,
+ strscpy(info->driver, pdev->driver->name,
sizeof(info->driver));
else
- strlcpy(info->driver, "N/A", sizeof(info->driver));
+ strscpy(info->driver, "N/A", sizeof(info->driver));
- strlcpy(info->version, init_utsname()->release, sizeof(info->version));
+ strscpy(info->version, init_utsname()->release, sizeof(info->version));
if (wdev->wiphy->fw_version[0])
- strlcpy(info->fw_version, wdev->wiphy->fw_version,
+ strscpy(info->fw_version, wdev->wiphy->fw_version,
sizeof(info->fw_version));
else
- strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
+ strscpy(info->fw_version, "N/A", sizeof(info->fw_version));
- strlcpy(info->bus_info, dev_name(wiphy_dev(wdev->wiphy)),
+ strscpy(info->bus_info, dev_name(wiphy_dev(wdev->wiphy)),
sizeof(info->bus_info));
}
EXPORT_SYMBOL(cfg80211_get_drvinfo);