blob: 91f74f3eb20475439214d9692f9b17c8124a9c3a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net/core/ethtool.c - Ethtool ioctl handler
3 * Copyright (c) 2003 Matthew Wilcox <matthew@wil.cx>
4 *
5 * This file is where we call all the ethtool_ops commands to get
Matthew Wilcox61a44b92007-07-31 14:00:02 -07006 * the information ethtool needs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Matthew Wilcox61a44b92007-07-31 14:00:02 -07008 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
14#include <linux/module.h>
15#include <linux/types.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080016#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/errno.h>
18#include <linux/ethtool.h>
19#include <linux/netdevice.h>
Richard Cochranc8f3a8c2012-04-03 22:59:17 +000020#include <linux/net_tstamp.h>
21#include <linux/phy.h>
Jeff Garzikd17792e2010-03-04 08:21:53 +000022#include <linux/bitops.h>
chavey97f8aef2010-04-07 21:54:42 -070023#include <linux/uaccess.h>
David S. Miller73da16c2010-09-21 16:12:11 -070024#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Ben Hutchings68f512f2011-04-02 00:35:15 +010026#include <linux/rtnetlink.h>
27#include <linux/sched.h>
Eric Dumazet960fb622014-11-16 06:23:05 -080028#include <linux/net.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090030/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * Some useful ethtool_ops methods that're device independent.
32 * If we find that all drivers want to do the same thing here,
33 * we can turn these into dev_() function calls.
34 */
35
36u32 ethtool_op_get_link(struct net_device *dev)
37{
38 return netif_carrier_ok(dev) ? 1 : 0;
39}
chavey97f8aef2010-04-07 21:54:42 -070040EXPORT_SYMBOL(ethtool_op_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Richard Cochran02eacbd2012-04-03 22:59:22 +000042int ethtool_op_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
43{
44 info->so_timestamping =
45 SOF_TIMESTAMPING_TX_SOFTWARE |
46 SOF_TIMESTAMPING_RX_SOFTWARE |
47 SOF_TIMESTAMPING_SOFTWARE;
48 info->phc_index = -1;
49 return 0;
50}
51EXPORT_SYMBOL(ethtool_op_get_ts_info);
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/* Handlers for each ethtool command */
54
Michał Mirosław475414f2011-11-15 15:29:55 +000055#define ETHTOOL_DEV_FEATURE_WORDS ((NETDEV_FEATURE_COUNT + 31) / 32)
Michał Mirosław5455c692011-02-15 16:59:17 +000056
Michał Mirosław9d921542011-11-15 15:29:55 +000057static const char netdev_features_strings[NETDEV_FEATURE_COUNT][ETH_GSTRING_LEN] = {
58 [NETIF_F_SG_BIT] = "tx-scatter-gather",
59 [NETIF_F_IP_CSUM_BIT] = "tx-checksum-ipv4",
Michał Mirosław9d921542011-11-15 15:29:55 +000060 [NETIF_F_HW_CSUM_BIT] = "tx-checksum-ip-generic",
61 [NETIF_F_IPV6_CSUM_BIT] = "tx-checksum-ipv6",
62 [NETIF_F_HIGHDMA_BIT] = "highdma",
63 [NETIF_F_FRAGLIST_BIT] = "tx-scatter-gather-fraglist",
Fernando Luis Vazquez Cao788dfca2013-06-17 11:28:03 +090064 [NETIF_F_HW_VLAN_CTAG_TX_BIT] = "tx-vlan-hw-insert",
Michał Mirosław9d921542011-11-15 15:29:55 +000065
Fernando Luis Vazquez Cao788dfca2013-06-17 11:28:03 +090066 [NETIF_F_HW_VLAN_CTAG_RX_BIT] = "rx-vlan-hw-parse",
67 [NETIF_F_HW_VLAN_CTAG_FILTER_BIT] = "rx-vlan-filter",
David S. Miller2d6577f2013-04-19 16:08:23 -040068 [NETIF_F_HW_VLAN_STAG_TX_BIT] = "tx-vlan-stag-hw-insert",
69 [NETIF_F_HW_VLAN_STAG_RX_BIT] = "rx-vlan-stag-hw-parse",
70 [NETIF_F_HW_VLAN_STAG_FILTER_BIT] = "rx-vlan-stag-filter",
Michał Mirosław9d921542011-11-15 15:29:55 +000071 [NETIF_F_VLAN_CHALLENGED_BIT] = "vlan-challenged",
72 [NETIF_F_GSO_BIT] = "tx-generic-segmentation",
73 [NETIF_F_LLTX_BIT] = "tx-lockless",
74 [NETIF_F_NETNS_LOCAL_BIT] = "netns-local",
75 [NETIF_F_GRO_BIT] = "rx-gro",
76 [NETIF_F_LRO_BIT] = "rx-lro",
77
78 [NETIF_F_TSO_BIT] = "tx-tcp-segmentation",
79 [NETIF_F_UFO_BIT] = "tx-udp-fragmentation",
80 [NETIF_F_GSO_ROBUST_BIT] = "tx-gso-robust",
81 [NETIF_F_TSO_ECN_BIT] = "tx-tcp-ecn-segmentation",
82 [NETIF_F_TSO6_BIT] = "tx-tcp6-segmentation",
83 [NETIF_F_FSO_BIT] = "tx-fcoe-segmentation",
Pravin B Shelar68c33162013-02-14 14:02:41 +000084 [NETIF_F_GSO_GRE_BIT] = "tx-gre-segmentation",
Eric Dumazetcb32f512013-10-19 11:42:57 -070085 [NETIF_F_GSO_IPIP_BIT] = "tx-ipip-segmentation",
Eric Dumazet61c1db72013-10-20 20:47:30 -070086 [NETIF_F_GSO_SIT_BIT] = "tx-sit-segmentation",
Pravin B Shelar73136262013-03-07 13:21:51 +000087 [NETIF_F_GSO_UDP_TUNNEL_BIT] = "tx-udp_tnl-segmentation",
Michał Mirosław9d921542011-11-15 15:29:55 +000088
89 [NETIF_F_FCOE_CRC_BIT] = "tx-checksum-fcoe-crc",
90 [NETIF_F_SCTP_CSUM_BIT] = "tx-checksum-sctp",
91 [NETIF_F_FCOE_MTU_BIT] = "fcoe-mtu",
92 [NETIF_F_NTUPLE_BIT] = "rx-ntuple-filter",
93 [NETIF_F_RXHASH_BIT] = "rx-hashing",
94 [NETIF_F_RXCSUM_BIT] = "rx-checksum",
95 [NETIF_F_NOCACHE_COPY_BIT] = "tx-nocache-copy",
96 [NETIF_F_LOOPBACK_BIT] = "loopback",
Ben Greear36eabda32012-02-11 15:39:14 +000097 [NETIF_F_RXFCS_BIT] = "rx-fcs",
Ben Greear5e0c03c2012-02-11 15:39:45 +000098 [NETIF_F_RXALL_BIT] = "rx-all",
John Fastabenda6cc0cf2013-11-06 09:54:46 -080099 [NETIF_F_HW_L2FW_DOFFLOAD_BIT] = "l2-fwd-offload",
Jiri Pirkod0290212014-04-02 23:09:31 +0200100 [NETIF_F_BUSY_POLL_BIT] = "busy-poll",
Michał Mirosław9d921542011-11-15 15:29:55 +0000101};
102
Eyal Perry892311f2014-12-02 18:12:10 +0200103static const char
104rss_hash_func_strings[ETH_RSS_HASH_FUNCS_COUNT][ETH_GSTRING_LEN] = {
105 [ETH_RSS_HASH_TOP_BIT] = "toeplitz",
106 [ETH_RSS_HASH_XOR_BIT] = "xor",
107};
108
Michał Mirosław5455c692011-02-15 16:59:17 +0000109static int ethtool_get_features(struct net_device *dev, void __user *useraddr)
110{
111 struct ethtool_gfeatures cmd = {
112 .cmd = ETHTOOL_GFEATURES,
113 .size = ETHTOOL_DEV_FEATURE_WORDS,
114 };
Michał Mirosław475414f2011-11-15 15:29:55 +0000115 struct ethtool_get_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
Michał Mirosław5455c692011-02-15 16:59:17 +0000116 u32 __user *sizeaddr;
117 u32 copy_size;
Michał Mirosław475414f2011-11-15 15:29:55 +0000118 int i;
119
120 /* in case feature bits run out again */
Michał Mirosław09da71b2011-11-16 14:32:03 +0000121 BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS * sizeof(u32) > sizeof(netdev_features_t));
Michał Mirosław475414f2011-11-15 15:29:55 +0000122
123 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
Michał Mirosław09da71b2011-11-16 14:32:03 +0000124 features[i].available = (u32)(dev->hw_features >> (32 * i));
125 features[i].requested = (u32)(dev->wanted_features >> (32 * i));
126 features[i].active = (u32)(dev->features >> (32 * i));
127 features[i].never_changed =
128 (u32)(NETIF_F_NEVER_CHANGE >> (32 * i));
Michał Mirosław475414f2011-11-15 15:29:55 +0000129 }
Michał Mirosław5455c692011-02-15 16:59:17 +0000130
131 sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size);
132 if (get_user(copy_size, sizeaddr))
133 return -EFAULT;
134
135 if (copy_size > ETHTOOL_DEV_FEATURE_WORDS)
136 copy_size = ETHTOOL_DEV_FEATURE_WORDS;
137
138 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
139 return -EFAULT;
140 useraddr += sizeof(cmd);
141 if (copy_to_user(useraddr, features, copy_size * sizeof(*features)))
142 return -EFAULT;
143
144 return 0;
145}
146
147static int ethtool_set_features(struct net_device *dev, void __user *useraddr)
148{
149 struct ethtool_sfeatures cmd;
150 struct ethtool_set_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
Michał Mirosław475414f2011-11-15 15:29:55 +0000151 netdev_features_t wanted = 0, valid = 0;
152 int i, ret = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +0000153
154 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
155 return -EFAULT;
156 useraddr += sizeof(cmd);
157
158 if (cmd.size != ETHTOOL_DEV_FEATURE_WORDS)
159 return -EINVAL;
160
161 if (copy_from_user(features, useraddr, sizeof(features)))
162 return -EFAULT;
163
Michał Mirosław475414f2011-11-15 15:29:55 +0000164 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
Michał Mirosław09da71b2011-11-16 14:32:03 +0000165 valid |= (netdev_features_t)features[i].valid << (32 * i);
166 wanted |= (netdev_features_t)features[i].requested << (32 * i);
Michał Mirosław475414f2011-11-15 15:29:55 +0000167 }
168
169 if (valid & ~NETIF_F_ETHTOOL_BITS)
Michał Mirosław5455c692011-02-15 16:59:17 +0000170 return -EINVAL;
171
Michał Mirosław475414f2011-11-15 15:29:55 +0000172 if (valid & ~dev->hw_features) {
173 valid &= dev->hw_features;
Michał Mirosław5455c692011-02-15 16:59:17 +0000174 ret |= ETHTOOL_F_UNSUPPORTED;
175 }
176
Michał Mirosław475414f2011-11-15 15:29:55 +0000177 dev->wanted_features &= ~valid;
178 dev->wanted_features |= wanted & valid;
Michał Mirosław6cb6a272011-04-02 22:48:47 -0700179 __netdev_update_features(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +0000180
Michał Mirosław475414f2011-11-15 15:29:55 +0000181 if ((dev->wanted_features ^ dev->features) & valid)
Michał Mirosław5455c692011-02-15 16:59:17 +0000182 ret |= ETHTOOL_F_WISH;
183
184 return ret;
185}
186
Michał Mirosław340ae162011-02-15 16:59:16 +0000187static int __ethtool_get_sset_count(struct net_device *dev, int sset)
188{
189 const struct ethtool_ops *ops = dev->ethtool_ops;
190
Michał Mirosław5455c692011-02-15 16:59:17 +0000191 if (sset == ETH_SS_FEATURES)
192 return ARRAY_SIZE(netdev_features_strings);
193
Eyal Perry892311f2014-12-02 18:12:10 +0200194 if (sset == ETH_SS_RSS_HASH_FUNCS)
195 return ARRAY_SIZE(rss_hash_func_strings);
196
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000197 if (ops->get_sset_count && ops->get_strings)
Michał Mirosław340ae162011-02-15 16:59:16 +0000198 return ops->get_sset_count(dev, sset);
199 else
200 return -EOPNOTSUPP;
201}
202
203static void __ethtool_get_strings(struct net_device *dev,
204 u32 stringset, u8 *data)
205{
206 const struct ethtool_ops *ops = dev->ethtool_ops;
207
Michał Mirosław5455c692011-02-15 16:59:17 +0000208 if (stringset == ETH_SS_FEATURES)
209 memcpy(data, netdev_features_strings,
210 sizeof(netdev_features_strings));
Eyal Perry892311f2014-12-02 18:12:10 +0200211 else if (stringset == ETH_SS_RSS_HASH_FUNCS)
212 memcpy(data, rss_hash_func_strings,
213 sizeof(rss_hash_func_strings));
Michał Mirosław5455c692011-02-15 16:59:17 +0000214 else
215 /* ops->get_strings is valid because checked earlier */
216 ops->get_strings(dev, stringset, data);
Michał Mirosław340ae162011-02-15 16:59:16 +0000217}
218
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000219static netdev_features_t ethtool_get_feature_mask(u32 eth_cmd)
Michał Mirosław0a417702011-02-15 16:59:17 +0000220{
221 /* feature masks of legacy discrete ethtool ops */
222
223 switch (eth_cmd) {
224 case ETHTOOL_GTXCSUM:
225 case ETHTOOL_STXCSUM:
226 return NETIF_F_ALL_CSUM | NETIF_F_SCTP_CSUM;
Michał Mirosławe83d3602011-02-15 16:59:18 +0000227 case ETHTOOL_GRXCSUM:
228 case ETHTOOL_SRXCSUM:
229 return NETIF_F_RXCSUM;
Michał Mirosław0a417702011-02-15 16:59:17 +0000230 case ETHTOOL_GSG:
231 case ETHTOOL_SSG:
232 return NETIF_F_SG;
233 case ETHTOOL_GTSO:
234 case ETHTOOL_STSO:
235 return NETIF_F_ALL_TSO;
236 case ETHTOOL_GUFO:
237 case ETHTOOL_SUFO:
238 return NETIF_F_UFO;
239 case ETHTOOL_GGSO:
240 case ETHTOOL_SGSO:
241 return NETIF_F_GSO;
242 case ETHTOOL_GGRO:
243 case ETHTOOL_SGRO:
244 return NETIF_F_GRO;
245 default:
246 BUG();
247 }
248}
249
Michał Mirosław0a417702011-02-15 16:59:17 +0000250static int ethtool_get_one_feature(struct net_device *dev,
251 char __user *useraddr, u32 ethcmd)
252{
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000253 netdev_features_t mask = ethtool_get_feature_mask(ethcmd);
Michał Mirosław0a417702011-02-15 16:59:17 +0000254 struct ethtool_value edata = {
255 .cmd = ethcmd,
Michał Mirosław86794882011-02-15 16:59:17 +0000256 .data = !!(dev->features & mask),
Michał Mirosław0a417702011-02-15 16:59:17 +0000257 };
Michał Mirosław0a417702011-02-15 16:59:17 +0000258
Michał Mirosław0a417702011-02-15 16:59:17 +0000259 if (copy_to_user(useraddr, &edata, sizeof(edata)))
260 return -EFAULT;
261 return 0;
262}
263
Michał Mirosław0a417702011-02-15 16:59:17 +0000264static int ethtool_set_one_feature(struct net_device *dev,
265 void __user *useraddr, u32 ethcmd)
266{
267 struct ethtool_value edata;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000268 netdev_features_t mask;
Michał Mirosław0a417702011-02-15 16:59:17 +0000269
270 if (copy_from_user(&edata, useraddr, sizeof(edata)))
271 return -EFAULT;
272
Michał Mirosław86794882011-02-15 16:59:17 +0000273 mask = ethtool_get_feature_mask(ethcmd);
274 mask &= dev->hw_features;
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000275 if (!mask)
Michał Mirosław0a417702011-02-15 16:59:17 +0000276 return -EOPNOTSUPP;
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000277
278 if (edata.data)
279 dev->wanted_features |= mask;
280 else
281 dev->wanted_features &= ~mask;
282
283 __netdev_update_features(dev);
284
285 return 0;
Michał Mirosław0a417702011-02-15 16:59:17 +0000286}
287
Michał Mirosław02b3a552011-11-15 15:29:55 +0000288#define ETH_ALL_FLAGS (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
289 ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
Patrick McHardyf6469682013-04-19 02:04:27 +0000290#define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
291 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
292 NETIF_F_RXHASH)
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000293
294static u32 __ethtool_get_flags(struct net_device *dev)
295{
Michał Mirosław02b3a552011-11-15 15:29:55 +0000296 u32 flags = 0;
297
Dragos Foianu8a731252013-07-13 14:43:00 +0100298 if (dev->features & NETIF_F_LRO)
299 flags |= ETH_FLAG_LRO;
300 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
301 flags |= ETH_FLAG_RXVLAN;
302 if (dev->features & NETIF_F_HW_VLAN_CTAG_TX)
303 flags |= ETH_FLAG_TXVLAN;
304 if (dev->features & NETIF_F_NTUPLE)
305 flags |= ETH_FLAG_NTUPLE;
306 if (dev->features & NETIF_F_RXHASH)
307 flags |= ETH_FLAG_RXHASH;
Michał Mirosław02b3a552011-11-15 15:29:55 +0000308
309 return flags;
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000310}
311
312static int __ethtool_set_flags(struct net_device *dev, u32 data)
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000313{
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000314 netdev_features_t features = 0, changed;
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000315
Michał Mirosław02b3a552011-11-15 15:29:55 +0000316 if (data & ~ETH_ALL_FLAGS)
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000317 return -EINVAL;
318
Dragos Foianu8a731252013-07-13 14:43:00 +0100319 if (data & ETH_FLAG_LRO)
320 features |= NETIF_F_LRO;
321 if (data & ETH_FLAG_RXVLAN)
322 features |= NETIF_F_HW_VLAN_CTAG_RX;
323 if (data & ETH_FLAG_TXVLAN)
324 features |= NETIF_F_HW_VLAN_CTAG_TX;
325 if (data & ETH_FLAG_NTUPLE)
326 features |= NETIF_F_NTUPLE;
327 if (data & ETH_FLAG_RXHASH)
328 features |= NETIF_F_RXHASH;
Michał Mirosław02b3a552011-11-15 15:29:55 +0000329
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000330 /* allow changing only bits set in hw_features */
Michał Mirosław02b3a552011-11-15 15:29:55 +0000331 changed = (features ^ dev->features) & ETH_ALL_FEATURES;
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000332 if (changed & ~dev->hw_features)
333 return (changed & dev->hw_features) ? -EINVAL : -EOPNOTSUPP;
334
335 dev->wanted_features =
Michał Mirosław02b3a552011-11-15 15:29:55 +0000336 (dev->wanted_features & ~changed) | (features & changed);
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000337
Michał Mirosław6cb6a272011-04-02 22:48:47 -0700338 __netdev_update_features(dev);
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000339
340 return 0;
341}
342
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000343int __ethtool_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000345 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000347 if (!dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return -EOPNOTSUPP;
349
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000350 memset(cmd, 0, sizeof(struct ethtool_cmd));
351 cmd->cmd = ETHTOOL_GSET;
352 return dev->ethtool_ops->get_settings(dev, cmd);
353}
354EXPORT_SYMBOL(__ethtool_get_settings);
355
356static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
357{
358 int err;
359 struct ethtool_cmd cmd;
360
361 err = __ethtool_get_settings(dev, &cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (err < 0)
363 return err;
364
365 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
366 return -EFAULT;
367 return 0;
368}
369
370static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
371{
372 struct ethtool_cmd cmd;
373
374 if (!dev->ethtool_ops->set_settings)
375 return -EOPNOTSUPP;
376
377 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
378 return -EFAULT;
379
380 return dev->ethtool_ops->set_settings(dev, &cmd);
381}
382
chavey97f8aef2010-04-07 21:54:42 -0700383static noinline_for_stack int ethtool_get_drvinfo(struct net_device *dev,
384 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 struct ethtool_drvinfo info;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700387 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 memset(&info, 0, sizeof(info));
390 info.cmd = ETHTOOL_GDRVINFO;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000391 if (ops->get_drvinfo) {
Ben Hutchings01414802010-08-17 02:31:15 -0700392 ops->get_drvinfo(dev, &info);
393 } else if (dev->dev.parent && dev->dev.parent->driver) {
394 strlcpy(info.bus_info, dev_name(dev->dev.parent),
395 sizeof(info.bus_info));
396 strlcpy(info.driver, dev->dev.parent->driver->name,
397 sizeof(info.driver));
398 } else {
399 return -EOPNOTSUPP;
400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Jeff Garzik723b2f52010-03-03 22:51:50 +0000402 /*
403 * this method of obtaining string set info is deprecated;
Jeff Garzikd17792e2010-03-04 08:21:53 +0000404 * Use ETHTOOL_GSSET_INFO instead.
Jeff Garzik723b2f52010-03-03 22:51:50 +0000405 */
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000406 if (ops->get_sset_count) {
Jeff Garzikff03d492007-08-15 16:01:08 -0700407 int rc;
408
409 rc = ops->get_sset_count(dev, ETH_SS_TEST);
410 if (rc >= 0)
411 info.testinfo_len = rc;
412 rc = ops->get_sset_count(dev, ETH_SS_STATS);
413 if (rc >= 0)
414 info.n_stats = rc;
Jeff Garzik339bf022007-08-15 16:01:32 -0700415 rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
416 if (rc >= 0)
417 info.n_priv_flags = rc;
Jeff Garzikff03d492007-08-15 16:01:08 -0700418 }
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000419 if (ops->get_regs_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 info.regdump_len = ops->get_regs_len(dev);
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000421 if (ops->get_eeprom_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 info.eedump_len = ops->get_eeprom_len(dev);
423
424 if (copy_to_user(useraddr, &info, sizeof(info)))
425 return -EFAULT;
426 return 0;
427}
428
Eric Dumazetf5c445e2010-03-08 12:17:04 -0800429static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
chavey97f8aef2010-04-07 21:54:42 -0700430 void __user *useraddr)
Jeff Garzik723b2f52010-03-03 22:51:50 +0000431{
432 struct ethtool_sset_info info;
Jeff Garzik723b2f52010-03-03 22:51:50 +0000433 u64 sset_mask;
434 int i, idx = 0, n_bits = 0, ret, rc;
435 u32 *info_buf = NULL;
436
Jeff Garzik723b2f52010-03-03 22:51:50 +0000437 if (copy_from_user(&info, useraddr, sizeof(info)))
438 return -EFAULT;
439
440 /* store copy of mask, because we zero struct later on */
441 sset_mask = info.sset_mask;
442 if (!sset_mask)
443 return 0;
444
445 /* calculate size of return buffer */
Jeff Garzikd17792e2010-03-04 08:21:53 +0000446 n_bits = hweight64(sset_mask);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000447
448 memset(&info, 0, sizeof(info));
449 info.cmd = ETHTOOL_GSSET_INFO;
450
451 info_buf = kzalloc(n_bits * sizeof(u32), GFP_USER);
452 if (!info_buf)
453 return -ENOMEM;
454
455 /*
456 * fill return buffer based on input bitmask and successful
457 * get_sset_count return
458 */
459 for (i = 0; i < 64; i++) {
460 if (!(sset_mask & (1ULL << i)))
461 continue;
462
Michał Mirosław340ae162011-02-15 16:59:16 +0000463 rc = __ethtool_get_sset_count(dev, i);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000464 if (rc >= 0) {
465 info.sset_mask |= (1ULL << i);
466 info_buf[idx++] = rc;
467 }
468 }
469
470 ret = -EFAULT;
471 if (copy_to_user(useraddr, &info, sizeof(info)))
472 goto out;
473
474 useraddr += offsetof(struct ethtool_sset_info, data);
475 if (copy_to_user(useraddr, info_buf, idx * sizeof(u32)))
476 goto out;
477
478 ret = 0;
479
480out:
481 kfree(info_buf);
482 return ret;
483}
484
chavey97f8aef2010-04-07 21:54:42 -0700485static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
Ben Hutchingsbf988432010-06-28 08:45:58 +0000486 u32 cmd, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700487{
Ben Hutchingsbf988432010-06-28 08:45:58 +0000488 struct ethtool_rxnfc info;
489 size_t info_size = sizeof(info);
Ben Hutchings55664f32012-01-03 12:04:51 +0000490 int rc;
Santwona Behera0853ad62008-07-02 03:47:41 -0700491
Santwona Behera59089d82009-02-20 00:58:13 -0800492 if (!dev->ethtool_ops->set_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700493 return -EOPNOTSUPP;
494
Ben Hutchingsbf988432010-06-28 08:45:58 +0000495 /* struct ethtool_rxnfc was originally defined for
496 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
497 * members. User-space might still be using that
498 * definition. */
499 if (cmd == ETHTOOL_SRXFH)
500 info_size = (offsetof(struct ethtool_rxnfc, data) +
501 sizeof(info.data));
502
503 if (copy_from_user(&info, useraddr, info_size))
Santwona Behera0853ad62008-07-02 03:47:41 -0700504 return -EFAULT;
505
Ben Hutchings55664f32012-01-03 12:04:51 +0000506 rc = dev->ethtool_ops->set_rxnfc(dev, &info);
507 if (rc)
508 return rc;
509
510 if (cmd == ETHTOOL_SRXCLSRLINS &&
511 copy_to_user(useraddr, &info, info_size))
512 return -EFAULT;
513
514 return 0;
Santwona Behera0853ad62008-07-02 03:47:41 -0700515}
516
chavey97f8aef2010-04-07 21:54:42 -0700517static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
Ben Hutchingsbf988432010-06-28 08:45:58 +0000518 u32 cmd, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700519{
520 struct ethtool_rxnfc info;
Ben Hutchingsbf988432010-06-28 08:45:58 +0000521 size_t info_size = sizeof(info);
Santwona Behera59089d82009-02-20 00:58:13 -0800522 const struct ethtool_ops *ops = dev->ethtool_ops;
523 int ret;
524 void *rule_buf = NULL;
Santwona Behera0853ad62008-07-02 03:47:41 -0700525
Santwona Behera59089d82009-02-20 00:58:13 -0800526 if (!ops->get_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700527 return -EOPNOTSUPP;
528
Ben Hutchingsbf988432010-06-28 08:45:58 +0000529 /* struct ethtool_rxnfc was originally defined for
530 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
531 * members. User-space might still be using that
532 * definition. */
533 if (cmd == ETHTOOL_GRXFH)
534 info_size = (offsetof(struct ethtool_rxnfc, data) +
535 sizeof(info.data));
536
537 if (copy_from_user(&info, useraddr, info_size))
Santwona Behera0853ad62008-07-02 03:47:41 -0700538 return -EFAULT;
539
Santwona Behera59089d82009-02-20 00:58:13 -0800540 if (info.cmd == ETHTOOL_GRXCLSRLALL) {
541 if (info.rule_cnt > 0) {
Ben Hutchingsdb048b62010-06-28 08:44:07 +0000542 if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
Kees Cookae6df5f2010-10-07 10:03:48 +0000543 rule_buf = kzalloc(info.rule_cnt * sizeof(u32),
Ben Hutchingsdb048b62010-06-28 08:44:07 +0000544 GFP_USER);
Santwona Behera59089d82009-02-20 00:58:13 -0800545 if (!rule_buf)
546 return -ENOMEM;
547 }
548 }
Santwona Behera0853ad62008-07-02 03:47:41 -0700549
Santwona Behera59089d82009-02-20 00:58:13 -0800550 ret = ops->get_rxnfc(dev, &info, rule_buf);
551 if (ret < 0)
552 goto err_out;
553
554 ret = -EFAULT;
Ben Hutchingsbf988432010-06-28 08:45:58 +0000555 if (copy_to_user(useraddr, &info, info_size))
Santwona Behera59089d82009-02-20 00:58:13 -0800556 goto err_out;
557
558 if (rule_buf) {
559 useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
560 if (copy_to_user(useraddr, rule_buf,
561 info.rule_cnt * sizeof(u32)))
562 goto err_out;
563 }
564 ret = 0;
565
566err_out:
Wei Yongjunc9cacec2009-03-31 15:06:26 -0700567 kfree(rule_buf);
Santwona Behera59089d82009-02-20 00:58:13 -0800568
569 return ret;
Santwona Behera0853ad62008-07-02 03:47:41 -0700570}
571
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530572static int ethtool_copy_validate_indir(u32 *indir, void __user *useraddr,
573 struct ethtool_rxnfc *rx_rings,
574 u32 size)
575{
Ben Hutchingsfb95cd82014-05-15 00:46:45 +0100576 int i;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530577
578 if (copy_from_user(indir, useraddr, size * sizeof(indir[0])))
Ben Hutchingsfb95cd82014-05-15 00:46:45 +0100579 return -EFAULT;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530580
581 /* Validate ring indices */
Ben Hutchingsfb95cd82014-05-15 00:46:45 +0100582 for (i = 0; i < size; i++)
583 if (indir[i] >= rx_rings->data)
584 return -EINVAL;
585
586 return 0;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530587}
588
Eric Dumazet960fb622014-11-16 06:23:05 -0800589u8 netdev_rss_key[NETDEV_RSS_KEY_LEN];
590
591void netdev_rss_key_fill(void *buffer, size_t len)
592{
593 BUG_ON(len > sizeof(netdev_rss_key));
594 net_get_random_once(netdev_rss_key, sizeof(netdev_rss_key));
595 memcpy(buffer, netdev_rss_key, len);
596}
597EXPORT_SYMBOL(netdev_rss_key_fill);
598
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000599static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev,
600 void __user *useraddr)
601{
Ben Hutchings7850f632011-12-15 13:55:01 +0000602 u32 user_size, dev_size;
603 u32 *indir;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000604 int ret;
605
Ben Hutchings7850f632011-12-15 13:55:01 +0000606 if (!dev->ethtool_ops->get_rxfh_indir_size ||
Ben Hutchingsfe62d002014-05-15 01:25:27 +0100607 !dev->ethtool_ops->get_rxfh)
Ben Hutchings7850f632011-12-15 13:55:01 +0000608 return -EOPNOTSUPP;
609 dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
610 if (dev_size == 0)
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000611 return -EOPNOTSUPP;
612
Ben Hutchings7850f632011-12-15 13:55:01 +0000613 if (copy_from_user(&user_size,
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000614 useraddr + offsetof(struct ethtool_rxfh_indir, size),
Ben Hutchings7850f632011-12-15 13:55:01 +0000615 sizeof(user_size)))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000616 return -EFAULT;
617
Ben Hutchings7850f632011-12-15 13:55:01 +0000618 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size),
619 &dev_size, sizeof(dev_size)))
620 return -EFAULT;
621
622 /* If the user buffer size is 0, this is just a query for the
623 * device table size. Otherwise, if it's smaller than the
624 * device table size it's an error.
625 */
626 if (user_size < dev_size)
627 return user_size == 0 ? 0 : -EINVAL;
628
629 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000630 if (!indir)
631 return -ENOMEM;
632
Eyal Perry892311f2014-12-02 18:12:10 +0200633 ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000634 if (ret)
635 goto out;
636
Ben Hutchings7850f632011-12-15 13:55:01 +0000637 if (copy_to_user(useraddr +
638 offsetof(struct ethtool_rxfh_indir, ring_index[0]),
639 indir, dev_size * sizeof(indir[0])))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000640 ret = -EFAULT;
641
642out:
643 kfree(indir);
644 return ret;
645}
646
647static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev,
648 void __user *useraddr)
649{
Ben Hutchings7850f632011-12-15 13:55:01 +0000650 struct ethtool_rxnfc rx_rings;
651 u32 user_size, dev_size, i;
652 u32 *indir;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000653 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000654 int ret;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530655 u32 ringidx_offset = offsetof(struct ethtool_rxfh_indir, ring_index[0]);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000656
Ben Hutchingsfe62d002014-05-15 01:25:27 +0100657 if (!ops->get_rxfh_indir_size || !ops->set_rxfh ||
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000658 !ops->get_rxnfc)
Ben Hutchings7850f632011-12-15 13:55:01 +0000659 return -EOPNOTSUPP;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000660
661 dev_size = ops->get_rxfh_indir_size(dev);
Ben Hutchings7850f632011-12-15 13:55:01 +0000662 if (dev_size == 0)
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000663 return -EOPNOTSUPP;
664
Ben Hutchings7850f632011-12-15 13:55:01 +0000665 if (copy_from_user(&user_size,
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000666 useraddr + offsetof(struct ethtool_rxfh_indir, size),
Ben Hutchings7850f632011-12-15 13:55:01 +0000667 sizeof(user_size)))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000668 return -EFAULT;
669
Ben Hutchings278bc422011-12-15 13:56:49 +0000670 if (user_size != 0 && user_size != dev_size)
Ben Hutchings7850f632011-12-15 13:55:01 +0000671 return -EINVAL;
672
673 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000674 if (!indir)
675 return -ENOMEM;
676
Ben Hutchings7850f632011-12-15 13:55:01 +0000677 rx_rings.cmd = ETHTOOL_GRXRINGS;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000678 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
Ben Hutchings7850f632011-12-15 13:55:01 +0000679 if (ret)
680 goto out;
Ben Hutchings278bc422011-12-15 13:56:49 +0000681
682 if (user_size == 0) {
683 for (i = 0; i < dev_size; i++)
684 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
685 } else {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530686 ret = ethtool_copy_validate_indir(indir,
687 useraddr + ringidx_offset,
688 &rx_rings,
689 dev_size);
690 if (ret)
Ben Hutchings7850f632011-12-15 13:55:01 +0000691 goto out;
Ben Hutchings7850f632011-12-15 13:55:01 +0000692 }
693
Eyal Perry892311f2014-12-02 18:12:10 +0200694 ret = ops->set_rxfh(dev, indir, NULL, ETH_RSS_HASH_NO_CHANGE);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000695
696out:
697 kfree(indir);
698 return ret;
699}
700
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530701static noinline_for_stack int ethtool_get_rxfh(struct net_device *dev,
702 void __user *useraddr)
703{
704 int ret;
705 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchingsf062a382014-05-15 16:28:07 +0100706 u32 user_indir_size, user_key_size;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530707 u32 dev_indir_size = 0, dev_key_size = 0;
Ben Hutchingsf062a382014-05-15 16:28:07 +0100708 struct ethtool_rxfh rxfh;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530709 u32 total_size;
Ben Hutchingsf062a382014-05-15 16:28:07 +0100710 u32 indir_bytes;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530711 u32 *indir = NULL;
Eyal Perry892311f2014-12-02 18:12:10 +0200712 u8 dev_hfunc = 0;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530713 u8 *hkey = NULL;
714 u8 *rss_config;
715
Eyal Perry892311f2014-12-02 18:12:10 +0200716 if (!ops->get_rxfh)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530717 return -EOPNOTSUPP;
718
719 if (ops->get_rxfh_indir_size)
720 dev_indir_size = ops->get_rxfh_indir_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530721 if (ops->get_rxfh_key_size)
722 dev_key_size = ops->get_rxfh_key_size(dev);
723
Ben Hutchingsf062a382014-05-15 16:28:07 +0100724 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530725 return -EFAULT;
Ben Hutchingsf062a382014-05-15 16:28:07 +0100726 user_indir_size = rxfh.indir_size;
727 user_key_size = rxfh.key_size;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530728
Ben Hutchingsf062a382014-05-15 16:28:07 +0100729 /* Check that reserved fields are 0 for now */
Eyal Perry892311f2014-12-02 18:12:10 +0200730 if (rxfh.rss_context || rxfh.rsvd8[0] || rxfh.rsvd8[1] ||
731 rxfh.rsvd8[2] || rxfh.rsvd32)
Ben Hutchingsf062a382014-05-15 16:28:07 +0100732 return -EINVAL;
733
734 rxfh.indir_size = dev_indir_size;
735 rxfh.key_size = dev_key_size;
736 if (copy_to_user(useraddr, &rxfh, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530737 return -EFAULT;
738
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530739 if ((user_indir_size && (user_indir_size != dev_indir_size)) ||
740 (user_key_size && (user_key_size != dev_key_size)))
741 return -EINVAL;
742
743 indir_bytes = user_indir_size * sizeof(indir[0]);
744 total_size = indir_bytes + user_key_size;
745 rss_config = kzalloc(total_size, GFP_USER);
746 if (!rss_config)
747 return -ENOMEM;
748
749 if (user_indir_size)
750 indir = (u32 *)rss_config;
751
752 if (user_key_size)
753 hkey = rss_config + indir_bytes;
754
Eyal Perry892311f2014-12-02 18:12:10 +0200755 ret = dev->ethtool_ops->get_rxfh(dev, indir, hkey, &dev_hfunc);
756 if (ret)
757 goto out;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530758
Eyal Perry892311f2014-12-02 18:12:10 +0200759 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, hfunc),
760 &dev_hfunc, sizeof(rxfh.hfunc))) {
761 ret = -EFAULT;
762 } else if (copy_to_user(useraddr +
763 offsetof(struct ethtool_rxfh, rss_config[0]),
764 rss_config, total_size)) {
765 ret = -EFAULT;
766 }
767out:
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530768 kfree(rss_config);
769
770 return ret;
771}
772
773static noinline_for_stack int ethtool_set_rxfh(struct net_device *dev,
774 void __user *useraddr)
775{
776 int ret;
777 const struct ethtool_ops *ops = dev->ethtool_ops;
778 struct ethtool_rxnfc rx_rings;
Ben Hutchingsf062a382014-05-15 16:28:07 +0100779 struct ethtool_rxfh rxfh;
780 u32 dev_indir_size = 0, dev_key_size = 0, i;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530781 u32 *indir = NULL, indir_bytes = 0;
782 u8 *hkey = NULL;
783 u8 *rss_config;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530784 u32 rss_cfg_offset = offsetof(struct ethtool_rxfh, rss_config[0]);
785
Eyal Perry892311f2014-12-02 18:12:10 +0200786 if (!ops->get_rxnfc || !ops->set_rxfh)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530787 return -EOPNOTSUPP;
788
789 if (ops->get_rxfh_indir_size)
790 dev_indir_size = ops->get_rxfh_indir_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530791 if (ops->get_rxfh_key_size)
792 dev_key_size = dev->ethtool_ops->get_rxfh_key_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530793
Ben Hutchingsf062a382014-05-15 16:28:07 +0100794 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530795 return -EFAULT;
796
Ben Hutchingsf062a382014-05-15 16:28:07 +0100797 /* Check that reserved fields are 0 for now */
Eyal Perry892311f2014-12-02 18:12:10 +0200798 if (rxfh.rss_context || rxfh.rsvd8[0] || rxfh.rsvd8[1] ||
799 rxfh.rsvd8[2] || rxfh.rsvd32)
Ben Hutchingsf062a382014-05-15 16:28:07 +0100800 return -EINVAL;
801
Eyal Perry892311f2014-12-02 18:12:10 +0200802 /* If either indir, hash key or function is valid, proceed further.
803 * Must request at least one change: indir size, hash key or function.
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530804 */
Ben Hutchingsf062a382014-05-15 16:28:07 +0100805 if ((rxfh.indir_size &&
806 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE &&
807 rxfh.indir_size != dev_indir_size) ||
808 (rxfh.key_size && (rxfh.key_size != dev_key_size)) ||
809 (rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE &&
Eyal Perry892311f2014-12-02 18:12:10 +0200810 rxfh.key_size == 0 && rxfh.hfunc == ETH_RSS_HASH_NO_CHANGE))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530811 return -EINVAL;
812
Ben Hutchingsf062a382014-05-15 16:28:07 +0100813 if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530814 indir_bytes = dev_indir_size * sizeof(indir[0]);
815
Ben Hutchingsf062a382014-05-15 16:28:07 +0100816 rss_config = kzalloc(indir_bytes + rxfh.key_size, GFP_USER);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530817 if (!rss_config)
818 return -ENOMEM;
819
820 rx_rings.cmd = ETHTOOL_GRXRINGS;
821 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
822 if (ret)
823 goto out;
824
Ben Hutchingsf062a382014-05-15 16:28:07 +0100825 /* rxfh.indir_size == 0 means reset the indir table to default.
826 * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530827 */
Ben Hutchingsf062a382014-05-15 16:28:07 +0100828 if (rxfh.indir_size &&
829 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530830 indir = (u32 *)rss_config;
831 ret = ethtool_copy_validate_indir(indir,
832 useraddr + rss_cfg_offset,
833 &rx_rings,
Ben Hutchingsf062a382014-05-15 16:28:07 +0100834 rxfh.indir_size);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530835 if (ret)
836 goto out;
Ben Hutchingsf062a382014-05-15 16:28:07 +0100837 } else if (rxfh.indir_size == 0) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530838 indir = (u32 *)rss_config;
839 for (i = 0; i < dev_indir_size; i++)
840 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
841 }
842
Ben Hutchingsf062a382014-05-15 16:28:07 +0100843 if (rxfh.key_size) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530844 hkey = rss_config + indir_bytes;
845 if (copy_from_user(hkey,
846 useraddr + rss_cfg_offset + indir_bytes,
Ben Hutchingsf062a382014-05-15 16:28:07 +0100847 rxfh.key_size)) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530848 ret = -EFAULT;
849 goto out;
850 }
851 }
852
Eyal Perry892311f2014-12-02 18:12:10 +0200853 ret = ops->set_rxfh(dev, indir, hkey, rxfh.hfunc);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +0530854
855out:
856 kfree(rss_config);
857 return ret;
858}
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
861{
862 struct ethtool_regs regs;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700863 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 void *regbuf;
865 int reglen, ret;
866
867 if (!ops->get_regs || !ops->get_regs_len)
868 return -EOPNOTSUPP;
869
870 if (copy_from_user(&regs, useraddr, sizeof(regs)))
871 return -EFAULT;
872
873 reglen = ops->get_regs_len(dev);
874 if (regs.len > reglen)
875 regs.len = reglen;
876
Eugene Teob7c7d012011-01-24 21:05:17 -0800877 regbuf = vzalloc(reglen);
Ben Hutchings67ae7cf2011-07-21 15:25:30 -0700878 if (reglen && !regbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return -ENOMEM;
880
881 ops->get_regs(dev, &regs, regbuf);
882
883 ret = -EFAULT;
884 if (copy_to_user(useraddr, &regs, sizeof(regs)))
885 goto out;
886 useraddr += offsetof(struct ethtool_regs, data);
Ben Hutchings67ae7cf2011-07-21 15:25:30 -0700887 if (regbuf && copy_to_user(useraddr, regbuf, regs.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 goto out;
889 ret = 0;
890
891 out:
Ben Hutchingsa77f5db2010-09-20 08:42:17 +0000892 vfree(regbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return ret;
894}
895
Ben Hutchingsd73d3a82009-10-05 10:59:58 +0000896static int ethtool_reset(struct net_device *dev, char __user *useraddr)
897{
898 struct ethtool_value reset;
899 int ret;
900
901 if (!dev->ethtool_ops->reset)
902 return -EOPNOTSUPP;
903
904 if (copy_from_user(&reset, useraddr, sizeof(reset)))
905 return -EFAULT;
906
907 ret = dev->ethtool_ops->reset(dev, &reset.data);
908 if (ret)
909 return ret;
910
911 if (copy_to_user(useraddr, &reset, sizeof(reset)))
912 return -EFAULT;
913 return 0;
914}
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
917{
Roland Dreier8e557422010-02-11 12:14:23 -0800918 struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 if (!dev->ethtool_ops->get_wol)
921 return -EOPNOTSUPP;
922
923 dev->ethtool_ops->get_wol(dev, &wol);
924
925 if (copy_to_user(useraddr, &wol, sizeof(wol)))
926 return -EFAULT;
927 return 0;
928}
929
930static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
931{
932 struct ethtool_wolinfo wol;
933
934 if (!dev->ethtool_ops->set_wol)
935 return -EOPNOTSUPP;
936
937 if (copy_from_user(&wol, useraddr, sizeof(wol)))
938 return -EFAULT;
939
940 return dev->ethtool_ops->set_wol(dev, &wol);
941}
942
Yuval Mintz80f12ec2012-06-06 17:13:06 +0000943static int ethtool_get_eee(struct net_device *dev, char __user *useraddr)
944{
945 struct ethtool_eee edata;
946 int rc;
947
948 if (!dev->ethtool_ops->get_eee)
949 return -EOPNOTSUPP;
950
951 memset(&edata, 0, sizeof(struct ethtool_eee));
952 edata.cmd = ETHTOOL_GEEE;
953 rc = dev->ethtool_ops->get_eee(dev, &edata);
954
955 if (rc)
956 return rc;
957
958 if (copy_to_user(useraddr, &edata, sizeof(edata)))
959 return -EFAULT;
960
961 return 0;
962}
963
964static int ethtool_set_eee(struct net_device *dev, char __user *useraddr)
965{
966 struct ethtool_eee edata;
967
968 if (!dev->ethtool_ops->set_eee)
969 return -EOPNOTSUPP;
970
971 if (copy_from_user(&edata, useraddr, sizeof(edata)))
972 return -EFAULT;
973
974 return dev->ethtool_ops->set_eee(dev, &edata);
975}
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977static int ethtool_nway_reset(struct net_device *dev)
978{
979 if (!dev->ethtool_ops->nway_reset)
980 return -EOPNOTSUPP;
981
982 return dev->ethtool_ops->nway_reset(dev);
983}
984
Ben Hutchingse596e6e2010-12-09 12:08:35 +0000985static int ethtool_get_link(struct net_device *dev, char __user *useraddr)
986{
987 struct ethtool_value edata = { .cmd = ETHTOOL_GLINK };
988
989 if (!dev->ethtool_ops->get_link)
990 return -EOPNOTSUPP;
991
992 edata.data = netif_running(dev) && dev->ethtool_ops->get_link(dev);
993
994 if (copy_to_user(useraddr, &edata, sizeof(edata)))
995 return -EFAULT;
996 return 0;
997}
998
Ben Hutchings081d0942012-04-12 00:42:12 +0000999static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr,
1000 int (*getter)(struct net_device *,
1001 struct ethtool_eeprom *, u8 *),
1002 u32 total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
1004 struct ethtool_eeprom eeprom;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001005 void __user *userbuf = useraddr + sizeof(eeprom);
1006 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 u8 *data;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001008 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1011 return -EFAULT;
1012
1013 /* Check for wrap and zero */
1014 if (eeprom.offset + eeprom.len <= eeprom.offset)
1015 return -EINVAL;
1016
1017 /* Check for exceeding total eeprom len */
Ben Hutchings081d0942012-04-12 00:42:12 +00001018 if (eeprom.offset + eeprom.len > total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return -EINVAL;
1020
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001021 data = kmalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (!data)
1023 return -ENOMEM;
1024
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001025 bytes_remaining = eeprom.len;
1026 while (bytes_remaining > 0) {
1027 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Ben Hutchings081d0942012-04-12 00:42:12 +00001029 ret = getter(dev, &eeprom, data);
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001030 if (ret)
1031 break;
1032 if (copy_to_user(userbuf, data, eeprom.len)) {
1033 ret = -EFAULT;
1034 break;
1035 }
1036 userbuf += eeprom.len;
1037 eeprom.offset += eeprom.len;
1038 bytes_remaining -= eeprom.len;
1039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Mandeep Singh Bainesc5835df2008-04-24 20:55:56 -07001041 eeprom.len = userbuf - (useraddr + sizeof(eeprom));
1042 eeprom.offset -= eeprom.len;
1043 if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
1044 ret = -EFAULT;
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 kfree(data);
1047 return ret;
1048}
1049
Ben Hutchings081d0942012-04-12 00:42:12 +00001050static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
1051{
1052 const struct ethtool_ops *ops = dev->ethtool_ops;
1053
Guenter Roecke0fb6fb2014-10-30 20:50:15 -07001054 if (!ops->get_eeprom || !ops->get_eeprom_len ||
1055 !ops->get_eeprom_len(dev))
Ben Hutchings081d0942012-04-12 00:42:12 +00001056 return -EOPNOTSUPP;
1057
1058 return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom,
1059 ops->get_eeprom_len(dev));
1060}
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
1063{
1064 struct ethtool_eeprom eeprom;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001065 const struct ethtool_ops *ops = dev->ethtool_ops;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001066 void __user *userbuf = useraddr + sizeof(eeprom);
1067 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 u8 *data;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001069 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Guenter Roecke0fb6fb2014-10-30 20:50:15 -07001071 if (!ops->set_eeprom || !ops->get_eeprom_len ||
1072 !ops->get_eeprom_len(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return -EOPNOTSUPP;
1074
1075 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1076 return -EFAULT;
1077
1078 /* Check for wrap and zero */
1079 if (eeprom.offset + eeprom.len <= eeprom.offset)
1080 return -EINVAL;
1081
1082 /* Check for exceeding total eeprom len */
1083 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
1084 return -EINVAL;
1085
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001086 data = kmalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 if (!data)
1088 return -ENOMEM;
1089
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001090 bytes_remaining = eeprom.len;
1091 while (bytes_remaining > 0) {
1092 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001094 if (copy_from_user(data, userbuf, eeprom.len)) {
1095 ret = -EFAULT;
1096 break;
1097 }
1098 ret = ops->set_eeprom(dev, &eeprom, data);
1099 if (ret)
1100 break;
1101 userbuf += eeprom.len;
1102 eeprom.offset += eeprom.len;
1103 bytes_remaining -= eeprom.len;
1104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 kfree(data);
1107 return ret;
1108}
1109
chavey97f8aef2010-04-07 21:54:42 -07001110static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
1111 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Roland Dreier8e557422010-02-11 12:14:23 -08001113 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 if (!dev->ethtool_ops->get_coalesce)
1116 return -EOPNOTSUPP;
1117
1118 dev->ethtool_ops->get_coalesce(dev, &coalesce);
1119
1120 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
1121 return -EFAULT;
1122 return 0;
1123}
1124
chavey97f8aef2010-04-07 21:54:42 -07001125static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
1126 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
1128 struct ethtool_coalesce coalesce;
1129
David S. Millerfa04ae52005-06-06 15:07:19 -07001130 if (!dev->ethtool_ops->set_coalesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 return -EOPNOTSUPP;
1132
1133 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
1134 return -EFAULT;
1135
1136 return dev->ethtool_ops->set_coalesce(dev, &coalesce);
1137}
1138
1139static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
1140{
Roland Dreier8e557422010-02-11 12:14:23 -08001141 struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143 if (!dev->ethtool_ops->get_ringparam)
1144 return -EOPNOTSUPP;
1145
1146 dev->ethtool_ops->get_ringparam(dev, &ringparam);
1147
1148 if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
1149 return -EFAULT;
1150 return 0;
1151}
1152
1153static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
1154{
1155 struct ethtool_ringparam ringparam;
1156
1157 if (!dev->ethtool_ops->set_ringparam)
1158 return -EOPNOTSUPP;
1159
1160 if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
1161 return -EFAULT;
1162
1163 return dev->ethtool_ops->set_ringparam(dev, &ringparam);
1164}
1165
amit salecha8b5933c2011-04-07 01:58:42 +00001166static noinline_for_stack int ethtool_get_channels(struct net_device *dev,
1167 void __user *useraddr)
1168{
1169 struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
1170
1171 if (!dev->ethtool_ops->get_channels)
1172 return -EOPNOTSUPP;
1173
1174 dev->ethtool_ops->get_channels(dev, &channels);
1175
1176 if (copy_to_user(useraddr, &channels, sizeof(channels)))
1177 return -EFAULT;
1178 return 0;
1179}
1180
1181static noinline_for_stack int ethtool_set_channels(struct net_device *dev,
1182 void __user *useraddr)
1183{
1184 struct ethtool_channels channels;
1185
1186 if (!dev->ethtool_ops->set_channels)
1187 return -EOPNOTSUPP;
1188
1189 if (copy_from_user(&channels, useraddr, sizeof(channels)))
1190 return -EFAULT;
1191
1192 return dev->ethtool_ops->set_channels(dev, &channels);
1193}
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
1196{
1197 struct ethtool_pauseparam pauseparam = { ETHTOOL_GPAUSEPARAM };
1198
1199 if (!dev->ethtool_ops->get_pauseparam)
1200 return -EOPNOTSUPP;
1201
1202 dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
1203
1204 if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
1205 return -EFAULT;
1206 return 0;
1207}
1208
1209static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
1210{
1211 struct ethtool_pauseparam pauseparam;
1212
Jeff Garzike1b90c42006-07-17 12:54:40 -04001213 if (!dev->ethtool_ops->set_pauseparam)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return -EOPNOTSUPP;
1215
1216 if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
1217 return -EFAULT;
1218
1219 return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
1220}
1221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
1223{
1224 struct ethtool_test test;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001225 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -07001227 int ret, test_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001229 if (!ops->self_test || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -07001230 return -EOPNOTSUPP;
1231
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001232 test_len = ops->get_sset_count(dev, ETH_SS_TEST);
Jeff Garzikff03d492007-08-15 16:01:08 -07001233 if (test_len < 0)
1234 return test_len;
1235 WARN_ON(test_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 if (copy_from_user(&test, useraddr, sizeof(test)))
1238 return -EFAULT;
1239
Jeff Garzikff03d492007-08-15 16:01:08 -07001240 test.len = test_len;
1241 data = kmalloc(test_len * sizeof(u64), GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 if (!data)
1243 return -ENOMEM;
1244
1245 ops->self_test(dev, &test, data);
1246
1247 ret = -EFAULT;
1248 if (copy_to_user(useraddr, &test, sizeof(test)))
1249 goto out;
1250 useraddr += sizeof(test);
1251 if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
1252 goto out;
1253 ret = 0;
1254
1255 out:
1256 kfree(data);
1257 return ret;
1258}
1259
1260static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
1261{
1262 struct ethtool_gstrings gstrings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 u8 *data;
1264 int ret;
1265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
1267 return -EFAULT;
1268
Michał Mirosław340ae162011-02-15 16:59:16 +00001269 ret = __ethtool_get_sset_count(dev, gstrings.string_set);
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001270 if (ret < 0)
1271 return ret;
Jeff Garzikff03d492007-08-15 16:01:08 -07001272
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001273 gstrings.len = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275 data = kmalloc(gstrings.len * ETH_GSTRING_LEN, GFP_USER);
1276 if (!data)
1277 return -ENOMEM;
1278
Michał Mirosław340ae162011-02-15 16:59:16 +00001279 __ethtool_get_strings(dev, gstrings.string_set, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 ret = -EFAULT;
1282 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
1283 goto out;
1284 useraddr += sizeof(gstrings);
1285 if (copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
1286 goto out;
1287 ret = 0;
1288
Michał Mirosław340ae162011-02-15 16:59:16 +00001289out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 kfree(data);
1291 return ret;
1292}
1293
1294static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
1295{
1296 struct ethtool_value id;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001297 static bool busy;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001298 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001299 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001301 if (!ops->set_phys_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 return -EOPNOTSUPP;
1303
Ben Hutchings68f512f2011-04-02 00:35:15 +01001304 if (busy)
1305 return -EBUSY;
1306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (copy_from_user(&id, useraddr, sizeof(id)))
1308 return -EFAULT;
1309
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001310 rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE);
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001311 if (rc < 0)
Ben Hutchings68f512f2011-04-02 00:35:15 +01001312 return rc;
1313
1314 /* Drop the RTNL lock while waiting, but prevent reentry or
1315 * removal of the device.
1316 */
1317 busy = true;
1318 dev_hold(dev);
1319 rtnl_unlock();
1320
1321 if (rc == 0) {
1322 /* Driver will handle this itself */
1323 schedule_timeout_interruptible(
Allan, Bruce W143780c2011-04-11 13:01:59 +00001324 id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001325 } else {
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001326 /* Driver expects to be called at twice the frequency in rc */
1327 int n = rc * 2, i, interval = HZ / n;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001328
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001329 /* Count down seconds */
1330 do {
1331 /* Count down iterations per second */
1332 i = n;
1333 do {
1334 rtnl_lock();
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001335 rc = ops->set_phys_id(dev,
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001336 (i & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON);
1337 rtnl_unlock();
1338 if (rc)
1339 break;
1340 schedule_timeout_interruptible(interval);
1341 } while (!signal_pending(current) && --i != 0);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001342 } while (!signal_pending(current) &&
1343 (id.data == 0 || --id.data != 0));
1344 }
1345
1346 rtnl_lock();
1347 dev_put(dev);
1348 busy = false;
1349
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001350 (void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001351 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
1354static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
1355{
1356 struct ethtool_stats stats;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001357 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -07001359 int ret, n_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001361 if (!ops->get_ethtool_stats || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -07001362 return -EOPNOTSUPP;
1363
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001364 n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
Jeff Garzikff03d492007-08-15 16:01:08 -07001365 if (n_stats < 0)
1366 return n_stats;
1367 WARN_ON(n_stats == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1370 return -EFAULT;
1371
Jeff Garzikff03d492007-08-15 16:01:08 -07001372 stats.n_stats = n_stats;
1373 data = kmalloc(n_stats * sizeof(u64), GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 if (!data)
1375 return -ENOMEM;
1376
1377 ops->get_ethtool_stats(dev, &stats, data);
1378
1379 ret = -EFAULT;
1380 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1381 goto out;
1382 useraddr += sizeof(stats);
1383 if (copy_to_user(useraddr, data, stats.n_stats * sizeof(u64)))
1384 goto out;
1385 ret = 0;
1386
1387 out:
1388 kfree(data);
1389 return ret;
1390}
1391
viro@ftp.linux.org.uk0bf0519d2005-09-05 03:26:18 +01001392static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
Jon Wetzela6f9a702005-08-20 17:15:54 -07001393{
1394 struct ethtool_perm_addr epaddr;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001395
Matthew Wilcox313674a2007-07-31 14:00:29 -07001396 if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
Jon Wetzela6f9a702005-08-20 17:15:54 -07001397 return -EFAULT;
1398
Matthew Wilcox313674a2007-07-31 14:00:29 -07001399 if (epaddr.size < dev->addr_len)
1400 return -ETOOSMALL;
1401 epaddr.size = dev->addr_len;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001402
Jon Wetzela6f9a702005-08-20 17:15:54 -07001403 if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
Matthew Wilcox313674a2007-07-31 14:00:29 -07001404 return -EFAULT;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001405 useraddr += sizeof(epaddr);
Matthew Wilcox313674a2007-07-31 14:00:29 -07001406 if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
1407 return -EFAULT;
1408 return 0;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001409}
1410
Jeff Garzik13c99b22007-08-15 16:01:56 -07001411static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
1412 u32 cmd, u32 (*actor)(struct net_device *))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001413{
Roland Dreier8e557422010-02-11 12:14:23 -08001414 struct ethtool_value edata = { .cmd = cmd };
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001415
Jeff Garzik13c99b22007-08-15 16:01:56 -07001416 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001417 return -EOPNOTSUPP;
1418
Jeff Garzik13c99b22007-08-15 16:01:56 -07001419 edata.data = actor(dev);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001420
1421 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1422 return -EFAULT;
1423 return 0;
1424}
1425
Jeff Garzik13c99b22007-08-15 16:01:56 -07001426static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
1427 void (*actor)(struct net_device *, u32))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001428{
1429 struct ethtool_value edata;
1430
Jeff Garzik13c99b22007-08-15 16:01:56 -07001431 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001432 return -EOPNOTSUPP;
1433
1434 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1435 return -EFAULT;
1436
Jeff Garzik13c99b22007-08-15 16:01:56 -07001437 actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07001438 return 0;
1439}
1440
Jeff Garzik13c99b22007-08-15 16:01:56 -07001441static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
1442 int (*actor)(struct net_device *, u32))
Jeff Garzik339bf022007-08-15 16:01:32 -07001443{
1444 struct ethtool_value edata;
1445
Jeff Garzik13c99b22007-08-15 16:01:56 -07001446 if (!actor)
Jeff Garzik339bf022007-08-15 16:01:32 -07001447 return -EOPNOTSUPP;
1448
1449 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1450 return -EFAULT;
1451
Jeff Garzik13c99b22007-08-15 16:01:56 -07001452 return actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07001453}
1454
chavey97f8aef2010-04-07 21:54:42 -07001455static noinline_for_stack int ethtool_flash_device(struct net_device *dev,
1456 char __user *useraddr)
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00001457{
1458 struct ethtool_flash efl;
1459
1460 if (copy_from_user(&efl, useraddr, sizeof(efl)))
1461 return -EFAULT;
1462
1463 if (!dev->ethtool_ops->flash_device)
1464 return -EOPNOTSUPP;
1465
Ben Hutchings786f5282012-02-01 09:32:25 +00001466 efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0;
1467
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00001468 return dev->ethtool_ops->flash_device(dev, &efl);
1469}
1470
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00001471static int ethtool_set_dump(struct net_device *dev,
1472 void __user *useraddr)
1473{
1474 struct ethtool_dump dump;
1475
1476 if (!dev->ethtool_ops->set_dump)
1477 return -EOPNOTSUPP;
1478
1479 if (copy_from_user(&dump, useraddr, sizeof(dump)))
1480 return -EFAULT;
1481
1482 return dev->ethtool_ops->set_dump(dev, &dump);
1483}
1484
1485static int ethtool_get_dump_flag(struct net_device *dev,
1486 void __user *useraddr)
1487{
1488 int ret;
1489 struct ethtool_dump dump;
1490 const struct ethtool_ops *ops = dev->ethtool_ops;
1491
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001492 if (!ops->get_dump_flag)
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00001493 return -EOPNOTSUPP;
1494
1495 if (copy_from_user(&dump, useraddr, sizeof(dump)))
1496 return -EFAULT;
1497
1498 ret = ops->get_dump_flag(dev, &dump);
1499 if (ret)
1500 return ret;
1501
1502 if (copy_to_user(useraddr, &dump, sizeof(dump)))
1503 return -EFAULT;
1504 return 0;
1505}
1506
1507static int ethtool_get_dump_data(struct net_device *dev,
1508 void __user *useraddr)
1509{
1510 int ret;
1511 __u32 len;
1512 struct ethtool_dump dump, tmp;
1513 const struct ethtool_ops *ops = dev->ethtool_ops;
1514 void *data = NULL;
1515
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001516 if (!ops->get_dump_data || !ops->get_dump_flag)
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00001517 return -EOPNOTSUPP;
1518
1519 if (copy_from_user(&dump, useraddr, sizeof(dump)))
1520 return -EFAULT;
1521
1522 memset(&tmp, 0, sizeof(tmp));
1523 tmp.cmd = ETHTOOL_GET_DUMP_FLAG;
1524 ret = ops->get_dump_flag(dev, &tmp);
1525 if (ret)
1526 return ret;
1527
Michal Schmidtc590b5e2013-07-01 17:23:30 +02001528 len = min(tmp.len, dump.len);
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00001529 if (!len)
1530 return -EFAULT;
1531
Michal Schmidtc590b5e2013-07-01 17:23:30 +02001532 /* Don't ever let the driver think there's more space available
1533 * than it requested with .get_dump_flag().
1534 */
1535 dump.len = len;
1536
1537 /* Always allocate enough space to hold the whole thing so that the
1538 * driver does not need to check the length and bother with partial
1539 * dumping.
1540 */
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00001541 data = vzalloc(tmp.len);
1542 if (!data)
1543 return -ENOMEM;
1544 ret = ops->get_dump_data(dev, &dump, data);
1545 if (ret)
1546 goto out;
1547
Michal Schmidtc590b5e2013-07-01 17:23:30 +02001548 /* There are two sane possibilities:
1549 * 1. The driver's .get_dump_data() does not touch dump.len.
1550 * 2. Or it may set dump.len to how much it really writes, which
1551 * should be tmp.len (or len if it can do a partial dump).
1552 * In any case respond to userspace with the actual length of data
1553 * it's receiving.
1554 */
1555 WARN_ON(dump.len != len && dump.len != tmp.len);
1556 dump.len = len;
1557
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00001558 if (copy_to_user(useraddr, &dump, sizeof(dump))) {
1559 ret = -EFAULT;
1560 goto out;
1561 }
1562 useraddr += offsetof(struct ethtool_dump, data);
1563 if (copy_to_user(useraddr, data, len))
1564 ret = -EFAULT;
1565out:
1566 vfree(data);
1567 return ret;
1568}
1569
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00001570static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr)
1571{
1572 int err = 0;
1573 struct ethtool_ts_info info;
1574 const struct ethtool_ops *ops = dev->ethtool_ops;
1575 struct phy_device *phydev = dev->phydev;
1576
1577 memset(&info, 0, sizeof(info));
1578 info.cmd = ETHTOOL_GET_TS_INFO;
1579
1580 if (phydev && phydev->drv && phydev->drv->ts_info) {
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00001581 err = phydev->drv->ts_info(phydev, &info);
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001582 } else if (ops->get_ts_info) {
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00001583 err = ops->get_ts_info(dev, &info);
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00001584 } else {
1585 info.so_timestamping =
1586 SOF_TIMESTAMPING_RX_SOFTWARE |
1587 SOF_TIMESTAMPING_SOFTWARE;
1588 info.phc_index = -1;
1589 }
1590
1591 if (err)
1592 return err;
1593
1594 if (copy_to_user(useraddr, &info, sizeof(info)))
1595 err = -EFAULT;
1596
1597 return err;
1598}
1599
Ed Swierk2f438362015-01-02 17:27:56 -08001600static int __ethtool_get_module_info(struct net_device *dev,
1601 struct ethtool_modinfo *modinfo)
1602{
1603 const struct ethtool_ops *ops = dev->ethtool_ops;
1604 struct phy_device *phydev = dev->phydev;
1605
1606 if (phydev && phydev->drv && phydev->drv->module_info)
1607 return phydev->drv->module_info(phydev, modinfo);
1608
1609 if (ops->get_module_info)
1610 return ops->get_module_info(dev, modinfo);
1611
1612 return -EOPNOTSUPP;
1613}
1614
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01001615static int ethtool_get_module_info(struct net_device *dev,
1616 void __user *useraddr)
1617{
1618 int ret;
1619 struct ethtool_modinfo modinfo;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01001620
1621 if (copy_from_user(&modinfo, useraddr, sizeof(modinfo)))
1622 return -EFAULT;
1623
Ed Swierk2f438362015-01-02 17:27:56 -08001624 ret = __ethtool_get_module_info(dev, &modinfo);
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01001625 if (ret)
1626 return ret;
1627
1628 if (copy_to_user(useraddr, &modinfo, sizeof(modinfo)))
1629 return -EFAULT;
1630
1631 return 0;
1632}
1633
Ed Swierk2f438362015-01-02 17:27:56 -08001634static int __ethtool_get_module_eeprom(struct net_device *dev,
1635 struct ethtool_eeprom *ee, u8 *data)
1636{
1637 const struct ethtool_ops *ops = dev->ethtool_ops;
1638 struct phy_device *phydev = dev->phydev;
1639
1640 if (phydev && phydev->drv && phydev->drv->module_eeprom)
1641 return phydev->drv->module_eeprom(phydev, ee, data);
1642
1643 if (ops->get_module_eeprom)
1644 return ops->get_module_eeprom(dev, ee, data);
1645
1646 return -EOPNOTSUPP;
1647}
1648
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01001649static int ethtool_get_module_eeprom(struct net_device *dev,
1650 void __user *useraddr)
1651{
1652 int ret;
1653 struct ethtool_modinfo modinfo;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01001654
Ed Swierk2f438362015-01-02 17:27:56 -08001655 ret = __ethtool_get_module_info(dev, &modinfo);
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01001656 if (ret)
1657 return ret;
1658
Ed Swierk2f438362015-01-02 17:27:56 -08001659 return ethtool_get_any_eeprom(dev, useraddr,
1660 __ethtool_get_module_eeprom,
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01001661 modinfo.eeprom_len);
1662}
1663
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05301664static int ethtool_tunable_valid(const struct ethtool_tunable *tuna)
1665{
1666 switch (tuna->id) {
1667 case ETHTOOL_RX_COPYBREAK:
Eric Dumazet1255a502014-10-05 12:35:21 +03001668 case ETHTOOL_TX_COPYBREAK:
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05301669 if (tuna->len != sizeof(u32) ||
1670 tuna->type_id != ETHTOOL_TUNABLE_U32)
1671 return -EINVAL;
1672 break;
1673 default:
1674 return -EINVAL;
1675 }
1676
1677 return 0;
1678}
1679
1680static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr)
1681{
1682 int ret;
1683 struct ethtool_tunable tuna;
1684 const struct ethtool_ops *ops = dev->ethtool_ops;
1685 void *data;
1686
1687 if (!ops->get_tunable)
1688 return -EOPNOTSUPP;
1689 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
1690 return -EFAULT;
1691 ret = ethtool_tunable_valid(&tuna);
1692 if (ret)
1693 return ret;
1694 data = kmalloc(tuna.len, GFP_USER);
1695 if (!data)
1696 return -ENOMEM;
1697 ret = ops->get_tunable(dev, &tuna, data);
1698 if (ret)
1699 goto out;
1700 useraddr += sizeof(tuna);
1701 ret = -EFAULT;
1702 if (copy_to_user(useraddr, data, tuna.len))
1703 goto out;
1704 ret = 0;
1705
1706out:
1707 kfree(data);
1708 return ret;
1709}
1710
1711static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr)
1712{
1713 int ret;
1714 struct ethtool_tunable tuna;
1715 const struct ethtool_ops *ops = dev->ethtool_ops;
1716 void *data;
1717
1718 if (!ops->set_tunable)
1719 return -EOPNOTSUPP;
1720 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
1721 return -EFAULT;
1722 ret = ethtool_tunable_valid(&tuna);
1723 if (ret)
1724 return ret;
1725 data = kmalloc(tuna.len, GFP_USER);
1726 if (!data)
1727 return -ENOMEM;
1728 useraddr += sizeof(tuna);
1729 ret = -EFAULT;
1730 if (copy_from_user(data, useraddr, tuna.len))
1731 goto out;
1732 ret = ops->set_tunable(dev, &tuna, data);
1733
1734out:
1735 kfree(data);
1736 return ret;
1737}
1738
Yan Burman600fed52013-06-03 02:03:34 +00001739/* The main entry point in this file. Called from net/core/dev_ioctl.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Eric W. Biederman881d9662007-09-17 11:56:21 -07001741int dev_ethtool(struct net *net, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001743 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 void __user *useraddr = ifr->ifr_data;
1745 u32 ethcmd;
1746 int rc;
Bjørn Morkb29d3142013-05-01 23:06:42 +00001747 netdev_features_t old_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 if (!dev || !netif_device_present(dev))
1750 return -ENODEV;
1751
chavey97f8aef2010-04-07 21:54:42 -07001752 if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 return -EFAULT;
1754
Stephen Hemminger75f31232006-09-28 15:13:37 -07001755 /* Allow some commands to be done by anyone */
chavey97f8aef2010-04-07 21:54:42 -07001756 switch (ethcmd) {
stephen hemminger0fdc1002010-08-23 10:24:18 +00001757 case ETHTOOL_GSET:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001758 case ETHTOOL_GDRVINFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001759 case ETHTOOL_GMSGLVL:
Ben Hutchings2da45db2012-06-12 13:05:41 +00001760 case ETHTOOL_GLINK:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001761 case ETHTOOL_GCOALESCE:
1762 case ETHTOOL_GRINGPARAM:
1763 case ETHTOOL_GPAUSEPARAM:
1764 case ETHTOOL_GRXCSUM:
1765 case ETHTOOL_GTXCSUM:
1766 case ETHTOOL_GSG:
Michał Mirosławf80400a2012-01-22 00:20:40 +00001767 case ETHTOOL_GSSET_INFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001768 case ETHTOOL_GSTRINGS:
Ben Hutchings2da45db2012-06-12 13:05:41 +00001769 case ETHTOOL_GSTATS:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001770 case ETHTOOL_GTSO:
1771 case ETHTOOL_GPERMADDR:
1772 case ETHTOOL_GUFO:
1773 case ETHTOOL_GGSO:
stephen hemminger1cab8192010-02-11 13:48:29 +00001774 case ETHTOOL_GGRO:
Jeff Garzik339bf022007-08-15 16:01:32 -07001775 case ETHTOOL_GFLAGS:
1776 case ETHTOOL_GPFLAGS:
Santwona Behera0853ad62008-07-02 03:47:41 -07001777 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08001778 case ETHTOOL_GRXRINGS:
1779 case ETHTOOL_GRXCLSRLCNT:
1780 case ETHTOOL_GRXCLSRULE:
1781 case ETHTOOL_GRXCLSRLALL:
Ben Hutchings2da45db2012-06-12 13:05:41 +00001782 case ETHTOOL_GRXFHINDIR:
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301783 case ETHTOOL_GRSSH:
Michał Mirosław5455c692011-02-15 16:59:17 +00001784 case ETHTOOL_GFEATURES:
Ben Hutchings2da45db2012-06-12 13:05:41 +00001785 case ETHTOOL_GCHANNELS:
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00001786 case ETHTOOL_GET_TS_INFO:
Ben Hutchings2da45db2012-06-12 13:05:41 +00001787 case ETHTOOL_GEEE:
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05301788 case ETHTOOL_GTUNABLE:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001789 break;
1790 default:
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +00001791 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Stephen Hemminger75f31232006-09-28 15:13:37 -07001792 return -EPERM;
1793 }
1794
chavey97f8aef2010-04-07 21:54:42 -07001795 if (dev->ethtool_ops->begin) {
1796 rc = dev->ethtool_ops->begin(dev);
1797 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 return rc;
chavey97f8aef2010-04-07 21:54:42 -07001799 }
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001800 old_features = dev->features;
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 switch (ethcmd) {
1803 case ETHTOOL_GSET:
1804 rc = ethtool_get_settings(dev, useraddr);
1805 break;
1806 case ETHTOOL_SSET:
1807 rc = ethtool_set_settings(dev, useraddr);
1808 break;
1809 case ETHTOOL_GDRVINFO:
1810 rc = ethtool_get_drvinfo(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 break;
1812 case ETHTOOL_GREGS:
1813 rc = ethtool_get_regs(dev, useraddr);
1814 break;
1815 case ETHTOOL_GWOL:
1816 rc = ethtool_get_wol(dev, useraddr);
1817 break;
1818 case ETHTOOL_SWOL:
1819 rc = ethtool_set_wol(dev, useraddr);
1820 break;
1821 case ETHTOOL_GMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001822 rc = ethtool_get_value(dev, useraddr, ethcmd,
1823 dev->ethtool_ops->get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 break;
1825 case ETHTOOL_SMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001826 rc = ethtool_set_value_void(dev, useraddr,
1827 dev->ethtool_ops->set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 break;
Yuval Mintz80f12ec2012-06-06 17:13:06 +00001829 case ETHTOOL_GEEE:
1830 rc = ethtool_get_eee(dev, useraddr);
1831 break;
1832 case ETHTOOL_SEEE:
1833 rc = ethtool_set_eee(dev, useraddr);
1834 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 case ETHTOOL_NWAY_RST:
1836 rc = ethtool_nway_reset(dev);
1837 break;
1838 case ETHTOOL_GLINK:
Ben Hutchingse596e6e2010-12-09 12:08:35 +00001839 rc = ethtool_get_link(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 break;
1841 case ETHTOOL_GEEPROM:
1842 rc = ethtool_get_eeprom(dev, useraddr);
1843 break;
1844 case ETHTOOL_SEEPROM:
1845 rc = ethtool_set_eeprom(dev, useraddr);
1846 break;
1847 case ETHTOOL_GCOALESCE:
1848 rc = ethtool_get_coalesce(dev, useraddr);
1849 break;
1850 case ETHTOOL_SCOALESCE:
1851 rc = ethtool_set_coalesce(dev, useraddr);
1852 break;
1853 case ETHTOOL_GRINGPARAM:
1854 rc = ethtool_get_ringparam(dev, useraddr);
1855 break;
1856 case ETHTOOL_SRINGPARAM:
1857 rc = ethtool_set_ringparam(dev, useraddr);
1858 break;
1859 case ETHTOOL_GPAUSEPARAM:
1860 rc = ethtool_get_pauseparam(dev, useraddr);
1861 break;
1862 case ETHTOOL_SPAUSEPARAM:
1863 rc = ethtool_set_pauseparam(dev, useraddr);
1864 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 case ETHTOOL_TEST:
1866 rc = ethtool_self_test(dev, useraddr);
1867 break;
1868 case ETHTOOL_GSTRINGS:
1869 rc = ethtool_get_strings(dev, useraddr);
1870 break;
1871 case ETHTOOL_PHYS_ID:
1872 rc = ethtool_phys_id(dev, useraddr);
1873 break;
1874 case ETHTOOL_GSTATS:
1875 rc = ethtool_get_stats(dev, useraddr);
1876 break;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001877 case ETHTOOL_GPERMADDR:
1878 rc = ethtool_get_perm_addr(dev, useraddr);
1879 break;
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001880 case ETHTOOL_GFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001881 rc = ethtool_get_value(dev, useraddr, ethcmd,
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001882 __ethtool_get_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001883 break;
1884 case ETHTOOL_SFLAGS:
Michał Mirosławda8ac86c2011-02-15 16:59:18 +00001885 rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001886 break;
Jeff Garzik339bf022007-08-15 16:01:32 -07001887 case ETHTOOL_GPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001888 rc = ethtool_get_value(dev, useraddr, ethcmd,
1889 dev->ethtool_ops->get_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07001890 break;
1891 case ETHTOOL_SPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001892 rc = ethtool_set_value(dev, useraddr,
1893 dev->ethtool_ops->set_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07001894 break;
Santwona Behera0853ad62008-07-02 03:47:41 -07001895 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08001896 case ETHTOOL_GRXRINGS:
1897 case ETHTOOL_GRXCLSRLCNT:
1898 case ETHTOOL_GRXCLSRULE:
1899 case ETHTOOL_GRXCLSRLALL:
Ben Hutchingsbf988432010-06-28 08:45:58 +00001900 rc = ethtool_get_rxnfc(dev, ethcmd, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07001901 break;
1902 case ETHTOOL_SRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08001903 case ETHTOOL_SRXCLSRLDEL:
1904 case ETHTOOL_SRXCLSRLINS:
Ben Hutchingsbf988432010-06-28 08:45:58 +00001905 rc = ethtool_set_rxnfc(dev, ethcmd, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07001906 break;
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00001907 case ETHTOOL_FLASHDEV:
1908 rc = ethtool_flash_device(dev, useraddr);
1909 break;
Ben Hutchingsd73d3a82009-10-05 10:59:58 +00001910 case ETHTOOL_RESET:
1911 rc = ethtool_reset(dev, useraddr);
1912 break;
Jeff Garzik723b2f52010-03-03 22:51:50 +00001913 case ETHTOOL_GSSET_INFO:
1914 rc = ethtool_get_sset_info(dev, useraddr);
1915 break;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001916 case ETHTOOL_GRXFHINDIR:
1917 rc = ethtool_get_rxfh_indir(dev, useraddr);
1918 break;
1919 case ETHTOOL_SRXFHINDIR:
1920 rc = ethtool_set_rxfh_indir(dev, useraddr);
1921 break;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301922 case ETHTOOL_GRSSH:
1923 rc = ethtool_get_rxfh(dev, useraddr);
1924 break;
1925 case ETHTOOL_SRSSH:
1926 rc = ethtool_set_rxfh(dev, useraddr);
1927 break;
Michał Mirosław5455c692011-02-15 16:59:17 +00001928 case ETHTOOL_GFEATURES:
1929 rc = ethtool_get_features(dev, useraddr);
1930 break;
1931 case ETHTOOL_SFEATURES:
1932 rc = ethtool_set_features(dev, useraddr);
1933 break;
Michał Mirosław0a417702011-02-15 16:59:17 +00001934 case ETHTOOL_GTXCSUM:
Michał Mirosławe83d3602011-02-15 16:59:18 +00001935 case ETHTOOL_GRXCSUM:
Michał Mirosław0a417702011-02-15 16:59:17 +00001936 case ETHTOOL_GSG:
1937 case ETHTOOL_GTSO:
1938 case ETHTOOL_GUFO:
1939 case ETHTOOL_GGSO:
1940 case ETHTOOL_GGRO:
1941 rc = ethtool_get_one_feature(dev, useraddr, ethcmd);
1942 break;
1943 case ETHTOOL_STXCSUM:
Michał Mirosławe83d3602011-02-15 16:59:18 +00001944 case ETHTOOL_SRXCSUM:
Michał Mirosław0a417702011-02-15 16:59:17 +00001945 case ETHTOOL_SSG:
1946 case ETHTOOL_STSO:
1947 case ETHTOOL_SUFO:
1948 case ETHTOOL_SGSO:
1949 case ETHTOOL_SGRO:
1950 rc = ethtool_set_one_feature(dev, useraddr, ethcmd);
1951 break;
amit salecha8b5933c2011-04-07 01:58:42 +00001952 case ETHTOOL_GCHANNELS:
1953 rc = ethtool_get_channels(dev, useraddr);
1954 break;
1955 case ETHTOOL_SCHANNELS:
1956 rc = ethtool_set_channels(dev, useraddr);
1957 break;
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00001958 case ETHTOOL_SET_DUMP:
1959 rc = ethtool_set_dump(dev, useraddr);
1960 break;
1961 case ETHTOOL_GET_DUMP_FLAG:
1962 rc = ethtool_get_dump_flag(dev, useraddr);
1963 break;
1964 case ETHTOOL_GET_DUMP_DATA:
1965 rc = ethtool_get_dump_data(dev, useraddr);
1966 break;
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00001967 case ETHTOOL_GET_TS_INFO:
1968 rc = ethtool_get_ts_info(dev, useraddr);
1969 break;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01001970 case ETHTOOL_GMODULEINFO:
1971 rc = ethtool_get_module_info(dev, useraddr);
1972 break;
1973 case ETHTOOL_GMODULEEEPROM:
1974 rc = ethtool_get_module_eeprom(dev, useraddr);
1975 break;
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05301976 case ETHTOOL_GTUNABLE:
1977 rc = ethtool_get_tunable(dev, useraddr);
1978 break;
1979 case ETHTOOL_STUNABLE:
1980 rc = ethtool_set_tunable(dev, useraddr);
1981 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 default:
Matthew Wilcox61a44b92007-07-31 14:00:02 -07001983 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001985
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001986 if (dev->ethtool_ops->complete)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 dev->ethtool_ops->complete(dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001988
1989 if (old_features != dev->features)
1990 netdev_features_change(dev);
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993}