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/signal.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_GRO_HW_BIT
] = "rx-gro-hw",
77 [NETIF_F_LRO_BIT
] = "rx-lro",
79 [NETIF_F_TSO_BIT
] = "tx-tcp-segmentation",
80 [NETIF_F_GSO_ROBUST_BIT
] = "tx-gso-robust",
81 [NETIF_F_TSO_ECN_BIT
] = "tx-tcp-ecn-segmentation",
82 [NETIF_F_TSO_MANGLEID_BIT
] = "tx-tcp-mangleid-segmentation",
83 [NETIF_F_TSO6_BIT
] = "tx-tcp6-segmentation",
84 [NETIF_F_FSO_BIT
] = "tx-fcoe-segmentation",
85 [NETIF_F_GSO_GRE_BIT
] = "tx-gre-segmentation",
86 [NETIF_F_GSO_GRE_CSUM_BIT
] = "tx-gre-csum-segmentation",
87 [NETIF_F_GSO_IPXIP4_BIT
] = "tx-ipxip4-segmentation",
88 [NETIF_F_GSO_IPXIP6_BIT
] = "tx-ipxip6-segmentation",
89 [NETIF_F_GSO_UDP_TUNNEL_BIT
] = "tx-udp_tnl-segmentation",
90 [NETIF_F_GSO_UDP_TUNNEL_CSUM_BIT
] = "tx-udp_tnl-csum-segmentation",
91 [NETIF_F_GSO_PARTIAL_BIT
] = "tx-gso-partial",
92 [NETIF_F_GSO_SCTP_BIT
] = "tx-sctp-segmentation",
93 [NETIF_F_GSO_ESP_BIT
] = "tx-esp-segmentation",
95 [NETIF_F_FCOE_CRC_BIT
] = "tx-checksum-fcoe-crc",
96 [NETIF_F_SCTP_CRC_BIT
] = "tx-checksum-sctp",
97 [NETIF_F_FCOE_MTU_BIT
] = "fcoe-mtu",
98 [NETIF_F_NTUPLE_BIT
] = "rx-ntuple-filter",
99 [NETIF_F_RXHASH_BIT
] = "rx-hashing",
100 [NETIF_F_RXCSUM_BIT
] = "rx-checksum",
101 [NETIF_F_NOCACHE_COPY_BIT
] = "tx-nocache-copy",
102 [NETIF_F_LOOPBACK_BIT
] = "loopback",
103 [NETIF_F_RXFCS_BIT
] = "rx-fcs",
104 [NETIF_F_RXALL_BIT
] = "rx-all",
105 [NETIF_F_HW_L2FW_DOFFLOAD_BIT
] = "l2-fwd-offload",
106 [NETIF_F_HW_TC_BIT
] = "hw-tc-offload",
107 [NETIF_F_HW_ESP_BIT
] = "esp-hw-offload",
108 [NETIF_F_HW_ESP_TX_CSUM_BIT
] = "esp-tx-csum-hw-offload",
109 [NETIF_F_RX_UDP_TUNNEL_PORT_BIT
] = "rx-udp_tunnel-port-offload",
113 rss_hash_func_strings
[ETH_RSS_HASH_FUNCS_COUNT
][ETH_GSTRING_LEN
] = {
114 [ETH_RSS_HASH_TOP_BIT
] = "toeplitz",
115 [ETH_RSS_HASH_XOR_BIT
] = "xor",
116 [ETH_RSS_HASH_CRC32_BIT
] = "crc32",
120 tunable_strings
[__ETHTOOL_TUNABLE_COUNT
][ETH_GSTRING_LEN
] = {
121 [ETHTOOL_ID_UNSPEC
] = "Unspec",
122 [ETHTOOL_RX_COPYBREAK
] = "rx-copybreak",
123 [ETHTOOL_TX_COPYBREAK
] = "tx-copybreak",
127 phy_tunable_strings
[__ETHTOOL_PHY_TUNABLE_COUNT
][ETH_GSTRING_LEN
] = {
128 [ETHTOOL_ID_UNSPEC
] = "Unspec",
129 [ETHTOOL_PHY_DOWNSHIFT
] = "phy-downshift",
132 static int ethtool_get_features(struct net_device
*dev
, void __user
*useraddr
)
134 struct ethtool_gfeatures cmd
= {
135 .cmd
= ETHTOOL_GFEATURES
,
136 .size
= ETHTOOL_DEV_FEATURE_WORDS
,
138 struct ethtool_get_features_block features
[ETHTOOL_DEV_FEATURE_WORDS
];
139 u32 __user
*sizeaddr
;
143 /* in case feature bits run out again */
144 BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS
* sizeof(u32
) > sizeof(netdev_features_t
));
146 for (i
= 0; i
< ETHTOOL_DEV_FEATURE_WORDS
; ++i
) {
147 features
[i
].available
= (u32
)(dev
->hw_features
>> (32 * i
));
148 features
[i
].requested
= (u32
)(dev
->wanted_features
>> (32 * i
));
149 features
[i
].active
= (u32
)(dev
->features
>> (32 * i
));
150 features
[i
].never_changed
=
151 (u32
)(NETIF_F_NEVER_CHANGE
>> (32 * i
));
154 sizeaddr
= useraddr
+ offsetof(struct ethtool_gfeatures
, size
);
155 if (get_user(copy_size
, sizeaddr
))
158 if (copy_size
> ETHTOOL_DEV_FEATURE_WORDS
)
159 copy_size
= ETHTOOL_DEV_FEATURE_WORDS
;
161 if (copy_to_user(useraddr
, &cmd
, sizeof(cmd
)))
163 useraddr
+= sizeof(cmd
);
164 if (copy_to_user(useraddr
, features
, copy_size
* sizeof(*features
)))
170 static int ethtool_set_features(struct net_device
*dev
, void __user
*useraddr
)
172 struct ethtool_sfeatures cmd
;
173 struct ethtool_set_features_block features
[ETHTOOL_DEV_FEATURE_WORDS
];
174 netdev_features_t wanted
= 0, valid
= 0;
177 if (copy_from_user(&cmd
, useraddr
, sizeof(cmd
)))
179 useraddr
+= sizeof(cmd
);
181 if (cmd
.size
!= ETHTOOL_DEV_FEATURE_WORDS
)
184 if (copy_from_user(features
, useraddr
, sizeof(features
)))
187 for (i
= 0; i
< ETHTOOL_DEV_FEATURE_WORDS
; ++i
) {
188 valid
|= (netdev_features_t
)features
[i
].valid
<< (32 * i
);
189 wanted
|= (netdev_features_t
)features
[i
].requested
<< (32 * i
);
192 if (valid
& ~NETIF_F_ETHTOOL_BITS
)
195 if (valid
& ~dev
->hw_features
) {
196 valid
&= dev
->hw_features
;
197 ret
|= ETHTOOL_F_UNSUPPORTED
;
200 dev
->wanted_features
&= ~valid
;
201 dev
->wanted_features
|= wanted
& valid
;
202 __netdev_update_features(dev
);
204 if ((dev
->wanted_features
^ dev
->features
) & valid
)
205 ret
|= ETHTOOL_F_WISH
;
210 static int phy_get_sset_count(struct phy_device
*phydev
)
214 if (phydev
->drv
->get_sset_count
&&
215 phydev
->drv
->get_strings
&&
216 phydev
->drv
->get_stats
) {
217 mutex_lock(&phydev
->lock
);
218 ret
= phydev
->drv
->get_sset_count(phydev
);
219 mutex_unlock(&phydev
->lock
);
227 static int __ethtool_get_sset_count(struct net_device
*dev
, int sset
)
229 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
231 if (sset
== ETH_SS_FEATURES
)
232 return ARRAY_SIZE(netdev_features_strings
);
234 if (sset
== ETH_SS_RSS_HASH_FUNCS
)
235 return ARRAY_SIZE(rss_hash_func_strings
);
237 if (sset
== ETH_SS_TUNABLES
)
238 return ARRAY_SIZE(tunable_strings
);
240 if (sset
== ETH_SS_PHY_TUNABLES
)
241 return ARRAY_SIZE(phy_tunable_strings
);
243 if (sset
== ETH_SS_PHY_STATS
) {
245 return phy_get_sset_count(dev
->phydev
);
250 if (ops
->get_sset_count
&& ops
->get_strings
)
251 return ops
->get_sset_count(dev
, sset
);
256 static void __ethtool_get_strings(struct net_device
*dev
,
257 u32 stringset
, u8
*data
)
259 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
261 if (stringset
== ETH_SS_FEATURES
)
262 memcpy(data
, netdev_features_strings
,
263 sizeof(netdev_features_strings
));
264 else if (stringset
== ETH_SS_RSS_HASH_FUNCS
)
265 memcpy(data
, rss_hash_func_strings
,
266 sizeof(rss_hash_func_strings
));
267 else if (stringset
== ETH_SS_TUNABLES
)
268 memcpy(data
, tunable_strings
, sizeof(tunable_strings
));
269 else if (stringset
== ETH_SS_PHY_TUNABLES
)
270 memcpy(data
, phy_tunable_strings
, sizeof(phy_tunable_strings
));
271 else if (stringset
== ETH_SS_PHY_STATS
) {
272 struct phy_device
*phydev
= dev
->phydev
;
275 mutex_lock(&phydev
->lock
);
276 phydev
->drv
->get_strings(phydev
, data
);
277 mutex_unlock(&phydev
->lock
);
282 /* ops->get_strings is valid because checked earlier */
283 ops
->get_strings(dev
, stringset
, data
);
286 static netdev_features_t
ethtool_get_feature_mask(u32 eth_cmd
)
288 /* feature masks of legacy discrete ethtool ops */
291 case ETHTOOL_GTXCSUM
:
292 case ETHTOOL_STXCSUM
:
293 return NETIF_F_CSUM_MASK
| NETIF_F_SCTP_CRC
;
294 case ETHTOOL_GRXCSUM
:
295 case ETHTOOL_SRXCSUM
:
296 return NETIF_F_RXCSUM
;
302 return NETIF_F_ALL_TSO
;
314 static int ethtool_get_one_feature(struct net_device
*dev
,
315 char __user
*useraddr
, u32 ethcmd
)
317 netdev_features_t mask
= ethtool_get_feature_mask(ethcmd
);
318 struct ethtool_value edata
= {
320 .data
= !!(dev
->features
& mask
),
323 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
328 static int ethtool_set_one_feature(struct net_device
*dev
,
329 void __user
*useraddr
, u32 ethcmd
)
331 struct ethtool_value edata
;
332 netdev_features_t mask
;
334 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
337 mask
= ethtool_get_feature_mask(ethcmd
);
338 mask
&= dev
->hw_features
;
343 dev
->wanted_features
|= mask
;
345 dev
->wanted_features
&= ~mask
;
347 __netdev_update_features(dev
);
352 #define ETH_ALL_FLAGS (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
353 ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
354 #define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
355 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
358 static u32
__ethtool_get_flags(struct net_device
*dev
)
362 if (dev
->features
& NETIF_F_LRO
)
363 flags
|= ETH_FLAG_LRO
;
364 if (dev
->features
& NETIF_F_HW_VLAN_CTAG_RX
)
365 flags
|= ETH_FLAG_RXVLAN
;
366 if (dev
->features
& NETIF_F_HW_VLAN_CTAG_TX
)
367 flags
|= ETH_FLAG_TXVLAN
;
368 if (dev
->features
& NETIF_F_NTUPLE
)
369 flags
|= ETH_FLAG_NTUPLE
;
370 if (dev
->features
& NETIF_F_RXHASH
)
371 flags
|= ETH_FLAG_RXHASH
;
376 static int __ethtool_set_flags(struct net_device
*dev
, u32 data
)
378 netdev_features_t features
= 0, changed
;
380 if (data
& ~ETH_ALL_FLAGS
)
383 if (data
& ETH_FLAG_LRO
)
384 features
|= NETIF_F_LRO
;
385 if (data
& ETH_FLAG_RXVLAN
)
386 features
|= NETIF_F_HW_VLAN_CTAG_RX
;
387 if (data
& ETH_FLAG_TXVLAN
)
388 features
|= NETIF_F_HW_VLAN_CTAG_TX
;
389 if (data
& ETH_FLAG_NTUPLE
)
390 features
|= NETIF_F_NTUPLE
;
391 if (data
& ETH_FLAG_RXHASH
)
392 features
|= NETIF_F_RXHASH
;
394 /* allow changing only bits set in hw_features */
395 changed
= (features
^ dev
->features
) & ETH_ALL_FEATURES
;
396 if (changed
& ~dev
->hw_features
)
397 return (changed
& dev
->hw_features
) ? -EINVAL
: -EOPNOTSUPP
;
399 dev
->wanted_features
=
400 (dev
->wanted_features
& ~changed
) | (features
& changed
);
402 __netdev_update_features(dev
);
407 /* Given two link masks, AND them together and save the result in dst. */
408 void ethtool_intersect_link_masks(struct ethtool_link_ksettings
*dst
,
409 struct ethtool_link_ksettings
*src
)
411 unsigned int size
= BITS_TO_LONGS(__ETHTOOL_LINK_MODE_MASK_NBITS
);
412 unsigned int idx
= 0;
414 for (; idx
< size
; idx
++) {
415 dst
->link_modes
.supported
[idx
] &=
416 src
->link_modes
.supported
[idx
];
417 dst
->link_modes
.advertising
[idx
] &=
418 src
->link_modes
.advertising
[idx
];
421 EXPORT_SYMBOL(ethtool_intersect_link_masks
);
423 void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst
,
426 bitmap_zero(dst
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
429 EXPORT_SYMBOL(ethtool_convert_legacy_u32_to_link_mode
);
431 /* return false if src had higher bits set. lower bits always updated. */
432 bool ethtool_convert_link_mode_to_legacy_u32(u32
*legacy_u32
,
433 const unsigned long *src
)
437 /* TODO: following test will soon always be true */
438 if (__ETHTOOL_LINK_MODE_MASK_NBITS
> 32) {
439 __ETHTOOL_DECLARE_LINK_MODE_MASK(ext
);
441 bitmap_zero(ext
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
442 bitmap_fill(ext
, 32);
443 bitmap_complement(ext
, ext
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
444 if (bitmap_intersects(ext
, src
,
445 __ETHTOOL_LINK_MODE_MASK_NBITS
)) {
446 /* src mask goes beyond bit 31 */
450 *legacy_u32
= src
[0];
453 EXPORT_SYMBOL(ethtool_convert_link_mode_to_legacy_u32
);
455 /* return false if legacy contained non-0 deprecated fields
456 * maxtxpkt/maxrxpkt. rest of ksettings always updated
459 convert_legacy_settings_to_link_ksettings(
460 struct ethtool_link_ksettings
*link_ksettings
,
461 const struct ethtool_cmd
*legacy_settings
)
465 memset(link_ksettings
, 0, sizeof(*link_ksettings
));
467 /* This is used to tell users that driver is still using these
468 * deprecated legacy fields, and they should not use
469 * %ETHTOOL_GLINKSETTINGS/%ETHTOOL_SLINKSETTINGS
471 if (legacy_settings
->maxtxpkt
||
472 legacy_settings
->maxrxpkt
)
475 ethtool_convert_legacy_u32_to_link_mode(
476 link_ksettings
->link_modes
.supported
,
477 legacy_settings
->supported
);
478 ethtool_convert_legacy_u32_to_link_mode(
479 link_ksettings
->link_modes
.advertising
,
480 legacy_settings
->advertising
);
481 ethtool_convert_legacy_u32_to_link_mode(
482 link_ksettings
->link_modes
.lp_advertising
,
483 legacy_settings
->lp_advertising
);
484 link_ksettings
->base
.speed
485 = ethtool_cmd_speed(legacy_settings
);
486 link_ksettings
->base
.duplex
487 = legacy_settings
->duplex
;
488 link_ksettings
->base
.port
489 = legacy_settings
->port
;
490 link_ksettings
->base
.phy_address
491 = legacy_settings
->phy_address
;
492 link_ksettings
->base
.autoneg
493 = legacy_settings
->autoneg
;
494 link_ksettings
->base
.mdio_support
495 = legacy_settings
->mdio_support
;
496 link_ksettings
->base
.eth_tp_mdix
497 = legacy_settings
->eth_tp_mdix
;
498 link_ksettings
->base
.eth_tp_mdix_ctrl
499 = legacy_settings
->eth_tp_mdix_ctrl
;
503 /* return false if ksettings link modes had higher bits
504 * set. legacy_settings always updated (best effort)
507 convert_link_ksettings_to_legacy_settings(
508 struct ethtool_cmd
*legacy_settings
,
509 const struct ethtool_link_ksettings
*link_ksettings
)
513 memset(legacy_settings
, 0, sizeof(*legacy_settings
));
514 /* this also clears the deprecated fields in legacy structure:
520 retval
&= ethtool_convert_link_mode_to_legacy_u32(
521 &legacy_settings
->supported
,
522 link_ksettings
->link_modes
.supported
);
523 retval
&= ethtool_convert_link_mode_to_legacy_u32(
524 &legacy_settings
->advertising
,
525 link_ksettings
->link_modes
.advertising
);
526 retval
&= ethtool_convert_link_mode_to_legacy_u32(
527 &legacy_settings
->lp_advertising
,
528 link_ksettings
->link_modes
.lp_advertising
);
529 ethtool_cmd_speed_set(legacy_settings
, link_ksettings
->base
.speed
);
530 legacy_settings
->duplex
531 = link_ksettings
->base
.duplex
;
532 legacy_settings
->port
533 = link_ksettings
->base
.port
;
534 legacy_settings
->phy_address
535 = link_ksettings
->base
.phy_address
;
536 legacy_settings
->autoneg
537 = link_ksettings
->base
.autoneg
;
538 legacy_settings
->mdio_support
539 = link_ksettings
->base
.mdio_support
;
540 legacy_settings
->eth_tp_mdix
541 = link_ksettings
->base
.eth_tp_mdix
;
542 legacy_settings
->eth_tp_mdix_ctrl
543 = link_ksettings
->base
.eth_tp_mdix_ctrl
;
544 legacy_settings
->transceiver
545 = link_ksettings
->base
.transceiver
;
549 /* number of 32-bit words to store the user's link mode bitmaps */
550 #define __ETHTOOL_LINK_MODE_MASK_NU32 \
551 DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32)
553 /* layout of the struct passed from/to userland */
554 struct ethtool_link_usettings
{
555 struct ethtool_link_settings base
;
557 __u32 supported
[__ETHTOOL_LINK_MODE_MASK_NU32
];
558 __u32 advertising
[__ETHTOOL_LINK_MODE_MASK_NU32
];
559 __u32 lp_advertising
[__ETHTOOL_LINK_MODE_MASK_NU32
];
563 /* Internal kernel helper to query a device ethtool_link_settings.
565 * Backward compatibility note: for compatibility with legacy drivers
566 * that implement only the ethtool_cmd API, this has to work with both
567 * drivers implementing get_link_ksettings API and drivers
568 * implementing get_settings API. When drivers implement get_settings
569 * and report ethtool_cmd deprecated fields
570 * (transceiver/maxrxpkt/maxtxpkt), these fields are silently ignored
571 * because the resulting struct ethtool_link_settings does not report them.
573 int __ethtool_get_link_ksettings(struct net_device
*dev
,
574 struct ethtool_link_ksettings
*link_ksettings
)
577 struct ethtool_cmd cmd
;
581 if (dev
->ethtool_ops
->get_link_ksettings
) {
582 memset(link_ksettings
, 0, sizeof(*link_ksettings
));
583 return dev
->ethtool_ops
->get_link_ksettings(dev
,
587 /* driver doesn't support %ethtool_link_ksettings API. revert to
588 * legacy %ethtool_cmd API, unless it's not supported either.
589 * TODO: remove when ethtool_ops::get_settings disappears internally
591 if (!dev
->ethtool_ops
->get_settings
)
594 memset(&cmd
, 0, sizeof(cmd
));
595 cmd
.cmd
= ETHTOOL_GSET
;
596 err
= dev
->ethtool_ops
->get_settings(dev
, &cmd
);
600 /* we ignore deprecated fields transceiver/maxrxpkt/maxtxpkt
602 convert_legacy_settings_to_link_ksettings(link_ksettings
, &cmd
);
605 EXPORT_SYMBOL(__ethtool_get_link_ksettings
);
607 /* convert ethtool_link_usettings in user space to a kernel internal
608 * ethtool_link_ksettings. return 0 on success, errno on error.
610 static int load_link_ksettings_from_user(struct ethtool_link_ksettings
*to
,
611 const void __user
*from
)
613 struct ethtool_link_usettings link_usettings
;
615 if (copy_from_user(&link_usettings
, from
, sizeof(link_usettings
)))
618 memcpy(&to
->base
, &link_usettings
.base
, sizeof(to
->base
));
619 bitmap_from_arr32(to
->link_modes
.supported
,
620 link_usettings
.link_modes
.supported
,
621 __ETHTOOL_LINK_MODE_MASK_NBITS
);
622 bitmap_from_arr32(to
->link_modes
.advertising
,
623 link_usettings
.link_modes
.advertising
,
624 __ETHTOOL_LINK_MODE_MASK_NBITS
);
625 bitmap_from_arr32(to
->link_modes
.lp_advertising
,
626 link_usettings
.link_modes
.lp_advertising
,
627 __ETHTOOL_LINK_MODE_MASK_NBITS
);
632 /* convert a kernel internal ethtool_link_ksettings to
633 * ethtool_link_usettings in user space. return 0 on success, errno on
637 store_link_ksettings_for_user(void __user
*to
,
638 const struct ethtool_link_ksettings
*from
)
640 struct ethtool_link_usettings link_usettings
;
642 memcpy(&link_usettings
.base
, &from
->base
, sizeof(link_usettings
));
643 bitmap_to_arr32(link_usettings
.link_modes
.supported
,
644 from
->link_modes
.supported
,
645 __ETHTOOL_LINK_MODE_MASK_NBITS
);
646 bitmap_to_arr32(link_usettings
.link_modes
.advertising
,
647 from
->link_modes
.advertising
,
648 __ETHTOOL_LINK_MODE_MASK_NBITS
);
649 bitmap_to_arr32(link_usettings
.link_modes
.lp_advertising
,
650 from
->link_modes
.lp_advertising
,
651 __ETHTOOL_LINK_MODE_MASK_NBITS
);
653 if (copy_to_user(to
, &link_usettings
, sizeof(link_usettings
)))
659 /* Query device for its ethtool_link_settings.
661 * Backward compatibility note: this function must fail when driver
662 * does not implement ethtool::get_link_ksettings, even if legacy
663 * ethtool_ops::get_settings is implemented. This tells new versions
664 * of ethtool that they should use the legacy API %ETHTOOL_GSET for
665 * this driver, so that they can correctly access the ethtool_cmd
666 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
667 * implements ethtool_ops::get_settings anymore.
669 static int ethtool_get_link_ksettings(struct net_device
*dev
,
670 void __user
*useraddr
)
673 struct ethtool_link_ksettings link_ksettings
;
677 if (!dev
->ethtool_ops
->get_link_ksettings
)
680 /* handle bitmap nbits handshake */
681 if (copy_from_user(&link_ksettings
.base
, useraddr
,
682 sizeof(link_ksettings
.base
)))
685 if (__ETHTOOL_LINK_MODE_MASK_NU32
686 != link_ksettings
.base
.link_mode_masks_nwords
) {
687 /* wrong link mode nbits requested */
688 memset(&link_ksettings
, 0, sizeof(link_ksettings
));
689 link_ksettings
.base
.cmd
= ETHTOOL_GLINKSETTINGS
;
690 /* send back number of words required as negative val */
691 compiletime_assert(__ETHTOOL_LINK_MODE_MASK_NU32
<= S8_MAX
,
692 "need too many bits for link modes!");
693 link_ksettings
.base
.link_mode_masks_nwords
694 = -((s8
)__ETHTOOL_LINK_MODE_MASK_NU32
);
696 /* copy the base fields back to user, not the link
699 if (copy_to_user(useraddr
, &link_ksettings
.base
,
700 sizeof(link_ksettings
.base
)))
706 /* handshake successful: user/kernel agree on
707 * link_mode_masks_nwords
710 memset(&link_ksettings
, 0, sizeof(link_ksettings
));
711 err
= dev
->ethtool_ops
->get_link_ksettings(dev
, &link_ksettings
);
715 /* make sure we tell the right values to user */
716 link_ksettings
.base
.cmd
= ETHTOOL_GLINKSETTINGS
;
717 link_ksettings
.base
.link_mode_masks_nwords
718 = __ETHTOOL_LINK_MODE_MASK_NU32
;
720 return store_link_ksettings_for_user(useraddr
, &link_ksettings
);
723 /* Update device ethtool_link_settings.
725 * Backward compatibility note: this function must fail when driver
726 * does not implement ethtool::set_link_ksettings, even if legacy
727 * ethtool_ops::set_settings is implemented. This tells new versions
728 * of ethtool that they should use the legacy API %ETHTOOL_SSET for
729 * this driver, so that they can correctly update the ethtool_cmd
730 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
731 * implements ethtool_ops::get_settings anymore.
733 static int ethtool_set_link_ksettings(struct net_device
*dev
,
734 void __user
*useraddr
)
737 struct ethtool_link_ksettings link_ksettings
;
741 if (!dev
->ethtool_ops
->set_link_ksettings
)
744 /* make sure nbits field has expected value */
745 if (copy_from_user(&link_ksettings
.base
, useraddr
,
746 sizeof(link_ksettings
.base
)))
749 if (__ETHTOOL_LINK_MODE_MASK_NU32
750 != link_ksettings
.base
.link_mode_masks_nwords
)
753 /* copy the whole structure, now that we know it has expected
756 err
= load_link_ksettings_from_user(&link_ksettings
, useraddr
);
760 /* re-check nwords field, just in case */
761 if (__ETHTOOL_LINK_MODE_MASK_NU32
762 != link_ksettings
.base
.link_mode_masks_nwords
)
765 return dev
->ethtool_ops
->set_link_ksettings(dev
, &link_ksettings
);
768 /* Query device for its ethtool_cmd settings.
770 * Backward compatibility note: for compatibility with legacy ethtool,
771 * this has to work with both drivers implementing get_link_ksettings
772 * API and drivers implementing get_settings API. When drivers
773 * implement get_link_ksettings and report higher link mode bits, a
774 * kernel warning is logged once (with name of 1st driver/device) to
775 * recommend user to upgrade ethtool, but the command is successful
776 * (only the lower link mode bits reported back to user).
778 static int ethtool_get_settings(struct net_device
*dev
, void __user
*useraddr
)
780 struct ethtool_cmd cmd
;
784 if (dev
->ethtool_ops
->get_link_ksettings
) {
785 /* First, use link_ksettings API if it is supported */
787 struct ethtool_link_ksettings link_ksettings
;
789 memset(&link_ksettings
, 0, sizeof(link_ksettings
));
790 err
= dev
->ethtool_ops
->get_link_ksettings(dev
,
794 convert_link_ksettings_to_legacy_settings(&cmd
,
797 /* send a sensible cmd tag back to user */
798 cmd
.cmd
= ETHTOOL_GSET
;
800 /* driver doesn't support %ethtool_link_ksettings
801 * API. revert to legacy %ethtool_cmd API, unless it's
802 * not supported either.
806 if (!dev
->ethtool_ops
->get_settings
)
809 memset(&cmd
, 0, sizeof(cmd
));
810 cmd
.cmd
= ETHTOOL_GSET
;
811 err
= dev
->ethtool_ops
->get_settings(dev
, &cmd
);
816 if (copy_to_user(useraddr
, &cmd
, sizeof(cmd
)))
822 /* Update device link settings with given ethtool_cmd.
824 * Backward compatibility note: for compatibility with legacy ethtool,
825 * this has to work with both drivers implementing set_link_ksettings
826 * API and drivers implementing set_settings API. When drivers
827 * implement set_link_ksettings and user's request updates deprecated
828 * ethtool_cmd fields (transceiver/maxrxpkt/maxtxpkt), a kernel
829 * warning is logged once (with name of 1st driver/device) to
830 * recommend user to upgrade ethtool, and the request is rejected.
832 static int ethtool_set_settings(struct net_device
*dev
, void __user
*useraddr
)
834 struct ethtool_cmd cmd
;
838 if (copy_from_user(&cmd
, useraddr
, sizeof(cmd
)))
841 /* first, try new %ethtool_link_ksettings API. */
842 if (dev
->ethtool_ops
->set_link_ksettings
) {
843 struct ethtool_link_ksettings link_ksettings
;
845 if (!convert_legacy_settings_to_link_ksettings(&link_ksettings
,
849 link_ksettings
.base
.cmd
= ETHTOOL_SLINKSETTINGS
;
850 link_ksettings
.base
.link_mode_masks_nwords
851 = __ETHTOOL_LINK_MODE_MASK_NU32
;
852 return dev
->ethtool_ops
->set_link_ksettings(dev
,
856 /* legacy %ethtool_cmd API */
858 /* TODO: return -EOPNOTSUPP when ethtool_ops::get_settings
859 * disappears internally
862 if (!dev
->ethtool_ops
->set_settings
)
865 return dev
->ethtool_ops
->set_settings(dev
, &cmd
);
868 static noinline_for_stack
int ethtool_get_drvinfo(struct net_device
*dev
,
869 void __user
*useraddr
)
871 struct ethtool_drvinfo info
;
872 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
874 memset(&info
, 0, sizeof(info
));
875 info
.cmd
= ETHTOOL_GDRVINFO
;
876 if (ops
->get_drvinfo
) {
877 ops
->get_drvinfo(dev
, &info
);
878 } else if (dev
->dev
.parent
&& dev
->dev
.parent
->driver
) {
879 strlcpy(info
.bus_info
, dev_name(dev
->dev
.parent
),
880 sizeof(info
.bus_info
));
881 strlcpy(info
.driver
, dev
->dev
.parent
->driver
->name
,
882 sizeof(info
.driver
));
888 * this method of obtaining string set info is deprecated;
889 * Use ETHTOOL_GSSET_INFO instead.
891 if (ops
->get_sset_count
) {
894 rc
= ops
->get_sset_count(dev
, ETH_SS_TEST
);
896 info
.testinfo_len
= rc
;
897 rc
= ops
->get_sset_count(dev
, ETH_SS_STATS
);
900 rc
= ops
->get_sset_count(dev
, ETH_SS_PRIV_FLAGS
);
902 info
.n_priv_flags
= rc
;
904 if (ops
->get_regs_len
)
905 info
.regdump_len
= ops
->get_regs_len(dev
);
906 if (ops
->get_eeprom_len
)
907 info
.eedump_len
= ops
->get_eeprom_len(dev
);
909 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
914 static noinline_for_stack
int ethtool_get_sset_info(struct net_device
*dev
,
915 void __user
*useraddr
)
917 struct ethtool_sset_info info
;
919 int i
, idx
= 0, n_bits
= 0, ret
, rc
;
920 u32
*info_buf
= NULL
;
922 if (copy_from_user(&info
, useraddr
, sizeof(info
)))
925 /* store copy of mask, because we zero struct later on */
926 sset_mask
= info
.sset_mask
;
930 /* calculate size of return buffer */
931 n_bits
= hweight64(sset_mask
);
933 memset(&info
, 0, sizeof(info
));
934 info
.cmd
= ETHTOOL_GSSET_INFO
;
936 info_buf
= kzalloc(n_bits
* sizeof(u32
), GFP_USER
);
941 * fill return buffer based on input bitmask and successful
942 * get_sset_count return
944 for (i
= 0; i
< 64; i
++) {
945 if (!(sset_mask
& (1ULL << i
)))
948 rc
= __ethtool_get_sset_count(dev
, i
);
950 info
.sset_mask
|= (1ULL << i
);
951 info_buf
[idx
++] = rc
;
956 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
959 useraddr
+= offsetof(struct ethtool_sset_info
, data
);
960 if (copy_to_user(useraddr
, info_buf
, idx
* sizeof(u32
)))
970 static noinline_for_stack
int ethtool_set_rxnfc(struct net_device
*dev
,
971 u32 cmd
, void __user
*useraddr
)
973 struct ethtool_rxnfc info
;
974 size_t info_size
= sizeof(info
);
977 if (!dev
->ethtool_ops
->set_rxnfc
)
980 /* struct ethtool_rxnfc was originally defined for
981 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
982 * members. User-space might still be using that
984 if (cmd
== ETHTOOL_SRXFH
)
985 info_size
= (offsetof(struct ethtool_rxnfc
, data
) +
988 if (copy_from_user(&info
, useraddr
, info_size
))
991 rc
= dev
->ethtool_ops
->set_rxnfc(dev
, &info
);
995 if (cmd
== ETHTOOL_SRXCLSRLINS
&&
996 copy_to_user(useraddr
, &info
, info_size
))
1002 static noinline_for_stack
int ethtool_get_rxnfc(struct net_device
*dev
,
1003 u32 cmd
, void __user
*useraddr
)
1005 struct ethtool_rxnfc info
;
1006 size_t info_size
= sizeof(info
);
1007 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1009 void *rule_buf
= NULL
;
1011 if (!ops
->get_rxnfc
)
1014 /* struct ethtool_rxnfc was originally defined for
1015 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
1016 * members. User-space might still be using that
1018 if (cmd
== ETHTOOL_GRXFH
)
1019 info_size
= (offsetof(struct ethtool_rxnfc
, data
) +
1022 if (copy_from_user(&info
, useraddr
, info_size
))
1025 if (info
.cmd
== ETHTOOL_GRXCLSRLALL
) {
1026 if (info
.rule_cnt
> 0) {
1027 if (info
.rule_cnt
<= KMALLOC_MAX_SIZE
/ sizeof(u32
))
1028 rule_buf
= kzalloc(info
.rule_cnt
* sizeof(u32
),
1035 ret
= ops
->get_rxnfc(dev
, &info
, rule_buf
);
1040 if (copy_to_user(useraddr
, &info
, info_size
))
1044 useraddr
+= offsetof(struct ethtool_rxnfc
, rule_locs
);
1045 if (copy_to_user(useraddr
, rule_buf
,
1046 info
.rule_cnt
* sizeof(u32
)))
1057 static int ethtool_copy_validate_indir(u32
*indir
, void __user
*useraddr
,
1058 struct ethtool_rxnfc
*rx_rings
,
1063 if (copy_from_user(indir
, useraddr
, size
* sizeof(indir
[0])))
1066 /* Validate ring indices */
1067 for (i
= 0; i
< size
; i
++)
1068 if (indir
[i
] >= rx_rings
->data
)
1074 u8 netdev_rss_key
[NETDEV_RSS_KEY_LEN
] __read_mostly
;
1076 void netdev_rss_key_fill(void *buffer
, size_t len
)
1078 BUG_ON(len
> sizeof(netdev_rss_key
));
1079 net_get_random_once(netdev_rss_key
, sizeof(netdev_rss_key
));
1080 memcpy(buffer
, netdev_rss_key
, len
);
1082 EXPORT_SYMBOL(netdev_rss_key_fill
);
1084 static int ethtool_get_max_rxfh_channel(struct net_device
*dev
, u32
*max
)
1086 u32 dev_size
, current_max
= 0;
1090 if (!dev
->ethtool_ops
->get_rxfh_indir_size
||
1091 !dev
->ethtool_ops
->get_rxfh
)
1093 dev_size
= dev
->ethtool_ops
->get_rxfh_indir_size(dev
);
1097 indir
= kcalloc(dev_size
, sizeof(indir
[0]), GFP_USER
);
1101 ret
= dev
->ethtool_ops
->get_rxfh(dev
, indir
, NULL
, NULL
);
1106 current_max
= max(current_max
, indir
[dev_size
]);
1115 static noinline_for_stack
int ethtool_get_rxfh_indir(struct net_device
*dev
,
1116 void __user
*useraddr
)
1118 u32 user_size
, dev_size
;
1122 if (!dev
->ethtool_ops
->get_rxfh_indir_size
||
1123 !dev
->ethtool_ops
->get_rxfh
)
1125 dev_size
= dev
->ethtool_ops
->get_rxfh_indir_size(dev
);
1129 if (copy_from_user(&user_size
,
1130 useraddr
+ offsetof(struct ethtool_rxfh_indir
, size
),
1134 if (copy_to_user(useraddr
+ offsetof(struct ethtool_rxfh_indir
, size
),
1135 &dev_size
, sizeof(dev_size
)))
1138 /* If the user buffer size is 0, this is just a query for the
1139 * device table size. Otherwise, if it's smaller than the
1140 * device table size it's an error.
1142 if (user_size
< dev_size
)
1143 return user_size
== 0 ? 0 : -EINVAL
;
1145 indir
= kcalloc(dev_size
, sizeof(indir
[0]), GFP_USER
);
1149 ret
= dev
->ethtool_ops
->get_rxfh(dev
, indir
, NULL
, NULL
);
1153 if (copy_to_user(useraddr
+
1154 offsetof(struct ethtool_rxfh_indir
, ring_index
[0]),
1155 indir
, dev_size
* sizeof(indir
[0])))
1163 static noinline_for_stack
int ethtool_set_rxfh_indir(struct net_device
*dev
,
1164 void __user
*useraddr
)
1166 struct ethtool_rxnfc rx_rings
;
1167 u32 user_size
, dev_size
, i
;
1169 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1171 u32 ringidx_offset
= offsetof(struct ethtool_rxfh_indir
, ring_index
[0]);
1173 if (!ops
->get_rxfh_indir_size
|| !ops
->set_rxfh
||
1177 dev_size
= ops
->get_rxfh_indir_size(dev
);
1181 if (copy_from_user(&user_size
,
1182 useraddr
+ offsetof(struct ethtool_rxfh_indir
, size
),
1186 if (user_size
!= 0 && user_size
!= dev_size
)
1189 indir
= kcalloc(dev_size
, sizeof(indir
[0]), GFP_USER
);
1193 rx_rings
.cmd
= ETHTOOL_GRXRINGS
;
1194 ret
= ops
->get_rxnfc(dev
, &rx_rings
, NULL
);
1198 if (user_size
== 0) {
1199 for (i
= 0; i
< dev_size
; i
++)
1200 indir
[i
] = ethtool_rxfh_indir_default(i
, rx_rings
.data
);
1202 ret
= ethtool_copy_validate_indir(indir
,
1203 useraddr
+ ringidx_offset
,
1210 ret
= ops
->set_rxfh(dev
, indir
, NULL
, ETH_RSS_HASH_NO_CHANGE
);
1214 /* indicate whether rxfh was set to default */
1216 dev
->priv_flags
&= ~IFF_RXFH_CONFIGURED
;
1218 dev
->priv_flags
|= IFF_RXFH_CONFIGURED
;
1225 static noinline_for_stack
int ethtool_get_rxfh(struct net_device
*dev
,
1226 void __user
*useraddr
)
1229 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1230 u32 user_indir_size
, user_key_size
;
1231 u32 dev_indir_size
= 0, dev_key_size
= 0;
1232 struct ethtool_rxfh rxfh
;
1243 if (ops
->get_rxfh_indir_size
)
1244 dev_indir_size
= ops
->get_rxfh_indir_size(dev
);
1245 if (ops
->get_rxfh_key_size
)
1246 dev_key_size
= ops
->get_rxfh_key_size(dev
);
1248 if (copy_from_user(&rxfh
, useraddr
, sizeof(rxfh
)))
1250 user_indir_size
= rxfh
.indir_size
;
1251 user_key_size
= rxfh
.key_size
;
1253 /* Check that reserved fields are 0 for now */
1254 if (rxfh
.rss_context
|| rxfh
.rsvd8
[0] || rxfh
.rsvd8
[1] ||
1255 rxfh
.rsvd8
[2] || rxfh
.rsvd32
)
1258 rxfh
.indir_size
= dev_indir_size
;
1259 rxfh
.key_size
= dev_key_size
;
1260 if (copy_to_user(useraddr
, &rxfh
, sizeof(rxfh
)))
1263 if ((user_indir_size
&& (user_indir_size
!= dev_indir_size
)) ||
1264 (user_key_size
&& (user_key_size
!= dev_key_size
)))
1267 indir_bytes
= user_indir_size
* sizeof(indir
[0]);
1268 total_size
= indir_bytes
+ user_key_size
;
1269 rss_config
= kzalloc(total_size
, GFP_USER
);
1273 if (user_indir_size
)
1274 indir
= (u32
*)rss_config
;
1277 hkey
= rss_config
+ indir_bytes
;
1279 ret
= dev
->ethtool_ops
->get_rxfh(dev
, indir
, hkey
, &dev_hfunc
);
1283 if (copy_to_user(useraddr
+ offsetof(struct ethtool_rxfh
, hfunc
),
1284 &dev_hfunc
, sizeof(rxfh
.hfunc
))) {
1286 } else if (copy_to_user(useraddr
+
1287 offsetof(struct ethtool_rxfh
, rss_config
[0]),
1288 rss_config
, total_size
)) {
1297 static noinline_for_stack
int ethtool_set_rxfh(struct net_device
*dev
,
1298 void __user
*useraddr
)
1301 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1302 struct ethtool_rxnfc rx_rings
;
1303 struct ethtool_rxfh rxfh
;
1304 u32 dev_indir_size
= 0, dev_key_size
= 0, i
;
1305 u32
*indir
= NULL
, indir_bytes
= 0;
1308 u32 rss_cfg_offset
= offsetof(struct ethtool_rxfh
, rss_config
[0]);
1310 if (!ops
->get_rxnfc
|| !ops
->set_rxfh
)
1313 if (ops
->get_rxfh_indir_size
)
1314 dev_indir_size
= ops
->get_rxfh_indir_size(dev
);
1315 if (ops
->get_rxfh_key_size
)
1316 dev_key_size
= ops
->get_rxfh_key_size(dev
);
1318 if (copy_from_user(&rxfh
, useraddr
, sizeof(rxfh
)))
1321 /* Check that reserved fields are 0 for now */
1322 if (rxfh
.rss_context
|| rxfh
.rsvd8
[0] || rxfh
.rsvd8
[1] ||
1323 rxfh
.rsvd8
[2] || rxfh
.rsvd32
)
1326 /* If either indir, hash key or function is valid, proceed further.
1327 * Must request at least one change: indir size, hash key or function.
1329 if ((rxfh
.indir_size
&&
1330 rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
&&
1331 rxfh
.indir_size
!= dev_indir_size
) ||
1332 (rxfh
.key_size
&& (rxfh
.key_size
!= dev_key_size
)) ||
1333 (rxfh
.indir_size
== ETH_RXFH_INDIR_NO_CHANGE
&&
1334 rxfh
.key_size
== 0 && rxfh
.hfunc
== ETH_RSS_HASH_NO_CHANGE
))
1337 if (rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
)
1338 indir_bytes
= dev_indir_size
* sizeof(indir
[0]);
1340 rss_config
= kzalloc(indir_bytes
+ rxfh
.key_size
, GFP_USER
);
1344 rx_rings
.cmd
= ETHTOOL_GRXRINGS
;
1345 ret
= ops
->get_rxnfc(dev
, &rx_rings
, NULL
);
1349 /* rxfh.indir_size == 0 means reset the indir table to default.
1350 * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
1352 if (rxfh
.indir_size
&&
1353 rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
) {
1354 indir
= (u32
*)rss_config
;
1355 ret
= ethtool_copy_validate_indir(indir
,
1356 useraddr
+ rss_cfg_offset
,
1361 } else if (rxfh
.indir_size
== 0) {
1362 indir
= (u32
*)rss_config
;
1363 for (i
= 0; i
< dev_indir_size
; i
++)
1364 indir
[i
] = ethtool_rxfh_indir_default(i
, rx_rings
.data
);
1367 if (rxfh
.key_size
) {
1368 hkey
= rss_config
+ indir_bytes
;
1369 if (copy_from_user(hkey
,
1370 useraddr
+ rss_cfg_offset
+ indir_bytes
,
1377 ret
= ops
->set_rxfh(dev
, indir
, hkey
, rxfh
.hfunc
);
1381 /* indicate whether rxfh was set to default */
1382 if (rxfh
.indir_size
== 0)
1383 dev
->priv_flags
&= ~IFF_RXFH_CONFIGURED
;
1384 else if (rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
)
1385 dev
->priv_flags
|= IFF_RXFH_CONFIGURED
;
1392 static int ethtool_get_regs(struct net_device
*dev
, char __user
*useraddr
)
1394 struct ethtool_regs regs
;
1395 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1399 if (!ops
->get_regs
|| !ops
->get_regs_len
)
1402 if (copy_from_user(®s
, useraddr
, sizeof(regs
)))
1405 reglen
= ops
->get_regs_len(dev
);
1406 if (regs
.len
> reglen
)
1411 regbuf
= vzalloc(reglen
);
1416 ops
->get_regs(dev
, ®s
, regbuf
);
1419 if (copy_to_user(useraddr
, ®s
, sizeof(regs
)))
1421 useraddr
+= offsetof(struct ethtool_regs
, data
);
1422 if (regbuf
&& copy_to_user(useraddr
, regbuf
, regs
.len
))
1431 static int ethtool_reset(struct net_device
*dev
, char __user
*useraddr
)
1433 struct ethtool_value reset
;
1436 if (!dev
->ethtool_ops
->reset
)
1439 if (copy_from_user(&reset
, useraddr
, sizeof(reset
)))
1442 ret
= dev
->ethtool_ops
->reset(dev
, &reset
.data
);
1446 if (copy_to_user(useraddr
, &reset
, sizeof(reset
)))
1451 static int ethtool_get_wol(struct net_device
*dev
, char __user
*useraddr
)
1453 struct ethtool_wolinfo wol
= { .cmd
= ETHTOOL_GWOL
};
1455 if (!dev
->ethtool_ops
->get_wol
)
1458 dev
->ethtool_ops
->get_wol(dev
, &wol
);
1460 if (copy_to_user(useraddr
, &wol
, sizeof(wol
)))
1465 static int ethtool_set_wol(struct net_device
*dev
, char __user
*useraddr
)
1467 struct ethtool_wolinfo wol
;
1469 if (!dev
->ethtool_ops
->set_wol
)
1472 if (copy_from_user(&wol
, useraddr
, sizeof(wol
)))
1475 return dev
->ethtool_ops
->set_wol(dev
, &wol
);
1478 static int ethtool_get_eee(struct net_device
*dev
, char __user
*useraddr
)
1480 struct ethtool_eee edata
;
1483 if (!dev
->ethtool_ops
->get_eee
)
1486 memset(&edata
, 0, sizeof(struct ethtool_eee
));
1487 edata
.cmd
= ETHTOOL_GEEE
;
1488 rc
= dev
->ethtool_ops
->get_eee(dev
, &edata
);
1493 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
1499 static int ethtool_set_eee(struct net_device
*dev
, char __user
*useraddr
)
1501 struct ethtool_eee edata
;
1503 if (!dev
->ethtool_ops
->set_eee
)
1506 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
1509 return dev
->ethtool_ops
->set_eee(dev
, &edata
);
1512 static int ethtool_nway_reset(struct net_device
*dev
)
1514 if (!dev
->ethtool_ops
->nway_reset
)
1517 return dev
->ethtool_ops
->nway_reset(dev
);
1520 static int ethtool_get_link(struct net_device
*dev
, char __user
*useraddr
)
1522 struct ethtool_value edata
= { .cmd
= ETHTOOL_GLINK
};
1524 if (!dev
->ethtool_ops
->get_link
)
1527 edata
.data
= netif_running(dev
) && dev
->ethtool_ops
->get_link(dev
);
1529 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
1534 static int ethtool_get_any_eeprom(struct net_device
*dev
, void __user
*useraddr
,
1535 int (*getter
)(struct net_device
*,
1536 struct ethtool_eeprom
*, u8
*),
1539 struct ethtool_eeprom eeprom
;
1540 void __user
*userbuf
= useraddr
+ sizeof(eeprom
);
1541 u32 bytes_remaining
;
1545 if (copy_from_user(&eeprom
, useraddr
, sizeof(eeprom
)))
1548 /* Check for wrap and zero */
1549 if (eeprom
.offset
+ eeprom
.len
<= eeprom
.offset
)
1552 /* Check for exceeding total eeprom len */
1553 if (eeprom
.offset
+ eeprom
.len
> total_len
)
1556 data
= kmalloc(PAGE_SIZE
, GFP_USER
);
1560 bytes_remaining
= eeprom
.len
;
1561 while (bytes_remaining
> 0) {
1562 eeprom
.len
= min(bytes_remaining
, (u32
)PAGE_SIZE
);
1564 ret
= getter(dev
, &eeprom
, data
);
1567 if (copy_to_user(userbuf
, data
, eeprom
.len
)) {
1571 userbuf
+= eeprom
.len
;
1572 eeprom
.offset
+= eeprom
.len
;
1573 bytes_remaining
-= eeprom
.len
;
1576 eeprom
.len
= userbuf
- (useraddr
+ sizeof(eeprom
));
1577 eeprom
.offset
-= eeprom
.len
;
1578 if (copy_to_user(useraddr
, &eeprom
, sizeof(eeprom
)))
1585 static int ethtool_get_eeprom(struct net_device
*dev
, void __user
*useraddr
)
1587 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1589 if (!ops
->get_eeprom
|| !ops
->get_eeprom_len
||
1590 !ops
->get_eeprom_len(dev
))
1593 return ethtool_get_any_eeprom(dev
, useraddr
, ops
->get_eeprom
,
1594 ops
->get_eeprom_len(dev
));
1597 static int ethtool_set_eeprom(struct net_device
*dev
, void __user
*useraddr
)
1599 struct ethtool_eeprom eeprom
;
1600 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1601 void __user
*userbuf
= useraddr
+ sizeof(eeprom
);
1602 u32 bytes_remaining
;
1606 if (!ops
->set_eeprom
|| !ops
->get_eeprom_len
||
1607 !ops
->get_eeprom_len(dev
))
1610 if (copy_from_user(&eeprom
, useraddr
, sizeof(eeprom
)))
1613 /* Check for wrap and zero */
1614 if (eeprom
.offset
+ eeprom
.len
<= eeprom
.offset
)
1617 /* Check for exceeding total eeprom len */
1618 if (eeprom
.offset
+ eeprom
.len
> ops
->get_eeprom_len(dev
))
1621 data
= kmalloc(PAGE_SIZE
, GFP_USER
);
1625 bytes_remaining
= eeprom
.len
;
1626 while (bytes_remaining
> 0) {
1627 eeprom
.len
= min(bytes_remaining
, (u32
)PAGE_SIZE
);
1629 if (copy_from_user(data
, userbuf
, eeprom
.len
)) {
1633 ret
= ops
->set_eeprom(dev
, &eeprom
, data
);
1636 userbuf
+= eeprom
.len
;
1637 eeprom
.offset
+= eeprom
.len
;
1638 bytes_remaining
-= eeprom
.len
;
1645 static noinline_for_stack
int ethtool_get_coalesce(struct net_device
*dev
,
1646 void __user
*useraddr
)
1648 struct ethtool_coalesce coalesce
= { .cmd
= ETHTOOL_GCOALESCE
};
1650 if (!dev
->ethtool_ops
->get_coalesce
)
1653 dev
->ethtool_ops
->get_coalesce(dev
, &coalesce
);
1655 if (copy_to_user(useraddr
, &coalesce
, sizeof(coalesce
)))
1660 static noinline_for_stack
int ethtool_set_coalesce(struct net_device
*dev
,
1661 void __user
*useraddr
)
1663 struct ethtool_coalesce coalesce
;
1665 if (!dev
->ethtool_ops
->set_coalesce
)
1668 if (copy_from_user(&coalesce
, useraddr
, sizeof(coalesce
)))
1671 return dev
->ethtool_ops
->set_coalesce(dev
, &coalesce
);
1674 static int ethtool_get_ringparam(struct net_device
*dev
, void __user
*useraddr
)
1676 struct ethtool_ringparam ringparam
= { .cmd
= ETHTOOL_GRINGPARAM
};
1678 if (!dev
->ethtool_ops
->get_ringparam
)
1681 dev
->ethtool_ops
->get_ringparam(dev
, &ringparam
);
1683 if (copy_to_user(useraddr
, &ringparam
, sizeof(ringparam
)))
1688 static int ethtool_set_ringparam(struct net_device
*dev
, void __user
*useraddr
)
1690 struct ethtool_ringparam ringparam
, max
= { .cmd
= ETHTOOL_GRINGPARAM
};
1692 if (!dev
->ethtool_ops
->set_ringparam
|| !dev
->ethtool_ops
->get_ringparam
)
1695 if (copy_from_user(&ringparam
, useraddr
, sizeof(ringparam
)))
1698 dev
->ethtool_ops
->get_ringparam(dev
, &max
);
1700 /* ensure new ring parameters are within the maximums */
1701 if (ringparam
.rx_pending
> max
.rx_max_pending
||
1702 ringparam
.rx_mini_pending
> max
.rx_mini_max_pending
||
1703 ringparam
.rx_jumbo_pending
> max
.rx_jumbo_max_pending
||
1704 ringparam
.tx_pending
> max
.tx_max_pending
)
1707 return dev
->ethtool_ops
->set_ringparam(dev
, &ringparam
);
1710 static noinline_for_stack
int ethtool_get_channels(struct net_device
*dev
,
1711 void __user
*useraddr
)
1713 struct ethtool_channels channels
= { .cmd
= ETHTOOL_GCHANNELS
};
1715 if (!dev
->ethtool_ops
->get_channels
)
1718 dev
->ethtool_ops
->get_channels(dev
, &channels
);
1720 if (copy_to_user(useraddr
, &channels
, sizeof(channels
)))
1725 static noinline_for_stack
int ethtool_set_channels(struct net_device
*dev
,
1726 void __user
*useraddr
)
1728 struct ethtool_channels channels
, max
= { .cmd
= ETHTOOL_GCHANNELS
};
1729 u32 max_rx_in_use
= 0;
1731 if (!dev
->ethtool_ops
->set_channels
|| !dev
->ethtool_ops
->get_channels
)
1734 if (copy_from_user(&channels
, useraddr
, sizeof(channels
)))
1737 dev
->ethtool_ops
->get_channels(dev
, &max
);
1739 /* ensure new counts are within the maximums */
1740 if ((channels
.rx_count
> max
.max_rx
) ||
1741 (channels
.tx_count
> max
.max_tx
) ||
1742 (channels
.combined_count
> max
.max_combined
) ||
1743 (channels
.other_count
> max
.max_other
))
1746 /* ensure the new Rx count fits within the configured Rx flow
1747 * indirection table settings */
1748 if (netif_is_rxfh_configured(dev
) &&
1749 !ethtool_get_max_rxfh_channel(dev
, &max_rx_in_use
) &&
1750 (channels
.combined_count
+ channels
.rx_count
) <= max_rx_in_use
)
1753 return dev
->ethtool_ops
->set_channels(dev
, &channels
);
1756 static int ethtool_get_pauseparam(struct net_device
*dev
, void __user
*useraddr
)
1758 struct ethtool_pauseparam pauseparam
= { ETHTOOL_GPAUSEPARAM
};
1760 if (!dev
->ethtool_ops
->get_pauseparam
)
1763 dev
->ethtool_ops
->get_pauseparam(dev
, &pauseparam
);
1765 if (copy_to_user(useraddr
, &pauseparam
, sizeof(pauseparam
)))
1770 static int ethtool_set_pauseparam(struct net_device
*dev
, void __user
*useraddr
)
1772 struct ethtool_pauseparam pauseparam
;
1774 if (!dev
->ethtool_ops
->set_pauseparam
)
1777 if (copy_from_user(&pauseparam
, useraddr
, sizeof(pauseparam
)))
1780 return dev
->ethtool_ops
->set_pauseparam(dev
, &pauseparam
);
1783 static int ethtool_self_test(struct net_device
*dev
, char __user
*useraddr
)
1785 struct ethtool_test test
;
1786 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1790 if (!ops
->self_test
|| !ops
->get_sset_count
)
1793 test_len
= ops
->get_sset_count(dev
, ETH_SS_TEST
);
1796 WARN_ON(test_len
== 0);
1798 if (copy_from_user(&test
, useraddr
, sizeof(test
)))
1801 test
.len
= test_len
;
1802 data
= kmalloc(test_len
* sizeof(u64
), GFP_USER
);
1806 ops
->self_test(dev
, &test
, data
);
1809 if (copy_to_user(useraddr
, &test
, sizeof(test
)))
1811 useraddr
+= sizeof(test
);
1812 if (copy_to_user(useraddr
, data
, test
.len
* sizeof(u64
)))
1821 static int ethtool_get_strings(struct net_device
*dev
, void __user
*useraddr
)
1823 struct ethtool_gstrings gstrings
;
1827 if (copy_from_user(&gstrings
, useraddr
, sizeof(gstrings
)))
1830 ret
= __ethtool_get_sset_count(dev
, gstrings
.string_set
);
1833 if (ret
> S32_MAX
/ ETH_GSTRING_LEN
)
1838 data
= vzalloc(gstrings
.len
* ETH_GSTRING_LEN
);
1839 if (gstrings
.len
&& !data
)
1842 __ethtool_get_strings(dev
, gstrings
.string_set
, data
);
1845 if (copy_to_user(useraddr
, &gstrings
, sizeof(gstrings
)))
1847 useraddr
+= sizeof(gstrings
);
1849 copy_to_user(useraddr
, data
, gstrings
.len
* ETH_GSTRING_LEN
))
1858 static int ethtool_phys_id(struct net_device
*dev
, void __user
*useraddr
)
1860 struct ethtool_value id
;
1862 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1865 if (!ops
->set_phys_id
)
1871 if (copy_from_user(&id
, useraddr
, sizeof(id
)))
1874 rc
= ops
->set_phys_id(dev
, ETHTOOL_ID_ACTIVE
);
1878 /* Drop the RTNL lock while waiting, but prevent reentry or
1879 * removal of the device.
1886 /* Driver will handle this itself */
1887 schedule_timeout_interruptible(
1888 id
.data
? (id
.data
* HZ
) : MAX_SCHEDULE_TIMEOUT
);
1890 /* Driver expects to be called at twice the frequency in rc */
1891 int n
= rc
* 2, i
, interval
= HZ
/ n
;
1893 /* Count down seconds */
1895 /* Count down iterations per second */
1899 rc
= ops
->set_phys_id(dev
,
1900 (i
& 1) ? ETHTOOL_ID_OFF
: ETHTOOL_ID_ON
);
1904 schedule_timeout_interruptible(interval
);
1905 } while (!signal_pending(current
) && --i
!= 0);
1906 } while (!signal_pending(current
) &&
1907 (id
.data
== 0 || --id
.data
!= 0));
1914 (void) ops
->set_phys_id(dev
, ETHTOOL_ID_INACTIVE
);
1918 static int ethtool_get_stats(struct net_device
*dev
, void __user
*useraddr
)
1920 struct ethtool_stats stats
;
1921 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1925 if (!ops
->get_ethtool_stats
|| !ops
->get_sset_count
)
1928 n_stats
= ops
->get_sset_count(dev
, ETH_SS_STATS
);
1931 if (n_stats
> S32_MAX
/ sizeof(u64
))
1933 WARN_ON_ONCE(!n_stats
);
1934 if (copy_from_user(&stats
, useraddr
, sizeof(stats
)))
1937 stats
.n_stats
= n_stats
;
1938 data
= vzalloc(n_stats
* sizeof(u64
));
1939 if (n_stats
&& !data
)
1942 ops
->get_ethtool_stats(dev
, &stats
, data
);
1945 if (copy_to_user(useraddr
, &stats
, sizeof(stats
)))
1947 useraddr
+= sizeof(stats
);
1948 if (n_stats
&& copy_to_user(useraddr
, data
, n_stats
* sizeof(u64
)))
1957 static int ethtool_get_phy_stats(struct net_device
*dev
, void __user
*useraddr
)
1959 struct ethtool_stats stats
;
1960 struct phy_device
*phydev
= dev
->phydev
;
1967 n_stats
= phy_get_sset_count(phydev
);
1970 if (n_stats
> S32_MAX
/ sizeof(u64
))
1972 WARN_ON_ONCE(!n_stats
);
1974 if (copy_from_user(&stats
, useraddr
, sizeof(stats
)))
1977 stats
.n_stats
= n_stats
;
1978 data
= vzalloc(n_stats
* sizeof(u64
));
1979 if (n_stats
&& !data
)
1982 mutex_lock(&phydev
->lock
);
1983 phydev
->drv
->get_stats(phydev
, &stats
, data
);
1984 mutex_unlock(&phydev
->lock
);
1987 if (copy_to_user(useraddr
, &stats
, sizeof(stats
)))
1989 useraddr
+= sizeof(stats
);
1990 if (n_stats
&& copy_to_user(useraddr
, data
, n_stats
* sizeof(u64
)))
1999 static int ethtool_get_perm_addr(struct net_device
*dev
, void __user
*useraddr
)
2001 struct ethtool_perm_addr epaddr
;
2003 if (copy_from_user(&epaddr
, useraddr
, sizeof(epaddr
)))
2006 if (epaddr
.size
< dev
->addr_len
)
2008 epaddr
.size
= dev
->addr_len
;
2010 if (copy_to_user(useraddr
, &epaddr
, sizeof(epaddr
)))
2012 useraddr
+= sizeof(epaddr
);
2013 if (copy_to_user(useraddr
, dev
->perm_addr
, epaddr
.size
))
2018 static int ethtool_get_value(struct net_device
*dev
, char __user
*useraddr
,
2019 u32 cmd
, u32 (*actor
)(struct net_device
*))
2021 struct ethtool_value edata
= { .cmd
= cmd
};
2026 edata
.data
= actor(dev
);
2028 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
2033 static int ethtool_set_value_void(struct net_device
*dev
, char __user
*useraddr
,
2034 void (*actor
)(struct net_device
*, u32
))
2036 struct ethtool_value edata
;
2041 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
2044 actor(dev
, edata
.data
);
2048 static int ethtool_set_value(struct net_device
*dev
, char __user
*useraddr
,
2049 int (*actor
)(struct net_device
*, u32
))
2051 struct ethtool_value edata
;
2056 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
2059 return actor(dev
, edata
.data
);
2062 static noinline_for_stack
int ethtool_flash_device(struct net_device
*dev
,
2063 char __user
*useraddr
)
2065 struct ethtool_flash efl
;
2067 if (copy_from_user(&efl
, useraddr
, sizeof(efl
)))
2070 if (!dev
->ethtool_ops
->flash_device
)
2073 efl
.data
[ETHTOOL_FLASH_MAX_FILENAME
- 1] = 0;
2075 return dev
->ethtool_ops
->flash_device(dev
, &efl
);
2078 static int ethtool_set_dump(struct net_device
*dev
,
2079 void __user
*useraddr
)
2081 struct ethtool_dump dump
;
2083 if (!dev
->ethtool_ops
->set_dump
)
2086 if (copy_from_user(&dump
, useraddr
, sizeof(dump
)))
2089 return dev
->ethtool_ops
->set_dump(dev
, &dump
);
2092 static int ethtool_get_dump_flag(struct net_device
*dev
,
2093 void __user
*useraddr
)
2096 struct ethtool_dump dump
;
2097 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2099 if (!ops
->get_dump_flag
)
2102 if (copy_from_user(&dump
, useraddr
, sizeof(dump
)))
2105 ret
= ops
->get_dump_flag(dev
, &dump
);
2109 if (copy_to_user(useraddr
, &dump
, sizeof(dump
)))
2114 static int ethtool_get_dump_data(struct net_device
*dev
,
2115 void __user
*useraddr
)
2119 struct ethtool_dump dump
, tmp
;
2120 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2123 if (!ops
->get_dump_data
|| !ops
->get_dump_flag
)
2126 if (copy_from_user(&dump
, useraddr
, sizeof(dump
)))
2129 memset(&tmp
, 0, sizeof(tmp
));
2130 tmp
.cmd
= ETHTOOL_GET_DUMP_FLAG
;
2131 ret
= ops
->get_dump_flag(dev
, &tmp
);
2135 len
= min(tmp
.len
, dump
.len
);
2139 /* Don't ever let the driver think there's more space available
2140 * than it requested with .get_dump_flag().
2144 /* Always allocate enough space to hold the whole thing so that the
2145 * driver does not need to check the length and bother with partial
2148 data
= vzalloc(tmp
.len
);
2151 ret
= ops
->get_dump_data(dev
, &dump
, data
);
2155 /* There are two sane possibilities:
2156 * 1. The driver's .get_dump_data() does not touch dump.len.
2157 * 2. Or it may set dump.len to how much it really writes, which
2158 * should be tmp.len (or len if it can do a partial dump).
2159 * In any case respond to userspace with the actual length of data
2162 WARN_ON(dump
.len
!= len
&& dump
.len
!= tmp
.len
);
2165 if (copy_to_user(useraddr
, &dump
, sizeof(dump
))) {
2169 useraddr
+= offsetof(struct ethtool_dump
, data
);
2170 if (copy_to_user(useraddr
, data
, len
))
2177 static int ethtool_get_ts_info(struct net_device
*dev
, void __user
*useraddr
)
2180 struct ethtool_ts_info info
;
2181 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2182 struct phy_device
*phydev
= dev
->phydev
;
2184 memset(&info
, 0, sizeof(info
));
2185 info
.cmd
= ETHTOOL_GET_TS_INFO
;
2187 if (phydev
&& phydev
->drv
&& phydev
->drv
->ts_info
) {
2188 err
= phydev
->drv
->ts_info(phydev
, &info
);
2189 } else if (ops
->get_ts_info
) {
2190 err
= ops
->get_ts_info(dev
, &info
);
2192 info
.so_timestamping
=
2193 SOF_TIMESTAMPING_RX_SOFTWARE
|
2194 SOF_TIMESTAMPING_SOFTWARE
;
2195 info
.phc_index
= -1;
2201 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
2207 static int __ethtool_get_module_info(struct net_device
*dev
,
2208 struct ethtool_modinfo
*modinfo
)
2210 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2211 struct phy_device
*phydev
= dev
->phydev
;
2213 if (phydev
&& phydev
->drv
&& phydev
->drv
->module_info
)
2214 return phydev
->drv
->module_info(phydev
, modinfo
);
2216 if (ops
->get_module_info
)
2217 return ops
->get_module_info(dev
, modinfo
);
2222 static int ethtool_get_module_info(struct net_device
*dev
,
2223 void __user
*useraddr
)
2226 struct ethtool_modinfo modinfo
;
2228 if (copy_from_user(&modinfo
, useraddr
, sizeof(modinfo
)))
2231 ret
= __ethtool_get_module_info(dev
, &modinfo
);
2235 if (copy_to_user(useraddr
, &modinfo
, sizeof(modinfo
)))
2241 static int __ethtool_get_module_eeprom(struct net_device
*dev
,
2242 struct ethtool_eeprom
*ee
, u8
*data
)
2244 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2245 struct phy_device
*phydev
= dev
->phydev
;
2247 if (phydev
&& phydev
->drv
&& phydev
->drv
->module_eeprom
)
2248 return phydev
->drv
->module_eeprom(phydev
, ee
, data
);
2250 if (ops
->get_module_eeprom
)
2251 return ops
->get_module_eeprom(dev
, ee
, data
);
2256 static int ethtool_get_module_eeprom(struct net_device
*dev
,
2257 void __user
*useraddr
)
2260 struct ethtool_modinfo modinfo
;
2262 ret
= __ethtool_get_module_info(dev
, &modinfo
);
2266 return ethtool_get_any_eeprom(dev
, useraddr
,
2267 __ethtool_get_module_eeprom
,
2268 modinfo
.eeprom_len
);
2271 static int ethtool_tunable_valid(const struct ethtool_tunable
*tuna
)
2274 case ETHTOOL_RX_COPYBREAK
:
2275 case ETHTOOL_TX_COPYBREAK
:
2276 if (tuna
->len
!= sizeof(u32
) ||
2277 tuna
->type_id
!= ETHTOOL_TUNABLE_U32
)
2287 static int ethtool_get_tunable(struct net_device
*dev
, void __user
*useraddr
)
2290 struct ethtool_tunable tuna
;
2291 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2294 if (!ops
->get_tunable
)
2296 if (copy_from_user(&tuna
, useraddr
, sizeof(tuna
)))
2298 ret
= ethtool_tunable_valid(&tuna
);
2301 data
= kmalloc(tuna
.len
, GFP_USER
);
2304 ret
= ops
->get_tunable(dev
, &tuna
, data
);
2307 useraddr
+= sizeof(tuna
);
2309 if (copy_to_user(useraddr
, data
, tuna
.len
))
2318 static int ethtool_set_tunable(struct net_device
*dev
, void __user
*useraddr
)
2321 struct ethtool_tunable tuna
;
2322 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2325 if (!ops
->set_tunable
)
2327 if (copy_from_user(&tuna
, useraddr
, sizeof(tuna
)))
2329 ret
= ethtool_tunable_valid(&tuna
);
2332 useraddr
+= sizeof(tuna
);
2333 data
= memdup_user(useraddr
, tuna
.len
);
2335 return PTR_ERR(data
);
2336 ret
= ops
->set_tunable(dev
, &tuna
, data
);
2342 static int ethtool_get_per_queue_coalesce(struct net_device
*dev
,
2343 void __user
*useraddr
,
2344 struct ethtool_per_queue_op
*per_queue_opt
)
2348 DECLARE_BITMAP(queue_mask
, MAX_NUM_QUEUE
);
2350 if (!dev
->ethtool_ops
->get_per_queue_coalesce
)
2353 useraddr
+= sizeof(*per_queue_opt
);
2355 bitmap_from_arr32(queue_mask
, per_queue_opt
->queue_mask
,
2358 for_each_set_bit(bit
, queue_mask
, MAX_NUM_QUEUE
) {
2359 struct ethtool_coalesce coalesce
= { .cmd
= ETHTOOL_GCOALESCE
};
2361 ret
= dev
->ethtool_ops
->get_per_queue_coalesce(dev
, bit
, &coalesce
);
2364 if (copy_to_user(useraddr
, &coalesce
, sizeof(coalesce
)))
2366 useraddr
+= sizeof(coalesce
);
2372 static int ethtool_set_per_queue_coalesce(struct net_device
*dev
,
2373 void __user
*useraddr
,
2374 struct ethtool_per_queue_op
*per_queue_opt
)
2379 struct ethtool_coalesce
*backup
= NULL
, *tmp
= NULL
;
2380 DECLARE_BITMAP(queue_mask
, MAX_NUM_QUEUE
);
2382 if ((!dev
->ethtool_ops
->set_per_queue_coalesce
) ||
2383 (!dev
->ethtool_ops
->get_per_queue_coalesce
))
2386 useraddr
+= sizeof(*per_queue_opt
);
2388 bitmap_from_arr32(queue_mask
, per_queue_opt
->queue_mask
, MAX_NUM_QUEUE
);
2389 n_queue
= bitmap_weight(queue_mask
, MAX_NUM_QUEUE
);
2390 tmp
= backup
= kmalloc_array(n_queue
, sizeof(*backup
), GFP_KERNEL
);
2394 for_each_set_bit(bit
, queue_mask
, MAX_NUM_QUEUE
) {
2395 struct ethtool_coalesce coalesce
;
2397 ret
= dev
->ethtool_ops
->get_per_queue_coalesce(dev
, bit
, tmp
);
2403 if (copy_from_user(&coalesce
, useraddr
, sizeof(coalesce
))) {
2408 ret
= dev
->ethtool_ops
->set_per_queue_coalesce(dev
, bit
, &coalesce
);
2412 useraddr
+= sizeof(coalesce
);
2418 for_each_set_bit(i
, queue_mask
, bit
) {
2419 dev
->ethtool_ops
->set_per_queue_coalesce(dev
, i
, tmp
);
2428 static int ethtool_set_per_queue(struct net_device
*dev
, void __user
*useraddr
)
2430 struct ethtool_per_queue_op per_queue_opt
;
2432 if (copy_from_user(&per_queue_opt
, useraddr
, sizeof(per_queue_opt
)))
2435 switch (per_queue_opt
.sub_command
) {
2436 case ETHTOOL_GCOALESCE
:
2437 return ethtool_get_per_queue_coalesce(dev
, useraddr
, &per_queue_opt
);
2438 case ETHTOOL_SCOALESCE
:
2439 return ethtool_set_per_queue_coalesce(dev
, useraddr
, &per_queue_opt
);
2445 static int ethtool_phy_tunable_valid(const struct ethtool_tunable
*tuna
)
2448 case ETHTOOL_PHY_DOWNSHIFT
:
2449 if (tuna
->len
!= sizeof(u8
) ||
2450 tuna
->type_id
!= ETHTOOL_TUNABLE_U8
)
2460 static int get_phy_tunable(struct net_device
*dev
, void __user
*useraddr
)
2463 struct ethtool_tunable tuna
;
2464 struct phy_device
*phydev
= dev
->phydev
;
2467 if (!(phydev
&& phydev
->drv
&& phydev
->drv
->get_tunable
))
2470 if (copy_from_user(&tuna
, useraddr
, sizeof(tuna
)))
2472 ret
= ethtool_phy_tunable_valid(&tuna
);
2475 data
= kmalloc(tuna
.len
, GFP_USER
);
2478 mutex_lock(&phydev
->lock
);
2479 ret
= phydev
->drv
->get_tunable(phydev
, &tuna
, data
);
2480 mutex_unlock(&phydev
->lock
);
2483 useraddr
+= sizeof(tuna
);
2485 if (copy_to_user(useraddr
, data
, tuna
.len
))
2494 static int set_phy_tunable(struct net_device
*dev
, void __user
*useraddr
)
2497 struct ethtool_tunable tuna
;
2498 struct phy_device
*phydev
= dev
->phydev
;
2501 if (!(phydev
&& phydev
->drv
&& phydev
->drv
->set_tunable
))
2503 if (copy_from_user(&tuna
, useraddr
, sizeof(tuna
)))
2505 ret
= ethtool_phy_tunable_valid(&tuna
);
2508 useraddr
+= sizeof(tuna
);
2509 data
= memdup_user(useraddr
, tuna
.len
);
2511 return PTR_ERR(data
);
2512 mutex_lock(&phydev
->lock
);
2513 ret
= phydev
->drv
->set_tunable(phydev
, &tuna
, data
);
2514 mutex_unlock(&phydev
->lock
);
2520 static int ethtool_get_fecparam(struct net_device
*dev
, void __user
*useraddr
)
2522 struct ethtool_fecparam fecparam
= { ETHTOOL_GFECPARAM
};
2524 if (!dev
->ethtool_ops
->get_fecparam
)
2527 dev
->ethtool_ops
->get_fecparam(dev
, &fecparam
);
2529 if (copy_to_user(useraddr
, &fecparam
, sizeof(fecparam
)))
2534 static int ethtool_set_fecparam(struct net_device
*dev
, void __user
*useraddr
)
2536 struct ethtool_fecparam fecparam
;
2538 if (!dev
->ethtool_ops
->set_fecparam
)
2541 if (copy_from_user(&fecparam
, useraddr
, sizeof(fecparam
)))
2544 return dev
->ethtool_ops
->set_fecparam(dev
, &fecparam
);
2547 /* The main entry point in this file. Called from net/core/dev_ioctl.c */
2549 int dev_ethtool(struct net
*net
, struct ifreq
*ifr
)
2551 struct net_device
*dev
= __dev_get_by_name(net
, ifr
->ifr_name
);
2552 void __user
*useraddr
= ifr
->ifr_data
;
2553 u32 ethcmd
, sub_cmd
;
2555 netdev_features_t old_features
;
2557 if (!dev
|| !netif_device_present(dev
))
2560 if (copy_from_user(ðcmd
, useraddr
, sizeof(ethcmd
)))
2563 if (ethcmd
== ETHTOOL_PERQUEUE
) {
2564 if (copy_from_user(&sub_cmd
, useraddr
+ sizeof(ethcmd
), sizeof(sub_cmd
)))
2569 /* Allow some commands to be done by anyone */
2572 case ETHTOOL_GDRVINFO
:
2573 case ETHTOOL_GMSGLVL
:
2575 case ETHTOOL_GCOALESCE
:
2576 case ETHTOOL_GRINGPARAM
:
2577 case ETHTOOL_GPAUSEPARAM
:
2578 case ETHTOOL_GRXCSUM
:
2579 case ETHTOOL_GTXCSUM
:
2581 case ETHTOOL_GSSET_INFO
:
2582 case ETHTOOL_GSTRINGS
:
2583 case ETHTOOL_GSTATS
:
2584 case ETHTOOL_GPHYSTATS
:
2586 case ETHTOOL_GPERMADDR
:
2589 case ETHTOOL_GFLAGS
:
2590 case ETHTOOL_GPFLAGS
:
2592 case ETHTOOL_GRXRINGS
:
2593 case ETHTOOL_GRXCLSRLCNT
:
2594 case ETHTOOL_GRXCLSRULE
:
2595 case ETHTOOL_GRXCLSRLALL
:
2596 case ETHTOOL_GRXFHINDIR
:
2598 case ETHTOOL_GFEATURES
:
2599 case ETHTOOL_GCHANNELS
:
2600 case ETHTOOL_GET_TS_INFO
:
2602 case ETHTOOL_GTUNABLE
:
2603 case ETHTOOL_PHY_GTUNABLE
:
2604 case ETHTOOL_GLINKSETTINGS
:
2605 case ETHTOOL_GFECPARAM
:
2608 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
2612 if (dev
->ethtool_ops
->begin
) {
2613 rc
= dev
->ethtool_ops
->begin(dev
);
2617 old_features
= dev
->features
;
2621 rc
= ethtool_get_settings(dev
, useraddr
);
2624 rc
= ethtool_set_settings(dev
, useraddr
);
2626 case ETHTOOL_GDRVINFO
:
2627 rc
= ethtool_get_drvinfo(dev
, useraddr
);
2630 rc
= ethtool_get_regs(dev
, useraddr
);
2633 rc
= ethtool_get_wol(dev
, useraddr
);
2636 rc
= ethtool_set_wol(dev
, useraddr
);
2638 case ETHTOOL_GMSGLVL
:
2639 rc
= ethtool_get_value(dev
, useraddr
, ethcmd
,
2640 dev
->ethtool_ops
->get_msglevel
);
2642 case ETHTOOL_SMSGLVL
:
2643 rc
= ethtool_set_value_void(dev
, useraddr
,
2644 dev
->ethtool_ops
->set_msglevel
);
2647 rc
= ethtool_get_eee(dev
, useraddr
);
2650 rc
= ethtool_set_eee(dev
, useraddr
);
2652 case ETHTOOL_NWAY_RST
:
2653 rc
= ethtool_nway_reset(dev
);
2656 rc
= ethtool_get_link(dev
, useraddr
);
2658 case ETHTOOL_GEEPROM
:
2659 rc
= ethtool_get_eeprom(dev
, useraddr
);
2661 case ETHTOOL_SEEPROM
:
2662 rc
= ethtool_set_eeprom(dev
, useraddr
);
2664 case ETHTOOL_GCOALESCE
:
2665 rc
= ethtool_get_coalesce(dev
, useraddr
);
2667 case ETHTOOL_SCOALESCE
:
2668 rc
= ethtool_set_coalesce(dev
, useraddr
);
2670 case ETHTOOL_GRINGPARAM
:
2671 rc
= ethtool_get_ringparam(dev
, useraddr
);
2673 case ETHTOOL_SRINGPARAM
:
2674 rc
= ethtool_set_ringparam(dev
, useraddr
);
2676 case ETHTOOL_GPAUSEPARAM
:
2677 rc
= ethtool_get_pauseparam(dev
, useraddr
);
2679 case ETHTOOL_SPAUSEPARAM
:
2680 rc
= ethtool_set_pauseparam(dev
, useraddr
);
2683 rc
= ethtool_self_test(dev
, useraddr
);
2685 case ETHTOOL_GSTRINGS
:
2686 rc
= ethtool_get_strings(dev
, useraddr
);
2688 case ETHTOOL_PHYS_ID
:
2689 rc
= ethtool_phys_id(dev
, useraddr
);
2691 case ETHTOOL_GSTATS
:
2692 rc
= ethtool_get_stats(dev
, useraddr
);
2694 case ETHTOOL_GPERMADDR
:
2695 rc
= ethtool_get_perm_addr(dev
, useraddr
);
2697 case ETHTOOL_GFLAGS
:
2698 rc
= ethtool_get_value(dev
, useraddr
, ethcmd
,
2699 __ethtool_get_flags
);
2701 case ETHTOOL_SFLAGS
:
2702 rc
= ethtool_set_value(dev
, useraddr
, __ethtool_set_flags
);
2704 case ETHTOOL_GPFLAGS
:
2705 rc
= ethtool_get_value(dev
, useraddr
, ethcmd
,
2706 dev
->ethtool_ops
->get_priv_flags
);
2708 case ETHTOOL_SPFLAGS
:
2709 rc
= ethtool_set_value(dev
, useraddr
,
2710 dev
->ethtool_ops
->set_priv_flags
);
2713 case ETHTOOL_GRXRINGS
:
2714 case ETHTOOL_GRXCLSRLCNT
:
2715 case ETHTOOL_GRXCLSRULE
:
2716 case ETHTOOL_GRXCLSRLALL
:
2717 rc
= ethtool_get_rxnfc(dev
, ethcmd
, useraddr
);
2720 case ETHTOOL_SRXCLSRLDEL
:
2721 case ETHTOOL_SRXCLSRLINS
:
2722 rc
= ethtool_set_rxnfc(dev
, ethcmd
, useraddr
);
2724 case ETHTOOL_FLASHDEV
:
2725 rc
= ethtool_flash_device(dev
, useraddr
);
2728 rc
= ethtool_reset(dev
, useraddr
);
2730 case ETHTOOL_GSSET_INFO
:
2731 rc
= ethtool_get_sset_info(dev
, useraddr
);
2733 case ETHTOOL_GRXFHINDIR
:
2734 rc
= ethtool_get_rxfh_indir(dev
, useraddr
);
2736 case ETHTOOL_SRXFHINDIR
:
2737 rc
= ethtool_set_rxfh_indir(dev
, useraddr
);
2740 rc
= ethtool_get_rxfh(dev
, useraddr
);
2743 rc
= ethtool_set_rxfh(dev
, useraddr
);
2745 case ETHTOOL_GFEATURES
:
2746 rc
= ethtool_get_features(dev
, useraddr
);
2748 case ETHTOOL_SFEATURES
:
2749 rc
= ethtool_set_features(dev
, useraddr
);
2751 case ETHTOOL_GTXCSUM
:
2752 case ETHTOOL_GRXCSUM
:
2757 rc
= ethtool_get_one_feature(dev
, useraddr
, ethcmd
);
2759 case ETHTOOL_STXCSUM
:
2760 case ETHTOOL_SRXCSUM
:
2765 rc
= ethtool_set_one_feature(dev
, useraddr
, ethcmd
);
2767 case ETHTOOL_GCHANNELS
:
2768 rc
= ethtool_get_channels(dev
, useraddr
);
2770 case ETHTOOL_SCHANNELS
:
2771 rc
= ethtool_set_channels(dev
, useraddr
);
2773 case ETHTOOL_SET_DUMP
:
2774 rc
= ethtool_set_dump(dev
, useraddr
);
2776 case ETHTOOL_GET_DUMP_FLAG
:
2777 rc
= ethtool_get_dump_flag(dev
, useraddr
);
2779 case ETHTOOL_GET_DUMP_DATA
:
2780 rc
= ethtool_get_dump_data(dev
, useraddr
);
2782 case ETHTOOL_GET_TS_INFO
:
2783 rc
= ethtool_get_ts_info(dev
, useraddr
);
2785 case ETHTOOL_GMODULEINFO
:
2786 rc
= ethtool_get_module_info(dev
, useraddr
);
2788 case ETHTOOL_GMODULEEEPROM
:
2789 rc
= ethtool_get_module_eeprom(dev
, useraddr
);
2791 case ETHTOOL_GTUNABLE
:
2792 rc
= ethtool_get_tunable(dev
, useraddr
);
2794 case ETHTOOL_STUNABLE
:
2795 rc
= ethtool_set_tunable(dev
, useraddr
);
2797 case ETHTOOL_GPHYSTATS
:
2798 rc
= ethtool_get_phy_stats(dev
, useraddr
);
2800 case ETHTOOL_PERQUEUE
:
2801 rc
= ethtool_set_per_queue(dev
, useraddr
);
2803 case ETHTOOL_GLINKSETTINGS
:
2804 rc
= ethtool_get_link_ksettings(dev
, useraddr
);
2806 case ETHTOOL_SLINKSETTINGS
:
2807 rc
= ethtool_set_link_ksettings(dev
, useraddr
);
2809 case ETHTOOL_PHY_GTUNABLE
:
2810 rc
= get_phy_tunable(dev
, useraddr
);
2812 case ETHTOOL_PHY_STUNABLE
:
2813 rc
= set_phy_tunable(dev
, useraddr
);
2815 case ETHTOOL_GFECPARAM
:
2816 rc
= ethtool_get_fecparam(dev
, useraddr
);
2818 case ETHTOOL_SFECPARAM
:
2819 rc
= ethtool_set_fecparam(dev
, useraddr
);
2825 if (dev
->ethtool_ops
->complete
)
2826 dev
->ethtool_ops
->complete(dev
);
2828 if (old_features
!= dev
->features
)
2829 netdev_features_change(dev
);