blob: 494e6a5d73061acd87534d636ee393555b0ed40d [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>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010027#include <linux/sched/signal.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",
Michael Chanfb1f5f72017-12-16 03:09:40 -050076 [NETIF_F_GRO_HW_BIT] = "rx-gro-hw",
Michał Mirosław9d921542011-11-15 15:29:55 +000077 [NETIF_F_LRO_BIT] = "rx-lro",
78
79 [NETIF_F_TSO_BIT] = "tx-tcp-segmentation",
Michał Mirosław9d921542011-11-15 15:29:55 +000080 [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",
Steffen Klassertc7ef8f02017-04-14 10:05:36 +020093 [NETIF_F_GSO_ESP_BIT] = "tx-esp-segmentation",
Michał Mirosław9d921542011-11-15 15:29:55 +000094
95 [NETIF_F_FCOE_CRC_BIT] = "tx-checksum-fcoe-crc",
Tom Herbert53692b12015-12-14 11:19:41 -080096 [NETIF_F_SCTP_CRC_BIT] = "tx-checksum-sctp",
Michał Mirosław9d921542011-11-15 15:29:55 +000097 [NETIF_F_FCOE_MTU_BIT] = "fcoe-mtu",
98 [NETIF_F_NTUPLE_BIT] = "rx-ntuple-filter",
99 [NETIF_F_RXHASH_BIT] = "rx-hashing",
100 [NETIF_F_RXCSUM_BIT] = "rx-checksum",
101 [NETIF_F_NOCACHE_COPY_BIT] = "tx-nocache-copy",
102 [NETIF_F_LOOPBACK_BIT] = "loopback",
Ben Greear36eabda32012-02-11 15:39:14 +0000103 [NETIF_F_RXFCS_BIT] = "rx-fcs",
Ben Greear5e0c03c2012-02-11 15:39:45 +0000104 [NETIF_F_RXALL_BIT] = "rx-all",
John Fastabenda6cc0cf2013-11-06 09:54:46 -0800105 [NETIF_F_HW_L2FW_DOFFLOAD_BIT] = "l2-fwd-offload",
John Fastabend1c78c642016-02-16 21:17:37 -0800106 [NETIF_F_HW_TC_BIT] = "hw-tc-offload",
Steffen Klassertc7ef8f02017-04-14 10:05:36 +0200107 [NETIF_F_HW_ESP_BIT] = "esp-hw-offload",
108 [NETIF_F_HW_ESP_TX_CSUM_BIT] = "esp-tx-csum-hw-offload",
Sabrina Dubrocad764a122017-07-21 12:49:28 +0200109 [NETIF_F_RX_UDP_TUNNEL_PORT_BIT] = "rx-udp_tunnel-port-offload",
Michał Mirosław9d921542011-11-15 15:29:55 +0000110};
111
Eyal Perry892311f2014-12-02 18:12:10 +0200112static const char
113rss_hash_func_strings[ETH_RSS_HASH_FUNCS_COUNT][ETH_GSTRING_LEN] = {
114 [ETH_RSS_HASH_TOP_BIT] = "toeplitz",
115 [ETH_RSS_HASH_XOR_BIT] = "xor",
Jakub Kicinskiabb521e2017-03-08 08:57:00 -0800116 [ETH_RSS_HASH_CRC32_BIT] = "crc32",
Eyal Perry892311f2014-12-02 18:12:10 +0200117};
118
Hadar Hen Ziona4244b02015-06-11 10:28:16 +0300119static const char
120tunable_strings[__ETHTOOL_TUNABLE_COUNT][ETH_GSTRING_LEN] = {
121 [ETHTOOL_ID_UNSPEC] = "Unspec",
122 [ETHTOOL_RX_COPYBREAK] = "rx-copybreak",
123 [ETHTOOL_TX_COPYBREAK] = "tx-copybreak",
124};
125
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +0100126static const char
127phy_tunable_strings[__ETHTOOL_PHY_TUNABLE_COUNT][ETH_GSTRING_LEN] = {
128 [ETHTOOL_ID_UNSPEC] = "Unspec",
Raju Lakkaraju65feddd2016-11-17 13:07:23 +0100129 [ETHTOOL_PHY_DOWNSHIFT] = "phy-downshift",
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +0100130};
131
Michał Mirosław5455c692011-02-15 16:59:17 +0000132static int ethtool_get_features(struct net_device *dev, void __user *useraddr)
133{
134 struct ethtool_gfeatures cmd = {
135 .cmd = ETHTOOL_GFEATURES,
136 .size = ETHTOOL_DEV_FEATURE_WORDS,
137 };
Michał Mirosław475414f2011-11-15 15:29:55 +0000138 struct ethtool_get_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
Michał Mirosław5455c692011-02-15 16:59:17 +0000139 u32 __user *sizeaddr;
140 u32 copy_size;
Michał Mirosław475414f2011-11-15 15:29:55 +0000141 int i;
142
143 /* in case feature bits run out again */
Michał Mirosław09da71b2011-11-16 14:32:03 +0000144 BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS * sizeof(u32) > sizeof(netdev_features_t));
Michał Mirosław475414f2011-11-15 15:29:55 +0000145
146 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
Michał Mirosław09da71b2011-11-16 14:32:03 +0000147 features[i].available = (u32)(dev->hw_features >> (32 * i));
148 features[i].requested = (u32)(dev->wanted_features >> (32 * i));
149 features[i].active = (u32)(dev->features >> (32 * i));
150 features[i].never_changed =
151 (u32)(NETIF_F_NEVER_CHANGE >> (32 * i));
Michał Mirosław475414f2011-11-15 15:29:55 +0000152 }
Michał Mirosław5455c692011-02-15 16:59:17 +0000153
154 sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size);
155 if (get_user(copy_size, sizeaddr))
156 return -EFAULT;
157
158 if (copy_size > ETHTOOL_DEV_FEATURE_WORDS)
159 copy_size = ETHTOOL_DEV_FEATURE_WORDS;
160
161 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
162 return -EFAULT;
163 useraddr += sizeof(cmd);
164 if (copy_to_user(useraddr, features, copy_size * sizeof(*features)))
165 return -EFAULT;
166
167 return 0;
168}
169
170static int ethtool_set_features(struct net_device *dev, void __user *useraddr)
171{
172 struct ethtool_sfeatures cmd;
173 struct ethtool_set_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
Michał Mirosław475414f2011-11-15 15:29:55 +0000174 netdev_features_t wanted = 0, valid = 0;
175 int i, ret = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +0000176
177 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
178 return -EFAULT;
179 useraddr += sizeof(cmd);
180
181 if (cmd.size != ETHTOOL_DEV_FEATURE_WORDS)
182 return -EINVAL;
183
184 if (copy_from_user(features, useraddr, sizeof(features)))
185 return -EFAULT;
186
Michał Mirosław475414f2011-11-15 15:29:55 +0000187 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
Michał Mirosław09da71b2011-11-16 14:32:03 +0000188 valid |= (netdev_features_t)features[i].valid << (32 * i);
189 wanted |= (netdev_features_t)features[i].requested << (32 * i);
Michał Mirosław475414f2011-11-15 15:29:55 +0000190 }
191
192 if (valid & ~NETIF_F_ETHTOOL_BITS)
Michał Mirosław5455c692011-02-15 16:59:17 +0000193 return -EINVAL;
194
Michał Mirosław475414f2011-11-15 15:29:55 +0000195 if (valid & ~dev->hw_features) {
196 valid &= dev->hw_features;
Michał Mirosław5455c692011-02-15 16:59:17 +0000197 ret |= ETHTOOL_F_UNSUPPORTED;
198 }
199
Michał Mirosław475414f2011-11-15 15:29:55 +0000200 dev->wanted_features &= ~valid;
201 dev->wanted_features |= wanted & valid;
Michał Mirosław6cb6a272011-04-02 22:48:47 -0700202 __netdev_update_features(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +0000203
Michał Mirosław475414f2011-11-15 15:29:55 +0000204 if ((dev->wanted_features ^ dev->features) & valid)
Michał Mirosław5455c692011-02-15 16:59:17 +0000205 ret |= ETHTOOL_F_WISH;
206
207 return ret;
208}
209
Andrew Lunnf3a40942015-12-30 16:28:25 +0100210static int phy_get_sset_count(struct phy_device *phydev)
211{
212 int ret;
213
214 if (phydev->drv->get_sset_count &&
215 phydev->drv->get_strings &&
216 phydev->drv->get_stats) {
217 mutex_lock(&phydev->lock);
218 ret = phydev->drv->get_sset_count(phydev);
219 mutex_unlock(&phydev->lock);
220
221 return ret;
222 }
223
224 return -EOPNOTSUPP;
225}
226
Michał Mirosław340ae162011-02-15 16:59:16 +0000227static int __ethtool_get_sset_count(struct net_device *dev, int sset)
228{
229 const struct ethtool_ops *ops = dev->ethtool_ops;
230
Michał Mirosław5455c692011-02-15 16:59:17 +0000231 if (sset == ETH_SS_FEATURES)
232 return ARRAY_SIZE(netdev_features_strings);
233
Eyal Perry892311f2014-12-02 18:12:10 +0200234 if (sset == ETH_SS_RSS_HASH_FUNCS)
235 return ARRAY_SIZE(rss_hash_func_strings);
236
Hadar Hen Ziona4244b02015-06-11 10:28:16 +0300237 if (sset == ETH_SS_TUNABLES)
238 return ARRAY_SIZE(tunable_strings);
239
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +0100240 if (sset == ETH_SS_PHY_TUNABLES)
241 return ARRAY_SIZE(phy_tunable_strings);
242
Andrew Lunnf3a40942015-12-30 16:28:25 +0100243 if (sset == ETH_SS_PHY_STATS) {
244 if (dev->phydev)
245 return phy_get_sset_count(dev->phydev);
246 else
247 return -EOPNOTSUPP;
248 }
249
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000250 if (ops->get_sset_count && ops->get_strings)
Michał Mirosław340ae162011-02-15 16:59:16 +0000251 return ops->get_sset_count(dev, sset);
252 else
253 return -EOPNOTSUPP;
254}
255
256static void __ethtool_get_strings(struct net_device *dev,
257 u32 stringset, u8 *data)
258{
259 const struct ethtool_ops *ops = dev->ethtool_ops;
260
Michał Mirosław5455c692011-02-15 16:59:17 +0000261 if (stringset == ETH_SS_FEATURES)
262 memcpy(data, netdev_features_strings,
263 sizeof(netdev_features_strings));
Eyal Perry892311f2014-12-02 18:12:10 +0200264 else if (stringset == ETH_SS_RSS_HASH_FUNCS)
265 memcpy(data, rss_hash_func_strings,
266 sizeof(rss_hash_func_strings));
Hadar Hen Ziona4244b02015-06-11 10:28:16 +0300267 else if (stringset == ETH_SS_TUNABLES)
268 memcpy(data, tunable_strings, sizeof(tunable_strings));
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +0100269 else if (stringset == ETH_SS_PHY_TUNABLES)
270 memcpy(data, phy_tunable_strings, sizeof(phy_tunable_strings));
Andrew Lunnf3a40942015-12-30 16:28:25 +0100271 else if (stringset == ETH_SS_PHY_STATS) {
272 struct phy_device *phydev = dev->phydev;
273
274 if (phydev) {
275 mutex_lock(&phydev->lock);
276 phydev->drv->get_strings(phydev, data);
277 mutex_unlock(&phydev->lock);
278 } else {
279 return;
280 }
281 } else
Michał Mirosław5455c692011-02-15 16:59:17 +0000282 /* ops->get_strings is valid because checked earlier */
283 ops->get_strings(dev, stringset, data);
Michał Mirosław340ae162011-02-15 16:59:16 +0000284}
285
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000286static netdev_features_t ethtool_get_feature_mask(u32 eth_cmd)
Michał Mirosław0a417702011-02-15 16:59:17 +0000287{
288 /* feature masks of legacy discrete ethtool ops */
289
290 switch (eth_cmd) {
291 case ETHTOOL_GTXCSUM:
292 case ETHTOOL_STXCSUM:
Tom Herberta1882222015-12-14 11:19:43 -0800293 return NETIF_F_CSUM_MASK | NETIF_F_SCTP_CRC;
Michał Mirosławe83d3602011-02-15 16:59:18 +0000294 case ETHTOOL_GRXCSUM:
295 case ETHTOOL_SRXCSUM:
296 return NETIF_F_RXCSUM;
Michał Mirosław0a417702011-02-15 16:59:17 +0000297 case ETHTOOL_GSG:
298 case ETHTOOL_SSG:
299 return NETIF_F_SG;
300 case ETHTOOL_GTSO:
301 case ETHTOOL_STSO:
302 return NETIF_F_ALL_TSO;
Michał Mirosław0a417702011-02-15 16:59:17 +0000303 case ETHTOOL_GGSO:
304 case ETHTOOL_SGSO:
305 return NETIF_F_GSO;
306 case ETHTOOL_GGRO:
307 case ETHTOOL_SGRO:
308 return NETIF_F_GRO;
309 default:
310 BUG();
311 }
312}
313
Michał Mirosław0a417702011-02-15 16:59:17 +0000314static int ethtool_get_one_feature(struct net_device *dev,
315 char __user *useraddr, u32 ethcmd)
316{
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000317 netdev_features_t mask = ethtool_get_feature_mask(ethcmd);
Michał Mirosław0a417702011-02-15 16:59:17 +0000318 struct ethtool_value edata = {
319 .cmd = ethcmd,
Michał Mirosław86794882011-02-15 16:59:17 +0000320 .data = !!(dev->features & mask),
Michał Mirosław0a417702011-02-15 16:59:17 +0000321 };
Michał Mirosław0a417702011-02-15 16:59:17 +0000322
Michał Mirosław0a417702011-02-15 16:59:17 +0000323 if (copy_to_user(useraddr, &edata, sizeof(edata)))
324 return -EFAULT;
325 return 0;
326}
327
Michał Mirosław0a417702011-02-15 16:59:17 +0000328static int ethtool_set_one_feature(struct net_device *dev,
329 void __user *useraddr, u32 ethcmd)
330{
331 struct ethtool_value edata;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000332 netdev_features_t mask;
Michał Mirosław0a417702011-02-15 16:59:17 +0000333
334 if (copy_from_user(&edata, useraddr, sizeof(edata)))
335 return -EFAULT;
336
Michał Mirosław86794882011-02-15 16:59:17 +0000337 mask = ethtool_get_feature_mask(ethcmd);
338 mask &= dev->hw_features;
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000339 if (!mask)
Michał Mirosław0a417702011-02-15 16:59:17 +0000340 return -EOPNOTSUPP;
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000341
342 if (edata.data)
343 dev->wanted_features |= mask;
344 else
345 dev->wanted_features &= ~mask;
346
347 __netdev_update_features(dev);
348
349 return 0;
Michał Mirosław0a417702011-02-15 16:59:17 +0000350}
351
Michał Mirosław02b3a552011-11-15 15:29:55 +0000352#define ETH_ALL_FLAGS (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
353 ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
Patrick McHardyf6469682013-04-19 02:04:27 +0000354#define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
355 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
356 NETIF_F_RXHASH)
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000357
358static u32 __ethtool_get_flags(struct net_device *dev)
359{
Michał Mirosław02b3a552011-11-15 15:29:55 +0000360 u32 flags = 0;
361
Dragos Foianu8a731252013-07-13 14:43:00 +0100362 if (dev->features & NETIF_F_LRO)
363 flags |= ETH_FLAG_LRO;
364 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
365 flags |= ETH_FLAG_RXVLAN;
366 if (dev->features & NETIF_F_HW_VLAN_CTAG_TX)
367 flags |= ETH_FLAG_TXVLAN;
368 if (dev->features & NETIF_F_NTUPLE)
369 flags |= ETH_FLAG_NTUPLE;
370 if (dev->features & NETIF_F_RXHASH)
371 flags |= ETH_FLAG_RXHASH;
Michał Mirosław02b3a552011-11-15 15:29:55 +0000372
373 return flags;
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000374}
375
376static int __ethtool_set_flags(struct net_device *dev, u32 data)
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000377{
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000378 netdev_features_t features = 0, changed;
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000379
Michał Mirosław02b3a552011-11-15 15:29:55 +0000380 if (data & ~ETH_ALL_FLAGS)
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000381 return -EINVAL;
382
Dragos Foianu8a731252013-07-13 14:43:00 +0100383 if (data & ETH_FLAG_LRO)
384 features |= NETIF_F_LRO;
385 if (data & ETH_FLAG_RXVLAN)
386 features |= NETIF_F_HW_VLAN_CTAG_RX;
387 if (data & ETH_FLAG_TXVLAN)
388 features |= NETIF_F_HW_VLAN_CTAG_TX;
389 if (data & ETH_FLAG_NTUPLE)
390 features |= NETIF_F_NTUPLE;
391 if (data & ETH_FLAG_RXHASH)
392 features |= NETIF_F_RXHASH;
Michał Mirosław02b3a552011-11-15 15:29:55 +0000393
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000394 /* allow changing only bits set in hw_features */
Michał Mirosław02b3a552011-11-15 15:29:55 +0000395 changed = (features ^ dev->features) & ETH_ALL_FEATURES;
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000396 if (changed & ~dev->hw_features)
397 return (changed & dev->hw_features) ? -EINVAL : -EOPNOTSUPP;
398
399 dev->wanted_features =
Michał Mirosław02b3a552011-11-15 15:29:55 +0000400 (dev->wanted_features & ~changed) | (features & changed);
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000401
Michał Mirosław6cb6a272011-04-02 22:48:47 -0700402 __netdev_update_features(dev);
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000403
404 return 0;
405}
406
Alan Brady5a6cd6d2017-10-05 14:53:40 -0700407/* Given two link masks, AND them together and save the result in dst. */
408void ethtool_intersect_link_masks(struct ethtool_link_ksettings *dst,
409 struct ethtool_link_ksettings *src)
410{
411 unsigned int size = BITS_TO_LONGS(__ETHTOOL_LINK_MODE_MASK_NBITS);
412 unsigned int idx = 0;
413
414 for (; idx < size; idx++) {
415 dst->link_modes.supported[idx] &=
416 src->link_modes.supported[idx];
417 dst->link_modes.advertising[idx] &=
418 src->link_modes.advertising[idx];
419 }
420}
421EXPORT_SYMBOL(ethtool_intersect_link_masks);
422
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200423void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst,
424 u32 legacy_u32)
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800425{
426 bitmap_zero(dst, __ETHTOOL_LINK_MODE_MASK_NBITS);
427 dst[0] = legacy_u32;
428}
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200429EXPORT_SYMBOL(ethtool_convert_legacy_u32_to_link_mode);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800430
431/* return false if src had higher bits set. lower bits always updated. */
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200432bool ethtool_convert_link_mode_to_legacy_u32(u32 *legacy_u32,
433 const unsigned long *src)
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800434{
435 bool retval = true;
436
437 /* TODO: following test will soon always be true */
438 if (__ETHTOOL_LINK_MODE_MASK_NBITS > 32) {
439 __ETHTOOL_DECLARE_LINK_MODE_MASK(ext);
440
441 bitmap_zero(ext, __ETHTOOL_LINK_MODE_MASK_NBITS);
442 bitmap_fill(ext, 32);
443 bitmap_complement(ext, ext, __ETHTOOL_LINK_MODE_MASK_NBITS);
444 if (bitmap_intersects(ext, src,
445 __ETHTOOL_LINK_MODE_MASK_NBITS)) {
446 /* src mask goes beyond bit 31 */
447 retval = false;
448 }
449 }
450 *legacy_u32 = src[0];
451 return retval;
452}
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200453EXPORT_SYMBOL(ethtool_convert_link_mode_to_legacy_u32);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800454
455/* return false if legacy contained non-0 deprecated fields
Niklas Söderlund95491e32017-10-20 01:32:08 +0200456 * maxtxpkt/maxrxpkt. rest of ksettings always updated
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800457 */
458static bool
459convert_legacy_settings_to_link_ksettings(
460 struct ethtool_link_ksettings *link_ksettings,
461 const struct ethtool_cmd *legacy_settings)
462{
463 bool retval = true;
464
465 memset(link_ksettings, 0, sizeof(*link_ksettings));
466
467 /* This is used to tell users that driver is still using these
468 * deprecated legacy fields, and they should not use
469 * %ETHTOOL_GLINKSETTINGS/%ETHTOOL_SLINKSETTINGS
470 */
Niklas Söderlund95491e32017-10-20 01:32:08 +0200471 if (legacy_settings->maxtxpkt ||
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800472 legacy_settings->maxrxpkt)
473 retval = false;
474
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200475 ethtool_convert_legacy_u32_to_link_mode(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800476 link_ksettings->link_modes.supported,
477 legacy_settings->supported);
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200478 ethtool_convert_legacy_u32_to_link_mode(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800479 link_ksettings->link_modes.advertising,
480 legacy_settings->advertising);
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200481 ethtool_convert_legacy_u32_to_link_mode(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800482 link_ksettings->link_modes.lp_advertising,
483 legacy_settings->lp_advertising);
484 link_ksettings->base.speed
485 = ethtool_cmd_speed(legacy_settings);
486 link_ksettings->base.duplex
487 = legacy_settings->duplex;
488 link_ksettings->base.port
489 = legacy_settings->port;
490 link_ksettings->base.phy_address
491 = legacy_settings->phy_address;
492 link_ksettings->base.autoneg
493 = legacy_settings->autoneg;
494 link_ksettings->base.mdio_support
495 = legacy_settings->mdio_support;
496 link_ksettings->base.eth_tp_mdix
497 = legacy_settings->eth_tp_mdix;
498 link_ksettings->base.eth_tp_mdix_ctrl
499 = legacy_settings->eth_tp_mdix_ctrl;
500 return retval;
501}
502
503/* return false if ksettings link modes had higher bits
504 * set. legacy_settings always updated (best effort)
505 */
506static bool
507convert_link_ksettings_to_legacy_settings(
508 struct ethtool_cmd *legacy_settings,
509 const struct ethtool_link_ksettings *link_ksettings)
510{
511 bool retval = true;
512
513 memset(legacy_settings, 0, sizeof(*legacy_settings));
514 /* this also clears the deprecated fields in legacy structure:
515 * __u8 transceiver;
516 * __u32 maxtxpkt;
517 * __u32 maxrxpkt;
518 */
519
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200520 retval &= ethtool_convert_link_mode_to_legacy_u32(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800521 &legacy_settings->supported,
522 link_ksettings->link_modes.supported);
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200523 retval &= ethtool_convert_link_mode_to_legacy_u32(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800524 &legacy_settings->advertising,
525 link_ksettings->link_modes.advertising);
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200526 retval &= ethtool_convert_link_mode_to_legacy_u32(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800527 &legacy_settings->lp_advertising,
528 link_ksettings->link_modes.lp_advertising);
529 ethtool_cmd_speed_set(legacy_settings, link_ksettings->base.speed);
530 legacy_settings->duplex
531 = link_ksettings->base.duplex;
532 legacy_settings->port
533 = link_ksettings->base.port;
534 legacy_settings->phy_address
535 = link_ksettings->base.phy_address;
536 legacy_settings->autoneg
537 = link_ksettings->base.autoneg;
538 legacy_settings->mdio_support
539 = link_ksettings->base.mdio_support;
540 legacy_settings->eth_tp_mdix
541 = link_ksettings->base.eth_tp_mdix;
542 legacy_settings->eth_tp_mdix_ctrl
543 = link_ksettings->base.eth_tp_mdix_ctrl;
Florian Fainelli19cab882017-09-20 15:52:13 -0700544 legacy_settings->transceiver
545 = link_ksettings->base.transceiver;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800546 return retval;
547}
548
549/* number of 32-bit words to store the user's link mode bitmaps */
550#define __ETHTOOL_LINK_MODE_MASK_NU32 \
551 DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32)
552
553/* layout of the struct passed from/to userland */
554struct ethtool_link_usettings {
555 struct ethtool_link_settings base;
556 struct {
557 __u32 supported[__ETHTOOL_LINK_MODE_MASK_NU32];
558 __u32 advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
559 __u32 lp_advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
560 } link_modes;
561};
562
563/* Internal kernel helper to query a device ethtool_link_settings.
564 *
565 * Backward compatibility note: for compatibility with legacy drivers
566 * that implement only the ethtool_cmd API, this has to work with both
567 * drivers implementing get_link_ksettings API and drivers
568 * implementing get_settings API. When drivers implement get_settings
569 * and report ethtool_cmd deprecated fields
570 * (transceiver/maxrxpkt/maxtxpkt), these fields are silently ignored
571 * because the resulting struct ethtool_link_settings does not report them.
572 */
573int __ethtool_get_link_ksettings(struct net_device *dev,
574 struct ethtool_link_ksettings *link_ksettings)
575{
576 int err;
577 struct ethtool_cmd cmd;
578
579 ASSERT_RTNL();
580
581 if (dev->ethtool_ops->get_link_ksettings) {
582 memset(link_ksettings, 0, sizeof(*link_ksettings));
583 return dev->ethtool_ops->get_link_ksettings(dev,
584 link_ksettings);
585 }
586
587 /* driver doesn't support %ethtool_link_ksettings API. revert to
588 * legacy %ethtool_cmd API, unless it's not supported either.
589 * TODO: remove when ethtool_ops::get_settings disappears internally
590 */
David Decotigny3237fc62016-02-24 10:58:11 -0800591 if (!dev->ethtool_ops->get_settings)
592 return -EOPNOTSUPP;
593
594 memset(&cmd, 0, sizeof(cmd));
595 cmd.cmd = ETHTOOL_GSET;
596 err = dev->ethtool_ops->get_settings(dev, &cmd);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800597 if (err < 0)
598 return err;
599
600 /* we ignore deprecated fields transceiver/maxrxpkt/maxtxpkt
601 */
602 convert_legacy_settings_to_link_ksettings(link_ksettings, &cmd);
603 return err;
604}
605EXPORT_SYMBOL(__ethtool_get_link_ksettings);
606
607/* convert ethtool_link_usettings in user space to a kernel internal
608 * ethtool_link_ksettings. return 0 on success, errno on error.
609 */
610static int load_link_ksettings_from_user(struct ethtool_link_ksettings *to,
611 const void __user *from)
612{
613 struct ethtool_link_usettings link_usettings;
614
615 if (copy_from_user(&link_usettings, from, sizeof(link_usettings)))
616 return -EFAULT;
617
618 memcpy(&to->base, &link_usettings.base, sizeof(to->base));
Yury Norov3aa56882018-02-06 15:38:06 -0800619 bitmap_from_arr32(to->link_modes.supported,
620 link_usettings.link_modes.supported,
621 __ETHTOOL_LINK_MODE_MASK_NBITS);
622 bitmap_from_arr32(to->link_modes.advertising,
623 link_usettings.link_modes.advertising,
624 __ETHTOOL_LINK_MODE_MASK_NBITS);
625 bitmap_from_arr32(to->link_modes.lp_advertising,
626 link_usettings.link_modes.lp_advertising,
627 __ETHTOOL_LINK_MODE_MASK_NBITS);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800628
629 return 0;
630}
631
632/* convert a kernel internal ethtool_link_ksettings to
633 * ethtool_link_usettings in user space. return 0 on success, errno on
634 * error.
635 */
636static int
637store_link_ksettings_for_user(void __user *to,
638 const struct ethtool_link_ksettings *from)
639{
640 struct ethtool_link_usettings link_usettings;
641
642 memcpy(&link_usettings.base, &from->base, sizeof(link_usettings));
Yury Norov3aa56882018-02-06 15:38:06 -0800643 bitmap_to_arr32(link_usettings.link_modes.supported,
644 from->link_modes.supported,
645 __ETHTOOL_LINK_MODE_MASK_NBITS);
646 bitmap_to_arr32(link_usettings.link_modes.advertising,
647 from->link_modes.advertising,
648 __ETHTOOL_LINK_MODE_MASK_NBITS);
649 bitmap_to_arr32(link_usettings.link_modes.lp_advertising,
650 from->link_modes.lp_advertising,
651 __ETHTOOL_LINK_MODE_MASK_NBITS);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800652
653 if (copy_to_user(to, &link_usettings, sizeof(link_usettings)))
654 return -EFAULT;
655
656 return 0;
657}
658
659/* Query device for its ethtool_link_settings.
660 *
661 * Backward compatibility note: this function must fail when driver
662 * does not implement ethtool::get_link_ksettings, even if legacy
663 * ethtool_ops::get_settings is implemented. This tells new versions
664 * of ethtool that they should use the legacy API %ETHTOOL_GSET for
665 * this driver, so that they can correctly access the ethtool_cmd
666 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
667 * implements ethtool_ops::get_settings anymore.
668 */
669static int ethtool_get_link_ksettings(struct net_device *dev,
670 void __user *useraddr)
671{
672 int err = 0;
673 struct ethtool_link_ksettings link_ksettings;
674
675 ASSERT_RTNL();
676
677 if (!dev->ethtool_ops->get_link_ksettings)
678 return -EOPNOTSUPP;
679
680 /* handle bitmap nbits handshake */
681 if (copy_from_user(&link_ksettings.base, useraddr,
682 sizeof(link_ksettings.base)))
683 return -EFAULT;
684
685 if (__ETHTOOL_LINK_MODE_MASK_NU32
686 != link_ksettings.base.link_mode_masks_nwords) {
687 /* wrong link mode nbits requested */
688 memset(&link_ksettings, 0, sizeof(link_ksettings));
Ben Hutchings793cf872016-03-14 01:05:38 +0000689 link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800690 /* send back number of words required as negative val */
691 compiletime_assert(__ETHTOOL_LINK_MODE_MASK_NU32 <= S8_MAX,
692 "need too many bits for link modes!");
693 link_ksettings.base.link_mode_masks_nwords
694 = -((s8)__ETHTOOL_LINK_MODE_MASK_NU32);
695
696 /* copy the base fields back to user, not the link
697 * mode bitmaps
698 */
699 if (copy_to_user(useraddr, &link_ksettings.base,
700 sizeof(link_ksettings.base)))
701 return -EFAULT;
702
703 return 0;
704 }
705
706 /* handshake successful: user/kernel agree on
707 * link_mode_masks_nwords
708 */
709
710 memset(&link_ksettings, 0, sizeof(link_ksettings));
711 err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
712 if (err < 0)
713 return err;
714
715 /* make sure we tell the right values to user */
716 link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
717 link_ksettings.base.link_mode_masks_nwords
718 = __ETHTOOL_LINK_MODE_MASK_NU32;
719
720 return store_link_ksettings_for_user(useraddr, &link_ksettings);
721}
722
723/* Update device ethtool_link_settings.
724 *
725 * Backward compatibility note: this function must fail when driver
726 * does not implement ethtool::set_link_ksettings, even if legacy
727 * ethtool_ops::set_settings is implemented. This tells new versions
728 * of ethtool that they should use the legacy API %ETHTOOL_SSET for
729 * this driver, so that they can correctly update the ethtool_cmd
730 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
731 * implements ethtool_ops::get_settings anymore.
732 */
733static int ethtool_set_link_ksettings(struct net_device *dev,
734 void __user *useraddr)
735{
736 int err;
737 struct ethtool_link_ksettings link_ksettings;
738
739 ASSERT_RTNL();
740
741 if (!dev->ethtool_ops->set_link_ksettings)
742 return -EOPNOTSUPP;
743
744 /* make sure nbits field has expected value */
745 if (copy_from_user(&link_ksettings.base, useraddr,
746 sizeof(link_ksettings.base)))
747 return -EFAULT;
748
749 if (__ETHTOOL_LINK_MODE_MASK_NU32
750 != link_ksettings.base.link_mode_masks_nwords)
751 return -EINVAL;
752
753 /* copy the whole structure, now that we know it has expected
754 * format
755 */
756 err = load_link_ksettings_from_user(&link_ksettings, useraddr);
757 if (err)
758 return err;
759
760 /* re-check nwords field, just in case */
761 if (__ETHTOOL_LINK_MODE_MASK_NU32
762 != link_ksettings.base.link_mode_masks_nwords)
763 return -EINVAL;
764
765 return dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
766}
767
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800768/* Query device for its ethtool_cmd settings.
769 *
770 * Backward compatibility note: for compatibility with legacy ethtool,
771 * this has to work with both drivers implementing get_link_ksettings
772 * API and drivers implementing get_settings API. When drivers
773 * implement get_link_ksettings and report higher link mode bits, a
774 * kernel warning is logged once (with name of 1st driver/device) to
775 * recommend user to upgrade ethtool, but the command is successful
776 * (only the lower link mode bits reported back to user).
777 */
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000778static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
779{
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000780 struct ethtool_cmd cmd;
781
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800782 ASSERT_RTNL();
783
784 if (dev->ethtool_ops->get_link_ksettings) {
785 /* First, use link_ksettings API if it is supported */
786 int err;
787 struct ethtool_link_ksettings link_ksettings;
788
789 memset(&link_ksettings, 0, sizeof(link_ksettings));
790 err = dev->ethtool_ops->get_link_ksettings(dev,
791 &link_ksettings);
792 if (err < 0)
793 return err;
Stephen Hemminger71891e22017-12-29 10:02:52 -0800794 convert_link_ksettings_to_legacy_settings(&cmd,
795 &link_ksettings);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800796
797 /* send a sensible cmd tag back to user */
798 cmd.cmd = ETHTOOL_GSET;
799 } else {
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800800 /* driver doesn't support %ethtool_link_ksettings
801 * API. revert to legacy %ethtool_cmd API, unless it's
802 * not supported either.
803 */
David Decotigny3237fc62016-02-24 10:58:11 -0800804 int err;
805
806 if (!dev->ethtool_ops->get_settings)
807 return -EOPNOTSUPP;
808
809 memset(&cmd, 0, sizeof(cmd));
810 cmd.cmd = ETHTOOL_GSET;
811 err = dev->ethtool_ops->get_settings(dev, &cmd);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800812 if (err < 0)
813 return err;
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
817 return -EFAULT;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return 0;
820}
821
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800822/* Update device link settings with given ethtool_cmd.
823 *
824 * Backward compatibility note: for compatibility with legacy ethtool,
825 * this has to work with both drivers implementing set_link_ksettings
826 * API and drivers implementing set_settings API. When drivers
827 * implement set_link_ksettings and user's request updates deprecated
828 * ethtool_cmd fields (transceiver/maxrxpkt/maxtxpkt), a kernel
829 * warning is logged once (with name of 1st driver/device) to
830 * recommend user to upgrade ethtool, and the request is rejected.
831 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
833{
834 struct ethtool_cmd cmd;
835
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800836 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
839 return -EFAULT;
840
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800841 /* first, try new %ethtool_link_ksettings API. */
842 if (dev->ethtool_ops->set_link_ksettings) {
843 struct ethtool_link_ksettings link_ksettings;
844
845 if (!convert_legacy_settings_to_link_ksettings(&link_ksettings,
846 &cmd))
847 return -EINVAL;
848
849 link_ksettings.base.cmd = ETHTOOL_SLINKSETTINGS;
850 link_ksettings.base.link_mode_masks_nwords
851 = __ETHTOOL_LINK_MODE_MASK_NU32;
852 return dev->ethtool_ops->set_link_ksettings(dev,
853 &link_ksettings);
854 }
855
856 /* legacy %ethtool_cmd API */
857
858 /* TODO: return -EOPNOTSUPP when ethtool_ops::get_settings
859 * disappears internally
860 */
861
862 if (!dev->ethtool_ops->set_settings)
863 return -EOPNOTSUPP;
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return dev->ethtool_ops->set_settings(dev, &cmd);
866}
867
chavey97f8aef2010-04-07 21:54:42 -0700868static noinline_for_stack int ethtool_get_drvinfo(struct net_device *dev,
869 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
871 struct ethtool_drvinfo info;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700872 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 memset(&info, 0, sizeof(info));
875 info.cmd = ETHTOOL_GDRVINFO;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000876 if (ops->get_drvinfo) {
Ben Hutchings01414802010-08-17 02:31:15 -0700877 ops->get_drvinfo(dev, &info);
878 } else if (dev->dev.parent && dev->dev.parent->driver) {
879 strlcpy(info.bus_info, dev_name(dev->dev.parent),
880 sizeof(info.bus_info));
881 strlcpy(info.driver, dev->dev.parent->driver->name,
882 sizeof(info.driver));
883 } else {
884 return -EOPNOTSUPP;
885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Jeff Garzik723b2f52010-03-03 22:51:50 +0000887 /*
888 * this method of obtaining string set info is deprecated;
Jeff Garzikd17792e2010-03-04 08:21:53 +0000889 * Use ETHTOOL_GSSET_INFO instead.
Jeff Garzik723b2f52010-03-03 22:51:50 +0000890 */
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000891 if (ops->get_sset_count) {
Jeff Garzikff03d492007-08-15 16:01:08 -0700892 int rc;
893
894 rc = ops->get_sset_count(dev, ETH_SS_TEST);
895 if (rc >= 0)
896 info.testinfo_len = rc;
897 rc = ops->get_sset_count(dev, ETH_SS_STATS);
898 if (rc >= 0)
899 info.n_stats = rc;
Jeff Garzik339bf022007-08-15 16:01:32 -0700900 rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
901 if (rc >= 0)
902 info.n_priv_flags = rc;
Jeff Garzikff03d492007-08-15 16:01:08 -0700903 }
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000904 if (ops->get_regs_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 info.regdump_len = ops->get_regs_len(dev);
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000906 if (ops->get_eeprom_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 info.eedump_len = ops->get_eeprom_len(dev);
908
909 if (copy_to_user(useraddr, &info, sizeof(info)))
910 return -EFAULT;
911 return 0;
912}
913
Eric Dumazetf5c445e2010-03-08 12:17:04 -0800914static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
chavey97f8aef2010-04-07 21:54:42 -0700915 void __user *useraddr)
Jeff Garzik723b2f52010-03-03 22:51:50 +0000916{
917 struct ethtool_sset_info info;
Jeff Garzik723b2f52010-03-03 22:51:50 +0000918 u64 sset_mask;
919 int i, idx = 0, n_bits = 0, ret, rc;
920 u32 *info_buf = NULL;
921
Jeff Garzik723b2f52010-03-03 22:51:50 +0000922 if (copy_from_user(&info, useraddr, sizeof(info)))
923 return -EFAULT;
924
925 /* store copy of mask, because we zero struct later on */
926 sset_mask = info.sset_mask;
927 if (!sset_mask)
928 return 0;
929
930 /* calculate size of return buffer */
Jeff Garzikd17792e2010-03-04 08:21:53 +0000931 n_bits = hweight64(sset_mask);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000932
933 memset(&info, 0, sizeof(info));
934 info.cmd = ETHTOOL_GSSET_INFO;
935
936 info_buf = kzalloc(n_bits * sizeof(u32), GFP_USER);
937 if (!info_buf)
938 return -ENOMEM;
939
940 /*
941 * fill return buffer based on input bitmask and successful
942 * get_sset_count return
943 */
944 for (i = 0; i < 64; i++) {
945 if (!(sset_mask & (1ULL << i)))
946 continue;
947
Michał Mirosław340ae162011-02-15 16:59:16 +0000948 rc = __ethtool_get_sset_count(dev, i);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000949 if (rc >= 0) {
950 info.sset_mask |= (1ULL << i);
951 info_buf[idx++] = rc;
952 }
953 }
954
955 ret = -EFAULT;
956 if (copy_to_user(useraddr, &info, sizeof(info)))
957 goto out;
958
959 useraddr += offsetof(struct ethtool_sset_info, data);
960 if (copy_to_user(useraddr, info_buf, idx * sizeof(u32)))
961 goto out;
962
963 ret = 0;
964
965out:
966 kfree(info_buf);
967 return ret;
968}
969
chavey97f8aef2010-04-07 21:54:42 -0700970static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
Ben Hutchingsbf988432010-06-28 08:45:58 +0000971 u32 cmd, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700972{
Ben Hutchingsbf988432010-06-28 08:45:58 +0000973 struct ethtool_rxnfc info;
974 size_t info_size = sizeof(info);
Ben Hutchings55664f32012-01-03 12:04:51 +0000975 int rc;
Santwona Behera0853ad62008-07-02 03:47:41 -0700976
Santwona Behera59089d82009-02-20 00:58:13 -0800977 if (!dev->ethtool_ops->set_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700978 return -EOPNOTSUPP;
979
Ben Hutchingsbf988432010-06-28 08:45:58 +0000980 /* struct ethtool_rxnfc was originally defined for
981 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
982 * members. User-space might still be using that
983 * definition. */
984 if (cmd == ETHTOOL_SRXFH)
985 info_size = (offsetof(struct ethtool_rxnfc, data) +
986 sizeof(info.data));
987
988 if (copy_from_user(&info, useraddr, info_size))
Santwona Behera0853ad62008-07-02 03:47:41 -0700989 return -EFAULT;
990
Ben Hutchings55664f32012-01-03 12:04:51 +0000991 rc = dev->ethtool_ops->set_rxnfc(dev, &info);
992 if (rc)
993 return rc;
994
995 if (cmd == ETHTOOL_SRXCLSRLINS &&
996 copy_to_user(useraddr, &info, info_size))
997 return -EFAULT;
998
999 return 0;
Santwona Behera0853ad62008-07-02 03:47:41 -07001000}
1001
chavey97f8aef2010-04-07 21:54:42 -07001002static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
Ben Hutchingsbf988432010-06-28 08:45:58 +00001003 u32 cmd, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -07001004{
1005 struct ethtool_rxnfc info;
Ben Hutchingsbf988432010-06-28 08:45:58 +00001006 size_t info_size = sizeof(info);
Santwona Behera59089d82009-02-20 00:58:13 -08001007 const struct ethtool_ops *ops = dev->ethtool_ops;
1008 int ret;
1009 void *rule_buf = NULL;
Santwona Behera0853ad62008-07-02 03:47:41 -07001010
Santwona Behera59089d82009-02-20 00:58:13 -08001011 if (!ops->get_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -07001012 return -EOPNOTSUPP;
1013
Ben Hutchingsbf988432010-06-28 08:45:58 +00001014 /* struct ethtool_rxnfc was originally defined for
1015 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
1016 * members. User-space might still be using that
1017 * definition. */
1018 if (cmd == ETHTOOL_GRXFH)
1019 info_size = (offsetof(struct ethtool_rxnfc, data) +
1020 sizeof(info.data));
1021
1022 if (copy_from_user(&info, useraddr, info_size))
Santwona Behera0853ad62008-07-02 03:47:41 -07001023 return -EFAULT;
1024
Santwona Behera59089d82009-02-20 00:58:13 -08001025 if (info.cmd == ETHTOOL_GRXCLSRLALL) {
1026 if (info.rule_cnt > 0) {
Ben Hutchingsdb048b62010-06-28 08:44:07 +00001027 if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
Kees Cookae6df5f2010-10-07 10:03:48 +00001028 rule_buf = kzalloc(info.rule_cnt * sizeof(u32),
Ben Hutchingsdb048b62010-06-28 08:44:07 +00001029 GFP_USER);
Santwona Behera59089d82009-02-20 00:58:13 -08001030 if (!rule_buf)
1031 return -ENOMEM;
1032 }
1033 }
Santwona Behera0853ad62008-07-02 03:47:41 -07001034
Santwona Behera59089d82009-02-20 00:58:13 -08001035 ret = ops->get_rxnfc(dev, &info, rule_buf);
1036 if (ret < 0)
1037 goto err_out;
1038
1039 ret = -EFAULT;
Ben Hutchingsbf988432010-06-28 08:45:58 +00001040 if (copy_to_user(useraddr, &info, info_size))
Santwona Behera59089d82009-02-20 00:58:13 -08001041 goto err_out;
1042
1043 if (rule_buf) {
1044 useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
1045 if (copy_to_user(useraddr, rule_buf,
1046 info.rule_cnt * sizeof(u32)))
1047 goto err_out;
1048 }
1049 ret = 0;
1050
1051err_out:
Wei Yongjunc9cacec2009-03-31 15:06:26 -07001052 kfree(rule_buf);
Santwona Behera59089d82009-02-20 00:58:13 -08001053
1054 return ret;
Santwona Behera0853ad62008-07-02 03:47:41 -07001055}
1056
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301057static int ethtool_copy_validate_indir(u32 *indir, void __user *useraddr,
1058 struct ethtool_rxnfc *rx_rings,
1059 u32 size)
1060{
Ben Hutchingsfb95cd82014-05-15 00:46:45 +01001061 int i;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301062
1063 if (copy_from_user(indir, useraddr, size * sizeof(indir[0])))
Ben Hutchingsfb95cd82014-05-15 00:46:45 +01001064 return -EFAULT;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301065
1066 /* Validate ring indices */
Ben Hutchingsfb95cd82014-05-15 00:46:45 +01001067 for (i = 0; i < size; i++)
1068 if (indir[i] >= rx_rings->data)
1069 return -EINVAL;
1070
1071 return 0;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301072}
1073
Kim Jonesba905f52016-02-02 03:51:16 +00001074u8 netdev_rss_key[NETDEV_RSS_KEY_LEN] __read_mostly;
Eric Dumazet960fb622014-11-16 06:23:05 -08001075
1076void netdev_rss_key_fill(void *buffer, size_t len)
1077{
1078 BUG_ON(len > sizeof(netdev_rss_key));
1079 net_get_random_once(netdev_rss_key, sizeof(netdev_rss_key));
1080 memcpy(buffer, netdev_rss_key, len);
1081}
1082EXPORT_SYMBOL(netdev_rss_key_fill);
1083
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001084static int ethtool_get_max_rxfh_channel(struct net_device *dev, u32 *max)
1085{
1086 u32 dev_size, current_max = 0;
1087 u32 *indir;
1088 int ret;
1089
1090 if (!dev->ethtool_ops->get_rxfh_indir_size ||
1091 !dev->ethtool_ops->get_rxfh)
1092 return -EOPNOTSUPP;
1093 dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
1094 if (dev_size == 0)
1095 return -EOPNOTSUPP;
1096
1097 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
1098 if (!indir)
1099 return -ENOMEM;
1100
1101 ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
1102 if (ret)
1103 goto out;
1104
1105 while (dev_size--)
1106 current_max = max(current_max, indir[dev_size]);
1107
1108 *max = current_max;
1109
1110out:
1111 kfree(indir);
1112 return ret;
1113}
1114
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001115static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev,
1116 void __user *useraddr)
1117{
Ben Hutchings7850f632011-12-15 13:55:01 +00001118 u32 user_size, dev_size;
1119 u32 *indir;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001120 int ret;
1121
Ben Hutchings7850f632011-12-15 13:55:01 +00001122 if (!dev->ethtool_ops->get_rxfh_indir_size ||
Ben Hutchingsfe62d002014-05-15 01:25:27 +01001123 !dev->ethtool_ops->get_rxfh)
Ben Hutchings7850f632011-12-15 13:55:01 +00001124 return -EOPNOTSUPP;
1125 dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
1126 if (dev_size == 0)
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001127 return -EOPNOTSUPP;
1128
Ben Hutchings7850f632011-12-15 13:55:01 +00001129 if (copy_from_user(&user_size,
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001130 useraddr + offsetof(struct ethtool_rxfh_indir, size),
Ben Hutchings7850f632011-12-15 13:55:01 +00001131 sizeof(user_size)))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001132 return -EFAULT;
1133
Ben Hutchings7850f632011-12-15 13:55:01 +00001134 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size),
1135 &dev_size, sizeof(dev_size)))
1136 return -EFAULT;
1137
1138 /* If the user buffer size is 0, this is just a query for the
1139 * device table size. Otherwise, if it's smaller than the
1140 * device table size it's an error.
1141 */
1142 if (user_size < dev_size)
1143 return user_size == 0 ? 0 : -EINVAL;
1144
1145 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001146 if (!indir)
1147 return -ENOMEM;
1148
Eyal Perry892311f2014-12-02 18:12:10 +02001149 ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001150 if (ret)
1151 goto out;
1152
Ben Hutchings7850f632011-12-15 13:55:01 +00001153 if (copy_to_user(useraddr +
1154 offsetof(struct ethtool_rxfh_indir, ring_index[0]),
1155 indir, dev_size * sizeof(indir[0])))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001156 ret = -EFAULT;
1157
1158out:
1159 kfree(indir);
1160 return ret;
1161}
1162
1163static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev,
1164 void __user *useraddr)
1165{
Ben Hutchings7850f632011-12-15 13:55:01 +00001166 struct ethtool_rxnfc rx_rings;
1167 u32 user_size, dev_size, i;
1168 u32 *indir;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001169 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001170 int ret;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301171 u32 ringidx_offset = offsetof(struct ethtool_rxfh_indir, ring_index[0]);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001172
Ben Hutchingsfe62d002014-05-15 01:25:27 +01001173 if (!ops->get_rxfh_indir_size || !ops->set_rxfh ||
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001174 !ops->get_rxnfc)
Ben Hutchings7850f632011-12-15 13:55:01 +00001175 return -EOPNOTSUPP;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001176
1177 dev_size = ops->get_rxfh_indir_size(dev);
Ben Hutchings7850f632011-12-15 13:55:01 +00001178 if (dev_size == 0)
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001179 return -EOPNOTSUPP;
1180
Ben Hutchings7850f632011-12-15 13:55:01 +00001181 if (copy_from_user(&user_size,
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001182 useraddr + offsetof(struct ethtool_rxfh_indir, size),
Ben Hutchings7850f632011-12-15 13:55:01 +00001183 sizeof(user_size)))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001184 return -EFAULT;
1185
Ben Hutchings278bc422011-12-15 13:56:49 +00001186 if (user_size != 0 && user_size != dev_size)
Ben Hutchings7850f632011-12-15 13:55:01 +00001187 return -EINVAL;
1188
1189 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001190 if (!indir)
1191 return -ENOMEM;
1192
Ben Hutchings7850f632011-12-15 13:55:01 +00001193 rx_rings.cmd = ETHTOOL_GRXRINGS;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001194 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
Ben Hutchings7850f632011-12-15 13:55:01 +00001195 if (ret)
1196 goto out;
Ben Hutchings278bc422011-12-15 13:56:49 +00001197
1198 if (user_size == 0) {
1199 for (i = 0; i < dev_size; i++)
1200 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1201 } else {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301202 ret = ethtool_copy_validate_indir(indir,
1203 useraddr + ringidx_offset,
1204 &rx_rings,
1205 dev_size);
1206 if (ret)
Ben Hutchings7850f632011-12-15 13:55:01 +00001207 goto out;
Ben Hutchings7850f632011-12-15 13:55:01 +00001208 }
1209
Eyal Perry892311f2014-12-02 18:12:10 +02001210 ret = ops->set_rxfh(dev, indir, NULL, ETH_RSS_HASH_NO_CHANGE);
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001211 if (ret)
1212 goto out;
1213
1214 /* indicate whether rxfh was set to default */
1215 if (user_size == 0)
1216 dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1217 else
1218 dev->priv_flags |= IFF_RXFH_CONFIGURED;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001219
1220out:
1221 kfree(indir);
1222 return ret;
1223}
1224
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301225static noinline_for_stack int ethtool_get_rxfh(struct net_device *dev,
1226 void __user *useraddr)
1227{
1228 int ret;
1229 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001230 u32 user_indir_size, user_key_size;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301231 u32 dev_indir_size = 0, dev_key_size = 0;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001232 struct ethtool_rxfh rxfh;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301233 u32 total_size;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001234 u32 indir_bytes;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301235 u32 *indir = NULL;
Eyal Perry892311f2014-12-02 18:12:10 +02001236 u8 dev_hfunc = 0;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301237 u8 *hkey = NULL;
1238 u8 *rss_config;
1239
Eyal Perry892311f2014-12-02 18:12:10 +02001240 if (!ops->get_rxfh)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301241 return -EOPNOTSUPP;
1242
1243 if (ops->get_rxfh_indir_size)
1244 dev_indir_size = ops->get_rxfh_indir_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301245 if (ops->get_rxfh_key_size)
1246 dev_key_size = ops->get_rxfh_key_size(dev);
1247
Ben Hutchingsf062a382014-05-15 16:28:07 +01001248 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301249 return -EFAULT;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001250 user_indir_size = rxfh.indir_size;
1251 user_key_size = rxfh.key_size;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301252
Ben Hutchingsf062a382014-05-15 16:28:07 +01001253 /* Check that reserved fields are 0 for now */
Eyal Perry892311f2014-12-02 18:12:10 +02001254 if (rxfh.rss_context || rxfh.rsvd8[0] || rxfh.rsvd8[1] ||
1255 rxfh.rsvd8[2] || rxfh.rsvd32)
Ben Hutchingsf062a382014-05-15 16:28:07 +01001256 return -EINVAL;
1257
1258 rxfh.indir_size = dev_indir_size;
1259 rxfh.key_size = dev_key_size;
1260 if (copy_to_user(useraddr, &rxfh, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301261 return -EFAULT;
1262
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301263 if ((user_indir_size && (user_indir_size != dev_indir_size)) ||
1264 (user_key_size && (user_key_size != dev_key_size)))
1265 return -EINVAL;
1266
1267 indir_bytes = user_indir_size * sizeof(indir[0]);
1268 total_size = indir_bytes + user_key_size;
1269 rss_config = kzalloc(total_size, GFP_USER);
1270 if (!rss_config)
1271 return -ENOMEM;
1272
1273 if (user_indir_size)
1274 indir = (u32 *)rss_config;
1275
1276 if (user_key_size)
1277 hkey = rss_config + indir_bytes;
1278
Eyal Perry892311f2014-12-02 18:12:10 +02001279 ret = dev->ethtool_ops->get_rxfh(dev, indir, hkey, &dev_hfunc);
1280 if (ret)
1281 goto out;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301282
Eyal Perry892311f2014-12-02 18:12:10 +02001283 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, hfunc),
1284 &dev_hfunc, sizeof(rxfh.hfunc))) {
1285 ret = -EFAULT;
1286 } else if (copy_to_user(useraddr +
1287 offsetof(struct ethtool_rxfh, rss_config[0]),
1288 rss_config, total_size)) {
1289 ret = -EFAULT;
1290 }
1291out:
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301292 kfree(rss_config);
1293
1294 return ret;
1295}
1296
1297static noinline_for_stack int ethtool_set_rxfh(struct net_device *dev,
1298 void __user *useraddr)
1299{
1300 int ret;
1301 const struct ethtool_ops *ops = dev->ethtool_ops;
1302 struct ethtool_rxnfc rx_rings;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001303 struct ethtool_rxfh rxfh;
1304 u32 dev_indir_size = 0, dev_key_size = 0, i;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301305 u32 *indir = NULL, indir_bytes = 0;
1306 u8 *hkey = NULL;
1307 u8 *rss_config;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301308 u32 rss_cfg_offset = offsetof(struct ethtool_rxfh, rss_config[0]);
1309
Eyal Perry892311f2014-12-02 18:12:10 +02001310 if (!ops->get_rxnfc || !ops->set_rxfh)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301311 return -EOPNOTSUPP;
1312
1313 if (ops->get_rxfh_indir_size)
1314 dev_indir_size = ops->get_rxfh_indir_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301315 if (ops->get_rxfh_key_size)
Dan Carpenterd340c862015-02-20 13:54:05 +03001316 dev_key_size = ops->get_rxfh_key_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301317
Ben Hutchingsf062a382014-05-15 16:28:07 +01001318 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301319 return -EFAULT;
1320
Ben Hutchingsf062a382014-05-15 16:28:07 +01001321 /* Check that reserved fields are 0 for now */
Eyal Perry892311f2014-12-02 18:12:10 +02001322 if (rxfh.rss_context || rxfh.rsvd8[0] || rxfh.rsvd8[1] ||
1323 rxfh.rsvd8[2] || rxfh.rsvd32)
Ben Hutchingsf062a382014-05-15 16:28:07 +01001324 return -EINVAL;
1325
Eyal Perry892311f2014-12-02 18:12:10 +02001326 /* If either indir, hash key or function is valid, proceed further.
1327 * Must request at least one change: indir size, hash key or function.
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301328 */
Ben Hutchingsf062a382014-05-15 16:28:07 +01001329 if ((rxfh.indir_size &&
1330 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE &&
1331 rxfh.indir_size != dev_indir_size) ||
1332 (rxfh.key_size && (rxfh.key_size != dev_key_size)) ||
1333 (rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE &&
Eyal Perry892311f2014-12-02 18:12:10 +02001334 rxfh.key_size == 0 && rxfh.hfunc == ETH_RSS_HASH_NO_CHANGE))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301335 return -EINVAL;
1336
Ben Hutchingsf062a382014-05-15 16:28:07 +01001337 if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301338 indir_bytes = dev_indir_size * sizeof(indir[0]);
1339
Ben Hutchingsf062a382014-05-15 16:28:07 +01001340 rss_config = kzalloc(indir_bytes + rxfh.key_size, GFP_USER);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301341 if (!rss_config)
1342 return -ENOMEM;
1343
1344 rx_rings.cmd = ETHTOOL_GRXRINGS;
1345 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
1346 if (ret)
1347 goto out;
1348
Ben Hutchingsf062a382014-05-15 16:28:07 +01001349 /* rxfh.indir_size == 0 means reset the indir table to default.
1350 * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301351 */
Ben Hutchingsf062a382014-05-15 16:28:07 +01001352 if (rxfh.indir_size &&
1353 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301354 indir = (u32 *)rss_config;
1355 ret = ethtool_copy_validate_indir(indir,
1356 useraddr + rss_cfg_offset,
1357 &rx_rings,
Ben Hutchingsf062a382014-05-15 16:28:07 +01001358 rxfh.indir_size);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301359 if (ret)
1360 goto out;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001361 } else if (rxfh.indir_size == 0) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301362 indir = (u32 *)rss_config;
1363 for (i = 0; i < dev_indir_size; i++)
1364 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1365 }
1366
Ben Hutchingsf062a382014-05-15 16:28:07 +01001367 if (rxfh.key_size) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301368 hkey = rss_config + indir_bytes;
1369 if (copy_from_user(hkey,
1370 useraddr + rss_cfg_offset + indir_bytes,
Ben Hutchingsf062a382014-05-15 16:28:07 +01001371 rxfh.key_size)) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301372 ret = -EFAULT;
1373 goto out;
1374 }
1375 }
1376
Eyal Perry892311f2014-12-02 18:12:10 +02001377 ret = ops->set_rxfh(dev, indir, hkey, rxfh.hfunc);
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001378 if (ret)
1379 goto out;
1380
1381 /* indicate whether rxfh was set to default */
1382 if (rxfh.indir_size == 0)
1383 dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1384 else if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
1385 dev->priv_flags |= IFF_RXFH_CONFIGURED;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301386
1387out:
1388 kfree(rss_config);
1389 return ret;
1390}
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
1393{
1394 struct ethtool_regs regs;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001395 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 void *regbuf;
1397 int reglen, ret;
1398
1399 if (!ops->get_regs || !ops->get_regs_len)
1400 return -EOPNOTSUPP;
1401
1402 if (copy_from_user(&regs, useraddr, sizeof(regs)))
1403 return -EFAULT;
1404
1405 reglen = ops->get_regs_len(dev);
1406 if (regs.len > reglen)
1407 regs.len = reglen;
1408
Stanislaw Gruszka3808d342017-02-02 13:32:10 +01001409 regbuf = NULL;
1410 if (reglen) {
1411 regbuf = vzalloc(reglen);
1412 if (!regbuf)
1413 return -ENOMEM;
1414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416 ops->get_regs(dev, &regs, regbuf);
1417
1418 ret = -EFAULT;
1419 if (copy_to_user(useraddr, &regs, sizeof(regs)))
1420 goto out;
1421 useraddr += offsetof(struct ethtool_regs, data);
Ben Hutchings67ae7cf2011-07-21 15:25:30 -07001422 if (regbuf && copy_to_user(useraddr, regbuf, regs.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 goto out;
1424 ret = 0;
1425
1426 out:
Ben Hutchingsa77f5db2010-09-20 08:42:17 +00001427 vfree(regbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return ret;
1429}
1430
Ben Hutchingsd73d3a82009-10-05 10:59:58 +00001431static int ethtool_reset(struct net_device *dev, char __user *useraddr)
1432{
1433 struct ethtool_value reset;
1434 int ret;
1435
1436 if (!dev->ethtool_ops->reset)
1437 return -EOPNOTSUPP;
1438
1439 if (copy_from_user(&reset, useraddr, sizeof(reset)))
1440 return -EFAULT;
1441
1442 ret = dev->ethtool_ops->reset(dev, &reset.data);
1443 if (ret)
1444 return ret;
1445
1446 if (copy_to_user(useraddr, &reset, sizeof(reset)))
1447 return -EFAULT;
1448 return 0;
1449}
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
1452{
Roland Dreier8e557422010-02-11 12:14:23 -08001453 struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 if (!dev->ethtool_ops->get_wol)
1456 return -EOPNOTSUPP;
1457
1458 dev->ethtool_ops->get_wol(dev, &wol);
1459
1460 if (copy_to_user(useraddr, &wol, sizeof(wol)))
1461 return -EFAULT;
1462 return 0;
1463}
1464
1465static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
1466{
1467 struct ethtool_wolinfo wol;
1468
1469 if (!dev->ethtool_ops->set_wol)
1470 return -EOPNOTSUPP;
1471
1472 if (copy_from_user(&wol, useraddr, sizeof(wol)))
1473 return -EFAULT;
1474
1475 return dev->ethtool_ops->set_wol(dev, &wol);
1476}
1477
Yuval Mintz80f12ec2012-06-06 17:13:06 +00001478static int ethtool_get_eee(struct net_device *dev, char __user *useraddr)
1479{
1480 struct ethtool_eee edata;
1481 int rc;
1482
1483 if (!dev->ethtool_ops->get_eee)
1484 return -EOPNOTSUPP;
1485
1486 memset(&edata, 0, sizeof(struct ethtool_eee));
1487 edata.cmd = ETHTOOL_GEEE;
1488 rc = dev->ethtool_ops->get_eee(dev, &edata);
1489
1490 if (rc)
1491 return rc;
1492
1493 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1494 return -EFAULT;
1495
1496 return 0;
1497}
1498
1499static int ethtool_set_eee(struct net_device *dev, char __user *useraddr)
1500{
1501 struct ethtool_eee edata;
1502
1503 if (!dev->ethtool_ops->set_eee)
1504 return -EOPNOTSUPP;
1505
1506 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1507 return -EFAULT;
1508
1509 return dev->ethtool_ops->set_eee(dev, &edata);
1510}
1511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512static int ethtool_nway_reset(struct net_device *dev)
1513{
1514 if (!dev->ethtool_ops->nway_reset)
1515 return -EOPNOTSUPP;
1516
1517 return dev->ethtool_ops->nway_reset(dev);
1518}
1519
Ben Hutchingse596e6e2010-12-09 12:08:35 +00001520static int ethtool_get_link(struct net_device *dev, char __user *useraddr)
1521{
1522 struct ethtool_value edata = { .cmd = ETHTOOL_GLINK };
1523
1524 if (!dev->ethtool_ops->get_link)
1525 return -EOPNOTSUPP;
1526
1527 edata.data = netif_running(dev) && dev->ethtool_ops->get_link(dev);
1528
1529 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1530 return -EFAULT;
1531 return 0;
1532}
1533
Ben Hutchings081d0942012-04-12 00:42:12 +00001534static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr,
1535 int (*getter)(struct net_device *,
1536 struct ethtool_eeprom *, u8 *),
1537 u32 total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
1539 struct ethtool_eeprom eeprom;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001540 void __user *userbuf = useraddr + sizeof(eeprom);
1541 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 u8 *data;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001543 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1546 return -EFAULT;
1547
1548 /* Check for wrap and zero */
1549 if (eeprom.offset + eeprom.len <= eeprom.offset)
1550 return -EINVAL;
1551
1552 /* Check for exceeding total eeprom len */
Ben Hutchings081d0942012-04-12 00:42:12 +00001553 if (eeprom.offset + eeprom.len > total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 return -EINVAL;
1555
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001556 data = kmalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (!data)
1558 return -ENOMEM;
1559
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001560 bytes_remaining = eeprom.len;
1561 while (bytes_remaining > 0) {
1562 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Ben Hutchings081d0942012-04-12 00:42:12 +00001564 ret = getter(dev, &eeprom, data);
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001565 if (ret)
1566 break;
1567 if (copy_to_user(userbuf, data, eeprom.len)) {
1568 ret = -EFAULT;
1569 break;
1570 }
1571 userbuf += eeprom.len;
1572 eeprom.offset += eeprom.len;
1573 bytes_remaining -= eeprom.len;
1574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Mandeep Singh Bainesc5835df2008-04-24 20:55:56 -07001576 eeprom.len = userbuf - (useraddr + sizeof(eeprom));
1577 eeprom.offset -= eeprom.len;
1578 if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
1579 ret = -EFAULT;
1580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 kfree(data);
1582 return ret;
1583}
1584
Ben Hutchings081d0942012-04-12 00:42:12 +00001585static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
1586{
1587 const struct ethtool_ops *ops = dev->ethtool_ops;
1588
Guenter Roecke0fb6fb2014-10-30 20:50:15 -07001589 if (!ops->get_eeprom || !ops->get_eeprom_len ||
1590 !ops->get_eeprom_len(dev))
Ben Hutchings081d0942012-04-12 00:42:12 +00001591 return -EOPNOTSUPP;
1592
1593 return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom,
1594 ops->get_eeprom_len(dev));
1595}
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
1598{
1599 struct ethtool_eeprom eeprom;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001600 const struct ethtool_ops *ops = dev->ethtool_ops;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001601 void __user *userbuf = useraddr + sizeof(eeprom);
1602 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 u8 *data;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001604 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Guenter Roecke0fb6fb2014-10-30 20:50:15 -07001606 if (!ops->set_eeprom || !ops->get_eeprom_len ||
1607 !ops->get_eeprom_len(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return -EOPNOTSUPP;
1609
1610 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1611 return -EFAULT;
1612
1613 /* Check for wrap and zero */
1614 if (eeprom.offset + eeprom.len <= eeprom.offset)
1615 return -EINVAL;
1616
1617 /* Check for exceeding total eeprom len */
1618 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
1619 return -EINVAL;
1620
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001621 data = kmalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 if (!data)
1623 return -ENOMEM;
1624
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001625 bytes_remaining = eeprom.len;
1626 while (bytes_remaining > 0) {
1627 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001629 if (copy_from_user(data, userbuf, eeprom.len)) {
1630 ret = -EFAULT;
1631 break;
1632 }
1633 ret = ops->set_eeprom(dev, &eeprom, data);
1634 if (ret)
1635 break;
1636 userbuf += eeprom.len;
1637 eeprom.offset += eeprom.len;
1638 bytes_remaining -= eeprom.len;
1639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 kfree(data);
1642 return ret;
1643}
1644
chavey97f8aef2010-04-07 21:54:42 -07001645static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
1646 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Roland Dreier8e557422010-02-11 12:14:23 -08001648 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 if (!dev->ethtool_ops->get_coalesce)
1651 return -EOPNOTSUPP;
1652
1653 dev->ethtool_ops->get_coalesce(dev, &coalesce);
1654
1655 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
1656 return -EFAULT;
1657 return 0;
1658}
1659
chavey97f8aef2010-04-07 21:54:42 -07001660static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
1661 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662{
1663 struct ethtool_coalesce coalesce;
1664
David S. Millerfa04ae52005-06-06 15:07:19 -07001665 if (!dev->ethtool_ops->set_coalesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 return -EOPNOTSUPP;
1667
1668 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
1669 return -EFAULT;
1670
1671 return dev->ethtool_ops->set_coalesce(dev, &coalesce);
1672}
1673
1674static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
1675{
Roland Dreier8e557422010-02-11 12:14:23 -08001676 struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 if (!dev->ethtool_ops->get_ringparam)
1679 return -EOPNOTSUPP;
1680
1681 dev->ethtool_ops->get_ringparam(dev, &ringparam);
1682
1683 if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
1684 return -EFAULT;
1685 return 0;
1686}
1687
1688static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
1689{
Eugenia Emantayev37e2d992018-01-08 16:00:24 +02001690 struct ethtool_ringparam ringparam, max = { .cmd = ETHTOOL_GRINGPARAM };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Eugenia Emantayev37e2d992018-01-08 16:00:24 +02001692 if (!dev->ethtool_ops->set_ringparam || !dev->ethtool_ops->get_ringparam)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return -EOPNOTSUPP;
1694
1695 if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
1696 return -EFAULT;
1697
Eugenia Emantayev37e2d992018-01-08 16:00:24 +02001698 dev->ethtool_ops->get_ringparam(dev, &max);
1699
1700 /* ensure new ring parameters are within the maximums */
1701 if (ringparam.rx_pending > max.rx_max_pending ||
1702 ringparam.rx_mini_pending > max.rx_mini_max_pending ||
1703 ringparam.rx_jumbo_pending > max.rx_jumbo_max_pending ||
1704 ringparam.tx_pending > max.tx_max_pending)
1705 return -EINVAL;
1706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 return dev->ethtool_ops->set_ringparam(dev, &ringparam);
1708}
1709
amit salecha8b5933c2011-04-07 01:58:42 +00001710static noinline_for_stack int ethtool_get_channels(struct net_device *dev,
1711 void __user *useraddr)
1712{
1713 struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
1714
1715 if (!dev->ethtool_ops->get_channels)
1716 return -EOPNOTSUPP;
1717
1718 dev->ethtool_ops->get_channels(dev, &channels);
1719
1720 if (copy_to_user(useraddr, &channels, sizeof(channels)))
1721 return -EFAULT;
1722 return 0;
1723}
1724
1725static noinline_for_stack int ethtool_set_channels(struct net_device *dev,
1726 void __user *useraddr)
1727{
Eran Ben Elisha31a86d12017-01-17 19:19:17 +02001728 struct ethtool_channels channels, max = { .cmd = ETHTOOL_GCHANNELS };
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001729 u32 max_rx_in_use = 0;
amit salecha8b5933c2011-04-07 01:58:42 +00001730
Keller, Jacob E8bf36862016-02-08 16:05:04 -08001731 if (!dev->ethtool_ops->set_channels || !dev->ethtool_ops->get_channels)
amit salecha8b5933c2011-04-07 01:58:42 +00001732 return -EOPNOTSUPP;
1733
1734 if (copy_from_user(&channels, useraddr, sizeof(channels)))
1735 return -EFAULT;
1736
Keller, Jacob E8bf36862016-02-08 16:05:04 -08001737 dev->ethtool_ops->get_channels(dev, &max);
1738
1739 /* ensure new counts are within the maximums */
1740 if ((channels.rx_count > max.max_rx) ||
1741 (channels.tx_count > max.max_tx) ||
1742 (channels.combined_count > max.max_combined) ||
1743 (channels.other_count > max.max_other))
1744 return -EINVAL;
1745
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001746 /* ensure the new Rx count fits within the configured Rx flow
1747 * indirection table settings */
1748 if (netif_is_rxfh_configured(dev) &&
1749 !ethtool_get_max_rxfh_channel(dev, &max_rx_in_use) &&
1750 (channels.combined_count + channels.rx_count) <= max_rx_in_use)
1751 return -EINVAL;
1752
amit salecha8b5933c2011-04-07 01:58:42 +00001753 return dev->ethtool_ops->set_channels(dev, &channels);
1754}
1755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
1757{
1758 struct ethtool_pauseparam pauseparam = { ETHTOOL_GPAUSEPARAM };
1759
1760 if (!dev->ethtool_ops->get_pauseparam)
1761 return -EOPNOTSUPP;
1762
1763 dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
1764
1765 if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
1766 return -EFAULT;
1767 return 0;
1768}
1769
1770static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
1771{
1772 struct ethtool_pauseparam pauseparam;
1773
Jeff Garzike1b90c42006-07-17 12:54:40 -04001774 if (!dev->ethtool_ops->set_pauseparam)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 return -EOPNOTSUPP;
1776
1777 if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
1778 return -EFAULT;
1779
1780 return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
1781}
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
1784{
1785 struct ethtool_test test;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001786 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -07001788 int ret, test_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001790 if (!ops->self_test || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -07001791 return -EOPNOTSUPP;
1792
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001793 test_len = ops->get_sset_count(dev, ETH_SS_TEST);
Jeff Garzikff03d492007-08-15 16:01:08 -07001794 if (test_len < 0)
1795 return test_len;
1796 WARN_ON(test_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 if (copy_from_user(&test, useraddr, sizeof(test)))
1799 return -EFAULT;
1800
Jeff Garzikff03d492007-08-15 16:01:08 -07001801 test.len = test_len;
1802 data = kmalloc(test_len * sizeof(u64), GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 if (!data)
1804 return -ENOMEM;
1805
1806 ops->self_test(dev, &test, data);
1807
1808 ret = -EFAULT;
1809 if (copy_to_user(useraddr, &test, sizeof(test)))
1810 goto out;
1811 useraddr += sizeof(test);
1812 if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
1813 goto out;
1814 ret = 0;
1815
1816 out:
1817 kfree(data);
1818 return ret;
1819}
1820
1821static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
1822{
1823 struct ethtool_gstrings gstrings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 u8 *data;
1825 int ret;
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
1828 return -EFAULT;
1829
Michał Mirosław340ae162011-02-15 16:59:16 +00001830 ret = __ethtool_get_sset_count(dev, gstrings.string_set);
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001831 if (ret < 0)
1832 return ret;
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001833 if (ret > S32_MAX / ETH_GSTRING_LEN)
1834 return -ENOMEM;
1835 WARN_ON_ONCE(!ret);
Jeff Garzikff03d492007-08-15 16:01:08 -07001836
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001837 gstrings.len = ret;
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001838 data = vzalloc(gstrings.len * ETH_GSTRING_LEN);
1839 if (gstrings.len && !data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 return -ENOMEM;
1841
Michał Mirosław340ae162011-02-15 16:59:16 +00001842 __ethtool_get_strings(dev, gstrings.string_set, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844 ret = -EFAULT;
1845 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
1846 goto out;
1847 useraddr += sizeof(gstrings);
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001848 if (gstrings.len &&
1849 copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 goto out;
1851 ret = 0;
1852
Michał Mirosław340ae162011-02-15 16:59:16 +00001853out:
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001854 vfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return ret;
1856}
1857
1858static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
1859{
1860 struct ethtool_value id;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001861 static bool busy;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001862 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001863 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001865 if (!ops->set_phys_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return -EOPNOTSUPP;
1867
Ben Hutchings68f512f2011-04-02 00:35:15 +01001868 if (busy)
1869 return -EBUSY;
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 if (copy_from_user(&id, useraddr, sizeof(id)))
1872 return -EFAULT;
1873
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001874 rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE);
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001875 if (rc < 0)
Ben Hutchings68f512f2011-04-02 00:35:15 +01001876 return rc;
1877
1878 /* Drop the RTNL lock while waiting, but prevent reentry or
1879 * removal of the device.
1880 */
1881 busy = true;
1882 dev_hold(dev);
1883 rtnl_unlock();
1884
1885 if (rc == 0) {
1886 /* Driver will handle this itself */
1887 schedule_timeout_interruptible(
Allan, Bruce W143780c2011-04-11 13:01:59 +00001888 id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001889 } else {
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001890 /* Driver expects to be called at twice the frequency in rc */
1891 int n = rc * 2, i, interval = HZ / n;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001892
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001893 /* Count down seconds */
1894 do {
1895 /* Count down iterations per second */
1896 i = n;
1897 do {
1898 rtnl_lock();
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001899 rc = ops->set_phys_id(dev,
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001900 (i & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON);
1901 rtnl_unlock();
1902 if (rc)
1903 break;
1904 schedule_timeout_interruptible(interval);
1905 } while (!signal_pending(current) && --i != 0);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001906 } while (!signal_pending(current) &&
1907 (id.data == 0 || --id.data != 0));
1908 }
1909
1910 rtnl_lock();
1911 dev_put(dev);
1912 busy = false;
1913
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001914 (void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001915 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916}
1917
1918static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
1919{
1920 struct ethtool_stats stats;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001921 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -07001923 int ret, n_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001925 if (!ops->get_ethtool_stats || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -07001926 return -EOPNOTSUPP;
1927
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001928 n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
Jeff Garzikff03d492007-08-15 16:01:08 -07001929 if (n_stats < 0)
1930 return n_stats;
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001931 if (n_stats > S32_MAX / sizeof(u64))
1932 return -ENOMEM;
1933 WARN_ON_ONCE(!n_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1935 return -EFAULT;
1936
Jeff Garzikff03d492007-08-15 16:01:08 -07001937 stats.n_stats = n_stats;
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001938 data = vzalloc(n_stats * sizeof(u64));
1939 if (n_stats && !data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 return -ENOMEM;
1941
1942 ops->get_ethtool_stats(dev, &stats, data);
1943
1944 ret = -EFAULT;
1945 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1946 goto out;
1947 useraddr += sizeof(stats);
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001948 if (n_stats && copy_to_user(useraddr, data, n_stats * sizeof(u64)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 goto out;
1950 ret = 0;
1951
1952 out:
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001953 vfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 return ret;
1955}
1956
Andrew Lunnf3a40942015-12-30 16:28:25 +01001957static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr)
1958{
1959 struct ethtool_stats stats;
1960 struct phy_device *phydev = dev->phydev;
1961 u64 *data;
1962 int ret, n_stats;
1963
1964 if (!phydev)
1965 return -EOPNOTSUPP;
1966
1967 n_stats = phy_get_sset_count(phydev);
Andrew Lunnf3a40942015-12-30 16:28:25 +01001968 if (n_stats < 0)
1969 return n_stats;
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001970 if (n_stats > S32_MAX / sizeof(u64))
1971 return -ENOMEM;
1972 WARN_ON_ONCE(!n_stats);
Andrew Lunnf3a40942015-12-30 16:28:25 +01001973
1974 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1975 return -EFAULT;
1976
1977 stats.n_stats = n_stats;
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001978 data = vzalloc(n_stats * sizeof(u64));
1979 if (n_stats && !data)
Andrew Lunnf3a40942015-12-30 16:28:25 +01001980 return -ENOMEM;
1981
1982 mutex_lock(&phydev->lock);
1983 phydev->drv->get_stats(phydev, &stats, data);
1984 mutex_unlock(&phydev->lock);
1985
1986 ret = -EFAULT;
1987 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1988 goto out;
1989 useraddr += sizeof(stats);
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001990 if (n_stats && copy_to_user(useraddr, data, n_stats * sizeof(u64)))
Andrew Lunnf3a40942015-12-30 16:28:25 +01001991 goto out;
1992 ret = 0;
1993
1994 out:
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001995 vfree(data);
Andrew Lunnf3a40942015-12-30 16:28:25 +01001996 return ret;
1997}
1998
viro@ftp.linux.org.uk0bf0519d2005-09-05 03:26:18 +01001999static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
Jon Wetzela6f9a702005-08-20 17:15:54 -07002000{
2001 struct ethtool_perm_addr epaddr;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002002
Matthew Wilcox313674a2007-07-31 14:00:29 -07002003 if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
Jon Wetzela6f9a702005-08-20 17:15:54 -07002004 return -EFAULT;
2005
Matthew Wilcox313674a2007-07-31 14:00:29 -07002006 if (epaddr.size < dev->addr_len)
2007 return -ETOOSMALL;
2008 epaddr.size = dev->addr_len;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002009
Jon Wetzela6f9a702005-08-20 17:15:54 -07002010 if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
Matthew Wilcox313674a2007-07-31 14:00:29 -07002011 return -EFAULT;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002012 useraddr += sizeof(epaddr);
Matthew Wilcox313674a2007-07-31 14:00:29 -07002013 if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
2014 return -EFAULT;
2015 return 0;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002016}
2017
Jeff Garzik13c99b22007-08-15 16:01:56 -07002018static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
2019 u32 cmd, u32 (*actor)(struct net_device *))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002020{
Roland Dreier8e557422010-02-11 12:14:23 -08002021 struct ethtool_value edata = { .cmd = cmd };
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002022
Jeff Garzik13c99b22007-08-15 16:01:56 -07002023 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002024 return -EOPNOTSUPP;
2025
Jeff Garzik13c99b22007-08-15 16:01:56 -07002026 edata.data = actor(dev);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002027
2028 if (copy_to_user(useraddr, &edata, sizeof(edata)))
2029 return -EFAULT;
2030 return 0;
2031}
2032
Jeff Garzik13c99b22007-08-15 16:01:56 -07002033static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
2034 void (*actor)(struct net_device *, u32))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002035{
2036 struct ethtool_value edata;
2037
Jeff Garzik13c99b22007-08-15 16:01:56 -07002038 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002039 return -EOPNOTSUPP;
2040
2041 if (copy_from_user(&edata, useraddr, sizeof(edata)))
2042 return -EFAULT;
2043
Jeff Garzik13c99b22007-08-15 16:01:56 -07002044 actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07002045 return 0;
2046}
2047
Jeff Garzik13c99b22007-08-15 16:01:56 -07002048static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
2049 int (*actor)(struct net_device *, u32))
Jeff Garzik339bf022007-08-15 16:01:32 -07002050{
2051 struct ethtool_value edata;
2052
Jeff Garzik13c99b22007-08-15 16:01:56 -07002053 if (!actor)
Jeff Garzik339bf022007-08-15 16:01:32 -07002054 return -EOPNOTSUPP;
2055
2056 if (copy_from_user(&edata, useraddr, sizeof(edata)))
2057 return -EFAULT;
2058
Jeff Garzik13c99b22007-08-15 16:01:56 -07002059 return actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07002060}
2061
chavey97f8aef2010-04-07 21:54:42 -07002062static noinline_for_stack int ethtool_flash_device(struct net_device *dev,
2063 char __user *useraddr)
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00002064{
2065 struct ethtool_flash efl;
2066
2067 if (copy_from_user(&efl, useraddr, sizeof(efl)))
2068 return -EFAULT;
2069
2070 if (!dev->ethtool_ops->flash_device)
2071 return -EOPNOTSUPP;
2072
Ben Hutchings786f5282012-02-01 09:32:25 +00002073 efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0;
2074
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00002075 return dev->ethtool_ops->flash_device(dev, &efl);
2076}
2077
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002078static int ethtool_set_dump(struct net_device *dev,
2079 void __user *useraddr)
2080{
2081 struct ethtool_dump dump;
2082
2083 if (!dev->ethtool_ops->set_dump)
2084 return -EOPNOTSUPP;
2085
2086 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2087 return -EFAULT;
2088
2089 return dev->ethtool_ops->set_dump(dev, &dump);
2090}
2091
2092static int ethtool_get_dump_flag(struct net_device *dev,
2093 void __user *useraddr)
2094{
2095 int ret;
2096 struct ethtool_dump dump;
2097 const struct ethtool_ops *ops = dev->ethtool_ops;
2098
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00002099 if (!ops->get_dump_flag)
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002100 return -EOPNOTSUPP;
2101
2102 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2103 return -EFAULT;
2104
2105 ret = ops->get_dump_flag(dev, &dump);
2106 if (ret)
2107 return ret;
2108
2109 if (copy_to_user(useraddr, &dump, sizeof(dump)))
2110 return -EFAULT;
2111 return 0;
2112}
2113
2114static int ethtool_get_dump_data(struct net_device *dev,
2115 void __user *useraddr)
2116{
2117 int ret;
2118 __u32 len;
2119 struct ethtool_dump dump, tmp;
2120 const struct ethtool_ops *ops = dev->ethtool_ops;
2121 void *data = NULL;
2122
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00002123 if (!ops->get_dump_data || !ops->get_dump_flag)
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002124 return -EOPNOTSUPP;
2125
2126 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2127 return -EFAULT;
2128
2129 memset(&tmp, 0, sizeof(tmp));
2130 tmp.cmd = ETHTOOL_GET_DUMP_FLAG;
2131 ret = ops->get_dump_flag(dev, &tmp);
2132 if (ret)
2133 return ret;
2134
Michal Schmidtc590b5e2013-07-01 17:23:30 +02002135 len = min(tmp.len, dump.len);
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002136 if (!len)
2137 return -EFAULT;
2138
Michal Schmidtc590b5e2013-07-01 17:23:30 +02002139 /* Don't ever let the driver think there's more space available
2140 * than it requested with .get_dump_flag().
2141 */
2142 dump.len = len;
2143
2144 /* Always allocate enough space to hold the whole thing so that the
2145 * driver does not need to check the length and bother with partial
2146 * dumping.
2147 */
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002148 data = vzalloc(tmp.len);
2149 if (!data)
2150 return -ENOMEM;
2151 ret = ops->get_dump_data(dev, &dump, data);
2152 if (ret)
2153 goto out;
2154
Michal Schmidtc590b5e2013-07-01 17:23:30 +02002155 /* There are two sane possibilities:
2156 * 1. The driver's .get_dump_data() does not touch dump.len.
2157 * 2. Or it may set dump.len to how much it really writes, which
2158 * should be tmp.len (or len if it can do a partial dump).
2159 * In any case respond to userspace with the actual length of data
2160 * it's receiving.
2161 */
2162 WARN_ON(dump.len != len && dump.len != tmp.len);
2163 dump.len = len;
2164
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002165 if (copy_to_user(useraddr, &dump, sizeof(dump))) {
2166 ret = -EFAULT;
2167 goto out;
2168 }
2169 useraddr += offsetof(struct ethtool_dump, data);
2170 if (copy_to_user(useraddr, data, len))
2171 ret = -EFAULT;
2172out:
2173 vfree(data);
2174 return ret;
2175}
2176
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002177static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr)
2178{
2179 int err = 0;
2180 struct ethtool_ts_info info;
2181 const struct ethtool_ops *ops = dev->ethtool_ops;
2182 struct phy_device *phydev = dev->phydev;
2183
2184 memset(&info, 0, sizeof(info));
2185 info.cmd = ETHTOOL_GET_TS_INFO;
2186
2187 if (phydev && phydev->drv && phydev->drv->ts_info) {
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002188 err = phydev->drv->ts_info(phydev, &info);
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00002189 } else if (ops->get_ts_info) {
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002190 err = ops->get_ts_info(dev, &info);
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002191 } else {
2192 info.so_timestamping =
2193 SOF_TIMESTAMPING_RX_SOFTWARE |
2194 SOF_TIMESTAMPING_SOFTWARE;
2195 info.phc_index = -1;
2196 }
2197
2198 if (err)
2199 return err;
2200
2201 if (copy_to_user(useraddr, &info, sizeof(info)))
2202 err = -EFAULT;
2203
2204 return err;
2205}
2206
Ed Swierk2f438362015-01-02 17:27:56 -08002207static int __ethtool_get_module_info(struct net_device *dev,
2208 struct ethtool_modinfo *modinfo)
2209{
2210 const struct ethtool_ops *ops = dev->ethtool_ops;
2211 struct phy_device *phydev = dev->phydev;
2212
2213 if (phydev && phydev->drv && phydev->drv->module_info)
2214 return phydev->drv->module_info(phydev, modinfo);
2215
2216 if (ops->get_module_info)
2217 return ops->get_module_info(dev, modinfo);
2218
2219 return -EOPNOTSUPP;
2220}
2221
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002222static int ethtool_get_module_info(struct net_device *dev,
2223 void __user *useraddr)
2224{
2225 int ret;
2226 struct ethtool_modinfo modinfo;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002227
2228 if (copy_from_user(&modinfo, useraddr, sizeof(modinfo)))
2229 return -EFAULT;
2230
Ed Swierk2f438362015-01-02 17:27:56 -08002231 ret = __ethtool_get_module_info(dev, &modinfo);
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002232 if (ret)
2233 return ret;
2234
2235 if (copy_to_user(useraddr, &modinfo, sizeof(modinfo)))
2236 return -EFAULT;
2237
2238 return 0;
2239}
2240
Ed Swierk2f438362015-01-02 17:27:56 -08002241static int __ethtool_get_module_eeprom(struct net_device *dev,
2242 struct ethtool_eeprom *ee, u8 *data)
2243{
2244 const struct ethtool_ops *ops = dev->ethtool_ops;
2245 struct phy_device *phydev = dev->phydev;
2246
2247 if (phydev && phydev->drv && phydev->drv->module_eeprom)
2248 return phydev->drv->module_eeprom(phydev, ee, data);
2249
2250 if (ops->get_module_eeprom)
2251 return ops->get_module_eeprom(dev, ee, data);
2252
2253 return -EOPNOTSUPP;
2254}
2255
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002256static int ethtool_get_module_eeprom(struct net_device *dev,
2257 void __user *useraddr)
2258{
2259 int ret;
2260 struct ethtool_modinfo modinfo;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002261
Ed Swierk2f438362015-01-02 17:27:56 -08002262 ret = __ethtool_get_module_info(dev, &modinfo);
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002263 if (ret)
2264 return ret;
2265
Ed Swierk2f438362015-01-02 17:27:56 -08002266 return ethtool_get_any_eeprom(dev, useraddr,
2267 __ethtool_get_module_eeprom,
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002268 modinfo.eeprom_len);
2269}
2270
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302271static int ethtool_tunable_valid(const struct ethtool_tunable *tuna)
2272{
2273 switch (tuna->id) {
2274 case ETHTOOL_RX_COPYBREAK:
Eric Dumazet1255a502014-10-05 12:35:21 +03002275 case ETHTOOL_TX_COPYBREAK:
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302276 if (tuna->len != sizeof(u32) ||
2277 tuna->type_id != ETHTOOL_TUNABLE_U32)
2278 return -EINVAL;
2279 break;
2280 default:
2281 return -EINVAL;
2282 }
2283
2284 return 0;
2285}
2286
2287static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr)
2288{
2289 int ret;
2290 struct ethtool_tunable tuna;
2291 const struct ethtool_ops *ops = dev->ethtool_ops;
2292 void *data;
2293
2294 if (!ops->get_tunable)
2295 return -EOPNOTSUPP;
2296 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2297 return -EFAULT;
2298 ret = ethtool_tunable_valid(&tuna);
2299 if (ret)
2300 return ret;
2301 data = kmalloc(tuna.len, GFP_USER);
2302 if (!data)
2303 return -ENOMEM;
2304 ret = ops->get_tunable(dev, &tuna, data);
2305 if (ret)
2306 goto out;
2307 useraddr += sizeof(tuna);
2308 ret = -EFAULT;
2309 if (copy_to_user(useraddr, data, tuna.len))
2310 goto out;
2311 ret = 0;
2312
2313out:
2314 kfree(data);
2315 return ret;
2316}
2317
2318static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr)
2319{
2320 int ret;
2321 struct ethtool_tunable tuna;
2322 const struct ethtool_ops *ops = dev->ethtool_ops;
2323 void *data;
2324
2325 if (!ops->set_tunable)
2326 return -EOPNOTSUPP;
2327 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2328 return -EFAULT;
2329 ret = ethtool_tunable_valid(&tuna);
2330 if (ret)
2331 return ret;
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302332 useraddr += sizeof(tuna);
Al Viro30e7e3e2017-05-13 18:31:26 -04002333 data = memdup_user(useraddr, tuna.len);
2334 if (IS_ERR(data))
2335 return PTR_ERR(data);
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302336 ret = ops->set_tunable(dev, &tuna, data);
2337
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302338 kfree(data);
2339 return ret;
2340}
2341
Kan Liang421797b2016-02-19 09:24:02 -05002342static int ethtool_get_per_queue_coalesce(struct net_device *dev,
2343 void __user *useraddr,
2344 struct ethtool_per_queue_op *per_queue_opt)
2345{
2346 u32 bit;
2347 int ret;
2348 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2349
2350 if (!dev->ethtool_ops->get_per_queue_coalesce)
2351 return -EOPNOTSUPP;
2352
2353 useraddr += sizeof(*per_queue_opt);
2354
Yury Norov3aa56882018-02-06 15:38:06 -08002355 bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask,
2356 MAX_NUM_QUEUE);
Kan Liang421797b2016-02-19 09:24:02 -05002357
2358 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2359 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
2360
2361 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, &coalesce);
2362 if (ret != 0)
2363 return ret;
2364 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
2365 return -EFAULT;
2366 useraddr += sizeof(coalesce);
2367 }
2368
2369 return 0;
2370}
2371
Kan Liangf38d1382016-02-19 09:24:03 -05002372static int ethtool_set_per_queue_coalesce(struct net_device *dev,
2373 void __user *useraddr,
2374 struct ethtool_per_queue_op *per_queue_opt)
2375{
2376 u32 bit;
2377 int i, ret = 0;
2378 int n_queue;
2379 struct ethtool_coalesce *backup = NULL, *tmp = NULL;
2380 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2381
2382 if ((!dev->ethtool_ops->set_per_queue_coalesce) ||
2383 (!dev->ethtool_ops->get_per_queue_coalesce))
2384 return -EOPNOTSUPP;
2385
2386 useraddr += sizeof(*per_queue_opt);
2387
Yury Norov3aa56882018-02-06 15:38:06 -08002388 bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask, MAX_NUM_QUEUE);
Kan Liangf38d1382016-02-19 09:24:03 -05002389 n_queue = bitmap_weight(queue_mask, MAX_NUM_QUEUE);
2390 tmp = backup = kmalloc_array(n_queue, sizeof(*backup), GFP_KERNEL);
2391 if (!backup)
2392 return -ENOMEM;
2393
2394 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2395 struct ethtool_coalesce coalesce;
2396
2397 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, tmp);
2398 if (ret != 0)
2399 goto roll_back;
2400
2401 tmp++;
2402
2403 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) {
2404 ret = -EFAULT;
2405 goto roll_back;
2406 }
2407
2408 ret = dev->ethtool_ops->set_per_queue_coalesce(dev, bit, &coalesce);
2409 if (ret != 0)
2410 goto roll_back;
2411
2412 useraddr += sizeof(coalesce);
2413 }
2414
2415roll_back:
2416 if (ret != 0) {
2417 tmp = backup;
2418 for_each_set_bit(i, queue_mask, bit) {
2419 dev->ethtool_ops->set_per_queue_coalesce(dev, i, tmp);
2420 tmp++;
2421 }
2422 }
2423 kfree(backup);
2424
2425 return ret;
2426}
2427
Kan Liangac2c7ad2016-02-19 09:24:01 -05002428static int ethtool_set_per_queue(struct net_device *dev, void __user *useraddr)
2429{
2430 struct ethtool_per_queue_op per_queue_opt;
2431
2432 if (copy_from_user(&per_queue_opt, useraddr, sizeof(per_queue_opt)))
2433 return -EFAULT;
2434
2435 switch (per_queue_opt.sub_command) {
Kan Liang421797b2016-02-19 09:24:02 -05002436 case ETHTOOL_GCOALESCE:
2437 return ethtool_get_per_queue_coalesce(dev, useraddr, &per_queue_opt);
Kan Liangf38d1382016-02-19 09:24:03 -05002438 case ETHTOOL_SCOALESCE:
2439 return ethtool_set_per_queue_coalesce(dev, useraddr, &per_queue_opt);
Kan Liangac2c7ad2016-02-19 09:24:01 -05002440 default:
2441 return -EOPNOTSUPP;
2442 };
2443}
2444
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002445static int ethtool_phy_tunable_valid(const struct ethtool_tunable *tuna)
2446{
2447 switch (tuna->id) {
Raju Lakkaraju65feddd2016-11-17 13:07:23 +01002448 case ETHTOOL_PHY_DOWNSHIFT:
2449 if (tuna->len != sizeof(u8) ||
2450 tuna->type_id != ETHTOOL_TUNABLE_U8)
2451 return -EINVAL;
2452 break;
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002453 default:
2454 return -EINVAL;
2455 }
2456
2457 return 0;
2458}
2459
2460static int get_phy_tunable(struct net_device *dev, void __user *useraddr)
2461{
2462 int ret;
2463 struct ethtool_tunable tuna;
2464 struct phy_device *phydev = dev->phydev;
2465 void *data;
2466
2467 if (!(phydev && phydev->drv && phydev->drv->get_tunable))
2468 return -EOPNOTSUPP;
2469
2470 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2471 return -EFAULT;
2472 ret = ethtool_phy_tunable_valid(&tuna);
2473 if (ret)
2474 return ret;
2475 data = kmalloc(tuna.len, GFP_USER);
2476 if (!data)
2477 return -ENOMEM;
Florian Fainelli4b652462016-11-22 13:55:31 -08002478 mutex_lock(&phydev->lock);
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002479 ret = phydev->drv->get_tunable(phydev, &tuna, data);
Florian Fainelli4b652462016-11-22 13:55:31 -08002480 mutex_unlock(&phydev->lock);
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002481 if (ret)
2482 goto out;
2483 useraddr += sizeof(tuna);
2484 ret = -EFAULT;
2485 if (copy_to_user(useraddr, data, tuna.len))
2486 goto out;
2487 ret = 0;
2488
2489out:
2490 kfree(data);
2491 return ret;
2492}
2493
2494static int set_phy_tunable(struct net_device *dev, void __user *useraddr)
2495{
2496 int ret;
2497 struct ethtool_tunable tuna;
2498 struct phy_device *phydev = dev->phydev;
2499 void *data;
2500
2501 if (!(phydev && phydev->drv && phydev->drv->set_tunable))
2502 return -EOPNOTSUPP;
2503 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2504 return -EFAULT;
2505 ret = ethtool_phy_tunable_valid(&tuna);
2506 if (ret)
2507 return ret;
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002508 useraddr += sizeof(tuna);
Al Viro30e7e3e2017-05-13 18:31:26 -04002509 data = memdup_user(useraddr, tuna.len);
2510 if (IS_ERR(data))
2511 return PTR_ERR(data);
Florian Fainelli4b652462016-11-22 13:55:31 -08002512 mutex_lock(&phydev->lock);
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002513 ret = phydev->drv->set_tunable(phydev, &tuna, data);
Florian Fainelli4b652462016-11-22 13:55:31 -08002514 mutex_unlock(&phydev->lock);
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002515
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002516 kfree(data);
2517 return ret;
2518}
2519
Vidya Sagar Ravipati1a5f3da2017-07-27 16:47:26 -07002520static int ethtool_get_fecparam(struct net_device *dev, void __user *useraddr)
2521{
2522 struct ethtool_fecparam fecparam = { ETHTOOL_GFECPARAM };
2523
2524 if (!dev->ethtool_ops->get_fecparam)
2525 return -EOPNOTSUPP;
2526
2527 dev->ethtool_ops->get_fecparam(dev, &fecparam);
2528
2529 if (copy_to_user(useraddr, &fecparam, sizeof(fecparam)))
2530 return -EFAULT;
2531 return 0;
2532}
2533
2534static int ethtool_set_fecparam(struct net_device *dev, void __user *useraddr)
2535{
2536 struct ethtool_fecparam fecparam;
2537
2538 if (!dev->ethtool_ops->set_fecparam)
2539 return -EOPNOTSUPP;
2540
2541 if (copy_from_user(&fecparam, useraddr, sizeof(fecparam)))
2542 return -EFAULT;
2543
2544 return dev->ethtool_ops->set_fecparam(dev, &fecparam);
2545}
2546
Yan Burman600fed52013-06-03 02:03:34 +00002547/* The main entry point in this file. Called from net/core/dev_ioctl.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
Eric W. Biederman881d9662007-09-17 11:56:21 -07002549int dev_ethtool(struct net *net, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550{
Eric W. Biederman881d9662007-09-17 11:56:21 -07002551 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 void __user *useraddr = ifr->ifr_data;
Kan Liangac2c7ad2016-02-19 09:24:01 -05002553 u32 ethcmd, sub_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 int rc;
Bjørn Morkb29d3142013-05-01 23:06:42 +00002555 netdev_features_t old_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 if (!dev || !netif_device_present(dev))
2558 return -ENODEV;
2559
chavey97f8aef2010-04-07 21:54:42 -07002560 if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 return -EFAULT;
2562
Kan Liangac2c7ad2016-02-19 09:24:01 -05002563 if (ethcmd == ETHTOOL_PERQUEUE) {
2564 if (copy_from_user(&sub_cmd, useraddr + sizeof(ethcmd), sizeof(sub_cmd)))
2565 return -EFAULT;
2566 } else {
2567 sub_cmd = ethcmd;
2568 }
Stephen Hemminger75f31232006-09-28 15:13:37 -07002569 /* Allow some commands to be done by anyone */
Kan Liangac2c7ad2016-02-19 09:24:01 -05002570 switch (sub_cmd) {
stephen hemminger0fdc1002010-08-23 10:24:18 +00002571 case ETHTOOL_GSET:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002572 case ETHTOOL_GDRVINFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002573 case ETHTOOL_GMSGLVL:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002574 case ETHTOOL_GLINK:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002575 case ETHTOOL_GCOALESCE:
2576 case ETHTOOL_GRINGPARAM:
2577 case ETHTOOL_GPAUSEPARAM:
2578 case ETHTOOL_GRXCSUM:
2579 case ETHTOOL_GTXCSUM:
2580 case ETHTOOL_GSG:
Michał Mirosławf80400a2012-01-22 00:20:40 +00002581 case ETHTOOL_GSSET_INFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002582 case ETHTOOL_GSTRINGS:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002583 case ETHTOOL_GSTATS:
Andrew Lunnf3a40942015-12-30 16:28:25 +01002584 case ETHTOOL_GPHYSTATS:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002585 case ETHTOOL_GTSO:
2586 case ETHTOOL_GPERMADDR:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002587 case ETHTOOL_GGSO:
stephen hemminger1cab8192010-02-11 13:48:29 +00002588 case ETHTOOL_GGRO:
Jeff Garzik339bf022007-08-15 16:01:32 -07002589 case ETHTOOL_GFLAGS:
2590 case ETHTOOL_GPFLAGS:
Santwona Behera0853ad62008-07-02 03:47:41 -07002591 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08002592 case ETHTOOL_GRXRINGS:
2593 case ETHTOOL_GRXCLSRLCNT:
2594 case ETHTOOL_GRXCLSRULE:
2595 case ETHTOOL_GRXCLSRLALL:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002596 case ETHTOOL_GRXFHINDIR:
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05302597 case ETHTOOL_GRSSH:
Michał Mirosław5455c692011-02-15 16:59:17 +00002598 case ETHTOOL_GFEATURES:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002599 case ETHTOOL_GCHANNELS:
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002600 case ETHTOOL_GET_TS_INFO:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002601 case ETHTOOL_GEEE:
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302602 case ETHTOOL_GTUNABLE:
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002603 case ETHTOOL_PHY_GTUNABLE:
Miroslav Lichvar8006f6b2016-11-24 10:55:06 +01002604 case ETHTOOL_GLINKSETTINGS:
Vidya Sagar Ravipati1a5f3da2017-07-27 16:47:26 -07002605 case ETHTOOL_GFECPARAM:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002606 break;
2607 default:
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +00002608 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Stephen Hemminger75f31232006-09-28 15:13:37 -07002609 return -EPERM;
2610 }
2611
chavey97f8aef2010-04-07 21:54:42 -07002612 if (dev->ethtool_ops->begin) {
2613 rc = dev->ethtool_ops->begin(dev);
2614 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 return rc;
chavey97f8aef2010-04-07 21:54:42 -07002616 }
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07002617 old_features = dev->features;
2618
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 switch (ethcmd) {
2620 case ETHTOOL_GSET:
2621 rc = ethtool_get_settings(dev, useraddr);
2622 break;
2623 case ETHTOOL_SSET:
2624 rc = ethtool_set_settings(dev, useraddr);
2625 break;
2626 case ETHTOOL_GDRVINFO:
2627 rc = ethtool_get_drvinfo(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 break;
2629 case ETHTOOL_GREGS:
2630 rc = ethtool_get_regs(dev, useraddr);
2631 break;
2632 case ETHTOOL_GWOL:
2633 rc = ethtool_get_wol(dev, useraddr);
2634 break;
2635 case ETHTOOL_SWOL:
2636 rc = ethtool_set_wol(dev, useraddr);
2637 break;
2638 case ETHTOOL_GMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002639 rc = ethtool_get_value(dev, useraddr, ethcmd,
2640 dev->ethtool_ops->get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 break;
2642 case ETHTOOL_SMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002643 rc = ethtool_set_value_void(dev, useraddr,
2644 dev->ethtool_ops->set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 break;
Yuval Mintz80f12ec2012-06-06 17:13:06 +00002646 case ETHTOOL_GEEE:
2647 rc = ethtool_get_eee(dev, useraddr);
2648 break;
2649 case ETHTOOL_SEEE:
2650 rc = ethtool_set_eee(dev, useraddr);
2651 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 case ETHTOOL_NWAY_RST:
2653 rc = ethtool_nway_reset(dev);
2654 break;
2655 case ETHTOOL_GLINK:
Ben Hutchingse596e6e2010-12-09 12:08:35 +00002656 rc = ethtool_get_link(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 break;
2658 case ETHTOOL_GEEPROM:
2659 rc = ethtool_get_eeprom(dev, useraddr);
2660 break;
2661 case ETHTOOL_SEEPROM:
2662 rc = ethtool_set_eeprom(dev, useraddr);
2663 break;
2664 case ETHTOOL_GCOALESCE:
2665 rc = ethtool_get_coalesce(dev, useraddr);
2666 break;
2667 case ETHTOOL_SCOALESCE:
2668 rc = ethtool_set_coalesce(dev, useraddr);
2669 break;
2670 case ETHTOOL_GRINGPARAM:
2671 rc = ethtool_get_ringparam(dev, useraddr);
2672 break;
2673 case ETHTOOL_SRINGPARAM:
2674 rc = ethtool_set_ringparam(dev, useraddr);
2675 break;
2676 case ETHTOOL_GPAUSEPARAM:
2677 rc = ethtool_get_pauseparam(dev, useraddr);
2678 break;
2679 case ETHTOOL_SPAUSEPARAM:
2680 rc = ethtool_set_pauseparam(dev, useraddr);
2681 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 case ETHTOOL_TEST:
2683 rc = ethtool_self_test(dev, useraddr);
2684 break;
2685 case ETHTOOL_GSTRINGS:
2686 rc = ethtool_get_strings(dev, useraddr);
2687 break;
2688 case ETHTOOL_PHYS_ID:
2689 rc = ethtool_phys_id(dev, useraddr);
2690 break;
2691 case ETHTOOL_GSTATS:
2692 rc = ethtool_get_stats(dev, useraddr);
2693 break;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002694 case ETHTOOL_GPERMADDR:
2695 rc = ethtool_get_perm_addr(dev, useraddr);
2696 break;
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002697 case ETHTOOL_GFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002698 rc = ethtool_get_value(dev, useraddr, ethcmd,
Michał Mirosławbc5787c62011-11-15 15:29:55 +00002699 __ethtool_get_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002700 break;
2701 case ETHTOOL_SFLAGS:
Michał Mirosławda8ac86c2011-02-15 16:59:18 +00002702 rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002703 break;
Jeff Garzik339bf022007-08-15 16:01:32 -07002704 case ETHTOOL_GPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002705 rc = ethtool_get_value(dev, useraddr, ethcmd,
2706 dev->ethtool_ops->get_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07002707 break;
2708 case ETHTOOL_SPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002709 rc = ethtool_set_value(dev, useraddr,
2710 dev->ethtool_ops->set_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07002711 break;
Santwona Behera0853ad62008-07-02 03:47:41 -07002712 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08002713 case ETHTOOL_GRXRINGS:
2714 case ETHTOOL_GRXCLSRLCNT:
2715 case ETHTOOL_GRXCLSRULE:
2716 case ETHTOOL_GRXCLSRLALL:
Ben Hutchingsbf988432010-06-28 08:45:58 +00002717 rc = ethtool_get_rxnfc(dev, ethcmd, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07002718 break;
2719 case ETHTOOL_SRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08002720 case ETHTOOL_SRXCLSRLDEL:
2721 case ETHTOOL_SRXCLSRLINS:
Ben Hutchingsbf988432010-06-28 08:45:58 +00002722 rc = ethtool_set_rxnfc(dev, ethcmd, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07002723 break;
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00002724 case ETHTOOL_FLASHDEV:
2725 rc = ethtool_flash_device(dev, useraddr);
2726 break;
Ben Hutchingsd73d3a82009-10-05 10:59:58 +00002727 case ETHTOOL_RESET:
2728 rc = ethtool_reset(dev, useraddr);
2729 break;
Jeff Garzik723b2f52010-03-03 22:51:50 +00002730 case ETHTOOL_GSSET_INFO:
2731 rc = ethtool_get_sset_info(dev, useraddr);
2732 break;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00002733 case ETHTOOL_GRXFHINDIR:
2734 rc = ethtool_get_rxfh_indir(dev, useraddr);
2735 break;
2736 case ETHTOOL_SRXFHINDIR:
2737 rc = ethtool_set_rxfh_indir(dev, useraddr);
2738 break;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05302739 case ETHTOOL_GRSSH:
2740 rc = ethtool_get_rxfh(dev, useraddr);
2741 break;
2742 case ETHTOOL_SRSSH:
2743 rc = ethtool_set_rxfh(dev, useraddr);
2744 break;
Michał Mirosław5455c692011-02-15 16:59:17 +00002745 case ETHTOOL_GFEATURES:
2746 rc = ethtool_get_features(dev, useraddr);
2747 break;
2748 case ETHTOOL_SFEATURES:
2749 rc = ethtool_set_features(dev, useraddr);
2750 break;
Michał Mirosław0a417702011-02-15 16:59:17 +00002751 case ETHTOOL_GTXCSUM:
Michał Mirosławe83d3602011-02-15 16:59:18 +00002752 case ETHTOOL_GRXCSUM:
Michał Mirosław0a417702011-02-15 16:59:17 +00002753 case ETHTOOL_GSG:
2754 case ETHTOOL_GTSO:
Michał Mirosław0a417702011-02-15 16:59:17 +00002755 case ETHTOOL_GGSO:
2756 case ETHTOOL_GGRO:
2757 rc = ethtool_get_one_feature(dev, useraddr, ethcmd);
2758 break;
2759 case ETHTOOL_STXCSUM:
Michał Mirosławe83d3602011-02-15 16:59:18 +00002760 case ETHTOOL_SRXCSUM:
Michał Mirosław0a417702011-02-15 16:59:17 +00002761 case ETHTOOL_SSG:
2762 case ETHTOOL_STSO:
Michał Mirosław0a417702011-02-15 16:59:17 +00002763 case ETHTOOL_SGSO:
2764 case ETHTOOL_SGRO:
2765 rc = ethtool_set_one_feature(dev, useraddr, ethcmd);
2766 break;
amit salecha8b5933c2011-04-07 01:58:42 +00002767 case ETHTOOL_GCHANNELS:
2768 rc = ethtool_get_channels(dev, useraddr);
2769 break;
2770 case ETHTOOL_SCHANNELS:
2771 rc = ethtool_set_channels(dev, useraddr);
2772 break;
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002773 case ETHTOOL_SET_DUMP:
2774 rc = ethtool_set_dump(dev, useraddr);
2775 break;
2776 case ETHTOOL_GET_DUMP_FLAG:
2777 rc = ethtool_get_dump_flag(dev, useraddr);
2778 break;
2779 case ETHTOOL_GET_DUMP_DATA:
2780 rc = ethtool_get_dump_data(dev, useraddr);
2781 break;
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002782 case ETHTOOL_GET_TS_INFO:
2783 rc = ethtool_get_ts_info(dev, useraddr);
2784 break;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002785 case ETHTOOL_GMODULEINFO:
2786 rc = ethtool_get_module_info(dev, useraddr);
2787 break;
2788 case ETHTOOL_GMODULEEEPROM:
2789 rc = ethtool_get_module_eeprom(dev, useraddr);
2790 break;
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302791 case ETHTOOL_GTUNABLE:
2792 rc = ethtool_get_tunable(dev, useraddr);
2793 break;
2794 case ETHTOOL_STUNABLE:
2795 rc = ethtool_set_tunable(dev, useraddr);
2796 break;
Andrew Lunnf3a40942015-12-30 16:28:25 +01002797 case ETHTOOL_GPHYSTATS:
2798 rc = ethtool_get_phy_stats(dev, useraddr);
2799 break;
Kan Liangac2c7ad2016-02-19 09:24:01 -05002800 case ETHTOOL_PERQUEUE:
2801 rc = ethtool_set_per_queue(dev, useraddr);
2802 break;
David Decotigny3f1ac7a2016-02-24 10:57:59 -08002803 case ETHTOOL_GLINKSETTINGS:
2804 rc = ethtool_get_link_ksettings(dev, useraddr);
2805 break;
2806 case ETHTOOL_SLINKSETTINGS:
2807 rc = ethtool_set_link_ksettings(dev, useraddr);
2808 break;
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002809 case ETHTOOL_PHY_GTUNABLE:
2810 rc = get_phy_tunable(dev, useraddr);
2811 break;
2812 case ETHTOOL_PHY_STUNABLE:
2813 rc = set_phy_tunable(dev, useraddr);
2814 break;
Vidya Sagar Ravipati1a5f3da2017-07-27 16:47:26 -07002815 case ETHTOOL_GFECPARAM:
2816 rc = ethtool_get_fecparam(dev, useraddr);
2817 break;
2818 case ETHTOOL_SFECPARAM:
2819 rc = ethtool_set_fecparam(dev, useraddr);
2820 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 default:
Matthew Wilcox61a44b92007-07-31 14:00:02 -07002822 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002824
Stephen Hemmingere71a4782007-04-10 20:10:33 -07002825 if (dev->ethtool_ops->complete)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 dev->ethtool_ops->complete(dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07002827
2828 if (old_features != dev->features)
2829 netdev_features_change(dev);
2830
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832}