blob: e1951084b973124370aec26d4e23465ef3c35606 [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>
20#include <asm/uaccess.h>
21
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090022/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * Some useful ethtool_ops methods that're device independent.
24 * If we find that all drivers want to do the same thing here,
25 * we can turn these into dev_() function calls.
26 */
27
28u32 ethtool_op_get_link(struct net_device *dev)
29{
30 return netif_carrier_ok(dev) ? 1 : 0;
31}
32
Sridhar Samudrala1896e612009-07-22 13:38:22 +000033u32 ethtool_op_get_rx_csum(struct net_device *dev)
34{
35 return (dev->features & NETIF_F_ALL_CSUM) != 0;
36}
Eric Dumazet8a729fc2009-07-26 23:18:11 +000037EXPORT_SYMBOL(ethtool_op_get_rx_csum);
Sridhar Samudrala1896e612009-07-22 13:38:22 +000038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039u32 ethtool_op_get_tx_csum(struct net_device *dev)
40{
Herbert Xu8648b302006-06-17 22:06:05 -070041 return (dev->features & NETIF_F_ALL_CSUM) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042}
Eric Dumazet8a729fc2009-07-26 23:18:11 +000043EXPORT_SYMBOL(ethtool_op_get_tx_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45int ethtool_op_set_tx_csum(struct net_device *dev, u32 data)
46{
47 if (data)
48 dev->features |= NETIF_F_IP_CSUM;
49 else
50 dev->features &= ~NETIF_F_IP_CSUM;
51
52 return 0;
53}
54
Jon Mason69f6a0f2005-05-29 20:27:24 -070055int ethtool_op_set_tx_hw_csum(struct net_device *dev, u32 data)
56{
57 if (data)
58 dev->features |= NETIF_F_HW_CSUM;
59 else
60 dev->features &= ~NETIF_F_HW_CSUM;
61
62 return 0;
63}
Michael Chan6460d942007-07-14 19:07:52 -070064
65int ethtool_op_set_tx_ipv6_csum(struct net_device *dev, u32 data)
66{
67 if (data)
68 dev->features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
69 else
70 dev->features &= ~(NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM);
71
72 return 0;
73}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075u32 ethtool_op_get_sg(struct net_device *dev)
76{
77 return (dev->features & NETIF_F_SG) != 0;
78}
79
80int ethtool_op_set_sg(struct net_device *dev, u32 data)
81{
82 if (data)
83 dev->features |= NETIF_F_SG;
84 else
85 dev->features &= ~NETIF_F_SG;
86
87 return 0;
88}
89
90u32 ethtool_op_get_tso(struct net_device *dev)
91{
92 return (dev->features & NETIF_F_TSO) != 0;
93}
94
95int ethtool_op_set_tso(struct net_device *dev, u32 data)
96{
97 if (data)
98 dev->features |= NETIF_F_TSO;
99 else
100 dev->features &= ~NETIF_F_TSO;
101
102 return 0;
103}
104
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700105u32 ethtool_op_get_ufo(struct net_device *dev)
106{
107 return (dev->features & NETIF_F_UFO) != 0;
108}
109
110int ethtool_op_set_ufo(struct net_device *dev, u32 data)
111{
112 if (data)
113 dev->features |= NETIF_F_UFO;
114 else
115 dev->features &= ~NETIF_F_UFO;
116 return 0;
117}
118
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700119/* the following list of flags are the same as their associated
120 * NETIF_F_xxx values in include/linux/netdevice.h
121 */
122static const u32 flags_dup_features =
123 ETH_FLAG_LRO;
124
125u32 ethtool_op_get_flags(struct net_device *dev)
126{
127 /* in the future, this function will probably contain additional
128 * handling for flags which are not so easily handled
129 * by a simple masking operation
130 */
131
132 return dev->features & flags_dup_features;
133}
134
135int ethtool_op_set_flags(struct net_device *dev, u32 data)
136{
137 if (data & ETH_FLAG_LRO)
138 dev->features |= NETIF_F_LRO;
139 else
140 dev->features &= ~NETIF_F_LRO;
141
142 return 0;
143}
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/* Handlers for each ethtool command */
146
147static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
148{
149 struct ethtool_cmd cmd = { ETHTOOL_GSET };
150 int err;
151
152 if (!dev->ethtool_ops->get_settings)
153 return -EOPNOTSUPP;
154
155 err = dev->ethtool_ops->get_settings(dev, &cmd);
156 if (err < 0)
157 return err;
158
159 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
160 return -EFAULT;
161 return 0;
162}
163
164static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
165{
166 struct ethtool_cmd cmd;
167
168 if (!dev->ethtool_ops->set_settings)
169 return -EOPNOTSUPP;
170
171 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
172 return -EFAULT;
173
174 return dev->ethtool_ops->set_settings(dev, &cmd);
175}
176
177static int ethtool_get_drvinfo(struct net_device *dev, void __user *useraddr)
178{
179 struct ethtool_drvinfo info;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700180 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 if (!ops->get_drvinfo)
183 return -EOPNOTSUPP;
184
185 memset(&info, 0, sizeof(info));
186 info.cmd = ETHTOOL_GDRVINFO;
187 ops->get_drvinfo(dev, &info);
188
Jeff Garzikff03d492007-08-15 16:01:08 -0700189 if (ops->get_sset_count) {
190 int rc;
191
192 rc = ops->get_sset_count(dev, ETH_SS_TEST);
193 if (rc >= 0)
194 info.testinfo_len = rc;
195 rc = ops->get_sset_count(dev, ETH_SS_STATS);
196 if (rc >= 0)
197 info.n_stats = rc;
Jeff Garzik339bf022007-08-15 16:01:32 -0700198 rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
199 if (rc >= 0)
200 info.n_priv_flags = rc;
Jeff Garzikff03d492007-08-15 16:01:08 -0700201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (ops->get_regs_len)
203 info.regdump_len = ops->get_regs_len(dev);
204 if (ops->get_eeprom_len)
205 info.eedump_len = ops->get_eeprom_len(dev);
206
207 if (copy_to_user(useraddr, &info, sizeof(info)))
208 return -EFAULT;
209 return 0;
210}
211
Santwona Behera59089d82009-02-20 00:58:13 -0800212static int ethtool_set_rxnfc(struct net_device *dev, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700213{
214 struct ethtool_rxnfc cmd;
215
Santwona Behera59089d82009-02-20 00:58:13 -0800216 if (!dev->ethtool_ops->set_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700217 return -EOPNOTSUPP;
218
219 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
220 return -EFAULT;
221
Santwona Behera59089d82009-02-20 00:58:13 -0800222 return dev->ethtool_ops->set_rxnfc(dev, &cmd);
Santwona Behera0853ad62008-07-02 03:47:41 -0700223}
224
Santwona Behera59089d82009-02-20 00:58:13 -0800225static int ethtool_get_rxnfc(struct net_device *dev, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700226{
227 struct ethtool_rxnfc info;
Santwona Behera59089d82009-02-20 00:58:13 -0800228 const struct ethtool_ops *ops = dev->ethtool_ops;
229 int ret;
230 void *rule_buf = NULL;
Santwona Behera0853ad62008-07-02 03:47:41 -0700231
Santwona Behera59089d82009-02-20 00:58:13 -0800232 if (!ops->get_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700233 return -EOPNOTSUPP;
234
235 if (copy_from_user(&info, useraddr, sizeof(info)))
236 return -EFAULT;
237
Santwona Behera59089d82009-02-20 00:58:13 -0800238 if (info.cmd == ETHTOOL_GRXCLSRLALL) {
239 if (info.rule_cnt > 0) {
240 rule_buf = kmalloc(info.rule_cnt * sizeof(u32),
241 GFP_USER);
242 if (!rule_buf)
243 return -ENOMEM;
244 }
245 }
Santwona Behera0853ad62008-07-02 03:47:41 -0700246
Santwona Behera59089d82009-02-20 00:58:13 -0800247 ret = ops->get_rxnfc(dev, &info, rule_buf);
248 if (ret < 0)
249 goto err_out;
250
251 ret = -EFAULT;
Santwona Behera0853ad62008-07-02 03:47:41 -0700252 if (copy_to_user(useraddr, &info, sizeof(info)))
Santwona Behera59089d82009-02-20 00:58:13 -0800253 goto err_out;
254
255 if (rule_buf) {
256 useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
257 if (copy_to_user(useraddr, rule_buf,
258 info.rule_cnt * sizeof(u32)))
259 goto err_out;
260 }
261 ret = 0;
262
263err_out:
Wei Yongjunc9cacec2009-03-31 15:06:26 -0700264 kfree(rule_buf);
Santwona Behera59089d82009-02-20 00:58:13 -0800265
266 return ret;
Santwona Behera0853ad62008-07-02 03:47:41 -0700267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
270{
271 struct ethtool_regs regs;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700272 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 void *regbuf;
274 int reglen, ret;
275
276 if (!ops->get_regs || !ops->get_regs_len)
277 return -EOPNOTSUPP;
278
279 if (copy_from_user(&regs, useraddr, sizeof(regs)))
280 return -EFAULT;
281
282 reglen = ops->get_regs_len(dev);
283 if (regs.len > reglen)
284 regs.len = reglen;
285
286 regbuf = kmalloc(reglen, GFP_USER);
287 if (!regbuf)
288 return -ENOMEM;
289
290 ops->get_regs(dev, &regs, regbuf);
291
292 ret = -EFAULT;
293 if (copy_to_user(useraddr, &regs, sizeof(regs)))
294 goto out;
295 useraddr += offsetof(struct ethtool_regs, data);
296 if (copy_to_user(useraddr, regbuf, regs.len))
297 goto out;
298 ret = 0;
299
300 out:
301 kfree(regbuf);
302 return ret;
303}
304
305static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
306{
307 struct ethtool_wolinfo wol = { ETHTOOL_GWOL };
308
309 if (!dev->ethtool_ops->get_wol)
310 return -EOPNOTSUPP;
311
312 dev->ethtool_ops->get_wol(dev, &wol);
313
314 if (copy_to_user(useraddr, &wol, sizeof(wol)))
315 return -EFAULT;
316 return 0;
317}
318
319static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
320{
321 struct ethtool_wolinfo wol;
322
323 if (!dev->ethtool_ops->set_wol)
324 return -EOPNOTSUPP;
325
326 if (copy_from_user(&wol, useraddr, sizeof(wol)))
327 return -EFAULT;
328
329 return dev->ethtool_ops->set_wol(dev, &wol);
330}
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332static int ethtool_nway_reset(struct net_device *dev)
333{
334 if (!dev->ethtool_ops->nway_reset)
335 return -EOPNOTSUPP;
336
337 return dev->ethtool_ops->nway_reset(dev);
338}
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
341{
342 struct ethtool_eeprom eeprom;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700343 const struct ethtool_ops *ops = dev->ethtool_ops;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700344 void __user *userbuf = useraddr + sizeof(eeprom);
345 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 u8 *data;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700347 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 if (!ops->get_eeprom || !ops->get_eeprom_len)
350 return -EOPNOTSUPP;
351
352 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
353 return -EFAULT;
354
355 /* Check for wrap and zero */
356 if (eeprom.offset + eeprom.len <= eeprom.offset)
357 return -EINVAL;
358
359 /* Check for exceeding total eeprom len */
360 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
361 return -EINVAL;
362
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700363 data = kmalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (!data)
365 return -ENOMEM;
366
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700367 bytes_remaining = eeprom.len;
368 while (bytes_remaining > 0) {
369 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700371 ret = ops->get_eeprom(dev, &eeprom, data);
372 if (ret)
373 break;
374 if (copy_to_user(userbuf, data, eeprom.len)) {
375 ret = -EFAULT;
376 break;
377 }
378 userbuf += eeprom.len;
379 eeprom.offset += eeprom.len;
380 bytes_remaining -= eeprom.len;
381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Mandeep Singh Bainesc5835df2008-04-24 20:55:56 -0700383 eeprom.len = userbuf - (useraddr + sizeof(eeprom));
384 eeprom.offset -= eeprom.len;
385 if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
386 ret = -EFAULT;
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 kfree(data);
389 return ret;
390}
391
392static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
393{
394 struct ethtool_eeprom eeprom;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700395 const struct ethtool_ops *ops = dev->ethtool_ops;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700396 void __user *userbuf = useraddr + sizeof(eeprom);
397 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 u8 *data;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700399 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 if (!ops->set_eeprom || !ops->get_eeprom_len)
402 return -EOPNOTSUPP;
403
404 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
405 return -EFAULT;
406
407 /* Check for wrap and zero */
408 if (eeprom.offset + eeprom.len <= eeprom.offset)
409 return -EINVAL;
410
411 /* Check for exceeding total eeprom len */
412 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
413 return -EINVAL;
414
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700415 data = kmalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (!data)
417 return -ENOMEM;
418
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700419 bytes_remaining = eeprom.len;
420 while (bytes_remaining > 0) {
421 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700423 if (copy_from_user(data, userbuf, eeprom.len)) {
424 ret = -EFAULT;
425 break;
426 }
427 ret = ops->set_eeprom(dev, &eeprom, data);
428 if (ret)
429 break;
430 userbuf += eeprom.len;
431 eeprom.offset += eeprom.len;
432 bytes_remaining -= eeprom.len;
433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 kfree(data);
436 return ret;
437}
438
439static int ethtool_get_coalesce(struct net_device *dev, void __user *useraddr)
440{
441 struct ethtool_coalesce coalesce = { ETHTOOL_GCOALESCE };
442
443 if (!dev->ethtool_ops->get_coalesce)
444 return -EOPNOTSUPP;
445
446 dev->ethtool_ops->get_coalesce(dev, &coalesce);
447
448 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
449 return -EFAULT;
450 return 0;
451}
452
453static int ethtool_set_coalesce(struct net_device *dev, void __user *useraddr)
454{
455 struct ethtool_coalesce coalesce;
456
David S. Millerfa04ae52005-06-06 15:07:19 -0700457 if (!dev->ethtool_ops->set_coalesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return -EOPNOTSUPP;
459
460 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
461 return -EFAULT;
462
463 return dev->ethtool_ops->set_coalesce(dev, &coalesce);
464}
465
466static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
467{
468 struct ethtool_ringparam ringparam = { ETHTOOL_GRINGPARAM };
469
470 if (!dev->ethtool_ops->get_ringparam)
471 return -EOPNOTSUPP;
472
473 dev->ethtool_ops->get_ringparam(dev, &ringparam);
474
475 if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
476 return -EFAULT;
477 return 0;
478}
479
480static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
481{
482 struct ethtool_ringparam ringparam;
483
484 if (!dev->ethtool_ops->set_ringparam)
485 return -EOPNOTSUPP;
486
487 if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
488 return -EFAULT;
489
490 return dev->ethtool_ops->set_ringparam(dev, &ringparam);
491}
492
493static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
494{
495 struct ethtool_pauseparam pauseparam = { ETHTOOL_GPAUSEPARAM };
496
497 if (!dev->ethtool_ops->get_pauseparam)
498 return -EOPNOTSUPP;
499
500 dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
501
502 if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
503 return -EFAULT;
504 return 0;
505}
506
507static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
508{
509 struct ethtool_pauseparam pauseparam;
510
Jeff Garzike1b90c42006-07-17 12:54:40 -0400511 if (!dev->ethtool_ops->set_pauseparam)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return -EOPNOTSUPP;
513
514 if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
515 return -EFAULT;
516
517 return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520static int __ethtool_set_sg(struct net_device *dev, u32 data)
521{
522 int err;
523
524 if (!data && dev->ethtool_ops->set_tso) {
525 err = dev->ethtool_ops->set_tso(dev, 0);
526 if (err)
527 return err;
528 }
529
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700530 if (!data && dev->ethtool_ops->set_ufo) {
531 err = dev->ethtool_ops->set_ufo(dev, 0);
532 if (err)
533 return err;
534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return dev->ethtool_ops->set_sg(dev, data);
536}
537
538static int ethtool_set_tx_csum(struct net_device *dev, char __user *useraddr)
539{
540 struct ethtool_value edata;
541 int err;
542
543 if (!dev->ethtool_ops->set_tx_csum)
544 return -EOPNOTSUPP;
545
546 if (copy_from_user(&edata, useraddr, sizeof(edata)))
547 return -EFAULT;
548
549 if (!edata.data && dev->ethtool_ops->set_sg) {
550 err = __ethtool_set_sg(dev, 0);
551 if (err)
552 return err;
553 }
554
555 return dev->ethtool_ops->set_tx_csum(dev, edata.data);
556}
557
Herbert Xub240a0e2008-12-15 23:44:31 -0800558static int ethtool_set_rx_csum(struct net_device *dev, char __user *useraddr)
559{
560 struct ethtool_value edata;
561
562 if (!dev->ethtool_ops->set_rx_csum)
563 return -EOPNOTSUPP;
564
565 if (copy_from_user(&edata, useraddr, sizeof(edata)))
566 return -EFAULT;
567
568 if (!edata.data && dev->ethtool_ops->set_sg)
569 dev->features &= ~NETIF_F_GRO;
570
571 return dev->ethtool_ops->set_rx_csum(dev, edata.data);
572}
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574static int ethtool_set_sg(struct net_device *dev, char __user *useraddr)
575{
576 struct ethtool_value edata;
577
578 if (!dev->ethtool_ops->set_sg)
579 return -EOPNOTSUPP;
580
581 if (copy_from_user(&edata, useraddr, sizeof(edata)))
582 return -EFAULT;
583
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900584 if (edata.data &&
Herbert Xu8648b302006-06-17 22:06:05 -0700585 !(dev->features & NETIF_F_ALL_CSUM))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return -EINVAL;
587
588 return __ethtool_set_sg(dev, edata.data);
589}
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591static int ethtool_set_tso(struct net_device *dev, char __user *useraddr)
592{
593 struct ethtool_value edata;
594
595 if (!dev->ethtool_ops->set_tso)
596 return -EOPNOTSUPP;
597
598 if (copy_from_user(&edata, useraddr, sizeof(edata)))
599 return -EFAULT;
600
601 if (edata.data && !(dev->features & NETIF_F_SG))
602 return -EINVAL;
603
604 return dev->ethtool_ops->set_tso(dev, edata.data);
605}
606
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700607static int ethtool_set_ufo(struct net_device *dev, char __user *useraddr)
608{
609 struct ethtool_value edata;
610
611 if (!dev->ethtool_ops->set_ufo)
612 return -EOPNOTSUPP;
613 if (copy_from_user(&edata, useraddr, sizeof(edata)))
614 return -EFAULT;
615 if (edata.data && !(dev->features & NETIF_F_SG))
616 return -EINVAL;
617 if (edata.data && !(dev->features & NETIF_F_HW_CSUM))
618 return -EINVAL;
619 return dev->ethtool_ops->set_ufo(dev, edata.data);
620}
621
Herbert Xu37c31852006-06-22 03:07:29 -0700622static int ethtool_get_gso(struct net_device *dev, char __user *useraddr)
623{
624 struct ethtool_value edata = { ETHTOOL_GGSO };
625
626 edata.data = dev->features & NETIF_F_GSO;
627 if (copy_to_user(useraddr, &edata, sizeof(edata)))
628 return -EFAULT;
629 return 0;
630}
631
632static int ethtool_set_gso(struct net_device *dev, char __user *useraddr)
633{
634 struct ethtool_value edata;
635
636 if (copy_from_user(&edata, useraddr, sizeof(edata)))
637 return -EFAULT;
638 if (edata.data)
639 dev->features |= NETIF_F_GSO;
640 else
641 dev->features &= ~NETIF_F_GSO;
642 return 0;
643}
644
Herbert Xub240a0e2008-12-15 23:44:31 -0800645static int ethtool_get_gro(struct net_device *dev, char __user *useraddr)
646{
647 struct ethtool_value edata = { ETHTOOL_GGRO };
648
649 edata.data = dev->features & NETIF_F_GRO;
650 if (copy_to_user(useraddr, &edata, sizeof(edata)))
651 return -EFAULT;
652 return 0;
653}
654
655static int ethtool_set_gro(struct net_device *dev, char __user *useraddr)
656{
657 struct ethtool_value edata;
658
659 if (copy_from_user(&edata, useraddr, sizeof(edata)))
660 return -EFAULT;
661
662 if (edata.data) {
663 if (!dev->ethtool_ops->get_rx_csum ||
664 !dev->ethtool_ops->get_rx_csum(dev))
665 return -EINVAL;
666 dev->features |= NETIF_F_GRO;
667 } else
668 dev->features &= ~NETIF_F_GRO;
669
670 return 0;
671}
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
674{
675 struct ethtool_test test;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700676 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -0700678 int ret, test_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Ben Hutchingsa9828ec2009-10-01 11:33:03 +0000680 if (!ops->self_test || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -0700681 return -EOPNOTSUPP;
682
Ben Hutchingsa9828ec2009-10-01 11:33:03 +0000683 test_len = ops->get_sset_count(dev, ETH_SS_TEST);
Jeff Garzikff03d492007-08-15 16:01:08 -0700684 if (test_len < 0)
685 return test_len;
686 WARN_ON(test_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if (copy_from_user(&test, useraddr, sizeof(test)))
689 return -EFAULT;
690
Jeff Garzikff03d492007-08-15 16:01:08 -0700691 test.len = test_len;
692 data = kmalloc(test_len * sizeof(u64), GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (!data)
694 return -ENOMEM;
695
696 ops->self_test(dev, &test, data);
697
698 ret = -EFAULT;
699 if (copy_to_user(useraddr, &test, sizeof(test)))
700 goto out;
701 useraddr += sizeof(test);
702 if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
703 goto out;
704 ret = 0;
705
706 out:
707 kfree(data);
708 return ret;
709}
710
711static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
712{
713 struct ethtool_gstrings gstrings;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700714 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 u8 *data;
716 int ret;
717
Ben Hutchingsa9828ec2009-10-01 11:33:03 +0000718 if (!ops->get_strings || !ops->get_sset_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return -EOPNOTSUPP;
720
721 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
722 return -EFAULT;
723
Ben Hutchingsa9828ec2009-10-01 11:33:03 +0000724 ret = ops->get_sset_count(dev, gstrings.string_set);
725 if (ret < 0)
726 return ret;
Jeff Garzikff03d492007-08-15 16:01:08 -0700727
Ben Hutchingsa9828ec2009-10-01 11:33:03 +0000728 gstrings.len = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 data = kmalloc(gstrings.len * ETH_GSTRING_LEN, GFP_USER);
731 if (!data)
732 return -ENOMEM;
733
734 ops->get_strings(dev, gstrings.string_set, data);
735
736 ret = -EFAULT;
737 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
738 goto out;
739 useraddr += sizeof(gstrings);
740 if (copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
741 goto out;
742 ret = 0;
743
744 out:
745 kfree(data);
746 return ret;
747}
748
749static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
750{
751 struct ethtool_value id;
752
753 if (!dev->ethtool_ops->phys_id)
754 return -EOPNOTSUPP;
755
756 if (copy_from_user(&id, useraddr, sizeof(id)))
757 return -EFAULT;
758
759 return dev->ethtool_ops->phys_id(dev, id.data);
760}
761
762static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
763{
764 struct ethtool_stats stats;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700765 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -0700767 int ret, n_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Ben Hutchingsa9828ec2009-10-01 11:33:03 +0000769 if (!ops->get_ethtool_stats || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -0700770 return -EOPNOTSUPP;
771
Ben Hutchingsa9828ec2009-10-01 11:33:03 +0000772 n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
Jeff Garzikff03d492007-08-15 16:01:08 -0700773 if (n_stats < 0)
774 return n_stats;
775 WARN_ON(n_stats == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 if (copy_from_user(&stats, useraddr, sizeof(stats)))
778 return -EFAULT;
779
Jeff Garzikff03d492007-08-15 16:01:08 -0700780 stats.n_stats = n_stats;
781 data = kmalloc(n_stats * sizeof(u64), GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (!data)
783 return -ENOMEM;
784
785 ops->get_ethtool_stats(dev, &stats, data);
786
787 ret = -EFAULT;
788 if (copy_to_user(useraddr, &stats, sizeof(stats)))
789 goto out;
790 useraddr += sizeof(stats);
791 if (copy_to_user(useraddr, data, stats.n_stats * sizeof(u64)))
792 goto out;
793 ret = 0;
794
795 out:
796 kfree(data);
797 return ret;
798}
799
viro@ftp.linux.org.uk0bf0519d2005-09-05 03:26:18 +0100800static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
Jon Wetzela6f9a702005-08-20 17:15:54 -0700801{
802 struct ethtool_perm_addr epaddr;
Jon Wetzela6f9a702005-08-20 17:15:54 -0700803
Matthew Wilcox313674a2007-07-31 14:00:29 -0700804 if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
Jon Wetzela6f9a702005-08-20 17:15:54 -0700805 return -EFAULT;
806
Matthew Wilcox313674a2007-07-31 14:00:29 -0700807 if (epaddr.size < dev->addr_len)
808 return -ETOOSMALL;
809 epaddr.size = dev->addr_len;
Jon Wetzela6f9a702005-08-20 17:15:54 -0700810
Jon Wetzela6f9a702005-08-20 17:15:54 -0700811 if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
Matthew Wilcox313674a2007-07-31 14:00:29 -0700812 return -EFAULT;
Jon Wetzela6f9a702005-08-20 17:15:54 -0700813 useraddr += sizeof(epaddr);
Matthew Wilcox313674a2007-07-31 14:00:29 -0700814 if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
815 return -EFAULT;
816 return 0;
Jon Wetzela6f9a702005-08-20 17:15:54 -0700817}
818
Jeff Garzik13c99b22007-08-15 16:01:56 -0700819static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
820 u32 cmd, u32 (*actor)(struct net_device *))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700821{
Jeff Garzik13c99b22007-08-15 16:01:56 -0700822 struct ethtool_value edata = { cmd };
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700823
Jeff Garzik13c99b22007-08-15 16:01:56 -0700824 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700825 return -EOPNOTSUPP;
826
Jeff Garzik13c99b22007-08-15 16:01:56 -0700827 edata.data = actor(dev);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700828
829 if (copy_to_user(useraddr, &edata, sizeof(edata)))
830 return -EFAULT;
831 return 0;
832}
833
Jeff Garzik13c99b22007-08-15 16:01:56 -0700834static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
835 void (*actor)(struct net_device *, u32))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700836{
837 struct ethtool_value edata;
838
Jeff Garzik13c99b22007-08-15 16:01:56 -0700839 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700840 return -EOPNOTSUPP;
841
842 if (copy_from_user(&edata, useraddr, sizeof(edata)))
843 return -EFAULT;
844
Jeff Garzik13c99b22007-08-15 16:01:56 -0700845 actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -0700846 return 0;
847}
848
Jeff Garzik13c99b22007-08-15 16:01:56 -0700849static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
850 int (*actor)(struct net_device *, u32))
Jeff Garzik339bf022007-08-15 16:01:32 -0700851{
852 struct ethtool_value edata;
853
Jeff Garzik13c99b22007-08-15 16:01:56 -0700854 if (!actor)
Jeff Garzik339bf022007-08-15 16:01:32 -0700855 return -EOPNOTSUPP;
856
857 if (copy_from_user(&edata, useraddr, sizeof(edata)))
858 return -EFAULT;
859
Jeff Garzik13c99b22007-08-15 16:01:56 -0700860 return actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -0700861}
862
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +0000863static int ethtool_flash_device(struct net_device *dev, char __user *useraddr)
864{
865 struct ethtool_flash efl;
866
867 if (copy_from_user(&efl, useraddr, sizeof(efl)))
868 return -EFAULT;
869
870 if (!dev->ethtool_ops->flash_device)
871 return -EOPNOTSUPP;
872
873 return dev->ethtool_ops->flash_device(dev, &efl);
874}
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876/* The main entry point in this file. Called from net/core/dev.c */
877
Eric W. Biederman881d9662007-09-17 11:56:21 -0700878int dev_ethtool(struct net *net, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Eric W. Biederman881d9662007-09-17 11:56:21 -0700880 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 void __user *useraddr = ifr->ifr_data;
882 u32 ethcmd;
883 int rc;
Stephen Hemminger81e81572005-05-29 14:14:35 -0700884 unsigned long old_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (!dev || !netif_device_present(dev))
887 return -ENODEV;
888
889 if (!dev->ethtool_ops)
Matthew Wilcox61a44b92007-07-31 14:00:02 -0700890 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 if (copy_from_user(&ethcmd, useraddr, sizeof (ethcmd)))
893 return -EFAULT;
894
Stephen Hemminger75f31232006-09-28 15:13:37 -0700895 /* Allow some commands to be done by anyone */
896 switch(ethcmd) {
Stephen Hemminger75f31232006-09-28 15:13:37 -0700897 case ETHTOOL_GDRVINFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -0700898 case ETHTOOL_GMSGLVL:
Stephen Hemminger75f31232006-09-28 15:13:37 -0700899 case ETHTOOL_GCOALESCE:
900 case ETHTOOL_GRINGPARAM:
901 case ETHTOOL_GPAUSEPARAM:
902 case ETHTOOL_GRXCSUM:
903 case ETHTOOL_GTXCSUM:
904 case ETHTOOL_GSG:
905 case ETHTOOL_GSTRINGS:
Stephen Hemminger75f31232006-09-28 15:13:37 -0700906 case ETHTOOL_GTSO:
907 case ETHTOOL_GPERMADDR:
908 case ETHTOOL_GUFO:
909 case ETHTOOL_GGSO:
Jeff Garzik339bf022007-08-15 16:01:32 -0700910 case ETHTOOL_GFLAGS:
911 case ETHTOOL_GPFLAGS:
Santwona Behera0853ad62008-07-02 03:47:41 -0700912 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -0800913 case ETHTOOL_GRXRINGS:
914 case ETHTOOL_GRXCLSRLCNT:
915 case ETHTOOL_GRXCLSRULE:
916 case ETHTOOL_GRXCLSRLALL:
Stephen Hemminger75f31232006-09-28 15:13:37 -0700917 break;
918 default:
919 if (!capable(CAP_NET_ADMIN))
920 return -EPERM;
921 }
922
Stephen Hemmingere71a4782007-04-10 20:10:33 -0700923 if (dev->ethtool_ops->begin)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 if ((rc = dev->ethtool_ops->begin(dev)) < 0)
925 return rc;
926
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -0700927 old_features = dev->features;
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 switch (ethcmd) {
930 case ETHTOOL_GSET:
931 rc = ethtool_get_settings(dev, useraddr);
932 break;
933 case ETHTOOL_SSET:
934 rc = ethtool_set_settings(dev, useraddr);
935 break;
936 case ETHTOOL_GDRVINFO:
937 rc = ethtool_get_drvinfo(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 break;
939 case ETHTOOL_GREGS:
940 rc = ethtool_get_regs(dev, useraddr);
941 break;
942 case ETHTOOL_GWOL:
943 rc = ethtool_get_wol(dev, useraddr);
944 break;
945 case ETHTOOL_SWOL:
946 rc = ethtool_set_wol(dev, useraddr);
947 break;
948 case ETHTOOL_GMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -0700949 rc = ethtool_get_value(dev, useraddr, ethcmd,
950 dev->ethtool_ops->get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 break;
952 case ETHTOOL_SMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -0700953 rc = ethtool_set_value_void(dev, useraddr,
954 dev->ethtool_ops->set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 break;
956 case ETHTOOL_NWAY_RST:
957 rc = ethtool_nway_reset(dev);
958 break;
959 case ETHTOOL_GLINK:
Jeff Garzik13c99b22007-08-15 16:01:56 -0700960 rc = ethtool_get_value(dev, useraddr, ethcmd,
961 dev->ethtool_ops->get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 break;
963 case ETHTOOL_GEEPROM:
964 rc = ethtool_get_eeprom(dev, useraddr);
965 break;
966 case ETHTOOL_SEEPROM:
967 rc = ethtool_set_eeprom(dev, useraddr);
968 break;
969 case ETHTOOL_GCOALESCE:
970 rc = ethtool_get_coalesce(dev, useraddr);
971 break;
972 case ETHTOOL_SCOALESCE:
973 rc = ethtool_set_coalesce(dev, useraddr);
974 break;
975 case ETHTOOL_GRINGPARAM:
976 rc = ethtool_get_ringparam(dev, useraddr);
977 break;
978 case ETHTOOL_SRINGPARAM:
979 rc = ethtool_set_ringparam(dev, useraddr);
980 break;
981 case ETHTOOL_GPAUSEPARAM:
982 rc = ethtool_get_pauseparam(dev, useraddr);
983 break;
984 case ETHTOOL_SPAUSEPARAM:
985 rc = ethtool_set_pauseparam(dev, useraddr);
986 break;
987 case ETHTOOL_GRXCSUM:
Jeff Garzik13c99b22007-08-15 16:01:56 -0700988 rc = ethtool_get_value(dev, useraddr, ethcmd,
Sridhar Samudrala1896e612009-07-22 13:38:22 +0000989 (dev->ethtool_ops->get_rx_csum ?
990 dev->ethtool_ops->get_rx_csum :
991 ethtool_op_get_rx_csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 break;
993 case ETHTOOL_SRXCSUM:
Herbert Xub240a0e2008-12-15 23:44:31 -0800994 rc = ethtool_set_rx_csum(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 break;
996 case ETHTOOL_GTXCSUM:
Jeff Garzik13c99b22007-08-15 16:01:56 -0700997 rc = ethtool_get_value(dev, useraddr, ethcmd,
Jeff Garzik88d3aaf2007-09-15 14:41:06 -0700998 (dev->ethtool_ops->get_tx_csum ?
999 dev->ethtool_ops->get_tx_csum :
1000 ethtool_op_get_tx_csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 break;
1002 case ETHTOOL_STXCSUM:
1003 rc = ethtool_set_tx_csum(dev, useraddr);
1004 break;
1005 case ETHTOOL_GSG:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001006 rc = ethtool_get_value(dev, useraddr, ethcmd,
Jeff Garzik88d3aaf2007-09-15 14:41:06 -07001007 (dev->ethtool_ops->get_sg ?
1008 dev->ethtool_ops->get_sg :
1009 ethtool_op_get_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 break;
1011 case ETHTOOL_SSG:
1012 rc = ethtool_set_sg(dev, useraddr);
1013 break;
1014 case ETHTOOL_GTSO:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001015 rc = ethtool_get_value(dev, useraddr, ethcmd,
Jeff Garzik88d3aaf2007-09-15 14:41:06 -07001016 (dev->ethtool_ops->get_tso ?
1017 dev->ethtool_ops->get_tso :
1018 ethtool_op_get_tso));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 break;
1020 case ETHTOOL_STSO:
1021 rc = ethtool_set_tso(dev, useraddr);
1022 break;
1023 case ETHTOOL_TEST:
1024 rc = ethtool_self_test(dev, useraddr);
1025 break;
1026 case ETHTOOL_GSTRINGS:
1027 rc = ethtool_get_strings(dev, useraddr);
1028 break;
1029 case ETHTOOL_PHYS_ID:
1030 rc = ethtool_phys_id(dev, useraddr);
1031 break;
1032 case ETHTOOL_GSTATS:
1033 rc = ethtool_get_stats(dev, useraddr);
1034 break;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001035 case ETHTOOL_GPERMADDR:
1036 rc = ethtool_get_perm_addr(dev, useraddr);
1037 break;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001038 case ETHTOOL_GUFO:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001039 rc = ethtool_get_value(dev, useraddr, ethcmd,
Jeff Garzik88d3aaf2007-09-15 14:41:06 -07001040 (dev->ethtool_ops->get_ufo ?
1041 dev->ethtool_ops->get_ufo :
1042 ethtool_op_get_ufo));
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001043 break;
1044 case ETHTOOL_SUFO:
1045 rc = ethtool_set_ufo(dev, useraddr);
1046 break;
Herbert Xu37c31852006-06-22 03:07:29 -07001047 case ETHTOOL_GGSO:
1048 rc = ethtool_get_gso(dev, useraddr);
1049 break;
1050 case ETHTOOL_SGSO:
1051 rc = ethtool_set_gso(dev, useraddr);
1052 break;
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001053 case ETHTOOL_GFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001054 rc = ethtool_get_value(dev, useraddr, ethcmd,
Sridhar Samudrala1896e612009-07-22 13:38:22 +00001055 (dev->ethtool_ops->get_flags ?
1056 dev->ethtool_ops->get_flags :
1057 ethtool_op_get_flags));
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001058 break;
1059 case ETHTOOL_SFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001060 rc = ethtool_set_value(dev, useraddr,
1061 dev->ethtool_ops->set_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001062 break;
Jeff Garzik339bf022007-08-15 16:01:32 -07001063 case ETHTOOL_GPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001064 rc = ethtool_get_value(dev, useraddr, ethcmd,
1065 dev->ethtool_ops->get_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07001066 break;
1067 case ETHTOOL_SPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001068 rc = ethtool_set_value(dev, useraddr,
1069 dev->ethtool_ops->set_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07001070 break;
Santwona Behera0853ad62008-07-02 03:47:41 -07001071 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08001072 case ETHTOOL_GRXRINGS:
1073 case ETHTOOL_GRXCLSRLCNT:
1074 case ETHTOOL_GRXCLSRULE:
1075 case ETHTOOL_GRXCLSRLALL:
1076 rc = ethtool_get_rxnfc(dev, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07001077 break;
1078 case ETHTOOL_SRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08001079 case ETHTOOL_SRXCLSRLDEL:
1080 case ETHTOOL_SRXCLSRLINS:
1081 rc = ethtool_set_rxnfc(dev, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07001082 break;
Herbert Xub240a0e2008-12-15 23:44:31 -08001083 case ETHTOOL_GGRO:
1084 rc = ethtool_get_gro(dev, useraddr);
1085 break;
1086 case ETHTOOL_SGRO:
1087 rc = ethtool_set_gro(dev, useraddr);
1088 break;
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00001089 case ETHTOOL_FLASHDEV:
1090 rc = ethtool_flash_device(dev, useraddr);
1091 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 default:
Matthew Wilcox61a44b92007-07-31 14:00:02 -07001093 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001095
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001096 if (dev->ethtool_ops->complete)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 dev->ethtool_ops->complete(dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001098
1099 if (old_features != dev->features)
1100 netdev_features_change(dev);
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105EXPORT_SYMBOL(ethtool_op_get_link);
1106EXPORT_SYMBOL(ethtool_op_get_sg);
1107EXPORT_SYMBOL(ethtool_op_get_tso);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108EXPORT_SYMBOL(ethtool_op_set_sg);
1109EXPORT_SYMBOL(ethtool_op_set_tso);
1110EXPORT_SYMBOL(ethtool_op_set_tx_csum);
Jon Mason69f6a0f2005-05-29 20:27:24 -07001111EXPORT_SYMBOL(ethtool_op_set_tx_hw_csum);
Michael Chan6460d942007-07-14 19:07:52 -07001112EXPORT_SYMBOL(ethtool_op_set_tx_ipv6_csum);
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001113EXPORT_SYMBOL(ethtool_op_set_ufo);
1114EXPORT_SYMBOL(ethtool_op_get_ufo);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001115EXPORT_SYMBOL(ethtool_op_set_flags);
1116EXPORT_SYMBOL(ethtool_op_get_flags);