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