xref: /openbmc/linux/net/ethtool/ioctl.c (revision 9deb1e9f)
19ce48e5aSMichal Kubecek // SPDX-License-Identifier: GPL-2.0-or-later
29ce48e5aSMichal Kubecek /*
39ce48e5aSMichal Kubecek  * net/core/ethtool.c - Ethtool ioctl handler
49ce48e5aSMichal Kubecek  * Copyright (c) 2003 Matthew Wilcox <matthew@wil.cx>
59ce48e5aSMichal Kubecek  *
69ce48e5aSMichal Kubecek  * This file is where we call all the ethtool_ops commands to get
79ce48e5aSMichal Kubecek  * the information ethtool needs.
89ce48e5aSMichal Kubecek  */
99ce48e5aSMichal Kubecek 
10dd98d289SArnd Bergmann #include <linux/compat.h>
11b6459415SJakub Kicinski #include <linux/etherdevice.h>
129ce48e5aSMichal Kubecek #include <linux/module.h>
139ce48e5aSMichal Kubecek #include <linux/types.h>
149ce48e5aSMichal Kubecek #include <linux/capability.h>
159ce48e5aSMichal Kubecek #include <linux/errno.h>
169ce48e5aSMichal Kubecek #include <linux/ethtool.h>
179ce48e5aSMichal Kubecek #include <linux/netdevice.h>
189ce48e5aSMichal Kubecek #include <linux/net_tstamp.h>
199ce48e5aSMichal Kubecek #include <linux/phy.h>
209ce48e5aSMichal Kubecek #include <linux/bitops.h>
219ce48e5aSMichal Kubecek #include <linux/uaccess.h>
229ce48e5aSMichal Kubecek #include <linux/vmalloc.h>
239ce48e5aSMichal Kubecek #include <linux/sfp.h>
249ce48e5aSMichal Kubecek #include <linux/slab.h>
259ce48e5aSMichal Kubecek #include <linux/rtnetlink.h>
269ce48e5aSMichal Kubecek #include <linux/sched/signal.h>
279ce48e5aSMichal Kubecek #include <linux/net.h>
28f32a2137SHeiner Kallweit #include <linux/pm_runtime.h>
299ce48e5aSMichal Kubecek #include <net/devlink.h>
30a71506a4SMagnus Karlsson #include <net/xdp_sock_drv.h>
319ce48e5aSMichal Kubecek #include <net/flow_offload.h>
3273286734SMichal Kubecek #include <linux/ethtool_netlink.h>
331c79031fSLeon Romanovsky #include <generated/utsrelease.h>
34d44e1310SMichal Kubecek #include "common.h"
35d44e1310SMichal Kubecek 
36095cfcfeSJakub Kicinski /* State held across locks and calls for commands which have devlink fallback */
37095cfcfeSJakub Kicinski struct ethtool_devlink_compat {
381af0a094SJakub Kicinski 	struct devlink *devlink;
39095cfcfeSJakub Kicinski 	union {
40095cfcfeSJakub Kicinski 		struct ethtool_flash efl;
41095cfcfeSJakub Kicinski 		struct ethtool_drvinfo info;
42095cfcfeSJakub Kicinski 	};
43095cfcfeSJakub Kicinski };
44095cfcfeSJakub Kicinski 
451af0a094SJakub Kicinski static struct devlink *netdev_to_devlink_get(struct net_device *dev)
461af0a094SJakub Kicinski {
478eba37f7SJiri Pirko 	if (!dev->devlink_port)
481af0a094SJakub Kicinski 		return NULL;
498eba37f7SJiri Pirko 	return devlink_try_get(dev->devlink_port->devlink);
501af0a094SJakub Kicinski }
511af0a094SJakub Kicinski 
529ce48e5aSMichal Kubecek /*
539ce48e5aSMichal Kubecek  * Some useful ethtool_ops methods that're device independent.
549ce48e5aSMichal Kubecek  * If we find that all drivers want to do the same thing here,
559ce48e5aSMichal Kubecek  * we can turn these into dev_() function calls.
569ce48e5aSMichal Kubecek  */
579ce48e5aSMichal Kubecek 
589ce48e5aSMichal Kubecek u32 ethtool_op_get_link(struct net_device *dev)
599ce48e5aSMichal Kubecek {
609ce48e5aSMichal Kubecek 	return netif_carrier_ok(dev) ? 1 : 0;
619ce48e5aSMichal Kubecek }
629ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_op_get_link);
639ce48e5aSMichal Kubecek 
649ce48e5aSMichal Kubecek int ethtool_op_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
659ce48e5aSMichal Kubecek {
669ce48e5aSMichal Kubecek 	info->so_timestamping =
679ce48e5aSMichal Kubecek 		SOF_TIMESTAMPING_TX_SOFTWARE |
689ce48e5aSMichal Kubecek 		SOF_TIMESTAMPING_RX_SOFTWARE |
699ce48e5aSMichal Kubecek 		SOF_TIMESTAMPING_SOFTWARE;
709ce48e5aSMichal Kubecek 	info->phc_index = -1;
719ce48e5aSMichal Kubecek 	return 0;
729ce48e5aSMichal Kubecek }
739ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_op_get_ts_info);
749ce48e5aSMichal Kubecek 
759ce48e5aSMichal Kubecek /* Handlers for each ethtool command */
769ce48e5aSMichal Kubecek 
779ce48e5aSMichal Kubecek static int ethtool_get_features(struct net_device *dev, void __user *useraddr)
789ce48e5aSMichal Kubecek {
799ce48e5aSMichal Kubecek 	struct ethtool_gfeatures cmd = {
809ce48e5aSMichal Kubecek 		.cmd = ETHTOOL_GFEATURES,
819ce48e5aSMichal Kubecek 		.size = ETHTOOL_DEV_FEATURE_WORDS,
829ce48e5aSMichal Kubecek 	};
839ce48e5aSMichal Kubecek 	struct ethtool_get_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
849ce48e5aSMichal Kubecek 	u32 __user *sizeaddr;
859ce48e5aSMichal Kubecek 	u32 copy_size;
869ce48e5aSMichal Kubecek 	int i;
879ce48e5aSMichal Kubecek 
889ce48e5aSMichal Kubecek 	/* in case feature bits run out again */
899ce48e5aSMichal Kubecek 	BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS * sizeof(u32) > sizeof(netdev_features_t));
909ce48e5aSMichal Kubecek 
919ce48e5aSMichal Kubecek 	for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
929ce48e5aSMichal Kubecek 		features[i].available = (u32)(dev->hw_features >> (32 * i));
939ce48e5aSMichal Kubecek 		features[i].requested = (u32)(dev->wanted_features >> (32 * i));
949ce48e5aSMichal Kubecek 		features[i].active = (u32)(dev->features >> (32 * i));
959ce48e5aSMichal Kubecek 		features[i].never_changed =
969ce48e5aSMichal Kubecek 			(u32)(NETIF_F_NEVER_CHANGE >> (32 * i));
979ce48e5aSMichal Kubecek 	}
989ce48e5aSMichal Kubecek 
999ce48e5aSMichal Kubecek 	sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size);
1009ce48e5aSMichal Kubecek 	if (get_user(copy_size, sizeaddr))
1019ce48e5aSMichal Kubecek 		return -EFAULT;
1029ce48e5aSMichal Kubecek 
1039ce48e5aSMichal Kubecek 	if (copy_size > ETHTOOL_DEV_FEATURE_WORDS)
1049ce48e5aSMichal Kubecek 		copy_size = ETHTOOL_DEV_FEATURE_WORDS;
1059ce48e5aSMichal Kubecek 
1069ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
1079ce48e5aSMichal Kubecek 		return -EFAULT;
1089ce48e5aSMichal Kubecek 	useraddr += sizeof(cmd);
109ed717613SGustavo A. R. Silva 	if (copy_to_user(useraddr, features,
110ed717613SGustavo A. R. Silva 			 array_size(copy_size, sizeof(*features))))
1119ce48e5aSMichal Kubecek 		return -EFAULT;
1129ce48e5aSMichal Kubecek 
1139ce48e5aSMichal Kubecek 	return 0;
1149ce48e5aSMichal Kubecek }
1159ce48e5aSMichal Kubecek 
1169ce48e5aSMichal Kubecek static int ethtool_set_features(struct net_device *dev, void __user *useraddr)
1179ce48e5aSMichal Kubecek {
1189ce48e5aSMichal Kubecek 	struct ethtool_sfeatures cmd;
1199ce48e5aSMichal Kubecek 	struct ethtool_set_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
1209ce48e5aSMichal Kubecek 	netdev_features_t wanted = 0, valid = 0;
1219ce48e5aSMichal Kubecek 	int i, ret = 0;
1229ce48e5aSMichal Kubecek 
1239ce48e5aSMichal Kubecek 	if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
1249ce48e5aSMichal Kubecek 		return -EFAULT;
1259ce48e5aSMichal Kubecek 	useraddr += sizeof(cmd);
1269ce48e5aSMichal Kubecek 
1279ce48e5aSMichal Kubecek 	if (cmd.size != ETHTOOL_DEV_FEATURE_WORDS)
1289ce48e5aSMichal Kubecek 		return -EINVAL;
1299ce48e5aSMichal Kubecek 
1309ce48e5aSMichal Kubecek 	if (copy_from_user(features, useraddr, sizeof(features)))
1319ce48e5aSMichal Kubecek 		return -EFAULT;
1329ce48e5aSMichal Kubecek 
1339ce48e5aSMichal Kubecek 	for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
1349ce48e5aSMichal Kubecek 		valid |= (netdev_features_t)features[i].valid << (32 * i);
1359ce48e5aSMichal Kubecek 		wanted |= (netdev_features_t)features[i].requested << (32 * i);
1369ce48e5aSMichal Kubecek 	}
1379ce48e5aSMichal Kubecek 
1389ce48e5aSMichal Kubecek 	if (valid & ~NETIF_F_ETHTOOL_BITS)
1399ce48e5aSMichal Kubecek 		return -EINVAL;
1409ce48e5aSMichal Kubecek 
1419ce48e5aSMichal Kubecek 	if (valid & ~dev->hw_features) {
1429ce48e5aSMichal Kubecek 		valid &= dev->hw_features;
1439ce48e5aSMichal Kubecek 		ret |= ETHTOOL_F_UNSUPPORTED;
1449ce48e5aSMichal Kubecek 	}
1459ce48e5aSMichal Kubecek 
1469ce48e5aSMichal Kubecek 	dev->wanted_features &= ~valid;
1479ce48e5aSMichal Kubecek 	dev->wanted_features |= wanted & valid;
1489ce48e5aSMichal Kubecek 	__netdev_update_features(dev);
1499ce48e5aSMichal Kubecek 
1509ce48e5aSMichal Kubecek 	if ((dev->wanted_features ^ dev->features) & valid)
1519ce48e5aSMichal Kubecek 		ret |= ETHTOOL_F_WISH;
1529ce48e5aSMichal Kubecek 
1539ce48e5aSMichal Kubecek 	return ret;
1549ce48e5aSMichal Kubecek }
1559ce48e5aSMichal Kubecek 
1569ce48e5aSMichal Kubecek static int __ethtool_get_sset_count(struct net_device *dev, int sset)
1579ce48e5aSMichal Kubecek {
15817809516SFlorian Fainelli 	const struct ethtool_phy_ops *phy_ops = ethtool_phy_ops;
1599ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
1609ce48e5aSMichal Kubecek 
1619ce48e5aSMichal Kubecek 	if (sset == ETH_SS_FEATURES)
1629ce48e5aSMichal Kubecek 		return ARRAY_SIZE(netdev_features_strings);
1639ce48e5aSMichal Kubecek 
1649ce48e5aSMichal Kubecek 	if (sset == ETH_SS_RSS_HASH_FUNCS)
1659ce48e5aSMichal Kubecek 		return ARRAY_SIZE(rss_hash_func_strings);
1669ce48e5aSMichal Kubecek 
1679ce48e5aSMichal Kubecek 	if (sset == ETH_SS_TUNABLES)
1689ce48e5aSMichal Kubecek 		return ARRAY_SIZE(tunable_strings);
1699ce48e5aSMichal Kubecek 
1709ce48e5aSMichal Kubecek 	if (sset == ETH_SS_PHY_TUNABLES)
1719ce48e5aSMichal Kubecek 		return ARRAY_SIZE(phy_tunable_strings);
1729ce48e5aSMichal Kubecek 
1739ce48e5aSMichal Kubecek 	if (sset == ETH_SS_PHY_STATS && dev->phydev &&
17417809516SFlorian Fainelli 	    !ops->get_ethtool_phy_stats &&
17517809516SFlorian Fainelli 	    phy_ops && phy_ops->get_sset_count)
17617809516SFlorian Fainelli 		return phy_ops->get_sset_count(dev->phydev);
1779ce48e5aSMichal Kubecek 
178428c122fSMichal Kubecek 	if (sset == ETH_SS_LINK_MODES)
179428c122fSMichal Kubecek 		return __ETHTOOL_LINK_MODE_MASK_NBITS;
180428c122fSMichal Kubecek 
1819ce48e5aSMichal Kubecek 	if (ops->get_sset_count && ops->get_strings)
1829ce48e5aSMichal Kubecek 		return ops->get_sset_count(dev, sset);
1839ce48e5aSMichal Kubecek 	else
1849ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
1859ce48e5aSMichal Kubecek }
1869ce48e5aSMichal Kubecek 
1879ce48e5aSMichal Kubecek static void __ethtool_get_strings(struct net_device *dev,
1889ce48e5aSMichal Kubecek 	u32 stringset, u8 *data)
1899ce48e5aSMichal Kubecek {
19017809516SFlorian Fainelli 	const struct ethtool_phy_ops *phy_ops = ethtool_phy_ops;
1919ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
1929ce48e5aSMichal Kubecek 
1939ce48e5aSMichal Kubecek 	if (stringset == ETH_SS_FEATURES)
1949ce48e5aSMichal Kubecek 		memcpy(data, netdev_features_strings,
1959ce48e5aSMichal Kubecek 			sizeof(netdev_features_strings));
1969ce48e5aSMichal Kubecek 	else if (stringset == ETH_SS_RSS_HASH_FUNCS)
1979ce48e5aSMichal Kubecek 		memcpy(data, rss_hash_func_strings,
1989ce48e5aSMichal Kubecek 		       sizeof(rss_hash_func_strings));
1999ce48e5aSMichal Kubecek 	else if (stringset == ETH_SS_TUNABLES)
2009ce48e5aSMichal Kubecek 		memcpy(data, tunable_strings, sizeof(tunable_strings));
2019ce48e5aSMichal Kubecek 	else if (stringset == ETH_SS_PHY_TUNABLES)
2029ce48e5aSMichal Kubecek 		memcpy(data, phy_tunable_strings, sizeof(phy_tunable_strings));
2039ce48e5aSMichal Kubecek 	else if (stringset == ETH_SS_PHY_STATS && dev->phydev &&
20417809516SFlorian Fainelli 		 !ops->get_ethtool_phy_stats && phy_ops &&
20517809516SFlorian Fainelli 		 phy_ops->get_strings)
20617809516SFlorian Fainelli 		phy_ops->get_strings(dev->phydev, data);
207428c122fSMichal Kubecek 	else if (stringset == ETH_SS_LINK_MODES)
208428c122fSMichal Kubecek 		memcpy(data, link_mode_names,
209428c122fSMichal Kubecek 		       __ETHTOOL_LINK_MODE_MASK_NBITS * ETH_GSTRING_LEN);
2109ce48e5aSMichal Kubecek 	else
2119ce48e5aSMichal Kubecek 		/* ops->get_strings is valid because checked earlier */
2129ce48e5aSMichal Kubecek 		ops->get_strings(dev, stringset, data);
2139ce48e5aSMichal Kubecek }
2149ce48e5aSMichal Kubecek 
2159ce48e5aSMichal Kubecek static netdev_features_t ethtool_get_feature_mask(u32 eth_cmd)
2169ce48e5aSMichal Kubecek {
2179ce48e5aSMichal Kubecek 	/* feature masks of legacy discrete ethtool ops */
2189ce48e5aSMichal Kubecek 
2199ce48e5aSMichal Kubecek 	switch (eth_cmd) {
2209ce48e5aSMichal Kubecek 	case ETHTOOL_GTXCSUM:
2219ce48e5aSMichal Kubecek 	case ETHTOOL_STXCSUM:
2229d648fb5SVladyslav Tarasiuk 		return NETIF_F_CSUM_MASK | NETIF_F_FCOE_CRC |
223f70bb065SMichal Kubecek 		       NETIF_F_SCTP_CRC;
2249ce48e5aSMichal Kubecek 	case ETHTOOL_GRXCSUM:
2259ce48e5aSMichal Kubecek 	case ETHTOOL_SRXCSUM:
2269ce48e5aSMichal Kubecek 		return NETIF_F_RXCSUM;
2279ce48e5aSMichal Kubecek 	case ETHTOOL_GSG:
2289ce48e5aSMichal Kubecek 	case ETHTOOL_SSG:
229f70bb065SMichal Kubecek 		return NETIF_F_SG | NETIF_F_FRAGLIST;
2309ce48e5aSMichal Kubecek 	case ETHTOOL_GTSO:
2319ce48e5aSMichal Kubecek 	case ETHTOOL_STSO:
2329ce48e5aSMichal Kubecek 		return NETIF_F_ALL_TSO;
2339ce48e5aSMichal Kubecek 	case ETHTOOL_GGSO:
2349ce48e5aSMichal Kubecek 	case ETHTOOL_SGSO:
2359ce48e5aSMichal Kubecek 		return NETIF_F_GSO;
2369ce48e5aSMichal Kubecek 	case ETHTOOL_GGRO:
2379ce48e5aSMichal Kubecek 	case ETHTOOL_SGRO:
2389ce48e5aSMichal Kubecek 		return NETIF_F_GRO;
2399ce48e5aSMichal Kubecek 	default:
2409ce48e5aSMichal Kubecek 		BUG();
2419ce48e5aSMichal Kubecek 	}
2429ce48e5aSMichal Kubecek }
2439ce48e5aSMichal Kubecek 
2449ce48e5aSMichal Kubecek static int ethtool_get_one_feature(struct net_device *dev,
2459ce48e5aSMichal Kubecek 	char __user *useraddr, u32 ethcmd)
2469ce48e5aSMichal Kubecek {
2479ce48e5aSMichal Kubecek 	netdev_features_t mask = ethtool_get_feature_mask(ethcmd);
2489ce48e5aSMichal Kubecek 	struct ethtool_value edata = {
2499ce48e5aSMichal Kubecek 		.cmd = ethcmd,
2509ce48e5aSMichal Kubecek 		.data = !!(dev->features & mask),
2519ce48e5aSMichal Kubecek 	};
2529ce48e5aSMichal Kubecek 
2539ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &edata, sizeof(edata)))
2549ce48e5aSMichal Kubecek 		return -EFAULT;
2559ce48e5aSMichal Kubecek 	return 0;
2569ce48e5aSMichal Kubecek }
2579ce48e5aSMichal Kubecek 
2589ce48e5aSMichal Kubecek static int ethtool_set_one_feature(struct net_device *dev,
2599ce48e5aSMichal Kubecek 	void __user *useraddr, u32 ethcmd)
2609ce48e5aSMichal Kubecek {
2619ce48e5aSMichal Kubecek 	struct ethtool_value edata;
2629ce48e5aSMichal Kubecek 	netdev_features_t mask;
2639ce48e5aSMichal Kubecek 
2649ce48e5aSMichal Kubecek 	if (copy_from_user(&edata, useraddr, sizeof(edata)))
2659ce48e5aSMichal Kubecek 		return -EFAULT;
2669ce48e5aSMichal Kubecek 
2679ce48e5aSMichal Kubecek 	mask = ethtool_get_feature_mask(ethcmd);
2689ce48e5aSMichal Kubecek 	mask &= dev->hw_features;
2699ce48e5aSMichal Kubecek 	if (!mask)
2709ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
2719ce48e5aSMichal Kubecek 
2729ce48e5aSMichal Kubecek 	if (edata.data)
2739ce48e5aSMichal Kubecek 		dev->wanted_features |= mask;
2749ce48e5aSMichal Kubecek 	else
2759ce48e5aSMichal Kubecek 		dev->wanted_features &= ~mask;
2769ce48e5aSMichal Kubecek 
2779ce48e5aSMichal Kubecek 	__netdev_update_features(dev);
2789ce48e5aSMichal Kubecek 
2799ce48e5aSMichal Kubecek 	return 0;
2809ce48e5aSMichal Kubecek }
2819ce48e5aSMichal Kubecek 
2829ce48e5aSMichal Kubecek #define ETH_ALL_FLAGS    (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
2839ce48e5aSMichal Kubecek 			  ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
2849ce48e5aSMichal Kubecek #define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
2859ce48e5aSMichal Kubecek 			  NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
2869ce48e5aSMichal Kubecek 			  NETIF_F_RXHASH)
2879ce48e5aSMichal Kubecek 
2889ce48e5aSMichal Kubecek static u32 __ethtool_get_flags(struct net_device *dev)
2899ce48e5aSMichal Kubecek {
2909ce48e5aSMichal Kubecek 	u32 flags = 0;
2919ce48e5aSMichal Kubecek 
2929ce48e5aSMichal Kubecek 	if (dev->features & NETIF_F_LRO)
2939ce48e5aSMichal Kubecek 		flags |= ETH_FLAG_LRO;
2949ce48e5aSMichal Kubecek 	if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
2959ce48e5aSMichal Kubecek 		flags |= ETH_FLAG_RXVLAN;
2969ce48e5aSMichal Kubecek 	if (dev->features & NETIF_F_HW_VLAN_CTAG_TX)
2979ce48e5aSMichal Kubecek 		flags |= ETH_FLAG_TXVLAN;
2989ce48e5aSMichal Kubecek 	if (dev->features & NETIF_F_NTUPLE)
2999ce48e5aSMichal Kubecek 		flags |= ETH_FLAG_NTUPLE;
3009ce48e5aSMichal Kubecek 	if (dev->features & NETIF_F_RXHASH)
3019ce48e5aSMichal Kubecek 		flags |= ETH_FLAG_RXHASH;
3029ce48e5aSMichal Kubecek 
3039ce48e5aSMichal Kubecek 	return flags;
3049ce48e5aSMichal Kubecek }
3059ce48e5aSMichal Kubecek 
3069ce48e5aSMichal Kubecek static int __ethtool_set_flags(struct net_device *dev, u32 data)
3079ce48e5aSMichal Kubecek {
3089ce48e5aSMichal Kubecek 	netdev_features_t features = 0, changed;
3099ce48e5aSMichal Kubecek 
3109ce48e5aSMichal Kubecek 	if (data & ~ETH_ALL_FLAGS)
3119ce48e5aSMichal Kubecek 		return -EINVAL;
3129ce48e5aSMichal Kubecek 
3139ce48e5aSMichal Kubecek 	if (data & ETH_FLAG_LRO)
3149ce48e5aSMichal Kubecek 		features |= NETIF_F_LRO;
3159ce48e5aSMichal Kubecek 	if (data & ETH_FLAG_RXVLAN)
3169ce48e5aSMichal Kubecek 		features |= NETIF_F_HW_VLAN_CTAG_RX;
3179ce48e5aSMichal Kubecek 	if (data & ETH_FLAG_TXVLAN)
3189ce48e5aSMichal Kubecek 		features |= NETIF_F_HW_VLAN_CTAG_TX;
3199ce48e5aSMichal Kubecek 	if (data & ETH_FLAG_NTUPLE)
3209ce48e5aSMichal Kubecek 		features |= NETIF_F_NTUPLE;
3219ce48e5aSMichal Kubecek 	if (data & ETH_FLAG_RXHASH)
3229ce48e5aSMichal Kubecek 		features |= NETIF_F_RXHASH;
3239ce48e5aSMichal Kubecek 
3249ce48e5aSMichal Kubecek 	/* allow changing only bits set in hw_features */
3259ce48e5aSMichal Kubecek 	changed = (features ^ dev->features) & ETH_ALL_FEATURES;
3269ce48e5aSMichal Kubecek 	if (changed & ~dev->hw_features)
3279ce48e5aSMichal Kubecek 		return (changed & dev->hw_features) ? -EINVAL : -EOPNOTSUPP;
3289ce48e5aSMichal Kubecek 
3299ce48e5aSMichal Kubecek 	dev->wanted_features =
3309ce48e5aSMichal Kubecek 		(dev->wanted_features & ~changed) | (features & changed);
3319ce48e5aSMichal Kubecek 
3329ce48e5aSMichal Kubecek 	__netdev_update_features(dev);
3339ce48e5aSMichal Kubecek 
3349ce48e5aSMichal Kubecek 	return 0;
3359ce48e5aSMichal Kubecek }
3369ce48e5aSMichal Kubecek 
3379ce48e5aSMichal Kubecek /* Given two link masks, AND them together and save the result in dst. */
3389ce48e5aSMichal Kubecek void ethtool_intersect_link_masks(struct ethtool_link_ksettings *dst,
3399ce48e5aSMichal Kubecek 				  struct ethtool_link_ksettings *src)
3409ce48e5aSMichal Kubecek {
3419ce48e5aSMichal Kubecek 	unsigned int size = BITS_TO_LONGS(__ETHTOOL_LINK_MODE_MASK_NBITS);
3429ce48e5aSMichal Kubecek 	unsigned int idx = 0;
3439ce48e5aSMichal Kubecek 
3449ce48e5aSMichal Kubecek 	for (; idx < size; idx++) {
3459ce48e5aSMichal Kubecek 		dst->link_modes.supported[idx] &=
3469ce48e5aSMichal Kubecek 			src->link_modes.supported[idx];
3479ce48e5aSMichal Kubecek 		dst->link_modes.advertising[idx] &=
3489ce48e5aSMichal Kubecek 			src->link_modes.advertising[idx];
3499ce48e5aSMichal Kubecek 	}
3509ce48e5aSMichal Kubecek }
3519ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_intersect_link_masks);
3529ce48e5aSMichal Kubecek 
3539ce48e5aSMichal Kubecek void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst,
3549ce48e5aSMichal Kubecek 					     u32 legacy_u32)
3559ce48e5aSMichal Kubecek {
3564973056cSSean Anderson 	linkmode_zero(dst);
3579ce48e5aSMichal Kubecek 	dst[0] = legacy_u32;
3589ce48e5aSMichal Kubecek }
3599ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_convert_legacy_u32_to_link_mode);
3609ce48e5aSMichal Kubecek 
3619ce48e5aSMichal Kubecek /* return false if src had higher bits set. lower bits always updated. */
3629ce48e5aSMichal Kubecek bool ethtool_convert_link_mode_to_legacy_u32(u32 *legacy_u32,
3639ce48e5aSMichal Kubecek 					     const unsigned long *src)
3649ce48e5aSMichal Kubecek {
3659ce48e5aSMichal Kubecek 	*legacy_u32 = src[0];
36619d62f5eSMarco Bonelli 	return find_next_bit(src, __ETHTOOL_LINK_MODE_MASK_NBITS, 32) ==
36719d62f5eSMarco Bonelli 		__ETHTOOL_LINK_MODE_MASK_NBITS;
3689ce48e5aSMichal Kubecek }
3699ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_convert_link_mode_to_legacy_u32);
3709ce48e5aSMichal Kubecek 
3719ce48e5aSMichal Kubecek /* return false if ksettings link modes had higher bits
3729ce48e5aSMichal Kubecek  * set. legacy_settings always updated (best effort)
3739ce48e5aSMichal Kubecek  */
3749ce48e5aSMichal Kubecek static bool
3759ce48e5aSMichal Kubecek convert_link_ksettings_to_legacy_settings(
3769ce48e5aSMichal Kubecek 	struct ethtool_cmd *legacy_settings,
3779ce48e5aSMichal Kubecek 	const struct ethtool_link_ksettings *link_ksettings)
3789ce48e5aSMichal Kubecek {
3799ce48e5aSMichal Kubecek 	bool retval = true;
3809ce48e5aSMichal Kubecek 
3819ce48e5aSMichal Kubecek 	memset(legacy_settings, 0, sizeof(*legacy_settings));
3829ce48e5aSMichal Kubecek 	/* this also clears the deprecated fields in legacy structure:
3839ce48e5aSMichal Kubecek 	 * __u8		transceiver;
3849ce48e5aSMichal Kubecek 	 * __u32	maxtxpkt;
3859ce48e5aSMichal Kubecek 	 * __u32	maxrxpkt;
3869ce48e5aSMichal Kubecek 	 */
3879ce48e5aSMichal Kubecek 
3889ce48e5aSMichal Kubecek 	retval &= ethtool_convert_link_mode_to_legacy_u32(
3899ce48e5aSMichal Kubecek 		&legacy_settings->supported,
3909ce48e5aSMichal Kubecek 		link_ksettings->link_modes.supported);
3919ce48e5aSMichal Kubecek 	retval &= ethtool_convert_link_mode_to_legacy_u32(
3929ce48e5aSMichal Kubecek 		&legacy_settings->advertising,
3939ce48e5aSMichal Kubecek 		link_ksettings->link_modes.advertising);
3949ce48e5aSMichal Kubecek 	retval &= ethtool_convert_link_mode_to_legacy_u32(
3959ce48e5aSMichal Kubecek 		&legacy_settings->lp_advertising,
3969ce48e5aSMichal Kubecek 		link_ksettings->link_modes.lp_advertising);
3979ce48e5aSMichal Kubecek 	ethtool_cmd_speed_set(legacy_settings, link_ksettings->base.speed);
3989ce48e5aSMichal Kubecek 	legacy_settings->duplex
3999ce48e5aSMichal Kubecek 		= link_ksettings->base.duplex;
4009ce48e5aSMichal Kubecek 	legacy_settings->port
4019ce48e5aSMichal Kubecek 		= link_ksettings->base.port;
4029ce48e5aSMichal Kubecek 	legacy_settings->phy_address
4039ce48e5aSMichal Kubecek 		= link_ksettings->base.phy_address;
4049ce48e5aSMichal Kubecek 	legacy_settings->autoneg
4059ce48e5aSMichal Kubecek 		= link_ksettings->base.autoneg;
4069ce48e5aSMichal Kubecek 	legacy_settings->mdio_support
4079ce48e5aSMichal Kubecek 		= link_ksettings->base.mdio_support;
4089ce48e5aSMichal Kubecek 	legacy_settings->eth_tp_mdix
4099ce48e5aSMichal Kubecek 		= link_ksettings->base.eth_tp_mdix;
4109ce48e5aSMichal Kubecek 	legacy_settings->eth_tp_mdix_ctrl
4119ce48e5aSMichal Kubecek 		= link_ksettings->base.eth_tp_mdix_ctrl;
4129ce48e5aSMichal Kubecek 	legacy_settings->transceiver
4139ce48e5aSMichal Kubecek 		= link_ksettings->base.transceiver;
4149ce48e5aSMichal Kubecek 	return retval;
4159ce48e5aSMichal Kubecek }
4169ce48e5aSMichal Kubecek 
4179ce48e5aSMichal Kubecek /* number of 32-bit words to store the user's link mode bitmaps */
4189ce48e5aSMichal Kubecek #define __ETHTOOL_LINK_MODE_MASK_NU32			\
4199ce48e5aSMichal Kubecek 	DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32)
4209ce48e5aSMichal Kubecek 
4219ce48e5aSMichal Kubecek /* layout of the struct passed from/to userland */
4229ce48e5aSMichal Kubecek struct ethtool_link_usettings {
4239ce48e5aSMichal Kubecek 	struct ethtool_link_settings base;
4249ce48e5aSMichal Kubecek 	struct {
4259ce48e5aSMichal Kubecek 		__u32 supported[__ETHTOOL_LINK_MODE_MASK_NU32];
4269ce48e5aSMichal Kubecek 		__u32 advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
4279ce48e5aSMichal Kubecek 		__u32 lp_advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
4289ce48e5aSMichal Kubecek 	} link_modes;
4299ce48e5aSMichal Kubecek };
4309ce48e5aSMichal Kubecek 
4319ce48e5aSMichal Kubecek /* Internal kernel helper to query a device ethtool_link_settings. */
4329ce48e5aSMichal Kubecek int __ethtool_get_link_ksettings(struct net_device *dev,
4339ce48e5aSMichal Kubecek 				 struct ethtool_link_ksettings *link_ksettings)
4349ce48e5aSMichal Kubecek {
4359ce48e5aSMichal Kubecek 	ASSERT_RTNL();
4369ce48e5aSMichal Kubecek 
4379ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->get_link_ksettings)
4389ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
4399ce48e5aSMichal Kubecek 
4409ce48e5aSMichal Kubecek 	memset(link_ksettings, 0, sizeof(*link_ksettings));
441a975d7d8SDanielle Ratson 	return dev->ethtool_ops->get_link_ksettings(dev, link_ksettings);
4429ce48e5aSMichal Kubecek }
4439ce48e5aSMichal Kubecek EXPORT_SYMBOL(__ethtool_get_link_ksettings);
4449ce48e5aSMichal Kubecek 
4459ce48e5aSMichal Kubecek /* convert ethtool_link_usettings in user space to a kernel internal
4469ce48e5aSMichal Kubecek  * ethtool_link_ksettings. return 0 on success, errno on error.
4479ce48e5aSMichal Kubecek  */
4489ce48e5aSMichal Kubecek static int load_link_ksettings_from_user(struct ethtool_link_ksettings *to,
4499ce48e5aSMichal Kubecek 					 const void __user *from)
4509ce48e5aSMichal Kubecek {
4519ce48e5aSMichal Kubecek 	struct ethtool_link_usettings link_usettings;
4529ce48e5aSMichal Kubecek 
4539ce48e5aSMichal Kubecek 	if (copy_from_user(&link_usettings, from, sizeof(link_usettings)))
4549ce48e5aSMichal Kubecek 		return -EFAULT;
4559ce48e5aSMichal Kubecek 
4569ce48e5aSMichal Kubecek 	memcpy(&to->base, &link_usettings.base, sizeof(to->base));
4579ce48e5aSMichal Kubecek 	bitmap_from_arr32(to->link_modes.supported,
4589ce48e5aSMichal Kubecek 			  link_usettings.link_modes.supported,
4599ce48e5aSMichal Kubecek 			  __ETHTOOL_LINK_MODE_MASK_NBITS);
4609ce48e5aSMichal Kubecek 	bitmap_from_arr32(to->link_modes.advertising,
4619ce48e5aSMichal Kubecek 			  link_usettings.link_modes.advertising,
4629ce48e5aSMichal Kubecek 			  __ETHTOOL_LINK_MODE_MASK_NBITS);
4639ce48e5aSMichal Kubecek 	bitmap_from_arr32(to->link_modes.lp_advertising,
4649ce48e5aSMichal Kubecek 			  link_usettings.link_modes.lp_advertising,
4659ce48e5aSMichal Kubecek 			  __ETHTOOL_LINK_MODE_MASK_NBITS);
4669ce48e5aSMichal Kubecek 
4679ce48e5aSMichal Kubecek 	return 0;
4689ce48e5aSMichal Kubecek }
4699ce48e5aSMichal Kubecek 
47070ae1e12SCris Forno /* Check if the user is trying to change anything besides speed/duplex */
47170ae1e12SCris Forno bool ethtool_virtdev_validate_cmd(const struct ethtool_link_ksettings *cmd)
47270ae1e12SCris Forno {
47370ae1e12SCris Forno 	struct ethtool_link_settings base2 = {};
47470ae1e12SCris Forno 
47570ae1e12SCris Forno 	base2.speed = cmd->base.speed;
47670ae1e12SCris Forno 	base2.port = PORT_OTHER;
47770ae1e12SCris Forno 	base2.duplex = cmd->base.duplex;
47870ae1e12SCris Forno 	base2.cmd = cmd->base.cmd;
47970ae1e12SCris Forno 	base2.link_mode_masks_nwords = cmd->base.link_mode_masks_nwords;
48070ae1e12SCris Forno 
48170ae1e12SCris Forno 	return !memcmp(&base2, &cmd->base, sizeof(base2)) &&
48270ae1e12SCris Forno 		bitmap_empty(cmd->link_modes.supported,
48370ae1e12SCris Forno 			     __ETHTOOL_LINK_MODE_MASK_NBITS) &&
48470ae1e12SCris Forno 		bitmap_empty(cmd->link_modes.lp_advertising,
48570ae1e12SCris Forno 			     __ETHTOOL_LINK_MODE_MASK_NBITS);
48670ae1e12SCris Forno }
48770ae1e12SCris Forno 
4889ce48e5aSMichal Kubecek /* convert a kernel internal ethtool_link_ksettings to
4899ce48e5aSMichal Kubecek  * ethtool_link_usettings in user space. return 0 on success, errno on
4909ce48e5aSMichal Kubecek  * error.
4919ce48e5aSMichal Kubecek  */
4929ce48e5aSMichal Kubecek static int
4939ce48e5aSMichal Kubecek store_link_ksettings_for_user(void __user *to,
4949ce48e5aSMichal Kubecek 			      const struct ethtool_link_ksettings *from)
4959ce48e5aSMichal Kubecek {
4969ce48e5aSMichal Kubecek 	struct ethtool_link_usettings link_usettings;
4979ce48e5aSMichal Kubecek 
498c1d9e34eSGustavo A. R. Silva 	memcpy(&link_usettings, from, sizeof(link_usettings));
4999ce48e5aSMichal Kubecek 	bitmap_to_arr32(link_usettings.link_modes.supported,
5009ce48e5aSMichal Kubecek 			from->link_modes.supported,
5019ce48e5aSMichal Kubecek 			__ETHTOOL_LINK_MODE_MASK_NBITS);
5029ce48e5aSMichal Kubecek 	bitmap_to_arr32(link_usettings.link_modes.advertising,
5039ce48e5aSMichal Kubecek 			from->link_modes.advertising,
5049ce48e5aSMichal Kubecek 			__ETHTOOL_LINK_MODE_MASK_NBITS);
5059ce48e5aSMichal Kubecek 	bitmap_to_arr32(link_usettings.link_modes.lp_advertising,
5069ce48e5aSMichal Kubecek 			from->link_modes.lp_advertising,
5079ce48e5aSMichal Kubecek 			__ETHTOOL_LINK_MODE_MASK_NBITS);
5089ce48e5aSMichal Kubecek 
5099ce48e5aSMichal Kubecek 	if (copy_to_user(to, &link_usettings, sizeof(link_usettings)))
5109ce48e5aSMichal Kubecek 		return -EFAULT;
5119ce48e5aSMichal Kubecek 
5129ce48e5aSMichal Kubecek 	return 0;
5139ce48e5aSMichal Kubecek }
5149ce48e5aSMichal Kubecek 
5159ce48e5aSMichal Kubecek /* Query device for its ethtool_link_settings. */
5169ce48e5aSMichal Kubecek static int ethtool_get_link_ksettings(struct net_device *dev,
5179ce48e5aSMichal Kubecek 				      void __user *useraddr)
5189ce48e5aSMichal Kubecek {
5199ce48e5aSMichal Kubecek 	int err = 0;
5209ce48e5aSMichal Kubecek 	struct ethtool_link_ksettings link_ksettings;
5219ce48e5aSMichal Kubecek 
5229ce48e5aSMichal Kubecek 	ASSERT_RTNL();
5239ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->get_link_ksettings)
5249ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
5259ce48e5aSMichal Kubecek 
5269ce48e5aSMichal Kubecek 	/* handle bitmap nbits handshake */
5279ce48e5aSMichal Kubecek 	if (copy_from_user(&link_ksettings.base, useraddr,
5289ce48e5aSMichal Kubecek 			   sizeof(link_ksettings.base)))
5299ce48e5aSMichal Kubecek 		return -EFAULT;
5309ce48e5aSMichal Kubecek 
5319ce48e5aSMichal Kubecek 	if (__ETHTOOL_LINK_MODE_MASK_NU32
5329ce48e5aSMichal Kubecek 	    != link_ksettings.base.link_mode_masks_nwords) {
5339ce48e5aSMichal Kubecek 		/* wrong link mode nbits requested */
5349ce48e5aSMichal Kubecek 		memset(&link_ksettings, 0, sizeof(link_ksettings));
5359ce48e5aSMichal Kubecek 		link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
5369ce48e5aSMichal Kubecek 		/* send back number of words required as negative val */
5379ce48e5aSMichal Kubecek 		compiletime_assert(__ETHTOOL_LINK_MODE_MASK_NU32 <= S8_MAX,
5389ce48e5aSMichal Kubecek 				   "need too many bits for link modes!");
5399ce48e5aSMichal Kubecek 		link_ksettings.base.link_mode_masks_nwords
5409ce48e5aSMichal Kubecek 			= -((s8)__ETHTOOL_LINK_MODE_MASK_NU32);
5419ce48e5aSMichal Kubecek 
5429ce48e5aSMichal Kubecek 		/* copy the base fields back to user, not the link
5439ce48e5aSMichal Kubecek 		 * mode bitmaps
5449ce48e5aSMichal Kubecek 		 */
5459ce48e5aSMichal Kubecek 		if (copy_to_user(useraddr, &link_ksettings.base,
5469ce48e5aSMichal Kubecek 				 sizeof(link_ksettings.base)))
5479ce48e5aSMichal Kubecek 			return -EFAULT;
5489ce48e5aSMichal Kubecek 
5499ce48e5aSMichal Kubecek 		return 0;
5509ce48e5aSMichal Kubecek 	}
5519ce48e5aSMichal Kubecek 
5529ce48e5aSMichal Kubecek 	/* handshake successful: user/kernel agree on
5539ce48e5aSMichal Kubecek 	 * link_mode_masks_nwords
5549ce48e5aSMichal Kubecek 	 */
5559ce48e5aSMichal Kubecek 
5569ce48e5aSMichal Kubecek 	memset(&link_ksettings, 0, sizeof(link_ksettings));
5579ce48e5aSMichal Kubecek 	err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
5589ce48e5aSMichal Kubecek 	if (err < 0)
5599ce48e5aSMichal Kubecek 		return err;
5609ce48e5aSMichal Kubecek 
5619ce48e5aSMichal Kubecek 	/* make sure we tell the right values to user */
5629ce48e5aSMichal Kubecek 	link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
5639ce48e5aSMichal Kubecek 	link_ksettings.base.link_mode_masks_nwords
5649ce48e5aSMichal Kubecek 		= __ETHTOOL_LINK_MODE_MASK_NU32;
565bdbdac76SOleksij Rempel 	link_ksettings.base.master_slave_cfg = MASTER_SLAVE_CFG_UNSUPPORTED;
566bdbdac76SOleksij Rempel 	link_ksettings.base.master_slave_state = MASTER_SLAVE_STATE_UNSUPPORTED;
5670c3e10cbSSean Anderson 	link_ksettings.base.rate_matching = RATE_MATCH_NONE;
5689ce48e5aSMichal Kubecek 
5699ce48e5aSMichal Kubecek 	return store_link_ksettings_for_user(useraddr, &link_ksettings);
5709ce48e5aSMichal Kubecek }
5719ce48e5aSMichal Kubecek 
5729ce48e5aSMichal Kubecek /* Update device ethtool_link_settings. */
5739ce48e5aSMichal Kubecek static int ethtool_set_link_ksettings(struct net_device *dev,
5749ce48e5aSMichal Kubecek 				      void __user *useraddr)
5759ce48e5aSMichal Kubecek {
5769ce48e5aSMichal Kubecek 	int err;
5779ce48e5aSMichal Kubecek 	struct ethtool_link_ksettings link_ksettings;
5789ce48e5aSMichal Kubecek 
5799ce48e5aSMichal Kubecek 	ASSERT_RTNL();
5809ce48e5aSMichal Kubecek 
5819ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->set_link_ksettings)
5829ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
5839ce48e5aSMichal Kubecek 
5849ce48e5aSMichal Kubecek 	/* make sure nbits field has expected value */
5859ce48e5aSMichal Kubecek 	if (copy_from_user(&link_ksettings.base, useraddr,
5869ce48e5aSMichal Kubecek 			   sizeof(link_ksettings.base)))
5879ce48e5aSMichal Kubecek 		return -EFAULT;
5889ce48e5aSMichal Kubecek 
5899ce48e5aSMichal Kubecek 	if (__ETHTOOL_LINK_MODE_MASK_NU32
5909ce48e5aSMichal Kubecek 	    != link_ksettings.base.link_mode_masks_nwords)
5919ce48e5aSMichal Kubecek 		return -EINVAL;
5929ce48e5aSMichal Kubecek 
5939ce48e5aSMichal Kubecek 	/* copy the whole structure, now that we know it has expected
5949ce48e5aSMichal Kubecek 	 * format
5959ce48e5aSMichal Kubecek 	 */
5969ce48e5aSMichal Kubecek 	err = load_link_ksettings_from_user(&link_ksettings, useraddr);
5979ce48e5aSMichal Kubecek 	if (err)
5989ce48e5aSMichal Kubecek 		return err;
5999ce48e5aSMichal Kubecek 
6009ce48e5aSMichal Kubecek 	/* re-check nwords field, just in case */
6019ce48e5aSMichal Kubecek 	if (__ETHTOOL_LINK_MODE_MASK_NU32
6029ce48e5aSMichal Kubecek 	    != link_ksettings.base.link_mode_masks_nwords)
6039ce48e5aSMichal Kubecek 		return -EINVAL;
6049ce48e5aSMichal Kubecek 
605bdbdac76SOleksij Rempel 	if (link_ksettings.base.master_slave_cfg ||
606bdbdac76SOleksij Rempel 	    link_ksettings.base.master_slave_state)
607bdbdac76SOleksij Rempel 		return -EINVAL;
608bdbdac76SOleksij Rempel 
60973286734SMichal Kubecek 	err = dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
6101b1b1847SMichal Kubecek 	if (err >= 0) {
61173286734SMichal Kubecek 		ethtool_notify(dev, ETHTOOL_MSG_LINKINFO_NTF, NULL);
6121b1b1847SMichal Kubecek 		ethtool_notify(dev, ETHTOOL_MSG_LINKMODES_NTF, NULL);
6131b1b1847SMichal Kubecek 	}
61473286734SMichal Kubecek 	return err;
6159ce48e5aSMichal Kubecek }
6169ce48e5aSMichal Kubecek 
61770ae1e12SCris Forno int ethtool_virtdev_set_link_ksettings(struct net_device *dev,
61870ae1e12SCris Forno 				       const struct ethtool_link_ksettings *cmd,
61970ae1e12SCris Forno 				       u32 *dev_speed, u8 *dev_duplex)
62070ae1e12SCris Forno {
62170ae1e12SCris Forno 	u32 speed;
62270ae1e12SCris Forno 	u8 duplex;
62370ae1e12SCris Forno 
62470ae1e12SCris Forno 	speed = cmd->base.speed;
62570ae1e12SCris Forno 	duplex = cmd->base.duplex;
62670ae1e12SCris Forno 	/* don't allow custom speed and duplex */
62770ae1e12SCris Forno 	if (!ethtool_validate_speed(speed) ||
62870ae1e12SCris Forno 	    !ethtool_validate_duplex(duplex) ||
62970ae1e12SCris Forno 	    !ethtool_virtdev_validate_cmd(cmd))
63070ae1e12SCris Forno 		return -EINVAL;
63170ae1e12SCris Forno 	*dev_speed = speed;
63270ae1e12SCris Forno 	*dev_duplex = duplex;
63370ae1e12SCris Forno 
63470ae1e12SCris Forno 	return 0;
63570ae1e12SCris Forno }
63670ae1e12SCris Forno EXPORT_SYMBOL(ethtool_virtdev_set_link_ksettings);
63770ae1e12SCris Forno 
6389ce48e5aSMichal Kubecek /* Query device for its ethtool_cmd settings.
6399ce48e5aSMichal Kubecek  *
6409ce48e5aSMichal Kubecek  * Backward compatibility note: for compatibility with legacy ethtool, this is
6419ce48e5aSMichal Kubecek  * now implemented via get_link_ksettings. When driver reports higher link mode
6429ce48e5aSMichal Kubecek  * bits, a kernel warning is logged once (with name of 1st driver/device) to
6439ce48e5aSMichal Kubecek  * recommend user to upgrade ethtool, but the command is successful (only the
6449ce48e5aSMichal Kubecek  * lower link mode bits reported back to user). Deprecated fields from
6459ce48e5aSMichal Kubecek  * ethtool_cmd (transceiver/maxrxpkt/maxtxpkt) are always set to zero.
6469ce48e5aSMichal Kubecek  */
6479ce48e5aSMichal Kubecek static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
6489ce48e5aSMichal Kubecek {
6499ce48e5aSMichal Kubecek 	struct ethtool_link_ksettings link_ksettings;
6509ce48e5aSMichal Kubecek 	struct ethtool_cmd cmd;
6519ce48e5aSMichal Kubecek 	int err;
6529ce48e5aSMichal Kubecek 
6539ce48e5aSMichal Kubecek 	ASSERT_RTNL();
6549ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->get_link_ksettings)
6559ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
6569ce48e5aSMichal Kubecek 
6579ce48e5aSMichal Kubecek 	memset(&link_ksettings, 0, sizeof(link_ksettings));
6589ce48e5aSMichal Kubecek 	err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
6599ce48e5aSMichal Kubecek 	if (err < 0)
6609ce48e5aSMichal Kubecek 		return err;
6619ce48e5aSMichal Kubecek 	convert_link_ksettings_to_legacy_settings(&cmd, &link_ksettings);
6629ce48e5aSMichal Kubecek 
6639ce48e5aSMichal Kubecek 	/* send a sensible cmd tag back to user */
6649ce48e5aSMichal Kubecek 	cmd.cmd = ETHTOOL_GSET;
6659ce48e5aSMichal Kubecek 
6669ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
6679ce48e5aSMichal Kubecek 		return -EFAULT;
6689ce48e5aSMichal Kubecek 
6699ce48e5aSMichal Kubecek 	return 0;
6709ce48e5aSMichal Kubecek }
6719ce48e5aSMichal Kubecek 
6729ce48e5aSMichal Kubecek /* Update device link settings with given ethtool_cmd.
6739ce48e5aSMichal Kubecek  *
6749ce48e5aSMichal Kubecek  * Backward compatibility note: for compatibility with legacy ethtool, this is
6759ce48e5aSMichal Kubecek  * now always implemented via set_link_settings. When user's request updates
6769ce48e5aSMichal Kubecek  * deprecated ethtool_cmd fields (transceiver/maxrxpkt/maxtxpkt), a kernel
6779ce48e5aSMichal Kubecek  * warning is logged once (with name of 1st driver/device) to recommend user to
6789ce48e5aSMichal Kubecek  * upgrade ethtool, and the request is rejected.
6799ce48e5aSMichal Kubecek  */
6809ce48e5aSMichal Kubecek static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
6819ce48e5aSMichal Kubecek {
6829ce48e5aSMichal Kubecek 	struct ethtool_link_ksettings link_ksettings;
6839ce48e5aSMichal Kubecek 	struct ethtool_cmd cmd;
68473286734SMichal Kubecek 	int ret;
6859ce48e5aSMichal Kubecek 
6869ce48e5aSMichal Kubecek 	ASSERT_RTNL();
6879ce48e5aSMichal Kubecek 
6889ce48e5aSMichal Kubecek 	if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
6899ce48e5aSMichal Kubecek 		return -EFAULT;
6909ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->set_link_ksettings)
6919ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
6929ce48e5aSMichal Kubecek 
6939ce48e5aSMichal Kubecek 	if (!convert_legacy_settings_to_link_ksettings(&link_ksettings, &cmd))
6949ce48e5aSMichal Kubecek 		return -EINVAL;
6959ce48e5aSMichal Kubecek 	link_ksettings.base.link_mode_masks_nwords =
6969ce48e5aSMichal Kubecek 		__ETHTOOL_LINK_MODE_MASK_NU32;
69773286734SMichal Kubecek 	ret = dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
6981b1b1847SMichal Kubecek 	if (ret >= 0) {
69973286734SMichal Kubecek 		ethtool_notify(dev, ETHTOOL_MSG_LINKINFO_NTF, NULL);
7001b1b1847SMichal Kubecek 		ethtool_notify(dev, ETHTOOL_MSG_LINKMODES_NTF, NULL);
7011b1b1847SMichal Kubecek 	}
70273286734SMichal Kubecek 	return ret;
7039ce48e5aSMichal Kubecek }
7049ce48e5aSMichal Kubecek 
705095cfcfeSJakub Kicinski static int
706095cfcfeSJakub Kicinski ethtool_get_drvinfo(struct net_device *dev, struct ethtool_devlink_compat *rsp)
7079ce48e5aSMichal Kubecek {
7089ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
709edaf5df2SVincent Mailhol 	struct device *parent = dev->dev.parent;
7109ce48e5aSMichal Kubecek 
711095cfcfeSJakub Kicinski 	rsp->info.cmd = ETHTOOL_GDRVINFO;
712a71af890SWolfram Sang 	strscpy(rsp->info.version, UTS_RELEASE, sizeof(rsp->info.version));
7139ce48e5aSMichal Kubecek 	if (ops->get_drvinfo) {
714095cfcfeSJakub Kicinski 		ops->get_drvinfo(dev, &rsp->info);
715edaf5df2SVincent Mailhol 		if (!rsp->info.bus_info[0] && parent)
716edaf5df2SVincent Mailhol 			strscpy(rsp->info.bus_info, dev_name(parent),
717095cfcfeSJakub Kicinski 				sizeof(rsp->info.bus_info));
718edaf5df2SVincent Mailhol 		if (!rsp->info.driver[0] && parent && parent->driver)
719edaf5df2SVincent Mailhol 			strscpy(rsp->info.driver, parent->driver->name,
720edaf5df2SVincent Mailhol 				sizeof(rsp->info.driver));
721edaf5df2SVincent Mailhol 	} else if (parent && parent->driver) {
722edaf5df2SVincent Mailhol 		strscpy(rsp->info.bus_info, dev_name(parent),
723edaf5df2SVincent Mailhol 			sizeof(rsp->info.bus_info));
724edaf5df2SVincent Mailhol 		strscpy(rsp->info.driver, parent->driver->name,
725095cfcfeSJakub Kicinski 			sizeof(rsp->info.driver));
726bde3b0fdSTonghao Zhang 	} else if (dev->rtnl_link_ops) {
727a71af890SWolfram Sang 		strscpy(rsp->info.driver, dev->rtnl_link_ops->kind,
728bde3b0fdSTonghao Zhang 			sizeof(rsp->info.driver));
7299ce48e5aSMichal Kubecek 	} else {
7309ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
7319ce48e5aSMichal Kubecek 	}
7329ce48e5aSMichal Kubecek 
7339ce48e5aSMichal Kubecek 	/*
7349ce48e5aSMichal Kubecek 	 * this method of obtaining string set info is deprecated;
7359ce48e5aSMichal Kubecek 	 * Use ETHTOOL_GSSET_INFO instead.
7369ce48e5aSMichal Kubecek 	 */
7379ce48e5aSMichal Kubecek 	if (ops->get_sset_count) {
7389ce48e5aSMichal Kubecek 		int rc;
7399ce48e5aSMichal Kubecek 
7409ce48e5aSMichal Kubecek 		rc = ops->get_sset_count(dev, ETH_SS_TEST);
7419ce48e5aSMichal Kubecek 		if (rc >= 0)
742095cfcfeSJakub Kicinski 			rsp->info.testinfo_len = rc;
7439ce48e5aSMichal Kubecek 		rc = ops->get_sset_count(dev, ETH_SS_STATS);
7449ce48e5aSMichal Kubecek 		if (rc >= 0)
745095cfcfeSJakub Kicinski 			rsp->info.n_stats = rc;
7469ce48e5aSMichal Kubecek 		rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
7479ce48e5aSMichal Kubecek 		if (rc >= 0)
748095cfcfeSJakub Kicinski 			rsp->info.n_priv_flags = rc;
7499ce48e5aSMichal Kubecek 	}
7509ce48e5aSMichal Kubecek 	if (ops->get_regs_len) {
7519ce48e5aSMichal Kubecek 		int ret = ops->get_regs_len(dev);
7529ce48e5aSMichal Kubecek 
7539ce48e5aSMichal Kubecek 		if (ret > 0)
754095cfcfeSJakub Kicinski 			rsp->info.regdump_len = ret;
7559ce48e5aSMichal Kubecek 	}
7569ce48e5aSMichal Kubecek 
7579ce48e5aSMichal Kubecek 	if (ops->get_eeprom_len)
758095cfcfeSJakub Kicinski 		rsp->info.eedump_len = ops->get_eeprom_len(dev);
7599ce48e5aSMichal Kubecek 
760095cfcfeSJakub Kicinski 	if (!rsp->info.fw_version[0])
7611af0a094SJakub Kicinski 		rsp->devlink = netdev_to_devlink_get(dev);
7621af0a094SJakub Kicinski 
7639ce48e5aSMichal Kubecek 	return 0;
7649ce48e5aSMichal Kubecek }
7659ce48e5aSMichal Kubecek 
7669ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
7679ce48e5aSMichal Kubecek 						    void __user *useraddr)
7689ce48e5aSMichal Kubecek {
7699ce48e5aSMichal Kubecek 	struct ethtool_sset_info info;
7709ce48e5aSMichal Kubecek 	u64 sset_mask;
7719ce48e5aSMichal Kubecek 	int i, idx = 0, n_bits = 0, ret, rc;
7729ce48e5aSMichal Kubecek 	u32 *info_buf = NULL;
7739ce48e5aSMichal Kubecek 
7749ce48e5aSMichal Kubecek 	if (copy_from_user(&info, useraddr, sizeof(info)))
7759ce48e5aSMichal Kubecek 		return -EFAULT;
7769ce48e5aSMichal Kubecek 
7779ce48e5aSMichal Kubecek 	/* store copy of mask, because we zero struct later on */
7789ce48e5aSMichal Kubecek 	sset_mask = info.sset_mask;
7799ce48e5aSMichal Kubecek 	if (!sset_mask)
7809ce48e5aSMichal Kubecek 		return 0;
7819ce48e5aSMichal Kubecek 
7829ce48e5aSMichal Kubecek 	/* calculate size of return buffer */
7839ce48e5aSMichal Kubecek 	n_bits = hweight64(sset_mask);
7849ce48e5aSMichal Kubecek 
7859ce48e5aSMichal Kubecek 	memset(&info, 0, sizeof(info));
7869ce48e5aSMichal Kubecek 	info.cmd = ETHTOOL_GSSET_INFO;
7879ce48e5aSMichal Kubecek 
7889ce48e5aSMichal Kubecek 	info_buf = kcalloc(n_bits, sizeof(u32), GFP_USER);
7899ce48e5aSMichal Kubecek 	if (!info_buf)
7909ce48e5aSMichal Kubecek 		return -ENOMEM;
7919ce48e5aSMichal Kubecek 
7929ce48e5aSMichal Kubecek 	/*
7939ce48e5aSMichal Kubecek 	 * fill return buffer based on input bitmask and successful
7949ce48e5aSMichal Kubecek 	 * get_sset_count return
7959ce48e5aSMichal Kubecek 	 */
7969ce48e5aSMichal Kubecek 	for (i = 0; i < 64; i++) {
7979ce48e5aSMichal Kubecek 		if (!(sset_mask & (1ULL << i)))
7989ce48e5aSMichal Kubecek 			continue;
7999ce48e5aSMichal Kubecek 
8009ce48e5aSMichal Kubecek 		rc = __ethtool_get_sset_count(dev, i);
8019ce48e5aSMichal Kubecek 		if (rc >= 0) {
8029ce48e5aSMichal Kubecek 			info.sset_mask |= (1ULL << i);
8039ce48e5aSMichal Kubecek 			info_buf[idx++] = rc;
8049ce48e5aSMichal Kubecek 		}
8059ce48e5aSMichal Kubecek 	}
8069ce48e5aSMichal Kubecek 
8079ce48e5aSMichal Kubecek 	ret = -EFAULT;
8089ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &info, sizeof(info)))
8099ce48e5aSMichal Kubecek 		goto out;
8109ce48e5aSMichal Kubecek 
8119ce48e5aSMichal Kubecek 	useraddr += offsetof(struct ethtool_sset_info, data);
812ed717613SGustavo A. R. Silva 	if (copy_to_user(useraddr, info_buf, array_size(idx, sizeof(u32))))
8139ce48e5aSMichal Kubecek 		goto out;
8149ce48e5aSMichal Kubecek 
8159ce48e5aSMichal Kubecek 	ret = 0;
8169ce48e5aSMichal Kubecek 
8179ce48e5aSMichal Kubecek out:
8189ce48e5aSMichal Kubecek 	kfree(info_buf);
8199ce48e5aSMichal Kubecek 	return ret;
8209ce48e5aSMichal Kubecek }
8219ce48e5aSMichal Kubecek 
822dd98d289SArnd Bergmann static noinline_for_stack int
823dd98d289SArnd Bergmann ethtool_rxnfc_copy_from_compat(struct ethtool_rxnfc *rxnfc,
824dd98d289SArnd Bergmann 			       const struct compat_ethtool_rxnfc __user *useraddr,
825dd98d289SArnd Bergmann 			       size_t size)
826dd98d289SArnd Bergmann {
827dd98d289SArnd Bergmann 	struct compat_ethtool_rxnfc crxnfc = {};
828dd98d289SArnd Bergmann 
829dd98d289SArnd Bergmann 	/* We expect there to be holes between fs.m_ext and
830dd98d289SArnd Bergmann 	 * fs.ring_cookie and at the end of fs, but nowhere else.
831dd98d289SArnd Bergmann 	 * On non-x86, no conversion should be needed.
832dd98d289SArnd Bergmann 	 */
833dd98d289SArnd Bergmann 	BUILD_BUG_ON(!IS_ENABLED(CONFIG_X86_64) &&
834dd98d289SArnd Bergmann 		     sizeof(struct compat_ethtool_rxnfc) !=
835dd98d289SArnd Bergmann 		     sizeof(struct ethtool_rxnfc));
836dd98d289SArnd Bergmann 	BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
837dd98d289SArnd Bergmann 		     sizeof(useraddr->fs.m_ext) !=
838dd98d289SArnd Bergmann 		     offsetof(struct ethtool_rxnfc, fs.m_ext) +
839dd98d289SArnd Bergmann 		     sizeof(rxnfc->fs.m_ext));
840dd98d289SArnd Bergmann 	BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.location) -
841dd98d289SArnd Bergmann 		     offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
842dd98d289SArnd Bergmann 		     offsetof(struct ethtool_rxnfc, fs.location) -
843dd98d289SArnd Bergmann 		     offsetof(struct ethtool_rxnfc, fs.ring_cookie));
844dd98d289SArnd Bergmann 
845dd98d289SArnd Bergmann 	if (copy_from_user(&crxnfc, useraddr, min(size, sizeof(crxnfc))))
846dd98d289SArnd Bergmann 		return -EFAULT;
847dd98d289SArnd Bergmann 
848dd98d289SArnd Bergmann 	*rxnfc = (struct ethtool_rxnfc) {
849dd98d289SArnd Bergmann 		.cmd		= crxnfc.cmd,
850dd98d289SArnd Bergmann 		.flow_type	= crxnfc.flow_type,
851dd98d289SArnd Bergmann 		.data		= crxnfc.data,
852dd98d289SArnd Bergmann 		.fs		= {
853dd98d289SArnd Bergmann 			.flow_type	= crxnfc.fs.flow_type,
854dd98d289SArnd Bergmann 			.h_u		= crxnfc.fs.h_u,
855dd98d289SArnd Bergmann 			.h_ext		= crxnfc.fs.h_ext,
856dd98d289SArnd Bergmann 			.m_u		= crxnfc.fs.m_u,
857dd98d289SArnd Bergmann 			.m_ext		= crxnfc.fs.m_ext,
858dd98d289SArnd Bergmann 			.ring_cookie	= crxnfc.fs.ring_cookie,
859dd98d289SArnd Bergmann 			.location	= crxnfc.fs.location,
860dd98d289SArnd Bergmann 		},
861dd98d289SArnd Bergmann 		.rule_cnt	= crxnfc.rule_cnt,
862dd98d289SArnd Bergmann 	};
863dd98d289SArnd Bergmann 
864dd98d289SArnd Bergmann 	return 0;
865dd98d289SArnd Bergmann }
866dd98d289SArnd Bergmann 
867dd98d289SArnd Bergmann static int ethtool_rxnfc_copy_from_user(struct ethtool_rxnfc *rxnfc,
868dd98d289SArnd Bergmann 					const void __user *useraddr,
869dd98d289SArnd Bergmann 					size_t size)
870dd98d289SArnd Bergmann {
871dd98d289SArnd Bergmann 	if (compat_need_64bit_alignment_fixup())
872dd98d289SArnd Bergmann 		return ethtool_rxnfc_copy_from_compat(rxnfc, useraddr, size);
873dd98d289SArnd Bergmann 
874dd98d289SArnd Bergmann 	if (copy_from_user(rxnfc, useraddr, size))
875dd98d289SArnd Bergmann 		return -EFAULT;
876dd98d289SArnd Bergmann 
877dd98d289SArnd Bergmann 	return 0;
878dd98d289SArnd Bergmann }
879dd98d289SArnd Bergmann 
880dd98d289SArnd Bergmann static int ethtool_rxnfc_copy_to_compat(void __user *useraddr,
881dd98d289SArnd Bergmann 					const struct ethtool_rxnfc *rxnfc,
882dd98d289SArnd Bergmann 					size_t size, const u32 *rule_buf)
883dd98d289SArnd Bergmann {
884dd98d289SArnd Bergmann 	struct compat_ethtool_rxnfc crxnfc;
885dd98d289SArnd Bergmann 
886dd98d289SArnd Bergmann 	memset(&crxnfc, 0, sizeof(crxnfc));
887dd98d289SArnd Bergmann 	crxnfc = (struct compat_ethtool_rxnfc) {
888dd98d289SArnd Bergmann 		.cmd		= rxnfc->cmd,
889dd98d289SArnd Bergmann 		.flow_type	= rxnfc->flow_type,
890dd98d289SArnd Bergmann 		.data		= rxnfc->data,
891dd98d289SArnd Bergmann 		.fs		= {
892dd98d289SArnd Bergmann 			.flow_type	= rxnfc->fs.flow_type,
893dd98d289SArnd Bergmann 			.h_u		= rxnfc->fs.h_u,
894dd98d289SArnd Bergmann 			.h_ext		= rxnfc->fs.h_ext,
895dd98d289SArnd Bergmann 			.m_u		= rxnfc->fs.m_u,
896dd98d289SArnd Bergmann 			.m_ext		= rxnfc->fs.m_ext,
897dd98d289SArnd Bergmann 			.ring_cookie	= rxnfc->fs.ring_cookie,
898dd98d289SArnd Bergmann 			.location	= rxnfc->fs.location,
899dd98d289SArnd Bergmann 		},
900dd98d289SArnd Bergmann 		.rule_cnt	= rxnfc->rule_cnt,
901dd98d289SArnd Bergmann 	};
902dd98d289SArnd Bergmann 
903dd98d289SArnd Bergmann 	if (copy_to_user(useraddr, &crxnfc, min(size, sizeof(crxnfc))))
904dd98d289SArnd Bergmann 		return -EFAULT;
905dd98d289SArnd Bergmann 
906dd98d289SArnd Bergmann 	return 0;
907dd98d289SArnd Bergmann }
908dd98d289SArnd Bergmann 
909dd98d289SArnd Bergmann static int ethtool_rxnfc_copy_to_user(void __user *useraddr,
910dd98d289SArnd Bergmann 				      const struct ethtool_rxnfc *rxnfc,
911dd98d289SArnd Bergmann 				      size_t size, const u32 *rule_buf)
912dd98d289SArnd Bergmann {
913dd98d289SArnd Bergmann 	int ret;
914dd98d289SArnd Bergmann 
915dd98d289SArnd Bergmann 	if (compat_need_64bit_alignment_fixup()) {
916dd98d289SArnd Bergmann 		ret = ethtool_rxnfc_copy_to_compat(useraddr, rxnfc, size,
917dd98d289SArnd Bergmann 						   rule_buf);
918dd98d289SArnd Bergmann 		useraddr += offsetof(struct compat_ethtool_rxnfc, rule_locs);
919dd98d289SArnd Bergmann 	} else {
9209b29a161SSaeed Mahameed 		ret = copy_to_user(useraddr, rxnfc, size);
921dd98d289SArnd Bergmann 		useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
922dd98d289SArnd Bergmann 	}
923dd98d289SArnd Bergmann 
924dd98d289SArnd Bergmann 	if (ret)
925dd98d289SArnd Bergmann 		return -EFAULT;
926dd98d289SArnd Bergmann 
927dd98d289SArnd Bergmann 	if (rule_buf) {
928dd98d289SArnd Bergmann 		if (copy_to_user(useraddr, rule_buf,
929dd98d289SArnd Bergmann 				 rxnfc->rule_cnt * sizeof(u32)))
930dd98d289SArnd Bergmann 			return -EFAULT;
931dd98d289SArnd Bergmann 	}
932dd98d289SArnd Bergmann 
933dd98d289SArnd Bergmann 	return 0;
934dd98d289SArnd Bergmann }
935dd98d289SArnd Bergmann 
9369ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
9379ce48e5aSMichal Kubecek 						u32 cmd, void __user *useraddr)
9389ce48e5aSMichal Kubecek {
9399ce48e5aSMichal Kubecek 	struct ethtool_rxnfc info;
9409ce48e5aSMichal Kubecek 	size_t info_size = sizeof(info);
9419ce48e5aSMichal Kubecek 	int rc;
9429ce48e5aSMichal Kubecek 
9439ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->set_rxnfc)
9449ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
9459ce48e5aSMichal Kubecek 
9469ce48e5aSMichal Kubecek 	/* struct ethtool_rxnfc was originally defined for
9479ce48e5aSMichal Kubecek 	 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
9489ce48e5aSMichal Kubecek 	 * members.  User-space might still be using that
9499ce48e5aSMichal Kubecek 	 * definition. */
9509ce48e5aSMichal Kubecek 	if (cmd == ETHTOOL_SRXFH)
9519ce48e5aSMichal Kubecek 		info_size = (offsetof(struct ethtool_rxnfc, data) +
9529ce48e5aSMichal Kubecek 			     sizeof(info.data));
9539ce48e5aSMichal Kubecek 
954dd98d289SArnd Bergmann 	if (ethtool_rxnfc_copy_from_user(&info, useraddr, info_size))
9559ce48e5aSMichal Kubecek 		return -EFAULT;
9569ce48e5aSMichal Kubecek 
9579ce48e5aSMichal Kubecek 	rc = dev->ethtool_ops->set_rxnfc(dev, &info);
9589ce48e5aSMichal Kubecek 	if (rc)
9599ce48e5aSMichal Kubecek 		return rc;
9609ce48e5aSMichal Kubecek 
9619ce48e5aSMichal Kubecek 	if (cmd == ETHTOOL_SRXCLSRLINS &&
962dd98d289SArnd Bergmann 	    ethtool_rxnfc_copy_to_user(useraddr, &info, info_size, NULL))
9639ce48e5aSMichal Kubecek 		return -EFAULT;
9649ce48e5aSMichal Kubecek 
9659ce48e5aSMichal Kubecek 	return 0;
9669ce48e5aSMichal Kubecek }
9679ce48e5aSMichal Kubecek 
9689ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
9699ce48e5aSMichal Kubecek 						u32 cmd, void __user *useraddr)
9709ce48e5aSMichal Kubecek {
9719ce48e5aSMichal Kubecek 	struct ethtool_rxnfc info;
9729ce48e5aSMichal Kubecek 	size_t info_size = sizeof(info);
9739ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
9749ce48e5aSMichal Kubecek 	int ret;
9759ce48e5aSMichal Kubecek 	void *rule_buf = NULL;
9769ce48e5aSMichal Kubecek 
9779ce48e5aSMichal Kubecek 	if (!ops->get_rxnfc)
9789ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
9799ce48e5aSMichal Kubecek 
9809ce48e5aSMichal Kubecek 	/* struct ethtool_rxnfc was originally defined for
9819ce48e5aSMichal Kubecek 	 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
9829ce48e5aSMichal Kubecek 	 * members.  User-space might still be using that
9839ce48e5aSMichal Kubecek 	 * definition. */
9849ce48e5aSMichal Kubecek 	if (cmd == ETHTOOL_GRXFH)
9859ce48e5aSMichal Kubecek 		info_size = (offsetof(struct ethtool_rxnfc, data) +
9869ce48e5aSMichal Kubecek 			     sizeof(info.data));
9879ce48e5aSMichal Kubecek 
988dd98d289SArnd Bergmann 	if (ethtool_rxnfc_copy_from_user(&info, useraddr, info_size))
9899ce48e5aSMichal Kubecek 		return -EFAULT;
9909ce48e5aSMichal Kubecek 
9919ce48e5aSMichal Kubecek 	/* If FLOW_RSS was requested then user-space must be using the
9929ce48e5aSMichal Kubecek 	 * new definition, as FLOW_RSS is newer.
9939ce48e5aSMichal Kubecek 	 */
9949ce48e5aSMichal Kubecek 	if (cmd == ETHTOOL_GRXFH && info.flow_type & FLOW_RSS) {
9959ce48e5aSMichal Kubecek 		info_size = sizeof(info);
996dd98d289SArnd Bergmann 		if (ethtool_rxnfc_copy_from_user(&info, useraddr, info_size))
9979ce48e5aSMichal Kubecek 			return -EFAULT;
9989ce48e5aSMichal Kubecek 		/* Since malicious users may modify the original data,
9999ce48e5aSMichal Kubecek 		 * we need to check whether FLOW_RSS is still requested.
10009ce48e5aSMichal Kubecek 		 */
10019ce48e5aSMichal Kubecek 		if (!(info.flow_type & FLOW_RSS))
10029ce48e5aSMichal Kubecek 			return -EINVAL;
10039ce48e5aSMichal Kubecek 	}
10049ce48e5aSMichal Kubecek 
10059ce48e5aSMichal Kubecek 	if (info.cmd != cmd)
10069ce48e5aSMichal Kubecek 		return -EINVAL;
10079ce48e5aSMichal Kubecek 
10089ce48e5aSMichal Kubecek 	if (info.cmd == ETHTOOL_GRXCLSRLALL) {
10099ce48e5aSMichal Kubecek 		if (info.rule_cnt > 0) {
10109ce48e5aSMichal Kubecek 			if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
10119ce48e5aSMichal Kubecek 				rule_buf = kcalloc(info.rule_cnt, sizeof(u32),
10129ce48e5aSMichal Kubecek 						   GFP_USER);
10139ce48e5aSMichal Kubecek 			if (!rule_buf)
10149ce48e5aSMichal Kubecek 				return -ENOMEM;
10159ce48e5aSMichal Kubecek 		}
10169ce48e5aSMichal Kubecek 	}
10179ce48e5aSMichal Kubecek 
10189ce48e5aSMichal Kubecek 	ret = ops->get_rxnfc(dev, &info, rule_buf);
10199ce48e5aSMichal Kubecek 	if (ret < 0)
10209ce48e5aSMichal Kubecek 		goto err_out;
10219ce48e5aSMichal Kubecek 
1022dd98d289SArnd Bergmann 	ret = ethtool_rxnfc_copy_to_user(useraddr, &info, info_size, rule_buf);
10239ce48e5aSMichal Kubecek err_out:
10249ce48e5aSMichal Kubecek 	kfree(rule_buf);
10259ce48e5aSMichal Kubecek 
10269ce48e5aSMichal Kubecek 	return ret;
10279ce48e5aSMichal Kubecek }
10289ce48e5aSMichal Kubecek 
10299ce48e5aSMichal Kubecek static int ethtool_copy_validate_indir(u32 *indir, void __user *useraddr,
10309ce48e5aSMichal Kubecek 					struct ethtool_rxnfc *rx_rings,
10319ce48e5aSMichal Kubecek 					u32 size)
10329ce48e5aSMichal Kubecek {
10339ce48e5aSMichal Kubecek 	int i;
10349ce48e5aSMichal Kubecek 
1035ed717613SGustavo A. R. Silva 	if (copy_from_user(indir, useraddr, array_size(size, sizeof(indir[0]))))
10369ce48e5aSMichal Kubecek 		return -EFAULT;
10379ce48e5aSMichal Kubecek 
10389ce48e5aSMichal Kubecek 	/* Validate ring indices */
10399ce48e5aSMichal Kubecek 	for (i = 0; i < size; i++)
10409ce48e5aSMichal Kubecek 		if (indir[i] >= rx_rings->data)
10419ce48e5aSMichal Kubecek 			return -EINVAL;
10429ce48e5aSMichal Kubecek 
10439ce48e5aSMichal Kubecek 	return 0;
10449ce48e5aSMichal Kubecek }
10459ce48e5aSMichal Kubecek 
10469ce48e5aSMichal Kubecek u8 netdev_rss_key[NETDEV_RSS_KEY_LEN] __read_mostly;
10479ce48e5aSMichal Kubecek 
10489ce48e5aSMichal Kubecek void netdev_rss_key_fill(void *buffer, size_t len)
10499ce48e5aSMichal Kubecek {
10509ce48e5aSMichal Kubecek 	BUG_ON(len > sizeof(netdev_rss_key));
10519ce48e5aSMichal Kubecek 	net_get_random_once(netdev_rss_key, sizeof(netdev_rss_key));
10529ce48e5aSMichal Kubecek 	memcpy(buffer, netdev_rss_key, len);
10539ce48e5aSMichal Kubecek }
10549ce48e5aSMichal Kubecek EXPORT_SYMBOL(netdev_rss_key_fill);
10559ce48e5aSMichal Kubecek 
10569ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev,
10579ce48e5aSMichal Kubecek 						     void __user *useraddr)
10589ce48e5aSMichal Kubecek {
10599ce48e5aSMichal Kubecek 	u32 user_size, dev_size;
10609ce48e5aSMichal Kubecek 	u32 *indir;
10619ce48e5aSMichal Kubecek 	int ret;
10629ce48e5aSMichal Kubecek 
10639ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->get_rxfh_indir_size ||
10649ce48e5aSMichal Kubecek 	    !dev->ethtool_ops->get_rxfh)
10659ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
10669ce48e5aSMichal Kubecek 	dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
10679ce48e5aSMichal Kubecek 	if (dev_size == 0)
10689ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
10699ce48e5aSMichal Kubecek 
10709ce48e5aSMichal Kubecek 	if (copy_from_user(&user_size,
10719ce48e5aSMichal Kubecek 			   useraddr + offsetof(struct ethtool_rxfh_indir, size),
10729ce48e5aSMichal Kubecek 			   sizeof(user_size)))
10739ce48e5aSMichal Kubecek 		return -EFAULT;
10749ce48e5aSMichal Kubecek 
10759ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size),
10769ce48e5aSMichal Kubecek 			 &dev_size, sizeof(dev_size)))
10779ce48e5aSMichal Kubecek 		return -EFAULT;
10789ce48e5aSMichal Kubecek 
10799ce48e5aSMichal Kubecek 	/* If the user buffer size is 0, this is just a query for the
10809ce48e5aSMichal Kubecek 	 * device table size.  Otherwise, if it's smaller than the
10819ce48e5aSMichal Kubecek 	 * device table size it's an error.
10829ce48e5aSMichal Kubecek 	 */
10839ce48e5aSMichal Kubecek 	if (user_size < dev_size)
10849ce48e5aSMichal Kubecek 		return user_size == 0 ? 0 : -EINVAL;
10859ce48e5aSMichal Kubecek 
10869ce48e5aSMichal Kubecek 	indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
10879ce48e5aSMichal Kubecek 	if (!indir)
10889ce48e5aSMichal Kubecek 		return -ENOMEM;
10899ce48e5aSMichal Kubecek 
10909ce48e5aSMichal Kubecek 	ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
10919ce48e5aSMichal Kubecek 	if (ret)
10929ce48e5aSMichal Kubecek 		goto out;
10939ce48e5aSMichal Kubecek 
10949ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr +
10959ce48e5aSMichal Kubecek 			 offsetof(struct ethtool_rxfh_indir, ring_index[0]),
10969ce48e5aSMichal Kubecek 			 indir, dev_size * sizeof(indir[0])))
10979ce48e5aSMichal Kubecek 		ret = -EFAULT;
10989ce48e5aSMichal Kubecek 
10999ce48e5aSMichal Kubecek out:
11009ce48e5aSMichal Kubecek 	kfree(indir);
11019ce48e5aSMichal Kubecek 	return ret;
11029ce48e5aSMichal Kubecek }
11039ce48e5aSMichal Kubecek 
11049ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev,
11059ce48e5aSMichal Kubecek 						     void __user *useraddr)
11069ce48e5aSMichal Kubecek {
11079ce48e5aSMichal Kubecek 	struct ethtool_rxnfc rx_rings;
11089ce48e5aSMichal Kubecek 	u32 user_size, dev_size, i;
11099ce48e5aSMichal Kubecek 	u32 *indir;
11109ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
11119ce48e5aSMichal Kubecek 	int ret;
11129ce48e5aSMichal Kubecek 	u32 ringidx_offset = offsetof(struct ethtool_rxfh_indir, ring_index[0]);
11139ce48e5aSMichal Kubecek 
11149ce48e5aSMichal Kubecek 	if (!ops->get_rxfh_indir_size || !ops->set_rxfh ||
11159ce48e5aSMichal Kubecek 	    !ops->get_rxnfc)
11169ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
11179ce48e5aSMichal Kubecek 
11189ce48e5aSMichal Kubecek 	dev_size = ops->get_rxfh_indir_size(dev);
11199ce48e5aSMichal Kubecek 	if (dev_size == 0)
11209ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
11219ce48e5aSMichal Kubecek 
11229ce48e5aSMichal Kubecek 	if (copy_from_user(&user_size,
11239ce48e5aSMichal Kubecek 			   useraddr + offsetof(struct ethtool_rxfh_indir, size),
11249ce48e5aSMichal Kubecek 			   sizeof(user_size)))
11259ce48e5aSMichal Kubecek 		return -EFAULT;
11269ce48e5aSMichal Kubecek 
11279ce48e5aSMichal Kubecek 	if (user_size != 0 && user_size != dev_size)
11289ce48e5aSMichal Kubecek 		return -EINVAL;
11299ce48e5aSMichal Kubecek 
11309ce48e5aSMichal Kubecek 	indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
11319ce48e5aSMichal Kubecek 	if (!indir)
11329ce48e5aSMichal Kubecek 		return -ENOMEM;
11339ce48e5aSMichal Kubecek 
11349ce48e5aSMichal Kubecek 	rx_rings.cmd = ETHTOOL_GRXRINGS;
11359ce48e5aSMichal Kubecek 	ret = ops->get_rxnfc(dev, &rx_rings, NULL);
11369ce48e5aSMichal Kubecek 	if (ret)
11379ce48e5aSMichal Kubecek 		goto out;
11389ce48e5aSMichal Kubecek 
11399ce48e5aSMichal Kubecek 	if (user_size == 0) {
11409ce48e5aSMichal Kubecek 		for (i = 0; i < dev_size; i++)
11419ce48e5aSMichal Kubecek 			indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
11429ce48e5aSMichal Kubecek 	} else {
11439ce48e5aSMichal Kubecek 		ret = ethtool_copy_validate_indir(indir,
11449ce48e5aSMichal Kubecek 						  useraddr + ringidx_offset,
11459ce48e5aSMichal Kubecek 						  &rx_rings,
11469ce48e5aSMichal Kubecek 						  dev_size);
11479ce48e5aSMichal Kubecek 		if (ret)
11489ce48e5aSMichal Kubecek 			goto out;
11499ce48e5aSMichal Kubecek 	}
11509ce48e5aSMichal Kubecek 
11519ce48e5aSMichal Kubecek 	ret = ops->set_rxfh(dev, indir, NULL, ETH_RSS_HASH_NO_CHANGE);
11529ce48e5aSMichal Kubecek 	if (ret)
11539ce48e5aSMichal Kubecek 		goto out;
11549ce48e5aSMichal Kubecek 
11559ce48e5aSMichal Kubecek 	/* indicate whether rxfh was set to default */
11569ce48e5aSMichal Kubecek 	if (user_size == 0)
11579ce48e5aSMichal Kubecek 		dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
11589ce48e5aSMichal Kubecek 	else
11599ce48e5aSMichal Kubecek 		dev->priv_flags |= IFF_RXFH_CONFIGURED;
11609ce48e5aSMichal Kubecek 
11619ce48e5aSMichal Kubecek out:
11629ce48e5aSMichal Kubecek 	kfree(indir);
11639ce48e5aSMichal Kubecek 	return ret;
11649ce48e5aSMichal Kubecek }
11659ce48e5aSMichal Kubecek 
11669ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_rxfh(struct net_device *dev,
11679ce48e5aSMichal Kubecek 					       void __user *useraddr)
11689ce48e5aSMichal Kubecek {
11699ce48e5aSMichal Kubecek 	int ret;
11709ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
11719ce48e5aSMichal Kubecek 	u32 user_indir_size, user_key_size;
11729ce48e5aSMichal Kubecek 	u32 dev_indir_size = 0, dev_key_size = 0;
11739ce48e5aSMichal Kubecek 	struct ethtool_rxfh rxfh;
11749ce48e5aSMichal Kubecek 	u32 total_size;
11759ce48e5aSMichal Kubecek 	u32 indir_bytes;
11769ce48e5aSMichal Kubecek 	u32 *indir = NULL;
11779ce48e5aSMichal Kubecek 	u8 dev_hfunc = 0;
11789ce48e5aSMichal Kubecek 	u8 *hkey = NULL;
11799ce48e5aSMichal Kubecek 	u8 *rss_config;
11809ce48e5aSMichal Kubecek 
11819ce48e5aSMichal Kubecek 	if (!ops->get_rxfh)
11829ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
11839ce48e5aSMichal Kubecek 
11849ce48e5aSMichal Kubecek 	if (ops->get_rxfh_indir_size)
11859ce48e5aSMichal Kubecek 		dev_indir_size = ops->get_rxfh_indir_size(dev);
11869ce48e5aSMichal Kubecek 	if (ops->get_rxfh_key_size)
11879ce48e5aSMichal Kubecek 		dev_key_size = ops->get_rxfh_key_size(dev);
11889ce48e5aSMichal Kubecek 
11899ce48e5aSMichal Kubecek 	if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
11909ce48e5aSMichal Kubecek 		return -EFAULT;
11919ce48e5aSMichal Kubecek 	user_indir_size = rxfh.indir_size;
11929ce48e5aSMichal Kubecek 	user_key_size = rxfh.key_size;
11939ce48e5aSMichal Kubecek 
11949ce48e5aSMichal Kubecek 	/* Check that reserved fields are 0 for now */
11959ce48e5aSMichal Kubecek 	if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32)
11969ce48e5aSMichal Kubecek 		return -EINVAL;
11979ce48e5aSMichal Kubecek 	/* Most drivers don't handle rss_context, check it's 0 as well */
11989ce48e5aSMichal Kubecek 	if (rxfh.rss_context && !ops->get_rxfh_context)
11999ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
12009ce48e5aSMichal Kubecek 
12019ce48e5aSMichal Kubecek 	rxfh.indir_size = dev_indir_size;
12029ce48e5aSMichal Kubecek 	rxfh.key_size = dev_key_size;
12039ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &rxfh, sizeof(rxfh)))
12049ce48e5aSMichal Kubecek 		return -EFAULT;
12059ce48e5aSMichal Kubecek 
12069ce48e5aSMichal Kubecek 	if ((user_indir_size && (user_indir_size != dev_indir_size)) ||
12079ce48e5aSMichal Kubecek 	    (user_key_size && (user_key_size != dev_key_size)))
12089ce48e5aSMichal Kubecek 		return -EINVAL;
12099ce48e5aSMichal Kubecek 
12109ce48e5aSMichal Kubecek 	indir_bytes = user_indir_size * sizeof(indir[0]);
12119ce48e5aSMichal Kubecek 	total_size = indir_bytes + user_key_size;
12129ce48e5aSMichal Kubecek 	rss_config = kzalloc(total_size, GFP_USER);
12139ce48e5aSMichal Kubecek 	if (!rss_config)
12149ce48e5aSMichal Kubecek 		return -ENOMEM;
12159ce48e5aSMichal Kubecek 
12169ce48e5aSMichal Kubecek 	if (user_indir_size)
12179ce48e5aSMichal Kubecek 		indir = (u32 *)rss_config;
12189ce48e5aSMichal Kubecek 
12199ce48e5aSMichal Kubecek 	if (user_key_size)
12209ce48e5aSMichal Kubecek 		hkey = rss_config + indir_bytes;
12219ce48e5aSMichal Kubecek 
12229ce48e5aSMichal Kubecek 	if (rxfh.rss_context)
12239ce48e5aSMichal Kubecek 		ret = dev->ethtool_ops->get_rxfh_context(dev, indir, hkey,
12249ce48e5aSMichal Kubecek 							 &dev_hfunc,
12259ce48e5aSMichal Kubecek 							 rxfh.rss_context);
12269ce48e5aSMichal Kubecek 	else
12279ce48e5aSMichal Kubecek 		ret = dev->ethtool_ops->get_rxfh(dev, indir, hkey, &dev_hfunc);
12289ce48e5aSMichal Kubecek 	if (ret)
12299ce48e5aSMichal Kubecek 		goto out;
12309ce48e5aSMichal Kubecek 
12319ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, hfunc),
12329ce48e5aSMichal Kubecek 			 &dev_hfunc, sizeof(rxfh.hfunc))) {
12339ce48e5aSMichal Kubecek 		ret = -EFAULT;
12349ce48e5aSMichal Kubecek 	} else if (copy_to_user(useraddr +
12359ce48e5aSMichal Kubecek 			      offsetof(struct ethtool_rxfh, rss_config[0]),
12369ce48e5aSMichal Kubecek 			      rss_config, total_size)) {
12379ce48e5aSMichal Kubecek 		ret = -EFAULT;
12389ce48e5aSMichal Kubecek 	}
12399ce48e5aSMichal Kubecek out:
12409ce48e5aSMichal Kubecek 	kfree(rss_config);
12419ce48e5aSMichal Kubecek 
12429ce48e5aSMichal Kubecek 	return ret;
12439ce48e5aSMichal Kubecek }
12449ce48e5aSMichal Kubecek 
12459ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_rxfh(struct net_device *dev,
12469ce48e5aSMichal Kubecek 					       void __user *useraddr)
12479ce48e5aSMichal Kubecek {
12489ce48e5aSMichal Kubecek 	int ret;
12499ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
12509ce48e5aSMichal Kubecek 	struct ethtool_rxnfc rx_rings;
12519ce48e5aSMichal Kubecek 	struct ethtool_rxfh rxfh;
12529ce48e5aSMichal Kubecek 	u32 dev_indir_size = 0, dev_key_size = 0, i;
12539ce48e5aSMichal Kubecek 	u32 *indir = NULL, indir_bytes = 0;
12549ce48e5aSMichal Kubecek 	u8 *hkey = NULL;
12559ce48e5aSMichal Kubecek 	u8 *rss_config;
12569ce48e5aSMichal Kubecek 	u32 rss_cfg_offset = offsetof(struct ethtool_rxfh, rss_config[0]);
12579ce48e5aSMichal Kubecek 	bool delete = false;
12589ce48e5aSMichal Kubecek 
12599ce48e5aSMichal Kubecek 	if (!ops->get_rxnfc || !ops->set_rxfh)
12609ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
12619ce48e5aSMichal Kubecek 
12629ce48e5aSMichal Kubecek 	if (ops->get_rxfh_indir_size)
12639ce48e5aSMichal Kubecek 		dev_indir_size = ops->get_rxfh_indir_size(dev);
12649ce48e5aSMichal Kubecek 	if (ops->get_rxfh_key_size)
12659ce48e5aSMichal Kubecek 		dev_key_size = ops->get_rxfh_key_size(dev);
12669ce48e5aSMichal Kubecek 
12679ce48e5aSMichal Kubecek 	if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
12689ce48e5aSMichal Kubecek 		return -EFAULT;
12699ce48e5aSMichal Kubecek 
12709ce48e5aSMichal Kubecek 	/* Check that reserved fields are 0 for now */
12719ce48e5aSMichal Kubecek 	if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32)
12729ce48e5aSMichal Kubecek 		return -EINVAL;
12739ce48e5aSMichal Kubecek 	/* Most drivers don't handle rss_context, check it's 0 as well */
12749ce48e5aSMichal Kubecek 	if (rxfh.rss_context && !ops->set_rxfh_context)
12759ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
12769ce48e5aSMichal Kubecek 
12779ce48e5aSMichal Kubecek 	/* If either indir, hash key or function is valid, proceed further.
12789ce48e5aSMichal Kubecek 	 * Must request at least one change: indir size, hash key or function.
12799ce48e5aSMichal Kubecek 	 */
12809ce48e5aSMichal Kubecek 	if ((rxfh.indir_size &&
12819ce48e5aSMichal Kubecek 	     rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE &&
12829ce48e5aSMichal Kubecek 	     rxfh.indir_size != dev_indir_size) ||
12839ce48e5aSMichal Kubecek 	    (rxfh.key_size && (rxfh.key_size != dev_key_size)) ||
12849ce48e5aSMichal Kubecek 	    (rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE &&
12859ce48e5aSMichal Kubecek 	     rxfh.key_size == 0 && rxfh.hfunc == ETH_RSS_HASH_NO_CHANGE))
12869ce48e5aSMichal Kubecek 		return -EINVAL;
12879ce48e5aSMichal Kubecek 
12889ce48e5aSMichal Kubecek 	if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
12899ce48e5aSMichal Kubecek 		indir_bytes = dev_indir_size * sizeof(indir[0]);
12909ce48e5aSMichal Kubecek 
12919ce48e5aSMichal Kubecek 	rss_config = kzalloc(indir_bytes + rxfh.key_size, GFP_USER);
12929ce48e5aSMichal Kubecek 	if (!rss_config)
12939ce48e5aSMichal Kubecek 		return -ENOMEM;
12949ce48e5aSMichal Kubecek 
12959ce48e5aSMichal Kubecek 	rx_rings.cmd = ETHTOOL_GRXRINGS;
12969ce48e5aSMichal Kubecek 	ret = ops->get_rxnfc(dev, &rx_rings, NULL);
12979ce48e5aSMichal Kubecek 	if (ret)
12989ce48e5aSMichal Kubecek 		goto out;
12999ce48e5aSMichal Kubecek 
13009ce48e5aSMichal Kubecek 	/* rxfh.indir_size == 0 means reset the indir table to default (master
13019ce48e5aSMichal Kubecek 	 * context) or delete the context (other RSS contexts).
13029ce48e5aSMichal Kubecek 	 * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
13039ce48e5aSMichal Kubecek 	 */
13049ce48e5aSMichal Kubecek 	if (rxfh.indir_size &&
13059ce48e5aSMichal Kubecek 	    rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) {
13069ce48e5aSMichal Kubecek 		indir = (u32 *)rss_config;
13079ce48e5aSMichal Kubecek 		ret = ethtool_copy_validate_indir(indir,
13089ce48e5aSMichal Kubecek 						  useraddr + rss_cfg_offset,
13099ce48e5aSMichal Kubecek 						  &rx_rings,
13109ce48e5aSMichal Kubecek 						  rxfh.indir_size);
13119ce48e5aSMichal Kubecek 		if (ret)
13129ce48e5aSMichal Kubecek 			goto out;
13139ce48e5aSMichal Kubecek 	} else if (rxfh.indir_size == 0) {
13149ce48e5aSMichal Kubecek 		if (rxfh.rss_context == 0) {
13159ce48e5aSMichal Kubecek 			indir = (u32 *)rss_config;
13169ce48e5aSMichal Kubecek 			for (i = 0; i < dev_indir_size; i++)
13179ce48e5aSMichal Kubecek 				indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
13189ce48e5aSMichal Kubecek 		} else {
13199ce48e5aSMichal Kubecek 			delete = true;
13209ce48e5aSMichal Kubecek 		}
13219ce48e5aSMichal Kubecek 	}
13229ce48e5aSMichal Kubecek 
13239ce48e5aSMichal Kubecek 	if (rxfh.key_size) {
13249ce48e5aSMichal Kubecek 		hkey = rss_config + indir_bytes;
13259ce48e5aSMichal Kubecek 		if (copy_from_user(hkey,
13269ce48e5aSMichal Kubecek 				   useraddr + rss_cfg_offset + indir_bytes,
13279ce48e5aSMichal Kubecek 				   rxfh.key_size)) {
13289ce48e5aSMichal Kubecek 			ret = -EFAULT;
13299ce48e5aSMichal Kubecek 			goto out;
13309ce48e5aSMichal Kubecek 		}
13319ce48e5aSMichal Kubecek 	}
13329ce48e5aSMichal Kubecek 
13339ce48e5aSMichal Kubecek 	if (rxfh.rss_context)
13349ce48e5aSMichal Kubecek 		ret = ops->set_rxfh_context(dev, indir, hkey, rxfh.hfunc,
13359ce48e5aSMichal Kubecek 					    &rxfh.rss_context, delete);
13369ce48e5aSMichal Kubecek 	else
13379ce48e5aSMichal Kubecek 		ret = ops->set_rxfh(dev, indir, hkey, rxfh.hfunc);
13389ce48e5aSMichal Kubecek 	if (ret)
13399ce48e5aSMichal Kubecek 		goto out;
13409ce48e5aSMichal Kubecek 
13419ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, rss_context),
13429ce48e5aSMichal Kubecek 			 &rxfh.rss_context, sizeof(rxfh.rss_context)))
13439ce48e5aSMichal Kubecek 		ret = -EFAULT;
13449ce48e5aSMichal Kubecek 
13459ce48e5aSMichal Kubecek 	if (!rxfh.rss_context) {
13469ce48e5aSMichal Kubecek 		/* indicate whether rxfh was set to default */
13479ce48e5aSMichal Kubecek 		if (rxfh.indir_size == 0)
13489ce48e5aSMichal Kubecek 			dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
13499ce48e5aSMichal Kubecek 		else if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
13509ce48e5aSMichal Kubecek 			dev->priv_flags |= IFF_RXFH_CONFIGURED;
13519ce48e5aSMichal Kubecek 	}
13529ce48e5aSMichal Kubecek 
13539ce48e5aSMichal Kubecek out:
13549ce48e5aSMichal Kubecek 	kfree(rss_config);
13559ce48e5aSMichal Kubecek 	return ret;
13569ce48e5aSMichal Kubecek }
13579ce48e5aSMichal Kubecek 
13589ce48e5aSMichal Kubecek static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
13599ce48e5aSMichal Kubecek {
13609ce48e5aSMichal Kubecek 	struct ethtool_regs regs;
13619ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
13629ce48e5aSMichal Kubecek 	void *regbuf;
13639ce48e5aSMichal Kubecek 	int reglen, ret;
13649ce48e5aSMichal Kubecek 
13659ce48e5aSMichal Kubecek 	if (!ops->get_regs || !ops->get_regs_len)
13669ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
13679ce48e5aSMichal Kubecek 
13689ce48e5aSMichal Kubecek 	if (copy_from_user(&regs, useraddr, sizeof(regs)))
13699ce48e5aSMichal Kubecek 		return -EFAULT;
13709ce48e5aSMichal Kubecek 
13719ce48e5aSMichal Kubecek 	reglen = ops->get_regs_len(dev);
13729ce48e5aSMichal Kubecek 	if (reglen <= 0)
13739ce48e5aSMichal Kubecek 		return reglen;
13749ce48e5aSMichal Kubecek 
13759ce48e5aSMichal Kubecek 	if (regs.len > reglen)
13769ce48e5aSMichal Kubecek 		regs.len = reglen;
13779ce48e5aSMichal Kubecek 
13789ce48e5aSMichal Kubecek 	regbuf = vzalloc(reglen);
13799ce48e5aSMichal Kubecek 	if (!regbuf)
13809ce48e5aSMichal Kubecek 		return -ENOMEM;
13819ce48e5aSMichal Kubecek 
13829ce48e5aSMichal Kubecek 	if (regs.len < reglen)
13839ce48e5aSMichal Kubecek 		reglen = regs.len;
13849ce48e5aSMichal Kubecek 
13859ce48e5aSMichal Kubecek 	ops->get_regs(dev, &regs, regbuf);
13869ce48e5aSMichal Kubecek 
13879ce48e5aSMichal Kubecek 	ret = -EFAULT;
13889ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &regs, sizeof(regs)))
13899ce48e5aSMichal Kubecek 		goto out;
13909ce48e5aSMichal Kubecek 	useraddr += offsetof(struct ethtool_regs, data);
13919ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, regbuf, reglen))
13929ce48e5aSMichal Kubecek 		goto out;
13939ce48e5aSMichal Kubecek 	ret = 0;
13949ce48e5aSMichal Kubecek 
13959ce48e5aSMichal Kubecek  out:
13969ce48e5aSMichal Kubecek 	vfree(regbuf);
13979ce48e5aSMichal Kubecek 	return ret;
13989ce48e5aSMichal Kubecek }
13999ce48e5aSMichal Kubecek 
14009ce48e5aSMichal Kubecek static int ethtool_reset(struct net_device *dev, char __user *useraddr)
14019ce48e5aSMichal Kubecek {
14029ce48e5aSMichal Kubecek 	struct ethtool_value reset;
14039ce48e5aSMichal Kubecek 	int ret;
14049ce48e5aSMichal Kubecek 
14059ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->reset)
14069ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
14079ce48e5aSMichal Kubecek 
14089ce48e5aSMichal Kubecek 	if (copy_from_user(&reset, useraddr, sizeof(reset)))
14099ce48e5aSMichal Kubecek 		return -EFAULT;
14109ce48e5aSMichal Kubecek 
14119ce48e5aSMichal Kubecek 	ret = dev->ethtool_ops->reset(dev, &reset.data);
14129ce48e5aSMichal Kubecek 	if (ret)
14139ce48e5aSMichal Kubecek 		return ret;
14149ce48e5aSMichal Kubecek 
14159ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &reset, sizeof(reset)))
14169ce48e5aSMichal Kubecek 		return -EFAULT;
14179ce48e5aSMichal Kubecek 	return 0;
14189ce48e5aSMichal Kubecek }
14199ce48e5aSMichal Kubecek 
14209ce48e5aSMichal Kubecek static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
14219ce48e5aSMichal Kubecek {
14229ce48e5aSMichal Kubecek 	struct ethtool_wolinfo wol;
14239ce48e5aSMichal Kubecek 
14249ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->get_wol)
14259ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
14269ce48e5aSMichal Kubecek 
14279ce48e5aSMichal Kubecek 	memset(&wol, 0, sizeof(struct ethtool_wolinfo));
14289ce48e5aSMichal Kubecek 	wol.cmd = ETHTOOL_GWOL;
14299ce48e5aSMichal Kubecek 	dev->ethtool_ops->get_wol(dev, &wol);
14309ce48e5aSMichal Kubecek 
14319ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &wol, sizeof(wol)))
14329ce48e5aSMichal Kubecek 		return -EFAULT;
14339ce48e5aSMichal Kubecek 	return 0;
14349ce48e5aSMichal Kubecek }
14359ce48e5aSMichal Kubecek 
14369ce48e5aSMichal Kubecek static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
14379ce48e5aSMichal Kubecek {
14389ce48e5aSMichal Kubecek 	struct ethtool_wolinfo wol;
14399ce48e5aSMichal Kubecek 	int ret;
14409ce48e5aSMichal Kubecek 
14419ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->set_wol)
14429ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
14439ce48e5aSMichal Kubecek 
14449ce48e5aSMichal Kubecek 	if (copy_from_user(&wol, useraddr, sizeof(wol)))
14459ce48e5aSMichal Kubecek 		return -EFAULT;
14469ce48e5aSMichal Kubecek 
14479ce48e5aSMichal Kubecek 	ret = dev->ethtool_ops->set_wol(dev, &wol);
14489ce48e5aSMichal Kubecek 	if (ret)
14499ce48e5aSMichal Kubecek 		return ret;
14509ce48e5aSMichal Kubecek 
14519ce48e5aSMichal Kubecek 	dev->wol_enabled = !!wol.wolopts;
145267bffa79SMichal Kubecek 	ethtool_notify(dev, ETHTOOL_MSG_WOL_NTF, NULL);
14539ce48e5aSMichal Kubecek 
14549ce48e5aSMichal Kubecek 	return 0;
14559ce48e5aSMichal Kubecek }
14569ce48e5aSMichal Kubecek 
14579ce48e5aSMichal Kubecek static int ethtool_get_eee(struct net_device *dev, char __user *useraddr)
14589ce48e5aSMichal Kubecek {
14599ce48e5aSMichal Kubecek 	struct ethtool_eee edata;
14609ce48e5aSMichal Kubecek 	int rc;
14619ce48e5aSMichal Kubecek 
14629ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->get_eee)
14639ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
14649ce48e5aSMichal Kubecek 
14659ce48e5aSMichal Kubecek 	memset(&edata, 0, sizeof(struct ethtool_eee));
14669ce48e5aSMichal Kubecek 	edata.cmd = ETHTOOL_GEEE;
14679ce48e5aSMichal Kubecek 	rc = dev->ethtool_ops->get_eee(dev, &edata);
14689ce48e5aSMichal Kubecek 
14699ce48e5aSMichal Kubecek 	if (rc)
14709ce48e5aSMichal Kubecek 		return rc;
14719ce48e5aSMichal Kubecek 
14729ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &edata, sizeof(edata)))
14739ce48e5aSMichal Kubecek 		return -EFAULT;
14749ce48e5aSMichal Kubecek 
14759ce48e5aSMichal Kubecek 	return 0;
14769ce48e5aSMichal Kubecek }
14779ce48e5aSMichal Kubecek 
14789ce48e5aSMichal Kubecek static int ethtool_set_eee(struct net_device *dev, char __user *useraddr)
14799ce48e5aSMichal Kubecek {
14809ce48e5aSMichal Kubecek 	struct ethtool_eee edata;
14816c5bc8feSMichal Kubecek 	int ret;
14829ce48e5aSMichal Kubecek 
14839ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->set_eee)
14849ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
14859ce48e5aSMichal Kubecek 
14869ce48e5aSMichal Kubecek 	if (copy_from_user(&edata, useraddr, sizeof(edata)))
14879ce48e5aSMichal Kubecek 		return -EFAULT;
14889ce48e5aSMichal Kubecek 
14896c5bc8feSMichal Kubecek 	ret = dev->ethtool_ops->set_eee(dev, &edata);
14906c5bc8feSMichal Kubecek 	if (!ret)
14916c5bc8feSMichal Kubecek 		ethtool_notify(dev, ETHTOOL_MSG_EEE_NTF, NULL);
14926c5bc8feSMichal Kubecek 	return ret;
14939ce48e5aSMichal Kubecek }
14949ce48e5aSMichal Kubecek 
14959ce48e5aSMichal Kubecek static int ethtool_nway_reset(struct net_device *dev)
14969ce48e5aSMichal Kubecek {
14979ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->nway_reset)
14989ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
14999ce48e5aSMichal Kubecek 
15009ce48e5aSMichal Kubecek 	return dev->ethtool_ops->nway_reset(dev);
15019ce48e5aSMichal Kubecek }
15029ce48e5aSMichal Kubecek 
15039ce48e5aSMichal Kubecek static int ethtool_get_link(struct net_device *dev, char __user *useraddr)
15049ce48e5aSMichal Kubecek {
15059ce48e5aSMichal Kubecek 	struct ethtool_value edata = { .cmd = ETHTOOL_GLINK };
15063d2b847fSMichal Kubecek 	int link = __ethtool_get_link(dev);
15079ce48e5aSMichal Kubecek 
15083d2b847fSMichal Kubecek 	if (link < 0)
15093d2b847fSMichal Kubecek 		return link;
15109ce48e5aSMichal Kubecek 
15113d2b847fSMichal Kubecek 	edata.data = link;
15129ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &edata, sizeof(edata)))
15139ce48e5aSMichal Kubecek 		return -EFAULT;
15149ce48e5aSMichal Kubecek 	return 0;
15159ce48e5aSMichal Kubecek }
15169ce48e5aSMichal Kubecek 
15179ce48e5aSMichal Kubecek static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr,
15189ce48e5aSMichal Kubecek 				  int (*getter)(struct net_device *,
15199ce48e5aSMichal Kubecek 						struct ethtool_eeprom *, u8 *),
15209ce48e5aSMichal Kubecek 				  u32 total_len)
15219ce48e5aSMichal Kubecek {
15229ce48e5aSMichal Kubecek 	struct ethtool_eeprom eeprom;
15239ce48e5aSMichal Kubecek 	void __user *userbuf = useraddr + sizeof(eeprom);
15249ce48e5aSMichal Kubecek 	u32 bytes_remaining;
15259ce48e5aSMichal Kubecek 	u8 *data;
15269ce48e5aSMichal Kubecek 	int ret = 0;
15279ce48e5aSMichal Kubecek 
15289ce48e5aSMichal Kubecek 	if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
15299ce48e5aSMichal Kubecek 		return -EFAULT;
15309ce48e5aSMichal Kubecek 
15319ce48e5aSMichal Kubecek 	/* Check for wrap and zero */
15329ce48e5aSMichal Kubecek 	if (eeprom.offset + eeprom.len <= eeprom.offset)
15339ce48e5aSMichal Kubecek 		return -EINVAL;
15349ce48e5aSMichal Kubecek 
15359ce48e5aSMichal Kubecek 	/* Check for exceeding total eeprom len */
15369ce48e5aSMichal Kubecek 	if (eeprom.offset + eeprom.len > total_len)
15379ce48e5aSMichal Kubecek 		return -EINVAL;
15389ce48e5aSMichal Kubecek 
153980ec82e3SAustin Kim 	data = kzalloc(PAGE_SIZE, GFP_USER);
15409ce48e5aSMichal Kubecek 	if (!data)
15419ce48e5aSMichal Kubecek 		return -ENOMEM;
15429ce48e5aSMichal Kubecek 
15439ce48e5aSMichal Kubecek 	bytes_remaining = eeprom.len;
15449ce48e5aSMichal Kubecek 	while (bytes_remaining > 0) {
15459ce48e5aSMichal Kubecek 		eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
15469ce48e5aSMichal Kubecek 
15479ce48e5aSMichal Kubecek 		ret = getter(dev, &eeprom, data);
15489ce48e5aSMichal Kubecek 		if (ret)
15499ce48e5aSMichal Kubecek 			break;
1550b9bbc4c1SHeiner Kallweit 		if (!eeprom.len) {
1551b9bbc4c1SHeiner Kallweit 			ret = -EIO;
1552b9bbc4c1SHeiner Kallweit 			break;
1553b9bbc4c1SHeiner Kallweit 		}
15549ce48e5aSMichal Kubecek 		if (copy_to_user(userbuf, data, eeprom.len)) {
15559ce48e5aSMichal Kubecek 			ret = -EFAULT;
15569ce48e5aSMichal Kubecek 			break;
15579ce48e5aSMichal Kubecek 		}
15589ce48e5aSMichal Kubecek 		userbuf += eeprom.len;
15599ce48e5aSMichal Kubecek 		eeprom.offset += eeprom.len;
15609ce48e5aSMichal Kubecek 		bytes_remaining -= eeprom.len;
15619ce48e5aSMichal Kubecek 	}
15629ce48e5aSMichal Kubecek 
15639ce48e5aSMichal Kubecek 	eeprom.len = userbuf - (useraddr + sizeof(eeprom));
15649ce48e5aSMichal Kubecek 	eeprom.offset -= eeprom.len;
15659ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
15669ce48e5aSMichal Kubecek 		ret = -EFAULT;
15679ce48e5aSMichal Kubecek 
15689ce48e5aSMichal Kubecek 	kfree(data);
15699ce48e5aSMichal Kubecek 	return ret;
15709ce48e5aSMichal Kubecek }
15719ce48e5aSMichal Kubecek 
15729ce48e5aSMichal Kubecek static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
15739ce48e5aSMichal Kubecek {
15749ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
15759ce48e5aSMichal Kubecek 
15769ce48e5aSMichal Kubecek 	if (!ops->get_eeprom || !ops->get_eeprom_len ||
15779ce48e5aSMichal Kubecek 	    !ops->get_eeprom_len(dev))
15789ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
15799ce48e5aSMichal Kubecek 
15809ce48e5aSMichal Kubecek 	return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom,
15819ce48e5aSMichal Kubecek 				      ops->get_eeprom_len(dev));
15829ce48e5aSMichal Kubecek }
15839ce48e5aSMichal Kubecek 
15849ce48e5aSMichal Kubecek static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
15859ce48e5aSMichal Kubecek {
15869ce48e5aSMichal Kubecek 	struct ethtool_eeprom eeprom;
15879ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
15889ce48e5aSMichal Kubecek 	void __user *userbuf = useraddr + sizeof(eeprom);
15899ce48e5aSMichal Kubecek 	u32 bytes_remaining;
15909ce48e5aSMichal Kubecek 	u8 *data;
15919ce48e5aSMichal Kubecek 	int ret = 0;
15929ce48e5aSMichal Kubecek 
15939ce48e5aSMichal Kubecek 	if (!ops->set_eeprom || !ops->get_eeprom_len ||
15949ce48e5aSMichal Kubecek 	    !ops->get_eeprom_len(dev))
15959ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
15969ce48e5aSMichal Kubecek 
15979ce48e5aSMichal Kubecek 	if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
15989ce48e5aSMichal Kubecek 		return -EFAULT;
15999ce48e5aSMichal Kubecek 
16009ce48e5aSMichal Kubecek 	/* Check for wrap and zero */
16019ce48e5aSMichal Kubecek 	if (eeprom.offset + eeprom.len <= eeprom.offset)
16029ce48e5aSMichal Kubecek 		return -EINVAL;
16039ce48e5aSMichal Kubecek 
16049ce48e5aSMichal Kubecek 	/* Check for exceeding total eeprom len */
16059ce48e5aSMichal Kubecek 	if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
16069ce48e5aSMichal Kubecek 		return -EINVAL;
16079ce48e5aSMichal Kubecek 
160880ec82e3SAustin Kim 	data = kzalloc(PAGE_SIZE, GFP_USER);
16099ce48e5aSMichal Kubecek 	if (!data)
16109ce48e5aSMichal Kubecek 		return -ENOMEM;
16119ce48e5aSMichal Kubecek 
16129ce48e5aSMichal Kubecek 	bytes_remaining = eeprom.len;
16139ce48e5aSMichal Kubecek 	while (bytes_remaining > 0) {
16149ce48e5aSMichal Kubecek 		eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
16159ce48e5aSMichal Kubecek 
16169ce48e5aSMichal Kubecek 		if (copy_from_user(data, userbuf, eeprom.len)) {
16179ce48e5aSMichal Kubecek 			ret = -EFAULT;
16189ce48e5aSMichal Kubecek 			break;
16199ce48e5aSMichal Kubecek 		}
16209ce48e5aSMichal Kubecek 		ret = ops->set_eeprom(dev, &eeprom, data);
16219ce48e5aSMichal Kubecek 		if (ret)
16229ce48e5aSMichal Kubecek 			break;
16239ce48e5aSMichal Kubecek 		userbuf += eeprom.len;
16249ce48e5aSMichal Kubecek 		eeprom.offset += eeprom.len;
16259ce48e5aSMichal Kubecek 		bytes_remaining -= eeprom.len;
16269ce48e5aSMichal Kubecek 	}
16279ce48e5aSMichal Kubecek 
16289ce48e5aSMichal Kubecek 	kfree(data);
16299ce48e5aSMichal Kubecek 	return ret;
16309ce48e5aSMichal Kubecek }
16319ce48e5aSMichal Kubecek 
16329ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
16339ce48e5aSMichal Kubecek 						   void __user *useraddr)
16349ce48e5aSMichal Kubecek {
16359ce48e5aSMichal Kubecek 	struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
1636f3ccfda1SYufeng Mo 	struct kernel_ethtool_coalesce kernel_coalesce = {};
163731610711SHeiner Kallweit 	int ret;
16389ce48e5aSMichal Kubecek 
16399ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->get_coalesce)
16409ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
16419ce48e5aSMichal Kubecek 
1642f3ccfda1SYufeng Mo 	ret = dev->ethtool_ops->get_coalesce(dev, &coalesce, &kernel_coalesce,
1643f3ccfda1SYufeng Mo 					     NULL);
164431610711SHeiner Kallweit 	if (ret)
164531610711SHeiner Kallweit 		return ret;
16469ce48e5aSMichal Kubecek 
16479ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
16489ce48e5aSMichal Kubecek 		return -EFAULT;
16499ce48e5aSMichal Kubecek 	return 0;
16509ce48e5aSMichal Kubecek }
16519ce48e5aSMichal Kubecek 
165295cddcb5SJakub Kicinski static bool
165395cddcb5SJakub Kicinski ethtool_set_coalesce_supported(struct net_device *dev,
165495cddcb5SJakub Kicinski 			       struct ethtool_coalesce *coalesce)
165595cddcb5SJakub Kicinski {
165695cddcb5SJakub Kicinski 	u32 supported_params = dev->ethtool_ops->supported_coalesce_params;
165795cddcb5SJakub Kicinski 	u32 nonzero_params = 0;
165895cddcb5SJakub Kicinski 
165995cddcb5SJakub Kicinski 	if (coalesce->rx_coalesce_usecs)
166095cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_RX_USECS;
166195cddcb5SJakub Kicinski 	if (coalesce->rx_max_coalesced_frames)
166295cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES;
166395cddcb5SJakub Kicinski 	if (coalesce->rx_coalesce_usecs_irq)
166495cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_RX_USECS_IRQ;
166595cddcb5SJakub Kicinski 	if (coalesce->rx_max_coalesced_frames_irq)
166695cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_IRQ;
166795cddcb5SJakub Kicinski 	if (coalesce->tx_coalesce_usecs)
166895cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_TX_USECS;
166995cddcb5SJakub Kicinski 	if (coalesce->tx_max_coalesced_frames)
167095cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES;
167195cddcb5SJakub Kicinski 	if (coalesce->tx_coalesce_usecs_irq)
167295cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_TX_USECS_IRQ;
167395cddcb5SJakub Kicinski 	if (coalesce->tx_max_coalesced_frames_irq)
167495cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_IRQ;
167595cddcb5SJakub Kicinski 	if (coalesce->stats_block_coalesce_usecs)
167695cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_STATS_BLOCK_USECS;
167795cddcb5SJakub Kicinski 	if (coalesce->use_adaptive_rx_coalesce)
167895cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_USE_ADAPTIVE_RX;
167995cddcb5SJakub Kicinski 	if (coalesce->use_adaptive_tx_coalesce)
168095cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_USE_ADAPTIVE_TX;
168195cddcb5SJakub Kicinski 	if (coalesce->pkt_rate_low)
168295cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_PKT_RATE_LOW;
168395cddcb5SJakub Kicinski 	if (coalesce->rx_coalesce_usecs_low)
168495cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_RX_USECS_LOW;
168595cddcb5SJakub Kicinski 	if (coalesce->rx_max_coalesced_frames_low)
168695cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_LOW;
168795cddcb5SJakub Kicinski 	if (coalesce->tx_coalesce_usecs_low)
168895cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_TX_USECS_LOW;
168995cddcb5SJakub Kicinski 	if (coalesce->tx_max_coalesced_frames_low)
169095cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_LOW;
169195cddcb5SJakub Kicinski 	if (coalesce->pkt_rate_high)
169295cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_PKT_RATE_HIGH;
169395cddcb5SJakub Kicinski 	if (coalesce->rx_coalesce_usecs_high)
169495cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_RX_USECS_HIGH;
169595cddcb5SJakub Kicinski 	if (coalesce->rx_max_coalesced_frames_high)
169695cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_HIGH;
169795cddcb5SJakub Kicinski 	if (coalesce->tx_coalesce_usecs_high)
169895cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_TX_USECS_HIGH;
169995cddcb5SJakub Kicinski 	if (coalesce->tx_max_coalesced_frames_high)
170095cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_HIGH;
170195cddcb5SJakub Kicinski 	if (coalesce->rate_sample_interval)
170295cddcb5SJakub Kicinski 		nonzero_params |= ETHTOOL_COALESCE_RATE_SAMPLE_INTERVAL;
170395cddcb5SJakub Kicinski 
170495cddcb5SJakub Kicinski 	return (supported_params & nonzero_params) == nonzero_params;
170595cddcb5SJakub Kicinski }
170695cddcb5SJakub Kicinski 
17079ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
17089ce48e5aSMichal Kubecek 						   void __user *useraddr)
17099ce48e5aSMichal Kubecek {
1710f3ccfda1SYufeng Mo 	struct kernel_ethtool_coalesce kernel_coalesce = {};
17119ce48e5aSMichal Kubecek 	struct ethtool_coalesce coalesce;
17120cf3eac8SMichal Kubecek 	int ret;
17139ce48e5aSMichal Kubecek 
17140276af21SJulian Wiedmann 	if (!dev->ethtool_ops->set_coalesce || !dev->ethtool_ops->get_coalesce)
17159ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
17169ce48e5aSMichal Kubecek 
1717f3ccfda1SYufeng Mo 	ret = dev->ethtool_ops->get_coalesce(dev, &coalesce, &kernel_coalesce,
1718f3ccfda1SYufeng Mo 					     NULL);
1719f3ccfda1SYufeng Mo 	if (ret)
1720f3ccfda1SYufeng Mo 		return ret;
1721f3ccfda1SYufeng Mo 
17229ce48e5aSMichal Kubecek 	if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
17239ce48e5aSMichal Kubecek 		return -EFAULT;
17249ce48e5aSMichal Kubecek 
172595cddcb5SJakub Kicinski 	if (!ethtool_set_coalesce_supported(dev, &coalesce))
172695cddcb5SJakub Kicinski 		return -EOPNOTSUPP;
172795cddcb5SJakub Kicinski 
1728f3ccfda1SYufeng Mo 	ret = dev->ethtool_ops->set_coalesce(dev, &coalesce, &kernel_coalesce,
1729f3ccfda1SYufeng Mo 					     NULL);
17300cf3eac8SMichal Kubecek 	if (!ret)
17310cf3eac8SMichal Kubecek 		ethtool_notify(dev, ETHTOOL_MSG_COALESCE_NTF, NULL);
17320cf3eac8SMichal Kubecek 	return ret;
17339ce48e5aSMichal Kubecek }
17349ce48e5aSMichal Kubecek 
17359ce48e5aSMichal Kubecek static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
17369ce48e5aSMichal Kubecek {
17379ce48e5aSMichal Kubecek 	struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
173874624944SHao Chen 	struct kernel_ethtool_ringparam kernel_ringparam = {};
17399ce48e5aSMichal Kubecek 
17409ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->get_ringparam)
17419ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
17429ce48e5aSMichal Kubecek 
174374624944SHao Chen 	dev->ethtool_ops->get_ringparam(dev, &ringparam,
174474624944SHao Chen 					&kernel_ringparam, NULL);
17459ce48e5aSMichal Kubecek 
17469ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
17479ce48e5aSMichal Kubecek 		return -EFAULT;
17489ce48e5aSMichal Kubecek 	return 0;
17499ce48e5aSMichal Kubecek }
17509ce48e5aSMichal Kubecek 
17519ce48e5aSMichal Kubecek static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
17529ce48e5aSMichal Kubecek {
17539ce48e5aSMichal Kubecek 	struct ethtool_ringparam ringparam, max = { .cmd = ETHTOOL_GRINGPARAM };
175474624944SHao Chen 	struct kernel_ethtool_ringparam kernel_ringparam;
1755bc9d1c99SMichal Kubecek 	int ret;
17569ce48e5aSMichal Kubecek 
17579ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->set_ringparam || !dev->ethtool_ops->get_ringparam)
17589ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
17599ce48e5aSMichal Kubecek 
17609ce48e5aSMichal Kubecek 	if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
17619ce48e5aSMichal Kubecek 		return -EFAULT;
17629ce48e5aSMichal Kubecek 
176374624944SHao Chen 	dev->ethtool_ops->get_ringparam(dev, &max, &kernel_ringparam, NULL);
17649ce48e5aSMichal Kubecek 
17659ce48e5aSMichal Kubecek 	/* ensure new ring parameters are within the maximums */
17669ce48e5aSMichal Kubecek 	if (ringparam.rx_pending > max.rx_max_pending ||
17679ce48e5aSMichal Kubecek 	    ringparam.rx_mini_pending > max.rx_mini_max_pending ||
17689ce48e5aSMichal Kubecek 	    ringparam.rx_jumbo_pending > max.rx_jumbo_max_pending ||
17699ce48e5aSMichal Kubecek 	    ringparam.tx_pending > max.tx_max_pending)
17709ce48e5aSMichal Kubecek 		return -EINVAL;
17719ce48e5aSMichal Kubecek 
177274624944SHao Chen 	ret = dev->ethtool_ops->set_ringparam(dev, &ringparam,
177374624944SHao Chen 					      &kernel_ringparam, NULL);
1774bc9d1c99SMichal Kubecek 	if (!ret)
1775bc9d1c99SMichal Kubecek 		ethtool_notify(dev, ETHTOOL_MSG_RINGS_NTF, NULL);
1776bc9d1c99SMichal Kubecek 	return ret;
17779ce48e5aSMichal Kubecek }
17789ce48e5aSMichal Kubecek 
17799ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_channels(struct net_device *dev,
17809ce48e5aSMichal Kubecek 						   void __user *useraddr)
17819ce48e5aSMichal Kubecek {
17829ce48e5aSMichal Kubecek 	struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
17839ce48e5aSMichal Kubecek 
17849ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->get_channels)
17859ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
17869ce48e5aSMichal Kubecek 
17879ce48e5aSMichal Kubecek 	dev->ethtool_ops->get_channels(dev, &channels);
17889ce48e5aSMichal Kubecek 
17899ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &channels, sizeof(channels)))
17909ce48e5aSMichal Kubecek 		return -EFAULT;
17919ce48e5aSMichal Kubecek 	return 0;
17929ce48e5aSMichal Kubecek }
17939ce48e5aSMichal Kubecek 
17949ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_channels(struct net_device *dev,
17959ce48e5aSMichal Kubecek 						   void __user *useraddr)
17969ce48e5aSMichal Kubecek {
17979ce48e5aSMichal Kubecek 	struct ethtool_channels channels, curr = { .cmd = ETHTOOL_GCHANNELS };
17989ce48e5aSMichal Kubecek 	u16 from_channel, to_channel;
179947f3ecf4SGal Pressman 	u64 max_rxnfc_in_use;
180047f3ecf4SGal Pressman 	u32 max_rxfh_in_use;
18019ce48e5aSMichal Kubecek 	unsigned int i;
1802546379b9SMichal Kubecek 	int ret;
18039ce48e5aSMichal Kubecek 
18049ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->set_channels || !dev->ethtool_ops->get_channels)
18059ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
18069ce48e5aSMichal Kubecek 
18079ce48e5aSMichal Kubecek 	if (copy_from_user(&channels, useraddr, sizeof(channels)))
18089ce48e5aSMichal Kubecek 		return -EFAULT;
18099ce48e5aSMichal Kubecek 
18109ce48e5aSMichal Kubecek 	dev->ethtool_ops->get_channels(dev, &curr);
18119ce48e5aSMichal Kubecek 
181275c36dbbSJakub Kicinski 	if (channels.rx_count == curr.rx_count &&
181375c36dbbSJakub Kicinski 	    channels.tx_count == curr.tx_count &&
181475c36dbbSJakub Kicinski 	    channels.combined_count == curr.combined_count &&
181575c36dbbSJakub Kicinski 	    channels.other_count == curr.other_count)
181675c36dbbSJakub Kicinski 		return 0;
181775c36dbbSJakub Kicinski 
18189ce48e5aSMichal Kubecek 	/* ensure new counts are within the maximums */
18199ce48e5aSMichal Kubecek 	if (channels.rx_count > curr.max_rx ||
18209ce48e5aSMichal Kubecek 	    channels.tx_count > curr.max_tx ||
18219ce48e5aSMichal Kubecek 	    channels.combined_count > curr.max_combined ||
18229ce48e5aSMichal Kubecek 	    channels.other_count > curr.max_other)
18239ce48e5aSMichal Kubecek 		return -EINVAL;
18249ce48e5aSMichal Kubecek 
18257be92514SJakub Kicinski 	/* ensure there is at least one RX and one TX channel */
18267be92514SJakub Kicinski 	if (!channels.combined_count &&
18277be92514SJakub Kicinski 	    (!channels.rx_count || !channels.tx_count))
18287be92514SJakub Kicinski 		return -EINVAL;
18297be92514SJakub Kicinski 
18309ce48e5aSMichal Kubecek 	/* ensure the new Rx count fits within the configured Rx flow
183147f3ecf4SGal Pressman 	 * indirection table/rxnfc settings */
183247f3ecf4SGal Pressman 	if (ethtool_get_max_rxnfc_channel(dev, &max_rxnfc_in_use))
183347f3ecf4SGal Pressman 		max_rxnfc_in_use = 0;
183447f3ecf4SGal Pressman 	if (!netif_is_rxfh_configured(dev) ||
183547f3ecf4SGal Pressman 	    ethtool_get_max_rxfh_channel(dev, &max_rxfh_in_use))
183647f3ecf4SGal Pressman 		max_rxfh_in_use = 0;
183747f3ecf4SGal Pressman 	if (channels.combined_count + channels.rx_count <=
183847f3ecf4SGal Pressman 	    max_t(u64, max_rxnfc_in_use, max_rxfh_in_use))
18399ce48e5aSMichal Kubecek 		return -EINVAL;
18409ce48e5aSMichal Kubecek 
18419ce48e5aSMichal Kubecek 	/* Disabling channels, query zero-copy AF_XDP sockets */
18429ce48e5aSMichal Kubecek 	from_channel = channels.combined_count +
18439ce48e5aSMichal Kubecek 		min(channels.rx_count, channels.tx_count);
18449ce48e5aSMichal Kubecek 	to_channel = curr.combined_count + max(curr.rx_count, curr.tx_count);
18459ce48e5aSMichal Kubecek 	for (i = from_channel; i < to_channel; i++)
1846c4655761SMagnus Karlsson 		if (xsk_get_pool_from_qid(dev, i))
18479ce48e5aSMichal Kubecek 			return -EINVAL;
18489ce48e5aSMichal Kubecek 
1849546379b9SMichal Kubecek 	ret = dev->ethtool_ops->set_channels(dev, &channels);
1850546379b9SMichal Kubecek 	if (!ret)
1851546379b9SMichal Kubecek 		ethtool_notify(dev, ETHTOOL_MSG_CHANNELS_NTF, NULL);
1852546379b9SMichal Kubecek 	return ret;
18539ce48e5aSMichal Kubecek }
18549ce48e5aSMichal Kubecek 
18559ce48e5aSMichal Kubecek static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
18569ce48e5aSMichal Kubecek {
18579ce48e5aSMichal Kubecek 	struct ethtool_pauseparam pauseparam = { .cmd = ETHTOOL_GPAUSEPARAM };
18589ce48e5aSMichal Kubecek 
18599ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->get_pauseparam)
18609ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
18619ce48e5aSMichal Kubecek 
18629ce48e5aSMichal Kubecek 	dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
18639ce48e5aSMichal Kubecek 
18649ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
18659ce48e5aSMichal Kubecek 		return -EFAULT;
18669ce48e5aSMichal Kubecek 	return 0;
18679ce48e5aSMichal Kubecek }
18689ce48e5aSMichal Kubecek 
18699ce48e5aSMichal Kubecek static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
18709ce48e5aSMichal Kubecek {
18719ce48e5aSMichal Kubecek 	struct ethtool_pauseparam pauseparam;
1872bf37faa3SMichal Kubecek 	int ret;
18739ce48e5aSMichal Kubecek 
18749ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->set_pauseparam)
18759ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
18769ce48e5aSMichal Kubecek 
18779ce48e5aSMichal Kubecek 	if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
18789ce48e5aSMichal Kubecek 		return -EFAULT;
18799ce48e5aSMichal Kubecek 
1880bf37faa3SMichal Kubecek 	ret = dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
1881bf37faa3SMichal Kubecek 	if (!ret)
1882bf37faa3SMichal Kubecek 		ethtool_notify(dev, ETHTOOL_MSG_PAUSE_NTF, NULL);
1883bf37faa3SMichal Kubecek 	return ret;
18849ce48e5aSMichal Kubecek }
18859ce48e5aSMichal Kubecek 
18869ce48e5aSMichal Kubecek static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
18879ce48e5aSMichal Kubecek {
18889ce48e5aSMichal Kubecek 	struct ethtool_test test;
18899ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
18909ce48e5aSMichal Kubecek 	u64 *data;
18919ce48e5aSMichal Kubecek 	int ret, test_len;
18929ce48e5aSMichal Kubecek 
18939ce48e5aSMichal Kubecek 	if (!ops->self_test || !ops->get_sset_count)
18949ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
18959ce48e5aSMichal Kubecek 
18969ce48e5aSMichal Kubecek 	test_len = ops->get_sset_count(dev, ETH_SS_TEST);
18979ce48e5aSMichal Kubecek 	if (test_len < 0)
18989ce48e5aSMichal Kubecek 		return test_len;
18999ce48e5aSMichal Kubecek 	WARN_ON(test_len == 0);
19009ce48e5aSMichal Kubecek 
19019ce48e5aSMichal Kubecek 	if (copy_from_user(&test, useraddr, sizeof(test)))
19029ce48e5aSMichal Kubecek 		return -EFAULT;
19039ce48e5aSMichal Kubecek 
19049ce48e5aSMichal Kubecek 	test.len = test_len;
190580ec82e3SAustin Kim 	data = kcalloc(test_len, sizeof(u64), GFP_USER);
19069ce48e5aSMichal Kubecek 	if (!data)
19079ce48e5aSMichal Kubecek 		return -ENOMEM;
19089ce48e5aSMichal Kubecek 
190977e9b2abSAndrew Lunn 	netif_testing_on(dev);
19109ce48e5aSMichal Kubecek 	ops->self_test(dev, &test, data);
191177e9b2abSAndrew Lunn 	netif_testing_off(dev);
19129ce48e5aSMichal Kubecek 
19139ce48e5aSMichal Kubecek 	ret = -EFAULT;
19149ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &test, sizeof(test)))
19159ce48e5aSMichal Kubecek 		goto out;
19169ce48e5aSMichal Kubecek 	useraddr += sizeof(test);
1917ed717613SGustavo A. R. Silva 	if (copy_to_user(useraddr, data, array_size(test.len, sizeof(u64))))
19189ce48e5aSMichal Kubecek 		goto out;
19199ce48e5aSMichal Kubecek 	ret = 0;
19209ce48e5aSMichal Kubecek 
19219ce48e5aSMichal Kubecek  out:
19229ce48e5aSMichal Kubecek 	kfree(data);
19239ce48e5aSMichal Kubecek 	return ret;
19249ce48e5aSMichal Kubecek }
19259ce48e5aSMichal Kubecek 
19269ce48e5aSMichal Kubecek static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
19279ce48e5aSMichal Kubecek {
19289ce48e5aSMichal Kubecek 	struct ethtool_gstrings gstrings;
19299ce48e5aSMichal Kubecek 	u8 *data;
19309ce48e5aSMichal Kubecek 	int ret;
19319ce48e5aSMichal Kubecek 
19329ce48e5aSMichal Kubecek 	if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
19339ce48e5aSMichal Kubecek 		return -EFAULT;
19349ce48e5aSMichal Kubecek 
19359ce48e5aSMichal Kubecek 	ret = __ethtool_get_sset_count(dev, gstrings.string_set);
19369ce48e5aSMichal Kubecek 	if (ret < 0)
19379ce48e5aSMichal Kubecek 		return ret;
19389ce48e5aSMichal Kubecek 	if (ret > S32_MAX / ETH_GSTRING_LEN)
19399ce48e5aSMichal Kubecek 		return -ENOMEM;
19409ce48e5aSMichal Kubecek 	WARN_ON_ONCE(!ret);
19419ce48e5aSMichal Kubecek 
19429ce48e5aSMichal Kubecek 	gstrings.len = ret;
19439ce48e5aSMichal Kubecek 
19449ce48e5aSMichal Kubecek 	if (gstrings.len) {
19459ce48e5aSMichal Kubecek 		data = vzalloc(array_size(gstrings.len, ETH_GSTRING_LEN));
19469ce48e5aSMichal Kubecek 		if (!data)
19479ce48e5aSMichal Kubecek 			return -ENOMEM;
19489ce48e5aSMichal Kubecek 
19499ce48e5aSMichal Kubecek 		__ethtool_get_strings(dev, gstrings.string_set, data);
19509ce48e5aSMichal Kubecek 	} else {
19519ce48e5aSMichal Kubecek 		data = NULL;
19529ce48e5aSMichal Kubecek 	}
19539ce48e5aSMichal Kubecek 
19549ce48e5aSMichal Kubecek 	ret = -EFAULT;
19559ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
19569ce48e5aSMichal Kubecek 		goto out;
19579ce48e5aSMichal Kubecek 	useraddr += sizeof(gstrings);
19589ce48e5aSMichal Kubecek 	if (gstrings.len &&
1959ed717613SGustavo A. R. Silva 	    copy_to_user(useraddr, data,
1960ed717613SGustavo A. R. Silva 			 array_size(gstrings.len, ETH_GSTRING_LEN)))
19619ce48e5aSMichal Kubecek 		goto out;
19629ce48e5aSMichal Kubecek 	ret = 0;
19639ce48e5aSMichal Kubecek 
19649ce48e5aSMichal Kubecek out:
19659ce48e5aSMichal Kubecek 	vfree(data);
19669ce48e5aSMichal Kubecek 	return ret;
19679ce48e5aSMichal Kubecek }
19689ce48e5aSMichal Kubecek 
19697888fe53SAlexander Duyck __printf(2, 3) void ethtool_sprintf(u8 **data, const char *fmt, ...)
19707888fe53SAlexander Duyck {
19717888fe53SAlexander Duyck 	va_list args;
19727888fe53SAlexander Duyck 
19737888fe53SAlexander Duyck 	va_start(args, fmt);
19747888fe53SAlexander Duyck 	vsnprintf(*data, ETH_GSTRING_LEN, fmt, args);
19757888fe53SAlexander Duyck 	va_end(args);
19767888fe53SAlexander Duyck 
19777888fe53SAlexander Duyck 	*data += ETH_GSTRING_LEN;
19787888fe53SAlexander Duyck }
19797888fe53SAlexander Duyck EXPORT_SYMBOL(ethtool_sprintf);
19807888fe53SAlexander Duyck 
19819ce48e5aSMichal Kubecek static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
19829ce48e5aSMichal Kubecek {
19839ce48e5aSMichal Kubecek 	struct ethtool_value id;
19849ce48e5aSMichal Kubecek 	static bool busy;
19859ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
19865ae21950SEric Dumazet 	netdevice_tracker dev_tracker;
19879ce48e5aSMichal Kubecek 	int rc;
19889ce48e5aSMichal Kubecek 
19899ce48e5aSMichal Kubecek 	if (!ops->set_phys_id)
19909ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
19919ce48e5aSMichal Kubecek 
19929ce48e5aSMichal Kubecek 	if (busy)
19939ce48e5aSMichal Kubecek 		return -EBUSY;
19949ce48e5aSMichal Kubecek 
19959ce48e5aSMichal Kubecek 	if (copy_from_user(&id, useraddr, sizeof(id)))
19969ce48e5aSMichal Kubecek 		return -EFAULT;
19979ce48e5aSMichal Kubecek 
19989ce48e5aSMichal Kubecek 	rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE);
19999ce48e5aSMichal Kubecek 	if (rc < 0)
20009ce48e5aSMichal Kubecek 		return rc;
20019ce48e5aSMichal Kubecek 
20029ce48e5aSMichal Kubecek 	/* Drop the RTNL lock while waiting, but prevent reentry or
20039ce48e5aSMichal Kubecek 	 * removal of the device.
20049ce48e5aSMichal Kubecek 	 */
20059ce48e5aSMichal Kubecek 	busy = true;
2006d62607c3SJakub Kicinski 	netdev_hold(dev, &dev_tracker, GFP_KERNEL);
20079ce48e5aSMichal Kubecek 	rtnl_unlock();
20089ce48e5aSMichal Kubecek 
20099ce48e5aSMichal Kubecek 	if (rc == 0) {
20109ce48e5aSMichal Kubecek 		/* Driver will handle this itself */
20119ce48e5aSMichal Kubecek 		schedule_timeout_interruptible(
20129ce48e5aSMichal Kubecek 			id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT);
20139ce48e5aSMichal Kubecek 	} else {
20149ce48e5aSMichal Kubecek 		/* Driver expects to be called at twice the frequency in rc */
20152adc6edcSEdward Cree 		int n = rc * 2, interval = HZ / n;
201664a8f8f7SMaxim Korotkov 		u64 count = mul_u32_u32(n, id.data);
201764a8f8f7SMaxim Korotkov 		u64 i = 0;
20189ce48e5aSMichal Kubecek 
20199ce48e5aSMichal Kubecek 		do {
20209ce48e5aSMichal Kubecek 			rtnl_lock();
20219ce48e5aSMichal Kubecek 			rc = ops->set_phys_id(dev,
20222adc6edcSEdward Cree 				    (i++ & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON);
20239ce48e5aSMichal Kubecek 			rtnl_unlock();
20249ce48e5aSMichal Kubecek 			if (rc)
20259ce48e5aSMichal Kubecek 				break;
20269ce48e5aSMichal Kubecek 			schedule_timeout_interruptible(interval);
20272adc6edcSEdward Cree 		} while (!signal_pending(current) && (!id.data || i < count));
20289ce48e5aSMichal Kubecek 	}
20299ce48e5aSMichal Kubecek 
20309ce48e5aSMichal Kubecek 	rtnl_lock();
2031d62607c3SJakub Kicinski 	netdev_put(dev, &dev_tracker);
20329ce48e5aSMichal Kubecek 	busy = false;
20339ce48e5aSMichal Kubecek 
20349ce48e5aSMichal Kubecek 	(void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE);
20359ce48e5aSMichal Kubecek 	return rc;
20369ce48e5aSMichal Kubecek }
20379ce48e5aSMichal Kubecek 
20389ce48e5aSMichal Kubecek static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
20399ce48e5aSMichal Kubecek {
20409ce48e5aSMichal Kubecek 	struct ethtool_stats stats;
20419ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
20429ce48e5aSMichal Kubecek 	u64 *data;
20439ce48e5aSMichal Kubecek 	int ret, n_stats;
20449ce48e5aSMichal Kubecek 
20459ce48e5aSMichal Kubecek 	if (!ops->get_ethtool_stats || !ops->get_sset_count)
20469ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
20479ce48e5aSMichal Kubecek 
20489ce48e5aSMichal Kubecek 	n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
20499ce48e5aSMichal Kubecek 	if (n_stats < 0)
20509ce48e5aSMichal Kubecek 		return n_stats;
20519ce48e5aSMichal Kubecek 	if (n_stats > S32_MAX / sizeof(u64))
20529ce48e5aSMichal Kubecek 		return -ENOMEM;
20539ce48e5aSMichal Kubecek 	WARN_ON_ONCE(!n_stats);
20549ce48e5aSMichal Kubecek 	if (copy_from_user(&stats, useraddr, sizeof(stats)))
20559ce48e5aSMichal Kubecek 		return -EFAULT;
20569ce48e5aSMichal Kubecek 
20579ce48e5aSMichal Kubecek 	stats.n_stats = n_stats;
20589ce48e5aSMichal Kubecek 
20599ce48e5aSMichal Kubecek 	if (n_stats) {
20609ce48e5aSMichal Kubecek 		data = vzalloc(array_size(n_stats, sizeof(u64)));
20619ce48e5aSMichal Kubecek 		if (!data)
20629ce48e5aSMichal Kubecek 			return -ENOMEM;
20639ce48e5aSMichal Kubecek 		ops->get_ethtool_stats(dev, &stats, data);
20649ce48e5aSMichal Kubecek 	} else {
20659ce48e5aSMichal Kubecek 		data = NULL;
20669ce48e5aSMichal Kubecek 	}
20679ce48e5aSMichal Kubecek 
20689ce48e5aSMichal Kubecek 	ret = -EFAULT;
20699ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &stats, sizeof(stats)))
20709ce48e5aSMichal Kubecek 		goto out;
20719ce48e5aSMichal Kubecek 	useraddr += sizeof(stats);
20723dd14996SGustavo A. R. Silva 	if (n_stats && copy_to_user(useraddr, data, array_size(n_stats, sizeof(u64))))
20739ce48e5aSMichal Kubecek 		goto out;
20749ce48e5aSMichal Kubecek 	ret = 0;
20759ce48e5aSMichal Kubecek 
20769ce48e5aSMichal Kubecek  out:
20779ce48e5aSMichal Kubecek 	vfree(data);
20789ce48e5aSMichal Kubecek 	return ret;
20799ce48e5aSMichal Kubecek }
20809ce48e5aSMichal Kubecek 
20819ce48e5aSMichal Kubecek static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr)
20829ce48e5aSMichal Kubecek {
208317809516SFlorian Fainelli 	const struct ethtool_phy_ops *phy_ops = ethtool_phy_ops;
20849ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
20859ce48e5aSMichal Kubecek 	struct phy_device *phydev = dev->phydev;
20869ce48e5aSMichal Kubecek 	struct ethtool_stats stats;
20879ce48e5aSMichal Kubecek 	u64 *data;
20889ce48e5aSMichal Kubecek 	int ret, n_stats;
20899ce48e5aSMichal Kubecek 
20909ce48e5aSMichal Kubecek 	if (!phydev && (!ops->get_ethtool_phy_stats || !ops->get_sset_count))
20919ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
20929ce48e5aSMichal Kubecek 
2093ccd21ec5STom Rix 	if (phydev && !ops->get_ethtool_phy_stats &&
209417809516SFlorian Fainelli 	    phy_ops && phy_ops->get_sset_count)
2095ccd21ec5STom Rix 		n_stats = phy_ops->get_sset_count(phydev);
20969ce48e5aSMichal Kubecek 	else
20979ce48e5aSMichal Kubecek 		n_stats = ops->get_sset_count(dev, ETH_SS_PHY_STATS);
20989ce48e5aSMichal Kubecek 	if (n_stats < 0)
20999ce48e5aSMichal Kubecek 		return n_stats;
21009ce48e5aSMichal Kubecek 	if (n_stats > S32_MAX / sizeof(u64))
21019ce48e5aSMichal Kubecek 		return -ENOMEM;
2102*9deb1e9fSDaniil Tatianin 	if (WARN_ON_ONCE(!n_stats))
2103*9deb1e9fSDaniil Tatianin 		return -EOPNOTSUPP;
21049ce48e5aSMichal Kubecek 
21059ce48e5aSMichal Kubecek 	if (copy_from_user(&stats, useraddr, sizeof(stats)))
21069ce48e5aSMichal Kubecek 		return -EFAULT;
21079ce48e5aSMichal Kubecek 
21089ce48e5aSMichal Kubecek 	stats.n_stats = n_stats;
21099ce48e5aSMichal Kubecek 
21109ce48e5aSMichal Kubecek 	if (n_stats) {
21119ce48e5aSMichal Kubecek 		data = vzalloc(array_size(n_stats, sizeof(u64)));
21129ce48e5aSMichal Kubecek 		if (!data)
21139ce48e5aSMichal Kubecek 			return -ENOMEM;
21149ce48e5aSMichal Kubecek 
2115ccd21ec5STom Rix 		if (phydev && !ops->get_ethtool_phy_stats &&
211617809516SFlorian Fainelli 		    phy_ops && phy_ops->get_stats) {
2117ccd21ec5STom Rix 			ret = phy_ops->get_stats(phydev, &stats, data);
21189ce48e5aSMichal Kubecek 			if (ret < 0)
21199ce48e5aSMichal Kubecek 				goto out;
21209ce48e5aSMichal Kubecek 		} else {
21219ce48e5aSMichal Kubecek 			ops->get_ethtool_phy_stats(dev, &stats, data);
21229ce48e5aSMichal Kubecek 		}
21239ce48e5aSMichal Kubecek 	} else {
21249ce48e5aSMichal Kubecek 		data = NULL;
21259ce48e5aSMichal Kubecek 	}
21269ce48e5aSMichal Kubecek 
21279ce48e5aSMichal Kubecek 	ret = -EFAULT;
21289ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &stats, sizeof(stats)))
21299ce48e5aSMichal Kubecek 		goto out;
21309ce48e5aSMichal Kubecek 	useraddr += sizeof(stats);
21313dd14996SGustavo A. R. Silva 	if (n_stats && copy_to_user(useraddr, data, array_size(n_stats, sizeof(u64))))
21329ce48e5aSMichal Kubecek 		goto out;
21339ce48e5aSMichal Kubecek 	ret = 0;
21349ce48e5aSMichal Kubecek 
21359ce48e5aSMichal Kubecek  out:
21369ce48e5aSMichal Kubecek 	vfree(data);
21379ce48e5aSMichal Kubecek 	return ret;
21389ce48e5aSMichal Kubecek }
21399ce48e5aSMichal Kubecek 
21409ce48e5aSMichal Kubecek static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
21419ce48e5aSMichal Kubecek {
21429ce48e5aSMichal Kubecek 	struct ethtool_perm_addr epaddr;
21439ce48e5aSMichal Kubecek 
21449ce48e5aSMichal Kubecek 	if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
21459ce48e5aSMichal Kubecek 		return -EFAULT;
21469ce48e5aSMichal Kubecek 
21479ce48e5aSMichal Kubecek 	if (epaddr.size < dev->addr_len)
21489ce48e5aSMichal Kubecek 		return -ETOOSMALL;
21499ce48e5aSMichal Kubecek 	epaddr.size = dev->addr_len;
21509ce48e5aSMichal Kubecek 
21519ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
21529ce48e5aSMichal Kubecek 		return -EFAULT;
21539ce48e5aSMichal Kubecek 	useraddr += sizeof(epaddr);
21549ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
21559ce48e5aSMichal Kubecek 		return -EFAULT;
21569ce48e5aSMichal Kubecek 	return 0;
21579ce48e5aSMichal Kubecek }
21589ce48e5aSMichal Kubecek 
21599ce48e5aSMichal Kubecek static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
21609ce48e5aSMichal Kubecek 			     u32 cmd, u32 (*actor)(struct net_device *))
21619ce48e5aSMichal Kubecek {
21629ce48e5aSMichal Kubecek 	struct ethtool_value edata = { .cmd = cmd };
21639ce48e5aSMichal Kubecek 
21649ce48e5aSMichal Kubecek 	if (!actor)
21659ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
21669ce48e5aSMichal Kubecek 
21679ce48e5aSMichal Kubecek 	edata.data = actor(dev);
21689ce48e5aSMichal Kubecek 
21699ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &edata, sizeof(edata)))
21709ce48e5aSMichal Kubecek 		return -EFAULT;
21719ce48e5aSMichal Kubecek 	return 0;
21729ce48e5aSMichal Kubecek }
21739ce48e5aSMichal Kubecek 
21749ce48e5aSMichal Kubecek static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
21759ce48e5aSMichal Kubecek 			     void (*actor)(struct net_device *, u32))
21769ce48e5aSMichal Kubecek {
21779ce48e5aSMichal Kubecek 	struct ethtool_value edata;
21789ce48e5aSMichal Kubecek 
21799ce48e5aSMichal Kubecek 	if (!actor)
21809ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
21819ce48e5aSMichal Kubecek 
21829ce48e5aSMichal Kubecek 	if (copy_from_user(&edata, useraddr, sizeof(edata)))
21839ce48e5aSMichal Kubecek 		return -EFAULT;
21849ce48e5aSMichal Kubecek 
21859ce48e5aSMichal Kubecek 	actor(dev, edata.data);
21869ce48e5aSMichal Kubecek 	return 0;
21879ce48e5aSMichal Kubecek }
21889ce48e5aSMichal Kubecek 
21899ce48e5aSMichal Kubecek static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
21909ce48e5aSMichal Kubecek 			     int (*actor)(struct net_device *, u32))
21919ce48e5aSMichal Kubecek {
21929ce48e5aSMichal Kubecek 	struct ethtool_value edata;
21939ce48e5aSMichal Kubecek 
21949ce48e5aSMichal Kubecek 	if (!actor)
21959ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
21969ce48e5aSMichal Kubecek 
21979ce48e5aSMichal Kubecek 	if (copy_from_user(&edata, useraddr, sizeof(edata)))
21989ce48e5aSMichal Kubecek 		return -EFAULT;
21999ce48e5aSMichal Kubecek 
22009ce48e5aSMichal Kubecek 	return actor(dev, edata.data);
22019ce48e5aSMichal Kubecek }
22029ce48e5aSMichal Kubecek 
2203095cfcfeSJakub Kicinski static int
2204095cfcfeSJakub Kicinski ethtool_flash_device(struct net_device *dev, struct ethtool_devlink_compat *req)
22059ce48e5aSMichal Kubecek {
22061af0a094SJakub Kicinski 	if (!dev->ethtool_ops->flash_device) {
22071af0a094SJakub Kicinski 		req->devlink = netdev_to_devlink_get(dev);
22081af0a094SJakub Kicinski 		return 0;
22091af0a094SJakub Kicinski 	}
22109ce48e5aSMichal Kubecek 
2211095cfcfeSJakub Kicinski 	return dev->ethtool_ops->flash_device(dev, &req->efl);
22129ce48e5aSMichal Kubecek }
22139ce48e5aSMichal Kubecek 
22149ce48e5aSMichal Kubecek static int ethtool_set_dump(struct net_device *dev,
22159ce48e5aSMichal Kubecek 			void __user *useraddr)
22169ce48e5aSMichal Kubecek {
22179ce48e5aSMichal Kubecek 	struct ethtool_dump dump;
22189ce48e5aSMichal Kubecek 
22199ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->set_dump)
22209ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
22219ce48e5aSMichal Kubecek 
22229ce48e5aSMichal Kubecek 	if (copy_from_user(&dump, useraddr, sizeof(dump)))
22239ce48e5aSMichal Kubecek 		return -EFAULT;
22249ce48e5aSMichal Kubecek 
22259ce48e5aSMichal Kubecek 	return dev->ethtool_ops->set_dump(dev, &dump);
22269ce48e5aSMichal Kubecek }
22279ce48e5aSMichal Kubecek 
22289ce48e5aSMichal Kubecek static int ethtool_get_dump_flag(struct net_device *dev,
22299ce48e5aSMichal Kubecek 				void __user *useraddr)
22309ce48e5aSMichal Kubecek {
22319ce48e5aSMichal Kubecek 	int ret;
22329ce48e5aSMichal Kubecek 	struct ethtool_dump dump;
22339ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
22349ce48e5aSMichal Kubecek 
22359ce48e5aSMichal Kubecek 	if (!ops->get_dump_flag)
22369ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
22379ce48e5aSMichal Kubecek 
22389ce48e5aSMichal Kubecek 	if (copy_from_user(&dump, useraddr, sizeof(dump)))
22399ce48e5aSMichal Kubecek 		return -EFAULT;
22409ce48e5aSMichal Kubecek 
22419ce48e5aSMichal Kubecek 	ret = ops->get_dump_flag(dev, &dump);
22429ce48e5aSMichal Kubecek 	if (ret)
22439ce48e5aSMichal Kubecek 		return ret;
22449ce48e5aSMichal Kubecek 
22459ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &dump, sizeof(dump)))
22469ce48e5aSMichal Kubecek 		return -EFAULT;
22479ce48e5aSMichal Kubecek 	return 0;
22489ce48e5aSMichal Kubecek }
22499ce48e5aSMichal Kubecek 
22509ce48e5aSMichal Kubecek static int ethtool_get_dump_data(struct net_device *dev,
22519ce48e5aSMichal Kubecek 				void __user *useraddr)
22529ce48e5aSMichal Kubecek {
22539ce48e5aSMichal Kubecek 	int ret;
22549ce48e5aSMichal Kubecek 	__u32 len;
22559ce48e5aSMichal Kubecek 	struct ethtool_dump dump, tmp;
22569ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
22579ce48e5aSMichal Kubecek 	void *data = NULL;
22589ce48e5aSMichal Kubecek 
22599ce48e5aSMichal Kubecek 	if (!ops->get_dump_data || !ops->get_dump_flag)
22609ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
22619ce48e5aSMichal Kubecek 
22629ce48e5aSMichal Kubecek 	if (copy_from_user(&dump, useraddr, sizeof(dump)))
22639ce48e5aSMichal Kubecek 		return -EFAULT;
22649ce48e5aSMichal Kubecek 
22659ce48e5aSMichal Kubecek 	memset(&tmp, 0, sizeof(tmp));
22669ce48e5aSMichal Kubecek 	tmp.cmd = ETHTOOL_GET_DUMP_FLAG;
22679ce48e5aSMichal Kubecek 	ret = ops->get_dump_flag(dev, &tmp);
22689ce48e5aSMichal Kubecek 	if (ret)
22699ce48e5aSMichal Kubecek 		return ret;
22709ce48e5aSMichal Kubecek 
22719ce48e5aSMichal Kubecek 	len = min(tmp.len, dump.len);
22729ce48e5aSMichal Kubecek 	if (!len)
22739ce48e5aSMichal Kubecek 		return -EFAULT;
22749ce48e5aSMichal Kubecek 
22759ce48e5aSMichal Kubecek 	/* Don't ever let the driver think there's more space available
22769ce48e5aSMichal Kubecek 	 * than it requested with .get_dump_flag().
22779ce48e5aSMichal Kubecek 	 */
22789ce48e5aSMichal Kubecek 	dump.len = len;
22799ce48e5aSMichal Kubecek 
22809ce48e5aSMichal Kubecek 	/* Always allocate enough space to hold the whole thing so that the
22819ce48e5aSMichal Kubecek 	 * driver does not need to check the length and bother with partial
22829ce48e5aSMichal Kubecek 	 * dumping.
22839ce48e5aSMichal Kubecek 	 */
22849ce48e5aSMichal Kubecek 	data = vzalloc(tmp.len);
22859ce48e5aSMichal Kubecek 	if (!data)
22869ce48e5aSMichal Kubecek 		return -ENOMEM;
22879ce48e5aSMichal Kubecek 	ret = ops->get_dump_data(dev, &dump, data);
22889ce48e5aSMichal Kubecek 	if (ret)
22899ce48e5aSMichal Kubecek 		goto out;
22909ce48e5aSMichal Kubecek 
22919ce48e5aSMichal Kubecek 	/* There are two sane possibilities:
22929ce48e5aSMichal Kubecek 	 * 1. The driver's .get_dump_data() does not touch dump.len.
22939ce48e5aSMichal Kubecek 	 * 2. Or it may set dump.len to how much it really writes, which
22949ce48e5aSMichal Kubecek 	 *    should be tmp.len (or len if it can do a partial dump).
22959ce48e5aSMichal Kubecek 	 * In any case respond to userspace with the actual length of data
22969ce48e5aSMichal Kubecek 	 * it's receiving.
22979ce48e5aSMichal Kubecek 	 */
22989ce48e5aSMichal Kubecek 	WARN_ON(dump.len != len && dump.len != tmp.len);
22999ce48e5aSMichal Kubecek 	dump.len = len;
23009ce48e5aSMichal Kubecek 
23019ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &dump, sizeof(dump))) {
23029ce48e5aSMichal Kubecek 		ret = -EFAULT;
23039ce48e5aSMichal Kubecek 		goto out;
23049ce48e5aSMichal Kubecek 	}
23059ce48e5aSMichal Kubecek 	useraddr += offsetof(struct ethtool_dump, data);
23069ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, data, len))
23079ce48e5aSMichal Kubecek 		ret = -EFAULT;
23089ce48e5aSMichal Kubecek out:
23099ce48e5aSMichal Kubecek 	vfree(data);
23109ce48e5aSMichal Kubecek 	return ret;
23119ce48e5aSMichal Kubecek }
23129ce48e5aSMichal Kubecek 
23139ce48e5aSMichal Kubecek static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr)
23149ce48e5aSMichal Kubecek {
23159ce48e5aSMichal Kubecek 	struct ethtool_ts_info info;
23165b071c59SMichal Kubecek 	int err;
23179ce48e5aSMichal Kubecek 
23185b071c59SMichal Kubecek 	err = __ethtool_get_ts_info(dev, &info);
23199ce48e5aSMichal Kubecek 	if (err)
23209ce48e5aSMichal Kubecek 		return err;
23219ce48e5aSMichal Kubecek 
23229ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &info, sizeof(info)))
23235b071c59SMichal Kubecek 		return -EFAULT;
23249ce48e5aSMichal Kubecek 
23255b071c59SMichal Kubecek 	return 0;
23269ce48e5aSMichal Kubecek }
23279ce48e5aSMichal Kubecek 
232895dfc7efSAndrew Lunn int ethtool_get_module_info_call(struct net_device *dev,
23299ce48e5aSMichal Kubecek 				 struct ethtool_modinfo *modinfo)
23309ce48e5aSMichal Kubecek {
23319ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
23329ce48e5aSMichal Kubecek 	struct phy_device *phydev = dev->phydev;
23339ce48e5aSMichal Kubecek 
23349ce48e5aSMichal Kubecek 	if (dev->sfp_bus)
23359ce48e5aSMichal Kubecek 		return sfp_get_module_info(dev->sfp_bus, modinfo);
23369ce48e5aSMichal Kubecek 
23379ce48e5aSMichal Kubecek 	if (phydev && phydev->drv && phydev->drv->module_info)
23389ce48e5aSMichal Kubecek 		return phydev->drv->module_info(phydev, modinfo);
23399ce48e5aSMichal Kubecek 
23409ce48e5aSMichal Kubecek 	if (ops->get_module_info)
23419ce48e5aSMichal Kubecek 		return ops->get_module_info(dev, modinfo);
23429ce48e5aSMichal Kubecek 
23439ce48e5aSMichal Kubecek 	return -EOPNOTSUPP;
23449ce48e5aSMichal Kubecek }
23459ce48e5aSMichal Kubecek 
23469ce48e5aSMichal Kubecek static int ethtool_get_module_info(struct net_device *dev,
23479ce48e5aSMichal Kubecek 				   void __user *useraddr)
23489ce48e5aSMichal Kubecek {
23499ce48e5aSMichal Kubecek 	int ret;
23509ce48e5aSMichal Kubecek 	struct ethtool_modinfo modinfo;
23519ce48e5aSMichal Kubecek 
23529ce48e5aSMichal Kubecek 	if (copy_from_user(&modinfo, useraddr, sizeof(modinfo)))
23539ce48e5aSMichal Kubecek 		return -EFAULT;
23549ce48e5aSMichal Kubecek 
235595dfc7efSAndrew Lunn 	ret = ethtool_get_module_info_call(dev, &modinfo);
23569ce48e5aSMichal Kubecek 	if (ret)
23579ce48e5aSMichal Kubecek 		return ret;
23589ce48e5aSMichal Kubecek 
23599ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &modinfo, sizeof(modinfo)))
23609ce48e5aSMichal Kubecek 		return -EFAULT;
23619ce48e5aSMichal Kubecek 
23629ce48e5aSMichal Kubecek 	return 0;
23639ce48e5aSMichal Kubecek }
23649ce48e5aSMichal Kubecek 
236595dfc7efSAndrew Lunn int ethtool_get_module_eeprom_call(struct net_device *dev,
23669ce48e5aSMichal Kubecek 				   struct ethtool_eeprom *ee, u8 *data)
23679ce48e5aSMichal Kubecek {
23689ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
23699ce48e5aSMichal Kubecek 	struct phy_device *phydev = dev->phydev;
23709ce48e5aSMichal Kubecek 
23719ce48e5aSMichal Kubecek 	if (dev->sfp_bus)
23729ce48e5aSMichal Kubecek 		return sfp_get_module_eeprom(dev->sfp_bus, ee, data);
23739ce48e5aSMichal Kubecek 
23749ce48e5aSMichal Kubecek 	if (phydev && phydev->drv && phydev->drv->module_eeprom)
23759ce48e5aSMichal Kubecek 		return phydev->drv->module_eeprom(phydev, ee, data);
23769ce48e5aSMichal Kubecek 
23779ce48e5aSMichal Kubecek 	if (ops->get_module_eeprom)
23789ce48e5aSMichal Kubecek 		return ops->get_module_eeprom(dev, ee, data);
23799ce48e5aSMichal Kubecek 
23809ce48e5aSMichal Kubecek 	return -EOPNOTSUPP;
23819ce48e5aSMichal Kubecek }
23829ce48e5aSMichal Kubecek 
23839ce48e5aSMichal Kubecek static int ethtool_get_module_eeprom(struct net_device *dev,
23849ce48e5aSMichal Kubecek 				     void __user *useraddr)
23859ce48e5aSMichal Kubecek {
23869ce48e5aSMichal Kubecek 	int ret;
23879ce48e5aSMichal Kubecek 	struct ethtool_modinfo modinfo;
23889ce48e5aSMichal Kubecek 
238995dfc7efSAndrew Lunn 	ret = ethtool_get_module_info_call(dev, &modinfo);
23909ce48e5aSMichal Kubecek 	if (ret)
23919ce48e5aSMichal Kubecek 		return ret;
23929ce48e5aSMichal Kubecek 
23939ce48e5aSMichal Kubecek 	return ethtool_get_any_eeprom(dev, useraddr,
239495dfc7efSAndrew Lunn 				      ethtool_get_module_eeprom_call,
23959ce48e5aSMichal Kubecek 				      modinfo.eeprom_len);
23969ce48e5aSMichal Kubecek }
23979ce48e5aSMichal Kubecek 
23989ce48e5aSMichal Kubecek static int ethtool_tunable_valid(const struct ethtool_tunable *tuna)
23999ce48e5aSMichal Kubecek {
24009ce48e5aSMichal Kubecek 	switch (tuna->id) {
24019ce48e5aSMichal Kubecek 	case ETHTOOL_RX_COPYBREAK:
24029ce48e5aSMichal Kubecek 	case ETHTOOL_TX_COPYBREAK:
2403448f413aSHao Chen 	case ETHTOOL_TX_COPYBREAK_BUF_SIZE:
24049ce48e5aSMichal Kubecek 		if (tuna->len != sizeof(u32) ||
24059ce48e5aSMichal Kubecek 		    tuna->type_id != ETHTOOL_TUNABLE_U32)
24069ce48e5aSMichal Kubecek 			return -EINVAL;
24079ce48e5aSMichal Kubecek 		break;
24089ce48e5aSMichal Kubecek 	case ETHTOOL_PFC_PREVENTION_TOUT:
24099ce48e5aSMichal Kubecek 		if (tuna->len != sizeof(u16) ||
24109ce48e5aSMichal Kubecek 		    tuna->type_id != ETHTOOL_TUNABLE_U16)
24119ce48e5aSMichal Kubecek 			return -EINVAL;
24129ce48e5aSMichal Kubecek 		break;
24139ce48e5aSMichal Kubecek 	default:
24149ce48e5aSMichal Kubecek 		return -EINVAL;
24159ce48e5aSMichal Kubecek 	}
24169ce48e5aSMichal Kubecek 
24179ce48e5aSMichal Kubecek 	return 0;
24189ce48e5aSMichal Kubecek }
24199ce48e5aSMichal Kubecek 
24209ce48e5aSMichal Kubecek static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr)
24219ce48e5aSMichal Kubecek {
24229ce48e5aSMichal Kubecek 	int ret;
24239ce48e5aSMichal Kubecek 	struct ethtool_tunable tuna;
24249ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
24259ce48e5aSMichal Kubecek 	void *data;
24269ce48e5aSMichal Kubecek 
24279ce48e5aSMichal Kubecek 	if (!ops->get_tunable)
24289ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
24299ce48e5aSMichal Kubecek 	if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
24309ce48e5aSMichal Kubecek 		return -EFAULT;
24319ce48e5aSMichal Kubecek 	ret = ethtool_tunable_valid(&tuna);
24329ce48e5aSMichal Kubecek 	if (ret)
24339ce48e5aSMichal Kubecek 		return ret;
243480ec82e3SAustin Kim 	data = kzalloc(tuna.len, GFP_USER);
24359ce48e5aSMichal Kubecek 	if (!data)
24369ce48e5aSMichal Kubecek 		return -ENOMEM;
24379ce48e5aSMichal Kubecek 	ret = ops->get_tunable(dev, &tuna, data);
24389ce48e5aSMichal Kubecek 	if (ret)
24399ce48e5aSMichal Kubecek 		goto out;
24409ce48e5aSMichal Kubecek 	useraddr += sizeof(tuna);
24419ce48e5aSMichal Kubecek 	ret = -EFAULT;
24429ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, data, tuna.len))
24439ce48e5aSMichal Kubecek 		goto out;
24449ce48e5aSMichal Kubecek 	ret = 0;
24459ce48e5aSMichal Kubecek 
24469ce48e5aSMichal Kubecek out:
24479ce48e5aSMichal Kubecek 	kfree(data);
24489ce48e5aSMichal Kubecek 	return ret;
24499ce48e5aSMichal Kubecek }
24509ce48e5aSMichal Kubecek 
24519ce48e5aSMichal Kubecek static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr)
24529ce48e5aSMichal Kubecek {
24539ce48e5aSMichal Kubecek 	int ret;
24549ce48e5aSMichal Kubecek 	struct ethtool_tunable tuna;
24559ce48e5aSMichal Kubecek 	const struct ethtool_ops *ops = dev->ethtool_ops;
24569ce48e5aSMichal Kubecek 	void *data;
24579ce48e5aSMichal Kubecek 
24589ce48e5aSMichal Kubecek 	if (!ops->set_tunable)
24599ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
24609ce48e5aSMichal Kubecek 	if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
24619ce48e5aSMichal Kubecek 		return -EFAULT;
24629ce48e5aSMichal Kubecek 	ret = ethtool_tunable_valid(&tuna);
24639ce48e5aSMichal Kubecek 	if (ret)
24649ce48e5aSMichal Kubecek 		return ret;
24659ce48e5aSMichal Kubecek 	useraddr += sizeof(tuna);
24669ce48e5aSMichal Kubecek 	data = memdup_user(useraddr, tuna.len);
24679ce48e5aSMichal Kubecek 	if (IS_ERR(data))
24689ce48e5aSMichal Kubecek 		return PTR_ERR(data);
24699ce48e5aSMichal Kubecek 	ret = ops->set_tunable(dev, &tuna, data);
24709ce48e5aSMichal Kubecek 
24719ce48e5aSMichal Kubecek 	kfree(data);
24729ce48e5aSMichal Kubecek 	return ret;
24739ce48e5aSMichal Kubecek }
24749ce48e5aSMichal Kubecek 
24759ce48e5aSMichal Kubecek static noinline_for_stack int
24769ce48e5aSMichal Kubecek ethtool_get_per_queue_coalesce(struct net_device *dev,
24779ce48e5aSMichal Kubecek 			       void __user *useraddr,
24789ce48e5aSMichal Kubecek 			       struct ethtool_per_queue_op *per_queue_opt)
24799ce48e5aSMichal Kubecek {
24809ce48e5aSMichal Kubecek 	u32 bit;
24819ce48e5aSMichal Kubecek 	int ret;
24829ce48e5aSMichal Kubecek 	DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
24839ce48e5aSMichal Kubecek 
24849ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->get_per_queue_coalesce)
24859ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
24869ce48e5aSMichal Kubecek 
24879ce48e5aSMichal Kubecek 	useraddr += sizeof(*per_queue_opt);
24889ce48e5aSMichal Kubecek 
24899ce48e5aSMichal Kubecek 	bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask,
24909ce48e5aSMichal Kubecek 			  MAX_NUM_QUEUE);
24919ce48e5aSMichal Kubecek 
24929ce48e5aSMichal Kubecek 	for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
24939ce48e5aSMichal Kubecek 		struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
24949ce48e5aSMichal Kubecek 
24959ce48e5aSMichal Kubecek 		ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, &coalesce);
24969ce48e5aSMichal Kubecek 		if (ret != 0)
24979ce48e5aSMichal Kubecek 			return ret;
24989ce48e5aSMichal Kubecek 		if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
24999ce48e5aSMichal Kubecek 			return -EFAULT;
25009ce48e5aSMichal Kubecek 		useraddr += sizeof(coalesce);
25019ce48e5aSMichal Kubecek 	}
25029ce48e5aSMichal Kubecek 
25039ce48e5aSMichal Kubecek 	return 0;
25049ce48e5aSMichal Kubecek }
25059ce48e5aSMichal Kubecek 
25069ce48e5aSMichal Kubecek static noinline_for_stack int
25079ce48e5aSMichal Kubecek ethtool_set_per_queue_coalesce(struct net_device *dev,
25089ce48e5aSMichal Kubecek 			       void __user *useraddr,
25099ce48e5aSMichal Kubecek 			       struct ethtool_per_queue_op *per_queue_opt)
25109ce48e5aSMichal Kubecek {
25119ce48e5aSMichal Kubecek 	u32 bit;
25129ce48e5aSMichal Kubecek 	int i, ret = 0;
25139ce48e5aSMichal Kubecek 	int n_queue;
25149ce48e5aSMichal Kubecek 	struct ethtool_coalesce *backup = NULL, *tmp = NULL;
25159ce48e5aSMichal Kubecek 	DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
25169ce48e5aSMichal Kubecek 
25179ce48e5aSMichal Kubecek 	if ((!dev->ethtool_ops->set_per_queue_coalesce) ||
25189ce48e5aSMichal Kubecek 	    (!dev->ethtool_ops->get_per_queue_coalesce))
25199ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
25209ce48e5aSMichal Kubecek 
25219ce48e5aSMichal Kubecek 	useraddr += sizeof(*per_queue_opt);
25229ce48e5aSMichal Kubecek 
25239ce48e5aSMichal Kubecek 	bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask, MAX_NUM_QUEUE);
25249ce48e5aSMichal Kubecek 	n_queue = bitmap_weight(queue_mask, MAX_NUM_QUEUE);
25259ce48e5aSMichal Kubecek 	tmp = backup = kmalloc_array(n_queue, sizeof(*backup), GFP_KERNEL);
25269ce48e5aSMichal Kubecek 	if (!backup)
25279ce48e5aSMichal Kubecek 		return -ENOMEM;
25289ce48e5aSMichal Kubecek 
25299ce48e5aSMichal Kubecek 	for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
25309ce48e5aSMichal Kubecek 		struct ethtool_coalesce coalesce;
25319ce48e5aSMichal Kubecek 
25329ce48e5aSMichal Kubecek 		ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, tmp);
25339ce48e5aSMichal Kubecek 		if (ret != 0)
25349ce48e5aSMichal Kubecek 			goto roll_back;
25359ce48e5aSMichal Kubecek 
25369ce48e5aSMichal Kubecek 		tmp++;
25379ce48e5aSMichal Kubecek 
25389ce48e5aSMichal Kubecek 		if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) {
25399ce48e5aSMichal Kubecek 			ret = -EFAULT;
25409ce48e5aSMichal Kubecek 			goto roll_back;
25419ce48e5aSMichal Kubecek 		}
25429ce48e5aSMichal Kubecek 
254395cddcb5SJakub Kicinski 		if (!ethtool_set_coalesce_supported(dev, &coalesce)) {
254495cddcb5SJakub Kicinski 			ret = -EOPNOTSUPP;
254595cddcb5SJakub Kicinski 			goto roll_back;
254695cddcb5SJakub Kicinski 		}
254795cddcb5SJakub Kicinski 
25489ce48e5aSMichal Kubecek 		ret = dev->ethtool_ops->set_per_queue_coalesce(dev, bit, &coalesce);
25499ce48e5aSMichal Kubecek 		if (ret != 0)
25509ce48e5aSMichal Kubecek 			goto roll_back;
25519ce48e5aSMichal Kubecek 
25529ce48e5aSMichal Kubecek 		useraddr += sizeof(coalesce);
25539ce48e5aSMichal Kubecek 	}
25549ce48e5aSMichal Kubecek 
25559ce48e5aSMichal Kubecek roll_back:
25569ce48e5aSMichal Kubecek 	if (ret != 0) {
25579ce48e5aSMichal Kubecek 		tmp = backup;
25589ce48e5aSMichal Kubecek 		for_each_set_bit(i, queue_mask, bit) {
25599ce48e5aSMichal Kubecek 			dev->ethtool_ops->set_per_queue_coalesce(dev, i, tmp);
25609ce48e5aSMichal Kubecek 			tmp++;
25619ce48e5aSMichal Kubecek 		}
25629ce48e5aSMichal Kubecek 	}
25639ce48e5aSMichal Kubecek 	kfree(backup);
25649ce48e5aSMichal Kubecek 
25659ce48e5aSMichal Kubecek 	return ret;
25669ce48e5aSMichal Kubecek }
25679ce48e5aSMichal Kubecek 
25689ce48e5aSMichal Kubecek static int noinline_for_stack ethtool_set_per_queue(struct net_device *dev,
25699ce48e5aSMichal Kubecek 				 void __user *useraddr, u32 sub_cmd)
25709ce48e5aSMichal Kubecek {
25719ce48e5aSMichal Kubecek 	struct ethtool_per_queue_op per_queue_opt;
25729ce48e5aSMichal Kubecek 
25739ce48e5aSMichal Kubecek 	if (copy_from_user(&per_queue_opt, useraddr, sizeof(per_queue_opt)))
25749ce48e5aSMichal Kubecek 		return -EFAULT;
25759ce48e5aSMichal Kubecek 
25769ce48e5aSMichal Kubecek 	if (per_queue_opt.sub_command != sub_cmd)
25779ce48e5aSMichal Kubecek 		return -EINVAL;
25789ce48e5aSMichal Kubecek 
25799ce48e5aSMichal Kubecek 	switch (per_queue_opt.sub_command) {
25809ce48e5aSMichal Kubecek 	case ETHTOOL_GCOALESCE:
25819ce48e5aSMichal Kubecek 		return ethtool_get_per_queue_coalesce(dev, useraddr, &per_queue_opt);
25829ce48e5aSMichal Kubecek 	case ETHTOOL_SCOALESCE:
25839ce48e5aSMichal Kubecek 		return ethtool_set_per_queue_coalesce(dev, useraddr, &per_queue_opt);
25849ce48e5aSMichal Kubecek 	default:
25859ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
25869d253c02STom Rix 	}
25879ce48e5aSMichal Kubecek }
25889ce48e5aSMichal Kubecek 
25899ce48e5aSMichal Kubecek static int ethtool_phy_tunable_valid(const struct ethtool_tunable *tuna)
25909ce48e5aSMichal Kubecek {
25919ce48e5aSMichal Kubecek 	switch (tuna->id) {
25929ce48e5aSMichal Kubecek 	case ETHTOOL_PHY_DOWNSHIFT:
25939ce48e5aSMichal Kubecek 	case ETHTOOL_PHY_FAST_LINK_DOWN:
25949ce48e5aSMichal Kubecek 		if (tuna->len != sizeof(u8) ||
25959ce48e5aSMichal Kubecek 		    tuna->type_id != ETHTOOL_TUNABLE_U8)
25969ce48e5aSMichal Kubecek 			return -EINVAL;
25979ce48e5aSMichal Kubecek 		break;
25989ce48e5aSMichal Kubecek 	case ETHTOOL_PHY_EDPD:
25999ce48e5aSMichal Kubecek 		if (tuna->len != sizeof(u16) ||
26009ce48e5aSMichal Kubecek 		    tuna->type_id != ETHTOOL_TUNABLE_U16)
26019ce48e5aSMichal Kubecek 			return -EINVAL;
26029ce48e5aSMichal Kubecek 		break;
26039ce48e5aSMichal Kubecek 	default:
26049ce48e5aSMichal Kubecek 		return -EINVAL;
26059ce48e5aSMichal Kubecek 	}
26069ce48e5aSMichal Kubecek 
26079ce48e5aSMichal Kubecek 	return 0;
26089ce48e5aSMichal Kubecek }
26099ce48e5aSMichal Kubecek 
26109ce48e5aSMichal Kubecek static int get_phy_tunable(struct net_device *dev, void __user *useraddr)
26119ce48e5aSMichal Kubecek {
26129ce48e5aSMichal Kubecek 	struct phy_device *phydev = dev->phydev;
2613c6db31ffSIgor Russkikh 	struct ethtool_tunable tuna;
2614c6db31ffSIgor Russkikh 	bool phy_drv_tunable;
26159ce48e5aSMichal Kubecek 	void *data;
2616c6db31ffSIgor Russkikh 	int ret;
26179ce48e5aSMichal Kubecek 
2618c6db31ffSIgor Russkikh 	phy_drv_tunable = phydev && phydev->drv && phydev->drv->get_tunable;
2619c6db31ffSIgor Russkikh 	if (!phy_drv_tunable && !dev->ethtool_ops->get_phy_tunable)
26209ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
26219ce48e5aSMichal Kubecek 	if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
26229ce48e5aSMichal Kubecek 		return -EFAULT;
26239ce48e5aSMichal Kubecek 	ret = ethtool_phy_tunable_valid(&tuna);
26249ce48e5aSMichal Kubecek 	if (ret)
26259ce48e5aSMichal Kubecek 		return ret;
262680ec82e3SAustin Kim 	data = kzalloc(tuna.len, GFP_USER);
26279ce48e5aSMichal Kubecek 	if (!data)
26289ce48e5aSMichal Kubecek 		return -ENOMEM;
2629c6db31ffSIgor Russkikh 	if (phy_drv_tunable) {
26309ce48e5aSMichal Kubecek 		mutex_lock(&phydev->lock);
26319ce48e5aSMichal Kubecek 		ret = phydev->drv->get_tunable(phydev, &tuna, data);
26329ce48e5aSMichal Kubecek 		mutex_unlock(&phydev->lock);
2633c6db31ffSIgor Russkikh 	} else {
2634c6db31ffSIgor Russkikh 		ret = dev->ethtool_ops->get_phy_tunable(dev, &tuna, data);
2635c6db31ffSIgor Russkikh 	}
26369ce48e5aSMichal Kubecek 	if (ret)
26379ce48e5aSMichal Kubecek 		goto out;
26389ce48e5aSMichal Kubecek 	useraddr += sizeof(tuna);
26399ce48e5aSMichal Kubecek 	ret = -EFAULT;
26409ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, data, tuna.len))
26419ce48e5aSMichal Kubecek 		goto out;
26429ce48e5aSMichal Kubecek 	ret = 0;
26439ce48e5aSMichal Kubecek 
26449ce48e5aSMichal Kubecek out:
26459ce48e5aSMichal Kubecek 	kfree(data);
26469ce48e5aSMichal Kubecek 	return ret;
26479ce48e5aSMichal Kubecek }
26489ce48e5aSMichal Kubecek 
26499ce48e5aSMichal Kubecek static int set_phy_tunable(struct net_device *dev, void __user *useraddr)
26509ce48e5aSMichal Kubecek {
26519ce48e5aSMichal Kubecek 	struct phy_device *phydev = dev->phydev;
2652c6db31ffSIgor Russkikh 	struct ethtool_tunable tuna;
2653c6db31ffSIgor Russkikh 	bool phy_drv_tunable;
26549ce48e5aSMichal Kubecek 	void *data;
2655c6db31ffSIgor Russkikh 	int ret;
26569ce48e5aSMichal Kubecek 
2657c6db31ffSIgor Russkikh 	phy_drv_tunable = phydev && phydev->drv && phydev->drv->get_tunable;
2658c6db31ffSIgor Russkikh 	if (!phy_drv_tunable && !dev->ethtool_ops->set_phy_tunable)
26599ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
26609ce48e5aSMichal Kubecek 	if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
26619ce48e5aSMichal Kubecek 		return -EFAULT;
26629ce48e5aSMichal Kubecek 	ret = ethtool_phy_tunable_valid(&tuna);
26639ce48e5aSMichal Kubecek 	if (ret)
26649ce48e5aSMichal Kubecek 		return ret;
26659ce48e5aSMichal Kubecek 	useraddr += sizeof(tuna);
26669ce48e5aSMichal Kubecek 	data = memdup_user(useraddr, tuna.len);
26679ce48e5aSMichal Kubecek 	if (IS_ERR(data))
26689ce48e5aSMichal Kubecek 		return PTR_ERR(data);
2669c6db31ffSIgor Russkikh 	if (phy_drv_tunable) {
26709ce48e5aSMichal Kubecek 		mutex_lock(&phydev->lock);
26719ce48e5aSMichal Kubecek 		ret = phydev->drv->set_tunable(phydev, &tuna, data);
26729ce48e5aSMichal Kubecek 		mutex_unlock(&phydev->lock);
2673c6db31ffSIgor Russkikh 	} else {
2674c6db31ffSIgor Russkikh 		ret = dev->ethtool_ops->set_phy_tunable(dev, &tuna, data);
2675c6db31ffSIgor Russkikh 	}
26769ce48e5aSMichal Kubecek 
26779ce48e5aSMichal Kubecek 	kfree(data);
26789ce48e5aSMichal Kubecek 	return ret;
26799ce48e5aSMichal Kubecek }
26809ce48e5aSMichal Kubecek 
26819ce48e5aSMichal Kubecek static int ethtool_get_fecparam(struct net_device *dev, void __user *useraddr)
26829ce48e5aSMichal Kubecek {
26839ce48e5aSMichal Kubecek 	struct ethtool_fecparam fecparam = { .cmd = ETHTOOL_GFECPARAM };
26849ce48e5aSMichal Kubecek 	int rc;
26859ce48e5aSMichal Kubecek 
26869ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->get_fecparam)
26879ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
26889ce48e5aSMichal Kubecek 
26899ce48e5aSMichal Kubecek 	rc = dev->ethtool_ops->get_fecparam(dev, &fecparam);
26909ce48e5aSMichal Kubecek 	if (rc)
26919ce48e5aSMichal Kubecek 		return rc;
26929ce48e5aSMichal Kubecek 
2693240e1144SJakub Kicinski 	if (WARN_ON_ONCE(fecparam.reserved))
2694240e1144SJakub Kicinski 		fecparam.reserved = 0;
2695240e1144SJakub Kicinski 
26969ce48e5aSMichal Kubecek 	if (copy_to_user(useraddr, &fecparam, sizeof(fecparam)))
26979ce48e5aSMichal Kubecek 		return -EFAULT;
26989ce48e5aSMichal Kubecek 	return 0;
26999ce48e5aSMichal Kubecek }
27009ce48e5aSMichal Kubecek 
27019ce48e5aSMichal Kubecek static int ethtool_set_fecparam(struct net_device *dev, void __user *useraddr)
27029ce48e5aSMichal Kubecek {
27039ce48e5aSMichal Kubecek 	struct ethtool_fecparam fecparam;
27049ce48e5aSMichal Kubecek 
27059ce48e5aSMichal Kubecek 	if (!dev->ethtool_ops->set_fecparam)
27069ce48e5aSMichal Kubecek 		return -EOPNOTSUPP;
27079ce48e5aSMichal Kubecek 
27089ce48e5aSMichal Kubecek 	if (copy_from_user(&fecparam, useraddr, sizeof(fecparam)))
27099ce48e5aSMichal Kubecek 		return -EFAULT;
27109ce48e5aSMichal Kubecek 
2711cf2cc0bfSJakub Kicinski 	if (!fecparam.fec || fecparam.fec & ETHTOOL_FEC_NONE)
271242ce127dSJakub Kicinski 		return -EINVAL;
271342ce127dSJakub Kicinski 
2714d3b37fc8SJakub Kicinski 	fecparam.active_fec = 0;
2715240e1144SJakub Kicinski 	fecparam.reserved = 0;
2716240e1144SJakub Kicinski 
27179ce48e5aSMichal Kubecek 	return dev->ethtool_ops->set_fecparam(dev, &fecparam);
27189ce48e5aSMichal Kubecek }
27199ce48e5aSMichal Kubecek 
27209ce48e5aSMichal Kubecek /* The main entry point in this file.  Called from net/core/dev_ioctl.c */
27219ce48e5aSMichal Kubecek 
2722f49deaa6SJakub Kicinski static int
2723095cfcfeSJakub Kicinski __dev_ethtool(struct net *net, struct ifreq *ifr, void __user *useraddr,
2724095cfcfeSJakub Kicinski 	      u32 ethcmd, struct ethtool_devlink_compat *devlink_state)
27259ce48e5aSMichal Kubecek {
2726095cfcfeSJakub Kicinski 	struct net_device *dev;
2727095cfcfeSJakub Kicinski 	u32 sub_cmd;
27289ce48e5aSMichal Kubecek 	int rc;
27299ce48e5aSMichal Kubecek 	netdev_features_t old_features;
27309ce48e5aSMichal Kubecek 
2731095cfcfeSJakub Kicinski 	dev = __dev_get_by_name(net, ifr->ifr_name);
2732f32a2137SHeiner Kallweit 	if (!dev)
27339ce48e5aSMichal Kubecek 		return -ENODEV;
27349ce48e5aSMichal Kubecek 
27359ce48e5aSMichal Kubecek 	if (ethcmd == ETHTOOL_PERQUEUE) {
27369ce48e5aSMichal Kubecek 		if (copy_from_user(&sub_cmd, useraddr + sizeof(ethcmd), sizeof(sub_cmd)))
27379ce48e5aSMichal Kubecek 			return -EFAULT;
27389ce48e5aSMichal Kubecek 	} else {
27399ce48e5aSMichal Kubecek 		sub_cmd = ethcmd;
27409ce48e5aSMichal Kubecek 	}
27419ce48e5aSMichal Kubecek 	/* Allow some commands to be done by anyone */
27429ce48e5aSMichal Kubecek 	switch (sub_cmd) {
27439ce48e5aSMichal Kubecek 	case ETHTOOL_GSET:
27449ce48e5aSMichal Kubecek 	case ETHTOOL_GDRVINFO:
27459ce48e5aSMichal Kubecek 	case ETHTOOL_GMSGLVL:
27469ce48e5aSMichal Kubecek 	case ETHTOOL_GLINK:
27479ce48e5aSMichal Kubecek 	case ETHTOOL_GCOALESCE:
27489ce48e5aSMichal Kubecek 	case ETHTOOL_GRINGPARAM:
27499ce48e5aSMichal Kubecek 	case ETHTOOL_GPAUSEPARAM:
27509ce48e5aSMichal Kubecek 	case ETHTOOL_GRXCSUM:
27519ce48e5aSMichal Kubecek 	case ETHTOOL_GTXCSUM:
27529ce48e5aSMichal Kubecek 	case ETHTOOL_GSG:
27539ce48e5aSMichal Kubecek 	case ETHTOOL_GSSET_INFO:
27549ce48e5aSMichal Kubecek 	case ETHTOOL_GSTRINGS:
27559ce48e5aSMichal Kubecek 	case ETHTOOL_GSTATS:
27569ce48e5aSMichal Kubecek 	case ETHTOOL_GPHYSTATS:
27579ce48e5aSMichal Kubecek 	case ETHTOOL_GTSO:
27589ce48e5aSMichal Kubecek 	case ETHTOOL_GPERMADDR:
27599ce48e5aSMichal Kubecek 	case ETHTOOL_GUFO:
27609ce48e5aSMichal Kubecek 	case ETHTOOL_GGSO:
27619ce48e5aSMichal Kubecek 	case ETHTOOL_GGRO:
27629ce48e5aSMichal Kubecek 	case ETHTOOL_GFLAGS:
27639ce48e5aSMichal Kubecek 	case ETHTOOL_GPFLAGS:
27649ce48e5aSMichal Kubecek 	case ETHTOOL_GRXFH:
27659ce48e5aSMichal Kubecek 	case ETHTOOL_GRXRINGS:
27669ce48e5aSMichal Kubecek 	case ETHTOOL_GRXCLSRLCNT:
27679ce48e5aSMichal Kubecek 	case ETHTOOL_GRXCLSRULE:
27689ce48e5aSMichal Kubecek 	case ETHTOOL_GRXCLSRLALL:
27699ce48e5aSMichal Kubecek 	case ETHTOOL_GRXFHINDIR:
27709ce48e5aSMichal Kubecek 	case ETHTOOL_GRSSH:
27719ce48e5aSMichal Kubecek 	case ETHTOOL_GFEATURES:
27729ce48e5aSMichal Kubecek 	case ETHTOOL_GCHANNELS:
27739ce48e5aSMichal Kubecek 	case ETHTOOL_GET_TS_INFO:
27749ce48e5aSMichal Kubecek 	case ETHTOOL_GEEE:
27759ce48e5aSMichal Kubecek 	case ETHTOOL_GTUNABLE:
27769ce48e5aSMichal Kubecek 	case ETHTOOL_PHY_GTUNABLE:
27779ce48e5aSMichal Kubecek 	case ETHTOOL_GLINKSETTINGS:
27789ce48e5aSMichal Kubecek 	case ETHTOOL_GFECPARAM:
27799ce48e5aSMichal Kubecek 		break;
27809ce48e5aSMichal Kubecek 	default:
27819ce48e5aSMichal Kubecek 		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
27829ce48e5aSMichal Kubecek 			return -EPERM;
27839ce48e5aSMichal Kubecek 	}
27849ce48e5aSMichal Kubecek 
2785f32a2137SHeiner Kallweit 	if (dev->dev.parent)
2786f32a2137SHeiner Kallweit 		pm_runtime_get_sync(dev->dev.parent);
2787f32a2137SHeiner Kallweit 
2788f32a2137SHeiner Kallweit 	if (!netif_device_present(dev)) {
2789f32a2137SHeiner Kallweit 		rc = -ENODEV;
2790f32a2137SHeiner Kallweit 		goto out;
2791f32a2137SHeiner Kallweit 	}
2792f32a2137SHeiner Kallweit 
27939ce48e5aSMichal Kubecek 	if (dev->ethtool_ops->begin) {
27949ce48e5aSMichal Kubecek 		rc = dev->ethtool_ops->begin(dev);
27959ce48e5aSMichal Kubecek 		if (rc < 0)
2796f32a2137SHeiner Kallweit 			goto out;
27979ce48e5aSMichal Kubecek 	}
27989ce48e5aSMichal Kubecek 	old_features = dev->features;
27999ce48e5aSMichal Kubecek 
28009ce48e5aSMichal Kubecek 	switch (ethcmd) {
28019ce48e5aSMichal Kubecek 	case ETHTOOL_GSET:
28029ce48e5aSMichal Kubecek 		rc = ethtool_get_settings(dev, useraddr);
28039ce48e5aSMichal Kubecek 		break;
28049ce48e5aSMichal Kubecek 	case ETHTOOL_SSET:
28059ce48e5aSMichal Kubecek 		rc = ethtool_set_settings(dev, useraddr);
28069ce48e5aSMichal Kubecek 		break;
28079ce48e5aSMichal Kubecek 	case ETHTOOL_GDRVINFO:
2808095cfcfeSJakub Kicinski 		rc = ethtool_get_drvinfo(dev, devlink_state);
28099ce48e5aSMichal Kubecek 		break;
28109ce48e5aSMichal Kubecek 	case ETHTOOL_GREGS:
28119ce48e5aSMichal Kubecek 		rc = ethtool_get_regs(dev, useraddr);
28129ce48e5aSMichal Kubecek 		break;
28139ce48e5aSMichal Kubecek 	case ETHTOOL_GWOL:
28149ce48e5aSMichal Kubecek 		rc = ethtool_get_wol(dev, useraddr);
28159ce48e5aSMichal Kubecek 		break;
28169ce48e5aSMichal Kubecek 	case ETHTOOL_SWOL:
28179ce48e5aSMichal Kubecek 		rc = ethtool_set_wol(dev, useraddr);
28189ce48e5aSMichal Kubecek 		break;
28199ce48e5aSMichal Kubecek 	case ETHTOOL_GMSGLVL:
28209ce48e5aSMichal Kubecek 		rc = ethtool_get_value(dev, useraddr, ethcmd,
28219ce48e5aSMichal Kubecek 				       dev->ethtool_ops->get_msglevel);
28229ce48e5aSMichal Kubecek 		break;
28239ce48e5aSMichal Kubecek 	case ETHTOOL_SMSGLVL:
28249ce48e5aSMichal Kubecek 		rc = ethtool_set_value_void(dev, useraddr,
28259ce48e5aSMichal Kubecek 				       dev->ethtool_ops->set_msglevel);
28260bda7af3SMichal Kubecek 		if (!rc)
28270bda7af3SMichal Kubecek 			ethtool_notify(dev, ETHTOOL_MSG_DEBUG_NTF, NULL);
28289ce48e5aSMichal Kubecek 		break;
28299ce48e5aSMichal Kubecek 	case ETHTOOL_GEEE:
28309ce48e5aSMichal Kubecek 		rc = ethtool_get_eee(dev, useraddr);
28319ce48e5aSMichal Kubecek 		break;
28329ce48e5aSMichal Kubecek 	case ETHTOOL_SEEE:
28339ce48e5aSMichal Kubecek 		rc = ethtool_set_eee(dev, useraddr);
28349ce48e5aSMichal Kubecek 		break;
28359ce48e5aSMichal Kubecek 	case ETHTOOL_NWAY_RST:
28369ce48e5aSMichal Kubecek 		rc = ethtool_nway_reset(dev);
28379ce48e5aSMichal Kubecek 		break;
28389ce48e5aSMichal Kubecek 	case ETHTOOL_GLINK:
28399ce48e5aSMichal Kubecek 		rc = ethtool_get_link(dev, useraddr);
28409ce48e5aSMichal Kubecek 		break;
28419ce48e5aSMichal Kubecek 	case ETHTOOL_GEEPROM:
28429ce48e5aSMichal Kubecek 		rc = ethtool_get_eeprom(dev, useraddr);
28439ce48e5aSMichal Kubecek 		break;
28449ce48e5aSMichal Kubecek 	case ETHTOOL_SEEPROM:
28459ce48e5aSMichal Kubecek 		rc = ethtool_set_eeprom(dev, useraddr);
28469ce48e5aSMichal Kubecek 		break;
28479ce48e5aSMichal Kubecek 	case ETHTOOL_GCOALESCE:
28489ce48e5aSMichal Kubecek 		rc = ethtool_get_coalesce(dev, useraddr);
28499ce48e5aSMichal Kubecek 		break;
28509ce48e5aSMichal Kubecek 	case ETHTOOL_SCOALESCE:
28519ce48e5aSMichal Kubecek 		rc = ethtool_set_coalesce(dev, useraddr);
28529ce48e5aSMichal Kubecek 		break;
28539ce48e5aSMichal Kubecek 	case ETHTOOL_GRINGPARAM:
28549ce48e5aSMichal Kubecek 		rc = ethtool_get_ringparam(dev, useraddr);
28559ce48e5aSMichal Kubecek 		break;
28569ce48e5aSMichal Kubecek 	case ETHTOOL_SRINGPARAM:
28579ce48e5aSMichal Kubecek 		rc = ethtool_set_ringparam(dev, useraddr);
28589ce48e5aSMichal Kubecek 		break;
28599ce48e5aSMichal Kubecek 	case ETHTOOL_GPAUSEPARAM:
28609ce48e5aSMichal Kubecek 		rc = ethtool_get_pauseparam(dev, useraddr);
28619ce48e5aSMichal Kubecek 		break;
28629ce48e5aSMichal Kubecek 	case ETHTOOL_SPAUSEPARAM:
28639ce48e5aSMichal Kubecek 		rc = ethtool_set_pauseparam(dev, useraddr);
28649ce48e5aSMichal Kubecek 		break;
28659ce48e5aSMichal Kubecek 	case ETHTOOL_TEST:
28669ce48e5aSMichal Kubecek 		rc = ethtool_self_test(dev, useraddr);
28679ce48e5aSMichal Kubecek 		break;
28689ce48e5aSMichal Kubecek 	case ETHTOOL_GSTRINGS:
28699ce48e5aSMichal Kubecek 		rc = ethtool_get_strings(dev, useraddr);
28709ce48e5aSMichal Kubecek 		break;
28719ce48e5aSMichal Kubecek 	case ETHTOOL_PHYS_ID:
28729ce48e5aSMichal Kubecek 		rc = ethtool_phys_id(dev, useraddr);
28739ce48e5aSMichal Kubecek 		break;
28749ce48e5aSMichal Kubecek 	case ETHTOOL_GSTATS:
28759ce48e5aSMichal Kubecek 		rc = ethtool_get_stats(dev, useraddr);
28769ce48e5aSMichal Kubecek 		break;
28779ce48e5aSMichal Kubecek 	case ETHTOOL_GPERMADDR:
28789ce48e5aSMichal Kubecek 		rc = ethtool_get_perm_addr(dev, useraddr);
28799ce48e5aSMichal Kubecek 		break;
28809ce48e5aSMichal Kubecek 	case ETHTOOL_GFLAGS:
28819ce48e5aSMichal Kubecek 		rc = ethtool_get_value(dev, useraddr, ethcmd,
28829ce48e5aSMichal Kubecek 					__ethtool_get_flags);
28839ce48e5aSMichal Kubecek 		break;
28849ce48e5aSMichal Kubecek 	case ETHTOOL_SFLAGS:
28859ce48e5aSMichal Kubecek 		rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags);
28869ce48e5aSMichal Kubecek 		break;
28879ce48e5aSMichal Kubecek 	case ETHTOOL_GPFLAGS:
28889ce48e5aSMichal Kubecek 		rc = ethtool_get_value(dev, useraddr, ethcmd,
28899ce48e5aSMichal Kubecek 				       dev->ethtool_ops->get_priv_flags);
2890111dcba3SMichal Kubecek 		if (!rc)
2891111dcba3SMichal Kubecek 			ethtool_notify(dev, ETHTOOL_MSG_PRIVFLAGS_NTF, NULL);
28929ce48e5aSMichal Kubecek 		break;
28939ce48e5aSMichal Kubecek 	case ETHTOOL_SPFLAGS:
28949ce48e5aSMichal Kubecek 		rc = ethtool_set_value(dev, useraddr,
28959ce48e5aSMichal Kubecek 				       dev->ethtool_ops->set_priv_flags);
28969ce48e5aSMichal Kubecek 		break;
28979ce48e5aSMichal Kubecek 	case ETHTOOL_GRXFH:
28989ce48e5aSMichal Kubecek 	case ETHTOOL_GRXRINGS:
28999ce48e5aSMichal Kubecek 	case ETHTOOL_GRXCLSRLCNT:
29009ce48e5aSMichal Kubecek 	case ETHTOOL_GRXCLSRULE:
29019ce48e5aSMichal Kubecek 	case ETHTOOL_GRXCLSRLALL:
29029ce48e5aSMichal Kubecek 		rc = ethtool_get_rxnfc(dev, ethcmd, useraddr);
29039ce48e5aSMichal Kubecek 		break;
29049ce48e5aSMichal Kubecek 	case ETHTOOL_SRXFH:
29059ce48e5aSMichal Kubecek 	case ETHTOOL_SRXCLSRLDEL:
29069ce48e5aSMichal Kubecek 	case ETHTOOL_SRXCLSRLINS:
29079ce48e5aSMichal Kubecek 		rc = ethtool_set_rxnfc(dev, ethcmd, useraddr);
29089ce48e5aSMichal Kubecek 		break;
29099ce48e5aSMichal Kubecek 	case ETHTOOL_FLASHDEV:
2910095cfcfeSJakub Kicinski 		rc = ethtool_flash_device(dev, devlink_state);
29119ce48e5aSMichal Kubecek 		break;
29129ce48e5aSMichal Kubecek 	case ETHTOOL_RESET:
29139ce48e5aSMichal Kubecek 		rc = ethtool_reset(dev, useraddr);
29149ce48e5aSMichal Kubecek 		break;
29159ce48e5aSMichal Kubecek 	case ETHTOOL_GSSET_INFO:
29169ce48e5aSMichal Kubecek 		rc = ethtool_get_sset_info(dev, useraddr);
29179ce48e5aSMichal Kubecek 		break;
29189ce48e5aSMichal Kubecek 	case ETHTOOL_GRXFHINDIR:
29199ce48e5aSMichal Kubecek 		rc = ethtool_get_rxfh_indir(dev, useraddr);
29209ce48e5aSMichal Kubecek 		break;
29219ce48e5aSMichal Kubecek 	case ETHTOOL_SRXFHINDIR:
29229ce48e5aSMichal Kubecek 		rc = ethtool_set_rxfh_indir(dev, useraddr);
29239ce48e5aSMichal Kubecek 		break;
29249ce48e5aSMichal Kubecek 	case ETHTOOL_GRSSH:
29259ce48e5aSMichal Kubecek 		rc = ethtool_get_rxfh(dev, useraddr);
29269ce48e5aSMichal Kubecek 		break;
29279ce48e5aSMichal Kubecek 	case ETHTOOL_SRSSH:
29289ce48e5aSMichal Kubecek 		rc = ethtool_set_rxfh(dev, useraddr);
29299ce48e5aSMichal Kubecek 		break;
29309ce48e5aSMichal Kubecek 	case ETHTOOL_GFEATURES:
29319ce48e5aSMichal Kubecek 		rc = ethtool_get_features(dev, useraddr);
29329ce48e5aSMichal Kubecek 		break;
29339ce48e5aSMichal Kubecek 	case ETHTOOL_SFEATURES:
29349ce48e5aSMichal Kubecek 		rc = ethtool_set_features(dev, useraddr);
29359ce48e5aSMichal Kubecek 		break;
29369ce48e5aSMichal Kubecek 	case ETHTOOL_GTXCSUM:
29379ce48e5aSMichal Kubecek 	case ETHTOOL_GRXCSUM:
29389ce48e5aSMichal Kubecek 	case ETHTOOL_GSG:
29399ce48e5aSMichal Kubecek 	case ETHTOOL_GTSO:
29409ce48e5aSMichal Kubecek 	case ETHTOOL_GGSO:
29419ce48e5aSMichal Kubecek 	case ETHTOOL_GGRO:
29429ce48e5aSMichal Kubecek 		rc = ethtool_get_one_feature(dev, useraddr, ethcmd);
29439ce48e5aSMichal Kubecek 		break;
29449ce48e5aSMichal Kubecek 	case ETHTOOL_STXCSUM:
29459ce48e5aSMichal Kubecek 	case ETHTOOL_SRXCSUM:
29469ce48e5aSMichal Kubecek 	case ETHTOOL_SSG:
29479ce48e5aSMichal Kubecek 	case ETHTOOL_STSO:
29489ce48e5aSMichal Kubecek 	case ETHTOOL_SGSO:
29499ce48e5aSMichal Kubecek 	case ETHTOOL_SGRO:
29509ce48e5aSMichal Kubecek 		rc = ethtool_set_one_feature(dev, useraddr, ethcmd);
29519ce48e5aSMichal Kubecek 		break;
29529ce48e5aSMichal Kubecek 	case ETHTOOL_GCHANNELS:
29539ce48e5aSMichal Kubecek 		rc = ethtool_get_channels(dev, useraddr);
29549ce48e5aSMichal Kubecek 		break;
29559ce48e5aSMichal Kubecek 	case ETHTOOL_SCHANNELS:
29569ce48e5aSMichal Kubecek 		rc = ethtool_set_channels(dev, useraddr);
29579ce48e5aSMichal Kubecek 		break;
29589ce48e5aSMichal Kubecek 	case ETHTOOL_SET_DUMP:
29599ce48e5aSMichal Kubecek 		rc = ethtool_set_dump(dev, useraddr);
29609ce48e5aSMichal Kubecek 		break;
29619ce48e5aSMichal Kubecek 	case ETHTOOL_GET_DUMP_FLAG:
29629ce48e5aSMichal Kubecek 		rc = ethtool_get_dump_flag(dev, useraddr);
29639ce48e5aSMichal Kubecek 		break;
29649ce48e5aSMichal Kubecek 	case ETHTOOL_GET_DUMP_DATA:
29659ce48e5aSMichal Kubecek 		rc = ethtool_get_dump_data(dev, useraddr);
29669ce48e5aSMichal Kubecek 		break;
29679ce48e5aSMichal Kubecek 	case ETHTOOL_GET_TS_INFO:
29689ce48e5aSMichal Kubecek 		rc = ethtool_get_ts_info(dev, useraddr);
29699ce48e5aSMichal Kubecek 		break;
29709ce48e5aSMichal Kubecek 	case ETHTOOL_GMODULEINFO:
29719ce48e5aSMichal Kubecek 		rc = ethtool_get_module_info(dev, useraddr);
29729ce48e5aSMichal Kubecek 		break;
29739ce48e5aSMichal Kubecek 	case ETHTOOL_GMODULEEEPROM:
29749ce48e5aSMichal Kubecek 		rc = ethtool_get_module_eeprom(dev, useraddr);
29759ce48e5aSMichal Kubecek 		break;
29769ce48e5aSMichal Kubecek 	case ETHTOOL_GTUNABLE:
29779ce48e5aSMichal Kubecek 		rc = ethtool_get_tunable(dev, useraddr);
29789ce48e5aSMichal Kubecek 		break;
29799ce48e5aSMichal Kubecek 	case ETHTOOL_STUNABLE:
29809ce48e5aSMichal Kubecek 		rc = ethtool_set_tunable(dev, useraddr);
29819ce48e5aSMichal Kubecek 		break;
29829ce48e5aSMichal Kubecek 	case ETHTOOL_GPHYSTATS:
29839ce48e5aSMichal Kubecek 		rc = ethtool_get_phy_stats(dev, useraddr);
29849ce48e5aSMichal Kubecek 		break;
29859ce48e5aSMichal Kubecek 	case ETHTOOL_PERQUEUE:
29869ce48e5aSMichal Kubecek 		rc = ethtool_set_per_queue(dev, useraddr, sub_cmd);
29879ce48e5aSMichal Kubecek 		break;
29889ce48e5aSMichal Kubecek 	case ETHTOOL_GLINKSETTINGS:
29899ce48e5aSMichal Kubecek 		rc = ethtool_get_link_ksettings(dev, useraddr);
29909ce48e5aSMichal Kubecek 		break;
29919ce48e5aSMichal Kubecek 	case ETHTOOL_SLINKSETTINGS:
29929ce48e5aSMichal Kubecek 		rc = ethtool_set_link_ksettings(dev, useraddr);
29939ce48e5aSMichal Kubecek 		break;
29949ce48e5aSMichal Kubecek 	case ETHTOOL_PHY_GTUNABLE:
29959ce48e5aSMichal Kubecek 		rc = get_phy_tunable(dev, useraddr);
29969ce48e5aSMichal Kubecek 		break;
29979ce48e5aSMichal Kubecek 	case ETHTOOL_PHY_STUNABLE:
29989ce48e5aSMichal Kubecek 		rc = set_phy_tunable(dev, useraddr);
29999ce48e5aSMichal Kubecek 		break;
30009ce48e5aSMichal Kubecek 	case ETHTOOL_GFECPARAM:
30019ce48e5aSMichal Kubecek 		rc = ethtool_get_fecparam(dev, useraddr);
30029ce48e5aSMichal Kubecek 		break;
30039ce48e5aSMichal Kubecek 	case ETHTOOL_SFECPARAM:
30049ce48e5aSMichal Kubecek 		rc = ethtool_set_fecparam(dev, useraddr);
30059ce48e5aSMichal Kubecek 		break;
30069ce48e5aSMichal Kubecek 	default:
30079ce48e5aSMichal Kubecek 		rc = -EOPNOTSUPP;
30089ce48e5aSMichal Kubecek 	}
30099ce48e5aSMichal Kubecek 
30109ce48e5aSMichal Kubecek 	if (dev->ethtool_ops->complete)
30119ce48e5aSMichal Kubecek 		dev->ethtool_ops->complete(dev);
30129ce48e5aSMichal Kubecek 
30139ce48e5aSMichal Kubecek 	if (old_features != dev->features)
30149ce48e5aSMichal Kubecek 		netdev_features_change(dev);
3015f32a2137SHeiner Kallweit out:
3016f32a2137SHeiner Kallweit 	if (dev->dev.parent)
3017f32a2137SHeiner Kallweit 		pm_runtime_put(dev->dev.parent);
30189ce48e5aSMichal Kubecek 
30199ce48e5aSMichal Kubecek 	return rc;
30209ce48e5aSMichal Kubecek }
30219ce48e5aSMichal Kubecek 
3022f49deaa6SJakub Kicinski int dev_ethtool(struct net *net, struct ifreq *ifr, void __user *useraddr)
3023f49deaa6SJakub Kicinski {
3024095cfcfeSJakub Kicinski 	struct ethtool_devlink_compat *state;
3025095cfcfeSJakub Kicinski 	u32 ethcmd;
3026f49deaa6SJakub Kicinski 	int rc;
3027f49deaa6SJakub Kicinski 
3028095cfcfeSJakub Kicinski 	if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
3029095cfcfeSJakub Kicinski 		return -EFAULT;
3030f49deaa6SJakub Kicinski 
3031095cfcfeSJakub Kicinski 	state = kzalloc(sizeof(*state), GFP_KERNEL);
3032095cfcfeSJakub Kicinski 	if (!state)
3033095cfcfeSJakub Kicinski 		return -ENOMEM;
3034095cfcfeSJakub Kicinski 
3035095cfcfeSJakub Kicinski 	switch (ethcmd) {
3036095cfcfeSJakub Kicinski 	case ETHTOOL_FLASHDEV:
3037095cfcfeSJakub Kicinski 		if (copy_from_user(&state->efl, useraddr, sizeof(state->efl))) {
3038095cfcfeSJakub Kicinski 			rc = -EFAULT;
3039095cfcfeSJakub Kicinski 			goto exit_free;
3040095cfcfeSJakub Kicinski 		}
3041095cfcfeSJakub Kicinski 		state->efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0;
3042095cfcfeSJakub Kicinski 		break;
3043095cfcfeSJakub Kicinski 	}
3044095cfcfeSJakub Kicinski 
3045095cfcfeSJakub Kicinski 	rtnl_lock();
3046095cfcfeSJakub Kicinski 	rc = __dev_ethtool(net, ifr, useraddr, ethcmd, state);
3047095cfcfeSJakub Kicinski 	rtnl_unlock();
3048095cfcfeSJakub Kicinski 	if (rc)
3049095cfcfeSJakub Kicinski 		goto exit_free;
3050095cfcfeSJakub Kicinski 
3051095cfcfeSJakub Kicinski 	switch (ethcmd) {
30521af0a094SJakub Kicinski 	case ETHTOOL_FLASHDEV:
30531af0a094SJakub Kicinski 		if (state->devlink)
30541af0a094SJakub Kicinski 			rc = devlink_compat_flash_update(state->devlink,
30551af0a094SJakub Kicinski 							 state->efl.data);
30561af0a094SJakub Kicinski 		break;
3057095cfcfeSJakub Kicinski 	case ETHTOOL_GDRVINFO:
30581af0a094SJakub Kicinski 		if (state->devlink)
30591af0a094SJakub Kicinski 			devlink_compat_running_version(state->devlink,
30601af0a094SJakub Kicinski 						       state->info.fw_version,
30611af0a094SJakub Kicinski 						       sizeof(state->info.fw_version));
3062095cfcfeSJakub Kicinski 		if (copy_to_user(useraddr, &state->info, sizeof(state->info))) {
3063095cfcfeSJakub Kicinski 			rc = -EFAULT;
3064095cfcfeSJakub Kicinski 			goto exit_free;
3065095cfcfeSJakub Kicinski 		}
3066095cfcfeSJakub Kicinski 		break;
3067095cfcfeSJakub Kicinski 	}
3068095cfcfeSJakub Kicinski 
3069095cfcfeSJakub Kicinski exit_free:
30701af0a094SJakub Kicinski 	if (state->devlink)
30711af0a094SJakub Kicinski 		devlink_put(state->devlink);
3072095cfcfeSJakub Kicinski 	kfree(state);
3073f49deaa6SJakub Kicinski 	return rc;
3074f49deaa6SJakub Kicinski }
3075f49deaa6SJakub Kicinski 
30769ce48e5aSMichal Kubecek struct ethtool_rx_flow_key {
30779ce48e5aSMichal Kubecek 	struct flow_dissector_key_basic			basic;
30789ce48e5aSMichal Kubecek 	union {
30799ce48e5aSMichal Kubecek 		struct flow_dissector_key_ipv4_addrs	ipv4;
30809ce48e5aSMichal Kubecek 		struct flow_dissector_key_ipv6_addrs	ipv6;
30819ce48e5aSMichal Kubecek 	};
30829ce48e5aSMichal Kubecek 	struct flow_dissector_key_ports			tp;
30839ce48e5aSMichal Kubecek 	struct flow_dissector_key_ip			ip;
30849ce48e5aSMichal Kubecek 	struct flow_dissector_key_vlan			vlan;
30859ce48e5aSMichal Kubecek 	struct flow_dissector_key_eth_addrs		eth_addrs;
30869ce48e5aSMichal Kubecek } __aligned(BITS_PER_LONG / 8); /* Ensure that we can do comparisons as longs. */
30879ce48e5aSMichal Kubecek 
30889ce48e5aSMichal Kubecek struct ethtool_rx_flow_match {
30899ce48e5aSMichal Kubecek 	struct flow_dissector		dissector;
30909ce48e5aSMichal Kubecek 	struct ethtool_rx_flow_key	key;
30919ce48e5aSMichal Kubecek 	struct ethtool_rx_flow_key	mask;
30929ce48e5aSMichal Kubecek };
30939ce48e5aSMichal Kubecek 
30949ce48e5aSMichal Kubecek struct ethtool_rx_flow_rule *
30959ce48e5aSMichal Kubecek ethtool_rx_flow_rule_create(const struct ethtool_rx_flow_spec_input *input)
30969ce48e5aSMichal Kubecek {
30979ce48e5aSMichal Kubecek 	const struct ethtool_rx_flow_spec *fs = input->fs;
30989ce48e5aSMichal Kubecek 	static struct in6_addr zero_addr = {};
30999ce48e5aSMichal Kubecek 	struct ethtool_rx_flow_match *match;
31009ce48e5aSMichal Kubecek 	struct ethtool_rx_flow_rule *flow;
31019ce48e5aSMichal Kubecek 	struct flow_action_entry *act;
31029ce48e5aSMichal Kubecek 
31039ce48e5aSMichal Kubecek 	flow = kzalloc(sizeof(struct ethtool_rx_flow_rule) +
31049ce48e5aSMichal Kubecek 		       sizeof(struct ethtool_rx_flow_match), GFP_KERNEL);
31059ce48e5aSMichal Kubecek 	if (!flow)
31069ce48e5aSMichal Kubecek 		return ERR_PTR(-ENOMEM);
31079ce48e5aSMichal Kubecek 
31089ce48e5aSMichal Kubecek 	/* ethtool_rx supports only one single action per rule. */
31099ce48e5aSMichal Kubecek 	flow->rule = flow_rule_alloc(1);
31109ce48e5aSMichal Kubecek 	if (!flow->rule) {
31119ce48e5aSMichal Kubecek 		kfree(flow);
31129ce48e5aSMichal Kubecek 		return ERR_PTR(-ENOMEM);
31139ce48e5aSMichal Kubecek 	}
31149ce48e5aSMichal Kubecek 
31159ce48e5aSMichal Kubecek 	match = (struct ethtool_rx_flow_match *)flow->priv;
31169ce48e5aSMichal Kubecek 	flow->rule->match.dissector	= &match->dissector;
31179ce48e5aSMichal Kubecek 	flow->rule->match.mask		= &match->mask;
31189ce48e5aSMichal Kubecek 	flow->rule->match.key		= &match->key;
31199ce48e5aSMichal Kubecek 
31209ce48e5aSMichal Kubecek 	match->mask.basic.n_proto = htons(0xffff);
31219ce48e5aSMichal Kubecek 
31229ce48e5aSMichal Kubecek 	switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) {
31239ce48e5aSMichal Kubecek 	case ETHER_FLOW: {
31249ce48e5aSMichal Kubecek 		const struct ethhdr *ether_spec, *ether_m_spec;
31259ce48e5aSMichal Kubecek 
31269ce48e5aSMichal Kubecek 		ether_spec = &fs->h_u.ether_spec;
31279ce48e5aSMichal Kubecek 		ether_m_spec = &fs->m_u.ether_spec;
31289ce48e5aSMichal Kubecek 
31299ce48e5aSMichal Kubecek 		if (!is_zero_ether_addr(ether_m_spec->h_source)) {
31309ce48e5aSMichal Kubecek 			ether_addr_copy(match->key.eth_addrs.src,
31319ce48e5aSMichal Kubecek 					ether_spec->h_source);
31329ce48e5aSMichal Kubecek 			ether_addr_copy(match->mask.eth_addrs.src,
31339ce48e5aSMichal Kubecek 					ether_m_spec->h_source);
31349ce48e5aSMichal Kubecek 		}
31359ce48e5aSMichal Kubecek 		if (!is_zero_ether_addr(ether_m_spec->h_dest)) {
31369ce48e5aSMichal Kubecek 			ether_addr_copy(match->key.eth_addrs.dst,
31379ce48e5aSMichal Kubecek 					ether_spec->h_dest);
31389ce48e5aSMichal Kubecek 			ether_addr_copy(match->mask.eth_addrs.dst,
31399ce48e5aSMichal Kubecek 					ether_m_spec->h_dest);
31409ce48e5aSMichal Kubecek 		}
31419ce48e5aSMichal Kubecek 		if (ether_m_spec->h_proto) {
31429ce48e5aSMichal Kubecek 			match->key.basic.n_proto = ether_spec->h_proto;
31439ce48e5aSMichal Kubecek 			match->mask.basic.n_proto = ether_m_spec->h_proto;
31449ce48e5aSMichal Kubecek 		}
31459ce48e5aSMichal Kubecek 		}
31469ce48e5aSMichal Kubecek 		break;
31479ce48e5aSMichal Kubecek 	case TCP_V4_FLOW:
31489ce48e5aSMichal Kubecek 	case UDP_V4_FLOW: {
31499ce48e5aSMichal Kubecek 		const struct ethtool_tcpip4_spec *v4_spec, *v4_m_spec;
31509ce48e5aSMichal Kubecek 
31519ce48e5aSMichal Kubecek 		match->key.basic.n_proto = htons(ETH_P_IP);
31529ce48e5aSMichal Kubecek 
31539ce48e5aSMichal Kubecek 		v4_spec = &fs->h_u.tcp_ip4_spec;
31549ce48e5aSMichal Kubecek 		v4_m_spec = &fs->m_u.tcp_ip4_spec;
31559ce48e5aSMichal Kubecek 
31569ce48e5aSMichal Kubecek 		if (v4_m_spec->ip4src) {
31579ce48e5aSMichal Kubecek 			match->key.ipv4.src = v4_spec->ip4src;
31589ce48e5aSMichal Kubecek 			match->mask.ipv4.src = v4_m_spec->ip4src;
31599ce48e5aSMichal Kubecek 		}
31609ce48e5aSMichal Kubecek 		if (v4_m_spec->ip4dst) {
31619ce48e5aSMichal Kubecek 			match->key.ipv4.dst = v4_spec->ip4dst;
31629ce48e5aSMichal Kubecek 			match->mask.ipv4.dst = v4_m_spec->ip4dst;
31639ce48e5aSMichal Kubecek 		}
31649ce48e5aSMichal Kubecek 		if (v4_m_spec->ip4src ||
31659ce48e5aSMichal Kubecek 		    v4_m_spec->ip4dst) {
31669ce48e5aSMichal Kubecek 			match->dissector.used_keys |=
31679ce48e5aSMichal Kubecek 				BIT(FLOW_DISSECTOR_KEY_IPV4_ADDRS);
31689ce48e5aSMichal Kubecek 			match->dissector.offset[FLOW_DISSECTOR_KEY_IPV4_ADDRS] =
31699ce48e5aSMichal Kubecek 				offsetof(struct ethtool_rx_flow_key, ipv4);
31709ce48e5aSMichal Kubecek 		}
31719ce48e5aSMichal Kubecek 		if (v4_m_spec->psrc) {
31729ce48e5aSMichal Kubecek 			match->key.tp.src = v4_spec->psrc;
31739ce48e5aSMichal Kubecek 			match->mask.tp.src = v4_m_spec->psrc;
31749ce48e5aSMichal Kubecek 		}
31759ce48e5aSMichal Kubecek 		if (v4_m_spec->pdst) {
31769ce48e5aSMichal Kubecek 			match->key.tp.dst = v4_spec->pdst;
31779ce48e5aSMichal Kubecek 			match->mask.tp.dst = v4_m_spec->pdst;
31789ce48e5aSMichal Kubecek 		}
31799ce48e5aSMichal Kubecek 		if (v4_m_spec->psrc ||
31809ce48e5aSMichal Kubecek 		    v4_m_spec->pdst) {
31819ce48e5aSMichal Kubecek 			match->dissector.used_keys |=
31829ce48e5aSMichal Kubecek 				BIT(FLOW_DISSECTOR_KEY_PORTS);
31839ce48e5aSMichal Kubecek 			match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] =
31849ce48e5aSMichal Kubecek 				offsetof(struct ethtool_rx_flow_key, tp);
31859ce48e5aSMichal Kubecek 		}
31869ce48e5aSMichal Kubecek 		if (v4_m_spec->tos) {
31879ce48e5aSMichal Kubecek 			match->key.ip.tos = v4_spec->tos;
31889ce48e5aSMichal Kubecek 			match->mask.ip.tos = v4_m_spec->tos;
31899ce48e5aSMichal Kubecek 			match->dissector.used_keys |=
31909ce48e5aSMichal Kubecek 				BIT(FLOW_DISSECTOR_KEY_IP);
31919ce48e5aSMichal Kubecek 			match->dissector.offset[FLOW_DISSECTOR_KEY_IP] =
31929ce48e5aSMichal Kubecek 				offsetof(struct ethtool_rx_flow_key, ip);
31939ce48e5aSMichal Kubecek 		}
31949ce48e5aSMichal Kubecek 		}
31959ce48e5aSMichal Kubecek 		break;
31969ce48e5aSMichal Kubecek 	case TCP_V6_FLOW:
31979ce48e5aSMichal Kubecek 	case UDP_V6_FLOW: {
31989ce48e5aSMichal Kubecek 		const struct ethtool_tcpip6_spec *v6_spec, *v6_m_spec;
31999ce48e5aSMichal Kubecek 
32009ce48e5aSMichal Kubecek 		match->key.basic.n_proto = htons(ETH_P_IPV6);
32019ce48e5aSMichal Kubecek 
32029ce48e5aSMichal Kubecek 		v6_spec = &fs->h_u.tcp_ip6_spec;
32039ce48e5aSMichal Kubecek 		v6_m_spec = &fs->m_u.tcp_ip6_spec;
32049ce48e5aSMichal Kubecek 		if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr))) {
32059ce48e5aSMichal Kubecek 			memcpy(&match->key.ipv6.src, v6_spec->ip6src,
32069ce48e5aSMichal Kubecek 			       sizeof(match->key.ipv6.src));
32079ce48e5aSMichal Kubecek 			memcpy(&match->mask.ipv6.src, v6_m_spec->ip6src,
32089ce48e5aSMichal Kubecek 			       sizeof(match->mask.ipv6.src));
32099ce48e5aSMichal Kubecek 		}
32109ce48e5aSMichal Kubecek 		if (memcmp(v6_m_spec->ip6dst, &zero_addr, sizeof(zero_addr))) {
32119ce48e5aSMichal Kubecek 			memcpy(&match->key.ipv6.dst, v6_spec->ip6dst,
32129ce48e5aSMichal Kubecek 			       sizeof(match->key.ipv6.dst));
32139ce48e5aSMichal Kubecek 			memcpy(&match->mask.ipv6.dst, v6_m_spec->ip6dst,
32149ce48e5aSMichal Kubecek 			       sizeof(match->mask.ipv6.dst));
32159ce48e5aSMichal Kubecek 		}
32169ce48e5aSMichal Kubecek 		if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr)) ||
321721a739c6SGaurav Singh 		    memcmp(v6_m_spec->ip6dst, &zero_addr, sizeof(zero_addr))) {
32189ce48e5aSMichal Kubecek 			match->dissector.used_keys |=
32199ce48e5aSMichal Kubecek 				BIT(FLOW_DISSECTOR_KEY_IPV6_ADDRS);
32209ce48e5aSMichal Kubecek 			match->dissector.offset[FLOW_DISSECTOR_KEY_IPV6_ADDRS] =
32219ce48e5aSMichal Kubecek 				offsetof(struct ethtool_rx_flow_key, ipv6);
32229ce48e5aSMichal Kubecek 		}
32239ce48e5aSMichal Kubecek 		if (v6_m_spec->psrc) {
32249ce48e5aSMichal Kubecek 			match->key.tp.src = v6_spec->psrc;
32259ce48e5aSMichal Kubecek 			match->mask.tp.src = v6_m_spec->psrc;
32269ce48e5aSMichal Kubecek 		}
32279ce48e5aSMichal Kubecek 		if (v6_m_spec->pdst) {
32289ce48e5aSMichal Kubecek 			match->key.tp.dst = v6_spec->pdst;
32299ce48e5aSMichal Kubecek 			match->mask.tp.dst = v6_m_spec->pdst;
32309ce48e5aSMichal Kubecek 		}
32319ce48e5aSMichal Kubecek 		if (v6_m_spec->psrc ||
32329ce48e5aSMichal Kubecek 		    v6_m_spec->pdst) {
32339ce48e5aSMichal Kubecek 			match->dissector.used_keys |=
32349ce48e5aSMichal Kubecek 				BIT(FLOW_DISSECTOR_KEY_PORTS);
32359ce48e5aSMichal Kubecek 			match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] =
32369ce48e5aSMichal Kubecek 				offsetof(struct ethtool_rx_flow_key, tp);
32379ce48e5aSMichal Kubecek 		}
32389ce48e5aSMichal Kubecek 		if (v6_m_spec->tclass) {
32399ce48e5aSMichal Kubecek 			match->key.ip.tos = v6_spec->tclass;
32409ce48e5aSMichal Kubecek 			match->mask.ip.tos = v6_m_spec->tclass;
32419ce48e5aSMichal Kubecek 			match->dissector.used_keys |=
32429ce48e5aSMichal Kubecek 				BIT(FLOW_DISSECTOR_KEY_IP);
32439ce48e5aSMichal Kubecek 			match->dissector.offset[FLOW_DISSECTOR_KEY_IP] =
32449ce48e5aSMichal Kubecek 				offsetof(struct ethtool_rx_flow_key, ip);
32459ce48e5aSMichal Kubecek 		}
32469ce48e5aSMichal Kubecek 		}
32479ce48e5aSMichal Kubecek 		break;
32489ce48e5aSMichal Kubecek 	default:
32499ce48e5aSMichal Kubecek 		ethtool_rx_flow_rule_destroy(flow);
32509ce48e5aSMichal Kubecek 		return ERR_PTR(-EINVAL);
32519ce48e5aSMichal Kubecek 	}
32529ce48e5aSMichal Kubecek 
32539ce48e5aSMichal Kubecek 	switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) {
32549ce48e5aSMichal Kubecek 	case TCP_V4_FLOW:
32559ce48e5aSMichal Kubecek 	case TCP_V6_FLOW:
32569ce48e5aSMichal Kubecek 		match->key.basic.ip_proto = IPPROTO_TCP;
3257d0a84e1fSVishal Kulkarni 		match->mask.basic.ip_proto = 0xff;
32589ce48e5aSMichal Kubecek 		break;
32599ce48e5aSMichal Kubecek 	case UDP_V4_FLOW:
32609ce48e5aSMichal Kubecek 	case UDP_V6_FLOW:
32619ce48e5aSMichal Kubecek 		match->key.basic.ip_proto = IPPROTO_UDP;
3262d0a84e1fSVishal Kulkarni 		match->mask.basic.ip_proto = 0xff;
32639ce48e5aSMichal Kubecek 		break;
32649ce48e5aSMichal Kubecek 	}
32659ce48e5aSMichal Kubecek 
32669ce48e5aSMichal Kubecek 	match->dissector.used_keys |= BIT(FLOW_DISSECTOR_KEY_BASIC);
32679ce48e5aSMichal Kubecek 	match->dissector.offset[FLOW_DISSECTOR_KEY_BASIC] =
32689ce48e5aSMichal Kubecek 		offsetof(struct ethtool_rx_flow_key, basic);
32699ce48e5aSMichal Kubecek 
32709ce48e5aSMichal Kubecek 	if (fs->flow_type & FLOW_EXT) {
32719ce48e5aSMichal Kubecek 		const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext;
32729ce48e5aSMichal Kubecek 		const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext;
32739ce48e5aSMichal Kubecek 
32749ce48e5aSMichal Kubecek 		if (ext_m_spec->vlan_etype) {
32759ce48e5aSMichal Kubecek 			match->key.vlan.vlan_tpid = ext_h_spec->vlan_etype;
32769ce48e5aSMichal Kubecek 			match->mask.vlan.vlan_tpid = ext_m_spec->vlan_etype;
32779ce48e5aSMichal Kubecek 		}
32789ce48e5aSMichal Kubecek 
32799ce48e5aSMichal Kubecek 		if (ext_m_spec->vlan_tci) {
32809ce48e5aSMichal Kubecek 			match->key.vlan.vlan_id =
32819ce48e5aSMichal Kubecek 				ntohs(ext_h_spec->vlan_tci) & 0x0fff;
32829ce48e5aSMichal Kubecek 			match->mask.vlan.vlan_id =
32839ce48e5aSMichal Kubecek 				ntohs(ext_m_spec->vlan_tci) & 0x0fff;
32849ce48e5aSMichal Kubecek 
32859ce48e5aSMichal Kubecek 			match->key.vlan.vlan_dei =
32869ce48e5aSMichal Kubecek 				!!(ext_h_spec->vlan_tci & htons(0x1000));
32879ce48e5aSMichal Kubecek 			match->mask.vlan.vlan_dei =
32889ce48e5aSMichal Kubecek 				!!(ext_m_spec->vlan_tci & htons(0x1000));
32899ce48e5aSMichal Kubecek 
32909ce48e5aSMichal Kubecek 			match->key.vlan.vlan_priority =
32919ce48e5aSMichal Kubecek 				(ntohs(ext_h_spec->vlan_tci) & 0xe000) >> 13;
32929ce48e5aSMichal Kubecek 			match->mask.vlan.vlan_priority =
32939ce48e5aSMichal Kubecek 				(ntohs(ext_m_spec->vlan_tci) & 0xe000) >> 13;
32949ce48e5aSMichal Kubecek 		}
32959ce48e5aSMichal Kubecek 
32969ce48e5aSMichal Kubecek 		if (ext_m_spec->vlan_etype ||
32979ce48e5aSMichal Kubecek 		    ext_m_spec->vlan_tci) {
32989ce48e5aSMichal Kubecek 			match->dissector.used_keys |=
32999ce48e5aSMichal Kubecek 				BIT(FLOW_DISSECTOR_KEY_VLAN);
33009ce48e5aSMichal Kubecek 			match->dissector.offset[FLOW_DISSECTOR_KEY_VLAN] =
33019ce48e5aSMichal Kubecek 				offsetof(struct ethtool_rx_flow_key, vlan);
33029ce48e5aSMichal Kubecek 		}
33039ce48e5aSMichal Kubecek 	}
33049ce48e5aSMichal Kubecek 	if (fs->flow_type & FLOW_MAC_EXT) {
33059ce48e5aSMichal Kubecek 		const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext;
33069ce48e5aSMichal Kubecek 		const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext;
33079ce48e5aSMichal Kubecek 
33089ce48e5aSMichal Kubecek 		memcpy(match->key.eth_addrs.dst, ext_h_spec->h_dest,
33099ce48e5aSMichal Kubecek 		       ETH_ALEN);
33109ce48e5aSMichal Kubecek 		memcpy(match->mask.eth_addrs.dst, ext_m_spec->h_dest,
33119ce48e5aSMichal Kubecek 		       ETH_ALEN);
33129ce48e5aSMichal Kubecek 
33139ce48e5aSMichal Kubecek 		match->dissector.used_keys |=
33149ce48e5aSMichal Kubecek 			BIT(FLOW_DISSECTOR_KEY_ETH_ADDRS);
33159ce48e5aSMichal Kubecek 		match->dissector.offset[FLOW_DISSECTOR_KEY_ETH_ADDRS] =
33169ce48e5aSMichal Kubecek 			offsetof(struct ethtool_rx_flow_key, eth_addrs);
33179ce48e5aSMichal Kubecek 	}
33189ce48e5aSMichal Kubecek 
33199ce48e5aSMichal Kubecek 	act = &flow->rule->action.entries[0];
33209ce48e5aSMichal Kubecek 	switch (fs->ring_cookie) {
33219ce48e5aSMichal Kubecek 	case RX_CLS_FLOW_DISC:
33229ce48e5aSMichal Kubecek 		act->id = FLOW_ACTION_DROP;
33239ce48e5aSMichal Kubecek 		break;
33249ce48e5aSMichal Kubecek 	case RX_CLS_FLOW_WAKE:
33259ce48e5aSMichal Kubecek 		act->id = FLOW_ACTION_WAKE;
33269ce48e5aSMichal Kubecek 		break;
33279ce48e5aSMichal Kubecek 	default:
33289ce48e5aSMichal Kubecek 		act->id = FLOW_ACTION_QUEUE;
33299ce48e5aSMichal Kubecek 		if (fs->flow_type & FLOW_RSS)
33309ce48e5aSMichal Kubecek 			act->queue.ctx = input->rss_ctx;
33319ce48e5aSMichal Kubecek 
33329ce48e5aSMichal Kubecek 		act->queue.vf = ethtool_get_flow_spec_ring_vf(fs->ring_cookie);
33339ce48e5aSMichal Kubecek 		act->queue.index = ethtool_get_flow_spec_ring(fs->ring_cookie);
33349ce48e5aSMichal Kubecek 		break;
33359ce48e5aSMichal Kubecek 	}
33369ce48e5aSMichal Kubecek 
33379ce48e5aSMichal Kubecek 	return flow;
33389ce48e5aSMichal Kubecek }
33399ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_rx_flow_rule_create);
33409ce48e5aSMichal Kubecek 
33419ce48e5aSMichal Kubecek void ethtool_rx_flow_rule_destroy(struct ethtool_rx_flow_rule *flow)
33429ce48e5aSMichal Kubecek {
33439ce48e5aSMichal Kubecek 	kfree(flow->rule);
33449ce48e5aSMichal Kubecek 	kfree(flow);
33459ce48e5aSMichal Kubecek }
33469ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_rx_flow_rule_destroy);
3347