blob: db8a77bb557b53a641be5ad417fea98693c9ddd2 [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>
Jeff Garzikd17792e2010-03-04 08:21:53 +000020#include <linux/bitops.h>
chavey97f8aef2010-04-07 21:54:42 -070021#include <linux/uaccess.h>
David S. Miller73da16c2010-09-21 16:12:11 -070022#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Ben Hutchings68f512f2011-04-02 00:35:15 +010024#include <linux/rtnetlink.h>
25#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090027/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * Some useful ethtool_ops methods that're device independent.
29 * If we find that all drivers want to do the same thing here,
30 * we can turn these into dev_() function calls.
31 */
32
33u32 ethtool_op_get_link(struct net_device *dev)
34{
35 return netif_carrier_ok(dev) ? 1 : 0;
36}
chavey97f8aef2010-04-07 21:54:42 -070037EXPORT_SYMBOL(ethtool_op_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/* Handlers for each ethtool command */
40
Michał Mirosław5455c692011-02-15 16:59:17 +000041#define ETHTOOL_DEV_FEATURE_WORDS 1
42
43static int ethtool_get_features(struct net_device *dev, void __user *useraddr)
44{
45 struct ethtool_gfeatures cmd = {
46 .cmd = ETHTOOL_GFEATURES,
47 .size = ETHTOOL_DEV_FEATURE_WORDS,
48 };
49 struct ethtool_get_features_block features[ETHTOOL_DEV_FEATURE_WORDS] = {
50 {
51 .available = dev->hw_features,
52 .requested = dev->wanted_features,
53 .active = dev->features,
54 .never_changed = NETIF_F_NEVER_CHANGE,
55 },
56 };
57 u32 __user *sizeaddr;
58 u32 copy_size;
59
60 sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size);
61 if (get_user(copy_size, sizeaddr))
62 return -EFAULT;
63
64 if (copy_size > ETHTOOL_DEV_FEATURE_WORDS)
65 copy_size = ETHTOOL_DEV_FEATURE_WORDS;
66
67 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
68 return -EFAULT;
69 useraddr += sizeof(cmd);
70 if (copy_to_user(useraddr, features, copy_size * sizeof(*features)))
71 return -EFAULT;
72
73 return 0;
74}
75
76static int ethtool_set_features(struct net_device *dev, void __user *useraddr)
77{
78 struct ethtool_sfeatures cmd;
79 struct ethtool_set_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
80 int ret = 0;
81
82 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
83 return -EFAULT;
84 useraddr += sizeof(cmd);
85
86 if (cmd.size != ETHTOOL_DEV_FEATURE_WORDS)
87 return -EINVAL;
88
89 if (copy_from_user(features, useraddr, sizeof(features)))
90 return -EFAULT;
91
92 if (features[0].valid & ~NETIF_F_ETHTOOL_BITS)
93 return -EINVAL;
94
95 if (features[0].valid & ~dev->hw_features) {
96 features[0].valid &= dev->hw_features;
97 ret |= ETHTOOL_F_UNSUPPORTED;
98 }
99
100 dev->wanted_features &= ~features[0].valid;
101 dev->wanted_features |= features[0].valid & features[0].requested;
Michał Mirosław6cb6a272011-04-02 22:48:47 -0700102 __netdev_update_features(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +0000103
104 if ((dev->wanted_features ^ dev->features) & features[0].valid)
105 ret |= ETHTOOL_F_WISH;
106
107 return ret;
108}
109
110static const char netdev_features_strings[ETHTOOL_DEV_FEATURE_WORDS * 32][ETH_GSTRING_LEN] = {
111 /* NETIF_F_SG */ "tx-scatter-gather",
112 /* NETIF_F_IP_CSUM */ "tx-checksum-ipv4",
113 /* NETIF_F_NO_CSUM */ "tx-checksum-unneeded",
114 /* NETIF_F_HW_CSUM */ "tx-checksum-ip-generic",
Michał Mirosław7cc31a92011-05-17 16:50:02 -0400115 /* NETIF_F_IPV6_CSUM */ "tx-checksum-ipv6",
Michał Mirosław5455c692011-02-15 16:59:17 +0000116 /* NETIF_F_HIGHDMA */ "highdma",
117 /* NETIF_F_FRAGLIST */ "tx-scatter-gather-fraglist",
118 /* NETIF_F_HW_VLAN_TX */ "tx-vlan-hw-insert",
119
120 /* NETIF_F_HW_VLAN_RX */ "rx-vlan-hw-parse",
121 /* NETIF_F_HW_VLAN_FILTER */ "rx-vlan-filter",
122 /* NETIF_F_VLAN_CHALLENGED */ "vlan-challenged",
123 /* NETIF_F_GSO */ "tx-generic-segmentation",
124 /* NETIF_F_LLTX */ "tx-lockless",
125 /* NETIF_F_NETNS_LOCAL */ "netns-local",
126 /* NETIF_F_GRO */ "rx-gro",
127 /* NETIF_F_LRO */ "rx-lro",
128
129 /* NETIF_F_TSO */ "tx-tcp-segmentation",
130 /* NETIF_F_UFO */ "tx-udp-fragmentation",
131 /* NETIF_F_GSO_ROBUST */ "tx-gso-robust",
132 /* NETIF_F_TSO_ECN */ "tx-tcp-ecn-segmentation",
133 /* NETIF_F_TSO6 */ "tx-tcp6-segmentation",
134 /* NETIF_F_FSO */ "tx-fcoe-segmentation",
135 "",
136 "",
137
138 /* NETIF_F_FCOE_CRC */ "tx-checksum-fcoe-crc",
139 /* NETIF_F_SCTP_CSUM */ "tx-checksum-sctp",
140 /* NETIF_F_FCOE_MTU */ "fcoe-mtu",
141 /* NETIF_F_NTUPLE */ "rx-ntuple-filter",
142 /* NETIF_F_RXHASH */ "rx-hashing",
Michał Mirosławe83d3602011-02-15 16:59:18 +0000143 /* NETIF_F_RXCSUM */ "rx-checksum",
Franco Fichtner864b54182011-05-12 06:42:04 +0000144 /* NETIF_F_NOCACHE_COPY */ "tx-nocache-copy",
Mahesh Bandewareed2a122011-05-04 15:30:11 +0000145 /* NETIF_F_LOOPBACK */ "loopback",
Michał Mirosław5455c692011-02-15 16:59:17 +0000146};
147
Michał Mirosław340ae162011-02-15 16:59:16 +0000148static int __ethtool_get_sset_count(struct net_device *dev, int sset)
149{
150 const struct ethtool_ops *ops = dev->ethtool_ops;
151
Michał Mirosław5455c692011-02-15 16:59:17 +0000152 if (sset == ETH_SS_FEATURES)
153 return ARRAY_SIZE(netdev_features_strings);
154
Michał Mirosław340ae162011-02-15 16:59:16 +0000155 if (ops && ops->get_sset_count && ops->get_strings)
156 return ops->get_sset_count(dev, sset);
157 else
158 return -EOPNOTSUPP;
159}
160
161static void __ethtool_get_strings(struct net_device *dev,
162 u32 stringset, u8 *data)
163{
164 const struct ethtool_ops *ops = dev->ethtool_ops;
165
Michał Mirosław5455c692011-02-15 16:59:17 +0000166 if (stringset == ETH_SS_FEATURES)
167 memcpy(data, netdev_features_strings,
168 sizeof(netdev_features_strings));
169 else
170 /* ops->get_strings is valid because checked earlier */
171 ops->get_strings(dev, stringset, data);
Michał Mirosław340ae162011-02-15 16:59:16 +0000172}
173
Michał Mirosław0a417702011-02-15 16:59:17 +0000174static u32 ethtool_get_feature_mask(u32 eth_cmd)
175{
176 /* feature masks of legacy discrete ethtool ops */
177
178 switch (eth_cmd) {
179 case ETHTOOL_GTXCSUM:
180 case ETHTOOL_STXCSUM:
181 return NETIF_F_ALL_CSUM | NETIF_F_SCTP_CSUM;
Michał Mirosławe83d3602011-02-15 16:59:18 +0000182 case ETHTOOL_GRXCSUM:
183 case ETHTOOL_SRXCSUM:
184 return NETIF_F_RXCSUM;
Michał Mirosław0a417702011-02-15 16:59:17 +0000185 case ETHTOOL_GSG:
186 case ETHTOOL_SSG:
187 return NETIF_F_SG;
188 case ETHTOOL_GTSO:
189 case ETHTOOL_STSO:
190 return NETIF_F_ALL_TSO;
191 case ETHTOOL_GUFO:
192 case ETHTOOL_SUFO:
193 return NETIF_F_UFO;
194 case ETHTOOL_GGSO:
195 case ETHTOOL_SGSO:
196 return NETIF_F_GSO;
197 case ETHTOOL_GGRO:
198 case ETHTOOL_SGRO:
199 return NETIF_F_GRO;
200 default:
201 BUG();
202 }
203}
204
Michał Mirosław0a417702011-02-15 16:59:17 +0000205static int ethtool_get_one_feature(struct net_device *dev,
206 char __user *useraddr, u32 ethcmd)
207{
Michał Mirosław86794882011-02-15 16:59:17 +0000208 u32 mask = ethtool_get_feature_mask(ethcmd);
Michał Mirosław0a417702011-02-15 16:59:17 +0000209 struct ethtool_value edata = {
210 .cmd = ethcmd,
Michał Mirosław86794882011-02-15 16:59:17 +0000211 .data = !!(dev->features & mask),
Michał Mirosław0a417702011-02-15 16:59:17 +0000212 };
Michał Mirosław0a417702011-02-15 16:59:17 +0000213
Michał Mirosław0a417702011-02-15 16:59:17 +0000214 if (copy_to_user(useraddr, &edata, sizeof(edata)))
215 return -EFAULT;
216 return 0;
217}
218
Michał Mirosław0a417702011-02-15 16:59:17 +0000219static int ethtool_set_one_feature(struct net_device *dev,
220 void __user *useraddr, u32 ethcmd)
221{
222 struct ethtool_value edata;
223 u32 mask;
224
225 if (copy_from_user(&edata, useraddr, sizeof(edata)))
226 return -EFAULT;
227
Michał Mirosław86794882011-02-15 16:59:17 +0000228 mask = ethtool_get_feature_mask(ethcmd);
229 mask &= dev->hw_features;
Michał Mirosławbc5787c2011-11-15 15:29:55 +0000230 if (!mask)
Michał Mirosław0a417702011-02-15 16:59:17 +0000231 return -EOPNOTSUPP;
Michał Mirosławbc5787c2011-11-15 15:29:55 +0000232
233 if (edata.data)
234 dev->wanted_features |= mask;
235 else
236 dev->wanted_features &= ~mask;
237
238 __netdev_update_features(dev);
239
240 return 0;
Michał Mirosław0a417702011-02-15 16:59:17 +0000241}
242
Michał Mirosławbc5787c2011-11-15 15:29:55 +0000243/* the following list of flags are the same as their associated
244 * NETIF_F_xxx values in include/linux/netdevice.h
245 */
246static const u32 flags_dup_features =
247 (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | ETH_FLAG_NTUPLE |
248 ETH_FLAG_RXHASH);
249
250static u32 __ethtool_get_flags(struct net_device *dev)
251{
252 return dev->features & flags_dup_features;
253}
254
255static int __ethtool_set_flags(struct net_device *dev, u32 data)
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000256{
257 u32 changed;
258
259 if (data & ~flags_dup_features)
260 return -EINVAL;
261
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000262 /* allow changing only bits set in hw_features */
Michał Mirosław5f8629c2011-04-21 13:59:21 +0000263 changed = (data ^ dev->features) & flags_dup_features;
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000264 if (changed & ~dev->hw_features)
265 return (changed & dev->hw_features) ? -EINVAL : -EOPNOTSUPP;
266
267 dev->wanted_features =
Michał Mirosław5f8629c2011-04-21 13:59:21 +0000268 (dev->wanted_features & ~changed) | (data & dev->hw_features);
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000269
Michał Mirosław6cb6a272011-04-02 22:48:47 -0700270 __netdev_update_features(dev);
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000271
272 return 0;
273}
274
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000275int __ethtool_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000277 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000279 if (!dev->ethtool_ops || !dev->ethtool_ops->get_settings)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return -EOPNOTSUPP;
281
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000282 memset(cmd, 0, sizeof(struct ethtool_cmd));
283 cmd->cmd = ETHTOOL_GSET;
284 return dev->ethtool_ops->get_settings(dev, cmd);
285}
286EXPORT_SYMBOL(__ethtool_get_settings);
287
288static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
289{
290 int err;
291 struct ethtool_cmd cmd;
292
293 err = __ethtool_get_settings(dev, &cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (err < 0)
295 return err;
296
297 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
298 return -EFAULT;
299 return 0;
300}
301
302static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
303{
304 struct ethtool_cmd cmd;
305
306 if (!dev->ethtool_ops->set_settings)
307 return -EOPNOTSUPP;
308
309 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
310 return -EFAULT;
311
312 return dev->ethtool_ops->set_settings(dev, &cmd);
313}
314
chavey97f8aef2010-04-07 21:54:42 -0700315static noinline_for_stack int ethtool_get_drvinfo(struct net_device *dev,
316 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
318 struct ethtool_drvinfo info;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700319 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 memset(&info, 0, sizeof(info));
322 info.cmd = ETHTOOL_GDRVINFO;
Ben Hutchings01414802010-08-17 02:31:15 -0700323 if (ops && ops->get_drvinfo) {
324 ops->get_drvinfo(dev, &info);
325 } else if (dev->dev.parent && dev->dev.parent->driver) {
326 strlcpy(info.bus_info, dev_name(dev->dev.parent),
327 sizeof(info.bus_info));
328 strlcpy(info.driver, dev->dev.parent->driver->name,
329 sizeof(info.driver));
330 } else {
331 return -EOPNOTSUPP;
332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Jeff Garzik723b2f52010-03-03 22:51:50 +0000334 /*
335 * this method of obtaining string set info is deprecated;
Jeff Garzikd17792e2010-03-04 08:21:53 +0000336 * Use ETHTOOL_GSSET_INFO instead.
Jeff Garzik723b2f52010-03-03 22:51:50 +0000337 */
Ben Hutchings01414802010-08-17 02:31:15 -0700338 if (ops && ops->get_sset_count) {
Jeff Garzikff03d492007-08-15 16:01:08 -0700339 int rc;
340
341 rc = ops->get_sset_count(dev, ETH_SS_TEST);
342 if (rc >= 0)
343 info.testinfo_len = rc;
344 rc = ops->get_sset_count(dev, ETH_SS_STATS);
345 if (rc >= 0)
346 info.n_stats = rc;
Jeff Garzik339bf022007-08-15 16:01:32 -0700347 rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
348 if (rc >= 0)
349 info.n_priv_flags = rc;
Jeff Garzikff03d492007-08-15 16:01:08 -0700350 }
Ben Hutchings01414802010-08-17 02:31:15 -0700351 if (ops && ops->get_regs_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 info.regdump_len = ops->get_regs_len(dev);
Ben Hutchings01414802010-08-17 02:31:15 -0700353 if (ops && ops->get_eeprom_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 info.eedump_len = ops->get_eeprom_len(dev);
355
356 if (copy_to_user(useraddr, &info, sizeof(info)))
357 return -EFAULT;
358 return 0;
359}
360
Eric Dumazetf5c445e2010-03-08 12:17:04 -0800361static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
chavey97f8aef2010-04-07 21:54:42 -0700362 void __user *useraddr)
Jeff Garzik723b2f52010-03-03 22:51:50 +0000363{
364 struct ethtool_sset_info info;
Jeff Garzik723b2f52010-03-03 22:51:50 +0000365 u64 sset_mask;
366 int i, idx = 0, n_bits = 0, ret, rc;
367 u32 *info_buf = NULL;
368
Jeff Garzik723b2f52010-03-03 22:51:50 +0000369 if (copy_from_user(&info, useraddr, sizeof(info)))
370 return -EFAULT;
371
372 /* store copy of mask, because we zero struct later on */
373 sset_mask = info.sset_mask;
374 if (!sset_mask)
375 return 0;
376
377 /* calculate size of return buffer */
Jeff Garzikd17792e2010-03-04 08:21:53 +0000378 n_bits = hweight64(sset_mask);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000379
380 memset(&info, 0, sizeof(info));
381 info.cmd = ETHTOOL_GSSET_INFO;
382
383 info_buf = kzalloc(n_bits * sizeof(u32), GFP_USER);
384 if (!info_buf)
385 return -ENOMEM;
386
387 /*
388 * fill return buffer based on input bitmask and successful
389 * get_sset_count return
390 */
391 for (i = 0; i < 64; i++) {
392 if (!(sset_mask & (1ULL << i)))
393 continue;
394
Michał Mirosław340ae162011-02-15 16:59:16 +0000395 rc = __ethtool_get_sset_count(dev, i);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000396 if (rc >= 0) {
397 info.sset_mask |= (1ULL << i);
398 info_buf[idx++] = rc;
399 }
400 }
401
402 ret = -EFAULT;
403 if (copy_to_user(useraddr, &info, sizeof(info)))
404 goto out;
405
406 useraddr += offsetof(struct ethtool_sset_info, data);
407 if (copy_to_user(useraddr, info_buf, idx * sizeof(u32)))
408 goto out;
409
410 ret = 0;
411
412out:
413 kfree(info_buf);
414 return ret;
415}
416
chavey97f8aef2010-04-07 21:54:42 -0700417static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
Ben Hutchingsbf988432010-06-28 08:45:58 +0000418 u32 cmd, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700419{
Ben Hutchingsbf988432010-06-28 08:45:58 +0000420 struct ethtool_rxnfc info;
421 size_t info_size = sizeof(info);
Santwona Behera0853ad62008-07-02 03:47:41 -0700422
Santwona Behera59089d82009-02-20 00:58:13 -0800423 if (!dev->ethtool_ops->set_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700424 return -EOPNOTSUPP;
425
Ben Hutchingsbf988432010-06-28 08:45:58 +0000426 /* struct ethtool_rxnfc was originally defined for
427 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
428 * members. User-space might still be using that
429 * definition. */
430 if (cmd == ETHTOOL_SRXFH)
431 info_size = (offsetof(struct ethtool_rxnfc, data) +
432 sizeof(info.data));
433
434 if (copy_from_user(&info, useraddr, info_size))
Santwona Behera0853ad62008-07-02 03:47:41 -0700435 return -EFAULT;
436
Ben Hutchingsbf988432010-06-28 08:45:58 +0000437 return dev->ethtool_ops->set_rxnfc(dev, &info);
Santwona Behera0853ad62008-07-02 03:47:41 -0700438}
439
chavey97f8aef2010-04-07 21:54:42 -0700440static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
Ben Hutchingsbf988432010-06-28 08:45:58 +0000441 u32 cmd, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700442{
443 struct ethtool_rxnfc info;
Ben Hutchingsbf988432010-06-28 08:45:58 +0000444 size_t info_size = sizeof(info);
Santwona Behera59089d82009-02-20 00:58:13 -0800445 const struct ethtool_ops *ops = dev->ethtool_ops;
446 int ret;
447 void *rule_buf = NULL;
Santwona Behera0853ad62008-07-02 03:47:41 -0700448
Santwona Behera59089d82009-02-20 00:58:13 -0800449 if (!ops->get_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700450 return -EOPNOTSUPP;
451
Ben Hutchingsbf988432010-06-28 08:45:58 +0000452 /* struct ethtool_rxnfc was originally defined for
453 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
454 * members. User-space might still be using that
455 * definition. */
456 if (cmd == ETHTOOL_GRXFH)
457 info_size = (offsetof(struct ethtool_rxnfc, data) +
458 sizeof(info.data));
459
460 if (copy_from_user(&info, useraddr, info_size))
Santwona Behera0853ad62008-07-02 03:47:41 -0700461 return -EFAULT;
462
Santwona Behera59089d82009-02-20 00:58:13 -0800463 if (info.cmd == ETHTOOL_GRXCLSRLALL) {
464 if (info.rule_cnt > 0) {
Ben Hutchingsdb048b62010-06-28 08:44:07 +0000465 if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
Kees Cookae6df5f2010-10-07 10:03:48 +0000466 rule_buf = kzalloc(info.rule_cnt * sizeof(u32),
Ben Hutchingsdb048b62010-06-28 08:44:07 +0000467 GFP_USER);
Santwona Behera59089d82009-02-20 00:58:13 -0800468 if (!rule_buf)
469 return -ENOMEM;
470 }
471 }
Santwona Behera0853ad62008-07-02 03:47:41 -0700472
Santwona Behera59089d82009-02-20 00:58:13 -0800473 ret = ops->get_rxnfc(dev, &info, rule_buf);
474 if (ret < 0)
475 goto err_out;
476
477 ret = -EFAULT;
Ben Hutchingsbf988432010-06-28 08:45:58 +0000478 if (copy_to_user(useraddr, &info, info_size))
Santwona Behera59089d82009-02-20 00:58:13 -0800479 goto err_out;
480
481 if (rule_buf) {
482 useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
483 if (copy_to_user(useraddr, rule_buf,
484 info.rule_cnt * sizeof(u32)))
485 goto err_out;
486 }
487 ret = 0;
488
489err_out:
Wei Yongjunc9cacec2009-03-31 15:06:26 -0700490 kfree(rule_buf);
Santwona Behera59089d82009-02-20 00:58:13 -0800491
492 return ret;
Santwona Behera0853ad62008-07-02 03:47:41 -0700493}
494
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000495static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev,
496 void __user *useraddr)
497{
498 struct ethtool_rxfh_indir *indir;
499 u32 table_size;
500 size_t full_size;
501 int ret;
502
503 if (!dev->ethtool_ops->get_rxfh_indir)
504 return -EOPNOTSUPP;
505
506 if (copy_from_user(&table_size,
507 useraddr + offsetof(struct ethtool_rxfh_indir, size),
508 sizeof(table_size)))
509 return -EFAULT;
510
511 if (table_size >
512 (KMALLOC_MAX_SIZE - sizeof(*indir)) / sizeof(*indir->ring_index))
513 return -ENOMEM;
514 full_size = sizeof(*indir) + sizeof(*indir->ring_index) * table_size;
Kees Cookb00916b2010-10-11 12:23:25 -0700515 indir = kzalloc(full_size, GFP_USER);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +0000516 if (!indir)
517 return -ENOMEM;
518
519 indir->cmd = ETHTOOL_GRXFHINDIR;
520 indir->size = table_size;
521 ret = dev->ethtool_ops->get_rxfh_indir(dev, indir);
522 if (ret)
523 goto out;
524
525 if (copy_to_user(useraddr, indir, full_size))
526 ret = -EFAULT;
527
528out:
529 kfree(indir);
530 return ret;
531}
532
533static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev,
534 void __user *useraddr)
535{
536 struct ethtool_rxfh_indir *indir;
537 u32 table_size;
538 size_t full_size;
539 int ret;
540
541 if (!dev->ethtool_ops->set_rxfh_indir)
542 return -EOPNOTSUPP;
543
544 if (copy_from_user(&table_size,
545 useraddr + offsetof(struct ethtool_rxfh_indir, size),
546 sizeof(table_size)))
547 return -EFAULT;
548
549 if (table_size >
550 (KMALLOC_MAX_SIZE - sizeof(*indir)) / sizeof(*indir->ring_index))
551 return -ENOMEM;
552 full_size = sizeof(*indir) + sizeof(*indir->ring_index) * table_size;
553 indir = kmalloc(full_size, GFP_USER);
554 if (!indir)
555 return -ENOMEM;
556
557 if (copy_from_user(indir, useraddr, full_size)) {
558 ret = -EFAULT;
559 goto out;
560 }
561
562 ret = dev->ethtool_ops->set_rxfh_indir(dev, indir);
563
564out:
565 kfree(indir);
566 return ret;
567}
568
Ben Hutchingsbe2902d2010-09-16 11:28:07 +0000569/*
570 * ethtool does not (or did not) set masks for flow parameters that are
571 * not specified, so if both value and mask are 0 then this must be
572 * treated as equivalent to a mask with all bits set. Implement that
573 * here rather than in drivers.
574 */
575static void rx_ntuple_fix_masks(struct ethtool_rx_ntuple_flow_spec *fs)
576{
577 struct ethtool_tcpip4_spec *entry = &fs->h_u.tcp_ip4_spec;
578 struct ethtool_tcpip4_spec *mask = &fs->m_u.tcp_ip4_spec;
579
580 if (fs->flow_type != TCP_V4_FLOW &&
581 fs->flow_type != UDP_V4_FLOW &&
582 fs->flow_type != SCTP_V4_FLOW)
583 return;
584
585 if (!(entry->ip4src | mask->ip4src))
586 mask->ip4src = htonl(0xffffffff);
587 if (!(entry->ip4dst | mask->ip4dst))
588 mask->ip4dst = htonl(0xffffffff);
589 if (!(entry->psrc | mask->psrc))
590 mask->psrc = htons(0xffff);
591 if (!(entry->pdst | mask->pdst))
592 mask->pdst = htons(0xffff);
593 if (!(entry->tos | mask->tos))
594 mask->tos = 0xff;
595 if (!(fs->vlan_tag | fs->vlan_tag_mask))
596 fs->vlan_tag_mask = 0xffff;
597 if (!(fs->data | fs->data_mask))
598 fs->data_mask = 0xffffffffffffffffULL;
599}
600
chavey97f8aef2010-04-07 21:54:42 -0700601static noinline_for_stack int ethtool_set_rx_ntuple(struct net_device *dev,
602 void __user *useraddr)
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800603{
604 struct ethtool_rx_ntuple cmd;
605 const struct ethtool_ops *ops = dev->ethtool_ops;
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800606
Alexander Duyck5d9f11c2011-04-08 12:07:22 +0000607 if (!ops->set_rx_ntuple)
608 return -EOPNOTSUPP;
609
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800610 if (!(dev->features & NETIF_F_NTUPLE))
611 return -EINVAL;
612
613 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
614 return -EFAULT;
615
Ben Hutchingsbe2902d2010-09-16 11:28:07 +0000616 rx_ntuple_fix_masks(&cmd.fs);
617
Alexander Duyckbff55272011-06-08 12:35:08 +0000618 return ops->set_rx_ntuple(dev, &cmd);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800619}
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
622{
623 struct ethtool_regs regs;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700624 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 void *regbuf;
626 int reglen, ret;
627
628 if (!ops->get_regs || !ops->get_regs_len)
629 return -EOPNOTSUPP;
630
631 if (copy_from_user(&regs, useraddr, sizeof(regs)))
632 return -EFAULT;
633
634 reglen = ops->get_regs_len(dev);
635 if (regs.len > reglen)
636 regs.len = reglen;
637
Eugene Teob7c7d012011-01-24 21:05:17 -0800638 regbuf = vzalloc(reglen);
Ben Hutchings67ae7cf2011-07-21 15:25:30 -0700639 if (reglen && !regbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return -ENOMEM;
641
642 ops->get_regs(dev, &regs, regbuf);
643
644 ret = -EFAULT;
645 if (copy_to_user(useraddr, &regs, sizeof(regs)))
646 goto out;
647 useraddr += offsetof(struct ethtool_regs, data);
Ben Hutchings67ae7cf2011-07-21 15:25:30 -0700648 if (regbuf && copy_to_user(useraddr, regbuf, regs.len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 goto out;
650 ret = 0;
651
652 out:
Ben Hutchingsa77f5db2010-09-20 08:42:17 +0000653 vfree(regbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return ret;
655}
656
Ben Hutchingsd73d3a82009-10-05 10:59:58 +0000657static int ethtool_reset(struct net_device *dev, char __user *useraddr)
658{
659 struct ethtool_value reset;
660 int ret;
661
662 if (!dev->ethtool_ops->reset)
663 return -EOPNOTSUPP;
664
665 if (copy_from_user(&reset, useraddr, sizeof(reset)))
666 return -EFAULT;
667
668 ret = dev->ethtool_ops->reset(dev, &reset.data);
669 if (ret)
670 return ret;
671
672 if (copy_to_user(useraddr, &reset, sizeof(reset)))
673 return -EFAULT;
674 return 0;
675}
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
678{
Roland Dreier8e557422010-02-11 12:14:23 -0800679 struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 if (!dev->ethtool_ops->get_wol)
682 return -EOPNOTSUPP;
683
684 dev->ethtool_ops->get_wol(dev, &wol);
685
686 if (copy_to_user(useraddr, &wol, sizeof(wol)))
687 return -EFAULT;
688 return 0;
689}
690
691static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
692{
693 struct ethtool_wolinfo wol;
694
695 if (!dev->ethtool_ops->set_wol)
696 return -EOPNOTSUPP;
697
698 if (copy_from_user(&wol, useraddr, sizeof(wol)))
699 return -EFAULT;
700
701 return dev->ethtool_ops->set_wol(dev, &wol);
702}
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704static int ethtool_nway_reset(struct net_device *dev)
705{
706 if (!dev->ethtool_ops->nway_reset)
707 return -EOPNOTSUPP;
708
709 return dev->ethtool_ops->nway_reset(dev);
710}
711
Ben Hutchingse596e6e2010-12-09 12:08:35 +0000712static int ethtool_get_link(struct net_device *dev, char __user *useraddr)
713{
714 struct ethtool_value edata = { .cmd = ETHTOOL_GLINK };
715
716 if (!dev->ethtool_ops->get_link)
717 return -EOPNOTSUPP;
718
719 edata.data = netif_running(dev) && dev->ethtool_ops->get_link(dev);
720
721 if (copy_to_user(useraddr, &edata, sizeof(edata)))
722 return -EFAULT;
723 return 0;
724}
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
727{
728 struct ethtool_eeprom eeprom;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700729 const struct ethtool_ops *ops = dev->ethtool_ops;
Mandeep Singh Bainesb131dd5d2008-04-15 19:24:17 -0700730 void __user *userbuf = useraddr + sizeof(eeprom);
731 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 u8 *data;
Mandeep Singh Bainesb131dd5d2008-04-15 19:24:17 -0700733 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 if (!ops->get_eeprom || !ops->get_eeprom_len)
736 return -EOPNOTSUPP;
737
738 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
739 return -EFAULT;
740
741 /* Check for wrap and zero */
742 if (eeprom.offset + eeprom.len <= eeprom.offset)
743 return -EINVAL;
744
745 /* Check for exceeding total eeprom len */
746 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
747 return -EINVAL;
748
Mandeep Singh Bainesb131dd5d2008-04-15 19:24:17 -0700749 data = kmalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (!data)
751 return -ENOMEM;
752
Mandeep Singh Bainesb131dd5d2008-04-15 19:24:17 -0700753 bytes_remaining = eeprom.len;
754 while (bytes_remaining > 0) {
755 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Mandeep Singh Bainesb131dd5d2008-04-15 19:24:17 -0700757 ret = ops->get_eeprom(dev, &eeprom, data);
758 if (ret)
759 break;
760 if (copy_to_user(userbuf, data, eeprom.len)) {
761 ret = -EFAULT;
762 break;
763 }
764 userbuf += eeprom.len;
765 eeprom.offset += eeprom.len;
766 bytes_remaining -= eeprom.len;
767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Mandeep Singh Bainesc5835df2008-04-24 20:55:56 -0700769 eeprom.len = userbuf - (useraddr + sizeof(eeprom));
770 eeprom.offset -= eeprom.len;
771 if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
772 ret = -EFAULT;
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 kfree(data);
775 return ret;
776}
777
778static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
779{
780 struct ethtool_eeprom eeprom;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700781 const struct ethtool_ops *ops = dev->ethtool_ops;
Mandeep Singh Bainesb131dd5d2008-04-15 19:24:17 -0700782 void __user *userbuf = useraddr + sizeof(eeprom);
783 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 u8 *data;
Mandeep Singh Bainesb131dd5d2008-04-15 19:24:17 -0700785 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if (!ops->set_eeprom || !ops->get_eeprom_len)
788 return -EOPNOTSUPP;
789
790 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
791 return -EFAULT;
792
793 /* Check for wrap and zero */
794 if (eeprom.offset + eeprom.len <= eeprom.offset)
795 return -EINVAL;
796
797 /* Check for exceeding total eeprom len */
798 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
799 return -EINVAL;
800
Mandeep Singh Bainesb131dd5d2008-04-15 19:24:17 -0700801 data = kmalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (!data)
803 return -ENOMEM;
804
Mandeep Singh Bainesb131dd5d2008-04-15 19:24:17 -0700805 bytes_remaining = eeprom.len;
806 while (bytes_remaining > 0) {
807 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Mandeep Singh Bainesb131dd5d2008-04-15 19:24:17 -0700809 if (copy_from_user(data, userbuf, eeprom.len)) {
810 ret = -EFAULT;
811 break;
812 }
813 ret = ops->set_eeprom(dev, &eeprom, data);
814 if (ret)
815 break;
816 userbuf += eeprom.len;
817 eeprom.offset += eeprom.len;
818 bytes_remaining -= eeprom.len;
819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 kfree(data);
822 return ret;
823}
824
chavey97f8aef2010-04-07 21:54:42 -0700825static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
826 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Roland Dreier8e557422010-02-11 12:14:23 -0800828 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 if (!dev->ethtool_ops->get_coalesce)
831 return -EOPNOTSUPP;
832
833 dev->ethtool_ops->get_coalesce(dev, &coalesce);
834
835 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
836 return -EFAULT;
837 return 0;
838}
839
chavey97f8aef2010-04-07 21:54:42 -0700840static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
841 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 struct ethtool_coalesce coalesce;
844
David S. Millerfa04ae52005-06-06 15:07:19 -0700845 if (!dev->ethtool_ops->set_coalesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return -EOPNOTSUPP;
847
848 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
849 return -EFAULT;
850
851 return dev->ethtool_ops->set_coalesce(dev, &coalesce);
852}
853
854static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
855{
Roland Dreier8e557422010-02-11 12:14:23 -0800856 struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 if (!dev->ethtool_ops->get_ringparam)
859 return -EOPNOTSUPP;
860
861 dev->ethtool_ops->get_ringparam(dev, &ringparam);
862
863 if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
864 return -EFAULT;
865 return 0;
866}
867
868static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
869{
870 struct ethtool_ringparam ringparam;
871
872 if (!dev->ethtool_ops->set_ringparam)
873 return -EOPNOTSUPP;
874
875 if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
876 return -EFAULT;
877
878 return dev->ethtool_ops->set_ringparam(dev, &ringparam);
879}
880
amit salecha8b5933c2011-04-07 01:58:42 +0000881static noinline_for_stack int ethtool_get_channels(struct net_device *dev,
882 void __user *useraddr)
883{
884 struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
885
886 if (!dev->ethtool_ops->get_channels)
887 return -EOPNOTSUPP;
888
889 dev->ethtool_ops->get_channels(dev, &channels);
890
891 if (copy_to_user(useraddr, &channels, sizeof(channels)))
892 return -EFAULT;
893 return 0;
894}
895
896static noinline_for_stack int ethtool_set_channels(struct net_device *dev,
897 void __user *useraddr)
898{
899 struct ethtool_channels channels;
900
901 if (!dev->ethtool_ops->set_channels)
902 return -EOPNOTSUPP;
903
904 if (copy_from_user(&channels, useraddr, sizeof(channels)))
905 return -EFAULT;
906
907 return dev->ethtool_ops->set_channels(dev, &channels);
908}
909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
911{
912 struct ethtool_pauseparam pauseparam = { ETHTOOL_GPAUSEPARAM };
913
914 if (!dev->ethtool_ops->get_pauseparam)
915 return -EOPNOTSUPP;
916
917 dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
918
919 if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
920 return -EFAULT;
921 return 0;
922}
923
924static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
925{
926 struct ethtool_pauseparam pauseparam;
927
Jeff Garzike1b90c42006-07-17 12:54:40 -0400928 if (!dev->ethtool_ops->set_pauseparam)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return -EOPNOTSUPP;
930
931 if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
932 return -EFAULT;
933
934 return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
935}
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
938{
939 struct ethtool_test test;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700940 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -0700942 int ret, test_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Ben Hutchingsa9828ec2009-10-01 11:33:03 +0000944 if (!ops->self_test || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -0700945 return -EOPNOTSUPP;
946
Ben Hutchingsa9828ec2009-10-01 11:33:03 +0000947 test_len = ops->get_sset_count(dev, ETH_SS_TEST);
Jeff Garzikff03d492007-08-15 16:01:08 -0700948 if (test_len < 0)
949 return test_len;
950 WARN_ON(test_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 if (copy_from_user(&test, useraddr, sizeof(test)))
953 return -EFAULT;
954
Jeff Garzikff03d492007-08-15 16:01:08 -0700955 test.len = test_len;
956 data = kmalloc(test_len * sizeof(u64), GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (!data)
958 return -ENOMEM;
959
960 ops->self_test(dev, &test, data);
961
962 ret = -EFAULT;
963 if (copy_to_user(useraddr, &test, sizeof(test)))
964 goto out;
965 useraddr += sizeof(test);
966 if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
967 goto out;
968 ret = 0;
969
970 out:
971 kfree(data);
972 return ret;
973}
974
975static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
976{
977 struct ethtool_gstrings gstrings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 u8 *data;
979 int ret;
980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
982 return -EFAULT;
983
Michał Mirosław340ae162011-02-15 16:59:16 +0000984 ret = __ethtool_get_sset_count(dev, gstrings.string_set);
Ben Hutchingsa9828ec2009-10-01 11:33:03 +0000985 if (ret < 0)
986 return ret;
Jeff Garzikff03d492007-08-15 16:01:08 -0700987
Ben Hutchingsa9828ec2009-10-01 11:33:03 +0000988 gstrings.len = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 data = kmalloc(gstrings.len * ETH_GSTRING_LEN, GFP_USER);
991 if (!data)
992 return -ENOMEM;
993
Michał Mirosław340ae162011-02-15 16:59:16 +0000994 __ethtool_get_strings(dev, gstrings.string_set, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 ret = -EFAULT;
997 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
998 goto out;
999 useraddr += sizeof(gstrings);
1000 if (copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
1001 goto out;
1002 ret = 0;
1003
Michał Mirosław340ae162011-02-15 16:59:16 +00001004out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 kfree(data);
1006 return ret;
1007}
1008
1009static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
1010{
1011 struct ethtool_value id;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001012 static bool busy;
1013 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Stephen Hemminger1ab7b6a2011-04-14 23:46:06 -07001015 if (!dev->ethtool_ops->set_phys_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 return -EOPNOTSUPP;
1017
Ben Hutchings68f512f2011-04-02 00:35:15 +01001018 if (busy)
1019 return -EBUSY;
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (copy_from_user(&id, useraddr, sizeof(id)))
1022 return -EFAULT;
1023
Ben Hutchings68f512f2011-04-02 00:35:15 +01001024 rc = dev->ethtool_ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE);
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001025 if (rc < 0)
Ben Hutchings68f512f2011-04-02 00:35:15 +01001026 return rc;
1027
1028 /* Drop the RTNL lock while waiting, but prevent reentry or
1029 * removal of the device.
1030 */
1031 busy = true;
1032 dev_hold(dev);
1033 rtnl_unlock();
1034
1035 if (rc == 0) {
1036 /* Driver will handle this itself */
1037 schedule_timeout_interruptible(
Allan, Bruce W143780c2011-04-11 13:01:59 +00001038 id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001039 } else {
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001040 /* Driver expects to be called at twice the frequency in rc */
1041 int n = rc * 2, i, interval = HZ / n;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001042
Allan, Bruce Wfce55922011-04-13 13:09:10 +00001043 /* Count down seconds */
1044 do {
1045 /* Count down iterations per second */
1046 i = n;
1047 do {
1048 rtnl_lock();
1049 rc = dev->ethtool_ops->set_phys_id(dev,
1050 (i & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON);
1051 rtnl_unlock();
1052 if (rc)
1053 break;
1054 schedule_timeout_interruptible(interval);
1055 } while (!signal_pending(current) && --i != 0);
Ben Hutchings68f512f2011-04-02 00:35:15 +01001056 } while (!signal_pending(current) &&
1057 (id.data == 0 || --id.data != 0));
1058 }
1059
1060 rtnl_lock();
1061 dev_put(dev);
1062 busy = false;
1063
1064 (void)dev->ethtool_ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE);
1065 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066}
1067
1068static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
1069{
1070 struct ethtool_stats stats;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001071 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -07001073 int ret, n_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001075 if (!ops->get_ethtool_stats || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -07001076 return -EOPNOTSUPP;
1077
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001078 n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
Jeff Garzikff03d492007-08-15 16:01:08 -07001079 if (n_stats < 0)
1080 return n_stats;
1081 WARN_ON(n_stats == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1084 return -EFAULT;
1085
Jeff Garzikff03d492007-08-15 16:01:08 -07001086 stats.n_stats = n_stats;
1087 data = kmalloc(n_stats * sizeof(u64), GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 if (!data)
1089 return -ENOMEM;
1090
1091 ops->get_ethtool_stats(dev, &stats, data);
1092
1093 ret = -EFAULT;
1094 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1095 goto out;
1096 useraddr += sizeof(stats);
1097 if (copy_to_user(useraddr, data, stats.n_stats * sizeof(u64)))
1098 goto out;
1099 ret = 0;
1100
1101 out:
1102 kfree(data);
1103 return ret;
1104}
1105
viro@ftp.linux.org.uk0bf0519d2005-09-05 03:26:18 +01001106static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
Jon Wetzela6f9a702005-08-20 17:15:54 -07001107{
1108 struct ethtool_perm_addr epaddr;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001109
Matthew Wilcox313674a2007-07-31 14:00:29 -07001110 if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
Jon Wetzela6f9a702005-08-20 17:15:54 -07001111 return -EFAULT;
1112
Matthew Wilcox313674a2007-07-31 14:00:29 -07001113 if (epaddr.size < dev->addr_len)
1114 return -ETOOSMALL;
1115 epaddr.size = dev->addr_len;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001116
Jon Wetzela6f9a702005-08-20 17:15:54 -07001117 if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
Matthew Wilcox313674a2007-07-31 14:00:29 -07001118 return -EFAULT;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001119 useraddr += sizeof(epaddr);
Matthew Wilcox313674a2007-07-31 14:00:29 -07001120 if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
1121 return -EFAULT;
1122 return 0;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001123}
1124
Jeff Garzik13c99b22007-08-15 16:01:56 -07001125static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
1126 u32 cmd, u32 (*actor)(struct net_device *))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001127{
Roland Dreier8e557422010-02-11 12:14:23 -08001128 struct ethtool_value edata = { .cmd = cmd };
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001129
Jeff Garzik13c99b22007-08-15 16:01:56 -07001130 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001131 return -EOPNOTSUPP;
1132
Jeff Garzik13c99b22007-08-15 16:01:56 -07001133 edata.data = actor(dev);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001134
1135 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1136 return -EFAULT;
1137 return 0;
1138}
1139
Jeff Garzik13c99b22007-08-15 16:01:56 -07001140static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
1141 void (*actor)(struct net_device *, u32))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001142{
1143 struct ethtool_value edata;
1144
Jeff Garzik13c99b22007-08-15 16:01:56 -07001145 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001146 return -EOPNOTSUPP;
1147
1148 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1149 return -EFAULT;
1150
Jeff Garzik13c99b22007-08-15 16:01:56 -07001151 actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07001152 return 0;
1153}
1154
Jeff Garzik13c99b22007-08-15 16:01:56 -07001155static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
1156 int (*actor)(struct net_device *, u32))
Jeff Garzik339bf022007-08-15 16:01:32 -07001157{
1158 struct ethtool_value edata;
1159
Jeff Garzik13c99b22007-08-15 16:01:56 -07001160 if (!actor)
Jeff Garzik339bf022007-08-15 16:01:32 -07001161 return -EOPNOTSUPP;
1162
1163 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1164 return -EFAULT;
1165
Jeff Garzik13c99b22007-08-15 16:01:56 -07001166 return actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07001167}
1168
chavey97f8aef2010-04-07 21:54:42 -07001169static noinline_for_stack int ethtool_flash_device(struct net_device *dev,
1170 char __user *useraddr)
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00001171{
1172 struct ethtool_flash efl;
1173
1174 if (copy_from_user(&efl, useraddr, sizeof(efl)))
1175 return -EFAULT;
1176
1177 if (!dev->ethtool_ops->flash_device)
1178 return -EOPNOTSUPP;
1179
1180 return dev->ethtool_ops->flash_device(dev, &efl);
1181}
1182
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00001183static int ethtool_set_dump(struct net_device *dev,
1184 void __user *useraddr)
1185{
1186 struct ethtool_dump dump;
1187
1188 if (!dev->ethtool_ops->set_dump)
1189 return -EOPNOTSUPP;
1190
1191 if (copy_from_user(&dump, useraddr, sizeof(dump)))
1192 return -EFAULT;
1193
1194 return dev->ethtool_ops->set_dump(dev, &dump);
1195}
1196
1197static int ethtool_get_dump_flag(struct net_device *dev,
1198 void __user *useraddr)
1199{
1200 int ret;
1201 struct ethtool_dump dump;
1202 const struct ethtool_ops *ops = dev->ethtool_ops;
1203
1204 if (!dev->ethtool_ops->get_dump_flag)
1205 return -EOPNOTSUPP;
1206
1207 if (copy_from_user(&dump, useraddr, sizeof(dump)))
1208 return -EFAULT;
1209
1210 ret = ops->get_dump_flag(dev, &dump);
1211 if (ret)
1212 return ret;
1213
1214 if (copy_to_user(useraddr, &dump, sizeof(dump)))
1215 return -EFAULT;
1216 return 0;
1217}
1218
1219static int ethtool_get_dump_data(struct net_device *dev,
1220 void __user *useraddr)
1221{
1222 int ret;
1223 __u32 len;
1224 struct ethtool_dump dump, tmp;
1225 const struct ethtool_ops *ops = dev->ethtool_ops;
1226 void *data = NULL;
1227
1228 if (!dev->ethtool_ops->get_dump_data ||
1229 !dev->ethtool_ops->get_dump_flag)
1230 return -EOPNOTSUPP;
1231
1232 if (copy_from_user(&dump, useraddr, sizeof(dump)))
1233 return -EFAULT;
1234
1235 memset(&tmp, 0, sizeof(tmp));
1236 tmp.cmd = ETHTOOL_GET_DUMP_FLAG;
1237 ret = ops->get_dump_flag(dev, &tmp);
1238 if (ret)
1239 return ret;
1240
1241 len = (tmp.len > dump.len) ? dump.len : tmp.len;
1242 if (!len)
1243 return -EFAULT;
1244
1245 data = vzalloc(tmp.len);
1246 if (!data)
1247 return -ENOMEM;
1248 ret = ops->get_dump_data(dev, &dump, data);
1249 if (ret)
1250 goto out;
1251
1252 if (copy_to_user(useraddr, &dump, sizeof(dump))) {
1253 ret = -EFAULT;
1254 goto out;
1255 }
1256 useraddr += offsetof(struct ethtool_dump, data);
1257 if (copy_to_user(useraddr, data, len))
1258 ret = -EFAULT;
1259out:
1260 vfree(data);
1261 return ret;
1262}
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264/* The main entry point in this file. Called from net/core/dev.c */
1265
Eric W. Biederman881d9662007-09-17 11:56:21 -07001266int dev_ethtool(struct net *net, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001268 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 void __user *useraddr = ifr->ifr_data;
1270 u32 ethcmd;
1271 int rc;
Michał Mirosław04ed3e72011-01-24 15:32:47 -08001272 u32 old_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (!dev || !netif_device_present(dev))
1275 return -ENODEV;
1276
chavey97f8aef2010-04-07 21:54:42 -07001277 if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 return -EFAULT;
1279
Ben Hutchings01414802010-08-17 02:31:15 -07001280 if (!dev->ethtool_ops) {
1281 /* ETHTOOL_GDRVINFO does not require any driver support.
1282 * It is also unprivileged and does not change anything,
1283 * so we can take a shortcut to it. */
1284 if (ethcmd == ETHTOOL_GDRVINFO)
1285 return ethtool_get_drvinfo(dev, useraddr);
1286 else
1287 return -EOPNOTSUPP;
1288 }
1289
Stephen Hemminger75f31232006-09-28 15:13:37 -07001290 /* Allow some commands to be done by anyone */
chavey97f8aef2010-04-07 21:54:42 -07001291 switch (ethcmd) {
stephen hemminger0fdc1002010-08-23 10:24:18 +00001292 case ETHTOOL_GSET:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001293 case ETHTOOL_GDRVINFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001294 case ETHTOOL_GMSGLVL:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001295 case ETHTOOL_GCOALESCE:
1296 case ETHTOOL_GRINGPARAM:
1297 case ETHTOOL_GPAUSEPARAM:
1298 case ETHTOOL_GRXCSUM:
1299 case ETHTOOL_GTXCSUM:
1300 case ETHTOOL_GSG:
1301 case ETHTOOL_GSTRINGS:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001302 case ETHTOOL_GTSO:
1303 case ETHTOOL_GPERMADDR:
1304 case ETHTOOL_GUFO:
1305 case ETHTOOL_GGSO:
stephen hemminger1cab8192010-02-11 13:48:29 +00001306 case ETHTOOL_GGRO:
Jeff Garzik339bf022007-08-15 16:01:32 -07001307 case ETHTOOL_GFLAGS:
1308 case ETHTOOL_GPFLAGS:
Santwona Behera0853ad62008-07-02 03:47:41 -07001309 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08001310 case ETHTOOL_GRXRINGS:
1311 case ETHTOOL_GRXCLSRLCNT:
1312 case ETHTOOL_GRXCLSRULE:
1313 case ETHTOOL_GRXCLSRLALL:
Michał Mirosław5455c692011-02-15 16:59:17 +00001314 case ETHTOOL_GFEATURES:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001315 break;
1316 default:
1317 if (!capable(CAP_NET_ADMIN))
1318 return -EPERM;
1319 }
1320
chavey97f8aef2010-04-07 21:54:42 -07001321 if (dev->ethtool_ops->begin) {
1322 rc = dev->ethtool_ops->begin(dev);
1323 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 return rc;
chavey97f8aef2010-04-07 21:54:42 -07001325 }
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001326 old_features = dev->features;
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 switch (ethcmd) {
1329 case ETHTOOL_GSET:
1330 rc = ethtool_get_settings(dev, useraddr);
1331 break;
1332 case ETHTOOL_SSET:
1333 rc = ethtool_set_settings(dev, useraddr);
1334 break;
1335 case ETHTOOL_GDRVINFO:
1336 rc = ethtool_get_drvinfo(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 break;
1338 case ETHTOOL_GREGS:
1339 rc = ethtool_get_regs(dev, useraddr);
1340 break;
1341 case ETHTOOL_GWOL:
1342 rc = ethtool_get_wol(dev, useraddr);
1343 break;
1344 case ETHTOOL_SWOL:
1345 rc = ethtool_set_wol(dev, useraddr);
1346 break;
1347 case ETHTOOL_GMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001348 rc = ethtool_get_value(dev, useraddr, ethcmd,
1349 dev->ethtool_ops->get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 break;
1351 case ETHTOOL_SMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001352 rc = ethtool_set_value_void(dev, useraddr,
1353 dev->ethtool_ops->set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 break;
1355 case ETHTOOL_NWAY_RST:
1356 rc = ethtool_nway_reset(dev);
1357 break;
1358 case ETHTOOL_GLINK:
Ben Hutchingse596e6e2010-12-09 12:08:35 +00001359 rc = ethtool_get_link(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 break;
1361 case ETHTOOL_GEEPROM:
1362 rc = ethtool_get_eeprom(dev, useraddr);
1363 break;
1364 case ETHTOOL_SEEPROM:
1365 rc = ethtool_set_eeprom(dev, useraddr);
1366 break;
1367 case ETHTOOL_GCOALESCE:
1368 rc = ethtool_get_coalesce(dev, useraddr);
1369 break;
1370 case ETHTOOL_SCOALESCE:
1371 rc = ethtool_set_coalesce(dev, useraddr);
1372 break;
1373 case ETHTOOL_GRINGPARAM:
1374 rc = ethtool_get_ringparam(dev, useraddr);
1375 break;
1376 case ETHTOOL_SRINGPARAM:
1377 rc = ethtool_set_ringparam(dev, useraddr);
1378 break;
1379 case ETHTOOL_GPAUSEPARAM:
1380 rc = ethtool_get_pauseparam(dev, useraddr);
1381 break;
1382 case ETHTOOL_SPAUSEPARAM:
1383 rc = ethtool_set_pauseparam(dev, useraddr);
1384 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 case ETHTOOL_TEST:
1386 rc = ethtool_self_test(dev, useraddr);
1387 break;
1388 case ETHTOOL_GSTRINGS:
1389 rc = ethtool_get_strings(dev, useraddr);
1390 break;
1391 case ETHTOOL_PHYS_ID:
1392 rc = ethtool_phys_id(dev, useraddr);
1393 break;
1394 case ETHTOOL_GSTATS:
1395 rc = ethtool_get_stats(dev, useraddr);
1396 break;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001397 case ETHTOOL_GPERMADDR:
1398 rc = ethtool_get_perm_addr(dev, useraddr);
1399 break;
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001400 case ETHTOOL_GFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001401 rc = ethtool_get_value(dev, useraddr, ethcmd,
Michał Mirosławbc5787c2011-11-15 15:29:55 +00001402 __ethtool_get_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001403 break;
1404 case ETHTOOL_SFLAGS:
Michał Mirosławda8ac86c2011-02-15 16:59:18 +00001405 rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001406 break;
Jeff Garzik339bf022007-08-15 16:01:32 -07001407 case ETHTOOL_GPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001408 rc = ethtool_get_value(dev, useraddr, ethcmd,
1409 dev->ethtool_ops->get_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07001410 break;
1411 case ETHTOOL_SPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001412 rc = ethtool_set_value(dev, useraddr,
1413 dev->ethtool_ops->set_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07001414 break;
Santwona Behera0853ad62008-07-02 03:47:41 -07001415 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08001416 case ETHTOOL_GRXRINGS:
1417 case ETHTOOL_GRXCLSRLCNT:
1418 case ETHTOOL_GRXCLSRULE:
1419 case ETHTOOL_GRXCLSRLALL:
Ben Hutchingsbf988432010-06-28 08:45:58 +00001420 rc = ethtool_get_rxnfc(dev, ethcmd, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07001421 break;
1422 case ETHTOOL_SRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08001423 case ETHTOOL_SRXCLSRLDEL:
1424 case ETHTOOL_SRXCLSRLINS:
Ben Hutchingsbf988432010-06-28 08:45:58 +00001425 rc = ethtool_set_rxnfc(dev, ethcmd, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07001426 break;
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00001427 case ETHTOOL_FLASHDEV:
1428 rc = ethtool_flash_device(dev, useraddr);
1429 break;
Ben Hutchingsd73d3a82009-10-05 10:59:58 +00001430 case ETHTOOL_RESET:
1431 rc = ethtool_reset(dev, useraddr);
1432 break;
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -08001433 case ETHTOOL_SRXNTUPLE:
1434 rc = ethtool_set_rx_ntuple(dev, useraddr);
1435 break;
Jeff Garzik723b2f52010-03-03 22:51:50 +00001436 case ETHTOOL_GSSET_INFO:
1437 rc = ethtool_get_sset_info(dev, useraddr);
1438 break;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001439 case ETHTOOL_GRXFHINDIR:
1440 rc = ethtool_get_rxfh_indir(dev, useraddr);
1441 break;
1442 case ETHTOOL_SRXFHINDIR:
1443 rc = ethtool_set_rxfh_indir(dev, useraddr);
1444 break;
Michał Mirosław5455c692011-02-15 16:59:17 +00001445 case ETHTOOL_GFEATURES:
1446 rc = ethtool_get_features(dev, useraddr);
1447 break;
1448 case ETHTOOL_SFEATURES:
1449 rc = ethtool_set_features(dev, useraddr);
1450 break;
Michał Mirosław0a417702011-02-15 16:59:17 +00001451 case ETHTOOL_GTXCSUM:
Michał Mirosławe83d3602011-02-15 16:59:18 +00001452 case ETHTOOL_GRXCSUM:
Michał Mirosław0a417702011-02-15 16:59:17 +00001453 case ETHTOOL_GSG:
1454 case ETHTOOL_GTSO:
1455 case ETHTOOL_GUFO:
1456 case ETHTOOL_GGSO:
1457 case ETHTOOL_GGRO:
1458 rc = ethtool_get_one_feature(dev, useraddr, ethcmd);
1459 break;
1460 case ETHTOOL_STXCSUM:
Michał Mirosławe83d3602011-02-15 16:59:18 +00001461 case ETHTOOL_SRXCSUM:
Michał Mirosław0a417702011-02-15 16:59:17 +00001462 case ETHTOOL_SSG:
1463 case ETHTOOL_STSO:
1464 case ETHTOOL_SUFO:
1465 case ETHTOOL_SGSO:
1466 case ETHTOOL_SGRO:
1467 rc = ethtool_set_one_feature(dev, useraddr, ethcmd);
1468 break;
amit salecha8b5933c2011-04-07 01:58:42 +00001469 case ETHTOOL_GCHANNELS:
1470 rc = ethtool_get_channels(dev, useraddr);
1471 break;
1472 case ETHTOOL_SCHANNELS:
1473 rc = ethtool_set_channels(dev, useraddr);
1474 break;
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00001475 case ETHTOOL_SET_DUMP:
1476 rc = ethtool_set_dump(dev, useraddr);
1477 break;
1478 case ETHTOOL_GET_DUMP_FLAG:
1479 rc = ethtool_get_dump_flag(dev, useraddr);
1480 break;
1481 case ETHTOOL_GET_DUMP_DATA:
1482 rc = ethtool_get_dump_data(dev, useraddr);
1483 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 default:
Matthew Wilcox61a44b92007-07-31 14:00:02 -07001485 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001487
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001488 if (dev->ethtool_ops->complete)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 dev->ethtool_ops->complete(dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001490
1491 if (old_features != dev->features)
1492 netdev_features_change(dev);
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}