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",
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_BUSY_POLL_BIT] = "busy-poll",
106 [NETIF_F_HW_TC_BIT] = "hw-tc-offload",
110 rss_hash_func_strings[ETH_RSS_HASH_FUNCS_COUNT][ETH_GSTRING_LEN] = {
111 [ETH_RSS_HASH_TOP_BIT] = "toeplitz",
112 [ETH_RSS_HASH_XOR_BIT] = "xor",
116 tunable_strings[__ETHTOOL_TUNABLE_COUNT][ETH_GSTRING_LEN] = {
117 [ETHTOOL_ID_UNSPEC] = "Unspec",
118 [ETHTOOL_RX_COPYBREAK] = "rx-copybreak",
119 [ETHTOOL_TX_COPYBREAK] = "tx-copybreak",
122 static int ethtool_get_features(struct net_device *dev, void __user *useraddr)
124 struct ethtool_gfeatures cmd = {
125 .cmd = ETHTOOL_GFEATURES,
126 .size = ETHTOOL_DEV_FEATURE_WORDS,
128 struct ethtool_get_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
129 u32 __user *sizeaddr;
133 /* in case feature bits run out again */
134 BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS * sizeof(u32) > sizeof(netdev_features_t));
136 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
137 features[i].available = (u32)(dev->hw_features >> (32 * i));
138 features[i].requested = (u32)(dev->wanted_features >> (32 * i));
139 features[i].active = (u32)(dev->features >> (32 * i));
140 features[i].never_changed =
141 (u32)(NETIF_F_NEVER_CHANGE >> (32 * i));
144 sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size);
145 if (get_user(copy_size, sizeaddr))
148 if (copy_size > ETHTOOL_DEV_FEATURE_WORDS)
149 copy_size = ETHTOOL_DEV_FEATURE_WORDS;
151 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
153 useraddr += sizeof(cmd);
154 if (copy_to_user(useraddr, features, copy_size * sizeof(*features)))
160 static int ethtool_set_features(struct net_device *dev, void __user *useraddr)
162 struct ethtool_sfeatures cmd;
163 struct ethtool_set_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
164 netdev_features_t wanted = 0, valid = 0;
167 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
169 useraddr += sizeof(cmd);
171 if (cmd.size != ETHTOOL_DEV_FEATURE_WORDS)
174 if (copy_from_user(features, useraddr, sizeof(features)))
177 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
178 valid |= (netdev_features_t)features[i].valid << (32 * i);
179 wanted |= (netdev_features_t)features[i].requested << (32 * i);
182 if (valid & ~NETIF_F_ETHTOOL_BITS)
185 if (valid & ~dev->hw_features) {
186 valid &= dev->hw_features;
187 ret |= ETHTOOL_F_UNSUPPORTED;
190 dev->wanted_features &= ~valid;
191 dev->wanted_features |= wanted & valid;
192 __netdev_update_features(dev);
194 if ((dev->wanted_features ^ dev->features) & valid)
195 ret |= ETHTOOL_F_WISH;
200 static int phy_get_sset_count(struct phy_device *phydev)
204 if (phydev->drv->get_sset_count &&
205 phydev->drv->get_strings &&
206 phydev->drv->get_stats) {
207 mutex_lock(&phydev->lock);
208 ret = phydev->drv->get_sset_count(phydev);
209 mutex_unlock(&phydev->lock);
217 static int __ethtool_get_sset_count(struct net_device *dev, int sset)
219 const struct ethtool_ops *ops = dev->ethtool_ops;
221 if (sset == ETH_SS_FEATURES)
222 return ARRAY_SIZE(netdev_features_strings);
224 if (sset == ETH_SS_RSS_HASH_FUNCS)
225 return ARRAY_SIZE(rss_hash_func_strings);
227 if (sset == ETH_SS_TUNABLES)
228 return ARRAY_SIZE(tunable_strings);
230 if (sset == ETH_SS_PHY_STATS) {
232 return phy_get_sset_count(dev->phydev);
237 if (ops->get_sset_count && ops->get_strings)
238 return ops->get_sset_count(dev, sset);
243 static void __ethtool_get_strings(struct net_device *dev,
244 u32 stringset, u8 *data)
246 const struct ethtool_ops *ops = dev->ethtool_ops;
248 if (stringset == ETH_SS_FEATURES)
249 memcpy(data, netdev_features_strings,
250 sizeof(netdev_features_strings));
251 else if (stringset == ETH_SS_RSS_HASH_FUNCS)
252 memcpy(data, rss_hash_func_strings,
253 sizeof(rss_hash_func_strings));
254 else if (stringset == ETH_SS_TUNABLES)
255 memcpy(data, tunable_strings, sizeof(tunable_strings));
256 else if (stringset == ETH_SS_PHY_STATS) {
257 struct phy_device *phydev = dev->phydev;
260 mutex_lock(&phydev->lock);
261 phydev->drv->get_strings(phydev, data);
262 mutex_unlock(&phydev->lock);
267 /* ops->get_strings is valid because checked earlier */
268 ops->get_strings(dev, stringset, data);
271 static netdev_features_t ethtool_get_feature_mask(u32 eth_cmd)
273 /* feature masks of legacy discrete ethtool ops */
276 case ETHTOOL_GTXCSUM:
277 case ETHTOOL_STXCSUM:
278 return NETIF_F_CSUM_MASK | NETIF_F_SCTP_CRC;
279 case ETHTOOL_GRXCSUM:
280 case ETHTOOL_SRXCSUM:
281 return NETIF_F_RXCSUM;
287 return NETIF_F_ALL_TSO;
302 static int ethtool_get_one_feature(struct net_device *dev,
303 char __user *useraddr, u32 ethcmd)
305 netdev_features_t mask = ethtool_get_feature_mask(ethcmd);
306 struct ethtool_value edata = {
308 .data = !!(dev->features & mask),
311 if (copy_to_user(useraddr, &edata, sizeof(edata)))
316 static int ethtool_set_one_feature(struct net_device *dev,
317 void __user *useraddr, u32 ethcmd)
319 struct ethtool_value edata;
320 netdev_features_t mask;
322 if (copy_from_user(&edata, useraddr, sizeof(edata)))
325 mask = ethtool_get_feature_mask(ethcmd);
326 mask &= dev->hw_features;
331 dev->wanted_features |= mask;
333 dev->wanted_features &= ~mask;
335 __netdev_update_features(dev);
340 #define ETH_ALL_FLAGS (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
341 ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
342 #define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
343 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
346 static u32 __ethtool_get_flags(struct net_device *dev)
350 if (dev->features & NETIF_F_LRO)
351 flags |= ETH_FLAG_LRO;
352 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
353 flags |= ETH_FLAG_RXVLAN;
354 if (dev->features & NETIF_F_HW_VLAN_CTAG_TX)
355 flags |= ETH_FLAG_TXVLAN;
356 if (dev->features & NETIF_F_NTUPLE)
357 flags |= ETH_FLAG_NTUPLE;
358 if (dev->features & NETIF_F_RXHASH)
359 flags |= ETH_FLAG_RXHASH;
364 static int __ethtool_set_flags(struct net_device *dev, u32 data)
366 netdev_features_t features = 0, changed;
368 if (data & ~ETH_ALL_FLAGS)
371 if (data & ETH_FLAG_LRO)
372 features |= NETIF_F_LRO;
373 if (data & ETH_FLAG_RXVLAN)
374 features |= NETIF_F_HW_VLAN_CTAG_RX;
375 if (data & ETH_FLAG_TXVLAN)
376 features |= NETIF_F_HW_VLAN_CTAG_TX;
377 if (data & ETH_FLAG_NTUPLE)
378 features |= NETIF_F_NTUPLE;
379 if (data & ETH_FLAG_RXHASH)
380 features |= NETIF_F_RXHASH;
382 /* allow changing only bits set in hw_features */
383 changed = (features ^ dev->features) & ETH_ALL_FEATURES;
384 if (changed & ~dev->hw_features)
385 return (changed & dev->hw_features) ? -EINVAL : -EOPNOTSUPP;
387 dev->wanted_features =
388 (dev->wanted_features & ~changed) | (features & changed);
390 __netdev_update_features(dev);
395 void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst,
398 bitmap_zero(dst, __ETHTOOL_LINK_MODE_MASK_NBITS);
401 EXPORT_SYMBOL(ethtool_convert_legacy_u32_to_link_mode);
403 /* return false if src had higher bits set. lower bits always updated. */
404 bool ethtool_convert_link_mode_to_legacy_u32(u32 *legacy_u32,
405 const unsigned long *src)
409 /* TODO: following test will soon always be true */
410 if (__ETHTOOL_LINK_MODE_MASK_NBITS > 32) {
411 __ETHTOOL_DECLARE_LINK_MODE_MASK(ext);
413 bitmap_zero(ext, __ETHTOOL_LINK_MODE_MASK_NBITS);
414 bitmap_fill(ext, 32);
415 bitmap_complement(ext, ext, __ETHTOOL_LINK_MODE_MASK_NBITS);
416 if (bitmap_intersects(ext, src,
417 __ETHTOOL_LINK_MODE_MASK_NBITS)) {
418 /* src mask goes beyond bit 31 */
422 *legacy_u32 = src[0];
425 EXPORT_SYMBOL(ethtool_convert_link_mode_to_legacy_u32);
427 /* return false if legacy contained non-0 deprecated fields
428 * transceiver/maxtxpkt/maxrxpkt. rest of ksettings always updated
431 convert_legacy_settings_to_link_ksettings(
432 struct ethtool_link_ksettings *link_ksettings,
433 const struct ethtool_cmd *legacy_settings)
437 memset(link_ksettings, 0, sizeof(*link_ksettings));
439 /* This is used to tell users that driver is still using these
440 * deprecated legacy fields, and they should not use
441 * %ETHTOOL_GLINKSETTINGS/%ETHTOOL_SLINKSETTINGS
443 if (legacy_settings->transceiver ||
444 legacy_settings->maxtxpkt ||
445 legacy_settings->maxrxpkt)
448 ethtool_convert_legacy_u32_to_link_mode(
449 link_ksettings->link_modes.supported,
450 legacy_settings->supported);
451 ethtool_convert_legacy_u32_to_link_mode(
452 link_ksettings->link_modes.advertising,
453 legacy_settings->advertising);
454 ethtool_convert_legacy_u32_to_link_mode(
455 link_ksettings->link_modes.lp_advertising,
456 legacy_settings->lp_advertising);
457 link_ksettings->base.speed
458 = ethtool_cmd_speed(legacy_settings);
459 link_ksettings->base.duplex
460 = legacy_settings->duplex;
461 link_ksettings->base.port
462 = legacy_settings->port;
463 link_ksettings->base.phy_address
464 = legacy_settings->phy_address;
465 link_ksettings->base.autoneg
466 = legacy_settings->autoneg;
467 link_ksettings->base.mdio_support
468 = legacy_settings->mdio_support;
469 link_ksettings->base.eth_tp_mdix
470 = legacy_settings->eth_tp_mdix;
471 link_ksettings->base.eth_tp_mdix_ctrl
472 = legacy_settings->eth_tp_mdix_ctrl;
476 /* return false if ksettings link modes had higher bits
477 * set. legacy_settings always updated (best effort)
480 convert_link_ksettings_to_legacy_settings(
481 struct ethtool_cmd *legacy_settings,
482 const struct ethtool_link_ksettings *link_ksettings)
486 memset(legacy_settings, 0, sizeof(*legacy_settings));
487 /* this also clears the deprecated fields in legacy structure:
493 retval &= ethtool_convert_link_mode_to_legacy_u32(
494 &legacy_settings->supported,
495 link_ksettings->link_modes.supported);
496 retval &= ethtool_convert_link_mode_to_legacy_u32(
497 &legacy_settings->advertising,
498 link_ksettings->link_modes.advertising);
499 retval &= ethtool_convert_link_mode_to_legacy_u32(
500 &legacy_settings->lp_advertising,
501 link_ksettings->link_modes.lp_advertising);
502 ethtool_cmd_speed_set(legacy_settings, link_ksettings->base.speed);
503 legacy_settings->duplex
504 = link_ksettings->base.duplex;
505 legacy_settings->port
506 = link_ksettings->base.port;
507 legacy_settings->phy_address
508 = link_ksettings->base.phy_address;
509 legacy_settings->autoneg
510 = link_ksettings->base.autoneg;
511 legacy_settings->mdio_support
512 = link_ksettings->base.mdio_support;
513 legacy_settings->eth_tp_mdix
514 = link_ksettings->base.eth_tp_mdix;
515 legacy_settings->eth_tp_mdix_ctrl
516 = link_ksettings->base.eth_tp_mdix_ctrl;
520 /* number of 32-bit words to store the user's link mode bitmaps */
521 #define __ETHTOOL_LINK_MODE_MASK_NU32 \
522 DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32)
524 /* layout of the struct passed from/to userland */
525 struct ethtool_link_usettings {
526 struct ethtool_link_settings base;
528 __u32 supported[__ETHTOOL_LINK_MODE_MASK_NU32];
529 __u32 advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
530 __u32 lp_advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
534 /* Internal kernel helper to query a device ethtool_link_settings.
536 * Backward compatibility note: for compatibility with legacy drivers
537 * that implement only the ethtool_cmd API, this has to work with both
538 * drivers implementing get_link_ksettings API and drivers
539 * implementing get_settings API. When drivers implement get_settings
540 * and report ethtool_cmd deprecated fields
541 * (transceiver/maxrxpkt/maxtxpkt), these fields are silently ignored
542 * because the resulting struct ethtool_link_settings does not report them.
544 int __ethtool_get_link_ksettings(struct net_device *dev,
545 struct ethtool_link_ksettings *link_ksettings)
548 struct ethtool_cmd cmd;
552 if (dev->ethtool_ops->get_link_ksettings) {
553 memset(link_ksettings, 0, sizeof(*link_ksettings));
554 return dev->ethtool_ops->get_link_ksettings(dev,
558 /* driver doesn't support %ethtool_link_ksettings API. revert to
559 * legacy %ethtool_cmd API, unless it's not supported either.
560 * TODO: remove when ethtool_ops::get_settings disappears internally
562 if (!dev->ethtool_ops->get_settings)
565 memset(&cmd, 0, sizeof(cmd));
566 cmd.cmd = ETHTOOL_GSET;
567 err = dev->ethtool_ops->get_settings(dev, &cmd);
571 /* we ignore deprecated fields transceiver/maxrxpkt/maxtxpkt
573 convert_legacy_settings_to_link_ksettings(link_ksettings, &cmd);
576 EXPORT_SYMBOL(__ethtool_get_link_ksettings);
578 /* convert ethtool_link_usettings in user space to a kernel internal
579 * ethtool_link_ksettings. return 0 on success, errno on error.
581 static int load_link_ksettings_from_user(struct ethtool_link_ksettings *to,
582 const void __user *from)
584 struct ethtool_link_usettings link_usettings;
586 if (copy_from_user(&link_usettings, from, sizeof(link_usettings)))
589 memcpy(&to->base, &link_usettings.base, sizeof(to->base));
590 bitmap_from_u32array(to->link_modes.supported,
591 __ETHTOOL_LINK_MODE_MASK_NBITS,
592 link_usettings.link_modes.supported,
593 __ETHTOOL_LINK_MODE_MASK_NU32);
594 bitmap_from_u32array(to->link_modes.advertising,
595 __ETHTOOL_LINK_MODE_MASK_NBITS,
596 link_usettings.link_modes.advertising,
597 __ETHTOOL_LINK_MODE_MASK_NU32);
598 bitmap_from_u32array(to->link_modes.lp_advertising,
599 __ETHTOOL_LINK_MODE_MASK_NBITS,
600 link_usettings.link_modes.lp_advertising,
601 __ETHTOOL_LINK_MODE_MASK_NU32);
606 /* convert a kernel internal ethtool_link_ksettings to
607 * ethtool_link_usettings in user space. return 0 on success, errno on
611 store_link_ksettings_for_user(void __user *to,
612 const struct ethtool_link_ksettings *from)
614 struct ethtool_link_usettings link_usettings;
616 memcpy(&link_usettings.base, &from->base, sizeof(link_usettings));
617 bitmap_to_u32array(link_usettings.link_modes.supported,
618 __ETHTOOL_LINK_MODE_MASK_NU32,
619 from->link_modes.supported,
620 __ETHTOOL_LINK_MODE_MASK_NBITS);
621 bitmap_to_u32array(link_usettings.link_modes.advertising,
622 __ETHTOOL_LINK_MODE_MASK_NU32,
623 from->link_modes.advertising,
624 __ETHTOOL_LINK_MODE_MASK_NBITS);
625 bitmap_to_u32array(link_usettings.link_modes.lp_advertising,
626 __ETHTOOL_LINK_MODE_MASK_NU32,
627 from->link_modes.lp_advertising,
628 __ETHTOOL_LINK_MODE_MASK_NBITS);
630 if (copy_to_user(to, &link_usettings, sizeof(link_usettings)))
636 /* Query device for its ethtool_link_settings.
638 * Backward compatibility note: this function must fail when driver
639 * does not implement ethtool::get_link_ksettings, even if legacy
640 * ethtool_ops::get_settings is implemented. This tells new versions
641 * of ethtool that they should use the legacy API %ETHTOOL_GSET for
642 * this driver, so that they can correctly access the ethtool_cmd
643 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
644 * implements ethtool_ops::get_settings anymore.
646 static int ethtool_get_link_ksettings(struct net_device *dev,
647 void __user *useraddr)
650 struct ethtool_link_ksettings link_ksettings;
654 if (!dev->ethtool_ops->get_link_ksettings)
657 /* handle bitmap nbits handshake */
658 if (copy_from_user(&link_ksettings.base, useraddr,
659 sizeof(link_ksettings.base)))
662 if (__ETHTOOL_LINK_MODE_MASK_NU32
663 != link_ksettings.base.link_mode_masks_nwords) {
664 /* wrong link mode nbits requested */
665 memset(&link_ksettings, 0, sizeof(link_ksettings));
666 link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
667 /* send back number of words required as negative val */
668 compiletime_assert(__ETHTOOL_LINK_MODE_MASK_NU32 <= S8_MAX,
669 "need too many bits for link modes!");
670 link_ksettings.base.link_mode_masks_nwords
671 = -((s8)__ETHTOOL_LINK_MODE_MASK_NU32);
673 /* copy the base fields back to user, not the link
676 if (copy_to_user(useraddr, &link_ksettings.base,
677 sizeof(link_ksettings.base)))
683 /* handshake successful: user/kernel agree on
684 * link_mode_masks_nwords
687 memset(&link_ksettings, 0, sizeof(link_ksettings));
688 err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
692 /* make sure we tell the right values to user */
693 link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
694 link_ksettings.base.link_mode_masks_nwords
695 = __ETHTOOL_LINK_MODE_MASK_NU32;
697 return store_link_ksettings_for_user(useraddr, &link_ksettings);
700 /* Update device ethtool_link_settings.
702 * Backward compatibility note: this function must fail when driver
703 * does not implement ethtool::set_link_ksettings, even if legacy
704 * ethtool_ops::set_settings is implemented. This tells new versions
705 * of ethtool that they should use the legacy API %ETHTOOL_SSET for
706 * this driver, so that they can correctly update the ethtool_cmd
707 * deprecated fields (transceiver/maxrxpkt/maxtxpkt), until no driver
708 * implements ethtool_ops::get_settings anymore.
710 static int ethtool_set_link_ksettings(struct net_device *dev,
711 void __user *useraddr)
714 struct ethtool_link_ksettings link_ksettings;
718 if (!dev->ethtool_ops->set_link_ksettings)
721 /* make sure nbits field has expected value */
722 if (copy_from_user(&link_ksettings.base, useraddr,
723 sizeof(link_ksettings.base)))
726 if (__ETHTOOL_LINK_MODE_MASK_NU32
727 != link_ksettings.base.link_mode_masks_nwords)
730 /* copy the whole structure, now that we know it has expected
733 err = load_link_ksettings_from_user(&link_ksettings, useraddr);
737 /* re-check nwords field, just in case */
738 if (__ETHTOOL_LINK_MODE_MASK_NU32
739 != link_ksettings.base.link_mode_masks_nwords)
742 return dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
746 warn_incomplete_ethtool_legacy_settings_conversion(const char *details)
748 char name[sizeof(current->comm)];
750 pr_info_once("warning: `%s' uses legacy ethtool link settings API, %s\n",
751 get_task_comm(name, current), details);
754 /* Query device for its ethtool_cmd settings.
756 * Backward compatibility note: for compatibility with legacy ethtool,
757 * this has to work with both drivers implementing get_link_ksettings
758 * API and drivers implementing get_settings API. When drivers
759 * implement get_link_ksettings and report higher link mode bits, a
760 * kernel warning is logged once (with name of 1st driver/device) to
761 * recommend user to upgrade ethtool, but the command is successful
762 * (only the lower link mode bits reported back to user).
764 static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
766 struct ethtool_cmd cmd;
770 if (dev->ethtool_ops->get_link_ksettings) {
771 /* First, use link_ksettings API if it is supported */
773 struct ethtool_link_ksettings link_ksettings;
775 memset(&link_ksettings, 0, sizeof(link_ksettings));
776 err = dev->ethtool_ops->get_link_ksettings(dev,
780 if (!convert_link_ksettings_to_legacy_settings(&cmd,
782 warn_incomplete_ethtool_legacy_settings_conversion(
783 "link modes are only partially reported");
785 /* send a sensible cmd tag back to user */
786 cmd.cmd = ETHTOOL_GSET;
788 /* driver doesn't support %ethtool_link_ksettings
789 * API. revert to legacy %ethtool_cmd API, unless it's
790 * not supported either.
794 if (!dev->ethtool_ops->get_settings)
797 memset(&cmd, 0, sizeof(cmd));
798 cmd.cmd = ETHTOOL_GSET;
799 err = dev->ethtool_ops->get_settings(dev, &cmd);
804 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
810 /* Update device link settings with given ethtool_cmd.
812 * Backward compatibility note: for compatibility with legacy ethtool,
813 * this has to work with both drivers implementing set_link_ksettings
814 * API and drivers implementing set_settings API. When drivers
815 * implement set_link_ksettings and user's request updates deprecated
816 * ethtool_cmd fields (transceiver/maxrxpkt/maxtxpkt), a kernel
817 * warning is logged once (with name of 1st driver/device) to
818 * recommend user to upgrade ethtool, and the request is rejected.
820 static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
822 struct ethtool_cmd cmd;
826 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
829 /* first, try new %ethtool_link_ksettings API. */
830 if (dev->ethtool_ops->set_link_ksettings) {
831 struct ethtool_link_ksettings link_ksettings;
833 if (!convert_legacy_settings_to_link_ksettings(&link_ksettings,
837 link_ksettings.base.cmd = ETHTOOL_SLINKSETTINGS;
838 link_ksettings.base.link_mode_masks_nwords
839 = __ETHTOOL_LINK_MODE_MASK_NU32;
840 return dev->ethtool_ops->set_link_ksettings(dev,
844 /* legacy %ethtool_cmd API */
846 /* TODO: return -EOPNOTSUPP when ethtool_ops::get_settings
847 * disappears internally
850 if (!dev->ethtool_ops->set_settings)
853 return dev->ethtool_ops->set_settings(dev, &cmd);
856 static noinline_for_stack int ethtool_get_drvinfo(struct net_device *dev,
857 void __user *useraddr)
859 struct ethtool_drvinfo info;
860 const struct ethtool_ops *ops = dev->ethtool_ops;
862 memset(&info, 0, sizeof(info));
863 info.cmd = ETHTOOL_GDRVINFO;
864 if (ops->get_drvinfo) {
865 ops->get_drvinfo(dev, &info);
866 } else if (dev->dev.parent && dev->dev.parent->driver) {
867 strlcpy(info.bus_info, dev_name(dev->dev.parent),
868 sizeof(info.bus_info));
869 strlcpy(info.driver, dev->dev.parent->driver->name,
870 sizeof(info.driver));
876 * this method of obtaining string set info is deprecated;
877 * Use ETHTOOL_GSSET_INFO instead.
879 if (ops->get_sset_count) {
882 rc = ops->get_sset_count(dev, ETH_SS_TEST);
884 info.testinfo_len = rc;
885 rc = ops->get_sset_count(dev, ETH_SS_STATS);
888 rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
890 info.n_priv_flags = rc;
892 if (ops->get_regs_len)
893 info.regdump_len = ops->get_regs_len(dev);
894 if (ops->get_eeprom_len)
895 info.eedump_len = ops->get_eeprom_len(dev);
897 if (copy_to_user(useraddr, &info, sizeof(info)))
902 static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
903 void __user *useraddr)
905 struct ethtool_sset_info info;
907 int i, idx = 0, n_bits = 0, ret, rc;
908 u32 *info_buf = NULL;
910 if (copy_from_user(&info, useraddr, sizeof(info)))
913 /* store copy of mask, because we zero struct later on */
914 sset_mask = info.sset_mask;
918 /* calculate size of return buffer */
919 n_bits = hweight64(sset_mask);
921 memset(&info, 0, sizeof(info));
922 info.cmd = ETHTOOL_GSSET_INFO;
924 info_buf = kzalloc(n_bits * sizeof(u32), GFP_USER);
929 * fill return buffer based on input bitmask and successful
930 * get_sset_count return
932 for (i = 0; i < 64; i++) {
933 if (!(sset_mask & (1ULL << i)))
936 rc = __ethtool_get_sset_count(dev, i);
938 info.sset_mask |= (1ULL << i);
939 info_buf[idx++] = rc;
944 if (copy_to_user(useraddr, &info, sizeof(info)))
947 useraddr += offsetof(struct ethtool_sset_info, data);
948 if (copy_to_user(useraddr, info_buf, idx * sizeof(u32)))
958 static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
959 u32 cmd, void __user *useraddr)
961 struct ethtool_rxnfc info;
962 size_t info_size = sizeof(info);
965 if (!dev->ethtool_ops->set_rxnfc)
968 /* struct ethtool_rxnfc was originally defined for
969 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
970 * members. User-space might still be using that
972 if (cmd == ETHTOOL_SRXFH)
973 info_size = (offsetof(struct ethtool_rxnfc, data) +
976 if (copy_from_user(&info, useraddr, info_size))
979 rc = dev->ethtool_ops->set_rxnfc(dev, &info);
983 if (cmd == ETHTOOL_SRXCLSRLINS &&
984 copy_to_user(useraddr, &info, info_size))
990 static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
991 u32 cmd, void __user *useraddr)
993 struct ethtool_rxnfc info;
994 size_t info_size = sizeof(info);
995 const struct ethtool_ops *ops = dev->ethtool_ops;
997 void *rule_buf = NULL;
1002 /* struct ethtool_rxnfc was originally defined for
1003 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
1004 * members. User-space might still be using that
1006 if (cmd == ETHTOOL_GRXFH)
1007 info_size = (offsetof(struct ethtool_rxnfc, data) +
1010 if (copy_from_user(&info, useraddr, info_size))
1013 if (info.cmd == ETHTOOL_GRXCLSRLALL) {
1014 if (info.rule_cnt > 0) {
1015 if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
1016 rule_buf = kzalloc(info.rule_cnt * sizeof(u32),
1023 ret = ops->get_rxnfc(dev, &info, rule_buf);
1028 if (copy_to_user(useraddr, &info, info_size))
1032 useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
1033 if (copy_to_user(useraddr, rule_buf,
1034 info.rule_cnt * sizeof(u32)))
1045 static int ethtool_copy_validate_indir(u32 *indir, void __user *useraddr,
1046 struct ethtool_rxnfc *rx_rings,
1051 if (copy_from_user(indir, useraddr, size * sizeof(indir[0])))
1054 /* Validate ring indices */
1055 for (i = 0; i < size; i++)
1056 if (indir[i] >= rx_rings->data)
1062 u8 netdev_rss_key[NETDEV_RSS_KEY_LEN] __read_mostly;
1064 void netdev_rss_key_fill(void *buffer, size_t len)
1066 BUG_ON(len > sizeof(netdev_rss_key));
1067 net_get_random_once(netdev_rss_key, sizeof(netdev_rss_key));
1068 memcpy(buffer, netdev_rss_key, len);
1070 EXPORT_SYMBOL(netdev_rss_key_fill);
1072 static int ethtool_get_max_rxfh_channel(struct net_device *dev, u32 *max)
1074 u32 dev_size, current_max = 0;
1078 if (!dev->ethtool_ops->get_rxfh_indir_size ||
1079 !dev->ethtool_ops->get_rxfh)
1081 dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
1085 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
1089 ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
1094 current_max = max(current_max, indir[dev_size]);
1103 static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev,
1104 void __user *useraddr)
1106 u32 user_size, dev_size;
1110 if (!dev->ethtool_ops->get_rxfh_indir_size ||
1111 !dev->ethtool_ops->get_rxfh)
1113 dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
1117 if (copy_from_user(&user_size,
1118 useraddr + offsetof(struct ethtool_rxfh_indir, size),
1122 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size),
1123 &dev_size, sizeof(dev_size)))
1126 /* If the user buffer size is 0, this is just a query for the
1127 * device table size. Otherwise, if it's smaller than the
1128 * device table size it's an error.
1130 if (user_size < dev_size)
1131 return user_size == 0 ? 0 : -EINVAL;
1133 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
1137 ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
1141 if (copy_to_user(useraddr +
1142 offsetof(struct ethtool_rxfh_indir, ring_index[0]),
1143 indir, dev_size * sizeof(indir[0])))
1151 static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev,
1152 void __user *useraddr)
1154 struct ethtool_rxnfc rx_rings;
1155 u32 user_size, dev_size, i;
1157 const struct ethtool_ops *ops = dev->ethtool_ops;
1159 u32 ringidx_offset = offsetof(struct ethtool_rxfh_indir, ring_index[0]);
1161 if (!ops->get_rxfh_indir_size || !ops->set_rxfh ||
1165 dev_size = ops->get_rxfh_indir_size(dev);
1169 if (copy_from_user(&user_size,
1170 useraddr + offsetof(struct ethtool_rxfh_indir, size),
1174 if (user_size != 0 && user_size != dev_size)
1177 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
1181 rx_rings.cmd = ETHTOOL_GRXRINGS;
1182 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
1186 if (user_size == 0) {
1187 for (i = 0; i < dev_size; i++)
1188 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1190 ret = ethtool_copy_validate_indir(indir,
1191 useraddr + ringidx_offset,
1198 ret = ops->set_rxfh(dev, indir, NULL, ETH_RSS_HASH_NO_CHANGE);
1202 /* indicate whether rxfh was set to default */
1204 dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1206 dev->priv_flags |= IFF_RXFH_CONFIGURED;
1213 static noinline_for_stack int ethtool_get_rxfh(struct net_device *dev,
1214 void __user *useraddr)
1217 const struct ethtool_ops *ops = dev->ethtool_ops;
1218 u32 user_indir_size, user_key_size;
1219 u32 dev_indir_size = 0, dev_key_size = 0;
1220 struct ethtool_rxfh rxfh;
1231 if (ops->get_rxfh_indir_size)
1232 dev_indir_size = ops->get_rxfh_indir_size(dev);
1233 if (ops->get_rxfh_key_size)
1234 dev_key_size = ops->get_rxfh_key_size(dev);
1236 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
1238 user_indir_size = rxfh.indir_size;
1239 user_key_size = rxfh.key_size;
1241 /* Check that reserved fields are 0 for now */
1242 if (rxfh.rss_context || rxfh.rsvd8[0] || rxfh.rsvd8[1] ||
1243 rxfh.rsvd8[2] || rxfh.rsvd32)
1246 rxfh.indir_size = dev_indir_size;
1247 rxfh.key_size = dev_key_size;
1248 if (copy_to_user(useraddr, &rxfh, sizeof(rxfh)))
1251 if ((user_indir_size && (user_indir_size != dev_indir_size)) ||
1252 (user_key_size && (user_key_size != dev_key_size)))
1255 indir_bytes = user_indir_size * sizeof(indir[0]);
1256 total_size = indir_bytes + user_key_size;
1257 rss_config = kzalloc(total_size, GFP_USER);
1261 if (user_indir_size)
1262 indir = (u32 *)rss_config;
1265 hkey = rss_config + indir_bytes;
1267 ret = dev->ethtool_ops->get_rxfh(dev, indir, hkey, &dev_hfunc);
1271 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, hfunc),
1272 &dev_hfunc, sizeof(rxfh.hfunc))) {
1274 } else if (copy_to_user(useraddr +
1275 offsetof(struct ethtool_rxfh, rss_config[0]),
1276 rss_config, total_size)) {
1285 static noinline_for_stack int ethtool_set_rxfh(struct net_device *dev,
1286 void __user *useraddr)
1289 const struct ethtool_ops *ops = dev->ethtool_ops;
1290 struct ethtool_rxnfc rx_rings;
1291 struct ethtool_rxfh rxfh;
1292 u32 dev_indir_size = 0, dev_key_size = 0, i;
1293 u32 *indir = NULL, indir_bytes = 0;
1296 u32 rss_cfg_offset = offsetof(struct ethtool_rxfh, rss_config[0]);
1298 if (!ops->get_rxnfc || !ops->set_rxfh)
1301 if (ops->get_rxfh_indir_size)
1302 dev_indir_size = ops->get_rxfh_indir_size(dev);
1303 if (ops->get_rxfh_key_size)
1304 dev_key_size = ops->get_rxfh_key_size(dev);
1306 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
1309 /* Check that reserved fields are 0 for now */
1310 if (rxfh.rss_context || rxfh.rsvd8[0] || rxfh.rsvd8[1] ||
1311 rxfh.rsvd8[2] || rxfh.rsvd32)
1314 /* If either indir, hash key or function is valid, proceed further.
1315 * Must request at least one change: indir size, hash key or function.
1317 if ((rxfh.indir_size &&
1318 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE &&
1319 rxfh.indir_size != dev_indir_size) ||
1320 (rxfh.key_size && (rxfh.key_size != dev_key_size)) ||
1321 (rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE &&
1322 rxfh.key_size == 0 && rxfh.hfunc == ETH_RSS_HASH_NO_CHANGE))
1325 if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
1326 indir_bytes = dev_indir_size * sizeof(indir[0]);
1328 rss_config = kzalloc(indir_bytes + rxfh.key_size, GFP_USER);
1332 rx_rings.cmd = ETHTOOL_GRXRINGS;
1333 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
1337 /* rxfh.indir_size == 0 means reset the indir table to default.
1338 * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
1340 if (rxfh.indir_size &&
1341 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) {
1342 indir = (u32 *)rss_config;
1343 ret = ethtool_copy_validate_indir(indir,
1344 useraddr + rss_cfg_offset,
1349 } else if (rxfh.indir_size == 0) {
1350 indir = (u32 *)rss_config;
1351 for (i = 0; i < dev_indir_size; i++)
1352 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1355 if (rxfh.key_size) {
1356 hkey = rss_config + indir_bytes;
1357 if (copy_from_user(hkey,
1358 useraddr + rss_cfg_offset + indir_bytes,
1365 ret = ops->set_rxfh(dev, indir, hkey, rxfh.hfunc);
1369 /* indicate whether rxfh was set to default */
1370 if (rxfh.indir_size == 0)
1371 dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1372 else if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
1373 dev->priv_flags |= IFF_RXFH_CONFIGURED;
1380 static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
1382 struct ethtool_regs regs;
1383 const struct ethtool_ops *ops = dev->ethtool_ops;
1387 if (!ops->get_regs || !ops->get_regs_len)
1390 if (copy_from_user(®s, useraddr, sizeof(regs)))
1393 reglen = ops->get_regs_len(dev);
1394 if (regs.len > reglen)
1397 regbuf = vzalloc(reglen);
1398 if (reglen && !regbuf)
1401 ops->get_regs(dev, ®s, regbuf);
1404 if (copy_to_user(useraddr, ®s, sizeof(regs)))
1406 useraddr += offsetof(struct ethtool_regs, data);
1407 if (regbuf && copy_to_user(useraddr, regbuf, regs.len))
1416 static int ethtool_reset(struct net_device *dev, char __user *useraddr)
1418 struct ethtool_value reset;
1421 if (!dev->ethtool_ops->reset)
1424 if (copy_from_user(&reset, useraddr, sizeof(reset)))
1427 ret = dev->ethtool_ops->reset(dev, &reset.data);
1431 if (copy_to_user(useraddr, &reset, sizeof(reset)))
1436 static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
1438 struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
1440 if (!dev->ethtool_ops->get_wol)
1443 dev->ethtool_ops->get_wol(dev, &wol);
1445 if (copy_to_user(useraddr, &wol, sizeof(wol)))
1450 static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
1452 struct ethtool_wolinfo wol;
1454 if (!dev->ethtool_ops->set_wol)
1457 if (copy_from_user(&wol, useraddr, sizeof(wol)))
1460 return dev->ethtool_ops->set_wol(dev, &wol);
1463 static int ethtool_get_eee(struct net_device *dev, char __user *useraddr)
1465 struct ethtool_eee edata;
1468 if (!dev->ethtool_ops->get_eee)
1471 memset(&edata, 0, sizeof(struct ethtool_eee));
1472 edata.cmd = ETHTOOL_GEEE;
1473 rc = dev->ethtool_ops->get_eee(dev, &edata);
1478 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1484 static int ethtool_set_eee(struct net_device *dev, char __user *useraddr)
1486 struct ethtool_eee edata;
1488 if (!dev->ethtool_ops->set_eee)
1491 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1494 return dev->ethtool_ops->set_eee(dev, &edata);
1497 static int ethtool_nway_reset(struct net_device *dev)
1499 if (!dev->ethtool_ops->nway_reset)
1502 return dev->ethtool_ops->nway_reset(dev);
1505 static int ethtool_get_link(struct net_device *dev, char __user *useraddr)
1507 struct ethtool_value edata = { .cmd = ETHTOOL_GLINK };
1509 if (!dev->ethtool_ops->get_link)
1512 edata.data = netif_running(dev) && dev->ethtool_ops->get_link(dev);
1514 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1519 static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr,
1520 int (*getter)(struct net_device *,
1521 struct ethtool_eeprom *, u8 *),
1524 struct ethtool_eeprom eeprom;
1525 void __user *userbuf = useraddr + sizeof(eeprom);
1526 u32 bytes_remaining;
1530 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1533 /* Check for wrap and zero */
1534 if (eeprom.offset + eeprom.len <= eeprom.offset)
1537 /* Check for exceeding total eeprom len */
1538 if (eeprom.offset + eeprom.len > total_len)
1541 data = kmalloc(PAGE_SIZE, GFP_USER);
1545 bytes_remaining = eeprom.len;
1546 while (bytes_remaining > 0) {
1547 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
1549 ret = getter(dev, &eeprom, data);
1552 if (copy_to_user(userbuf, data, eeprom.len)) {
1556 userbuf += eeprom.len;
1557 eeprom.offset += eeprom.len;
1558 bytes_remaining -= eeprom.len;
1561 eeprom.len = userbuf - (useraddr + sizeof(eeprom));
1562 eeprom.offset -= eeprom.len;
1563 if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
1570 static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
1572 const struct ethtool_ops *ops = dev->ethtool_ops;
1574 if (!ops->get_eeprom || !ops->get_eeprom_len ||
1575 !ops->get_eeprom_len(dev))
1578 return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom,
1579 ops->get_eeprom_len(dev));
1582 static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
1584 struct ethtool_eeprom eeprom;
1585 const struct ethtool_ops *ops = dev->ethtool_ops;
1586 void __user *userbuf = useraddr + sizeof(eeprom);
1587 u32 bytes_remaining;
1591 if (!ops->set_eeprom || !ops->get_eeprom_len ||
1592 !ops->get_eeprom_len(dev))
1595 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1598 /* Check for wrap and zero */
1599 if (eeprom.offset + eeprom.len <= eeprom.offset)
1602 /* Check for exceeding total eeprom len */
1603 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
1606 data = kmalloc(PAGE_SIZE, GFP_USER);
1610 bytes_remaining = eeprom.len;
1611 while (bytes_remaining > 0) {
1612 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
1614 if (copy_from_user(data, userbuf, eeprom.len)) {
1618 ret = ops->set_eeprom(dev, &eeprom, data);
1621 userbuf += eeprom.len;
1622 eeprom.offset += eeprom.len;
1623 bytes_remaining -= eeprom.len;
1630 static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
1631 void __user *useraddr)
1633 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
1635 if (!dev->ethtool_ops->get_coalesce)
1638 dev->ethtool_ops->get_coalesce(dev, &coalesce);
1640 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
1645 static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
1646 void __user *useraddr)
1648 struct ethtool_coalesce coalesce;
1650 if (!dev->ethtool_ops->set_coalesce)
1653 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
1656 return dev->ethtool_ops->set_coalesce(dev, &coalesce);
1659 static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
1661 struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
1663 if (!dev->ethtool_ops->get_ringparam)
1666 dev->ethtool_ops->get_ringparam(dev, &ringparam);
1668 if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
1673 static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
1675 struct ethtool_ringparam ringparam;
1677 if (!dev->ethtool_ops->set_ringparam)
1680 if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
1683 return dev->ethtool_ops->set_ringparam(dev, &ringparam);
1686 static noinline_for_stack int ethtool_get_channels(struct net_device *dev,
1687 void __user *useraddr)
1689 struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
1691 if (!dev->ethtool_ops->get_channels)
1694 dev->ethtool_ops->get_channels(dev, &channels);
1696 if (copy_to_user(useraddr, &channels, sizeof(channels)))
1701 static noinline_for_stack int ethtool_set_channels(struct net_device *dev,
1702 void __user *useraddr)
1704 struct ethtool_channels channels, max;
1705 u32 max_rx_in_use = 0;
1707 if (!dev->ethtool_ops->set_channels || !dev->ethtool_ops->get_channels)
1710 if (copy_from_user(&channels, useraddr, sizeof(channels)))
1713 dev->ethtool_ops->get_channels(dev, &max);
1715 /* ensure new counts are within the maximums */
1716 if ((channels.rx_count > max.max_rx) ||
1717 (channels.tx_count > max.max_tx) ||
1718 (channels.combined_count > max.max_combined) ||
1719 (channels.other_count > max.max_other))
1722 /* ensure the new Rx count fits within the configured Rx flow
1723 * indirection table settings */
1724 if (netif_is_rxfh_configured(dev) &&
1725 !ethtool_get_max_rxfh_channel(dev, &max_rx_in_use) &&
1726 (channels.combined_count + channels.rx_count) <= max_rx_in_use)
1729 return dev->ethtool_ops->set_channels(dev, &channels);
1732 static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
1734 struct ethtool_pauseparam pauseparam = { ETHTOOL_GPAUSEPARAM };
1736 if (!dev->ethtool_ops->get_pauseparam)
1739 dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
1741 if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
1746 static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
1748 struct ethtool_pauseparam pauseparam;
1750 if (!dev->ethtool_ops->set_pauseparam)
1753 if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
1756 return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
1759 static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
1761 struct ethtool_test test;
1762 const struct ethtool_ops *ops = dev->ethtool_ops;
1766 if (!ops->self_test || !ops->get_sset_count)
1769 test_len = ops->get_sset_count(dev, ETH_SS_TEST);
1772 WARN_ON(test_len == 0);
1774 if (copy_from_user(&test, useraddr, sizeof(test)))
1777 test.len = test_len;
1778 data = kmalloc(test_len * sizeof(u64), GFP_USER);
1782 ops->self_test(dev, &test, data);
1785 if (copy_to_user(useraddr, &test, sizeof(test)))
1787 useraddr += sizeof(test);
1788 if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
1797 static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
1799 struct ethtool_gstrings gstrings;
1803 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
1806 ret = __ethtool_get_sset_count(dev, gstrings.string_set);
1812 data = kcalloc(gstrings.len, ETH_GSTRING_LEN, GFP_USER);
1816 __ethtool_get_strings(dev, gstrings.string_set, data);
1819 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
1821 useraddr += sizeof(gstrings);
1822 if (copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
1831 static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
1833 struct ethtool_value id;
1835 const struct ethtool_ops *ops = dev->ethtool_ops;
1838 if (!ops->set_phys_id)
1844 if (copy_from_user(&id, useraddr, sizeof(id)))
1847 rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE);
1851 /* Drop the RTNL lock while waiting, but prevent reentry or
1852 * removal of the device.
1859 /* Driver will handle this itself */
1860 schedule_timeout_interruptible(
1861 id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT);
1863 /* Driver expects to be called at twice the frequency in rc */
1864 int n = rc * 2, i, interval = HZ / n;
1866 /* Count down seconds */
1868 /* Count down iterations per second */
1872 rc = ops->set_phys_id(dev,
1873 (i & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON);
1877 schedule_timeout_interruptible(interval);
1878 } while (!signal_pending(current) && --i != 0);
1879 } while (!signal_pending(current) &&
1880 (id.data == 0 || --id.data != 0));
1887 (void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE);
1891 static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
1893 struct ethtool_stats stats;
1894 const struct ethtool_ops *ops = dev->ethtool_ops;
1898 if (!ops->get_ethtool_stats || !ops->get_sset_count)
1901 n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
1904 WARN_ON(n_stats == 0);
1906 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1909 stats.n_stats = n_stats;
1910 data = kmalloc(n_stats * sizeof(u64), GFP_USER);
1914 ops->get_ethtool_stats(dev, &stats, data);
1917 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1919 useraddr += sizeof(stats);
1920 if (copy_to_user(useraddr, data, stats.n_stats * sizeof(u64)))
1929 static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr)
1931 struct ethtool_stats stats;
1932 struct phy_device *phydev = dev->phydev;
1939 n_stats = phy_get_sset_count(phydev);
1943 WARN_ON(n_stats == 0);
1945 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1948 stats.n_stats = n_stats;
1949 data = kmalloc_array(n_stats, sizeof(u64), GFP_USER);
1953 mutex_lock(&phydev->lock);
1954 phydev->drv->get_stats(phydev, &stats, data);
1955 mutex_unlock(&phydev->lock);
1958 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1960 useraddr += sizeof(stats);
1961 if (copy_to_user(useraddr, data, stats.n_stats * sizeof(u64)))
1970 static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
1972 struct ethtool_perm_addr epaddr;
1974 if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
1977 if (epaddr.size < dev->addr_len)
1979 epaddr.size = dev->addr_len;
1981 if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
1983 useraddr += sizeof(epaddr);
1984 if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
1989 static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
1990 u32 cmd, u32 (*actor)(struct net_device *))
1992 struct ethtool_value edata = { .cmd = cmd };
1997 edata.data = actor(dev);
1999 if (copy_to_user(useraddr, &edata, sizeof(edata)))
2004 static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
2005 void (*actor)(struct net_device *, u32))
2007 struct ethtool_value edata;
2012 if (copy_from_user(&edata, useraddr, sizeof(edata)))
2015 actor(dev, edata.data);
2019 static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
2020 int (*actor)(struct net_device *, u32))
2022 struct ethtool_value edata;
2027 if (copy_from_user(&edata, useraddr, sizeof(edata)))
2030 return actor(dev, edata.data);
2033 static noinline_for_stack int ethtool_flash_device(struct net_device *dev,
2034 char __user *useraddr)
2036 struct ethtool_flash efl;
2038 if (copy_from_user(&efl, useraddr, sizeof(efl)))
2041 if (!dev->ethtool_ops->flash_device)
2044 efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0;
2046 return dev->ethtool_ops->flash_device(dev, &efl);
2049 static int ethtool_set_dump(struct net_device *dev,
2050 void __user *useraddr)
2052 struct ethtool_dump dump;
2054 if (!dev->ethtool_ops->set_dump)
2057 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2060 return dev->ethtool_ops->set_dump(dev, &dump);
2063 static int ethtool_get_dump_flag(struct net_device *dev,
2064 void __user *useraddr)
2067 struct ethtool_dump dump;
2068 const struct ethtool_ops *ops = dev->ethtool_ops;
2070 if (!ops->get_dump_flag)
2073 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2076 ret = ops->get_dump_flag(dev, &dump);
2080 if (copy_to_user(useraddr, &dump, sizeof(dump)))
2085 static int ethtool_get_dump_data(struct net_device *dev,
2086 void __user *useraddr)
2090 struct ethtool_dump dump, tmp;
2091 const struct ethtool_ops *ops = dev->ethtool_ops;
2094 if (!ops->get_dump_data || !ops->get_dump_flag)
2097 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2100 memset(&tmp, 0, sizeof(tmp));
2101 tmp.cmd = ETHTOOL_GET_DUMP_FLAG;
2102 ret = ops->get_dump_flag(dev, &tmp);
2106 len = min(tmp.len, dump.len);
2110 /* Don't ever let the driver think there's more space available
2111 * than it requested with .get_dump_flag().
2115 /* Always allocate enough space to hold the whole thing so that the
2116 * driver does not need to check the length and bother with partial
2119 data = vzalloc(tmp.len);
2122 ret = ops->get_dump_data(dev, &dump, data);
2126 /* There are two sane possibilities:
2127 * 1. The driver's .get_dump_data() does not touch dump.len.
2128 * 2. Or it may set dump.len to how much it really writes, which
2129 * should be tmp.len (or len if it can do a partial dump).
2130 * In any case respond to userspace with the actual length of data
2133 WARN_ON(dump.len != len && dump.len != tmp.len);
2136 if (copy_to_user(useraddr, &dump, sizeof(dump))) {
2140 useraddr += offsetof(struct ethtool_dump, data);
2141 if (copy_to_user(useraddr, data, len))
2148 static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr)
2151 struct ethtool_ts_info info;
2152 const struct ethtool_ops *ops = dev->ethtool_ops;
2153 struct phy_device *phydev = dev->phydev;
2155 memset(&info, 0, sizeof(info));
2156 info.cmd = ETHTOOL_GET_TS_INFO;
2158 if (phydev && phydev->drv && phydev->drv->ts_info) {
2159 err = phydev->drv->ts_info(phydev, &info);
2160 } else if (ops->get_ts_info) {
2161 err = ops->get_ts_info(dev, &info);
2163 info.so_timestamping =
2164 SOF_TIMESTAMPING_RX_SOFTWARE |
2165 SOF_TIMESTAMPING_SOFTWARE;
2166 info.phc_index = -1;
2172 if (copy_to_user(useraddr, &info, sizeof(info)))
2178 static int __ethtool_get_module_info(struct net_device *dev,
2179 struct ethtool_modinfo *modinfo)
2181 const struct ethtool_ops *ops = dev->ethtool_ops;
2182 struct phy_device *phydev = dev->phydev;
2184 if (phydev && phydev->drv && phydev->drv->module_info)
2185 return phydev->drv->module_info(phydev, modinfo);
2187 if (ops->get_module_info)
2188 return ops->get_module_info(dev, modinfo);
2193 static int ethtool_get_module_info(struct net_device *dev,
2194 void __user *useraddr)
2197 struct ethtool_modinfo modinfo;
2199 if (copy_from_user(&modinfo, useraddr, sizeof(modinfo)))
2202 ret = __ethtool_get_module_info(dev, &modinfo);
2206 if (copy_to_user(useraddr, &modinfo, sizeof(modinfo)))
2212 static int __ethtool_get_module_eeprom(struct net_device *dev,
2213 struct ethtool_eeprom *ee, u8 *data)
2215 const struct ethtool_ops *ops = dev->ethtool_ops;
2216 struct phy_device *phydev = dev->phydev;
2218 if (phydev && phydev->drv && phydev->drv->module_eeprom)
2219 return phydev->drv->module_eeprom(phydev, ee, data);
2221 if (ops->get_module_eeprom)
2222 return ops->get_module_eeprom(dev, ee, data);
2227 static int ethtool_get_module_eeprom(struct net_device *dev,
2228 void __user *useraddr)
2231 struct ethtool_modinfo modinfo;
2233 ret = __ethtool_get_module_info(dev, &modinfo);
2237 return ethtool_get_any_eeprom(dev, useraddr,
2238 __ethtool_get_module_eeprom,
2239 modinfo.eeprom_len);
2242 static int ethtool_tunable_valid(const struct ethtool_tunable *tuna)
2245 case ETHTOOL_RX_COPYBREAK:
2246 case ETHTOOL_TX_COPYBREAK:
2247 if (tuna->len != sizeof(u32) ||
2248 tuna->type_id != ETHTOOL_TUNABLE_U32)
2258 static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr)
2261 struct ethtool_tunable tuna;
2262 const struct ethtool_ops *ops = dev->ethtool_ops;
2265 if (!ops->get_tunable)
2267 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2269 ret = ethtool_tunable_valid(&tuna);
2272 data = kmalloc(tuna.len, GFP_USER);
2275 ret = ops->get_tunable(dev, &tuna, data);
2278 useraddr += sizeof(tuna);
2280 if (copy_to_user(useraddr, data, tuna.len))
2289 static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr)
2292 struct ethtool_tunable tuna;
2293 const struct ethtool_ops *ops = dev->ethtool_ops;
2296 if (!ops->set_tunable)
2298 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2300 ret = ethtool_tunable_valid(&tuna);
2303 data = kmalloc(tuna.len, GFP_USER);
2306 useraddr += sizeof(tuna);
2308 if (copy_from_user(data, useraddr, tuna.len))
2310 ret = ops->set_tunable(dev, &tuna, data);
2317 static int ethtool_get_per_queue_coalesce(struct net_device *dev,
2318 void __user *useraddr,
2319 struct ethtool_per_queue_op *per_queue_opt)
2323 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2325 if (!dev->ethtool_ops->get_per_queue_coalesce)
2328 useraddr += sizeof(*per_queue_opt);
2330 bitmap_from_u32array(queue_mask,
2332 per_queue_opt->queue_mask,
2333 DIV_ROUND_UP(MAX_NUM_QUEUE, 32));
2335 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2336 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
2338 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, &coalesce);
2341 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
2343 useraddr += sizeof(coalesce);
2349 static int ethtool_set_per_queue_coalesce(struct net_device *dev,
2350 void __user *useraddr,
2351 struct ethtool_per_queue_op *per_queue_opt)
2356 struct ethtool_coalesce *backup = NULL, *tmp = NULL;
2357 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2359 if ((!dev->ethtool_ops->set_per_queue_coalesce) ||
2360 (!dev->ethtool_ops->get_per_queue_coalesce))
2363 useraddr += sizeof(*per_queue_opt);
2365 bitmap_from_u32array(queue_mask,
2367 per_queue_opt->queue_mask,
2368 DIV_ROUND_UP(MAX_NUM_QUEUE, 32));
2369 n_queue = bitmap_weight(queue_mask, MAX_NUM_QUEUE);
2370 tmp = backup = kmalloc_array(n_queue, sizeof(*backup), GFP_KERNEL);
2374 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2375 struct ethtool_coalesce coalesce;
2377 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, tmp);
2383 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) {
2388 ret = dev->ethtool_ops->set_per_queue_coalesce(dev, bit, &coalesce);
2392 useraddr += sizeof(coalesce);
2398 for_each_set_bit(i, queue_mask, bit) {
2399 dev->ethtool_ops->set_per_queue_coalesce(dev, i, tmp);
2408 static int ethtool_set_per_queue(struct net_device *dev, void __user *useraddr)
2410 struct ethtool_per_queue_op per_queue_opt;
2412 if (copy_from_user(&per_queue_opt, useraddr, sizeof(per_queue_opt)))
2415 switch (per_queue_opt.sub_command) {
2416 case ETHTOOL_GCOALESCE:
2417 return ethtool_get_per_queue_coalesce(dev, useraddr, &per_queue_opt);
2418 case ETHTOOL_SCOALESCE:
2419 return ethtool_set_per_queue_coalesce(dev, useraddr, &per_queue_opt);
2425 /* The main entry point in this file. Called from net/core/dev_ioctl.c */
2427 int dev_ethtool(struct net *net, struct ifreq *ifr)
2429 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
2430 void __user *useraddr = ifr->ifr_data;
2431 u32 ethcmd, sub_cmd;
2433 netdev_features_t old_features;
2435 if (!dev || !netif_device_present(dev))
2438 if (copy_from_user(ðcmd, useraddr, sizeof(ethcmd)))
2441 if (ethcmd == ETHTOOL_PERQUEUE) {
2442 if (copy_from_user(&sub_cmd, useraddr + sizeof(ethcmd), sizeof(sub_cmd)))
2447 /* Allow some commands to be done by anyone */
2450 case ETHTOOL_GDRVINFO:
2451 case ETHTOOL_GMSGLVL:
2453 case ETHTOOL_GCOALESCE:
2454 case ETHTOOL_GRINGPARAM:
2455 case ETHTOOL_GPAUSEPARAM:
2456 case ETHTOOL_GRXCSUM:
2457 case ETHTOOL_GTXCSUM:
2459 case ETHTOOL_GSSET_INFO:
2460 case ETHTOOL_GSTRINGS:
2461 case ETHTOOL_GSTATS:
2462 case ETHTOOL_GPHYSTATS:
2464 case ETHTOOL_GPERMADDR:
2468 case ETHTOOL_GFLAGS:
2469 case ETHTOOL_GPFLAGS:
2471 case ETHTOOL_GRXRINGS:
2472 case ETHTOOL_GRXCLSRLCNT:
2473 case ETHTOOL_GRXCLSRULE:
2474 case ETHTOOL_GRXCLSRLALL:
2475 case ETHTOOL_GRXFHINDIR:
2477 case ETHTOOL_GFEATURES:
2478 case ETHTOOL_GCHANNELS:
2479 case ETHTOOL_GET_TS_INFO:
2481 case ETHTOOL_GTUNABLE:
2484 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
2488 if (dev->ethtool_ops->begin) {
2489 rc = dev->ethtool_ops->begin(dev);
2493 old_features = dev->features;
2497 rc = ethtool_get_settings(dev, useraddr);
2500 rc = ethtool_set_settings(dev, useraddr);
2502 case ETHTOOL_GDRVINFO:
2503 rc = ethtool_get_drvinfo(dev, useraddr);
2506 rc = ethtool_get_regs(dev, useraddr);
2509 rc = ethtool_get_wol(dev, useraddr);
2512 rc = ethtool_set_wol(dev, useraddr);
2514 case ETHTOOL_GMSGLVL:
2515 rc = ethtool_get_value(dev, useraddr, ethcmd,
2516 dev->ethtool_ops->get_msglevel);
2518 case ETHTOOL_SMSGLVL:
2519 rc = ethtool_set_value_void(dev, useraddr,
2520 dev->ethtool_ops->set_msglevel);
2523 rc = ethtool_get_eee(dev, useraddr);
2526 rc = ethtool_set_eee(dev, useraddr);
2528 case ETHTOOL_NWAY_RST:
2529 rc = ethtool_nway_reset(dev);
2532 rc = ethtool_get_link(dev, useraddr);
2534 case ETHTOOL_GEEPROM:
2535 rc = ethtool_get_eeprom(dev, useraddr);
2537 case ETHTOOL_SEEPROM:
2538 rc = ethtool_set_eeprom(dev, useraddr);
2540 case ETHTOOL_GCOALESCE:
2541 rc = ethtool_get_coalesce(dev, useraddr);
2543 case ETHTOOL_SCOALESCE:
2544 rc = ethtool_set_coalesce(dev, useraddr);
2546 case ETHTOOL_GRINGPARAM:
2547 rc = ethtool_get_ringparam(dev, useraddr);
2549 case ETHTOOL_SRINGPARAM:
2550 rc = ethtool_set_ringparam(dev, useraddr);
2552 case ETHTOOL_GPAUSEPARAM:
2553 rc = ethtool_get_pauseparam(dev, useraddr);
2555 case ETHTOOL_SPAUSEPARAM:
2556 rc = ethtool_set_pauseparam(dev, useraddr);
2559 rc = ethtool_self_test(dev, useraddr);
2561 case ETHTOOL_GSTRINGS:
2562 rc = ethtool_get_strings(dev, useraddr);
2564 case ETHTOOL_PHYS_ID:
2565 rc = ethtool_phys_id(dev, useraddr);
2567 case ETHTOOL_GSTATS:
2568 rc = ethtool_get_stats(dev, useraddr);
2570 case ETHTOOL_GPERMADDR:
2571 rc = ethtool_get_perm_addr(dev, useraddr);
2573 case ETHTOOL_GFLAGS:
2574 rc = ethtool_get_value(dev, useraddr, ethcmd,
2575 __ethtool_get_flags);
2577 case ETHTOOL_SFLAGS:
2578 rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags);
2580 case ETHTOOL_GPFLAGS:
2581 rc = ethtool_get_value(dev, useraddr, ethcmd,
2582 dev->ethtool_ops->get_priv_flags);
2584 case ETHTOOL_SPFLAGS:
2585 rc = ethtool_set_value(dev, useraddr,
2586 dev->ethtool_ops->set_priv_flags);
2589 case ETHTOOL_GRXRINGS:
2590 case ETHTOOL_GRXCLSRLCNT:
2591 case ETHTOOL_GRXCLSRULE:
2592 case ETHTOOL_GRXCLSRLALL:
2593 rc = ethtool_get_rxnfc(dev, ethcmd, useraddr);
2596 case ETHTOOL_SRXCLSRLDEL:
2597 case ETHTOOL_SRXCLSRLINS:
2598 rc = ethtool_set_rxnfc(dev, ethcmd, useraddr);
2600 case ETHTOOL_FLASHDEV:
2601 rc = ethtool_flash_device(dev, useraddr);
2604 rc = ethtool_reset(dev, useraddr);
2606 case ETHTOOL_GSSET_INFO:
2607 rc = ethtool_get_sset_info(dev, useraddr);
2609 case ETHTOOL_GRXFHINDIR:
2610 rc = ethtool_get_rxfh_indir(dev, useraddr);
2612 case ETHTOOL_SRXFHINDIR:
2613 rc = ethtool_set_rxfh_indir(dev, useraddr);
2616 rc = ethtool_get_rxfh(dev, useraddr);
2619 rc = ethtool_set_rxfh(dev, useraddr);
2621 case ETHTOOL_GFEATURES:
2622 rc = ethtool_get_features(dev, useraddr);
2624 case ETHTOOL_SFEATURES:
2625 rc = ethtool_set_features(dev, useraddr);
2627 case ETHTOOL_GTXCSUM:
2628 case ETHTOOL_GRXCSUM:
2634 rc = ethtool_get_one_feature(dev, useraddr, ethcmd);
2636 case ETHTOOL_STXCSUM:
2637 case ETHTOOL_SRXCSUM:
2643 rc = ethtool_set_one_feature(dev, useraddr, ethcmd);
2645 case ETHTOOL_GCHANNELS:
2646 rc = ethtool_get_channels(dev, useraddr);
2648 case ETHTOOL_SCHANNELS:
2649 rc = ethtool_set_channels(dev, useraddr);
2651 case ETHTOOL_SET_DUMP:
2652 rc = ethtool_set_dump(dev, useraddr);
2654 case ETHTOOL_GET_DUMP_FLAG:
2655 rc = ethtool_get_dump_flag(dev, useraddr);
2657 case ETHTOOL_GET_DUMP_DATA:
2658 rc = ethtool_get_dump_data(dev, useraddr);
2660 case ETHTOOL_GET_TS_INFO:
2661 rc = ethtool_get_ts_info(dev, useraddr);
2663 case ETHTOOL_GMODULEINFO:
2664 rc = ethtool_get_module_info(dev, useraddr);
2666 case ETHTOOL_GMODULEEEPROM:
2667 rc = ethtool_get_module_eeprom(dev, useraddr);
2669 case ETHTOOL_GTUNABLE:
2670 rc = ethtool_get_tunable(dev, useraddr);
2672 case ETHTOOL_STUNABLE:
2673 rc = ethtool_set_tunable(dev, useraddr);
2675 case ETHTOOL_GPHYSTATS:
2676 rc = ethtool_get_phy_stats(dev, useraddr);
2678 case ETHTOOL_PERQUEUE:
2679 rc = ethtool_set_per_queue(dev, useraddr);
2681 case ETHTOOL_GLINKSETTINGS:
2682 rc = ethtool_get_link_ksettings(dev, useraddr);
2684 case ETHTOOL_SLINKSETTINGS:
2685 rc = ethtool_set_link_ksettings(dev, useraddr);
2691 if (dev->ethtool_ops->complete)
2692 dev->ethtool_ops->complete(dev);
2694 if (old_features != dev->features)
2695 netdev_features_change(dev);