2 * net/core/ethtool.c - Ethtool ioctl handler
3 * Copyright (c) 2003 Matthew Wilcox <matthew@wil.cx>
5 * This file is where we call all the ethtool_ops commands to get
6 * the information ethtool needs.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #include <linux/module.h>
15 #include <linux/types.h>
16 #include <linux/capability.h>
17 #include <linux/errno.h>
18 #include <linux/ethtool.h>
19 #include <linux/netdevice.h>
20 #include <linux/net_tstamp.h>
21 #include <linux/phy.h>
22 #include <linux/bitops.h>
23 #include <linux/uaccess.h>
24 #include <linux/vmalloc.h>
25 #include <linux/slab.h>
26 #include <linux/rtnetlink.h>
27 #include <linux/sched.h>
28 #include <linux/net.h>
31 * Some useful ethtool_ops methods that're device independent.
32 * If we find that all drivers want to do the same thing here,
33 * we can turn these into dev_() function calls.
36 u32
ethtool_op_get_link(struct net_device
*dev
)
38 return netif_carrier_ok(dev
) ? 1 : 0;
40 EXPORT_SYMBOL(ethtool_op_get_link
);
42 int ethtool_op_get_ts_info(struct net_device
*dev
, struct ethtool_ts_info
*info
)
44 info
->so_timestamping
=
45 SOF_TIMESTAMPING_TX_SOFTWARE
|
46 SOF_TIMESTAMPING_RX_SOFTWARE
|
47 SOF_TIMESTAMPING_SOFTWARE
;
51 EXPORT_SYMBOL(ethtool_op_get_ts_info
);
53 /* Handlers for each ethtool command */
55 #define ETHTOOL_DEV_FEATURE_WORDS ((NETDEV_FEATURE_COUNT + 31) / 32)
57 static const char netdev_features_strings
[NETDEV_FEATURE_COUNT
][ETH_GSTRING_LEN
] = {
58 [NETIF_F_SG_BIT
] = "tx-scatter-gather",
59 [NETIF_F_IP_CSUM_BIT
] = "tx-checksum-ipv4",
60 [NETIF_F_HW_CSUM_BIT
] = "tx-checksum-ip-generic",
61 [NETIF_F_IPV6_CSUM_BIT
] = "tx-checksum-ipv6",
62 [NETIF_F_HIGHDMA_BIT
] = "highdma",
63 [NETIF_F_FRAGLIST_BIT
] = "tx-scatter-gather-fraglist",
64 [NETIF_F_HW_VLAN_CTAG_TX_BIT
] = "tx-vlan-hw-insert",
66 [NETIF_F_HW_VLAN_CTAG_RX_BIT
] = "rx-vlan-hw-parse",
67 [NETIF_F_HW_VLAN_CTAG_FILTER_BIT
] = "rx-vlan-filter",
68 [NETIF_F_HW_VLAN_STAG_TX_BIT
] = "tx-vlan-stag-hw-insert",
69 [NETIF_F_HW_VLAN_STAG_RX_BIT
] = "rx-vlan-stag-hw-parse",
70 [NETIF_F_HW_VLAN_STAG_FILTER_BIT
] = "rx-vlan-stag-filter",
71 [NETIF_F_VLAN_CHALLENGED_BIT
] = "vlan-challenged",
72 [NETIF_F_GSO_BIT
] = "tx-generic-segmentation",
73 [NETIF_F_LLTX_BIT
] = "tx-lockless",
74 [NETIF_F_NETNS_LOCAL_BIT
] = "netns-local",
75 [NETIF_F_GRO_BIT
] = "rx-gro",
76 [NETIF_F_LRO_BIT
] = "rx-lro",
78 [NETIF_F_TSO_BIT
] = "tx-tcp-segmentation",
79 [NETIF_F_UFO_BIT
] = "tx-udp-fragmentation",
80 [NETIF_F_GSO_ROBUST_BIT
] = "tx-gso-robust",
81 [NETIF_F_TSO_ECN_BIT
] = "tx-tcp-ecn-segmentation",
82 [NETIF_F_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",
93 [NETIF_F_FCOE_CRC_BIT
] = "tx-checksum-fcoe-crc",
94 [NETIF_F_SCTP_CRC_BIT
] = "tx-checksum-sctp",
95 [NETIF_F_FCOE_MTU_BIT
] = "fcoe-mtu",
96 [NETIF_F_NTUPLE_BIT
] = "rx-ntuple-filter",
97 [NETIF_F_RXHASH_BIT
] = "rx-hashing",
98 [NETIF_F_RXCSUM_BIT
] = "rx-checksum",
99 [NETIF_F_NOCACHE_COPY_BIT
] = "tx-nocache-copy",
100 [NETIF_F_LOOPBACK_BIT
] = "loopback",
101 [NETIF_F_RXFCS_BIT
] = "rx-fcs",
102 [NETIF_F_RXALL_BIT
] = "rx-all",
103 [NETIF_F_HW_L2FW_DOFFLOAD_BIT
] = "l2-fwd-offload",
104 [NETIF_F_BUSY_POLL_BIT
] = "busy-poll",
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",
121 static int ethtool_get_features(struct net_device
*dev
, void __user
*useraddr
)
123 struct ethtool_gfeatures cmd
= {
124 .cmd
= ETHTOOL_GFEATURES
,
125 .size
= ETHTOOL_DEV_FEATURE_WORDS
,
127 struct ethtool_get_features_block features
[ETHTOOL_DEV_FEATURE_WORDS
];
128 u32 __user
*sizeaddr
;
132 /* in case feature bits run out again */
133 BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS
* sizeof(u32
) > sizeof(netdev_features_t
));
135 for (i
= 0; i
< ETHTOOL_DEV_FEATURE_WORDS
; ++i
) {
136 features
[i
].available
= (u32
)(dev
->hw_features
>> (32 * i
));
137 features
[i
].requested
= (u32
)(dev
->wanted_features
>> (32 * i
));
138 features
[i
].active
= (u32
)(dev
->features
>> (32 * i
));
139 features
[i
].never_changed
=
140 (u32
)(NETIF_F_NEVER_CHANGE
>> (32 * i
));
143 sizeaddr
= useraddr
+ offsetof(struct ethtool_gfeatures
, size
);
144 if (get_user(copy_size
, sizeaddr
))
147 if (copy_size
> ETHTOOL_DEV_FEATURE_WORDS
)
148 copy_size
= ETHTOOL_DEV_FEATURE_WORDS
;
150 if (copy_to_user(useraddr
, &cmd
, sizeof(cmd
)))
152 useraddr
+= sizeof(cmd
);
153 if (copy_to_user(useraddr
, features
, copy_size
* sizeof(*features
)))
159 static int ethtool_set_features(struct net_device
*dev
, void __user
*useraddr
)
161 struct ethtool_sfeatures cmd
;
162 struct ethtool_set_features_block features
[ETHTOOL_DEV_FEATURE_WORDS
];
163 netdev_features_t wanted
= 0, valid
= 0;
166 if (copy_from_user(&cmd
, useraddr
, sizeof(cmd
)))
168 useraddr
+= sizeof(cmd
);
170 if (cmd
.size
!= ETHTOOL_DEV_FEATURE_WORDS
)
173 if (copy_from_user(features
, useraddr
, sizeof(features
)))
176 for (i
= 0; i
< ETHTOOL_DEV_FEATURE_WORDS
; ++i
) {
177 valid
|= (netdev_features_t
)features
[i
].valid
<< (32 * i
);
178 wanted
|= (netdev_features_t
)features
[i
].requested
<< (32 * i
);
181 if (valid
& ~NETIF_F_ETHTOOL_BITS
)
184 if (valid
& ~dev
->hw_features
) {
185 valid
&= dev
->hw_features
;
186 ret
|= ETHTOOL_F_UNSUPPORTED
;
189 dev
->wanted_features
&= ~valid
;
190 dev
->wanted_features
|= wanted
& valid
;
191 __netdev_update_features(dev
);
193 if ((dev
->wanted_features
^ dev
->features
) & valid
)
194 ret
|= ETHTOOL_F_WISH
;
199 static int phy_get_sset_count(struct phy_device
*phydev
)
203 if (phydev
->drv
->get_sset_count
&&
204 phydev
->drv
->get_strings
&&
205 phydev
->drv
->get_stats
) {
206 mutex_lock(&phydev
->lock
);
207 ret
= phydev
->drv
->get_sset_count(phydev
);
208 mutex_unlock(&phydev
->lock
);
216 static int __ethtool_get_sset_count(struct net_device
*dev
, int sset
)
218 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
220 if (sset
== ETH_SS_FEATURES
)
221 return ARRAY_SIZE(netdev_features_strings
);
223 if (sset
== ETH_SS_RSS_HASH_FUNCS
)
224 return ARRAY_SIZE(rss_hash_func_strings
);
226 if (sset
== ETH_SS_TUNABLES
)
227 return ARRAY_SIZE(tunable_strings
);
229 if (sset
== ETH_SS_PHY_STATS
) {
231 return phy_get_sset_count(dev
->phydev
);
236 if (ops
->get_sset_count
&& ops
->get_strings
)
237 return ops
->get_sset_count(dev
, sset
);
242 static void __ethtool_get_strings(struct net_device
*dev
,
243 u32 stringset
, u8
*data
)
245 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
247 if (stringset
== ETH_SS_FEATURES
)
248 memcpy(data
, netdev_features_strings
,
249 sizeof(netdev_features_strings
));
250 else if (stringset
== ETH_SS_RSS_HASH_FUNCS
)
251 memcpy(data
, rss_hash_func_strings
,
252 sizeof(rss_hash_func_strings
));
253 else if (stringset
== ETH_SS_TUNABLES
)
254 memcpy(data
, tunable_strings
, sizeof(tunable_strings
));
255 else if (stringset
== ETH_SS_PHY_STATS
) {
256 struct phy_device
*phydev
= dev
->phydev
;
259 mutex_lock(&phydev
->lock
);
260 phydev
->drv
->get_strings(phydev
, data
);
261 mutex_unlock(&phydev
->lock
);
266 /* ops->get_strings is valid because checked earlier */
267 ops
->get_strings(dev
, stringset
, data
);
270 static netdev_features_t
ethtool_get_feature_mask(u32 eth_cmd
)
272 /* feature masks of legacy discrete ethtool ops */
275 case ETHTOOL_GTXCSUM
:
276 case ETHTOOL_STXCSUM
:
277 return NETIF_F_CSUM_MASK
| NETIF_F_SCTP_CRC
;
278 case ETHTOOL_GRXCSUM
:
279 case ETHTOOL_SRXCSUM
:
280 return NETIF_F_RXCSUM
;
286 return NETIF_F_ALL_TSO
;
301 static int ethtool_get_one_feature(struct net_device
*dev
,
302 char __user
*useraddr
, u32 ethcmd
)
304 netdev_features_t mask
= ethtool_get_feature_mask(ethcmd
);
305 struct ethtool_value edata
= {
307 .data
= !!(dev
->features
& mask
),
310 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
315 static int ethtool_set_one_feature(struct net_device
*dev
,
316 void __user
*useraddr
, u32 ethcmd
)
318 struct ethtool_value edata
;
319 netdev_features_t mask
;
321 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
324 mask
= ethtool_get_feature_mask(ethcmd
);
325 mask
&= dev
->hw_features
;
330 dev
->wanted_features
|= mask
;
332 dev
->wanted_features
&= ~mask
;
334 __netdev_update_features(dev
);
339 #define ETH_ALL_FLAGS (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
340 ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
341 #define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
342 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
345 static u32
__ethtool_get_flags(struct net_device
*dev
)
349 if (dev
->features
& NETIF_F_LRO
)
350 flags
|= ETH_FLAG_LRO
;
351 if (dev
->features
& NETIF_F_HW_VLAN_CTAG_RX
)
352 flags
|= ETH_FLAG_RXVLAN
;
353 if (dev
->features
& NETIF_F_HW_VLAN_CTAG_TX
)
354 flags
|= ETH_FLAG_TXVLAN
;
355 if (dev
->features
& NETIF_F_NTUPLE
)
356 flags
|= ETH_FLAG_NTUPLE
;
357 if (dev
->features
& NETIF_F_RXHASH
)
358 flags
|= ETH_FLAG_RXHASH
;
363 static int __ethtool_set_flags(struct net_device
*dev
, u32 data
)
365 netdev_features_t features
= 0, changed
;
367 if (data
& ~ETH_ALL_FLAGS
)
370 if (data
& ETH_FLAG_LRO
)
371 features
|= NETIF_F_LRO
;
372 if (data
& ETH_FLAG_RXVLAN
)
373 features
|= NETIF_F_HW_VLAN_CTAG_RX
;
374 if (data
& ETH_FLAG_TXVLAN
)
375 features
|= NETIF_F_HW_VLAN_CTAG_TX
;
376 if (data
& ETH_FLAG_NTUPLE
)
377 features
|= NETIF_F_NTUPLE
;
378 if (data
& ETH_FLAG_RXHASH
)
379 features
|= NETIF_F_RXHASH
;
381 /* allow changing only bits set in hw_features */
382 changed
= (features
^ dev
->features
) & ETH_ALL_FEATURES
;
383 if (changed
& ~dev
->hw_features
)
384 return (changed
& dev
->hw_features
) ? -EINVAL
: -EOPNOTSUPP
;
386 dev
->wanted_features
=
387 (dev
->wanted_features
& ~changed
) | (features
& changed
);
389 __netdev_update_features(dev
);
394 void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst
,
397 bitmap_zero(dst
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
400 EXPORT_SYMBOL(ethtool_convert_legacy_u32_to_link_mode
);
402 /* return false if src had higher bits set. lower bits always updated. */
403 bool ethtool_convert_link_mode_to_legacy_u32(u32
*legacy_u32
,
404 const unsigned long *src
)
408 /* TODO: following test will soon always be true */
409 if (__ETHTOOL_LINK_MODE_MASK_NBITS
> 32) {
410 __ETHTOOL_DECLARE_LINK_MODE_MASK(ext
);
412 bitmap_zero(ext
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
413 bitmap_fill(ext
, 32);
414 bitmap_complement(ext
, ext
, __ETHTOOL_LINK_MODE_MASK_NBITS
);
415 if (bitmap_intersects(ext
, src
,
416 __ETHTOOL_LINK_MODE_MASK_NBITS
)) {
417 /* src mask goes beyond bit 31 */
421 *legacy_u32
= src
[0];
424 EXPORT_SYMBOL(ethtool_convert_link_mode_to_legacy_u32
);
426 /* return false if legacy contained non-0 deprecated fields
427 * transceiver/maxtxpkt/maxrxpkt. rest of ksettings always updated
430 convert_legacy_settings_to_link_ksettings(
431 struct ethtool_link_ksettings
*link_ksettings
,
432 const struct ethtool_cmd
*legacy_settings
)
436 memset(link_ksettings
, 0, sizeof(*link_ksettings
));
438 /* This is used to tell users that driver is still using these
439 * deprecated legacy fields, and they should not use
440 * %ETHTOOL_GLINKSETTINGS/%ETHTOOL_SLINKSETTINGS
442 if (legacy_settings
->transceiver
||
443 legacy_settings
->maxtxpkt
||
444 legacy_settings
->maxrxpkt
)
447 ethtool_convert_legacy_u32_to_link_mode(
448 link_ksettings
->link_modes
.supported
,
449 legacy_settings
->supported
);
450 ethtool_convert_legacy_u32_to_link_mode(
451 link_ksettings
->link_modes
.advertising
,
452 legacy_settings
->advertising
);
453 ethtool_convert_legacy_u32_to_link_mode(
454 link_ksettings
->link_modes
.lp_advertising
,
455 legacy_settings
->lp_advertising
);
456 link_ksettings
->base
.speed
457 = ethtool_cmd_speed(legacy_settings
);
458 link_ksettings
->base
.duplex
459 = legacy_settings
->duplex
;
460 link_ksettings
->base
.port
461 = legacy_settings
->port
;
462 link_ksettings
->base
.phy_address
463 = legacy_settings
->phy_address
;
464 link_ksettings
->base
.autoneg
465 = legacy_settings
->autoneg
;
466 link_ksettings
->base
.mdio_support
467 = legacy_settings
->mdio_support
;
468 link_ksettings
->base
.eth_tp_mdix
469 = legacy_settings
->eth_tp_mdix
;
470 link_ksettings
->base
.eth_tp_mdix_ctrl
471 = legacy_settings
->eth_tp_mdix_ctrl
;
475 /* return false if ksettings link modes had higher bits
476 * set. legacy_settings always updated (best effort)
479 convert_link_ksettings_to_legacy_settings(
480 struct ethtool_cmd
*legacy_settings
,
481 const struct ethtool_link_ksettings
*link_ksettings
)
485 memset(legacy_settings
, 0, sizeof(*legacy_settings
));
486 /* this also clears the deprecated fields in legacy structure:
492 retval
&= ethtool_convert_link_mode_to_legacy_u32(
493 &legacy_settings
->supported
,
494 link_ksettings
->link_modes
.supported
);
495 retval
&= ethtool_convert_link_mode_to_legacy_u32(
496 &legacy_settings
->advertising
,
497 link_ksettings
->link_modes
.advertising
);
498 retval
&= ethtool_convert_link_mode_to_legacy_u32(
499 &legacy_settings
->lp_advertising
,
500 link_ksettings
->link_modes
.lp_advertising
);
501 ethtool_cmd_speed_set(legacy_settings
, link_ksettings
->base
.speed
);
502 legacy_settings
->duplex
503 = link_ksettings
->base
.duplex
;
504 legacy_settings
->port
505 = link_ksettings
->base
.port
;
506 legacy_settings
->phy_address
507 = link_ksettings
->base
.phy_address
;
508 legacy_settings
->autoneg
509 = link_ksettings
->base
.autoneg
;
510 legacy_settings
->mdio_support
511 = link_ksettings
->base
.mdio_support
;
512 legacy_settings
->eth_tp_mdix
513 = link_ksettings
->base
.eth_tp_mdix
;
514 legacy_settings
->eth_tp_mdix_ctrl
515 = link_ksettings
->base
.eth_tp_mdix_ctrl
;
519 /* number of 32-bit words to store the user's link mode bitmaps */
520 #define __ETHTOOL_LINK_MODE_MASK_NU32 \
521 DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32)
523 /* layout of the struct passed from/to userland */
524 struct ethtool_link_usettings
{
525 struct ethtool_link_settings base
;
527 __u32 supported
[__ETHTOOL_LINK_MODE_MASK_NU32
];
528 __u32 advertising
[__ETHTOOL_LINK_MODE_MASK_NU32
];
529 __u32 lp_advertising
[__ETHTOOL_LINK_MODE_MASK_NU32
];
533 /* Internal kernel helper to query a device ethtool_link_settings.
535 * Backward compatibility note: for compatibility with legacy drivers
536 * that implement only the ethtool_cmd API, this has to work with both
537 * drivers implementing get_link_ksettings API and drivers
538 * implementing get_settings API. When drivers implement get_settings
539 * and report ethtool_cmd deprecated fields
540 * (transceiver/maxrxpkt/maxtxpkt), these fields are silently ignored
541 * because the resulting struct ethtool_link_settings does not report them.
543 int __ethtool_get_link_ksettings(struct net_device
*dev
,
544 struct ethtool_link_ksettings
*link_ksettings
)
547 struct ethtool_cmd cmd
;
551 if (dev
->ethtool_ops
->get_link_ksettings
) {
552 memset(link_ksettings
, 0, sizeof(*link_ksettings
));
553 return dev
->ethtool_ops
->get_link_ksettings(dev
,
557 /* driver doesn't support %ethtool_link_ksettings API. revert to
558 * legacy %ethtool_cmd API, unless it's not supported either.
559 * TODO: remove when ethtool_ops::get_settings disappears internally
561 if (!dev
->ethtool_ops
->get_settings
)
564 memset(&cmd
, 0, sizeof(cmd
));
565 cmd
.cmd
= ETHTOOL_GSET
;
566 err
= dev
->ethtool_ops
->get_settings(dev
, &cmd
);
570 /* we ignore deprecated fields transceiver/maxrxpkt/maxtxpkt
572 convert_legacy_settings_to_link_ksettings(link_ksettings
, &cmd
);
575 EXPORT_SYMBOL(__ethtool_get_link_ksettings
);
577 /* convert ethtool_link_usettings in user space to a kernel internal
578 * ethtool_link_ksettings. return 0 on success, errno on error.
580 static int load_link_ksettings_from_user(struct ethtool_link_ksettings
*to
,
581 const void __user
*from
)
583 struct ethtool_link_usettings link_usettings
;
585 if (copy_from_user(&link_usettings
, from
, sizeof(link_usettings
)))
588 memcpy(&to
->base
, &link_usettings
.base
, sizeof(to
->base
));
589 bitmap_from_u32array(to
->link_modes
.supported
,
590 __ETHTOOL_LINK_MODE_MASK_NBITS
,
591 link_usettings
.link_modes
.supported
,
592 __ETHTOOL_LINK_MODE_MASK_NU32
);
593 bitmap_from_u32array(to
->link_modes
.advertising
,
594 __ETHTOOL_LINK_MODE_MASK_NBITS
,
595 link_usettings
.link_modes
.advertising
,
596 __ETHTOOL_LINK_MODE_MASK_NU32
);
597 bitmap_from_u32array(to
->link_modes
.lp_advertising
,
598 __ETHTOOL_LINK_MODE_MASK_NBITS
,
599 link_usettings
.link_modes
.lp_advertising
,
600 __ETHTOOL_LINK_MODE_MASK_NU32
);
605 /* convert a kernel internal ethtool_link_ksettings to
606 * ethtool_link_usettings in user space. return 0 on success, errno on
610 store_link_ksettings_for_user(void __user
*to
,
611 const struct ethtool_link_ksettings
*from
)
613 struct ethtool_link_usettings link_usettings
;
615 memcpy(&link_usettings
.base
, &from
->base
, sizeof(link_usettings
));
616 bitmap_to_u32array(link_usettings
.link_modes
.supported
,
617 __ETHTOOL_LINK_MODE_MASK_NU32
,
618 from
->link_modes
.supported
,
619 __ETHTOOL_LINK_MODE_MASK_NBITS
);
620 bitmap_to_u32array(link_usettings
.link_modes
.advertising
,
621 __ETHTOOL_LINK_MODE_MASK_NU32
,
622 from
->link_modes
.advertising
,
623 __ETHTOOL_LINK_MODE_MASK_NBITS
);
624 bitmap_to_u32array(link_usettings
.link_modes
.lp_advertising
,
625 __ETHTOOL_LINK_MODE_MASK_NU32
,
626 from
->link_modes
.lp_advertising
,
627 __ETHTOOL_LINK_MODE_MASK_NBITS
);
629 if (copy_to_user(to
, &link_usettings
, sizeof(link_usettings
)))
635 /* Query device for its ethtool_link_settings.
637 * Backward compatibility note: this function must fail when driver
638 * does not implement ethtool::get_link_ksettings, even if legacy
639 * ethtool_ops::get_settings is implemented. This tells new versions
640 * of ethtool that they should use the legacy API %ETHTOOL_GSET for
641 * this driver, so that they can correctly access the ethtool_cmd
642 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
643 * implements ethtool_ops::get_settings anymore.
645 static int ethtool_get_link_ksettings(struct net_device
*dev
,
646 void __user
*useraddr
)
649 struct ethtool_link_ksettings link_ksettings
;
653 if (!dev
->ethtool_ops
->get_link_ksettings
)
656 /* handle bitmap nbits handshake */
657 if (copy_from_user(&link_ksettings
.base
, useraddr
,
658 sizeof(link_ksettings
.base
)))
661 if (__ETHTOOL_LINK_MODE_MASK_NU32
662 != link_ksettings
.base
.link_mode_masks_nwords
) {
663 /* wrong link mode nbits requested */
664 memset(&link_ksettings
, 0, sizeof(link_ksettings
));
665 link_ksettings
.base
.cmd
= ETHTOOL_GLINKSETTINGS
;
666 /* send back number of words required as negative val */
667 compiletime_assert(__ETHTOOL_LINK_MODE_MASK_NU32
<= S8_MAX
,
668 "need too many bits for link modes!");
669 link_ksettings
.base
.link_mode_masks_nwords
670 = -((s8
)__ETHTOOL_LINK_MODE_MASK_NU32
);
672 /* copy the base fields back to user, not the link
675 if (copy_to_user(useraddr
, &link_ksettings
.base
,
676 sizeof(link_ksettings
.base
)))
682 /* handshake successful: user/kernel agree on
683 * link_mode_masks_nwords
686 memset(&link_ksettings
, 0, sizeof(link_ksettings
));
687 err
= dev
->ethtool_ops
->get_link_ksettings(dev
, &link_ksettings
);
691 /* make sure we tell the right values to user */
692 link_ksettings
.base
.cmd
= ETHTOOL_GLINKSETTINGS
;
693 link_ksettings
.base
.link_mode_masks_nwords
694 = __ETHTOOL_LINK_MODE_MASK_NU32
;
696 return store_link_ksettings_for_user(useraddr
, &link_ksettings
);
699 /* Update device ethtool_link_settings.
701 * Backward compatibility note: this function must fail when driver
702 * does not implement ethtool::set_link_ksettings, even if legacy
703 * ethtool_ops::set_settings is implemented. This tells new versions
704 * of ethtool that they should use the legacy API %ETHTOOL_SSET for
705 * this driver, so that they can correctly update the ethtool_cmd
706 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
707 * implements ethtool_ops::get_settings anymore.
709 static int ethtool_set_link_ksettings(struct net_device
*dev
,
710 void __user
*useraddr
)
713 struct ethtool_link_ksettings link_ksettings
;
717 if (!dev
->ethtool_ops
->set_link_ksettings
)
720 /* make sure nbits field has expected value */
721 if (copy_from_user(&link_ksettings
.base
, useraddr
,
722 sizeof(link_ksettings
.base
)))
725 if (__ETHTOOL_LINK_MODE_MASK_NU32
726 != link_ksettings
.base
.link_mode_masks_nwords
)
729 /* copy the whole structure, now that we know it has expected
732 err
= load_link_ksettings_from_user(&link_ksettings
, useraddr
);
736 /* re-check nwords field, just in case */
737 if (__ETHTOOL_LINK_MODE_MASK_NU32
738 != link_ksettings
.base
.link_mode_masks_nwords
)
741 return dev
->ethtool_ops
->set_link_ksettings(dev
, &link_ksettings
);
745 warn_incomplete_ethtool_legacy_settings_conversion(const char *details
)
747 char name
[sizeof(current
->comm
)];
749 pr_info_once("warning: `%s' uses legacy ethtool link settings API, %s\n",
750 get_task_comm(name
, current
), details
);
753 /* Query device for its ethtool_cmd settings.
755 * Backward compatibility note: for compatibility with legacy ethtool,
756 * this has to work with both drivers implementing get_link_ksettings
757 * API and drivers implementing get_settings API. When drivers
758 * implement get_link_ksettings and report higher link mode bits, a
759 * kernel warning is logged once (with name of 1st driver/device) to
760 * recommend user to upgrade ethtool, but the command is successful
761 * (only the lower link mode bits reported back to user).
763 static int ethtool_get_settings(struct net_device
*dev
, void __user
*useraddr
)
765 struct ethtool_cmd cmd
;
769 if (dev
->ethtool_ops
->get_link_ksettings
) {
770 /* First, use link_ksettings API if it is supported */
772 struct ethtool_link_ksettings link_ksettings
;
774 memset(&link_ksettings
, 0, sizeof(link_ksettings
));
775 err
= dev
->ethtool_ops
->get_link_ksettings(dev
,
779 if (!convert_link_ksettings_to_legacy_settings(&cmd
,
781 warn_incomplete_ethtool_legacy_settings_conversion(
782 "link modes are only partially reported");
784 /* send a sensible cmd tag back to user */
785 cmd
.cmd
= ETHTOOL_GSET
;
787 /* driver doesn't support %ethtool_link_ksettings
788 * API. revert to legacy %ethtool_cmd API, unless it's
789 * not supported either.
793 if (!dev
->ethtool_ops
->get_settings
)
796 memset(&cmd
, 0, sizeof(cmd
));
797 cmd
.cmd
= ETHTOOL_GSET
;
798 err
= dev
->ethtool_ops
->get_settings(dev
, &cmd
);
803 if (copy_to_user(useraddr
, &cmd
, sizeof(cmd
)))
809 /* Update device link settings with given ethtool_cmd.
811 * Backward compatibility note: for compatibility with legacy ethtool,
812 * this has to work with both drivers implementing set_link_ksettings
813 * API and drivers implementing set_settings API. When drivers
814 * implement set_link_ksettings and user's request updates deprecated
815 * ethtool_cmd fields (transceiver/maxrxpkt/maxtxpkt), a kernel
816 * warning is logged once (with name of 1st driver/device) to
817 * recommend user to upgrade ethtool, and the request is rejected.
819 static int ethtool_set_settings(struct net_device
*dev
, void __user
*useraddr
)
821 struct ethtool_cmd cmd
;
825 if (copy_from_user(&cmd
, useraddr
, sizeof(cmd
)))
828 /* first, try new %ethtool_link_ksettings API. */
829 if (dev
->ethtool_ops
->set_link_ksettings
) {
830 struct ethtool_link_ksettings link_ksettings
;
832 if (!convert_legacy_settings_to_link_ksettings(&link_ksettings
,
836 link_ksettings
.base
.cmd
= ETHTOOL_SLINKSETTINGS
;
837 link_ksettings
.base
.link_mode_masks_nwords
838 = __ETHTOOL_LINK_MODE_MASK_NU32
;
839 return dev
->ethtool_ops
->set_link_ksettings(dev
,
843 /* legacy %ethtool_cmd API */
845 /* TODO: return -EOPNOTSUPP when ethtool_ops::get_settings
846 * disappears internally
849 if (!dev
->ethtool_ops
->set_settings
)
852 return dev
->ethtool_ops
->set_settings(dev
, &cmd
);
855 static noinline_for_stack
int ethtool_get_drvinfo(struct net_device
*dev
,
856 void __user
*useraddr
)
858 struct ethtool_drvinfo info
;
859 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
861 memset(&info
, 0, sizeof(info
));
862 info
.cmd
= ETHTOOL_GDRVINFO
;
863 if (ops
->get_drvinfo
) {
864 ops
->get_drvinfo(dev
, &info
);
865 } else if (dev
->dev
.parent
&& dev
->dev
.parent
->driver
) {
866 strlcpy(info
.bus_info
, dev_name(dev
->dev
.parent
),
867 sizeof(info
.bus_info
));
868 strlcpy(info
.driver
, dev
->dev
.parent
->driver
->name
,
869 sizeof(info
.driver
));
875 * this method of obtaining string set info is deprecated;
876 * Use ETHTOOL_GSSET_INFO instead.
878 if (ops
->get_sset_count
) {
881 rc
= ops
->get_sset_count(dev
, ETH_SS_TEST
);
883 info
.testinfo_len
= rc
;
884 rc
= ops
->get_sset_count(dev
, ETH_SS_STATS
);
887 rc
= ops
->get_sset_count(dev
, ETH_SS_PRIV_FLAGS
);
889 info
.n_priv_flags
= rc
;
891 if (ops
->get_regs_len
)
892 info
.regdump_len
= ops
->get_regs_len(dev
);
893 if (ops
->get_eeprom_len
)
894 info
.eedump_len
= ops
->get_eeprom_len(dev
);
896 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
901 static noinline_for_stack
int ethtool_get_sset_info(struct net_device
*dev
,
902 void __user
*useraddr
)
904 struct ethtool_sset_info info
;
906 int i
, idx
= 0, n_bits
= 0, ret
, rc
;
907 u32
*info_buf
= NULL
;
909 if (copy_from_user(&info
, useraddr
, sizeof(info
)))
912 /* store copy of mask, because we zero struct later on */
913 sset_mask
= info
.sset_mask
;
917 /* calculate size of return buffer */
918 n_bits
= hweight64(sset_mask
);
920 memset(&info
, 0, sizeof(info
));
921 info
.cmd
= ETHTOOL_GSSET_INFO
;
923 info_buf
= kzalloc(n_bits
* sizeof(u32
), GFP_USER
);
928 * fill return buffer based on input bitmask and successful
929 * get_sset_count return
931 for (i
= 0; i
< 64; i
++) {
932 if (!(sset_mask
& (1ULL << i
)))
935 rc
= __ethtool_get_sset_count(dev
, i
);
937 info
.sset_mask
|= (1ULL << i
);
938 info_buf
[idx
++] = rc
;
943 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
946 useraddr
+= offsetof(struct ethtool_sset_info
, data
);
947 if (copy_to_user(useraddr
, info_buf
, idx
* sizeof(u32
)))
957 static noinline_for_stack
int ethtool_set_rxnfc(struct net_device
*dev
,
958 u32 cmd
, void __user
*useraddr
)
960 struct ethtool_rxnfc info
;
961 size_t info_size
= sizeof(info
);
964 if (!dev
->ethtool_ops
->set_rxnfc
)
967 /* struct ethtool_rxnfc was originally defined for
968 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
969 * members. User-space might still be using that
971 if (cmd
== ETHTOOL_SRXFH
)
972 info_size
= (offsetof(struct ethtool_rxnfc
, data
) +
975 if (copy_from_user(&info
, useraddr
, info_size
))
978 rc
= dev
->ethtool_ops
->set_rxnfc(dev
, &info
);
982 if (cmd
== ETHTOOL_SRXCLSRLINS
&&
983 copy_to_user(useraddr
, &info
, info_size
))
989 static noinline_for_stack
int ethtool_get_rxnfc(struct net_device
*dev
,
990 u32 cmd
, void __user
*useraddr
)
992 struct ethtool_rxnfc info
;
993 size_t info_size
= sizeof(info
);
994 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
996 void *rule_buf
= NULL
;
1001 /* struct ethtool_rxnfc was originally defined for
1002 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
1003 * members. User-space might still be using that
1005 if (cmd
== ETHTOOL_GRXFH
)
1006 info_size
= (offsetof(struct ethtool_rxnfc
, data
) +
1009 if (copy_from_user(&info
, useraddr
, info_size
))
1012 if (info
.cmd
== ETHTOOL_GRXCLSRLALL
) {
1013 if (info
.rule_cnt
> 0) {
1014 if (info
.rule_cnt
<= KMALLOC_MAX_SIZE
/ sizeof(u32
))
1015 rule_buf
= kzalloc(info
.rule_cnt
* sizeof(u32
),
1022 ret
= ops
->get_rxnfc(dev
, &info
, rule_buf
);
1027 if (copy_to_user(useraddr
, &info
, info_size
))
1031 useraddr
+= offsetof(struct ethtool_rxnfc
, rule_locs
);
1032 if (copy_to_user(useraddr
, rule_buf
,
1033 info
.rule_cnt
* sizeof(u32
)))
1044 static int ethtool_copy_validate_indir(u32
*indir
, void __user
*useraddr
,
1045 struct ethtool_rxnfc
*rx_rings
,
1050 if (copy_from_user(indir
, useraddr
, size
* sizeof(indir
[0])))
1053 /* Validate ring indices */
1054 for (i
= 0; i
< size
; i
++)
1055 if (indir
[i
] >= rx_rings
->data
)
1061 u8 netdev_rss_key
[NETDEV_RSS_KEY_LEN
] __read_mostly
;
1063 void netdev_rss_key_fill(void *buffer
, size_t len
)
1065 BUG_ON(len
> sizeof(netdev_rss_key
));
1066 net_get_random_once(netdev_rss_key
, sizeof(netdev_rss_key
));
1067 memcpy(buffer
, netdev_rss_key
, len
);
1069 EXPORT_SYMBOL(netdev_rss_key_fill
);
1071 static int ethtool_get_max_rxfh_channel(struct net_device
*dev
, u32
*max
)
1073 u32 dev_size
, current_max
= 0;
1077 if (!dev
->ethtool_ops
->get_rxfh_indir_size
||
1078 !dev
->ethtool_ops
->get_rxfh
)
1080 dev_size
= dev
->ethtool_ops
->get_rxfh_indir_size(dev
);
1084 indir
= kcalloc(dev_size
, sizeof(indir
[0]), GFP_USER
);
1088 ret
= dev
->ethtool_ops
->get_rxfh(dev
, indir
, NULL
, NULL
);
1093 current_max
= max(current_max
, indir
[dev_size
]);
1102 static noinline_for_stack
int ethtool_get_rxfh_indir(struct net_device
*dev
,
1103 void __user
*useraddr
)
1105 u32 user_size
, dev_size
;
1109 if (!dev
->ethtool_ops
->get_rxfh_indir_size
||
1110 !dev
->ethtool_ops
->get_rxfh
)
1112 dev_size
= dev
->ethtool_ops
->get_rxfh_indir_size(dev
);
1116 if (copy_from_user(&user_size
,
1117 useraddr
+ offsetof(struct ethtool_rxfh_indir
, size
),
1121 if (copy_to_user(useraddr
+ offsetof(struct ethtool_rxfh_indir
, size
),
1122 &dev_size
, sizeof(dev_size
)))
1125 /* If the user buffer size is 0, this is just a query for the
1126 * device table size. Otherwise, if it's smaller than the
1127 * device table size it's an error.
1129 if (user_size
< dev_size
)
1130 return user_size
== 0 ? 0 : -EINVAL
;
1132 indir
= kcalloc(dev_size
, sizeof(indir
[0]), GFP_USER
);
1136 ret
= dev
->ethtool_ops
->get_rxfh(dev
, indir
, NULL
, NULL
);
1140 if (copy_to_user(useraddr
+
1141 offsetof(struct ethtool_rxfh_indir
, ring_index
[0]),
1142 indir
, dev_size
* sizeof(indir
[0])))
1150 static noinline_for_stack
int ethtool_set_rxfh_indir(struct net_device
*dev
,
1151 void __user
*useraddr
)
1153 struct ethtool_rxnfc rx_rings
;
1154 u32 user_size
, dev_size
, i
;
1156 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1158 u32 ringidx_offset
= offsetof(struct ethtool_rxfh_indir
, ring_index
[0]);
1160 if (!ops
->get_rxfh_indir_size
|| !ops
->set_rxfh
||
1164 dev_size
= ops
->get_rxfh_indir_size(dev
);
1168 if (copy_from_user(&user_size
,
1169 useraddr
+ offsetof(struct ethtool_rxfh_indir
, size
),
1173 if (user_size
!= 0 && user_size
!= dev_size
)
1176 indir
= kcalloc(dev_size
, sizeof(indir
[0]), GFP_USER
);
1180 rx_rings
.cmd
= ETHTOOL_GRXRINGS
;
1181 ret
= ops
->get_rxnfc(dev
, &rx_rings
, NULL
);
1185 if (user_size
== 0) {
1186 for (i
= 0; i
< dev_size
; i
++)
1187 indir
[i
] = ethtool_rxfh_indir_default(i
, rx_rings
.data
);
1189 ret
= ethtool_copy_validate_indir(indir
,
1190 useraddr
+ ringidx_offset
,
1197 ret
= ops
->set_rxfh(dev
, indir
, NULL
, ETH_RSS_HASH_NO_CHANGE
);
1201 /* indicate whether rxfh was set to default */
1203 dev
->priv_flags
&= ~IFF_RXFH_CONFIGURED
;
1205 dev
->priv_flags
|= IFF_RXFH_CONFIGURED
;
1212 static noinline_for_stack
int ethtool_get_rxfh(struct net_device
*dev
,
1213 void __user
*useraddr
)
1216 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1217 u32 user_indir_size
, user_key_size
;
1218 u32 dev_indir_size
= 0, dev_key_size
= 0;
1219 struct ethtool_rxfh rxfh
;
1230 if (ops
->get_rxfh_indir_size
)
1231 dev_indir_size
= ops
->get_rxfh_indir_size(dev
);
1232 if (ops
->get_rxfh_key_size
)
1233 dev_key_size
= ops
->get_rxfh_key_size(dev
);
1235 if (copy_from_user(&rxfh
, useraddr
, sizeof(rxfh
)))
1237 user_indir_size
= rxfh
.indir_size
;
1238 user_key_size
= rxfh
.key_size
;
1240 /* Check that reserved fields are 0 for now */
1241 if (rxfh
.rss_context
|| rxfh
.rsvd8
[0] || rxfh
.rsvd8
[1] ||
1242 rxfh
.rsvd8
[2] || rxfh
.rsvd32
)
1245 rxfh
.indir_size
= dev_indir_size
;
1246 rxfh
.key_size
= dev_key_size
;
1247 if (copy_to_user(useraddr
, &rxfh
, sizeof(rxfh
)))
1250 if ((user_indir_size
&& (user_indir_size
!= dev_indir_size
)) ||
1251 (user_key_size
&& (user_key_size
!= dev_key_size
)))
1254 indir_bytes
= user_indir_size
* sizeof(indir
[0]);
1255 total_size
= indir_bytes
+ user_key_size
;
1256 rss_config
= kzalloc(total_size
, GFP_USER
);
1260 if (user_indir_size
)
1261 indir
= (u32
*)rss_config
;
1264 hkey
= rss_config
+ indir_bytes
;
1266 ret
= dev
->ethtool_ops
->get_rxfh(dev
, indir
, hkey
, &dev_hfunc
);
1270 if (copy_to_user(useraddr
+ offsetof(struct ethtool_rxfh
, hfunc
),
1271 &dev_hfunc
, sizeof(rxfh
.hfunc
))) {
1273 } else if (copy_to_user(useraddr
+
1274 offsetof(struct ethtool_rxfh
, rss_config
[0]),
1275 rss_config
, total_size
)) {
1284 static noinline_for_stack
int ethtool_set_rxfh(struct net_device
*dev
,
1285 void __user
*useraddr
)
1288 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1289 struct ethtool_rxnfc rx_rings
;
1290 struct ethtool_rxfh rxfh
;
1291 u32 dev_indir_size
= 0, dev_key_size
= 0, i
;
1292 u32
*indir
= NULL
, indir_bytes
= 0;
1295 u32 rss_cfg_offset
= offsetof(struct ethtool_rxfh
, rss_config
[0]);
1297 if (!ops
->get_rxnfc
|| !ops
->set_rxfh
)
1300 if (ops
->get_rxfh_indir_size
)
1301 dev_indir_size
= ops
->get_rxfh_indir_size(dev
);
1302 if (ops
->get_rxfh_key_size
)
1303 dev_key_size
= ops
->get_rxfh_key_size(dev
);
1305 if (copy_from_user(&rxfh
, useraddr
, sizeof(rxfh
)))
1308 /* Check that reserved fields are 0 for now */
1309 if (rxfh
.rss_context
|| rxfh
.rsvd8
[0] || rxfh
.rsvd8
[1] ||
1310 rxfh
.rsvd8
[2] || rxfh
.rsvd32
)
1313 /* If either indir, hash key or function is valid, proceed further.
1314 * Must request at least one change: indir size, hash key or function.
1316 if ((rxfh
.indir_size
&&
1317 rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
&&
1318 rxfh
.indir_size
!= dev_indir_size
) ||
1319 (rxfh
.key_size
&& (rxfh
.key_size
!= dev_key_size
)) ||
1320 (rxfh
.indir_size
== ETH_RXFH_INDIR_NO_CHANGE
&&
1321 rxfh
.key_size
== 0 && rxfh
.hfunc
== ETH_RSS_HASH_NO_CHANGE
))
1324 if (rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
)
1325 indir_bytes
= dev_indir_size
* sizeof(indir
[0]);
1327 rss_config
= kzalloc(indir_bytes
+ rxfh
.key_size
, GFP_USER
);
1331 rx_rings
.cmd
= ETHTOOL_GRXRINGS
;
1332 ret
= ops
->get_rxnfc(dev
, &rx_rings
, NULL
);
1336 /* rxfh.indir_size == 0 means reset the indir table to default.
1337 * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
1339 if (rxfh
.indir_size
&&
1340 rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
) {
1341 indir
= (u32
*)rss_config
;
1342 ret
= ethtool_copy_validate_indir(indir
,
1343 useraddr
+ rss_cfg_offset
,
1348 } else if (rxfh
.indir_size
== 0) {
1349 indir
= (u32
*)rss_config
;
1350 for (i
= 0; i
< dev_indir_size
; i
++)
1351 indir
[i
] = ethtool_rxfh_indir_default(i
, rx_rings
.data
);
1354 if (rxfh
.key_size
) {
1355 hkey
= rss_config
+ indir_bytes
;
1356 if (copy_from_user(hkey
,
1357 useraddr
+ rss_cfg_offset
+ indir_bytes
,
1364 ret
= ops
->set_rxfh(dev
, indir
, hkey
, rxfh
.hfunc
);
1368 /* indicate whether rxfh was set to default */
1369 if (rxfh
.indir_size
== 0)
1370 dev
->priv_flags
&= ~IFF_RXFH_CONFIGURED
;
1371 else if (rxfh
.indir_size
!= ETH_RXFH_INDIR_NO_CHANGE
)
1372 dev
->priv_flags
|= IFF_RXFH_CONFIGURED
;
1379 static int ethtool_get_regs(struct net_device
*dev
, char __user
*useraddr
)
1381 struct ethtool_regs regs
;
1382 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1386 if (!ops
->get_regs
|| !ops
->get_regs_len
)
1389 if (copy_from_user(®s
, useraddr
, sizeof(regs
)))
1392 reglen
= ops
->get_regs_len(dev
);
1393 if (regs
.len
> reglen
)
1396 regbuf
= vzalloc(reglen
);
1397 if (reglen
&& !regbuf
)
1400 ops
->get_regs(dev
, ®s
, regbuf
);
1403 if (copy_to_user(useraddr
, ®s
, sizeof(regs
)))
1405 useraddr
+= offsetof(struct ethtool_regs
, data
);
1406 if (regbuf
&& copy_to_user(useraddr
, regbuf
, regs
.len
))
1415 static int ethtool_reset(struct net_device
*dev
, char __user
*useraddr
)
1417 struct ethtool_value reset
;
1420 if (!dev
->ethtool_ops
->reset
)
1423 if (copy_from_user(&reset
, useraddr
, sizeof(reset
)))
1426 ret
= dev
->ethtool_ops
->reset(dev
, &reset
.data
);
1430 if (copy_to_user(useraddr
, &reset
, sizeof(reset
)))
1435 static int ethtool_get_wol(struct net_device
*dev
, char __user
*useraddr
)
1437 struct ethtool_wolinfo wol
= { .cmd
= ETHTOOL_GWOL
};
1439 if (!dev
->ethtool_ops
->get_wol
)
1442 dev
->ethtool_ops
->get_wol(dev
, &wol
);
1444 if (copy_to_user(useraddr
, &wol
, sizeof(wol
)))
1449 static int ethtool_set_wol(struct net_device
*dev
, char __user
*useraddr
)
1451 struct ethtool_wolinfo wol
;
1453 if (!dev
->ethtool_ops
->set_wol
)
1456 if (copy_from_user(&wol
, useraddr
, sizeof(wol
)))
1459 return dev
->ethtool_ops
->set_wol(dev
, &wol
);
1462 static int ethtool_get_eee(struct net_device
*dev
, char __user
*useraddr
)
1464 struct ethtool_eee edata
;
1467 if (!dev
->ethtool_ops
->get_eee
)
1470 memset(&edata
, 0, sizeof(struct ethtool_eee
));
1471 edata
.cmd
= ETHTOOL_GEEE
;
1472 rc
= dev
->ethtool_ops
->get_eee(dev
, &edata
);
1477 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
1483 static int ethtool_set_eee(struct net_device
*dev
, char __user
*useraddr
)
1485 struct ethtool_eee edata
;
1487 if (!dev
->ethtool_ops
->set_eee
)
1490 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
1493 return dev
->ethtool_ops
->set_eee(dev
, &edata
);
1496 static int ethtool_nway_reset(struct net_device
*dev
)
1498 if (!dev
->ethtool_ops
->nway_reset
)
1501 return dev
->ethtool_ops
->nway_reset(dev
);
1504 static int ethtool_get_link(struct net_device
*dev
, char __user
*useraddr
)
1506 struct ethtool_value edata
= { .cmd
= ETHTOOL_GLINK
};
1508 if (!dev
->ethtool_ops
->get_link
)
1511 edata
.data
= netif_running(dev
) && dev
->ethtool_ops
->get_link(dev
);
1513 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
1518 static int ethtool_get_any_eeprom(struct net_device
*dev
, void __user
*useraddr
,
1519 int (*getter
)(struct net_device
*,
1520 struct ethtool_eeprom
*, u8
*),
1523 struct ethtool_eeprom eeprom
;
1524 void __user
*userbuf
= useraddr
+ sizeof(eeprom
);
1525 u32 bytes_remaining
;
1529 if (copy_from_user(&eeprom
, useraddr
, sizeof(eeprom
)))
1532 /* Check for wrap and zero */
1533 if (eeprom
.offset
+ eeprom
.len
<= eeprom
.offset
)
1536 /* Check for exceeding total eeprom len */
1537 if (eeprom
.offset
+ eeprom
.len
> total_len
)
1540 data
= kmalloc(PAGE_SIZE
, GFP_USER
);
1544 bytes_remaining
= eeprom
.len
;
1545 while (bytes_remaining
> 0) {
1546 eeprom
.len
= min(bytes_remaining
, (u32
)PAGE_SIZE
);
1548 ret
= getter(dev
, &eeprom
, data
);
1551 if (copy_to_user(userbuf
, data
, eeprom
.len
)) {
1555 userbuf
+= eeprom
.len
;
1556 eeprom
.offset
+= eeprom
.len
;
1557 bytes_remaining
-= eeprom
.len
;
1560 eeprom
.len
= userbuf
- (useraddr
+ sizeof(eeprom
));
1561 eeprom
.offset
-= eeprom
.len
;
1562 if (copy_to_user(useraddr
, &eeprom
, sizeof(eeprom
)))
1569 static int ethtool_get_eeprom(struct net_device
*dev
, void __user
*useraddr
)
1571 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1573 if (!ops
->get_eeprom
|| !ops
->get_eeprom_len
||
1574 !ops
->get_eeprom_len(dev
))
1577 return ethtool_get_any_eeprom(dev
, useraddr
, ops
->get_eeprom
,
1578 ops
->get_eeprom_len(dev
));
1581 static int ethtool_set_eeprom(struct net_device
*dev
, void __user
*useraddr
)
1583 struct ethtool_eeprom eeprom
;
1584 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1585 void __user
*userbuf
= useraddr
+ sizeof(eeprom
);
1586 u32 bytes_remaining
;
1590 if (!ops
->set_eeprom
|| !ops
->get_eeprom_len
||
1591 !ops
->get_eeprom_len(dev
))
1594 if (copy_from_user(&eeprom
, useraddr
, sizeof(eeprom
)))
1597 /* Check for wrap and zero */
1598 if (eeprom
.offset
+ eeprom
.len
<= eeprom
.offset
)
1601 /* Check for exceeding total eeprom len */
1602 if (eeprom
.offset
+ eeprom
.len
> ops
->get_eeprom_len(dev
))
1605 data
= kmalloc(PAGE_SIZE
, GFP_USER
);
1609 bytes_remaining
= eeprom
.len
;
1610 while (bytes_remaining
> 0) {
1611 eeprom
.len
= min(bytes_remaining
, (u32
)PAGE_SIZE
);
1613 if (copy_from_user(data
, userbuf
, eeprom
.len
)) {
1617 ret
= ops
->set_eeprom(dev
, &eeprom
, data
);
1620 userbuf
+= eeprom
.len
;
1621 eeprom
.offset
+= eeprom
.len
;
1622 bytes_remaining
-= eeprom
.len
;
1629 static noinline_for_stack
int ethtool_get_coalesce(struct net_device
*dev
,
1630 void __user
*useraddr
)
1632 struct ethtool_coalesce coalesce
= { .cmd
= ETHTOOL_GCOALESCE
};
1634 if (!dev
->ethtool_ops
->get_coalesce
)
1637 dev
->ethtool_ops
->get_coalesce(dev
, &coalesce
);
1639 if (copy_to_user(useraddr
, &coalesce
, sizeof(coalesce
)))
1644 static noinline_for_stack
int ethtool_set_coalesce(struct net_device
*dev
,
1645 void __user
*useraddr
)
1647 struct ethtool_coalesce coalesce
;
1649 if (!dev
->ethtool_ops
->set_coalesce
)
1652 if (copy_from_user(&coalesce
, useraddr
, sizeof(coalesce
)))
1655 return dev
->ethtool_ops
->set_coalesce(dev
, &coalesce
);
1658 static int ethtool_get_ringparam(struct net_device
*dev
, void __user
*useraddr
)
1660 struct ethtool_ringparam ringparam
= { .cmd
= ETHTOOL_GRINGPARAM
};
1662 if (!dev
->ethtool_ops
->get_ringparam
)
1665 dev
->ethtool_ops
->get_ringparam(dev
, &ringparam
);
1667 if (copy_to_user(useraddr
, &ringparam
, sizeof(ringparam
)))
1672 static int ethtool_set_ringparam(struct net_device
*dev
, void __user
*useraddr
)
1674 struct ethtool_ringparam ringparam
;
1676 if (!dev
->ethtool_ops
->set_ringparam
)
1679 if (copy_from_user(&ringparam
, useraddr
, sizeof(ringparam
)))
1682 return dev
->ethtool_ops
->set_ringparam(dev
, &ringparam
);
1685 static noinline_for_stack
int ethtool_get_channels(struct net_device
*dev
,
1686 void __user
*useraddr
)
1688 struct ethtool_channels channels
= { .cmd
= ETHTOOL_GCHANNELS
};
1690 if (!dev
->ethtool_ops
->get_channels
)
1693 dev
->ethtool_ops
->get_channels(dev
, &channels
);
1695 if (copy_to_user(useraddr
, &channels
, sizeof(channels
)))
1700 static noinline_for_stack
int ethtool_set_channels(struct net_device
*dev
,
1701 void __user
*useraddr
)
1703 struct ethtool_channels channels
, max
;
1704 u32 max_rx_in_use
= 0;
1706 if (!dev
->ethtool_ops
->set_channels
|| !dev
->ethtool_ops
->get_channels
)
1709 if (copy_from_user(&channels
, useraddr
, sizeof(channels
)))
1712 dev
->ethtool_ops
->get_channels(dev
, &max
);
1714 /* ensure new counts are within the maximums */
1715 if ((channels
.rx_count
> max
.max_rx
) ||
1716 (channels
.tx_count
> max
.max_tx
) ||
1717 (channels
.combined_count
> max
.max_combined
) ||
1718 (channels
.other_count
> max
.max_other
))
1721 /* ensure the new Rx count fits within the configured Rx flow
1722 * indirection table settings */
1723 if (netif_is_rxfh_configured(dev
) &&
1724 !ethtool_get_max_rxfh_channel(dev
, &max_rx_in_use
) &&
1725 (channels
.combined_count
+ channels
.rx_count
) <= max_rx_in_use
)
1728 return dev
->ethtool_ops
->set_channels(dev
, &channels
);
1731 static int ethtool_get_pauseparam(struct net_device
*dev
, void __user
*useraddr
)
1733 struct ethtool_pauseparam pauseparam
= { ETHTOOL_GPAUSEPARAM
};
1735 if (!dev
->ethtool_ops
->get_pauseparam
)
1738 dev
->ethtool_ops
->get_pauseparam(dev
, &pauseparam
);
1740 if (copy_to_user(useraddr
, &pauseparam
, sizeof(pauseparam
)))
1745 static int ethtool_set_pauseparam(struct net_device
*dev
, void __user
*useraddr
)
1747 struct ethtool_pauseparam pauseparam
;
1749 if (!dev
->ethtool_ops
->set_pauseparam
)
1752 if (copy_from_user(&pauseparam
, useraddr
, sizeof(pauseparam
)))
1755 return dev
->ethtool_ops
->set_pauseparam(dev
, &pauseparam
);
1758 static int ethtool_self_test(struct net_device
*dev
, char __user
*useraddr
)
1760 struct ethtool_test test
;
1761 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1765 if (!ops
->self_test
|| !ops
->get_sset_count
)
1768 test_len
= ops
->get_sset_count(dev
, ETH_SS_TEST
);
1771 WARN_ON(test_len
== 0);
1773 if (copy_from_user(&test
, useraddr
, sizeof(test
)))
1776 test
.len
= test_len
;
1777 data
= kmalloc(test_len
* sizeof(u64
), GFP_USER
);
1781 ops
->self_test(dev
, &test
, data
);
1784 if (copy_to_user(useraddr
, &test
, sizeof(test
)))
1786 useraddr
+= sizeof(test
);
1787 if (copy_to_user(useraddr
, data
, test
.len
* sizeof(u64
)))
1796 static int ethtool_get_strings(struct net_device
*dev
, void __user
*useraddr
)
1798 struct ethtool_gstrings gstrings
;
1802 if (copy_from_user(&gstrings
, useraddr
, sizeof(gstrings
)))
1805 ret
= __ethtool_get_sset_count(dev
, gstrings
.string_set
);
1811 data
= kcalloc(gstrings
.len
, ETH_GSTRING_LEN
, GFP_USER
);
1815 __ethtool_get_strings(dev
, gstrings
.string_set
, data
);
1818 if (copy_to_user(useraddr
, &gstrings
, sizeof(gstrings
)))
1820 useraddr
+= sizeof(gstrings
);
1821 if (copy_to_user(useraddr
, data
, gstrings
.len
* ETH_GSTRING_LEN
))
1830 static int ethtool_phys_id(struct net_device
*dev
, void __user
*useraddr
)
1832 struct ethtool_value id
;
1834 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1837 if (!ops
->set_phys_id
)
1843 if (copy_from_user(&id
, useraddr
, sizeof(id
)))
1846 rc
= ops
->set_phys_id(dev
, ETHTOOL_ID_ACTIVE
);
1850 /* Drop the RTNL lock while waiting, but prevent reentry or
1851 * removal of the device.
1858 /* Driver will handle this itself */
1859 schedule_timeout_interruptible(
1860 id
.data
? (id
.data
* HZ
) : MAX_SCHEDULE_TIMEOUT
);
1862 /* Driver expects to be called at twice the frequency in rc */
1863 int n
= rc
* 2, i
, interval
= HZ
/ n
;
1865 /* Count down seconds */
1867 /* Count down iterations per second */
1871 rc
= ops
->set_phys_id(dev
,
1872 (i
& 1) ? ETHTOOL_ID_OFF
: ETHTOOL_ID_ON
);
1876 schedule_timeout_interruptible(interval
);
1877 } while (!signal_pending(current
) && --i
!= 0);
1878 } while (!signal_pending(current
) &&
1879 (id
.data
== 0 || --id
.data
!= 0));
1886 (void) ops
->set_phys_id(dev
, ETHTOOL_ID_INACTIVE
);
1890 static int ethtool_get_stats(struct net_device
*dev
, void __user
*useraddr
)
1892 struct ethtool_stats stats
;
1893 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
1897 if (!ops
->get_ethtool_stats
|| !ops
->get_sset_count
)
1900 n_stats
= ops
->get_sset_count(dev
, ETH_SS_STATS
);
1903 WARN_ON(n_stats
== 0);
1905 if (copy_from_user(&stats
, useraddr
, sizeof(stats
)))
1908 stats
.n_stats
= n_stats
;
1909 data
= kmalloc(n_stats
* sizeof(u64
), GFP_USER
);
1913 ops
->get_ethtool_stats(dev
, &stats
, data
);
1916 if (copy_to_user(useraddr
, &stats
, sizeof(stats
)))
1918 useraddr
+= sizeof(stats
);
1919 if (copy_to_user(useraddr
, data
, stats
.n_stats
* sizeof(u64
)))
1928 static int ethtool_get_phy_stats(struct net_device
*dev
, void __user
*useraddr
)
1930 struct ethtool_stats stats
;
1931 struct phy_device
*phydev
= dev
->phydev
;
1938 n_stats
= phy_get_sset_count(phydev
);
1942 WARN_ON(n_stats
== 0);
1944 if (copy_from_user(&stats
, useraddr
, sizeof(stats
)))
1947 stats
.n_stats
= n_stats
;
1948 data
= kmalloc_array(n_stats
, sizeof(u64
), GFP_USER
);
1952 mutex_lock(&phydev
->lock
);
1953 phydev
->drv
->get_stats(phydev
, &stats
, data
);
1954 mutex_unlock(&phydev
->lock
);
1957 if (copy_to_user(useraddr
, &stats
, sizeof(stats
)))
1959 useraddr
+= sizeof(stats
);
1960 if (copy_to_user(useraddr
, data
, stats
.n_stats
* sizeof(u64
)))
1969 static int ethtool_get_perm_addr(struct net_device
*dev
, void __user
*useraddr
)
1971 struct ethtool_perm_addr epaddr
;
1973 if (copy_from_user(&epaddr
, useraddr
, sizeof(epaddr
)))
1976 if (epaddr
.size
< dev
->addr_len
)
1978 epaddr
.size
= dev
->addr_len
;
1980 if (copy_to_user(useraddr
, &epaddr
, sizeof(epaddr
)))
1982 useraddr
+= sizeof(epaddr
);
1983 if (copy_to_user(useraddr
, dev
->perm_addr
, epaddr
.size
))
1988 static int ethtool_get_value(struct net_device
*dev
, char __user
*useraddr
,
1989 u32 cmd
, u32 (*actor
)(struct net_device
*))
1991 struct ethtool_value edata
= { .cmd
= cmd
};
1996 edata
.data
= actor(dev
);
1998 if (copy_to_user(useraddr
, &edata
, sizeof(edata
)))
2003 static int ethtool_set_value_void(struct net_device
*dev
, char __user
*useraddr
,
2004 void (*actor
)(struct net_device
*, u32
))
2006 struct ethtool_value edata
;
2011 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
2014 actor(dev
, edata
.data
);
2018 static int ethtool_set_value(struct net_device
*dev
, char __user
*useraddr
,
2019 int (*actor
)(struct net_device
*, u32
))
2021 struct ethtool_value edata
;
2026 if (copy_from_user(&edata
, useraddr
, sizeof(edata
)))
2029 return actor(dev
, edata
.data
);
2032 static noinline_for_stack
int ethtool_flash_device(struct net_device
*dev
,
2033 char __user
*useraddr
)
2035 struct ethtool_flash efl
;
2037 if (copy_from_user(&efl
, useraddr
, sizeof(efl
)))
2040 if (!dev
->ethtool_ops
->flash_device
)
2043 efl
.data
[ETHTOOL_FLASH_MAX_FILENAME
- 1] = 0;
2045 return dev
->ethtool_ops
->flash_device(dev
, &efl
);
2048 static int ethtool_set_dump(struct net_device
*dev
,
2049 void __user
*useraddr
)
2051 struct ethtool_dump dump
;
2053 if (!dev
->ethtool_ops
->set_dump
)
2056 if (copy_from_user(&dump
, useraddr
, sizeof(dump
)))
2059 return dev
->ethtool_ops
->set_dump(dev
, &dump
);
2062 static int ethtool_get_dump_flag(struct net_device
*dev
,
2063 void __user
*useraddr
)
2066 struct ethtool_dump dump
;
2067 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2069 if (!ops
->get_dump_flag
)
2072 if (copy_from_user(&dump
, useraddr
, sizeof(dump
)))
2075 ret
= ops
->get_dump_flag(dev
, &dump
);
2079 if (copy_to_user(useraddr
, &dump
, sizeof(dump
)))
2084 static int ethtool_get_dump_data(struct net_device
*dev
,
2085 void __user
*useraddr
)
2089 struct ethtool_dump dump
, tmp
;
2090 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2093 if (!ops
->get_dump_data
|| !ops
->get_dump_flag
)
2096 if (copy_from_user(&dump
, useraddr
, sizeof(dump
)))
2099 memset(&tmp
, 0, sizeof(tmp
));
2100 tmp
.cmd
= ETHTOOL_GET_DUMP_FLAG
;
2101 ret
= ops
->get_dump_flag(dev
, &tmp
);
2105 len
= min(tmp
.len
, dump
.len
);
2109 /* Don't ever let the driver think there's more space available
2110 * than it requested with .get_dump_flag().
2114 /* Always allocate enough space to hold the whole thing so that the
2115 * driver does not need to check the length and bother with partial
2118 data
= vzalloc(tmp
.len
);
2121 ret
= ops
->get_dump_data(dev
, &dump
, data
);
2125 /* There are two sane possibilities:
2126 * 1. The driver's .get_dump_data() does not touch dump.len.
2127 * 2. Or it may set dump.len to how much it really writes, which
2128 * should be tmp.len (or len if it can do a partial dump).
2129 * In any case respond to userspace with the actual length of data
2132 WARN_ON(dump
.len
!= len
&& dump
.len
!= tmp
.len
);
2135 if (copy_to_user(useraddr
, &dump
, sizeof(dump
))) {
2139 useraddr
+= offsetof(struct ethtool_dump
, data
);
2140 if (copy_to_user(useraddr
, data
, len
))
2147 static int ethtool_get_ts_info(struct net_device
*dev
, void __user
*useraddr
)
2150 struct ethtool_ts_info info
;
2151 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2152 struct phy_device
*phydev
= dev
->phydev
;
2154 memset(&info
, 0, sizeof(info
));
2155 info
.cmd
= ETHTOOL_GET_TS_INFO
;
2157 if (phydev
&& phydev
->drv
&& phydev
->drv
->ts_info
) {
2158 err
= phydev
->drv
->ts_info(phydev
, &info
);
2159 } else if (ops
->get_ts_info
) {
2160 err
= ops
->get_ts_info(dev
, &info
);
2162 info
.so_timestamping
=
2163 SOF_TIMESTAMPING_RX_SOFTWARE
|
2164 SOF_TIMESTAMPING_SOFTWARE
;
2165 info
.phc_index
= -1;
2171 if (copy_to_user(useraddr
, &info
, sizeof(info
)))
2177 static int __ethtool_get_module_info(struct net_device
*dev
,
2178 struct ethtool_modinfo
*modinfo
)
2180 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2181 struct phy_device
*phydev
= dev
->phydev
;
2183 if (phydev
&& phydev
->drv
&& phydev
->drv
->module_info
)
2184 return phydev
->drv
->module_info(phydev
, modinfo
);
2186 if (ops
->get_module_info
)
2187 return ops
->get_module_info(dev
, modinfo
);
2192 static int ethtool_get_module_info(struct net_device
*dev
,
2193 void __user
*useraddr
)
2196 struct ethtool_modinfo modinfo
;
2198 if (copy_from_user(&modinfo
, useraddr
, sizeof(modinfo
)))
2201 ret
= __ethtool_get_module_info(dev
, &modinfo
);
2205 if (copy_to_user(useraddr
, &modinfo
, sizeof(modinfo
)))
2211 static int __ethtool_get_module_eeprom(struct net_device
*dev
,
2212 struct ethtool_eeprom
*ee
, u8
*data
)
2214 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2215 struct phy_device
*phydev
= dev
->phydev
;
2217 if (phydev
&& phydev
->drv
&& phydev
->drv
->module_eeprom
)
2218 return phydev
->drv
->module_eeprom(phydev
, ee
, data
);
2220 if (ops
->get_module_eeprom
)
2221 return ops
->get_module_eeprom(dev
, ee
, data
);
2226 static int ethtool_get_module_eeprom(struct net_device
*dev
,
2227 void __user
*useraddr
)
2230 struct ethtool_modinfo modinfo
;
2232 ret
= __ethtool_get_module_info(dev
, &modinfo
);
2236 return ethtool_get_any_eeprom(dev
, useraddr
,
2237 __ethtool_get_module_eeprom
,
2238 modinfo
.eeprom_len
);
2241 static int ethtool_tunable_valid(const struct ethtool_tunable
*tuna
)
2244 case ETHTOOL_RX_COPYBREAK
:
2245 case ETHTOOL_TX_COPYBREAK
:
2246 if (tuna
->len
!= sizeof(u32
) ||
2247 tuna
->type_id
!= ETHTOOL_TUNABLE_U32
)
2257 static int ethtool_get_tunable(struct net_device
*dev
, void __user
*useraddr
)
2260 struct ethtool_tunable tuna
;
2261 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2264 if (!ops
->get_tunable
)
2266 if (copy_from_user(&tuna
, useraddr
, sizeof(tuna
)))
2268 ret
= ethtool_tunable_valid(&tuna
);
2271 data
= kmalloc(tuna
.len
, GFP_USER
);
2274 ret
= ops
->get_tunable(dev
, &tuna
, data
);
2277 useraddr
+= sizeof(tuna
);
2279 if (copy_to_user(useraddr
, data
, tuna
.len
))
2288 static int ethtool_set_tunable(struct net_device
*dev
, void __user
*useraddr
)
2291 struct ethtool_tunable tuna
;
2292 const struct ethtool_ops
*ops
= dev
->ethtool_ops
;
2295 if (!ops
->set_tunable
)
2297 if (copy_from_user(&tuna
, useraddr
, sizeof(tuna
)))
2299 ret
= ethtool_tunable_valid(&tuna
);
2302 data
= kmalloc(tuna
.len
, GFP_USER
);
2305 useraddr
+= sizeof(tuna
);
2307 if (copy_from_user(data
, useraddr
, tuna
.len
))
2309 ret
= ops
->set_tunable(dev
, &tuna
, data
);
2316 static int ethtool_get_per_queue_coalesce(struct net_device
*dev
,
2317 void __user
*useraddr
,
2318 struct ethtool_per_queue_op
*per_queue_opt
)
2322 DECLARE_BITMAP(queue_mask
, MAX_NUM_QUEUE
);
2324 if (!dev
->ethtool_ops
->get_per_queue_coalesce
)
2327 useraddr
+= sizeof(*per_queue_opt
);
2329 bitmap_from_u32array(queue_mask
,
2331 per_queue_opt
->queue_mask
,
2332 DIV_ROUND_UP(MAX_NUM_QUEUE
, 32));
2334 for_each_set_bit(bit
, queue_mask
, MAX_NUM_QUEUE
) {
2335 struct ethtool_coalesce coalesce
= { .cmd
= ETHTOOL_GCOALESCE
};
2337 ret
= dev
->ethtool_ops
->get_per_queue_coalesce(dev
, bit
, &coalesce
);
2340 if (copy_to_user(useraddr
, &coalesce
, sizeof(coalesce
)))
2342 useraddr
+= sizeof(coalesce
);
2348 static int ethtool_set_per_queue_coalesce(struct net_device
*dev
,
2349 void __user
*useraddr
,
2350 struct ethtool_per_queue_op
*per_queue_opt
)
2355 struct ethtool_coalesce
*backup
= NULL
, *tmp
= NULL
;
2356 DECLARE_BITMAP(queue_mask
, MAX_NUM_QUEUE
);
2358 if ((!dev
->ethtool_ops
->set_per_queue_coalesce
) ||
2359 (!dev
->ethtool_ops
->get_per_queue_coalesce
))
2362 useraddr
+= sizeof(*per_queue_opt
);
2364 bitmap_from_u32array(queue_mask
,
2366 per_queue_opt
->queue_mask
,
2367 DIV_ROUND_UP(MAX_NUM_QUEUE
, 32));
2368 n_queue
= bitmap_weight(queue_mask
, MAX_NUM_QUEUE
);
2369 tmp
= backup
= kmalloc_array(n_queue
, sizeof(*backup
), GFP_KERNEL
);
2373 for_each_set_bit(bit
, queue_mask
, MAX_NUM_QUEUE
) {
2374 struct ethtool_coalesce coalesce
;
2376 ret
= dev
->ethtool_ops
->get_per_queue_coalesce(dev
, bit
, tmp
);
2382 if (copy_from_user(&coalesce
, useraddr
, sizeof(coalesce
))) {
2387 ret
= dev
->ethtool_ops
->set_per_queue_coalesce(dev
, bit
, &coalesce
);
2391 useraddr
+= sizeof(coalesce
);
2397 for_each_set_bit(i
, queue_mask
, bit
) {
2398 dev
->ethtool_ops
->set_per_queue_coalesce(dev
, i
, tmp
);
2407 static int ethtool_set_per_queue(struct net_device
*dev
, void __user
*useraddr
)
2409 struct ethtool_per_queue_op per_queue_opt
;
2411 if (copy_from_user(&per_queue_opt
, useraddr
, sizeof(per_queue_opt
)))
2414 switch (per_queue_opt
.sub_command
) {
2415 case ETHTOOL_GCOALESCE
:
2416 return ethtool_get_per_queue_coalesce(dev
, useraddr
, &per_queue_opt
);
2417 case ETHTOOL_SCOALESCE
:
2418 return ethtool_set_per_queue_coalesce(dev
, useraddr
, &per_queue_opt
);
2424 /* The main entry point in this file. Called from net/core/dev_ioctl.c */
2426 int dev_ethtool(struct net
*net
, struct ifreq
*ifr
)
2428 struct net_device
*dev
= __dev_get_by_name(net
, ifr
->ifr_name
);
2429 void __user
*useraddr
= ifr
->ifr_data
;
2430 u32 ethcmd
, sub_cmd
;
2432 netdev_features_t old_features
;
2434 if (!dev
|| !netif_device_present(dev
))
2437 if (copy_from_user(ðcmd
, useraddr
, sizeof(ethcmd
)))
2440 if (ethcmd
== ETHTOOL_PERQUEUE
) {
2441 if (copy_from_user(&sub_cmd
, useraddr
+ sizeof(ethcmd
), sizeof(sub_cmd
)))
2446 /* Allow some commands to be done by anyone */
2449 case ETHTOOL_GDRVINFO
:
2450 case ETHTOOL_GMSGLVL
:
2452 case ETHTOOL_GCOALESCE
:
2453 case ETHTOOL_GRINGPARAM
:
2454 case ETHTOOL_GPAUSEPARAM
:
2455 case ETHTOOL_GRXCSUM
:
2456 case ETHTOOL_GTXCSUM
:
2458 case ETHTOOL_GSSET_INFO
:
2459 case ETHTOOL_GSTRINGS
:
2460 case ETHTOOL_GSTATS
:
2461 case ETHTOOL_GPHYSTATS
:
2463 case ETHTOOL_GPERMADDR
:
2467 case ETHTOOL_GFLAGS
:
2468 case ETHTOOL_GPFLAGS
:
2470 case ETHTOOL_GRXRINGS
:
2471 case ETHTOOL_GRXCLSRLCNT
:
2472 case ETHTOOL_GRXCLSRULE
:
2473 case ETHTOOL_GRXCLSRLALL
:
2474 case ETHTOOL_GRXFHINDIR
:
2476 case ETHTOOL_GFEATURES
:
2477 case ETHTOOL_GCHANNELS
:
2478 case ETHTOOL_GET_TS_INFO
:
2480 case ETHTOOL_GTUNABLE
:
2483 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
2487 if (dev
->ethtool_ops
->begin
) {
2488 rc
= dev
->ethtool_ops
->begin(dev
);
2492 old_features
= dev
->features
;
2496 rc
= ethtool_get_settings(dev
, useraddr
);
2499 rc
= ethtool_set_settings(dev
, useraddr
);
2501 case ETHTOOL_GDRVINFO
:
2502 rc
= ethtool_get_drvinfo(dev
, useraddr
);
2505 rc
= ethtool_get_regs(dev
, useraddr
);
2508 rc
= ethtool_get_wol(dev
, useraddr
);
2511 rc
= ethtool_set_wol(dev
, useraddr
);
2513 case ETHTOOL_GMSGLVL
:
2514 rc
= ethtool_get_value(dev
, useraddr
, ethcmd
,
2515 dev
->ethtool_ops
->get_msglevel
);
2517 case ETHTOOL_SMSGLVL
:
2518 rc
= ethtool_set_value_void(dev
, useraddr
,
2519 dev
->ethtool_ops
->set_msglevel
);
2522 rc
= ethtool_get_eee(dev
, useraddr
);
2525 rc
= ethtool_set_eee(dev
, useraddr
);
2527 case ETHTOOL_NWAY_RST
:
2528 rc
= ethtool_nway_reset(dev
);
2531 rc
= ethtool_get_link(dev
, useraddr
);
2533 case ETHTOOL_GEEPROM
:
2534 rc
= ethtool_get_eeprom(dev
, useraddr
);
2536 case ETHTOOL_SEEPROM
:
2537 rc
= ethtool_set_eeprom(dev
, useraddr
);
2539 case ETHTOOL_GCOALESCE
:
2540 rc
= ethtool_get_coalesce(dev
, useraddr
);
2542 case ETHTOOL_SCOALESCE
:
2543 rc
= ethtool_set_coalesce(dev
, useraddr
);
2545 case ETHTOOL_GRINGPARAM
:
2546 rc
= ethtool_get_ringparam(dev
, useraddr
);
2548 case ETHTOOL_SRINGPARAM
:
2549 rc
= ethtool_set_ringparam(dev
, useraddr
);
2551 case ETHTOOL_GPAUSEPARAM
:
2552 rc
= ethtool_get_pauseparam(dev
, useraddr
);
2554 case ETHTOOL_SPAUSEPARAM
:
2555 rc
= ethtool_set_pauseparam(dev
, useraddr
);
2558 rc
= ethtool_self_test(dev
, useraddr
);
2560 case ETHTOOL_GSTRINGS
:
2561 rc
= ethtool_get_strings(dev
, useraddr
);
2563 case ETHTOOL_PHYS_ID
:
2564 rc
= ethtool_phys_id(dev
, useraddr
);
2566 case ETHTOOL_GSTATS
:
2567 rc
= ethtool_get_stats(dev
, useraddr
);
2569 case ETHTOOL_GPERMADDR
:
2570 rc
= ethtool_get_perm_addr(dev
, useraddr
);
2572 case ETHTOOL_GFLAGS
:
2573 rc
= ethtool_get_value(dev
, useraddr
, ethcmd
,
2574 __ethtool_get_flags
);
2576 case ETHTOOL_SFLAGS
:
2577 rc
= ethtool_set_value(dev
, useraddr
, __ethtool_set_flags
);
2579 case ETHTOOL_GPFLAGS
:
2580 rc
= ethtool_get_value(dev
, useraddr
, ethcmd
,
2581 dev
->ethtool_ops
->get_priv_flags
);
2583 case ETHTOOL_SPFLAGS
:
2584 rc
= ethtool_set_value(dev
, useraddr
,
2585 dev
->ethtool_ops
->set_priv_flags
);
2588 case ETHTOOL_GRXRINGS
:
2589 case ETHTOOL_GRXCLSRLCNT
:
2590 case ETHTOOL_GRXCLSRULE
:
2591 case ETHTOOL_GRXCLSRLALL
:
2592 rc
= ethtool_get_rxnfc(dev
, ethcmd
, useraddr
);
2595 case ETHTOOL_SRXCLSRLDEL
:
2596 case ETHTOOL_SRXCLSRLINS
:
2597 rc
= ethtool_set_rxnfc(dev
, ethcmd
, useraddr
);
2599 case ETHTOOL_FLASHDEV
:
2600 rc
= ethtool_flash_device(dev
, useraddr
);
2603 rc
= ethtool_reset(dev
, useraddr
);
2605 case ETHTOOL_GSSET_INFO
:
2606 rc
= ethtool_get_sset_info(dev
, useraddr
);
2608 case ETHTOOL_GRXFHINDIR
:
2609 rc
= ethtool_get_rxfh_indir(dev
, useraddr
);
2611 case ETHTOOL_SRXFHINDIR
:
2612 rc
= ethtool_set_rxfh_indir(dev
, useraddr
);
2615 rc
= ethtool_get_rxfh(dev
, useraddr
);
2618 rc
= ethtool_set_rxfh(dev
, useraddr
);
2620 case ETHTOOL_GFEATURES
:
2621 rc
= ethtool_get_features(dev
, useraddr
);
2623 case ETHTOOL_SFEATURES
:
2624 rc
= ethtool_set_features(dev
, useraddr
);
2626 case ETHTOOL_GTXCSUM
:
2627 case ETHTOOL_GRXCSUM
:
2633 rc
= ethtool_get_one_feature(dev
, useraddr
, ethcmd
);
2635 case ETHTOOL_STXCSUM
:
2636 case ETHTOOL_SRXCSUM
:
2642 rc
= ethtool_set_one_feature(dev
, useraddr
, ethcmd
);
2644 case ETHTOOL_GCHANNELS
:
2645 rc
= ethtool_get_channels(dev
, useraddr
);
2647 case ETHTOOL_SCHANNELS
:
2648 rc
= ethtool_set_channels(dev
, useraddr
);
2650 case ETHTOOL_SET_DUMP
:
2651 rc
= ethtool_set_dump(dev
, useraddr
);
2653 case ETHTOOL_GET_DUMP_FLAG
:
2654 rc
= ethtool_get_dump_flag(dev
, useraddr
);
2656 case ETHTOOL_GET_DUMP_DATA
:
2657 rc
= ethtool_get_dump_data(dev
, useraddr
);
2659 case ETHTOOL_GET_TS_INFO
:
2660 rc
= ethtool_get_ts_info(dev
, useraddr
);
2662 case ETHTOOL_GMODULEINFO
:
2663 rc
= ethtool_get_module_info(dev
, useraddr
);
2665 case ETHTOOL_GMODULEEEPROM
:
2666 rc
= ethtool_get_module_eeprom(dev
, useraddr
);
2668 case ETHTOOL_GTUNABLE
:
2669 rc
= ethtool_get_tunable(dev
, useraddr
);
2671 case ETHTOOL_STUNABLE
:
2672 rc
= ethtool_set_tunable(dev
, useraddr
);
2674 case ETHTOOL_GPHYSTATS
:
2675 rc
= ethtool_get_phy_stats(dev
, useraddr
);
2677 case ETHTOOL_PERQUEUE
:
2678 rc
= ethtool_set_per_queue(dev
, useraddr
);
2680 case ETHTOOL_GLINKSETTINGS
:
2681 rc
= ethtool_get_link_ksettings(dev
, useraddr
);
2683 case ETHTOOL_SLINKSETTINGS
:
2684 rc
= ethtool_set_link_ksettings(dev
, useraddr
);
2690 if (dev
->ethtool_ops
->complete
)
2691 dev
->ethtool_ops
->complete(dev
);
2693 if (old_features
!= dev
->features
)
2694 netdev_features_change(dev
);