blob: 454f73fcb3a692610ee056eae504dff7f13a42c1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/core/ethtool.c - Ethtool ioctl handler
3 * Copyright (c) 2003 Matthew Wilcox <matthew@wil.cx>
4 *
5 * This file is where we call all the ethtool_ops commands to get
Matthew Wilcox61a44b92007-07-31 14:00:02 -07006 * the information ethtool needs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Matthew Wilcox61a44b92007-07-31 14:00:02 -07008 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
14#include <linux/module.h>
15#include <linux/types.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080016#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/errno.h>
18#include <linux/ethtool.h>
19#include <linux/netdevice.h>
Richard Cochranc8f3a8c2012-04-03 22:59:17 +000020#include <linux/net_tstamp.h>
21#include <linux/phy.h>
Jeff Garzikd17792e2010-03-04 08:21:53 +000022#include <linux/bitops.h>
chavey97f8aef2010-04-07 21:54:42 -070023#include <linux/uaccess.h>
David S. Miller73da16c2010-09-21 16:12:11 -070024#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Ben Hutchings68f512f2011-04-02 00:35:15 +010026#include <linux/rtnetlink.h>
27#include <linux/sched.h>
Eric Dumazet960fb622014-11-16 06:23:05 -080028#include <linux/net.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090030/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * Some useful ethtool_ops methods that're device independent.
32 * If we find that all drivers want to do the same thing here,
33 * we can turn these into dev_() function calls.
34 */
35
36u32 ethtool_op_get_link(struct net_device *dev)
37{
38 return netif_carrier_ok(dev) ? 1 : 0;
39}
chavey97f8aef2010-04-07 21:54:42 -070040EXPORT_SYMBOL(ethtool_op_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Richard Cochran02eacbd2012-04-03 22:59:22 +000042int ethtool_op_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
43{
44 info->so_timestamping =
45 SOF_TIMESTAMPING_TX_SOFTWARE |
46 SOF_TIMESTAMPING_RX_SOFTWARE |
47 SOF_TIMESTAMPING_SOFTWARE;
48 info->phc_index = -1;
49 return 0;
50}
51EXPORT_SYMBOL(ethtool_op_get_ts_info);
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/* Handlers for each ethtool command */
54
Michał Mirosław475414f2011-11-15 15:29:55 +000055#define ETHTOOL_DEV_FEATURE_WORDS ((NETDEV_FEATURE_COUNT + 31) / 32)
Michał Mirosław5455c692011-02-15 16:59:17 +000056
Michał Mirosław9d921542011-11-15 15:29:55 +000057static const char netdev_features_strings[NETDEV_FEATURE_COUNT][ETH_GSTRING_LEN] = {
58 [NETIF_F_SG_BIT] = "tx-scatter-gather",
59 [NETIF_F_IP_CSUM_BIT] = "tx-checksum-ipv4",
Michał Mirosław9d921542011-11-15 15:29:55 +000060 [NETIF_F_HW_CSUM_BIT] = "tx-checksum-ip-generic",
61 [NETIF_F_IPV6_CSUM_BIT] = "tx-checksum-ipv6",
62 [NETIF_F_HIGHDMA_BIT] = "highdma",
63 [NETIF_F_FRAGLIST_BIT] = "tx-scatter-gather-fraglist",
Fernando Luis Vazquez Cao788dfca2013-06-17 11:28:03 +090064 [NETIF_F_HW_VLAN_CTAG_TX_BIT] = "tx-vlan-hw-insert",
Michał Mirosław9d921542011-11-15 15:29:55 +000065
Fernando Luis Vazquez Cao788dfca2013-06-17 11:28:03 +090066 [NETIF_F_HW_VLAN_CTAG_RX_BIT] = "rx-vlan-hw-parse",
67 [NETIF_F_HW_VLAN_CTAG_FILTER_BIT] = "rx-vlan-filter",
David S. Miller2d6577f2013-04-19 16:08:23 -040068 [NETIF_F_HW_VLAN_STAG_TX_BIT] = "tx-vlan-stag-hw-insert",
69 [NETIF_F_HW_VLAN_STAG_RX_BIT] = "rx-vlan-stag-hw-parse",
70 [NETIF_F_HW_VLAN_STAG_FILTER_BIT] = "rx-vlan-stag-filter",
Michał Mirosław9d921542011-11-15 15:29:55 +000071 [NETIF_F_VLAN_CHALLENGED_BIT] = "vlan-challenged",
72 [NETIF_F_GSO_BIT] = "tx-generic-segmentation",
73 [NETIF_F_LLTX_BIT] = "tx-lockless",
74 [NETIF_F_NETNS_LOCAL_BIT] = "netns-local",
75 [NETIF_F_GRO_BIT] = "rx-gro",
76 [NETIF_F_LRO_BIT] = "rx-lro",
77
78 [NETIF_F_TSO_BIT] = "tx-tcp-segmentation",
79 [NETIF_F_UFO_BIT] = "tx-udp-fragmentation",
80 [NETIF_F_GSO_ROBUST_BIT] = "tx-gso-robust",
81 [NETIF_F_TSO_ECN_BIT] = "tx-tcp-ecn-segmentation",
Alexander Duyckcbc53e02016-04-10 21:44:51 -040082 [NETIF_F_TSO_MANGLEID_BIT] = "tx-tcp-mangleid-segmentation",
Michał Mirosław9d921542011-11-15 15:29:55 +000083 [NETIF_F_TSO6_BIT] = "tx-tcp6-segmentation",
84 [NETIF_F_FSO_BIT] = "tx-fcoe-segmentation",
Pravin B Shelar68c33162013-02-14 14:02:41 +000085 [NETIF_F_GSO_GRE_BIT] = "tx-gre-segmentation",
Alexander Duyck518f2132016-04-10 21:44:44 -040086 [NETIF_F_GSO_GRE_CSUM_BIT] = "tx-gre-csum-segmentation",
Tom Herbert7e133182016-05-18 09:06:10 -070087 [NETIF_F_GSO_IPXIP4_BIT] = "tx-ipxip4-segmentation",
88 [NETIF_F_GSO_IPXIP6_BIT] = "tx-ipxip6-segmentation",
Pravin B Shelar73136262013-03-07 13:21:51 +000089 [NETIF_F_GSO_UDP_TUNNEL_BIT] = "tx-udp_tnl-segmentation",
Alexander Duyck518f2132016-04-10 21:44:44 -040090 [NETIF_F_GSO_UDP_TUNNEL_CSUM_BIT] = "tx-udp_tnl-csum-segmentation",
Alexander Duyck802ab552016-04-10 21:45:03 -040091 [NETIF_F_GSO_PARTIAL_BIT] = "tx-gso-partial",
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -030092 [NETIF_F_GSO_SCTP_BIT] = "tx-sctp-segmentation",
Michał Mirosław9d921542011-11-15 15:29:55 +000093
94 [NETIF_F_FCOE_CRC_BIT] = "tx-checksum-fcoe-crc",
Tom Herbert53692b12015-12-14 11:19:41 -080095 [NETIF_F_SCTP_CRC_BIT] = "tx-checksum-sctp",
Michał Mirosław9d921542011-11-15 15:29:55 +000096 [NETIF_F_FCOE_MTU_BIT] = "fcoe-mtu",
97 [NETIF_F_NTUPLE_BIT] = "rx-ntuple-filter",
98 [NETIF_F_RXHASH_BIT] = "rx-hashing",
99 [NETIF_F_RXCSUM_BIT] = "rx-checksum",
100 [NETIF_F_NOCACHE_COPY_BIT] = "tx-nocache-copy",
101 [NETIF_F_LOOPBACK_BIT] = "loopback",
Ben Greear36eabda32012-02-11 15:39:14 +0000102 [NETIF_F_RXFCS_BIT] = "rx-fcs",
Ben Greear5e0c03c2012-02-11 15:39:45 +0000103 [NETIF_F_RXALL_BIT] = "rx-all",
John Fastabenda6cc0cf2013-11-06 09:54:46 -0800104 [NETIF_F_HW_L2FW_DOFFLOAD_BIT] = "l2-fwd-offload",
Jiri Pirkod0290212014-04-02 23:09:31 +0200105 [NETIF_F_BUSY_POLL_BIT] = "busy-poll",
John Fastabend1c78c642016-02-16 21:17:37 -0800106 [NETIF_F_HW_TC_BIT] = "hw-tc-offload",
Michał Mirosław9d921542011-11-15 15:29:55 +0000107};
108
Eyal Perry892311f2014-12-02 18:12:10 +0200109static const char
110rss_hash_func_strings[ETH_RSS_HASH_FUNCS_COUNT][ETH_GSTRING_LEN] = {
111 [ETH_RSS_HASH_TOP_BIT] = "toeplitz",
112 [ETH_RSS_HASH_XOR_BIT] = "xor",
113};
114
Hadar Hen Ziona4244b02015-06-11 10:28:16 +0300115static const char
116tunable_strings[__ETHTOOL_TUNABLE_COUNT][ETH_GSTRING_LEN] = {
117 [ETHTOOL_ID_UNSPEC] = "Unspec",
118 [ETHTOOL_RX_COPYBREAK] = "rx-copybreak",
119 [ETHTOOL_TX_COPYBREAK] = "tx-copybreak",
120};
121
Michał Mirosław5455c692011-02-15 16:59:17 +0000122static int ethtool_get_features(struct net_device *dev, void __user *useraddr)
123{
124 struct ethtool_gfeatures cmd = {
125 .cmd = ETHTOOL_GFEATURES,
126 .size = ETHTOOL_DEV_FEATURE_WORDS,
127 };
Michał Mirosław475414f2011-11-15 15:29:55 +0000128 struct ethtool_get_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
Michał Mirosław5455c692011-02-15 16:59:17 +0000129 u32 __user *sizeaddr;
130 u32 copy_size;
Michał Mirosław475414f2011-11-15 15:29:55 +0000131 int i;
132
133 /* in case feature bits run out again */
Michał Mirosław09da71b2011-11-16 14:32:03 +0000134 BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS * sizeof(u32) > sizeof(netdev_features_t));
Michał Mirosław475414f2011-11-15 15:29:55 +0000135
136 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
Michał Mirosław09da71b2011-11-16 14:32:03 +0000137 features[i].available = (u32)(dev->hw_features >> (32 * i));
138 features[i].requested = (u32)(dev->wanted_features >> (32 * i));
139 features[i].active = (u32)(dev->features >> (32 * i));
140 features[i].never_changed =
141 (u32)(NETIF_F_NEVER_CHANGE >> (32 * i));
Michał Mirosław475414f2011-11-15 15:29:55 +0000142 }
Michał Mirosław5455c692011-02-15 16:59:17 +0000143
144 sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size);
145 if (get_user(copy_size, sizeaddr))
146 return -EFAULT;
147
148 if (copy_size > ETHTOOL_DEV_FEATURE_WORDS)
149 copy_size = ETHTOOL_DEV_FEATURE_WORDS;
150
151 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
152 return -EFAULT;
153 useraddr += sizeof(cmd);
154 if (copy_to_user(useraddr, features, copy_size * sizeof(*features)))
155 return -EFAULT;
156
157 return 0;
158}
159
160static int ethtool_set_features(struct net_device *dev, void __user *useraddr)
161{
162 struct ethtool_sfeatures cmd;
163 struct ethtool_set_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
Michał Mirosław475414f2011-11-15 15:29:55 +0000164 netdev_features_t wanted = 0, valid = 0;
165 int i, ret = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +0000166
167 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
168 return -EFAULT;
169 useraddr += sizeof(cmd);
170
171 if (cmd.size != ETHTOOL_DEV_FEATURE_WORDS)
172 return -EINVAL;
173
174 if (copy_from_user(features, useraddr, sizeof(features)))
175 return -EFAULT;
176
Michał Mirosław475414f2011-11-15 15:29:55 +0000177 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
Michał Mirosław09da71b2011-11-16 14:32:03 +0000178 valid |= (netdev_features_t)features[i].valid << (32 * i);
179 wanted |= (netdev_features_t)features[i].requested << (32 * i);
Michał Mirosław475414f2011-11-15 15:29:55 +0000180 }
181
182 if (valid & ~NETIF_F_ETHTOOL_BITS)
Michał Mirosław5455c692011-02-15 16:59:17 +0000183 return -EINVAL;
184
Michał Mirosław475414f2011-11-15 15:29:55 +0000185 if (valid & ~dev->hw_features) {
186 valid &= dev->hw_features;
Michał Mirosław5455c692011-02-15 16:59:17 +0000187 ret |= ETHTOOL_F_UNSUPPORTED;
188 }
189
Michał Mirosław475414f2011-11-15 15:29:55 +0000190 dev->wanted_features &= ~valid;
191 dev->wanted_features |= wanted & valid;
Michał Mirosław6cb6a272011-04-02 22:48:47 -0700192 __netdev_update_features(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +0000193
Michał Mirosław475414f2011-11-15 15:29:55 +0000194 if ((dev->wanted_features ^ dev->features) & valid)
Michał Mirosław5455c692011-02-15 16:59:17 +0000195 ret |= ETHTOOL_F_WISH;
196
197 return ret;
198}
199
Andrew Lunnf3a40942015-12-30 16:28:25 +0100200static int phy_get_sset_count(struct phy_device *phydev)
201{
202 int ret;
203
204 if (phydev->drv->get_sset_count &&
205 phydev->drv->get_strings &&
206 phydev->drv->get_stats) {
207 mutex_lock(&phydev->lock);
208 ret = phydev->drv->get_sset_count(phydev);
209 mutex_unlock(&phydev->lock);
210
211 return ret;
212 }
213
214 return -EOPNOTSUPP;
215}
216
Michał Mirosław340ae162011-02-15 16:59:16 +0000217static int __ethtool_get_sset_count(struct net_device *dev, int sset)
218{
219 const struct ethtool_ops *ops = dev->ethtool_ops;
220
Michał Mirosław5455c692011-02-15 16:59:17 +0000221 if (sset == ETH_SS_FEATURES)
222 return ARRAY_SIZE(netdev_features_strings);
223
Eyal Perry892311f2014-12-02 18:12:10 +0200224 if (sset == ETH_SS_RSS_HASH_FUNCS)
225 return ARRAY_SIZE(rss_hash_func_strings);
226
Hadar Hen Ziona4244b02015-06-11 10:28:16 +0300227 if (sset == ETH_SS_TUNABLES)
228 return ARRAY_SIZE(tunable_strings);
229
Andrew Lunnf3a40942015-12-30 16:28:25 +0100230 if (sset == ETH_SS_PHY_STATS) {
231 if (dev->phydev)
232 return phy_get_sset_count(dev->phydev);
233 else
234 return -EOPNOTSUPP;
235 }
236
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000237 if (ops->get_sset_count && ops->get_strings)
Michał Mirosław340ae162011-02-15 16:59:16 +0000238 return ops->get_sset_count(dev, sset);
239 else
240 return -EOPNOTSUPP;
241}
242
243static void __ethtool_get_strings(struct net_device *dev,
244 u32 stringset, u8 *data)
245{
246 const struct ethtool_ops *ops = dev->ethtool_ops;
247
Michał Mirosław5455c692011-02-15 16:59:17 +0000248 if (stringset == ETH_SS_FEATURES)
249 memcpy(data, netdev_features_strings,
250 sizeof(netdev_features_strings));
Eyal Perry892311f2014-12-02 18:12:10 +0200251 else if (stringset == ETH_SS_RSS_HASH_FUNCS)
252 memcpy(data, rss_hash_func_strings,
253 sizeof(rss_hash_func_strings));
Hadar Hen Ziona4244b02015-06-11 10:28:16 +0300254 else if (stringset == ETH_SS_TUNABLES)
255 memcpy(data, tunable_strings, sizeof(tunable_strings));
Andrew Lunnf3a40942015-12-30 16:28:25 +0100256 else if (stringset == ETH_SS_PHY_STATS) {
257 struct phy_device *phydev = dev->phydev;
258
259 if (phydev) {
260 mutex_lock(&phydev->lock);
261 phydev->drv->get_strings(phydev, data);
262 mutex_unlock(&phydev->lock);
263 } else {
264 return;
265 }
266 } else
Michał Mirosław5455c692011-02-15 16:59:17 +0000267 /* ops->get_strings is valid because checked earlier */
268 ops->get_strings(dev, stringset, data);
Michał Mirosław340ae162011-02-15 16:59:16 +0000269}
270
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000271static netdev_features_t ethtool_get_feature_mask(u32 eth_cmd)
Michał Mirosław0a417702011-02-15 16:59:17 +0000272{
273 /* feature masks of legacy discrete ethtool ops */
274
275 switch (eth_cmd) {
276 case ETHTOOL_GTXCSUM:
277 case ETHTOOL_STXCSUM:
Tom Herberta1882222015-12-14 11:19:43 -0800278 return NETIF_F_CSUM_MASK | NETIF_F_SCTP_CRC;
Michał Mirosławe83d3602011-02-15 16:59:18 +0000279 case ETHTOOL_GRXCSUM:
280 case ETHTOOL_SRXCSUM:
281 return NETIF_F_RXCSUM;
Michał Mirosław0a417702011-02-15 16:59:17 +0000282 case ETHTOOL_GSG:
283 case ETHTOOL_SSG:
284 return NETIF_F_SG;
285 case ETHTOOL_GTSO:
286 case ETHTOOL_STSO:
287 return NETIF_F_ALL_TSO;
288 case ETHTOOL_GUFO:
289 case ETHTOOL_SUFO:
290 return NETIF_F_UFO;
291 case ETHTOOL_GGSO:
292 case ETHTOOL_SGSO:
293 return NETIF_F_GSO;
294 case ETHTOOL_GGRO:
295 case ETHTOOL_SGRO:
296 return NETIF_F_GRO;
297 default:
298 BUG();
299 }
300}
301
Michał Mirosław0a417702011-02-15 16:59:17 +0000302static int ethtool_get_one_feature(struct net_device *dev,
303 char __user *useraddr, u32 ethcmd)
304{
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000305 netdev_features_t mask = ethtool_get_feature_mask(ethcmd);
Michał Mirosław0a417702011-02-15 16:59:17 +0000306 struct ethtool_value edata = {
307 .cmd = ethcmd,
Michał Mirosław86794882011-02-15 16:59:17 +0000308 .data = !!(dev->features & mask),
Michał Mirosław0a417702011-02-15 16:59:17 +0000309 };
Michał Mirosław0a417702011-02-15 16:59:17 +0000310
Michał Mirosław0a417702011-02-15 16:59:17 +0000311 if (copy_to_user(useraddr, &edata, sizeof(edata)))
312 return -EFAULT;
313 return 0;
314}
315
Michał Mirosław0a417702011-02-15 16:59:17 +0000316static int ethtool_set_one_feature(struct net_device *dev,
317 void __user *useraddr, u32 ethcmd)
318{
319 struct ethtool_value edata;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000320 netdev_features_t mask;
Michał Mirosław0a417702011-02-15 16:59:17 +0000321
322 if (copy_from_user(&edata, useraddr, sizeof(edata)))
323 return -EFAULT;
324
Michał Mirosław86794882011-02-15 16:59:17 +0000325 mask = ethtool_get_feature_mask(ethcmd);
326 mask &= dev->hw_features;
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000327 if (!mask)
Michał Mirosław0a417702011-02-15 16:59:17 +0000328 return -EOPNOTSUPP;
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000329
330 if (edata.data)
331 dev->wanted_features |= mask;
332 else
333 dev->wanted_features &= ~mask;
334
335 __netdev_update_features(dev);
336
337 return 0;
Michał Mirosław0a417702011-02-15 16:59:17 +0000338}
339
Michał Mirosław02b3a552011-11-15 15:29:55 +0000340#define ETH_ALL_FLAGS (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
341 ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
Patrick McHardyf6469682013-04-19 02:04:27 +0000342#define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
343 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
344 NETIF_F_RXHASH)
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000345
346static u32 __ethtool_get_flags(struct net_device *dev)
347{
Michał Mirosław02b3a552011-11-15 15:29:55 +0000348 u32 flags = 0;
349
Dragos Foianu8a731252013-07-13 14:43:00 +0100350 if (dev->features & NETIF_F_LRO)
351 flags |= ETH_FLAG_LRO;
352 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
353 flags |= ETH_FLAG_RXVLAN;
354 if (dev->features & NETIF_F_HW_VLAN_CTAG_TX)
355 flags |= ETH_FLAG_TXVLAN;
356 if (dev->features & NETIF_F_NTUPLE)
357 flags |= ETH_FLAG_NTUPLE;
358 if (dev->features & NETIF_F_RXHASH)
359 flags |= ETH_FLAG_RXHASH;
Michał Mirosław02b3a552011-11-15 15:29:55 +0000360
361 return flags;
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000362}
363
364static int __ethtool_set_flags(struct net_device *dev, u32 data)
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000365{
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000366 netdev_features_t features = 0, changed;
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000367
Michał Mirosław02b3a552011-11-15 15:29:55 +0000368 if (data & ~ETH_ALL_FLAGS)
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000369 return -EINVAL;
370
Dragos Foianu8a731252013-07-13 14:43:00 +0100371 if (data & ETH_FLAG_LRO)
372 features |= NETIF_F_LRO;
373 if (data & ETH_FLAG_RXVLAN)
374 features |= NETIF_F_HW_VLAN_CTAG_RX;
375 if (data & ETH_FLAG_TXVLAN)
376 features |= NETIF_F_HW_VLAN_CTAG_TX;
377 if (data & ETH_FLAG_NTUPLE)
378 features |= NETIF_F_NTUPLE;
379 if (data & ETH_FLAG_RXHASH)
380 features |= NETIF_F_RXHASH;
Michał Mirosław02b3a552011-11-15 15:29:55 +0000381
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000382 /* allow changing only bits set in hw_features */
Michał Mirosław02b3a552011-11-15 15:29:55 +0000383 changed = (features ^ dev->features) & ETH_ALL_FEATURES;
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000384 if (changed & ~dev->hw_features)
385 return (changed & dev->hw_features) ? -EINVAL : -EOPNOTSUPP;
386
387 dev->wanted_features =
Michał Mirosław02b3a552011-11-15 15:29:55 +0000388 (dev->wanted_features & ~changed) | (features & changed);
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000389
Michał Mirosław6cb6a272011-04-02 22:48:47 -0700390 __netdev_update_features(dev);
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000391
392 return 0;
393}
394
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200395void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst,
396 u32 legacy_u32)
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800397{
398 bitmap_zero(dst, __ETHTOOL_LINK_MODE_MASK_NBITS);
399 dst[0] = legacy_u32;
400}
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200401EXPORT_SYMBOL(ethtool_convert_legacy_u32_to_link_mode);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800402
403/* return false if src had higher bits set. lower bits always updated. */
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200404bool ethtool_convert_link_mode_to_legacy_u32(u32 *legacy_u32,
405 const unsigned long *src)
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800406{
407 bool retval = true;
408
409 /* TODO: following test will soon always be true */
410 if (__ETHTOOL_LINK_MODE_MASK_NBITS > 32) {
411 __ETHTOOL_DECLARE_LINK_MODE_MASK(ext);
412
413 bitmap_zero(ext, __ETHTOOL_LINK_MODE_MASK_NBITS);
414 bitmap_fill(ext, 32);
415 bitmap_complement(ext, ext, __ETHTOOL_LINK_MODE_MASK_NBITS);
416 if (bitmap_intersects(ext, src,
417 __ETHTOOL_LINK_MODE_MASK_NBITS)) {
418 /* src mask goes beyond bit 31 */
419 retval = false;
420 }
421 }
422 *legacy_u32 = src[0];
423 return retval;
424}
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200425EXPORT_SYMBOL(ethtool_convert_link_mode_to_legacy_u32);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800426
427/* return false if legacy contained non-0 deprecated fields
428 * transceiver/maxtxpkt/maxrxpkt. rest of ksettings always updated
429 */
430static bool
431convert_legacy_settings_to_link_ksettings(
432 struct ethtool_link_ksettings *link_ksettings,
433 const struct ethtool_cmd *legacy_settings)
434{
435 bool retval = true;
436
437 memset(link_ksettings, 0, sizeof(*link_ksettings));
438
439 /* This is used to tell users that driver is still using these
440 * deprecated legacy fields, and they should not use
441 * %ETHTOOL_GLINKSETTINGS/%ETHTOOL_SLINKSETTINGS
442 */
443 if (legacy_settings->transceiver ||
444 legacy_settings->maxtxpkt ||
445 legacy_settings->maxrxpkt)
446 retval = false;
447
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200448 ethtool_convert_legacy_u32_to_link_mode(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800449 link_ksettings->link_modes.supported,
450 legacy_settings->supported);
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200451 ethtool_convert_legacy_u32_to_link_mode(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800452 link_ksettings->link_modes.advertising,
453 legacy_settings->advertising);
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200454 ethtool_convert_legacy_u32_to_link_mode(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800455 link_ksettings->link_modes.lp_advertising,
456 legacy_settings->lp_advertising);
457 link_ksettings->base.speed
458 = ethtool_cmd_speed(legacy_settings);
459 link_ksettings->base.duplex
460 = legacy_settings->duplex;
461 link_ksettings->base.port
462 = legacy_settings->port;
463 link_ksettings->base.phy_address
464 = legacy_settings->phy_address;
465 link_ksettings->base.autoneg
466 = legacy_settings->autoneg;
467 link_ksettings->base.mdio_support
468 = legacy_settings->mdio_support;
469 link_ksettings->base.eth_tp_mdix
470 = legacy_settings->eth_tp_mdix;
471 link_ksettings->base.eth_tp_mdix_ctrl
472 = legacy_settings->eth_tp_mdix_ctrl;
473 return retval;
474}
475
476/* return false if ksettings link modes had higher bits
477 * set. legacy_settings always updated (best effort)
478 */
479static bool
480convert_link_ksettings_to_legacy_settings(
481 struct ethtool_cmd *legacy_settings,
482 const struct ethtool_link_ksettings *link_ksettings)
483{
484 bool retval = true;
485
486 memset(legacy_settings, 0, sizeof(*legacy_settings));
487 /* this also clears the deprecated fields in legacy structure:
488 * __u8 transceiver;
489 * __u32 maxtxpkt;
490 * __u32 maxrxpkt;
491 */
492
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200493 retval &= ethtool_convert_link_mode_to_legacy_u32(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800494 &legacy_settings->supported,
495 link_ksettings->link_modes.supported);
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200496 retval &= ethtool_convert_link_mode_to_legacy_u32(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800497 &legacy_settings->advertising,
498 link_ksettings->link_modes.advertising);
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200499 retval &= ethtool_convert_link_mode_to_legacy_u32(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800500 &legacy_settings->lp_advertising,
501 link_ksettings->link_modes.lp_advertising);
502 ethtool_cmd_speed_set(legacy_settings, link_ksettings->base.speed);
503 legacy_settings->duplex
504 = link_ksettings->base.duplex;
505 legacy_settings->port
506 = link_ksettings->base.port;
507 legacy_settings->phy_address
508 = link_ksettings->base.phy_address;
509 legacy_settings->autoneg
510 = link_ksettings->base.autoneg;
511 legacy_settings->mdio_support
512 = link_ksettings->base.mdio_support;
513 legacy_settings->eth_tp_mdix
514 = link_ksettings->base.eth_tp_mdix;
515 legacy_settings->eth_tp_mdix_ctrl
516 = link_ksettings->base.eth_tp_mdix_ctrl;
517 return retval;
518}
519
520/* number of 32-bit words to store the user's link mode bitmaps */
521#define __ETHTOOL_LINK_MODE_MASK_NU32 \
522 DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32)
523
524/* layout of the struct passed from/to userland */
525struct ethtool_link_usettings {
526 struct ethtool_link_settings base;
527 struct {
528 __u32 supported[__ETHTOOL_LINK_MODE_MASK_NU32];
529 __u32 advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
530 __u32 lp_advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
531 } link_modes;
532};
533
534/* Internal kernel helper to query a device ethtool_link_settings.
535 *
536 * Backward compatibility note: for compatibility with legacy drivers
537 * that implement only the ethtool_cmd API, this has to work with both
538 * drivers implementing get_link_ksettings API and drivers
539 * implementing get_settings API. When drivers implement get_settings
540 * and report ethtool_cmd deprecated fields
541 * (transceiver/maxrxpkt/maxtxpkt), these fields are silently ignored
542 * because the resulting struct ethtool_link_settings does not report them.
543 */
544int __ethtool_get_link_ksettings(struct net_device *dev,
545 struct ethtool_link_ksettings *link_ksettings)
546{
547 int err;
548 struct ethtool_cmd cmd;
549
550 ASSERT_RTNL();
551
552 if (dev->ethtool_ops->get_link_ksettings) {
553 memset(link_ksettings, 0, sizeof(*link_ksettings));
554 return dev->ethtool_ops->get_link_ksettings(dev,
555 link_ksettings);
556 }
557
558 /* driver doesn't support %ethtool_link_ksettings API. revert to
559 * legacy %ethtool_cmd API, unless it's not supported either.
560 * TODO: remove when ethtool_ops::get_settings disappears internally
561 */
David Decotigny3237fc62016-02-24 10:58:11 -0800562 if (!dev->ethtool_ops->get_settings)
563 return -EOPNOTSUPP;
564
565 memset(&cmd, 0, sizeof(cmd));
566 cmd.cmd = ETHTOOL_GSET;
567 err = dev->ethtool_ops->get_settings(dev, &cmd);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800568 if (err < 0)
569 return err;
570
571 /* we ignore deprecated fields transceiver/maxrxpkt/maxtxpkt
572 */
573 convert_legacy_settings_to_link_ksettings(link_ksettings, &cmd);
574 return err;
575}
576EXPORT_SYMBOL(__ethtool_get_link_ksettings);
577
578/* convert ethtool_link_usettings in user space to a kernel internal
579 * ethtool_link_ksettings. return 0 on success, errno on error.
580 */
581static int load_link_ksettings_from_user(struct ethtool_link_ksettings *to,
582 const void __user *from)
583{
584 struct ethtool_link_usettings link_usettings;
585
586 if (copy_from_user(&link_usettings, from, sizeof(link_usettings)))
587 return -EFAULT;
588
589 memcpy(&to->base, &link_usettings.base, sizeof(to->base));
590 bitmap_from_u32array(to->link_modes.supported,
591 __ETHTOOL_LINK_MODE_MASK_NBITS,
592 link_usettings.link_modes.supported,
593 __ETHTOOL_LINK_MODE_MASK_NU32);
594 bitmap_from_u32array(to->link_modes.advertising,
595 __ETHTOOL_LINK_MODE_MASK_NBITS,
596 link_usettings.link_modes.advertising,
597 __ETHTOOL_LINK_MODE_MASK_NU32);
598 bitmap_from_u32array(to->link_modes.lp_advertising,
599 __ETHTOOL_LINK_MODE_MASK_NBITS,
600 link_usettings.link_modes.lp_advertising,
601 __ETHTOOL_LINK_MODE_MASK_NU32);
602
603 return 0;
604}
605
606/* convert a kernel internal ethtool_link_ksettings to
607 * ethtool_link_usettings in user space. return 0 on success, errno on
608 * error.
609 */
610static int
611store_link_ksettings_for_user(void __user *to,
612 const struct ethtool_link_ksettings *from)
613{
614 struct ethtool_link_usettings link_usettings;
615
616 memcpy(&link_usettings.base, &from->base, sizeof(link_usettings));
617 bitmap_to_u32array(link_usettings.link_modes.supported,
618 __ETHTOOL_LINK_MODE_MASK_NU32,
619 from->link_modes.supported,
620 __ETHTOOL_LINK_MODE_MASK_NBITS);
621 bitmap_to_u32array(link_usettings.link_modes.advertising,
622 __ETHTOOL_LINK_MODE_MASK_NU32,
623 from->link_modes.advertising,
624 __ETHTOOL_LINK_MODE_MASK_NBITS);
625 bitmap_to_u32array(link_usettings.link_modes.lp_advertising,
626 __ETHTOOL_LINK_MODE_MASK_NU32,
627 from->link_modes.lp_advertising,
628 __ETHTOOL_LINK_MODE_MASK_NBITS);
629
630 if (copy_to_user(to, &link_usettings, sizeof(link_usettings)))
631 return -EFAULT;
632
633 return 0;
634}
635
636/* Query device for its ethtool_link_settings.
637 *
638 * Backward compatibility note: this function must fail when driver
639 * does not implement ethtool::get_link_ksettings, even if legacy
640 * ethtool_ops::get_settings is implemented. This tells new versions
641 * of ethtool that they should use the legacy API %ETHTOOL_GSET for
642 * this driver, so that they can correctly access the ethtool_cmd
643 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
644 * implements ethtool_ops::get_settings anymore.
645 */
646static int ethtool_get_link_ksettings(struct net_device *dev,
647 void __user *useraddr)
648{
649 int err = 0;
650 struct ethtool_link_ksettings link_ksettings;
651
652 ASSERT_RTNL();
653
654 if (!dev->ethtool_ops->get_link_ksettings)
655 return -EOPNOTSUPP;
656
657 /* handle bitmap nbits handshake */
658 if (copy_from_user(&link_ksettings.base, useraddr,
659 sizeof(link_ksettings.base)))
660 return -EFAULT;
661
662 if (__ETHTOOL_LINK_MODE_MASK_NU32
663 != link_ksettings.base.link_mode_masks_nwords) {
664 /* wrong link mode nbits requested */
665 memset(&link_ksettings, 0, sizeof(link_ksettings));
Ben Hutchings793cf872016-03-14 01:05:38 +0000666 link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800667 /* send back number of words required as negative val */
668 compiletime_assert(__ETHTOOL_LINK_MODE_MASK_NU32 <= S8_MAX,
669 "need too many bits for link modes!");
670 link_ksettings.base.link_mode_masks_nwords
671 = -((s8)__ETHTOOL_LINK_MODE_MASK_NU32);
672
673 /* copy the base fields back to user, not the link
674 * mode bitmaps
675 */
676 if (copy_to_user(useraddr, &link_ksettings.base,
677 sizeof(link_ksettings.base)))
678 return -EFAULT;
679
680 return 0;
681 }
682
683 /* handshake successful: user/kernel agree on
684 * link_mode_masks_nwords
685 */
686
687 memset(&link_ksettings, 0, sizeof(link_ksettings));
688 err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
689 if (err < 0)
690 return err;
691
692 /* make sure we tell the right values to user */
693 link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
694 link_ksettings.base.link_mode_masks_nwords
695 = __ETHTOOL_LINK_MODE_MASK_NU32;
696
697 return store_link_ksettings_for_user(useraddr, &link_ksettings);
698}
699
700/* Update device ethtool_link_settings.
701 *
702 * Backward compatibility note: this function must fail when driver
703 * does not implement ethtool::set_link_ksettings, even if legacy
704 * ethtool_ops::set_settings is implemented. This tells new versions
705 * of ethtool that they should use the legacy API %ETHTOOL_SSET for
706 * this driver, so that they can correctly update the ethtool_cmd
707 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
708 * implements ethtool_ops::get_settings anymore.
709 */
710static int ethtool_set_link_ksettings(struct net_device *dev,
711 void __user *useraddr)
712{
713 int err;
714 struct ethtool_link_ksettings link_ksettings;
715
716 ASSERT_RTNL();
717
718 if (!dev->ethtool_ops->set_link_ksettings)
719 return -EOPNOTSUPP;
720
721 /* make sure nbits field has expected value */
722 if (copy_from_user(&link_ksettings.base, useraddr,
723 sizeof(link_ksettings.base)))
724 return -EFAULT;
725
726 if (__ETHTOOL_LINK_MODE_MASK_NU32
727 != link_ksettings.base.link_mode_masks_nwords)
728 return -EINVAL;
729
730 /* copy the whole structure, now that we know it has expected
731 * format
732 */
733 err = load_link_ksettings_from_user(&link_ksettings, useraddr);
734 if (err)
735 return err;
736
737 /* re-check nwords field, just in case */
738 if (__ETHTOOL_LINK_MODE_MASK_NU32
739 != link_ksettings.base.link_mode_masks_nwords)
740 return -EINVAL;
741
742 return dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
743}
744
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800745/* Query device for its ethtool_cmd settings.
746 *
747 * Backward compatibility note: for compatibility with legacy ethtool,
748 * this has to work with both drivers implementing get_link_ksettings
749 * API and drivers implementing get_settings API. When drivers
750 * implement get_link_ksettings and report higher link mode bits, a
751 * kernel warning is logged once (with name of 1st driver/device) to
752 * recommend user to upgrade ethtool, but the command is successful
753 * (only the lower link mode bits reported back to user).
754 */
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000755static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
756{
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000757 struct ethtool_cmd cmd;
758
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800759 ASSERT_RTNL();
760
761 if (dev->ethtool_ops->get_link_ksettings) {
762 /* First, use link_ksettings API if it is supported */
763 int err;
764 struct ethtool_link_ksettings link_ksettings;
765
766 memset(&link_ksettings, 0, sizeof(link_ksettings));
767 err = dev->ethtool_ops->get_link_ksettings(dev,
768 &link_ksettings);
769 if (err < 0)
770 return err;
Stephen Hemminger16d5b482017-12-29 10:02:52 -0800771 convert_link_ksettings_to_legacy_settings(&cmd,
772 &link_ksettings);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800773
774 /* send a sensible cmd tag back to user */
775 cmd.cmd = ETHTOOL_GSET;
776 } else {
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800777 /* driver doesn't support %ethtool_link_ksettings
778 * API. revert to legacy %ethtool_cmd API, unless it's
779 * not supported either.
780 */
David Decotigny3237fc62016-02-24 10:58:11 -0800781 int err;
782
783 if (!dev->ethtool_ops->get_settings)
784 return -EOPNOTSUPP;
785
786 memset(&cmd, 0, sizeof(cmd));
787 cmd.cmd = ETHTOOL_GSET;
788 err = dev->ethtool_ops->get_settings(dev, &cmd);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800789 if (err < 0)
790 return err;
791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
794 return -EFAULT;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 return 0;
797}
798
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800799/* Update device link settings with given ethtool_cmd.
800 *
801 * Backward compatibility note: for compatibility with legacy ethtool,
802 * this has to work with both drivers implementing set_link_ksettings
803 * API and drivers implementing set_settings API. When drivers
804 * implement set_link_ksettings and user's request updates deprecated
805 * ethtool_cmd fields (transceiver/maxrxpkt/maxtxpkt), a kernel
806 * warning is logged once (with name of 1st driver/device) to
807 * recommend user to upgrade ethtool, and the request is rejected.
808 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
810{
811 struct ethtool_cmd cmd;
812
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800813 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
816 return -EFAULT;
817
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800818 /* first, try new %ethtool_link_ksettings API. */
819 if (dev->ethtool_ops->set_link_ksettings) {
820 struct ethtool_link_ksettings link_ksettings;
821
822 if (!convert_legacy_settings_to_link_ksettings(&link_ksettings,
823 &cmd))
824 return -EINVAL;
825
826 link_ksettings.base.cmd = ETHTOOL_SLINKSETTINGS;
827 link_ksettings.base.link_mode_masks_nwords
828 = __ETHTOOL_LINK_MODE_MASK_NU32;
829 return dev->ethtool_ops->set_link_ksettings(dev,
830 &link_ksettings);
831 }
832
833 /* legacy %ethtool_cmd API */
834
835 /* TODO: return -EOPNOTSUPP when ethtool_ops::get_settings
836 * disappears internally
837 */
838
839 if (!dev->ethtool_ops->set_settings)
840 return -EOPNOTSUPP;
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return dev->ethtool_ops->set_settings(dev, &cmd);
843}
844
chavey97f8aef2010-04-07 21:54:42 -0700845static noinline_for_stack int ethtool_get_drvinfo(struct net_device *dev,
846 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
848 struct ethtool_drvinfo info;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700849 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 memset(&info, 0, sizeof(info));
852 info.cmd = ETHTOOL_GDRVINFO;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000853 if (ops->get_drvinfo) {
Ben Hutchings01414802010-08-17 02:31:15 -0700854 ops->get_drvinfo(dev, &info);
855 } else if (dev->dev.parent && dev->dev.parent->driver) {
856 strlcpy(info.bus_info, dev_name(dev->dev.parent),
857 sizeof(info.bus_info));
858 strlcpy(info.driver, dev->dev.parent->driver->name,
859 sizeof(info.driver));
860 } else {
861 return -EOPNOTSUPP;
862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Jeff Garzik723b2f52010-03-03 22:51:50 +0000864 /*
865 * this method of obtaining string set info is deprecated;
Jeff Garzikd17792e2010-03-04 08:21:53 +0000866 * Use ETHTOOL_GSSET_INFO instead.
Jeff Garzik723b2f52010-03-03 22:51:50 +0000867 */
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000868 if (ops->get_sset_count) {
Jeff Garzikff03d492007-08-15 16:01:08 -0700869 int rc;
870
871 rc = ops->get_sset_count(dev, ETH_SS_TEST);
872 if (rc >= 0)
873 info.testinfo_len = rc;
874 rc = ops->get_sset_count(dev, ETH_SS_STATS);
875 if (rc >= 0)
876 info.n_stats = rc;
Jeff Garzik339bf022007-08-15 16:01:32 -0700877 rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
878 if (rc >= 0)
879 info.n_priv_flags = rc;
Jeff Garzikff03d492007-08-15 16:01:08 -0700880 }
Yunsheng Linb9d3bd82018-12-26 19:51:46 +0800881 if (ops->get_regs_len) {
882 int ret = ops->get_regs_len(dev);
883
884 if (ret > 0)
885 info.regdump_len = ret;
886 }
887
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000888 if (ops->get_eeprom_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 info.eedump_len = ops->get_eeprom_len(dev);
890
891 if (copy_to_user(useraddr, &info, sizeof(info)))
892 return -EFAULT;
893 return 0;
894}
895
Eric Dumazetf5c445e2010-03-08 12:17:04 -0800896static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
chavey97f8aef2010-04-07 21:54:42 -0700897 void __user *useraddr)
Jeff Garzik723b2f52010-03-03 22:51:50 +0000898{
899 struct ethtool_sset_info info;
Jeff Garzik723b2f52010-03-03 22:51:50 +0000900 u64 sset_mask;
901 int i, idx = 0, n_bits = 0, ret, rc;
902 u32 *info_buf = NULL;
903
Jeff Garzik723b2f52010-03-03 22:51:50 +0000904 if (copy_from_user(&info, useraddr, sizeof(info)))
905 return -EFAULT;
906
907 /* store copy of mask, because we zero struct later on */
908 sset_mask = info.sset_mask;
909 if (!sset_mask)
910 return 0;
911
912 /* calculate size of return buffer */
Jeff Garzikd17792e2010-03-04 08:21:53 +0000913 n_bits = hweight64(sset_mask);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000914
915 memset(&info, 0, sizeof(info));
916 info.cmd = ETHTOOL_GSSET_INFO;
917
918 info_buf = kzalloc(n_bits * sizeof(u32), GFP_USER);
919 if (!info_buf)
920 return -ENOMEM;
921
922 /*
923 * fill return buffer based on input bitmask and successful
924 * get_sset_count return
925 */
926 for (i = 0; i < 64; i++) {
927 if (!(sset_mask & (1ULL << i)))
928 continue;
929
Michał Mirosław340ae162011-02-15 16:59:16 +0000930 rc = __ethtool_get_sset_count(dev, i);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000931 if (rc >= 0) {
932 info.sset_mask |= (1ULL << i);
933 info_buf[idx++] = rc;
934 }
935 }
936
937 ret = -EFAULT;
938 if (copy_to_user(useraddr, &info, sizeof(info)))
939 goto out;
940
941 useraddr += offsetof(struct ethtool_sset_info, data);
942 if (copy_to_user(useraddr, info_buf, idx * sizeof(u32)))
943 goto out;
944
945 ret = 0;
946
947out:
948 kfree(info_buf);
949 return ret;
950}
951
chavey97f8aef2010-04-07 21:54:42 -0700952static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
Ben Hutchingsbf988432010-06-28 08:45:58 +0000953 u32 cmd, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700954{
Ben Hutchingsbf988432010-06-28 08:45:58 +0000955 struct ethtool_rxnfc info;
956 size_t info_size = sizeof(info);
Ben Hutchings55664f32012-01-03 12:04:51 +0000957 int rc;
Santwona Behera0853ad62008-07-02 03:47:41 -0700958
Santwona Behera59089d82009-02-20 00:58:13 -0800959 if (!dev->ethtool_ops->set_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700960 return -EOPNOTSUPP;
961
Ben Hutchingsbf988432010-06-28 08:45:58 +0000962 /* struct ethtool_rxnfc was originally defined for
963 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
964 * members. User-space might still be using that
965 * definition. */
966 if (cmd == ETHTOOL_SRXFH)
967 info_size = (offsetof(struct ethtool_rxnfc, data) +
968 sizeof(info.data));
969
970 if (copy_from_user(&info, useraddr, info_size))
Santwona Behera0853ad62008-07-02 03:47:41 -0700971 return -EFAULT;
972
Ben Hutchings55664f32012-01-03 12:04:51 +0000973 rc = dev->ethtool_ops->set_rxnfc(dev, &info);
974 if (rc)
975 return rc;
976
977 if (cmd == ETHTOOL_SRXCLSRLINS &&
978 copy_to_user(useraddr, &info, info_size))
979 return -EFAULT;
980
981 return 0;
Santwona Behera0853ad62008-07-02 03:47:41 -0700982}
983
chavey97f8aef2010-04-07 21:54:42 -0700984static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
Ben Hutchingsbf988432010-06-28 08:45:58 +0000985 u32 cmd, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700986{
987 struct ethtool_rxnfc info;
Ben Hutchingsbf988432010-06-28 08:45:58 +0000988 size_t info_size = sizeof(info);
Santwona Behera59089d82009-02-20 00:58:13 -0800989 const struct ethtool_ops *ops = dev->ethtool_ops;
990 int ret;
991 void *rule_buf = NULL;
Santwona Behera0853ad62008-07-02 03:47:41 -0700992
Santwona Behera59089d82009-02-20 00:58:13 -0800993 if (!ops->get_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700994 return -EOPNOTSUPP;
995
Ben Hutchingsbf988432010-06-28 08:45:58 +0000996 /* struct ethtool_rxnfc was originally defined for
997 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
998 * members. User-space might still be using that
999 * definition. */
1000 if (cmd == ETHTOOL_GRXFH)
1001 info_size = (offsetof(struct ethtool_rxnfc, data) +
1002 sizeof(info.data));
1003
1004 if (copy_from_user(&info, useraddr, info_size))
Santwona Behera0853ad62008-07-02 03:47:41 -07001005 return -EFAULT;
1006
Santwona Behera59089d82009-02-20 00:58:13 -08001007 if (info.cmd == ETHTOOL_GRXCLSRLALL) {
1008 if (info.rule_cnt > 0) {
Ben Hutchingsdb048b62010-06-28 08:44:07 +00001009 if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
Kees Cookae6df5f2010-10-07 10:03:48 +00001010 rule_buf = kzalloc(info.rule_cnt * sizeof(u32),
Ben Hutchingsdb048b62010-06-28 08:44:07 +00001011 GFP_USER);
Santwona Behera59089d82009-02-20 00:58:13 -08001012 if (!rule_buf)
1013 return -ENOMEM;
1014 }
1015 }
Santwona Behera0853ad62008-07-02 03:47:41 -07001016
Santwona Behera59089d82009-02-20 00:58:13 -08001017 ret = ops->get_rxnfc(dev, &info, rule_buf);
1018 if (ret < 0)
1019 goto err_out;
1020
1021 ret = -EFAULT;
Ben Hutchingsbf988432010-06-28 08:45:58 +00001022 if (copy_to_user(useraddr, &info, info_size))
Santwona Behera59089d82009-02-20 00:58:13 -08001023 goto err_out;
1024
1025 if (rule_buf) {
1026 useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
1027 if (copy_to_user(useraddr, rule_buf,
1028 info.rule_cnt * sizeof(u32)))
1029 goto err_out;
1030 }
1031 ret = 0;
1032
1033err_out:
Wei Yongjunc9cacec2009-03-31 15:06:26 -07001034 kfree(rule_buf);
Santwona Behera59089d82009-02-20 00:58:13 -08001035
1036 return ret;
Santwona Behera0853ad62008-07-02 03:47:41 -07001037}
1038
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301039static int ethtool_copy_validate_indir(u32 *indir, void __user *useraddr,
1040 struct ethtool_rxnfc *rx_rings,
1041 u32 size)
1042{
Ben Hutchingsfb95cd82014-05-15 00:46:45 +01001043 int i;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301044
1045 if (copy_from_user(indir, useraddr, size * sizeof(indir[0])))
Ben Hutchingsfb95cd82014-05-15 00:46:45 +01001046 return -EFAULT;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301047
1048 /* Validate ring indices */
Ben Hutchingsfb95cd82014-05-15 00:46:45 +01001049 for (i = 0; i < size; i++)
1050 if (indir[i] >= rx_rings->data)
1051 return -EINVAL;
1052
1053 return 0;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301054}
1055
Kim Jonesba905f52016-02-02 03:51:16 +00001056u8 netdev_rss_key[NETDEV_RSS_KEY_LEN] __read_mostly;
Eric Dumazet960fb622014-11-16 06:23:05 -08001057
1058void netdev_rss_key_fill(void *buffer, size_t len)
1059{
1060 BUG_ON(len > sizeof(netdev_rss_key));
1061 net_get_random_once(netdev_rss_key, sizeof(netdev_rss_key));
1062 memcpy(buffer, netdev_rss_key, len);
1063}
1064EXPORT_SYMBOL(netdev_rss_key_fill);
1065
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001066static int ethtool_get_max_rxfh_channel(struct net_device *dev, u32 *max)
1067{
1068 u32 dev_size, current_max = 0;
1069 u32 *indir;
1070 int ret;
1071
1072 if (!dev->ethtool_ops->get_rxfh_indir_size ||
1073 !dev->ethtool_ops->get_rxfh)
1074 return -EOPNOTSUPP;
1075 dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
1076 if (dev_size == 0)
1077 return -EOPNOTSUPP;
1078
1079 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
1080 if (!indir)
1081 return -ENOMEM;
1082
1083 ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
1084 if (ret)
1085 goto out;
1086
1087 while (dev_size--)
1088 current_max = max(current_max, indir[dev_size]);
1089
1090 *max = current_max;
1091
1092out:
1093 kfree(indir);
1094 return ret;
1095}
1096
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001097static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev,
1098 void __user *useraddr)
1099{
Ben Hutchings7850f632011-12-15 13:55:01 +00001100 u32 user_size, dev_size;
1101 u32 *indir;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001102 int ret;
1103
Ben Hutchings7850f632011-12-15 13:55:01 +00001104 if (!dev->ethtool_ops->get_rxfh_indir_size ||
Ben Hutchingsfe62d002014-05-15 01:25:27 +01001105 !dev->ethtool_ops->get_rxfh)
Ben Hutchings7850f632011-12-15 13:55:01 +00001106 return -EOPNOTSUPP;
1107 dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
1108 if (dev_size == 0)
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001109 return -EOPNOTSUPP;
1110
Ben Hutchings7850f632011-12-15 13:55:01 +00001111 if (copy_from_user(&user_size,
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001112 useraddr + offsetof(struct ethtool_rxfh_indir, size),
Ben Hutchings7850f632011-12-15 13:55:01 +00001113 sizeof(user_size)))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001114 return -EFAULT;
1115
Ben Hutchings7850f632011-12-15 13:55:01 +00001116 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size),
1117 &dev_size, sizeof(dev_size)))
1118 return -EFAULT;
1119
1120 /* If the user buffer size is 0, this is just a query for the
1121 * device table size. Otherwise, if it's smaller than the
1122 * device table size it's an error.
1123 */
1124 if (user_size < dev_size)
1125 return user_size == 0 ? 0 : -EINVAL;
1126
1127 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001128 if (!indir)
1129 return -ENOMEM;
1130
Eyal Perry892311f2014-12-02 18:12:10 +02001131 ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001132 if (ret)
1133 goto out;
1134
Ben Hutchings7850f632011-12-15 13:55:01 +00001135 if (copy_to_user(useraddr +
1136 offsetof(struct ethtool_rxfh_indir, ring_index[0]),
1137 indir, dev_size * sizeof(indir[0])))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001138 ret = -EFAULT;
1139
1140out:
1141 kfree(indir);
1142 return ret;
1143}
1144
1145static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev,
1146 void __user *useraddr)
1147{
Ben Hutchings7850f632011-12-15 13:55:01 +00001148 struct ethtool_rxnfc rx_rings;
1149 u32 user_size, dev_size, i;
1150 u32 *indir;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001151 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001152 int ret;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301153 u32 ringidx_offset = offsetof(struct ethtool_rxfh_indir, ring_index[0]);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001154
Ben Hutchingsfe62d002014-05-15 01:25:27 +01001155 if (!ops->get_rxfh_indir_size || !ops->set_rxfh ||
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001156 !ops->get_rxnfc)
Ben Hutchings7850f632011-12-15 13:55:01 +00001157 return -EOPNOTSUPP;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001158
1159 dev_size = ops->get_rxfh_indir_size(dev);
Ben Hutchings7850f632011-12-15 13:55:01 +00001160 if (dev_size == 0)
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001161 return -EOPNOTSUPP;
1162
Ben Hutchings7850f632011-12-15 13:55:01 +00001163 if (copy_from_user(&user_size,
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001164 useraddr + offsetof(struct ethtool_rxfh_indir, size),
Ben Hutchings7850f632011-12-15 13:55:01 +00001165 sizeof(user_size)))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001166 return -EFAULT;
1167
Ben Hutchings278bc422011-12-15 13:56:49 +00001168 if (user_size != 0 && user_size != dev_size)
Ben Hutchings7850f632011-12-15 13:55:01 +00001169 return -EINVAL;
1170
1171 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001172 if (!indir)
1173 return -ENOMEM;
1174
Ben Hutchings7850f632011-12-15 13:55:01 +00001175 rx_rings.cmd = ETHTOOL_GRXRINGS;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001176 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
Ben Hutchings7850f632011-12-15 13:55:01 +00001177 if (ret)
1178 goto out;
Ben Hutchings278bc422011-12-15 13:56:49 +00001179
1180 if (user_size == 0) {
1181 for (i = 0; i < dev_size; i++)
1182 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1183 } else {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301184 ret = ethtool_copy_validate_indir(indir,
1185 useraddr + ringidx_offset,
1186 &rx_rings,
1187 dev_size);
1188 if (ret)
Ben Hutchings7850f632011-12-15 13:55:01 +00001189 goto out;
Ben Hutchings7850f632011-12-15 13:55:01 +00001190 }
1191
Eyal Perry892311f2014-12-02 18:12:10 +02001192 ret = ops->set_rxfh(dev, indir, NULL, ETH_RSS_HASH_NO_CHANGE);
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001193 if (ret)
1194 goto out;
1195
1196 /* indicate whether rxfh was set to default */
1197 if (user_size == 0)
1198 dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1199 else
1200 dev->priv_flags |= IFF_RXFH_CONFIGURED;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001201
1202out:
1203 kfree(indir);
1204 return ret;
1205}
1206
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301207static noinline_for_stack int ethtool_get_rxfh(struct net_device *dev,
1208 void __user *useraddr)
1209{
1210 int ret;
1211 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001212 u32 user_indir_size, user_key_size;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301213 u32 dev_indir_size = 0, dev_key_size = 0;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001214 struct ethtool_rxfh rxfh;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301215 u32 total_size;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001216 u32 indir_bytes;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301217 u32 *indir = NULL;
Eyal Perry892311f2014-12-02 18:12:10 +02001218 u8 dev_hfunc = 0;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301219 u8 *hkey = NULL;
1220 u8 *rss_config;
1221
Eyal Perry892311f2014-12-02 18:12:10 +02001222 if (!ops->get_rxfh)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301223 return -EOPNOTSUPP;
1224
1225 if (ops->get_rxfh_indir_size)
1226 dev_indir_size = ops->get_rxfh_indir_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301227 if (ops->get_rxfh_key_size)
1228 dev_key_size = ops->get_rxfh_key_size(dev);
1229
Ben Hutchingsf062a382014-05-15 16:28:07 +01001230 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301231 return -EFAULT;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001232 user_indir_size = rxfh.indir_size;
1233 user_key_size = rxfh.key_size;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301234
Ben Hutchingsf062a382014-05-15 16:28:07 +01001235 /* Check that reserved fields are 0 for now */
Eyal Perry892311f2014-12-02 18:12:10 +02001236 if (rxfh.rss_context || rxfh.rsvd8[0] || rxfh.rsvd8[1] ||
1237 rxfh.rsvd8[2] || rxfh.rsvd32)
Ben Hutchingsf062a382014-05-15 16:28:07 +01001238 return -EINVAL;
1239
1240 rxfh.indir_size = dev_indir_size;
1241 rxfh.key_size = dev_key_size;
1242 if (copy_to_user(useraddr, &rxfh, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301243 return -EFAULT;
1244
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301245 if ((user_indir_size && (user_indir_size != dev_indir_size)) ||
1246 (user_key_size && (user_key_size != dev_key_size)))
1247 return -EINVAL;
1248
1249 indir_bytes = user_indir_size * sizeof(indir[0]);
1250 total_size = indir_bytes + user_key_size;
1251 rss_config = kzalloc(total_size, GFP_USER);
1252 if (!rss_config)
1253 return -ENOMEM;
1254
1255 if (user_indir_size)
1256 indir = (u32 *)rss_config;
1257
1258 if (user_key_size)
1259 hkey = rss_config + indir_bytes;
1260
Eyal Perry892311f2014-12-02 18:12:10 +02001261 ret = dev->ethtool_ops->get_rxfh(dev, indir, hkey, &dev_hfunc);
1262 if (ret)
1263 goto out;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301264
Eyal Perry892311f2014-12-02 18:12:10 +02001265 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, hfunc),
1266 &dev_hfunc, sizeof(rxfh.hfunc))) {
1267 ret = -EFAULT;
1268 } else if (copy_to_user(useraddr +
1269 offsetof(struct ethtool_rxfh, rss_config[0]),
1270 rss_config, total_size)) {
1271 ret = -EFAULT;
1272 }
1273out:
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301274 kfree(rss_config);
1275
1276 return ret;
1277}
1278
1279static noinline_for_stack int ethtool_set_rxfh(struct net_device *dev,
1280 void __user *useraddr)
1281{
1282 int ret;
1283 const struct ethtool_ops *ops = dev->ethtool_ops;
1284 struct ethtool_rxnfc rx_rings;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001285 struct ethtool_rxfh rxfh;
1286 u32 dev_indir_size = 0, dev_key_size = 0, i;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301287 u32 *indir = NULL, indir_bytes = 0;
1288 u8 *hkey = NULL;
1289 u8 *rss_config;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301290 u32 rss_cfg_offset = offsetof(struct ethtool_rxfh, rss_config[0]);
1291
Eyal Perry892311f2014-12-02 18:12:10 +02001292 if (!ops->get_rxnfc || !ops->set_rxfh)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301293 return -EOPNOTSUPP;
1294
1295 if (ops->get_rxfh_indir_size)
1296 dev_indir_size = ops->get_rxfh_indir_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301297 if (ops->get_rxfh_key_size)
Dan Carpenterd340c862015-02-20 13:54:05 +03001298 dev_key_size = ops->get_rxfh_key_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301299
Ben Hutchingsf062a382014-05-15 16:28:07 +01001300 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301301 return -EFAULT;
1302
Ben Hutchingsf062a382014-05-15 16:28:07 +01001303 /* Check that reserved fields are 0 for now */
Eyal Perry892311f2014-12-02 18:12:10 +02001304 if (rxfh.rss_context || rxfh.rsvd8[0] || rxfh.rsvd8[1] ||
1305 rxfh.rsvd8[2] || rxfh.rsvd32)
Ben Hutchingsf062a382014-05-15 16:28:07 +01001306 return -EINVAL;
1307
Eyal Perry892311f2014-12-02 18:12:10 +02001308 /* If either indir, hash key or function is valid, proceed further.
1309 * Must request at least one change: indir size, hash key or function.
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301310 */
Ben Hutchingsf062a382014-05-15 16:28:07 +01001311 if ((rxfh.indir_size &&
1312 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE &&
1313 rxfh.indir_size != dev_indir_size) ||
1314 (rxfh.key_size && (rxfh.key_size != dev_key_size)) ||
1315 (rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE &&
Eyal Perry892311f2014-12-02 18:12:10 +02001316 rxfh.key_size == 0 && rxfh.hfunc == ETH_RSS_HASH_NO_CHANGE))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301317 return -EINVAL;
1318
Ben Hutchingsf062a382014-05-15 16:28:07 +01001319 if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301320 indir_bytes = dev_indir_size * sizeof(indir[0]);
1321
Ben Hutchingsf062a382014-05-15 16:28:07 +01001322 rss_config = kzalloc(indir_bytes + rxfh.key_size, GFP_USER);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301323 if (!rss_config)
1324 return -ENOMEM;
1325
1326 rx_rings.cmd = ETHTOOL_GRXRINGS;
1327 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
1328 if (ret)
1329 goto out;
1330
Ben Hutchingsf062a382014-05-15 16:28:07 +01001331 /* rxfh.indir_size == 0 means reset the indir table to default.
1332 * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301333 */
Ben Hutchingsf062a382014-05-15 16:28:07 +01001334 if (rxfh.indir_size &&
1335 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301336 indir = (u32 *)rss_config;
1337 ret = ethtool_copy_validate_indir(indir,
1338 useraddr + rss_cfg_offset,
1339 &rx_rings,
Ben Hutchingsf062a382014-05-15 16:28:07 +01001340 rxfh.indir_size);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301341 if (ret)
1342 goto out;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001343 } else if (rxfh.indir_size == 0) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301344 indir = (u32 *)rss_config;
1345 for (i = 0; i < dev_indir_size; i++)
1346 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1347 }
1348
Ben Hutchingsf062a382014-05-15 16:28:07 +01001349 if (rxfh.key_size) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301350 hkey = rss_config + indir_bytes;
1351 if (copy_from_user(hkey,
1352 useraddr + rss_cfg_offset + indir_bytes,
Ben Hutchingsf062a382014-05-15 16:28:07 +01001353 rxfh.key_size)) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301354 ret = -EFAULT;
1355 goto out;
1356 }
1357 }
1358
Eyal Perry892311f2014-12-02 18:12:10 +02001359 ret = ops->set_rxfh(dev, indir, hkey, rxfh.hfunc);
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001360 if (ret)
1361 goto out;
1362
1363 /* indicate whether rxfh was set to default */
1364 if (rxfh.indir_size == 0)
1365 dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1366 else if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
1367 dev->priv_flags |= IFF_RXFH_CONFIGURED;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301368
1369out:
1370 kfree(rss_config);
1371 return ret;
1372}
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
1375{
1376 struct ethtool_regs regs;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001377 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 void *regbuf;
1379 int reglen, ret;
1380
1381 if (!ops->get_regs || !ops->get_regs_len)
1382 return -EOPNOTSUPP;
1383
1384 if (copy_from_user(&regs, useraddr, sizeof(regs)))
1385 return -EFAULT;
1386
1387 reglen = ops->get_regs_len(dev);
Yunsheng Linb9d3bd82018-12-26 19:51:46 +08001388 if (reglen <= 0)
1389 return reglen;
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (regs.len > reglen)
1392 regs.len = reglen;
1393
Stanislaw Gruszka2fba4f52017-05-23 21:53:59 -04001394 regbuf = NULL;
1395 if (reglen) {
1396 regbuf = vzalloc(reglen);
1397 if (!regbuf)
1398 return -ENOMEM;
1399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Vivien Didelot66b835e2019-06-03 16:57:13 -04001401 if (regs.len < reglen)
1402 reglen = regs.len;
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 ops->get_regs(dev, &regs, regbuf);
1405
1406 ret = -EFAULT;
1407 if (copy_to_user(useraddr, &regs, sizeof(regs)))
1408 goto out;
1409 useraddr += offsetof(struct ethtool_regs, data);
Vivien Didelot66b835e2019-06-03 16:57:13 -04001410 if (copy_to_user(useraddr, regbuf, reglen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 goto out;
1412 ret = 0;
1413
1414 out:
Ben Hutchingsa77f5db2010-09-20 08:42:17 +00001415 vfree(regbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 return ret;
1417}
1418
Ben Hutchingsd73d3a82009-10-05 10:59:58 +00001419static int ethtool_reset(struct net_device *dev, char __user *useraddr)
1420{
1421 struct ethtool_value reset;
1422 int ret;
1423
1424 if (!dev->ethtool_ops->reset)
1425 return -EOPNOTSUPP;
1426
1427 if (copy_from_user(&reset, useraddr, sizeof(reset)))
1428 return -EFAULT;
1429
1430 ret = dev->ethtool_ops->reset(dev, &reset.data);
1431 if (ret)
1432 return ret;
1433
1434 if (copy_to_user(useraddr, &reset, sizeof(reset)))
1435 return -EFAULT;
1436 return 0;
1437}
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
1440{
zhanglin7b441b22019-10-26 15:54:16 +08001441 struct ethtool_wolinfo wol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 if (!dev->ethtool_ops->get_wol)
1444 return -EOPNOTSUPP;
1445
zhanglin7b441b22019-10-26 15:54:16 +08001446 memset(&wol, 0, sizeof(struct ethtool_wolinfo));
1447 wol.cmd = ETHTOOL_GWOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 dev->ethtool_ops->get_wol(dev, &wol);
1449
1450 if (copy_to_user(useraddr, &wol, sizeof(wol)))
1451 return -EFAULT;
1452 return 0;
1453}
1454
1455static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
1456{
1457 struct ethtool_wolinfo wol;
1458
1459 if (!dev->ethtool_ops->set_wol)
1460 return -EOPNOTSUPP;
1461
1462 if (copy_from_user(&wol, useraddr, sizeof(wol)))
1463 return -EFAULT;
1464
1465 return dev->ethtool_ops->set_wol(dev, &wol);
1466}
1467
Yuval Mintz80f12ec2012-06-06 17:13:06 +00001468static int ethtool_get_eee(struct net_device *dev, char __user *useraddr)
1469{
1470 struct ethtool_eee edata;
1471 int rc;
1472
1473 if (!dev->ethtool_ops->get_eee)
1474 return -EOPNOTSUPP;
1475
1476 memset(&edata, 0, sizeof(struct ethtool_eee));
1477 edata.cmd = ETHTOOL_GEEE;
1478 rc = dev->ethtool_ops->get_eee(dev, &edata);
1479
1480 if (rc)
1481 return rc;
1482
1483 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1484 return -EFAULT;
1485
1486 return 0;
1487}
1488
1489static int ethtool_set_eee(struct net_device *dev, char __user *useraddr)
1490{
1491 struct ethtool_eee edata;
1492
1493 if (!dev->ethtool_ops->set_eee)
1494 return -EOPNOTSUPP;
1495
1496 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1497 return -EFAULT;
1498
1499 return dev->ethtool_ops->set_eee(dev, &edata);
1500}
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502static int ethtool_nway_reset(struct net_device *dev)
1503{
1504 if (!dev->ethtool_ops->nway_reset)
1505 return -EOPNOTSUPP;
1506
1507 return dev->ethtool_ops->nway_reset(dev);
1508}
1509
Ben Hutchingse596e6e2010-12-09 12:08:35 +00001510static int ethtool_get_link(struct net_device *dev, char __user *useraddr)
1511{
1512 struct ethtool_value edata = { .cmd = ETHTOOL_GLINK };
1513
1514 if (!dev->ethtool_ops->get_link)
1515 return -EOPNOTSUPP;
1516
1517 edata.data = netif_running(dev) && dev->ethtool_ops->get_link(dev);
1518
1519 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1520 return -EFAULT;
1521 return 0;
1522}
1523
Ben Hutchings081d0942012-04-12 00:42:12 +00001524static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr,
1525 int (*getter)(struct net_device *,
1526 struct ethtool_eeprom *, u8 *),
1527 u32 total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
1529 struct ethtool_eeprom eeprom;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001530 void __user *userbuf = useraddr + sizeof(eeprom);
1531 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 u8 *data;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001533 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1536 return -EFAULT;
1537
1538 /* Check for wrap and zero */
1539 if (eeprom.offset + eeprom.len <= eeprom.offset)
1540 return -EINVAL;
1541
1542 /* Check for exceeding total eeprom len */
Ben Hutchings081d0942012-04-12 00:42:12 +00001543 if (eeprom.offset + eeprom.len > total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return -EINVAL;
1545
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001546 data = kmalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 if (!data)
1548 return -ENOMEM;
1549
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001550 bytes_remaining = eeprom.len;
1551 while (bytes_remaining > 0) {
1552 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Ben Hutchings081d0942012-04-12 00:42:12 +00001554 ret = getter(dev, &eeprom, data);
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001555 if (ret)
1556 break;
1557 if (copy_to_user(userbuf, data, eeprom.len)) {
1558 ret = -EFAULT;
1559 break;
1560 }
1561 userbuf += eeprom.len;
1562 eeprom.offset += eeprom.len;
1563 bytes_remaining -= eeprom.len;
1564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Mandeep Singh Bainesc5835df2008-04-24 20:55:56 -07001566 eeprom.len = userbuf - (useraddr + sizeof(eeprom));
1567 eeprom.offset -= eeprom.len;
1568 if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
1569 ret = -EFAULT;
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 kfree(data);
1572 return ret;
1573}
1574
Ben Hutchings081d0942012-04-12 00:42:12 +00001575static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
1576{
1577 const struct ethtool_ops *ops = dev->ethtool_ops;
1578
Guenter Roecke0fb6fb2014-10-30 20:50:15 -07001579 if (!ops->get_eeprom || !ops->get_eeprom_len ||
1580 !ops->get_eeprom_len(dev))
Ben Hutchings081d0942012-04-12 00:42:12 +00001581 return -EOPNOTSUPP;
1582
1583 return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom,
1584 ops->get_eeprom_len(dev));
1585}
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
1588{
1589 struct ethtool_eeprom eeprom;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001590 const struct ethtool_ops *ops = dev->ethtool_ops;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001591 void __user *userbuf = useraddr + sizeof(eeprom);
1592 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 u8 *data;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001594 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Guenter Roecke0fb6fb2014-10-30 20:50:15 -07001596 if (!ops->set_eeprom || !ops->get_eeprom_len ||
1597 !ops->get_eeprom_len(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return -EOPNOTSUPP;
1599
1600 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1601 return -EFAULT;
1602
1603 /* Check for wrap and zero */
1604 if (eeprom.offset + eeprom.len <= eeprom.offset)
1605 return -EINVAL;
1606
1607 /* Check for exceeding total eeprom len */
1608 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
1609 return -EINVAL;
1610
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001611 data = kmalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (!data)
1613 return -ENOMEM;
1614
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001615 bytes_remaining = eeprom.len;
1616 while (bytes_remaining > 0) {
1617 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001619 if (copy_from_user(data, userbuf, eeprom.len)) {
1620 ret = -EFAULT;
1621 break;
1622 }
1623 ret = ops->set_eeprom(dev, &eeprom, data);
1624 if (ret)
1625 break;
1626 userbuf += eeprom.len;
1627 eeprom.offset += eeprom.len;
1628 bytes_remaining -= eeprom.len;
1629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 kfree(data);
1632 return ret;
1633}
1634
chavey97f8aef2010-04-07 21:54:42 -07001635static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
1636 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
Roland Dreier8e557422010-02-11 12:14:23 -08001638 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
1640 if (!dev->ethtool_ops->get_coalesce)
1641 return -EOPNOTSUPP;
1642
1643 dev->ethtool_ops->get_coalesce(dev, &coalesce);
1644
1645 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
1646 return -EFAULT;
1647 return 0;
1648}
1649
chavey97f8aef2010-04-07 21:54:42 -07001650static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
1651 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
1653 struct ethtool_coalesce coalesce;
1654
David S. Millerfa04ae52005-06-06 15:07:19 -07001655 if (!dev->ethtool_ops->set_coalesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 return -EOPNOTSUPP;
1657
1658 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
1659 return -EFAULT;
1660
1661 return dev->ethtool_ops->set_coalesce(dev, &coalesce);
1662}
1663
1664static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
1665{
Roland Dreier8e557422010-02-11 12:14:23 -08001666 struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 if (!dev->ethtool_ops->get_ringparam)
1669 return -EOPNOTSUPP;
1670
1671 dev->ethtool_ops->get_ringparam(dev, &ringparam);
1672
1673 if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
1674 return -EFAULT;
1675 return 0;
1676}
1677
1678static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
1679{
1680 struct ethtool_ringparam ringparam;
1681
1682 if (!dev->ethtool_ops->set_ringparam)
1683 return -EOPNOTSUPP;
1684
1685 if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
1686 return -EFAULT;
1687
1688 return dev->ethtool_ops->set_ringparam(dev, &ringparam);
1689}
1690
amit salecha8b5933c2011-04-07 01:58:42 +00001691static noinline_for_stack int ethtool_get_channels(struct net_device *dev,
1692 void __user *useraddr)
1693{
1694 struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
1695
1696 if (!dev->ethtool_ops->get_channels)
1697 return -EOPNOTSUPP;
1698
1699 dev->ethtool_ops->get_channels(dev, &channels);
1700
1701 if (copy_to_user(useraddr, &channels, sizeof(channels)))
1702 return -EFAULT;
1703 return 0;
1704}
1705
1706static noinline_for_stack int ethtool_set_channels(struct net_device *dev,
1707 void __user *useraddr)
1708{
Eran Ben Elisha5dcd0852017-01-17 19:19:17 +02001709 struct ethtool_channels channels, max = { .cmd = ETHTOOL_GCHANNELS };
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001710 u32 max_rx_in_use = 0;
amit salecha8b5933c2011-04-07 01:58:42 +00001711
Keller, Jacob E8bf36862016-02-08 16:05:04 -08001712 if (!dev->ethtool_ops->set_channels || !dev->ethtool_ops->get_channels)
amit salecha8b5933c2011-04-07 01:58:42 +00001713 return -EOPNOTSUPP;
1714
1715 if (copy_from_user(&channels, useraddr, sizeof(channels)))
1716 return -EFAULT;
1717
Keller, Jacob E8bf36862016-02-08 16:05:04 -08001718 dev->ethtool_ops->get_channels(dev, &max);
1719
1720 /* ensure new counts are within the maximums */
1721 if ((channels.rx_count > max.max_rx) ||
1722 (channels.tx_count > max.max_tx) ||
1723 (channels.combined_count > max.max_combined) ||
1724 (channels.other_count > max.max_other))
1725 return -EINVAL;
1726
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001727 /* ensure the new Rx count fits within the configured Rx flow
1728 * indirection table settings */
1729 if (netif_is_rxfh_configured(dev) &&
1730 !ethtool_get_max_rxfh_channel(dev, &max_rx_in_use) &&
1731 (channels.combined_count + channels.rx_count) <= max_rx_in_use)
1732 return -EINVAL;
1733
amit salecha8b5933c2011-04-07 01:58:42 +00001734 return dev->ethtool_ops->set_channels(dev, &channels);
1735}
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
1738{
1739 struct ethtool_pauseparam pauseparam = { ETHTOOL_GPAUSEPARAM };
1740
1741 if (!dev->ethtool_ops->get_pauseparam)
1742 return -EOPNOTSUPP;
1743
1744 dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
1745
1746 if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
1747 return -EFAULT;
1748 return 0;
1749}
1750
1751static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
1752{
1753 struct ethtool_pauseparam pauseparam;
1754
Jeff Garzike1b90c42006-07-17 12:54:40 -04001755 if (!dev->ethtool_ops->set_pauseparam)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 return -EOPNOTSUPP;
1757
1758 if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
1759 return -EFAULT;
1760
1761 return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
1762}
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
1765{
1766 struct ethtool_test test;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001767 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -07001769 int ret, test_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001771 if (!ops->self_test || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -07001772 return -EOPNOTSUPP;
1773
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001774 test_len = ops->get_sset_count(dev, ETH_SS_TEST);
Jeff Garzikff03d492007-08-15 16:01:08 -07001775 if (test_len < 0)
1776 return test_len;
1777 WARN_ON(test_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 if (copy_from_user(&test, useraddr, sizeof(test)))
1780 return -EFAULT;
1781
Jeff Garzikff03d492007-08-15 16:01:08 -07001782 test.len = test_len;
1783 data = kmalloc(test_len * sizeof(u64), GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 if (!data)
1785 return -ENOMEM;
1786
1787 ops->self_test(dev, &test, data);
1788
1789 ret = -EFAULT;
1790 if (copy_to_user(useraddr, &test, sizeof(test)))
1791 goto out;
1792 useraddr += sizeof(test);
1793 if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
1794 goto out;
1795 ret = 0;
1796
1797 out:
1798 kfree(data);
1799 return ret;
1800}
1801
1802static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
1803{
1804 struct ethtool_gstrings gstrings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 u8 *data;
1806 int ret;
1807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
1809 return -EFAULT;
1810
Michał Mirosław340ae162011-02-15 16:59:16 +00001811 ret = __ethtool_get_sset_count(dev, gstrings.string_set);
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001812 if (ret < 0)
1813 return ret;
Jeff Garzikff03d492007-08-15 16:01:08 -07001814
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001815 gstrings.len = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
Li RongQing77b924d2019-03-29 09:18:02 +08001817 if (gstrings.len) {
1818 data = kcalloc(gstrings.len, ETH_GSTRING_LEN, GFP_USER);
1819 if (!data)
1820 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Li RongQing77b924d2019-03-29 09:18:02 +08001822 __ethtool_get_strings(dev, gstrings.string_set, data);
1823 } else {
1824 data = NULL;
1825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
1827 ret = -EFAULT;
1828 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
1829 goto out;
1830 useraddr += sizeof(gstrings);
Li RongQing77b924d2019-03-29 09:18:02 +08001831 if (gstrings.len &&
1832 copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 goto out;
1834 ret = 0;
1835
Michał Mirosław340ae162011-02-15 16:59:16 +00001836out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 kfree(data);
1838 return ret;
1839}
1840
1841static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
1842{
1843 struct ethtool_value id;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001844 static bool busy;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001845 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001846 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001848 if (!ops->set_phys_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 return -EOPNOTSUPP;
1850
Ben Hutchings68f512f2011-04-02 00:35:15 +01001851 if (busy)
1852 return -EBUSY;
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 if (copy_from_user(&id, useraddr, sizeof(id)))
1855 return -EFAULT;
1856
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001857 rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE);
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001858 if (rc < 0)
Ben Hutchings68f512f2011-04-02 00:35:15 +01001859 return rc;
1860
1861 /* Drop the RTNL lock while waiting, but prevent reentry or
1862 * removal of the device.
1863 */
1864 busy = true;
1865 dev_hold(dev);
1866 rtnl_unlock();
1867
1868 if (rc == 0) {
1869 /* Driver will handle this itself */
1870 schedule_timeout_interruptible(
Allan, Bruce W143780c2011-04-11 13:01:59 +00001871 id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001872 } else {
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001873 /* Driver expects to be called at twice the frequency in rc */
1874 int n = rc * 2, i, interval = HZ / n;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001875
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001876 /* Count down seconds */
1877 do {
1878 /* Count down iterations per second */
1879 i = n;
1880 do {
1881 rtnl_lock();
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001882 rc = ops->set_phys_id(dev,
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001883 (i & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON);
1884 rtnl_unlock();
1885 if (rc)
1886 break;
1887 schedule_timeout_interruptible(interval);
1888 } while (!signal_pending(current) && --i != 0);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001889 } while (!signal_pending(current) &&
1890 (id.data == 0 || --id.data != 0));
1891 }
1892
1893 rtnl_lock();
1894 dev_put(dev);
1895 busy = false;
1896
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001897 (void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001898 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899}
1900
1901static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
1902{
1903 struct ethtool_stats stats;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001904 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -07001906 int ret, n_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001908 if (!ops->get_ethtool_stats || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -07001909 return -EOPNOTSUPP;
1910
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001911 n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
Jeff Garzikff03d492007-08-15 16:01:08 -07001912 if (n_stats < 0)
1913 return n_stats;
1914 WARN_ON(n_stats == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
1916 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1917 return -EFAULT;
1918
Jeff Garzikff03d492007-08-15 16:01:08 -07001919 stats.n_stats = n_stats;
Li RongQing77b924d2019-03-29 09:18:02 +08001920 if (n_stats) {
1921 data = kmalloc(n_stats * sizeof(u64), GFP_USER);
1922 if (!data)
1923 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
Li RongQing77b924d2019-03-29 09:18:02 +08001925 ops->get_ethtool_stats(dev, &stats, data);
1926 } else {
1927 data = NULL;
1928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
1930 ret = -EFAULT;
1931 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1932 goto out;
1933 useraddr += sizeof(stats);
Li RongQing77b924d2019-03-29 09:18:02 +08001934 if (n_stats && copy_to_user(useraddr, data, n_stats * sizeof(u64)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 goto out;
1936 ret = 0;
1937
1938 out:
1939 kfree(data);
1940 return ret;
1941}
1942
Andrew Lunnf3a40942015-12-30 16:28:25 +01001943static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr)
1944{
1945 struct ethtool_stats stats;
1946 struct phy_device *phydev = dev->phydev;
1947 u64 *data;
1948 int ret, n_stats;
1949
1950 if (!phydev)
1951 return -EOPNOTSUPP;
1952
1953 n_stats = phy_get_sset_count(phydev);
1954
1955 if (n_stats < 0)
1956 return n_stats;
1957 WARN_ON(n_stats == 0);
1958
1959 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1960 return -EFAULT;
1961
1962 stats.n_stats = n_stats;
Li RongQing77b924d2019-03-29 09:18:02 +08001963 if (n_stats) {
1964 data = kmalloc_array(n_stats, sizeof(u64), GFP_USER);
1965 if (!data)
1966 return -ENOMEM;
Andrew Lunnf3a40942015-12-30 16:28:25 +01001967
Li RongQing77b924d2019-03-29 09:18:02 +08001968 mutex_lock(&phydev->lock);
1969 phydev->drv->get_stats(phydev, &stats, data);
1970 mutex_unlock(&phydev->lock);
1971 } else {
1972 data = NULL;
1973 }
Andrew Lunnf3a40942015-12-30 16:28:25 +01001974
1975 ret = -EFAULT;
1976 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1977 goto out;
1978 useraddr += sizeof(stats);
Li RongQing77b924d2019-03-29 09:18:02 +08001979 if (n_stats && copy_to_user(useraddr, data, n_stats * sizeof(u64)))
Andrew Lunnf3a40942015-12-30 16:28:25 +01001980 goto out;
1981 ret = 0;
1982
1983 out:
1984 kfree(data);
1985 return ret;
1986}
1987
viro@ftp.linux.org.uk0bf0519d2005-09-05 03:26:18 +01001988static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
Jon Wetzela6f9a702005-08-20 17:15:54 -07001989{
1990 struct ethtool_perm_addr epaddr;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001991
Matthew Wilcox313674a2007-07-31 14:00:29 -07001992 if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
Jon Wetzela6f9a702005-08-20 17:15:54 -07001993 return -EFAULT;
1994
Matthew Wilcox313674a2007-07-31 14:00:29 -07001995 if (epaddr.size < dev->addr_len)
1996 return -ETOOSMALL;
1997 epaddr.size = dev->addr_len;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001998
Jon Wetzela6f9a702005-08-20 17:15:54 -07001999 if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
Matthew Wilcox313674a2007-07-31 14:00:29 -07002000 return -EFAULT;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002001 useraddr += sizeof(epaddr);
Matthew Wilcox313674a2007-07-31 14:00:29 -07002002 if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
2003 return -EFAULT;
2004 return 0;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002005}
2006
Jeff Garzik13c99b22007-08-15 16:01:56 -07002007static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
2008 u32 cmd, u32 (*actor)(struct net_device *))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002009{
Roland Dreier8e557422010-02-11 12:14:23 -08002010 struct ethtool_value edata = { .cmd = cmd };
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002011
Jeff Garzik13c99b22007-08-15 16:01:56 -07002012 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002013 return -EOPNOTSUPP;
2014
Jeff Garzik13c99b22007-08-15 16:01:56 -07002015 edata.data = actor(dev);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002016
2017 if (copy_to_user(useraddr, &edata, sizeof(edata)))
2018 return -EFAULT;
2019 return 0;
2020}
2021
Jeff Garzik13c99b22007-08-15 16:01:56 -07002022static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
2023 void (*actor)(struct net_device *, u32))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002024{
2025 struct ethtool_value edata;
2026
Jeff Garzik13c99b22007-08-15 16:01:56 -07002027 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002028 return -EOPNOTSUPP;
2029
2030 if (copy_from_user(&edata, useraddr, sizeof(edata)))
2031 return -EFAULT;
2032
Jeff Garzik13c99b22007-08-15 16:01:56 -07002033 actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07002034 return 0;
2035}
2036
Jeff Garzik13c99b22007-08-15 16:01:56 -07002037static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
2038 int (*actor)(struct net_device *, u32))
Jeff Garzik339bf022007-08-15 16:01:32 -07002039{
2040 struct ethtool_value edata;
2041
Jeff Garzik13c99b22007-08-15 16:01:56 -07002042 if (!actor)
Jeff Garzik339bf022007-08-15 16:01:32 -07002043 return -EOPNOTSUPP;
2044
2045 if (copy_from_user(&edata, useraddr, sizeof(edata)))
2046 return -EFAULT;
2047
Jeff Garzik13c99b22007-08-15 16:01:56 -07002048 return actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07002049}
2050
chavey97f8aef2010-04-07 21:54:42 -07002051static noinline_for_stack int ethtool_flash_device(struct net_device *dev,
2052 char __user *useraddr)
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00002053{
2054 struct ethtool_flash efl;
2055
2056 if (copy_from_user(&efl, useraddr, sizeof(efl)))
2057 return -EFAULT;
2058
2059 if (!dev->ethtool_ops->flash_device)
2060 return -EOPNOTSUPP;
2061
Ben Hutchings786f5282012-02-01 09:32:25 +00002062 efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0;
2063
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00002064 return dev->ethtool_ops->flash_device(dev, &efl);
2065}
2066
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002067static int ethtool_set_dump(struct net_device *dev,
2068 void __user *useraddr)
2069{
2070 struct ethtool_dump dump;
2071
2072 if (!dev->ethtool_ops->set_dump)
2073 return -EOPNOTSUPP;
2074
2075 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2076 return -EFAULT;
2077
2078 return dev->ethtool_ops->set_dump(dev, &dump);
2079}
2080
2081static int ethtool_get_dump_flag(struct net_device *dev,
2082 void __user *useraddr)
2083{
2084 int ret;
2085 struct ethtool_dump dump;
2086 const struct ethtool_ops *ops = dev->ethtool_ops;
2087
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00002088 if (!ops->get_dump_flag)
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002089 return -EOPNOTSUPP;
2090
2091 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2092 return -EFAULT;
2093
2094 ret = ops->get_dump_flag(dev, &dump);
2095 if (ret)
2096 return ret;
2097
2098 if (copy_to_user(useraddr, &dump, sizeof(dump)))
2099 return -EFAULT;
2100 return 0;
2101}
2102
2103static int ethtool_get_dump_data(struct net_device *dev,
2104 void __user *useraddr)
2105{
2106 int ret;
2107 __u32 len;
2108 struct ethtool_dump dump, tmp;
2109 const struct ethtool_ops *ops = dev->ethtool_ops;
2110 void *data = NULL;
2111
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00002112 if (!ops->get_dump_data || !ops->get_dump_flag)
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002113 return -EOPNOTSUPP;
2114
2115 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2116 return -EFAULT;
2117
2118 memset(&tmp, 0, sizeof(tmp));
2119 tmp.cmd = ETHTOOL_GET_DUMP_FLAG;
2120 ret = ops->get_dump_flag(dev, &tmp);
2121 if (ret)
2122 return ret;
2123
Michal Schmidtc590b5e2013-07-01 17:23:30 +02002124 len = min(tmp.len, dump.len);
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002125 if (!len)
2126 return -EFAULT;
2127
Michal Schmidtc590b5e2013-07-01 17:23:30 +02002128 /* Don't ever let the driver think there's more space available
2129 * than it requested with .get_dump_flag().
2130 */
2131 dump.len = len;
2132
2133 /* Always allocate enough space to hold the whole thing so that the
2134 * driver does not need to check the length and bother with partial
2135 * dumping.
2136 */
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002137 data = vzalloc(tmp.len);
2138 if (!data)
2139 return -ENOMEM;
2140 ret = ops->get_dump_data(dev, &dump, data);
2141 if (ret)
2142 goto out;
2143
Michal Schmidtc590b5e2013-07-01 17:23:30 +02002144 /* There are two sane possibilities:
2145 * 1. The driver's .get_dump_data() does not touch dump.len.
2146 * 2. Or it may set dump.len to how much it really writes, which
2147 * should be tmp.len (or len if it can do a partial dump).
2148 * In any case respond to userspace with the actual length of data
2149 * it's receiving.
2150 */
2151 WARN_ON(dump.len != len && dump.len != tmp.len);
2152 dump.len = len;
2153
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002154 if (copy_to_user(useraddr, &dump, sizeof(dump))) {
2155 ret = -EFAULT;
2156 goto out;
2157 }
2158 useraddr += offsetof(struct ethtool_dump, data);
2159 if (copy_to_user(useraddr, data, len))
2160 ret = -EFAULT;
2161out:
2162 vfree(data);
2163 return ret;
2164}
2165
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002166static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr)
2167{
2168 int err = 0;
2169 struct ethtool_ts_info info;
2170 const struct ethtool_ops *ops = dev->ethtool_ops;
2171 struct phy_device *phydev = dev->phydev;
2172
2173 memset(&info, 0, sizeof(info));
2174 info.cmd = ETHTOOL_GET_TS_INFO;
2175
2176 if (phydev && phydev->drv && phydev->drv->ts_info) {
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002177 err = phydev->drv->ts_info(phydev, &info);
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00002178 } else if (ops->get_ts_info) {
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002179 err = ops->get_ts_info(dev, &info);
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002180 } else {
2181 info.so_timestamping =
2182 SOF_TIMESTAMPING_RX_SOFTWARE |
2183 SOF_TIMESTAMPING_SOFTWARE;
2184 info.phc_index = -1;
2185 }
2186
2187 if (err)
2188 return err;
2189
2190 if (copy_to_user(useraddr, &info, sizeof(info)))
2191 err = -EFAULT;
2192
2193 return err;
2194}
2195
Ed Swierk2f438362015-01-02 17:27:56 -08002196static int __ethtool_get_module_info(struct net_device *dev,
2197 struct ethtool_modinfo *modinfo)
2198{
2199 const struct ethtool_ops *ops = dev->ethtool_ops;
2200 struct phy_device *phydev = dev->phydev;
2201
2202 if (phydev && phydev->drv && phydev->drv->module_info)
2203 return phydev->drv->module_info(phydev, modinfo);
2204
2205 if (ops->get_module_info)
2206 return ops->get_module_info(dev, modinfo);
2207
2208 return -EOPNOTSUPP;
2209}
2210
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002211static int ethtool_get_module_info(struct net_device *dev,
2212 void __user *useraddr)
2213{
2214 int ret;
2215 struct ethtool_modinfo modinfo;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002216
2217 if (copy_from_user(&modinfo, useraddr, sizeof(modinfo)))
2218 return -EFAULT;
2219
Ed Swierk2f438362015-01-02 17:27:56 -08002220 ret = __ethtool_get_module_info(dev, &modinfo);
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002221 if (ret)
2222 return ret;
2223
2224 if (copy_to_user(useraddr, &modinfo, sizeof(modinfo)))
2225 return -EFAULT;
2226
2227 return 0;
2228}
2229
Ed Swierk2f438362015-01-02 17:27:56 -08002230static int __ethtool_get_module_eeprom(struct net_device *dev,
2231 struct ethtool_eeprom *ee, u8 *data)
2232{
2233 const struct ethtool_ops *ops = dev->ethtool_ops;
2234 struct phy_device *phydev = dev->phydev;
2235
2236 if (phydev && phydev->drv && phydev->drv->module_eeprom)
2237 return phydev->drv->module_eeprom(phydev, ee, data);
2238
2239 if (ops->get_module_eeprom)
2240 return ops->get_module_eeprom(dev, ee, data);
2241
2242 return -EOPNOTSUPP;
2243}
2244
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002245static int ethtool_get_module_eeprom(struct net_device *dev,
2246 void __user *useraddr)
2247{
2248 int ret;
2249 struct ethtool_modinfo modinfo;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002250
Ed Swierk2f438362015-01-02 17:27:56 -08002251 ret = __ethtool_get_module_info(dev, &modinfo);
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002252 if (ret)
2253 return ret;
2254
Ed Swierk2f438362015-01-02 17:27:56 -08002255 return ethtool_get_any_eeprom(dev, useraddr,
2256 __ethtool_get_module_eeprom,
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002257 modinfo.eeprom_len);
2258}
2259
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302260static int ethtool_tunable_valid(const struct ethtool_tunable *tuna)
2261{
2262 switch (tuna->id) {
2263 case ETHTOOL_RX_COPYBREAK:
Eric Dumazet1255a502014-10-05 12:35:21 +03002264 case ETHTOOL_TX_COPYBREAK:
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302265 if (tuna->len != sizeof(u32) ||
2266 tuna->type_id != ETHTOOL_TUNABLE_U32)
2267 return -EINVAL;
2268 break;
2269 default:
2270 return -EINVAL;
2271 }
2272
2273 return 0;
2274}
2275
2276static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr)
2277{
2278 int ret;
2279 struct ethtool_tunable tuna;
2280 const struct ethtool_ops *ops = dev->ethtool_ops;
2281 void *data;
2282
2283 if (!ops->get_tunable)
2284 return -EOPNOTSUPP;
2285 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2286 return -EFAULT;
2287 ret = ethtool_tunable_valid(&tuna);
2288 if (ret)
2289 return ret;
2290 data = kmalloc(tuna.len, GFP_USER);
2291 if (!data)
2292 return -ENOMEM;
2293 ret = ops->get_tunable(dev, &tuna, data);
2294 if (ret)
2295 goto out;
2296 useraddr += sizeof(tuna);
2297 ret = -EFAULT;
2298 if (copy_to_user(useraddr, data, tuna.len))
2299 goto out;
2300 ret = 0;
2301
2302out:
2303 kfree(data);
2304 return ret;
2305}
2306
2307static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr)
2308{
2309 int ret;
2310 struct ethtool_tunable tuna;
2311 const struct ethtool_ops *ops = dev->ethtool_ops;
2312 void *data;
2313
2314 if (!ops->set_tunable)
2315 return -EOPNOTSUPP;
2316 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2317 return -EFAULT;
2318 ret = ethtool_tunable_valid(&tuna);
2319 if (ret)
2320 return ret;
2321 data = kmalloc(tuna.len, GFP_USER);
2322 if (!data)
2323 return -ENOMEM;
2324 useraddr += sizeof(tuna);
2325 ret = -EFAULT;
2326 if (copy_from_user(data, useraddr, tuna.len))
2327 goto out;
2328 ret = ops->set_tunable(dev, &tuna, data);
2329
2330out:
2331 kfree(data);
2332 return ret;
2333}
2334
Kan Liang421797b2016-02-19 09:24:02 -05002335static int ethtool_get_per_queue_coalesce(struct net_device *dev,
2336 void __user *useraddr,
2337 struct ethtool_per_queue_op *per_queue_opt)
2338{
2339 u32 bit;
2340 int ret;
2341 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2342
2343 if (!dev->ethtool_ops->get_per_queue_coalesce)
2344 return -EOPNOTSUPP;
2345
2346 useraddr += sizeof(*per_queue_opt);
2347
2348 bitmap_from_u32array(queue_mask,
2349 MAX_NUM_QUEUE,
2350 per_queue_opt->queue_mask,
2351 DIV_ROUND_UP(MAX_NUM_QUEUE, 32));
2352
2353 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2354 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
2355
2356 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, &coalesce);
2357 if (ret != 0)
2358 return ret;
2359 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
2360 return -EFAULT;
2361 useraddr += sizeof(coalesce);
2362 }
2363
2364 return 0;
2365}
2366
Kan Liangf38d1382016-02-19 09:24:03 -05002367static int ethtool_set_per_queue_coalesce(struct net_device *dev,
2368 void __user *useraddr,
2369 struct ethtool_per_queue_op *per_queue_opt)
2370{
2371 u32 bit;
2372 int i, ret = 0;
2373 int n_queue;
2374 struct ethtool_coalesce *backup = NULL, *tmp = NULL;
2375 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2376
2377 if ((!dev->ethtool_ops->set_per_queue_coalesce) ||
2378 (!dev->ethtool_ops->get_per_queue_coalesce))
2379 return -EOPNOTSUPP;
2380
2381 useraddr += sizeof(*per_queue_opt);
2382
2383 bitmap_from_u32array(queue_mask,
2384 MAX_NUM_QUEUE,
2385 per_queue_opt->queue_mask,
2386 DIV_ROUND_UP(MAX_NUM_QUEUE, 32));
2387 n_queue = bitmap_weight(queue_mask, MAX_NUM_QUEUE);
2388 tmp = backup = kmalloc_array(n_queue, sizeof(*backup), GFP_KERNEL);
2389 if (!backup)
2390 return -ENOMEM;
2391
2392 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2393 struct ethtool_coalesce coalesce;
2394
2395 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, tmp);
2396 if (ret != 0)
2397 goto roll_back;
2398
2399 tmp++;
2400
2401 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) {
2402 ret = -EFAULT;
2403 goto roll_back;
2404 }
2405
2406 ret = dev->ethtool_ops->set_per_queue_coalesce(dev, bit, &coalesce);
2407 if (ret != 0)
2408 goto roll_back;
2409
2410 useraddr += sizeof(coalesce);
2411 }
2412
2413roll_back:
2414 if (ret != 0) {
2415 tmp = backup;
2416 for_each_set_bit(i, queue_mask, bit) {
2417 dev->ethtool_ops->set_per_queue_coalesce(dev, i, tmp);
2418 tmp++;
2419 }
2420 }
2421 kfree(backup);
2422
2423 return ret;
2424}
2425
Wenwen Wangf0223d12018-10-08 10:49:35 -05002426static int ethtool_set_per_queue(struct net_device *dev,
2427 void __user *useraddr, u32 sub_cmd)
Kan Liangac2c7ad2016-02-19 09:24:01 -05002428{
2429 struct ethtool_per_queue_op per_queue_opt;
2430
2431 if (copy_from_user(&per_queue_opt, useraddr, sizeof(per_queue_opt)))
2432 return -EFAULT;
2433
Wenwen Wangf0223d12018-10-08 10:49:35 -05002434 if (per_queue_opt.sub_command != sub_cmd)
2435 return -EINVAL;
2436
Kan Liangac2c7ad2016-02-19 09:24:01 -05002437 switch (per_queue_opt.sub_command) {
Kan Liang421797b2016-02-19 09:24:02 -05002438 case ETHTOOL_GCOALESCE:
2439 return ethtool_get_per_queue_coalesce(dev, useraddr, &per_queue_opt);
Kan Liangf38d1382016-02-19 09:24:03 -05002440 case ETHTOOL_SCOALESCE:
2441 return ethtool_set_per_queue_coalesce(dev, useraddr, &per_queue_opt);
Kan Liangac2c7ad2016-02-19 09:24:01 -05002442 default:
2443 return -EOPNOTSUPP;
2444 };
2445}
2446
Yan Burman600fed52013-06-03 02:03:34 +00002447/* The main entry point in this file. Called from net/core/dev_ioctl.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Eric W. Biederman881d9662007-09-17 11:56:21 -07002449int dev_ethtool(struct net *net, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
Eric W. Biederman881d9662007-09-17 11:56:21 -07002451 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 void __user *useraddr = ifr->ifr_data;
Kan Liangac2c7ad2016-02-19 09:24:01 -05002453 u32 ethcmd, sub_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 int rc;
Bjørn Morkb29d3142013-05-01 23:06:42 +00002455 netdev_features_t old_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 if (!dev || !netif_device_present(dev))
2458 return -ENODEV;
2459
chavey97f8aef2010-04-07 21:54:42 -07002460 if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 return -EFAULT;
2462
Kan Liangac2c7ad2016-02-19 09:24:01 -05002463 if (ethcmd == ETHTOOL_PERQUEUE) {
2464 if (copy_from_user(&sub_cmd, useraddr + sizeof(ethcmd), sizeof(sub_cmd)))
2465 return -EFAULT;
2466 } else {
2467 sub_cmd = ethcmd;
2468 }
Stephen Hemminger75f31232006-09-28 15:13:37 -07002469 /* Allow some commands to be done by anyone */
Kan Liangac2c7ad2016-02-19 09:24:01 -05002470 switch (sub_cmd) {
stephen hemminger0fdc1002010-08-23 10:24:18 +00002471 case ETHTOOL_GSET:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002472 case ETHTOOL_GDRVINFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002473 case ETHTOOL_GMSGLVL:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002474 case ETHTOOL_GLINK:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002475 case ETHTOOL_GCOALESCE:
2476 case ETHTOOL_GRINGPARAM:
2477 case ETHTOOL_GPAUSEPARAM:
2478 case ETHTOOL_GRXCSUM:
2479 case ETHTOOL_GTXCSUM:
2480 case ETHTOOL_GSG:
Michał Mirosławf80400a2012-01-22 00:20:40 +00002481 case ETHTOOL_GSSET_INFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002482 case ETHTOOL_GSTRINGS:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002483 case ETHTOOL_GSTATS:
Andrew Lunnf3a40942015-12-30 16:28:25 +01002484 case ETHTOOL_GPHYSTATS:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002485 case ETHTOOL_GTSO:
2486 case ETHTOOL_GPERMADDR:
2487 case ETHTOOL_GUFO:
2488 case ETHTOOL_GGSO:
stephen hemminger1cab8192010-02-11 13:48:29 +00002489 case ETHTOOL_GGRO:
Jeff Garzik339bf022007-08-15 16:01:32 -07002490 case ETHTOOL_GFLAGS:
2491 case ETHTOOL_GPFLAGS:
Santwona Behera0853ad62008-07-02 03:47:41 -07002492 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08002493 case ETHTOOL_GRXRINGS:
2494 case ETHTOOL_GRXCLSRLCNT:
2495 case ETHTOOL_GRXCLSRULE:
2496 case ETHTOOL_GRXCLSRLALL:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002497 case ETHTOOL_GRXFHINDIR:
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05302498 case ETHTOOL_GRSSH:
Michał Mirosław5455c692011-02-15 16:59:17 +00002499 case ETHTOOL_GFEATURES:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002500 case ETHTOOL_GCHANNELS:
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002501 case ETHTOOL_GET_TS_INFO:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002502 case ETHTOOL_GEEE:
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302503 case ETHTOOL_GTUNABLE:
Miroslav Lichvar8006f6b2016-11-24 10:55:06 +01002504 case ETHTOOL_GLINKSETTINGS:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002505 break;
2506 default:
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +00002507 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Stephen Hemminger75f31232006-09-28 15:13:37 -07002508 return -EPERM;
2509 }
2510
chavey97f8aef2010-04-07 21:54:42 -07002511 if (dev->ethtool_ops->begin) {
2512 rc = dev->ethtool_ops->begin(dev);
2513 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 return rc;
chavey97f8aef2010-04-07 21:54:42 -07002515 }
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07002516 old_features = dev->features;
2517
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 switch (ethcmd) {
2519 case ETHTOOL_GSET:
2520 rc = ethtool_get_settings(dev, useraddr);
2521 break;
2522 case ETHTOOL_SSET:
2523 rc = ethtool_set_settings(dev, useraddr);
2524 break;
2525 case ETHTOOL_GDRVINFO:
2526 rc = ethtool_get_drvinfo(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 break;
2528 case ETHTOOL_GREGS:
2529 rc = ethtool_get_regs(dev, useraddr);
2530 break;
2531 case ETHTOOL_GWOL:
2532 rc = ethtool_get_wol(dev, useraddr);
2533 break;
2534 case ETHTOOL_SWOL:
2535 rc = ethtool_set_wol(dev, useraddr);
2536 break;
2537 case ETHTOOL_GMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002538 rc = ethtool_get_value(dev, useraddr, ethcmd,
2539 dev->ethtool_ops->get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 break;
2541 case ETHTOOL_SMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002542 rc = ethtool_set_value_void(dev, useraddr,
2543 dev->ethtool_ops->set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 break;
Yuval Mintz80f12ec2012-06-06 17:13:06 +00002545 case ETHTOOL_GEEE:
2546 rc = ethtool_get_eee(dev, useraddr);
2547 break;
2548 case ETHTOOL_SEEE:
2549 rc = ethtool_set_eee(dev, useraddr);
2550 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 case ETHTOOL_NWAY_RST:
2552 rc = ethtool_nway_reset(dev);
2553 break;
2554 case ETHTOOL_GLINK:
Ben Hutchingse596e6e2010-12-09 12:08:35 +00002555 rc = ethtool_get_link(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 break;
2557 case ETHTOOL_GEEPROM:
2558 rc = ethtool_get_eeprom(dev, useraddr);
2559 break;
2560 case ETHTOOL_SEEPROM:
2561 rc = ethtool_set_eeprom(dev, useraddr);
2562 break;
2563 case ETHTOOL_GCOALESCE:
2564 rc = ethtool_get_coalesce(dev, useraddr);
2565 break;
2566 case ETHTOOL_SCOALESCE:
2567 rc = ethtool_set_coalesce(dev, useraddr);
2568 break;
2569 case ETHTOOL_GRINGPARAM:
2570 rc = ethtool_get_ringparam(dev, useraddr);
2571 break;
2572 case ETHTOOL_SRINGPARAM:
2573 rc = ethtool_set_ringparam(dev, useraddr);
2574 break;
2575 case ETHTOOL_GPAUSEPARAM:
2576 rc = ethtool_get_pauseparam(dev, useraddr);
2577 break;
2578 case ETHTOOL_SPAUSEPARAM:
2579 rc = ethtool_set_pauseparam(dev, useraddr);
2580 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 case ETHTOOL_TEST:
2582 rc = ethtool_self_test(dev, useraddr);
2583 break;
2584 case ETHTOOL_GSTRINGS:
2585 rc = ethtool_get_strings(dev, useraddr);
2586 break;
2587 case ETHTOOL_PHYS_ID:
2588 rc = ethtool_phys_id(dev, useraddr);
2589 break;
2590 case ETHTOOL_GSTATS:
2591 rc = ethtool_get_stats(dev, useraddr);
2592 break;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002593 case ETHTOOL_GPERMADDR:
2594 rc = ethtool_get_perm_addr(dev, useraddr);
2595 break;
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002596 case ETHTOOL_GFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002597 rc = ethtool_get_value(dev, useraddr, ethcmd,
Michał Mirosławbc5787c62011-11-15 15:29:55 +00002598 __ethtool_get_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002599 break;
2600 case ETHTOOL_SFLAGS:
Michał Mirosławda8ac86c2011-02-15 16:59:18 +00002601 rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002602 break;
Jeff Garzik339bf022007-08-15 16:01:32 -07002603 case ETHTOOL_GPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002604 rc = ethtool_get_value(dev, useraddr, ethcmd,
2605 dev->ethtool_ops->get_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07002606 break;
2607 case ETHTOOL_SPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002608 rc = ethtool_set_value(dev, useraddr,
2609 dev->ethtool_ops->set_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07002610 break;
Santwona Behera0853ad62008-07-02 03:47:41 -07002611 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08002612 case ETHTOOL_GRXRINGS:
2613 case ETHTOOL_GRXCLSRLCNT:
2614 case ETHTOOL_GRXCLSRULE:
2615 case ETHTOOL_GRXCLSRLALL:
Ben Hutchingsbf988432010-06-28 08:45:58 +00002616 rc = ethtool_get_rxnfc(dev, ethcmd, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07002617 break;
2618 case ETHTOOL_SRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08002619 case ETHTOOL_SRXCLSRLDEL:
2620 case ETHTOOL_SRXCLSRLINS:
Ben Hutchingsbf988432010-06-28 08:45:58 +00002621 rc = ethtool_set_rxnfc(dev, ethcmd, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07002622 break;
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00002623 case ETHTOOL_FLASHDEV:
2624 rc = ethtool_flash_device(dev, useraddr);
2625 break;
Ben Hutchingsd73d3a82009-10-05 10:59:58 +00002626 case ETHTOOL_RESET:
2627 rc = ethtool_reset(dev, useraddr);
2628 break;
Jeff Garzik723b2f52010-03-03 22:51:50 +00002629 case ETHTOOL_GSSET_INFO:
2630 rc = ethtool_get_sset_info(dev, useraddr);
2631 break;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00002632 case ETHTOOL_GRXFHINDIR:
2633 rc = ethtool_get_rxfh_indir(dev, useraddr);
2634 break;
2635 case ETHTOOL_SRXFHINDIR:
2636 rc = ethtool_set_rxfh_indir(dev, useraddr);
2637 break;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05302638 case ETHTOOL_GRSSH:
2639 rc = ethtool_get_rxfh(dev, useraddr);
2640 break;
2641 case ETHTOOL_SRSSH:
2642 rc = ethtool_set_rxfh(dev, useraddr);
2643 break;
Michał Mirosław5455c692011-02-15 16:59:17 +00002644 case ETHTOOL_GFEATURES:
2645 rc = ethtool_get_features(dev, useraddr);
2646 break;
2647 case ETHTOOL_SFEATURES:
2648 rc = ethtool_set_features(dev, useraddr);
2649 break;
Michał Mirosław0a417702011-02-15 16:59:17 +00002650 case ETHTOOL_GTXCSUM:
Michał Mirosławe83d3602011-02-15 16:59:18 +00002651 case ETHTOOL_GRXCSUM:
Michał Mirosław0a417702011-02-15 16:59:17 +00002652 case ETHTOOL_GSG:
2653 case ETHTOOL_GTSO:
2654 case ETHTOOL_GUFO:
2655 case ETHTOOL_GGSO:
2656 case ETHTOOL_GGRO:
2657 rc = ethtool_get_one_feature(dev, useraddr, ethcmd);
2658 break;
2659 case ETHTOOL_STXCSUM:
Michał Mirosławe83d3602011-02-15 16:59:18 +00002660 case ETHTOOL_SRXCSUM:
Michał Mirosław0a417702011-02-15 16:59:17 +00002661 case ETHTOOL_SSG:
2662 case ETHTOOL_STSO:
2663 case ETHTOOL_SUFO:
2664 case ETHTOOL_SGSO:
2665 case ETHTOOL_SGRO:
2666 rc = ethtool_set_one_feature(dev, useraddr, ethcmd);
2667 break;
amit salecha8b5933c2011-04-07 01:58:42 +00002668 case ETHTOOL_GCHANNELS:
2669 rc = ethtool_get_channels(dev, useraddr);
2670 break;
2671 case ETHTOOL_SCHANNELS:
2672 rc = ethtool_set_channels(dev, useraddr);
2673 break;
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002674 case ETHTOOL_SET_DUMP:
2675 rc = ethtool_set_dump(dev, useraddr);
2676 break;
2677 case ETHTOOL_GET_DUMP_FLAG:
2678 rc = ethtool_get_dump_flag(dev, useraddr);
2679 break;
2680 case ETHTOOL_GET_DUMP_DATA:
2681 rc = ethtool_get_dump_data(dev, useraddr);
2682 break;
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002683 case ETHTOOL_GET_TS_INFO:
2684 rc = ethtool_get_ts_info(dev, useraddr);
2685 break;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002686 case ETHTOOL_GMODULEINFO:
2687 rc = ethtool_get_module_info(dev, useraddr);
2688 break;
2689 case ETHTOOL_GMODULEEEPROM:
2690 rc = ethtool_get_module_eeprom(dev, useraddr);
2691 break;
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302692 case ETHTOOL_GTUNABLE:
2693 rc = ethtool_get_tunable(dev, useraddr);
2694 break;
2695 case ETHTOOL_STUNABLE:
2696 rc = ethtool_set_tunable(dev, useraddr);
2697 break;
Andrew Lunnf3a40942015-12-30 16:28:25 +01002698 case ETHTOOL_GPHYSTATS:
2699 rc = ethtool_get_phy_stats(dev, useraddr);
2700 break;
Kan Liangac2c7ad2016-02-19 09:24:01 -05002701 case ETHTOOL_PERQUEUE:
Wenwen Wangf0223d12018-10-08 10:49:35 -05002702 rc = ethtool_set_per_queue(dev, useraddr, sub_cmd);
Kan Liangac2c7ad2016-02-19 09:24:01 -05002703 break;
David Decotigny3f1ac7a2016-02-24 10:57:59 -08002704 case ETHTOOL_GLINKSETTINGS:
2705 rc = ethtool_get_link_ksettings(dev, useraddr);
2706 break;
2707 case ETHTOOL_SLINKSETTINGS:
2708 rc = ethtool_set_link_ksettings(dev, useraddr);
2709 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 default:
Matthew Wilcox61a44b92007-07-31 14:00:02 -07002711 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002713
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002714 if (dev->ethtool_ops->complete)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 dev->ethtool_ops->complete(dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07002716
2717 if (old_features != dev->features)
2718 netdev_features_change(dev);
2719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721}