[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <5301F32C.4040704@huawei.com>
Date: Mon, 17 Feb 2014 19:31:56 +0800
From: Wang Weidong <wangweidong1@...wei.com>
To: David Miller <davem@...emloft.net>
CC: <netdev@...r.kernel.org>
Subject: [PATCH] ethtool: check the ethtool_ops is NULL in dev_ethtool
some drivers maybe not implement the ethtool_ops with only
set NULL. So when call the ethtool cmds will lead to a
'NULL pointer dereference'.
So add a checking in dev_ethtool.
Signed-off-by: Wang Weidong <wangweidong1@...wei.com>
---
net/core/ethtool.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/net/core/ethtool.c b/net/core/ethtool.c
index 30071de..f418dcb 100644
--- a/net/core/ethtool.c
+++ b/net/core/ethtool.c
@@ -1499,6 +1499,9 @@ int dev_ethtool(struct net *net, struct ifreq *ifr)
if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
return -EPERM;
}
+
+ if (!dev->ethtool_ops)
+ return -EOPNOTSUPP;
if (dev->ethtool_ops->begin) {
rc = dev->ethtool_ops->begin(dev);
--
1.7.12
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists