blob: 730f8dce33be280623668bb6fdc9e058a945d957 [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;
Florian Fainellie9cd6722017-09-20 15:52:13 -0700517 legacy_settings->transceiver
518 = link_ksettings->base.transceiver;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800519 return retval;
520}
521
522/* number of 32-bit words to store the user's link mode bitmaps */
523#define __ETHTOOL_LINK_MODE_MASK_NU32 \
524 DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32)
525
526/* layout of the struct passed from/to userland */
527struct ethtool_link_usettings {
528 struct ethtool_link_settings base;
529 struct {
530 __u32 supported[__ETHTOOL_LINK_MODE_MASK_NU32];
531 __u32 advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
532 __u32 lp_advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
533 } link_modes;
534};
535
536/* Internal kernel helper to query a device ethtool_link_settings.
537 *
538 * Backward compatibility note: for compatibility with legacy drivers
539 * that implement only the ethtool_cmd API, this has to work with both
540 * drivers implementing get_link_ksettings API and drivers
541 * implementing get_settings API. When drivers implement get_settings
542 * and report ethtool_cmd deprecated fields
543 * (transceiver/maxrxpkt/maxtxpkt), these fields are silently ignored
544 * because the resulting struct ethtool_link_settings does not report them.
545 */
546int __ethtool_get_link_ksettings(struct net_device *dev,
547 struct ethtool_link_ksettings *link_ksettings)
548{
549 int err;
550 struct ethtool_cmd cmd;
551
552 ASSERT_RTNL();
553
554 if (dev->ethtool_ops->get_link_ksettings) {
555 memset(link_ksettings, 0, sizeof(*link_ksettings));
556 return dev->ethtool_ops->get_link_ksettings(dev,
557 link_ksettings);
558 }
559
560 /* driver doesn't support %ethtool_link_ksettings API. revert to
561 * legacy %ethtool_cmd API, unless it's not supported either.
562 * TODO: remove when ethtool_ops::get_settings disappears internally
563 */
David Decotigny3237fc62016-02-24 10:58:11 -0800564 if (!dev->ethtool_ops->get_settings)
565 return -EOPNOTSUPP;
566
567 memset(&cmd, 0, sizeof(cmd));
568 cmd.cmd = ETHTOOL_GSET;
569 err = dev->ethtool_ops->get_settings(dev, &cmd);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800570 if (err < 0)
571 return err;
572
573 /* we ignore deprecated fields transceiver/maxrxpkt/maxtxpkt
574 */
575 convert_legacy_settings_to_link_ksettings(link_ksettings, &cmd);
576 return err;
577}
578EXPORT_SYMBOL(__ethtool_get_link_ksettings);
579
580/* convert ethtool_link_usettings in user space to a kernel internal
581 * ethtool_link_ksettings. return 0 on success, errno on error.
582 */
583static int load_link_ksettings_from_user(struct ethtool_link_ksettings *to,
584 const void __user *from)
585{
586 struct ethtool_link_usettings link_usettings;
587
588 if (copy_from_user(&link_usettings, from, sizeof(link_usettings)))
589 return -EFAULT;
590
591 memcpy(&to->base, &link_usettings.base, sizeof(to->base));
592 bitmap_from_u32array(to->link_modes.supported,
593 __ETHTOOL_LINK_MODE_MASK_NBITS,
594 link_usettings.link_modes.supported,
595 __ETHTOOL_LINK_MODE_MASK_NU32);
596 bitmap_from_u32array(to->link_modes.advertising,
597 __ETHTOOL_LINK_MODE_MASK_NBITS,
598 link_usettings.link_modes.advertising,
599 __ETHTOOL_LINK_MODE_MASK_NU32);
600 bitmap_from_u32array(to->link_modes.lp_advertising,
601 __ETHTOOL_LINK_MODE_MASK_NBITS,
602 link_usettings.link_modes.lp_advertising,
603 __ETHTOOL_LINK_MODE_MASK_NU32);
604
605 return 0;
606}
607
608/* convert a kernel internal ethtool_link_ksettings to
609 * ethtool_link_usettings in user space. return 0 on success, errno on
610 * error.
611 */
612static int
613store_link_ksettings_for_user(void __user *to,
614 const struct ethtool_link_ksettings *from)
615{
616 struct ethtool_link_usettings link_usettings;
617
618 memcpy(&link_usettings.base, &from->base, sizeof(link_usettings));
619 bitmap_to_u32array(link_usettings.link_modes.supported,
620 __ETHTOOL_LINK_MODE_MASK_NU32,
621 from->link_modes.supported,
622 __ETHTOOL_LINK_MODE_MASK_NBITS);
623 bitmap_to_u32array(link_usettings.link_modes.advertising,
624 __ETHTOOL_LINK_MODE_MASK_NU32,
625 from->link_modes.advertising,
626 __ETHTOOL_LINK_MODE_MASK_NBITS);
627 bitmap_to_u32array(link_usettings.link_modes.lp_advertising,
628 __ETHTOOL_LINK_MODE_MASK_NU32,
629 from->link_modes.lp_advertising,
630 __ETHTOOL_LINK_MODE_MASK_NBITS);
631
632 if (copy_to_user(to, &link_usettings, sizeof(link_usettings)))
633 return -EFAULT;
634
635 return 0;
636}
637
638/* Query device for its ethtool_link_settings.
639 *
640 * Backward compatibility note: this function must fail when driver
641 * does not implement ethtool::get_link_ksettings, even if legacy
642 * ethtool_ops::get_settings is implemented. This tells new versions
643 * of ethtool that they should use the legacy API %ETHTOOL_GSET for
644 * this driver, so that they can correctly access the ethtool_cmd
645 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
646 * implements ethtool_ops::get_settings anymore.
647 */
648static int ethtool_get_link_ksettings(struct net_device *dev,
649 void __user *useraddr)
650{
651 int err = 0;
652 struct ethtool_link_ksettings link_ksettings;
653
654 ASSERT_RTNL();
655
656 if (!dev->ethtool_ops->get_link_ksettings)
657 return -EOPNOTSUPP;
658
659 /* handle bitmap nbits handshake */
660 if (copy_from_user(&link_ksettings.base, useraddr,
661 sizeof(link_ksettings.base)))
662 return -EFAULT;
663
664 if (__ETHTOOL_LINK_MODE_MASK_NU32
665 != link_ksettings.base.link_mode_masks_nwords) {
666 /* wrong link mode nbits requested */
667 memset(&link_ksettings, 0, sizeof(link_ksettings));
Ben Hutchings793cf872016-03-14 01:05:38 +0000668 link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800669 /* send back number of words required as negative val */
670 compiletime_assert(__ETHTOOL_LINK_MODE_MASK_NU32 <= S8_MAX,
671 "need too many bits for link modes!");
672 link_ksettings.base.link_mode_masks_nwords
673 = -((s8)__ETHTOOL_LINK_MODE_MASK_NU32);
674
675 /* copy the base fields back to user, not the link
676 * mode bitmaps
677 */
678 if (copy_to_user(useraddr, &link_ksettings.base,
679 sizeof(link_ksettings.base)))
680 return -EFAULT;
681
682 return 0;
683 }
684
685 /* handshake successful: user/kernel agree on
686 * link_mode_masks_nwords
687 */
688
689 memset(&link_ksettings, 0, sizeof(link_ksettings));
690 err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
691 if (err < 0)
692 return err;
693
694 /* make sure we tell the right values to user */
695 link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
696 link_ksettings.base.link_mode_masks_nwords
697 = __ETHTOOL_LINK_MODE_MASK_NU32;
698
699 return store_link_ksettings_for_user(useraddr, &link_ksettings);
700}
701
702/* Update device ethtool_link_settings.
703 *
704 * Backward compatibility note: this function must fail when driver
705 * does not implement ethtool::set_link_ksettings, even if legacy
706 * ethtool_ops::set_settings is implemented. This tells new versions
707 * of ethtool that they should use the legacy API %ETHTOOL_SSET for
708 * this driver, so that they can correctly update the ethtool_cmd
709 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
710 * implements ethtool_ops::get_settings anymore.
711 */
712static int ethtool_set_link_ksettings(struct net_device *dev,
713 void __user *useraddr)
714{
715 int err;
716 struct ethtool_link_ksettings link_ksettings;
717
718 ASSERT_RTNL();
719
720 if (!dev->ethtool_ops->set_link_ksettings)
721 return -EOPNOTSUPP;
722
723 /* make sure nbits field has expected value */
724 if (copy_from_user(&link_ksettings.base, useraddr,
725 sizeof(link_ksettings.base)))
726 return -EFAULT;
727
728 if (__ETHTOOL_LINK_MODE_MASK_NU32
729 != link_ksettings.base.link_mode_masks_nwords)
730 return -EINVAL;
731
732 /* copy the whole structure, now that we know it has expected
733 * format
734 */
735 err = load_link_ksettings_from_user(&link_ksettings, useraddr);
736 if (err)
737 return err;
738
739 /* re-check nwords field, just in case */
740 if (__ETHTOOL_LINK_MODE_MASK_NU32
741 != link_ksettings.base.link_mode_masks_nwords)
742 return -EINVAL;
743
744 return dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
745}
746
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800747/* Query device for its ethtool_cmd settings.
748 *
749 * Backward compatibility note: for compatibility with legacy ethtool,
750 * this has to work with both drivers implementing get_link_ksettings
751 * API and drivers implementing get_settings API. When drivers
752 * implement get_link_ksettings and report higher link mode bits, a
753 * kernel warning is logged once (with name of 1st driver/device) to
754 * recommend user to upgrade ethtool, but the command is successful
755 * (only the lower link mode bits reported back to user).
756 */
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000757static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
758{
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000759 struct ethtool_cmd cmd;
760
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800761 ASSERT_RTNL();
762
763 if (dev->ethtool_ops->get_link_ksettings) {
764 /* First, use link_ksettings API if it is supported */
765 int err;
766 struct ethtool_link_ksettings link_ksettings;
767
768 memset(&link_ksettings, 0, sizeof(link_ksettings));
769 err = dev->ethtool_ops->get_link_ksettings(dev,
770 &link_ksettings);
771 if (err < 0)
772 return err;
Stephen Hemminger16d5b482017-12-29 10:02:52 -0800773 convert_link_ksettings_to_legacy_settings(&cmd,
774 &link_ksettings);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800775
776 /* send a sensible cmd tag back to user */
777 cmd.cmd = ETHTOOL_GSET;
778 } else {
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800779 /* driver doesn't support %ethtool_link_ksettings
780 * API. revert to legacy %ethtool_cmd API, unless it's
781 * not supported either.
782 */
David Decotigny3237fc62016-02-24 10:58:11 -0800783 int err;
784
785 if (!dev->ethtool_ops->get_settings)
786 return -EOPNOTSUPP;
787
788 memset(&cmd, 0, sizeof(cmd));
789 cmd.cmd = ETHTOOL_GSET;
790 err = dev->ethtool_ops->get_settings(dev, &cmd);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800791 if (err < 0)
792 return err;
793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
796 return -EFAULT;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return 0;
799}
800
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800801/* Update device link settings with given ethtool_cmd.
802 *
803 * Backward compatibility note: for compatibility with legacy ethtool,
804 * this has to work with both drivers implementing set_link_ksettings
805 * API and drivers implementing set_settings API. When drivers
806 * implement set_link_ksettings and user's request updates deprecated
807 * ethtool_cmd fields (transceiver/maxrxpkt/maxtxpkt), a kernel
808 * warning is logged once (with name of 1st driver/device) to
809 * recommend user to upgrade ethtool, and the request is rejected.
810 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
812{
813 struct ethtool_cmd cmd;
814
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800815 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
818 return -EFAULT;
819
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800820 /* first, try new %ethtool_link_ksettings API. */
821 if (dev->ethtool_ops->set_link_ksettings) {
822 struct ethtool_link_ksettings link_ksettings;
823
824 if (!convert_legacy_settings_to_link_ksettings(&link_ksettings,
825 &cmd))
826 return -EINVAL;
827
828 link_ksettings.base.cmd = ETHTOOL_SLINKSETTINGS;
829 link_ksettings.base.link_mode_masks_nwords
830 = __ETHTOOL_LINK_MODE_MASK_NU32;
831 return dev->ethtool_ops->set_link_ksettings(dev,
832 &link_ksettings);
833 }
834
835 /* legacy %ethtool_cmd API */
836
837 /* TODO: return -EOPNOTSUPP when ethtool_ops::get_settings
838 * disappears internally
839 */
840
841 if (!dev->ethtool_ops->set_settings)
842 return -EOPNOTSUPP;
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return dev->ethtool_ops->set_settings(dev, &cmd);
845}
846
chavey97f8aef2010-04-07 21:54:42 -0700847static noinline_for_stack int ethtool_get_drvinfo(struct net_device *dev,
848 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
850 struct ethtool_drvinfo info;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700851 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 memset(&info, 0, sizeof(info));
854 info.cmd = ETHTOOL_GDRVINFO;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000855 if (ops->get_drvinfo) {
Ben Hutchings01414802010-08-17 02:31:15 -0700856 ops->get_drvinfo(dev, &info);
857 } else if (dev->dev.parent && dev->dev.parent->driver) {
858 strlcpy(info.bus_info, dev_name(dev->dev.parent),
859 sizeof(info.bus_info));
860 strlcpy(info.driver, dev->dev.parent->driver->name,
861 sizeof(info.driver));
862 } else {
863 return -EOPNOTSUPP;
864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Jeff Garzik723b2f52010-03-03 22:51:50 +0000866 /*
867 * this method of obtaining string set info is deprecated;
Jeff Garzikd17792e2010-03-04 08:21:53 +0000868 * Use ETHTOOL_GSSET_INFO instead.
Jeff Garzik723b2f52010-03-03 22:51:50 +0000869 */
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000870 if (ops->get_sset_count) {
Jeff Garzikff03d492007-08-15 16:01:08 -0700871 int rc;
872
873 rc = ops->get_sset_count(dev, ETH_SS_TEST);
874 if (rc >= 0)
875 info.testinfo_len = rc;
876 rc = ops->get_sset_count(dev, ETH_SS_STATS);
877 if (rc >= 0)
878 info.n_stats = rc;
Jeff Garzik339bf022007-08-15 16:01:32 -0700879 rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
880 if (rc >= 0)
881 info.n_priv_flags = rc;
Jeff Garzikff03d492007-08-15 16:01:08 -0700882 }
Yunsheng Linb9d3bd82018-12-26 19:51:46 +0800883 if (ops->get_regs_len) {
884 int ret = ops->get_regs_len(dev);
885
886 if (ret > 0)
887 info.regdump_len = ret;
888 }
889
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000890 if (ops->get_eeprom_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 info.eedump_len = ops->get_eeprom_len(dev);
892
893 if (copy_to_user(useraddr, &info, sizeof(info)))
894 return -EFAULT;
895 return 0;
896}
897
Eric Dumazetf5c445e2010-03-08 12:17:04 -0800898static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
chavey97f8aef2010-04-07 21:54:42 -0700899 void __user *useraddr)
Jeff Garzik723b2f52010-03-03 22:51:50 +0000900{
901 struct ethtool_sset_info info;
Jeff Garzik723b2f52010-03-03 22:51:50 +0000902 u64 sset_mask;
903 int i, idx = 0, n_bits = 0, ret, rc;
904 u32 *info_buf = NULL;
905
Jeff Garzik723b2f52010-03-03 22:51:50 +0000906 if (copy_from_user(&info, useraddr, sizeof(info)))
907 return -EFAULT;
908
909 /* store copy of mask, because we zero struct later on */
910 sset_mask = info.sset_mask;
911 if (!sset_mask)
912 return 0;
913
914 /* calculate size of return buffer */
Jeff Garzikd17792e2010-03-04 08:21:53 +0000915 n_bits = hweight64(sset_mask);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000916
917 memset(&info, 0, sizeof(info));
918 info.cmd = ETHTOOL_GSSET_INFO;
919
920 info_buf = kzalloc(n_bits * sizeof(u32), GFP_USER);
921 if (!info_buf)
922 return -ENOMEM;
923
924 /*
925 * fill return buffer based on input bitmask and successful
926 * get_sset_count return
927 */
928 for (i = 0; i < 64; i++) {
929 if (!(sset_mask & (1ULL << i)))
930 continue;
931
Michał Mirosław340ae162011-02-15 16:59:16 +0000932 rc = __ethtool_get_sset_count(dev, i);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000933 if (rc >= 0) {
934 info.sset_mask |= (1ULL << i);
935 info_buf[idx++] = rc;
936 }
937 }
938
939 ret = -EFAULT;
940 if (copy_to_user(useraddr, &info, sizeof(info)))
941 goto out;
942
943 useraddr += offsetof(struct ethtool_sset_info, data);
944 if (copy_to_user(useraddr, info_buf, idx * sizeof(u32)))
945 goto out;
946
947 ret = 0;
948
949out:
950 kfree(info_buf);
951 return ret;
952}
953
chavey97f8aef2010-04-07 21:54:42 -0700954static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
Ben Hutchingsbf988432010-06-28 08:45:58 +0000955 u32 cmd, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700956{
Ben Hutchingsbf988432010-06-28 08:45:58 +0000957 struct ethtool_rxnfc info;
958 size_t info_size = sizeof(info);
Ben Hutchings55664f32012-01-03 12:04:51 +0000959 int rc;
Santwona Behera0853ad62008-07-02 03:47:41 -0700960
Santwona Behera59089d82009-02-20 00:58:13 -0800961 if (!dev->ethtool_ops->set_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700962 return -EOPNOTSUPP;
963
Ben Hutchingsbf988432010-06-28 08:45:58 +0000964 /* struct ethtool_rxnfc was originally defined for
965 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
966 * members. User-space might still be using that
967 * definition. */
968 if (cmd == ETHTOOL_SRXFH)
969 info_size = (offsetof(struct ethtool_rxnfc, data) +
970 sizeof(info.data));
971
972 if (copy_from_user(&info, useraddr, info_size))
Santwona Behera0853ad62008-07-02 03:47:41 -0700973 return -EFAULT;
974
Ben Hutchings55664f32012-01-03 12:04:51 +0000975 rc = dev->ethtool_ops->set_rxnfc(dev, &info);
976 if (rc)
977 return rc;
978
979 if (cmd == ETHTOOL_SRXCLSRLINS &&
980 copy_to_user(useraddr, &info, info_size))
981 return -EFAULT;
982
983 return 0;
Santwona Behera0853ad62008-07-02 03:47:41 -0700984}
985
chavey97f8aef2010-04-07 21:54:42 -0700986static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
Ben Hutchingsbf988432010-06-28 08:45:58 +0000987 u32 cmd, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700988{
989 struct ethtool_rxnfc info;
Ben Hutchingsbf988432010-06-28 08:45:58 +0000990 size_t info_size = sizeof(info);
Santwona Behera59089d82009-02-20 00:58:13 -0800991 const struct ethtool_ops *ops = dev->ethtool_ops;
992 int ret;
993 void *rule_buf = NULL;
Santwona Behera0853ad62008-07-02 03:47:41 -0700994
Santwona Behera59089d82009-02-20 00:58:13 -0800995 if (!ops->get_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700996 return -EOPNOTSUPP;
997
Ben Hutchingsbf988432010-06-28 08:45:58 +0000998 /* struct ethtool_rxnfc was originally defined for
999 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
1000 * members. User-space might still be using that
1001 * definition. */
1002 if (cmd == ETHTOOL_GRXFH)
1003 info_size = (offsetof(struct ethtool_rxnfc, data) +
1004 sizeof(info.data));
1005
1006 if (copy_from_user(&info, useraddr, info_size))
Santwona Behera0853ad62008-07-02 03:47:41 -07001007 return -EFAULT;
1008
Santwona Behera59089d82009-02-20 00:58:13 -08001009 if (info.cmd == ETHTOOL_GRXCLSRLALL) {
1010 if (info.rule_cnt > 0) {
Ben Hutchingsdb048b62010-06-28 08:44:07 +00001011 if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
Kees Cookae6df5f2010-10-07 10:03:48 +00001012 rule_buf = kzalloc(info.rule_cnt * sizeof(u32),
Ben Hutchingsdb048b62010-06-28 08:44:07 +00001013 GFP_USER);
Santwona Behera59089d82009-02-20 00:58:13 -08001014 if (!rule_buf)
1015 return -ENOMEM;
1016 }
1017 }
Santwona Behera0853ad62008-07-02 03:47:41 -07001018
Santwona Behera59089d82009-02-20 00:58:13 -08001019 ret = ops->get_rxnfc(dev, &info, rule_buf);
1020 if (ret < 0)
1021 goto err_out;
1022
1023 ret = -EFAULT;
Ben Hutchingsbf988432010-06-28 08:45:58 +00001024 if (copy_to_user(useraddr, &info, info_size))
Santwona Behera59089d82009-02-20 00:58:13 -08001025 goto err_out;
1026
1027 if (rule_buf) {
1028 useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
1029 if (copy_to_user(useraddr, rule_buf,
1030 info.rule_cnt * sizeof(u32)))
1031 goto err_out;
1032 }
1033 ret = 0;
1034
1035err_out:
Wei Yongjunc9cacec2009-03-31 15:06:26 -07001036 kfree(rule_buf);
Santwona Behera59089d82009-02-20 00:58:13 -08001037
1038 return ret;
Santwona Behera0853ad62008-07-02 03:47:41 -07001039}
1040
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301041static int ethtool_copy_validate_indir(u32 *indir, void __user *useraddr,
1042 struct ethtool_rxnfc *rx_rings,
1043 u32 size)
1044{
Ben Hutchingsfb95cd82014-05-15 00:46:45 +01001045 int i;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301046
1047 if (copy_from_user(indir, useraddr, size * sizeof(indir[0])))
Ben Hutchingsfb95cd82014-05-15 00:46:45 +01001048 return -EFAULT;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301049
1050 /* Validate ring indices */
Ben Hutchingsfb95cd82014-05-15 00:46:45 +01001051 for (i = 0; i < size; i++)
1052 if (indir[i] >= rx_rings->data)
1053 return -EINVAL;
1054
1055 return 0;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301056}
1057
Kim Jonesba905f52016-02-02 03:51:16 +00001058u8 netdev_rss_key[NETDEV_RSS_KEY_LEN] __read_mostly;
Eric Dumazet960fb622014-11-16 06:23:05 -08001059
1060void netdev_rss_key_fill(void *buffer, size_t len)
1061{
1062 BUG_ON(len > sizeof(netdev_rss_key));
1063 net_get_random_once(netdev_rss_key, sizeof(netdev_rss_key));
1064 memcpy(buffer, netdev_rss_key, len);
1065}
1066EXPORT_SYMBOL(netdev_rss_key_fill);
1067
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001068static int ethtool_get_max_rxfh_channel(struct net_device *dev, u32 *max)
1069{
1070 u32 dev_size, current_max = 0;
1071 u32 *indir;
1072 int ret;
1073
1074 if (!dev->ethtool_ops->get_rxfh_indir_size ||
1075 !dev->ethtool_ops->get_rxfh)
1076 return -EOPNOTSUPP;
1077 dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
1078 if (dev_size == 0)
1079 return -EOPNOTSUPP;
1080
1081 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
1082 if (!indir)
1083 return -ENOMEM;
1084
1085 ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
1086 if (ret)
1087 goto out;
1088
1089 while (dev_size--)
1090 current_max = max(current_max, indir[dev_size]);
1091
1092 *max = current_max;
1093
1094out:
1095 kfree(indir);
1096 return ret;
1097}
1098
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001099static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev,
1100 void __user *useraddr)
1101{
Ben Hutchings7850f632011-12-15 13:55:01 +00001102 u32 user_size, dev_size;
1103 u32 *indir;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001104 int ret;
1105
Ben Hutchings7850f632011-12-15 13:55:01 +00001106 if (!dev->ethtool_ops->get_rxfh_indir_size ||
Ben Hutchingsfe62d002014-05-15 01:25:27 +01001107 !dev->ethtool_ops->get_rxfh)
Ben Hutchings7850f632011-12-15 13:55:01 +00001108 return -EOPNOTSUPP;
1109 dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
1110 if (dev_size == 0)
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001111 return -EOPNOTSUPP;
1112
Ben Hutchings7850f632011-12-15 13:55:01 +00001113 if (copy_from_user(&user_size,
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001114 useraddr + offsetof(struct ethtool_rxfh_indir, size),
Ben Hutchings7850f632011-12-15 13:55:01 +00001115 sizeof(user_size)))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001116 return -EFAULT;
1117
Ben Hutchings7850f632011-12-15 13:55:01 +00001118 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size),
1119 &dev_size, sizeof(dev_size)))
1120 return -EFAULT;
1121
1122 /* If the user buffer size is 0, this is just a query for the
1123 * device table size. Otherwise, if it's smaller than the
1124 * device table size it's an error.
1125 */
1126 if (user_size < dev_size)
1127 return user_size == 0 ? 0 : -EINVAL;
1128
1129 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001130 if (!indir)
1131 return -ENOMEM;
1132
Eyal Perry892311f2014-12-02 18:12:10 +02001133 ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001134 if (ret)
1135 goto out;
1136
Ben Hutchings7850f632011-12-15 13:55:01 +00001137 if (copy_to_user(useraddr +
1138 offsetof(struct ethtool_rxfh_indir, ring_index[0]),
1139 indir, dev_size * sizeof(indir[0])))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001140 ret = -EFAULT;
1141
1142out:
1143 kfree(indir);
1144 return ret;
1145}
1146
1147static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev,
1148 void __user *useraddr)
1149{
Ben Hutchings7850f632011-12-15 13:55:01 +00001150 struct ethtool_rxnfc rx_rings;
1151 u32 user_size, dev_size, i;
1152 u32 *indir;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001153 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001154 int ret;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301155 u32 ringidx_offset = offsetof(struct ethtool_rxfh_indir, ring_index[0]);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001156
Ben Hutchingsfe62d002014-05-15 01:25:27 +01001157 if (!ops->get_rxfh_indir_size || !ops->set_rxfh ||
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001158 !ops->get_rxnfc)
Ben Hutchings7850f632011-12-15 13:55:01 +00001159 return -EOPNOTSUPP;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001160
1161 dev_size = ops->get_rxfh_indir_size(dev);
Ben Hutchings7850f632011-12-15 13:55:01 +00001162 if (dev_size == 0)
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001163 return -EOPNOTSUPP;
1164
Ben Hutchings7850f632011-12-15 13:55:01 +00001165 if (copy_from_user(&user_size,
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001166 useraddr + offsetof(struct ethtool_rxfh_indir, size),
Ben Hutchings7850f632011-12-15 13:55:01 +00001167 sizeof(user_size)))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001168 return -EFAULT;
1169
Ben Hutchings278bc422011-12-15 13:56:49 +00001170 if (user_size != 0 && user_size != dev_size)
Ben Hutchings7850f632011-12-15 13:55:01 +00001171 return -EINVAL;
1172
1173 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001174 if (!indir)
1175 return -ENOMEM;
1176
Ben Hutchings7850f632011-12-15 13:55:01 +00001177 rx_rings.cmd = ETHTOOL_GRXRINGS;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001178 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
Ben Hutchings7850f632011-12-15 13:55:01 +00001179 if (ret)
1180 goto out;
Ben Hutchings278bc422011-12-15 13:56:49 +00001181
1182 if (user_size == 0) {
1183 for (i = 0; i < dev_size; i++)
1184 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1185 } else {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301186 ret = ethtool_copy_validate_indir(indir,
1187 useraddr + ringidx_offset,
1188 &rx_rings,
1189 dev_size);
1190 if (ret)
Ben Hutchings7850f632011-12-15 13:55:01 +00001191 goto out;
Ben Hutchings7850f632011-12-15 13:55:01 +00001192 }
1193
Eyal Perry892311f2014-12-02 18:12:10 +02001194 ret = ops->set_rxfh(dev, indir, NULL, ETH_RSS_HASH_NO_CHANGE);
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001195 if (ret)
1196 goto out;
1197
1198 /* indicate whether rxfh was set to default */
1199 if (user_size == 0)
1200 dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1201 else
1202 dev->priv_flags |= IFF_RXFH_CONFIGURED;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001203
1204out:
1205 kfree(indir);
1206 return ret;
1207}
1208
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301209static noinline_for_stack int ethtool_get_rxfh(struct net_device *dev,
1210 void __user *useraddr)
1211{
1212 int ret;
1213 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001214 u32 user_indir_size, user_key_size;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301215 u32 dev_indir_size = 0, dev_key_size = 0;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001216 struct ethtool_rxfh rxfh;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301217 u32 total_size;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001218 u32 indir_bytes;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301219 u32 *indir = NULL;
Eyal Perry892311f2014-12-02 18:12:10 +02001220 u8 dev_hfunc = 0;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301221 u8 *hkey = NULL;
1222 u8 *rss_config;
1223
Eyal Perry892311f2014-12-02 18:12:10 +02001224 if (!ops->get_rxfh)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301225 return -EOPNOTSUPP;
1226
1227 if (ops->get_rxfh_indir_size)
1228 dev_indir_size = ops->get_rxfh_indir_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301229 if (ops->get_rxfh_key_size)
1230 dev_key_size = ops->get_rxfh_key_size(dev);
1231
Ben Hutchingsf062a382014-05-15 16:28:07 +01001232 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301233 return -EFAULT;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001234 user_indir_size = rxfh.indir_size;
1235 user_key_size = rxfh.key_size;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301236
Ben Hutchingsf062a382014-05-15 16:28:07 +01001237 /* Check that reserved fields are 0 for now */
Eyal Perry892311f2014-12-02 18:12:10 +02001238 if (rxfh.rss_context || rxfh.rsvd8[0] || rxfh.rsvd8[1] ||
1239 rxfh.rsvd8[2] || rxfh.rsvd32)
Ben Hutchingsf062a382014-05-15 16:28:07 +01001240 return -EINVAL;
1241
1242 rxfh.indir_size = dev_indir_size;
1243 rxfh.key_size = dev_key_size;
1244 if (copy_to_user(useraddr, &rxfh, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301245 return -EFAULT;
1246
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301247 if ((user_indir_size && (user_indir_size != dev_indir_size)) ||
1248 (user_key_size && (user_key_size != dev_key_size)))
1249 return -EINVAL;
1250
1251 indir_bytes = user_indir_size * sizeof(indir[0]);
1252 total_size = indir_bytes + user_key_size;
1253 rss_config = kzalloc(total_size, GFP_USER);
1254 if (!rss_config)
1255 return -ENOMEM;
1256
1257 if (user_indir_size)
1258 indir = (u32 *)rss_config;
1259
1260 if (user_key_size)
1261 hkey = rss_config + indir_bytes;
1262
Eyal Perry892311f2014-12-02 18:12:10 +02001263 ret = dev->ethtool_ops->get_rxfh(dev, indir, hkey, &dev_hfunc);
1264 if (ret)
1265 goto out;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301266
Eyal Perry892311f2014-12-02 18:12:10 +02001267 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, hfunc),
1268 &dev_hfunc, sizeof(rxfh.hfunc))) {
1269 ret = -EFAULT;
1270 } else if (copy_to_user(useraddr +
1271 offsetof(struct ethtool_rxfh, rss_config[0]),
1272 rss_config, total_size)) {
1273 ret = -EFAULT;
1274 }
1275out:
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301276 kfree(rss_config);
1277
1278 return ret;
1279}
1280
1281static noinline_for_stack int ethtool_set_rxfh(struct net_device *dev,
1282 void __user *useraddr)
1283{
1284 int ret;
1285 const struct ethtool_ops *ops = dev->ethtool_ops;
1286 struct ethtool_rxnfc rx_rings;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001287 struct ethtool_rxfh rxfh;
1288 u32 dev_indir_size = 0, dev_key_size = 0, i;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301289 u32 *indir = NULL, indir_bytes = 0;
1290 u8 *hkey = NULL;
1291 u8 *rss_config;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301292 u32 rss_cfg_offset = offsetof(struct ethtool_rxfh, rss_config[0]);
1293
Eyal Perry892311f2014-12-02 18:12:10 +02001294 if (!ops->get_rxnfc || !ops->set_rxfh)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301295 return -EOPNOTSUPP;
1296
1297 if (ops->get_rxfh_indir_size)
1298 dev_indir_size = ops->get_rxfh_indir_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301299 if (ops->get_rxfh_key_size)
Dan Carpenterd340c862015-02-20 13:54:05 +03001300 dev_key_size = ops->get_rxfh_key_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301301
Ben Hutchingsf062a382014-05-15 16:28:07 +01001302 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301303 return -EFAULT;
1304
Ben Hutchingsf062a382014-05-15 16:28:07 +01001305 /* Check that reserved fields are 0 for now */
Eyal Perry892311f2014-12-02 18:12:10 +02001306 if (rxfh.rss_context || rxfh.rsvd8[0] || rxfh.rsvd8[1] ||
1307 rxfh.rsvd8[2] || rxfh.rsvd32)
Ben Hutchingsf062a382014-05-15 16:28:07 +01001308 return -EINVAL;
1309
Eyal Perry892311f2014-12-02 18:12:10 +02001310 /* If either indir, hash key or function is valid, proceed further.
1311 * Must request at least one change: indir size, hash key or function.
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301312 */
Ben Hutchingsf062a382014-05-15 16:28:07 +01001313 if ((rxfh.indir_size &&
1314 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE &&
1315 rxfh.indir_size != dev_indir_size) ||
1316 (rxfh.key_size && (rxfh.key_size != dev_key_size)) ||
1317 (rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE &&
Eyal Perry892311f2014-12-02 18:12:10 +02001318 rxfh.key_size == 0 && rxfh.hfunc == ETH_RSS_HASH_NO_CHANGE))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301319 return -EINVAL;
1320
Ben Hutchingsf062a382014-05-15 16:28:07 +01001321 if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301322 indir_bytes = dev_indir_size * sizeof(indir[0]);
1323
Ben Hutchingsf062a382014-05-15 16:28:07 +01001324 rss_config = kzalloc(indir_bytes + rxfh.key_size, GFP_USER);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301325 if (!rss_config)
1326 return -ENOMEM;
1327
1328 rx_rings.cmd = ETHTOOL_GRXRINGS;
1329 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
1330 if (ret)
1331 goto out;
1332
Ben Hutchingsf062a382014-05-15 16:28:07 +01001333 /* rxfh.indir_size == 0 means reset the indir table to default.
1334 * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301335 */
Ben Hutchingsf062a382014-05-15 16:28:07 +01001336 if (rxfh.indir_size &&
1337 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301338 indir = (u32 *)rss_config;
1339 ret = ethtool_copy_validate_indir(indir,
1340 useraddr + rss_cfg_offset,
1341 &rx_rings,
Ben Hutchingsf062a382014-05-15 16:28:07 +01001342 rxfh.indir_size);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301343 if (ret)
1344 goto out;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001345 } else if (rxfh.indir_size == 0) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301346 indir = (u32 *)rss_config;
1347 for (i = 0; i < dev_indir_size; i++)
1348 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1349 }
1350
Ben Hutchingsf062a382014-05-15 16:28:07 +01001351 if (rxfh.key_size) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301352 hkey = rss_config + indir_bytes;
1353 if (copy_from_user(hkey,
1354 useraddr + rss_cfg_offset + indir_bytes,
Ben Hutchingsf062a382014-05-15 16:28:07 +01001355 rxfh.key_size)) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301356 ret = -EFAULT;
1357 goto out;
1358 }
1359 }
1360
Eyal Perry892311f2014-12-02 18:12:10 +02001361 ret = ops->set_rxfh(dev, indir, hkey, rxfh.hfunc);
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001362 if (ret)
1363 goto out;
1364
1365 /* indicate whether rxfh was set to default */
1366 if (rxfh.indir_size == 0)
1367 dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1368 else if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
1369 dev->priv_flags |= IFF_RXFH_CONFIGURED;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301370
1371out:
1372 kfree(rss_config);
1373 return ret;
1374}
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
1377{
1378 struct ethtool_regs regs;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001379 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 void *regbuf;
1381 int reglen, ret;
1382
1383 if (!ops->get_regs || !ops->get_regs_len)
1384 return -EOPNOTSUPP;
1385
1386 if (copy_from_user(&regs, useraddr, sizeof(regs)))
1387 return -EFAULT;
1388
1389 reglen = ops->get_regs_len(dev);
Yunsheng Linb9d3bd82018-12-26 19:51:46 +08001390 if (reglen <= 0)
1391 return reglen;
1392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 if (regs.len > reglen)
1394 regs.len = reglen;
1395
Stanislaw Gruszka2fba4f52017-05-23 21:53:59 -04001396 regbuf = NULL;
1397 if (reglen) {
1398 regbuf = vzalloc(reglen);
1399 if (!regbuf)
1400 return -ENOMEM;
1401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Vivien Didelot66b835e2019-06-03 16:57:13 -04001403 if (regs.len < reglen)
1404 reglen = regs.len;
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 ops->get_regs(dev, &regs, regbuf);
1407
1408 ret = -EFAULT;
1409 if (copy_to_user(useraddr, &regs, sizeof(regs)))
1410 goto out;
1411 useraddr += offsetof(struct ethtool_regs, data);
Vivien Didelot66b835e2019-06-03 16:57:13 -04001412 if (copy_to_user(useraddr, regbuf, reglen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 goto out;
1414 ret = 0;
1415
1416 out:
Ben Hutchingsa77f5db2010-09-20 08:42:17 +00001417 vfree(regbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 return ret;
1419}
1420
Ben Hutchingsd73d3a82009-10-05 10:59:58 +00001421static int ethtool_reset(struct net_device *dev, char __user *useraddr)
1422{
1423 struct ethtool_value reset;
1424 int ret;
1425
1426 if (!dev->ethtool_ops->reset)
1427 return -EOPNOTSUPP;
1428
1429 if (copy_from_user(&reset, useraddr, sizeof(reset)))
1430 return -EFAULT;
1431
1432 ret = dev->ethtool_ops->reset(dev, &reset.data);
1433 if (ret)
1434 return ret;
1435
1436 if (copy_to_user(useraddr, &reset, sizeof(reset)))
1437 return -EFAULT;
1438 return 0;
1439}
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
1442{
zhanglin7b441b22019-10-26 15:54:16 +08001443 struct ethtool_wolinfo wol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445 if (!dev->ethtool_ops->get_wol)
1446 return -EOPNOTSUPP;
1447
zhanglin7b441b22019-10-26 15:54:16 +08001448 memset(&wol, 0, sizeof(struct ethtool_wolinfo));
1449 wol.cmd = ETHTOOL_GWOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 dev->ethtool_ops->get_wol(dev, &wol);
1451
1452 if (copy_to_user(useraddr, &wol, sizeof(wol)))
1453 return -EFAULT;
1454 return 0;
1455}
1456
1457static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
1458{
1459 struct ethtool_wolinfo wol;
1460
1461 if (!dev->ethtool_ops->set_wol)
1462 return -EOPNOTSUPP;
1463
1464 if (copy_from_user(&wol, useraddr, sizeof(wol)))
1465 return -EFAULT;
1466
1467 return dev->ethtool_ops->set_wol(dev, &wol);
1468}
1469
Yuval Mintz80f12ec2012-06-06 17:13:06 +00001470static int ethtool_get_eee(struct net_device *dev, char __user *useraddr)
1471{
1472 struct ethtool_eee edata;
1473 int rc;
1474
1475 if (!dev->ethtool_ops->get_eee)
1476 return -EOPNOTSUPP;
1477
1478 memset(&edata, 0, sizeof(struct ethtool_eee));
1479 edata.cmd = ETHTOOL_GEEE;
1480 rc = dev->ethtool_ops->get_eee(dev, &edata);
1481
1482 if (rc)
1483 return rc;
1484
1485 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1486 return -EFAULT;
1487
1488 return 0;
1489}
1490
1491static int ethtool_set_eee(struct net_device *dev, char __user *useraddr)
1492{
1493 struct ethtool_eee edata;
1494
1495 if (!dev->ethtool_ops->set_eee)
1496 return -EOPNOTSUPP;
1497
1498 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1499 return -EFAULT;
1500
1501 return dev->ethtool_ops->set_eee(dev, &edata);
1502}
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504static int ethtool_nway_reset(struct net_device *dev)
1505{
1506 if (!dev->ethtool_ops->nway_reset)
1507 return -EOPNOTSUPP;
1508
1509 return dev->ethtool_ops->nway_reset(dev);
1510}
1511
Ben Hutchingse596e6e2010-12-09 12:08:35 +00001512static int ethtool_get_link(struct net_device *dev, char __user *useraddr)
1513{
1514 struct ethtool_value edata = { .cmd = ETHTOOL_GLINK };
1515
1516 if (!dev->ethtool_ops->get_link)
1517 return -EOPNOTSUPP;
1518
1519 edata.data = netif_running(dev) && dev->ethtool_ops->get_link(dev);
1520
1521 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1522 return -EFAULT;
1523 return 0;
1524}
1525
Ben Hutchings081d0942012-04-12 00:42:12 +00001526static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr,
1527 int (*getter)(struct net_device *,
1528 struct ethtool_eeprom *, u8 *),
1529 u32 total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
1531 struct ethtool_eeprom eeprom;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001532 void __user *userbuf = useraddr + sizeof(eeprom);
1533 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 u8 *data;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001535 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1538 return -EFAULT;
1539
1540 /* Check for wrap and zero */
1541 if (eeprom.offset + eeprom.len <= eeprom.offset)
1542 return -EINVAL;
1543
1544 /* Check for exceeding total eeprom len */
Ben Hutchings081d0942012-04-12 00:42:12 +00001545 if (eeprom.offset + eeprom.len > total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 return -EINVAL;
1547
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001548 data = kmalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (!data)
1550 return -ENOMEM;
1551
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001552 bytes_remaining = eeprom.len;
1553 while (bytes_remaining > 0) {
1554 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Ben Hutchings081d0942012-04-12 00:42:12 +00001556 ret = getter(dev, &eeprom, data);
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001557 if (ret)
1558 break;
1559 if (copy_to_user(userbuf, data, eeprom.len)) {
1560 ret = -EFAULT;
1561 break;
1562 }
1563 userbuf += eeprom.len;
1564 eeprom.offset += eeprom.len;
1565 bytes_remaining -= eeprom.len;
1566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Mandeep Singh Bainesc5835df2008-04-24 20:55:56 -07001568 eeprom.len = userbuf - (useraddr + sizeof(eeprom));
1569 eeprom.offset -= eeprom.len;
1570 if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
1571 ret = -EFAULT;
1572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 kfree(data);
1574 return ret;
1575}
1576
Ben Hutchings081d0942012-04-12 00:42:12 +00001577static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
1578{
1579 const struct ethtool_ops *ops = dev->ethtool_ops;
1580
Guenter Roecke0fb6fb2014-10-30 20:50:15 -07001581 if (!ops->get_eeprom || !ops->get_eeprom_len ||
1582 !ops->get_eeprom_len(dev))
Ben Hutchings081d0942012-04-12 00:42:12 +00001583 return -EOPNOTSUPP;
1584
1585 return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom,
1586 ops->get_eeprom_len(dev));
1587}
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
1590{
1591 struct ethtool_eeprom eeprom;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001592 const struct ethtool_ops *ops = dev->ethtool_ops;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001593 void __user *userbuf = useraddr + sizeof(eeprom);
1594 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 u8 *data;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001596 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Guenter Roecke0fb6fb2014-10-30 20:50:15 -07001598 if (!ops->set_eeprom || !ops->get_eeprom_len ||
1599 !ops->get_eeprom_len(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 return -EOPNOTSUPP;
1601
1602 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1603 return -EFAULT;
1604
1605 /* Check for wrap and zero */
1606 if (eeprom.offset + eeprom.len <= eeprom.offset)
1607 return -EINVAL;
1608
1609 /* Check for exceeding total eeprom len */
1610 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
1611 return -EINVAL;
1612
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001613 data = kmalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 if (!data)
1615 return -ENOMEM;
1616
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001617 bytes_remaining = eeprom.len;
1618 while (bytes_remaining > 0) {
1619 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001621 if (copy_from_user(data, userbuf, eeprom.len)) {
1622 ret = -EFAULT;
1623 break;
1624 }
1625 ret = ops->set_eeprom(dev, &eeprom, data);
1626 if (ret)
1627 break;
1628 userbuf += eeprom.len;
1629 eeprom.offset += eeprom.len;
1630 bytes_remaining -= eeprom.len;
1631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 kfree(data);
1634 return ret;
1635}
1636
chavey97f8aef2010-04-07 21:54:42 -07001637static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
1638 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
Roland Dreier8e557422010-02-11 12:14:23 -08001640 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
1642 if (!dev->ethtool_ops->get_coalesce)
1643 return -EOPNOTSUPP;
1644
1645 dev->ethtool_ops->get_coalesce(dev, &coalesce);
1646
1647 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
1648 return -EFAULT;
1649 return 0;
1650}
1651
chavey97f8aef2010-04-07 21:54:42 -07001652static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
1653 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654{
1655 struct ethtool_coalesce coalesce;
1656
David S. Millerfa04ae52005-06-06 15:07:19 -07001657 if (!dev->ethtool_ops->set_coalesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 return -EOPNOTSUPP;
1659
1660 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
1661 return -EFAULT;
1662
1663 return dev->ethtool_ops->set_coalesce(dev, &coalesce);
1664}
1665
1666static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
1667{
Roland Dreier8e557422010-02-11 12:14:23 -08001668 struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 if (!dev->ethtool_ops->get_ringparam)
1671 return -EOPNOTSUPP;
1672
1673 dev->ethtool_ops->get_ringparam(dev, &ringparam);
1674
1675 if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
1676 return -EFAULT;
1677 return 0;
1678}
1679
1680static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
1681{
1682 struct ethtool_ringparam ringparam;
1683
1684 if (!dev->ethtool_ops->set_ringparam)
1685 return -EOPNOTSUPP;
1686
1687 if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
1688 return -EFAULT;
1689
1690 return dev->ethtool_ops->set_ringparam(dev, &ringparam);
1691}
1692
amit salecha8b5933c2011-04-07 01:58:42 +00001693static noinline_for_stack int ethtool_get_channels(struct net_device *dev,
1694 void __user *useraddr)
1695{
1696 struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
1697
1698 if (!dev->ethtool_ops->get_channels)
1699 return -EOPNOTSUPP;
1700
1701 dev->ethtool_ops->get_channels(dev, &channels);
1702
1703 if (copy_to_user(useraddr, &channels, sizeof(channels)))
1704 return -EFAULT;
1705 return 0;
1706}
1707
1708static noinline_for_stack int ethtool_set_channels(struct net_device *dev,
1709 void __user *useraddr)
1710{
Eran Ben Elisha5dcd0852017-01-17 19:19:17 +02001711 struct ethtool_channels channels, max = { .cmd = ETHTOOL_GCHANNELS };
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001712 u32 max_rx_in_use = 0;
amit salecha8b5933c2011-04-07 01:58:42 +00001713
Keller, Jacob E8bf36862016-02-08 16:05:04 -08001714 if (!dev->ethtool_ops->set_channels || !dev->ethtool_ops->get_channels)
amit salecha8b5933c2011-04-07 01:58:42 +00001715 return -EOPNOTSUPP;
1716
1717 if (copy_from_user(&channels, useraddr, sizeof(channels)))
1718 return -EFAULT;
1719
Keller, Jacob E8bf36862016-02-08 16:05:04 -08001720 dev->ethtool_ops->get_channels(dev, &max);
1721
1722 /* ensure new counts are within the maximums */
1723 if ((channels.rx_count > max.max_rx) ||
1724 (channels.tx_count > max.max_tx) ||
1725 (channels.combined_count > max.max_combined) ||
1726 (channels.other_count > max.max_other))
1727 return -EINVAL;
1728
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001729 /* ensure the new Rx count fits within the configured Rx flow
1730 * indirection table settings */
1731 if (netif_is_rxfh_configured(dev) &&
1732 !ethtool_get_max_rxfh_channel(dev, &max_rx_in_use) &&
1733 (channels.combined_count + channels.rx_count) <= max_rx_in_use)
1734 return -EINVAL;
1735
amit salecha8b5933c2011-04-07 01:58:42 +00001736 return dev->ethtool_ops->set_channels(dev, &channels);
1737}
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
1740{
1741 struct ethtool_pauseparam pauseparam = { ETHTOOL_GPAUSEPARAM };
1742
1743 if (!dev->ethtool_ops->get_pauseparam)
1744 return -EOPNOTSUPP;
1745
1746 dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
1747
1748 if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
1749 return -EFAULT;
1750 return 0;
1751}
1752
1753static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
1754{
1755 struct ethtool_pauseparam pauseparam;
1756
Jeff Garzike1b90c42006-07-17 12:54:40 -04001757 if (!dev->ethtool_ops->set_pauseparam)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 return -EOPNOTSUPP;
1759
1760 if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
1761 return -EFAULT;
1762
1763 return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
1764}
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
1767{
1768 struct ethtool_test test;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001769 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -07001771 int ret, test_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001773 if (!ops->self_test || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -07001774 return -EOPNOTSUPP;
1775
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001776 test_len = ops->get_sset_count(dev, ETH_SS_TEST);
Jeff Garzikff03d492007-08-15 16:01:08 -07001777 if (test_len < 0)
1778 return test_len;
1779 WARN_ON(test_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 if (copy_from_user(&test, useraddr, sizeof(test)))
1782 return -EFAULT;
1783
Jeff Garzikff03d492007-08-15 16:01:08 -07001784 test.len = test_len;
1785 data = kmalloc(test_len * sizeof(u64), GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 if (!data)
1787 return -ENOMEM;
1788
1789 ops->self_test(dev, &test, data);
1790
1791 ret = -EFAULT;
1792 if (copy_to_user(useraddr, &test, sizeof(test)))
1793 goto out;
1794 useraddr += sizeof(test);
1795 if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
1796 goto out;
1797 ret = 0;
1798
1799 out:
1800 kfree(data);
1801 return ret;
1802}
1803
1804static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
1805{
1806 struct ethtool_gstrings gstrings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 u8 *data;
1808 int ret;
1809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
1811 return -EFAULT;
1812
Michał Mirosław340ae162011-02-15 16:59:16 +00001813 ret = __ethtool_get_sset_count(dev, gstrings.string_set);
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001814 if (ret < 0)
1815 return ret;
Jeff Garzikff03d492007-08-15 16:01:08 -07001816
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001817 gstrings.len = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Li RongQing77b924d2019-03-29 09:18:02 +08001819 if (gstrings.len) {
1820 data = kcalloc(gstrings.len, ETH_GSTRING_LEN, GFP_USER);
1821 if (!data)
1822 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Li RongQing77b924d2019-03-29 09:18:02 +08001824 __ethtool_get_strings(dev, gstrings.string_set, data);
1825 } else {
1826 data = NULL;
1827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 ret = -EFAULT;
1830 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
1831 goto out;
1832 useraddr += sizeof(gstrings);
Li RongQing77b924d2019-03-29 09:18:02 +08001833 if (gstrings.len &&
1834 copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 goto out;
1836 ret = 0;
1837
Michał Mirosław340ae162011-02-15 16:59:16 +00001838out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 kfree(data);
1840 return ret;
1841}
1842
1843static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
1844{
1845 struct ethtool_value id;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001846 static bool busy;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001847 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001848 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001850 if (!ops->set_phys_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 return -EOPNOTSUPP;
1852
Ben Hutchings68f512f2011-04-02 00:35:15 +01001853 if (busy)
1854 return -EBUSY;
1855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 if (copy_from_user(&id, useraddr, sizeof(id)))
1857 return -EFAULT;
1858
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001859 rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE);
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001860 if (rc < 0)
Ben Hutchings68f512f2011-04-02 00:35:15 +01001861 return rc;
1862
1863 /* Drop the RTNL lock while waiting, but prevent reentry or
1864 * removal of the device.
1865 */
1866 busy = true;
1867 dev_hold(dev);
1868 rtnl_unlock();
1869
1870 if (rc == 0) {
1871 /* Driver will handle this itself */
1872 schedule_timeout_interruptible(
Allan, Bruce W143780c2011-04-11 13:01:59 +00001873 id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001874 } else {
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001875 /* Driver expects to be called at twice the frequency in rc */
1876 int n = rc * 2, i, interval = HZ / n;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001877
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001878 /* Count down seconds */
1879 do {
1880 /* Count down iterations per second */
1881 i = n;
1882 do {
1883 rtnl_lock();
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001884 rc = ops->set_phys_id(dev,
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001885 (i & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON);
1886 rtnl_unlock();
1887 if (rc)
1888 break;
1889 schedule_timeout_interruptible(interval);
1890 } while (!signal_pending(current) && --i != 0);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001891 } while (!signal_pending(current) &&
1892 (id.data == 0 || --id.data != 0));
1893 }
1894
1895 rtnl_lock();
1896 dev_put(dev);
1897 busy = false;
1898
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001899 (void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001900 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901}
1902
1903static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
1904{
1905 struct ethtool_stats stats;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001906 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -07001908 int ret, n_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001910 if (!ops->get_ethtool_stats || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -07001911 return -EOPNOTSUPP;
1912
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001913 n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
Jeff Garzikff03d492007-08-15 16:01:08 -07001914 if (n_stats < 0)
1915 return n_stats;
1916 WARN_ON(n_stats == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
1918 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1919 return -EFAULT;
1920
Jeff Garzikff03d492007-08-15 16:01:08 -07001921 stats.n_stats = n_stats;
Li RongQing77b924d2019-03-29 09:18:02 +08001922 if (n_stats) {
1923 data = kmalloc(n_stats * sizeof(u64), GFP_USER);
1924 if (!data)
1925 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Li RongQing77b924d2019-03-29 09:18:02 +08001927 ops->get_ethtool_stats(dev, &stats, data);
1928 } else {
1929 data = NULL;
1930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 ret = -EFAULT;
1933 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1934 goto out;
1935 useraddr += sizeof(stats);
Li RongQing77b924d2019-03-29 09:18:02 +08001936 if (n_stats && copy_to_user(useraddr, data, n_stats * sizeof(u64)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 goto out;
1938 ret = 0;
1939
1940 out:
1941 kfree(data);
1942 return ret;
1943}
1944
Andrew Lunnf3a40942015-12-30 16:28:25 +01001945static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr)
1946{
1947 struct ethtool_stats stats;
1948 struct phy_device *phydev = dev->phydev;
1949 u64 *data;
1950 int ret, n_stats;
1951
1952 if (!phydev)
1953 return -EOPNOTSUPP;
1954
1955 n_stats = phy_get_sset_count(phydev);
1956
1957 if (n_stats < 0)
1958 return n_stats;
1959 WARN_ON(n_stats == 0);
1960
1961 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1962 return -EFAULT;
1963
1964 stats.n_stats = n_stats;
Li RongQing77b924d2019-03-29 09:18:02 +08001965 if (n_stats) {
1966 data = kmalloc_array(n_stats, sizeof(u64), GFP_USER);
1967 if (!data)
1968 return -ENOMEM;
Andrew Lunnf3a40942015-12-30 16:28:25 +01001969
Li RongQing77b924d2019-03-29 09:18:02 +08001970 mutex_lock(&phydev->lock);
1971 phydev->drv->get_stats(phydev, &stats, data);
1972 mutex_unlock(&phydev->lock);
1973 } else {
1974 data = NULL;
1975 }
Andrew Lunnf3a40942015-12-30 16:28:25 +01001976
1977 ret = -EFAULT;
1978 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1979 goto out;
1980 useraddr += sizeof(stats);
Li RongQing77b924d2019-03-29 09:18:02 +08001981 if (n_stats && copy_to_user(useraddr, data, n_stats * sizeof(u64)))
Andrew Lunnf3a40942015-12-30 16:28:25 +01001982 goto out;
1983 ret = 0;
1984
1985 out:
1986 kfree(data);
1987 return ret;
1988}
1989
viro@ftp.linux.org.uk0bf0519d2005-09-05 03:26:18 +01001990static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
Jon Wetzela6f9a702005-08-20 17:15:54 -07001991{
1992 struct ethtool_perm_addr epaddr;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001993
Matthew Wilcox313674a2007-07-31 14:00:29 -07001994 if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
Jon Wetzela6f9a702005-08-20 17:15:54 -07001995 return -EFAULT;
1996
Matthew Wilcox313674a2007-07-31 14:00:29 -07001997 if (epaddr.size < dev->addr_len)
1998 return -ETOOSMALL;
1999 epaddr.size = dev->addr_len;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002000
Jon Wetzela6f9a702005-08-20 17:15:54 -07002001 if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
Matthew Wilcox313674a2007-07-31 14:00:29 -07002002 return -EFAULT;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002003 useraddr += sizeof(epaddr);
Matthew Wilcox313674a2007-07-31 14:00:29 -07002004 if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
2005 return -EFAULT;
2006 return 0;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002007}
2008
Jeff Garzik13c99b22007-08-15 16:01:56 -07002009static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
2010 u32 cmd, u32 (*actor)(struct net_device *))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002011{
Roland Dreier8e557422010-02-11 12:14:23 -08002012 struct ethtool_value edata = { .cmd = cmd };
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002013
Jeff Garzik13c99b22007-08-15 16:01:56 -07002014 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002015 return -EOPNOTSUPP;
2016
Jeff Garzik13c99b22007-08-15 16:01:56 -07002017 edata.data = actor(dev);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002018
2019 if (copy_to_user(useraddr, &edata, sizeof(edata)))
2020 return -EFAULT;
2021 return 0;
2022}
2023
Jeff Garzik13c99b22007-08-15 16:01:56 -07002024static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
2025 void (*actor)(struct net_device *, u32))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002026{
2027 struct ethtool_value edata;
2028
Jeff Garzik13c99b22007-08-15 16:01:56 -07002029 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002030 return -EOPNOTSUPP;
2031
2032 if (copy_from_user(&edata, useraddr, sizeof(edata)))
2033 return -EFAULT;
2034
Jeff Garzik13c99b22007-08-15 16:01:56 -07002035 actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07002036 return 0;
2037}
2038
Jeff Garzik13c99b22007-08-15 16:01:56 -07002039static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
2040 int (*actor)(struct net_device *, u32))
Jeff Garzik339bf022007-08-15 16:01:32 -07002041{
2042 struct ethtool_value edata;
2043
Jeff Garzik13c99b22007-08-15 16:01:56 -07002044 if (!actor)
Jeff Garzik339bf022007-08-15 16:01:32 -07002045 return -EOPNOTSUPP;
2046
2047 if (copy_from_user(&edata, useraddr, sizeof(edata)))
2048 return -EFAULT;
2049
Jeff Garzik13c99b22007-08-15 16:01:56 -07002050 return actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07002051}
2052
chavey97f8aef2010-04-07 21:54:42 -07002053static noinline_for_stack int ethtool_flash_device(struct net_device *dev,
2054 char __user *useraddr)
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00002055{
2056 struct ethtool_flash efl;
2057
2058 if (copy_from_user(&efl, useraddr, sizeof(efl)))
2059 return -EFAULT;
2060
2061 if (!dev->ethtool_ops->flash_device)
2062 return -EOPNOTSUPP;
2063
Ben Hutchings786f5282012-02-01 09:32:25 +00002064 efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0;
2065
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00002066 return dev->ethtool_ops->flash_device(dev, &efl);
2067}
2068
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002069static int ethtool_set_dump(struct net_device *dev,
2070 void __user *useraddr)
2071{
2072 struct ethtool_dump dump;
2073
2074 if (!dev->ethtool_ops->set_dump)
2075 return -EOPNOTSUPP;
2076
2077 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2078 return -EFAULT;
2079
2080 return dev->ethtool_ops->set_dump(dev, &dump);
2081}
2082
2083static int ethtool_get_dump_flag(struct net_device *dev,
2084 void __user *useraddr)
2085{
2086 int ret;
2087 struct ethtool_dump dump;
2088 const struct ethtool_ops *ops = dev->ethtool_ops;
2089
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00002090 if (!ops->get_dump_flag)
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002091 return -EOPNOTSUPP;
2092
2093 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2094 return -EFAULT;
2095
2096 ret = ops->get_dump_flag(dev, &dump);
2097 if (ret)
2098 return ret;
2099
2100 if (copy_to_user(useraddr, &dump, sizeof(dump)))
2101 return -EFAULT;
2102 return 0;
2103}
2104
2105static int ethtool_get_dump_data(struct net_device *dev,
2106 void __user *useraddr)
2107{
2108 int ret;
2109 __u32 len;
2110 struct ethtool_dump dump, tmp;
2111 const struct ethtool_ops *ops = dev->ethtool_ops;
2112 void *data = NULL;
2113
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00002114 if (!ops->get_dump_data || !ops->get_dump_flag)
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002115 return -EOPNOTSUPP;
2116
2117 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2118 return -EFAULT;
2119
2120 memset(&tmp, 0, sizeof(tmp));
2121 tmp.cmd = ETHTOOL_GET_DUMP_FLAG;
2122 ret = ops->get_dump_flag(dev, &tmp);
2123 if (ret)
2124 return ret;
2125
Michal Schmidtc590b5e2013-07-01 17:23:30 +02002126 len = min(tmp.len, dump.len);
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002127 if (!len)
2128 return -EFAULT;
2129
Michal Schmidtc590b5e2013-07-01 17:23:30 +02002130 /* Don't ever let the driver think there's more space available
2131 * than it requested with .get_dump_flag().
2132 */
2133 dump.len = len;
2134
2135 /* Always allocate enough space to hold the whole thing so that the
2136 * driver does not need to check the length and bother with partial
2137 * dumping.
2138 */
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002139 data = vzalloc(tmp.len);
2140 if (!data)
2141 return -ENOMEM;
2142 ret = ops->get_dump_data(dev, &dump, data);
2143 if (ret)
2144 goto out;
2145
Michal Schmidtc590b5e2013-07-01 17:23:30 +02002146 /* There are two sane possibilities:
2147 * 1. The driver's .get_dump_data() does not touch dump.len.
2148 * 2. Or it may set dump.len to how much it really writes, which
2149 * should be tmp.len (or len if it can do a partial dump).
2150 * In any case respond to userspace with the actual length of data
2151 * it's receiving.
2152 */
2153 WARN_ON(dump.len != len && dump.len != tmp.len);
2154 dump.len = len;
2155
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002156 if (copy_to_user(useraddr, &dump, sizeof(dump))) {
2157 ret = -EFAULT;
2158 goto out;
2159 }
2160 useraddr += offsetof(struct ethtool_dump, data);
2161 if (copy_to_user(useraddr, data, len))
2162 ret = -EFAULT;
2163out:
2164 vfree(data);
2165 return ret;
2166}
2167
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002168static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr)
2169{
2170 int err = 0;
2171 struct ethtool_ts_info info;
2172 const struct ethtool_ops *ops = dev->ethtool_ops;
2173 struct phy_device *phydev = dev->phydev;
2174
2175 memset(&info, 0, sizeof(info));
2176 info.cmd = ETHTOOL_GET_TS_INFO;
2177
2178 if (phydev && phydev->drv && phydev->drv->ts_info) {
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002179 err = phydev->drv->ts_info(phydev, &info);
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00002180 } else if (ops->get_ts_info) {
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002181 err = ops->get_ts_info(dev, &info);
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002182 } else {
2183 info.so_timestamping =
2184 SOF_TIMESTAMPING_RX_SOFTWARE |
2185 SOF_TIMESTAMPING_SOFTWARE;
2186 info.phc_index = -1;
2187 }
2188
2189 if (err)
2190 return err;
2191
2192 if (copy_to_user(useraddr, &info, sizeof(info)))
2193 err = -EFAULT;
2194
2195 return err;
2196}
2197
Ed Swierk2f438362015-01-02 17:27:56 -08002198static int __ethtool_get_module_info(struct net_device *dev,
2199 struct ethtool_modinfo *modinfo)
2200{
2201 const struct ethtool_ops *ops = dev->ethtool_ops;
2202 struct phy_device *phydev = dev->phydev;
2203
2204 if (phydev && phydev->drv && phydev->drv->module_info)
2205 return phydev->drv->module_info(phydev, modinfo);
2206
2207 if (ops->get_module_info)
2208 return ops->get_module_info(dev, modinfo);
2209
2210 return -EOPNOTSUPP;
2211}
2212
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002213static int ethtool_get_module_info(struct net_device *dev,
2214 void __user *useraddr)
2215{
2216 int ret;
2217 struct ethtool_modinfo modinfo;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002218
2219 if (copy_from_user(&modinfo, useraddr, sizeof(modinfo)))
2220 return -EFAULT;
2221
Ed Swierk2f438362015-01-02 17:27:56 -08002222 ret = __ethtool_get_module_info(dev, &modinfo);
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002223 if (ret)
2224 return ret;
2225
2226 if (copy_to_user(useraddr, &modinfo, sizeof(modinfo)))
2227 return -EFAULT;
2228
2229 return 0;
2230}
2231
Ed Swierk2f438362015-01-02 17:27:56 -08002232static int __ethtool_get_module_eeprom(struct net_device *dev,
2233 struct ethtool_eeprom *ee, u8 *data)
2234{
2235 const struct ethtool_ops *ops = dev->ethtool_ops;
2236 struct phy_device *phydev = dev->phydev;
2237
2238 if (phydev && phydev->drv && phydev->drv->module_eeprom)
2239 return phydev->drv->module_eeprom(phydev, ee, data);
2240
2241 if (ops->get_module_eeprom)
2242 return ops->get_module_eeprom(dev, ee, data);
2243
2244 return -EOPNOTSUPP;
2245}
2246
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002247static int ethtool_get_module_eeprom(struct net_device *dev,
2248 void __user *useraddr)
2249{
2250 int ret;
2251 struct ethtool_modinfo modinfo;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002252
Ed Swierk2f438362015-01-02 17:27:56 -08002253 ret = __ethtool_get_module_info(dev, &modinfo);
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002254 if (ret)
2255 return ret;
2256
Ed Swierk2f438362015-01-02 17:27:56 -08002257 return ethtool_get_any_eeprom(dev, useraddr,
2258 __ethtool_get_module_eeprom,
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002259 modinfo.eeprom_len);
2260}
2261
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302262static int ethtool_tunable_valid(const struct ethtool_tunable *tuna)
2263{
2264 switch (tuna->id) {
2265 case ETHTOOL_RX_COPYBREAK:
Eric Dumazet1255a502014-10-05 12:35:21 +03002266 case ETHTOOL_TX_COPYBREAK:
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302267 if (tuna->len != sizeof(u32) ||
2268 tuna->type_id != ETHTOOL_TUNABLE_U32)
2269 return -EINVAL;
2270 break;
2271 default:
2272 return -EINVAL;
2273 }
2274
2275 return 0;
2276}
2277
2278static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr)
2279{
2280 int ret;
2281 struct ethtool_tunable tuna;
2282 const struct ethtool_ops *ops = dev->ethtool_ops;
2283 void *data;
2284
2285 if (!ops->get_tunable)
2286 return -EOPNOTSUPP;
2287 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2288 return -EFAULT;
2289 ret = ethtool_tunable_valid(&tuna);
2290 if (ret)
2291 return ret;
2292 data = kmalloc(tuna.len, GFP_USER);
2293 if (!data)
2294 return -ENOMEM;
2295 ret = ops->get_tunable(dev, &tuna, data);
2296 if (ret)
2297 goto out;
2298 useraddr += sizeof(tuna);
2299 ret = -EFAULT;
2300 if (copy_to_user(useraddr, data, tuna.len))
2301 goto out;
2302 ret = 0;
2303
2304out:
2305 kfree(data);
2306 return ret;
2307}
2308
2309static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr)
2310{
2311 int ret;
2312 struct ethtool_tunable tuna;
2313 const struct ethtool_ops *ops = dev->ethtool_ops;
2314 void *data;
2315
2316 if (!ops->set_tunable)
2317 return -EOPNOTSUPP;
2318 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2319 return -EFAULT;
2320 ret = ethtool_tunable_valid(&tuna);
2321 if (ret)
2322 return ret;
2323 data = kmalloc(tuna.len, GFP_USER);
2324 if (!data)
2325 return -ENOMEM;
2326 useraddr += sizeof(tuna);
2327 ret = -EFAULT;
2328 if (copy_from_user(data, useraddr, tuna.len))
2329 goto out;
2330 ret = ops->set_tunable(dev, &tuna, data);
2331
2332out:
2333 kfree(data);
2334 return ret;
2335}
2336
Tejaswi Tanikella0c955d22018-04-23 13:21:02 +05302337static noinline_for_stack
2338int ethtool_get_per_queue_coalesce(struct net_device *dev,
2339 void __user *useraddr,
2340 struct ethtool_per_queue_op *per_queue_opt)
Kan Liang421797b2016-02-19 09:24:02 -05002341{
2342 u32 bit;
2343 int ret;
2344 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2345
2346 if (!dev->ethtool_ops->get_per_queue_coalesce)
2347 return -EOPNOTSUPP;
2348
2349 useraddr += sizeof(*per_queue_opt);
2350
2351 bitmap_from_u32array(queue_mask,
2352 MAX_NUM_QUEUE,
2353 per_queue_opt->queue_mask,
2354 DIV_ROUND_UP(MAX_NUM_QUEUE, 32));
2355
2356 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2357 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
2358
2359 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, &coalesce);
2360 if (ret != 0)
2361 return ret;
2362 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
2363 return -EFAULT;
2364 useraddr += sizeof(coalesce);
2365 }
2366
2367 return 0;
2368}
2369
Tejaswi Tanikella0c955d22018-04-23 13:21:02 +05302370static noinline_for_stack
2371int ethtool_set_per_queue_coalesce(struct net_device *dev,
2372 void __user *useraddr,
2373 struct ethtool_per_queue_op *per_queue_opt)
Kan Liangf38d1382016-02-19 09:24:03 -05002374{
2375 u32 bit;
2376 int i, ret = 0;
2377 int n_queue;
2378 struct ethtool_coalesce *backup = NULL, *tmp = NULL;
2379 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2380
2381 if ((!dev->ethtool_ops->set_per_queue_coalesce) ||
2382 (!dev->ethtool_ops->get_per_queue_coalesce))
2383 return -EOPNOTSUPP;
2384
2385 useraddr += sizeof(*per_queue_opt);
2386
2387 bitmap_from_u32array(queue_mask,
2388 MAX_NUM_QUEUE,
2389 per_queue_opt->queue_mask,
2390 DIV_ROUND_UP(MAX_NUM_QUEUE, 32));
2391 n_queue = bitmap_weight(queue_mask, MAX_NUM_QUEUE);
2392 tmp = backup = kmalloc_array(n_queue, sizeof(*backup), GFP_KERNEL);
2393 if (!backup)
2394 return -ENOMEM;
2395
2396 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2397 struct ethtool_coalesce coalesce;
2398
2399 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, tmp);
2400 if (ret != 0)
2401 goto roll_back;
2402
2403 tmp++;
2404
2405 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) {
2406 ret = -EFAULT;
2407 goto roll_back;
2408 }
2409
2410 ret = dev->ethtool_ops->set_per_queue_coalesce(dev, bit, &coalesce);
2411 if (ret != 0)
2412 goto roll_back;
2413
2414 useraddr += sizeof(coalesce);
2415 }
2416
2417roll_back:
2418 if (ret != 0) {
2419 tmp = backup;
2420 for_each_set_bit(i, queue_mask, bit) {
2421 dev->ethtool_ops->set_per_queue_coalesce(dev, i, tmp);
2422 tmp++;
2423 }
2424 }
2425 kfree(backup);
2426
2427 return ret;
2428}
2429
Arnd Bergmannf8f65612019-03-07 16:58:35 +01002430static int noinline_for_stack ethtool_set_per_queue(struct net_device *dev,
Wenwen Wangf0223d12018-10-08 10:49:35 -05002431 void __user *useraddr, u32 sub_cmd)
Kan Liangac2c7ad2016-02-19 09:24:01 -05002432{
2433 struct ethtool_per_queue_op per_queue_opt;
2434
2435 if (copy_from_user(&per_queue_opt, useraddr, sizeof(per_queue_opt)))
2436 return -EFAULT;
2437
Wenwen Wangf0223d12018-10-08 10:49:35 -05002438 if (per_queue_opt.sub_command != sub_cmd)
2439 return -EINVAL;
2440
Kan Liangac2c7ad2016-02-19 09:24:01 -05002441 switch (per_queue_opt.sub_command) {
Kan Liang421797b2016-02-19 09:24:02 -05002442 case ETHTOOL_GCOALESCE:
2443 return ethtool_get_per_queue_coalesce(dev, useraddr, &per_queue_opt);
Kan Liangf38d1382016-02-19 09:24:03 -05002444 case ETHTOOL_SCOALESCE:
2445 return ethtool_set_per_queue_coalesce(dev, useraddr, &per_queue_opt);
Kan Liangac2c7ad2016-02-19 09:24:01 -05002446 default:
2447 return -EOPNOTSUPP;
2448 };
2449}
2450
Yan Burman600fed52013-06-03 02:03:34 +00002451/* The main entry point in this file. Called from net/core/dev_ioctl.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Eric W. Biederman881d9662007-09-17 11:56:21 -07002453int dev_ethtool(struct net *net, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454{
Eric W. Biederman881d9662007-09-17 11:56:21 -07002455 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 void __user *useraddr = ifr->ifr_data;
Kan Liangac2c7ad2016-02-19 09:24:01 -05002457 u32 ethcmd, sub_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 int rc;
Bjørn Morkb29d3142013-05-01 23:06:42 +00002459 netdev_features_t old_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 if (!dev || !netif_device_present(dev))
2462 return -ENODEV;
2463
chavey97f8aef2010-04-07 21:54:42 -07002464 if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 return -EFAULT;
2466
Kan Liangac2c7ad2016-02-19 09:24:01 -05002467 if (ethcmd == ETHTOOL_PERQUEUE) {
2468 if (copy_from_user(&sub_cmd, useraddr + sizeof(ethcmd), sizeof(sub_cmd)))
2469 return -EFAULT;
2470 } else {
2471 sub_cmd = ethcmd;
2472 }
Stephen Hemminger75f31232006-09-28 15:13:37 -07002473 /* Allow some commands to be done by anyone */
Kan Liangac2c7ad2016-02-19 09:24:01 -05002474 switch (sub_cmd) {
stephen hemminger0fdc1002010-08-23 10:24:18 +00002475 case ETHTOOL_GSET:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002476 case ETHTOOL_GDRVINFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002477 case ETHTOOL_GMSGLVL:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002478 case ETHTOOL_GLINK:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002479 case ETHTOOL_GCOALESCE:
2480 case ETHTOOL_GRINGPARAM:
2481 case ETHTOOL_GPAUSEPARAM:
2482 case ETHTOOL_GRXCSUM:
2483 case ETHTOOL_GTXCSUM:
2484 case ETHTOOL_GSG:
Michał Mirosławf80400a2012-01-22 00:20:40 +00002485 case ETHTOOL_GSSET_INFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002486 case ETHTOOL_GSTRINGS:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002487 case ETHTOOL_GSTATS:
Andrew Lunnf3a40942015-12-30 16:28:25 +01002488 case ETHTOOL_GPHYSTATS:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002489 case ETHTOOL_GTSO:
2490 case ETHTOOL_GPERMADDR:
2491 case ETHTOOL_GUFO:
2492 case ETHTOOL_GGSO:
stephen hemminger1cab8192010-02-11 13:48:29 +00002493 case ETHTOOL_GGRO:
Jeff Garzik339bf022007-08-15 16:01:32 -07002494 case ETHTOOL_GFLAGS:
2495 case ETHTOOL_GPFLAGS:
Santwona Behera0853ad62008-07-02 03:47:41 -07002496 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08002497 case ETHTOOL_GRXRINGS:
2498 case ETHTOOL_GRXCLSRLCNT:
2499 case ETHTOOL_GRXCLSRULE:
2500 case ETHTOOL_GRXCLSRLALL:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002501 case ETHTOOL_GRXFHINDIR:
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05302502 case ETHTOOL_GRSSH:
Michał Mirosław5455c692011-02-15 16:59:17 +00002503 case ETHTOOL_GFEATURES:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002504 case ETHTOOL_GCHANNELS:
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002505 case ETHTOOL_GET_TS_INFO:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002506 case ETHTOOL_GEEE:
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302507 case ETHTOOL_GTUNABLE:
Miroslav Lichvar8006f6b2016-11-24 10:55:06 +01002508 case ETHTOOL_GLINKSETTINGS:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002509 break;
2510 default:
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +00002511 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Stephen Hemminger75f31232006-09-28 15:13:37 -07002512 return -EPERM;
2513 }
2514
chavey97f8aef2010-04-07 21:54:42 -07002515 if (dev->ethtool_ops->begin) {
2516 rc = dev->ethtool_ops->begin(dev);
2517 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 return rc;
chavey97f8aef2010-04-07 21:54:42 -07002519 }
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07002520 old_features = dev->features;
2521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 switch (ethcmd) {
2523 case ETHTOOL_GSET:
2524 rc = ethtool_get_settings(dev, useraddr);
2525 break;
2526 case ETHTOOL_SSET:
2527 rc = ethtool_set_settings(dev, useraddr);
2528 break;
2529 case ETHTOOL_GDRVINFO:
2530 rc = ethtool_get_drvinfo(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 break;
2532 case ETHTOOL_GREGS:
2533 rc = ethtool_get_regs(dev, useraddr);
2534 break;
2535 case ETHTOOL_GWOL:
2536 rc = ethtool_get_wol(dev, useraddr);
2537 break;
2538 case ETHTOOL_SWOL:
2539 rc = ethtool_set_wol(dev, useraddr);
2540 break;
2541 case ETHTOOL_GMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002542 rc = ethtool_get_value(dev, useraddr, ethcmd,
2543 dev->ethtool_ops->get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 break;
2545 case ETHTOOL_SMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002546 rc = ethtool_set_value_void(dev, useraddr,
2547 dev->ethtool_ops->set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 break;
Yuval Mintz80f12ec2012-06-06 17:13:06 +00002549 case ETHTOOL_GEEE:
2550 rc = ethtool_get_eee(dev, useraddr);
2551 break;
2552 case ETHTOOL_SEEE:
2553 rc = ethtool_set_eee(dev, useraddr);
2554 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 case ETHTOOL_NWAY_RST:
2556 rc = ethtool_nway_reset(dev);
2557 break;
2558 case ETHTOOL_GLINK:
Ben Hutchingse596e6e2010-12-09 12:08:35 +00002559 rc = ethtool_get_link(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 break;
2561 case ETHTOOL_GEEPROM:
2562 rc = ethtool_get_eeprom(dev, useraddr);
2563 break;
2564 case ETHTOOL_SEEPROM:
2565 rc = ethtool_set_eeprom(dev, useraddr);
2566 break;
2567 case ETHTOOL_GCOALESCE:
2568 rc = ethtool_get_coalesce(dev, useraddr);
2569 break;
2570 case ETHTOOL_SCOALESCE:
2571 rc = ethtool_set_coalesce(dev, useraddr);
2572 break;
2573 case ETHTOOL_GRINGPARAM:
2574 rc = ethtool_get_ringparam(dev, useraddr);
2575 break;
2576 case ETHTOOL_SRINGPARAM:
2577 rc = ethtool_set_ringparam(dev, useraddr);
2578 break;
2579 case ETHTOOL_GPAUSEPARAM:
2580 rc = ethtool_get_pauseparam(dev, useraddr);
2581 break;
2582 case ETHTOOL_SPAUSEPARAM:
2583 rc = ethtool_set_pauseparam(dev, useraddr);
2584 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 case ETHTOOL_TEST:
2586 rc = ethtool_self_test(dev, useraddr);
2587 break;
2588 case ETHTOOL_GSTRINGS:
2589 rc = ethtool_get_strings(dev, useraddr);
2590 break;
2591 case ETHTOOL_PHYS_ID:
2592 rc = ethtool_phys_id(dev, useraddr);
2593 break;
2594 case ETHTOOL_GSTATS:
2595 rc = ethtool_get_stats(dev, useraddr);
2596 break;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002597 case ETHTOOL_GPERMADDR:
2598 rc = ethtool_get_perm_addr(dev, useraddr);
2599 break;
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002600 case ETHTOOL_GFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002601 rc = ethtool_get_value(dev, useraddr, ethcmd,
Michał Mirosławbc5787c62011-11-15 15:29:55 +00002602 __ethtool_get_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002603 break;
2604 case ETHTOOL_SFLAGS:
Michał Mirosławda8ac86c2011-02-15 16:59:18 +00002605 rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002606 break;
Jeff Garzik339bf022007-08-15 16:01:32 -07002607 case ETHTOOL_GPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002608 rc = ethtool_get_value(dev, useraddr, ethcmd,
2609 dev->ethtool_ops->get_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07002610 break;
2611 case ETHTOOL_SPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002612 rc = ethtool_set_value(dev, useraddr,
2613 dev->ethtool_ops->set_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07002614 break;
Santwona Behera0853ad62008-07-02 03:47:41 -07002615 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08002616 case ETHTOOL_GRXRINGS:
2617 case ETHTOOL_GRXCLSRLCNT:
2618 case ETHTOOL_GRXCLSRULE:
2619 case ETHTOOL_GRXCLSRLALL:
Ben Hutchingsbf988432010-06-28 08:45:58 +00002620 rc = ethtool_get_rxnfc(dev, ethcmd, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07002621 break;
2622 case ETHTOOL_SRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08002623 case ETHTOOL_SRXCLSRLDEL:
2624 case ETHTOOL_SRXCLSRLINS:
Ben Hutchingsbf988432010-06-28 08:45:58 +00002625 rc = ethtool_set_rxnfc(dev, ethcmd, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07002626 break;
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00002627 case ETHTOOL_FLASHDEV:
2628 rc = ethtool_flash_device(dev, useraddr);
2629 break;
Ben Hutchingsd73d3a82009-10-05 10:59:58 +00002630 case ETHTOOL_RESET:
2631 rc = ethtool_reset(dev, useraddr);
2632 break;
Jeff Garzik723b2f52010-03-03 22:51:50 +00002633 case ETHTOOL_GSSET_INFO:
2634 rc = ethtool_get_sset_info(dev, useraddr);
2635 break;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00002636 case ETHTOOL_GRXFHINDIR:
2637 rc = ethtool_get_rxfh_indir(dev, useraddr);
2638 break;
2639 case ETHTOOL_SRXFHINDIR:
2640 rc = ethtool_set_rxfh_indir(dev, useraddr);
2641 break;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05302642 case ETHTOOL_GRSSH:
2643 rc = ethtool_get_rxfh(dev, useraddr);
2644 break;
2645 case ETHTOOL_SRSSH:
2646 rc = ethtool_set_rxfh(dev, useraddr);
2647 break;
Michał Mirosław5455c692011-02-15 16:59:17 +00002648 case ETHTOOL_GFEATURES:
2649 rc = ethtool_get_features(dev, useraddr);
2650 break;
2651 case ETHTOOL_SFEATURES:
2652 rc = ethtool_set_features(dev, useraddr);
2653 break;
Michał Mirosław0a417702011-02-15 16:59:17 +00002654 case ETHTOOL_GTXCSUM:
Michał Mirosławe83d3602011-02-15 16:59:18 +00002655 case ETHTOOL_GRXCSUM:
Michał Mirosław0a417702011-02-15 16:59:17 +00002656 case ETHTOOL_GSG:
2657 case ETHTOOL_GTSO:
2658 case ETHTOOL_GUFO:
2659 case ETHTOOL_GGSO:
2660 case ETHTOOL_GGRO:
2661 rc = ethtool_get_one_feature(dev, useraddr, ethcmd);
2662 break;
2663 case ETHTOOL_STXCSUM:
Michał Mirosławe83d3602011-02-15 16:59:18 +00002664 case ETHTOOL_SRXCSUM:
Michał Mirosław0a417702011-02-15 16:59:17 +00002665 case ETHTOOL_SSG:
2666 case ETHTOOL_STSO:
2667 case ETHTOOL_SUFO:
2668 case ETHTOOL_SGSO:
2669 case ETHTOOL_SGRO:
2670 rc = ethtool_set_one_feature(dev, useraddr, ethcmd);
2671 break;
amit salecha8b5933c2011-04-07 01:58:42 +00002672 case ETHTOOL_GCHANNELS:
2673 rc = ethtool_get_channels(dev, useraddr);
2674 break;
2675 case ETHTOOL_SCHANNELS:
2676 rc = ethtool_set_channels(dev, useraddr);
2677 break;
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002678 case ETHTOOL_SET_DUMP:
2679 rc = ethtool_set_dump(dev, useraddr);
2680 break;
2681 case ETHTOOL_GET_DUMP_FLAG:
2682 rc = ethtool_get_dump_flag(dev, useraddr);
2683 break;
2684 case ETHTOOL_GET_DUMP_DATA:
2685 rc = ethtool_get_dump_data(dev, useraddr);
2686 break;
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002687 case ETHTOOL_GET_TS_INFO:
2688 rc = ethtool_get_ts_info(dev, useraddr);
2689 break;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002690 case ETHTOOL_GMODULEINFO:
2691 rc = ethtool_get_module_info(dev, useraddr);
2692 break;
2693 case ETHTOOL_GMODULEEEPROM:
2694 rc = ethtool_get_module_eeprom(dev, useraddr);
2695 break;
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302696 case ETHTOOL_GTUNABLE:
2697 rc = ethtool_get_tunable(dev, useraddr);
2698 break;
2699 case ETHTOOL_STUNABLE:
2700 rc = ethtool_set_tunable(dev, useraddr);
2701 break;
Andrew Lunnf3a40942015-12-30 16:28:25 +01002702 case ETHTOOL_GPHYSTATS:
2703 rc = ethtool_get_phy_stats(dev, useraddr);
2704 break;
Kan Liangac2c7ad2016-02-19 09:24:01 -05002705 case ETHTOOL_PERQUEUE:
Wenwen Wangf0223d12018-10-08 10:49:35 -05002706 rc = ethtool_set_per_queue(dev, useraddr, sub_cmd);
Kan Liangac2c7ad2016-02-19 09:24:01 -05002707 break;
David Decotigny3f1ac7a2016-02-24 10:57:59 -08002708 case ETHTOOL_GLINKSETTINGS:
2709 rc = ethtool_get_link_ksettings(dev, useraddr);
2710 break;
2711 case ETHTOOL_SLINKSETTINGS:
2712 rc = ethtool_set_link_ksettings(dev, useraddr);
2713 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 default:
Matthew Wilcox61a44b92007-07-31 14:00:02 -07002715 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002717
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002718 if (dev->ethtool_ops->complete)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 dev->ethtool_ops->complete(dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07002720
2721 if (old_features != dev->features)
2722 netdev_features_change(dev);
2723
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725}