2 * net/core/ethtool.c - Ethtool ioctl handler
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/sfp.h>
26 #include <linux/slab.h>
27 #include <linux/rtnetlink.h>
28 #include <linux/sched/signal.h>
29 #include <linux/net.h>
30 #include <net/devlink.h>
31 #include <net/xdp_sock.h>
32 #include <net/flow_offload.h>
35 * Some useful ethtool_ops methods that're device independent.
36 * If we find that all drivers want to do the same thing here,
37 * we can turn these into dev_() function calls.
40 u32 ethtool_op_get_link(struct net_device *dev)
42 return netif_carrier_ok(dev) ? 1 : 0;
44 EXPORT_SYMBOL(ethtool_op_get_link);
46 int ethtool_op_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
48 info->so_timestamping =
49 SOF_TIMESTAMPING_TX_SOFTWARE |
50 SOF_TIMESTAMPING_RX_SOFTWARE |
51 SOF_TIMESTAMPING_SOFTWARE;
55 EXPORT_SYMBOL(ethtool_op_get_ts_info);
57 /* Handlers for each ethtool command */
59 #define ETHTOOL_DEV_FEATURE_WORDS ((NETDEV_FEATURE_COUNT + 31) / 32)
61 static const char netdev_features_strings[NETDEV_FEATURE_COUNT][ETH_GSTRING_LEN] = {
62 [NETIF_F_SG_BIT] = "tx-scatter-gather",
63 [NETIF_F_IP_CSUM_BIT] = "tx-checksum-ipv4",
64 [NETIF_F_HW_CSUM_BIT] = "tx-checksum-ip-generic",
65 [NETIF_F_IPV6_CSUM_BIT] = "tx-checksum-ipv6",
66 [NETIF_F_HIGHDMA_BIT] = "highdma",
67 [NETIF_F_FRAGLIST_BIT] = "tx-scatter-gather-fraglist",
68 [NETIF_F_HW_VLAN_CTAG_TX_BIT] = "tx-vlan-hw-insert",
70 [NETIF_F_HW_VLAN_CTAG_RX_BIT] = "rx-vlan-hw-parse",
71 [NETIF_F_HW_VLAN_CTAG_FILTER_BIT] = "rx-vlan-filter",
72 [NETIF_F_HW_VLAN_STAG_TX_BIT] = "tx-vlan-stag-hw-insert",
73 [NETIF_F_HW_VLAN_STAG_RX_BIT] = "rx-vlan-stag-hw-parse",
74 [NETIF_F_HW_VLAN_STAG_FILTER_BIT] = "rx-vlan-stag-filter",
75 [NETIF_F_VLAN_CHALLENGED_BIT] = "vlan-challenged",
76 [NETIF_F_GSO_BIT] = "tx-generic-segmentation",
77 [NETIF_F_LLTX_BIT] = "tx-lockless",
78 [NETIF_F_NETNS_LOCAL_BIT] = "netns-local",
79 [NETIF_F_GRO_BIT] = "rx-gro",
80 [NETIF_F_GRO_HW_BIT] = "rx-gro-hw",
81 [NETIF_F_LRO_BIT] = "rx-lro",
83 [NETIF_F_TSO_BIT] = "tx-tcp-segmentation",
84 [NETIF_F_GSO_ROBUST_BIT] = "tx-gso-robust",
85 [NETIF_F_TSO_ECN_BIT] = "tx-tcp-ecn-segmentation",
86 [NETIF_F_TSO_MANGLEID_BIT] = "tx-tcp-mangleid-segmentation",
87 [NETIF_F_TSO6_BIT] = "tx-tcp6-segmentation",
88 [NETIF_F_FSO_BIT] = "tx-fcoe-segmentation",
89 [NETIF_F_GSO_GRE_BIT] = "tx-gre-segmentation",
90 [NETIF_F_GSO_GRE_CSUM_BIT] = "tx-gre-csum-segmentation",
91 [NETIF_F_GSO_IPXIP4_BIT] = "tx-ipxip4-segmentation",
92 [NETIF_F_GSO_IPXIP6_BIT] = "tx-ipxip6-segmentation",
93 [NETIF_F_GSO_UDP_TUNNEL_BIT] = "tx-udp_tnl-segmentation",
94 [NETIF_F_GSO_UDP_TUNNEL_CSUM_BIT] = "tx-udp_tnl-csum-segmentation",
95 [NETIF_F_GSO_PARTIAL_BIT] = "tx-gso-partial",
96 [NETIF_F_GSO_SCTP_BIT] = "tx-sctp-segmentation",
97 [NETIF_F_GSO_ESP_BIT] = "tx-esp-segmentation",
98 [NETIF_F_GSO_UDP_L4_BIT] = "tx-udp-segmentation",
100 [NETIF_F_FCOE_CRC_BIT] = "tx-checksum-fcoe-crc",
101 [NETIF_F_SCTP_CRC_BIT] = "tx-checksum-sctp",
102 [NETIF_F_FCOE_MTU_BIT] = "fcoe-mtu",
103 [NETIF_F_NTUPLE_BIT] = "rx-ntuple-filter",
104 [NETIF_F_RXHASH_BIT] = "rx-hashing",
105 [NETIF_F_RXCSUM_BIT] = "rx-checksum",
106 [NETIF_F_NOCACHE_COPY_BIT] = "tx-nocache-copy",
107 [NETIF_F_LOOPBACK_BIT] = "loopback",
108 [NETIF_F_RXFCS_BIT] = "rx-fcs",
109 [NETIF_F_RXALL_BIT] = "rx-all",
110 [NETIF_F_HW_L2FW_DOFFLOAD_BIT] = "l2-fwd-offload",
111 [NETIF_F_HW_TC_BIT] = "hw-tc-offload",
112 [NETIF_F_HW_ESP_BIT] = "esp-hw-offload",
113 [NETIF_F_HW_ESP_TX_CSUM_BIT] = "esp-tx-csum-hw-offload",
114 [NETIF_F_RX_UDP_TUNNEL_PORT_BIT] = "rx-udp_tunnel-port-offload",
115 [NETIF_F_HW_TLS_RECORD_BIT] = "tls-hw-record",
116 [NETIF_F_HW_TLS_TX_BIT] = "tls-hw-tx-offload",
117 [NETIF_F_HW_TLS_RX_BIT] = "tls-hw-rx-offload",
121 rss_hash_func_strings[ETH_RSS_HASH_FUNCS_COUNT][ETH_GSTRING_LEN] = {
122 [ETH_RSS_HASH_TOP_BIT] = "toeplitz",
123 [ETH_RSS_HASH_XOR_BIT] = "xor",
124 [ETH_RSS_HASH_CRC32_BIT] = "crc32",
128 tunable_strings[__ETHTOOL_TUNABLE_COUNT][ETH_GSTRING_LEN] = {
129 [ETHTOOL_ID_UNSPEC] = "Unspec",
130 [ETHTOOL_RX_COPYBREAK] = "rx-copybreak",
131 [ETHTOOL_TX_COPYBREAK] = "tx-copybreak",
132 [ETHTOOL_PFC_PREVENTION_TOUT] = "pfc-prevention-tout",
136 phy_tunable_strings[__ETHTOOL_PHY_TUNABLE_COUNT][ETH_GSTRING_LEN] = {
137 [ETHTOOL_ID_UNSPEC] = "Unspec",
138 [ETHTOOL_PHY_DOWNSHIFT] = "phy-downshift",
139 [ETHTOOL_PHY_FAST_LINK_DOWN] = "phy-fast-link-down",
142 static int ethtool_get_features(struct net_device *dev, void __user *useraddr)
144 struct ethtool_gfeatures cmd = {
145 .cmd = ETHTOOL_GFEATURES,
146 .size = ETHTOOL_DEV_FEATURE_WORDS,
148 struct ethtool_get_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
149 u32 __user *sizeaddr;
153 /* in case feature bits run out again */
154 BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS * sizeof(u32) > sizeof(netdev_features_t));
156 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
157 features[i].available = (u32)(dev->hw_features >> (32 * i));
158 features[i].requested = (u32)(dev->wanted_features >> (32 * i));
159 features[i].active = (u32)(dev->features >> (32 * i));
160 features[i].never_changed =
161 (u32)(NETIF_F_NEVER_CHANGE >> (32 * i));
164 sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size);
165 if (get_user(copy_size, sizeaddr))
168 if (copy_size > ETHTOOL_DEV_FEATURE_WORDS)
169 copy_size = ETHTOOL_DEV_FEATURE_WORDS;
171 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
173 useraddr += sizeof(cmd);
174 if (copy_to_user(useraddr, features, copy_size * sizeof(*features)))
180 static int ethtool_set_features(struct net_device *dev, void __user *useraddr)
182 struct ethtool_sfeatures cmd;
183 struct ethtool_set_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
184 netdev_features_t wanted = 0, valid = 0;
187 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
189 useraddr += sizeof(cmd);
191 if (cmd.size != ETHTOOL_DEV_FEATURE_WORDS)
194 if (copy_from_user(features, useraddr, sizeof(features)))
197 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
198 valid |= (netdev_features_t)features[i].valid << (32 * i);
199 wanted |= (netdev_features_t)features[i].requested << (32 * i);
202 if (valid & ~NETIF_F_ETHTOOL_BITS)
205 if (valid & ~dev->hw_features) {
206 valid &= dev->hw_features;
207 ret |= ETHTOOL_F_UNSUPPORTED;
210 dev->wanted_features &= ~valid;
211 dev->wanted_features |= wanted & valid;
212 __netdev_update_features(dev);
214 if ((dev->wanted_features ^ dev->features) & valid)
215 ret |= ETHTOOL_F_WISH;
220 static int __ethtool_get_sset_count(struct net_device *dev, int sset)
222 const struct ethtool_ops *ops = dev->ethtool_ops;
224 if (sset == ETH_SS_FEATURES)
225 return ARRAY_SIZE(netdev_features_strings);
227 if (sset == ETH_SS_RSS_HASH_FUNCS)
228 return ARRAY_SIZE(rss_hash_func_strings);
230 if (sset == ETH_SS_TUNABLES)
231 return ARRAY_SIZE(tunable_strings);
233 if (sset == ETH_SS_PHY_TUNABLES)
234 return ARRAY_SIZE(phy_tunable_strings);
236 if (sset == ETH_SS_PHY_STATS && dev->phydev &&
237 !ops->get_ethtool_phy_stats)
238 return phy_ethtool_get_sset_count(dev->phydev);
240 if (ops->get_sset_count && ops->get_strings)
241 return ops->get_sset_count(dev, sset);
246 static void __ethtool_get_strings(struct net_device *dev,
247 u32 stringset, u8 *data)
249 const struct ethtool_ops *ops = dev->ethtool_ops;
251 if (stringset == ETH_SS_FEATURES)
252 memcpy(data, netdev_features_strings,
253 sizeof(netdev_features_strings));
254 else if (stringset == ETH_SS_RSS_HASH_FUNCS)
255 memcpy(data, rss_hash_func_strings,
256 sizeof(rss_hash_func_strings));
257 else if (stringset == ETH_SS_TUNABLES)
258 memcpy(data, tunable_strings, sizeof(tunable_strings));
259 else if (stringset == ETH_SS_PHY_TUNABLES)
260 memcpy(data, phy_tunable_strings, sizeof(phy_tunable_strings));
261 else if (stringset == ETH_SS_PHY_STATS && dev->phydev &&
262 !ops->get_ethtool_phy_stats)
263 phy_ethtool_get_strings(dev->phydev, data);
265 /* ops->get_strings is valid because checked earlier */
266 ops->get_strings(dev, stringset, data);
269 static netdev_features_t ethtool_get_feature_mask(u32 eth_cmd)
271 /* feature masks of legacy discrete ethtool ops */
274 case ETHTOOL_GTXCSUM:
275 case ETHTOOL_STXCSUM:
276 return NETIF_F_CSUM_MASK | NETIF_F_SCTP_CRC;
277 case ETHTOOL_GRXCSUM:
278 case ETHTOOL_SRXCSUM:
279 return NETIF_F_RXCSUM;
285 return NETIF_F_ALL_TSO;
297 static int ethtool_get_one_feature(struct net_device *dev,
298 char __user *useraddr, u32 ethcmd)
300 netdev_features_t mask = ethtool_get_feature_mask(ethcmd);
301 struct ethtool_value edata = {
303 .data = !!(dev->features & mask),
306 if (copy_to_user(useraddr, &edata, sizeof(edata)))
311 static int ethtool_set_one_feature(struct net_device *dev,
312 void __user *useraddr, u32 ethcmd)
314 struct ethtool_value edata;
315 netdev_features_t mask;
317 if (copy_from_user(&edata, useraddr, sizeof(edata)))
320 mask = ethtool_get_feature_mask(ethcmd);
321 mask &= dev->hw_features;
326 dev->wanted_features |= mask;
328 dev->wanted_features &= ~mask;
330 __netdev_update_features(dev);
335 #define ETH_ALL_FLAGS (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
336 ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
337 #define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
338 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
341 static u32 __ethtool_get_flags(struct net_device *dev)
345 if (dev->features & NETIF_F_LRO)
346 flags |= ETH_FLAG_LRO;
347 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
348 flags |= ETH_FLAG_RXVLAN;
349 if (dev->features & NETIF_F_HW_VLAN_CTAG_TX)
350 flags |= ETH_FLAG_TXVLAN;
351 if (dev->features & NETIF_F_NTUPLE)
352 flags |= ETH_FLAG_NTUPLE;
353 if (dev->features & NETIF_F_RXHASH)
354 flags |= ETH_FLAG_RXHASH;
359 static int __ethtool_set_flags(struct net_device *dev, u32 data)
361 netdev_features_t features = 0, changed;
363 if (data & ~ETH_ALL_FLAGS)
366 if (data & ETH_FLAG_LRO)
367 features |= NETIF_F_LRO;
368 if (data & ETH_FLAG_RXVLAN)
369 features |= NETIF_F_HW_VLAN_CTAG_RX;
370 if (data & ETH_FLAG_TXVLAN)
371 features |= NETIF_F_HW_VLAN_CTAG_TX;
372 if (data & ETH_FLAG_NTUPLE)
373 features |= NETIF_F_NTUPLE;
374 if (data & ETH_FLAG_RXHASH)
375 features |= NETIF_F_RXHASH;
377 /* allow changing only bits set in hw_features */
378 changed = (features ^ dev->features) & ETH_ALL_FEATURES;
379 if (changed & ~dev->hw_features)
380 return (changed & dev->hw_features) ? -EINVAL : -EOPNOTSUPP;
382 dev->wanted_features =
383 (dev->wanted_features & ~changed) | (features & changed);
385 __netdev_update_features(dev);
390 /* Given two link masks, AND them together and save the result in dst. */
391 void ethtool_intersect_link_masks(struct ethtool_link_ksettings *dst,
392 struct ethtool_link_ksettings *src)
394 unsigned int size = BITS_TO_LONGS(__ETHTOOL_LINK_MODE_MASK_NBITS);
395 unsigned int idx = 0;
397 for (; idx < size; idx++) {
398 dst->link_modes.supported[idx] &=
399 src->link_modes.supported[idx];
400 dst->link_modes.advertising[idx] &=
401 src->link_modes.advertising[idx];
404 EXPORT_SYMBOL(ethtool_intersect_link_masks);
406 void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst,
409 bitmap_zero(dst, __ETHTOOL_LINK_MODE_MASK_NBITS);
412 EXPORT_SYMBOL(ethtool_convert_legacy_u32_to_link_mode);
414 /* return false if src had higher bits set. lower bits always updated. */
415 bool ethtool_convert_link_mode_to_legacy_u32(u32 *legacy_u32,
416 const unsigned long *src)
420 /* TODO: following test will soon always be true */
421 if (__ETHTOOL_LINK_MODE_MASK_NBITS > 32) {
422 __ETHTOOL_DECLARE_LINK_MODE_MASK(ext);
424 bitmap_zero(ext, __ETHTOOL_LINK_MODE_MASK_NBITS);
425 bitmap_fill(ext, 32);
426 bitmap_complement(ext, ext, __ETHTOOL_LINK_MODE_MASK_NBITS);
427 if (bitmap_intersects(ext, src,
428 __ETHTOOL_LINK_MODE_MASK_NBITS)) {
429 /* src mask goes beyond bit 31 */
433 *legacy_u32 = src[0];
436 EXPORT_SYMBOL(ethtool_convert_link_mode_to_legacy_u32);
438 /* return false if legacy contained non-0 deprecated fields
439 * maxtxpkt/maxrxpkt. rest of ksettings always updated
442 convert_legacy_settings_to_link_ksettings(
443 struct ethtool_link_ksettings *link_ksettings,
444 const struct ethtool_cmd *legacy_settings)
448 memset(link_ksettings, 0, sizeof(*link_ksettings));
450 /* This is used to tell users that driver is still using these
451 * deprecated legacy fields, and they should not use
452 * %ETHTOOL_GLINKSETTINGS/%ETHTOOL_SLINKSETTINGS
454 if (legacy_settings->maxtxpkt ||
455 legacy_settings->maxrxpkt)
458 ethtool_convert_legacy_u32_to_link_mode(
459 link_ksettings->link_modes.supported,
460 legacy_settings->supported);
461 ethtool_convert_legacy_u32_to_link_mode(
462 link_ksettings->link_modes.advertising,
463 legacy_settings->advertising);
464 ethtool_convert_legacy_u32_to_link_mode(
465 link_ksettings->link_modes.lp_advertising,
466 legacy_settings->lp_advertising);
467 link_ksettings->base.speed
468 = ethtool_cmd_speed(legacy_settings);
469 link_ksettings->base.duplex
470 = legacy_settings->duplex;
471 link_ksettings->base.port
472 = legacy_settings->port;
473 link_ksettings->base.phy_address
474 = legacy_settings->phy_address;
475 link_ksettings->base.autoneg
476 = legacy_settings->autoneg;
477 link_ksettings->base.mdio_support
478 = legacy_settings->mdio_support;
479 link_ksettings->base.eth_tp_mdix
480 = legacy_settings->eth_tp_mdix;
481 link_ksettings->base.eth_tp_mdix_ctrl
482 = legacy_settings->eth_tp_mdix_ctrl;
486 /* return false if ksettings link modes had higher bits
487 * set. legacy_settings always updated (best effort)
490 convert_link_ksettings_to_legacy_settings(
491 struct ethtool_cmd *legacy_settings,
492 const struct ethtool_link_ksettings *link_ksettings)
496 memset(legacy_settings, 0, sizeof(*legacy_settings));
497 /* this also clears the deprecated fields in legacy structure:
503 retval &= ethtool_convert_link_mode_to_legacy_u32(
504 &legacy_settings->supported,
505 link_ksettings->link_modes.supported);
506 retval &= ethtool_convert_link_mode_to_legacy_u32(
507 &legacy_settings->advertising,
508 link_ksettings->link_modes.advertising);
509 retval &= ethtool_convert_link_mode_to_legacy_u32(
510 &legacy_settings->lp_advertising,
511 link_ksettings->link_modes.lp_advertising);
512 ethtool_cmd_speed_set(legacy_settings, link_ksettings->base.speed);
513 legacy_settings->duplex
514 = link_ksettings->base.duplex;
515 legacy_settings->port
516 = link_ksettings->base.port;
517 legacy_settings->phy_address
518 = link_ksettings->base.phy_address;
519 legacy_settings->autoneg
520 = link_ksettings->base.autoneg;
521 legacy_settings->mdio_support
522 = link_ksettings->base.mdio_support;
523 legacy_settings->eth_tp_mdix
524 = link_ksettings->base.eth_tp_mdix;
525 legacy_settings->eth_tp_mdix_ctrl
526 = link_ksettings->base.eth_tp_mdix_ctrl;
527 legacy_settings->transceiver
528 = link_ksettings->base.transceiver;
532 /* number of 32-bit words to store the user's link mode bitmaps */
533 #define __ETHTOOL_LINK_MODE_MASK_NU32 \
534 DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32)
536 /* layout of the struct passed from/to userland */
537 struct ethtool_link_usettings {
538 struct ethtool_link_settings base;
540 __u32 supported[__ETHTOOL_LINK_MODE_MASK_NU32];
541 __u32 advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
542 __u32 lp_advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
546 /* Internal kernel helper to query a device ethtool_link_settings. */
547 int __ethtool_get_link_ksettings(struct net_device *dev,
548 struct ethtool_link_ksettings *link_ksettings)
552 if (!dev->ethtool_ops->get_link_ksettings)
555 memset(link_ksettings, 0, sizeof(*link_ksettings));
556 return dev->ethtool_ops->get_link_ksettings(dev, link_ksettings);
558 EXPORT_SYMBOL(__ethtool_get_link_ksettings);
560 /* convert ethtool_link_usettings in user space to a kernel internal
561 * ethtool_link_ksettings. return 0 on success, errno on error.
563 static int load_link_ksettings_from_user(struct ethtool_link_ksettings *to,
564 const void __user *from)
566 struct ethtool_link_usettings link_usettings;
568 if (copy_from_user(&link_usettings, from, sizeof(link_usettings)))
571 memcpy(&to->base, &link_usettings.base, sizeof(to->base));
572 bitmap_from_arr32(to->link_modes.supported,
573 link_usettings.link_modes.supported,
574 __ETHTOOL_LINK_MODE_MASK_NBITS);
575 bitmap_from_arr32(to->link_modes.advertising,
576 link_usettings.link_modes.advertising,
577 __ETHTOOL_LINK_MODE_MASK_NBITS);
578 bitmap_from_arr32(to->link_modes.lp_advertising,
579 link_usettings.link_modes.lp_advertising,
580 __ETHTOOL_LINK_MODE_MASK_NBITS);
585 /* convert a kernel internal ethtool_link_ksettings to
586 * ethtool_link_usettings in user space. return 0 on success, errno on
590 store_link_ksettings_for_user(void __user *to,
591 const struct ethtool_link_ksettings *from)
593 struct ethtool_link_usettings link_usettings;
595 memcpy(&link_usettings.base, &from->base, sizeof(link_usettings));
596 bitmap_to_arr32(link_usettings.link_modes.supported,
597 from->link_modes.supported,
598 __ETHTOOL_LINK_MODE_MASK_NBITS);
599 bitmap_to_arr32(link_usettings.link_modes.advertising,
600 from->link_modes.advertising,
601 __ETHTOOL_LINK_MODE_MASK_NBITS);
602 bitmap_to_arr32(link_usettings.link_modes.lp_advertising,
603 from->link_modes.lp_advertising,
604 __ETHTOOL_LINK_MODE_MASK_NBITS);
606 if (copy_to_user(to, &link_usettings, sizeof(link_usettings)))
612 /* Query device for its ethtool_link_settings. */
613 static int ethtool_get_link_ksettings(struct net_device *dev,
614 void __user *useraddr)
617 struct ethtool_link_ksettings link_ksettings;
620 if (!dev->ethtool_ops->get_link_ksettings)
623 /* handle bitmap nbits handshake */
624 if (copy_from_user(&link_ksettings.base, useraddr,
625 sizeof(link_ksettings.base)))
628 if (__ETHTOOL_LINK_MODE_MASK_NU32
629 != link_ksettings.base.link_mode_masks_nwords) {
630 /* wrong link mode nbits requested */
631 memset(&link_ksettings, 0, sizeof(link_ksettings));
632 link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
633 /* send back number of words required as negative val */
634 compiletime_assert(__ETHTOOL_LINK_MODE_MASK_NU32 <= S8_MAX,
635 "need too many bits for link modes!");
636 link_ksettings.base.link_mode_masks_nwords
637 = -((s8)__ETHTOOL_LINK_MODE_MASK_NU32);
639 /* copy the base fields back to user, not the link
642 if (copy_to_user(useraddr, &link_ksettings.base,
643 sizeof(link_ksettings.base)))
649 /* handshake successful: user/kernel agree on
650 * link_mode_masks_nwords
653 memset(&link_ksettings, 0, sizeof(link_ksettings));
654 err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
658 /* make sure we tell the right values to user */
659 link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
660 link_ksettings.base.link_mode_masks_nwords
661 = __ETHTOOL_LINK_MODE_MASK_NU32;
663 return store_link_ksettings_for_user(useraddr, &link_ksettings);
666 /* Update device ethtool_link_settings. */
667 static int ethtool_set_link_ksettings(struct net_device *dev,
668 void __user *useraddr)
671 struct ethtool_link_ksettings link_ksettings;
675 if (!dev->ethtool_ops->set_link_ksettings)
678 /* make sure nbits field has expected value */
679 if (copy_from_user(&link_ksettings.base, useraddr,
680 sizeof(link_ksettings.base)))
683 if (__ETHTOOL_LINK_MODE_MASK_NU32
684 != link_ksettings.base.link_mode_masks_nwords)
687 /* copy the whole structure, now that we know it has expected
690 err = load_link_ksettings_from_user(&link_ksettings, useraddr);
694 /* re-check nwords field, just in case */
695 if (__ETHTOOL_LINK_MODE_MASK_NU32
696 != link_ksettings.base.link_mode_masks_nwords)
699 return dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
702 /* Query device for its ethtool_cmd settings.
704 * Backward compatibility note: for compatibility with legacy ethtool, this is
705 * now implemented via get_link_ksettings. When driver reports higher link mode
706 * bits, a kernel warning is logged once (with name of 1st driver/device) to
707 * recommend user to upgrade ethtool, but the command is successful (only the
708 * lower link mode bits reported back to user). Deprecated fields from
709 * ethtool_cmd (transceiver/maxrxpkt/maxtxpkt) are always set to zero.
711 static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
713 struct ethtool_link_ksettings link_ksettings;
714 struct ethtool_cmd cmd;
718 if (!dev->ethtool_ops->get_link_ksettings)
721 memset(&link_ksettings, 0, sizeof(link_ksettings));
722 err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
725 convert_link_ksettings_to_legacy_settings(&cmd, &link_ksettings);
727 /* send a sensible cmd tag back to user */
728 cmd.cmd = ETHTOOL_GSET;
730 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
736 /* Update device link settings with given ethtool_cmd.
738 * Backward compatibility note: for compatibility with legacy ethtool, this is
739 * now always implemented via set_link_settings. When user's request updates
740 * deprecated ethtool_cmd fields (transceiver/maxrxpkt/maxtxpkt), a kernel
741 * warning is logged once (with name of 1st driver/device) to recommend user to
742 * upgrade ethtool, and the request is rejected.
744 static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
746 struct ethtool_link_ksettings link_ksettings;
747 struct ethtool_cmd cmd;
751 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
753 if (!dev->ethtool_ops->set_link_ksettings)
756 if (!convert_legacy_settings_to_link_ksettings(&link_ksettings, &cmd))
758 link_ksettings.base.link_mode_masks_nwords =
759 __ETHTOOL_LINK_MODE_MASK_NU32;
760 return dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
763 static noinline_for_stack int ethtool_get_drvinfo(struct net_device *dev,
764 void __user *useraddr)
766 struct ethtool_drvinfo info;
767 const struct ethtool_ops *ops = dev->ethtool_ops;
769 memset(&info, 0, sizeof(info));
770 info.cmd = ETHTOOL_GDRVINFO;
771 if (ops->get_drvinfo) {
772 ops->get_drvinfo(dev, &info);
773 } else if (dev->dev.parent && dev->dev.parent->driver) {
774 strlcpy(info.bus_info, dev_name(dev->dev.parent),
775 sizeof(info.bus_info));
776 strlcpy(info.driver, dev->dev.parent->driver->name,
777 sizeof(info.driver));
783 * this method of obtaining string set info is deprecated;
784 * Use ETHTOOL_GSSET_INFO instead.
786 if (ops->get_sset_count) {
789 rc = ops->get_sset_count(dev, ETH_SS_TEST);
791 info.testinfo_len = rc;
792 rc = ops->get_sset_count(dev, ETH_SS_STATS);
795 rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
797 info.n_priv_flags = rc;
799 if (ops->get_regs_len) {
800 int ret = ops->get_regs_len(dev);
803 info.regdump_len = ret;
806 if (ops->get_eeprom_len)
807 info.eedump_len = ops->get_eeprom_len(dev);
809 if (!info.fw_version[0])
810 devlink_compat_running_version(dev, info.fw_version,
811 sizeof(info.fw_version));
813 if (copy_to_user(useraddr, &info, sizeof(info)))
818 static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
819 void __user *useraddr)
821 struct ethtool_sset_info info;
823 int i, idx = 0, n_bits = 0, ret, rc;
824 u32 *info_buf = NULL;
826 if (copy_from_user(&info, useraddr, sizeof(info)))
829 /* store copy of mask, because we zero struct later on */
830 sset_mask = info.sset_mask;
834 /* calculate size of return buffer */
835 n_bits = hweight64(sset_mask);
837 memset(&info, 0, sizeof(info));
838 info.cmd = ETHTOOL_GSSET_INFO;
840 info_buf = kcalloc(n_bits, sizeof(u32), GFP_USER);
845 * fill return buffer based on input bitmask and successful
846 * get_sset_count return
848 for (i = 0; i < 64; i++) {
849 if (!(sset_mask & (1ULL << i)))
852 rc = __ethtool_get_sset_count(dev, i);
854 info.sset_mask |= (1ULL << i);
855 info_buf[idx++] = rc;
860 if (copy_to_user(useraddr, &info, sizeof(info)))
863 useraddr += offsetof(struct ethtool_sset_info, data);
864 if (copy_to_user(useraddr, info_buf, idx * sizeof(u32)))
874 static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
875 u32 cmd, void __user *useraddr)
877 struct ethtool_rxnfc info;
878 size_t info_size = sizeof(info);
881 if (!dev->ethtool_ops->set_rxnfc)
884 /* struct ethtool_rxnfc was originally defined for
885 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
886 * members. User-space might still be using that
888 if (cmd == ETHTOOL_SRXFH)
889 info_size = (offsetof(struct ethtool_rxnfc, data) +
892 if (copy_from_user(&info, useraddr, info_size))
895 rc = dev->ethtool_ops->set_rxnfc(dev, &info);
899 if (cmd == ETHTOOL_SRXCLSRLINS &&
900 copy_to_user(useraddr, &info, info_size))
906 static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
907 u32 cmd, void __user *useraddr)
909 struct ethtool_rxnfc info;
910 size_t info_size = sizeof(info);
911 const struct ethtool_ops *ops = dev->ethtool_ops;
913 void *rule_buf = NULL;
918 /* struct ethtool_rxnfc was originally defined for
919 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
920 * members. User-space might still be using that
922 if (cmd == ETHTOOL_GRXFH)
923 info_size = (offsetof(struct ethtool_rxnfc, data) +
926 if (copy_from_user(&info, useraddr, info_size))
929 /* If FLOW_RSS was requested then user-space must be using the
930 * new definition, as FLOW_RSS is newer.
932 if (cmd == ETHTOOL_GRXFH && info.flow_type & FLOW_RSS) {
933 info_size = sizeof(info);
934 if (copy_from_user(&info, useraddr, info_size))
936 /* Since malicious users may modify the original data,
937 * we need to check whether FLOW_RSS is still requested.
939 if (!(info.flow_type & FLOW_RSS))
946 if (info.cmd == ETHTOOL_GRXCLSRLALL) {
947 if (info.rule_cnt > 0) {
948 if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
949 rule_buf = kcalloc(info.rule_cnt, sizeof(u32),
956 ret = ops->get_rxnfc(dev, &info, rule_buf);
961 if (copy_to_user(useraddr, &info, info_size))
965 useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
966 if (copy_to_user(useraddr, rule_buf,
967 info.rule_cnt * sizeof(u32)))
978 static int ethtool_copy_validate_indir(u32 *indir, void __user *useraddr,
979 struct ethtool_rxnfc *rx_rings,
984 if (copy_from_user(indir, useraddr, size * sizeof(indir[0])))
987 /* Validate ring indices */
988 for (i = 0; i < size; i++)
989 if (indir[i] >= rx_rings->data)
995 u8 netdev_rss_key[NETDEV_RSS_KEY_LEN] __read_mostly;
997 void netdev_rss_key_fill(void *buffer, size_t len)
999 BUG_ON(len > sizeof(netdev_rss_key));
1000 net_get_random_once(netdev_rss_key, sizeof(netdev_rss_key));
1001 memcpy(buffer, netdev_rss_key, len);
1003 EXPORT_SYMBOL(netdev_rss_key_fill);
1005 static int ethtool_get_max_rxfh_channel(struct net_device *dev, u32 *max)
1007 u32 dev_size, current_max = 0;
1011 if (!dev->ethtool_ops->get_rxfh_indir_size ||
1012 !dev->ethtool_ops->get_rxfh)
1014 dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
1018 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
1022 ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
1027 current_max = max(current_max, indir[dev_size]);
1036 static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev,
1037 void __user *useraddr)
1039 u32 user_size, dev_size;
1043 if (!dev->ethtool_ops->get_rxfh_indir_size ||
1044 !dev->ethtool_ops->get_rxfh)
1046 dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
1050 if (copy_from_user(&user_size,
1051 useraddr + offsetof(struct ethtool_rxfh_indir, size),
1055 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size),
1056 &dev_size, sizeof(dev_size)))
1059 /* If the user buffer size is 0, this is just a query for the
1060 * device table size. Otherwise, if it's smaller than the
1061 * device table size it's an error.
1063 if (user_size < dev_size)
1064 return user_size == 0 ? 0 : -EINVAL;
1066 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
1070 ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
1074 if (copy_to_user(useraddr +
1075 offsetof(struct ethtool_rxfh_indir, ring_index[0]),
1076 indir, dev_size * sizeof(indir[0])))
1084 static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev,
1085 void __user *useraddr)
1087 struct ethtool_rxnfc rx_rings;
1088 u32 user_size, dev_size, i;
1090 const struct ethtool_ops *ops = dev->ethtool_ops;
1092 u32 ringidx_offset = offsetof(struct ethtool_rxfh_indir, ring_index[0]);
1094 if (!ops->get_rxfh_indir_size || !ops->set_rxfh ||
1098 dev_size = ops->get_rxfh_indir_size(dev);
1102 if (copy_from_user(&user_size,
1103 useraddr + offsetof(struct ethtool_rxfh_indir, size),
1107 if (user_size != 0 && user_size != dev_size)
1110 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
1114 rx_rings.cmd = ETHTOOL_GRXRINGS;
1115 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
1119 if (user_size == 0) {
1120 for (i = 0; i < dev_size; i++)
1121 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1123 ret = ethtool_copy_validate_indir(indir,
1124 useraddr + ringidx_offset,
1131 ret = ops->set_rxfh(dev, indir, NULL, ETH_RSS_HASH_NO_CHANGE);
1135 /* indicate whether rxfh was set to default */
1137 dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1139 dev->priv_flags |= IFF_RXFH_CONFIGURED;
1146 static noinline_for_stack int ethtool_get_rxfh(struct net_device *dev,
1147 void __user *useraddr)
1150 const struct ethtool_ops *ops = dev->ethtool_ops;
1151 u32 user_indir_size, user_key_size;
1152 u32 dev_indir_size = 0, dev_key_size = 0;
1153 struct ethtool_rxfh rxfh;
1164 if (ops->get_rxfh_indir_size)
1165 dev_indir_size = ops->get_rxfh_indir_size(dev);
1166 if (ops->get_rxfh_key_size)
1167 dev_key_size = ops->get_rxfh_key_size(dev);
1169 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
1171 user_indir_size = rxfh.indir_size;
1172 user_key_size = rxfh.key_size;
1174 /* Check that reserved fields are 0 for now */
1175 if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32)
1177 /* Most drivers don't handle rss_context, check it's 0 as well */
1178 if (rxfh.rss_context && !ops->get_rxfh_context)
1181 rxfh.indir_size = dev_indir_size;
1182 rxfh.key_size = dev_key_size;
1183 if (copy_to_user(useraddr, &rxfh, sizeof(rxfh)))
1186 if ((user_indir_size && (user_indir_size != dev_indir_size)) ||
1187 (user_key_size && (user_key_size != dev_key_size)))
1190 indir_bytes = user_indir_size * sizeof(indir[0]);
1191 total_size = indir_bytes + user_key_size;
1192 rss_config = kzalloc(total_size, GFP_USER);
1196 if (user_indir_size)
1197 indir = (u32 *)rss_config;
1200 hkey = rss_config + indir_bytes;
1202 if (rxfh.rss_context)
1203 ret = dev->ethtool_ops->get_rxfh_context(dev, indir, hkey,
1207 ret = dev->ethtool_ops->get_rxfh(dev, indir, hkey, &dev_hfunc);
1211 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, hfunc),
1212 &dev_hfunc, sizeof(rxfh.hfunc))) {
1214 } else if (copy_to_user(useraddr +
1215 offsetof(struct ethtool_rxfh, rss_config[0]),
1216 rss_config, total_size)) {
1225 static noinline_for_stack int ethtool_set_rxfh(struct net_device *dev,
1226 void __user *useraddr)
1229 const struct ethtool_ops *ops = dev->ethtool_ops;
1230 struct ethtool_rxnfc rx_rings;
1231 struct ethtool_rxfh rxfh;
1232 u32 dev_indir_size = 0, dev_key_size = 0, i;
1233 u32 *indir = NULL, indir_bytes = 0;
1236 u32 rss_cfg_offset = offsetof(struct ethtool_rxfh, rss_config[0]);
1237 bool delete = false;
1239 if (!ops->get_rxnfc || !ops->set_rxfh)
1242 if (ops->get_rxfh_indir_size)
1243 dev_indir_size = ops->get_rxfh_indir_size(dev);
1244 if (ops->get_rxfh_key_size)
1245 dev_key_size = ops->get_rxfh_key_size(dev);
1247 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
1250 /* Check that reserved fields are 0 for now */
1251 if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32)
1253 /* Most drivers don't handle rss_context, check it's 0 as well */
1254 if (rxfh.rss_context && !ops->set_rxfh_context)
1257 /* If either indir, hash key or function is valid, proceed further.
1258 * Must request at least one change: indir size, hash key or function.
1260 if ((rxfh.indir_size &&
1261 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE &&
1262 rxfh.indir_size != dev_indir_size) ||
1263 (rxfh.key_size && (rxfh.key_size != dev_key_size)) ||
1264 (rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE &&
1265 rxfh.key_size == 0 && rxfh.hfunc == ETH_RSS_HASH_NO_CHANGE))
1268 if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
1269 indir_bytes = dev_indir_size * sizeof(indir[0]);
1271 rss_config = kzalloc(indir_bytes + rxfh.key_size, GFP_USER);
1275 rx_rings.cmd = ETHTOOL_GRXRINGS;
1276 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
1280 /* rxfh.indir_size == 0 means reset the indir table to default (master
1281 * context) or delete the context (other RSS contexts).
1282 * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
1284 if (rxfh.indir_size &&
1285 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) {
1286 indir = (u32 *)rss_config;
1287 ret = ethtool_copy_validate_indir(indir,
1288 useraddr + rss_cfg_offset,
1293 } else if (rxfh.indir_size == 0) {
1294 if (rxfh.rss_context == 0) {
1295 indir = (u32 *)rss_config;
1296 for (i = 0; i < dev_indir_size; i++)
1297 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1303 if (rxfh.key_size) {
1304 hkey = rss_config + indir_bytes;
1305 if (copy_from_user(hkey,
1306 useraddr + rss_cfg_offset + indir_bytes,
1313 if (rxfh.rss_context)
1314 ret = ops->set_rxfh_context(dev, indir, hkey, rxfh.hfunc,
1315 &rxfh.rss_context, delete);
1317 ret = ops->set_rxfh(dev, indir, hkey, rxfh.hfunc);
1321 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, rss_context),
1322 &rxfh.rss_context, sizeof(rxfh.rss_context)))
1325 if (!rxfh.rss_context) {
1326 /* indicate whether rxfh was set to default */
1327 if (rxfh.indir_size == 0)
1328 dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1329 else if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
1330 dev->priv_flags |= IFF_RXFH_CONFIGURED;
1338 static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
1340 struct ethtool_regs regs;
1341 const struct ethtool_ops *ops = dev->ethtool_ops;
1345 if (!ops->get_regs || !ops->get_regs_len)
1348 if (copy_from_user(®s, useraddr, sizeof(regs)))
1351 reglen = ops->get_regs_len(dev);
1355 if (regs.len > reglen)
1358 regbuf = vzalloc(reglen);
1362 ops->get_regs(dev, ®s, regbuf);
1365 if (copy_to_user(useraddr, ®s, sizeof(regs)))
1367 useraddr += offsetof(struct ethtool_regs, data);
1368 if (regbuf && copy_to_user(useraddr, regbuf, regs.len))
1377 static int ethtool_reset(struct net_device *dev, char __user *useraddr)
1379 struct ethtool_value reset;
1382 if (!dev->ethtool_ops->reset)
1385 if (copy_from_user(&reset, useraddr, sizeof(reset)))
1388 ret = dev->ethtool_ops->reset(dev, &reset.data);
1392 if (copy_to_user(useraddr, &reset, sizeof(reset)))
1397 static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
1399 struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
1401 if (!dev->ethtool_ops->get_wol)
1404 dev->ethtool_ops->get_wol(dev, &wol);
1406 if (copy_to_user(useraddr, &wol, sizeof(wol)))
1411 static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
1413 struct ethtool_wolinfo wol;
1416 if (!dev->ethtool_ops->set_wol)
1419 if (copy_from_user(&wol, useraddr, sizeof(wol)))
1422 ret = dev->ethtool_ops->set_wol(dev, &wol);
1426 dev->wol_enabled = !!wol.wolopts;
1431 static int ethtool_get_eee(struct net_device *dev, char __user *useraddr)
1433 struct ethtool_eee edata;
1436 if (!dev->ethtool_ops->get_eee)
1439 memset(&edata, 0, sizeof(struct ethtool_eee));
1440 edata.cmd = ETHTOOL_GEEE;
1441 rc = dev->ethtool_ops->get_eee(dev, &edata);
1446 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1452 static int ethtool_set_eee(struct net_device *dev, char __user *useraddr)
1454 struct ethtool_eee edata;
1456 if (!dev->ethtool_ops->set_eee)
1459 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1462 return dev->ethtool_ops->set_eee(dev, &edata);
1465 static int ethtool_nway_reset(struct net_device *dev)
1467 if (!dev->ethtool_ops->nway_reset)
1470 return dev->ethtool_ops->nway_reset(dev);
1473 static int ethtool_get_link(struct net_device *dev, char __user *useraddr)
1475 struct ethtool_value edata = { .cmd = ETHTOOL_GLINK };
1477 if (!dev->ethtool_ops->get_link)
1480 edata.data = netif_running(dev) && dev->ethtool_ops->get_link(dev);
1482 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1487 static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr,
1488 int (*getter)(struct net_device *,
1489 struct ethtool_eeprom *, u8 *),
1492 struct ethtool_eeprom eeprom;
1493 void __user *userbuf = useraddr + sizeof(eeprom);
1494 u32 bytes_remaining;
1498 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1501 /* Check for wrap and zero */
1502 if (eeprom.offset + eeprom.len <= eeprom.offset)
1505 /* Check for exceeding total eeprom len */
1506 if (eeprom.offset + eeprom.len > total_len)
1509 data = kmalloc(PAGE_SIZE, GFP_USER);
1513 bytes_remaining = eeprom.len;
1514 while (bytes_remaining > 0) {
1515 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
1517 ret = getter(dev, &eeprom, data);
1520 if (copy_to_user(userbuf, data, eeprom.len)) {
1524 userbuf += eeprom.len;
1525 eeprom.offset += eeprom.len;
1526 bytes_remaining -= eeprom.len;
1529 eeprom.len = userbuf - (useraddr + sizeof(eeprom));
1530 eeprom.offset -= eeprom.len;
1531 if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
1538 static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
1540 const struct ethtool_ops *ops = dev->ethtool_ops;
1542 if (!ops->get_eeprom || !ops->get_eeprom_len ||
1543 !ops->get_eeprom_len(dev))
1546 return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom,
1547 ops->get_eeprom_len(dev));
1550 static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
1552 struct ethtool_eeprom eeprom;
1553 const struct ethtool_ops *ops = dev->ethtool_ops;
1554 void __user *userbuf = useraddr + sizeof(eeprom);
1555 u32 bytes_remaining;
1559 if (!ops->set_eeprom || !ops->get_eeprom_len ||
1560 !ops->get_eeprom_len(dev))
1563 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1566 /* Check for wrap and zero */
1567 if (eeprom.offset + eeprom.len <= eeprom.offset)
1570 /* Check for exceeding total eeprom len */
1571 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
1574 data = kmalloc(PAGE_SIZE, GFP_USER);
1578 bytes_remaining = eeprom.len;
1579 while (bytes_remaining > 0) {
1580 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
1582 if (copy_from_user(data, userbuf, eeprom.len)) {
1586 ret = ops->set_eeprom(dev, &eeprom, data);
1589 userbuf += eeprom.len;
1590 eeprom.offset += eeprom.len;
1591 bytes_remaining -= eeprom.len;
1598 static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
1599 void __user *useraddr)
1601 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
1603 if (!dev->ethtool_ops->get_coalesce)
1606 dev->ethtool_ops->get_coalesce(dev, &coalesce);
1608 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
1613 static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
1614 void __user *useraddr)
1616 struct ethtool_coalesce coalesce;
1618 if (!dev->ethtool_ops->set_coalesce)
1621 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
1624 return dev->ethtool_ops->set_coalesce(dev, &coalesce);
1627 static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
1629 struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
1631 if (!dev->ethtool_ops->get_ringparam)
1634 dev->ethtool_ops->get_ringparam(dev, &ringparam);
1636 if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
1641 static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
1643 struct ethtool_ringparam ringparam, max = { .cmd = ETHTOOL_GRINGPARAM };
1645 if (!dev->ethtool_ops->set_ringparam || !dev->ethtool_ops->get_ringparam)
1648 if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
1651 dev->ethtool_ops->get_ringparam(dev, &max);
1653 /* ensure new ring parameters are within the maximums */
1654 if (ringparam.rx_pending > max.rx_max_pending ||
1655 ringparam.rx_mini_pending > max.rx_mini_max_pending ||
1656 ringparam.rx_jumbo_pending > max.rx_jumbo_max_pending ||
1657 ringparam.tx_pending > max.tx_max_pending)
1660 return dev->ethtool_ops->set_ringparam(dev, &ringparam);
1663 static noinline_for_stack int ethtool_get_channels(struct net_device *dev,
1664 void __user *useraddr)
1666 struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
1668 if (!dev->ethtool_ops->get_channels)
1671 dev->ethtool_ops->get_channels(dev, &channels);
1673 if (copy_to_user(useraddr, &channels, sizeof(channels)))
1678 static noinline_for_stack int ethtool_set_channels(struct net_device *dev,
1679 void __user *useraddr)
1681 struct ethtool_channels channels, curr = { .cmd = ETHTOOL_GCHANNELS };
1682 u16 from_channel, to_channel;
1683 u32 max_rx_in_use = 0;
1686 if (!dev->ethtool_ops->set_channels || !dev->ethtool_ops->get_channels)
1689 if (copy_from_user(&channels, useraddr, sizeof(channels)))
1692 dev->ethtool_ops->get_channels(dev, &curr);
1694 /* ensure new counts are within the maximums */
1695 if (channels.rx_count > curr.max_rx ||
1696 channels.tx_count > curr.max_tx ||
1697 channels.combined_count > curr.max_combined ||
1698 channels.other_count > curr.max_other)
1701 /* ensure the new Rx count fits within the configured Rx flow
1702 * indirection table settings */
1703 if (netif_is_rxfh_configured(dev) &&
1704 !ethtool_get_max_rxfh_channel(dev, &max_rx_in_use) &&
1705 (channels.combined_count + channels.rx_count) <= max_rx_in_use)
1708 /* Disabling channels, query zero-copy AF_XDP sockets */
1709 from_channel = channels.combined_count +
1710 min(channels.rx_count, channels.tx_count);
1711 to_channel = curr.combined_count + max(curr.rx_count, curr.tx_count);
1712 for (i = from_channel; i < to_channel; i++)
1713 if (xdp_get_umem_from_qid(dev, i))
1716 return dev->ethtool_ops->set_channels(dev, &channels);
1719 static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
1721 struct ethtool_pauseparam pauseparam = { .cmd = ETHTOOL_GPAUSEPARAM };
1723 if (!dev->ethtool_ops->get_pauseparam)
1726 dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
1728 if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
1733 static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
1735 struct ethtool_pauseparam pauseparam;
1737 if (!dev->ethtool_ops->set_pauseparam)
1740 if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
1743 return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
1746 static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
1748 struct ethtool_test test;
1749 const struct ethtool_ops *ops = dev->ethtool_ops;
1753 if (!ops->self_test || !ops->get_sset_count)
1756 test_len = ops->get_sset_count(dev, ETH_SS_TEST);
1759 WARN_ON(test_len == 0);
1761 if (copy_from_user(&test, useraddr, sizeof(test)))
1764 test.len = test_len;
1765 data = kmalloc_array(test_len, sizeof(u64), GFP_USER);
1769 ops->self_test(dev, &test, data);
1772 if (copy_to_user(useraddr, &test, sizeof(test)))
1774 useraddr += sizeof(test);
1775 if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
1784 static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
1786 struct ethtool_gstrings gstrings;
1790 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
1793 ret = __ethtool_get_sset_count(dev, gstrings.string_set);
1796 if (ret > S32_MAX / ETH_GSTRING_LEN)
1803 data = vzalloc(array_size(gstrings.len, ETH_GSTRING_LEN));
1807 __ethtool_get_strings(dev, gstrings.string_set, data);
1813 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
1815 useraddr += sizeof(gstrings);
1817 copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
1826 static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
1828 struct ethtool_value id;
1830 const struct ethtool_ops *ops = dev->ethtool_ops;
1833 if (!ops->set_phys_id)
1839 if (copy_from_user(&id, useraddr, sizeof(id)))
1842 rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE);
1846 /* Drop the RTNL lock while waiting, but prevent reentry or
1847 * removal of the device.
1854 /* Driver will handle this itself */
1855 schedule_timeout_interruptible(
1856 id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT);
1858 /* Driver expects to be called at twice the frequency in rc */
1859 int n = rc * 2, i, interval = HZ / n;
1861 /* Count down seconds */
1863 /* Count down iterations per second */
1867 rc = ops->set_phys_id(dev,
1868 (i & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON);
1872 schedule_timeout_interruptible(interval);
1873 } while (!signal_pending(current) && --i != 0);
1874 } while (!signal_pending(current) &&
1875 (id.data == 0 || --id.data != 0));
1882 (void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE);
1886 static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
1888 struct ethtool_stats stats;
1889 const struct ethtool_ops *ops = dev->ethtool_ops;
1893 if (!ops->get_ethtool_stats || !ops->get_sset_count)
1896 n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
1899 if (n_stats > S32_MAX / sizeof(u64))
1901 WARN_ON_ONCE(!n_stats);
1902 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1905 stats.n_stats = n_stats;
1908 data = vzalloc(array_size(n_stats, sizeof(u64)));
1911 ops->get_ethtool_stats(dev, &stats, data);
1917 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1919 useraddr += sizeof(stats);
1920 if (n_stats && copy_to_user(useraddr, data, n_stats * sizeof(u64)))
1929 static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr)
1931 const struct ethtool_ops *ops = dev->ethtool_ops;
1932 struct phy_device *phydev = dev->phydev;
1933 struct ethtool_stats stats;
1937 if (!phydev && (!ops->get_ethtool_phy_stats || !ops->get_sset_count))
1940 if (dev->phydev && !ops->get_ethtool_phy_stats)
1941 n_stats = phy_ethtool_get_sset_count(dev->phydev);
1943 n_stats = ops->get_sset_count(dev, ETH_SS_PHY_STATS);
1946 if (n_stats > S32_MAX / sizeof(u64))
1948 WARN_ON_ONCE(!n_stats);
1950 if (copy_from_user(&stats, useraddr, sizeof(stats)))
1953 stats.n_stats = n_stats;
1956 data = vzalloc(array_size(n_stats, sizeof(u64)));
1960 if (dev->phydev && !ops->get_ethtool_phy_stats) {
1961 ret = phy_ethtool_get_stats(dev->phydev, &stats, data);
1965 ops->get_ethtool_phy_stats(dev, &stats, data);
1972 if (copy_to_user(useraddr, &stats, sizeof(stats)))
1974 useraddr += sizeof(stats);
1975 if (n_stats && copy_to_user(useraddr, data, n_stats * sizeof(u64)))
1984 static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
1986 struct ethtool_perm_addr epaddr;
1988 if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
1991 if (epaddr.size < dev->addr_len)
1993 epaddr.size = dev->addr_len;
1995 if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
1997 useraddr += sizeof(epaddr);
1998 if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
2003 static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
2004 u32 cmd, u32 (*actor)(struct net_device *))
2006 struct ethtool_value edata = { .cmd = cmd };
2011 edata.data = actor(dev);
2013 if (copy_to_user(useraddr, &edata, sizeof(edata)))
2018 static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
2019 void (*actor)(struct net_device *, u32))
2021 struct ethtool_value edata;
2026 if (copy_from_user(&edata, useraddr, sizeof(edata)))
2029 actor(dev, edata.data);
2033 static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
2034 int (*actor)(struct net_device *, u32))
2036 struct ethtool_value edata;
2041 if (copy_from_user(&edata, useraddr, sizeof(edata)))
2044 return actor(dev, edata.data);
2047 static noinline_for_stack int ethtool_flash_device(struct net_device *dev,
2048 char __user *useraddr)
2050 struct ethtool_flash efl;
2052 if (copy_from_user(&efl, useraddr, sizeof(efl)))
2054 efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0;
2056 if (!dev->ethtool_ops->flash_device)
2057 return devlink_compat_flash_update(dev, efl.data);
2059 return dev->ethtool_ops->flash_device(dev, &efl);
2062 static int ethtool_set_dump(struct net_device *dev,
2063 void __user *useraddr)
2065 struct ethtool_dump dump;
2067 if (!dev->ethtool_ops->set_dump)
2070 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2073 return dev->ethtool_ops->set_dump(dev, &dump);
2076 static int ethtool_get_dump_flag(struct net_device *dev,
2077 void __user *useraddr)
2080 struct ethtool_dump dump;
2081 const struct ethtool_ops *ops = dev->ethtool_ops;
2083 if (!ops->get_dump_flag)
2086 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2089 ret = ops->get_dump_flag(dev, &dump);
2093 if (copy_to_user(useraddr, &dump, sizeof(dump)))
2098 static int ethtool_get_dump_data(struct net_device *dev,
2099 void __user *useraddr)
2103 struct ethtool_dump dump, tmp;
2104 const struct ethtool_ops *ops = dev->ethtool_ops;
2107 if (!ops->get_dump_data || !ops->get_dump_flag)
2110 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2113 memset(&tmp, 0, sizeof(tmp));
2114 tmp.cmd = ETHTOOL_GET_DUMP_FLAG;
2115 ret = ops->get_dump_flag(dev, &tmp);
2119 len = min(tmp.len, dump.len);
2123 /* Don't ever let the driver think there's more space available
2124 * than it requested with .get_dump_flag().
2128 /* Always allocate enough space to hold the whole thing so that the
2129 * driver does not need to check the length and bother with partial
2132 data = vzalloc(tmp.len);
2135 ret = ops->get_dump_data(dev, &dump, data);
2139 /* There are two sane possibilities:
2140 * 1. The driver's .get_dump_data() does not touch dump.len.
2141 * 2. Or it may set dump.len to how much it really writes, which
2142 * should be tmp.len (or len if it can do a partial dump).
2143 * In any case respond to userspace with the actual length of data
2146 WARN_ON(dump.len != len && dump.len != tmp.len);
2149 if (copy_to_user(useraddr, &dump, sizeof(dump))) {
2153 useraddr += offsetof(struct ethtool_dump, data);
2154 if (copy_to_user(useraddr, data, len))
2161 static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr)
2164 struct ethtool_ts_info info;
2165 const struct ethtool_ops *ops = dev->ethtool_ops;
2166 struct phy_device *phydev = dev->phydev;
2168 memset(&info, 0, sizeof(info));
2169 info.cmd = ETHTOOL_GET_TS_INFO;
2171 if (phydev && phydev->drv && phydev->drv->ts_info) {
2172 err = phydev->drv->ts_info(phydev, &info);
2173 } else if (ops->get_ts_info) {
2174 err = ops->get_ts_info(dev, &info);
2176 info.so_timestamping =
2177 SOF_TIMESTAMPING_RX_SOFTWARE |
2178 SOF_TIMESTAMPING_SOFTWARE;
2179 info.phc_index = -1;
2185 if (copy_to_user(useraddr, &info, sizeof(info)))
2191 static int __ethtool_get_module_info(struct net_device *dev,
2192 struct ethtool_modinfo *modinfo)
2194 const struct ethtool_ops *ops = dev->ethtool_ops;
2195 struct phy_device *phydev = dev->phydev;
2198 return sfp_get_module_info(dev->sfp_bus, modinfo);
2200 if (phydev && phydev->drv && phydev->drv->module_info)
2201 return phydev->drv->module_info(phydev, modinfo);
2203 if (ops->get_module_info)
2204 return ops->get_module_info(dev, modinfo);
2209 static int ethtool_get_module_info(struct net_device *dev,
2210 void __user *useraddr)
2213 struct ethtool_modinfo modinfo;
2215 if (copy_from_user(&modinfo, useraddr, sizeof(modinfo)))
2218 ret = __ethtool_get_module_info(dev, &modinfo);
2222 if (copy_to_user(useraddr, &modinfo, sizeof(modinfo)))
2228 static int __ethtool_get_module_eeprom(struct net_device *dev,
2229 struct ethtool_eeprom *ee, u8 *data)
2231 const struct ethtool_ops *ops = dev->ethtool_ops;
2232 struct phy_device *phydev = dev->phydev;
2235 return sfp_get_module_eeprom(dev->sfp_bus, ee, data);
2237 if (phydev && phydev->drv && phydev->drv->module_eeprom)
2238 return phydev->drv->module_eeprom(phydev, ee, data);
2240 if (ops->get_module_eeprom)
2241 return ops->get_module_eeprom(dev, ee, data);
2246 static int ethtool_get_module_eeprom(struct net_device *dev,
2247 void __user *useraddr)
2250 struct ethtool_modinfo modinfo;
2252 ret = __ethtool_get_module_info(dev, &modinfo);
2256 return ethtool_get_any_eeprom(dev, useraddr,
2257 __ethtool_get_module_eeprom,
2258 modinfo.eeprom_len);
2261 static int ethtool_tunable_valid(const struct ethtool_tunable *tuna)
2264 case ETHTOOL_RX_COPYBREAK:
2265 case ETHTOOL_TX_COPYBREAK:
2266 if (tuna->len != sizeof(u32) ||
2267 tuna->type_id != ETHTOOL_TUNABLE_U32)
2270 case ETHTOOL_PFC_PREVENTION_TOUT:
2271 if (tuna->len != sizeof(u16) ||
2272 tuna->type_id != ETHTOOL_TUNABLE_U16)
2282 static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr)
2285 struct ethtool_tunable tuna;
2286 const struct ethtool_ops *ops = dev->ethtool_ops;
2289 if (!ops->get_tunable)
2291 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2293 ret = ethtool_tunable_valid(&tuna);
2296 data = kmalloc(tuna.len, GFP_USER);
2299 ret = ops->get_tunable(dev, &tuna, data);
2302 useraddr += sizeof(tuna);
2304 if (copy_to_user(useraddr, data, tuna.len))
2313 static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr)
2316 struct ethtool_tunable tuna;
2317 const struct ethtool_ops *ops = dev->ethtool_ops;
2320 if (!ops->set_tunable)
2322 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2324 ret = ethtool_tunable_valid(&tuna);
2327 useraddr += sizeof(tuna);
2328 data = memdup_user(useraddr, tuna.len);
2330 return PTR_ERR(data);
2331 ret = ops->set_tunable(dev, &tuna, data);
2337 static noinline_for_stack int
2338 ethtool_get_per_queue_coalesce(struct net_device *dev,
2339 void __user *useraddr,
2340 struct ethtool_per_queue_op *per_queue_opt)
2344 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2346 if (!dev->ethtool_ops->get_per_queue_coalesce)
2349 useraddr += sizeof(*per_queue_opt);
2351 bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask,
2354 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2355 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
2357 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, &coalesce);
2360 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
2362 useraddr += sizeof(coalesce);
2368 static noinline_for_stack int
2369 ethtool_set_per_queue_coalesce(struct net_device *dev,
2370 void __user *useraddr,
2371 struct ethtool_per_queue_op *per_queue_opt)
2376 struct ethtool_coalesce *backup = NULL, *tmp = NULL;
2377 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2379 if ((!dev->ethtool_ops->set_per_queue_coalesce) ||
2380 (!dev->ethtool_ops->get_per_queue_coalesce))
2383 useraddr += sizeof(*per_queue_opt);
2385 bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask, MAX_NUM_QUEUE);
2386 n_queue = bitmap_weight(queue_mask, MAX_NUM_QUEUE);
2387 tmp = backup = kmalloc_array(n_queue, sizeof(*backup), GFP_KERNEL);
2391 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2392 struct ethtool_coalesce coalesce;
2394 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, tmp);
2400 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) {
2405 ret = dev->ethtool_ops->set_per_queue_coalesce(dev, bit, &coalesce);
2409 useraddr += sizeof(coalesce);
2415 for_each_set_bit(i, queue_mask, bit) {
2416 dev->ethtool_ops->set_per_queue_coalesce(dev, i, tmp);
2425 static int noinline_for_stack ethtool_set_per_queue(struct net_device *dev,
2426 void __user *useraddr, u32 sub_cmd)
2428 struct ethtool_per_queue_op per_queue_opt;
2430 if (copy_from_user(&per_queue_opt, useraddr, sizeof(per_queue_opt)))
2433 if (per_queue_opt.sub_command != sub_cmd)
2436 switch (per_queue_opt.sub_command) {
2437 case ETHTOOL_GCOALESCE:
2438 return ethtool_get_per_queue_coalesce(dev, useraddr, &per_queue_opt);
2439 case ETHTOOL_SCOALESCE:
2440 return ethtool_set_per_queue_coalesce(dev, useraddr, &per_queue_opt);
2446 static int ethtool_phy_tunable_valid(const struct ethtool_tunable *tuna)
2449 case ETHTOOL_PHY_DOWNSHIFT:
2450 case ETHTOOL_PHY_FAST_LINK_DOWN:
2451 if (tuna->len != sizeof(u8) ||
2452 tuna->type_id != ETHTOOL_TUNABLE_U8)
2462 static int get_phy_tunable(struct net_device *dev, void __user *useraddr)
2465 struct ethtool_tunable tuna;
2466 struct phy_device *phydev = dev->phydev;
2469 if (!(phydev && phydev->drv && phydev->drv->get_tunable))
2472 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2474 ret = ethtool_phy_tunable_valid(&tuna);
2477 data = kmalloc(tuna.len, GFP_USER);
2480 mutex_lock(&phydev->lock);
2481 ret = phydev->drv->get_tunable(phydev, &tuna, data);
2482 mutex_unlock(&phydev->lock);
2485 useraddr += sizeof(tuna);
2487 if (copy_to_user(useraddr, data, tuna.len))
2496 static int set_phy_tunable(struct net_device *dev, void __user *useraddr)
2499 struct ethtool_tunable tuna;
2500 struct phy_device *phydev = dev->phydev;
2503 if (!(phydev && phydev->drv && phydev->drv->set_tunable))
2505 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2507 ret = ethtool_phy_tunable_valid(&tuna);
2510 useraddr += sizeof(tuna);
2511 data = memdup_user(useraddr, tuna.len);
2513 return PTR_ERR(data);
2514 mutex_lock(&phydev->lock);
2515 ret = phydev->drv->set_tunable(phydev, &tuna, data);
2516 mutex_unlock(&phydev->lock);
2522 static int ethtool_get_fecparam(struct net_device *dev, void __user *useraddr)
2524 struct ethtool_fecparam fecparam = { .cmd = ETHTOOL_GFECPARAM };
2527 if (!dev->ethtool_ops->get_fecparam)
2530 rc = dev->ethtool_ops->get_fecparam(dev, &fecparam);
2534 if (copy_to_user(useraddr, &fecparam, sizeof(fecparam)))
2539 static int ethtool_set_fecparam(struct net_device *dev, void __user *useraddr)
2541 struct ethtool_fecparam fecparam;
2543 if (!dev->ethtool_ops->set_fecparam)
2546 if (copy_from_user(&fecparam, useraddr, sizeof(fecparam)))
2549 return dev->ethtool_ops->set_fecparam(dev, &fecparam);
2552 /* The main entry point in this file. Called from net/core/dev_ioctl.c */
2554 int dev_ethtool(struct net *net, struct ifreq *ifr)
2556 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
2557 void __user *useraddr = ifr->ifr_data;
2558 u32 ethcmd, sub_cmd;
2560 netdev_features_t old_features;
2562 if (!dev || !netif_device_present(dev))
2565 if (copy_from_user(ðcmd, useraddr, sizeof(ethcmd)))
2568 if (ethcmd == ETHTOOL_PERQUEUE) {
2569 if (copy_from_user(&sub_cmd, useraddr + sizeof(ethcmd), sizeof(sub_cmd)))
2574 /* Allow some commands to be done by anyone */
2577 case ETHTOOL_GDRVINFO:
2578 case ETHTOOL_GMSGLVL:
2580 case ETHTOOL_GCOALESCE:
2581 case ETHTOOL_GRINGPARAM:
2582 case ETHTOOL_GPAUSEPARAM:
2583 case ETHTOOL_GRXCSUM:
2584 case ETHTOOL_GTXCSUM:
2586 case ETHTOOL_GSSET_INFO:
2587 case ETHTOOL_GSTRINGS:
2588 case ETHTOOL_GSTATS:
2589 case ETHTOOL_GPHYSTATS:
2591 case ETHTOOL_GPERMADDR:
2595 case ETHTOOL_GFLAGS:
2596 case ETHTOOL_GPFLAGS:
2598 case ETHTOOL_GRXRINGS:
2599 case ETHTOOL_GRXCLSRLCNT:
2600 case ETHTOOL_GRXCLSRULE:
2601 case ETHTOOL_GRXCLSRLALL:
2602 case ETHTOOL_GRXFHINDIR:
2604 case ETHTOOL_GFEATURES:
2605 case ETHTOOL_GCHANNELS:
2606 case ETHTOOL_GET_TS_INFO:
2608 case ETHTOOL_GTUNABLE:
2609 case ETHTOOL_PHY_GTUNABLE:
2610 case ETHTOOL_GLINKSETTINGS:
2611 case ETHTOOL_GFECPARAM:
2614 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
2618 if (dev->ethtool_ops->begin) {
2619 rc = dev->ethtool_ops->begin(dev);
2623 old_features = dev->features;
2627 rc = ethtool_get_settings(dev, useraddr);
2630 rc = ethtool_set_settings(dev, useraddr);
2632 case ETHTOOL_GDRVINFO:
2633 rc = ethtool_get_drvinfo(dev, useraddr);
2636 rc = ethtool_get_regs(dev, useraddr);
2639 rc = ethtool_get_wol(dev, useraddr);
2642 rc = ethtool_set_wol(dev, useraddr);
2644 case ETHTOOL_GMSGLVL:
2645 rc = ethtool_get_value(dev, useraddr, ethcmd,
2646 dev->ethtool_ops->get_msglevel);
2648 case ETHTOOL_SMSGLVL:
2649 rc = ethtool_set_value_void(dev, useraddr,
2650 dev->ethtool_ops->set_msglevel);
2653 rc = ethtool_get_eee(dev, useraddr);
2656 rc = ethtool_set_eee(dev, useraddr);
2658 case ETHTOOL_NWAY_RST:
2659 rc = ethtool_nway_reset(dev);
2662 rc = ethtool_get_link(dev, useraddr);
2664 case ETHTOOL_GEEPROM:
2665 rc = ethtool_get_eeprom(dev, useraddr);
2667 case ETHTOOL_SEEPROM:
2668 rc = ethtool_set_eeprom(dev, useraddr);
2670 case ETHTOOL_GCOALESCE:
2671 rc = ethtool_get_coalesce(dev, useraddr);
2673 case ETHTOOL_SCOALESCE:
2674 rc = ethtool_set_coalesce(dev, useraddr);
2676 case ETHTOOL_GRINGPARAM:
2677 rc = ethtool_get_ringparam(dev, useraddr);
2679 case ETHTOOL_SRINGPARAM:
2680 rc = ethtool_set_ringparam(dev, useraddr);
2682 case ETHTOOL_GPAUSEPARAM:
2683 rc = ethtool_get_pauseparam(dev, useraddr);
2685 case ETHTOOL_SPAUSEPARAM:
2686 rc = ethtool_set_pauseparam(dev, useraddr);
2689 rc = ethtool_self_test(dev, useraddr);
2691 case ETHTOOL_GSTRINGS:
2692 rc = ethtool_get_strings(dev, useraddr);
2694 case ETHTOOL_PHYS_ID:
2695 rc = ethtool_phys_id(dev, useraddr);
2697 case ETHTOOL_GSTATS:
2698 rc = ethtool_get_stats(dev, useraddr);
2700 case ETHTOOL_GPERMADDR:
2701 rc = ethtool_get_perm_addr(dev, useraddr);
2703 case ETHTOOL_GFLAGS:
2704 rc = ethtool_get_value(dev, useraddr, ethcmd,
2705 __ethtool_get_flags);
2707 case ETHTOOL_SFLAGS:
2708 rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags);
2710 case ETHTOOL_GPFLAGS:
2711 rc = ethtool_get_value(dev, useraddr, ethcmd,
2712 dev->ethtool_ops->get_priv_flags);
2714 case ETHTOOL_SPFLAGS:
2715 rc = ethtool_set_value(dev, useraddr,
2716 dev->ethtool_ops->set_priv_flags);
2719 case ETHTOOL_GRXRINGS:
2720 case ETHTOOL_GRXCLSRLCNT:
2721 case ETHTOOL_GRXCLSRULE:
2722 case ETHTOOL_GRXCLSRLALL:
2723 rc = ethtool_get_rxnfc(dev, ethcmd, useraddr);
2726 case ETHTOOL_SRXCLSRLDEL:
2727 case ETHTOOL_SRXCLSRLINS:
2728 rc = ethtool_set_rxnfc(dev, ethcmd, useraddr);
2730 case ETHTOOL_FLASHDEV:
2731 rc = ethtool_flash_device(dev, useraddr);
2734 rc = ethtool_reset(dev, useraddr);
2736 case ETHTOOL_GSSET_INFO:
2737 rc = ethtool_get_sset_info(dev, useraddr);
2739 case ETHTOOL_GRXFHINDIR:
2740 rc = ethtool_get_rxfh_indir(dev, useraddr);
2742 case ETHTOOL_SRXFHINDIR:
2743 rc = ethtool_set_rxfh_indir(dev, useraddr);
2746 rc = ethtool_get_rxfh(dev, useraddr);
2749 rc = ethtool_set_rxfh(dev, useraddr);
2751 case ETHTOOL_GFEATURES:
2752 rc = ethtool_get_features(dev, useraddr);
2754 case ETHTOOL_SFEATURES:
2755 rc = ethtool_set_features(dev, useraddr);
2757 case ETHTOOL_GTXCSUM:
2758 case ETHTOOL_GRXCSUM:
2763 rc = ethtool_get_one_feature(dev, useraddr, ethcmd);
2765 case ETHTOOL_STXCSUM:
2766 case ETHTOOL_SRXCSUM:
2771 rc = ethtool_set_one_feature(dev, useraddr, ethcmd);
2773 case ETHTOOL_GCHANNELS:
2774 rc = ethtool_get_channels(dev, useraddr);
2776 case ETHTOOL_SCHANNELS:
2777 rc = ethtool_set_channels(dev, useraddr);
2779 case ETHTOOL_SET_DUMP:
2780 rc = ethtool_set_dump(dev, useraddr);
2782 case ETHTOOL_GET_DUMP_FLAG:
2783 rc = ethtool_get_dump_flag(dev, useraddr);
2785 case ETHTOOL_GET_DUMP_DATA:
2786 rc = ethtool_get_dump_data(dev, useraddr);
2788 case ETHTOOL_GET_TS_INFO:
2789 rc = ethtool_get_ts_info(dev, useraddr);
2791 case ETHTOOL_GMODULEINFO:
2792 rc = ethtool_get_module_info(dev, useraddr);
2794 case ETHTOOL_GMODULEEEPROM:
2795 rc = ethtool_get_module_eeprom(dev, useraddr);
2797 case ETHTOOL_GTUNABLE:
2798 rc = ethtool_get_tunable(dev, useraddr);
2800 case ETHTOOL_STUNABLE:
2801 rc = ethtool_set_tunable(dev, useraddr);
2803 case ETHTOOL_GPHYSTATS:
2804 rc = ethtool_get_phy_stats(dev, useraddr);
2806 case ETHTOOL_PERQUEUE:
2807 rc = ethtool_set_per_queue(dev, useraddr, sub_cmd);
2809 case ETHTOOL_GLINKSETTINGS:
2810 rc = ethtool_get_link_ksettings(dev, useraddr);
2812 case ETHTOOL_SLINKSETTINGS:
2813 rc = ethtool_set_link_ksettings(dev, useraddr);
2815 case ETHTOOL_PHY_GTUNABLE:
2816 rc = get_phy_tunable(dev, useraddr);
2818 case ETHTOOL_PHY_STUNABLE:
2819 rc = set_phy_tunable(dev, useraddr);
2821 case ETHTOOL_GFECPARAM:
2822 rc = ethtool_get_fecparam(dev, useraddr);
2824 case ETHTOOL_SFECPARAM:
2825 rc = ethtool_set_fecparam(dev, useraddr);
2831 if (dev->ethtool_ops->complete)
2832 dev->ethtool_ops->complete(dev);
2834 if (old_features != dev->features)
2835 netdev_features_change(dev);
2840 struct ethtool_rx_flow_key {
2841 struct flow_dissector_key_basic basic;
2843 struct flow_dissector_key_ipv4_addrs ipv4;
2844 struct flow_dissector_key_ipv6_addrs ipv6;
2846 struct flow_dissector_key_ports tp;
2847 struct flow_dissector_key_ip ip;
2848 struct flow_dissector_key_vlan vlan;
2849 struct flow_dissector_key_eth_addrs eth_addrs;
2850 } __aligned(BITS_PER_LONG / 8); /* Ensure that we can do comparisons as longs. */
2852 struct ethtool_rx_flow_match {
2853 struct flow_dissector dissector;
2854 struct ethtool_rx_flow_key key;
2855 struct ethtool_rx_flow_key mask;
2858 struct ethtool_rx_flow_rule *
2859 ethtool_rx_flow_rule_create(const struct ethtool_rx_flow_spec_input *input)
2861 const struct ethtool_rx_flow_spec *fs = input->fs;
2862 static struct in6_addr zero_addr = {};
2863 struct ethtool_rx_flow_match *match;
2864 struct ethtool_rx_flow_rule *flow;
2865 struct flow_action_entry *act;
2867 flow = kzalloc(sizeof(struct ethtool_rx_flow_rule) +
2868 sizeof(struct ethtool_rx_flow_match), GFP_KERNEL);
2870 return ERR_PTR(-ENOMEM);
2872 /* ethtool_rx supports only one single action per rule. */
2873 flow->rule = flow_rule_alloc(1);
2876 return ERR_PTR(-ENOMEM);
2879 match = (struct ethtool_rx_flow_match *)flow->priv;
2880 flow->rule->match.dissector = &match->dissector;
2881 flow->rule->match.mask = &match->mask;
2882 flow->rule->match.key = &match->key;
2884 match->mask.basic.n_proto = htons(0xffff);
2886 switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) {
2889 const struct ethtool_tcpip4_spec *v4_spec, *v4_m_spec;
2891 match->key.basic.n_proto = htons(ETH_P_IP);
2893 v4_spec = &fs->h_u.tcp_ip4_spec;
2894 v4_m_spec = &fs->m_u.tcp_ip4_spec;
2896 if (v4_m_spec->ip4src) {
2897 match->key.ipv4.src = v4_spec->ip4src;
2898 match->mask.ipv4.src = v4_m_spec->ip4src;
2900 if (v4_m_spec->ip4dst) {
2901 match->key.ipv4.dst = v4_spec->ip4dst;
2902 match->mask.ipv4.dst = v4_m_spec->ip4dst;
2904 if (v4_m_spec->ip4src ||
2905 v4_m_spec->ip4dst) {
2906 match->dissector.used_keys |=
2907 BIT(FLOW_DISSECTOR_KEY_IPV4_ADDRS);
2908 match->dissector.offset[FLOW_DISSECTOR_KEY_IPV4_ADDRS] =
2909 offsetof(struct ethtool_rx_flow_key, ipv4);
2911 if (v4_m_spec->psrc) {
2912 match->key.tp.src = v4_spec->psrc;
2913 match->mask.tp.src = v4_m_spec->psrc;
2915 if (v4_m_spec->pdst) {
2916 match->key.tp.dst = v4_spec->pdst;
2917 match->mask.tp.dst = v4_m_spec->pdst;
2919 if (v4_m_spec->psrc ||
2921 match->dissector.used_keys |=
2922 BIT(FLOW_DISSECTOR_KEY_PORTS);
2923 match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] =
2924 offsetof(struct ethtool_rx_flow_key, tp);
2926 if (v4_m_spec->tos) {
2927 match->key.ip.tos = v4_spec->tos;
2928 match->mask.ip.tos = v4_m_spec->tos;
2929 match->dissector.used_keys |=
2930 BIT(FLOW_DISSECTOR_KEY_IP);
2931 match->dissector.offset[FLOW_DISSECTOR_KEY_IP] =
2932 offsetof(struct ethtool_rx_flow_key, ip);
2938 const struct ethtool_tcpip6_spec *v6_spec, *v6_m_spec;
2940 match->key.basic.n_proto = htons(ETH_P_IPV6);
2942 v6_spec = &fs->h_u.tcp_ip6_spec;
2943 v6_m_spec = &fs->m_u.tcp_ip6_spec;
2944 if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr))) {
2945 memcpy(&match->key.ipv6.src, v6_spec->ip6src,
2946 sizeof(match->key.ipv6.src));
2947 memcpy(&match->mask.ipv6.src, v6_m_spec->ip6src,
2948 sizeof(match->mask.ipv6.src));
2950 if (memcmp(v6_m_spec->ip6dst, &zero_addr, sizeof(zero_addr))) {
2951 memcpy(&match->key.ipv6.dst, v6_spec->ip6dst,
2952 sizeof(match->key.ipv6.dst));
2953 memcpy(&match->mask.ipv6.dst, v6_m_spec->ip6dst,
2954 sizeof(match->mask.ipv6.dst));
2956 if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr)) ||
2957 memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr))) {
2958 match->dissector.used_keys |=
2959 BIT(FLOW_DISSECTOR_KEY_IPV6_ADDRS);
2960 match->dissector.offset[FLOW_DISSECTOR_KEY_IPV6_ADDRS] =
2961 offsetof(struct ethtool_rx_flow_key, ipv6);
2963 if (v6_m_spec->psrc) {
2964 match->key.tp.src = v6_spec->psrc;
2965 match->mask.tp.src = v6_m_spec->psrc;
2967 if (v6_m_spec->pdst) {
2968 match->key.tp.dst = v6_spec->pdst;
2969 match->mask.tp.dst = v6_m_spec->pdst;
2971 if (v6_m_spec->psrc ||
2973 match->dissector.used_keys |=
2974 BIT(FLOW_DISSECTOR_KEY_PORTS);
2975 match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] =
2976 offsetof(struct ethtool_rx_flow_key, tp);
2978 if (v6_m_spec->tclass) {
2979 match->key.ip.tos = v6_spec->tclass;
2980 match->mask.ip.tos = v6_m_spec->tclass;
2981 match->dissector.used_keys |=
2982 BIT(FLOW_DISSECTOR_KEY_IP);
2983 match->dissector.offset[FLOW_DISSECTOR_KEY_IP] =
2984 offsetof(struct ethtool_rx_flow_key, ip);
2989 ethtool_rx_flow_rule_destroy(flow);
2990 return ERR_PTR(-EINVAL);
2993 switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) {
2996 match->key.basic.ip_proto = IPPROTO_TCP;
3000 match->key.basic.ip_proto = IPPROTO_UDP;
3003 match->mask.basic.ip_proto = 0xff;
3005 match->dissector.used_keys |= BIT(FLOW_DISSECTOR_KEY_BASIC);
3006 match->dissector.offset[FLOW_DISSECTOR_KEY_BASIC] =
3007 offsetof(struct ethtool_rx_flow_key, basic);
3009 if (fs->flow_type & FLOW_EXT) {
3010 const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext;
3011 const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext;
3013 if (ext_m_spec->vlan_etype &&
3014 ext_m_spec->vlan_tci) {
3015 match->key.vlan.vlan_tpid = ext_h_spec->vlan_etype;
3016 match->mask.vlan.vlan_tpid = ext_m_spec->vlan_etype;
3018 match->key.vlan.vlan_id =
3019 ntohs(ext_h_spec->vlan_tci) & 0x0fff;
3020 match->mask.vlan.vlan_id =
3021 ntohs(ext_m_spec->vlan_tci) & 0x0fff;
3023 match->key.vlan.vlan_priority =
3024 (ntohs(ext_h_spec->vlan_tci) & 0xe000) >> 13;
3025 match->mask.vlan.vlan_priority =
3026 (ntohs(ext_m_spec->vlan_tci) & 0xe000) >> 13;
3028 match->dissector.used_keys |=
3029 BIT(FLOW_DISSECTOR_KEY_VLAN);
3030 match->dissector.offset[FLOW_DISSECTOR_KEY_VLAN] =
3031 offsetof(struct ethtool_rx_flow_key, vlan);
3034 if (fs->flow_type & FLOW_MAC_EXT) {
3035 const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext;
3036 const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext;
3038 memcpy(match->key.eth_addrs.dst, ext_h_spec->h_dest,
3040 memcpy(match->mask.eth_addrs.dst, ext_m_spec->h_dest,
3043 match->dissector.used_keys |=
3044 BIT(FLOW_DISSECTOR_KEY_ETH_ADDRS);
3045 match->dissector.offset[FLOW_DISSECTOR_KEY_ETH_ADDRS] =
3046 offsetof(struct ethtool_rx_flow_key, eth_addrs);
3049 act = &flow->rule->action.entries[0];
3050 switch (fs->ring_cookie) {
3051 case RX_CLS_FLOW_DISC:
3052 act->id = FLOW_ACTION_DROP;
3054 case RX_CLS_FLOW_WAKE:
3055 act->id = FLOW_ACTION_WAKE;
3058 act->id = FLOW_ACTION_QUEUE;
3059 if (fs->flow_type & FLOW_RSS)
3060 act->queue.ctx = input->rss_ctx;
3062 act->queue.vf = ethtool_get_flow_spec_ring_vf(fs->ring_cookie);
3063 act->queue.index = ethtool_get_flow_spec_ring(fs->ring_cookie);
3069 EXPORT_SYMBOL(ethtool_rx_flow_rule_create);
3071 void ethtool_rx_flow_rule_destroy(struct ethtool_rx_flow_rule *flow)
3076 EXPORT_SYMBOL(ethtool_rx_flow_rule_destroy);