2 * net/core/ethtool.c - Ethtool ioctl handler
3 * Copyright (c) 2003 Matthew Wilcox <matthew@wil.cx>
5 * This file is where we call all the ethtool_ops commands to get
6 * the information ethtool needs.
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.
14 #include <linux/module.h>
15 #include <linux/types.h>
16 #include <linux/capability.h>
17 #include <linux/errno.h>
18 #include <linux/ethtool.h>
19 #include <linux/netdevice.h>
20 #include <linux/net_tstamp.h>
21 #include <linux/phy.h>
22 #include <linux/bitops.h>
23 #include <linux/uaccess.h>
24 #include <linux/vmalloc.h>
25 #include <linux/slab.h>
26 #include <linux/rtnetlink.h>
27 #include <linux/sched.h>
28 #include <linux/net.h>
31 * Some useful ethtool_ops methods that're device independent.
32 * If we find that all drivers want to do the same thing here,
33 * we can turn these into dev_() function calls.
36 u32
ethtool_op_get_link(struct net_device
*dev
)
38 return netif_carrier_ok(dev
) ? 1 : 0;
40 EXPORT_SYMBOL(ethtool_op_get_link
);
42 int ethtool_op_get_ts_info(struct net_device
*dev
, struct ethtool_ts_info
*info
)
44 info
->so_timestamping
=
45 SOF_TIMESTAMPING_TX_SOFTWARE
|
46 SOF_TIMESTAMPING_RX_SOFTWARE
|
47 SOF_TIMESTAMPING_SOFTWARE
;
51 EXPORT_SYMBOL(ethtool_op_get_ts_info
);
53 /* Handlers for each ethtool command */
55 #define ETHTOOL_DEV_FEATURE_WORDS ((NETDEV_FEATURE_COUNT + 31) / 32)
57 static const char netdev_features_strings
[NETDEV_FEATURE_COUNT
][ETH_GSTRING_LEN
] = {
58 [NETIF_F_SG_BIT
] = "tx-scatter-gather",
59 [NETIF_F_IP_CSUM_BIT
] = "tx-checksum-ipv4",
60 [NETIF_F_HW_CSUM_BIT
] = "tx-checksum-ip-generic",
61 [NETIF_F_IPV6_CSUM_BIT
] = "tx-checksum-ipv6",
62 [NETIF_F_HIGHDMA_BIT
] = "highdma",
63 [NETIF_F_FRAGLIST_BIT
] = "tx-scatter-gather-fraglist",
64 [NETIF_F_HW_VLAN_CTAG_TX_BIT
] = "tx-vlan-hw-insert",
66 [NETIF_F_HW_VLAN_CTAG_RX_BIT
] = "rx-vlan-hw-parse",
67 [NETIF_F_HW_VLAN_CTAG_FILTER_BIT
] = "rx-vlan-filter",
68 [NETIF_F_HW_VLAN_STAG_TX_BIT
] = "tx-vlan-stag-hw-insert",
69 [NETIF_F_HW_VLAN_STAG_RX_BIT
] = "rx-vlan-stag-hw-parse",
70 [NETIF_F_HW_VLAN_STAG_FILTER_BIT
] = "rx-vlan-stag-filter",
71 [NETIF_F_VLAN_CHALLENGED_BIT
] = "vlan-challenged",
72 [NETIF_F_GSO_BIT
] = "tx-generic-segmentation",
73 [NETIF_F_LLTX_BIT
] = "tx-lockless",
74 [NETIF_F_NETNS_LOCAL_BIT
] = "netns-local",
75 [NETIF_F_GRO_BIT
] = "rx-gro",
76 [NETIF_F_LRO_BIT
] = "rx-lro",
78 [NETIF_F_TSO_BIT
] = "tx-tcp-segmentation",
79 [NETIF_F_UFO_BIT
] = "tx-udp-fragmentation",
80 [NETIF_F_GSO_ROBUST_BIT
] = "tx-gso-robust",
81 [NETIF_F_TSO_ECN_BIT
] = "tx-tcp-ecn-segmentation",
82 [NETIF_F_TSO6_BIT
] = "tx-tcp6-segmentation",
83 [NETIF_F_FSO_BIT
] = "tx-fcoe-segmentation",
84 [NETIF_F_GSO_GRE_BIT
] = "tx-gre-segmentation",
85 [NETIF_F_GSO_IPIP_BIT
] = "tx-ipip-segmentation",
86 [NETIF_F_GSO_SIT_BIT
] = "tx-sit-segmentation",
87 [NETIF_F_GSO_UDP_TUNNEL_BIT
] = "tx-udp_tnl-segmentation",
89 [NETIF_F_FCOE_CRC_BIT
] = "tx-checksum-fcoe-crc",
90 [NETIF_F_SCTP_CSUM_BIT
] = "tx-checksum-sctp",
91 [NETIF_F_FCOE_MTU_BIT
] = "fcoe-mtu",
92 [NETIF_F_NTUPLE_BIT
] = "rx-ntuple-filter",
93 [NETIF_F_RXHASH_BIT
] = "rx-hashing",
94 [NETIF_F_RXCSUM_BIT
] = "rx-checksum",
95 [NETIF_F_NOCACHE_COPY_BIT
] = "tx-nocache-copy",
96 [NETIF_F_LOOPBACK_BIT
] = "loopback",
97 [NETIF_F_RXFCS_BIT
] = "rx-fcs",
98 [NETIF_F_RXALL_BIT
] = "rx-all",
99 [NETIF_F_HW_L2FW_DOFFLOAD_BIT
] = "l2-fwd-offload",
100 [NETIF_F_BUSY_POLL_BIT
] = "busy-poll",
101 [NETIF_F_HW_SWITCH_OFFLOAD_BIT
] = "hw-switch-offload",
105 rss_hash_func_strings
[ETH_RSS_HASH_FUNCS_COUNT
][ETH_GSTRING_LEN
] = {
106 [ETH_RSS_HASH_TOP_BIT
] = "toeplitz",
107 [ETH_RSS_HASH_XOR_BIT
] = "xor",
110 static int ethtool_get_features(struct net_device
*dev
, void __user
*useraddr
)
112 struct ethtool_gfeatures cmd
= {
113 .cmd
= ETHTOOL_GFEATURES
,
114 .size
= ETHTOOL_DEV_FEATURE_WORDS
,
116 struct ethtool_get_features_block features
[ETHTOOL_DEV_FEATURE_WORDS
];
117 u32 __user
*sizeaddr
;
121 /* in case feature bits run out again */
122 BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS
* sizeof(u32
) > sizeof(netdev_features_t
));
124 for (i
= 0; i
< ETHTOOL_DEV_FEATURE_WORDS
; ++i
) {
125 features
[i
].available
= (u32
)(dev
->hw_features
>> (32 * i
));
126 features
[i
].requested
= (u32
)(dev
->wanted_features
>> (32 * i
));
127 features
[i
].active
= (u32
)(dev
->features
>> (32 * i
));
128 features
[i
].never_changed
=
129 (u32
)(NETIF_F_NEVER_CHANGE
>> (32 * i
));
132 sizeaddr
= useraddr
+ offsetof(struct ethtool_gfeatures
, size
);
133 if (get_user(copy_size
, sizeaddr
))
136 if (copy_size
> ETHTOOL_DEV_FEATURE_WORDS
)
137 copy_size
= ETHTOOL_DEV_FEATURE_WORDS
;
139 if (copy_to_user(useraddr
, &cmd
, sizeof(cmd
)))
141 useraddr
+= sizeof(cmd
);
142 if (copy_to_user(useraddr
, features
, copy_size
* sizeof(*features
)))
148 static int ethtool_set_features(struct net_device
*dev
, void __user
*useraddr
)
150 struct ethtool_sfeatures cmd
;
151 struct ethtool_set_features_block features
[ETHTOOL_DEV_FEATURE_WORDS
];
152 netdev_features_t wanted
= 0, valid
= 0;
155 if (copy_from_user(&cmd
, useraddr
, sizeof(cmd
)))
157 useraddr
+= sizeof(cmd
);
159 if (cmd
.size
!= ETHTOOL_DEV_FEATURE_WORDS
)
162 if (copy_from_user(features
, useraddr
, sizeof(features
)))
165 for (i
= 0; i
< ETHTOOL_DEV_FEATURE_WORDS
; ++i
) {
166 valid
|= (netdev_features_t
)features
[i
].valid
<< (32 * i
);
167 wanted
|= (netdev_features_t
)features
[i
].requested
<< (32 * i
);
170 if (valid
& ~NETIF_F_ETHTOOL_BITS
)
173 if (valid
& ~dev
->hw_features
) {
174 valid
&= dev
->hw_features
;
175 ret
|= ETHTOOL_F_UNSUPPORTED
;
178 dev
->wanted_features
&= ~valid
;
179 dev
->wanted_features
|= wanted
& valid
;
180 __netdev_update_features(dev
);
182 if ((dev
->wanted_features
^ dev
->features
) & valid
)
183 ret
|= ETHTOOL_F_WISH
;
188 static int __ethtool_get_sset_count(struct net_device
*dev
, int sset
)
190 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
192 if (sset
== ETH_SS_FEATURES
)
193 return ARRAY_SIZE(netdev_features_strings
);
195 if (sset
== ETH_SS_RSS_HASH_FUNCS
)
196 return ARRAY_SIZE(rss_hash_func_strings
);
198 if (ops
->get_sset_count
&& ops
->get_strings
)
199 return ops
->get_sset_count(dev
, sset
);
204 static void __ethtool_get_strings(struct net_device
*dev
,
205 u32 stringset
, u8
*data
)
207 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
209 if (stringset
== ETH_SS_FEATURES
)
210 memcpy(data
, netdev_features_strings
,
211 sizeof(netdev_features_strings
));
212 else if (stringset
== ETH_SS_RSS_HASH_FUNCS
)
213 memcpy(data
, rss_hash_func_strings
,
214 sizeof(rss_hash_func_strings
));
216 /* ops->get_strings is valid because checked earlier */
217 ops
->get_strings(dev
, stringset
, data
);
220 static netdev_features_t
ethtool_get_feature_mask(u32 eth_cmd
)
222 /* feature masks of legacy discrete ethtool ops */
225 case ETHTOOL_GTXCSUM
:
226 case ETHTOOL_STXCSUM
:
227 return NETIF_F_ALL_CSUM
| NETIF_F_SCTP_CSUM
;
228 case ETHTOOL_GRXCSUM
:
229 case ETHTOOL_SRXCSUM
:
230 return NETIF_F_RXCSUM
;
236 return NETIF_F_ALL_TSO
;
251 static int ethtool_get_one_feature(struct net_device
*dev
,
252 char __user
*useraddr
, u32 ethcmd
)
254 netdev_features_t mask
= ethtool_get_feature_mask(ethcmd
);
255 struct ethtool_value edata
= {
257 .data
= !!(dev
->features
& mask
),
260 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
265 static int ethtool_set_one_feature(struct net_device
*dev
,
266 void __user
*useraddr
, u32 ethcmd
)
268 struct ethtool_value edata
;
269 netdev_features_t mask
;
271 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
274 mask
= ethtool_get_feature_mask(ethcmd
);
275 mask
&= dev
->hw_features
;
280 dev
->wanted_features
|= mask
;
282 dev
->wanted_features
&= ~mask
;
284 __netdev_update_features(dev
);
289 #define ETH_ALL_FLAGS (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
290 ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
291 #define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
292 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
295 static u32
__ethtool_get_flags(struct net_device
*dev
)
299 if (dev
->features
& NETIF_F_LRO
)
300 flags
|= ETH_FLAG_LRO
;
301 if (dev
->features
& NETIF_F_HW_VLAN_CTAG_RX
)
302 flags
|= ETH_FLAG_RXVLAN
;
303 if (dev
->features
& NETIF_F_HW_VLAN_CTAG_TX
)
304 flags
|= ETH_FLAG_TXVLAN
;
305 if (dev
->features
& NETIF_F_NTUPLE
)
306 flags
|= ETH_FLAG_NTUPLE
;
307 if (dev
->features
& NETIF_F_RXHASH
)
308 flags
|= ETH_FLAG_RXHASH
;
313 static int __ethtool_set_flags(struct net_device
*dev
, u32 data
)
315 netdev_features_t features
= 0, changed
;
317 if (data
& ~ETH_ALL_FLAGS
)
320 if (data
& ETH_FLAG_LRO
)
321 features
|= NETIF_F_LRO
;
322 if (data
& ETH_FLAG_RXVLAN
)
323 features
|= NETIF_F_HW_VLAN_CTAG_RX
;
324 if (data
& ETH_FLAG_TXVLAN
)
325 features
|= NETIF_F_HW_VLAN_CTAG_TX
;
326 if (data
& ETH_FLAG_NTUPLE
)
327 features
|= NETIF_F_NTUPLE
;
328 if (data
& ETH_FLAG_RXHASH
)
329 features
|= NETIF_F_RXHASH
;
331 /* allow changing only bits set in hw_features */
332 changed
= (features
^ dev
->features
) & ETH_ALL_FEATURES
;
333 if (changed
& ~dev
->hw_features
)
334 return (changed
& dev
->hw_features
) ? -EINVAL
: -EOPNOTSUPP
;
336 dev
->wanted_features
=
337 (dev
->wanted_features
& ~changed
) | (features
& changed
);
339 __netdev_update_features(dev
);
344 int __ethtool_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
348 if (!dev
->ethtool_ops
->get_settings
)
351 memset(cmd
, 0, sizeof(struct ethtool_cmd
));
352 cmd
->cmd
= ETHTOOL_GSET
;
353 return dev
->ethtool_ops
->get_settings(dev
, cmd
);
355 EXPORT_SYMBOL(__ethtool_get_settings
);
357 static int ethtool_get_settings(struct net_device
*dev
, void __user
*useraddr
)
360 struct ethtool_cmd cmd
;
362 err
= __ethtool_get_settings(dev
, &cmd
);
366 if (copy_to_user(useraddr
, &cmd
, sizeof(cmd
)))
371 static int ethtool_set_settings(struct net_device
*dev
, void __user
*useraddr
)
373 struct ethtool_cmd cmd
;
375 if (!dev
->ethtool_ops
->set_settings
)
378 if (copy_from_user(&cmd
, useraddr
, sizeof(cmd
)))
381 return dev
->ethtool_ops
->set_settings(dev
, &cmd
);
384 static noinline_for_stack
int ethtool_get_drvinfo(struct net_device
*dev
,
385 void __user
*useraddr
)
387 struct ethtool_drvinfo info
;
388 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
390 memset(&info
, 0, sizeof(info
));
391 info
.cmd
= ETHTOOL_GDRVINFO
;
392 if (ops
->get_drvinfo
) {
393 ops
->get_drvinfo(dev
, &info
);
394 } else if (dev
->dev
.parent
&& dev
->dev
.parent
->driver
) {
395 strlcpy(info
.bus_info
, dev_name(dev
->dev
.parent
),
396 sizeof(info
.bus_info
));
397 strlcpy(info
.driver
, dev
->dev
.parent
->driver
->name
,
398 sizeof(info
.driver
));
404 * this method of obtaining string set info is deprecated;
405 * Use ETHTOOL_GSSET_INFO instead.
407 if (ops
->get_sset_count
) {
410 rc
= ops
->get_sset_count(dev
, ETH_SS_TEST
);
412 info
.testinfo_len
= rc
;
413 rc
= ops
->get_sset_count(dev
, ETH_SS_STATS
);
416 rc
= ops
->get_sset_count(dev
, ETH_SS_PRIV_FLAGS
);
418 info
.n_priv_flags
= rc
;
420 if (ops
->get_regs_len
)
421 info
.regdump_len
= ops
->get_regs_len(dev
);
422 if (ops
->get_eeprom_len
)
423 info
.eedump_len
= ops
->get_eeprom_len(dev
);
425 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
430 static noinline_for_stack
int ethtool_get_sset_info(struct net_device
*dev
,
431 void __user
*useraddr
)
433 struct ethtool_sset_info info
;
435 int i
, idx
= 0, n_bits
= 0, ret
, rc
;
436 u32
*info_buf
= NULL
;
438 if (copy_from_user(&info
, useraddr
, sizeof(info
)))
441 /* store copy of mask, because we zero struct later on */
442 sset_mask
= info
.sset_mask
;
446 /* calculate size of return buffer */
447 n_bits
= hweight64(sset_mask
);
449 memset(&info
, 0, sizeof(info
));
450 info
.cmd
= ETHTOOL_GSSET_INFO
;
452 info_buf
= kzalloc(n_bits
* sizeof(u32
), GFP_USER
);
457 * fill return buffer based on input bitmask and successful
458 * get_sset_count return
460 for (i
= 0; i
< 64; i
++) {
461 if (!(sset_mask
& (1ULL << i
)))
464 rc
= __ethtool_get_sset_count(dev
, i
);
466 info
.sset_mask
|= (1ULL << i
);
467 info_buf
[idx
++] = rc
;
472 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
475 useraddr
+= offsetof(struct ethtool_sset_info
, data
);
476 if (copy_to_user(useraddr
, info_buf
, idx
* sizeof(u32
)))
486 static noinline_for_stack
int ethtool_set_rxnfc(struct net_device
*dev
,
487 u32 cmd
, void __user
*useraddr
)
489 struct ethtool_rxnfc info
;
490 size_t info_size
= sizeof(info
);
493 if (!dev
->ethtool_ops
->set_rxnfc
)
496 /* struct ethtool_rxnfc was originally defined for
497 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
498 * members. User-space might still be using that
500 if (cmd
== ETHTOOL_SRXFH
)
501 info_size
= (offsetof(struct ethtool_rxnfc
, data
) +
504 if (copy_from_user(&info
, useraddr
, info_size
))
507 rc
= dev
->ethtool_ops
->set_rxnfc(dev
, &info
);
511 if (cmd
== ETHTOOL_SRXCLSRLINS
&&
512 copy_to_user(useraddr
, &info
, info_size
))
518 static noinline_for_stack
int ethtool_get_rxnfc(struct net_device
*dev
,
519 u32 cmd
, void __user
*useraddr
)
521 struct ethtool_rxnfc info
;
522 size_t info_size
= sizeof(info
);
523 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
525 void *rule_buf
= NULL
;
530 /* struct ethtool_rxnfc was originally defined for
531 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
532 * members. User-space might still be using that
534 if (cmd
== ETHTOOL_GRXFH
)
535 info_size
= (offsetof(struct ethtool_rxnfc
, data
) +
538 if (copy_from_user(&info
, useraddr
, info_size
))
541 if (info
.cmd
== ETHTOOL_GRXCLSRLALL
) {
542 if (info
.rule_cnt
> 0) {
543 if (info
.rule_cnt
<= KMALLOC_MAX_SIZE
/ sizeof(u32
))
544 rule_buf
= kzalloc(info
.rule_cnt
* sizeof(u32
),
551 ret
= ops
->get_rxnfc(dev
, &info
, rule_buf
);
556 if (copy_to_user(useraddr
, &info
, info_size
))
560 useraddr
+= offsetof(struct ethtool_rxnfc
, rule_locs
);
561 if (copy_to_user(useraddr
, rule_buf
,
562 info
.rule_cnt
* sizeof(u32
)))
573 static int ethtool_copy_validate_indir(u32
*indir
, void __user
*useraddr
,
574 struct ethtool_rxnfc
*rx_rings
,
579 if (copy_from_user(indir
, useraddr
, size
* sizeof(indir
[0])))
582 /* Validate ring indices */
583 for (i
= 0; i
< size
; i
++)
584 if (indir
[i
] >= rx_rings
->data
)
590 u8 netdev_rss_key
[NETDEV_RSS_KEY_LEN
];
592 void netdev_rss_key_fill(void *buffer
, size_t len
)
594 BUG_ON(len
> sizeof(netdev_rss_key
));
595 net_get_random_once(netdev_rss_key
, sizeof(netdev_rss_key
));
596 memcpy(buffer
, netdev_rss_key
, len
);
598 EXPORT_SYMBOL(netdev_rss_key_fill
);
600 static noinline_for_stack
int ethtool_get_rxfh_indir(struct net_device
*dev
,
601 void __user
*useraddr
)
603 u32 user_size
, dev_size
;
607 if (!dev
->ethtool_ops
->get_rxfh_indir_size
||
608 !dev
->ethtool_ops
->get_rxfh
)
610 dev_size
= dev
->ethtool_ops
->get_rxfh_indir_size(dev
);
614 if (copy_from_user(&user_size
,
615 useraddr
+ offsetof(struct ethtool_rxfh_indir
, size
),
619 if (copy_to_user(useraddr
+ offsetof(struct ethtool_rxfh_indir
, size
),
620 &dev_size
, sizeof(dev_size
)))
623 /* If the user buffer size is 0, this is just a query for the
624 * device table size. Otherwise, if it's smaller than the
625 * device table size it's an error.
627 if (user_size
< dev_size
)
628 return user_size
== 0 ? 0 : -EINVAL
;
630 indir
= kcalloc(dev_size
, sizeof(indir
[0]), GFP_USER
);
634 ret
= dev
->ethtool_ops
->get_rxfh(dev
, indir
, NULL
, NULL
);
638 if (copy_to_user(useraddr
+
639 offsetof(struct ethtool_rxfh_indir
, ring_index
[0]),
640 indir
, dev_size
* sizeof(indir
[0])))
648 static noinline_for_stack
int ethtool_set_rxfh_indir(struct net_device
*dev
,
649 void __user
*useraddr
)
651 struct ethtool_rxnfc rx_rings
;
652 u32 user_size
, dev_size
, i
;
654 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
656 u32 ringidx_offset
= offsetof(struct ethtool_rxfh_indir
, ring_index
[0]);
658 if (!ops
->get_rxfh_indir_size
|| !ops
->set_rxfh
||
662 dev_size
= ops
->get_rxfh_indir_size(dev
);
666 if (copy_from_user(&user_size
,
667 useraddr
+ offsetof(struct ethtool_rxfh_indir
, size
),
671 if (user_size
!= 0 && user_size
!= dev_size
)
674 indir
= kcalloc(dev_size
, sizeof(indir
[0]), GFP_USER
);
678 rx_rings
.cmd
= ETHTOOL_GRXRINGS
;
679 ret
= ops
->get_rxnfc(dev
, &rx_rings
, NULL
);
683 if (user_size
== 0) {
684 for (i
= 0; i
< dev_size
; i
++)
685 indir
[i
] = ethtool_rxfh_indir_default(i
, rx_rings
.data
);
687 ret
= ethtool_copy_validate_indir(indir
,
688 useraddr
+ ringidx_offset
,
695 ret
= ops
->set_rxfh(dev
, indir
, NULL
, ETH_RSS_HASH_NO_CHANGE
);
702 static noinline_for_stack
int ethtool_get_rxfh(struct net_device
*dev
,
703 void __user
*useraddr
)
706 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
707 u32 user_indir_size
, user_key_size
;
708 u32 dev_indir_size
= 0, dev_key_size
= 0;
709 struct ethtool_rxfh rxfh
;
720 if (ops
->get_rxfh_indir_size
)
721 dev_indir_size
= ops
->get_rxfh_indir_size(dev
);
722 if (ops
->get_rxfh_key_size
)
723 dev_key_size
= ops
->get_rxfh_key_size(dev
);
725 if (copy_from_user(&rxfh
, useraddr
, sizeof(rxfh
)))
727 user_indir_size
= rxfh
.indir_size
;
728 user_key_size
= rxfh
.key_size
;
730 /* Check that reserved fields are 0 for now */
731 if (rxfh
.rss_context
|| rxfh
.rsvd8
[0] || rxfh
.rsvd8
[1] ||
732 rxfh
.rsvd8
[2] || rxfh
.rsvd32
)
735 rxfh
.indir_size
= dev_indir_size
;
736 rxfh
.key_size
= dev_key_size
;
737 if (copy_to_user(useraddr
, &rxfh
, sizeof(rxfh
)))
740 if ((user_indir_size
&& (user_indir_size
!= dev_indir_size
)) ||
741 (user_key_size
&& (user_key_size
!= dev_key_size
)))
744 indir_bytes
= user_indir_size
* sizeof(indir
[0]);
745 total_size
= indir_bytes
+ user_key_size
;
746 rss_config
= kzalloc(total_size
, GFP_USER
);
751 indir
= (u32
*)rss_config
;
754 hkey
= rss_config
+ indir_bytes
;
756 ret
= dev
->ethtool_ops
->get_rxfh(dev
, indir
, hkey
, &dev_hfunc
);
760 if (copy_to_user(useraddr
+ offsetof(struct ethtool_rxfh
, hfunc
),
761 &dev_hfunc
, sizeof(rxfh
.hfunc
))) {
763 } else if (copy_to_user(useraddr
+
764 offsetof(struct ethtool_rxfh
, rss_config
[0]),
765 rss_config
, total_size
)) {
774 static noinline_for_stack
int ethtool_set_rxfh(struct net_device
*dev
,
775 void __user
*useraddr
)
778 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
779 struct ethtool_rxnfc rx_rings
;
780 struct ethtool_rxfh rxfh
;
781 u32 dev_indir_size
= 0, dev_key_size
= 0, i
;
782 u32
*indir
= NULL
, indir_bytes
= 0;
785 u32 rss_cfg_offset
= offsetof(struct ethtool_rxfh
, rss_config
[0]);
787 if (!ops
->get_rxnfc
|| !ops
->set_rxfh
)
790 if (ops
->get_rxfh_indir_size
)
791 dev_indir_size
= ops
->get_rxfh_indir_size(dev
);
792 if (ops
->get_rxfh_key_size
)
793 dev_key_size
= dev
->ethtool_ops
->get_rxfh_key_size(dev
);
795 if (copy_from_user(&rxfh
, useraddr
, sizeof(rxfh
)))
798 /* Check that reserved fields are 0 for now */
799 if (rxfh
.rss_context
|| rxfh
.rsvd8
[0] || rxfh
.rsvd8
[1] ||
800 rxfh
.rsvd8
[2] || rxfh
.rsvd32
)
803 /* If either indir, hash key or function is valid, proceed further.
804 * Must request at least one change: indir size, hash key or function.
806 if ((rxfh
.indir_size
&&
807 rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
&&
808 rxfh
.indir_size
!= dev_indir_size
) ||
809 (rxfh
.key_size
&& (rxfh
.key_size
!= dev_key_size
)) ||
810 (rxfh
.indir_size
== ETH_RXFH_INDIR_NO_CHANGE
&&
811 rxfh
.key_size
== 0 && rxfh
.hfunc
== ETH_RSS_HASH_NO_CHANGE
))
814 if (rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
)
815 indir_bytes
= dev_indir_size
* sizeof(indir
[0]);
817 rss_config
= kzalloc(indir_bytes
+ rxfh
.key_size
, GFP_USER
);
821 rx_rings
.cmd
= ETHTOOL_GRXRINGS
;
822 ret
= ops
->get_rxnfc(dev
, &rx_rings
, NULL
);
826 /* rxfh.indir_size == 0 means reset the indir table to default.
827 * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
829 if (rxfh
.indir_size
&&
830 rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
) {
831 indir
= (u32
*)rss_config
;
832 ret
= ethtool_copy_validate_indir(indir
,
833 useraddr
+ rss_cfg_offset
,
838 } else if (rxfh
.indir_size
== 0) {
839 indir
= (u32
*)rss_config
;
840 for (i
= 0; i
< dev_indir_size
; i
++)
841 indir
[i
] = ethtool_rxfh_indir_default(i
, rx_rings
.data
);
845 hkey
= rss_config
+ indir_bytes
;
846 if (copy_from_user(hkey
,
847 useraddr
+ rss_cfg_offset
+ indir_bytes
,
854 ret
= ops
->set_rxfh(dev
, indir
, hkey
, rxfh
.hfunc
);
861 static int ethtool_get_regs(struct net_device
*dev
, char __user
*useraddr
)
863 struct ethtool_regs regs
;
864 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
868 if (!ops
->get_regs
|| !ops
->get_regs_len
)
871 if (copy_from_user(®s
, useraddr
, sizeof(regs
)))
874 reglen
= ops
->get_regs_len(dev
);
875 if (regs
.len
> reglen
)
878 regbuf
= vzalloc(reglen
);
879 if (reglen
&& !regbuf
)
882 ops
->get_regs(dev
, ®s
, regbuf
);
885 if (copy_to_user(useraddr
, ®s
, sizeof(regs
)))
887 useraddr
+= offsetof(struct ethtool_regs
, data
);
888 if (regbuf
&& copy_to_user(useraddr
, regbuf
, regs
.len
))
897 static int ethtool_reset(struct net_device
*dev
, char __user
*useraddr
)
899 struct ethtool_value reset
;
902 if (!dev
->ethtool_ops
->reset
)
905 if (copy_from_user(&reset
, useraddr
, sizeof(reset
)))
908 ret
= dev
->ethtool_ops
->reset(dev
, &reset
.data
);
912 if (copy_to_user(useraddr
, &reset
, sizeof(reset
)))
917 static int ethtool_get_wol(struct net_device
*dev
, char __user
*useraddr
)
919 struct ethtool_wolinfo wol
= { .cmd
= ETHTOOL_GWOL
};
921 if (!dev
->ethtool_ops
->get_wol
)
924 dev
->ethtool_ops
->get_wol(dev
, &wol
);
926 if (copy_to_user(useraddr
, &wol
, sizeof(wol
)))
931 static int ethtool_set_wol(struct net_device
*dev
, char __user
*useraddr
)
933 struct ethtool_wolinfo wol
;
935 if (!dev
->ethtool_ops
->set_wol
)
938 if (copy_from_user(&wol
, useraddr
, sizeof(wol
)))
941 return dev
->ethtool_ops
->set_wol(dev
, &wol
);
944 static int ethtool_get_eee(struct net_device
*dev
, char __user
*useraddr
)
946 struct ethtool_eee edata
;
949 if (!dev
->ethtool_ops
->get_eee
)
952 memset(&edata
, 0, sizeof(struct ethtool_eee
));
953 edata
.cmd
= ETHTOOL_GEEE
;
954 rc
= dev
->ethtool_ops
->get_eee(dev
, &edata
);
959 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
965 static int ethtool_set_eee(struct net_device
*dev
, char __user
*useraddr
)
967 struct ethtool_eee edata
;
969 if (!dev
->ethtool_ops
->set_eee
)
972 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
975 return dev
->ethtool_ops
->set_eee(dev
, &edata
);
978 static int ethtool_nway_reset(struct net_device
*dev
)
980 if (!dev
->ethtool_ops
->nway_reset
)
983 return dev
->ethtool_ops
->nway_reset(dev
);
986 static int ethtool_get_link(struct net_device
*dev
, char __user
*useraddr
)
988 struct ethtool_value edata
= { .cmd
= ETHTOOL_GLINK
};
990 if (!dev
->ethtool_ops
->get_link
)
993 edata
.data
= netif_running(dev
) && dev
->ethtool_ops
->get_link(dev
);
995 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
1000 static int ethtool_get_any_eeprom(struct net_device
*dev
, void __user
*useraddr
,
1001 int (*getter
)(struct net_device
*,
1002 struct ethtool_eeprom
*, u8
*),
1005 struct ethtool_eeprom eeprom
;
1006 void __user
*userbuf
= useraddr
+ sizeof(eeprom
);
1007 u32 bytes_remaining
;
1011 if (copy_from_user(&eeprom
, useraddr
, sizeof(eeprom
)))
1014 /* Check for wrap and zero */
1015 if (eeprom
.offset
+ eeprom
.len
<= eeprom
.offset
)
1018 /* Check for exceeding total eeprom len */
1019 if (eeprom
.offset
+ eeprom
.len
> total_len
)
1022 data
= kmalloc(PAGE_SIZE
, GFP_USER
);
1026 bytes_remaining
= eeprom
.len
;
1027 while (bytes_remaining
> 0) {
1028 eeprom
.len
= min(bytes_remaining
, (u32
)PAGE_SIZE
);
1030 ret
= getter(dev
, &eeprom
, data
);
1033 if (copy_to_user(userbuf
, data
, eeprom
.len
)) {
1037 userbuf
+= eeprom
.len
;
1038 eeprom
.offset
+= eeprom
.len
;
1039 bytes_remaining
-= eeprom
.len
;
1042 eeprom
.len
= userbuf
- (useraddr
+ sizeof(eeprom
));
1043 eeprom
.offset
-= eeprom
.len
;
1044 if (copy_to_user(useraddr
, &eeprom
, sizeof(eeprom
)))
1051 static int ethtool_get_eeprom(struct net_device
*dev
, void __user
*useraddr
)
1053 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1055 if (!ops
->get_eeprom
|| !ops
->get_eeprom_len
||
1056 !ops
->get_eeprom_len(dev
))
1059 return ethtool_get_any_eeprom(dev
, useraddr
, ops
->get_eeprom
,
1060 ops
->get_eeprom_len(dev
));
1063 static int ethtool_set_eeprom(struct net_device
*dev
, void __user
*useraddr
)
1065 struct ethtool_eeprom eeprom
;
1066 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1067 void __user
*userbuf
= useraddr
+ sizeof(eeprom
);
1068 u32 bytes_remaining
;
1072 if (!ops
->set_eeprom
|| !ops
->get_eeprom_len
||
1073 !ops
->get_eeprom_len(dev
))
1076 if (copy_from_user(&eeprom
, useraddr
, sizeof(eeprom
)))
1079 /* Check for wrap and zero */
1080 if (eeprom
.offset
+ eeprom
.len
<= eeprom
.offset
)
1083 /* Check for exceeding total eeprom len */
1084 if (eeprom
.offset
+ eeprom
.len
> ops
->get_eeprom_len(dev
))
1087 data
= kmalloc(PAGE_SIZE
, GFP_USER
);
1091 bytes_remaining
= eeprom
.len
;
1092 while (bytes_remaining
> 0) {
1093 eeprom
.len
= min(bytes_remaining
, (u32
)PAGE_SIZE
);
1095 if (copy_from_user(data
, userbuf
, eeprom
.len
)) {
1099 ret
= ops
->set_eeprom(dev
, &eeprom
, data
);
1102 userbuf
+= eeprom
.len
;
1103 eeprom
.offset
+= eeprom
.len
;
1104 bytes_remaining
-= eeprom
.len
;
1111 static noinline_for_stack
int ethtool_get_coalesce(struct net_device
*dev
,
1112 void __user
*useraddr
)
1114 struct ethtool_coalesce coalesce
= { .cmd
= ETHTOOL_GCOALESCE
};
1116 if (!dev
->ethtool_ops
->get_coalesce
)
1119 dev
->ethtool_ops
->get_coalesce(dev
, &coalesce
);
1121 if (copy_to_user(useraddr
, &coalesce
, sizeof(coalesce
)))
1126 static noinline_for_stack
int ethtool_set_coalesce(struct net_device
*dev
,
1127 void __user
*useraddr
)
1129 struct ethtool_coalesce coalesce
;
1131 if (!dev
->ethtool_ops
->set_coalesce
)
1134 if (copy_from_user(&coalesce
, useraddr
, sizeof(coalesce
)))
1137 return dev
->ethtool_ops
->set_coalesce(dev
, &coalesce
);
1140 static int ethtool_get_ringparam(struct net_device
*dev
, void __user
*useraddr
)
1142 struct ethtool_ringparam ringparam
= { .cmd
= ETHTOOL_GRINGPARAM
};
1144 if (!dev
->ethtool_ops
->get_ringparam
)
1147 dev
->ethtool_ops
->get_ringparam(dev
, &ringparam
);
1149 if (copy_to_user(useraddr
, &ringparam
, sizeof(ringparam
)))
1154 static int ethtool_set_ringparam(struct net_device
*dev
, void __user
*useraddr
)
1156 struct ethtool_ringparam ringparam
;
1158 if (!dev
->ethtool_ops
->set_ringparam
)
1161 if (copy_from_user(&ringparam
, useraddr
, sizeof(ringparam
)))
1164 return dev
->ethtool_ops
->set_ringparam(dev
, &ringparam
);
1167 static noinline_for_stack
int ethtool_get_channels(struct net_device
*dev
,
1168 void __user
*useraddr
)
1170 struct ethtool_channels channels
= { .cmd
= ETHTOOL_GCHANNELS
};
1172 if (!dev
->ethtool_ops
->get_channels
)
1175 dev
->ethtool_ops
->get_channels(dev
, &channels
);
1177 if (copy_to_user(useraddr
, &channels
, sizeof(channels
)))
1182 static noinline_for_stack
int ethtool_set_channels(struct net_device
*dev
,
1183 void __user
*useraddr
)
1185 struct ethtool_channels channels
;
1187 if (!dev
->ethtool_ops
->set_channels
)
1190 if (copy_from_user(&channels
, useraddr
, sizeof(channels
)))
1193 return dev
->ethtool_ops
->set_channels(dev
, &channels
);
1196 static int ethtool_get_pauseparam(struct net_device
*dev
, void __user
*useraddr
)
1198 struct ethtool_pauseparam pauseparam
= { ETHTOOL_GPAUSEPARAM
};
1200 if (!dev
->ethtool_ops
->get_pauseparam
)
1203 dev
->ethtool_ops
->get_pauseparam(dev
, &pauseparam
);
1205 if (copy_to_user(useraddr
, &pauseparam
, sizeof(pauseparam
)))
1210 static int ethtool_set_pauseparam(struct net_device
*dev
, void __user
*useraddr
)
1212 struct ethtool_pauseparam pauseparam
;
1214 if (!dev
->ethtool_ops
->set_pauseparam
)
1217 if (copy_from_user(&pauseparam
, useraddr
, sizeof(pauseparam
)))
1220 return dev
->ethtool_ops
->set_pauseparam(dev
, &pauseparam
);
1223 static int ethtool_self_test(struct net_device
*dev
, char __user
*useraddr
)
1225 struct ethtool_test test
;
1226 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1230 if (!ops
->self_test
|| !ops
->get_sset_count
)
1233 test_len
= ops
->get_sset_count(dev
, ETH_SS_TEST
);
1236 WARN_ON(test_len
== 0);
1238 if (copy_from_user(&test
, useraddr
, sizeof(test
)))
1241 test
.len
= test_len
;
1242 data
= kmalloc(test_len
* sizeof(u64
), GFP_USER
);
1246 ops
->self_test(dev
, &test
, data
);
1249 if (copy_to_user(useraddr
, &test
, sizeof(test
)))
1251 useraddr
+= sizeof(test
);
1252 if (copy_to_user(useraddr
, data
, test
.len
* sizeof(u64
)))
1261 static int ethtool_get_strings(struct net_device
*dev
, void __user
*useraddr
)
1263 struct ethtool_gstrings gstrings
;
1267 if (copy_from_user(&gstrings
, useraddr
, sizeof(gstrings
)))
1270 ret
= __ethtool_get_sset_count(dev
, gstrings
.string_set
);
1276 data
= kmalloc(gstrings
.len
* ETH_GSTRING_LEN
, GFP_USER
);
1280 __ethtool_get_strings(dev
, gstrings
.string_set
, data
);
1283 if (copy_to_user(useraddr
, &gstrings
, sizeof(gstrings
)))
1285 useraddr
+= sizeof(gstrings
);
1286 if (copy_to_user(useraddr
, data
, gstrings
.len
* ETH_GSTRING_LEN
))
1295 static int ethtool_phys_id(struct net_device
*dev
, void __user
*useraddr
)
1297 struct ethtool_value id
;
1299 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1302 if (!ops
->set_phys_id
)
1308 if (copy_from_user(&id
, useraddr
, sizeof(id
)))
1311 rc
= ops
->set_phys_id(dev
, ETHTOOL_ID_ACTIVE
);
1315 /* Drop the RTNL lock while waiting, but prevent reentry or
1316 * removal of the device.
1323 /* Driver will handle this itself */
1324 schedule_timeout_interruptible(
1325 id
.data
? (id
.data
* HZ
) : MAX_SCHEDULE_TIMEOUT
);
1327 /* Driver expects to be called at twice the frequency in rc */
1328 int n
= rc
* 2, i
, interval
= HZ
/ n
;
1330 /* Count down seconds */
1332 /* Count down iterations per second */
1336 rc
= ops
->set_phys_id(dev
,
1337 (i
& 1) ? ETHTOOL_ID_OFF
: ETHTOOL_ID_ON
);
1341 schedule_timeout_interruptible(interval
);
1342 } while (!signal_pending(current
) && --i
!= 0);
1343 } while (!signal_pending(current
) &&
1344 (id
.data
== 0 || --id
.data
!= 0));
1351 (void) ops
->set_phys_id(dev
, ETHTOOL_ID_INACTIVE
);
1355 static int ethtool_get_stats(struct net_device
*dev
, void __user
*useraddr
)
1357 struct ethtool_stats stats
;
1358 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1362 if (!ops
->get_ethtool_stats
|| !ops
->get_sset_count
)
1365 n_stats
= ops
->get_sset_count(dev
, ETH_SS_STATS
);
1368 WARN_ON(n_stats
== 0);
1370 if (copy_from_user(&stats
, useraddr
, sizeof(stats
)))
1373 stats
.n_stats
= n_stats
;
1374 data
= kmalloc(n_stats
* sizeof(u64
), GFP_USER
);
1378 ops
->get_ethtool_stats(dev
, &stats
, data
);
1381 if (copy_to_user(useraddr
, &stats
, sizeof(stats
)))
1383 useraddr
+= sizeof(stats
);
1384 if (copy_to_user(useraddr
, data
, stats
.n_stats
* sizeof(u64
)))
1393 static int ethtool_get_perm_addr(struct net_device
*dev
, void __user
*useraddr
)
1395 struct ethtool_perm_addr epaddr
;
1397 if (copy_from_user(&epaddr
, useraddr
, sizeof(epaddr
)))
1400 if (epaddr
.size
< dev
->addr_len
)
1402 epaddr
.size
= dev
->addr_len
;
1404 if (copy_to_user(useraddr
, &epaddr
, sizeof(epaddr
)))
1406 useraddr
+= sizeof(epaddr
);
1407 if (copy_to_user(useraddr
, dev
->perm_addr
, epaddr
.size
))
1412 static int ethtool_get_value(struct net_device
*dev
, char __user
*useraddr
,
1413 u32 cmd
, u32 (*actor
)(struct net_device
*))
1415 struct ethtool_value edata
= { .cmd
= cmd
};
1420 edata
.data
= actor(dev
);
1422 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
1427 static int ethtool_set_value_void(struct net_device
*dev
, char __user
*useraddr
,
1428 void (*actor
)(struct net_device
*, u32
))
1430 struct ethtool_value edata
;
1435 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
1438 actor(dev
, edata
.data
);
1442 static int ethtool_set_value(struct net_device
*dev
, char __user
*useraddr
,
1443 int (*actor
)(struct net_device
*, u32
))
1445 struct ethtool_value edata
;
1450 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
1453 return actor(dev
, edata
.data
);
1456 static noinline_for_stack
int ethtool_flash_device(struct net_device
*dev
,
1457 char __user
*useraddr
)
1459 struct ethtool_flash efl
;
1461 if (copy_from_user(&efl
, useraddr
, sizeof(efl
)))
1464 if (!dev
->ethtool_ops
->flash_device
)
1467 efl
.data
[ETHTOOL_FLASH_MAX_FILENAME
- 1] = 0;
1469 return dev
->ethtool_ops
->flash_device(dev
, &efl
);
1472 static int ethtool_set_dump(struct net_device
*dev
,
1473 void __user
*useraddr
)
1475 struct ethtool_dump dump
;
1477 if (!dev
->ethtool_ops
->set_dump
)
1480 if (copy_from_user(&dump
, useraddr
, sizeof(dump
)))
1483 return dev
->ethtool_ops
->set_dump(dev
, &dump
);
1486 static int ethtool_get_dump_flag(struct net_device
*dev
,
1487 void __user
*useraddr
)
1490 struct ethtool_dump dump
;
1491 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1493 if (!ops
->get_dump_flag
)
1496 if (copy_from_user(&dump
, useraddr
, sizeof(dump
)))
1499 ret
= ops
->get_dump_flag(dev
, &dump
);
1503 if (copy_to_user(useraddr
, &dump
, sizeof(dump
)))
1508 static int ethtool_get_dump_data(struct net_device
*dev
,
1509 void __user
*useraddr
)
1513 struct ethtool_dump dump
, tmp
;
1514 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1517 if (!ops
->get_dump_data
|| !ops
->get_dump_flag
)
1520 if (copy_from_user(&dump
, useraddr
, sizeof(dump
)))
1523 memset(&tmp
, 0, sizeof(tmp
));
1524 tmp
.cmd
= ETHTOOL_GET_DUMP_FLAG
;
1525 ret
= ops
->get_dump_flag(dev
, &tmp
);
1529 len
= min(tmp
.len
, dump
.len
);
1533 /* Don't ever let the driver think there's more space available
1534 * than it requested with .get_dump_flag().
1538 /* Always allocate enough space to hold the whole thing so that the
1539 * driver does not need to check the length and bother with partial
1542 data
= vzalloc(tmp
.len
);
1545 ret
= ops
->get_dump_data(dev
, &dump
, data
);
1549 /* There are two sane possibilities:
1550 * 1. The driver's .get_dump_data() does not touch dump.len.
1551 * 2. Or it may set dump.len to how much it really writes, which
1552 * should be tmp.len (or len if it can do a partial dump).
1553 * In any case respond to userspace with the actual length of data
1556 WARN_ON(dump
.len
!= len
&& dump
.len
!= tmp
.len
);
1559 if (copy_to_user(useraddr
, &dump
, sizeof(dump
))) {
1563 useraddr
+= offsetof(struct ethtool_dump
, data
);
1564 if (copy_to_user(useraddr
, data
, len
))
1571 static int ethtool_get_ts_info(struct net_device
*dev
, void __user
*useraddr
)
1574 struct ethtool_ts_info info
;
1575 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1576 struct phy_device
*phydev
= dev
->phydev
;
1578 memset(&info
, 0, sizeof(info
));
1579 info
.cmd
= ETHTOOL_GET_TS_INFO
;
1581 if (phydev
&& phydev
->drv
&& phydev
->drv
->ts_info
) {
1582 err
= phydev
->drv
->ts_info(phydev
, &info
);
1583 } else if (ops
->get_ts_info
) {
1584 err
= ops
->get_ts_info(dev
, &info
);
1586 info
.so_timestamping
=
1587 SOF_TIMESTAMPING_RX_SOFTWARE
|
1588 SOF_TIMESTAMPING_SOFTWARE
;
1589 info
.phc_index
= -1;
1595 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
1601 static int __ethtool_get_module_info(struct net_device
*dev
,
1602 struct ethtool_modinfo
*modinfo
)
1604 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1605 struct phy_device
*phydev
= dev
->phydev
;
1607 if (phydev
&& phydev
->drv
&& phydev
->drv
->module_info
)
1608 return phydev
->drv
->module_info(phydev
, modinfo
);
1610 if (ops
->get_module_info
)
1611 return ops
->get_module_info(dev
, modinfo
);
1616 static int ethtool_get_module_info(struct net_device
*dev
,
1617 void __user
*useraddr
)
1620 struct ethtool_modinfo modinfo
;
1622 if (copy_from_user(&modinfo
, useraddr
, sizeof(modinfo
)))
1625 ret
= __ethtool_get_module_info(dev
, &modinfo
);
1629 if (copy_to_user(useraddr
, &modinfo
, sizeof(modinfo
)))
1635 static int __ethtool_get_module_eeprom(struct net_device
*dev
,
1636 struct ethtool_eeprom
*ee
, u8
*data
)
1638 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1639 struct phy_device
*phydev
= dev
->phydev
;
1641 if (phydev
&& phydev
->drv
&& phydev
->drv
->module_eeprom
)
1642 return phydev
->drv
->module_eeprom(phydev
, ee
, data
);
1644 if (ops
->get_module_eeprom
)
1645 return ops
->get_module_eeprom(dev
, ee
, data
);
1650 static int ethtool_get_module_eeprom(struct net_device
*dev
,
1651 void __user
*useraddr
)
1654 struct ethtool_modinfo modinfo
;
1656 ret
= __ethtool_get_module_info(dev
, &modinfo
);
1660 return ethtool_get_any_eeprom(dev
, useraddr
,
1661 __ethtool_get_module_eeprom
,
1662 modinfo
.eeprom_len
);
1665 static int ethtool_tunable_valid(const struct ethtool_tunable
*tuna
)
1668 case ETHTOOL_RX_COPYBREAK
:
1669 case ETHTOOL_TX_COPYBREAK
:
1670 if (tuna
->len
!= sizeof(u32
) ||
1671 tuna
->type_id
!= ETHTOOL_TUNABLE_U32
)
1681 static int ethtool_get_tunable(struct net_device
*dev
, void __user
*useraddr
)
1684 struct ethtool_tunable tuna
;
1685 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1688 if (!ops
->get_tunable
)
1690 if (copy_from_user(&tuna
, useraddr
, sizeof(tuna
)))
1692 ret
= ethtool_tunable_valid(&tuna
);
1695 data
= kmalloc(tuna
.len
, GFP_USER
);
1698 ret
= ops
->get_tunable(dev
, &tuna
, data
);
1701 useraddr
+= sizeof(tuna
);
1703 if (copy_to_user(useraddr
, data
, tuna
.len
))
1712 static int ethtool_set_tunable(struct net_device
*dev
, void __user
*useraddr
)
1715 struct ethtool_tunable tuna
;
1716 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1719 if (!ops
->set_tunable
)
1721 if (copy_from_user(&tuna
, useraddr
, sizeof(tuna
)))
1723 ret
= ethtool_tunable_valid(&tuna
);
1726 data
= kmalloc(tuna
.len
, GFP_USER
);
1729 useraddr
+= sizeof(tuna
);
1731 if (copy_from_user(data
, useraddr
, tuna
.len
))
1733 ret
= ops
->set_tunable(dev
, &tuna
, data
);
1740 /* The main entry point in this file. Called from net/core/dev_ioctl.c */
1742 int dev_ethtool(struct net
*net
, struct ifreq
*ifr
)
1744 struct net_device
*dev
= __dev_get_by_name(net
, ifr
->ifr_name
);
1745 void __user
*useraddr
= ifr
->ifr_data
;
1748 netdev_features_t old_features
;
1750 if (!dev
|| !netif_device_present(dev
))
1753 if (copy_from_user(ðcmd
, useraddr
, sizeof(ethcmd
)))
1756 /* Allow some commands to be done by anyone */
1759 case ETHTOOL_GDRVINFO
:
1760 case ETHTOOL_GMSGLVL
:
1762 case ETHTOOL_GCOALESCE
:
1763 case ETHTOOL_GRINGPARAM
:
1764 case ETHTOOL_GPAUSEPARAM
:
1765 case ETHTOOL_GRXCSUM
:
1766 case ETHTOOL_GTXCSUM
:
1768 case ETHTOOL_GSSET_INFO
:
1769 case ETHTOOL_GSTRINGS
:
1770 case ETHTOOL_GSTATS
:
1772 case ETHTOOL_GPERMADDR
:
1776 case ETHTOOL_GFLAGS
:
1777 case ETHTOOL_GPFLAGS
:
1779 case ETHTOOL_GRXRINGS
:
1780 case ETHTOOL_GRXCLSRLCNT
:
1781 case ETHTOOL_GRXCLSRULE
:
1782 case ETHTOOL_GRXCLSRLALL
:
1783 case ETHTOOL_GRXFHINDIR
:
1785 case ETHTOOL_GFEATURES
:
1786 case ETHTOOL_GCHANNELS
:
1787 case ETHTOOL_GET_TS_INFO
:
1789 case ETHTOOL_GTUNABLE
:
1792 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
1796 if (dev
->ethtool_ops
->begin
) {
1797 rc
= dev
->ethtool_ops
->begin(dev
);
1801 old_features
= dev
->features
;
1805 rc
= ethtool_get_settings(dev
, useraddr
);
1808 rc
= ethtool_set_settings(dev
, useraddr
);
1810 case ETHTOOL_GDRVINFO
:
1811 rc
= ethtool_get_drvinfo(dev
, useraddr
);
1814 rc
= ethtool_get_regs(dev
, useraddr
);
1817 rc
= ethtool_get_wol(dev
, useraddr
);
1820 rc
= ethtool_set_wol(dev
, useraddr
);
1822 case ETHTOOL_GMSGLVL
:
1823 rc
= ethtool_get_value(dev
, useraddr
, ethcmd
,
1824 dev
->ethtool_ops
->get_msglevel
);
1826 case ETHTOOL_SMSGLVL
:
1827 rc
= ethtool_set_value_void(dev
, useraddr
,
1828 dev
->ethtool_ops
->set_msglevel
);
1831 rc
= ethtool_get_eee(dev
, useraddr
);
1834 rc
= ethtool_set_eee(dev
, useraddr
);
1836 case ETHTOOL_NWAY_RST
:
1837 rc
= ethtool_nway_reset(dev
);
1840 rc
= ethtool_get_link(dev
, useraddr
);
1842 case ETHTOOL_GEEPROM
:
1843 rc
= ethtool_get_eeprom(dev
, useraddr
);
1845 case ETHTOOL_SEEPROM
:
1846 rc
= ethtool_set_eeprom(dev
, useraddr
);
1848 case ETHTOOL_GCOALESCE
:
1849 rc
= ethtool_get_coalesce(dev
, useraddr
);
1851 case ETHTOOL_SCOALESCE
:
1852 rc
= ethtool_set_coalesce(dev
, useraddr
);
1854 case ETHTOOL_GRINGPARAM
:
1855 rc
= ethtool_get_ringparam(dev
, useraddr
);
1857 case ETHTOOL_SRINGPARAM
:
1858 rc
= ethtool_set_ringparam(dev
, useraddr
);
1860 case ETHTOOL_GPAUSEPARAM
:
1861 rc
= ethtool_get_pauseparam(dev
, useraddr
);
1863 case ETHTOOL_SPAUSEPARAM
:
1864 rc
= ethtool_set_pauseparam(dev
, useraddr
);
1867 rc
= ethtool_self_test(dev
, useraddr
);
1869 case ETHTOOL_GSTRINGS
:
1870 rc
= ethtool_get_strings(dev
, useraddr
);
1872 case ETHTOOL_PHYS_ID
:
1873 rc
= ethtool_phys_id(dev
, useraddr
);
1875 case ETHTOOL_GSTATS
:
1876 rc
= ethtool_get_stats(dev
, useraddr
);
1878 case ETHTOOL_GPERMADDR
:
1879 rc
= ethtool_get_perm_addr(dev
, useraddr
);
1881 case ETHTOOL_GFLAGS
:
1882 rc
= ethtool_get_value(dev
, useraddr
, ethcmd
,
1883 __ethtool_get_flags
);
1885 case ETHTOOL_SFLAGS
:
1886 rc
= ethtool_set_value(dev
, useraddr
, __ethtool_set_flags
);
1888 case ETHTOOL_GPFLAGS
:
1889 rc
= ethtool_get_value(dev
, useraddr
, ethcmd
,
1890 dev
->ethtool_ops
->get_priv_flags
);
1892 case ETHTOOL_SPFLAGS
:
1893 rc
= ethtool_set_value(dev
, useraddr
,
1894 dev
->ethtool_ops
->set_priv_flags
);
1897 case ETHTOOL_GRXRINGS
:
1898 case ETHTOOL_GRXCLSRLCNT
:
1899 case ETHTOOL_GRXCLSRULE
:
1900 case ETHTOOL_GRXCLSRLALL
:
1901 rc
= ethtool_get_rxnfc(dev
, ethcmd
, useraddr
);
1904 case ETHTOOL_SRXCLSRLDEL
:
1905 case ETHTOOL_SRXCLSRLINS
:
1906 rc
= ethtool_set_rxnfc(dev
, ethcmd
, useraddr
);
1908 case ETHTOOL_FLASHDEV
:
1909 rc
= ethtool_flash_device(dev
, useraddr
);
1912 rc
= ethtool_reset(dev
, useraddr
);
1914 case ETHTOOL_GSSET_INFO
:
1915 rc
= ethtool_get_sset_info(dev
, useraddr
);
1917 case ETHTOOL_GRXFHINDIR
:
1918 rc
= ethtool_get_rxfh_indir(dev
, useraddr
);
1920 case ETHTOOL_SRXFHINDIR
:
1921 rc
= ethtool_set_rxfh_indir(dev
, useraddr
);
1924 rc
= ethtool_get_rxfh(dev
, useraddr
);
1927 rc
= ethtool_set_rxfh(dev
, useraddr
);
1929 case ETHTOOL_GFEATURES
:
1930 rc
= ethtool_get_features(dev
, useraddr
);
1932 case ETHTOOL_SFEATURES
:
1933 rc
= ethtool_set_features(dev
, useraddr
);
1935 case ETHTOOL_GTXCSUM
:
1936 case ETHTOOL_GRXCSUM
:
1942 rc
= ethtool_get_one_feature(dev
, useraddr
, ethcmd
);
1944 case ETHTOOL_STXCSUM
:
1945 case ETHTOOL_SRXCSUM
:
1951 rc
= ethtool_set_one_feature(dev
, useraddr
, ethcmd
);
1953 case ETHTOOL_GCHANNELS
:
1954 rc
= ethtool_get_channels(dev
, useraddr
);
1956 case ETHTOOL_SCHANNELS
:
1957 rc
= ethtool_set_channels(dev
, useraddr
);
1959 case ETHTOOL_SET_DUMP
:
1960 rc
= ethtool_set_dump(dev
, useraddr
);
1962 case ETHTOOL_GET_DUMP_FLAG
:
1963 rc
= ethtool_get_dump_flag(dev
, useraddr
);
1965 case ETHTOOL_GET_DUMP_DATA
:
1966 rc
= ethtool_get_dump_data(dev
, useraddr
);
1968 case ETHTOOL_GET_TS_INFO
:
1969 rc
= ethtool_get_ts_info(dev
, useraddr
);
1971 case ETHTOOL_GMODULEINFO
:
1972 rc
= ethtool_get_module_info(dev
, useraddr
);
1974 case ETHTOOL_GMODULEEEPROM
:
1975 rc
= ethtool_get_module_eeprom(dev
, useraddr
);
1977 case ETHTOOL_GTUNABLE
:
1978 rc
= ethtool_get_tunable(dev
, useraddr
);
1980 case ETHTOOL_STUNABLE
:
1981 rc
= ethtool_set_tunable(dev
, useraddr
);
1987 if (dev
->ethtool_ops
->complete
)
1988 dev
->ethtool_ops
->complete(dev
);
1990 if (old_features
!= dev
->features
)
1991 netdev_features_change(dev
);