Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / net / core / ethtool.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * net/core/ethtool.c - Ethtool ioctl handler
4  * Copyright (c) 2003 Matthew Wilcox <matthew@wil.cx>
5  *
6  * This file is where we call all the ethtool_ops commands to get
7  * the information ethtool needs.
8  */
9
10 #include <linux/module.h>
11 #include <linux/types.h>
12 #include <linux/capability.h>
13 #include <linux/errno.h>
14 #include <linux/ethtool.h>
15 #include <linux/netdevice.h>
16 #include <linux/net_tstamp.h>
17 #include <linux/phy.h>
18 #include <linux/bitops.h>
19 #include <linux/uaccess.h>
20 #include <linux/vmalloc.h>
21 #include <linux/sfp.h>
22 #include <linux/slab.h>
23 #include <linux/rtnetlink.h>
24 #include <linux/sched/signal.h>
25 #include <linux/net.h>
26 #include <net/devlink.h>
27 #include <net/xdp_sock.h>
28 #include <net/flow_offload.h>
29
30 /*
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.
34  */
35
36 u32 ethtool_op_get_link(struct net_device *dev)
37 {
38         return netif_carrier_ok(dev) ? 1 : 0;
39 }
40 EXPORT_SYMBOL(ethtool_op_get_link);
41
42 int ethtool_op_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
43 {
44         info->so_timestamping =
45                 SOF_TIMESTAMPING_TX_SOFTWARE |
46                 SOF_TIMESTAMPING_RX_SOFTWARE |
47                 SOF_TIMESTAMPING_SOFTWARE;
48         info->phc_index = -1;
49         return 0;
50 }
51 EXPORT_SYMBOL(ethtool_op_get_ts_info);
52
53 /* Handlers for each ethtool command */
54
55 #define ETHTOOL_DEV_FEATURE_WORDS       ((NETDEV_FEATURE_COUNT + 31) / 32)
56
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",
65
66         [NETIF_F_HW_VLAN_CTAG_RX_BIT] =  "rx-vlan-hw-parse",
67         [NETIF_F_HW_VLAN_CTAG_FILTER_BIT] = "rx-vlan-filter",
68         [NETIF_F_HW_VLAN_STAG_TX_BIT] =  "tx-vlan-stag-hw-insert",
69         [NETIF_F_HW_VLAN_STAG_RX_BIT] =  "rx-vlan-stag-hw-parse",
70         [NETIF_F_HW_VLAN_STAG_FILTER_BIT] = "rx-vlan-stag-filter",
71         [NETIF_F_VLAN_CHALLENGED_BIT] =  "vlan-challenged",
72         [NETIF_F_GSO_BIT] =              "tx-generic-segmentation",
73         [NETIF_F_LLTX_BIT] =             "tx-lockless",
74         [NETIF_F_NETNS_LOCAL_BIT] =      "netns-local",
75         [NETIF_F_GRO_BIT] =              "rx-gro",
76         [NETIF_F_GRO_HW_BIT] =           "rx-gro-hw",
77         [NETIF_F_LRO_BIT] =              "rx-lro",
78
79         [NETIF_F_TSO_BIT] =              "tx-tcp-segmentation",
80         [NETIF_F_GSO_ROBUST_BIT] =       "tx-gso-robust",
81         [NETIF_F_TSO_ECN_BIT] =          "tx-tcp-ecn-segmentation",
82         [NETIF_F_TSO_MANGLEID_BIT] =     "tx-tcp-mangleid-segmentation",
83         [NETIF_F_TSO6_BIT] =             "tx-tcp6-segmentation",
84         [NETIF_F_FSO_BIT] =              "tx-fcoe-segmentation",
85         [NETIF_F_GSO_GRE_BIT] =          "tx-gre-segmentation",
86         [NETIF_F_GSO_GRE_CSUM_BIT] =     "tx-gre-csum-segmentation",
87         [NETIF_F_GSO_IPXIP4_BIT] =       "tx-ipxip4-segmentation",
88         [NETIF_F_GSO_IPXIP6_BIT] =       "tx-ipxip6-segmentation",
89         [NETIF_F_GSO_UDP_TUNNEL_BIT] =   "tx-udp_tnl-segmentation",
90         [NETIF_F_GSO_UDP_TUNNEL_CSUM_BIT] = "tx-udp_tnl-csum-segmentation",
91         [NETIF_F_GSO_PARTIAL_BIT] =      "tx-gso-partial",
92         [NETIF_F_GSO_SCTP_BIT] =         "tx-sctp-segmentation",
93         [NETIF_F_GSO_ESP_BIT] =          "tx-esp-segmentation",
94         [NETIF_F_GSO_UDP_L4_BIT] =       "tx-udp-segmentation",
95
96         [NETIF_F_FCOE_CRC_BIT] =         "tx-checksum-fcoe-crc",
97         [NETIF_F_SCTP_CRC_BIT] =        "tx-checksum-sctp",
98         [NETIF_F_FCOE_MTU_BIT] =         "fcoe-mtu",
99         [NETIF_F_NTUPLE_BIT] =           "rx-ntuple-filter",
100         [NETIF_F_RXHASH_BIT] =           "rx-hashing",
101         [NETIF_F_RXCSUM_BIT] =           "rx-checksum",
102         [NETIF_F_NOCACHE_COPY_BIT] =     "tx-nocache-copy",
103         [NETIF_F_LOOPBACK_BIT] =         "loopback",
104         [NETIF_F_RXFCS_BIT] =            "rx-fcs",
105         [NETIF_F_RXALL_BIT] =            "rx-all",
106         [NETIF_F_HW_L2FW_DOFFLOAD_BIT] = "l2-fwd-offload",
107         [NETIF_F_HW_TC_BIT] =            "hw-tc-offload",
108         [NETIF_F_HW_ESP_BIT] =           "esp-hw-offload",
109         [NETIF_F_HW_ESP_TX_CSUM_BIT] =   "esp-tx-csum-hw-offload",
110         [NETIF_F_RX_UDP_TUNNEL_PORT_BIT] =       "rx-udp_tunnel-port-offload",
111         [NETIF_F_HW_TLS_RECORD_BIT] =   "tls-hw-record",
112         [NETIF_F_HW_TLS_TX_BIT] =        "tls-hw-tx-offload",
113         [NETIF_F_HW_TLS_RX_BIT] =        "tls-hw-rx-offload",
114 };
115
116 static const char
117 rss_hash_func_strings[ETH_RSS_HASH_FUNCS_COUNT][ETH_GSTRING_LEN] = {
118         [ETH_RSS_HASH_TOP_BIT] =        "toeplitz",
119         [ETH_RSS_HASH_XOR_BIT] =        "xor",
120         [ETH_RSS_HASH_CRC32_BIT] =      "crc32",
121 };
122
123 static const char
124 tunable_strings[__ETHTOOL_TUNABLE_COUNT][ETH_GSTRING_LEN] = {
125         [ETHTOOL_ID_UNSPEC]     = "Unspec",
126         [ETHTOOL_RX_COPYBREAK]  = "rx-copybreak",
127         [ETHTOOL_TX_COPYBREAK]  = "tx-copybreak",
128         [ETHTOOL_PFC_PREVENTION_TOUT] = "pfc-prevention-tout",
129 };
130
131 static const char
132 phy_tunable_strings[__ETHTOOL_PHY_TUNABLE_COUNT][ETH_GSTRING_LEN] = {
133         [ETHTOOL_ID_UNSPEC]     = "Unspec",
134         [ETHTOOL_PHY_DOWNSHIFT] = "phy-downshift",
135         [ETHTOOL_PHY_FAST_LINK_DOWN] = "phy-fast-link-down",
136 };
137
138 static int ethtool_get_features(struct net_device *dev, void __user *useraddr)
139 {
140         struct ethtool_gfeatures cmd = {
141                 .cmd = ETHTOOL_GFEATURES,
142                 .size = ETHTOOL_DEV_FEATURE_WORDS,
143         };
144         struct ethtool_get_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
145         u32 __user *sizeaddr;
146         u32 copy_size;
147         int i;
148
149         /* in case feature bits run out again */
150         BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS * sizeof(u32) > sizeof(netdev_features_t));
151
152         for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
153                 features[i].available = (u32)(dev->hw_features >> (32 * i));
154                 features[i].requested = (u32)(dev->wanted_features >> (32 * i));
155                 features[i].active = (u32)(dev->features >> (32 * i));
156                 features[i].never_changed =
157                         (u32)(NETIF_F_NEVER_CHANGE >> (32 * i));
158         }
159
160         sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size);
161         if (get_user(copy_size, sizeaddr))
162                 return -EFAULT;
163
164         if (copy_size > ETHTOOL_DEV_FEATURE_WORDS)
165                 copy_size = ETHTOOL_DEV_FEATURE_WORDS;
166
167         if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
168                 return -EFAULT;
169         useraddr += sizeof(cmd);
170         if (copy_to_user(useraddr, features, copy_size * sizeof(*features)))
171                 return -EFAULT;
172
173         return 0;
174 }
175
176 static int ethtool_set_features(struct net_device *dev, void __user *useraddr)
177 {
178         struct ethtool_sfeatures cmd;
179         struct ethtool_set_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
180         netdev_features_t wanted = 0, valid = 0;
181         int i, ret = 0;
182
183         if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
184                 return -EFAULT;
185         useraddr += sizeof(cmd);
186
187         if (cmd.size != ETHTOOL_DEV_FEATURE_WORDS)
188                 return -EINVAL;
189
190         if (copy_from_user(features, useraddr, sizeof(features)))
191                 return -EFAULT;
192
193         for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
194                 valid |= (netdev_features_t)features[i].valid << (32 * i);
195                 wanted |= (netdev_features_t)features[i].requested << (32 * i);
196         }
197
198         if (valid & ~NETIF_F_ETHTOOL_BITS)
199                 return -EINVAL;
200
201         if (valid & ~dev->hw_features) {
202                 valid &= dev->hw_features;
203                 ret |= ETHTOOL_F_UNSUPPORTED;
204         }
205
206         dev->wanted_features &= ~valid;
207         dev->wanted_features |= wanted & valid;
208         __netdev_update_features(dev);
209
210         if ((dev->wanted_features ^ dev->features) & valid)
211                 ret |= ETHTOOL_F_WISH;
212
213         return ret;
214 }
215
216 static int __ethtool_get_sset_count(struct net_device *dev, int sset)
217 {
218         const struct ethtool_ops *ops = dev->ethtool_ops;
219
220         if (sset == ETH_SS_FEATURES)
221                 return ARRAY_SIZE(netdev_features_strings);
222
223         if (sset == ETH_SS_RSS_HASH_FUNCS)
224                 return ARRAY_SIZE(rss_hash_func_strings);
225
226         if (sset == ETH_SS_TUNABLES)
227                 return ARRAY_SIZE(tunable_strings);
228
229         if (sset == ETH_SS_PHY_TUNABLES)
230                 return ARRAY_SIZE(phy_tunable_strings);
231
232         if (sset == ETH_SS_PHY_STATS && dev->phydev &&
233             !ops->get_ethtool_phy_stats)
234                 return phy_ethtool_get_sset_count(dev->phydev);
235
236         if (ops->get_sset_count && ops->get_strings)
237                 return ops->get_sset_count(dev, sset);
238         else
239                 return -EOPNOTSUPP;
240 }
241
242 static void __ethtool_get_strings(struct net_device *dev,
243         u32 stringset, u8 *data)
244 {
245         const struct ethtool_ops *ops = dev->ethtool_ops;
246
247         if (stringset == ETH_SS_FEATURES)
248                 memcpy(data, netdev_features_strings,
249                         sizeof(netdev_features_strings));
250         else if (stringset == ETH_SS_RSS_HASH_FUNCS)
251                 memcpy(data, rss_hash_func_strings,
252                        sizeof(rss_hash_func_strings));
253         else if (stringset == ETH_SS_TUNABLES)
254                 memcpy(data, tunable_strings, sizeof(tunable_strings));
255         else if (stringset == ETH_SS_PHY_TUNABLES)
256                 memcpy(data, phy_tunable_strings, sizeof(phy_tunable_strings));
257         else if (stringset == ETH_SS_PHY_STATS && dev->phydev &&
258                  !ops->get_ethtool_phy_stats)
259                 phy_ethtool_get_strings(dev->phydev, data);
260         else
261                 /* ops->get_strings is valid because checked earlier */
262                 ops->get_strings(dev, stringset, data);
263 }
264
265 static netdev_features_t ethtool_get_feature_mask(u32 eth_cmd)
266 {
267         /* feature masks of legacy discrete ethtool ops */
268
269         switch (eth_cmd) {
270         case ETHTOOL_GTXCSUM:
271         case ETHTOOL_STXCSUM:
272                 return NETIF_F_CSUM_MASK | NETIF_F_SCTP_CRC;
273         case ETHTOOL_GRXCSUM:
274         case ETHTOOL_SRXCSUM:
275                 return NETIF_F_RXCSUM;
276         case ETHTOOL_GSG:
277         case ETHTOOL_SSG:
278                 return NETIF_F_SG;
279         case ETHTOOL_GTSO:
280         case ETHTOOL_STSO:
281                 return NETIF_F_ALL_TSO;
282         case ETHTOOL_GGSO:
283         case ETHTOOL_SGSO:
284                 return NETIF_F_GSO;
285         case ETHTOOL_GGRO:
286         case ETHTOOL_SGRO:
287                 return NETIF_F_GRO;
288         default:
289                 BUG();
290         }
291 }
292
293 static int ethtool_get_one_feature(struct net_device *dev,
294         char __user *useraddr, u32 ethcmd)
295 {
296         netdev_features_t mask = ethtool_get_feature_mask(ethcmd);
297         struct ethtool_value edata = {
298                 .cmd = ethcmd,
299                 .data = !!(dev->features & mask),
300         };
301
302         if (copy_to_user(useraddr, &edata, sizeof(edata)))
303                 return -EFAULT;
304         return 0;
305 }
306
307 static int ethtool_set_one_feature(struct net_device *dev,
308         void __user *useraddr, u32 ethcmd)
309 {
310         struct ethtool_value edata;
311         netdev_features_t mask;
312
313         if (copy_from_user(&edata, useraddr, sizeof(edata)))
314                 return -EFAULT;
315
316         mask = ethtool_get_feature_mask(ethcmd);
317         mask &= dev->hw_features;
318         if (!mask)
319                 return -EOPNOTSUPP;
320
321         if (edata.data)
322                 dev->wanted_features |= mask;
323         else
324                 dev->wanted_features &= ~mask;
325
326         __netdev_update_features(dev);
327
328         return 0;
329 }
330
331 #define ETH_ALL_FLAGS    (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
332                           ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
333 #define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
334                           NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
335                           NETIF_F_RXHASH)
336
337 static u32 __ethtool_get_flags(struct net_device *dev)
338 {
339         u32 flags = 0;
340
341         if (dev->features & NETIF_F_LRO)
342                 flags |= ETH_FLAG_LRO;
343         if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
344                 flags |= ETH_FLAG_RXVLAN;
345         if (dev->features & NETIF_F_HW_VLAN_CTAG_TX)
346                 flags |= ETH_FLAG_TXVLAN;
347         if (dev->features & NETIF_F_NTUPLE)
348                 flags |= ETH_FLAG_NTUPLE;
349         if (dev->features & NETIF_F_RXHASH)
350                 flags |= ETH_FLAG_RXHASH;
351
352         return flags;
353 }
354
355 static int __ethtool_set_flags(struct net_device *dev, u32 data)
356 {
357         netdev_features_t features = 0, changed;
358
359         if (data & ~ETH_ALL_FLAGS)
360                 return -EINVAL;
361
362         if (data & ETH_FLAG_LRO)
363                 features |= NETIF_F_LRO;
364         if (data & ETH_FLAG_RXVLAN)
365                 features |= NETIF_F_HW_VLAN_CTAG_RX;
366         if (data & ETH_FLAG_TXVLAN)
367                 features |= NETIF_F_HW_VLAN_CTAG_TX;
368         if (data & ETH_FLAG_NTUPLE)
369                 features |= NETIF_F_NTUPLE;
370         if (data & ETH_FLAG_RXHASH)
371                 features |= NETIF_F_RXHASH;
372
373         /* allow changing only bits set in hw_features */
374         changed = (features ^ dev->features) & ETH_ALL_FEATURES;
375         if (changed & ~dev->hw_features)
376                 return (changed & dev->hw_features) ? -EINVAL : -EOPNOTSUPP;
377
378         dev->wanted_features =
379                 (dev->wanted_features & ~changed) | (features & changed);
380
381         __netdev_update_features(dev);
382
383         return 0;
384 }
385
386 /* Given two link masks, AND them together and save the result in dst. */
387 void ethtool_intersect_link_masks(struct ethtool_link_ksettings *dst,
388                                   struct ethtool_link_ksettings *src)
389 {
390         unsigned int size = BITS_TO_LONGS(__ETHTOOL_LINK_MODE_MASK_NBITS);
391         unsigned int idx = 0;
392
393         for (; idx < size; idx++) {
394                 dst->link_modes.supported[idx] &=
395                         src->link_modes.supported[idx];
396                 dst->link_modes.advertising[idx] &=
397                         src->link_modes.advertising[idx];
398         }
399 }
400 EXPORT_SYMBOL(ethtool_intersect_link_masks);
401
402 void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst,
403                                              u32 legacy_u32)
404 {
405         bitmap_zero(dst, __ETHTOOL_LINK_MODE_MASK_NBITS);
406         dst[0] = legacy_u32;
407 }
408 EXPORT_SYMBOL(ethtool_convert_legacy_u32_to_link_mode);
409
410 /* return false if src had higher bits set. lower bits always updated. */
411 bool ethtool_convert_link_mode_to_legacy_u32(u32 *legacy_u32,
412                                              const unsigned long *src)
413 {
414         bool retval = true;
415
416         /* TODO: following test will soon always be true */
417         if (__ETHTOOL_LINK_MODE_MASK_NBITS > 32) {
418                 __ETHTOOL_DECLARE_LINK_MODE_MASK(ext);
419
420                 bitmap_zero(ext, __ETHTOOL_LINK_MODE_MASK_NBITS);
421                 bitmap_fill(ext, 32);
422                 bitmap_complement(ext, ext, __ETHTOOL_LINK_MODE_MASK_NBITS);
423                 if (bitmap_intersects(ext, src,
424                                       __ETHTOOL_LINK_MODE_MASK_NBITS)) {
425                         /* src mask goes beyond bit 31 */
426                         retval = false;
427                 }
428         }
429         *legacy_u32 = src[0];
430         return retval;
431 }
432 EXPORT_SYMBOL(ethtool_convert_link_mode_to_legacy_u32);
433
434 /* return false if legacy contained non-0 deprecated fields
435  * maxtxpkt/maxrxpkt. rest of ksettings always updated
436  */
437 static bool
438 convert_legacy_settings_to_link_ksettings(
439         struct ethtool_link_ksettings *link_ksettings,
440         const struct ethtool_cmd *legacy_settings)
441 {
442         bool retval = true;
443
444         memset(link_ksettings, 0, sizeof(*link_ksettings));
445
446         /* This is used to tell users that driver is still using these
447          * deprecated legacy fields, and they should not use
448          * %ETHTOOL_GLINKSETTINGS/%ETHTOOL_SLINKSETTINGS
449          */
450         if (legacy_settings->maxtxpkt ||
451             legacy_settings->maxrxpkt)
452                 retval = false;
453
454         ethtool_convert_legacy_u32_to_link_mode(
455                 link_ksettings->link_modes.supported,
456                 legacy_settings->supported);
457         ethtool_convert_legacy_u32_to_link_mode(
458                 link_ksettings->link_modes.advertising,
459                 legacy_settings->advertising);
460         ethtool_convert_legacy_u32_to_link_mode(
461                 link_ksettings->link_modes.lp_advertising,
462                 legacy_settings->lp_advertising);
463         link_ksettings->base.speed
464                 = ethtool_cmd_speed(legacy_settings);
465         link_ksettings->base.duplex
466                 = legacy_settings->duplex;
467         link_ksettings->base.port
468                 = legacy_settings->port;
469         link_ksettings->base.phy_address
470                 = legacy_settings->phy_address;
471         link_ksettings->base.autoneg
472                 = legacy_settings->autoneg;
473         link_ksettings->base.mdio_support
474                 = legacy_settings->mdio_support;
475         link_ksettings->base.eth_tp_mdix
476                 = legacy_settings->eth_tp_mdix;
477         link_ksettings->base.eth_tp_mdix_ctrl
478                 = legacy_settings->eth_tp_mdix_ctrl;
479         return retval;
480 }
481
482 /* return false if ksettings link modes had higher bits
483  * set. legacy_settings always updated (best effort)
484  */
485 static bool
486 convert_link_ksettings_to_legacy_settings(
487         struct ethtool_cmd *legacy_settings,
488         const struct ethtool_link_ksettings *link_ksettings)
489 {
490         bool retval = true;
491
492         memset(legacy_settings, 0, sizeof(*legacy_settings));
493         /* this also clears the deprecated fields in legacy structure:
494          * __u8         transceiver;
495          * __u32        maxtxpkt;
496          * __u32        maxrxpkt;
497          */
498
499         retval &= ethtool_convert_link_mode_to_legacy_u32(
500                 &legacy_settings->supported,
501                 link_ksettings->link_modes.supported);
502         retval &= ethtool_convert_link_mode_to_legacy_u32(
503                 &legacy_settings->advertising,
504                 link_ksettings->link_modes.advertising);
505         retval &= ethtool_convert_link_mode_to_legacy_u32(
506                 &legacy_settings->lp_advertising,
507                 link_ksettings->link_modes.lp_advertising);
508         ethtool_cmd_speed_set(legacy_settings, link_ksettings->base.speed);
509         legacy_settings->duplex
510                 = link_ksettings->base.duplex;
511         legacy_settings->port
512                 = link_ksettings->base.port;
513         legacy_settings->phy_address
514                 = link_ksettings->base.phy_address;
515         legacy_settings->autoneg
516                 = link_ksettings->base.autoneg;
517         legacy_settings->mdio_support
518                 = link_ksettings->base.mdio_support;
519         legacy_settings->eth_tp_mdix
520                 = link_ksettings->base.eth_tp_mdix;
521         legacy_settings->eth_tp_mdix_ctrl
522                 = link_ksettings->base.eth_tp_mdix_ctrl;
523         legacy_settings->transceiver
524                 = link_ksettings->base.transceiver;
525         return retval;
526 }
527
528 /* number of 32-bit words to store the user's link mode bitmaps */
529 #define __ETHTOOL_LINK_MODE_MASK_NU32                   \
530         DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32)
531
532 /* layout of the struct passed from/to userland */
533 struct ethtool_link_usettings {
534         struct ethtool_link_settings base;
535         struct {
536                 __u32 supported[__ETHTOOL_LINK_MODE_MASK_NU32];
537                 __u32 advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
538                 __u32 lp_advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
539         } link_modes;
540 };
541
542 /* Internal kernel helper to query a device ethtool_link_settings. */
543 int __ethtool_get_link_ksettings(struct net_device *dev,
544                                  struct ethtool_link_ksettings *link_ksettings)
545 {
546         ASSERT_RTNL();
547
548         if (!dev->ethtool_ops->get_link_ksettings)
549                 return -EOPNOTSUPP;
550
551         memset(link_ksettings, 0, sizeof(*link_ksettings));
552         return dev->ethtool_ops->get_link_ksettings(dev, link_ksettings);
553 }
554 EXPORT_SYMBOL(__ethtool_get_link_ksettings);
555
556 /* convert ethtool_link_usettings in user space to a kernel internal
557  * ethtool_link_ksettings. return 0 on success, errno on error.
558  */
559 static int load_link_ksettings_from_user(struct ethtool_link_ksettings *to,
560                                          const void __user *from)
561 {
562         struct ethtool_link_usettings link_usettings;
563
564         if (copy_from_user(&link_usettings, from, sizeof(link_usettings)))
565                 return -EFAULT;
566
567         memcpy(&to->base, &link_usettings.base, sizeof(to->base));
568         bitmap_from_arr32(to->link_modes.supported,
569                           link_usettings.link_modes.supported,
570                           __ETHTOOL_LINK_MODE_MASK_NBITS);
571         bitmap_from_arr32(to->link_modes.advertising,
572                           link_usettings.link_modes.advertising,
573                           __ETHTOOL_LINK_MODE_MASK_NBITS);
574         bitmap_from_arr32(to->link_modes.lp_advertising,
575                           link_usettings.link_modes.lp_advertising,
576                           __ETHTOOL_LINK_MODE_MASK_NBITS);
577
578         return 0;
579 }
580
581 /* convert a kernel internal ethtool_link_ksettings to
582  * ethtool_link_usettings in user space. return 0 on success, errno on
583  * error.
584  */
585 static int
586 store_link_ksettings_for_user(void __user *to,
587                               const struct ethtool_link_ksettings *from)
588 {
589         struct ethtool_link_usettings link_usettings;
590
591         memcpy(&link_usettings.base, &from->base, sizeof(link_usettings));
592         bitmap_to_arr32(link_usettings.link_modes.supported,
593                         from->link_modes.supported,
594                         __ETHTOOL_LINK_MODE_MASK_NBITS);
595         bitmap_to_arr32(link_usettings.link_modes.advertising,
596                         from->link_modes.advertising,
597                         __ETHTOOL_LINK_MODE_MASK_NBITS);
598         bitmap_to_arr32(link_usettings.link_modes.lp_advertising,
599                         from->link_modes.lp_advertising,
600                         __ETHTOOL_LINK_MODE_MASK_NBITS);
601
602         if (copy_to_user(to, &link_usettings, sizeof(link_usettings)))
603                 return -EFAULT;
604
605         return 0;
606 }
607
608 /* Query device for its ethtool_link_settings. */
609 static int ethtool_get_link_ksettings(struct net_device *dev,
610                                       void __user *useraddr)
611 {
612         int err = 0;
613         struct ethtool_link_ksettings link_ksettings;
614
615         ASSERT_RTNL();
616         if (!dev->ethtool_ops->get_link_ksettings)
617                 return -EOPNOTSUPP;
618
619         /* handle bitmap nbits handshake */
620         if (copy_from_user(&link_ksettings.base, useraddr,
621                            sizeof(link_ksettings.base)))
622                 return -EFAULT;
623
624         if (__ETHTOOL_LINK_MODE_MASK_NU32
625             != link_ksettings.base.link_mode_masks_nwords) {
626                 /* wrong link mode nbits requested */
627                 memset(&link_ksettings, 0, sizeof(link_ksettings));
628                 link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
629                 /* send back number of words required as negative val */
630                 compiletime_assert(__ETHTOOL_LINK_MODE_MASK_NU32 <= S8_MAX,
631                                    "need too many bits for link modes!");
632                 link_ksettings.base.link_mode_masks_nwords
633                         = -((s8)__ETHTOOL_LINK_MODE_MASK_NU32);
634
635                 /* copy the base fields back to user, not the link
636                  * mode bitmaps
637                  */
638                 if (copy_to_user(useraddr, &link_ksettings.base,
639                                  sizeof(link_ksettings.base)))
640                         return -EFAULT;
641
642                 return 0;
643         }
644
645         /* handshake successful: user/kernel agree on
646          * link_mode_masks_nwords
647          */
648
649         memset(&link_ksettings, 0, sizeof(link_ksettings));
650         err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
651         if (err < 0)
652                 return err;
653
654         /* make sure we tell the right values to user */
655         link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
656         link_ksettings.base.link_mode_masks_nwords
657                 = __ETHTOOL_LINK_MODE_MASK_NU32;
658
659         return store_link_ksettings_for_user(useraddr, &link_ksettings);
660 }
661
662 /* Update device ethtool_link_settings. */
663 static int ethtool_set_link_ksettings(struct net_device *dev,
664                                       void __user *useraddr)
665 {
666         int err;
667         struct ethtool_link_ksettings link_ksettings;
668
669         ASSERT_RTNL();
670
671         if (!dev->ethtool_ops->set_link_ksettings)
672                 return -EOPNOTSUPP;
673
674         /* make sure nbits field has expected value */
675         if (copy_from_user(&link_ksettings.base, useraddr,
676                            sizeof(link_ksettings.base)))
677                 return -EFAULT;
678
679         if (__ETHTOOL_LINK_MODE_MASK_NU32
680             != link_ksettings.base.link_mode_masks_nwords)
681                 return -EINVAL;
682
683         /* copy the whole structure, now that we know it has expected
684          * format
685          */
686         err = load_link_ksettings_from_user(&link_ksettings, useraddr);
687         if (err)
688                 return err;
689
690         /* re-check nwords field, just in case */
691         if (__ETHTOOL_LINK_MODE_MASK_NU32
692             != link_ksettings.base.link_mode_masks_nwords)
693                 return -EINVAL;
694
695         return dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
696 }
697
698 /* Query device for its ethtool_cmd settings.
699  *
700  * Backward compatibility note: for compatibility with legacy ethtool, this is
701  * now implemented via get_link_ksettings. When driver reports higher link mode
702  * bits, a kernel warning is logged once (with name of 1st driver/device) to
703  * recommend user to upgrade ethtool, but the command is successful (only the
704  * lower link mode bits reported back to user). Deprecated fields from
705  * ethtool_cmd (transceiver/maxrxpkt/maxtxpkt) are always set to zero.
706  */
707 static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
708 {
709         struct ethtool_link_ksettings link_ksettings;
710         struct ethtool_cmd cmd;
711         int err;
712
713         ASSERT_RTNL();
714         if (!dev->ethtool_ops->get_link_ksettings)
715                 return -EOPNOTSUPP;
716
717         memset(&link_ksettings, 0, sizeof(link_ksettings));
718         err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
719         if (err < 0)
720                 return err;
721         convert_link_ksettings_to_legacy_settings(&cmd, &link_ksettings);
722
723         /* send a sensible cmd tag back to user */
724         cmd.cmd = ETHTOOL_GSET;
725
726         if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
727                 return -EFAULT;
728
729         return 0;
730 }
731
732 /* Update device link settings with given ethtool_cmd.
733  *
734  * Backward compatibility note: for compatibility with legacy ethtool, this is
735  * now always implemented via set_link_settings. When user's request updates
736  * deprecated ethtool_cmd fields (transceiver/maxrxpkt/maxtxpkt), a kernel
737  * warning is logged once (with name of 1st driver/device) to recommend user to
738  * upgrade ethtool, and the request is rejected.
739  */
740 static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
741 {
742         struct ethtool_link_ksettings link_ksettings;
743         struct ethtool_cmd cmd;
744
745         ASSERT_RTNL();
746
747         if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
748                 return -EFAULT;
749         if (!dev->ethtool_ops->set_link_ksettings)
750                 return -EOPNOTSUPP;
751
752         if (!convert_legacy_settings_to_link_ksettings(&link_ksettings, &cmd))
753                 return -EINVAL;
754         link_ksettings.base.link_mode_masks_nwords =
755                 __ETHTOOL_LINK_MODE_MASK_NU32;
756         return dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
757 }
758
759 static noinline_for_stack int ethtool_get_drvinfo(struct net_device *dev,
760                                                   void __user *useraddr)
761 {
762         struct ethtool_drvinfo info;
763         const struct ethtool_ops *ops = dev->ethtool_ops;
764
765         memset(&info, 0, sizeof(info));
766         info.cmd = ETHTOOL_GDRVINFO;
767         if (ops->get_drvinfo) {
768                 ops->get_drvinfo(dev, &info);
769         } else if (dev->dev.parent && dev->dev.parent->driver) {
770                 strlcpy(info.bus_info, dev_name(dev->dev.parent),
771                         sizeof(info.bus_info));
772                 strlcpy(info.driver, dev->dev.parent->driver->name,
773                         sizeof(info.driver));
774         } else {
775                 return -EOPNOTSUPP;
776         }
777
778         /*
779          * this method of obtaining string set info is deprecated;
780          * Use ETHTOOL_GSSET_INFO instead.
781          */
782         if (ops->get_sset_count) {
783                 int rc;
784
785                 rc = ops->get_sset_count(dev, ETH_SS_TEST);
786                 if (rc >= 0)
787                         info.testinfo_len = rc;
788                 rc = ops->get_sset_count(dev, ETH_SS_STATS);
789                 if (rc >= 0)
790                         info.n_stats = rc;
791                 rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
792                 if (rc >= 0)
793                         info.n_priv_flags = rc;
794         }
795         if (ops->get_regs_len) {
796                 int ret = ops->get_regs_len(dev);
797
798                 if (ret > 0)
799                         info.regdump_len = ret;
800         }
801
802         if (ops->get_eeprom_len)
803                 info.eedump_len = ops->get_eeprom_len(dev);
804
805         if (!info.fw_version[0])
806                 devlink_compat_running_version(dev, info.fw_version,
807                                                sizeof(info.fw_version));
808
809         if (copy_to_user(useraddr, &info, sizeof(info)))
810                 return -EFAULT;
811         return 0;
812 }
813
814 static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
815                                                     void __user *useraddr)
816 {
817         struct ethtool_sset_info info;
818         u64 sset_mask;
819         int i, idx = 0, n_bits = 0, ret, rc;
820         u32 *info_buf = NULL;
821
822         if (copy_from_user(&info, useraddr, sizeof(info)))
823                 return -EFAULT;
824
825         /* store copy of mask, because we zero struct later on */
826         sset_mask = info.sset_mask;
827         if (!sset_mask)
828                 return 0;
829
830         /* calculate size of return buffer */
831         n_bits = hweight64(sset_mask);
832
833         memset(&info, 0, sizeof(info));
834         info.cmd = ETHTOOL_GSSET_INFO;
835
836         info_buf = kcalloc(n_bits, sizeof(u32), GFP_USER);
837         if (!info_buf)
838                 return -ENOMEM;
839
840         /*
841          * fill return buffer based on input bitmask and successful
842          * get_sset_count return
843          */
844         for (i = 0; i < 64; i++) {
845                 if (!(sset_mask & (1ULL << i)))
846                         continue;
847
848                 rc = __ethtool_get_sset_count(dev, i);
849                 if (rc >= 0) {
850                         info.sset_mask |= (1ULL << i);
851                         info_buf[idx++] = rc;
852                 }
853         }
854
855         ret = -EFAULT;
856         if (copy_to_user(useraddr, &info, sizeof(info)))
857                 goto out;
858
859         useraddr += offsetof(struct ethtool_sset_info, data);
860         if (copy_to_user(useraddr, info_buf, idx * sizeof(u32)))
861                 goto out;
862
863         ret = 0;
864
865 out:
866         kfree(info_buf);
867         return ret;
868 }
869
870 static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
871                                                 u32 cmd, void __user *useraddr)
872 {
873         struct ethtool_rxnfc info;
874         size_t info_size = sizeof(info);
875         int rc;
876
877         if (!dev->ethtool_ops->set_rxnfc)
878                 return -EOPNOTSUPP;
879
880         /* struct ethtool_rxnfc was originally defined for
881          * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
882          * members.  User-space might still be using that
883          * definition. */
884         if (cmd == ETHTOOL_SRXFH)
885                 info_size = (offsetof(struct ethtool_rxnfc, data) +
886                              sizeof(info.data));
887
888         if (copy_from_user(&info, useraddr, info_size))
889                 return -EFAULT;
890
891         rc = dev->ethtool_ops->set_rxnfc(dev, &info);
892         if (rc)
893                 return rc;
894
895         if (cmd == ETHTOOL_SRXCLSRLINS &&
896             copy_to_user(useraddr, &info, info_size))
897                 return -EFAULT;
898
899         return 0;
900 }
901
902 static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
903                                                 u32 cmd, void __user *useraddr)
904 {
905         struct ethtool_rxnfc info;
906         size_t info_size = sizeof(info);
907         const struct ethtool_ops *ops = dev->ethtool_ops;
908         int ret;
909         void *rule_buf = NULL;
910
911         if (!ops->get_rxnfc)
912                 return -EOPNOTSUPP;
913
914         /* struct ethtool_rxnfc was originally defined for
915          * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
916          * members.  User-space might still be using that
917          * definition. */
918         if (cmd == ETHTOOL_GRXFH)
919                 info_size = (offsetof(struct ethtool_rxnfc, data) +
920                              sizeof(info.data));
921
922         if (copy_from_user(&info, useraddr, info_size))
923                 return -EFAULT;
924
925         /* If FLOW_RSS was requested then user-space must be using the
926          * new definition, as FLOW_RSS is newer.
927          */
928         if (cmd == ETHTOOL_GRXFH && info.flow_type & FLOW_RSS) {
929                 info_size = sizeof(info);
930                 if (copy_from_user(&info, useraddr, info_size))
931                         return -EFAULT;
932                 /* Since malicious users may modify the original data,
933                  * we need to check whether FLOW_RSS is still requested.
934                  */
935                 if (!(info.flow_type & FLOW_RSS))
936                         return -EINVAL;
937         }
938
939         if (info.cmd != cmd)
940                 return -EINVAL;
941
942         if (info.cmd == ETHTOOL_GRXCLSRLALL) {
943                 if (info.rule_cnt > 0) {
944                         if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
945                                 rule_buf = kcalloc(info.rule_cnt, sizeof(u32),
946                                                    GFP_USER);
947                         if (!rule_buf)
948                                 return -ENOMEM;
949                 }
950         }
951
952         ret = ops->get_rxnfc(dev, &info, rule_buf);
953         if (ret < 0)
954                 goto err_out;
955
956         ret = -EFAULT;
957         if (copy_to_user(useraddr, &info, info_size))
958                 goto err_out;
959
960         if (rule_buf) {
961                 useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
962                 if (copy_to_user(useraddr, rule_buf,
963                                  info.rule_cnt * sizeof(u32)))
964                         goto err_out;
965         }
966         ret = 0;
967
968 err_out:
969         kfree(rule_buf);
970
971         return ret;
972 }
973
974 static int ethtool_copy_validate_indir(u32 *indir, void __user *useraddr,
975                                         struct ethtool_rxnfc *rx_rings,
976                                         u32 size)
977 {
978         int i;
979
980         if (copy_from_user(indir, useraddr, size * sizeof(indir[0])))
981                 return -EFAULT;
982
983         /* Validate ring indices */
984         for (i = 0; i < size; i++)
985                 if (indir[i] >= rx_rings->data)
986                         return -EINVAL;
987
988         return 0;
989 }
990
991 u8 netdev_rss_key[NETDEV_RSS_KEY_LEN] __read_mostly;
992
993 void netdev_rss_key_fill(void *buffer, size_t len)
994 {
995         BUG_ON(len > sizeof(netdev_rss_key));
996         net_get_random_once(netdev_rss_key, sizeof(netdev_rss_key));
997         memcpy(buffer, netdev_rss_key, len);
998 }
999 EXPORT_SYMBOL(netdev_rss_key_fill);
1000
1001 static int ethtool_get_max_rxfh_channel(struct net_device *dev, u32 *max)
1002 {
1003         u32 dev_size, current_max = 0;
1004         u32 *indir;
1005         int ret;
1006
1007         if (!dev->ethtool_ops->get_rxfh_indir_size ||
1008             !dev->ethtool_ops->get_rxfh)
1009                 return -EOPNOTSUPP;
1010         dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
1011         if (dev_size == 0)
1012                 return -EOPNOTSUPP;
1013
1014         indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
1015         if (!indir)
1016                 return -ENOMEM;
1017
1018         ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
1019         if (ret)
1020                 goto out;
1021
1022         while (dev_size--)
1023                 current_max = max(current_max, indir[dev_size]);
1024
1025         *max = current_max;
1026
1027 out:
1028         kfree(indir);
1029         return ret;
1030 }
1031
1032 static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev,
1033                                                      void __user *useraddr)
1034 {
1035         u32 user_size, dev_size;
1036         u32 *indir;
1037         int ret;
1038
1039         if (!dev->ethtool_ops->get_rxfh_indir_size ||
1040             !dev->ethtool_ops->get_rxfh)
1041                 return -EOPNOTSUPP;
1042         dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
1043         if (dev_size == 0)
1044                 return -EOPNOTSUPP;
1045
1046         if (copy_from_user(&user_size,
1047                            useraddr + offsetof(struct ethtool_rxfh_indir, size),
1048                            sizeof(user_size)))
1049                 return -EFAULT;
1050
1051         if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size),
1052                          &dev_size, sizeof(dev_size)))
1053                 return -EFAULT;
1054
1055         /* If the user buffer size is 0, this is just a query for the
1056          * device table size.  Otherwise, if it's smaller than the
1057          * device table size it's an error.
1058          */
1059         if (user_size < dev_size)
1060                 return user_size == 0 ? 0 : -EINVAL;
1061
1062         indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
1063         if (!indir)
1064                 return -ENOMEM;
1065
1066         ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
1067         if (ret)
1068                 goto out;
1069
1070         if (copy_to_user(useraddr +
1071                          offsetof(struct ethtool_rxfh_indir, ring_index[0]),
1072                          indir, dev_size * sizeof(indir[0])))
1073                 ret = -EFAULT;
1074
1075 out:
1076         kfree(indir);
1077         return ret;
1078 }
1079
1080 static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev,
1081                                                      void __user *useraddr)
1082 {
1083         struct ethtool_rxnfc rx_rings;
1084         u32 user_size, dev_size, i;
1085         u32 *indir;
1086         const struct ethtool_ops *ops = dev->ethtool_ops;
1087         int ret;
1088         u32 ringidx_offset = offsetof(struct ethtool_rxfh_indir, ring_index[0]);
1089
1090         if (!ops->get_rxfh_indir_size || !ops->set_rxfh ||
1091             !ops->get_rxnfc)
1092                 return -EOPNOTSUPP;
1093
1094         dev_size = ops->get_rxfh_indir_size(dev);
1095         if (dev_size == 0)
1096                 return -EOPNOTSUPP;
1097
1098         if (copy_from_user(&user_size,
1099                            useraddr + offsetof(struct ethtool_rxfh_indir, size),
1100                            sizeof(user_size)))
1101                 return -EFAULT;
1102
1103         if (user_size != 0 && user_size != dev_size)
1104                 return -EINVAL;
1105
1106         indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
1107         if (!indir)
1108                 return -ENOMEM;
1109
1110         rx_rings.cmd = ETHTOOL_GRXRINGS;
1111         ret = ops->get_rxnfc(dev, &rx_rings, NULL);
1112         if (ret)
1113                 goto out;
1114
1115         if (user_size == 0) {
1116                 for (i = 0; i < dev_size; i++)
1117                         indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1118         } else {
1119                 ret = ethtool_copy_validate_indir(indir,
1120                                                   useraddr + ringidx_offset,
1121                                                   &rx_rings,
1122                                                   dev_size);
1123                 if (ret)
1124                         goto out;
1125         }
1126
1127         ret = ops->set_rxfh(dev, indir, NULL, ETH_RSS_HASH_NO_CHANGE);
1128         if (ret)
1129                 goto out;
1130
1131         /* indicate whether rxfh was set to default */
1132         if (user_size == 0)
1133                 dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1134         else
1135                 dev->priv_flags |= IFF_RXFH_CONFIGURED;
1136
1137 out:
1138         kfree(indir);
1139         return ret;
1140 }
1141
1142 static noinline_for_stack int ethtool_get_rxfh(struct net_device *dev,
1143                                                void __user *useraddr)
1144 {
1145         int ret;
1146         const struct ethtool_ops *ops = dev->ethtool_ops;
1147         u32 user_indir_size, user_key_size;
1148         u32 dev_indir_size = 0, dev_key_size = 0;
1149         struct ethtool_rxfh rxfh;
1150         u32 total_size;
1151         u32 indir_bytes;
1152         u32 *indir = NULL;
1153         u8 dev_hfunc = 0;
1154         u8 *hkey = NULL;
1155         u8 *rss_config;
1156
1157         if (!ops->get_rxfh)
1158                 return -EOPNOTSUPP;
1159
1160         if (ops->get_rxfh_indir_size)
1161                 dev_indir_size = ops->get_rxfh_indir_size(dev);
1162         if (ops->get_rxfh_key_size)
1163                 dev_key_size = ops->get_rxfh_key_size(dev);
1164
1165         if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
1166                 return -EFAULT;
1167         user_indir_size = rxfh.indir_size;
1168         user_key_size = rxfh.key_size;
1169
1170         /* Check that reserved fields are 0 for now */
1171         if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32)
1172                 return -EINVAL;
1173         /* Most drivers don't handle rss_context, check it's 0 as well */
1174         if (rxfh.rss_context && !ops->get_rxfh_context)
1175                 return -EOPNOTSUPP;
1176
1177         rxfh.indir_size = dev_indir_size;
1178         rxfh.key_size = dev_key_size;
1179         if (copy_to_user(useraddr, &rxfh, sizeof(rxfh)))
1180                 return -EFAULT;
1181
1182         if ((user_indir_size && (user_indir_size != dev_indir_size)) ||
1183             (user_key_size && (user_key_size != dev_key_size)))
1184                 return -EINVAL;
1185
1186         indir_bytes = user_indir_size * sizeof(indir[0]);
1187         total_size = indir_bytes + user_key_size;
1188         rss_config = kzalloc(total_size, GFP_USER);
1189         if (!rss_config)
1190                 return -ENOMEM;
1191
1192         if (user_indir_size)
1193                 indir = (u32 *)rss_config;
1194
1195         if (user_key_size)
1196                 hkey = rss_config + indir_bytes;
1197
1198         if (rxfh.rss_context)
1199                 ret = dev->ethtool_ops->get_rxfh_context(dev, indir, hkey,
1200                                                          &dev_hfunc,
1201                                                          rxfh.rss_context);
1202         else
1203                 ret = dev->ethtool_ops->get_rxfh(dev, indir, hkey, &dev_hfunc);
1204         if (ret)
1205                 goto out;
1206
1207         if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, hfunc),
1208                          &dev_hfunc, sizeof(rxfh.hfunc))) {
1209                 ret = -EFAULT;
1210         } else if (copy_to_user(useraddr +
1211                               offsetof(struct ethtool_rxfh, rss_config[0]),
1212                               rss_config, total_size)) {
1213                 ret = -EFAULT;
1214         }
1215 out:
1216         kfree(rss_config);
1217
1218         return ret;
1219 }
1220
1221 static noinline_for_stack int ethtool_set_rxfh(struct net_device *dev,
1222                                                void __user *useraddr)
1223 {
1224         int ret;
1225         const struct ethtool_ops *ops = dev->ethtool_ops;
1226         struct ethtool_rxnfc rx_rings;
1227         struct ethtool_rxfh rxfh;
1228         u32 dev_indir_size = 0, dev_key_size = 0, i;
1229         u32 *indir = NULL, indir_bytes = 0;
1230         u8 *hkey = NULL;
1231         u8 *rss_config;
1232         u32 rss_cfg_offset = offsetof(struct ethtool_rxfh, rss_config[0]);
1233         bool delete = false;
1234
1235         if (!ops->get_rxnfc || !ops->set_rxfh)
1236                 return -EOPNOTSUPP;
1237
1238         if (ops->get_rxfh_indir_size)
1239                 dev_indir_size = ops->get_rxfh_indir_size(dev);
1240         if (ops->get_rxfh_key_size)
1241                 dev_key_size = ops->get_rxfh_key_size(dev);
1242
1243         if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
1244                 return -EFAULT;
1245
1246         /* Check that reserved fields are 0 for now */
1247         if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32)
1248                 return -EINVAL;
1249         /* Most drivers don't handle rss_context, check it's 0 as well */
1250         if (rxfh.rss_context && !ops->set_rxfh_context)
1251                 return -EOPNOTSUPP;
1252
1253         /* If either indir, hash key or function is valid, proceed further.
1254          * Must request at least one change: indir size, hash key or function.
1255          */
1256         if ((rxfh.indir_size &&
1257              rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE &&
1258              rxfh.indir_size != dev_indir_size) ||
1259             (rxfh.key_size && (rxfh.key_size != dev_key_size)) ||
1260             (rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE &&
1261              rxfh.key_size == 0 && rxfh.hfunc == ETH_RSS_HASH_NO_CHANGE))
1262                 return -EINVAL;
1263
1264         if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
1265                 indir_bytes = dev_indir_size * sizeof(indir[0]);
1266
1267         rss_config = kzalloc(indir_bytes + rxfh.key_size, GFP_USER);
1268         if (!rss_config)
1269                 return -ENOMEM;
1270
1271         rx_rings.cmd = ETHTOOL_GRXRINGS;
1272         ret = ops->get_rxnfc(dev, &rx_rings, NULL);
1273         if (ret)
1274                 goto out;
1275
1276         /* rxfh.indir_size == 0 means reset the indir table to default (master
1277          * context) or delete the context (other RSS contexts).
1278          * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
1279          */
1280         if (rxfh.indir_size &&
1281             rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) {
1282                 indir = (u32 *)rss_config;
1283                 ret = ethtool_copy_validate_indir(indir,
1284                                                   useraddr + rss_cfg_offset,
1285                                                   &rx_rings,
1286                                                   rxfh.indir_size);
1287                 if (ret)
1288                         goto out;
1289         } else if (rxfh.indir_size == 0) {
1290                 if (rxfh.rss_context == 0) {
1291                         indir = (u32 *)rss_config;
1292                         for (i = 0; i < dev_indir_size; i++)
1293                                 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1294                 } else {
1295                         delete = true;
1296                 }
1297         }
1298
1299         if (rxfh.key_size) {
1300                 hkey = rss_config + indir_bytes;
1301                 if (copy_from_user(hkey,
1302                                    useraddr + rss_cfg_offset + indir_bytes,
1303                                    rxfh.key_size)) {
1304                         ret = -EFAULT;
1305                         goto out;
1306                 }
1307         }
1308
1309         if (rxfh.rss_context)
1310                 ret = ops->set_rxfh_context(dev, indir, hkey, rxfh.hfunc,
1311                                             &rxfh.rss_context, delete);
1312         else
1313                 ret = ops->set_rxfh(dev, indir, hkey, rxfh.hfunc);
1314         if (ret)
1315                 goto out;
1316
1317         if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, rss_context),
1318                          &rxfh.rss_context, sizeof(rxfh.rss_context)))
1319                 ret = -EFAULT;
1320
1321         if (!rxfh.rss_context) {
1322                 /* indicate whether rxfh was set to default */
1323                 if (rxfh.indir_size == 0)
1324                         dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1325                 else if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
1326                         dev->priv_flags |= IFF_RXFH_CONFIGURED;
1327         }
1328
1329 out:
1330         kfree(rss_config);
1331         return ret;
1332 }
1333
1334 static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
1335 {
1336         struct ethtool_regs regs;
1337         const struct ethtool_ops *ops = dev->ethtool_ops;
1338         void *regbuf;
1339         int reglen, ret;
1340
1341         if (!ops->get_regs || !ops->get_regs_len)
1342                 return -EOPNOTSUPP;
1343
1344         if (copy_from_user(&regs, useraddr, sizeof(regs)))
1345                 return -EFAULT;
1346
1347         reglen = ops->get_regs_len(dev);
1348         if (reglen <= 0)
1349                 return reglen;
1350
1351         if (regs.len > reglen)
1352                 regs.len = reglen;
1353
1354         regbuf = vzalloc(reglen);
1355         if (!regbuf)
1356                 return -ENOMEM;
1357
1358         ops->get_regs(dev, &regs, regbuf);
1359
1360         ret = -EFAULT;
1361         if (copy_to_user(useraddr, &regs, sizeof(regs)))
1362                 goto out;
1363         useraddr += offsetof(struct ethtool_regs, data);
1364         if (regbuf && copy_to_user(useraddr, regbuf, regs.len))
1365                 goto out;
1366         ret = 0;
1367
1368  out:
1369         vfree(regbuf);
1370         return ret;
1371 }
1372
1373 static int ethtool_reset(struct net_device *dev, char __user *useraddr)
1374 {
1375         struct ethtool_value reset;
1376         int ret;
1377
1378         if (!dev->ethtool_ops->reset)
1379                 return -EOPNOTSUPP;
1380
1381         if (copy_from_user(&reset, useraddr, sizeof(reset)))
1382                 return -EFAULT;
1383
1384         ret = dev->ethtool_ops->reset(dev, &reset.data);
1385         if (ret)
1386                 return ret;
1387
1388         if (copy_to_user(useraddr, &reset, sizeof(reset)))
1389                 return -EFAULT;
1390         return 0;
1391 }
1392
1393 static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
1394 {
1395         struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
1396
1397         if (!dev->ethtool_ops->get_wol)
1398                 return -EOPNOTSUPP;
1399
1400         dev->ethtool_ops->get_wol(dev, &wol);
1401
1402         if (copy_to_user(useraddr, &wol, sizeof(wol)))
1403                 return -EFAULT;
1404         return 0;
1405 }
1406
1407 static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
1408 {
1409         struct ethtool_wolinfo wol;
1410         int ret;
1411
1412         if (!dev->ethtool_ops->set_wol)
1413                 return -EOPNOTSUPP;
1414
1415         if (copy_from_user(&wol, useraddr, sizeof(wol)))
1416                 return -EFAULT;
1417
1418         ret = dev->ethtool_ops->set_wol(dev, &wol);
1419         if (ret)
1420                 return ret;
1421
1422         dev->wol_enabled = !!wol.wolopts;
1423
1424         return 0;
1425 }
1426
1427 static int ethtool_get_eee(struct net_device *dev, char __user *useraddr)
1428 {
1429         struct ethtool_eee edata;
1430         int rc;
1431
1432         if (!dev->ethtool_ops->get_eee)
1433                 return -EOPNOTSUPP;
1434
1435         memset(&edata, 0, sizeof(struct ethtool_eee));
1436         edata.cmd = ETHTOOL_GEEE;
1437         rc = dev->ethtool_ops->get_eee(dev, &edata);
1438
1439         if (rc)
1440                 return rc;
1441
1442         if (copy_to_user(useraddr, &edata, sizeof(edata)))
1443                 return -EFAULT;
1444
1445         return 0;
1446 }
1447
1448 static int ethtool_set_eee(struct net_device *dev, char __user *useraddr)
1449 {
1450         struct ethtool_eee edata;
1451
1452         if (!dev->ethtool_ops->set_eee)
1453                 return -EOPNOTSUPP;
1454
1455         if (copy_from_user(&edata, useraddr, sizeof(edata)))
1456                 return -EFAULT;
1457
1458         return dev->ethtool_ops->set_eee(dev, &edata);
1459 }
1460
1461 static int ethtool_nway_reset(struct net_device *dev)
1462 {
1463         if (!dev->ethtool_ops->nway_reset)
1464                 return -EOPNOTSUPP;
1465
1466         return dev->ethtool_ops->nway_reset(dev);
1467 }
1468
1469 static int ethtool_get_link(struct net_device *dev, char __user *useraddr)
1470 {
1471         struct ethtool_value edata = { .cmd = ETHTOOL_GLINK };
1472
1473         if (!dev->ethtool_ops->get_link)
1474                 return -EOPNOTSUPP;
1475
1476         edata.data = netif_running(dev) && dev->ethtool_ops->get_link(dev);
1477
1478         if (copy_to_user(useraddr, &edata, sizeof(edata)))
1479                 return -EFAULT;
1480         return 0;
1481 }
1482
1483 static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr,
1484                                   int (*getter)(struct net_device *,
1485                                                 struct ethtool_eeprom *, u8 *),
1486                                   u32 total_len)
1487 {
1488         struct ethtool_eeprom eeprom;
1489         void __user *userbuf = useraddr + sizeof(eeprom);
1490         u32 bytes_remaining;
1491         u8 *data;
1492         int ret = 0;
1493
1494         if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1495                 return -EFAULT;
1496
1497         /* Check for wrap and zero */
1498         if (eeprom.offset + eeprom.len <= eeprom.offset)
1499                 return -EINVAL;
1500
1501         /* Check for exceeding total eeprom len */
1502         if (eeprom.offset + eeprom.len > total_len)
1503                 return -EINVAL;
1504
1505         data = kmalloc(PAGE_SIZE, GFP_USER);
1506         if (!data)
1507                 return -ENOMEM;
1508
1509         bytes_remaining = eeprom.len;
1510         while (bytes_remaining > 0) {
1511                 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
1512
1513                 ret = getter(dev, &eeprom, data);
1514                 if (ret)
1515                         break;
1516                 if (copy_to_user(userbuf, data, eeprom.len)) {
1517                         ret = -EFAULT;
1518                         break;
1519                 }
1520                 userbuf += eeprom.len;
1521                 eeprom.offset += eeprom.len;
1522                 bytes_remaining -= eeprom.len;
1523         }
1524
1525         eeprom.len = userbuf - (useraddr + sizeof(eeprom));
1526         eeprom.offset -= eeprom.len;
1527         if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
1528                 ret = -EFAULT;
1529
1530         kfree(data);
1531         return ret;
1532 }
1533
1534 static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
1535 {
1536         const struct ethtool_ops *ops = dev->ethtool_ops;
1537
1538         if (!ops->get_eeprom || !ops->get_eeprom_len ||
1539             !ops->get_eeprom_len(dev))
1540                 return -EOPNOTSUPP;
1541
1542         return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom,
1543                                       ops->get_eeprom_len(dev));
1544 }
1545
1546 static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
1547 {
1548         struct ethtool_eeprom eeprom;
1549         const struct ethtool_ops *ops = dev->ethtool_ops;
1550         void __user *userbuf = useraddr + sizeof(eeprom);
1551         u32 bytes_remaining;
1552         u8 *data;
1553         int ret = 0;
1554
1555         if (!ops->set_eeprom || !ops->get_eeprom_len ||
1556             !ops->get_eeprom_len(dev))
1557                 return -EOPNOTSUPP;
1558
1559         if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1560                 return -EFAULT;
1561
1562         /* Check for wrap and zero */
1563         if (eeprom.offset + eeprom.len <= eeprom.offset)
1564                 return -EINVAL;
1565
1566         /* Check for exceeding total eeprom len */
1567         if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
1568                 return -EINVAL;
1569
1570         data = kmalloc(PAGE_SIZE, GFP_USER);
1571         if (!data)
1572                 return -ENOMEM;
1573
1574         bytes_remaining = eeprom.len;
1575         while (bytes_remaining > 0) {
1576                 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
1577
1578                 if (copy_from_user(data, userbuf, eeprom.len)) {
1579                         ret = -EFAULT;
1580                         break;
1581                 }
1582                 ret = ops->set_eeprom(dev, &eeprom, data);
1583                 if (ret)
1584                         break;
1585                 userbuf += eeprom.len;
1586                 eeprom.offset += eeprom.len;
1587                 bytes_remaining -= eeprom.len;
1588         }
1589
1590         kfree(data);
1591         return ret;
1592 }
1593
1594 static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
1595                                                    void __user *useraddr)
1596 {
1597         struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
1598
1599         if (!dev->ethtool_ops->get_coalesce)
1600                 return -EOPNOTSUPP;
1601
1602         dev->ethtool_ops->get_coalesce(dev, &coalesce);
1603
1604         if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
1605                 return -EFAULT;
1606         return 0;
1607 }
1608
1609 static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
1610                                                    void __user *useraddr)
1611 {
1612         struct ethtool_coalesce coalesce;
1613
1614         if (!dev->ethtool_ops->set_coalesce)
1615                 return -EOPNOTSUPP;
1616
1617         if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
1618                 return -EFAULT;
1619
1620         return dev->ethtool_ops->set_coalesce(dev, &coalesce);
1621 }
1622
1623 static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
1624 {
1625         struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
1626
1627         if (!dev->ethtool_ops->get_ringparam)
1628                 return -EOPNOTSUPP;
1629
1630         dev->ethtool_ops->get_ringparam(dev, &ringparam);
1631
1632         if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
1633                 return -EFAULT;
1634         return 0;
1635 }
1636
1637 static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
1638 {
1639         struct ethtool_ringparam ringparam, max = { .cmd = ETHTOOL_GRINGPARAM };
1640
1641         if (!dev->ethtool_ops->set_ringparam || !dev->ethtool_ops->get_ringparam)
1642                 return -EOPNOTSUPP;
1643
1644         if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
1645                 return -EFAULT;
1646
1647         dev->ethtool_ops->get_ringparam(dev, &max);
1648
1649         /* ensure new ring parameters are within the maximums */
1650         if (ringparam.rx_pending > max.rx_max_pending ||
1651             ringparam.rx_mini_pending > max.rx_mini_max_pending ||
1652             ringparam.rx_jumbo_pending > max.rx_jumbo_max_pending ||
1653             ringparam.tx_pending > max.tx_max_pending)
1654                 return -EINVAL;
1655
1656         return dev->ethtool_ops->set_ringparam(dev, &ringparam);
1657 }
1658
1659 static noinline_for_stack int ethtool_get_channels(struct net_device *dev,
1660                                                    void __user *useraddr)
1661 {
1662         struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
1663
1664         if (!dev->ethtool_ops->get_channels)
1665                 return -EOPNOTSUPP;
1666
1667         dev->ethtool_ops->get_channels(dev, &channels);
1668
1669         if (copy_to_user(useraddr, &channels, sizeof(channels)))
1670                 return -EFAULT;
1671         return 0;
1672 }
1673
1674 static noinline_for_stack int ethtool_set_channels(struct net_device *dev,
1675                                                    void __user *useraddr)
1676 {
1677         struct ethtool_channels channels, curr = { .cmd = ETHTOOL_GCHANNELS };
1678         u16 from_channel, to_channel;
1679         u32 max_rx_in_use = 0;
1680         unsigned int i;
1681
1682         if (!dev->ethtool_ops->set_channels || !dev->ethtool_ops->get_channels)
1683                 return -EOPNOTSUPP;
1684
1685         if (copy_from_user(&channels, useraddr, sizeof(channels)))
1686                 return -EFAULT;
1687
1688         dev->ethtool_ops->get_channels(dev, &curr);
1689
1690         /* ensure new counts are within the maximums */
1691         if (channels.rx_count > curr.max_rx ||
1692             channels.tx_count > curr.max_tx ||
1693             channels.combined_count > curr.max_combined ||
1694             channels.other_count > curr.max_other)
1695                 return -EINVAL;
1696
1697         /* ensure the new Rx count fits within the configured Rx flow
1698          * indirection table settings */
1699         if (netif_is_rxfh_configured(dev) &&
1700             !ethtool_get_max_rxfh_channel(dev, &max_rx_in_use) &&
1701             (channels.combined_count + channels.rx_count) <= max_rx_in_use)
1702             return -EINVAL;
1703
1704         /* Disabling channels, query zero-copy AF_XDP sockets */
1705         from_channel = channels.combined_count +
1706                 min(channels.rx_count, channels.tx_count);
1707         to_channel = curr.combined_count + max(curr.rx_count, curr.tx_count);
1708         for (i = from_channel; i < to_channel; i++)
1709                 if (xdp_get_umem_from_qid(dev, i))
1710                         return -EINVAL;
1711
1712         return dev->ethtool_ops->set_channels(dev, &channels);
1713 }
1714
1715 static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
1716 {
1717         struct ethtool_pauseparam pauseparam = { .cmd = ETHTOOL_GPAUSEPARAM };
1718
1719         if (!dev->ethtool_ops->get_pauseparam)
1720                 return -EOPNOTSUPP;
1721
1722         dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
1723
1724         if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
1725                 return -EFAULT;
1726         return 0;
1727 }
1728
1729 static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
1730 {
1731         struct ethtool_pauseparam pauseparam;
1732
1733         if (!dev->ethtool_ops->set_pauseparam)
1734                 return -EOPNOTSUPP;
1735
1736         if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
1737                 return -EFAULT;
1738
1739         return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
1740 }
1741
1742 static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
1743 {
1744         struct ethtool_test test;
1745         const struct ethtool_ops *ops = dev->ethtool_ops;
1746         u64 *data;
1747         int ret, test_len;
1748
1749         if (!ops->self_test || !ops->get_sset_count)
1750                 return -EOPNOTSUPP;
1751
1752         test_len = ops->get_sset_count(dev, ETH_SS_TEST);
1753         if (test_len < 0)
1754                 return test_len;
1755         WARN_ON(test_len == 0);
1756
1757         if (copy_from_user(&test, useraddr, sizeof(test)))
1758                 return -EFAULT;
1759
1760         test.len = test_len;
1761         data = kmalloc_array(test_len, sizeof(u64), GFP_USER);
1762         if (!data)
1763                 return -ENOMEM;
1764
1765         ops->self_test(dev, &test, data);
1766
1767         ret = -EFAULT;
1768         if (copy_to_user(useraddr, &test, sizeof(test)))
1769                 goto out;
1770         useraddr += sizeof(test);
1771         if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
1772                 goto out;
1773         ret = 0;
1774
1775  out:
1776         kfree(data);
1777         return ret;
1778 }
1779
1780 static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
1781 {
1782         struct ethtool_gstrings gstrings;
1783         u8 *data;
1784         int ret;
1785
1786         if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
1787                 return -EFAULT;
1788
1789         ret = __ethtool_get_sset_count(dev, gstrings.string_set);
1790         if (ret < 0)
1791                 return ret;
1792         if (ret > S32_MAX / ETH_GSTRING_LEN)
1793                 return -ENOMEM;
1794         WARN_ON_ONCE(!ret);
1795
1796         gstrings.len = ret;
1797
1798         if (gstrings.len) {
1799                 data = vzalloc(array_size(gstrings.len, ETH_GSTRING_LEN));
1800                 if (!data)
1801                         return -ENOMEM;
1802
1803                 __ethtool_get_strings(dev, gstrings.string_set, data);
1804         } else {
1805                 data = NULL;
1806         }
1807
1808         ret = -EFAULT;
1809         if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
1810                 goto out;
1811         useraddr += sizeof(gstrings);
1812         if (gstrings.len &&
1813             copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
1814                 goto out;
1815         ret = 0;
1816
1817 out:
1818         vfree(data);
1819         return ret;
1820 }
1821
1822 static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
1823 {
1824         struct ethtool_value id;
1825         static bool busy;
1826         const struct ethtool_ops *ops = dev->ethtool_ops;
1827         int rc;
1828
1829         if (!ops->set_phys_id)
1830                 return -EOPNOTSUPP;
1831
1832         if (busy)
1833                 return -EBUSY;
1834
1835         if (copy_from_user(&id, useraddr, sizeof(id)))
1836                 return -EFAULT;
1837
1838         rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE);
1839         if (rc < 0)
1840                 return rc;
1841
1842         /* Drop the RTNL lock while waiting, but prevent reentry or
1843          * removal of the device.
1844          */
1845         busy = true;
1846         dev_hold(dev);
1847         rtnl_unlock();
1848
1849         if (rc == 0) {
1850                 /* Driver will handle this itself */
1851                 schedule_timeout_interruptible(
1852                         id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT);
1853         } else {
1854                 /* Driver expects to be called at twice the frequency in rc */
1855                 int n = rc * 2, i, interval = HZ / n;
1856
1857                 /* Count down seconds */
1858                 do {
1859                         /* Count down iterations per second */
1860                         i = n;
1861                         do {
1862                                 rtnl_lock();
1863                                 rc = ops->set_phys_id(dev,
1864                                     (i & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON);
1865                                 rtnl_unlock();
1866                                 if (rc)
1867                                         break;
1868                                 schedule_timeout_interruptible(interval);
1869                         } while (!signal_pending(current) && --i != 0);
1870                 } while (!signal_pending(current) &&
1871                          (id.data == 0 || --id.data != 0));
1872         }
1873
1874         rtnl_lock();
1875         dev_put(dev);
1876         busy = false;
1877
1878         (void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE);
1879         return rc;
1880 }
1881
1882 static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
1883 {
1884         struct ethtool_stats stats;
1885         const struct ethtool_ops *ops = dev->ethtool_ops;
1886         u64 *data;
1887         int ret, n_stats;
1888
1889         if (!ops->get_ethtool_stats || !ops->get_sset_count)
1890                 return -EOPNOTSUPP;
1891
1892         n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
1893         if (n_stats < 0)
1894                 return n_stats;
1895         if (n_stats > S32_MAX / sizeof(u64))
1896                 return -ENOMEM;
1897         WARN_ON_ONCE(!n_stats);
1898         if (copy_from_user(&stats, useraddr, sizeof(stats)))
1899                 return -EFAULT;
1900
1901         stats.n_stats = n_stats;
1902
1903         if (n_stats) {
1904                 data = vzalloc(array_size(n_stats, sizeof(u64)));
1905                 if (!data)
1906                         return -ENOMEM;
1907                 ops->get_ethtool_stats(dev, &stats, data);
1908         } else {
1909                 data = NULL;
1910         }
1911
1912         ret = -EFAULT;
1913         if (copy_to_user(useraddr, &stats, sizeof(stats)))
1914                 goto out;
1915         useraddr += sizeof(stats);
1916         if (n_stats && copy_to_user(useraddr, data, n_stats * sizeof(u64)))
1917                 goto out;
1918         ret = 0;
1919
1920  out:
1921         vfree(data);
1922         return ret;
1923 }
1924
1925 static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr)
1926 {
1927         const struct ethtool_ops *ops = dev->ethtool_ops;
1928         struct phy_device *phydev = dev->phydev;
1929         struct ethtool_stats stats;
1930         u64 *data;
1931         int ret, n_stats;
1932
1933         if (!phydev && (!ops->get_ethtool_phy_stats || !ops->get_sset_count))
1934                 return -EOPNOTSUPP;
1935
1936         if (dev->phydev && !ops->get_ethtool_phy_stats)
1937                 n_stats = phy_ethtool_get_sset_count(dev->phydev);
1938         else
1939                 n_stats = ops->get_sset_count(dev, ETH_SS_PHY_STATS);
1940         if (n_stats < 0)
1941                 return n_stats;
1942         if (n_stats > S32_MAX / sizeof(u64))
1943                 return -ENOMEM;
1944         WARN_ON_ONCE(!n_stats);
1945
1946         if (copy_from_user(&stats, useraddr, sizeof(stats)))
1947                 return -EFAULT;
1948
1949         stats.n_stats = n_stats;
1950
1951         if (n_stats) {
1952                 data = vzalloc(array_size(n_stats, sizeof(u64)));
1953                 if (!data)
1954                         return -ENOMEM;
1955
1956                 if (dev->phydev && !ops->get_ethtool_phy_stats) {
1957                         ret = phy_ethtool_get_stats(dev->phydev, &stats, data);
1958                         if (ret < 0)
1959                                 goto out;
1960                 } else {
1961                         ops->get_ethtool_phy_stats(dev, &stats, data);
1962                 }
1963         } else {
1964                 data = NULL;
1965         }
1966
1967         ret = -EFAULT;
1968         if (copy_to_user(useraddr, &stats, sizeof(stats)))
1969                 goto out;
1970         useraddr += sizeof(stats);
1971         if (n_stats && copy_to_user(useraddr, data, n_stats * sizeof(u64)))
1972                 goto out;
1973         ret = 0;
1974
1975  out:
1976         vfree(data);
1977         return ret;
1978 }
1979
1980 static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
1981 {
1982         struct ethtool_perm_addr epaddr;
1983
1984         if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
1985                 return -EFAULT;
1986
1987         if (epaddr.size < dev->addr_len)
1988                 return -ETOOSMALL;
1989         epaddr.size = dev->addr_len;
1990
1991         if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
1992                 return -EFAULT;
1993         useraddr += sizeof(epaddr);
1994         if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
1995                 return -EFAULT;
1996         return 0;
1997 }
1998
1999 static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
2000                              u32 cmd, u32 (*actor)(struct net_device *))
2001 {
2002         struct ethtool_value edata = { .cmd = cmd };
2003
2004         if (!actor)
2005                 return -EOPNOTSUPP;
2006
2007         edata.data = actor(dev);
2008
2009         if (copy_to_user(useraddr, &edata, sizeof(edata)))
2010                 return -EFAULT;
2011         return 0;
2012 }
2013
2014 static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
2015                              void (*actor)(struct net_device *, u32))
2016 {
2017         struct ethtool_value edata;
2018
2019         if (!actor)
2020                 return -EOPNOTSUPP;
2021
2022         if (copy_from_user(&edata, useraddr, sizeof(edata)))
2023                 return -EFAULT;
2024
2025         actor(dev, edata.data);
2026         return 0;
2027 }
2028
2029 static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
2030                              int (*actor)(struct net_device *, u32))
2031 {
2032         struct ethtool_value edata;
2033
2034         if (!actor)
2035                 return -EOPNOTSUPP;
2036
2037         if (copy_from_user(&edata, useraddr, sizeof(edata)))
2038                 return -EFAULT;
2039
2040         return actor(dev, edata.data);
2041 }
2042
2043 static noinline_for_stack int ethtool_flash_device(struct net_device *dev,
2044                                                    char __user *useraddr)
2045 {
2046         struct ethtool_flash efl;
2047
2048         if (copy_from_user(&efl, useraddr, sizeof(efl)))
2049                 return -EFAULT;
2050         efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0;
2051
2052         if (!dev->ethtool_ops->flash_device)
2053                 return devlink_compat_flash_update(dev, efl.data);
2054
2055         return dev->ethtool_ops->flash_device(dev, &efl);
2056 }
2057
2058 static int ethtool_set_dump(struct net_device *dev,
2059                         void __user *useraddr)
2060 {
2061         struct ethtool_dump dump;
2062
2063         if (!dev->ethtool_ops->set_dump)
2064                 return -EOPNOTSUPP;
2065
2066         if (copy_from_user(&dump, useraddr, sizeof(dump)))
2067                 return -EFAULT;
2068
2069         return dev->ethtool_ops->set_dump(dev, &dump);
2070 }
2071
2072 static int ethtool_get_dump_flag(struct net_device *dev,
2073                                 void __user *useraddr)
2074 {
2075         int ret;
2076         struct ethtool_dump dump;
2077         const struct ethtool_ops *ops = dev->ethtool_ops;
2078
2079         if (!ops->get_dump_flag)
2080                 return -EOPNOTSUPP;
2081
2082         if (copy_from_user(&dump, useraddr, sizeof(dump)))
2083                 return -EFAULT;
2084
2085         ret = ops->get_dump_flag(dev, &dump);
2086         if (ret)
2087                 return ret;
2088
2089         if (copy_to_user(useraddr, &dump, sizeof(dump)))
2090                 return -EFAULT;
2091         return 0;
2092 }
2093
2094 static int ethtool_get_dump_data(struct net_device *dev,
2095                                 void __user *useraddr)
2096 {
2097         int ret;
2098         __u32 len;
2099         struct ethtool_dump dump, tmp;
2100         const struct ethtool_ops *ops = dev->ethtool_ops;
2101         void *data = NULL;
2102
2103         if (!ops->get_dump_data || !ops->get_dump_flag)
2104                 return -EOPNOTSUPP;
2105
2106         if (copy_from_user(&dump, useraddr, sizeof(dump)))
2107                 return -EFAULT;
2108
2109         memset(&tmp, 0, sizeof(tmp));
2110         tmp.cmd = ETHTOOL_GET_DUMP_FLAG;
2111         ret = ops->get_dump_flag(dev, &tmp);
2112         if (ret)
2113                 return ret;
2114
2115         len = min(tmp.len, dump.len);
2116         if (!len)
2117                 return -EFAULT;
2118
2119         /* Don't ever let the driver think there's more space available
2120          * than it requested with .get_dump_flag().
2121          */
2122         dump.len = len;
2123
2124         /* Always allocate enough space to hold the whole thing so that the
2125          * driver does not need to check the length and bother with partial
2126          * dumping.
2127          */
2128         data = vzalloc(tmp.len);
2129         if (!data)
2130                 return -ENOMEM;
2131         ret = ops->get_dump_data(dev, &dump, data);
2132         if (ret)
2133                 goto out;
2134
2135         /* There are two sane possibilities:
2136          * 1. The driver's .get_dump_data() does not touch dump.len.
2137          * 2. Or it may set dump.len to how much it really writes, which
2138          *    should be tmp.len (or len if it can do a partial dump).
2139          * In any case respond to userspace with the actual length of data
2140          * it's receiving.
2141          */
2142         WARN_ON(dump.len != len && dump.len != tmp.len);
2143         dump.len = len;
2144
2145         if (copy_to_user(useraddr, &dump, sizeof(dump))) {
2146                 ret = -EFAULT;
2147                 goto out;
2148         }
2149         useraddr += offsetof(struct ethtool_dump, data);
2150         if (copy_to_user(useraddr, data, len))
2151                 ret = -EFAULT;
2152 out:
2153         vfree(data);
2154         return ret;
2155 }
2156
2157 static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr)
2158 {
2159         int err = 0;
2160         struct ethtool_ts_info info;
2161         const struct ethtool_ops *ops = dev->ethtool_ops;
2162         struct phy_device *phydev = dev->phydev;
2163
2164         memset(&info, 0, sizeof(info));
2165         info.cmd = ETHTOOL_GET_TS_INFO;
2166
2167         if (phydev && phydev->drv && phydev->drv->ts_info) {
2168                 err = phydev->drv->ts_info(phydev, &info);
2169         } else if (ops->get_ts_info) {
2170                 err = ops->get_ts_info(dev, &info);
2171         } else {
2172                 info.so_timestamping =
2173                         SOF_TIMESTAMPING_RX_SOFTWARE |
2174                         SOF_TIMESTAMPING_SOFTWARE;
2175                 info.phc_index = -1;
2176         }
2177
2178         if (err)
2179                 return err;
2180
2181         if (copy_to_user(useraddr, &info, sizeof(info)))
2182                 err = -EFAULT;
2183
2184         return err;
2185 }
2186
2187 static int __ethtool_get_module_info(struct net_device *dev,
2188                                      struct ethtool_modinfo *modinfo)
2189 {
2190         const struct ethtool_ops *ops = dev->ethtool_ops;
2191         struct phy_device *phydev = dev->phydev;
2192
2193         if (dev->sfp_bus)
2194                 return sfp_get_module_info(dev->sfp_bus, modinfo);
2195
2196         if (phydev && phydev->drv && phydev->drv->module_info)
2197                 return phydev->drv->module_info(phydev, modinfo);
2198
2199         if (ops->get_module_info)
2200                 return ops->get_module_info(dev, modinfo);
2201
2202         return -EOPNOTSUPP;
2203 }
2204
2205 static int ethtool_get_module_info(struct net_device *dev,
2206                                    void __user *useraddr)
2207 {
2208         int ret;
2209         struct ethtool_modinfo modinfo;
2210
2211         if (copy_from_user(&modinfo, useraddr, sizeof(modinfo)))
2212                 return -EFAULT;
2213
2214         ret = __ethtool_get_module_info(dev, &modinfo);
2215         if (ret)
2216                 return ret;
2217
2218         if (copy_to_user(useraddr, &modinfo, sizeof(modinfo)))
2219                 return -EFAULT;
2220
2221         return 0;
2222 }
2223
2224 static int __ethtool_get_module_eeprom(struct net_device *dev,
2225                                        struct ethtool_eeprom *ee, u8 *data)
2226 {
2227         const struct ethtool_ops *ops = dev->ethtool_ops;
2228         struct phy_device *phydev = dev->phydev;
2229
2230         if (dev->sfp_bus)
2231                 return sfp_get_module_eeprom(dev->sfp_bus, ee, data);
2232
2233         if (phydev && phydev->drv && phydev->drv->module_eeprom)
2234                 return phydev->drv->module_eeprom(phydev, ee, data);
2235
2236         if (ops->get_module_eeprom)
2237                 return ops->get_module_eeprom(dev, ee, data);
2238
2239         return -EOPNOTSUPP;
2240 }
2241
2242 static int ethtool_get_module_eeprom(struct net_device *dev,
2243                                      void __user *useraddr)
2244 {
2245         int ret;
2246         struct ethtool_modinfo modinfo;
2247
2248         ret = __ethtool_get_module_info(dev, &modinfo);
2249         if (ret)
2250                 return ret;
2251
2252         return ethtool_get_any_eeprom(dev, useraddr,
2253                                       __ethtool_get_module_eeprom,
2254                                       modinfo.eeprom_len);
2255 }
2256
2257 static int ethtool_tunable_valid(const struct ethtool_tunable *tuna)
2258 {
2259         switch (tuna->id) {
2260         case ETHTOOL_RX_COPYBREAK:
2261         case ETHTOOL_TX_COPYBREAK:
2262                 if (tuna->len != sizeof(u32) ||
2263                     tuna->type_id != ETHTOOL_TUNABLE_U32)
2264                         return -EINVAL;
2265                 break;
2266         case ETHTOOL_PFC_PREVENTION_TOUT:
2267                 if (tuna->len != sizeof(u16) ||
2268                     tuna->type_id != ETHTOOL_TUNABLE_U16)
2269                         return -EINVAL;
2270                 break;
2271         default:
2272                 return -EINVAL;
2273         }
2274
2275         return 0;
2276 }
2277
2278 static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr)
2279 {
2280         int ret;
2281         struct ethtool_tunable tuna;
2282         const struct ethtool_ops *ops = dev->ethtool_ops;
2283         void *data;
2284
2285         if (!ops->get_tunable)
2286                 return -EOPNOTSUPP;
2287         if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2288                 return -EFAULT;
2289         ret = ethtool_tunable_valid(&tuna);
2290         if (ret)
2291                 return ret;
2292         data = kmalloc(tuna.len, GFP_USER);
2293         if (!data)
2294                 return -ENOMEM;
2295         ret = ops->get_tunable(dev, &tuna, data);
2296         if (ret)
2297                 goto out;
2298         useraddr += sizeof(tuna);
2299         ret = -EFAULT;
2300         if (copy_to_user(useraddr, data, tuna.len))
2301                 goto out;
2302         ret = 0;
2303
2304 out:
2305         kfree(data);
2306         return ret;
2307 }
2308
2309 static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr)
2310 {
2311         int ret;
2312         struct ethtool_tunable tuna;
2313         const struct ethtool_ops *ops = dev->ethtool_ops;
2314         void *data;
2315
2316         if (!ops->set_tunable)
2317                 return -EOPNOTSUPP;
2318         if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2319                 return -EFAULT;
2320         ret = ethtool_tunable_valid(&tuna);
2321         if (ret)
2322                 return ret;
2323         useraddr += sizeof(tuna);
2324         data = memdup_user(useraddr, tuna.len);
2325         if (IS_ERR(data))
2326                 return PTR_ERR(data);
2327         ret = ops->set_tunable(dev, &tuna, data);
2328
2329         kfree(data);
2330         return ret;
2331 }
2332
2333 static noinline_for_stack int
2334 ethtool_get_per_queue_coalesce(struct net_device *dev,
2335                                void __user *useraddr,
2336                                struct ethtool_per_queue_op *per_queue_opt)
2337 {
2338         u32 bit;
2339         int ret;
2340         DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2341
2342         if (!dev->ethtool_ops->get_per_queue_coalesce)
2343                 return -EOPNOTSUPP;
2344
2345         useraddr += sizeof(*per_queue_opt);
2346
2347         bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask,
2348                           MAX_NUM_QUEUE);
2349
2350         for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2351                 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
2352
2353                 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, &coalesce);
2354                 if (ret != 0)
2355                         return ret;
2356                 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
2357                         return -EFAULT;
2358                 useraddr += sizeof(coalesce);
2359         }
2360
2361         return 0;
2362 }
2363
2364 static noinline_for_stack int
2365 ethtool_set_per_queue_coalesce(struct net_device *dev,
2366                                void __user *useraddr,
2367                                struct ethtool_per_queue_op *per_queue_opt)
2368 {
2369         u32 bit;
2370         int i, ret = 0;
2371         int n_queue;
2372         struct ethtool_coalesce *backup = NULL, *tmp = NULL;
2373         DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2374
2375         if ((!dev->ethtool_ops->set_per_queue_coalesce) ||
2376             (!dev->ethtool_ops->get_per_queue_coalesce))
2377                 return -EOPNOTSUPP;
2378
2379         useraddr += sizeof(*per_queue_opt);
2380
2381         bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask, MAX_NUM_QUEUE);
2382         n_queue = bitmap_weight(queue_mask, MAX_NUM_QUEUE);
2383         tmp = backup = kmalloc_array(n_queue, sizeof(*backup), GFP_KERNEL);
2384         if (!backup)
2385                 return -ENOMEM;
2386
2387         for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2388                 struct ethtool_coalesce coalesce;
2389
2390                 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, tmp);
2391                 if (ret != 0)
2392                         goto roll_back;
2393
2394                 tmp++;
2395
2396                 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) {
2397                         ret = -EFAULT;
2398                         goto roll_back;
2399                 }
2400
2401                 ret = dev->ethtool_ops->set_per_queue_coalesce(dev, bit, &coalesce);
2402                 if (ret != 0)
2403                         goto roll_back;
2404
2405                 useraddr += sizeof(coalesce);
2406         }
2407
2408 roll_back:
2409         if (ret != 0) {
2410                 tmp = backup;
2411                 for_each_set_bit(i, queue_mask, bit) {
2412                         dev->ethtool_ops->set_per_queue_coalesce(dev, i, tmp);
2413                         tmp++;
2414                 }
2415         }
2416         kfree(backup);
2417
2418         return ret;
2419 }
2420
2421 static int noinline_for_stack ethtool_set_per_queue(struct net_device *dev,
2422                                  void __user *useraddr, u32 sub_cmd)
2423 {
2424         struct ethtool_per_queue_op per_queue_opt;
2425
2426         if (copy_from_user(&per_queue_opt, useraddr, sizeof(per_queue_opt)))
2427                 return -EFAULT;
2428
2429         if (per_queue_opt.sub_command != sub_cmd)
2430                 return -EINVAL;
2431
2432         switch (per_queue_opt.sub_command) {
2433         case ETHTOOL_GCOALESCE:
2434                 return ethtool_get_per_queue_coalesce(dev, useraddr, &per_queue_opt);
2435         case ETHTOOL_SCOALESCE:
2436                 return ethtool_set_per_queue_coalesce(dev, useraddr, &per_queue_opt);
2437         default:
2438                 return -EOPNOTSUPP;
2439         };
2440 }
2441
2442 static int ethtool_phy_tunable_valid(const struct ethtool_tunable *tuna)
2443 {
2444         switch (tuna->id) {
2445         case ETHTOOL_PHY_DOWNSHIFT:
2446         case ETHTOOL_PHY_FAST_LINK_DOWN:
2447                 if (tuna->len != sizeof(u8) ||
2448                     tuna->type_id != ETHTOOL_TUNABLE_U8)
2449                         return -EINVAL;
2450                 break;
2451         default:
2452                 return -EINVAL;
2453         }
2454
2455         return 0;
2456 }
2457
2458 static int get_phy_tunable(struct net_device *dev, void __user *useraddr)
2459 {
2460         int ret;
2461         struct ethtool_tunable tuna;
2462         struct phy_device *phydev = dev->phydev;
2463         void *data;
2464
2465         if (!(phydev && phydev->drv && phydev->drv->get_tunable))
2466                 return -EOPNOTSUPP;
2467
2468         if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2469                 return -EFAULT;
2470         ret = ethtool_phy_tunable_valid(&tuna);
2471         if (ret)
2472                 return ret;
2473         data = kmalloc(tuna.len, GFP_USER);
2474         if (!data)
2475                 return -ENOMEM;
2476         mutex_lock(&phydev->lock);
2477         ret = phydev->drv->get_tunable(phydev, &tuna, data);
2478         mutex_unlock(&phydev->lock);
2479         if (ret)
2480                 goto out;
2481         useraddr += sizeof(tuna);
2482         ret = -EFAULT;
2483         if (copy_to_user(useraddr, data, tuna.len))
2484                 goto out;
2485         ret = 0;
2486
2487 out:
2488         kfree(data);
2489         return ret;
2490 }
2491
2492 static int set_phy_tunable(struct net_device *dev, void __user *useraddr)
2493 {
2494         int ret;
2495         struct ethtool_tunable tuna;
2496         struct phy_device *phydev = dev->phydev;
2497         void *data;
2498
2499         if (!(phydev && phydev->drv && phydev->drv->set_tunable))
2500                 return -EOPNOTSUPP;
2501         if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2502                 return -EFAULT;
2503         ret = ethtool_phy_tunable_valid(&tuna);
2504         if (ret)
2505                 return ret;
2506         useraddr += sizeof(tuna);
2507         data = memdup_user(useraddr, tuna.len);
2508         if (IS_ERR(data))
2509                 return PTR_ERR(data);
2510         mutex_lock(&phydev->lock);
2511         ret = phydev->drv->set_tunable(phydev, &tuna, data);
2512         mutex_unlock(&phydev->lock);
2513
2514         kfree(data);
2515         return ret;
2516 }
2517
2518 static int ethtool_get_fecparam(struct net_device *dev, void __user *useraddr)
2519 {
2520         struct ethtool_fecparam fecparam = { .cmd = ETHTOOL_GFECPARAM };
2521         int rc;
2522
2523         if (!dev->ethtool_ops->get_fecparam)
2524                 return -EOPNOTSUPP;
2525
2526         rc = dev->ethtool_ops->get_fecparam(dev, &fecparam);
2527         if (rc)
2528                 return rc;
2529
2530         if (copy_to_user(useraddr, &fecparam, sizeof(fecparam)))
2531                 return -EFAULT;
2532         return 0;
2533 }
2534
2535 static int ethtool_set_fecparam(struct net_device *dev, void __user *useraddr)
2536 {
2537         struct ethtool_fecparam fecparam;
2538
2539         if (!dev->ethtool_ops->set_fecparam)
2540                 return -EOPNOTSUPP;
2541
2542         if (copy_from_user(&fecparam, useraddr, sizeof(fecparam)))
2543                 return -EFAULT;
2544
2545         return dev->ethtool_ops->set_fecparam(dev, &fecparam);
2546 }
2547
2548 /* The main entry point in this file.  Called from net/core/dev_ioctl.c */
2549
2550 int dev_ethtool(struct net *net, struct ifreq *ifr)
2551 {
2552         struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
2553         void __user *useraddr = ifr->ifr_data;
2554         u32 ethcmd, sub_cmd;
2555         int rc;
2556         netdev_features_t old_features;
2557
2558         if (!dev || !netif_device_present(dev))
2559                 return -ENODEV;
2560
2561         if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
2562                 return -EFAULT;
2563
2564         if (ethcmd == ETHTOOL_PERQUEUE) {
2565                 if (copy_from_user(&sub_cmd, useraddr + sizeof(ethcmd), sizeof(sub_cmd)))
2566                         return -EFAULT;
2567         } else {
2568                 sub_cmd = ethcmd;
2569         }
2570         /* Allow some commands to be done by anyone */
2571         switch (sub_cmd) {
2572         case ETHTOOL_GSET:
2573         case ETHTOOL_GDRVINFO:
2574         case ETHTOOL_GMSGLVL:
2575         case ETHTOOL_GLINK:
2576         case ETHTOOL_GCOALESCE:
2577         case ETHTOOL_GRINGPARAM:
2578         case ETHTOOL_GPAUSEPARAM:
2579         case ETHTOOL_GRXCSUM:
2580         case ETHTOOL_GTXCSUM:
2581         case ETHTOOL_GSG:
2582         case ETHTOOL_GSSET_INFO:
2583         case ETHTOOL_GSTRINGS:
2584         case ETHTOOL_GSTATS:
2585         case ETHTOOL_GPHYSTATS:
2586         case ETHTOOL_GTSO:
2587         case ETHTOOL_GPERMADDR:
2588         case ETHTOOL_GUFO:
2589         case ETHTOOL_GGSO:
2590         case ETHTOOL_GGRO:
2591         case ETHTOOL_GFLAGS:
2592         case ETHTOOL_GPFLAGS:
2593         case ETHTOOL_GRXFH:
2594         case ETHTOOL_GRXRINGS:
2595         case ETHTOOL_GRXCLSRLCNT:
2596         case ETHTOOL_GRXCLSRULE:
2597         case ETHTOOL_GRXCLSRLALL:
2598         case ETHTOOL_GRXFHINDIR:
2599         case ETHTOOL_GRSSH:
2600         case ETHTOOL_GFEATURES:
2601         case ETHTOOL_GCHANNELS:
2602         case ETHTOOL_GET_TS_INFO:
2603         case ETHTOOL_GEEE:
2604         case ETHTOOL_GTUNABLE:
2605         case ETHTOOL_PHY_GTUNABLE:
2606         case ETHTOOL_GLINKSETTINGS:
2607         case ETHTOOL_GFECPARAM:
2608                 break;
2609         default:
2610                 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
2611                         return -EPERM;
2612         }
2613
2614         if (dev->ethtool_ops->begin) {
2615                 rc = dev->ethtool_ops->begin(dev);
2616                 if (rc  < 0)
2617                         return rc;
2618         }
2619         old_features = dev->features;
2620
2621         switch (ethcmd) {
2622         case ETHTOOL_GSET:
2623                 rc = ethtool_get_settings(dev, useraddr);
2624                 break;
2625         case ETHTOOL_SSET:
2626                 rc = ethtool_set_settings(dev, useraddr);
2627                 break;
2628         case ETHTOOL_GDRVINFO:
2629                 rc = ethtool_get_drvinfo(dev, useraddr);
2630                 break;
2631         case ETHTOOL_GREGS:
2632                 rc = ethtool_get_regs(dev, useraddr);
2633                 break;
2634         case ETHTOOL_GWOL:
2635                 rc = ethtool_get_wol(dev, useraddr);
2636                 break;
2637         case ETHTOOL_SWOL:
2638                 rc = ethtool_set_wol(dev, useraddr);
2639                 break;
2640         case ETHTOOL_GMSGLVL:
2641                 rc = ethtool_get_value(dev, useraddr, ethcmd,
2642                                        dev->ethtool_ops->get_msglevel);
2643                 break;
2644         case ETHTOOL_SMSGLVL:
2645                 rc = ethtool_set_value_void(dev, useraddr,
2646                                        dev->ethtool_ops->set_msglevel);
2647                 break;
2648         case ETHTOOL_GEEE:
2649                 rc = ethtool_get_eee(dev, useraddr);
2650                 break;
2651         case ETHTOOL_SEEE:
2652                 rc = ethtool_set_eee(dev, useraddr);
2653                 break;
2654         case ETHTOOL_NWAY_RST:
2655                 rc = ethtool_nway_reset(dev);
2656                 break;
2657         case ETHTOOL_GLINK:
2658                 rc = ethtool_get_link(dev, useraddr);
2659                 break;
2660         case ETHTOOL_GEEPROM:
2661                 rc = ethtool_get_eeprom(dev, useraddr);
2662                 break;
2663         case ETHTOOL_SEEPROM:
2664                 rc = ethtool_set_eeprom(dev, useraddr);
2665                 break;
2666         case ETHTOOL_GCOALESCE:
2667                 rc = ethtool_get_coalesce(dev, useraddr);
2668                 break;
2669         case ETHTOOL_SCOALESCE:
2670                 rc = ethtool_set_coalesce(dev, useraddr);
2671                 break;
2672         case ETHTOOL_GRINGPARAM:
2673                 rc = ethtool_get_ringparam(dev, useraddr);
2674                 break;
2675         case ETHTOOL_SRINGPARAM:
2676                 rc = ethtool_set_ringparam(dev, useraddr);
2677                 break;
2678         case ETHTOOL_GPAUSEPARAM:
2679                 rc = ethtool_get_pauseparam(dev, useraddr);
2680                 break;
2681         case ETHTOOL_SPAUSEPARAM:
2682                 rc = ethtool_set_pauseparam(dev, useraddr);
2683                 break;
2684         case ETHTOOL_TEST:
2685                 rc = ethtool_self_test(dev, useraddr);
2686                 break;
2687         case ETHTOOL_GSTRINGS:
2688                 rc = ethtool_get_strings(dev, useraddr);
2689                 break;
2690         case ETHTOOL_PHYS_ID:
2691                 rc = ethtool_phys_id(dev, useraddr);
2692                 break;
2693         case ETHTOOL_GSTATS:
2694                 rc = ethtool_get_stats(dev, useraddr);
2695                 break;
2696         case ETHTOOL_GPERMADDR:
2697                 rc = ethtool_get_perm_addr(dev, useraddr);
2698                 break;
2699         case ETHTOOL_GFLAGS:
2700                 rc = ethtool_get_value(dev, useraddr, ethcmd,
2701                                         __ethtool_get_flags);
2702                 break;
2703         case ETHTOOL_SFLAGS:
2704                 rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags);
2705                 break;
2706         case ETHTOOL_GPFLAGS:
2707                 rc = ethtool_get_value(dev, useraddr, ethcmd,
2708                                        dev->ethtool_ops->get_priv_flags);
2709                 break;
2710         case ETHTOOL_SPFLAGS:
2711                 rc = ethtool_set_value(dev, useraddr,
2712                                        dev->ethtool_ops->set_priv_flags);
2713                 break;
2714         case ETHTOOL_GRXFH:
2715         case ETHTOOL_GRXRINGS:
2716         case ETHTOOL_GRXCLSRLCNT:
2717         case ETHTOOL_GRXCLSRULE:
2718         case ETHTOOL_GRXCLSRLALL:
2719                 rc = ethtool_get_rxnfc(dev, ethcmd, useraddr);
2720                 break;
2721         case ETHTOOL_SRXFH:
2722         case ETHTOOL_SRXCLSRLDEL:
2723         case ETHTOOL_SRXCLSRLINS:
2724                 rc = ethtool_set_rxnfc(dev, ethcmd, useraddr);
2725                 break;
2726         case ETHTOOL_FLASHDEV:
2727                 rc = ethtool_flash_device(dev, useraddr);
2728                 break;
2729         case ETHTOOL_RESET:
2730                 rc = ethtool_reset(dev, useraddr);
2731                 break;
2732         case ETHTOOL_GSSET_INFO:
2733                 rc = ethtool_get_sset_info(dev, useraddr);
2734                 break;
2735         case ETHTOOL_GRXFHINDIR:
2736                 rc = ethtool_get_rxfh_indir(dev, useraddr);
2737                 break;
2738         case ETHTOOL_SRXFHINDIR:
2739                 rc = ethtool_set_rxfh_indir(dev, useraddr);
2740                 break;
2741         case ETHTOOL_GRSSH:
2742                 rc = ethtool_get_rxfh(dev, useraddr);
2743                 break;
2744         case ETHTOOL_SRSSH:
2745                 rc = ethtool_set_rxfh(dev, useraddr);
2746                 break;
2747         case ETHTOOL_GFEATURES:
2748                 rc = ethtool_get_features(dev, useraddr);
2749                 break;
2750         case ETHTOOL_SFEATURES:
2751                 rc = ethtool_set_features(dev, useraddr);
2752                 break;
2753         case ETHTOOL_GTXCSUM:
2754         case ETHTOOL_GRXCSUM:
2755         case ETHTOOL_GSG:
2756         case ETHTOOL_GTSO:
2757         case ETHTOOL_GGSO:
2758         case ETHTOOL_GGRO:
2759                 rc = ethtool_get_one_feature(dev, useraddr, ethcmd);
2760                 break;
2761         case ETHTOOL_STXCSUM:
2762         case ETHTOOL_SRXCSUM:
2763         case ETHTOOL_SSG:
2764         case ETHTOOL_STSO:
2765         case ETHTOOL_SGSO:
2766         case ETHTOOL_SGRO:
2767                 rc = ethtool_set_one_feature(dev, useraddr, ethcmd);
2768                 break;
2769         case ETHTOOL_GCHANNELS:
2770                 rc = ethtool_get_channels(dev, useraddr);
2771                 break;
2772         case ETHTOOL_SCHANNELS:
2773                 rc = ethtool_set_channels(dev, useraddr);
2774                 break;
2775         case ETHTOOL_SET_DUMP:
2776                 rc = ethtool_set_dump(dev, useraddr);
2777                 break;
2778         case ETHTOOL_GET_DUMP_FLAG:
2779                 rc = ethtool_get_dump_flag(dev, useraddr);
2780                 break;
2781         case ETHTOOL_GET_DUMP_DATA:
2782                 rc = ethtool_get_dump_data(dev, useraddr);
2783                 break;
2784         case ETHTOOL_GET_TS_INFO:
2785                 rc = ethtool_get_ts_info(dev, useraddr);
2786                 break;
2787         case ETHTOOL_GMODULEINFO:
2788                 rc = ethtool_get_module_info(dev, useraddr);
2789                 break;
2790         case ETHTOOL_GMODULEEEPROM:
2791                 rc = ethtool_get_module_eeprom(dev, useraddr);
2792                 break;
2793         case ETHTOOL_GTUNABLE:
2794                 rc = ethtool_get_tunable(dev, useraddr);
2795                 break;
2796         case ETHTOOL_STUNABLE:
2797                 rc = ethtool_set_tunable(dev, useraddr);
2798                 break;
2799         case ETHTOOL_GPHYSTATS:
2800                 rc = ethtool_get_phy_stats(dev, useraddr);
2801                 break;
2802         case ETHTOOL_PERQUEUE:
2803                 rc = ethtool_set_per_queue(dev, useraddr, sub_cmd);
2804                 break;
2805         case ETHTOOL_GLINKSETTINGS:
2806                 rc = ethtool_get_link_ksettings(dev, useraddr);
2807                 break;
2808         case ETHTOOL_SLINKSETTINGS:
2809                 rc = ethtool_set_link_ksettings(dev, useraddr);
2810                 break;
2811         case ETHTOOL_PHY_GTUNABLE:
2812                 rc = get_phy_tunable(dev, useraddr);
2813                 break;
2814         case ETHTOOL_PHY_STUNABLE:
2815                 rc = set_phy_tunable(dev, useraddr);
2816                 break;
2817         case ETHTOOL_GFECPARAM:
2818                 rc = ethtool_get_fecparam(dev, useraddr);
2819                 break;
2820         case ETHTOOL_SFECPARAM:
2821                 rc = ethtool_set_fecparam(dev, useraddr);
2822                 break;
2823         default:
2824                 rc = -EOPNOTSUPP;
2825         }
2826
2827         if (dev->ethtool_ops->complete)
2828                 dev->ethtool_ops->complete(dev);
2829
2830         if (old_features != dev->features)
2831                 netdev_features_change(dev);
2832
2833         return rc;
2834 }
2835
2836 struct ethtool_rx_flow_key {
2837         struct flow_dissector_key_basic                 basic;
2838         union {
2839                 struct flow_dissector_key_ipv4_addrs    ipv4;
2840                 struct flow_dissector_key_ipv6_addrs    ipv6;
2841         };
2842         struct flow_dissector_key_ports                 tp;
2843         struct flow_dissector_key_ip                    ip;
2844         struct flow_dissector_key_vlan                  vlan;
2845         struct flow_dissector_key_eth_addrs             eth_addrs;
2846 } __aligned(BITS_PER_LONG / 8); /* Ensure that we can do comparisons as longs. */
2847
2848 struct ethtool_rx_flow_match {
2849         struct flow_dissector           dissector;
2850         struct ethtool_rx_flow_key      key;
2851         struct ethtool_rx_flow_key      mask;
2852 };
2853
2854 struct ethtool_rx_flow_rule *
2855 ethtool_rx_flow_rule_create(const struct ethtool_rx_flow_spec_input *input)
2856 {
2857         const struct ethtool_rx_flow_spec *fs = input->fs;
2858         static struct in6_addr zero_addr = {};
2859         struct ethtool_rx_flow_match *match;
2860         struct ethtool_rx_flow_rule *flow;
2861         struct flow_action_entry *act;
2862
2863         flow = kzalloc(sizeof(struct ethtool_rx_flow_rule) +
2864                        sizeof(struct ethtool_rx_flow_match), GFP_KERNEL);
2865         if (!flow)
2866                 return ERR_PTR(-ENOMEM);
2867
2868         /* ethtool_rx supports only one single action per rule. */
2869         flow->rule = flow_rule_alloc(1);
2870         if (!flow->rule) {
2871                 kfree(flow);
2872                 return ERR_PTR(-ENOMEM);
2873         }
2874
2875         match = (struct ethtool_rx_flow_match *)flow->priv;
2876         flow->rule->match.dissector     = &match->dissector;
2877         flow->rule->match.mask          = &match->mask;
2878         flow->rule->match.key           = &match->key;
2879
2880         match->mask.basic.n_proto = htons(0xffff);
2881
2882         switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) {
2883         case TCP_V4_FLOW:
2884         case UDP_V4_FLOW: {
2885                 const struct ethtool_tcpip4_spec *v4_spec, *v4_m_spec;
2886
2887                 match->key.basic.n_proto = htons(ETH_P_IP);
2888
2889                 v4_spec = &fs->h_u.tcp_ip4_spec;
2890                 v4_m_spec = &fs->m_u.tcp_ip4_spec;
2891
2892                 if (v4_m_spec->ip4src) {
2893                         match->key.ipv4.src = v4_spec->ip4src;
2894                         match->mask.ipv4.src = v4_m_spec->ip4src;
2895                 }
2896                 if (v4_m_spec->ip4dst) {
2897                         match->key.ipv4.dst = v4_spec->ip4dst;
2898                         match->mask.ipv4.dst = v4_m_spec->ip4dst;
2899                 }
2900                 if (v4_m_spec->ip4src ||
2901                     v4_m_spec->ip4dst) {
2902                         match->dissector.used_keys |=
2903                                 BIT(FLOW_DISSECTOR_KEY_IPV4_ADDRS);
2904                         match->dissector.offset[FLOW_DISSECTOR_KEY_IPV4_ADDRS] =
2905                                 offsetof(struct ethtool_rx_flow_key, ipv4);
2906                 }
2907                 if (v4_m_spec->psrc) {
2908                         match->key.tp.src = v4_spec->psrc;
2909                         match->mask.tp.src = v4_m_spec->psrc;
2910                 }
2911                 if (v4_m_spec->pdst) {
2912                         match->key.tp.dst = v4_spec->pdst;
2913                         match->mask.tp.dst = v4_m_spec->pdst;
2914                 }
2915                 if (v4_m_spec->psrc ||
2916                     v4_m_spec->pdst) {
2917                         match->dissector.used_keys |=
2918                                 BIT(FLOW_DISSECTOR_KEY_PORTS);
2919                         match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] =
2920                                 offsetof(struct ethtool_rx_flow_key, tp);
2921                 }
2922                 if (v4_m_spec->tos) {
2923                         match->key.ip.tos = v4_spec->tos;
2924                         match->mask.ip.tos = v4_m_spec->tos;
2925                         match->dissector.used_keys |=
2926                                 BIT(FLOW_DISSECTOR_KEY_IP);
2927                         match->dissector.offset[FLOW_DISSECTOR_KEY_IP] =
2928                                 offsetof(struct ethtool_rx_flow_key, ip);
2929                 }
2930                 }
2931                 break;
2932         case TCP_V6_FLOW:
2933         case UDP_V6_FLOW: {
2934                 const struct ethtool_tcpip6_spec *v6_spec, *v6_m_spec;
2935
2936                 match->key.basic.n_proto = htons(ETH_P_IPV6);
2937
2938                 v6_spec = &fs->h_u.tcp_ip6_spec;
2939                 v6_m_spec = &fs->m_u.tcp_ip6_spec;
2940                 if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr))) {
2941                         memcpy(&match->key.ipv6.src, v6_spec->ip6src,
2942                                sizeof(match->key.ipv6.src));
2943                         memcpy(&match->mask.ipv6.src, v6_m_spec->ip6src,
2944                                sizeof(match->mask.ipv6.src));
2945                 }
2946                 if (memcmp(v6_m_spec->ip6dst, &zero_addr, sizeof(zero_addr))) {
2947                         memcpy(&match->key.ipv6.dst, v6_spec->ip6dst,
2948                                sizeof(match->key.ipv6.dst));
2949                         memcpy(&match->mask.ipv6.dst, v6_m_spec->ip6dst,
2950                                sizeof(match->mask.ipv6.dst));
2951                 }
2952                 if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr)) ||
2953                     memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr))) {
2954                         match->dissector.used_keys |=
2955                                 BIT(FLOW_DISSECTOR_KEY_IPV6_ADDRS);
2956                         match->dissector.offset[FLOW_DISSECTOR_KEY_IPV6_ADDRS] =
2957                                 offsetof(struct ethtool_rx_flow_key, ipv6);
2958                 }
2959                 if (v6_m_spec->psrc) {
2960                         match->key.tp.src = v6_spec->psrc;
2961                         match->mask.tp.src = v6_m_spec->psrc;
2962                 }
2963                 if (v6_m_spec->pdst) {
2964                         match->key.tp.dst = v6_spec->pdst;
2965                         match->mask.tp.dst = v6_m_spec->pdst;
2966                 }
2967                 if (v6_m_spec->psrc ||
2968                     v6_m_spec->pdst) {
2969                         match->dissector.used_keys |=
2970                                 BIT(FLOW_DISSECTOR_KEY_PORTS);
2971                         match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] =
2972                                 offsetof(struct ethtool_rx_flow_key, tp);
2973                 }
2974                 if (v6_m_spec->tclass) {
2975                         match->key.ip.tos = v6_spec->tclass;
2976                         match->mask.ip.tos = v6_m_spec->tclass;
2977                         match->dissector.used_keys |=
2978                                 BIT(FLOW_DISSECTOR_KEY_IP);
2979                         match->dissector.offset[FLOW_DISSECTOR_KEY_IP] =
2980                                 offsetof(struct ethtool_rx_flow_key, ip);
2981                 }
2982                 }
2983                 break;
2984         default:
2985                 ethtool_rx_flow_rule_destroy(flow);
2986                 return ERR_PTR(-EINVAL);
2987         }
2988
2989         switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) {
2990         case TCP_V4_FLOW:
2991         case TCP_V6_FLOW:
2992                 match->key.basic.ip_proto = IPPROTO_TCP;
2993                 break;
2994         case UDP_V4_FLOW:
2995         case UDP_V6_FLOW:
2996                 match->key.basic.ip_proto = IPPROTO_UDP;
2997                 break;
2998         }
2999         match->mask.basic.ip_proto = 0xff;
3000
3001         match->dissector.used_keys |= BIT(FLOW_DISSECTOR_KEY_BASIC);
3002         match->dissector.offset[FLOW_DISSECTOR_KEY_BASIC] =
3003                 offsetof(struct ethtool_rx_flow_key, basic);
3004
3005         if (fs->flow_type & FLOW_EXT) {
3006                 const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext;
3007                 const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext;
3008
3009                 if (ext_m_spec->vlan_etype) {
3010                         match->key.vlan.vlan_tpid = ext_h_spec->vlan_etype;
3011                         match->mask.vlan.vlan_tpid = ext_m_spec->vlan_etype;
3012                 }
3013
3014                 if (ext_m_spec->vlan_tci) {
3015                         match->key.vlan.vlan_id =
3016                                 ntohs(ext_h_spec->vlan_tci) & 0x0fff;
3017                         match->mask.vlan.vlan_id =
3018                                 ntohs(ext_m_spec->vlan_tci) & 0x0fff;
3019
3020                         match->key.vlan.vlan_priority =
3021                                 (ntohs(ext_h_spec->vlan_tci) & 0xe000) >> 13;
3022                         match->mask.vlan.vlan_priority =
3023                                 (ntohs(ext_m_spec->vlan_tci) & 0xe000) >> 13;
3024                 }
3025
3026                 if (ext_m_spec->vlan_etype ||
3027                     ext_m_spec->vlan_tci) {
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);
3032                 }
3033         }
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;
3037
3038                 memcpy(match->key.eth_addrs.dst, ext_h_spec->h_dest,
3039                        ETH_ALEN);
3040                 memcpy(match->mask.eth_addrs.dst, ext_m_spec->h_dest,
3041                        ETH_ALEN);
3042
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);
3047         }
3048
3049         act = &flow->rule->action.entries[0];
3050         switch (fs->ring_cookie) {
3051         case RX_CLS_FLOW_DISC:
3052                 act->id = FLOW_ACTION_DROP;
3053                 break;
3054         case RX_CLS_FLOW_WAKE:
3055                 act->id = FLOW_ACTION_WAKE;
3056                 break;
3057         default:
3058                 act->id = FLOW_ACTION_QUEUE;
3059                 if (fs->flow_type & FLOW_RSS)
3060                         act->queue.ctx = input->rss_ctx;
3061
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);
3064                 break;
3065         }
3066
3067         return flow;
3068 }
3069 EXPORT_SYMBOL(ethtool_rx_flow_rule_create);
3070
3071 void ethtool_rx_flow_rule_destroy(struct ethtool_rx_flow_rule *flow)
3072 {
3073         kfree(flow->rule);
3074         kfree(flow);
3075 }
3076 EXPORT_SYMBOL(ethtool_rx_flow_rule_destroy);