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_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_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",
94 [NETIF_F_FCOE_CRC_BIT
] = "tx-checksum-fcoe-crc",
95 [NETIF_F_SCTP_CRC_BIT
] = "tx-checksum-sctp",
96 [NETIF_F_FCOE_MTU_BIT
] = "fcoe-mtu",
97 [NETIF_F_NTUPLE_BIT
] = "rx-ntuple-filter",
98 [NETIF_F_RXHASH_BIT
] = "rx-hashing",
99 [NETIF_F_RXCSUM_BIT
] = "rx-checksum",
100 [NETIF_F_NOCACHE_COPY_BIT
] = "tx-nocache-copy",
101 [NETIF_F_LOOPBACK_BIT
] = "loopback",
102 [NETIF_F_RXFCS_BIT
] = "rx-fcs",
103 [NETIF_F_RXALL_BIT
] = "rx-all",
104 [NETIF_F_HW_L2FW_DOFFLOAD_BIT
] = "l2-fwd-offload",
105 [NETIF_F_HW_TC_BIT
] = "hw-tc-offload",
109 rss_hash_func_strings
[ETH_RSS_HASH_FUNCS_COUNT
][ETH_GSTRING_LEN
] = {
110 [ETH_RSS_HASH_TOP_BIT
] = "toeplitz",
111 [ETH_RSS_HASH_XOR_BIT
] = "xor",
115 tunable_strings
[__ETHTOOL_TUNABLE_COUNT
][ETH_GSTRING_LEN
] = {
116 [ETHTOOL_ID_UNSPEC
] = "Unspec",
117 [ETHTOOL_RX_COPYBREAK
] = "rx-copybreak",
118 [ETHTOOL_TX_COPYBREAK
] = "tx-copybreak",
122 phy_tunable_strings
[__ETHTOOL_PHY_TUNABLE_COUNT
][ETH_GSTRING_LEN
] = {
123 [ETHTOOL_ID_UNSPEC
] = "Unspec",
124 [ETHTOOL_PHY_DOWNSHIFT
] = "phy-downshift",
127 static int ethtool_get_features(struct net_device
*dev
, void __user
*useraddr
)
129 struct ethtool_gfeatures cmd
= {
130 .cmd
= ETHTOOL_GFEATURES
,
131 .size
= ETHTOOL_DEV_FEATURE_WORDS
,
133 struct ethtool_get_features_block features
[ETHTOOL_DEV_FEATURE_WORDS
];
134 u32 __user
*sizeaddr
;
138 /* in case feature bits run out again */
139 BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS
* sizeof(u32
) > sizeof(netdev_features_t
));
141 for (i
= 0; i
< ETHTOOL_DEV_FEATURE_WORDS
; ++i
) {
142 features
[i
].available
= (u32
)(dev
->hw_features
>> (32 * i
));
143 features
[i
].requested
= (u32
)(dev
->wanted_features
>> (32 * i
));
144 features
[i
].active
= (u32
)(dev
->features
>> (32 * i
));
145 features
[i
].never_changed
=
146 (u32
)(NETIF_F_NEVER_CHANGE
>> (32 * i
));
149 sizeaddr
= useraddr
+ offsetof(struct ethtool_gfeatures
, size
);
150 if (get_user(copy_size
, sizeaddr
))
153 if (copy_size
> ETHTOOL_DEV_FEATURE_WORDS
)
154 copy_size
= ETHTOOL_DEV_FEATURE_WORDS
;
156 if (copy_to_user(useraddr
, &cmd
, sizeof(cmd
)))
158 useraddr
+= sizeof(cmd
);
159 if (copy_to_user(useraddr
, features
, copy_size
* sizeof(*features
)))
165 static int ethtool_set_features(struct net_device
*dev
, void __user
*useraddr
)
167 struct ethtool_sfeatures cmd
;
168 struct ethtool_set_features_block features
[ETHTOOL_DEV_FEATURE_WORDS
];
169 netdev_features_t wanted
= 0, valid
= 0;
172 if (copy_from_user(&cmd
, useraddr
, sizeof(cmd
)))
174 useraddr
+= sizeof(cmd
);
176 if (cmd
.size
!= ETHTOOL_DEV_FEATURE_WORDS
)
179 if (copy_from_user(features
, useraddr
, sizeof(features
)))
182 for (i
= 0; i
< ETHTOOL_DEV_FEATURE_WORDS
; ++i
) {
183 valid
|= (netdev_features_t
)features
[i
].valid
<< (32 * i
);
184 wanted
|= (netdev_features_t
)features
[i
].requested
<< (32 * i
);
187 if (valid
& ~NETIF_F_ETHTOOL_BITS
)
190 if (valid
& ~dev
->hw_features
) {
191 valid
&= dev
->hw_features
;
192 ret
|= ETHTOOL_F_UNSUPPORTED
;
195 dev
->wanted_features
&= ~valid
;
196 dev
->wanted_features
|= wanted
& valid
;
197 __netdev_update_features(dev
);
199 if ((dev
->wanted_features
^ dev
->features
) & valid
)
200 ret
|= ETHTOOL_F_WISH
;
205 static int phy_get_sset_count(struct phy_device
*phydev
)
209 if (phydev
->drv
->get_sset_count
&&
210 phydev
->drv
->get_strings
&&
211 phydev
->drv
->get_stats
) {
212 mutex_lock(&phydev
->lock
);
213 ret
= phydev
->drv
->get_sset_count(phydev
);
214 mutex_unlock(&phydev
->lock
);
222 static int __ethtool_get_sset_count(struct net_device
*dev
, int sset
)
224 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
226 if (sset
== ETH_SS_FEATURES
)
227 return ARRAY_SIZE(netdev_features_strings
);
229 if (sset
== ETH_SS_RSS_HASH_FUNCS
)
230 return ARRAY_SIZE(rss_hash_func_strings
);
232 if (sset
== ETH_SS_TUNABLES
)
233 return ARRAY_SIZE(tunable_strings
);
235 if (sset
== ETH_SS_PHY_TUNABLES
)
236 return ARRAY_SIZE(phy_tunable_strings
);
238 if (sset
== ETH_SS_PHY_STATS
) {
240 return phy_get_sset_count(dev
->phydev
);
245 if (ops
->get_sset_count
&& ops
->get_strings
)
246 return ops
->get_sset_count(dev
, sset
);
251 static void __ethtool_get_strings(struct net_device
*dev
,
252 u32 stringset
, u8
*data
)
254 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
256 if (stringset
== ETH_SS_FEATURES
)
257 memcpy(data
, netdev_features_strings
,
258 sizeof(netdev_features_strings
));
259 else if (stringset
== ETH_SS_RSS_HASH_FUNCS
)
260 memcpy(data
, rss_hash_func_strings
,
261 sizeof(rss_hash_func_strings
));
262 else if (stringset
== ETH_SS_TUNABLES
)
263 memcpy(data
, tunable_strings
, sizeof(tunable_strings
));
264 else if (stringset
== ETH_SS_PHY_TUNABLES
)
265 memcpy(data
, phy_tunable_strings
, sizeof(phy_tunable_strings
));
266 else if (stringset
== ETH_SS_PHY_STATS
) {
267 struct phy_device
*phydev
= dev
->phydev
;
270 mutex_lock(&phydev
->lock
);
271 phydev
->drv
->get_strings(phydev
, data
);
272 mutex_unlock(&phydev
->lock
);
277 /* ops->get_strings is valid because checked earlier */
278 ops
->get_strings(dev
, stringset
, data
);
281 static netdev_features_t
ethtool_get_feature_mask(u32 eth_cmd
)
283 /* feature masks of legacy discrete ethtool ops */
286 case ETHTOOL_GTXCSUM
:
287 case ETHTOOL_STXCSUM
:
288 return NETIF_F_CSUM_MASK
| NETIF_F_SCTP_CRC
;
289 case ETHTOOL_GRXCSUM
:
290 case ETHTOOL_SRXCSUM
:
291 return NETIF_F_RXCSUM
;
297 return NETIF_F_ALL_TSO
;
312 static int ethtool_get_one_feature(struct net_device
*dev
,
313 char __user
*useraddr
, u32 ethcmd
)
315 netdev_features_t mask
= ethtool_get_feature_mask(ethcmd
);
316 struct ethtool_value edata
= {
318 .data
= !!(dev
->features
& mask
),
321 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
326 static int ethtool_set_one_feature(struct net_device
*dev
,
327 void __user
*useraddr
, u32 ethcmd
)
329 struct ethtool_value edata
;
330 netdev_features_t mask
;
332 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
335 mask
= ethtool_get_feature_mask(ethcmd
);
336 mask
&= dev
->hw_features
;
341 dev
->wanted_features
|= mask
;
343 dev
->wanted_features
&= ~mask
;
345 __netdev_update_features(dev
);
350 #define ETH_ALL_FLAGS (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
351 ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
352 #define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
353 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
356 static u32
__ethtool_get_flags(struct net_device
*dev
)
360 if (dev
->features
& NETIF_F_LRO
)
361 flags
|= ETH_FLAG_LRO
;
362 if (dev
->features
& NETIF_F_HW_VLAN_CTAG_RX
)
363 flags
|= ETH_FLAG_RXVLAN
;
364 if (dev
->features
& NETIF_F_HW_VLAN_CTAG_TX
)
365 flags
|= ETH_FLAG_TXVLAN
;
366 if (dev
->features
& NETIF_F_NTUPLE
)
367 flags
|= ETH_FLAG_NTUPLE
;
368 if (dev
->features
& NETIF_F_RXHASH
)
369 flags
|= ETH_FLAG_RXHASH
;
374 static int __ethtool_set_flags(struct net_device
*dev
, u32 data
)
376 netdev_features_t features
= 0, changed
;
378 if (data
& ~ETH_ALL_FLAGS
)
381 if (data
& ETH_FLAG_LRO
)
382 features
|= NETIF_F_LRO
;
383 if (data
& ETH_FLAG_RXVLAN
)
384 features
|= NETIF_F_HW_VLAN_CTAG_RX
;
385 if (data
& ETH_FLAG_TXVLAN
)
386 features
|= NETIF_F_HW_VLAN_CTAG_TX
;
387 if (data
& ETH_FLAG_NTUPLE
)
388 features
|= NETIF_F_NTUPLE
;
389 if (data
& ETH_FLAG_RXHASH
)
390 features
|= NETIF_F_RXHASH
;
392 /* allow changing only bits set in hw_features */
393 changed
= (features
^ dev
->features
) & ETH_ALL_FEATURES
;
394 if (changed
& ~dev
->hw_features
)
395 return (changed
& dev
->hw_features
) ? -EINVAL
: -EOPNOTSUPP
;
397 dev
->wanted_features
=
398 (dev
->wanted_features
& ~changed
) | (features
& changed
);
400 __netdev_update_features(dev
);
405 void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst
,
408 bitmap_zero(dst
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
411 EXPORT_SYMBOL(ethtool_convert_legacy_u32_to_link_mode
);
413 /* return false if src had higher bits set. lower bits always updated. */
414 bool ethtool_convert_link_mode_to_legacy_u32(u32
*legacy_u32
,
415 const unsigned long *src
)
419 /* TODO: following test will soon always be true */
420 if (__ETHTOOL_LINK_MODE_MASK_NBITS
> 32) {
421 __ETHTOOL_DECLARE_LINK_MODE_MASK(ext
);
423 bitmap_zero(ext
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
424 bitmap_fill(ext
, 32);
425 bitmap_complement(ext
, ext
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
426 if (bitmap_intersects(ext
, src
,
427 __ETHTOOL_LINK_MODE_MASK_NBITS
)) {
428 /* src mask goes beyond bit 31 */
432 *legacy_u32
= src
[0];
435 EXPORT_SYMBOL(ethtool_convert_link_mode_to_legacy_u32
);
437 /* return false if legacy contained non-0 deprecated fields
438 * transceiver/maxtxpkt/maxrxpkt. rest of ksettings always updated
441 convert_legacy_settings_to_link_ksettings(
442 struct ethtool_link_ksettings
*link_ksettings
,
443 const struct ethtool_cmd
*legacy_settings
)
447 memset(link_ksettings
, 0, sizeof(*link_ksettings
));
449 /* This is used to tell users that driver is still using these
450 * deprecated legacy fields, and they should not use
451 * %ETHTOOL_GLINKSETTINGS/%ETHTOOL_SLINKSETTINGS
453 if (legacy_settings
->transceiver
||
454 legacy_settings
->maxtxpkt
||
455 legacy_settings
->maxrxpkt
)
458 ethtool_convert_legacy_u32_to_link_mode(
459 link_ksettings
->link_modes
.supported
,
460 legacy_settings
->supported
);
461 ethtool_convert_legacy_u32_to_link_mode(
462 link_ksettings
->link_modes
.advertising
,
463 legacy_settings
->advertising
);
464 ethtool_convert_legacy_u32_to_link_mode(
465 link_ksettings
->link_modes
.lp_advertising
,
466 legacy_settings
->lp_advertising
);
467 link_ksettings
->base
.speed
468 = ethtool_cmd_speed(legacy_settings
);
469 link_ksettings
->base
.duplex
470 = legacy_settings
->duplex
;
471 link_ksettings
->base
.port
472 = legacy_settings
->port
;
473 link_ksettings
->base
.phy_address
474 = legacy_settings
->phy_address
;
475 link_ksettings
->base
.autoneg
476 = legacy_settings
->autoneg
;
477 link_ksettings
->base
.mdio_support
478 = legacy_settings
->mdio_support
;
479 link_ksettings
->base
.eth_tp_mdix
480 = legacy_settings
->eth_tp_mdix
;
481 link_ksettings
->base
.eth_tp_mdix_ctrl
482 = legacy_settings
->eth_tp_mdix_ctrl
;
486 /* return false if ksettings link modes had higher bits
487 * set. legacy_settings always updated (best effort)
490 convert_link_ksettings_to_legacy_settings(
491 struct ethtool_cmd
*legacy_settings
,
492 const struct ethtool_link_ksettings
*link_ksettings
)
496 memset(legacy_settings
, 0, sizeof(*legacy_settings
));
497 /* this also clears the deprecated fields in legacy structure:
503 retval
&= ethtool_convert_link_mode_to_legacy_u32(
504 &legacy_settings
->supported
,
505 link_ksettings
->link_modes
.supported
);
506 retval
&= ethtool_convert_link_mode_to_legacy_u32(
507 &legacy_settings
->advertising
,
508 link_ksettings
->link_modes
.advertising
);
509 retval
&= ethtool_convert_link_mode_to_legacy_u32(
510 &legacy_settings
->lp_advertising
,
511 link_ksettings
->link_modes
.lp_advertising
);
512 ethtool_cmd_speed_set(legacy_settings
, link_ksettings
->base
.speed
);
513 legacy_settings
->duplex
514 = link_ksettings
->base
.duplex
;
515 legacy_settings
->port
516 = link_ksettings
->base
.port
;
517 legacy_settings
->phy_address
518 = link_ksettings
->base
.phy_address
;
519 legacy_settings
->autoneg
520 = link_ksettings
->base
.autoneg
;
521 legacy_settings
->mdio_support
522 = link_ksettings
->base
.mdio_support
;
523 legacy_settings
->eth_tp_mdix
524 = link_ksettings
->base
.eth_tp_mdix
;
525 legacy_settings
->eth_tp_mdix_ctrl
526 = link_ksettings
->base
.eth_tp_mdix_ctrl
;
530 /* number of 32-bit words to store the user's link mode bitmaps */
531 #define __ETHTOOL_LINK_MODE_MASK_NU32 \
532 DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32)
534 /* layout of the struct passed from/to userland */
535 struct ethtool_link_usettings
{
536 struct ethtool_link_settings base
;
538 __u32 supported
[__ETHTOOL_LINK_MODE_MASK_NU32
];
539 __u32 advertising
[__ETHTOOL_LINK_MODE_MASK_NU32
];
540 __u32 lp_advertising
[__ETHTOOL_LINK_MODE_MASK_NU32
];
544 /* Internal kernel helper to query a device ethtool_link_settings.
546 * Backward compatibility note: for compatibility with legacy drivers
547 * that implement only the ethtool_cmd API, this has to work with both
548 * drivers implementing get_link_ksettings API and drivers
549 * implementing get_settings API. When drivers implement get_settings
550 * and report ethtool_cmd deprecated fields
551 * (transceiver/maxrxpkt/maxtxpkt), these fields are silently ignored
552 * because the resulting struct ethtool_link_settings does not report them.
554 int __ethtool_get_link_ksettings(struct net_device
*dev
,
555 struct ethtool_link_ksettings
*link_ksettings
)
558 struct ethtool_cmd cmd
;
562 if (dev
->ethtool_ops
->get_link_ksettings
) {
563 memset(link_ksettings
, 0, sizeof(*link_ksettings
));
564 return dev
->ethtool_ops
->get_link_ksettings(dev
,
568 /* driver doesn't support %ethtool_link_ksettings API. revert to
569 * legacy %ethtool_cmd API, unless it's not supported either.
570 * TODO: remove when ethtool_ops::get_settings disappears internally
572 if (!dev
->ethtool_ops
->get_settings
)
575 memset(&cmd
, 0, sizeof(cmd
));
576 cmd
.cmd
= ETHTOOL_GSET
;
577 err
= dev
->ethtool_ops
->get_settings(dev
, &cmd
);
581 /* we ignore deprecated fields transceiver/maxrxpkt/maxtxpkt
583 convert_legacy_settings_to_link_ksettings(link_ksettings
, &cmd
);
586 EXPORT_SYMBOL(__ethtool_get_link_ksettings
);
588 /* convert ethtool_link_usettings in user space to a kernel internal
589 * ethtool_link_ksettings. return 0 on success, errno on error.
591 static int load_link_ksettings_from_user(struct ethtool_link_ksettings
*to
,
592 const void __user
*from
)
594 struct ethtool_link_usettings link_usettings
;
596 if (copy_from_user(&link_usettings
, from
, sizeof(link_usettings
)))
599 memcpy(&to
->base
, &link_usettings
.base
, sizeof(to
->base
));
600 bitmap_from_u32array(to
->link_modes
.supported
,
601 __ETHTOOL_LINK_MODE_MASK_NBITS
,
602 link_usettings
.link_modes
.supported
,
603 __ETHTOOL_LINK_MODE_MASK_NU32
);
604 bitmap_from_u32array(to
->link_modes
.advertising
,
605 __ETHTOOL_LINK_MODE_MASK_NBITS
,
606 link_usettings
.link_modes
.advertising
,
607 __ETHTOOL_LINK_MODE_MASK_NU32
);
608 bitmap_from_u32array(to
->link_modes
.lp_advertising
,
609 __ETHTOOL_LINK_MODE_MASK_NBITS
,
610 link_usettings
.link_modes
.lp_advertising
,
611 __ETHTOOL_LINK_MODE_MASK_NU32
);
616 /* convert a kernel internal ethtool_link_ksettings to
617 * ethtool_link_usettings in user space. return 0 on success, errno on
621 store_link_ksettings_for_user(void __user
*to
,
622 const struct ethtool_link_ksettings
*from
)
624 struct ethtool_link_usettings link_usettings
;
626 memcpy(&link_usettings
.base
, &from
->base
, sizeof(link_usettings
));
627 bitmap_to_u32array(link_usettings
.link_modes
.supported
,
628 __ETHTOOL_LINK_MODE_MASK_NU32
,
629 from
->link_modes
.supported
,
630 __ETHTOOL_LINK_MODE_MASK_NBITS
);
631 bitmap_to_u32array(link_usettings
.link_modes
.advertising
,
632 __ETHTOOL_LINK_MODE_MASK_NU32
,
633 from
->link_modes
.advertising
,
634 __ETHTOOL_LINK_MODE_MASK_NBITS
);
635 bitmap_to_u32array(link_usettings
.link_modes
.lp_advertising
,
636 __ETHTOOL_LINK_MODE_MASK_NU32
,
637 from
->link_modes
.lp_advertising
,
638 __ETHTOOL_LINK_MODE_MASK_NBITS
);
640 if (copy_to_user(to
, &link_usettings
, sizeof(link_usettings
)))
646 /* Query device for its ethtool_link_settings.
648 * Backward compatibility note: this function must fail when driver
649 * does not implement ethtool::get_link_ksettings, even if legacy
650 * ethtool_ops::get_settings is implemented. This tells new versions
651 * of ethtool that they should use the legacy API %ETHTOOL_GSET for
652 * this driver, so that they can correctly access the ethtool_cmd
653 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
654 * implements ethtool_ops::get_settings anymore.
656 static int ethtool_get_link_ksettings(struct net_device
*dev
,
657 void __user
*useraddr
)
660 struct ethtool_link_ksettings link_ksettings
;
664 if (!dev
->ethtool_ops
->get_link_ksettings
)
667 /* handle bitmap nbits handshake */
668 if (copy_from_user(&link_ksettings
.base
, useraddr
,
669 sizeof(link_ksettings
.base
)))
672 if (__ETHTOOL_LINK_MODE_MASK_NU32
673 != link_ksettings
.base
.link_mode_masks_nwords
) {
674 /* wrong link mode nbits requested */
675 memset(&link_ksettings
, 0, sizeof(link_ksettings
));
676 link_ksettings
.base
.cmd
= ETHTOOL_GLINKSETTINGS
;
677 /* send back number of words required as negative val */
678 compiletime_assert(__ETHTOOL_LINK_MODE_MASK_NU32
<= S8_MAX
,
679 "need too many bits for link modes!");
680 link_ksettings
.base
.link_mode_masks_nwords
681 = -((s8
)__ETHTOOL_LINK_MODE_MASK_NU32
);
683 /* copy the base fields back to user, not the link
686 if (copy_to_user(useraddr
, &link_ksettings
.base
,
687 sizeof(link_ksettings
.base
)))
693 /* handshake successful: user/kernel agree on
694 * link_mode_masks_nwords
697 memset(&link_ksettings
, 0, sizeof(link_ksettings
));
698 err
= dev
->ethtool_ops
->get_link_ksettings(dev
, &link_ksettings
);
702 /* make sure we tell the right values to user */
703 link_ksettings
.base
.cmd
= ETHTOOL_GLINKSETTINGS
;
704 link_ksettings
.base
.link_mode_masks_nwords
705 = __ETHTOOL_LINK_MODE_MASK_NU32
;
707 return store_link_ksettings_for_user(useraddr
, &link_ksettings
);
710 /* Update device ethtool_link_settings.
712 * Backward compatibility note: this function must fail when driver
713 * does not implement ethtool::set_link_ksettings, even if legacy
714 * ethtool_ops::set_settings is implemented. This tells new versions
715 * of ethtool that they should use the legacy API %ETHTOOL_SSET for
716 * this driver, so that they can correctly update the ethtool_cmd
717 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
718 * implements ethtool_ops::get_settings anymore.
720 static int ethtool_set_link_ksettings(struct net_device
*dev
,
721 void __user
*useraddr
)
724 struct ethtool_link_ksettings link_ksettings
;
728 if (!dev
->ethtool_ops
->set_link_ksettings
)
731 /* make sure nbits field has expected value */
732 if (copy_from_user(&link_ksettings
.base
, useraddr
,
733 sizeof(link_ksettings
.base
)))
736 if (__ETHTOOL_LINK_MODE_MASK_NU32
737 != link_ksettings
.base
.link_mode_masks_nwords
)
740 /* copy the whole structure, now that we know it has expected
743 err
= load_link_ksettings_from_user(&link_ksettings
, useraddr
);
747 /* re-check nwords field, just in case */
748 if (__ETHTOOL_LINK_MODE_MASK_NU32
749 != link_ksettings
.base
.link_mode_masks_nwords
)
752 return dev
->ethtool_ops
->set_link_ksettings(dev
, &link_ksettings
);
756 warn_incomplete_ethtool_legacy_settings_conversion(const char *details
)
758 char name
[sizeof(current
->comm
)];
760 pr_info_once("warning: `%s' uses legacy ethtool link settings API, %s\n",
761 get_task_comm(name
, current
), details
);
764 /* Query device for its ethtool_cmd settings.
766 * Backward compatibility note: for compatibility with legacy ethtool,
767 * this has to work with both drivers implementing get_link_ksettings
768 * API and drivers implementing get_settings API. When drivers
769 * implement get_link_ksettings and report higher link mode bits, a
770 * kernel warning is logged once (with name of 1st driver/device) to
771 * recommend user to upgrade ethtool, but the command is successful
772 * (only the lower link mode bits reported back to user).
774 static int ethtool_get_settings(struct net_device
*dev
, void __user
*useraddr
)
776 struct ethtool_cmd cmd
;
780 if (dev
->ethtool_ops
->get_link_ksettings
) {
781 /* First, use link_ksettings API if it is supported */
783 struct ethtool_link_ksettings link_ksettings
;
785 memset(&link_ksettings
, 0, sizeof(link_ksettings
));
786 err
= dev
->ethtool_ops
->get_link_ksettings(dev
,
790 if (!convert_link_ksettings_to_legacy_settings(&cmd
,
792 warn_incomplete_ethtool_legacy_settings_conversion(
793 "link modes are only partially reported");
795 /* send a sensible cmd tag back to user */
796 cmd
.cmd
= ETHTOOL_GSET
;
798 /* driver doesn't support %ethtool_link_ksettings
799 * API. revert to legacy %ethtool_cmd API, unless it's
800 * not supported either.
804 if (!dev
->ethtool_ops
->get_settings
)
807 memset(&cmd
, 0, sizeof(cmd
));
808 cmd
.cmd
= ETHTOOL_GSET
;
809 err
= dev
->ethtool_ops
->get_settings(dev
, &cmd
);
814 if (copy_to_user(useraddr
, &cmd
, sizeof(cmd
)))
820 /* Update device link settings with given ethtool_cmd.
822 * Backward compatibility note: for compatibility with legacy ethtool,
823 * this has to work with both drivers implementing set_link_ksettings
824 * API and drivers implementing set_settings API. When drivers
825 * implement set_link_ksettings and user's request updates deprecated
826 * ethtool_cmd fields (transceiver/maxrxpkt/maxtxpkt), a kernel
827 * warning is logged once (with name of 1st driver/device) to
828 * recommend user to upgrade ethtool, and the request is rejected.
830 static int ethtool_set_settings(struct net_device
*dev
, void __user
*useraddr
)
832 struct ethtool_cmd cmd
;
836 if (copy_from_user(&cmd
, useraddr
, sizeof(cmd
)))
839 /* first, try new %ethtool_link_ksettings API. */
840 if (dev
->ethtool_ops
->set_link_ksettings
) {
841 struct ethtool_link_ksettings link_ksettings
;
843 if (!convert_legacy_settings_to_link_ksettings(&link_ksettings
,
847 link_ksettings
.base
.cmd
= ETHTOOL_SLINKSETTINGS
;
848 link_ksettings
.base
.link_mode_masks_nwords
849 = __ETHTOOL_LINK_MODE_MASK_NU32
;
850 return dev
->ethtool_ops
->set_link_ksettings(dev
,
854 /* legacy %ethtool_cmd API */
856 /* TODO: return -EOPNOTSUPP when ethtool_ops::get_settings
857 * disappears internally
860 if (!dev
->ethtool_ops
->set_settings
)
863 return dev
->ethtool_ops
->set_settings(dev
, &cmd
);
866 static noinline_for_stack
int ethtool_get_drvinfo(struct net_device
*dev
,
867 void __user
*useraddr
)
869 struct ethtool_drvinfo info
;
870 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
872 memset(&info
, 0, sizeof(info
));
873 info
.cmd
= ETHTOOL_GDRVINFO
;
874 if (ops
->get_drvinfo
) {
875 ops
->get_drvinfo(dev
, &info
);
876 } else if (dev
->dev
.parent
&& dev
->dev
.parent
->driver
) {
877 strlcpy(info
.bus_info
, dev_name(dev
->dev
.parent
),
878 sizeof(info
.bus_info
));
879 strlcpy(info
.driver
, dev
->dev
.parent
->driver
->name
,
880 sizeof(info
.driver
));
886 * this method of obtaining string set info is deprecated;
887 * Use ETHTOOL_GSSET_INFO instead.
889 if (ops
->get_sset_count
) {
892 rc
= ops
->get_sset_count(dev
, ETH_SS_TEST
);
894 info
.testinfo_len
= rc
;
895 rc
= ops
->get_sset_count(dev
, ETH_SS_STATS
);
898 rc
= ops
->get_sset_count(dev
, ETH_SS_PRIV_FLAGS
);
900 info
.n_priv_flags
= rc
;
902 if (ops
->get_regs_len
)
903 info
.regdump_len
= ops
->get_regs_len(dev
);
904 if (ops
->get_eeprom_len
)
905 info
.eedump_len
= ops
->get_eeprom_len(dev
);
907 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
912 static noinline_for_stack
int ethtool_get_sset_info(struct net_device
*dev
,
913 void __user
*useraddr
)
915 struct ethtool_sset_info info
;
917 int i
, idx
= 0, n_bits
= 0, ret
, rc
;
918 u32
*info_buf
= NULL
;
920 if (copy_from_user(&info
, useraddr
, sizeof(info
)))
923 /* store copy of mask, because we zero struct later on */
924 sset_mask
= info
.sset_mask
;
928 /* calculate size of return buffer */
929 n_bits
= hweight64(sset_mask
);
931 memset(&info
, 0, sizeof(info
));
932 info
.cmd
= ETHTOOL_GSSET_INFO
;
934 info_buf
= kzalloc(n_bits
* sizeof(u32
), GFP_USER
);
939 * fill return buffer based on input bitmask and successful
940 * get_sset_count return
942 for (i
= 0; i
< 64; i
++) {
943 if (!(sset_mask
& (1ULL << i
)))
946 rc
= __ethtool_get_sset_count(dev
, i
);
948 info
.sset_mask
|= (1ULL << i
);
949 info_buf
[idx
++] = rc
;
954 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
957 useraddr
+= offsetof(struct ethtool_sset_info
, data
);
958 if (copy_to_user(useraddr
, info_buf
, idx
* sizeof(u32
)))
968 static noinline_for_stack
int ethtool_set_rxnfc(struct net_device
*dev
,
969 u32 cmd
, void __user
*useraddr
)
971 struct ethtool_rxnfc info
;
972 size_t info_size
= sizeof(info
);
975 if (!dev
->ethtool_ops
->set_rxnfc
)
978 /* struct ethtool_rxnfc was originally defined for
979 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
980 * members. User-space might still be using that
982 if (cmd
== ETHTOOL_SRXFH
)
983 info_size
= (offsetof(struct ethtool_rxnfc
, data
) +
986 if (copy_from_user(&info
, useraddr
, info_size
))
989 rc
= dev
->ethtool_ops
->set_rxnfc(dev
, &info
);
993 if (cmd
== ETHTOOL_SRXCLSRLINS
&&
994 copy_to_user(useraddr
, &info
, info_size
))
1000 static noinline_for_stack
int ethtool_get_rxnfc(struct net_device
*dev
,
1001 u32 cmd
, void __user
*useraddr
)
1003 struct ethtool_rxnfc info
;
1004 size_t info_size
= sizeof(info
);
1005 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1007 void *rule_buf
= NULL
;
1009 if (!ops
->get_rxnfc
)
1012 /* struct ethtool_rxnfc was originally defined for
1013 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
1014 * members. User-space might still be using that
1016 if (cmd
== ETHTOOL_GRXFH
)
1017 info_size
= (offsetof(struct ethtool_rxnfc
, data
) +
1020 if (copy_from_user(&info
, useraddr
, info_size
))
1023 if (info
.cmd
== ETHTOOL_GRXCLSRLALL
) {
1024 if (info
.rule_cnt
> 0) {
1025 if (info
.rule_cnt
<= KMALLOC_MAX_SIZE
/ sizeof(u32
))
1026 rule_buf
= kzalloc(info
.rule_cnt
* sizeof(u32
),
1033 ret
= ops
->get_rxnfc(dev
, &info
, rule_buf
);
1038 if (copy_to_user(useraddr
, &info
, info_size
))
1042 useraddr
+= offsetof(struct ethtool_rxnfc
, rule_locs
);
1043 if (copy_to_user(useraddr
, rule_buf
,
1044 info
.rule_cnt
* sizeof(u32
)))
1055 static int ethtool_copy_validate_indir(u32
*indir
, void __user
*useraddr
,
1056 struct ethtool_rxnfc
*rx_rings
,
1061 if (copy_from_user(indir
, useraddr
, size
* sizeof(indir
[0])))
1064 /* Validate ring indices */
1065 for (i
= 0; i
< size
; i
++)
1066 if (indir
[i
] >= rx_rings
->data
)
1072 u8 netdev_rss_key
[NETDEV_RSS_KEY_LEN
] __read_mostly
;
1074 void netdev_rss_key_fill(void *buffer
, size_t len
)
1076 BUG_ON(len
> sizeof(netdev_rss_key
));
1077 net_get_random_once(netdev_rss_key
, sizeof(netdev_rss_key
));
1078 memcpy(buffer
, netdev_rss_key
, len
);
1080 EXPORT_SYMBOL(netdev_rss_key_fill
);
1082 static int ethtool_get_max_rxfh_channel(struct net_device
*dev
, u32
*max
)
1084 u32 dev_size
, current_max
= 0;
1088 if (!dev
->ethtool_ops
->get_rxfh_indir_size
||
1089 !dev
->ethtool_ops
->get_rxfh
)
1091 dev_size
= dev
->ethtool_ops
->get_rxfh_indir_size(dev
);
1095 indir
= kcalloc(dev_size
, sizeof(indir
[0]), GFP_USER
);
1099 ret
= dev
->ethtool_ops
->get_rxfh(dev
, indir
, NULL
, NULL
);
1104 current_max
= max(current_max
, indir
[dev_size
]);
1113 static noinline_for_stack
int ethtool_get_rxfh_indir(struct net_device
*dev
,
1114 void __user
*useraddr
)
1116 u32 user_size
, dev_size
;
1120 if (!dev
->ethtool_ops
->get_rxfh_indir_size
||
1121 !dev
->ethtool_ops
->get_rxfh
)
1123 dev_size
= dev
->ethtool_ops
->get_rxfh_indir_size(dev
);
1127 if (copy_from_user(&user_size
,
1128 useraddr
+ offsetof(struct ethtool_rxfh_indir
, size
),
1132 if (copy_to_user(useraddr
+ offsetof(struct ethtool_rxfh_indir
, size
),
1133 &dev_size
, sizeof(dev_size
)))
1136 /* If the user buffer size is 0, this is just a query for the
1137 * device table size. Otherwise, if it's smaller than the
1138 * device table size it's an error.
1140 if (user_size
< dev_size
)
1141 return user_size
== 0 ? 0 : -EINVAL
;
1143 indir
= kcalloc(dev_size
, sizeof(indir
[0]), GFP_USER
);
1147 ret
= dev
->ethtool_ops
->get_rxfh(dev
, indir
, NULL
, NULL
);
1151 if (copy_to_user(useraddr
+
1152 offsetof(struct ethtool_rxfh_indir
, ring_index
[0]),
1153 indir
, dev_size
* sizeof(indir
[0])))
1161 static noinline_for_stack
int ethtool_set_rxfh_indir(struct net_device
*dev
,
1162 void __user
*useraddr
)
1164 struct ethtool_rxnfc rx_rings
;
1165 u32 user_size
, dev_size
, i
;
1167 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1169 u32 ringidx_offset
= offsetof(struct ethtool_rxfh_indir
, ring_index
[0]);
1171 if (!ops
->get_rxfh_indir_size
|| !ops
->set_rxfh
||
1175 dev_size
= ops
->get_rxfh_indir_size(dev
);
1179 if (copy_from_user(&user_size
,
1180 useraddr
+ offsetof(struct ethtool_rxfh_indir
, size
),
1184 if (user_size
!= 0 && user_size
!= dev_size
)
1187 indir
= kcalloc(dev_size
, sizeof(indir
[0]), GFP_USER
);
1191 rx_rings
.cmd
= ETHTOOL_GRXRINGS
;
1192 ret
= ops
->get_rxnfc(dev
, &rx_rings
, NULL
);
1196 if (user_size
== 0) {
1197 for (i
= 0; i
< dev_size
; i
++)
1198 indir
[i
] = ethtool_rxfh_indir_default(i
, rx_rings
.data
);
1200 ret
= ethtool_copy_validate_indir(indir
,
1201 useraddr
+ ringidx_offset
,
1208 ret
= ops
->set_rxfh(dev
, indir
, NULL
, ETH_RSS_HASH_NO_CHANGE
);
1212 /* indicate whether rxfh was set to default */
1214 dev
->priv_flags
&= ~IFF_RXFH_CONFIGURED
;
1216 dev
->priv_flags
|= IFF_RXFH_CONFIGURED
;
1223 static noinline_for_stack
int ethtool_get_rxfh(struct net_device
*dev
,
1224 void __user
*useraddr
)
1227 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1228 u32 user_indir_size
, user_key_size
;
1229 u32 dev_indir_size
= 0, dev_key_size
= 0;
1230 struct ethtool_rxfh rxfh
;
1241 if (ops
->get_rxfh_indir_size
)
1242 dev_indir_size
= ops
->get_rxfh_indir_size(dev
);
1243 if (ops
->get_rxfh_key_size
)
1244 dev_key_size
= ops
->get_rxfh_key_size(dev
);
1246 if (copy_from_user(&rxfh
, useraddr
, sizeof(rxfh
)))
1248 user_indir_size
= rxfh
.indir_size
;
1249 user_key_size
= rxfh
.key_size
;
1251 /* Check that reserved fields are 0 for now */
1252 if (rxfh
.rss_context
|| rxfh
.rsvd8
[0] || rxfh
.rsvd8
[1] ||
1253 rxfh
.rsvd8
[2] || rxfh
.rsvd32
)
1256 rxfh
.indir_size
= dev_indir_size
;
1257 rxfh
.key_size
= dev_key_size
;
1258 if (copy_to_user(useraddr
, &rxfh
, sizeof(rxfh
)))
1261 if ((user_indir_size
&& (user_indir_size
!= dev_indir_size
)) ||
1262 (user_key_size
&& (user_key_size
!= dev_key_size
)))
1265 indir_bytes
= user_indir_size
* sizeof(indir
[0]);
1266 total_size
= indir_bytes
+ user_key_size
;
1267 rss_config
= kzalloc(total_size
, GFP_USER
);
1271 if (user_indir_size
)
1272 indir
= (u32
*)rss_config
;
1275 hkey
= rss_config
+ indir_bytes
;
1277 ret
= dev
->ethtool_ops
->get_rxfh(dev
, indir
, hkey
, &dev_hfunc
);
1281 if (copy_to_user(useraddr
+ offsetof(struct ethtool_rxfh
, hfunc
),
1282 &dev_hfunc
, sizeof(rxfh
.hfunc
))) {
1284 } else if (copy_to_user(useraddr
+
1285 offsetof(struct ethtool_rxfh
, rss_config
[0]),
1286 rss_config
, total_size
)) {
1295 static noinline_for_stack
int ethtool_set_rxfh(struct net_device
*dev
,
1296 void __user
*useraddr
)
1299 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1300 struct ethtool_rxnfc rx_rings
;
1301 struct ethtool_rxfh rxfh
;
1302 u32 dev_indir_size
= 0, dev_key_size
= 0, i
;
1303 u32
*indir
= NULL
, indir_bytes
= 0;
1306 u32 rss_cfg_offset
= offsetof(struct ethtool_rxfh
, rss_config
[0]);
1308 if (!ops
->get_rxnfc
|| !ops
->set_rxfh
)
1311 if (ops
->get_rxfh_indir_size
)
1312 dev_indir_size
= ops
->get_rxfh_indir_size(dev
);
1313 if (ops
->get_rxfh_key_size
)
1314 dev_key_size
= ops
->get_rxfh_key_size(dev
);
1316 if (copy_from_user(&rxfh
, useraddr
, sizeof(rxfh
)))
1319 /* Check that reserved fields are 0 for now */
1320 if (rxfh
.rss_context
|| rxfh
.rsvd8
[0] || rxfh
.rsvd8
[1] ||
1321 rxfh
.rsvd8
[2] || rxfh
.rsvd32
)
1324 /* If either indir, hash key or function is valid, proceed further.
1325 * Must request at least one change: indir size, hash key or function.
1327 if ((rxfh
.indir_size
&&
1328 rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
&&
1329 rxfh
.indir_size
!= dev_indir_size
) ||
1330 (rxfh
.key_size
&& (rxfh
.key_size
!= dev_key_size
)) ||
1331 (rxfh
.indir_size
== ETH_RXFH_INDIR_NO_CHANGE
&&
1332 rxfh
.key_size
== 0 && rxfh
.hfunc
== ETH_RSS_HASH_NO_CHANGE
))
1335 if (rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
)
1336 indir_bytes
= dev_indir_size
* sizeof(indir
[0]);
1338 rss_config
= kzalloc(indir_bytes
+ rxfh
.key_size
, GFP_USER
);
1342 rx_rings
.cmd
= ETHTOOL_GRXRINGS
;
1343 ret
= ops
->get_rxnfc(dev
, &rx_rings
, NULL
);
1347 /* rxfh.indir_size == 0 means reset the indir table to default.
1348 * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
1350 if (rxfh
.indir_size
&&
1351 rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
) {
1352 indir
= (u32
*)rss_config
;
1353 ret
= ethtool_copy_validate_indir(indir
,
1354 useraddr
+ rss_cfg_offset
,
1359 } else if (rxfh
.indir_size
== 0) {
1360 indir
= (u32
*)rss_config
;
1361 for (i
= 0; i
< dev_indir_size
; i
++)
1362 indir
[i
] = ethtool_rxfh_indir_default(i
, rx_rings
.data
);
1365 if (rxfh
.key_size
) {
1366 hkey
= rss_config
+ indir_bytes
;
1367 if (copy_from_user(hkey
,
1368 useraddr
+ rss_cfg_offset
+ indir_bytes
,
1375 ret
= ops
->set_rxfh(dev
, indir
, hkey
, rxfh
.hfunc
);
1379 /* indicate whether rxfh was set to default */
1380 if (rxfh
.indir_size
== 0)
1381 dev
->priv_flags
&= ~IFF_RXFH_CONFIGURED
;
1382 else if (rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
)
1383 dev
->priv_flags
|= IFF_RXFH_CONFIGURED
;
1390 static int ethtool_get_regs(struct net_device
*dev
, char __user
*useraddr
)
1392 struct ethtool_regs regs
;
1393 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1397 if (!ops
->get_regs
|| !ops
->get_regs_len
)
1400 if (copy_from_user(®s
, useraddr
, sizeof(regs
)))
1403 reglen
= ops
->get_regs_len(dev
);
1404 if (regs
.len
> reglen
)
1409 regbuf
= vzalloc(reglen
);
1414 ops
->get_regs(dev
, ®s
, regbuf
);
1417 if (copy_to_user(useraddr
, ®s
, sizeof(regs
)))
1419 useraddr
+= offsetof(struct ethtool_regs
, data
);
1420 if (regbuf
&& copy_to_user(useraddr
, regbuf
, regs
.len
))
1429 static int ethtool_reset(struct net_device
*dev
, char __user
*useraddr
)
1431 struct ethtool_value reset
;
1434 if (!dev
->ethtool_ops
->reset
)
1437 if (copy_from_user(&reset
, useraddr
, sizeof(reset
)))
1440 ret
= dev
->ethtool_ops
->reset(dev
, &reset
.data
);
1444 if (copy_to_user(useraddr
, &reset
, sizeof(reset
)))
1449 static int ethtool_get_wol(struct net_device
*dev
, char __user
*useraddr
)
1451 struct ethtool_wolinfo wol
= { .cmd
= ETHTOOL_GWOL
};
1453 if (!dev
->ethtool_ops
->get_wol
)
1456 dev
->ethtool_ops
->get_wol(dev
, &wol
);
1458 if (copy_to_user(useraddr
, &wol
, sizeof(wol
)))
1463 static int ethtool_set_wol(struct net_device
*dev
, char __user
*useraddr
)
1465 struct ethtool_wolinfo wol
;
1467 if (!dev
->ethtool_ops
->set_wol
)
1470 if (copy_from_user(&wol
, useraddr
, sizeof(wol
)))
1473 return dev
->ethtool_ops
->set_wol(dev
, &wol
);
1476 static int ethtool_get_eee(struct net_device
*dev
, char __user
*useraddr
)
1478 struct ethtool_eee edata
;
1481 if (!dev
->ethtool_ops
->get_eee
)
1484 memset(&edata
, 0, sizeof(struct ethtool_eee
));
1485 edata
.cmd
= ETHTOOL_GEEE
;
1486 rc
= dev
->ethtool_ops
->get_eee(dev
, &edata
);
1491 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
1497 static int ethtool_set_eee(struct net_device
*dev
, char __user
*useraddr
)
1499 struct ethtool_eee edata
;
1501 if (!dev
->ethtool_ops
->set_eee
)
1504 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
1507 return dev
->ethtool_ops
->set_eee(dev
, &edata
);
1510 static int ethtool_nway_reset(struct net_device
*dev
)
1512 if (!dev
->ethtool_ops
->nway_reset
)
1515 return dev
->ethtool_ops
->nway_reset(dev
);
1518 static int ethtool_get_link(struct net_device
*dev
, char __user
*useraddr
)
1520 struct ethtool_value edata
= { .cmd
= ETHTOOL_GLINK
};
1522 if (!dev
->ethtool_ops
->get_link
)
1525 edata
.data
= netif_running(dev
) && dev
->ethtool_ops
->get_link(dev
);
1527 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
1532 static int ethtool_get_any_eeprom(struct net_device
*dev
, void __user
*useraddr
,
1533 int (*getter
)(struct net_device
*,
1534 struct ethtool_eeprom
*, u8
*),
1537 struct ethtool_eeprom eeprom
;
1538 void __user
*userbuf
= useraddr
+ sizeof(eeprom
);
1539 u32 bytes_remaining
;
1543 if (copy_from_user(&eeprom
, useraddr
, sizeof(eeprom
)))
1546 /* Check for wrap and zero */
1547 if (eeprom
.offset
+ eeprom
.len
<= eeprom
.offset
)
1550 /* Check for exceeding total eeprom len */
1551 if (eeprom
.offset
+ eeprom
.len
> total_len
)
1554 data
= kmalloc(PAGE_SIZE
, GFP_USER
);
1558 bytes_remaining
= eeprom
.len
;
1559 while (bytes_remaining
> 0) {
1560 eeprom
.len
= min(bytes_remaining
, (u32
)PAGE_SIZE
);
1562 ret
= getter(dev
, &eeprom
, data
);
1565 if (copy_to_user(userbuf
, data
, eeprom
.len
)) {
1569 userbuf
+= eeprom
.len
;
1570 eeprom
.offset
+= eeprom
.len
;
1571 bytes_remaining
-= eeprom
.len
;
1574 eeprom
.len
= userbuf
- (useraddr
+ sizeof(eeprom
));
1575 eeprom
.offset
-= eeprom
.len
;
1576 if (copy_to_user(useraddr
, &eeprom
, sizeof(eeprom
)))
1583 static int ethtool_get_eeprom(struct net_device
*dev
, void __user
*useraddr
)
1585 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1587 if (!ops
->get_eeprom
|| !ops
->get_eeprom_len
||
1588 !ops
->get_eeprom_len(dev
))
1591 return ethtool_get_any_eeprom(dev
, useraddr
, ops
->get_eeprom
,
1592 ops
->get_eeprom_len(dev
));
1595 static int ethtool_set_eeprom(struct net_device
*dev
, void __user
*useraddr
)
1597 struct ethtool_eeprom eeprom
;
1598 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1599 void __user
*userbuf
= useraddr
+ sizeof(eeprom
);
1600 u32 bytes_remaining
;
1604 if (!ops
->set_eeprom
|| !ops
->get_eeprom_len
||
1605 !ops
->get_eeprom_len(dev
))
1608 if (copy_from_user(&eeprom
, useraddr
, sizeof(eeprom
)))
1611 /* Check for wrap and zero */
1612 if (eeprom
.offset
+ eeprom
.len
<= eeprom
.offset
)
1615 /* Check for exceeding total eeprom len */
1616 if (eeprom
.offset
+ eeprom
.len
> ops
->get_eeprom_len(dev
))
1619 data
= kmalloc(PAGE_SIZE
, GFP_USER
);
1623 bytes_remaining
= eeprom
.len
;
1624 while (bytes_remaining
> 0) {
1625 eeprom
.len
= min(bytes_remaining
, (u32
)PAGE_SIZE
);
1627 if (copy_from_user(data
, userbuf
, eeprom
.len
)) {
1631 ret
= ops
->set_eeprom(dev
, &eeprom
, data
);
1634 userbuf
+= eeprom
.len
;
1635 eeprom
.offset
+= eeprom
.len
;
1636 bytes_remaining
-= eeprom
.len
;
1643 static noinline_for_stack
int ethtool_get_coalesce(struct net_device
*dev
,
1644 void __user
*useraddr
)
1646 struct ethtool_coalesce coalesce
= { .cmd
= ETHTOOL_GCOALESCE
};
1648 if (!dev
->ethtool_ops
->get_coalesce
)
1651 dev
->ethtool_ops
->get_coalesce(dev
, &coalesce
);
1653 if (copy_to_user(useraddr
, &coalesce
, sizeof(coalesce
)))
1658 static noinline_for_stack
int ethtool_set_coalesce(struct net_device
*dev
,
1659 void __user
*useraddr
)
1661 struct ethtool_coalesce coalesce
;
1663 if (!dev
->ethtool_ops
->set_coalesce
)
1666 if (copy_from_user(&coalesce
, useraddr
, sizeof(coalesce
)))
1669 return dev
->ethtool_ops
->set_coalesce(dev
, &coalesce
);
1672 static int ethtool_get_ringparam(struct net_device
*dev
, void __user
*useraddr
)
1674 struct ethtool_ringparam ringparam
= { .cmd
= ETHTOOL_GRINGPARAM
};
1676 if (!dev
->ethtool_ops
->get_ringparam
)
1679 dev
->ethtool_ops
->get_ringparam(dev
, &ringparam
);
1681 if (copy_to_user(useraddr
, &ringparam
, sizeof(ringparam
)))
1686 static int ethtool_set_ringparam(struct net_device
*dev
, void __user
*useraddr
)
1688 struct ethtool_ringparam ringparam
;
1690 if (!dev
->ethtool_ops
->set_ringparam
)
1693 if (copy_from_user(&ringparam
, useraddr
, sizeof(ringparam
)))
1696 return dev
->ethtool_ops
->set_ringparam(dev
, &ringparam
);
1699 static noinline_for_stack
int ethtool_get_channels(struct net_device
*dev
,
1700 void __user
*useraddr
)
1702 struct ethtool_channels channels
= { .cmd
= ETHTOOL_GCHANNELS
};
1704 if (!dev
->ethtool_ops
->get_channels
)
1707 dev
->ethtool_ops
->get_channels(dev
, &channels
);
1709 if (copy_to_user(useraddr
, &channels
, sizeof(channels
)))
1714 static noinline_for_stack
int ethtool_set_channels(struct net_device
*dev
,
1715 void __user
*useraddr
)
1717 struct ethtool_channels channels
, max
= { .cmd
= ETHTOOL_GCHANNELS
};
1718 u32 max_rx_in_use
= 0;
1720 if (!dev
->ethtool_ops
->set_channels
|| !dev
->ethtool_ops
->get_channels
)
1723 if (copy_from_user(&channels
, useraddr
, sizeof(channels
)))
1726 dev
->ethtool_ops
->get_channels(dev
, &max
);
1728 /* ensure new counts are within the maximums */
1729 if ((channels
.rx_count
> max
.max_rx
) ||
1730 (channels
.tx_count
> max
.max_tx
) ||
1731 (channels
.combined_count
> max
.max_combined
) ||
1732 (channels
.other_count
> max
.max_other
))
1735 /* ensure the new Rx count fits within the configured Rx flow
1736 * indirection table settings */
1737 if (netif_is_rxfh_configured(dev
) &&
1738 !ethtool_get_max_rxfh_channel(dev
, &max_rx_in_use
) &&
1739 (channels
.combined_count
+ channels
.rx_count
) <= max_rx_in_use
)
1742 return dev
->ethtool_ops
->set_channels(dev
, &channels
);
1745 static int ethtool_get_pauseparam(struct net_device
*dev
, void __user
*useraddr
)
1747 struct ethtool_pauseparam pauseparam
= { ETHTOOL_GPAUSEPARAM
};
1749 if (!dev
->ethtool_ops
->get_pauseparam
)
1752 dev
->ethtool_ops
->get_pauseparam(dev
, &pauseparam
);
1754 if (copy_to_user(useraddr
, &pauseparam
, sizeof(pauseparam
)))
1759 static int ethtool_set_pauseparam(struct net_device
*dev
, void __user
*useraddr
)
1761 struct ethtool_pauseparam pauseparam
;
1763 if (!dev
->ethtool_ops
->set_pauseparam
)
1766 if (copy_from_user(&pauseparam
, useraddr
, sizeof(pauseparam
)))
1769 return dev
->ethtool_ops
->set_pauseparam(dev
, &pauseparam
);
1772 static int ethtool_self_test(struct net_device
*dev
, char __user
*useraddr
)
1774 struct ethtool_test test
;
1775 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1779 if (!ops
->self_test
|| !ops
->get_sset_count
)
1782 test_len
= ops
->get_sset_count(dev
, ETH_SS_TEST
);
1785 WARN_ON(test_len
== 0);
1787 if (copy_from_user(&test
, useraddr
, sizeof(test
)))
1790 test
.len
= test_len
;
1791 data
= kmalloc(test_len
* sizeof(u64
), GFP_USER
);
1795 ops
->self_test(dev
, &test
, data
);
1798 if (copy_to_user(useraddr
, &test
, sizeof(test
)))
1800 useraddr
+= sizeof(test
);
1801 if (copy_to_user(useraddr
, data
, test
.len
* sizeof(u64
)))
1810 static int ethtool_get_strings(struct net_device
*dev
, void __user
*useraddr
)
1812 struct ethtool_gstrings gstrings
;
1816 if (copy_from_user(&gstrings
, useraddr
, sizeof(gstrings
)))
1819 ret
= __ethtool_get_sset_count(dev
, gstrings
.string_set
);
1822 if (ret
> S32_MAX
/ ETH_GSTRING_LEN
)
1827 data
= vzalloc(gstrings
.len
* ETH_GSTRING_LEN
);
1828 if (gstrings
.len
&& !data
)
1831 __ethtool_get_strings(dev
, gstrings
.string_set
, data
);
1834 if (copy_to_user(useraddr
, &gstrings
, sizeof(gstrings
)))
1836 useraddr
+= sizeof(gstrings
);
1838 copy_to_user(useraddr
, data
, gstrings
.len
* ETH_GSTRING_LEN
))
1847 static int ethtool_phys_id(struct net_device
*dev
, void __user
*useraddr
)
1849 struct ethtool_value id
;
1851 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1854 if (!ops
->set_phys_id
)
1860 if (copy_from_user(&id
, useraddr
, sizeof(id
)))
1863 rc
= ops
->set_phys_id(dev
, ETHTOOL_ID_ACTIVE
);
1867 /* Drop the RTNL lock while waiting, but prevent reentry or
1868 * removal of the device.
1875 /* Driver will handle this itself */
1876 schedule_timeout_interruptible(
1877 id
.data
? (id
.data
* HZ
) : MAX_SCHEDULE_TIMEOUT
);
1879 /* Driver expects to be called at twice the frequency in rc */
1880 int n
= rc
* 2, i
, interval
= HZ
/ n
;
1882 /* Count down seconds */
1884 /* Count down iterations per second */
1888 rc
= ops
->set_phys_id(dev
,
1889 (i
& 1) ? ETHTOOL_ID_OFF
: ETHTOOL_ID_ON
);
1893 schedule_timeout_interruptible(interval
);
1894 } while (!signal_pending(current
) && --i
!= 0);
1895 } while (!signal_pending(current
) &&
1896 (id
.data
== 0 || --id
.data
!= 0));
1903 (void) ops
->set_phys_id(dev
, ETHTOOL_ID_INACTIVE
);
1907 static int ethtool_get_stats(struct net_device
*dev
, void __user
*useraddr
)
1909 struct ethtool_stats stats
;
1910 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1914 if (!ops
->get_ethtool_stats
|| !ops
->get_sset_count
)
1917 n_stats
= ops
->get_sset_count(dev
, ETH_SS_STATS
);
1920 if (n_stats
> S32_MAX
/ sizeof(u64
))
1922 WARN_ON_ONCE(!n_stats
);
1923 if (copy_from_user(&stats
, useraddr
, sizeof(stats
)))
1926 stats
.n_stats
= n_stats
;
1927 data
= vzalloc(n_stats
* sizeof(u64
));
1928 if (n_stats
&& !data
)
1931 ops
->get_ethtool_stats(dev
, &stats
, data
);
1934 if (copy_to_user(useraddr
, &stats
, sizeof(stats
)))
1936 useraddr
+= sizeof(stats
);
1937 if (n_stats
&& copy_to_user(useraddr
, data
, n_stats
* sizeof(u64
)))
1946 static int ethtool_get_phy_stats(struct net_device
*dev
, void __user
*useraddr
)
1948 struct ethtool_stats stats
;
1949 struct phy_device
*phydev
= dev
->phydev
;
1956 n_stats
= phy_get_sset_count(phydev
);
1959 if (n_stats
> S32_MAX
/ sizeof(u64
))
1961 WARN_ON_ONCE(!n_stats
);
1963 if (copy_from_user(&stats
, useraddr
, sizeof(stats
)))
1966 stats
.n_stats
= n_stats
;
1967 data
= vzalloc(n_stats
* sizeof(u64
));
1968 if (n_stats
&& !data
)
1971 mutex_lock(&phydev
->lock
);
1972 phydev
->drv
->get_stats(phydev
, &stats
, data
);
1973 mutex_unlock(&phydev
->lock
);
1976 if (copy_to_user(useraddr
, &stats
, sizeof(stats
)))
1978 useraddr
+= sizeof(stats
);
1979 if (n_stats
&& copy_to_user(useraddr
, data
, n_stats
* sizeof(u64
)))
1988 static int ethtool_get_perm_addr(struct net_device
*dev
, void __user
*useraddr
)
1990 struct ethtool_perm_addr epaddr
;
1992 if (copy_from_user(&epaddr
, useraddr
, sizeof(epaddr
)))
1995 if (epaddr
.size
< dev
->addr_len
)
1997 epaddr
.size
= dev
->addr_len
;
1999 if (copy_to_user(useraddr
, &epaddr
, sizeof(epaddr
)))
2001 useraddr
+= sizeof(epaddr
);
2002 if (copy_to_user(useraddr
, dev
->perm_addr
, epaddr
.size
))
2007 static int ethtool_get_value(struct net_device
*dev
, char __user
*useraddr
,
2008 u32 cmd
, u32 (*actor
)(struct net_device
*))
2010 struct ethtool_value edata
= { .cmd
= cmd
};
2015 edata
.data
= actor(dev
);
2017 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
2022 static int ethtool_set_value_void(struct net_device
*dev
, char __user
*useraddr
,
2023 void (*actor
)(struct net_device
*, u32
))
2025 struct ethtool_value edata
;
2030 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
2033 actor(dev
, edata
.data
);
2037 static int ethtool_set_value(struct net_device
*dev
, char __user
*useraddr
,
2038 int (*actor
)(struct net_device
*, u32
))
2040 struct ethtool_value edata
;
2045 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
2048 return actor(dev
, edata
.data
);
2051 static noinline_for_stack
int ethtool_flash_device(struct net_device
*dev
,
2052 char __user
*useraddr
)
2054 struct ethtool_flash efl
;
2056 if (copy_from_user(&efl
, useraddr
, sizeof(efl
)))
2059 if (!dev
->ethtool_ops
->flash_device
)
2062 efl
.data
[ETHTOOL_FLASH_MAX_FILENAME
- 1] = 0;
2064 return dev
->ethtool_ops
->flash_device(dev
, &efl
);
2067 static int ethtool_set_dump(struct net_device
*dev
,
2068 void __user
*useraddr
)
2070 struct ethtool_dump dump
;
2072 if (!dev
->ethtool_ops
->set_dump
)
2075 if (copy_from_user(&dump
, useraddr
, sizeof(dump
)))
2078 return dev
->ethtool_ops
->set_dump(dev
, &dump
);
2081 static int ethtool_get_dump_flag(struct net_device
*dev
,
2082 void __user
*useraddr
)
2085 struct ethtool_dump dump
;
2086 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2088 if (!ops
->get_dump_flag
)
2091 if (copy_from_user(&dump
, useraddr
, sizeof(dump
)))
2094 ret
= ops
->get_dump_flag(dev
, &dump
);
2098 if (copy_to_user(useraddr
, &dump
, sizeof(dump
)))
2103 static int ethtool_get_dump_data(struct net_device
*dev
,
2104 void __user
*useraddr
)
2108 struct ethtool_dump dump
, tmp
;
2109 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2112 if (!ops
->get_dump_data
|| !ops
->get_dump_flag
)
2115 if (copy_from_user(&dump
, useraddr
, sizeof(dump
)))
2118 memset(&tmp
, 0, sizeof(tmp
));
2119 tmp
.cmd
= ETHTOOL_GET_DUMP_FLAG
;
2120 ret
= ops
->get_dump_flag(dev
, &tmp
);
2124 len
= min(tmp
.len
, dump
.len
);
2128 /* Don't ever let the driver think there's more space available
2129 * than it requested with .get_dump_flag().
2133 /* Always allocate enough space to hold the whole thing so that the
2134 * driver does not need to check the length and bother with partial
2137 data
= vzalloc(tmp
.len
);
2140 ret
= ops
->get_dump_data(dev
, &dump
, data
);
2144 /* There are two sane possibilities:
2145 * 1. The driver's .get_dump_data() does not touch dump.len.
2146 * 2. Or it may set dump.len to how much it really writes, which
2147 * should be tmp.len (or len if it can do a partial dump).
2148 * In any case respond to userspace with the actual length of data
2151 WARN_ON(dump
.len
!= len
&& dump
.len
!= tmp
.len
);
2154 if (copy_to_user(useraddr
, &dump
, sizeof(dump
))) {
2158 useraddr
+= offsetof(struct ethtool_dump
, data
);
2159 if (copy_to_user(useraddr
, data
, len
))
2166 static int ethtool_get_ts_info(struct net_device
*dev
, void __user
*useraddr
)
2169 struct ethtool_ts_info info
;
2170 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2171 struct phy_device
*phydev
= dev
->phydev
;
2173 memset(&info
, 0, sizeof(info
));
2174 info
.cmd
= ETHTOOL_GET_TS_INFO
;
2176 if (phydev
&& phydev
->drv
&& phydev
->drv
->ts_info
) {
2177 err
= phydev
->drv
->ts_info(phydev
, &info
);
2178 } else if (ops
->get_ts_info
) {
2179 err
= ops
->get_ts_info(dev
, &info
);
2181 info
.so_timestamping
=
2182 SOF_TIMESTAMPING_RX_SOFTWARE
|
2183 SOF_TIMESTAMPING_SOFTWARE
;
2184 info
.phc_index
= -1;
2190 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
2196 static int __ethtool_get_module_info(struct net_device
*dev
,
2197 struct ethtool_modinfo
*modinfo
)
2199 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2200 struct phy_device
*phydev
= dev
->phydev
;
2202 if (phydev
&& phydev
->drv
&& phydev
->drv
->module_info
)
2203 return phydev
->drv
->module_info(phydev
, modinfo
);
2205 if (ops
->get_module_info
)
2206 return ops
->get_module_info(dev
, modinfo
);
2211 static int ethtool_get_module_info(struct net_device
*dev
,
2212 void __user
*useraddr
)
2215 struct ethtool_modinfo modinfo
;
2217 if (copy_from_user(&modinfo
, useraddr
, sizeof(modinfo
)))
2220 ret
= __ethtool_get_module_info(dev
, &modinfo
);
2224 if (copy_to_user(useraddr
, &modinfo
, sizeof(modinfo
)))
2230 static int __ethtool_get_module_eeprom(struct net_device
*dev
,
2231 struct ethtool_eeprom
*ee
, u8
*data
)
2233 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2234 struct phy_device
*phydev
= dev
->phydev
;
2236 if (phydev
&& phydev
->drv
&& phydev
->drv
->module_eeprom
)
2237 return phydev
->drv
->module_eeprom(phydev
, ee
, data
);
2239 if (ops
->get_module_eeprom
)
2240 return ops
->get_module_eeprom(dev
, ee
, data
);
2245 static int ethtool_get_module_eeprom(struct net_device
*dev
,
2246 void __user
*useraddr
)
2249 struct ethtool_modinfo modinfo
;
2251 ret
= __ethtool_get_module_info(dev
, &modinfo
);
2255 return ethtool_get_any_eeprom(dev
, useraddr
,
2256 __ethtool_get_module_eeprom
,
2257 modinfo
.eeprom_len
);
2260 static int ethtool_tunable_valid(const struct ethtool_tunable
*tuna
)
2263 case ETHTOOL_RX_COPYBREAK
:
2264 case ETHTOOL_TX_COPYBREAK
:
2265 if (tuna
->len
!= sizeof(u32
) ||
2266 tuna
->type_id
!= ETHTOOL_TUNABLE_U32
)
2276 static int ethtool_get_tunable(struct net_device
*dev
, void __user
*useraddr
)
2279 struct ethtool_tunable tuna
;
2280 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2283 if (!ops
->get_tunable
)
2285 if (copy_from_user(&tuna
, useraddr
, sizeof(tuna
)))
2287 ret
= ethtool_tunable_valid(&tuna
);
2290 data
= kmalloc(tuna
.len
, GFP_USER
);
2293 ret
= ops
->get_tunable(dev
, &tuna
, data
);
2296 useraddr
+= sizeof(tuna
);
2298 if (copy_to_user(useraddr
, data
, tuna
.len
))
2307 static int ethtool_set_tunable(struct net_device
*dev
, void __user
*useraddr
)
2310 struct ethtool_tunable tuna
;
2311 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2314 if (!ops
->set_tunable
)
2316 if (copy_from_user(&tuna
, useraddr
, sizeof(tuna
)))
2318 ret
= ethtool_tunable_valid(&tuna
);
2321 data
= kmalloc(tuna
.len
, GFP_USER
);
2324 useraddr
+= sizeof(tuna
);
2326 if (copy_from_user(data
, useraddr
, tuna
.len
))
2328 ret
= ops
->set_tunable(dev
, &tuna
, data
);
2335 static int ethtool_get_per_queue_coalesce(struct net_device
*dev
,
2336 void __user
*useraddr
,
2337 struct ethtool_per_queue_op
*per_queue_opt
)
2341 DECLARE_BITMAP(queue_mask
, MAX_NUM_QUEUE
);
2343 if (!dev
->ethtool_ops
->get_per_queue_coalesce
)
2346 useraddr
+= sizeof(*per_queue_opt
);
2348 bitmap_from_u32array(queue_mask
,
2350 per_queue_opt
->queue_mask
,
2351 DIV_ROUND_UP(MAX_NUM_QUEUE
, 32));
2353 for_each_set_bit(bit
, queue_mask
, MAX_NUM_QUEUE
) {
2354 struct ethtool_coalesce coalesce
= { .cmd
= ETHTOOL_GCOALESCE
};
2356 ret
= dev
->ethtool_ops
->get_per_queue_coalesce(dev
, bit
, &coalesce
);
2359 if (copy_to_user(useraddr
, &coalesce
, sizeof(coalesce
)))
2361 useraddr
+= sizeof(coalesce
);
2367 static int ethtool_set_per_queue_coalesce(struct net_device
*dev
,
2368 void __user
*useraddr
,
2369 struct ethtool_per_queue_op
*per_queue_opt
)
2374 struct ethtool_coalesce
*backup
= NULL
, *tmp
= NULL
;
2375 DECLARE_BITMAP(queue_mask
, MAX_NUM_QUEUE
);
2377 if ((!dev
->ethtool_ops
->set_per_queue_coalesce
) ||
2378 (!dev
->ethtool_ops
->get_per_queue_coalesce
))
2381 useraddr
+= sizeof(*per_queue_opt
);
2383 bitmap_from_u32array(queue_mask
,
2385 per_queue_opt
->queue_mask
,
2386 DIV_ROUND_UP(MAX_NUM_QUEUE
, 32));
2387 n_queue
= bitmap_weight(queue_mask
, MAX_NUM_QUEUE
);
2388 tmp
= backup
= kmalloc_array(n_queue
, sizeof(*backup
), GFP_KERNEL
);
2392 for_each_set_bit(bit
, queue_mask
, MAX_NUM_QUEUE
) {
2393 struct ethtool_coalesce coalesce
;
2395 ret
= dev
->ethtool_ops
->get_per_queue_coalesce(dev
, bit
, tmp
);
2401 if (copy_from_user(&coalesce
, useraddr
, sizeof(coalesce
))) {
2406 ret
= dev
->ethtool_ops
->set_per_queue_coalesce(dev
, bit
, &coalesce
);
2410 useraddr
+= sizeof(coalesce
);
2416 for_each_set_bit(i
, queue_mask
, bit
) {
2417 dev
->ethtool_ops
->set_per_queue_coalesce(dev
, i
, tmp
);
2426 static int ethtool_set_per_queue(struct net_device
*dev
, void __user
*useraddr
)
2428 struct ethtool_per_queue_op per_queue_opt
;
2430 if (copy_from_user(&per_queue_opt
, useraddr
, sizeof(per_queue_opt
)))
2433 switch (per_queue_opt
.sub_command
) {
2434 case ETHTOOL_GCOALESCE
:
2435 return ethtool_get_per_queue_coalesce(dev
, useraddr
, &per_queue_opt
);
2436 case ETHTOOL_SCOALESCE
:
2437 return ethtool_set_per_queue_coalesce(dev
, useraddr
, &per_queue_opt
);
2443 static int ethtool_phy_tunable_valid(const struct ethtool_tunable
*tuna
)
2446 case ETHTOOL_PHY_DOWNSHIFT
:
2447 if (tuna
->len
!= sizeof(u8
) ||
2448 tuna
->type_id
!= ETHTOOL_TUNABLE_U8
)
2458 static int get_phy_tunable(struct net_device
*dev
, void __user
*useraddr
)
2461 struct ethtool_tunable tuna
;
2462 struct phy_device
*phydev
= dev
->phydev
;
2465 if (!(phydev
&& phydev
->drv
&& phydev
->drv
->get_tunable
))
2468 if (copy_from_user(&tuna
, useraddr
, sizeof(tuna
)))
2470 ret
= ethtool_phy_tunable_valid(&tuna
);
2473 data
= kmalloc(tuna
.len
, GFP_USER
);
2476 mutex_lock(&phydev
->lock
);
2477 ret
= phydev
->drv
->get_tunable(phydev
, &tuna
, data
);
2478 mutex_unlock(&phydev
->lock
);
2481 useraddr
+= sizeof(tuna
);
2483 if (copy_to_user(useraddr
, data
, tuna
.len
))
2492 static int set_phy_tunable(struct net_device
*dev
, void __user
*useraddr
)
2495 struct ethtool_tunable tuna
;
2496 struct phy_device
*phydev
= dev
->phydev
;
2499 if (!(phydev
&& phydev
->drv
&& phydev
->drv
->set_tunable
))
2501 if (copy_from_user(&tuna
, useraddr
, sizeof(tuna
)))
2503 ret
= ethtool_phy_tunable_valid(&tuna
);
2506 data
= kmalloc(tuna
.len
, GFP_USER
);
2509 useraddr
+= sizeof(tuna
);
2511 if (copy_from_user(data
, useraddr
, tuna
.len
))
2513 mutex_lock(&phydev
->lock
);
2514 ret
= phydev
->drv
->set_tunable(phydev
, &tuna
, data
);
2515 mutex_unlock(&phydev
->lock
);
2522 /* The main entry point in this file. Called from net/core/dev_ioctl.c */
2524 int dev_ethtool(struct net
*net
, struct ifreq
*ifr
)
2526 struct net_device
*dev
= __dev_get_by_name(net
, ifr
->ifr_name
);
2527 void __user
*useraddr
= ifr
->ifr_data
;
2528 u32 ethcmd
, sub_cmd
;
2530 netdev_features_t old_features
;
2532 if (!dev
|| !netif_device_present(dev
))
2535 if (copy_from_user(ðcmd
, useraddr
, sizeof(ethcmd
)))
2538 if (ethcmd
== ETHTOOL_PERQUEUE
) {
2539 if (copy_from_user(&sub_cmd
, useraddr
+ sizeof(ethcmd
), sizeof(sub_cmd
)))
2544 /* Allow some commands to be done by anyone */
2547 case ETHTOOL_GDRVINFO
:
2548 case ETHTOOL_GMSGLVL
:
2550 case ETHTOOL_GCOALESCE
:
2551 case ETHTOOL_GRINGPARAM
:
2552 case ETHTOOL_GPAUSEPARAM
:
2553 case ETHTOOL_GRXCSUM
:
2554 case ETHTOOL_GTXCSUM
:
2556 case ETHTOOL_GSSET_INFO
:
2557 case ETHTOOL_GSTRINGS
:
2558 case ETHTOOL_GSTATS
:
2559 case ETHTOOL_GPHYSTATS
:
2561 case ETHTOOL_GPERMADDR
:
2565 case ETHTOOL_GFLAGS
:
2566 case ETHTOOL_GPFLAGS
:
2568 case ETHTOOL_GRXRINGS
:
2569 case ETHTOOL_GRXCLSRLCNT
:
2570 case ETHTOOL_GRXCLSRULE
:
2571 case ETHTOOL_GRXCLSRLALL
:
2572 case ETHTOOL_GRXFHINDIR
:
2574 case ETHTOOL_GFEATURES
:
2575 case ETHTOOL_GCHANNELS
:
2576 case ETHTOOL_GET_TS_INFO
:
2578 case ETHTOOL_GTUNABLE
:
2579 case ETHTOOL_PHY_GTUNABLE
:
2580 case ETHTOOL_GLINKSETTINGS
:
2583 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
2587 if (dev
->ethtool_ops
->begin
) {
2588 rc
= dev
->ethtool_ops
->begin(dev
);
2592 old_features
= dev
->features
;
2596 rc
= ethtool_get_settings(dev
, useraddr
);
2599 rc
= ethtool_set_settings(dev
, useraddr
);
2601 case ETHTOOL_GDRVINFO
:
2602 rc
= ethtool_get_drvinfo(dev
, useraddr
);
2605 rc
= ethtool_get_regs(dev
, useraddr
);
2608 rc
= ethtool_get_wol(dev
, useraddr
);
2611 rc
= ethtool_set_wol(dev
, useraddr
);
2613 case ETHTOOL_GMSGLVL
:
2614 rc
= ethtool_get_value(dev
, useraddr
, ethcmd
,
2615 dev
->ethtool_ops
->get_msglevel
);
2617 case ETHTOOL_SMSGLVL
:
2618 rc
= ethtool_set_value_void(dev
, useraddr
,
2619 dev
->ethtool_ops
->set_msglevel
);
2622 rc
= ethtool_get_eee(dev
, useraddr
);
2625 rc
= ethtool_set_eee(dev
, useraddr
);
2627 case ETHTOOL_NWAY_RST
:
2628 rc
= ethtool_nway_reset(dev
);
2631 rc
= ethtool_get_link(dev
, useraddr
);
2633 case ETHTOOL_GEEPROM
:
2634 rc
= ethtool_get_eeprom(dev
, useraddr
);
2636 case ETHTOOL_SEEPROM
:
2637 rc
= ethtool_set_eeprom(dev
, useraddr
);
2639 case ETHTOOL_GCOALESCE
:
2640 rc
= ethtool_get_coalesce(dev
, useraddr
);
2642 case ETHTOOL_SCOALESCE
:
2643 rc
= ethtool_set_coalesce(dev
, useraddr
);
2645 case ETHTOOL_GRINGPARAM
:
2646 rc
= ethtool_get_ringparam(dev
, useraddr
);
2648 case ETHTOOL_SRINGPARAM
:
2649 rc
= ethtool_set_ringparam(dev
, useraddr
);
2651 case ETHTOOL_GPAUSEPARAM
:
2652 rc
= ethtool_get_pauseparam(dev
, useraddr
);
2654 case ETHTOOL_SPAUSEPARAM
:
2655 rc
= ethtool_set_pauseparam(dev
, useraddr
);
2658 rc
= ethtool_self_test(dev
, useraddr
);
2660 case ETHTOOL_GSTRINGS
:
2661 rc
= ethtool_get_strings(dev
, useraddr
);
2663 case ETHTOOL_PHYS_ID
:
2664 rc
= ethtool_phys_id(dev
, useraddr
);
2666 case ETHTOOL_GSTATS
:
2667 rc
= ethtool_get_stats(dev
, useraddr
);
2669 case ETHTOOL_GPERMADDR
:
2670 rc
= ethtool_get_perm_addr(dev
, useraddr
);
2672 case ETHTOOL_GFLAGS
:
2673 rc
= ethtool_get_value(dev
, useraddr
, ethcmd
,
2674 __ethtool_get_flags
);
2676 case ETHTOOL_SFLAGS
:
2677 rc
= ethtool_set_value(dev
, useraddr
, __ethtool_set_flags
);
2679 case ETHTOOL_GPFLAGS
:
2680 rc
= ethtool_get_value(dev
, useraddr
, ethcmd
,
2681 dev
->ethtool_ops
->get_priv_flags
);
2683 case ETHTOOL_SPFLAGS
:
2684 rc
= ethtool_set_value(dev
, useraddr
,
2685 dev
->ethtool_ops
->set_priv_flags
);
2688 case ETHTOOL_GRXRINGS
:
2689 case ETHTOOL_GRXCLSRLCNT
:
2690 case ETHTOOL_GRXCLSRULE
:
2691 case ETHTOOL_GRXCLSRLALL
:
2692 rc
= ethtool_get_rxnfc(dev
, ethcmd
, useraddr
);
2695 case ETHTOOL_SRXCLSRLDEL
:
2696 case ETHTOOL_SRXCLSRLINS
:
2697 rc
= ethtool_set_rxnfc(dev
, ethcmd
, useraddr
);
2699 case ETHTOOL_FLASHDEV
:
2700 rc
= ethtool_flash_device(dev
, useraddr
);
2703 rc
= ethtool_reset(dev
, useraddr
);
2705 case ETHTOOL_GSSET_INFO
:
2706 rc
= ethtool_get_sset_info(dev
, useraddr
);
2708 case ETHTOOL_GRXFHINDIR
:
2709 rc
= ethtool_get_rxfh_indir(dev
, useraddr
);
2711 case ETHTOOL_SRXFHINDIR
:
2712 rc
= ethtool_set_rxfh_indir(dev
, useraddr
);
2715 rc
= ethtool_get_rxfh(dev
, useraddr
);
2718 rc
= ethtool_set_rxfh(dev
, useraddr
);
2720 case ETHTOOL_GFEATURES
:
2721 rc
= ethtool_get_features(dev
, useraddr
);
2723 case ETHTOOL_SFEATURES
:
2724 rc
= ethtool_set_features(dev
, useraddr
);
2726 case ETHTOOL_GTXCSUM
:
2727 case ETHTOOL_GRXCSUM
:
2733 rc
= ethtool_get_one_feature(dev
, useraddr
, ethcmd
);
2735 case ETHTOOL_STXCSUM
:
2736 case ETHTOOL_SRXCSUM
:
2742 rc
= ethtool_set_one_feature(dev
, useraddr
, ethcmd
);
2744 case ETHTOOL_GCHANNELS
:
2745 rc
= ethtool_get_channels(dev
, useraddr
);
2747 case ETHTOOL_SCHANNELS
:
2748 rc
= ethtool_set_channels(dev
, useraddr
);
2750 case ETHTOOL_SET_DUMP
:
2751 rc
= ethtool_set_dump(dev
, useraddr
);
2753 case ETHTOOL_GET_DUMP_FLAG
:
2754 rc
= ethtool_get_dump_flag(dev
, useraddr
);
2756 case ETHTOOL_GET_DUMP_DATA
:
2757 rc
= ethtool_get_dump_data(dev
, useraddr
);
2759 case ETHTOOL_GET_TS_INFO
:
2760 rc
= ethtool_get_ts_info(dev
, useraddr
);
2762 case ETHTOOL_GMODULEINFO
:
2763 rc
= ethtool_get_module_info(dev
, useraddr
);
2765 case ETHTOOL_GMODULEEEPROM
:
2766 rc
= ethtool_get_module_eeprom(dev
, useraddr
);
2768 case ETHTOOL_GTUNABLE
:
2769 rc
= ethtool_get_tunable(dev
, useraddr
);
2771 case ETHTOOL_STUNABLE
:
2772 rc
= ethtool_set_tunable(dev
, useraddr
);
2774 case ETHTOOL_GPHYSTATS
:
2775 rc
= ethtool_get_phy_stats(dev
, useraddr
);
2777 case ETHTOOL_PERQUEUE
:
2778 rc
= ethtool_set_per_queue(dev
, useraddr
);
2780 case ETHTOOL_GLINKSETTINGS
:
2781 rc
= ethtool_get_link_ksettings(dev
, useraddr
);
2783 case ETHTOOL_SLINKSETTINGS
:
2784 rc
= ethtool_set_link_ksettings(dev
, useraddr
);
2786 case ETHTOOL_PHY_GTUNABLE
:
2787 rc
= get_phy_tunable(dev
, useraddr
);
2789 case ETHTOOL_PHY_STUNABLE
:
2790 rc
= set_phy_tunable(dev
, useraddr
);
2796 if (dev
->ethtool_ops
->complete
)
2797 dev
->ethtool_ops
->complete(dev
);
2799 if (old_features
!= dev
->features
)
2800 netdev_features_change(dev
);