net: vlan: rename NETIF_F_HW_VLAN_* feature flags to NETIF_F_HW_VLAN_CTAG_*
[deliverable/linux.git] / net / core / ethtool.c
CommitLineData
1da177e4
LT
1/*
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
61a44b9c 6 * the information ethtool needs.
1da177e4 7 *
61a44b9c
MW
8 * 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.
1da177e4
LT
12 */
13
14#include <linux/module.h>
15#include <linux/types.h>
4fc268d2 16#include <linux/capability.h>
1da177e4
LT
17#include <linux/errno.h>
18#include <linux/ethtool.h>
19#include <linux/netdevice.h>
c8f3a8c3
RC
20#include <linux/net_tstamp.h>
21#include <linux/phy.h>
d17792eb 22#include <linux/bitops.h>
97f8aefb 23#include <linux/uaccess.h>
73da16c2 24#include <linux/vmalloc.h>
5a0e3ad6 25#include <linux/slab.h>
68f512f2
BH
26#include <linux/rtnetlink.h>
27#include <linux/sched.h>
1da177e4 28
4ec93edb 29/*
1da177e4
LT
30 * Some useful ethtool_ops methods that're device independent.
31 * If we find that all drivers want to do the same thing here,
32 * we can turn these into dev_() function calls.
33 */
34
35u32 ethtool_op_get_link(struct net_device *dev)
36{
37 return netif_carrier_ok(dev) ? 1 : 0;
38}
97f8aefb 39EXPORT_SYMBOL(ethtool_op_get_link);
1da177e4 40
02eacbd0
RC
41int ethtool_op_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
42{
43 info->so_timestamping =
44 SOF_TIMESTAMPING_TX_SOFTWARE |
45 SOF_TIMESTAMPING_RX_SOFTWARE |
46 SOF_TIMESTAMPING_SOFTWARE;
47 info->phc_index = -1;
48 return 0;
49}
50EXPORT_SYMBOL(ethtool_op_get_ts_info);
51
1da177e4
LT
52/* Handlers for each ethtool command */
53
475414f6 54#define ETHTOOL_DEV_FEATURE_WORDS ((NETDEV_FEATURE_COUNT + 31) / 32)
5455c699 55
9d921549
MM
56static const char netdev_features_strings[NETDEV_FEATURE_COUNT][ETH_GSTRING_LEN] = {
57 [NETIF_F_SG_BIT] = "tx-scatter-gather",
58 [NETIF_F_IP_CSUM_BIT] = "tx-checksum-ipv4",
9d921549
MM
59 [NETIF_F_HW_CSUM_BIT] = "tx-checksum-ip-generic",
60 [NETIF_F_IPV6_CSUM_BIT] = "tx-checksum-ipv6",
61 [NETIF_F_HIGHDMA_BIT] = "highdma",
62 [NETIF_F_FRAGLIST_BIT] = "tx-scatter-gather-fraglist",
f646968f 63 [NETIF_F_HW_VLAN_CTAG_TX_BIT] = "tx-vlan-ctag-hw-insert",
9d921549 64
f646968f
PM
65 [NETIF_F_HW_VLAN_CTAG_RX_BIT] = "rx-vlan-ctag-hw-parse",
66 [NETIF_F_HW_VLAN_CTAG_FILTER_BIT] = "rx-vlan-ctag-filter",
9d921549
MM
67 [NETIF_F_VLAN_CHALLENGED_BIT] = "vlan-challenged",
68 [NETIF_F_GSO_BIT] = "tx-generic-segmentation",
69 [NETIF_F_LLTX_BIT] = "tx-lockless",
70 [NETIF_F_NETNS_LOCAL_BIT] = "netns-local",
71 [NETIF_F_GRO_BIT] = "rx-gro",
72 [NETIF_F_LRO_BIT] = "rx-lro",
73
74 [NETIF_F_TSO_BIT] = "tx-tcp-segmentation",
75 [NETIF_F_UFO_BIT] = "tx-udp-fragmentation",
76 [NETIF_F_GSO_ROBUST_BIT] = "tx-gso-robust",
77 [NETIF_F_TSO_ECN_BIT] = "tx-tcp-ecn-segmentation",
78 [NETIF_F_TSO6_BIT] = "tx-tcp6-segmentation",
79 [NETIF_F_FSO_BIT] = "tx-fcoe-segmentation",
68c33163 80 [NETIF_F_GSO_GRE_BIT] = "tx-gre-segmentation",
73136267 81 [NETIF_F_GSO_UDP_TUNNEL_BIT] = "tx-udp_tnl-segmentation",
9d921549
MM
82
83 [NETIF_F_FCOE_CRC_BIT] = "tx-checksum-fcoe-crc",
84 [NETIF_F_SCTP_CSUM_BIT] = "tx-checksum-sctp",
85 [NETIF_F_FCOE_MTU_BIT] = "fcoe-mtu",
86 [NETIF_F_NTUPLE_BIT] = "rx-ntuple-filter",
87 [NETIF_F_RXHASH_BIT] = "rx-hashing",
88 [NETIF_F_RXCSUM_BIT] = "rx-checksum",
89 [NETIF_F_NOCACHE_COPY_BIT] = "tx-nocache-copy",
90 [NETIF_F_LOOPBACK_BIT] = "loopback",
36eabda3 91 [NETIF_F_RXFCS_BIT] = "rx-fcs",
5e0c03c8 92 [NETIF_F_RXALL_BIT] = "rx-all",
9d921549
MM
93};
94
5455c699
MM
95static int ethtool_get_features(struct net_device *dev, void __user *useraddr)
96{
97 struct ethtool_gfeatures cmd = {
98 .cmd = ETHTOOL_GFEATURES,
99 .size = ETHTOOL_DEV_FEATURE_WORDS,
100 };
475414f6 101 struct ethtool_get_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
5455c699
MM
102 u32 __user *sizeaddr;
103 u32 copy_size;
475414f6
MM
104 int i;
105
106 /* in case feature bits run out again */
09da71b1 107 BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS * sizeof(u32) > sizeof(netdev_features_t));
475414f6
MM
108
109 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
09da71b1
MM
110 features[i].available = (u32)(dev->hw_features >> (32 * i));
111 features[i].requested = (u32)(dev->wanted_features >> (32 * i));
112 features[i].active = (u32)(dev->features >> (32 * i));
113 features[i].never_changed =
114 (u32)(NETIF_F_NEVER_CHANGE >> (32 * i));
475414f6 115 }
5455c699
MM
116
117 sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size);
118 if (get_user(copy_size, sizeaddr))
119 return -EFAULT;
120
121 if (copy_size > ETHTOOL_DEV_FEATURE_WORDS)
122 copy_size = ETHTOOL_DEV_FEATURE_WORDS;
123
124 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
125 return -EFAULT;
126 useraddr += sizeof(cmd);
127 if (copy_to_user(useraddr, features, copy_size * sizeof(*features)))
128 return -EFAULT;
129
130 return 0;
131}
132
133static int ethtool_set_features(struct net_device *dev, void __user *useraddr)
134{
135 struct ethtool_sfeatures cmd;
136 struct ethtool_set_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
475414f6
MM
137 netdev_features_t wanted = 0, valid = 0;
138 int i, ret = 0;
5455c699
MM
139
140 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
141 return -EFAULT;
142 useraddr += sizeof(cmd);
143
144 if (cmd.size != ETHTOOL_DEV_FEATURE_WORDS)
145 return -EINVAL;
146
147 if (copy_from_user(features, useraddr, sizeof(features)))
148 return -EFAULT;
149
475414f6 150 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
09da71b1
MM
151 valid |= (netdev_features_t)features[i].valid << (32 * i);
152 wanted |= (netdev_features_t)features[i].requested << (32 * i);
475414f6
MM
153 }
154
155 if (valid & ~NETIF_F_ETHTOOL_BITS)
5455c699
MM
156 return -EINVAL;
157
475414f6
MM
158 if (valid & ~dev->hw_features) {
159 valid &= dev->hw_features;
5455c699
MM
160 ret |= ETHTOOL_F_UNSUPPORTED;
161 }
162
475414f6
MM
163 dev->wanted_features &= ~valid;
164 dev->wanted_features |= wanted & valid;
6cb6a27c 165 __netdev_update_features(dev);
5455c699 166
475414f6 167 if ((dev->wanted_features ^ dev->features) & valid)
5455c699
MM
168 ret |= ETHTOOL_F_WISH;
169
170 return ret;
171}
172
340ae165
MM
173static int __ethtool_get_sset_count(struct net_device *dev, int sset)
174{
175 const struct ethtool_ops *ops = dev->ethtool_ops;
176
5455c699
MM
177 if (sset == ETH_SS_FEATURES)
178 return ARRAY_SIZE(netdev_features_strings);
179
c03a14e8 180 if (ops->get_sset_count && ops->get_strings)
340ae165
MM
181 return ops->get_sset_count(dev, sset);
182 else
183 return -EOPNOTSUPP;
184}
185
186static void __ethtool_get_strings(struct net_device *dev,
187 u32 stringset, u8 *data)
188{
189 const struct ethtool_ops *ops = dev->ethtool_ops;
190
5455c699
MM
191 if (stringset == ETH_SS_FEATURES)
192 memcpy(data, netdev_features_strings,
193 sizeof(netdev_features_strings));
194 else
195 /* ops->get_strings is valid because checked earlier */
196 ops->get_strings(dev, stringset, data);
340ae165
MM
197}
198
c8f44aff 199static netdev_features_t ethtool_get_feature_mask(u32 eth_cmd)
0a417704
MM
200{
201 /* feature masks of legacy discrete ethtool ops */
202
203 switch (eth_cmd) {
204 case ETHTOOL_GTXCSUM:
205 case ETHTOOL_STXCSUM:
206 return NETIF_F_ALL_CSUM | NETIF_F_SCTP_CSUM;
e83d360d
MM
207 case ETHTOOL_GRXCSUM:
208 case ETHTOOL_SRXCSUM:
209 return NETIF_F_RXCSUM;
0a417704
MM
210 case ETHTOOL_GSG:
211 case ETHTOOL_SSG:
212 return NETIF_F_SG;
213 case ETHTOOL_GTSO:
214 case ETHTOOL_STSO:
215 return NETIF_F_ALL_TSO;
216 case ETHTOOL_GUFO:
217 case ETHTOOL_SUFO:
218 return NETIF_F_UFO;
219 case ETHTOOL_GGSO:
220 case ETHTOOL_SGSO:
221 return NETIF_F_GSO;
222 case ETHTOOL_GGRO:
223 case ETHTOOL_SGRO:
224 return NETIF_F_GRO;
225 default:
226 BUG();
227 }
228}
229
0a417704
MM
230static int ethtool_get_one_feature(struct net_device *dev,
231 char __user *useraddr, u32 ethcmd)
232{
c8f44aff 233 netdev_features_t mask = ethtool_get_feature_mask(ethcmd);
0a417704
MM
234 struct ethtool_value edata = {
235 .cmd = ethcmd,
86794881 236 .data = !!(dev->features & mask),
0a417704 237 };
0a417704 238
0a417704
MM
239 if (copy_to_user(useraddr, &edata, sizeof(edata)))
240 return -EFAULT;
241 return 0;
242}
243
0a417704
MM
244static int ethtool_set_one_feature(struct net_device *dev,
245 void __user *useraddr, u32 ethcmd)
246{
247 struct ethtool_value edata;
c8f44aff 248 netdev_features_t mask;
0a417704
MM
249
250 if (copy_from_user(&edata, useraddr, sizeof(edata)))
251 return -EFAULT;
252
86794881
MM
253 mask = ethtool_get_feature_mask(ethcmd);
254 mask &= dev->hw_features;
bc5787c6
MM
255 if (!mask)
256 return -EOPNOTSUPP;
86794881 257
bc5787c6
MM
258 if (edata.data)
259 dev->wanted_features |= mask;
260 else
261 dev->wanted_features &= ~mask;
86794881 262
bc5787c6 263 __netdev_update_features(dev);
86794881 264
bc5787c6
MM
265 return 0;
266}
267
02b3a552
MM
268#define ETH_ALL_FLAGS (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
269 ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
f646968f
PM
270#define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
271 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
272 NETIF_F_RXHASH)
bc5787c6
MM
273
274static u32 __ethtool_get_flags(struct net_device *dev)
275{
02b3a552
MM
276 u32 flags = 0;
277
f646968f
PM
278 if (dev->features & NETIF_F_LRO) flags |= ETH_FLAG_LRO;
279 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX) flags |= ETH_FLAG_RXVLAN;
280 if (dev->features & NETIF_F_HW_VLAN_CTAG_TX) flags |= ETH_FLAG_TXVLAN;
281 if (dev->features & NETIF_F_NTUPLE) flags |= ETH_FLAG_NTUPLE;
282 if (dev->features & NETIF_F_RXHASH) flags |= ETH_FLAG_RXHASH;
02b3a552
MM
283
284 return flags;
0a417704
MM
285}
286
bc5787c6 287static int __ethtool_set_flags(struct net_device *dev, u32 data)
da8ac86c 288{
c8f44aff 289 netdev_features_t features = 0, changed;
da8ac86c 290
02b3a552 291 if (data & ~ETH_ALL_FLAGS)
da8ac86c
MM
292 return -EINVAL;
293
02b3a552 294 if (data & ETH_FLAG_LRO) features |= NETIF_F_LRO;
f646968f
PM
295 if (data & ETH_FLAG_RXVLAN) features |= NETIF_F_HW_VLAN_CTAG_RX;
296 if (data & ETH_FLAG_TXVLAN) features |= NETIF_F_HW_VLAN_CTAG_TX;
02b3a552
MM
297 if (data & ETH_FLAG_NTUPLE) features |= NETIF_F_NTUPLE;
298 if (data & ETH_FLAG_RXHASH) features |= NETIF_F_RXHASH;
299
da8ac86c 300 /* allow changing only bits set in hw_features */
02b3a552 301 changed = (features ^ dev->features) & ETH_ALL_FEATURES;
da8ac86c
MM
302 if (changed & ~dev->hw_features)
303 return (changed & dev->hw_features) ? -EINVAL : -EOPNOTSUPP;
304
305 dev->wanted_features =
02b3a552 306 (dev->wanted_features & ~changed) | (features & changed);
da8ac86c 307
6cb6a27c 308 __netdev_update_features(dev);
da8ac86c
MM
309
310 return 0;
311}
312
4bc71cb9 313int __ethtool_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1da177e4 314{
4bc71cb9 315 ASSERT_RTNL();
1da177e4 316
c03a14e8 317 if (!dev->ethtool_ops->get_settings)
1da177e4
LT
318 return -EOPNOTSUPP;
319
4bc71cb9
JP
320 memset(cmd, 0, sizeof(struct ethtool_cmd));
321 cmd->cmd = ETHTOOL_GSET;
322 return dev->ethtool_ops->get_settings(dev, cmd);
323}
324EXPORT_SYMBOL(__ethtool_get_settings);
325
326static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
327{
328 int err;
329 struct ethtool_cmd cmd;
330
331 err = __ethtool_get_settings(dev, &cmd);
1da177e4
LT
332 if (err < 0)
333 return err;
334
335 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
336 return -EFAULT;
337 return 0;
338}
339
340static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
341{
342 struct ethtool_cmd cmd;
343
344 if (!dev->ethtool_ops->set_settings)
345 return -EOPNOTSUPP;
346
347 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
348 return -EFAULT;
349
350 return dev->ethtool_ops->set_settings(dev, &cmd);
351}
352
97f8aefb 353static noinline_for_stack int ethtool_get_drvinfo(struct net_device *dev,
354 void __user *useraddr)
1da177e4
LT
355{
356 struct ethtool_drvinfo info;
76fd8593 357 const struct ethtool_ops *ops = dev->ethtool_ops;
1da177e4 358
1da177e4
LT
359 memset(&info, 0, sizeof(info));
360 info.cmd = ETHTOOL_GDRVINFO;
c03a14e8 361 if (ops->get_drvinfo) {
01414802
BH
362 ops->get_drvinfo(dev, &info);
363 } else if (dev->dev.parent && dev->dev.parent->driver) {
364 strlcpy(info.bus_info, dev_name(dev->dev.parent),
365 sizeof(info.bus_info));
366 strlcpy(info.driver, dev->dev.parent->driver->name,
367 sizeof(info.driver));
368 } else {
369 return -EOPNOTSUPP;
370 }
1da177e4 371
723b2f57
JG
372 /*
373 * this method of obtaining string set info is deprecated;
d17792eb 374 * Use ETHTOOL_GSSET_INFO instead.
723b2f57 375 */
c03a14e8 376 if (ops->get_sset_count) {
ff03d49f
JG
377 int rc;
378
379 rc = ops->get_sset_count(dev, ETH_SS_TEST);
380 if (rc >= 0)
381 info.testinfo_len = rc;
382 rc = ops->get_sset_count(dev, ETH_SS_STATS);
383 if (rc >= 0)
384 info.n_stats = rc;
339bf024
JG
385 rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
386 if (rc >= 0)
387 info.n_priv_flags = rc;
ff03d49f 388 }
c03a14e8 389 if (ops->get_regs_len)
1da177e4 390 info.regdump_len = ops->get_regs_len(dev);
c03a14e8 391 if (ops->get_eeprom_len)
1da177e4
LT
392 info.eedump_len = ops->get_eeprom_len(dev);
393
394 if (copy_to_user(useraddr, &info, sizeof(info)))
395 return -EFAULT;
396 return 0;
397}
398
f5c445ed 399static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
97f8aefb 400 void __user *useraddr)
723b2f57
JG
401{
402 struct ethtool_sset_info info;
723b2f57
JG
403 u64 sset_mask;
404 int i, idx = 0, n_bits = 0, ret, rc;
405 u32 *info_buf = NULL;
406
723b2f57
JG
407 if (copy_from_user(&info, useraddr, sizeof(info)))
408 return -EFAULT;
409
410 /* store copy of mask, because we zero struct later on */
411 sset_mask = info.sset_mask;
412 if (!sset_mask)
413 return 0;
414
415 /* calculate size of return buffer */
d17792eb 416 n_bits = hweight64(sset_mask);
723b2f57
JG
417
418 memset(&info, 0, sizeof(info));
419 info.cmd = ETHTOOL_GSSET_INFO;
420
421 info_buf = kzalloc(n_bits * sizeof(u32), GFP_USER);
422 if (!info_buf)
423 return -ENOMEM;
424
425 /*
426 * fill return buffer based on input bitmask and successful
427 * get_sset_count return
428 */
429 for (i = 0; i < 64; i++) {
430 if (!(sset_mask & (1ULL << i)))
431 continue;
432
340ae165 433 rc = __ethtool_get_sset_count(dev, i);
723b2f57
JG
434 if (rc >= 0) {
435 info.sset_mask |= (1ULL << i);
436 info_buf[idx++] = rc;
437 }
438 }
439
440 ret = -EFAULT;
441 if (copy_to_user(useraddr, &info, sizeof(info)))
442 goto out;
443
444 useraddr += offsetof(struct ethtool_sset_info, data);
445 if (copy_to_user(useraddr, info_buf, idx * sizeof(u32)))
446 goto out;
447
448 ret = 0;
449
450out:
451 kfree(info_buf);
452 return ret;
453}
454
97f8aefb 455static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
bf988435 456 u32 cmd, void __user *useraddr)
0853ad66 457{
bf988435
BH
458 struct ethtool_rxnfc info;
459 size_t info_size = sizeof(info);
55664f32 460 int rc;
0853ad66 461
59089d8d 462 if (!dev->ethtool_ops->set_rxnfc)
0853ad66
SB
463 return -EOPNOTSUPP;
464
bf988435
BH
465 /* struct ethtool_rxnfc was originally defined for
466 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
467 * members. User-space might still be using that
468 * definition. */
469 if (cmd == ETHTOOL_SRXFH)
470 info_size = (offsetof(struct ethtool_rxnfc, data) +
471 sizeof(info.data));
472
473 if (copy_from_user(&info, useraddr, info_size))
0853ad66
SB
474 return -EFAULT;
475
55664f32
BH
476 rc = dev->ethtool_ops->set_rxnfc(dev, &info);
477 if (rc)
478 return rc;
479
480 if (cmd == ETHTOOL_SRXCLSRLINS &&
481 copy_to_user(useraddr, &info, info_size))
482 return -EFAULT;
483
484 return 0;
0853ad66
SB
485}
486
97f8aefb 487static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
bf988435 488 u32 cmd, void __user *useraddr)
0853ad66
SB
489{
490 struct ethtool_rxnfc info;
bf988435 491 size_t info_size = sizeof(info);
59089d8d
SB
492 const struct ethtool_ops *ops = dev->ethtool_ops;
493 int ret;
494 void *rule_buf = NULL;
0853ad66 495
59089d8d 496 if (!ops->get_rxnfc)
0853ad66
SB
497 return -EOPNOTSUPP;
498
bf988435
BH
499 /* struct ethtool_rxnfc was originally defined for
500 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
501 * members. User-space might still be using that
502 * definition. */
503 if (cmd == ETHTOOL_GRXFH)
504 info_size = (offsetof(struct ethtool_rxnfc, data) +
505 sizeof(info.data));
506
507 if (copy_from_user(&info, useraddr, info_size))
0853ad66
SB
508 return -EFAULT;
509
59089d8d
SB
510 if (info.cmd == ETHTOOL_GRXCLSRLALL) {
511 if (info.rule_cnt > 0) {
db048b69 512 if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
ae6df5f9 513 rule_buf = kzalloc(info.rule_cnt * sizeof(u32),
db048b69 514 GFP_USER);
59089d8d
SB
515 if (!rule_buf)
516 return -ENOMEM;
517 }
518 }
0853ad66 519
59089d8d
SB
520 ret = ops->get_rxnfc(dev, &info, rule_buf);
521 if (ret < 0)
522 goto err_out;
523
524 ret = -EFAULT;
bf988435 525 if (copy_to_user(useraddr, &info, info_size))
59089d8d
SB
526 goto err_out;
527
528 if (rule_buf) {
529 useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
530 if (copy_to_user(useraddr, rule_buf,
531 info.rule_cnt * sizeof(u32)))
532 goto err_out;
533 }
534 ret = 0;
535
536err_out:
c9caceca 537 kfree(rule_buf);
59089d8d
SB
538
539 return ret;
0853ad66
SB
540}
541
a5b6ee29
BH
542static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev,
543 void __user *useraddr)
544{
7850f63f
BH
545 u32 user_size, dev_size;
546 u32 *indir;
a5b6ee29
BH
547 int ret;
548
7850f63f
BH
549 if (!dev->ethtool_ops->get_rxfh_indir_size ||
550 !dev->ethtool_ops->get_rxfh_indir)
551 return -EOPNOTSUPP;
552 dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
553 if (dev_size == 0)
a5b6ee29
BH
554 return -EOPNOTSUPP;
555
7850f63f 556 if (copy_from_user(&user_size,
a5b6ee29 557 useraddr + offsetof(struct ethtool_rxfh_indir, size),
7850f63f 558 sizeof(user_size)))
a5b6ee29
BH
559 return -EFAULT;
560
7850f63f
BH
561 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size),
562 &dev_size, sizeof(dev_size)))
563 return -EFAULT;
564
565 /* If the user buffer size is 0, this is just a query for the
566 * device table size. Otherwise, if it's smaller than the
567 * device table size it's an error.
568 */
569 if (user_size < dev_size)
570 return user_size == 0 ? 0 : -EINVAL;
571
572 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
a5b6ee29
BH
573 if (!indir)
574 return -ENOMEM;
575
a5b6ee29
BH
576 ret = dev->ethtool_ops->get_rxfh_indir(dev, indir);
577 if (ret)
578 goto out;
579
7850f63f
BH
580 if (copy_to_user(useraddr +
581 offsetof(struct ethtool_rxfh_indir, ring_index[0]),
582 indir, dev_size * sizeof(indir[0])))
a5b6ee29
BH
583 ret = -EFAULT;
584
585out:
586 kfree(indir);
587 return ret;
588}
589
590static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev,
591 void __user *useraddr)
592{
7850f63f
BH
593 struct ethtool_rxnfc rx_rings;
594 u32 user_size, dev_size, i;
595 u32 *indir;
c03a14e8 596 const struct ethtool_ops *ops = dev->ethtool_ops;
a5b6ee29
BH
597 int ret;
598
c03a14e8
JP
599 if (!ops->get_rxfh_indir_size || !ops->set_rxfh_indir ||
600 !ops->get_rxnfc)
7850f63f 601 return -EOPNOTSUPP;
c03a14e8
JP
602
603 dev_size = ops->get_rxfh_indir_size(dev);
7850f63f 604 if (dev_size == 0)
a5b6ee29
BH
605 return -EOPNOTSUPP;
606
7850f63f 607 if (copy_from_user(&user_size,
a5b6ee29 608 useraddr + offsetof(struct ethtool_rxfh_indir, size),
7850f63f 609 sizeof(user_size)))
a5b6ee29
BH
610 return -EFAULT;
611
278bc429 612 if (user_size != 0 && user_size != dev_size)
7850f63f
BH
613 return -EINVAL;
614
615 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
a5b6ee29
BH
616 if (!indir)
617 return -ENOMEM;
618
7850f63f 619 rx_rings.cmd = ETHTOOL_GRXRINGS;
c03a14e8 620 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
7850f63f
BH
621 if (ret)
622 goto out;
278bc429
BH
623
624 if (user_size == 0) {
625 for (i = 0; i < dev_size; i++)
626 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
627 } else {
628 if (copy_from_user(indir,
629 useraddr +
630 offsetof(struct ethtool_rxfh_indir,
631 ring_index[0]),
632 dev_size * sizeof(indir[0]))) {
633 ret = -EFAULT;
7850f63f
BH
634 goto out;
635 }
278bc429
BH
636
637 /* Validate ring indices */
638 for (i = 0; i < dev_size; i++) {
639 if (indir[i] >= rx_rings.data) {
640 ret = -EINVAL;
641 goto out;
642 }
643 }
7850f63f
BH
644 }
645
c03a14e8 646 ret = ops->set_rxfh_indir(dev, indir);
a5b6ee29
BH
647
648out:
649 kfree(indir);
650 return ret;
651}
652
1da177e4
LT
653static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
654{
655 struct ethtool_regs regs;
76fd8593 656 const struct ethtool_ops *ops = dev->ethtool_ops;
1da177e4
LT
657 void *regbuf;
658 int reglen, ret;
659
660 if (!ops->get_regs || !ops->get_regs_len)
661 return -EOPNOTSUPP;
662
663 if (copy_from_user(&regs, useraddr, sizeof(regs)))
664 return -EFAULT;
665
666 reglen = ops->get_regs_len(dev);
667 if (regs.len > reglen)
668 regs.len = reglen;
669
b7c7d01a 670 regbuf = vzalloc(reglen);
67ae7cf1 671 if (reglen && !regbuf)
1da177e4
LT
672 return -ENOMEM;
673
674 ops->get_regs(dev, &regs, regbuf);
675
676 ret = -EFAULT;
677 if (copy_to_user(useraddr, &regs, sizeof(regs)))
678 goto out;
679 useraddr += offsetof(struct ethtool_regs, data);
67ae7cf1 680 if (regbuf && copy_to_user(useraddr, regbuf, regs.len))
1da177e4
LT
681 goto out;
682 ret = 0;
683
684 out:
a77f5db3 685 vfree(regbuf);
1da177e4
LT
686 return ret;
687}
688
d73d3a8c
BH
689static int ethtool_reset(struct net_device *dev, char __user *useraddr)
690{
691 struct ethtool_value reset;
692 int ret;
693
694 if (!dev->ethtool_ops->reset)
695 return -EOPNOTSUPP;
696
697 if (copy_from_user(&reset, useraddr, sizeof(reset)))
698 return -EFAULT;
699
700 ret = dev->ethtool_ops->reset(dev, &reset.data);
701 if (ret)
702 return ret;
703
704 if (copy_to_user(useraddr, &reset, sizeof(reset)))
705 return -EFAULT;
706 return 0;
707}
708
1da177e4
LT
709static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
710{
8e557421 711 struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
1da177e4
LT
712
713 if (!dev->ethtool_ops->get_wol)
714 return -EOPNOTSUPP;
715
716 dev->ethtool_ops->get_wol(dev, &wol);
717
718 if (copy_to_user(useraddr, &wol, sizeof(wol)))
719 return -EFAULT;
720 return 0;
721}
722
723static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
724{
725 struct ethtool_wolinfo wol;
726
727 if (!dev->ethtool_ops->set_wol)
728 return -EOPNOTSUPP;
729
730 if (copy_from_user(&wol, useraddr, sizeof(wol)))
731 return -EFAULT;
732
733 return dev->ethtool_ops->set_wol(dev, &wol);
734}
735
80f12ecc
YM
736static int ethtool_get_eee(struct net_device *dev, char __user *useraddr)
737{
738 struct ethtool_eee edata;
739 int rc;
740
741 if (!dev->ethtool_ops->get_eee)
742 return -EOPNOTSUPP;
743
744 memset(&edata, 0, sizeof(struct ethtool_eee));
745 edata.cmd = ETHTOOL_GEEE;
746 rc = dev->ethtool_ops->get_eee(dev, &edata);
747
748 if (rc)
749 return rc;
750
751 if (copy_to_user(useraddr, &edata, sizeof(edata)))
752 return -EFAULT;
753
754 return 0;
755}
756
757static int ethtool_set_eee(struct net_device *dev, char __user *useraddr)
758{
759 struct ethtool_eee edata;
760
761 if (!dev->ethtool_ops->set_eee)
762 return -EOPNOTSUPP;
763
764 if (copy_from_user(&edata, useraddr, sizeof(edata)))
765 return -EFAULT;
766
767 return dev->ethtool_ops->set_eee(dev, &edata);
768}
769
1da177e4
LT
770static 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
e596e6e4
BH
778static int ethtool_get_link(struct net_device *dev, char __user *useraddr)
779{
780 struct ethtool_value edata = { .cmd = ETHTOOL_GLINK };
781
782 if (!dev->ethtool_ops->get_link)
783 return -EOPNOTSUPP;
784
785 edata.data = netif_running(dev) && dev->ethtool_ops->get_link(dev);
786
787 if (copy_to_user(useraddr, &edata, sizeof(edata)))
788 return -EFAULT;
789 return 0;
790}
791
081d094e
BH
792static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr,
793 int (*getter)(struct net_device *,
794 struct ethtool_eeprom *, u8 *),
795 u32 total_len)
1da177e4
LT
796{
797 struct ethtool_eeprom eeprom;
b131dd5d
MSB
798 void __user *userbuf = useraddr + sizeof(eeprom);
799 u32 bytes_remaining;
1da177e4 800 u8 *data;
b131dd5d 801 int ret = 0;
1da177e4 802
1da177e4
LT
803 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
804 return -EFAULT;
805
806 /* Check for wrap and zero */
807 if (eeprom.offset + eeprom.len <= eeprom.offset)
808 return -EINVAL;
809
810 /* Check for exceeding total eeprom len */
081d094e 811 if (eeprom.offset + eeprom.len > total_len)
1da177e4
LT
812 return -EINVAL;
813
b131dd5d 814 data = kmalloc(PAGE_SIZE, GFP_USER);
1da177e4
LT
815 if (!data)
816 return -ENOMEM;
817
b131dd5d
MSB
818 bytes_remaining = eeprom.len;
819 while (bytes_remaining > 0) {
820 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
821
081d094e 822 ret = getter(dev, &eeprom, data);
b131dd5d
MSB
823 if (ret)
824 break;
825 if (copy_to_user(userbuf, data, eeprom.len)) {
826 ret = -EFAULT;
827 break;
828 }
829 userbuf += eeprom.len;
830 eeprom.offset += eeprom.len;
831 bytes_remaining -= eeprom.len;
832 }
1da177e4 833
c5835df9
MSB
834 eeprom.len = userbuf - (useraddr + sizeof(eeprom));
835 eeprom.offset -= eeprom.len;
836 if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
837 ret = -EFAULT;
838
1da177e4
LT
839 kfree(data);
840 return ret;
841}
842
081d094e
BH
843static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
844{
845 const struct ethtool_ops *ops = dev->ethtool_ops;
846
847 if (!ops->get_eeprom || !ops->get_eeprom_len)
848 return -EOPNOTSUPP;
849
850 return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom,
851 ops->get_eeprom_len(dev));
852}
853
1da177e4
LT
854static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
855{
856 struct ethtool_eeprom eeprom;
76fd8593 857 const struct ethtool_ops *ops = dev->ethtool_ops;
b131dd5d
MSB
858 void __user *userbuf = useraddr + sizeof(eeprom);
859 u32 bytes_remaining;
1da177e4 860 u8 *data;
b131dd5d 861 int ret = 0;
1da177e4
LT
862
863 if (!ops->set_eeprom || !ops->get_eeprom_len)
864 return -EOPNOTSUPP;
865
866 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
867 return -EFAULT;
868
869 /* Check for wrap and zero */
870 if (eeprom.offset + eeprom.len <= eeprom.offset)
871 return -EINVAL;
872
873 /* Check for exceeding total eeprom len */
874 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
875 return -EINVAL;
876
b131dd5d 877 data = kmalloc(PAGE_SIZE, GFP_USER);
1da177e4
LT
878 if (!data)
879 return -ENOMEM;
880
b131dd5d
MSB
881 bytes_remaining = eeprom.len;
882 while (bytes_remaining > 0) {
883 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
884
885 if (copy_from_user(data, userbuf, eeprom.len)) {
886 ret = -EFAULT;
887 break;
888 }
889 ret = ops->set_eeprom(dev, &eeprom, data);
890 if (ret)
891 break;
892 userbuf += eeprom.len;
893 eeprom.offset += eeprom.len;
894 bytes_remaining -= eeprom.len;
895 }
1da177e4 896
1da177e4
LT
897 kfree(data);
898 return ret;
899}
900
97f8aefb 901static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
902 void __user *useraddr)
1da177e4 903{
8e557421 904 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
1da177e4
LT
905
906 if (!dev->ethtool_ops->get_coalesce)
907 return -EOPNOTSUPP;
908
909 dev->ethtool_ops->get_coalesce(dev, &coalesce);
910
911 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
912 return -EFAULT;
913 return 0;
914}
915
97f8aefb 916static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
917 void __user *useraddr)
1da177e4
LT
918{
919 struct ethtool_coalesce coalesce;
920
fa04ae5c 921 if (!dev->ethtool_ops->set_coalesce)
1da177e4
LT
922 return -EOPNOTSUPP;
923
924 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
925 return -EFAULT;
926
927 return dev->ethtool_ops->set_coalesce(dev, &coalesce);
928}
929
930static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
931{
8e557421 932 struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
1da177e4
LT
933
934 if (!dev->ethtool_ops->get_ringparam)
935 return -EOPNOTSUPP;
936
937 dev->ethtool_ops->get_ringparam(dev, &ringparam);
938
939 if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
940 return -EFAULT;
941 return 0;
942}
943
944static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
945{
946 struct ethtool_ringparam ringparam;
947
948 if (!dev->ethtool_ops->set_ringparam)
949 return -EOPNOTSUPP;
950
951 if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
952 return -EFAULT;
953
954 return dev->ethtool_ops->set_ringparam(dev, &ringparam);
955}
956
8b5933c3 957static noinline_for_stack int ethtool_get_channels(struct net_device *dev,
958 void __user *useraddr)
959{
960 struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
961
962 if (!dev->ethtool_ops->get_channels)
963 return -EOPNOTSUPP;
964
965 dev->ethtool_ops->get_channels(dev, &channels);
966
967 if (copy_to_user(useraddr, &channels, sizeof(channels)))
968 return -EFAULT;
969 return 0;
970}
971
972static noinline_for_stack int ethtool_set_channels(struct net_device *dev,
973 void __user *useraddr)
974{
975 struct ethtool_channels channels;
976
977 if (!dev->ethtool_ops->set_channels)
978 return -EOPNOTSUPP;
979
980 if (copy_from_user(&channels, useraddr, sizeof(channels)))
981 return -EFAULT;
982
983 return dev->ethtool_ops->set_channels(dev, &channels);
984}
985
1da177e4
LT
986static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
987{
988 struct ethtool_pauseparam pauseparam = { ETHTOOL_GPAUSEPARAM };
989
990 if (!dev->ethtool_ops->get_pauseparam)
991 return -EOPNOTSUPP;
992
993 dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
994
995 if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
996 return -EFAULT;
997 return 0;
998}
999
1000static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
1001{
1002 struct ethtool_pauseparam pauseparam;
1003
e1b90c41 1004 if (!dev->ethtool_ops->set_pauseparam)
1da177e4
LT
1005 return -EOPNOTSUPP;
1006
1007 if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
1008 return -EFAULT;
1009
1010 return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
1011}
1012
1da177e4
LT
1013static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
1014{
1015 struct ethtool_test test;
76fd8593 1016 const struct ethtool_ops *ops = dev->ethtool_ops;
1da177e4 1017 u64 *data;
ff03d49f 1018 int ret, test_len;
1da177e4 1019
a9828ec6 1020 if (!ops->self_test || !ops->get_sset_count)
1da177e4
LT
1021 return -EOPNOTSUPP;
1022
a9828ec6 1023 test_len = ops->get_sset_count(dev, ETH_SS_TEST);
ff03d49f
JG
1024 if (test_len < 0)
1025 return test_len;
1026 WARN_ON(test_len == 0);
1027
1da177e4
LT
1028 if (copy_from_user(&test, useraddr, sizeof(test)))
1029 return -EFAULT;
1030
ff03d49f
JG
1031 test.len = test_len;
1032 data = kmalloc(test_len * sizeof(u64), GFP_USER);
1da177e4
LT
1033 if (!data)
1034 return -ENOMEM;
1035
1036 ops->self_test(dev, &test, data);
1037
1038 ret = -EFAULT;
1039 if (copy_to_user(useraddr, &test, sizeof(test)))
1040 goto out;
1041 useraddr += sizeof(test);
1042 if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
1043 goto out;
1044 ret = 0;
1045
1046 out:
1047 kfree(data);
1048 return ret;
1049}
1050
1051static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
1052{
1053 struct ethtool_gstrings gstrings;
1da177e4
LT
1054 u8 *data;
1055 int ret;
1056
1da177e4
LT
1057 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
1058 return -EFAULT;
1059
340ae165 1060 ret = __ethtool_get_sset_count(dev, gstrings.string_set);
a9828ec6
BH
1061 if (ret < 0)
1062 return ret;
1063
1064 gstrings.len = ret;
1da177e4
LT
1065
1066 data = kmalloc(gstrings.len * ETH_GSTRING_LEN, GFP_USER);
1067 if (!data)
1068 return -ENOMEM;
1069
340ae165 1070 __ethtool_get_strings(dev, gstrings.string_set, data);
1da177e4
LT
1071
1072 ret = -EFAULT;
1073 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
1074 goto out;
1075 useraddr += sizeof(gstrings);
1076 if (copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
1077 goto out;
1078 ret = 0;
1079
340ae165 1080out:
1da177e4
LT
1081 kfree(data);
1082 return ret;
1083}
1084
1085static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
1086{
1087 struct ethtool_value id;
68f512f2 1088 static bool busy;
c03a14e8 1089 const struct ethtool_ops *ops = dev->ethtool_ops;
68f512f2 1090 int rc;
1da177e4 1091
c03a14e8 1092 if (!ops->set_phys_id)
1da177e4
LT
1093 return -EOPNOTSUPP;
1094
68f512f2
BH
1095 if (busy)
1096 return -EBUSY;
1097
1da177e4
LT
1098 if (copy_from_user(&id, useraddr, sizeof(id)))
1099 return -EFAULT;
1100
c03a14e8 1101 rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE);
fce55922 1102 if (rc < 0)
68f512f2
BH
1103 return rc;
1104
1105 /* Drop the RTNL lock while waiting, but prevent reentry or
1106 * removal of the device.
1107 */
1108 busy = true;
1109 dev_hold(dev);
1110 rtnl_unlock();
1111
1112 if (rc == 0) {
1113 /* Driver will handle this itself */
1114 schedule_timeout_interruptible(
143780c6 1115 id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT);
68f512f2 1116 } else {
fce55922
AB
1117 /* Driver expects to be called at twice the frequency in rc */
1118 int n = rc * 2, i, interval = HZ / n;
1119
1120 /* Count down seconds */
68f512f2 1121 do {
fce55922
AB
1122 /* Count down iterations per second */
1123 i = n;
1124 do {
1125 rtnl_lock();
c03a14e8 1126 rc = ops->set_phys_id(dev,
fce55922
AB
1127 (i & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON);
1128 rtnl_unlock();
1129 if (rc)
1130 break;
1131 schedule_timeout_interruptible(interval);
1132 } while (!signal_pending(current) && --i != 0);
68f512f2
BH
1133 } while (!signal_pending(current) &&
1134 (id.data == 0 || --id.data != 0));
1135 }
1136
1137 rtnl_lock();
1138 dev_put(dev);
1139 busy = false;
1140
c03a14e8 1141 (void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE);
68f512f2 1142 return rc;
1da177e4
LT
1143}
1144
1145static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
1146{
1147 struct ethtool_stats stats;
76fd8593 1148 const struct ethtool_ops *ops = dev->ethtool_ops;
1da177e4 1149 u64 *data;
ff03d49f 1150 int ret, n_stats;
1da177e4 1151
a9828ec6 1152 if (!ops->get_ethtool_stats || !ops->get_sset_count)
1da177e4
LT
1153 return -EOPNOTSUPP;
1154
a9828ec6 1155 n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
ff03d49f
JG
1156 if (n_stats < 0)
1157 return n_stats;
1158 WARN_ON(n_stats == 0);
1159
1da177e4
LT
1160 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1161 return -EFAULT;
1162
ff03d49f
JG
1163 stats.n_stats = n_stats;
1164 data = kmalloc(n_stats * sizeof(u64), GFP_USER);
1da177e4
LT
1165 if (!data)
1166 return -ENOMEM;
1167
1168 ops->get_ethtool_stats(dev, &stats, data);
1169
1170 ret = -EFAULT;
1171 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1172 goto out;
1173 useraddr += sizeof(stats);
1174 if (copy_to_user(useraddr, data, stats.n_stats * sizeof(u64)))
1175 goto out;
1176 ret = 0;
1177
1178 out:
1179 kfree(data);
1180 return ret;
1181}
1182
0bf0519d 1183static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
a6f9a705
JW
1184{
1185 struct ethtool_perm_addr epaddr;
a6f9a705 1186
313674af 1187 if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
a6f9a705
JW
1188 return -EFAULT;
1189
313674af
MW
1190 if (epaddr.size < dev->addr_len)
1191 return -ETOOSMALL;
1192 epaddr.size = dev->addr_len;
a6f9a705 1193
a6f9a705 1194 if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
313674af 1195 return -EFAULT;
a6f9a705 1196 useraddr += sizeof(epaddr);
313674af
MW
1197 if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
1198 return -EFAULT;
1199 return 0;
a6f9a705
JW
1200}
1201
13c99b24
JG
1202static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
1203 u32 cmd, u32 (*actor)(struct net_device *))
3ae7c0b2 1204{
8e557421 1205 struct ethtool_value edata = { .cmd = cmd };
3ae7c0b2 1206
13c99b24 1207 if (!actor)
3ae7c0b2
JG
1208 return -EOPNOTSUPP;
1209
13c99b24 1210 edata.data = actor(dev);
3ae7c0b2
JG
1211
1212 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1213 return -EFAULT;
1214 return 0;
1215}
1216
13c99b24
JG
1217static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
1218 void (*actor)(struct net_device *, u32))
3ae7c0b2
JG
1219{
1220 struct ethtool_value edata;
1221
13c99b24 1222 if (!actor)
3ae7c0b2
JG
1223 return -EOPNOTSUPP;
1224
1225 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1226 return -EFAULT;
1227
13c99b24 1228 actor(dev, edata.data);
339bf024
JG
1229 return 0;
1230}
1231
13c99b24
JG
1232static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
1233 int (*actor)(struct net_device *, u32))
339bf024
JG
1234{
1235 struct ethtool_value edata;
1236
13c99b24 1237 if (!actor)
339bf024
JG
1238 return -EOPNOTSUPP;
1239
1240 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1241 return -EFAULT;
1242
13c99b24 1243 return actor(dev, edata.data);
339bf024
JG
1244}
1245
97f8aefb 1246static noinline_for_stack int ethtool_flash_device(struct net_device *dev,
1247 char __user *useraddr)
05c6a8d7
AK
1248{
1249 struct ethtool_flash efl;
1250
1251 if (copy_from_user(&efl, useraddr, sizeof(efl)))
1252 return -EFAULT;
1253
1254 if (!dev->ethtool_ops->flash_device)
1255 return -EOPNOTSUPP;
1256
786f5281
BH
1257 efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0;
1258
05c6a8d7
AK
1259 return dev->ethtool_ops->flash_device(dev, &efl);
1260}
1261
29dd54b7
AC
1262static int ethtool_set_dump(struct net_device *dev,
1263 void __user *useraddr)
1264{
1265 struct ethtool_dump dump;
1266
1267 if (!dev->ethtool_ops->set_dump)
1268 return -EOPNOTSUPP;
1269
1270 if (copy_from_user(&dump, useraddr, sizeof(dump)))
1271 return -EFAULT;
1272
1273 return dev->ethtool_ops->set_dump(dev, &dump);
1274}
1275
1276static int ethtool_get_dump_flag(struct net_device *dev,
1277 void __user *useraddr)
1278{
1279 int ret;
1280 struct ethtool_dump dump;
1281 const struct ethtool_ops *ops = dev->ethtool_ops;
1282
c03a14e8 1283 if (!ops->get_dump_flag)
29dd54b7
AC
1284 return -EOPNOTSUPP;
1285
1286 if (copy_from_user(&dump, useraddr, sizeof(dump)))
1287 return -EFAULT;
1288
1289 ret = ops->get_dump_flag(dev, &dump);
1290 if (ret)
1291 return ret;
1292
1293 if (copy_to_user(useraddr, &dump, sizeof(dump)))
1294 return -EFAULT;
1295 return 0;
1296}
1297
1298static int ethtool_get_dump_data(struct net_device *dev,
1299 void __user *useraddr)
1300{
1301 int ret;
1302 __u32 len;
1303 struct ethtool_dump dump, tmp;
1304 const struct ethtool_ops *ops = dev->ethtool_ops;
1305 void *data = NULL;
1306
c03a14e8 1307 if (!ops->get_dump_data || !ops->get_dump_flag)
29dd54b7
AC
1308 return -EOPNOTSUPP;
1309
1310 if (copy_from_user(&dump, useraddr, sizeof(dump)))
1311 return -EFAULT;
1312
1313 memset(&tmp, 0, sizeof(tmp));
1314 tmp.cmd = ETHTOOL_GET_DUMP_FLAG;
1315 ret = ops->get_dump_flag(dev, &tmp);
1316 if (ret)
1317 return ret;
1318
1319 len = (tmp.len > dump.len) ? dump.len : tmp.len;
1320 if (!len)
1321 return -EFAULT;
1322
1323 data = vzalloc(tmp.len);
1324 if (!data)
1325 return -ENOMEM;
1326 ret = ops->get_dump_data(dev, &dump, data);
1327 if (ret)
1328 goto out;
1329
1330 if (copy_to_user(useraddr, &dump, sizeof(dump))) {
1331 ret = -EFAULT;
1332 goto out;
1333 }
1334 useraddr += offsetof(struct ethtool_dump, data);
1335 if (copy_to_user(useraddr, data, len))
1336 ret = -EFAULT;
1337out:
1338 vfree(data);
1339 return ret;
1340}
1341
c8f3a8c3
RC
1342static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr)
1343{
1344 int err = 0;
1345 struct ethtool_ts_info info;
1346 const struct ethtool_ops *ops = dev->ethtool_ops;
1347 struct phy_device *phydev = dev->phydev;
1348
1349 memset(&info, 0, sizeof(info));
1350 info.cmd = ETHTOOL_GET_TS_INFO;
1351
1352 if (phydev && phydev->drv && phydev->drv->ts_info) {
c8f3a8c3 1353 err = phydev->drv->ts_info(phydev, &info);
c03a14e8 1354 } else if (ops->get_ts_info) {
c8f3a8c3 1355 err = ops->get_ts_info(dev, &info);
c8f3a8c3
RC
1356 } else {
1357 info.so_timestamping =
1358 SOF_TIMESTAMPING_RX_SOFTWARE |
1359 SOF_TIMESTAMPING_SOFTWARE;
1360 info.phc_index = -1;
1361 }
1362
1363 if (err)
1364 return err;
1365
1366 if (copy_to_user(useraddr, &info, sizeof(info)))
1367 err = -EFAULT;
1368
1369 return err;
1370}
1371
41c3cb6d
SH
1372static int ethtool_get_module_info(struct net_device *dev,
1373 void __user *useraddr)
1374{
1375 int ret;
1376 struct ethtool_modinfo modinfo;
1377 const struct ethtool_ops *ops = dev->ethtool_ops;
1378
1379 if (!ops->get_module_info)
1380 return -EOPNOTSUPP;
1381
1382 if (copy_from_user(&modinfo, useraddr, sizeof(modinfo)))
1383 return -EFAULT;
1384
1385 ret = ops->get_module_info(dev, &modinfo);
1386 if (ret)
1387 return ret;
1388
1389 if (copy_to_user(useraddr, &modinfo, sizeof(modinfo)))
1390 return -EFAULT;
1391
1392 return 0;
1393}
1394
1395static int ethtool_get_module_eeprom(struct net_device *dev,
1396 void __user *useraddr)
1397{
1398 int ret;
1399 struct ethtool_modinfo modinfo;
1400 const struct ethtool_ops *ops = dev->ethtool_ops;
1401
1402 if (!ops->get_module_info || !ops->get_module_eeprom)
1403 return -EOPNOTSUPP;
1404
1405 ret = ops->get_module_info(dev, &modinfo);
1406 if (ret)
1407 return ret;
1408
1409 return ethtool_get_any_eeprom(dev, useraddr, ops->get_module_eeprom,
1410 modinfo.eeprom_len);
1411}
1412
1da177e4
LT
1413/* The main entry point in this file. Called from net/core/dev.c */
1414
881d966b 1415int dev_ethtool(struct net *net, struct ifreq *ifr)
1da177e4 1416{
881d966b 1417 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
1da177e4
LT
1418 void __user *useraddr = ifr->ifr_data;
1419 u32 ethcmd;
1420 int rc;
04ed3e74 1421 u32 old_features;
1da177e4 1422
1da177e4
LT
1423 if (!dev || !netif_device_present(dev))
1424 return -ENODEV;
1425
97f8aefb 1426 if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
1da177e4
LT
1427 return -EFAULT;
1428
75f3123c 1429 /* Allow some commands to be done by anyone */
97f8aefb 1430 switch (ethcmd) {
0fdc100b 1431 case ETHTOOL_GSET:
75f3123c 1432 case ETHTOOL_GDRVINFO:
75f3123c 1433 case ETHTOOL_GMSGLVL:
2da45db2 1434 case ETHTOOL_GLINK:
75f3123c
SH
1435 case ETHTOOL_GCOALESCE:
1436 case ETHTOOL_GRINGPARAM:
1437 case ETHTOOL_GPAUSEPARAM:
1438 case ETHTOOL_GRXCSUM:
1439 case ETHTOOL_GTXCSUM:
1440 case ETHTOOL_GSG:
f80400a2 1441 case ETHTOOL_GSSET_INFO:
75f3123c 1442 case ETHTOOL_GSTRINGS:
2da45db2 1443 case ETHTOOL_GSTATS:
75f3123c
SH
1444 case ETHTOOL_GTSO:
1445 case ETHTOOL_GPERMADDR:
1446 case ETHTOOL_GUFO:
1447 case ETHTOOL_GGSO:
1cab819b 1448 case ETHTOOL_GGRO:
339bf024
JG
1449 case ETHTOOL_GFLAGS:
1450 case ETHTOOL_GPFLAGS:
0853ad66 1451 case ETHTOOL_GRXFH:
59089d8d
SB
1452 case ETHTOOL_GRXRINGS:
1453 case ETHTOOL_GRXCLSRLCNT:
1454 case ETHTOOL_GRXCLSRULE:
1455 case ETHTOOL_GRXCLSRLALL:
2da45db2 1456 case ETHTOOL_GRXFHINDIR:
5455c699 1457 case ETHTOOL_GFEATURES:
2da45db2 1458 case ETHTOOL_GCHANNELS:
c8f3a8c3 1459 case ETHTOOL_GET_TS_INFO:
2da45db2 1460 case ETHTOOL_GEEE:
75f3123c
SH
1461 break;
1462 default:
5e1fccc0 1463 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
75f3123c
SH
1464 return -EPERM;
1465 }
1466
97f8aefb 1467 if (dev->ethtool_ops->begin) {
1468 rc = dev->ethtool_ops->begin(dev);
1469 if (rc < 0)
1da177e4 1470 return rc;
97f8aefb 1471 }
d8a33ac4
SH
1472 old_features = dev->features;
1473
1da177e4
LT
1474 switch (ethcmd) {
1475 case ETHTOOL_GSET:
1476 rc = ethtool_get_settings(dev, useraddr);
1477 break;
1478 case ETHTOOL_SSET:
1479 rc = ethtool_set_settings(dev, useraddr);
1480 break;
1481 case ETHTOOL_GDRVINFO:
1482 rc = ethtool_get_drvinfo(dev, useraddr);
1da177e4
LT
1483 break;
1484 case ETHTOOL_GREGS:
1485 rc = ethtool_get_regs(dev, useraddr);
1486 break;
1487 case ETHTOOL_GWOL:
1488 rc = ethtool_get_wol(dev, useraddr);
1489 break;
1490 case ETHTOOL_SWOL:
1491 rc = ethtool_set_wol(dev, useraddr);
1492 break;
1493 case ETHTOOL_GMSGLVL:
13c99b24
JG
1494 rc = ethtool_get_value(dev, useraddr, ethcmd,
1495 dev->ethtool_ops->get_msglevel);
1da177e4
LT
1496 break;
1497 case ETHTOOL_SMSGLVL:
13c99b24
JG
1498 rc = ethtool_set_value_void(dev, useraddr,
1499 dev->ethtool_ops->set_msglevel);
1da177e4 1500 break;
80f12ecc
YM
1501 case ETHTOOL_GEEE:
1502 rc = ethtool_get_eee(dev, useraddr);
1503 break;
1504 case ETHTOOL_SEEE:
1505 rc = ethtool_set_eee(dev, useraddr);
1506 break;
1da177e4
LT
1507 case ETHTOOL_NWAY_RST:
1508 rc = ethtool_nway_reset(dev);
1509 break;
1510 case ETHTOOL_GLINK:
e596e6e4 1511 rc = ethtool_get_link(dev, useraddr);
1da177e4
LT
1512 break;
1513 case ETHTOOL_GEEPROM:
1514 rc = ethtool_get_eeprom(dev, useraddr);
1515 break;
1516 case ETHTOOL_SEEPROM:
1517 rc = ethtool_set_eeprom(dev, useraddr);
1518 break;
1519 case ETHTOOL_GCOALESCE:
1520 rc = ethtool_get_coalesce(dev, useraddr);
1521 break;
1522 case ETHTOOL_SCOALESCE:
1523 rc = ethtool_set_coalesce(dev, useraddr);
1524 break;
1525 case ETHTOOL_GRINGPARAM:
1526 rc = ethtool_get_ringparam(dev, useraddr);
1527 break;
1528 case ETHTOOL_SRINGPARAM:
1529 rc = ethtool_set_ringparam(dev, useraddr);
1530 break;
1531 case ETHTOOL_GPAUSEPARAM:
1532 rc = ethtool_get_pauseparam(dev, useraddr);
1533 break;
1534 case ETHTOOL_SPAUSEPARAM:
1535 rc = ethtool_set_pauseparam(dev, useraddr);
1536 break;
1da177e4
LT
1537 case ETHTOOL_TEST:
1538 rc = ethtool_self_test(dev, useraddr);
1539 break;
1540 case ETHTOOL_GSTRINGS:
1541 rc = ethtool_get_strings(dev, useraddr);
1542 break;
1543 case ETHTOOL_PHYS_ID:
1544 rc = ethtool_phys_id(dev, useraddr);
1545 break;
1546 case ETHTOOL_GSTATS:
1547 rc = ethtool_get_stats(dev, useraddr);
1548 break;
a6f9a705
JW
1549 case ETHTOOL_GPERMADDR:
1550 rc = ethtool_get_perm_addr(dev, useraddr);
1551 break;
3ae7c0b2 1552 case ETHTOOL_GFLAGS:
13c99b24 1553 rc = ethtool_get_value(dev, useraddr, ethcmd,
bc5787c6 1554 __ethtool_get_flags);
3ae7c0b2
JG
1555 break;
1556 case ETHTOOL_SFLAGS:
da8ac86c 1557 rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags);
3ae7c0b2 1558 break;
339bf024 1559 case ETHTOOL_GPFLAGS:
13c99b24
JG
1560 rc = ethtool_get_value(dev, useraddr, ethcmd,
1561 dev->ethtool_ops->get_priv_flags);
339bf024
JG
1562 break;
1563 case ETHTOOL_SPFLAGS:
13c99b24
JG
1564 rc = ethtool_set_value(dev, useraddr,
1565 dev->ethtool_ops->set_priv_flags);
339bf024 1566 break;
0853ad66 1567 case ETHTOOL_GRXFH:
59089d8d
SB
1568 case ETHTOOL_GRXRINGS:
1569 case ETHTOOL_GRXCLSRLCNT:
1570 case ETHTOOL_GRXCLSRULE:
1571 case ETHTOOL_GRXCLSRLALL:
bf988435 1572 rc = ethtool_get_rxnfc(dev, ethcmd, useraddr);
0853ad66
SB
1573 break;
1574 case ETHTOOL_SRXFH:
59089d8d
SB
1575 case ETHTOOL_SRXCLSRLDEL:
1576 case ETHTOOL_SRXCLSRLINS:
bf988435 1577 rc = ethtool_set_rxnfc(dev, ethcmd, useraddr);
0853ad66 1578 break;
05c6a8d7
AK
1579 case ETHTOOL_FLASHDEV:
1580 rc = ethtool_flash_device(dev, useraddr);
1581 break;
d73d3a8c
BH
1582 case ETHTOOL_RESET:
1583 rc = ethtool_reset(dev, useraddr);
1584 break;
723b2f57
JG
1585 case ETHTOOL_GSSET_INFO:
1586 rc = ethtool_get_sset_info(dev, useraddr);
1587 break;
a5b6ee29
BH
1588 case ETHTOOL_GRXFHINDIR:
1589 rc = ethtool_get_rxfh_indir(dev, useraddr);
1590 break;
1591 case ETHTOOL_SRXFHINDIR:
1592 rc = ethtool_set_rxfh_indir(dev, useraddr);
1593 break;
5455c699
MM
1594 case ETHTOOL_GFEATURES:
1595 rc = ethtool_get_features(dev, useraddr);
1596 break;
1597 case ETHTOOL_SFEATURES:
1598 rc = ethtool_set_features(dev, useraddr);
1599 break;
0a417704 1600 case ETHTOOL_GTXCSUM:
e83d360d 1601 case ETHTOOL_GRXCSUM:
0a417704
MM
1602 case ETHTOOL_GSG:
1603 case ETHTOOL_GTSO:
1604 case ETHTOOL_GUFO:
1605 case ETHTOOL_GGSO:
1606 case ETHTOOL_GGRO:
1607 rc = ethtool_get_one_feature(dev, useraddr, ethcmd);
1608 break;
1609 case ETHTOOL_STXCSUM:
e83d360d 1610 case ETHTOOL_SRXCSUM:
0a417704
MM
1611 case ETHTOOL_SSG:
1612 case ETHTOOL_STSO:
1613 case ETHTOOL_SUFO:
1614 case ETHTOOL_SGSO:
1615 case ETHTOOL_SGRO:
1616 rc = ethtool_set_one_feature(dev, useraddr, ethcmd);
1617 break;
8b5933c3 1618 case ETHTOOL_GCHANNELS:
1619 rc = ethtool_get_channels(dev, useraddr);
1620 break;
1621 case ETHTOOL_SCHANNELS:
1622 rc = ethtool_set_channels(dev, useraddr);
1623 break;
29dd54b7
AC
1624 case ETHTOOL_SET_DUMP:
1625 rc = ethtool_set_dump(dev, useraddr);
1626 break;
1627 case ETHTOOL_GET_DUMP_FLAG:
1628 rc = ethtool_get_dump_flag(dev, useraddr);
1629 break;
1630 case ETHTOOL_GET_DUMP_DATA:
1631 rc = ethtool_get_dump_data(dev, useraddr);
1632 break;
c8f3a8c3
RC
1633 case ETHTOOL_GET_TS_INFO:
1634 rc = ethtool_get_ts_info(dev, useraddr);
1635 break;
41c3cb6d
SH
1636 case ETHTOOL_GMODULEINFO:
1637 rc = ethtool_get_module_info(dev, useraddr);
1638 break;
1639 case ETHTOOL_GMODULEEEPROM:
1640 rc = ethtool_get_module_eeprom(dev, useraddr);
1641 break;
1da177e4 1642 default:
61a44b9c 1643 rc = -EOPNOTSUPP;
1da177e4 1644 }
4ec93edb 1645
e71a4783 1646 if (dev->ethtool_ops->complete)
1da177e4 1647 dev->ethtool_ops->complete(dev);
d8a33ac4
SH
1648
1649 if (old_features != dev->features)
1650 netdev_features_change(dev);
1651
1da177e4 1652 return rc;
1da177e4 1653}
This page took 0.783377 seconds and 5 git commands to generate.