blob: a3a7e9a48dff87a423f5ac78dd9c0471833a658d [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090024/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * Some useful ethtool_ops methods that're device independent.
26 * If we find that all drivers want to do the same thing here,
27 * we can turn these into dev_() function calls.
28 */
29
30u32 ethtool_op_get_link(struct net_device *dev)
31{
32 return netif_carrier_ok(dev) ? 1 : 0;
33}
chavey97f8aef2010-04-07 21:54:42 -070034EXPORT_SYMBOL(ethtool_op_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Sridhar Samudrala1896e612009-07-22 13:38:22 +000036u32 ethtool_op_get_rx_csum(struct net_device *dev)
37{
38 return (dev->features & NETIF_F_ALL_CSUM) != 0;
39}
Eric Dumazet8a729fc2009-07-26 23:18:11 +000040EXPORT_SYMBOL(ethtool_op_get_rx_csum);
Sridhar Samudrala1896e612009-07-22 13:38:22 +000041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042u32 ethtool_op_get_tx_csum(struct net_device *dev)
43{
Herbert Xu8648b302006-06-17 22:06:05 -070044 return (dev->features & NETIF_F_ALL_CSUM) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
Eric Dumazet8a729fc2009-07-26 23:18:11 +000046EXPORT_SYMBOL(ethtool_op_get_tx_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48int ethtool_op_set_tx_csum(struct net_device *dev, u32 data)
49{
50 if (data)
51 dev->features |= NETIF_F_IP_CSUM;
52 else
53 dev->features &= ~NETIF_F_IP_CSUM;
54
55 return 0;
56}
57
Jon Mason69f6a0f2005-05-29 20:27:24 -070058int ethtool_op_set_tx_hw_csum(struct net_device *dev, u32 data)
59{
60 if (data)
61 dev->features |= NETIF_F_HW_CSUM;
62 else
63 dev->features &= ~NETIF_F_HW_CSUM;
64
65 return 0;
66}
chavey97f8aef2010-04-07 21:54:42 -070067EXPORT_SYMBOL(ethtool_op_set_tx_hw_csum);
Michael Chan6460d942007-07-14 19:07:52 -070068
69int ethtool_op_set_tx_ipv6_csum(struct net_device *dev, u32 data)
70{
71 if (data)
72 dev->features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
73 else
74 dev->features &= ~(NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM);
75
76 return 0;
77}
chavey97f8aef2010-04-07 21:54:42 -070078EXPORT_SYMBOL(ethtool_op_set_tx_ipv6_csum);
Michael Chan6460d942007-07-14 19:07:52 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080u32 ethtool_op_get_sg(struct net_device *dev)
81{
82 return (dev->features & NETIF_F_SG) != 0;
83}
chavey97f8aef2010-04-07 21:54:42 -070084EXPORT_SYMBOL(ethtool_op_get_sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86int ethtool_op_set_sg(struct net_device *dev, u32 data)
87{
88 if (data)
89 dev->features |= NETIF_F_SG;
90 else
91 dev->features &= ~NETIF_F_SG;
92
93 return 0;
94}
chavey97f8aef2010-04-07 21:54:42 -070095EXPORT_SYMBOL(ethtool_op_set_sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97u32 ethtool_op_get_tso(struct net_device *dev)
98{
99 return (dev->features & NETIF_F_TSO) != 0;
100}
chavey97f8aef2010-04-07 21:54:42 -0700101EXPORT_SYMBOL(ethtool_op_get_tso);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103int ethtool_op_set_tso(struct net_device *dev, u32 data)
104{
105 if (data)
106 dev->features |= NETIF_F_TSO;
107 else
108 dev->features &= ~NETIF_F_TSO;
109
110 return 0;
111}
chavey97f8aef2010-04-07 21:54:42 -0700112EXPORT_SYMBOL(ethtool_op_set_tso);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700114u32 ethtool_op_get_ufo(struct net_device *dev)
115{
116 return (dev->features & NETIF_F_UFO) != 0;
117}
chavey97f8aef2010-04-07 21:54:42 -0700118EXPORT_SYMBOL(ethtool_op_get_ufo);
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700119
120int ethtool_op_set_ufo(struct net_device *dev, u32 data)
121{
122 if (data)
123 dev->features |= NETIF_F_UFO;
124 else
125 dev->features &= ~NETIF_F_UFO;
126 return 0;
127}
chavey97f8aef2010-04-07 21:54:42 -0700128EXPORT_SYMBOL(ethtool_op_set_ufo);
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700129
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700130/* the following list of flags are the same as their associated
131 * NETIF_F_xxx values in include/linux/netdevice.h
132 */
133static const u32 flags_dup_features =
stephen hemmingerb00fabb2010-03-29 14:47:27 +0000134 (ETH_FLAG_LRO | ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700135
136u32 ethtool_op_get_flags(struct net_device *dev)
137{
138 /* in the future, this function will probably contain additional
139 * handling for flags which are not so easily handled
140 * by a simple masking operation
141 */
142
143 return dev->features & flags_dup_features;
144}
chavey97f8aef2010-04-07 21:54:42 -0700145EXPORT_SYMBOL(ethtool_op_get_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700146
147int ethtool_op_set_flags(struct net_device *dev, u32 data)
148{
Peter Waskiewicz0d643e12010-02-12 13:48:25 +0000149 const struct ethtool_ops *ops = dev->ethtool_ops;
Jeff Garzik96754782010-02-26 21:43:38 +0000150 unsigned long features = dev->features;
Peter Waskiewicz0d643e12010-02-12 13:48:25 +0000151
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700152 if (data & ETH_FLAG_LRO)
Jeff Garzik96754782010-02-26 21:43:38 +0000153 features |= NETIF_F_LRO;
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700154 else
Jeff Garzik96754782010-02-26 21:43:38 +0000155 features &= ~NETIF_F_LRO;
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700156
Peter Waskiewicz0d643e12010-02-12 13:48:25 +0000157 if (data & ETH_FLAG_NTUPLE) {
158 if (!ops->set_rx_ntuple)
159 return -EOPNOTSUPP;
Jeff Garzik96754782010-02-26 21:43:38 +0000160 features |= NETIF_F_NTUPLE;
Peter Waskiewicz0d643e12010-02-12 13:48:25 +0000161 } else {
162 /* safe to clear regardless */
Jeff Garzik96754782010-02-26 21:43:38 +0000163 features &= ~NETIF_F_NTUPLE;
Peter Waskiewicz0d643e12010-02-12 13:48:25 +0000164 }
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800165
stephen hemmingerb00fabb2010-03-29 14:47:27 +0000166 if (data & ETH_FLAG_RXHASH)
167 features |= NETIF_F_RXHASH;
168 else
169 features &= ~NETIF_F_RXHASH;
170
Jeff Garzik96754782010-02-26 21:43:38 +0000171 dev->features = features;
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700172 return 0;
173}
chavey97f8aef2010-04-07 21:54:42 -0700174EXPORT_SYMBOL(ethtool_op_set_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -0700175
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800176void ethtool_ntuple_flush(struct net_device *dev)
177{
178 struct ethtool_rx_ntuple_flow_spec_container *fsc, *f;
179
180 list_for_each_entry_safe(fsc, f, &dev->ethtool_ntuple_list.list, list) {
181 list_del(&fsc->list);
182 kfree(fsc);
183 }
184 dev->ethtool_ntuple_list.count = 0;
185}
186EXPORT_SYMBOL(ethtool_ntuple_flush);
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/* Handlers for each ethtool command */
189
190static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
191{
Roland Dreier8e557422010-02-11 12:14:23 -0800192 struct ethtool_cmd cmd = { .cmd = ETHTOOL_GSET };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 int err;
194
195 if (!dev->ethtool_ops->get_settings)
196 return -EOPNOTSUPP;
197
198 err = dev->ethtool_ops->get_settings(dev, &cmd);
199 if (err < 0)
200 return err;
201
202 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
203 return -EFAULT;
204 return 0;
205}
206
207static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
208{
209 struct ethtool_cmd cmd;
210
211 if (!dev->ethtool_ops->set_settings)
212 return -EOPNOTSUPP;
213
214 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
215 return -EFAULT;
216
217 return dev->ethtool_ops->set_settings(dev, &cmd);
218}
219
chavey97f8aef2010-04-07 21:54:42 -0700220static noinline_for_stack int ethtool_get_drvinfo(struct net_device *dev,
221 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct ethtool_drvinfo info;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700224 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 if (!ops->get_drvinfo)
227 return -EOPNOTSUPP;
228
229 memset(&info, 0, sizeof(info));
230 info.cmd = ETHTOOL_GDRVINFO;
231 ops->get_drvinfo(dev, &info);
232
Jeff Garzik723b2f52010-03-03 22:51:50 +0000233 /*
234 * this method of obtaining string set info is deprecated;
Jeff Garzikd17792e2010-03-04 08:21:53 +0000235 * Use ETHTOOL_GSSET_INFO instead.
Jeff Garzik723b2f52010-03-03 22:51:50 +0000236 */
Jeff Garzikff03d492007-08-15 16:01:08 -0700237 if (ops->get_sset_count) {
238 int rc;
239
240 rc = ops->get_sset_count(dev, ETH_SS_TEST);
241 if (rc >= 0)
242 info.testinfo_len = rc;
243 rc = ops->get_sset_count(dev, ETH_SS_STATS);
244 if (rc >= 0)
245 info.n_stats = rc;
Jeff Garzik339bf022007-08-15 16:01:32 -0700246 rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
247 if (rc >= 0)
248 info.n_priv_flags = rc;
Jeff Garzikff03d492007-08-15 16:01:08 -0700249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (ops->get_regs_len)
251 info.regdump_len = ops->get_regs_len(dev);
252 if (ops->get_eeprom_len)
253 info.eedump_len = ops->get_eeprom_len(dev);
254
255 if (copy_to_user(useraddr, &info, sizeof(info)))
256 return -EFAULT;
257 return 0;
258}
259
Eric Dumazetf5c445e2010-03-08 12:17:04 -0800260static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
chavey97f8aef2010-04-07 21:54:42 -0700261 void __user *useraddr)
Jeff Garzik723b2f52010-03-03 22:51:50 +0000262{
263 struct ethtool_sset_info info;
264 const struct ethtool_ops *ops = dev->ethtool_ops;
265 u64 sset_mask;
266 int i, idx = 0, n_bits = 0, ret, rc;
267 u32 *info_buf = NULL;
268
269 if (!ops->get_sset_count)
270 return -EOPNOTSUPP;
271
272 if (copy_from_user(&info, useraddr, sizeof(info)))
273 return -EFAULT;
274
275 /* store copy of mask, because we zero struct later on */
276 sset_mask = info.sset_mask;
277 if (!sset_mask)
278 return 0;
279
280 /* calculate size of return buffer */
Jeff Garzikd17792e2010-03-04 08:21:53 +0000281 n_bits = hweight64(sset_mask);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000282
283 memset(&info, 0, sizeof(info));
284 info.cmd = ETHTOOL_GSSET_INFO;
285
286 info_buf = kzalloc(n_bits * sizeof(u32), GFP_USER);
287 if (!info_buf)
288 return -ENOMEM;
289
290 /*
291 * fill return buffer based on input bitmask and successful
292 * get_sset_count return
293 */
294 for (i = 0; i < 64; i++) {
295 if (!(sset_mask & (1ULL << i)))
296 continue;
297
298 rc = ops->get_sset_count(dev, i);
299 if (rc >= 0) {
300 info.sset_mask |= (1ULL << i);
301 info_buf[idx++] = rc;
302 }
303 }
304
305 ret = -EFAULT;
306 if (copy_to_user(useraddr, &info, sizeof(info)))
307 goto out;
308
309 useraddr += offsetof(struct ethtool_sset_info, data);
310 if (copy_to_user(useraddr, info_buf, idx * sizeof(u32)))
311 goto out;
312
313 ret = 0;
314
315out:
316 kfree(info_buf);
317 return ret;
318}
319
chavey97f8aef2010-04-07 21:54:42 -0700320static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
321 void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700322{
323 struct ethtool_rxnfc cmd;
324
Santwona Behera59089d82009-02-20 00:58:13 -0800325 if (!dev->ethtool_ops->set_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700326 return -EOPNOTSUPP;
327
328 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
329 return -EFAULT;
330
Santwona Behera59089d82009-02-20 00:58:13 -0800331 return dev->ethtool_ops->set_rxnfc(dev, &cmd);
Santwona Behera0853ad62008-07-02 03:47:41 -0700332}
333
chavey97f8aef2010-04-07 21:54:42 -0700334static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
335 void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700336{
337 struct ethtool_rxnfc info;
Santwona Behera59089d82009-02-20 00:58:13 -0800338 const struct ethtool_ops *ops = dev->ethtool_ops;
339 int ret;
340 void *rule_buf = NULL;
Santwona Behera0853ad62008-07-02 03:47:41 -0700341
Santwona Behera59089d82009-02-20 00:58:13 -0800342 if (!ops->get_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700343 return -EOPNOTSUPP;
344
345 if (copy_from_user(&info, useraddr, sizeof(info)))
346 return -EFAULT;
347
Santwona Behera59089d82009-02-20 00:58:13 -0800348 if (info.cmd == ETHTOOL_GRXCLSRLALL) {
349 if (info.rule_cnt > 0) {
Ben Hutchingsdb048b62010-06-28 08:44:07 +0000350 if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
351 rule_buf = kmalloc(info.rule_cnt * sizeof(u32),
352 GFP_USER);
Santwona Behera59089d82009-02-20 00:58:13 -0800353 if (!rule_buf)
354 return -ENOMEM;
355 }
356 }
Santwona Behera0853ad62008-07-02 03:47:41 -0700357
Santwona Behera59089d82009-02-20 00:58:13 -0800358 ret = ops->get_rxnfc(dev, &info, rule_buf);
359 if (ret < 0)
360 goto err_out;
361
362 ret = -EFAULT;
Santwona Behera0853ad62008-07-02 03:47:41 -0700363 if (copy_to_user(useraddr, &info, sizeof(info)))
Santwona Behera59089d82009-02-20 00:58:13 -0800364 goto err_out;
365
366 if (rule_buf) {
367 useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
368 if (copy_to_user(useraddr, rule_buf,
369 info.rule_cnt * sizeof(u32)))
370 goto err_out;
371 }
372 ret = 0;
373
374err_out:
Wei Yongjunc9cacec2009-03-31 15:06:26 -0700375 kfree(rule_buf);
Santwona Behera59089d82009-02-20 00:58:13 -0800376
377 return ret;
Santwona Behera0853ad62008-07-02 03:47:41 -0700378}
379
Peter Waskiewicze8589112010-02-12 13:48:05 +0000380static void __rx_ntuple_filter_add(struct ethtool_rx_ntuple_list *list,
chavey97f8aef2010-04-07 21:54:42 -0700381 struct ethtool_rx_ntuple_flow_spec *spec,
382 struct ethtool_rx_ntuple_flow_spec_container *fsc)
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800383{
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800384
385 /* don't add filters forever */
Peter Waskiewicze8589112010-02-12 13:48:05 +0000386 if (list->count >= ETHTOOL_MAX_NTUPLE_LIST_ENTRY) {
387 /* free the container */
388 kfree(fsc);
389 return;
390 }
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800391
392 /* Copy the whole filter over */
393 fsc->fs.flow_type = spec->flow_type;
394 memcpy(&fsc->fs.h_u, &spec->h_u, sizeof(spec->h_u));
395 memcpy(&fsc->fs.m_u, &spec->m_u, sizeof(spec->m_u));
396
397 fsc->fs.vlan_tag = spec->vlan_tag;
398 fsc->fs.vlan_tag_mask = spec->vlan_tag_mask;
399 fsc->fs.data = spec->data;
400 fsc->fs.data_mask = spec->data_mask;
401 fsc->fs.action = spec->action;
402
403 /* add to the list */
404 list_add_tail_rcu(&fsc->list, &list->list);
405 list->count++;
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800406}
407
chavey97f8aef2010-04-07 21:54:42 -0700408static noinline_for_stack int ethtool_set_rx_ntuple(struct net_device *dev,
409 void __user *useraddr)
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800410{
411 struct ethtool_rx_ntuple cmd;
412 const struct ethtool_ops *ops = dev->ethtool_ops;
Peter Waskiewicze8589112010-02-12 13:48:05 +0000413 struct ethtool_rx_ntuple_flow_spec_container *fsc = NULL;
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800414 int ret;
415
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800416 if (!(dev->features & NETIF_F_NTUPLE))
417 return -EINVAL;
418
419 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
420 return -EFAULT;
421
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800422 /*
423 * Cache filter in dev struct for GET operation only if
424 * the underlying driver doesn't have its own GET operation, and
Peter Waskiewicze8589112010-02-12 13:48:05 +0000425 * only if the filter was added successfully. First make sure we
426 * can allocate the filter, then continue if successful.
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800427 */
Peter Waskiewicze8589112010-02-12 13:48:05 +0000428 if (!ops->get_rx_ntuple) {
429 fsc = kmalloc(sizeof(*fsc), GFP_ATOMIC);
430 if (!fsc)
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800431 return -ENOMEM;
Peter Waskiewicze8589112010-02-12 13:48:05 +0000432 }
433
434 ret = ops->set_rx_ntuple(dev, &cmd);
435 if (ret) {
436 kfree(fsc);
437 return ret;
438 }
439
440 if (!ops->get_rx_ntuple)
441 __rx_ntuple_filter_add(&dev->ethtool_ntuple_list, &cmd.fs, fsc);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800442
443 return ret;
444}
445
446static int ethtool_get_rx_ntuple(struct net_device *dev, void __user *useraddr)
447{
448 struct ethtool_gstrings gstrings;
449 const struct ethtool_ops *ops = dev->ethtool_ops;
450 struct ethtool_rx_ntuple_flow_spec_container *fsc;
451 u8 *data;
452 char *p;
453 int ret, i, num_strings = 0;
454
455 if (!ops->get_sset_count)
456 return -EOPNOTSUPP;
457
458 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
459 return -EFAULT;
460
461 ret = ops->get_sset_count(dev, gstrings.string_set);
462 if (ret < 0)
463 return ret;
464
465 gstrings.len = ret;
466
467 data = kmalloc(gstrings.len * ETH_GSTRING_LEN, GFP_USER);
468 if (!data)
469 return -ENOMEM;
470
471 if (ops->get_rx_ntuple) {
472 /* driver-specific filter grab */
473 ret = ops->get_rx_ntuple(dev, gstrings.string_set, data);
474 goto copy;
475 }
476
477 /* default ethtool filter grab */
478 i = 0;
479 p = (char *)data;
480 list_for_each_entry(fsc, &dev->ethtool_ntuple_list.list, list) {
481 sprintf(p, "Filter %d:\n", i);
482 p += ETH_GSTRING_LEN;
483 num_strings++;
484
485 switch (fsc->fs.flow_type) {
486 case TCP_V4_FLOW:
487 sprintf(p, "\tFlow Type: TCP\n");
488 p += ETH_GSTRING_LEN;
489 num_strings++;
490 break;
491 case UDP_V4_FLOW:
492 sprintf(p, "\tFlow Type: UDP\n");
493 p += ETH_GSTRING_LEN;
494 num_strings++;
495 break;
496 case SCTP_V4_FLOW:
497 sprintf(p, "\tFlow Type: SCTP\n");
498 p += ETH_GSTRING_LEN;
499 num_strings++;
500 break;
501 case AH_ESP_V4_FLOW:
502 sprintf(p, "\tFlow Type: AH ESP\n");
503 p += ETH_GSTRING_LEN;
504 num_strings++;
505 break;
506 case ESP_V4_FLOW:
507 sprintf(p, "\tFlow Type: ESP\n");
508 p += ETH_GSTRING_LEN;
509 num_strings++;
510 break;
511 case IP_USER_FLOW:
512 sprintf(p, "\tFlow Type: Raw IP\n");
513 p += ETH_GSTRING_LEN;
514 num_strings++;
515 break;
516 case IPV4_FLOW:
517 sprintf(p, "\tFlow Type: IPv4\n");
518 p += ETH_GSTRING_LEN;
519 num_strings++;
520 break;
521 default:
522 sprintf(p, "\tFlow Type: Unknown\n");
523 p += ETH_GSTRING_LEN;
524 num_strings++;
525 goto unknown_filter;
Joe Perchesccbd6a52010-05-14 10:58:26 +0000526 }
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800527
528 /* now the rest of the filters */
529 switch (fsc->fs.flow_type) {
530 case TCP_V4_FLOW:
531 case UDP_V4_FLOW:
532 case SCTP_V4_FLOW:
533 sprintf(p, "\tSrc IP addr: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700534 fsc->fs.h_u.tcp_ip4_spec.ip4src);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800535 p += ETH_GSTRING_LEN;
536 num_strings++;
537 sprintf(p, "\tSrc IP mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700538 fsc->fs.m_u.tcp_ip4_spec.ip4src);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800539 p += ETH_GSTRING_LEN;
540 num_strings++;
541 sprintf(p, "\tDest IP addr: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700542 fsc->fs.h_u.tcp_ip4_spec.ip4dst);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800543 p += ETH_GSTRING_LEN;
544 num_strings++;
545 sprintf(p, "\tDest IP mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700546 fsc->fs.m_u.tcp_ip4_spec.ip4dst);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800547 p += ETH_GSTRING_LEN;
548 num_strings++;
549 sprintf(p, "\tSrc Port: %d, mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700550 fsc->fs.h_u.tcp_ip4_spec.psrc,
551 fsc->fs.m_u.tcp_ip4_spec.psrc);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800552 p += ETH_GSTRING_LEN;
553 num_strings++;
554 sprintf(p, "\tDest Port: %d, mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700555 fsc->fs.h_u.tcp_ip4_spec.pdst,
556 fsc->fs.m_u.tcp_ip4_spec.pdst);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800557 p += ETH_GSTRING_LEN;
558 num_strings++;
559 sprintf(p, "\tTOS: %d, mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700560 fsc->fs.h_u.tcp_ip4_spec.tos,
561 fsc->fs.m_u.tcp_ip4_spec.tos);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800562 p += ETH_GSTRING_LEN;
563 num_strings++;
564 break;
565 case AH_ESP_V4_FLOW:
566 case ESP_V4_FLOW:
567 sprintf(p, "\tSrc IP addr: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700568 fsc->fs.h_u.ah_ip4_spec.ip4src);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800569 p += ETH_GSTRING_LEN;
570 num_strings++;
571 sprintf(p, "\tSrc IP mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700572 fsc->fs.m_u.ah_ip4_spec.ip4src);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800573 p += ETH_GSTRING_LEN;
574 num_strings++;
575 sprintf(p, "\tDest IP addr: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700576 fsc->fs.h_u.ah_ip4_spec.ip4dst);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800577 p += ETH_GSTRING_LEN;
578 num_strings++;
579 sprintf(p, "\tDest IP mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700580 fsc->fs.m_u.ah_ip4_spec.ip4dst);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800581 p += ETH_GSTRING_LEN;
582 num_strings++;
583 sprintf(p, "\tSPI: %d, mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700584 fsc->fs.h_u.ah_ip4_spec.spi,
585 fsc->fs.m_u.ah_ip4_spec.spi);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800586 p += ETH_GSTRING_LEN;
587 num_strings++;
588 sprintf(p, "\tTOS: %d, mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700589 fsc->fs.h_u.ah_ip4_spec.tos,
590 fsc->fs.m_u.ah_ip4_spec.tos);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800591 p += ETH_GSTRING_LEN;
592 num_strings++;
593 break;
594 case IP_USER_FLOW:
595 sprintf(p, "\tSrc IP addr: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700596 fsc->fs.h_u.raw_ip4_spec.ip4src);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800597 p += ETH_GSTRING_LEN;
598 num_strings++;
599 sprintf(p, "\tSrc IP mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700600 fsc->fs.m_u.raw_ip4_spec.ip4src);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800601 p += ETH_GSTRING_LEN;
602 num_strings++;
603 sprintf(p, "\tDest IP addr: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700604 fsc->fs.h_u.raw_ip4_spec.ip4dst);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800605 p += ETH_GSTRING_LEN;
606 num_strings++;
607 sprintf(p, "\tDest IP mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700608 fsc->fs.m_u.raw_ip4_spec.ip4dst);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800609 p += ETH_GSTRING_LEN;
610 num_strings++;
611 break;
612 case IPV4_FLOW:
613 sprintf(p, "\tSrc IP addr: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700614 fsc->fs.h_u.usr_ip4_spec.ip4src);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800615 p += ETH_GSTRING_LEN;
616 num_strings++;
617 sprintf(p, "\tSrc IP mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700618 fsc->fs.m_u.usr_ip4_spec.ip4src);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800619 p += ETH_GSTRING_LEN;
620 num_strings++;
621 sprintf(p, "\tDest IP addr: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700622 fsc->fs.h_u.usr_ip4_spec.ip4dst);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800623 p += ETH_GSTRING_LEN;
624 num_strings++;
625 sprintf(p, "\tDest IP mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700626 fsc->fs.m_u.usr_ip4_spec.ip4dst);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800627 p += ETH_GSTRING_LEN;
628 num_strings++;
629 sprintf(p, "\tL4 bytes: 0x%x, mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700630 fsc->fs.h_u.usr_ip4_spec.l4_4_bytes,
631 fsc->fs.m_u.usr_ip4_spec.l4_4_bytes);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800632 p += ETH_GSTRING_LEN;
633 num_strings++;
634 sprintf(p, "\tTOS: %d, mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700635 fsc->fs.h_u.usr_ip4_spec.tos,
636 fsc->fs.m_u.usr_ip4_spec.tos);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800637 p += ETH_GSTRING_LEN;
638 num_strings++;
639 sprintf(p, "\tIP Version: %d, mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700640 fsc->fs.h_u.usr_ip4_spec.ip_ver,
641 fsc->fs.m_u.usr_ip4_spec.ip_ver);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800642 p += ETH_GSTRING_LEN;
643 num_strings++;
644 sprintf(p, "\tProtocol: %d, mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700645 fsc->fs.h_u.usr_ip4_spec.proto,
646 fsc->fs.m_u.usr_ip4_spec.proto);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800647 p += ETH_GSTRING_LEN;
648 num_strings++;
649 break;
Joe Perchesccbd6a52010-05-14 10:58:26 +0000650 }
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800651 sprintf(p, "\tVLAN: %d, mask: 0x%x\n",
chavey97f8aef2010-04-07 21:54:42 -0700652 fsc->fs.vlan_tag, fsc->fs.vlan_tag_mask);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800653 p += ETH_GSTRING_LEN;
654 num_strings++;
655 sprintf(p, "\tUser-defined: 0x%Lx\n", fsc->fs.data);
656 p += ETH_GSTRING_LEN;
657 num_strings++;
658 sprintf(p, "\tUser-defined mask: 0x%Lx\n", fsc->fs.data_mask);
659 p += ETH_GSTRING_LEN;
660 num_strings++;
661 if (fsc->fs.action == ETHTOOL_RXNTUPLE_ACTION_DROP)
662 sprintf(p, "\tAction: Drop\n");
663 else
664 sprintf(p, "\tAction: Direct to queue %d\n",
chavey97f8aef2010-04-07 21:54:42 -0700665 fsc->fs.action);
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -0800666 p += ETH_GSTRING_LEN;
667 num_strings++;
668unknown_filter:
669 i++;
670 }
671copy:
672 /* indicate to userspace how many strings we actually have */
673 gstrings.len = num_strings;
674 ret = -EFAULT;
675 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
676 goto out;
677 useraddr += sizeof(gstrings);
678 if (copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
679 goto out;
680 ret = 0;
681
682out:
683 kfree(data);
684 return ret;
685}
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
688{
689 struct ethtool_regs regs;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700690 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 void *regbuf;
692 int reglen, ret;
693
694 if (!ops->get_regs || !ops->get_regs_len)
695 return -EOPNOTSUPP;
696
697 if (copy_from_user(&regs, useraddr, sizeof(regs)))
698 return -EFAULT;
699
700 reglen = ops->get_regs_len(dev);
701 if (regs.len > reglen)
702 regs.len = reglen;
703
704 regbuf = kmalloc(reglen, GFP_USER);
705 if (!regbuf)
706 return -ENOMEM;
707
708 ops->get_regs(dev, &regs, regbuf);
709
710 ret = -EFAULT;
711 if (copy_to_user(useraddr, &regs, sizeof(regs)))
712 goto out;
713 useraddr += offsetof(struct ethtool_regs, data);
714 if (copy_to_user(useraddr, regbuf, regs.len))
715 goto out;
716 ret = 0;
717
718 out:
719 kfree(regbuf);
720 return ret;
721}
722
Ben Hutchingsd73d3a82009-10-05 10:59:58 +0000723static int ethtool_reset(struct net_device *dev, char __user *useraddr)
724{
725 struct ethtool_value reset;
726 int ret;
727
728 if (!dev->ethtool_ops->reset)
729 return -EOPNOTSUPP;
730
731 if (copy_from_user(&reset, useraddr, sizeof(reset)))
732 return -EFAULT;
733
734 ret = dev->ethtool_ops->reset(dev, &reset.data);
735 if (ret)
736 return ret;
737
738 if (copy_to_user(useraddr, &reset, sizeof(reset)))
739 return -EFAULT;
740 return 0;
741}
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
744{
Roland Dreier8e557422010-02-11 12:14:23 -0800745 struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 if (!dev->ethtool_ops->get_wol)
748 return -EOPNOTSUPP;
749
750 dev->ethtool_ops->get_wol(dev, &wol);
751
752 if (copy_to_user(useraddr, &wol, sizeof(wol)))
753 return -EFAULT;
754 return 0;
755}
756
757static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
758{
759 struct ethtool_wolinfo wol;
760
761 if (!dev->ethtool_ops->set_wol)
762 return -EOPNOTSUPP;
763
764 if (copy_from_user(&wol, useraddr, sizeof(wol)))
765 return -EFAULT;
766
767 return dev->ethtool_ops->set_wol(dev, &wol);
768}
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770static int ethtool_nway_reset(struct net_device *dev)
771{
772 if (!dev->ethtool_ops->nway_reset)
773 return -EOPNOTSUPP;
774
775 return dev->ethtool_ops->nway_reset(dev);
776}
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778static int ethtool_get_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 Bainesb131dd52008-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 Bainesb131dd52008-04-15 19:24:17 -0700785 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if (!ops->get_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 Bainesb131dd52008-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 Bainesb131dd52008-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 Bainesb131dd52008-04-15 19:24:17 -0700809 ret = ops->get_eeprom(dev, &eeprom, data);
810 if (ret)
811 break;
812 if (copy_to_user(userbuf, data, eeprom.len)) {
813 ret = -EFAULT;
814 break;
815 }
816 userbuf += eeprom.len;
817 eeprom.offset += eeprom.len;
818 bytes_remaining -= eeprom.len;
819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Mandeep Singh Bainesc5835df2008-04-24 20:55:56 -0700821 eeprom.len = userbuf - (useraddr + sizeof(eeprom));
822 eeprom.offset -= eeprom.len;
823 if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
824 ret = -EFAULT;
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 kfree(data);
827 return ret;
828}
829
830static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
831{
832 struct ethtool_eeprom eeprom;
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700833 const struct ethtool_ops *ops = dev->ethtool_ops;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700834 void __user *userbuf = useraddr + sizeof(eeprom);
835 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 u8 *data;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700837 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 if (!ops->set_eeprom || !ops->get_eeprom_len)
840 return -EOPNOTSUPP;
841
842 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
843 return -EFAULT;
844
845 /* Check for wrap and zero */
846 if (eeprom.offset + eeprom.len <= eeprom.offset)
847 return -EINVAL;
848
849 /* Check for exceeding total eeprom len */
850 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
851 return -EINVAL;
852
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700853 data = kmalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (!data)
855 return -ENOMEM;
856
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700857 bytes_remaining = eeprom.len;
858 while (bytes_remaining > 0) {
859 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -0700861 if (copy_from_user(data, userbuf, eeprom.len)) {
862 ret = -EFAULT;
863 break;
864 }
865 ret = ops->set_eeprom(dev, &eeprom, data);
866 if (ret)
867 break;
868 userbuf += eeprom.len;
869 eeprom.offset += eeprom.len;
870 bytes_remaining -= eeprom.len;
871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 kfree(data);
874 return ret;
875}
876
chavey97f8aef2010-04-07 21:54:42 -0700877static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
878 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Roland Dreier8e557422010-02-11 12:14:23 -0800880 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 if (!dev->ethtool_ops->get_coalesce)
883 return -EOPNOTSUPP;
884
885 dev->ethtool_ops->get_coalesce(dev, &coalesce);
886
887 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
888 return -EFAULT;
889 return 0;
890}
891
chavey97f8aef2010-04-07 21:54:42 -0700892static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
893 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
895 struct ethtool_coalesce coalesce;
896
David S. Millerfa04ae52005-06-06 15:07:19 -0700897 if (!dev->ethtool_ops->set_coalesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return -EOPNOTSUPP;
899
900 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
901 return -EFAULT;
902
903 return dev->ethtool_ops->set_coalesce(dev, &coalesce);
904}
905
906static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
907{
Roland Dreier8e557422010-02-11 12:14:23 -0800908 struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 if (!dev->ethtool_ops->get_ringparam)
911 return -EOPNOTSUPP;
912
913 dev->ethtool_ops->get_ringparam(dev, &ringparam);
914
915 if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
916 return -EFAULT;
917 return 0;
918}
919
920static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
921{
922 struct ethtool_ringparam ringparam;
923
924 if (!dev->ethtool_ops->set_ringparam)
925 return -EOPNOTSUPP;
926
927 if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
928 return -EFAULT;
929
930 return dev->ethtool_ops->set_ringparam(dev, &ringparam);
931}
932
933static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
934{
935 struct ethtool_pauseparam pauseparam = { ETHTOOL_GPAUSEPARAM };
936
937 if (!dev->ethtool_ops->get_pauseparam)
938 return -EOPNOTSUPP;
939
940 dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
941
942 if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
943 return -EFAULT;
944 return 0;
945}
946
947static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
948{
949 struct ethtool_pauseparam pauseparam;
950
Jeff Garzike1b90c42006-07-17 12:54:40 -0400951 if (!dev->ethtool_ops->set_pauseparam)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 return -EOPNOTSUPP;
953
954 if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
955 return -EFAULT;
956
957 return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
958}
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960static int __ethtool_set_sg(struct net_device *dev, u32 data)
961{
962 int err;
963
964 if (!data && dev->ethtool_ops->set_tso) {
965 err = dev->ethtool_ops->set_tso(dev, 0);
966 if (err)
967 return err;
968 }
969
Ananda Rajue89e9cf2005-10-18 15:46:41 -0700970 if (!data && dev->ethtool_ops->set_ufo) {
971 err = dev->ethtool_ops->set_ufo(dev, 0);
972 if (err)
973 return err;
974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 return dev->ethtool_ops->set_sg(dev, data);
976}
977
978static int ethtool_set_tx_csum(struct net_device *dev, char __user *useraddr)
979{
980 struct ethtool_value edata;
981 int err;
982
983 if (!dev->ethtool_ops->set_tx_csum)
984 return -EOPNOTSUPP;
985
986 if (copy_from_user(&edata, useraddr, sizeof(edata)))
987 return -EFAULT;
988
989 if (!edata.data && dev->ethtool_ops->set_sg) {
990 err = __ethtool_set_sg(dev, 0);
991 if (err)
992 return err;
993 }
994
995 return dev->ethtool_ops->set_tx_csum(dev, edata.data);
996}
chavey97f8aef2010-04-07 21:54:42 -0700997EXPORT_SYMBOL(ethtool_op_set_tx_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Herbert Xub240a0e2008-12-15 23:44:31 -0800999static int ethtool_set_rx_csum(struct net_device *dev, char __user *useraddr)
1000{
1001 struct ethtool_value edata;
1002
1003 if (!dev->ethtool_ops->set_rx_csum)
1004 return -EOPNOTSUPP;
1005
1006 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1007 return -EFAULT;
1008
1009 if (!edata.data && dev->ethtool_ops->set_sg)
1010 dev->features &= ~NETIF_F_GRO;
1011
1012 return dev->ethtool_ops->set_rx_csum(dev, edata.data);
1013}
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015static int ethtool_set_sg(struct net_device *dev, char __user *useraddr)
1016{
1017 struct ethtool_value edata;
1018
1019 if (!dev->ethtool_ops->set_sg)
1020 return -EOPNOTSUPP;
1021
1022 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1023 return -EFAULT;
1024
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001025 if (edata.data &&
Herbert Xu8648b302006-06-17 22:06:05 -07001026 !(dev->features & NETIF_F_ALL_CSUM))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 return -EINVAL;
1028
1029 return __ethtool_set_sg(dev, edata.data);
1030}
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032static int ethtool_set_tso(struct net_device *dev, char __user *useraddr)
1033{
1034 struct ethtool_value edata;
1035
1036 if (!dev->ethtool_ops->set_tso)
1037 return -EOPNOTSUPP;
1038
1039 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1040 return -EFAULT;
1041
1042 if (edata.data && !(dev->features & NETIF_F_SG))
1043 return -EINVAL;
1044
1045 return dev->ethtool_ops->set_tso(dev, edata.data);
1046}
1047
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001048static int ethtool_set_ufo(struct net_device *dev, char __user *useraddr)
1049{
1050 struct ethtool_value edata;
1051
1052 if (!dev->ethtool_ops->set_ufo)
1053 return -EOPNOTSUPP;
1054 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1055 return -EFAULT;
1056 if (edata.data && !(dev->features & NETIF_F_SG))
1057 return -EINVAL;
1058 if (edata.data && !(dev->features & NETIF_F_HW_CSUM))
1059 return -EINVAL;
1060 return dev->ethtool_ops->set_ufo(dev, edata.data);
1061}
1062
Herbert Xu37c31852006-06-22 03:07:29 -07001063static int ethtool_get_gso(struct net_device *dev, char __user *useraddr)
1064{
1065 struct ethtool_value edata = { ETHTOOL_GGSO };
1066
1067 edata.data = dev->features & NETIF_F_GSO;
1068 if (copy_to_user(useraddr, &edata, sizeof(edata)))
chavey97f8aef2010-04-07 21:54:42 -07001069 return -EFAULT;
Herbert Xu37c31852006-06-22 03:07:29 -07001070 return 0;
1071}
1072
1073static int ethtool_set_gso(struct net_device *dev, char __user *useraddr)
1074{
1075 struct ethtool_value edata;
1076
1077 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1078 return -EFAULT;
1079 if (edata.data)
1080 dev->features |= NETIF_F_GSO;
1081 else
1082 dev->features &= ~NETIF_F_GSO;
1083 return 0;
1084}
1085
Herbert Xub240a0e2008-12-15 23:44:31 -08001086static int ethtool_get_gro(struct net_device *dev, char __user *useraddr)
1087{
1088 struct ethtool_value edata = { ETHTOOL_GGRO };
1089
1090 edata.data = dev->features & NETIF_F_GRO;
1091 if (copy_to_user(useraddr, &edata, sizeof(edata)))
chavey97f8aef2010-04-07 21:54:42 -07001092 return -EFAULT;
Herbert Xub240a0e2008-12-15 23:44:31 -08001093 return 0;
1094}
1095
1096static int ethtool_set_gro(struct net_device *dev, char __user *useraddr)
1097{
1098 struct ethtool_value edata;
1099
1100 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1101 return -EFAULT;
1102
1103 if (edata.data) {
1104 if (!dev->ethtool_ops->get_rx_csum ||
1105 !dev->ethtool_ops->get_rx_csum(dev))
1106 return -EINVAL;
1107 dev->features |= NETIF_F_GRO;
1108 } else
1109 dev->features &= ~NETIF_F_GRO;
1110
1111 return 0;
1112}
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
1115{
1116 struct ethtool_test test;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001117 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -07001119 int ret, test_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001121 if (!ops->self_test || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -07001122 return -EOPNOTSUPP;
1123
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001124 test_len = ops->get_sset_count(dev, ETH_SS_TEST);
Jeff Garzikff03d492007-08-15 16:01:08 -07001125 if (test_len < 0)
1126 return test_len;
1127 WARN_ON(test_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 if (copy_from_user(&test, useraddr, sizeof(test)))
1130 return -EFAULT;
1131
Jeff Garzikff03d492007-08-15 16:01:08 -07001132 test.len = test_len;
1133 data = kmalloc(test_len * sizeof(u64), GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (!data)
1135 return -ENOMEM;
1136
1137 ops->self_test(dev, &test, data);
1138
1139 ret = -EFAULT;
1140 if (copy_to_user(useraddr, &test, sizeof(test)))
1141 goto out;
1142 useraddr += sizeof(test);
1143 if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
1144 goto out;
1145 ret = 0;
1146
1147 out:
1148 kfree(data);
1149 return ret;
1150}
1151
1152static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
1153{
1154 struct ethtool_gstrings gstrings;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001155 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 u8 *data;
1157 int ret;
1158
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001159 if (!ops->get_strings || !ops->get_sset_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 return -EOPNOTSUPP;
1161
1162 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
1163 return -EFAULT;
1164
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001165 ret = ops->get_sset_count(dev, gstrings.string_set);
1166 if (ret < 0)
1167 return ret;
Jeff Garzikff03d492007-08-15 16:01:08 -07001168
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001169 gstrings.len = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
1171 data = kmalloc(gstrings.len * ETH_GSTRING_LEN, GFP_USER);
1172 if (!data)
1173 return -ENOMEM;
1174
1175 ops->get_strings(dev, gstrings.string_set, data);
1176
1177 ret = -EFAULT;
1178 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
1179 goto out;
1180 useraddr += sizeof(gstrings);
1181 if (copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
1182 goto out;
1183 ret = 0;
1184
1185 out:
1186 kfree(data);
1187 return ret;
1188}
1189
1190static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
1191{
1192 struct ethtool_value id;
1193
1194 if (!dev->ethtool_ops->phys_id)
1195 return -EOPNOTSUPP;
1196
1197 if (copy_from_user(&id, useraddr, sizeof(id)))
1198 return -EFAULT;
1199
1200 return dev->ethtool_ops->phys_id(dev, id.data);
1201}
1202
1203static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
1204{
1205 struct ethtool_stats stats;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001206 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -07001208 int ret, n_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001210 if (!ops->get_ethtool_stats || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -07001211 return -EOPNOTSUPP;
1212
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001213 n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
Jeff Garzikff03d492007-08-15 16:01:08 -07001214 if (n_stats < 0)
1215 return n_stats;
1216 WARN_ON(n_stats == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1219 return -EFAULT;
1220
Jeff Garzikff03d492007-08-15 16:01:08 -07001221 stats.n_stats = n_stats;
1222 data = kmalloc(n_stats * sizeof(u64), GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 if (!data)
1224 return -ENOMEM;
1225
1226 ops->get_ethtool_stats(dev, &stats, data);
1227
1228 ret = -EFAULT;
1229 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1230 goto out;
1231 useraddr += sizeof(stats);
1232 if (copy_to_user(useraddr, data, stats.n_stats * sizeof(u64)))
1233 goto out;
1234 ret = 0;
1235
1236 out:
1237 kfree(data);
1238 return ret;
1239}
1240
viro@ftp.linux.org.uk0bf0519d2005-09-05 03:26:18 +01001241static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
Jon Wetzela6f9a702005-08-20 17:15:54 -07001242{
1243 struct ethtool_perm_addr epaddr;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001244
Matthew Wilcox313674a2007-07-31 14:00:29 -07001245 if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
Jon Wetzela6f9a702005-08-20 17:15:54 -07001246 return -EFAULT;
1247
Matthew Wilcox313674a2007-07-31 14:00:29 -07001248 if (epaddr.size < dev->addr_len)
1249 return -ETOOSMALL;
1250 epaddr.size = dev->addr_len;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001251
Jon Wetzela6f9a702005-08-20 17:15:54 -07001252 if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
Matthew Wilcox313674a2007-07-31 14:00:29 -07001253 return -EFAULT;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001254 useraddr += sizeof(epaddr);
Matthew Wilcox313674a2007-07-31 14:00:29 -07001255 if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
1256 return -EFAULT;
1257 return 0;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001258}
1259
Jeff Garzik13c99b22007-08-15 16:01:56 -07001260static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
1261 u32 cmd, u32 (*actor)(struct net_device *))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001262{
Roland Dreier8e557422010-02-11 12:14:23 -08001263 struct ethtool_value edata = { .cmd = cmd };
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001264
Jeff Garzik13c99b22007-08-15 16:01:56 -07001265 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001266 return -EOPNOTSUPP;
1267
Jeff Garzik13c99b22007-08-15 16:01:56 -07001268 edata.data = actor(dev);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001269
1270 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1271 return -EFAULT;
1272 return 0;
1273}
1274
Jeff Garzik13c99b22007-08-15 16:01:56 -07001275static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
1276 void (*actor)(struct net_device *, u32))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001277{
1278 struct ethtool_value edata;
1279
Jeff Garzik13c99b22007-08-15 16:01:56 -07001280 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001281 return -EOPNOTSUPP;
1282
1283 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1284 return -EFAULT;
1285
Jeff Garzik13c99b22007-08-15 16:01:56 -07001286 actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07001287 return 0;
1288}
1289
Jeff Garzik13c99b22007-08-15 16:01:56 -07001290static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
1291 int (*actor)(struct net_device *, u32))
Jeff Garzik339bf022007-08-15 16:01:32 -07001292{
1293 struct ethtool_value edata;
1294
Jeff Garzik13c99b22007-08-15 16:01:56 -07001295 if (!actor)
Jeff Garzik339bf022007-08-15 16:01:32 -07001296 return -EOPNOTSUPP;
1297
1298 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1299 return -EFAULT;
1300
Jeff Garzik13c99b22007-08-15 16:01:56 -07001301 return actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07001302}
1303
chavey97f8aef2010-04-07 21:54:42 -07001304static noinline_for_stack int ethtool_flash_device(struct net_device *dev,
1305 char __user *useraddr)
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00001306{
1307 struct ethtool_flash efl;
1308
1309 if (copy_from_user(&efl, useraddr, sizeof(efl)))
1310 return -EFAULT;
1311
1312 if (!dev->ethtool_ops->flash_device)
1313 return -EOPNOTSUPP;
1314
1315 return dev->ethtool_ops->flash_device(dev, &efl);
1316}
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318/* The main entry point in this file. Called from net/core/dev.c */
1319
Eric W. Biederman881d9662007-09-17 11:56:21 -07001320int dev_ethtool(struct net *net, struct ifreq *ifr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001322 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 void __user *useraddr = ifr->ifr_data;
1324 u32 ethcmd;
1325 int rc;
Stephen Hemminger81e81572005-05-29 14:14:35 -07001326 unsigned long old_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if (!dev || !netif_device_present(dev))
1329 return -ENODEV;
1330
1331 if (!dev->ethtool_ops)
Matthew Wilcox61a44b92007-07-31 14:00:02 -07001332 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
chavey97f8aef2010-04-07 21:54:42 -07001334 if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 return -EFAULT;
1336
Stephen Hemminger75f31232006-09-28 15:13:37 -07001337 /* Allow some commands to be done by anyone */
chavey97f8aef2010-04-07 21:54:42 -07001338 switch (ethcmd) {
Stephen Hemminger75f31232006-09-28 15:13:37 -07001339 case ETHTOOL_GDRVINFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001340 case ETHTOOL_GMSGLVL:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001341 case ETHTOOL_GCOALESCE:
1342 case ETHTOOL_GRINGPARAM:
1343 case ETHTOOL_GPAUSEPARAM:
1344 case ETHTOOL_GRXCSUM:
1345 case ETHTOOL_GTXCSUM:
1346 case ETHTOOL_GSG:
1347 case ETHTOOL_GSTRINGS:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001348 case ETHTOOL_GTSO:
1349 case ETHTOOL_GPERMADDR:
1350 case ETHTOOL_GUFO:
1351 case ETHTOOL_GGSO:
stephen hemminger1cab8192010-02-11 13:48:29 +00001352 case ETHTOOL_GGRO:
Jeff Garzik339bf022007-08-15 16:01:32 -07001353 case ETHTOOL_GFLAGS:
1354 case ETHTOOL_GPFLAGS:
Santwona Behera0853ad62008-07-02 03:47:41 -07001355 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08001356 case ETHTOOL_GRXRINGS:
1357 case ETHTOOL_GRXCLSRLCNT:
1358 case ETHTOOL_GRXCLSRULE:
1359 case ETHTOOL_GRXCLSRLALL:
Stephen Hemminger75f31232006-09-28 15:13:37 -07001360 break;
1361 default:
1362 if (!capable(CAP_NET_ADMIN))
1363 return -EPERM;
1364 }
1365
chavey97f8aef2010-04-07 21:54:42 -07001366 if (dev->ethtool_ops->begin) {
1367 rc = dev->ethtool_ops->begin(dev);
1368 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return rc;
chavey97f8aef2010-04-07 21:54:42 -07001370 }
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001371 old_features = dev->features;
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 switch (ethcmd) {
1374 case ETHTOOL_GSET:
1375 rc = ethtool_get_settings(dev, useraddr);
1376 break;
1377 case ETHTOOL_SSET:
1378 rc = ethtool_set_settings(dev, useraddr);
1379 break;
1380 case ETHTOOL_GDRVINFO:
1381 rc = ethtool_get_drvinfo(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 break;
1383 case ETHTOOL_GREGS:
1384 rc = ethtool_get_regs(dev, useraddr);
1385 break;
1386 case ETHTOOL_GWOL:
1387 rc = ethtool_get_wol(dev, useraddr);
1388 break;
1389 case ETHTOOL_SWOL:
1390 rc = ethtool_set_wol(dev, useraddr);
1391 break;
1392 case ETHTOOL_GMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001393 rc = ethtool_get_value(dev, useraddr, ethcmd,
1394 dev->ethtool_ops->get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 break;
1396 case ETHTOOL_SMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001397 rc = ethtool_set_value_void(dev, useraddr,
1398 dev->ethtool_ops->set_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 break;
1400 case ETHTOOL_NWAY_RST:
1401 rc = ethtool_nway_reset(dev);
1402 break;
1403 case ETHTOOL_GLINK:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001404 rc = ethtool_get_value(dev, useraddr, ethcmd,
1405 dev->ethtool_ops->get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 break;
1407 case ETHTOOL_GEEPROM:
1408 rc = ethtool_get_eeprom(dev, useraddr);
1409 break;
1410 case ETHTOOL_SEEPROM:
1411 rc = ethtool_set_eeprom(dev, useraddr);
1412 break;
1413 case ETHTOOL_GCOALESCE:
1414 rc = ethtool_get_coalesce(dev, useraddr);
1415 break;
1416 case ETHTOOL_SCOALESCE:
1417 rc = ethtool_set_coalesce(dev, useraddr);
1418 break;
1419 case ETHTOOL_GRINGPARAM:
1420 rc = ethtool_get_ringparam(dev, useraddr);
1421 break;
1422 case ETHTOOL_SRINGPARAM:
1423 rc = ethtool_set_ringparam(dev, useraddr);
1424 break;
1425 case ETHTOOL_GPAUSEPARAM:
1426 rc = ethtool_get_pauseparam(dev, useraddr);
1427 break;
1428 case ETHTOOL_SPAUSEPARAM:
1429 rc = ethtool_set_pauseparam(dev, useraddr);
1430 break;
1431 case ETHTOOL_GRXCSUM:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001432 rc = ethtool_get_value(dev, useraddr, ethcmd,
Sridhar Samudrala1896e612009-07-22 13:38:22 +00001433 (dev->ethtool_ops->get_rx_csum ?
1434 dev->ethtool_ops->get_rx_csum :
1435 ethtool_op_get_rx_csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 break;
1437 case ETHTOOL_SRXCSUM:
Herbert Xub240a0e2008-12-15 23:44:31 -08001438 rc = ethtool_set_rx_csum(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 break;
1440 case ETHTOOL_GTXCSUM:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001441 rc = ethtool_get_value(dev, useraddr, ethcmd,
Jeff Garzik88d3aaf2007-09-15 14:41:06 -07001442 (dev->ethtool_ops->get_tx_csum ?
1443 dev->ethtool_ops->get_tx_csum :
1444 ethtool_op_get_tx_csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 break;
1446 case ETHTOOL_STXCSUM:
1447 rc = ethtool_set_tx_csum(dev, useraddr);
1448 break;
1449 case ETHTOOL_GSG:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001450 rc = ethtool_get_value(dev, useraddr, ethcmd,
Jeff Garzik88d3aaf2007-09-15 14:41:06 -07001451 (dev->ethtool_ops->get_sg ?
1452 dev->ethtool_ops->get_sg :
1453 ethtool_op_get_sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 break;
1455 case ETHTOOL_SSG:
1456 rc = ethtool_set_sg(dev, useraddr);
1457 break;
1458 case ETHTOOL_GTSO:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001459 rc = ethtool_get_value(dev, useraddr, ethcmd,
Jeff Garzik88d3aaf2007-09-15 14:41:06 -07001460 (dev->ethtool_ops->get_tso ?
1461 dev->ethtool_ops->get_tso :
1462 ethtool_op_get_tso));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 break;
1464 case ETHTOOL_STSO:
1465 rc = ethtool_set_tso(dev, useraddr);
1466 break;
1467 case ETHTOOL_TEST:
1468 rc = ethtool_self_test(dev, useraddr);
1469 break;
1470 case ETHTOOL_GSTRINGS:
1471 rc = ethtool_get_strings(dev, useraddr);
1472 break;
1473 case ETHTOOL_PHYS_ID:
1474 rc = ethtool_phys_id(dev, useraddr);
1475 break;
1476 case ETHTOOL_GSTATS:
1477 rc = ethtool_get_stats(dev, useraddr);
1478 break;
Jon Wetzela6f9a702005-08-20 17:15:54 -07001479 case ETHTOOL_GPERMADDR:
1480 rc = ethtool_get_perm_addr(dev, useraddr);
1481 break;
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001482 case ETHTOOL_GUFO:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001483 rc = ethtool_get_value(dev, useraddr, ethcmd,
Jeff Garzik88d3aaf2007-09-15 14:41:06 -07001484 (dev->ethtool_ops->get_ufo ?
1485 dev->ethtool_ops->get_ufo :
1486 ethtool_op_get_ufo));
Ananda Rajue89e9cf2005-10-18 15:46:41 -07001487 break;
1488 case ETHTOOL_SUFO:
1489 rc = ethtool_set_ufo(dev, useraddr);
1490 break;
Herbert Xu37c31852006-06-22 03:07:29 -07001491 case ETHTOOL_GGSO:
1492 rc = ethtool_get_gso(dev, useraddr);
1493 break;
1494 case ETHTOOL_SGSO:
1495 rc = ethtool_set_gso(dev, useraddr);
1496 break;
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001497 case ETHTOOL_GFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001498 rc = ethtool_get_value(dev, useraddr, ethcmd,
Sridhar Samudrala1896e612009-07-22 13:38:22 +00001499 (dev->ethtool_ops->get_flags ?
1500 dev->ethtool_ops->get_flags :
1501 ethtool_op_get_flags));
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001502 break;
1503 case ETHTOOL_SFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001504 rc = ethtool_set_value(dev, useraddr,
1505 dev->ethtool_ops->set_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07001506 break;
Jeff Garzik339bf022007-08-15 16:01:32 -07001507 case ETHTOOL_GPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001508 rc = ethtool_get_value(dev, useraddr, ethcmd,
1509 dev->ethtool_ops->get_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07001510 break;
1511 case ETHTOOL_SPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07001512 rc = ethtool_set_value(dev, useraddr,
1513 dev->ethtool_ops->set_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07001514 break;
Santwona Behera0853ad62008-07-02 03:47:41 -07001515 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08001516 case ETHTOOL_GRXRINGS:
1517 case ETHTOOL_GRXCLSRLCNT:
1518 case ETHTOOL_GRXCLSRULE:
1519 case ETHTOOL_GRXCLSRLALL:
1520 rc = ethtool_get_rxnfc(dev, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07001521 break;
1522 case ETHTOOL_SRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08001523 case ETHTOOL_SRXCLSRLDEL:
1524 case ETHTOOL_SRXCLSRLINS:
1525 rc = ethtool_set_rxnfc(dev, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07001526 break;
Herbert Xub240a0e2008-12-15 23:44:31 -08001527 case ETHTOOL_GGRO:
1528 rc = ethtool_get_gro(dev, useraddr);
1529 break;
1530 case ETHTOOL_SGRO:
1531 rc = ethtool_set_gro(dev, useraddr);
1532 break;
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00001533 case ETHTOOL_FLASHDEV:
1534 rc = ethtool_flash_device(dev, useraddr);
1535 break;
Ben Hutchingsd73d3a82009-10-05 10:59:58 +00001536 case ETHTOOL_RESET:
1537 rc = ethtool_reset(dev, useraddr);
1538 break;
Peter P Waskiewicz Jr15682bc2010-02-10 20:03:05 -08001539 case ETHTOOL_SRXNTUPLE:
1540 rc = ethtool_set_rx_ntuple(dev, useraddr);
1541 break;
1542 case ETHTOOL_GRXNTUPLE:
1543 rc = ethtool_get_rx_ntuple(dev, useraddr);
1544 break;
Jeff Garzik723b2f52010-03-03 22:51:50 +00001545 case ETHTOOL_GSSET_INFO:
1546 rc = ethtool_get_sset_info(dev, useraddr);
1547 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 default:
Matthew Wilcox61a44b92007-07-31 14:00:02 -07001549 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001551
Stephen Hemmingere71a4782007-04-10 20:10:33 -07001552 if (dev->ethtool_ops->complete)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 dev->ethtool_ops->complete(dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001554
1555 if (old_features != dev->features)
1556 netdev_features_change(dev);
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559}