Commit b41f5c7f authored by Li RongQing's avatar Li RongQing Committed by Stefan Bader

net: ethtool: not call vzalloc for zero sized memory request

BugLink: https://bugs.launchpad.net/bugs/1828420

[ Upstream commit 3d883026 ]

NULL or ZERO_SIZE_PTR will be returned for zero sized memory
request, and derefencing them will lead to a segfault

so it is unnecessory to call vzalloc for zero sized memory
request and not call functions which maybe derefence the
NULL allocated memory

this also fixes a possible memory leak if phy_ethtool_get_stats
returns error, memory should be freed before exit
Signed-off-by: default avatarLi RongQing <lirongqing@baidu.com>
Reviewed-by: default avatarWang Li <wangli39@baidu.com>
Reviewed-by: default avatarMichal Kubecek <mkubecek@suse.cz>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarKleber Sacilotto de Souza <kleber.souza@canonical.com>
Signed-off-by: default avatarStefan Bader <stefan.bader@canonical.com>
parent eb1a6a57
...@@ -1780,17 +1780,22 @@ static int ethtool_get_strings(struct net_device *dev, void __user *useraddr) ...@@ -1780,17 +1780,22 @@ static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
gstrings.len = ret; gstrings.len = ret;
data = kcalloc(gstrings.len, ETH_GSTRING_LEN, GFP_USER); if (gstrings.len) {
if (!data) data = kcalloc(gstrings.len, ETH_GSTRING_LEN, GFP_USER);
return -ENOMEM; if (!data)
return -ENOMEM;
__ethtool_get_strings(dev, gstrings.string_set, data); __ethtool_get_strings(dev, gstrings.string_set, data);
} else {
data = NULL;
}
ret = -EFAULT; ret = -EFAULT;
if (copy_to_user(useraddr, &gstrings, sizeof(gstrings))) if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
goto out; goto out;
useraddr += sizeof(gstrings); useraddr += sizeof(gstrings);
if (copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN)) if (gstrings.len &&
copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
goto out; goto out;
ret = 0; ret = 0;
...@@ -1878,17 +1883,21 @@ static int ethtool_get_stats(struct net_device *dev, void __user *useraddr) ...@@ -1878,17 +1883,21 @@ static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
return -EFAULT; return -EFAULT;
stats.n_stats = n_stats; stats.n_stats = n_stats;
data = kmalloc(n_stats * sizeof(u64), GFP_USER); if (n_stats) {
if (!data) data = kmalloc(n_stats * sizeof(u64), GFP_USER);
return -ENOMEM; if (!data)
return -ENOMEM;
ops->get_ethtool_stats(dev, &stats, data); ops->get_ethtool_stats(dev, &stats, data);
} else {
data = NULL;
}
ret = -EFAULT; ret = -EFAULT;
if (copy_to_user(useraddr, &stats, sizeof(stats))) if (copy_to_user(useraddr, &stats, sizeof(stats)))
goto out; goto out;
useraddr += sizeof(stats); useraddr += sizeof(stats);
if (copy_to_user(useraddr, data, stats.n_stats * sizeof(u64))) if (n_stats && copy_to_user(useraddr, data, n_stats * sizeof(u64)))
goto out; goto out;
ret = 0; ret = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment