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 { 47*8eba37f7SJiri Pirko if (!dev->devlink_port) 481af0a094SJakub Kicinski return NULL; 49*8eba37f7SJiri 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; 7099ce48e5aSMichal Kubecek 710095cfcfeSJakub Kicinski rsp->info.cmd = ETHTOOL_GDRVINFO; 711a71af890SWolfram Sang strscpy(rsp->info.version, UTS_RELEASE, sizeof(rsp->info.version)); 7129ce48e5aSMichal Kubecek if (ops->get_drvinfo) { 713095cfcfeSJakub Kicinski ops->get_drvinfo(dev, &rsp->info); 7149ce48e5aSMichal Kubecek } else if (dev->dev.parent && dev->dev.parent->driver) { 715a71af890SWolfram Sang strscpy(rsp->info.bus_info, dev_name(dev->dev.parent), 716095cfcfeSJakub Kicinski sizeof(rsp->info.bus_info)); 717a71af890SWolfram Sang strscpy(rsp->info.driver, dev->dev.parent->driver->name, 718095cfcfeSJakub Kicinski sizeof(rsp->info.driver)); 719bde3b0fdSTonghao Zhang } else if (dev->rtnl_link_ops) { 720a71af890SWolfram Sang strscpy(rsp->info.driver, dev->rtnl_link_ops->kind, 721bde3b0fdSTonghao Zhang sizeof(rsp->info.driver)); 7229ce48e5aSMichal Kubecek } else { 7239ce48e5aSMichal Kubecek return -EOPNOTSUPP; 7249ce48e5aSMichal Kubecek } 7259ce48e5aSMichal Kubecek 7269ce48e5aSMichal Kubecek /* 7279ce48e5aSMichal Kubecek * this method of obtaining string set info is deprecated; 7289ce48e5aSMichal Kubecek * Use ETHTOOL_GSSET_INFO instead. 7299ce48e5aSMichal Kubecek */ 7309ce48e5aSMichal Kubecek if (ops->get_sset_count) { 7319ce48e5aSMichal Kubecek int rc; 7329ce48e5aSMichal Kubecek 7339ce48e5aSMichal Kubecek rc = ops->get_sset_count(dev, ETH_SS_TEST); 7349ce48e5aSMichal Kubecek if (rc >= 0) 735095cfcfeSJakub Kicinski rsp->info.testinfo_len = rc; 7369ce48e5aSMichal Kubecek rc = ops->get_sset_count(dev, ETH_SS_STATS); 7379ce48e5aSMichal Kubecek if (rc >= 0) 738095cfcfeSJakub Kicinski rsp->info.n_stats = rc; 7399ce48e5aSMichal Kubecek rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS); 7409ce48e5aSMichal Kubecek if (rc >= 0) 741095cfcfeSJakub Kicinski rsp->info.n_priv_flags = rc; 7429ce48e5aSMichal Kubecek } 7439ce48e5aSMichal Kubecek if (ops->get_regs_len) { 7449ce48e5aSMichal Kubecek int ret = ops->get_regs_len(dev); 7459ce48e5aSMichal Kubecek 7469ce48e5aSMichal Kubecek if (ret > 0) 747095cfcfeSJakub Kicinski rsp->info.regdump_len = ret; 7489ce48e5aSMichal Kubecek } 7499ce48e5aSMichal Kubecek 7509ce48e5aSMichal Kubecek if (ops->get_eeprom_len) 751095cfcfeSJakub Kicinski rsp->info.eedump_len = ops->get_eeprom_len(dev); 7529ce48e5aSMichal Kubecek 753095cfcfeSJakub Kicinski if (!rsp->info.fw_version[0]) 7541af0a094SJakub Kicinski rsp->devlink = netdev_to_devlink_get(dev); 7551af0a094SJakub Kicinski 7569ce48e5aSMichal Kubecek return 0; 7579ce48e5aSMichal Kubecek } 7589ce48e5aSMichal Kubecek 7599ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev, 7609ce48e5aSMichal Kubecek void __user *useraddr) 7619ce48e5aSMichal Kubecek { 7629ce48e5aSMichal Kubecek struct ethtool_sset_info info; 7639ce48e5aSMichal Kubecek u64 sset_mask; 7649ce48e5aSMichal Kubecek int i, idx = 0, n_bits = 0, ret, rc; 7659ce48e5aSMichal Kubecek u32 *info_buf = NULL; 7669ce48e5aSMichal Kubecek 7679ce48e5aSMichal Kubecek if (copy_from_user(&info, useraddr, sizeof(info))) 7689ce48e5aSMichal Kubecek return -EFAULT; 7699ce48e5aSMichal Kubecek 7709ce48e5aSMichal Kubecek /* store copy of mask, because we zero struct later on */ 7719ce48e5aSMichal Kubecek sset_mask = info.sset_mask; 7729ce48e5aSMichal Kubecek if (!sset_mask) 7739ce48e5aSMichal Kubecek return 0; 7749ce48e5aSMichal Kubecek 7759ce48e5aSMichal Kubecek /* calculate size of return buffer */ 7769ce48e5aSMichal Kubecek n_bits = hweight64(sset_mask); 7779ce48e5aSMichal Kubecek 7789ce48e5aSMichal Kubecek memset(&info, 0, sizeof(info)); 7799ce48e5aSMichal Kubecek info.cmd = ETHTOOL_GSSET_INFO; 7809ce48e5aSMichal Kubecek 7819ce48e5aSMichal Kubecek info_buf = kcalloc(n_bits, sizeof(u32), GFP_USER); 7829ce48e5aSMichal Kubecek if (!info_buf) 7839ce48e5aSMichal Kubecek return -ENOMEM; 7849ce48e5aSMichal Kubecek 7859ce48e5aSMichal Kubecek /* 7869ce48e5aSMichal Kubecek * fill return buffer based on input bitmask and successful 7879ce48e5aSMichal Kubecek * get_sset_count return 7889ce48e5aSMichal Kubecek */ 7899ce48e5aSMichal Kubecek for (i = 0; i < 64; i++) { 7909ce48e5aSMichal Kubecek if (!(sset_mask & (1ULL << i))) 7919ce48e5aSMichal Kubecek continue; 7929ce48e5aSMichal Kubecek 7939ce48e5aSMichal Kubecek rc = __ethtool_get_sset_count(dev, i); 7949ce48e5aSMichal Kubecek if (rc >= 0) { 7959ce48e5aSMichal Kubecek info.sset_mask |= (1ULL << i); 7969ce48e5aSMichal Kubecek info_buf[idx++] = rc; 7979ce48e5aSMichal Kubecek } 7989ce48e5aSMichal Kubecek } 7999ce48e5aSMichal Kubecek 8009ce48e5aSMichal Kubecek ret = -EFAULT; 8019ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &info, sizeof(info))) 8029ce48e5aSMichal Kubecek goto out; 8039ce48e5aSMichal Kubecek 8049ce48e5aSMichal Kubecek useraddr += offsetof(struct ethtool_sset_info, data); 805ed717613SGustavo A. R. Silva if (copy_to_user(useraddr, info_buf, array_size(idx, sizeof(u32)))) 8069ce48e5aSMichal Kubecek goto out; 8079ce48e5aSMichal Kubecek 8089ce48e5aSMichal Kubecek ret = 0; 8099ce48e5aSMichal Kubecek 8109ce48e5aSMichal Kubecek out: 8119ce48e5aSMichal Kubecek kfree(info_buf); 8129ce48e5aSMichal Kubecek return ret; 8139ce48e5aSMichal Kubecek } 8149ce48e5aSMichal Kubecek 815dd98d289SArnd Bergmann static noinline_for_stack int 816dd98d289SArnd Bergmann ethtool_rxnfc_copy_from_compat(struct ethtool_rxnfc *rxnfc, 817dd98d289SArnd Bergmann const struct compat_ethtool_rxnfc __user *useraddr, 818dd98d289SArnd Bergmann size_t size) 819dd98d289SArnd Bergmann { 820dd98d289SArnd Bergmann struct compat_ethtool_rxnfc crxnfc = {}; 821dd98d289SArnd Bergmann 822dd98d289SArnd Bergmann /* We expect there to be holes between fs.m_ext and 823dd98d289SArnd Bergmann * fs.ring_cookie and at the end of fs, but nowhere else. 824dd98d289SArnd Bergmann * On non-x86, no conversion should be needed. 825dd98d289SArnd Bergmann */ 826dd98d289SArnd Bergmann BUILD_BUG_ON(!IS_ENABLED(CONFIG_X86_64) && 827dd98d289SArnd Bergmann sizeof(struct compat_ethtool_rxnfc) != 828dd98d289SArnd Bergmann sizeof(struct ethtool_rxnfc)); 829dd98d289SArnd Bergmann BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) + 830dd98d289SArnd Bergmann sizeof(useraddr->fs.m_ext) != 831dd98d289SArnd Bergmann offsetof(struct ethtool_rxnfc, fs.m_ext) + 832dd98d289SArnd Bergmann sizeof(rxnfc->fs.m_ext)); 833dd98d289SArnd Bergmann BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.location) - 834dd98d289SArnd Bergmann offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) != 835dd98d289SArnd Bergmann offsetof(struct ethtool_rxnfc, fs.location) - 836dd98d289SArnd Bergmann offsetof(struct ethtool_rxnfc, fs.ring_cookie)); 837dd98d289SArnd Bergmann 838dd98d289SArnd Bergmann if (copy_from_user(&crxnfc, useraddr, min(size, sizeof(crxnfc)))) 839dd98d289SArnd Bergmann return -EFAULT; 840dd98d289SArnd Bergmann 841dd98d289SArnd Bergmann *rxnfc = (struct ethtool_rxnfc) { 842dd98d289SArnd Bergmann .cmd = crxnfc.cmd, 843dd98d289SArnd Bergmann .flow_type = crxnfc.flow_type, 844dd98d289SArnd Bergmann .data = crxnfc.data, 845dd98d289SArnd Bergmann .fs = { 846dd98d289SArnd Bergmann .flow_type = crxnfc.fs.flow_type, 847dd98d289SArnd Bergmann .h_u = crxnfc.fs.h_u, 848dd98d289SArnd Bergmann .h_ext = crxnfc.fs.h_ext, 849dd98d289SArnd Bergmann .m_u = crxnfc.fs.m_u, 850dd98d289SArnd Bergmann .m_ext = crxnfc.fs.m_ext, 851dd98d289SArnd Bergmann .ring_cookie = crxnfc.fs.ring_cookie, 852dd98d289SArnd Bergmann .location = crxnfc.fs.location, 853dd98d289SArnd Bergmann }, 854dd98d289SArnd Bergmann .rule_cnt = crxnfc.rule_cnt, 855dd98d289SArnd Bergmann }; 856dd98d289SArnd Bergmann 857dd98d289SArnd Bergmann return 0; 858dd98d289SArnd Bergmann } 859dd98d289SArnd Bergmann 860dd98d289SArnd Bergmann static int ethtool_rxnfc_copy_from_user(struct ethtool_rxnfc *rxnfc, 861dd98d289SArnd Bergmann const void __user *useraddr, 862dd98d289SArnd Bergmann size_t size) 863dd98d289SArnd Bergmann { 864dd98d289SArnd Bergmann if (compat_need_64bit_alignment_fixup()) 865dd98d289SArnd Bergmann return ethtool_rxnfc_copy_from_compat(rxnfc, useraddr, size); 866dd98d289SArnd Bergmann 867dd98d289SArnd Bergmann if (copy_from_user(rxnfc, useraddr, size)) 868dd98d289SArnd Bergmann return -EFAULT; 869dd98d289SArnd Bergmann 870dd98d289SArnd Bergmann return 0; 871dd98d289SArnd Bergmann } 872dd98d289SArnd Bergmann 873dd98d289SArnd Bergmann static int ethtool_rxnfc_copy_to_compat(void __user *useraddr, 874dd98d289SArnd Bergmann const struct ethtool_rxnfc *rxnfc, 875dd98d289SArnd Bergmann size_t size, const u32 *rule_buf) 876dd98d289SArnd Bergmann { 877dd98d289SArnd Bergmann struct compat_ethtool_rxnfc crxnfc; 878dd98d289SArnd Bergmann 879dd98d289SArnd Bergmann memset(&crxnfc, 0, sizeof(crxnfc)); 880dd98d289SArnd Bergmann crxnfc = (struct compat_ethtool_rxnfc) { 881dd98d289SArnd Bergmann .cmd = rxnfc->cmd, 882dd98d289SArnd Bergmann .flow_type = rxnfc->flow_type, 883dd98d289SArnd Bergmann .data = rxnfc->data, 884dd98d289SArnd Bergmann .fs = { 885dd98d289SArnd Bergmann .flow_type = rxnfc->fs.flow_type, 886dd98d289SArnd Bergmann .h_u = rxnfc->fs.h_u, 887dd98d289SArnd Bergmann .h_ext = rxnfc->fs.h_ext, 888dd98d289SArnd Bergmann .m_u = rxnfc->fs.m_u, 889dd98d289SArnd Bergmann .m_ext = rxnfc->fs.m_ext, 890dd98d289SArnd Bergmann .ring_cookie = rxnfc->fs.ring_cookie, 891dd98d289SArnd Bergmann .location = rxnfc->fs.location, 892dd98d289SArnd Bergmann }, 893dd98d289SArnd Bergmann .rule_cnt = rxnfc->rule_cnt, 894dd98d289SArnd Bergmann }; 895dd98d289SArnd Bergmann 896dd98d289SArnd Bergmann if (copy_to_user(useraddr, &crxnfc, min(size, sizeof(crxnfc)))) 897dd98d289SArnd Bergmann return -EFAULT; 898dd98d289SArnd Bergmann 899dd98d289SArnd Bergmann return 0; 900dd98d289SArnd Bergmann } 901dd98d289SArnd Bergmann 902dd98d289SArnd Bergmann static int ethtool_rxnfc_copy_to_user(void __user *useraddr, 903dd98d289SArnd Bergmann const struct ethtool_rxnfc *rxnfc, 904dd98d289SArnd Bergmann size_t size, const u32 *rule_buf) 905dd98d289SArnd Bergmann { 906dd98d289SArnd Bergmann int ret; 907dd98d289SArnd Bergmann 908dd98d289SArnd Bergmann if (compat_need_64bit_alignment_fixup()) { 909dd98d289SArnd Bergmann ret = ethtool_rxnfc_copy_to_compat(useraddr, rxnfc, size, 910dd98d289SArnd Bergmann rule_buf); 911dd98d289SArnd Bergmann useraddr += offsetof(struct compat_ethtool_rxnfc, rule_locs); 912dd98d289SArnd Bergmann } else { 9139b29a161SSaeed Mahameed ret = copy_to_user(useraddr, rxnfc, size); 914dd98d289SArnd Bergmann useraddr += offsetof(struct ethtool_rxnfc, rule_locs); 915dd98d289SArnd Bergmann } 916dd98d289SArnd Bergmann 917dd98d289SArnd Bergmann if (ret) 918dd98d289SArnd Bergmann return -EFAULT; 919dd98d289SArnd Bergmann 920dd98d289SArnd Bergmann if (rule_buf) { 921dd98d289SArnd Bergmann if (copy_to_user(useraddr, rule_buf, 922dd98d289SArnd Bergmann rxnfc->rule_cnt * sizeof(u32))) 923dd98d289SArnd Bergmann return -EFAULT; 924dd98d289SArnd Bergmann } 925dd98d289SArnd Bergmann 926dd98d289SArnd Bergmann return 0; 927dd98d289SArnd Bergmann } 928dd98d289SArnd Bergmann 9299ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev, 9309ce48e5aSMichal Kubecek u32 cmd, void __user *useraddr) 9319ce48e5aSMichal Kubecek { 9329ce48e5aSMichal Kubecek struct ethtool_rxnfc info; 9339ce48e5aSMichal Kubecek size_t info_size = sizeof(info); 9349ce48e5aSMichal Kubecek int rc; 9359ce48e5aSMichal Kubecek 9369ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_rxnfc) 9379ce48e5aSMichal Kubecek return -EOPNOTSUPP; 9389ce48e5aSMichal Kubecek 9399ce48e5aSMichal Kubecek /* struct ethtool_rxnfc was originally defined for 9409ce48e5aSMichal Kubecek * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data 9419ce48e5aSMichal Kubecek * members. User-space might still be using that 9429ce48e5aSMichal Kubecek * definition. */ 9439ce48e5aSMichal Kubecek if (cmd == ETHTOOL_SRXFH) 9449ce48e5aSMichal Kubecek info_size = (offsetof(struct ethtool_rxnfc, data) + 9459ce48e5aSMichal Kubecek sizeof(info.data)); 9469ce48e5aSMichal Kubecek 947dd98d289SArnd Bergmann if (ethtool_rxnfc_copy_from_user(&info, useraddr, info_size)) 9489ce48e5aSMichal Kubecek return -EFAULT; 9499ce48e5aSMichal Kubecek 9509ce48e5aSMichal Kubecek rc = dev->ethtool_ops->set_rxnfc(dev, &info); 9519ce48e5aSMichal Kubecek if (rc) 9529ce48e5aSMichal Kubecek return rc; 9539ce48e5aSMichal Kubecek 9549ce48e5aSMichal Kubecek if (cmd == ETHTOOL_SRXCLSRLINS && 955dd98d289SArnd Bergmann ethtool_rxnfc_copy_to_user(useraddr, &info, info_size, NULL)) 9569ce48e5aSMichal Kubecek return -EFAULT; 9579ce48e5aSMichal Kubecek 9589ce48e5aSMichal Kubecek return 0; 9599ce48e5aSMichal Kubecek } 9609ce48e5aSMichal Kubecek 9619ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev, 9629ce48e5aSMichal Kubecek u32 cmd, void __user *useraddr) 9639ce48e5aSMichal Kubecek { 9649ce48e5aSMichal Kubecek struct ethtool_rxnfc info; 9659ce48e5aSMichal Kubecek size_t info_size = sizeof(info); 9669ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 9679ce48e5aSMichal Kubecek int ret; 9689ce48e5aSMichal Kubecek void *rule_buf = NULL; 9699ce48e5aSMichal Kubecek 9709ce48e5aSMichal Kubecek if (!ops->get_rxnfc) 9719ce48e5aSMichal Kubecek return -EOPNOTSUPP; 9729ce48e5aSMichal Kubecek 9739ce48e5aSMichal Kubecek /* struct ethtool_rxnfc was originally defined for 9749ce48e5aSMichal Kubecek * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data 9759ce48e5aSMichal Kubecek * members. User-space might still be using that 9769ce48e5aSMichal Kubecek * definition. */ 9779ce48e5aSMichal Kubecek if (cmd == ETHTOOL_GRXFH) 9789ce48e5aSMichal Kubecek info_size = (offsetof(struct ethtool_rxnfc, data) + 9799ce48e5aSMichal Kubecek sizeof(info.data)); 9809ce48e5aSMichal Kubecek 981dd98d289SArnd Bergmann if (ethtool_rxnfc_copy_from_user(&info, useraddr, info_size)) 9829ce48e5aSMichal Kubecek return -EFAULT; 9839ce48e5aSMichal Kubecek 9849ce48e5aSMichal Kubecek /* If FLOW_RSS was requested then user-space must be using the 9859ce48e5aSMichal Kubecek * new definition, as FLOW_RSS is newer. 9869ce48e5aSMichal Kubecek */ 9879ce48e5aSMichal Kubecek if (cmd == ETHTOOL_GRXFH && info.flow_type & FLOW_RSS) { 9889ce48e5aSMichal Kubecek info_size = sizeof(info); 989dd98d289SArnd Bergmann if (ethtool_rxnfc_copy_from_user(&info, useraddr, info_size)) 9909ce48e5aSMichal Kubecek return -EFAULT; 9919ce48e5aSMichal Kubecek /* Since malicious users may modify the original data, 9929ce48e5aSMichal Kubecek * we need to check whether FLOW_RSS is still requested. 9939ce48e5aSMichal Kubecek */ 9949ce48e5aSMichal Kubecek if (!(info.flow_type & FLOW_RSS)) 9959ce48e5aSMichal Kubecek return -EINVAL; 9969ce48e5aSMichal Kubecek } 9979ce48e5aSMichal Kubecek 9989ce48e5aSMichal Kubecek if (info.cmd != cmd) 9999ce48e5aSMichal Kubecek return -EINVAL; 10009ce48e5aSMichal Kubecek 10019ce48e5aSMichal Kubecek if (info.cmd == ETHTOOL_GRXCLSRLALL) { 10029ce48e5aSMichal Kubecek if (info.rule_cnt > 0) { 10039ce48e5aSMichal Kubecek if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32)) 10049ce48e5aSMichal Kubecek rule_buf = kcalloc(info.rule_cnt, sizeof(u32), 10059ce48e5aSMichal Kubecek GFP_USER); 10069ce48e5aSMichal Kubecek if (!rule_buf) 10079ce48e5aSMichal Kubecek return -ENOMEM; 10089ce48e5aSMichal Kubecek } 10099ce48e5aSMichal Kubecek } 10109ce48e5aSMichal Kubecek 10119ce48e5aSMichal Kubecek ret = ops->get_rxnfc(dev, &info, rule_buf); 10129ce48e5aSMichal Kubecek if (ret < 0) 10139ce48e5aSMichal Kubecek goto err_out; 10149ce48e5aSMichal Kubecek 1015dd98d289SArnd Bergmann ret = ethtool_rxnfc_copy_to_user(useraddr, &info, info_size, rule_buf); 10169ce48e5aSMichal Kubecek err_out: 10179ce48e5aSMichal Kubecek kfree(rule_buf); 10189ce48e5aSMichal Kubecek 10199ce48e5aSMichal Kubecek return ret; 10209ce48e5aSMichal Kubecek } 10219ce48e5aSMichal Kubecek 10229ce48e5aSMichal Kubecek static int ethtool_copy_validate_indir(u32 *indir, void __user *useraddr, 10239ce48e5aSMichal Kubecek struct ethtool_rxnfc *rx_rings, 10249ce48e5aSMichal Kubecek u32 size) 10259ce48e5aSMichal Kubecek { 10269ce48e5aSMichal Kubecek int i; 10279ce48e5aSMichal Kubecek 1028ed717613SGustavo A. R. Silva if (copy_from_user(indir, useraddr, array_size(size, sizeof(indir[0])))) 10299ce48e5aSMichal Kubecek return -EFAULT; 10309ce48e5aSMichal Kubecek 10319ce48e5aSMichal Kubecek /* Validate ring indices */ 10329ce48e5aSMichal Kubecek for (i = 0; i < size; i++) 10339ce48e5aSMichal Kubecek if (indir[i] >= rx_rings->data) 10349ce48e5aSMichal Kubecek return -EINVAL; 10359ce48e5aSMichal Kubecek 10369ce48e5aSMichal Kubecek return 0; 10379ce48e5aSMichal Kubecek } 10389ce48e5aSMichal Kubecek 10399ce48e5aSMichal Kubecek u8 netdev_rss_key[NETDEV_RSS_KEY_LEN] __read_mostly; 10409ce48e5aSMichal Kubecek 10419ce48e5aSMichal Kubecek void netdev_rss_key_fill(void *buffer, size_t len) 10429ce48e5aSMichal Kubecek { 10439ce48e5aSMichal Kubecek BUG_ON(len > sizeof(netdev_rss_key)); 10449ce48e5aSMichal Kubecek net_get_random_once(netdev_rss_key, sizeof(netdev_rss_key)); 10459ce48e5aSMichal Kubecek memcpy(buffer, netdev_rss_key, len); 10469ce48e5aSMichal Kubecek } 10479ce48e5aSMichal Kubecek EXPORT_SYMBOL(netdev_rss_key_fill); 10489ce48e5aSMichal Kubecek 10499ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev, 10509ce48e5aSMichal Kubecek void __user *useraddr) 10519ce48e5aSMichal Kubecek { 10529ce48e5aSMichal Kubecek u32 user_size, dev_size; 10539ce48e5aSMichal Kubecek u32 *indir; 10549ce48e5aSMichal Kubecek int ret; 10559ce48e5aSMichal Kubecek 10569ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_rxfh_indir_size || 10579ce48e5aSMichal Kubecek !dev->ethtool_ops->get_rxfh) 10589ce48e5aSMichal Kubecek return -EOPNOTSUPP; 10599ce48e5aSMichal Kubecek dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev); 10609ce48e5aSMichal Kubecek if (dev_size == 0) 10619ce48e5aSMichal Kubecek return -EOPNOTSUPP; 10629ce48e5aSMichal Kubecek 10639ce48e5aSMichal Kubecek if (copy_from_user(&user_size, 10649ce48e5aSMichal Kubecek useraddr + offsetof(struct ethtool_rxfh_indir, size), 10659ce48e5aSMichal Kubecek sizeof(user_size))) 10669ce48e5aSMichal Kubecek return -EFAULT; 10679ce48e5aSMichal Kubecek 10689ce48e5aSMichal Kubecek if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size), 10699ce48e5aSMichal Kubecek &dev_size, sizeof(dev_size))) 10709ce48e5aSMichal Kubecek return -EFAULT; 10719ce48e5aSMichal Kubecek 10729ce48e5aSMichal Kubecek /* If the user buffer size is 0, this is just a query for the 10739ce48e5aSMichal Kubecek * device table size. Otherwise, if it's smaller than the 10749ce48e5aSMichal Kubecek * device table size it's an error. 10759ce48e5aSMichal Kubecek */ 10769ce48e5aSMichal Kubecek if (user_size < dev_size) 10779ce48e5aSMichal Kubecek return user_size == 0 ? 0 : -EINVAL; 10789ce48e5aSMichal Kubecek 10799ce48e5aSMichal Kubecek indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER); 10809ce48e5aSMichal Kubecek if (!indir) 10819ce48e5aSMichal Kubecek return -ENOMEM; 10829ce48e5aSMichal Kubecek 10839ce48e5aSMichal Kubecek ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL); 10849ce48e5aSMichal Kubecek if (ret) 10859ce48e5aSMichal Kubecek goto out; 10869ce48e5aSMichal Kubecek 10879ce48e5aSMichal Kubecek if (copy_to_user(useraddr + 10889ce48e5aSMichal Kubecek offsetof(struct ethtool_rxfh_indir, ring_index[0]), 10899ce48e5aSMichal Kubecek indir, dev_size * sizeof(indir[0]))) 10909ce48e5aSMichal Kubecek ret = -EFAULT; 10919ce48e5aSMichal Kubecek 10929ce48e5aSMichal Kubecek out: 10939ce48e5aSMichal Kubecek kfree(indir); 10949ce48e5aSMichal Kubecek return ret; 10959ce48e5aSMichal Kubecek } 10969ce48e5aSMichal Kubecek 10979ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev, 10989ce48e5aSMichal Kubecek void __user *useraddr) 10999ce48e5aSMichal Kubecek { 11009ce48e5aSMichal Kubecek struct ethtool_rxnfc rx_rings; 11019ce48e5aSMichal Kubecek u32 user_size, dev_size, i; 11029ce48e5aSMichal Kubecek u32 *indir; 11039ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 11049ce48e5aSMichal Kubecek int ret; 11059ce48e5aSMichal Kubecek u32 ringidx_offset = offsetof(struct ethtool_rxfh_indir, ring_index[0]); 11069ce48e5aSMichal Kubecek 11079ce48e5aSMichal Kubecek if (!ops->get_rxfh_indir_size || !ops->set_rxfh || 11089ce48e5aSMichal Kubecek !ops->get_rxnfc) 11099ce48e5aSMichal Kubecek return -EOPNOTSUPP; 11109ce48e5aSMichal Kubecek 11119ce48e5aSMichal Kubecek dev_size = ops->get_rxfh_indir_size(dev); 11129ce48e5aSMichal Kubecek if (dev_size == 0) 11139ce48e5aSMichal Kubecek return -EOPNOTSUPP; 11149ce48e5aSMichal Kubecek 11159ce48e5aSMichal Kubecek if (copy_from_user(&user_size, 11169ce48e5aSMichal Kubecek useraddr + offsetof(struct ethtool_rxfh_indir, size), 11179ce48e5aSMichal Kubecek sizeof(user_size))) 11189ce48e5aSMichal Kubecek return -EFAULT; 11199ce48e5aSMichal Kubecek 11209ce48e5aSMichal Kubecek if (user_size != 0 && user_size != dev_size) 11219ce48e5aSMichal Kubecek return -EINVAL; 11229ce48e5aSMichal Kubecek 11239ce48e5aSMichal Kubecek indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER); 11249ce48e5aSMichal Kubecek if (!indir) 11259ce48e5aSMichal Kubecek return -ENOMEM; 11269ce48e5aSMichal Kubecek 11279ce48e5aSMichal Kubecek rx_rings.cmd = ETHTOOL_GRXRINGS; 11289ce48e5aSMichal Kubecek ret = ops->get_rxnfc(dev, &rx_rings, NULL); 11299ce48e5aSMichal Kubecek if (ret) 11309ce48e5aSMichal Kubecek goto out; 11319ce48e5aSMichal Kubecek 11329ce48e5aSMichal Kubecek if (user_size == 0) { 11339ce48e5aSMichal Kubecek for (i = 0; i < dev_size; i++) 11349ce48e5aSMichal Kubecek indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data); 11359ce48e5aSMichal Kubecek } else { 11369ce48e5aSMichal Kubecek ret = ethtool_copy_validate_indir(indir, 11379ce48e5aSMichal Kubecek useraddr + ringidx_offset, 11389ce48e5aSMichal Kubecek &rx_rings, 11399ce48e5aSMichal Kubecek dev_size); 11409ce48e5aSMichal Kubecek if (ret) 11419ce48e5aSMichal Kubecek goto out; 11429ce48e5aSMichal Kubecek } 11439ce48e5aSMichal Kubecek 11449ce48e5aSMichal Kubecek ret = ops->set_rxfh(dev, indir, NULL, ETH_RSS_HASH_NO_CHANGE); 11459ce48e5aSMichal Kubecek if (ret) 11469ce48e5aSMichal Kubecek goto out; 11479ce48e5aSMichal Kubecek 11489ce48e5aSMichal Kubecek /* indicate whether rxfh was set to default */ 11499ce48e5aSMichal Kubecek if (user_size == 0) 11509ce48e5aSMichal Kubecek dev->priv_flags &= ~IFF_RXFH_CONFIGURED; 11519ce48e5aSMichal Kubecek else 11529ce48e5aSMichal Kubecek dev->priv_flags |= IFF_RXFH_CONFIGURED; 11539ce48e5aSMichal Kubecek 11549ce48e5aSMichal Kubecek out: 11559ce48e5aSMichal Kubecek kfree(indir); 11569ce48e5aSMichal Kubecek return ret; 11579ce48e5aSMichal Kubecek } 11589ce48e5aSMichal Kubecek 11599ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_rxfh(struct net_device *dev, 11609ce48e5aSMichal Kubecek void __user *useraddr) 11619ce48e5aSMichal Kubecek { 11629ce48e5aSMichal Kubecek int ret; 11639ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 11649ce48e5aSMichal Kubecek u32 user_indir_size, user_key_size; 11659ce48e5aSMichal Kubecek u32 dev_indir_size = 0, dev_key_size = 0; 11669ce48e5aSMichal Kubecek struct ethtool_rxfh rxfh; 11679ce48e5aSMichal Kubecek u32 total_size; 11689ce48e5aSMichal Kubecek u32 indir_bytes; 11699ce48e5aSMichal Kubecek u32 *indir = NULL; 11709ce48e5aSMichal Kubecek u8 dev_hfunc = 0; 11719ce48e5aSMichal Kubecek u8 *hkey = NULL; 11729ce48e5aSMichal Kubecek u8 *rss_config; 11739ce48e5aSMichal Kubecek 11749ce48e5aSMichal Kubecek if (!ops->get_rxfh) 11759ce48e5aSMichal Kubecek return -EOPNOTSUPP; 11769ce48e5aSMichal Kubecek 11779ce48e5aSMichal Kubecek if (ops->get_rxfh_indir_size) 11789ce48e5aSMichal Kubecek dev_indir_size = ops->get_rxfh_indir_size(dev); 11799ce48e5aSMichal Kubecek if (ops->get_rxfh_key_size) 11809ce48e5aSMichal Kubecek dev_key_size = ops->get_rxfh_key_size(dev); 11819ce48e5aSMichal Kubecek 11829ce48e5aSMichal Kubecek if (copy_from_user(&rxfh, useraddr, sizeof(rxfh))) 11839ce48e5aSMichal Kubecek return -EFAULT; 11849ce48e5aSMichal Kubecek user_indir_size = rxfh.indir_size; 11859ce48e5aSMichal Kubecek user_key_size = rxfh.key_size; 11869ce48e5aSMichal Kubecek 11879ce48e5aSMichal Kubecek /* Check that reserved fields are 0 for now */ 11889ce48e5aSMichal Kubecek if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32) 11899ce48e5aSMichal Kubecek return -EINVAL; 11909ce48e5aSMichal Kubecek /* Most drivers don't handle rss_context, check it's 0 as well */ 11919ce48e5aSMichal Kubecek if (rxfh.rss_context && !ops->get_rxfh_context) 11929ce48e5aSMichal Kubecek return -EOPNOTSUPP; 11939ce48e5aSMichal Kubecek 11949ce48e5aSMichal Kubecek rxfh.indir_size = dev_indir_size; 11959ce48e5aSMichal Kubecek rxfh.key_size = dev_key_size; 11969ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &rxfh, sizeof(rxfh))) 11979ce48e5aSMichal Kubecek return -EFAULT; 11989ce48e5aSMichal Kubecek 11999ce48e5aSMichal Kubecek if ((user_indir_size && (user_indir_size != dev_indir_size)) || 12009ce48e5aSMichal Kubecek (user_key_size && (user_key_size != dev_key_size))) 12019ce48e5aSMichal Kubecek return -EINVAL; 12029ce48e5aSMichal Kubecek 12039ce48e5aSMichal Kubecek indir_bytes = user_indir_size * sizeof(indir[0]); 12049ce48e5aSMichal Kubecek total_size = indir_bytes + user_key_size; 12059ce48e5aSMichal Kubecek rss_config = kzalloc(total_size, GFP_USER); 12069ce48e5aSMichal Kubecek if (!rss_config) 12079ce48e5aSMichal Kubecek return -ENOMEM; 12089ce48e5aSMichal Kubecek 12099ce48e5aSMichal Kubecek if (user_indir_size) 12109ce48e5aSMichal Kubecek indir = (u32 *)rss_config; 12119ce48e5aSMichal Kubecek 12129ce48e5aSMichal Kubecek if (user_key_size) 12139ce48e5aSMichal Kubecek hkey = rss_config + indir_bytes; 12149ce48e5aSMichal Kubecek 12159ce48e5aSMichal Kubecek if (rxfh.rss_context) 12169ce48e5aSMichal Kubecek ret = dev->ethtool_ops->get_rxfh_context(dev, indir, hkey, 12179ce48e5aSMichal Kubecek &dev_hfunc, 12189ce48e5aSMichal Kubecek rxfh.rss_context); 12199ce48e5aSMichal Kubecek else 12209ce48e5aSMichal Kubecek ret = dev->ethtool_ops->get_rxfh(dev, indir, hkey, &dev_hfunc); 12219ce48e5aSMichal Kubecek if (ret) 12229ce48e5aSMichal Kubecek goto out; 12239ce48e5aSMichal Kubecek 12249ce48e5aSMichal Kubecek if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, hfunc), 12259ce48e5aSMichal Kubecek &dev_hfunc, sizeof(rxfh.hfunc))) { 12269ce48e5aSMichal Kubecek ret = -EFAULT; 12279ce48e5aSMichal Kubecek } else if (copy_to_user(useraddr + 12289ce48e5aSMichal Kubecek offsetof(struct ethtool_rxfh, rss_config[0]), 12299ce48e5aSMichal Kubecek rss_config, total_size)) { 12309ce48e5aSMichal Kubecek ret = -EFAULT; 12319ce48e5aSMichal Kubecek } 12329ce48e5aSMichal Kubecek out: 12339ce48e5aSMichal Kubecek kfree(rss_config); 12349ce48e5aSMichal Kubecek 12359ce48e5aSMichal Kubecek return ret; 12369ce48e5aSMichal Kubecek } 12379ce48e5aSMichal Kubecek 12389ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_rxfh(struct net_device *dev, 12399ce48e5aSMichal Kubecek void __user *useraddr) 12409ce48e5aSMichal Kubecek { 12419ce48e5aSMichal Kubecek int ret; 12429ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 12439ce48e5aSMichal Kubecek struct ethtool_rxnfc rx_rings; 12449ce48e5aSMichal Kubecek struct ethtool_rxfh rxfh; 12459ce48e5aSMichal Kubecek u32 dev_indir_size = 0, dev_key_size = 0, i; 12469ce48e5aSMichal Kubecek u32 *indir = NULL, indir_bytes = 0; 12479ce48e5aSMichal Kubecek u8 *hkey = NULL; 12489ce48e5aSMichal Kubecek u8 *rss_config; 12499ce48e5aSMichal Kubecek u32 rss_cfg_offset = offsetof(struct ethtool_rxfh, rss_config[0]); 12509ce48e5aSMichal Kubecek bool delete = false; 12519ce48e5aSMichal Kubecek 12529ce48e5aSMichal Kubecek if (!ops->get_rxnfc || !ops->set_rxfh) 12539ce48e5aSMichal Kubecek return -EOPNOTSUPP; 12549ce48e5aSMichal Kubecek 12559ce48e5aSMichal Kubecek if (ops->get_rxfh_indir_size) 12569ce48e5aSMichal Kubecek dev_indir_size = ops->get_rxfh_indir_size(dev); 12579ce48e5aSMichal Kubecek if (ops->get_rxfh_key_size) 12589ce48e5aSMichal Kubecek dev_key_size = ops->get_rxfh_key_size(dev); 12599ce48e5aSMichal Kubecek 12609ce48e5aSMichal Kubecek if (copy_from_user(&rxfh, useraddr, sizeof(rxfh))) 12619ce48e5aSMichal Kubecek return -EFAULT; 12629ce48e5aSMichal Kubecek 12639ce48e5aSMichal Kubecek /* Check that reserved fields are 0 for now */ 12649ce48e5aSMichal Kubecek if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32) 12659ce48e5aSMichal Kubecek return -EINVAL; 12669ce48e5aSMichal Kubecek /* Most drivers don't handle rss_context, check it's 0 as well */ 12679ce48e5aSMichal Kubecek if (rxfh.rss_context && !ops->set_rxfh_context) 12689ce48e5aSMichal Kubecek return -EOPNOTSUPP; 12699ce48e5aSMichal Kubecek 12709ce48e5aSMichal Kubecek /* If either indir, hash key or function is valid, proceed further. 12719ce48e5aSMichal Kubecek * Must request at least one change: indir size, hash key or function. 12729ce48e5aSMichal Kubecek */ 12739ce48e5aSMichal Kubecek if ((rxfh.indir_size && 12749ce48e5aSMichal Kubecek rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE && 12759ce48e5aSMichal Kubecek rxfh.indir_size != dev_indir_size) || 12769ce48e5aSMichal Kubecek (rxfh.key_size && (rxfh.key_size != dev_key_size)) || 12779ce48e5aSMichal Kubecek (rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE && 12789ce48e5aSMichal Kubecek rxfh.key_size == 0 && rxfh.hfunc == ETH_RSS_HASH_NO_CHANGE)) 12799ce48e5aSMichal Kubecek return -EINVAL; 12809ce48e5aSMichal Kubecek 12819ce48e5aSMichal Kubecek if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) 12829ce48e5aSMichal Kubecek indir_bytes = dev_indir_size * sizeof(indir[0]); 12839ce48e5aSMichal Kubecek 12849ce48e5aSMichal Kubecek rss_config = kzalloc(indir_bytes + rxfh.key_size, GFP_USER); 12859ce48e5aSMichal Kubecek if (!rss_config) 12869ce48e5aSMichal Kubecek return -ENOMEM; 12879ce48e5aSMichal Kubecek 12889ce48e5aSMichal Kubecek rx_rings.cmd = ETHTOOL_GRXRINGS; 12899ce48e5aSMichal Kubecek ret = ops->get_rxnfc(dev, &rx_rings, NULL); 12909ce48e5aSMichal Kubecek if (ret) 12919ce48e5aSMichal Kubecek goto out; 12929ce48e5aSMichal Kubecek 12939ce48e5aSMichal Kubecek /* rxfh.indir_size == 0 means reset the indir table to default (master 12949ce48e5aSMichal Kubecek * context) or delete the context (other RSS contexts). 12959ce48e5aSMichal Kubecek * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged. 12969ce48e5aSMichal Kubecek */ 12979ce48e5aSMichal Kubecek if (rxfh.indir_size && 12989ce48e5aSMichal Kubecek rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) { 12999ce48e5aSMichal Kubecek indir = (u32 *)rss_config; 13009ce48e5aSMichal Kubecek ret = ethtool_copy_validate_indir(indir, 13019ce48e5aSMichal Kubecek useraddr + rss_cfg_offset, 13029ce48e5aSMichal Kubecek &rx_rings, 13039ce48e5aSMichal Kubecek rxfh.indir_size); 13049ce48e5aSMichal Kubecek if (ret) 13059ce48e5aSMichal Kubecek goto out; 13069ce48e5aSMichal Kubecek } else if (rxfh.indir_size == 0) { 13079ce48e5aSMichal Kubecek if (rxfh.rss_context == 0) { 13089ce48e5aSMichal Kubecek indir = (u32 *)rss_config; 13099ce48e5aSMichal Kubecek for (i = 0; i < dev_indir_size; i++) 13109ce48e5aSMichal Kubecek indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data); 13119ce48e5aSMichal Kubecek } else { 13129ce48e5aSMichal Kubecek delete = true; 13139ce48e5aSMichal Kubecek } 13149ce48e5aSMichal Kubecek } 13159ce48e5aSMichal Kubecek 13169ce48e5aSMichal Kubecek if (rxfh.key_size) { 13179ce48e5aSMichal Kubecek hkey = rss_config + indir_bytes; 13189ce48e5aSMichal Kubecek if (copy_from_user(hkey, 13199ce48e5aSMichal Kubecek useraddr + rss_cfg_offset + indir_bytes, 13209ce48e5aSMichal Kubecek rxfh.key_size)) { 13219ce48e5aSMichal Kubecek ret = -EFAULT; 13229ce48e5aSMichal Kubecek goto out; 13239ce48e5aSMichal Kubecek } 13249ce48e5aSMichal Kubecek } 13259ce48e5aSMichal Kubecek 13269ce48e5aSMichal Kubecek if (rxfh.rss_context) 13279ce48e5aSMichal Kubecek ret = ops->set_rxfh_context(dev, indir, hkey, rxfh.hfunc, 13289ce48e5aSMichal Kubecek &rxfh.rss_context, delete); 13299ce48e5aSMichal Kubecek else 13309ce48e5aSMichal Kubecek ret = ops->set_rxfh(dev, indir, hkey, rxfh.hfunc); 13319ce48e5aSMichal Kubecek if (ret) 13329ce48e5aSMichal Kubecek goto out; 13339ce48e5aSMichal Kubecek 13349ce48e5aSMichal Kubecek if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, rss_context), 13359ce48e5aSMichal Kubecek &rxfh.rss_context, sizeof(rxfh.rss_context))) 13369ce48e5aSMichal Kubecek ret = -EFAULT; 13379ce48e5aSMichal Kubecek 13389ce48e5aSMichal Kubecek if (!rxfh.rss_context) { 13399ce48e5aSMichal Kubecek /* indicate whether rxfh was set to default */ 13409ce48e5aSMichal Kubecek if (rxfh.indir_size == 0) 13419ce48e5aSMichal Kubecek dev->priv_flags &= ~IFF_RXFH_CONFIGURED; 13429ce48e5aSMichal Kubecek else if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) 13439ce48e5aSMichal Kubecek dev->priv_flags |= IFF_RXFH_CONFIGURED; 13449ce48e5aSMichal Kubecek } 13459ce48e5aSMichal Kubecek 13469ce48e5aSMichal Kubecek out: 13479ce48e5aSMichal Kubecek kfree(rss_config); 13489ce48e5aSMichal Kubecek return ret; 13499ce48e5aSMichal Kubecek } 13509ce48e5aSMichal Kubecek 13519ce48e5aSMichal Kubecek static int ethtool_get_regs(struct net_device *dev, char __user *useraddr) 13529ce48e5aSMichal Kubecek { 13539ce48e5aSMichal Kubecek struct ethtool_regs regs; 13549ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 13559ce48e5aSMichal Kubecek void *regbuf; 13569ce48e5aSMichal Kubecek int reglen, ret; 13579ce48e5aSMichal Kubecek 13589ce48e5aSMichal Kubecek if (!ops->get_regs || !ops->get_regs_len) 13599ce48e5aSMichal Kubecek return -EOPNOTSUPP; 13609ce48e5aSMichal Kubecek 13619ce48e5aSMichal Kubecek if (copy_from_user(®s, useraddr, sizeof(regs))) 13629ce48e5aSMichal Kubecek return -EFAULT; 13639ce48e5aSMichal Kubecek 13649ce48e5aSMichal Kubecek reglen = ops->get_regs_len(dev); 13659ce48e5aSMichal Kubecek if (reglen <= 0) 13669ce48e5aSMichal Kubecek return reglen; 13679ce48e5aSMichal Kubecek 13689ce48e5aSMichal Kubecek if (regs.len > reglen) 13699ce48e5aSMichal Kubecek regs.len = reglen; 13709ce48e5aSMichal Kubecek 13719ce48e5aSMichal Kubecek regbuf = vzalloc(reglen); 13729ce48e5aSMichal Kubecek if (!regbuf) 13739ce48e5aSMichal Kubecek return -ENOMEM; 13749ce48e5aSMichal Kubecek 13759ce48e5aSMichal Kubecek if (regs.len < reglen) 13769ce48e5aSMichal Kubecek reglen = regs.len; 13779ce48e5aSMichal Kubecek 13789ce48e5aSMichal Kubecek ops->get_regs(dev, ®s, regbuf); 13799ce48e5aSMichal Kubecek 13809ce48e5aSMichal Kubecek ret = -EFAULT; 13819ce48e5aSMichal Kubecek if (copy_to_user(useraddr, ®s, sizeof(regs))) 13829ce48e5aSMichal Kubecek goto out; 13839ce48e5aSMichal Kubecek useraddr += offsetof(struct ethtool_regs, data); 13849ce48e5aSMichal Kubecek if (copy_to_user(useraddr, regbuf, reglen)) 13859ce48e5aSMichal Kubecek goto out; 13869ce48e5aSMichal Kubecek ret = 0; 13879ce48e5aSMichal Kubecek 13889ce48e5aSMichal Kubecek out: 13899ce48e5aSMichal Kubecek vfree(regbuf); 13909ce48e5aSMichal Kubecek return ret; 13919ce48e5aSMichal Kubecek } 13929ce48e5aSMichal Kubecek 13939ce48e5aSMichal Kubecek static int ethtool_reset(struct net_device *dev, char __user *useraddr) 13949ce48e5aSMichal Kubecek { 13959ce48e5aSMichal Kubecek struct ethtool_value reset; 13969ce48e5aSMichal Kubecek int ret; 13979ce48e5aSMichal Kubecek 13989ce48e5aSMichal Kubecek if (!dev->ethtool_ops->reset) 13999ce48e5aSMichal Kubecek return -EOPNOTSUPP; 14009ce48e5aSMichal Kubecek 14019ce48e5aSMichal Kubecek if (copy_from_user(&reset, useraddr, sizeof(reset))) 14029ce48e5aSMichal Kubecek return -EFAULT; 14039ce48e5aSMichal Kubecek 14049ce48e5aSMichal Kubecek ret = dev->ethtool_ops->reset(dev, &reset.data); 14059ce48e5aSMichal Kubecek if (ret) 14069ce48e5aSMichal Kubecek return ret; 14079ce48e5aSMichal Kubecek 14089ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &reset, sizeof(reset))) 14099ce48e5aSMichal Kubecek return -EFAULT; 14109ce48e5aSMichal Kubecek return 0; 14119ce48e5aSMichal Kubecek } 14129ce48e5aSMichal Kubecek 14139ce48e5aSMichal Kubecek static int ethtool_get_wol(struct net_device *dev, char __user *useraddr) 14149ce48e5aSMichal Kubecek { 14159ce48e5aSMichal Kubecek struct ethtool_wolinfo wol; 14169ce48e5aSMichal Kubecek 14179ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_wol) 14189ce48e5aSMichal Kubecek return -EOPNOTSUPP; 14199ce48e5aSMichal Kubecek 14209ce48e5aSMichal Kubecek memset(&wol, 0, sizeof(struct ethtool_wolinfo)); 14219ce48e5aSMichal Kubecek wol.cmd = ETHTOOL_GWOL; 14229ce48e5aSMichal Kubecek dev->ethtool_ops->get_wol(dev, &wol); 14239ce48e5aSMichal Kubecek 14249ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &wol, sizeof(wol))) 14259ce48e5aSMichal Kubecek return -EFAULT; 14269ce48e5aSMichal Kubecek return 0; 14279ce48e5aSMichal Kubecek } 14289ce48e5aSMichal Kubecek 14299ce48e5aSMichal Kubecek static int ethtool_set_wol(struct net_device *dev, char __user *useraddr) 14309ce48e5aSMichal Kubecek { 14319ce48e5aSMichal Kubecek struct ethtool_wolinfo wol; 14329ce48e5aSMichal Kubecek int ret; 14339ce48e5aSMichal Kubecek 14349ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_wol) 14359ce48e5aSMichal Kubecek return -EOPNOTSUPP; 14369ce48e5aSMichal Kubecek 14379ce48e5aSMichal Kubecek if (copy_from_user(&wol, useraddr, sizeof(wol))) 14389ce48e5aSMichal Kubecek return -EFAULT; 14399ce48e5aSMichal Kubecek 14409ce48e5aSMichal Kubecek ret = dev->ethtool_ops->set_wol(dev, &wol); 14419ce48e5aSMichal Kubecek if (ret) 14429ce48e5aSMichal Kubecek return ret; 14439ce48e5aSMichal Kubecek 14449ce48e5aSMichal Kubecek dev->wol_enabled = !!wol.wolopts; 144567bffa79SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_WOL_NTF, NULL); 14469ce48e5aSMichal Kubecek 14479ce48e5aSMichal Kubecek return 0; 14489ce48e5aSMichal Kubecek } 14499ce48e5aSMichal Kubecek 14509ce48e5aSMichal Kubecek static int ethtool_get_eee(struct net_device *dev, char __user *useraddr) 14519ce48e5aSMichal Kubecek { 14529ce48e5aSMichal Kubecek struct ethtool_eee edata; 14539ce48e5aSMichal Kubecek int rc; 14549ce48e5aSMichal Kubecek 14559ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_eee) 14569ce48e5aSMichal Kubecek return -EOPNOTSUPP; 14579ce48e5aSMichal Kubecek 14589ce48e5aSMichal Kubecek memset(&edata, 0, sizeof(struct ethtool_eee)); 14599ce48e5aSMichal Kubecek edata.cmd = ETHTOOL_GEEE; 14609ce48e5aSMichal Kubecek rc = dev->ethtool_ops->get_eee(dev, &edata); 14619ce48e5aSMichal Kubecek 14629ce48e5aSMichal Kubecek if (rc) 14639ce48e5aSMichal Kubecek return rc; 14649ce48e5aSMichal Kubecek 14659ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &edata, sizeof(edata))) 14669ce48e5aSMichal Kubecek return -EFAULT; 14679ce48e5aSMichal Kubecek 14689ce48e5aSMichal Kubecek return 0; 14699ce48e5aSMichal Kubecek } 14709ce48e5aSMichal Kubecek 14719ce48e5aSMichal Kubecek static int ethtool_set_eee(struct net_device *dev, char __user *useraddr) 14729ce48e5aSMichal Kubecek { 14739ce48e5aSMichal Kubecek struct ethtool_eee edata; 14746c5bc8feSMichal Kubecek int ret; 14759ce48e5aSMichal Kubecek 14769ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_eee) 14779ce48e5aSMichal Kubecek return -EOPNOTSUPP; 14789ce48e5aSMichal Kubecek 14799ce48e5aSMichal Kubecek if (copy_from_user(&edata, useraddr, sizeof(edata))) 14809ce48e5aSMichal Kubecek return -EFAULT; 14819ce48e5aSMichal Kubecek 14826c5bc8feSMichal Kubecek ret = dev->ethtool_ops->set_eee(dev, &edata); 14836c5bc8feSMichal Kubecek if (!ret) 14846c5bc8feSMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_EEE_NTF, NULL); 14856c5bc8feSMichal Kubecek return ret; 14869ce48e5aSMichal Kubecek } 14879ce48e5aSMichal Kubecek 14889ce48e5aSMichal Kubecek static int ethtool_nway_reset(struct net_device *dev) 14899ce48e5aSMichal Kubecek { 14909ce48e5aSMichal Kubecek if (!dev->ethtool_ops->nway_reset) 14919ce48e5aSMichal Kubecek return -EOPNOTSUPP; 14929ce48e5aSMichal Kubecek 14939ce48e5aSMichal Kubecek return dev->ethtool_ops->nway_reset(dev); 14949ce48e5aSMichal Kubecek } 14959ce48e5aSMichal Kubecek 14969ce48e5aSMichal Kubecek static int ethtool_get_link(struct net_device *dev, char __user *useraddr) 14979ce48e5aSMichal Kubecek { 14989ce48e5aSMichal Kubecek struct ethtool_value edata = { .cmd = ETHTOOL_GLINK }; 14993d2b847fSMichal Kubecek int link = __ethtool_get_link(dev); 15009ce48e5aSMichal Kubecek 15013d2b847fSMichal Kubecek if (link < 0) 15023d2b847fSMichal Kubecek return link; 15039ce48e5aSMichal Kubecek 15043d2b847fSMichal Kubecek edata.data = link; 15059ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &edata, sizeof(edata))) 15069ce48e5aSMichal Kubecek return -EFAULT; 15079ce48e5aSMichal Kubecek return 0; 15089ce48e5aSMichal Kubecek } 15099ce48e5aSMichal Kubecek 15109ce48e5aSMichal Kubecek static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr, 15119ce48e5aSMichal Kubecek int (*getter)(struct net_device *, 15129ce48e5aSMichal Kubecek struct ethtool_eeprom *, u8 *), 15139ce48e5aSMichal Kubecek u32 total_len) 15149ce48e5aSMichal Kubecek { 15159ce48e5aSMichal Kubecek struct ethtool_eeprom eeprom; 15169ce48e5aSMichal Kubecek void __user *userbuf = useraddr + sizeof(eeprom); 15179ce48e5aSMichal Kubecek u32 bytes_remaining; 15189ce48e5aSMichal Kubecek u8 *data; 15199ce48e5aSMichal Kubecek int ret = 0; 15209ce48e5aSMichal Kubecek 15219ce48e5aSMichal Kubecek if (copy_from_user(&eeprom, useraddr, sizeof(eeprom))) 15229ce48e5aSMichal Kubecek return -EFAULT; 15239ce48e5aSMichal Kubecek 15249ce48e5aSMichal Kubecek /* Check for wrap and zero */ 15259ce48e5aSMichal Kubecek if (eeprom.offset + eeprom.len <= eeprom.offset) 15269ce48e5aSMichal Kubecek return -EINVAL; 15279ce48e5aSMichal Kubecek 15289ce48e5aSMichal Kubecek /* Check for exceeding total eeprom len */ 15299ce48e5aSMichal Kubecek if (eeprom.offset + eeprom.len > total_len) 15309ce48e5aSMichal Kubecek return -EINVAL; 15319ce48e5aSMichal Kubecek 153280ec82e3SAustin Kim data = kzalloc(PAGE_SIZE, GFP_USER); 15339ce48e5aSMichal Kubecek if (!data) 15349ce48e5aSMichal Kubecek return -ENOMEM; 15359ce48e5aSMichal Kubecek 15369ce48e5aSMichal Kubecek bytes_remaining = eeprom.len; 15379ce48e5aSMichal Kubecek while (bytes_remaining > 0) { 15389ce48e5aSMichal Kubecek eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); 15399ce48e5aSMichal Kubecek 15409ce48e5aSMichal Kubecek ret = getter(dev, &eeprom, data); 15419ce48e5aSMichal Kubecek if (ret) 15429ce48e5aSMichal Kubecek break; 1543b9bbc4c1SHeiner Kallweit if (!eeprom.len) { 1544b9bbc4c1SHeiner Kallweit ret = -EIO; 1545b9bbc4c1SHeiner Kallweit break; 1546b9bbc4c1SHeiner Kallweit } 15479ce48e5aSMichal Kubecek if (copy_to_user(userbuf, data, eeprom.len)) { 15489ce48e5aSMichal Kubecek ret = -EFAULT; 15499ce48e5aSMichal Kubecek break; 15509ce48e5aSMichal Kubecek } 15519ce48e5aSMichal Kubecek userbuf += eeprom.len; 15529ce48e5aSMichal Kubecek eeprom.offset += eeprom.len; 15539ce48e5aSMichal Kubecek bytes_remaining -= eeprom.len; 15549ce48e5aSMichal Kubecek } 15559ce48e5aSMichal Kubecek 15569ce48e5aSMichal Kubecek eeprom.len = userbuf - (useraddr + sizeof(eeprom)); 15579ce48e5aSMichal Kubecek eeprom.offset -= eeprom.len; 15589ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &eeprom, sizeof(eeprom))) 15599ce48e5aSMichal Kubecek ret = -EFAULT; 15609ce48e5aSMichal Kubecek 15619ce48e5aSMichal Kubecek kfree(data); 15629ce48e5aSMichal Kubecek return ret; 15639ce48e5aSMichal Kubecek } 15649ce48e5aSMichal Kubecek 15659ce48e5aSMichal Kubecek static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr) 15669ce48e5aSMichal Kubecek { 15679ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 15689ce48e5aSMichal Kubecek 15699ce48e5aSMichal Kubecek if (!ops->get_eeprom || !ops->get_eeprom_len || 15709ce48e5aSMichal Kubecek !ops->get_eeprom_len(dev)) 15719ce48e5aSMichal Kubecek return -EOPNOTSUPP; 15729ce48e5aSMichal Kubecek 15739ce48e5aSMichal Kubecek return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom, 15749ce48e5aSMichal Kubecek ops->get_eeprom_len(dev)); 15759ce48e5aSMichal Kubecek } 15769ce48e5aSMichal Kubecek 15779ce48e5aSMichal Kubecek static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr) 15789ce48e5aSMichal Kubecek { 15799ce48e5aSMichal Kubecek struct ethtool_eeprom eeprom; 15809ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 15819ce48e5aSMichal Kubecek void __user *userbuf = useraddr + sizeof(eeprom); 15829ce48e5aSMichal Kubecek u32 bytes_remaining; 15839ce48e5aSMichal Kubecek u8 *data; 15849ce48e5aSMichal Kubecek int ret = 0; 15859ce48e5aSMichal Kubecek 15869ce48e5aSMichal Kubecek if (!ops->set_eeprom || !ops->get_eeprom_len || 15879ce48e5aSMichal Kubecek !ops->get_eeprom_len(dev)) 15889ce48e5aSMichal Kubecek return -EOPNOTSUPP; 15899ce48e5aSMichal Kubecek 15909ce48e5aSMichal Kubecek if (copy_from_user(&eeprom, useraddr, sizeof(eeprom))) 15919ce48e5aSMichal Kubecek return -EFAULT; 15929ce48e5aSMichal Kubecek 15939ce48e5aSMichal Kubecek /* Check for wrap and zero */ 15949ce48e5aSMichal Kubecek if (eeprom.offset + eeprom.len <= eeprom.offset) 15959ce48e5aSMichal Kubecek return -EINVAL; 15969ce48e5aSMichal Kubecek 15979ce48e5aSMichal Kubecek /* Check for exceeding total eeprom len */ 15989ce48e5aSMichal Kubecek if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev)) 15999ce48e5aSMichal Kubecek return -EINVAL; 16009ce48e5aSMichal Kubecek 160180ec82e3SAustin Kim data = kzalloc(PAGE_SIZE, GFP_USER); 16029ce48e5aSMichal Kubecek if (!data) 16039ce48e5aSMichal Kubecek return -ENOMEM; 16049ce48e5aSMichal Kubecek 16059ce48e5aSMichal Kubecek bytes_remaining = eeprom.len; 16069ce48e5aSMichal Kubecek while (bytes_remaining > 0) { 16079ce48e5aSMichal Kubecek eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); 16089ce48e5aSMichal Kubecek 16099ce48e5aSMichal Kubecek if (copy_from_user(data, userbuf, eeprom.len)) { 16109ce48e5aSMichal Kubecek ret = -EFAULT; 16119ce48e5aSMichal Kubecek break; 16129ce48e5aSMichal Kubecek } 16139ce48e5aSMichal Kubecek ret = ops->set_eeprom(dev, &eeprom, data); 16149ce48e5aSMichal Kubecek if (ret) 16159ce48e5aSMichal Kubecek break; 16169ce48e5aSMichal Kubecek userbuf += eeprom.len; 16179ce48e5aSMichal Kubecek eeprom.offset += eeprom.len; 16189ce48e5aSMichal Kubecek bytes_remaining -= eeprom.len; 16199ce48e5aSMichal Kubecek } 16209ce48e5aSMichal Kubecek 16219ce48e5aSMichal Kubecek kfree(data); 16229ce48e5aSMichal Kubecek return ret; 16239ce48e5aSMichal Kubecek } 16249ce48e5aSMichal Kubecek 16259ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev, 16269ce48e5aSMichal Kubecek void __user *useraddr) 16279ce48e5aSMichal Kubecek { 16289ce48e5aSMichal Kubecek struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE }; 1629f3ccfda1SYufeng Mo struct kernel_ethtool_coalesce kernel_coalesce = {}; 163031610711SHeiner Kallweit int ret; 16319ce48e5aSMichal Kubecek 16329ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_coalesce) 16339ce48e5aSMichal Kubecek return -EOPNOTSUPP; 16349ce48e5aSMichal Kubecek 1635f3ccfda1SYufeng Mo ret = dev->ethtool_ops->get_coalesce(dev, &coalesce, &kernel_coalesce, 1636f3ccfda1SYufeng Mo NULL); 163731610711SHeiner Kallweit if (ret) 163831610711SHeiner Kallweit return ret; 16399ce48e5aSMichal Kubecek 16409ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &coalesce, sizeof(coalesce))) 16419ce48e5aSMichal Kubecek return -EFAULT; 16429ce48e5aSMichal Kubecek return 0; 16439ce48e5aSMichal Kubecek } 16449ce48e5aSMichal Kubecek 164595cddcb5SJakub Kicinski static bool 164695cddcb5SJakub Kicinski ethtool_set_coalesce_supported(struct net_device *dev, 164795cddcb5SJakub Kicinski struct ethtool_coalesce *coalesce) 164895cddcb5SJakub Kicinski { 164995cddcb5SJakub Kicinski u32 supported_params = dev->ethtool_ops->supported_coalesce_params; 165095cddcb5SJakub Kicinski u32 nonzero_params = 0; 165195cddcb5SJakub Kicinski 165295cddcb5SJakub Kicinski if (coalesce->rx_coalesce_usecs) 165395cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_USECS; 165495cddcb5SJakub Kicinski if (coalesce->rx_max_coalesced_frames) 165595cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES; 165695cddcb5SJakub Kicinski if (coalesce->rx_coalesce_usecs_irq) 165795cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_USECS_IRQ; 165895cddcb5SJakub Kicinski if (coalesce->rx_max_coalesced_frames_irq) 165995cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_IRQ; 166095cddcb5SJakub Kicinski if (coalesce->tx_coalesce_usecs) 166195cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_USECS; 166295cddcb5SJakub Kicinski if (coalesce->tx_max_coalesced_frames) 166395cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES; 166495cddcb5SJakub Kicinski if (coalesce->tx_coalesce_usecs_irq) 166595cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_USECS_IRQ; 166695cddcb5SJakub Kicinski if (coalesce->tx_max_coalesced_frames_irq) 166795cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_IRQ; 166895cddcb5SJakub Kicinski if (coalesce->stats_block_coalesce_usecs) 166995cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_STATS_BLOCK_USECS; 167095cddcb5SJakub Kicinski if (coalesce->use_adaptive_rx_coalesce) 167195cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_USE_ADAPTIVE_RX; 167295cddcb5SJakub Kicinski if (coalesce->use_adaptive_tx_coalesce) 167395cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_USE_ADAPTIVE_TX; 167495cddcb5SJakub Kicinski if (coalesce->pkt_rate_low) 167595cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_PKT_RATE_LOW; 167695cddcb5SJakub Kicinski if (coalesce->rx_coalesce_usecs_low) 167795cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_USECS_LOW; 167895cddcb5SJakub Kicinski if (coalesce->rx_max_coalesced_frames_low) 167995cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_LOW; 168095cddcb5SJakub Kicinski if (coalesce->tx_coalesce_usecs_low) 168195cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_USECS_LOW; 168295cddcb5SJakub Kicinski if (coalesce->tx_max_coalesced_frames_low) 168395cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_LOW; 168495cddcb5SJakub Kicinski if (coalesce->pkt_rate_high) 168595cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_PKT_RATE_HIGH; 168695cddcb5SJakub Kicinski if (coalesce->rx_coalesce_usecs_high) 168795cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_USECS_HIGH; 168895cddcb5SJakub Kicinski if (coalesce->rx_max_coalesced_frames_high) 168995cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_HIGH; 169095cddcb5SJakub Kicinski if (coalesce->tx_coalesce_usecs_high) 169195cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_USECS_HIGH; 169295cddcb5SJakub Kicinski if (coalesce->tx_max_coalesced_frames_high) 169395cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_HIGH; 169495cddcb5SJakub Kicinski if (coalesce->rate_sample_interval) 169595cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RATE_SAMPLE_INTERVAL; 169695cddcb5SJakub Kicinski 169795cddcb5SJakub Kicinski return (supported_params & nonzero_params) == nonzero_params; 169895cddcb5SJakub Kicinski } 169995cddcb5SJakub Kicinski 17009ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev, 17019ce48e5aSMichal Kubecek void __user *useraddr) 17029ce48e5aSMichal Kubecek { 1703f3ccfda1SYufeng Mo struct kernel_ethtool_coalesce kernel_coalesce = {}; 17049ce48e5aSMichal Kubecek struct ethtool_coalesce coalesce; 17050cf3eac8SMichal Kubecek int ret; 17069ce48e5aSMichal Kubecek 17070276af21SJulian Wiedmann if (!dev->ethtool_ops->set_coalesce || !dev->ethtool_ops->get_coalesce) 17089ce48e5aSMichal Kubecek return -EOPNOTSUPP; 17099ce48e5aSMichal Kubecek 1710f3ccfda1SYufeng Mo ret = dev->ethtool_ops->get_coalesce(dev, &coalesce, &kernel_coalesce, 1711f3ccfda1SYufeng Mo NULL); 1712f3ccfda1SYufeng Mo if (ret) 1713f3ccfda1SYufeng Mo return ret; 1714f3ccfda1SYufeng Mo 17159ce48e5aSMichal Kubecek if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) 17169ce48e5aSMichal Kubecek return -EFAULT; 17179ce48e5aSMichal Kubecek 171895cddcb5SJakub Kicinski if (!ethtool_set_coalesce_supported(dev, &coalesce)) 171995cddcb5SJakub Kicinski return -EOPNOTSUPP; 172095cddcb5SJakub Kicinski 1721f3ccfda1SYufeng Mo ret = dev->ethtool_ops->set_coalesce(dev, &coalesce, &kernel_coalesce, 1722f3ccfda1SYufeng Mo NULL); 17230cf3eac8SMichal Kubecek if (!ret) 17240cf3eac8SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_COALESCE_NTF, NULL); 17250cf3eac8SMichal Kubecek return ret; 17269ce48e5aSMichal Kubecek } 17279ce48e5aSMichal Kubecek 17289ce48e5aSMichal Kubecek static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr) 17299ce48e5aSMichal Kubecek { 17309ce48e5aSMichal Kubecek struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM }; 173174624944SHao Chen struct kernel_ethtool_ringparam kernel_ringparam = {}; 17329ce48e5aSMichal Kubecek 17339ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_ringparam) 17349ce48e5aSMichal Kubecek return -EOPNOTSUPP; 17359ce48e5aSMichal Kubecek 173674624944SHao Chen dev->ethtool_ops->get_ringparam(dev, &ringparam, 173774624944SHao Chen &kernel_ringparam, NULL); 17389ce48e5aSMichal Kubecek 17399ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &ringparam, sizeof(ringparam))) 17409ce48e5aSMichal Kubecek return -EFAULT; 17419ce48e5aSMichal Kubecek return 0; 17429ce48e5aSMichal Kubecek } 17439ce48e5aSMichal Kubecek 17449ce48e5aSMichal Kubecek static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr) 17459ce48e5aSMichal Kubecek { 17469ce48e5aSMichal Kubecek struct ethtool_ringparam ringparam, max = { .cmd = ETHTOOL_GRINGPARAM }; 174774624944SHao Chen struct kernel_ethtool_ringparam kernel_ringparam; 1748bc9d1c99SMichal Kubecek int ret; 17499ce48e5aSMichal Kubecek 17509ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_ringparam || !dev->ethtool_ops->get_ringparam) 17519ce48e5aSMichal Kubecek return -EOPNOTSUPP; 17529ce48e5aSMichal Kubecek 17539ce48e5aSMichal Kubecek if (copy_from_user(&ringparam, useraddr, sizeof(ringparam))) 17549ce48e5aSMichal Kubecek return -EFAULT; 17559ce48e5aSMichal Kubecek 175674624944SHao Chen dev->ethtool_ops->get_ringparam(dev, &max, &kernel_ringparam, NULL); 17579ce48e5aSMichal Kubecek 17589ce48e5aSMichal Kubecek /* ensure new ring parameters are within the maximums */ 17599ce48e5aSMichal Kubecek if (ringparam.rx_pending > max.rx_max_pending || 17609ce48e5aSMichal Kubecek ringparam.rx_mini_pending > max.rx_mini_max_pending || 17619ce48e5aSMichal Kubecek ringparam.rx_jumbo_pending > max.rx_jumbo_max_pending || 17629ce48e5aSMichal Kubecek ringparam.tx_pending > max.tx_max_pending) 17639ce48e5aSMichal Kubecek return -EINVAL; 17649ce48e5aSMichal Kubecek 176574624944SHao Chen ret = dev->ethtool_ops->set_ringparam(dev, &ringparam, 176674624944SHao Chen &kernel_ringparam, NULL); 1767bc9d1c99SMichal Kubecek if (!ret) 1768bc9d1c99SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_RINGS_NTF, NULL); 1769bc9d1c99SMichal Kubecek return ret; 17709ce48e5aSMichal Kubecek } 17719ce48e5aSMichal Kubecek 17729ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_channels(struct net_device *dev, 17739ce48e5aSMichal Kubecek void __user *useraddr) 17749ce48e5aSMichal Kubecek { 17759ce48e5aSMichal Kubecek struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS }; 17769ce48e5aSMichal Kubecek 17779ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_channels) 17789ce48e5aSMichal Kubecek return -EOPNOTSUPP; 17799ce48e5aSMichal Kubecek 17809ce48e5aSMichal Kubecek dev->ethtool_ops->get_channels(dev, &channels); 17819ce48e5aSMichal Kubecek 17829ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &channels, sizeof(channels))) 17839ce48e5aSMichal Kubecek return -EFAULT; 17849ce48e5aSMichal Kubecek return 0; 17859ce48e5aSMichal Kubecek } 17869ce48e5aSMichal Kubecek 17879ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_channels(struct net_device *dev, 17889ce48e5aSMichal Kubecek void __user *useraddr) 17899ce48e5aSMichal Kubecek { 17909ce48e5aSMichal Kubecek struct ethtool_channels channels, curr = { .cmd = ETHTOOL_GCHANNELS }; 17919ce48e5aSMichal Kubecek u16 from_channel, to_channel; 17929ce48e5aSMichal Kubecek u32 max_rx_in_use = 0; 17939ce48e5aSMichal Kubecek unsigned int i; 1794546379b9SMichal Kubecek int ret; 17959ce48e5aSMichal Kubecek 17969ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_channels || !dev->ethtool_ops->get_channels) 17979ce48e5aSMichal Kubecek return -EOPNOTSUPP; 17989ce48e5aSMichal Kubecek 17999ce48e5aSMichal Kubecek if (copy_from_user(&channels, useraddr, sizeof(channels))) 18009ce48e5aSMichal Kubecek return -EFAULT; 18019ce48e5aSMichal Kubecek 18029ce48e5aSMichal Kubecek dev->ethtool_ops->get_channels(dev, &curr); 18039ce48e5aSMichal Kubecek 180475c36dbbSJakub Kicinski if (channels.rx_count == curr.rx_count && 180575c36dbbSJakub Kicinski channels.tx_count == curr.tx_count && 180675c36dbbSJakub Kicinski channels.combined_count == curr.combined_count && 180775c36dbbSJakub Kicinski channels.other_count == curr.other_count) 180875c36dbbSJakub Kicinski return 0; 180975c36dbbSJakub Kicinski 18109ce48e5aSMichal Kubecek /* ensure new counts are within the maximums */ 18119ce48e5aSMichal Kubecek if (channels.rx_count > curr.max_rx || 18129ce48e5aSMichal Kubecek channels.tx_count > curr.max_tx || 18139ce48e5aSMichal Kubecek channels.combined_count > curr.max_combined || 18149ce48e5aSMichal Kubecek channels.other_count > curr.max_other) 18159ce48e5aSMichal Kubecek return -EINVAL; 18169ce48e5aSMichal Kubecek 18177be92514SJakub Kicinski /* ensure there is at least one RX and one TX channel */ 18187be92514SJakub Kicinski if (!channels.combined_count && 18197be92514SJakub Kicinski (!channels.rx_count || !channels.tx_count)) 18207be92514SJakub Kicinski return -EINVAL; 18217be92514SJakub Kicinski 18229ce48e5aSMichal Kubecek /* ensure the new Rx count fits within the configured Rx flow 18239ce48e5aSMichal Kubecek * indirection table settings */ 18249ce48e5aSMichal Kubecek if (netif_is_rxfh_configured(dev) && 18259ce48e5aSMichal Kubecek !ethtool_get_max_rxfh_channel(dev, &max_rx_in_use) && 18269ce48e5aSMichal Kubecek (channels.combined_count + channels.rx_count) <= max_rx_in_use) 18279ce48e5aSMichal Kubecek return -EINVAL; 18289ce48e5aSMichal Kubecek 18299ce48e5aSMichal Kubecek /* Disabling channels, query zero-copy AF_XDP sockets */ 18309ce48e5aSMichal Kubecek from_channel = channels.combined_count + 18319ce48e5aSMichal Kubecek min(channels.rx_count, channels.tx_count); 18329ce48e5aSMichal Kubecek to_channel = curr.combined_count + max(curr.rx_count, curr.tx_count); 18339ce48e5aSMichal Kubecek for (i = from_channel; i < to_channel; i++) 1834c4655761SMagnus Karlsson if (xsk_get_pool_from_qid(dev, i)) 18359ce48e5aSMichal Kubecek return -EINVAL; 18369ce48e5aSMichal Kubecek 1837546379b9SMichal Kubecek ret = dev->ethtool_ops->set_channels(dev, &channels); 1838546379b9SMichal Kubecek if (!ret) 1839546379b9SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_CHANNELS_NTF, NULL); 1840546379b9SMichal Kubecek return ret; 18419ce48e5aSMichal Kubecek } 18429ce48e5aSMichal Kubecek 18439ce48e5aSMichal Kubecek static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr) 18449ce48e5aSMichal Kubecek { 18459ce48e5aSMichal Kubecek struct ethtool_pauseparam pauseparam = { .cmd = ETHTOOL_GPAUSEPARAM }; 18469ce48e5aSMichal Kubecek 18479ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_pauseparam) 18489ce48e5aSMichal Kubecek return -EOPNOTSUPP; 18499ce48e5aSMichal Kubecek 18509ce48e5aSMichal Kubecek dev->ethtool_ops->get_pauseparam(dev, &pauseparam); 18519ce48e5aSMichal Kubecek 18529ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam))) 18539ce48e5aSMichal Kubecek return -EFAULT; 18549ce48e5aSMichal Kubecek return 0; 18559ce48e5aSMichal Kubecek } 18569ce48e5aSMichal Kubecek 18579ce48e5aSMichal Kubecek static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr) 18589ce48e5aSMichal Kubecek { 18599ce48e5aSMichal Kubecek struct ethtool_pauseparam pauseparam; 1860bf37faa3SMichal Kubecek int ret; 18619ce48e5aSMichal Kubecek 18629ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_pauseparam) 18639ce48e5aSMichal Kubecek return -EOPNOTSUPP; 18649ce48e5aSMichal Kubecek 18659ce48e5aSMichal Kubecek if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam))) 18669ce48e5aSMichal Kubecek return -EFAULT; 18679ce48e5aSMichal Kubecek 1868bf37faa3SMichal Kubecek ret = dev->ethtool_ops->set_pauseparam(dev, &pauseparam); 1869bf37faa3SMichal Kubecek if (!ret) 1870bf37faa3SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_PAUSE_NTF, NULL); 1871bf37faa3SMichal Kubecek return ret; 18729ce48e5aSMichal Kubecek } 18739ce48e5aSMichal Kubecek 18749ce48e5aSMichal Kubecek static int ethtool_self_test(struct net_device *dev, char __user *useraddr) 18759ce48e5aSMichal Kubecek { 18769ce48e5aSMichal Kubecek struct ethtool_test test; 18779ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 18789ce48e5aSMichal Kubecek u64 *data; 18799ce48e5aSMichal Kubecek int ret, test_len; 18809ce48e5aSMichal Kubecek 18819ce48e5aSMichal Kubecek if (!ops->self_test || !ops->get_sset_count) 18829ce48e5aSMichal Kubecek return -EOPNOTSUPP; 18839ce48e5aSMichal Kubecek 18849ce48e5aSMichal Kubecek test_len = ops->get_sset_count(dev, ETH_SS_TEST); 18859ce48e5aSMichal Kubecek if (test_len < 0) 18869ce48e5aSMichal Kubecek return test_len; 18879ce48e5aSMichal Kubecek WARN_ON(test_len == 0); 18889ce48e5aSMichal Kubecek 18899ce48e5aSMichal Kubecek if (copy_from_user(&test, useraddr, sizeof(test))) 18909ce48e5aSMichal Kubecek return -EFAULT; 18919ce48e5aSMichal Kubecek 18929ce48e5aSMichal Kubecek test.len = test_len; 189380ec82e3SAustin Kim data = kcalloc(test_len, sizeof(u64), GFP_USER); 18949ce48e5aSMichal Kubecek if (!data) 18959ce48e5aSMichal Kubecek return -ENOMEM; 18969ce48e5aSMichal Kubecek 189777e9b2abSAndrew Lunn netif_testing_on(dev); 18989ce48e5aSMichal Kubecek ops->self_test(dev, &test, data); 189977e9b2abSAndrew Lunn netif_testing_off(dev); 19009ce48e5aSMichal Kubecek 19019ce48e5aSMichal Kubecek ret = -EFAULT; 19029ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &test, sizeof(test))) 19039ce48e5aSMichal Kubecek goto out; 19049ce48e5aSMichal Kubecek useraddr += sizeof(test); 1905ed717613SGustavo A. R. Silva if (copy_to_user(useraddr, data, array_size(test.len, sizeof(u64)))) 19069ce48e5aSMichal Kubecek goto out; 19079ce48e5aSMichal Kubecek ret = 0; 19089ce48e5aSMichal Kubecek 19099ce48e5aSMichal Kubecek out: 19109ce48e5aSMichal Kubecek kfree(data); 19119ce48e5aSMichal Kubecek return ret; 19129ce48e5aSMichal Kubecek } 19139ce48e5aSMichal Kubecek 19149ce48e5aSMichal Kubecek static int ethtool_get_strings(struct net_device *dev, void __user *useraddr) 19159ce48e5aSMichal Kubecek { 19169ce48e5aSMichal Kubecek struct ethtool_gstrings gstrings; 19179ce48e5aSMichal Kubecek u8 *data; 19189ce48e5aSMichal Kubecek int ret; 19199ce48e5aSMichal Kubecek 19209ce48e5aSMichal Kubecek if (copy_from_user(&gstrings, useraddr, sizeof(gstrings))) 19219ce48e5aSMichal Kubecek return -EFAULT; 19229ce48e5aSMichal Kubecek 19239ce48e5aSMichal Kubecek ret = __ethtool_get_sset_count(dev, gstrings.string_set); 19249ce48e5aSMichal Kubecek if (ret < 0) 19259ce48e5aSMichal Kubecek return ret; 19269ce48e5aSMichal Kubecek if (ret > S32_MAX / ETH_GSTRING_LEN) 19279ce48e5aSMichal Kubecek return -ENOMEM; 19289ce48e5aSMichal Kubecek WARN_ON_ONCE(!ret); 19299ce48e5aSMichal Kubecek 19309ce48e5aSMichal Kubecek gstrings.len = ret; 19319ce48e5aSMichal Kubecek 19329ce48e5aSMichal Kubecek if (gstrings.len) { 19339ce48e5aSMichal Kubecek data = vzalloc(array_size(gstrings.len, ETH_GSTRING_LEN)); 19349ce48e5aSMichal Kubecek if (!data) 19359ce48e5aSMichal Kubecek return -ENOMEM; 19369ce48e5aSMichal Kubecek 19379ce48e5aSMichal Kubecek __ethtool_get_strings(dev, gstrings.string_set, data); 19389ce48e5aSMichal Kubecek } else { 19399ce48e5aSMichal Kubecek data = NULL; 19409ce48e5aSMichal Kubecek } 19419ce48e5aSMichal Kubecek 19429ce48e5aSMichal Kubecek ret = -EFAULT; 19439ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &gstrings, sizeof(gstrings))) 19449ce48e5aSMichal Kubecek goto out; 19459ce48e5aSMichal Kubecek useraddr += sizeof(gstrings); 19469ce48e5aSMichal Kubecek if (gstrings.len && 1947ed717613SGustavo A. R. Silva copy_to_user(useraddr, data, 1948ed717613SGustavo A. R. Silva array_size(gstrings.len, ETH_GSTRING_LEN))) 19499ce48e5aSMichal Kubecek goto out; 19509ce48e5aSMichal Kubecek ret = 0; 19519ce48e5aSMichal Kubecek 19529ce48e5aSMichal Kubecek out: 19539ce48e5aSMichal Kubecek vfree(data); 19549ce48e5aSMichal Kubecek return ret; 19559ce48e5aSMichal Kubecek } 19569ce48e5aSMichal Kubecek 19577888fe53SAlexander Duyck __printf(2, 3) void ethtool_sprintf(u8 **data, const char *fmt, ...) 19587888fe53SAlexander Duyck { 19597888fe53SAlexander Duyck va_list args; 19607888fe53SAlexander Duyck 19617888fe53SAlexander Duyck va_start(args, fmt); 19627888fe53SAlexander Duyck vsnprintf(*data, ETH_GSTRING_LEN, fmt, args); 19637888fe53SAlexander Duyck va_end(args); 19647888fe53SAlexander Duyck 19657888fe53SAlexander Duyck *data += ETH_GSTRING_LEN; 19667888fe53SAlexander Duyck } 19677888fe53SAlexander Duyck EXPORT_SYMBOL(ethtool_sprintf); 19687888fe53SAlexander Duyck 19699ce48e5aSMichal Kubecek static int ethtool_phys_id(struct net_device *dev, void __user *useraddr) 19709ce48e5aSMichal Kubecek { 19719ce48e5aSMichal Kubecek struct ethtool_value id; 19729ce48e5aSMichal Kubecek static bool busy; 19739ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 19745ae21950SEric Dumazet netdevice_tracker dev_tracker; 19759ce48e5aSMichal Kubecek int rc; 19769ce48e5aSMichal Kubecek 19779ce48e5aSMichal Kubecek if (!ops->set_phys_id) 19789ce48e5aSMichal Kubecek return -EOPNOTSUPP; 19799ce48e5aSMichal Kubecek 19809ce48e5aSMichal Kubecek if (busy) 19819ce48e5aSMichal Kubecek return -EBUSY; 19829ce48e5aSMichal Kubecek 19839ce48e5aSMichal Kubecek if (copy_from_user(&id, useraddr, sizeof(id))) 19849ce48e5aSMichal Kubecek return -EFAULT; 19859ce48e5aSMichal Kubecek 19869ce48e5aSMichal Kubecek rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE); 19879ce48e5aSMichal Kubecek if (rc < 0) 19889ce48e5aSMichal Kubecek return rc; 19899ce48e5aSMichal Kubecek 19909ce48e5aSMichal Kubecek /* Drop the RTNL lock while waiting, but prevent reentry or 19919ce48e5aSMichal Kubecek * removal of the device. 19929ce48e5aSMichal Kubecek */ 19939ce48e5aSMichal Kubecek busy = true; 1994d62607c3SJakub Kicinski netdev_hold(dev, &dev_tracker, GFP_KERNEL); 19959ce48e5aSMichal Kubecek rtnl_unlock(); 19969ce48e5aSMichal Kubecek 19979ce48e5aSMichal Kubecek if (rc == 0) { 19989ce48e5aSMichal Kubecek /* Driver will handle this itself */ 19999ce48e5aSMichal Kubecek schedule_timeout_interruptible( 20009ce48e5aSMichal Kubecek id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT); 20019ce48e5aSMichal Kubecek } else { 20029ce48e5aSMichal Kubecek /* Driver expects to be called at twice the frequency in rc */ 20032adc6edcSEdward Cree int n = rc * 2, interval = HZ / n; 20042adc6edcSEdward Cree u64 count = n * id.data, i = 0; 20059ce48e5aSMichal Kubecek 20069ce48e5aSMichal Kubecek do { 20079ce48e5aSMichal Kubecek rtnl_lock(); 20089ce48e5aSMichal Kubecek rc = ops->set_phys_id(dev, 20092adc6edcSEdward Cree (i++ & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON); 20109ce48e5aSMichal Kubecek rtnl_unlock(); 20119ce48e5aSMichal Kubecek if (rc) 20129ce48e5aSMichal Kubecek break; 20139ce48e5aSMichal Kubecek schedule_timeout_interruptible(interval); 20142adc6edcSEdward Cree } while (!signal_pending(current) && (!id.data || i < count)); 20159ce48e5aSMichal Kubecek } 20169ce48e5aSMichal Kubecek 20179ce48e5aSMichal Kubecek rtnl_lock(); 2018d62607c3SJakub Kicinski netdev_put(dev, &dev_tracker); 20199ce48e5aSMichal Kubecek busy = false; 20209ce48e5aSMichal Kubecek 20219ce48e5aSMichal Kubecek (void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE); 20229ce48e5aSMichal Kubecek return rc; 20239ce48e5aSMichal Kubecek } 20249ce48e5aSMichal Kubecek 20259ce48e5aSMichal Kubecek static int ethtool_get_stats(struct net_device *dev, void __user *useraddr) 20269ce48e5aSMichal Kubecek { 20279ce48e5aSMichal Kubecek struct ethtool_stats stats; 20289ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 20299ce48e5aSMichal Kubecek u64 *data; 20309ce48e5aSMichal Kubecek int ret, n_stats; 20319ce48e5aSMichal Kubecek 20329ce48e5aSMichal Kubecek if (!ops->get_ethtool_stats || !ops->get_sset_count) 20339ce48e5aSMichal Kubecek return -EOPNOTSUPP; 20349ce48e5aSMichal Kubecek 20359ce48e5aSMichal Kubecek n_stats = ops->get_sset_count(dev, ETH_SS_STATS); 20369ce48e5aSMichal Kubecek if (n_stats < 0) 20379ce48e5aSMichal Kubecek return n_stats; 20389ce48e5aSMichal Kubecek if (n_stats > S32_MAX / sizeof(u64)) 20399ce48e5aSMichal Kubecek return -ENOMEM; 20409ce48e5aSMichal Kubecek WARN_ON_ONCE(!n_stats); 20419ce48e5aSMichal Kubecek if (copy_from_user(&stats, useraddr, sizeof(stats))) 20429ce48e5aSMichal Kubecek return -EFAULT; 20439ce48e5aSMichal Kubecek 20449ce48e5aSMichal Kubecek stats.n_stats = n_stats; 20459ce48e5aSMichal Kubecek 20469ce48e5aSMichal Kubecek if (n_stats) { 20479ce48e5aSMichal Kubecek data = vzalloc(array_size(n_stats, sizeof(u64))); 20489ce48e5aSMichal Kubecek if (!data) 20499ce48e5aSMichal Kubecek return -ENOMEM; 20509ce48e5aSMichal Kubecek ops->get_ethtool_stats(dev, &stats, data); 20519ce48e5aSMichal Kubecek } else { 20529ce48e5aSMichal Kubecek data = NULL; 20539ce48e5aSMichal Kubecek } 20549ce48e5aSMichal Kubecek 20559ce48e5aSMichal Kubecek ret = -EFAULT; 20569ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &stats, sizeof(stats))) 20579ce48e5aSMichal Kubecek goto out; 20589ce48e5aSMichal Kubecek useraddr += sizeof(stats); 20593dd14996SGustavo A. R. Silva if (n_stats && copy_to_user(useraddr, data, array_size(n_stats, sizeof(u64)))) 20609ce48e5aSMichal Kubecek goto out; 20619ce48e5aSMichal Kubecek ret = 0; 20629ce48e5aSMichal Kubecek 20639ce48e5aSMichal Kubecek out: 20649ce48e5aSMichal Kubecek vfree(data); 20659ce48e5aSMichal Kubecek return ret; 20669ce48e5aSMichal Kubecek } 20679ce48e5aSMichal Kubecek 20689ce48e5aSMichal Kubecek static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr) 20699ce48e5aSMichal Kubecek { 207017809516SFlorian Fainelli const struct ethtool_phy_ops *phy_ops = ethtool_phy_ops; 20719ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 20729ce48e5aSMichal Kubecek struct phy_device *phydev = dev->phydev; 20739ce48e5aSMichal Kubecek struct ethtool_stats stats; 20749ce48e5aSMichal Kubecek u64 *data; 20759ce48e5aSMichal Kubecek int ret, n_stats; 20769ce48e5aSMichal Kubecek 20779ce48e5aSMichal Kubecek if (!phydev && (!ops->get_ethtool_phy_stats || !ops->get_sset_count)) 20789ce48e5aSMichal Kubecek return -EOPNOTSUPP; 20799ce48e5aSMichal Kubecek 2080ccd21ec5STom Rix if (phydev && !ops->get_ethtool_phy_stats && 208117809516SFlorian Fainelli phy_ops && phy_ops->get_sset_count) 2082ccd21ec5STom Rix n_stats = phy_ops->get_sset_count(phydev); 20839ce48e5aSMichal Kubecek else 20849ce48e5aSMichal Kubecek n_stats = ops->get_sset_count(dev, ETH_SS_PHY_STATS); 20859ce48e5aSMichal Kubecek if (n_stats < 0) 20869ce48e5aSMichal Kubecek return n_stats; 20879ce48e5aSMichal Kubecek if (n_stats > S32_MAX / sizeof(u64)) 20889ce48e5aSMichal Kubecek return -ENOMEM; 20899ce48e5aSMichal Kubecek WARN_ON_ONCE(!n_stats); 20909ce48e5aSMichal Kubecek 20919ce48e5aSMichal Kubecek if (copy_from_user(&stats, useraddr, sizeof(stats))) 20929ce48e5aSMichal Kubecek return -EFAULT; 20939ce48e5aSMichal Kubecek 20949ce48e5aSMichal Kubecek stats.n_stats = n_stats; 20959ce48e5aSMichal Kubecek 20969ce48e5aSMichal Kubecek if (n_stats) { 20979ce48e5aSMichal Kubecek data = vzalloc(array_size(n_stats, sizeof(u64))); 20989ce48e5aSMichal Kubecek if (!data) 20999ce48e5aSMichal Kubecek return -ENOMEM; 21009ce48e5aSMichal Kubecek 2101ccd21ec5STom Rix if (phydev && !ops->get_ethtool_phy_stats && 210217809516SFlorian Fainelli phy_ops && phy_ops->get_stats) { 2103ccd21ec5STom Rix ret = phy_ops->get_stats(phydev, &stats, data); 21049ce48e5aSMichal Kubecek if (ret < 0) 21059ce48e5aSMichal Kubecek goto out; 21069ce48e5aSMichal Kubecek } else { 21079ce48e5aSMichal Kubecek ops->get_ethtool_phy_stats(dev, &stats, data); 21089ce48e5aSMichal Kubecek } 21099ce48e5aSMichal Kubecek } else { 21109ce48e5aSMichal Kubecek data = NULL; 21119ce48e5aSMichal Kubecek } 21129ce48e5aSMichal Kubecek 21139ce48e5aSMichal Kubecek ret = -EFAULT; 21149ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &stats, sizeof(stats))) 21159ce48e5aSMichal Kubecek goto out; 21169ce48e5aSMichal Kubecek useraddr += sizeof(stats); 21173dd14996SGustavo A. R. Silva if (n_stats && copy_to_user(useraddr, data, array_size(n_stats, sizeof(u64)))) 21189ce48e5aSMichal Kubecek goto out; 21199ce48e5aSMichal Kubecek ret = 0; 21209ce48e5aSMichal Kubecek 21219ce48e5aSMichal Kubecek out: 21229ce48e5aSMichal Kubecek vfree(data); 21239ce48e5aSMichal Kubecek return ret; 21249ce48e5aSMichal Kubecek } 21259ce48e5aSMichal Kubecek 21269ce48e5aSMichal Kubecek static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr) 21279ce48e5aSMichal Kubecek { 21289ce48e5aSMichal Kubecek struct ethtool_perm_addr epaddr; 21299ce48e5aSMichal Kubecek 21309ce48e5aSMichal Kubecek if (copy_from_user(&epaddr, useraddr, sizeof(epaddr))) 21319ce48e5aSMichal Kubecek return -EFAULT; 21329ce48e5aSMichal Kubecek 21339ce48e5aSMichal Kubecek if (epaddr.size < dev->addr_len) 21349ce48e5aSMichal Kubecek return -ETOOSMALL; 21359ce48e5aSMichal Kubecek epaddr.size = dev->addr_len; 21369ce48e5aSMichal Kubecek 21379ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &epaddr, sizeof(epaddr))) 21389ce48e5aSMichal Kubecek return -EFAULT; 21399ce48e5aSMichal Kubecek useraddr += sizeof(epaddr); 21409ce48e5aSMichal Kubecek if (copy_to_user(useraddr, dev->perm_addr, epaddr.size)) 21419ce48e5aSMichal Kubecek return -EFAULT; 21429ce48e5aSMichal Kubecek return 0; 21439ce48e5aSMichal Kubecek } 21449ce48e5aSMichal Kubecek 21459ce48e5aSMichal Kubecek static int ethtool_get_value(struct net_device *dev, char __user *useraddr, 21469ce48e5aSMichal Kubecek u32 cmd, u32 (*actor)(struct net_device *)) 21479ce48e5aSMichal Kubecek { 21489ce48e5aSMichal Kubecek struct ethtool_value edata = { .cmd = cmd }; 21499ce48e5aSMichal Kubecek 21509ce48e5aSMichal Kubecek if (!actor) 21519ce48e5aSMichal Kubecek return -EOPNOTSUPP; 21529ce48e5aSMichal Kubecek 21539ce48e5aSMichal Kubecek edata.data = actor(dev); 21549ce48e5aSMichal Kubecek 21559ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &edata, sizeof(edata))) 21569ce48e5aSMichal Kubecek return -EFAULT; 21579ce48e5aSMichal Kubecek return 0; 21589ce48e5aSMichal Kubecek } 21599ce48e5aSMichal Kubecek 21609ce48e5aSMichal Kubecek static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr, 21619ce48e5aSMichal Kubecek void (*actor)(struct net_device *, u32)) 21629ce48e5aSMichal Kubecek { 21639ce48e5aSMichal Kubecek struct ethtool_value edata; 21649ce48e5aSMichal Kubecek 21659ce48e5aSMichal Kubecek if (!actor) 21669ce48e5aSMichal Kubecek return -EOPNOTSUPP; 21679ce48e5aSMichal Kubecek 21689ce48e5aSMichal Kubecek if (copy_from_user(&edata, useraddr, sizeof(edata))) 21699ce48e5aSMichal Kubecek return -EFAULT; 21709ce48e5aSMichal Kubecek 21719ce48e5aSMichal Kubecek actor(dev, edata.data); 21729ce48e5aSMichal Kubecek return 0; 21739ce48e5aSMichal Kubecek } 21749ce48e5aSMichal Kubecek 21759ce48e5aSMichal Kubecek static int ethtool_set_value(struct net_device *dev, char __user *useraddr, 21769ce48e5aSMichal Kubecek int (*actor)(struct net_device *, u32)) 21779ce48e5aSMichal Kubecek { 21789ce48e5aSMichal Kubecek struct ethtool_value edata; 21799ce48e5aSMichal Kubecek 21809ce48e5aSMichal Kubecek if (!actor) 21819ce48e5aSMichal Kubecek return -EOPNOTSUPP; 21829ce48e5aSMichal Kubecek 21839ce48e5aSMichal Kubecek if (copy_from_user(&edata, useraddr, sizeof(edata))) 21849ce48e5aSMichal Kubecek return -EFAULT; 21859ce48e5aSMichal Kubecek 21869ce48e5aSMichal Kubecek return actor(dev, edata.data); 21879ce48e5aSMichal Kubecek } 21889ce48e5aSMichal Kubecek 2189095cfcfeSJakub Kicinski static int 2190095cfcfeSJakub Kicinski ethtool_flash_device(struct net_device *dev, struct ethtool_devlink_compat *req) 21919ce48e5aSMichal Kubecek { 21921af0a094SJakub Kicinski if (!dev->ethtool_ops->flash_device) { 21931af0a094SJakub Kicinski req->devlink = netdev_to_devlink_get(dev); 21941af0a094SJakub Kicinski return 0; 21951af0a094SJakub Kicinski } 21969ce48e5aSMichal Kubecek 2197095cfcfeSJakub Kicinski return dev->ethtool_ops->flash_device(dev, &req->efl); 21989ce48e5aSMichal Kubecek } 21999ce48e5aSMichal Kubecek 22009ce48e5aSMichal Kubecek static int ethtool_set_dump(struct net_device *dev, 22019ce48e5aSMichal Kubecek void __user *useraddr) 22029ce48e5aSMichal Kubecek { 22039ce48e5aSMichal Kubecek struct ethtool_dump dump; 22049ce48e5aSMichal Kubecek 22059ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_dump) 22069ce48e5aSMichal Kubecek return -EOPNOTSUPP; 22079ce48e5aSMichal Kubecek 22089ce48e5aSMichal Kubecek if (copy_from_user(&dump, useraddr, sizeof(dump))) 22099ce48e5aSMichal Kubecek return -EFAULT; 22109ce48e5aSMichal Kubecek 22119ce48e5aSMichal Kubecek return dev->ethtool_ops->set_dump(dev, &dump); 22129ce48e5aSMichal Kubecek } 22139ce48e5aSMichal Kubecek 22149ce48e5aSMichal Kubecek static int ethtool_get_dump_flag(struct net_device *dev, 22159ce48e5aSMichal Kubecek void __user *useraddr) 22169ce48e5aSMichal Kubecek { 22179ce48e5aSMichal Kubecek int ret; 22189ce48e5aSMichal Kubecek struct ethtool_dump dump; 22199ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 22209ce48e5aSMichal Kubecek 22219ce48e5aSMichal Kubecek if (!ops->get_dump_flag) 22229ce48e5aSMichal Kubecek return -EOPNOTSUPP; 22239ce48e5aSMichal Kubecek 22249ce48e5aSMichal Kubecek if (copy_from_user(&dump, useraddr, sizeof(dump))) 22259ce48e5aSMichal Kubecek return -EFAULT; 22269ce48e5aSMichal Kubecek 22279ce48e5aSMichal Kubecek ret = ops->get_dump_flag(dev, &dump); 22289ce48e5aSMichal Kubecek if (ret) 22299ce48e5aSMichal Kubecek return ret; 22309ce48e5aSMichal Kubecek 22319ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &dump, sizeof(dump))) 22329ce48e5aSMichal Kubecek return -EFAULT; 22339ce48e5aSMichal Kubecek return 0; 22349ce48e5aSMichal Kubecek } 22359ce48e5aSMichal Kubecek 22369ce48e5aSMichal Kubecek static int ethtool_get_dump_data(struct net_device *dev, 22379ce48e5aSMichal Kubecek void __user *useraddr) 22389ce48e5aSMichal Kubecek { 22399ce48e5aSMichal Kubecek int ret; 22409ce48e5aSMichal Kubecek __u32 len; 22419ce48e5aSMichal Kubecek struct ethtool_dump dump, tmp; 22429ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 22439ce48e5aSMichal Kubecek void *data = NULL; 22449ce48e5aSMichal Kubecek 22459ce48e5aSMichal Kubecek if (!ops->get_dump_data || !ops->get_dump_flag) 22469ce48e5aSMichal Kubecek return -EOPNOTSUPP; 22479ce48e5aSMichal Kubecek 22489ce48e5aSMichal Kubecek if (copy_from_user(&dump, useraddr, sizeof(dump))) 22499ce48e5aSMichal Kubecek return -EFAULT; 22509ce48e5aSMichal Kubecek 22519ce48e5aSMichal Kubecek memset(&tmp, 0, sizeof(tmp)); 22529ce48e5aSMichal Kubecek tmp.cmd = ETHTOOL_GET_DUMP_FLAG; 22539ce48e5aSMichal Kubecek ret = ops->get_dump_flag(dev, &tmp); 22549ce48e5aSMichal Kubecek if (ret) 22559ce48e5aSMichal Kubecek return ret; 22569ce48e5aSMichal Kubecek 22579ce48e5aSMichal Kubecek len = min(tmp.len, dump.len); 22589ce48e5aSMichal Kubecek if (!len) 22599ce48e5aSMichal Kubecek return -EFAULT; 22609ce48e5aSMichal Kubecek 22619ce48e5aSMichal Kubecek /* Don't ever let the driver think there's more space available 22629ce48e5aSMichal Kubecek * than it requested with .get_dump_flag(). 22639ce48e5aSMichal Kubecek */ 22649ce48e5aSMichal Kubecek dump.len = len; 22659ce48e5aSMichal Kubecek 22669ce48e5aSMichal Kubecek /* Always allocate enough space to hold the whole thing so that the 22679ce48e5aSMichal Kubecek * driver does not need to check the length and bother with partial 22689ce48e5aSMichal Kubecek * dumping. 22699ce48e5aSMichal Kubecek */ 22709ce48e5aSMichal Kubecek data = vzalloc(tmp.len); 22719ce48e5aSMichal Kubecek if (!data) 22729ce48e5aSMichal Kubecek return -ENOMEM; 22739ce48e5aSMichal Kubecek ret = ops->get_dump_data(dev, &dump, data); 22749ce48e5aSMichal Kubecek if (ret) 22759ce48e5aSMichal Kubecek goto out; 22769ce48e5aSMichal Kubecek 22779ce48e5aSMichal Kubecek /* There are two sane possibilities: 22789ce48e5aSMichal Kubecek * 1. The driver's .get_dump_data() does not touch dump.len. 22799ce48e5aSMichal Kubecek * 2. Or it may set dump.len to how much it really writes, which 22809ce48e5aSMichal Kubecek * should be tmp.len (or len if it can do a partial dump). 22819ce48e5aSMichal Kubecek * In any case respond to userspace with the actual length of data 22829ce48e5aSMichal Kubecek * it's receiving. 22839ce48e5aSMichal Kubecek */ 22849ce48e5aSMichal Kubecek WARN_ON(dump.len != len && dump.len != tmp.len); 22859ce48e5aSMichal Kubecek dump.len = len; 22869ce48e5aSMichal Kubecek 22879ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &dump, sizeof(dump))) { 22889ce48e5aSMichal Kubecek ret = -EFAULT; 22899ce48e5aSMichal Kubecek goto out; 22909ce48e5aSMichal Kubecek } 22919ce48e5aSMichal Kubecek useraddr += offsetof(struct ethtool_dump, data); 22929ce48e5aSMichal Kubecek if (copy_to_user(useraddr, data, len)) 22939ce48e5aSMichal Kubecek ret = -EFAULT; 22949ce48e5aSMichal Kubecek out: 22959ce48e5aSMichal Kubecek vfree(data); 22969ce48e5aSMichal Kubecek return ret; 22979ce48e5aSMichal Kubecek } 22989ce48e5aSMichal Kubecek 22999ce48e5aSMichal Kubecek static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr) 23009ce48e5aSMichal Kubecek { 23019ce48e5aSMichal Kubecek struct ethtool_ts_info info; 23025b071c59SMichal Kubecek int err; 23039ce48e5aSMichal Kubecek 23045b071c59SMichal Kubecek err = __ethtool_get_ts_info(dev, &info); 23059ce48e5aSMichal Kubecek if (err) 23069ce48e5aSMichal Kubecek return err; 23079ce48e5aSMichal Kubecek 23089ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &info, sizeof(info))) 23095b071c59SMichal Kubecek return -EFAULT; 23109ce48e5aSMichal Kubecek 23115b071c59SMichal Kubecek return 0; 23129ce48e5aSMichal Kubecek } 23139ce48e5aSMichal Kubecek 231495dfc7efSAndrew Lunn int ethtool_get_module_info_call(struct net_device *dev, 23159ce48e5aSMichal Kubecek struct ethtool_modinfo *modinfo) 23169ce48e5aSMichal Kubecek { 23179ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 23189ce48e5aSMichal Kubecek struct phy_device *phydev = dev->phydev; 23199ce48e5aSMichal Kubecek 23209ce48e5aSMichal Kubecek if (dev->sfp_bus) 23219ce48e5aSMichal Kubecek return sfp_get_module_info(dev->sfp_bus, modinfo); 23229ce48e5aSMichal Kubecek 23239ce48e5aSMichal Kubecek if (phydev && phydev->drv && phydev->drv->module_info) 23249ce48e5aSMichal Kubecek return phydev->drv->module_info(phydev, modinfo); 23259ce48e5aSMichal Kubecek 23269ce48e5aSMichal Kubecek if (ops->get_module_info) 23279ce48e5aSMichal Kubecek return ops->get_module_info(dev, modinfo); 23289ce48e5aSMichal Kubecek 23299ce48e5aSMichal Kubecek return -EOPNOTSUPP; 23309ce48e5aSMichal Kubecek } 23319ce48e5aSMichal Kubecek 23329ce48e5aSMichal Kubecek static int ethtool_get_module_info(struct net_device *dev, 23339ce48e5aSMichal Kubecek void __user *useraddr) 23349ce48e5aSMichal Kubecek { 23359ce48e5aSMichal Kubecek int ret; 23369ce48e5aSMichal Kubecek struct ethtool_modinfo modinfo; 23379ce48e5aSMichal Kubecek 23389ce48e5aSMichal Kubecek if (copy_from_user(&modinfo, useraddr, sizeof(modinfo))) 23399ce48e5aSMichal Kubecek return -EFAULT; 23409ce48e5aSMichal Kubecek 234195dfc7efSAndrew Lunn ret = ethtool_get_module_info_call(dev, &modinfo); 23429ce48e5aSMichal Kubecek if (ret) 23439ce48e5aSMichal Kubecek return ret; 23449ce48e5aSMichal Kubecek 23459ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &modinfo, sizeof(modinfo))) 23469ce48e5aSMichal Kubecek return -EFAULT; 23479ce48e5aSMichal Kubecek 23489ce48e5aSMichal Kubecek return 0; 23499ce48e5aSMichal Kubecek } 23509ce48e5aSMichal Kubecek 235195dfc7efSAndrew Lunn int ethtool_get_module_eeprom_call(struct net_device *dev, 23529ce48e5aSMichal Kubecek struct ethtool_eeprom *ee, u8 *data) 23539ce48e5aSMichal Kubecek { 23549ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 23559ce48e5aSMichal Kubecek struct phy_device *phydev = dev->phydev; 23569ce48e5aSMichal Kubecek 23579ce48e5aSMichal Kubecek if (dev->sfp_bus) 23589ce48e5aSMichal Kubecek return sfp_get_module_eeprom(dev->sfp_bus, ee, data); 23599ce48e5aSMichal Kubecek 23609ce48e5aSMichal Kubecek if (phydev && phydev->drv && phydev->drv->module_eeprom) 23619ce48e5aSMichal Kubecek return phydev->drv->module_eeprom(phydev, ee, data); 23629ce48e5aSMichal Kubecek 23639ce48e5aSMichal Kubecek if (ops->get_module_eeprom) 23649ce48e5aSMichal Kubecek return ops->get_module_eeprom(dev, ee, data); 23659ce48e5aSMichal Kubecek 23669ce48e5aSMichal Kubecek return -EOPNOTSUPP; 23679ce48e5aSMichal Kubecek } 23689ce48e5aSMichal Kubecek 23699ce48e5aSMichal Kubecek static int ethtool_get_module_eeprom(struct net_device *dev, 23709ce48e5aSMichal Kubecek void __user *useraddr) 23719ce48e5aSMichal Kubecek { 23729ce48e5aSMichal Kubecek int ret; 23739ce48e5aSMichal Kubecek struct ethtool_modinfo modinfo; 23749ce48e5aSMichal Kubecek 237595dfc7efSAndrew Lunn ret = ethtool_get_module_info_call(dev, &modinfo); 23769ce48e5aSMichal Kubecek if (ret) 23779ce48e5aSMichal Kubecek return ret; 23789ce48e5aSMichal Kubecek 23799ce48e5aSMichal Kubecek return ethtool_get_any_eeprom(dev, useraddr, 238095dfc7efSAndrew Lunn ethtool_get_module_eeprom_call, 23819ce48e5aSMichal Kubecek modinfo.eeprom_len); 23829ce48e5aSMichal Kubecek } 23839ce48e5aSMichal Kubecek 23849ce48e5aSMichal Kubecek static int ethtool_tunable_valid(const struct ethtool_tunable *tuna) 23859ce48e5aSMichal Kubecek { 23869ce48e5aSMichal Kubecek switch (tuna->id) { 23879ce48e5aSMichal Kubecek case ETHTOOL_RX_COPYBREAK: 23889ce48e5aSMichal Kubecek case ETHTOOL_TX_COPYBREAK: 2389448f413aSHao Chen case ETHTOOL_TX_COPYBREAK_BUF_SIZE: 23909ce48e5aSMichal Kubecek if (tuna->len != sizeof(u32) || 23919ce48e5aSMichal Kubecek tuna->type_id != ETHTOOL_TUNABLE_U32) 23929ce48e5aSMichal Kubecek return -EINVAL; 23939ce48e5aSMichal Kubecek break; 23949ce48e5aSMichal Kubecek case ETHTOOL_PFC_PREVENTION_TOUT: 23959ce48e5aSMichal Kubecek if (tuna->len != sizeof(u16) || 23969ce48e5aSMichal Kubecek tuna->type_id != ETHTOOL_TUNABLE_U16) 23979ce48e5aSMichal Kubecek return -EINVAL; 23989ce48e5aSMichal Kubecek break; 23999ce48e5aSMichal Kubecek default: 24009ce48e5aSMichal Kubecek return -EINVAL; 24019ce48e5aSMichal Kubecek } 24029ce48e5aSMichal Kubecek 24039ce48e5aSMichal Kubecek return 0; 24049ce48e5aSMichal Kubecek } 24059ce48e5aSMichal Kubecek 24069ce48e5aSMichal Kubecek static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr) 24079ce48e5aSMichal Kubecek { 24089ce48e5aSMichal Kubecek int ret; 24099ce48e5aSMichal Kubecek struct ethtool_tunable tuna; 24109ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 24119ce48e5aSMichal Kubecek void *data; 24129ce48e5aSMichal Kubecek 24139ce48e5aSMichal Kubecek if (!ops->get_tunable) 24149ce48e5aSMichal Kubecek return -EOPNOTSUPP; 24159ce48e5aSMichal Kubecek if (copy_from_user(&tuna, useraddr, sizeof(tuna))) 24169ce48e5aSMichal Kubecek return -EFAULT; 24179ce48e5aSMichal Kubecek ret = ethtool_tunable_valid(&tuna); 24189ce48e5aSMichal Kubecek if (ret) 24199ce48e5aSMichal Kubecek return ret; 242080ec82e3SAustin Kim data = kzalloc(tuna.len, GFP_USER); 24219ce48e5aSMichal Kubecek if (!data) 24229ce48e5aSMichal Kubecek return -ENOMEM; 24239ce48e5aSMichal Kubecek ret = ops->get_tunable(dev, &tuna, data); 24249ce48e5aSMichal Kubecek if (ret) 24259ce48e5aSMichal Kubecek goto out; 24269ce48e5aSMichal Kubecek useraddr += sizeof(tuna); 24279ce48e5aSMichal Kubecek ret = -EFAULT; 24289ce48e5aSMichal Kubecek if (copy_to_user(useraddr, data, tuna.len)) 24299ce48e5aSMichal Kubecek goto out; 24309ce48e5aSMichal Kubecek ret = 0; 24319ce48e5aSMichal Kubecek 24329ce48e5aSMichal Kubecek out: 24339ce48e5aSMichal Kubecek kfree(data); 24349ce48e5aSMichal Kubecek return ret; 24359ce48e5aSMichal Kubecek } 24369ce48e5aSMichal Kubecek 24379ce48e5aSMichal Kubecek static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr) 24389ce48e5aSMichal Kubecek { 24399ce48e5aSMichal Kubecek int ret; 24409ce48e5aSMichal Kubecek struct ethtool_tunable tuna; 24419ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 24429ce48e5aSMichal Kubecek void *data; 24439ce48e5aSMichal Kubecek 24449ce48e5aSMichal Kubecek if (!ops->set_tunable) 24459ce48e5aSMichal Kubecek return -EOPNOTSUPP; 24469ce48e5aSMichal Kubecek if (copy_from_user(&tuna, useraddr, sizeof(tuna))) 24479ce48e5aSMichal Kubecek return -EFAULT; 24489ce48e5aSMichal Kubecek ret = ethtool_tunable_valid(&tuna); 24499ce48e5aSMichal Kubecek if (ret) 24509ce48e5aSMichal Kubecek return ret; 24519ce48e5aSMichal Kubecek useraddr += sizeof(tuna); 24529ce48e5aSMichal Kubecek data = memdup_user(useraddr, tuna.len); 24539ce48e5aSMichal Kubecek if (IS_ERR(data)) 24549ce48e5aSMichal Kubecek return PTR_ERR(data); 24559ce48e5aSMichal Kubecek ret = ops->set_tunable(dev, &tuna, data); 24569ce48e5aSMichal Kubecek 24579ce48e5aSMichal Kubecek kfree(data); 24589ce48e5aSMichal Kubecek return ret; 24599ce48e5aSMichal Kubecek } 24609ce48e5aSMichal Kubecek 24619ce48e5aSMichal Kubecek static noinline_for_stack int 24629ce48e5aSMichal Kubecek ethtool_get_per_queue_coalesce(struct net_device *dev, 24639ce48e5aSMichal Kubecek void __user *useraddr, 24649ce48e5aSMichal Kubecek struct ethtool_per_queue_op *per_queue_opt) 24659ce48e5aSMichal Kubecek { 24669ce48e5aSMichal Kubecek u32 bit; 24679ce48e5aSMichal Kubecek int ret; 24689ce48e5aSMichal Kubecek DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE); 24699ce48e5aSMichal Kubecek 24709ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_per_queue_coalesce) 24719ce48e5aSMichal Kubecek return -EOPNOTSUPP; 24729ce48e5aSMichal Kubecek 24739ce48e5aSMichal Kubecek useraddr += sizeof(*per_queue_opt); 24749ce48e5aSMichal Kubecek 24759ce48e5aSMichal Kubecek bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask, 24769ce48e5aSMichal Kubecek MAX_NUM_QUEUE); 24779ce48e5aSMichal Kubecek 24789ce48e5aSMichal Kubecek for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) { 24799ce48e5aSMichal Kubecek struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE }; 24809ce48e5aSMichal Kubecek 24819ce48e5aSMichal Kubecek ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, &coalesce); 24829ce48e5aSMichal Kubecek if (ret != 0) 24839ce48e5aSMichal Kubecek return ret; 24849ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &coalesce, sizeof(coalesce))) 24859ce48e5aSMichal Kubecek return -EFAULT; 24869ce48e5aSMichal Kubecek useraddr += sizeof(coalesce); 24879ce48e5aSMichal Kubecek } 24889ce48e5aSMichal Kubecek 24899ce48e5aSMichal Kubecek return 0; 24909ce48e5aSMichal Kubecek } 24919ce48e5aSMichal Kubecek 24929ce48e5aSMichal Kubecek static noinline_for_stack int 24939ce48e5aSMichal Kubecek ethtool_set_per_queue_coalesce(struct net_device *dev, 24949ce48e5aSMichal Kubecek void __user *useraddr, 24959ce48e5aSMichal Kubecek struct ethtool_per_queue_op *per_queue_opt) 24969ce48e5aSMichal Kubecek { 24979ce48e5aSMichal Kubecek u32 bit; 24989ce48e5aSMichal Kubecek int i, ret = 0; 24999ce48e5aSMichal Kubecek int n_queue; 25009ce48e5aSMichal Kubecek struct ethtool_coalesce *backup = NULL, *tmp = NULL; 25019ce48e5aSMichal Kubecek DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE); 25029ce48e5aSMichal Kubecek 25039ce48e5aSMichal Kubecek if ((!dev->ethtool_ops->set_per_queue_coalesce) || 25049ce48e5aSMichal Kubecek (!dev->ethtool_ops->get_per_queue_coalesce)) 25059ce48e5aSMichal Kubecek return -EOPNOTSUPP; 25069ce48e5aSMichal Kubecek 25079ce48e5aSMichal Kubecek useraddr += sizeof(*per_queue_opt); 25089ce48e5aSMichal Kubecek 25099ce48e5aSMichal Kubecek bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask, MAX_NUM_QUEUE); 25109ce48e5aSMichal Kubecek n_queue = bitmap_weight(queue_mask, MAX_NUM_QUEUE); 25119ce48e5aSMichal Kubecek tmp = backup = kmalloc_array(n_queue, sizeof(*backup), GFP_KERNEL); 25129ce48e5aSMichal Kubecek if (!backup) 25139ce48e5aSMichal Kubecek return -ENOMEM; 25149ce48e5aSMichal Kubecek 25159ce48e5aSMichal Kubecek for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) { 25169ce48e5aSMichal Kubecek struct ethtool_coalesce coalesce; 25179ce48e5aSMichal Kubecek 25189ce48e5aSMichal Kubecek ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, tmp); 25199ce48e5aSMichal Kubecek if (ret != 0) 25209ce48e5aSMichal Kubecek goto roll_back; 25219ce48e5aSMichal Kubecek 25229ce48e5aSMichal Kubecek tmp++; 25239ce48e5aSMichal Kubecek 25249ce48e5aSMichal Kubecek if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) { 25259ce48e5aSMichal Kubecek ret = -EFAULT; 25269ce48e5aSMichal Kubecek goto roll_back; 25279ce48e5aSMichal Kubecek } 25289ce48e5aSMichal Kubecek 252995cddcb5SJakub Kicinski if (!ethtool_set_coalesce_supported(dev, &coalesce)) { 253095cddcb5SJakub Kicinski ret = -EOPNOTSUPP; 253195cddcb5SJakub Kicinski goto roll_back; 253295cddcb5SJakub Kicinski } 253395cddcb5SJakub Kicinski 25349ce48e5aSMichal Kubecek ret = dev->ethtool_ops->set_per_queue_coalesce(dev, bit, &coalesce); 25359ce48e5aSMichal Kubecek if (ret != 0) 25369ce48e5aSMichal Kubecek goto roll_back; 25379ce48e5aSMichal Kubecek 25389ce48e5aSMichal Kubecek useraddr += sizeof(coalesce); 25399ce48e5aSMichal Kubecek } 25409ce48e5aSMichal Kubecek 25419ce48e5aSMichal Kubecek roll_back: 25429ce48e5aSMichal Kubecek if (ret != 0) { 25439ce48e5aSMichal Kubecek tmp = backup; 25449ce48e5aSMichal Kubecek for_each_set_bit(i, queue_mask, bit) { 25459ce48e5aSMichal Kubecek dev->ethtool_ops->set_per_queue_coalesce(dev, i, tmp); 25469ce48e5aSMichal Kubecek tmp++; 25479ce48e5aSMichal Kubecek } 25489ce48e5aSMichal Kubecek } 25499ce48e5aSMichal Kubecek kfree(backup); 25509ce48e5aSMichal Kubecek 25519ce48e5aSMichal Kubecek return ret; 25529ce48e5aSMichal Kubecek } 25539ce48e5aSMichal Kubecek 25549ce48e5aSMichal Kubecek static int noinline_for_stack ethtool_set_per_queue(struct net_device *dev, 25559ce48e5aSMichal Kubecek void __user *useraddr, u32 sub_cmd) 25569ce48e5aSMichal Kubecek { 25579ce48e5aSMichal Kubecek struct ethtool_per_queue_op per_queue_opt; 25589ce48e5aSMichal Kubecek 25599ce48e5aSMichal Kubecek if (copy_from_user(&per_queue_opt, useraddr, sizeof(per_queue_opt))) 25609ce48e5aSMichal Kubecek return -EFAULT; 25619ce48e5aSMichal Kubecek 25629ce48e5aSMichal Kubecek if (per_queue_opt.sub_command != sub_cmd) 25639ce48e5aSMichal Kubecek return -EINVAL; 25649ce48e5aSMichal Kubecek 25659ce48e5aSMichal Kubecek switch (per_queue_opt.sub_command) { 25669ce48e5aSMichal Kubecek case ETHTOOL_GCOALESCE: 25679ce48e5aSMichal Kubecek return ethtool_get_per_queue_coalesce(dev, useraddr, &per_queue_opt); 25689ce48e5aSMichal Kubecek case ETHTOOL_SCOALESCE: 25699ce48e5aSMichal Kubecek return ethtool_set_per_queue_coalesce(dev, useraddr, &per_queue_opt); 25709ce48e5aSMichal Kubecek default: 25719ce48e5aSMichal Kubecek return -EOPNOTSUPP; 25729d253c02STom Rix } 25739ce48e5aSMichal Kubecek } 25749ce48e5aSMichal Kubecek 25759ce48e5aSMichal Kubecek static int ethtool_phy_tunable_valid(const struct ethtool_tunable *tuna) 25769ce48e5aSMichal Kubecek { 25779ce48e5aSMichal Kubecek switch (tuna->id) { 25789ce48e5aSMichal Kubecek case ETHTOOL_PHY_DOWNSHIFT: 25799ce48e5aSMichal Kubecek case ETHTOOL_PHY_FAST_LINK_DOWN: 25809ce48e5aSMichal Kubecek if (tuna->len != sizeof(u8) || 25819ce48e5aSMichal Kubecek tuna->type_id != ETHTOOL_TUNABLE_U8) 25829ce48e5aSMichal Kubecek return -EINVAL; 25839ce48e5aSMichal Kubecek break; 25849ce48e5aSMichal Kubecek case ETHTOOL_PHY_EDPD: 25859ce48e5aSMichal Kubecek if (tuna->len != sizeof(u16) || 25869ce48e5aSMichal Kubecek tuna->type_id != ETHTOOL_TUNABLE_U16) 25879ce48e5aSMichal Kubecek return -EINVAL; 25889ce48e5aSMichal Kubecek break; 25899ce48e5aSMichal Kubecek default: 25909ce48e5aSMichal Kubecek return -EINVAL; 25919ce48e5aSMichal Kubecek } 25929ce48e5aSMichal Kubecek 25939ce48e5aSMichal Kubecek return 0; 25949ce48e5aSMichal Kubecek } 25959ce48e5aSMichal Kubecek 25969ce48e5aSMichal Kubecek static int get_phy_tunable(struct net_device *dev, void __user *useraddr) 25979ce48e5aSMichal Kubecek { 25989ce48e5aSMichal Kubecek struct phy_device *phydev = dev->phydev; 2599c6db31ffSIgor Russkikh struct ethtool_tunable tuna; 2600c6db31ffSIgor Russkikh bool phy_drv_tunable; 26019ce48e5aSMichal Kubecek void *data; 2602c6db31ffSIgor Russkikh int ret; 26039ce48e5aSMichal Kubecek 2604c6db31ffSIgor Russkikh phy_drv_tunable = phydev && phydev->drv && phydev->drv->get_tunable; 2605c6db31ffSIgor Russkikh if (!phy_drv_tunable && !dev->ethtool_ops->get_phy_tunable) 26069ce48e5aSMichal Kubecek return -EOPNOTSUPP; 26079ce48e5aSMichal Kubecek if (copy_from_user(&tuna, useraddr, sizeof(tuna))) 26089ce48e5aSMichal Kubecek return -EFAULT; 26099ce48e5aSMichal Kubecek ret = ethtool_phy_tunable_valid(&tuna); 26109ce48e5aSMichal Kubecek if (ret) 26119ce48e5aSMichal Kubecek return ret; 261280ec82e3SAustin Kim data = kzalloc(tuna.len, GFP_USER); 26139ce48e5aSMichal Kubecek if (!data) 26149ce48e5aSMichal Kubecek return -ENOMEM; 2615c6db31ffSIgor Russkikh if (phy_drv_tunable) { 26169ce48e5aSMichal Kubecek mutex_lock(&phydev->lock); 26179ce48e5aSMichal Kubecek ret = phydev->drv->get_tunable(phydev, &tuna, data); 26189ce48e5aSMichal Kubecek mutex_unlock(&phydev->lock); 2619c6db31ffSIgor Russkikh } else { 2620c6db31ffSIgor Russkikh ret = dev->ethtool_ops->get_phy_tunable(dev, &tuna, data); 2621c6db31ffSIgor Russkikh } 26229ce48e5aSMichal Kubecek if (ret) 26239ce48e5aSMichal Kubecek goto out; 26249ce48e5aSMichal Kubecek useraddr += sizeof(tuna); 26259ce48e5aSMichal Kubecek ret = -EFAULT; 26269ce48e5aSMichal Kubecek if (copy_to_user(useraddr, data, tuna.len)) 26279ce48e5aSMichal Kubecek goto out; 26289ce48e5aSMichal Kubecek ret = 0; 26299ce48e5aSMichal Kubecek 26309ce48e5aSMichal Kubecek out: 26319ce48e5aSMichal Kubecek kfree(data); 26329ce48e5aSMichal Kubecek return ret; 26339ce48e5aSMichal Kubecek } 26349ce48e5aSMichal Kubecek 26359ce48e5aSMichal Kubecek static int set_phy_tunable(struct net_device *dev, void __user *useraddr) 26369ce48e5aSMichal Kubecek { 26379ce48e5aSMichal Kubecek struct phy_device *phydev = dev->phydev; 2638c6db31ffSIgor Russkikh struct ethtool_tunable tuna; 2639c6db31ffSIgor Russkikh bool phy_drv_tunable; 26409ce48e5aSMichal Kubecek void *data; 2641c6db31ffSIgor Russkikh int ret; 26429ce48e5aSMichal Kubecek 2643c6db31ffSIgor Russkikh phy_drv_tunable = phydev && phydev->drv && phydev->drv->get_tunable; 2644c6db31ffSIgor Russkikh if (!phy_drv_tunable && !dev->ethtool_ops->set_phy_tunable) 26459ce48e5aSMichal Kubecek return -EOPNOTSUPP; 26469ce48e5aSMichal Kubecek if (copy_from_user(&tuna, useraddr, sizeof(tuna))) 26479ce48e5aSMichal Kubecek return -EFAULT; 26489ce48e5aSMichal Kubecek ret = ethtool_phy_tunable_valid(&tuna); 26499ce48e5aSMichal Kubecek if (ret) 26509ce48e5aSMichal Kubecek return ret; 26519ce48e5aSMichal Kubecek useraddr += sizeof(tuna); 26529ce48e5aSMichal Kubecek data = memdup_user(useraddr, tuna.len); 26539ce48e5aSMichal Kubecek if (IS_ERR(data)) 26549ce48e5aSMichal Kubecek return PTR_ERR(data); 2655c6db31ffSIgor Russkikh if (phy_drv_tunable) { 26569ce48e5aSMichal Kubecek mutex_lock(&phydev->lock); 26579ce48e5aSMichal Kubecek ret = phydev->drv->set_tunable(phydev, &tuna, data); 26589ce48e5aSMichal Kubecek mutex_unlock(&phydev->lock); 2659c6db31ffSIgor Russkikh } else { 2660c6db31ffSIgor Russkikh ret = dev->ethtool_ops->set_phy_tunable(dev, &tuna, data); 2661c6db31ffSIgor Russkikh } 26629ce48e5aSMichal Kubecek 26639ce48e5aSMichal Kubecek kfree(data); 26649ce48e5aSMichal Kubecek return ret; 26659ce48e5aSMichal Kubecek } 26669ce48e5aSMichal Kubecek 26679ce48e5aSMichal Kubecek static int ethtool_get_fecparam(struct net_device *dev, void __user *useraddr) 26689ce48e5aSMichal Kubecek { 26699ce48e5aSMichal Kubecek struct ethtool_fecparam fecparam = { .cmd = ETHTOOL_GFECPARAM }; 26709ce48e5aSMichal Kubecek int rc; 26719ce48e5aSMichal Kubecek 26729ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_fecparam) 26739ce48e5aSMichal Kubecek return -EOPNOTSUPP; 26749ce48e5aSMichal Kubecek 26759ce48e5aSMichal Kubecek rc = dev->ethtool_ops->get_fecparam(dev, &fecparam); 26769ce48e5aSMichal Kubecek if (rc) 26779ce48e5aSMichal Kubecek return rc; 26789ce48e5aSMichal Kubecek 2679240e1144SJakub Kicinski if (WARN_ON_ONCE(fecparam.reserved)) 2680240e1144SJakub Kicinski fecparam.reserved = 0; 2681240e1144SJakub Kicinski 26829ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &fecparam, sizeof(fecparam))) 26839ce48e5aSMichal Kubecek return -EFAULT; 26849ce48e5aSMichal Kubecek return 0; 26859ce48e5aSMichal Kubecek } 26869ce48e5aSMichal Kubecek 26879ce48e5aSMichal Kubecek static int ethtool_set_fecparam(struct net_device *dev, void __user *useraddr) 26889ce48e5aSMichal Kubecek { 26899ce48e5aSMichal Kubecek struct ethtool_fecparam fecparam; 26909ce48e5aSMichal Kubecek 26919ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_fecparam) 26929ce48e5aSMichal Kubecek return -EOPNOTSUPP; 26939ce48e5aSMichal Kubecek 26949ce48e5aSMichal Kubecek if (copy_from_user(&fecparam, useraddr, sizeof(fecparam))) 26959ce48e5aSMichal Kubecek return -EFAULT; 26969ce48e5aSMichal Kubecek 2697cf2cc0bfSJakub Kicinski if (!fecparam.fec || fecparam.fec & ETHTOOL_FEC_NONE) 269842ce127dSJakub Kicinski return -EINVAL; 269942ce127dSJakub Kicinski 2700d3b37fc8SJakub Kicinski fecparam.active_fec = 0; 2701240e1144SJakub Kicinski fecparam.reserved = 0; 2702240e1144SJakub Kicinski 27039ce48e5aSMichal Kubecek return dev->ethtool_ops->set_fecparam(dev, &fecparam); 27049ce48e5aSMichal Kubecek } 27059ce48e5aSMichal Kubecek 27069ce48e5aSMichal Kubecek /* The main entry point in this file. Called from net/core/dev_ioctl.c */ 27079ce48e5aSMichal Kubecek 2708f49deaa6SJakub Kicinski static int 2709095cfcfeSJakub Kicinski __dev_ethtool(struct net *net, struct ifreq *ifr, void __user *useraddr, 2710095cfcfeSJakub Kicinski u32 ethcmd, struct ethtool_devlink_compat *devlink_state) 27119ce48e5aSMichal Kubecek { 2712095cfcfeSJakub Kicinski struct net_device *dev; 2713095cfcfeSJakub Kicinski u32 sub_cmd; 27149ce48e5aSMichal Kubecek int rc; 27159ce48e5aSMichal Kubecek netdev_features_t old_features; 27169ce48e5aSMichal Kubecek 2717095cfcfeSJakub Kicinski dev = __dev_get_by_name(net, ifr->ifr_name); 2718f32a2137SHeiner Kallweit if (!dev) 27199ce48e5aSMichal Kubecek return -ENODEV; 27209ce48e5aSMichal Kubecek 27219ce48e5aSMichal Kubecek if (ethcmd == ETHTOOL_PERQUEUE) { 27229ce48e5aSMichal Kubecek if (copy_from_user(&sub_cmd, useraddr + sizeof(ethcmd), sizeof(sub_cmd))) 27239ce48e5aSMichal Kubecek return -EFAULT; 27249ce48e5aSMichal Kubecek } else { 27259ce48e5aSMichal Kubecek sub_cmd = ethcmd; 27269ce48e5aSMichal Kubecek } 27279ce48e5aSMichal Kubecek /* Allow some commands to be done by anyone */ 27289ce48e5aSMichal Kubecek switch (sub_cmd) { 27299ce48e5aSMichal Kubecek case ETHTOOL_GSET: 27309ce48e5aSMichal Kubecek case ETHTOOL_GDRVINFO: 27319ce48e5aSMichal Kubecek case ETHTOOL_GMSGLVL: 27329ce48e5aSMichal Kubecek case ETHTOOL_GLINK: 27339ce48e5aSMichal Kubecek case ETHTOOL_GCOALESCE: 27349ce48e5aSMichal Kubecek case ETHTOOL_GRINGPARAM: 27359ce48e5aSMichal Kubecek case ETHTOOL_GPAUSEPARAM: 27369ce48e5aSMichal Kubecek case ETHTOOL_GRXCSUM: 27379ce48e5aSMichal Kubecek case ETHTOOL_GTXCSUM: 27389ce48e5aSMichal Kubecek case ETHTOOL_GSG: 27399ce48e5aSMichal Kubecek case ETHTOOL_GSSET_INFO: 27409ce48e5aSMichal Kubecek case ETHTOOL_GSTRINGS: 27419ce48e5aSMichal Kubecek case ETHTOOL_GSTATS: 27429ce48e5aSMichal Kubecek case ETHTOOL_GPHYSTATS: 27439ce48e5aSMichal Kubecek case ETHTOOL_GTSO: 27449ce48e5aSMichal Kubecek case ETHTOOL_GPERMADDR: 27459ce48e5aSMichal Kubecek case ETHTOOL_GUFO: 27469ce48e5aSMichal Kubecek case ETHTOOL_GGSO: 27479ce48e5aSMichal Kubecek case ETHTOOL_GGRO: 27489ce48e5aSMichal Kubecek case ETHTOOL_GFLAGS: 27499ce48e5aSMichal Kubecek case ETHTOOL_GPFLAGS: 27509ce48e5aSMichal Kubecek case ETHTOOL_GRXFH: 27519ce48e5aSMichal Kubecek case ETHTOOL_GRXRINGS: 27529ce48e5aSMichal Kubecek case ETHTOOL_GRXCLSRLCNT: 27539ce48e5aSMichal Kubecek case ETHTOOL_GRXCLSRULE: 27549ce48e5aSMichal Kubecek case ETHTOOL_GRXCLSRLALL: 27559ce48e5aSMichal Kubecek case ETHTOOL_GRXFHINDIR: 27569ce48e5aSMichal Kubecek case ETHTOOL_GRSSH: 27579ce48e5aSMichal Kubecek case ETHTOOL_GFEATURES: 27589ce48e5aSMichal Kubecek case ETHTOOL_GCHANNELS: 27599ce48e5aSMichal Kubecek case ETHTOOL_GET_TS_INFO: 27609ce48e5aSMichal Kubecek case ETHTOOL_GEEE: 27619ce48e5aSMichal Kubecek case ETHTOOL_GTUNABLE: 27629ce48e5aSMichal Kubecek case ETHTOOL_PHY_GTUNABLE: 27639ce48e5aSMichal Kubecek case ETHTOOL_GLINKSETTINGS: 27649ce48e5aSMichal Kubecek case ETHTOOL_GFECPARAM: 27659ce48e5aSMichal Kubecek break; 27669ce48e5aSMichal Kubecek default: 27679ce48e5aSMichal Kubecek if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) 27689ce48e5aSMichal Kubecek return -EPERM; 27699ce48e5aSMichal Kubecek } 27709ce48e5aSMichal Kubecek 2771f32a2137SHeiner Kallweit if (dev->dev.parent) 2772f32a2137SHeiner Kallweit pm_runtime_get_sync(dev->dev.parent); 2773f32a2137SHeiner Kallweit 2774f32a2137SHeiner Kallweit if (!netif_device_present(dev)) { 2775f32a2137SHeiner Kallweit rc = -ENODEV; 2776f32a2137SHeiner Kallweit goto out; 2777f32a2137SHeiner Kallweit } 2778f32a2137SHeiner Kallweit 27799ce48e5aSMichal Kubecek if (dev->ethtool_ops->begin) { 27809ce48e5aSMichal Kubecek rc = dev->ethtool_ops->begin(dev); 27819ce48e5aSMichal Kubecek if (rc < 0) 2782f32a2137SHeiner Kallweit goto out; 27839ce48e5aSMichal Kubecek } 27849ce48e5aSMichal Kubecek old_features = dev->features; 27859ce48e5aSMichal Kubecek 27869ce48e5aSMichal Kubecek switch (ethcmd) { 27879ce48e5aSMichal Kubecek case ETHTOOL_GSET: 27889ce48e5aSMichal Kubecek rc = ethtool_get_settings(dev, useraddr); 27899ce48e5aSMichal Kubecek break; 27909ce48e5aSMichal Kubecek case ETHTOOL_SSET: 27919ce48e5aSMichal Kubecek rc = ethtool_set_settings(dev, useraddr); 27929ce48e5aSMichal Kubecek break; 27939ce48e5aSMichal Kubecek case ETHTOOL_GDRVINFO: 2794095cfcfeSJakub Kicinski rc = ethtool_get_drvinfo(dev, devlink_state); 27959ce48e5aSMichal Kubecek break; 27969ce48e5aSMichal Kubecek case ETHTOOL_GREGS: 27979ce48e5aSMichal Kubecek rc = ethtool_get_regs(dev, useraddr); 27989ce48e5aSMichal Kubecek break; 27999ce48e5aSMichal Kubecek case ETHTOOL_GWOL: 28009ce48e5aSMichal Kubecek rc = ethtool_get_wol(dev, useraddr); 28019ce48e5aSMichal Kubecek break; 28029ce48e5aSMichal Kubecek case ETHTOOL_SWOL: 28039ce48e5aSMichal Kubecek rc = ethtool_set_wol(dev, useraddr); 28049ce48e5aSMichal Kubecek break; 28059ce48e5aSMichal Kubecek case ETHTOOL_GMSGLVL: 28069ce48e5aSMichal Kubecek rc = ethtool_get_value(dev, useraddr, ethcmd, 28079ce48e5aSMichal Kubecek dev->ethtool_ops->get_msglevel); 28089ce48e5aSMichal Kubecek break; 28099ce48e5aSMichal Kubecek case ETHTOOL_SMSGLVL: 28109ce48e5aSMichal Kubecek rc = ethtool_set_value_void(dev, useraddr, 28119ce48e5aSMichal Kubecek dev->ethtool_ops->set_msglevel); 28120bda7af3SMichal Kubecek if (!rc) 28130bda7af3SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_DEBUG_NTF, NULL); 28149ce48e5aSMichal Kubecek break; 28159ce48e5aSMichal Kubecek case ETHTOOL_GEEE: 28169ce48e5aSMichal Kubecek rc = ethtool_get_eee(dev, useraddr); 28179ce48e5aSMichal Kubecek break; 28189ce48e5aSMichal Kubecek case ETHTOOL_SEEE: 28199ce48e5aSMichal Kubecek rc = ethtool_set_eee(dev, useraddr); 28209ce48e5aSMichal Kubecek break; 28219ce48e5aSMichal Kubecek case ETHTOOL_NWAY_RST: 28229ce48e5aSMichal Kubecek rc = ethtool_nway_reset(dev); 28239ce48e5aSMichal Kubecek break; 28249ce48e5aSMichal Kubecek case ETHTOOL_GLINK: 28259ce48e5aSMichal Kubecek rc = ethtool_get_link(dev, useraddr); 28269ce48e5aSMichal Kubecek break; 28279ce48e5aSMichal Kubecek case ETHTOOL_GEEPROM: 28289ce48e5aSMichal Kubecek rc = ethtool_get_eeprom(dev, useraddr); 28299ce48e5aSMichal Kubecek break; 28309ce48e5aSMichal Kubecek case ETHTOOL_SEEPROM: 28319ce48e5aSMichal Kubecek rc = ethtool_set_eeprom(dev, useraddr); 28329ce48e5aSMichal Kubecek break; 28339ce48e5aSMichal Kubecek case ETHTOOL_GCOALESCE: 28349ce48e5aSMichal Kubecek rc = ethtool_get_coalesce(dev, useraddr); 28359ce48e5aSMichal Kubecek break; 28369ce48e5aSMichal Kubecek case ETHTOOL_SCOALESCE: 28379ce48e5aSMichal Kubecek rc = ethtool_set_coalesce(dev, useraddr); 28389ce48e5aSMichal Kubecek break; 28399ce48e5aSMichal Kubecek case ETHTOOL_GRINGPARAM: 28409ce48e5aSMichal Kubecek rc = ethtool_get_ringparam(dev, useraddr); 28419ce48e5aSMichal Kubecek break; 28429ce48e5aSMichal Kubecek case ETHTOOL_SRINGPARAM: 28439ce48e5aSMichal Kubecek rc = ethtool_set_ringparam(dev, useraddr); 28449ce48e5aSMichal Kubecek break; 28459ce48e5aSMichal Kubecek case ETHTOOL_GPAUSEPARAM: 28469ce48e5aSMichal Kubecek rc = ethtool_get_pauseparam(dev, useraddr); 28479ce48e5aSMichal Kubecek break; 28489ce48e5aSMichal Kubecek case ETHTOOL_SPAUSEPARAM: 28499ce48e5aSMichal Kubecek rc = ethtool_set_pauseparam(dev, useraddr); 28509ce48e5aSMichal Kubecek break; 28519ce48e5aSMichal Kubecek case ETHTOOL_TEST: 28529ce48e5aSMichal Kubecek rc = ethtool_self_test(dev, useraddr); 28539ce48e5aSMichal Kubecek break; 28549ce48e5aSMichal Kubecek case ETHTOOL_GSTRINGS: 28559ce48e5aSMichal Kubecek rc = ethtool_get_strings(dev, useraddr); 28569ce48e5aSMichal Kubecek break; 28579ce48e5aSMichal Kubecek case ETHTOOL_PHYS_ID: 28589ce48e5aSMichal Kubecek rc = ethtool_phys_id(dev, useraddr); 28599ce48e5aSMichal Kubecek break; 28609ce48e5aSMichal Kubecek case ETHTOOL_GSTATS: 28619ce48e5aSMichal Kubecek rc = ethtool_get_stats(dev, useraddr); 28629ce48e5aSMichal Kubecek break; 28639ce48e5aSMichal Kubecek case ETHTOOL_GPERMADDR: 28649ce48e5aSMichal Kubecek rc = ethtool_get_perm_addr(dev, useraddr); 28659ce48e5aSMichal Kubecek break; 28669ce48e5aSMichal Kubecek case ETHTOOL_GFLAGS: 28679ce48e5aSMichal Kubecek rc = ethtool_get_value(dev, useraddr, ethcmd, 28689ce48e5aSMichal Kubecek __ethtool_get_flags); 28699ce48e5aSMichal Kubecek break; 28709ce48e5aSMichal Kubecek case ETHTOOL_SFLAGS: 28719ce48e5aSMichal Kubecek rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags); 28729ce48e5aSMichal Kubecek break; 28739ce48e5aSMichal Kubecek case ETHTOOL_GPFLAGS: 28749ce48e5aSMichal Kubecek rc = ethtool_get_value(dev, useraddr, ethcmd, 28759ce48e5aSMichal Kubecek dev->ethtool_ops->get_priv_flags); 2876111dcba3SMichal Kubecek if (!rc) 2877111dcba3SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_PRIVFLAGS_NTF, NULL); 28789ce48e5aSMichal Kubecek break; 28799ce48e5aSMichal Kubecek case ETHTOOL_SPFLAGS: 28809ce48e5aSMichal Kubecek rc = ethtool_set_value(dev, useraddr, 28819ce48e5aSMichal Kubecek dev->ethtool_ops->set_priv_flags); 28829ce48e5aSMichal Kubecek break; 28839ce48e5aSMichal Kubecek case ETHTOOL_GRXFH: 28849ce48e5aSMichal Kubecek case ETHTOOL_GRXRINGS: 28859ce48e5aSMichal Kubecek case ETHTOOL_GRXCLSRLCNT: 28869ce48e5aSMichal Kubecek case ETHTOOL_GRXCLSRULE: 28879ce48e5aSMichal Kubecek case ETHTOOL_GRXCLSRLALL: 28889ce48e5aSMichal Kubecek rc = ethtool_get_rxnfc(dev, ethcmd, useraddr); 28899ce48e5aSMichal Kubecek break; 28909ce48e5aSMichal Kubecek case ETHTOOL_SRXFH: 28919ce48e5aSMichal Kubecek case ETHTOOL_SRXCLSRLDEL: 28929ce48e5aSMichal Kubecek case ETHTOOL_SRXCLSRLINS: 28939ce48e5aSMichal Kubecek rc = ethtool_set_rxnfc(dev, ethcmd, useraddr); 28949ce48e5aSMichal Kubecek break; 28959ce48e5aSMichal Kubecek case ETHTOOL_FLASHDEV: 2896095cfcfeSJakub Kicinski rc = ethtool_flash_device(dev, devlink_state); 28979ce48e5aSMichal Kubecek break; 28989ce48e5aSMichal Kubecek case ETHTOOL_RESET: 28999ce48e5aSMichal Kubecek rc = ethtool_reset(dev, useraddr); 29009ce48e5aSMichal Kubecek break; 29019ce48e5aSMichal Kubecek case ETHTOOL_GSSET_INFO: 29029ce48e5aSMichal Kubecek rc = ethtool_get_sset_info(dev, useraddr); 29039ce48e5aSMichal Kubecek break; 29049ce48e5aSMichal Kubecek case ETHTOOL_GRXFHINDIR: 29059ce48e5aSMichal Kubecek rc = ethtool_get_rxfh_indir(dev, useraddr); 29069ce48e5aSMichal Kubecek break; 29079ce48e5aSMichal Kubecek case ETHTOOL_SRXFHINDIR: 29089ce48e5aSMichal Kubecek rc = ethtool_set_rxfh_indir(dev, useraddr); 29099ce48e5aSMichal Kubecek break; 29109ce48e5aSMichal Kubecek case ETHTOOL_GRSSH: 29119ce48e5aSMichal Kubecek rc = ethtool_get_rxfh(dev, useraddr); 29129ce48e5aSMichal Kubecek break; 29139ce48e5aSMichal Kubecek case ETHTOOL_SRSSH: 29149ce48e5aSMichal Kubecek rc = ethtool_set_rxfh(dev, useraddr); 29159ce48e5aSMichal Kubecek break; 29169ce48e5aSMichal Kubecek case ETHTOOL_GFEATURES: 29179ce48e5aSMichal Kubecek rc = ethtool_get_features(dev, useraddr); 29189ce48e5aSMichal Kubecek break; 29199ce48e5aSMichal Kubecek case ETHTOOL_SFEATURES: 29209ce48e5aSMichal Kubecek rc = ethtool_set_features(dev, useraddr); 29219ce48e5aSMichal Kubecek break; 29229ce48e5aSMichal Kubecek case ETHTOOL_GTXCSUM: 29239ce48e5aSMichal Kubecek case ETHTOOL_GRXCSUM: 29249ce48e5aSMichal Kubecek case ETHTOOL_GSG: 29259ce48e5aSMichal Kubecek case ETHTOOL_GTSO: 29269ce48e5aSMichal Kubecek case ETHTOOL_GGSO: 29279ce48e5aSMichal Kubecek case ETHTOOL_GGRO: 29289ce48e5aSMichal Kubecek rc = ethtool_get_one_feature(dev, useraddr, ethcmd); 29299ce48e5aSMichal Kubecek break; 29309ce48e5aSMichal Kubecek case ETHTOOL_STXCSUM: 29319ce48e5aSMichal Kubecek case ETHTOOL_SRXCSUM: 29329ce48e5aSMichal Kubecek case ETHTOOL_SSG: 29339ce48e5aSMichal Kubecek case ETHTOOL_STSO: 29349ce48e5aSMichal Kubecek case ETHTOOL_SGSO: 29359ce48e5aSMichal Kubecek case ETHTOOL_SGRO: 29369ce48e5aSMichal Kubecek rc = ethtool_set_one_feature(dev, useraddr, ethcmd); 29379ce48e5aSMichal Kubecek break; 29389ce48e5aSMichal Kubecek case ETHTOOL_GCHANNELS: 29399ce48e5aSMichal Kubecek rc = ethtool_get_channels(dev, useraddr); 29409ce48e5aSMichal Kubecek break; 29419ce48e5aSMichal Kubecek case ETHTOOL_SCHANNELS: 29429ce48e5aSMichal Kubecek rc = ethtool_set_channels(dev, useraddr); 29439ce48e5aSMichal Kubecek break; 29449ce48e5aSMichal Kubecek case ETHTOOL_SET_DUMP: 29459ce48e5aSMichal Kubecek rc = ethtool_set_dump(dev, useraddr); 29469ce48e5aSMichal Kubecek break; 29479ce48e5aSMichal Kubecek case ETHTOOL_GET_DUMP_FLAG: 29489ce48e5aSMichal Kubecek rc = ethtool_get_dump_flag(dev, useraddr); 29499ce48e5aSMichal Kubecek break; 29509ce48e5aSMichal Kubecek case ETHTOOL_GET_DUMP_DATA: 29519ce48e5aSMichal Kubecek rc = ethtool_get_dump_data(dev, useraddr); 29529ce48e5aSMichal Kubecek break; 29539ce48e5aSMichal Kubecek case ETHTOOL_GET_TS_INFO: 29549ce48e5aSMichal Kubecek rc = ethtool_get_ts_info(dev, useraddr); 29559ce48e5aSMichal Kubecek break; 29569ce48e5aSMichal Kubecek case ETHTOOL_GMODULEINFO: 29579ce48e5aSMichal Kubecek rc = ethtool_get_module_info(dev, useraddr); 29589ce48e5aSMichal Kubecek break; 29599ce48e5aSMichal Kubecek case ETHTOOL_GMODULEEEPROM: 29609ce48e5aSMichal Kubecek rc = ethtool_get_module_eeprom(dev, useraddr); 29619ce48e5aSMichal Kubecek break; 29629ce48e5aSMichal Kubecek case ETHTOOL_GTUNABLE: 29639ce48e5aSMichal Kubecek rc = ethtool_get_tunable(dev, useraddr); 29649ce48e5aSMichal Kubecek break; 29659ce48e5aSMichal Kubecek case ETHTOOL_STUNABLE: 29669ce48e5aSMichal Kubecek rc = ethtool_set_tunable(dev, useraddr); 29679ce48e5aSMichal Kubecek break; 29689ce48e5aSMichal Kubecek case ETHTOOL_GPHYSTATS: 29699ce48e5aSMichal Kubecek rc = ethtool_get_phy_stats(dev, useraddr); 29709ce48e5aSMichal Kubecek break; 29719ce48e5aSMichal Kubecek case ETHTOOL_PERQUEUE: 29729ce48e5aSMichal Kubecek rc = ethtool_set_per_queue(dev, useraddr, sub_cmd); 29739ce48e5aSMichal Kubecek break; 29749ce48e5aSMichal Kubecek case ETHTOOL_GLINKSETTINGS: 29759ce48e5aSMichal Kubecek rc = ethtool_get_link_ksettings(dev, useraddr); 29769ce48e5aSMichal Kubecek break; 29779ce48e5aSMichal Kubecek case ETHTOOL_SLINKSETTINGS: 29789ce48e5aSMichal Kubecek rc = ethtool_set_link_ksettings(dev, useraddr); 29799ce48e5aSMichal Kubecek break; 29809ce48e5aSMichal Kubecek case ETHTOOL_PHY_GTUNABLE: 29819ce48e5aSMichal Kubecek rc = get_phy_tunable(dev, useraddr); 29829ce48e5aSMichal Kubecek break; 29839ce48e5aSMichal Kubecek case ETHTOOL_PHY_STUNABLE: 29849ce48e5aSMichal Kubecek rc = set_phy_tunable(dev, useraddr); 29859ce48e5aSMichal Kubecek break; 29869ce48e5aSMichal Kubecek case ETHTOOL_GFECPARAM: 29879ce48e5aSMichal Kubecek rc = ethtool_get_fecparam(dev, useraddr); 29889ce48e5aSMichal Kubecek break; 29899ce48e5aSMichal Kubecek case ETHTOOL_SFECPARAM: 29909ce48e5aSMichal Kubecek rc = ethtool_set_fecparam(dev, useraddr); 29919ce48e5aSMichal Kubecek break; 29929ce48e5aSMichal Kubecek default: 29939ce48e5aSMichal Kubecek rc = -EOPNOTSUPP; 29949ce48e5aSMichal Kubecek } 29959ce48e5aSMichal Kubecek 29969ce48e5aSMichal Kubecek if (dev->ethtool_ops->complete) 29979ce48e5aSMichal Kubecek dev->ethtool_ops->complete(dev); 29989ce48e5aSMichal Kubecek 29999ce48e5aSMichal Kubecek if (old_features != dev->features) 30009ce48e5aSMichal Kubecek netdev_features_change(dev); 3001f32a2137SHeiner Kallweit out: 3002f32a2137SHeiner Kallweit if (dev->dev.parent) 3003f32a2137SHeiner Kallweit pm_runtime_put(dev->dev.parent); 30049ce48e5aSMichal Kubecek 30059ce48e5aSMichal Kubecek return rc; 30069ce48e5aSMichal Kubecek } 30079ce48e5aSMichal Kubecek 3008f49deaa6SJakub Kicinski int dev_ethtool(struct net *net, struct ifreq *ifr, void __user *useraddr) 3009f49deaa6SJakub Kicinski { 3010095cfcfeSJakub Kicinski struct ethtool_devlink_compat *state; 3011095cfcfeSJakub Kicinski u32 ethcmd; 3012f49deaa6SJakub Kicinski int rc; 3013f49deaa6SJakub Kicinski 3014095cfcfeSJakub Kicinski if (copy_from_user(ðcmd, useraddr, sizeof(ethcmd))) 3015095cfcfeSJakub Kicinski return -EFAULT; 3016f49deaa6SJakub Kicinski 3017095cfcfeSJakub Kicinski state = kzalloc(sizeof(*state), GFP_KERNEL); 3018095cfcfeSJakub Kicinski if (!state) 3019095cfcfeSJakub Kicinski return -ENOMEM; 3020095cfcfeSJakub Kicinski 3021095cfcfeSJakub Kicinski switch (ethcmd) { 3022095cfcfeSJakub Kicinski case ETHTOOL_FLASHDEV: 3023095cfcfeSJakub Kicinski if (copy_from_user(&state->efl, useraddr, sizeof(state->efl))) { 3024095cfcfeSJakub Kicinski rc = -EFAULT; 3025095cfcfeSJakub Kicinski goto exit_free; 3026095cfcfeSJakub Kicinski } 3027095cfcfeSJakub Kicinski state->efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0; 3028095cfcfeSJakub Kicinski break; 3029095cfcfeSJakub Kicinski } 3030095cfcfeSJakub Kicinski 3031095cfcfeSJakub Kicinski rtnl_lock(); 3032095cfcfeSJakub Kicinski rc = __dev_ethtool(net, ifr, useraddr, ethcmd, state); 3033095cfcfeSJakub Kicinski rtnl_unlock(); 3034095cfcfeSJakub Kicinski if (rc) 3035095cfcfeSJakub Kicinski goto exit_free; 3036095cfcfeSJakub Kicinski 3037095cfcfeSJakub Kicinski switch (ethcmd) { 30381af0a094SJakub Kicinski case ETHTOOL_FLASHDEV: 30391af0a094SJakub Kicinski if (state->devlink) 30401af0a094SJakub Kicinski rc = devlink_compat_flash_update(state->devlink, 30411af0a094SJakub Kicinski state->efl.data); 30421af0a094SJakub Kicinski break; 3043095cfcfeSJakub Kicinski case ETHTOOL_GDRVINFO: 30441af0a094SJakub Kicinski if (state->devlink) 30451af0a094SJakub Kicinski devlink_compat_running_version(state->devlink, 30461af0a094SJakub Kicinski state->info.fw_version, 30471af0a094SJakub Kicinski sizeof(state->info.fw_version)); 3048095cfcfeSJakub Kicinski if (copy_to_user(useraddr, &state->info, sizeof(state->info))) { 3049095cfcfeSJakub Kicinski rc = -EFAULT; 3050095cfcfeSJakub Kicinski goto exit_free; 3051095cfcfeSJakub Kicinski } 3052095cfcfeSJakub Kicinski break; 3053095cfcfeSJakub Kicinski } 3054095cfcfeSJakub Kicinski 3055095cfcfeSJakub Kicinski exit_free: 30561af0a094SJakub Kicinski if (state->devlink) 30571af0a094SJakub Kicinski devlink_put(state->devlink); 3058095cfcfeSJakub Kicinski kfree(state); 3059f49deaa6SJakub Kicinski return rc; 3060f49deaa6SJakub Kicinski } 3061f49deaa6SJakub Kicinski 30629ce48e5aSMichal Kubecek struct ethtool_rx_flow_key { 30639ce48e5aSMichal Kubecek struct flow_dissector_key_basic basic; 30649ce48e5aSMichal Kubecek union { 30659ce48e5aSMichal Kubecek struct flow_dissector_key_ipv4_addrs ipv4; 30669ce48e5aSMichal Kubecek struct flow_dissector_key_ipv6_addrs ipv6; 30679ce48e5aSMichal Kubecek }; 30689ce48e5aSMichal Kubecek struct flow_dissector_key_ports tp; 30699ce48e5aSMichal Kubecek struct flow_dissector_key_ip ip; 30709ce48e5aSMichal Kubecek struct flow_dissector_key_vlan vlan; 30719ce48e5aSMichal Kubecek struct flow_dissector_key_eth_addrs eth_addrs; 30729ce48e5aSMichal Kubecek } __aligned(BITS_PER_LONG / 8); /* Ensure that we can do comparisons as longs. */ 30739ce48e5aSMichal Kubecek 30749ce48e5aSMichal Kubecek struct ethtool_rx_flow_match { 30759ce48e5aSMichal Kubecek struct flow_dissector dissector; 30769ce48e5aSMichal Kubecek struct ethtool_rx_flow_key key; 30779ce48e5aSMichal Kubecek struct ethtool_rx_flow_key mask; 30789ce48e5aSMichal Kubecek }; 30799ce48e5aSMichal Kubecek 30809ce48e5aSMichal Kubecek struct ethtool_rx_flow_rule * 30819ce48e5aSMichal Kubecek ethtool_rx_flow_rule_create(const struct ethtool_rx_flow_spec_input *input) 30829ce48e5aSMichal Kubecek { 30839ce48e5aSMichal Kubecek const struct ethtool_rx_flow_spec *fs = input->fs; 30849ce48e5aSMichal Kubecek static struct in6_addr zero_addr = {}; 30859ce48e5aSMichal Kubecek struct ethtool_rx_flow_match *match; 30869ce48e5aSMichal Kubecek struct ethtool_rx_flow_rule *flow; 30879ce48e5aSMichal Kubecek struct flow_action_entry *act; 30889ce48e5aSMichal Kubecek 30899ce48e5aSMichal Kubecek flow = kzalloc(sizeof(struct ethtool_rx_flow_rule) + 30909ce48e5aSMichal Kubecek sizeof(struct ethtool_rx_flow_match), GFP_KERNEL); 30919ce48e5aSMichal Kubecek if (!flow) 30929ce48e5aSMichal Kubecek return ERR_PTR(-ENOMEM); 30939ce48e5aSMichal Kubecek 30949ce48e5aSMichal Kubecek /* ethtool_rx supports only one single action per rule. */ 30959ce48e5aSMichal Kubecek flow->rule = flow_rule_alloc(1); 30969ce48e5aSMichal Kubecek if (!flow->rule) { 30979ce48e5aSMichal Kubecek kfree(flow); 30989ce48e5aSMichal Kubecek return ERR_PTR(-ENOMEM); 30999ce48e5aSMichal Kubecek } 31009ce48e5aSMichal Kubecek 31019ce48e5aSMichal Kubecek match = (struct ethtool_rx_flow_match *)flow->priv; 31029ce48e5aSMichal Kubecek flow->rule->match.dissector = &match->dissector; 31039ce48e5aSMichal Kubecek flow->rule->match.mask = &match->mask; 31049ce48e5aSMichal Kubecek flow->rule->match.key = &match->key; 31059ce48e5aSMichal Kubecek 31069ce48e5aSMichal Kubecek match->mask.basic.n_proto = htons(0xffff); 31079ce48e5aSMichal Kubecek 31089ce48e5aSMichal Kubecek switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) { 31099ce48e5aSMichal Kubecek case ETHER_FLOW: { 31109ce48e5aSMichal Kubecek const struct ethhdr *ether_spec, *ether_m_spec; 31119ce48e5aSMichal Kubecek 31129ce48e5aSMichal Kubecek ether_spec = &fs->h_u.ether_spec; 31139ce48e5aSMichal Kubecek ether_m_spec = &fs->m_u.ether_spec; 31149ce48e5aSMichal Kubecek 31159ce48e5aSMichal Kubecek if (!is_zero_ether_addr(ether_m_spec->h_source)) { 31169ce48e5aSMichal Kubecek ether_addr_copy(match->key.eth_addrs.src, 31179ce48e5aSMichal Kubecek ether_spec->h_source); 31189ce48e5aSMichal Kubecek ether_addr_copy(match->mask.eth_addrs.src, 31199ce48e5aSMichal Kubecek ether_m_spec->h_source); 31209ce48e5aSMichal Kubecek } 31219ce48e5aSMichal Kubecek if (!is_zero_ether_addr(ether_m_spec->h_dest)) { 31229ce48e5aSMichal Kubecek ether_addr_copy(match->key.eth_addrs.dst, 31239ce48e5aSMichal Kubecek ether_spec->h_dest); 31249ce48e5aSMichal Kubecek ether_addr_copy(match->mask.eth_addrs.dst, 31259ce48e5aSMichal Kubecek ether_m_spec->h_dest); 31269ce48e5aSMichal Kubecek } 31279ce48e5aSMichal Kubecek if (ether_m_spec->h_proto) { 31289ce48e5aSMichal Kubecek match->key.basic.n_proto = ether_spec->h_proto; 31299ce48e5aSMichal Kubecek match->mask.basic.n_proto = ether_m_spec->h_proto; 31309ce48e5aSMichal Kubecek } 31319ce48e5aSMichal Kubecek } 31329ce48e5aSMichal Kubecek break; 31339ce48e5aSMichal Kubecek case TCP_V4_FLOW: 31349ce48e5aSMichal Kubecek case UDP_V4_FLOW: { 31359ce48e5aSMichal Kubecek const struct ethtool_tcpip4_spec *v4_spec, *v4_m_spec; 31369ce48e5aSMichal Kubecek 31379ce48e5aSMichal Kubecek match->key.basic.n_proto = htons(ETH_P_IP); 31389ce48e5aSMichal Kubecek 31399ce48e5aSMichal Kubecek v4_spec = &fs->h_u.tcp_ip4_spec; 31409ce48e5aSMichal Kubecek v4_m_spec = &fs->m_u.tcp_ip4_spec; 31419ce48e5aSMichal Kubecek 31429ce48e5aSMichal Kubecek if (v4_m_spec->ip4src) { 31439ce48e5aSMichal Kubecek match->key.ipv4.src = v4_spec->ip4src; 31449ce48e5aSMichal Kubecek match->mask.ipv4.src = v4_m_spec->ip4src; 31459ce48e5aSMichal Kubecek } 31469ce48e5aSMichal Kubecek if (v4_m_spec->ip4dst) { 31479ce48e5aSMichal Kubecek match->key.ipv4.dst = v4_spec->ip4dst; 31489ce48e5aSMichal Kubecek match->mask.ipv4.dst = v4_m_spec->ip4dst; 31499ce48e5aSMichal Kubecek } 31509ce48e5aSMichal Kubecek if (v4_m_spec->ip4src || 31519ce48e5aSMichal Kubecek v4_m_spec->ip4dst) { 31529ce48e5aSMichal Kubecek match->dissector.used_keys |= 31539ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_IPV4_ADDRS); 31549ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_IPV4_ADDRS] = 31559ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, ipv4); 31569ce48e5aSMichal Kubecek } 31579ce48e5aSMichal Kubecek if (v4_m_spec->psrc) { 31589ce48e5aSMichal Kubecek match->key.tp.src = v4_spec->psrc; 31599ce48e5aSMichal Kubecek match->mask.tp.src = v4_m_spec->psrc; 31609ce48e5aSMichal Kubecek } 31619ce48e5aSMichal Kubecek if (v4_m_spec->pdst) { 31629ce48e5aSMichal Kubecek match->key.tp.dst = v4_spec->pdst; 31639ce48e5aSMichal Kubecek match->mask.tp.dst = v4_m_spec->pdst; 31649ce48e5aSMichal Kubecek } 31659ce48e5aSMichal Kubecek if (v4_m_spec->psrc || 31669ce48e5aSMichal Kubecek v4_m_spec->pdst) { 31679ce48e5aSMichal Kubecek match->dissector.used_keys |= 31689ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_PORTS); 31699ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] = 31709ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, tp); 31719ce48e5aSMichal Kubecek } 31729ce48e5aSMichal Kubecek if (v4_m_spec->tos) { 31739ce48e5aSMichal Kubecek match->key.ip.tos = v4_spec->tos; 31749ce48e5aSMichal Kubecek match->mask.ip.tos = v4_m_spec->tos; 31759ce48e5aSMichal Kubecek match->dissector.used_keys |= 31769ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_IP); 31779ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_IP] = 31789ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, ip); 31799ce48e5aSMichal Kubecek } 31809ce48e5aSMichal Kubecek } 31819ce48e5aSMichal Kubecek break; 31829ce48e5aSMichal Kubecek case TCP_V6_FLOW: 31839ce48e5aSMichal Kubecek case UDP_V6_FLOW: { 31849ce48e5aSMichal Kubecek const struct ethtool_tcpip6_spec *v6_spec, *v6_m_spec; 31859ce48e5aSMichal Kubecek 31869ce48e5aSMichal Kubecek match->key.basic.n_proto = htons(ETH_P_IPV6); 31879ce48e5aSMichal Kubecek 31889ce48e5aSMichal Kubecek v6_spec = &fs->h_u.tcp_ip6_spec; 31899ce48e5aSMichal Kubecek v6_m_spec = &fs->m_u.tcp_ip6_spec; 31909ce48e5aSMichal Kubecek if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr))) { 31919ce48e5aSMichal Kubecek memcpy(&match->key.ipv6.src, v6_spec->ip6src, 31929ce48e5aSMichal Kubecek sizeof(match->key.ipv6.src)); 31939ce48e5aSMichal Kubecek memcpy(&match->mask.ipv6.src, v6_m_spec->ip6src, 31949ce48e5aSMichal Kubecek sizeof(match->mask.ipv6.src)); 31959ce48e5aSMichal Kubecek } 31969ce48e5aSMichal Kubecek if (memcmp(v6_m_spec->ip6dst, &zero_addr, sizeof(zero_addr))) { 31979ce48e5aSMichal Kubecek memcpy(&match->key.ipv6.dst, v6_spec->ip6dst, 31989ce48e5aSMichal Kubecek sizeof(match->key.ipv6.dst)); 31999ce48e5aSMichal Kubecek memcpy(&match->mask.ipv6.dst, v6_m_spec->ip6dst, 32009ce48e5aSMichal Kubecek sizeof(match->mask.ipv6.dst)); 32019ce48e5aSMichal Kubecek } 32029ce48e5aSMichal Kubecek if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr)) || 320321a739c6SGaurav Singh memcmp(v6_m_spec->ip6dst, &zero_addr, sizeof(zero_addr))) { 32049ce48e5aSMichal Kubecek match->dissector.used_keys |= 32059ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_IPV6_ADDRS); 32069ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_IPV6_ADDRS] = 32079ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, ipv6); 32089ce48e5aSMichal Kubecek } 32099ce48e5aSMichal Kubecek if (v6_m_spec->psrc) { 32109ce48e5aSMichal Kubecek match->key.tp.src = v6_spec->psrc; 32119ce48e5aSMichal Kubecek match->mask.tp.src = v6_m_spec->psrc; 32129ce48e5aSMichal Kubecek } 32139ce48e5aSMichal Kubecek if (v6_m_spec->pdst) { 32149ce48e5aSMichal Kubecek match->key.tp.dst = v6_spec->pdst; 32159ce48e5aSMichal Kubecek match->mask.tp.dst = v6_m_spec->pdst; 32169ce48e5aSMichal Kubecek } 32179ce48e5aSMichal Kubecek if (v6_m_spec->psrc || 32189ce48e5aSMichal Kubecek v6_m_spec->pdst) { 32199ce48e5aSMichal Kubecek match->dissector.used_keys |= 32209ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_PORTS); 32219ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] = 32229ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, tp); 32239ce48e5aSMichal Kubecek } 32249ce48e5aSMichal Kubecek if (v6_m_spec->tclass) { 32259ce48e5aSMichal Kubecek match->key.ip.tos = v6_spec->tclass; 32269ce48e5aSMichal Kubecek match->mask.ip.tos = v6_m_spec->tclass; 32279ce48e5aSMichal Kubecek match->dissector.used_keys |= 32289ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_IP); 32299ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_IP] = 32309ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, ip); 32319ce48e5aSMichal Kubecek } 32329ce48e5aSMichal Kubecek } 32339ce48e5aSMichal Kubecek break; 32349ce48e5aSMichal Kubecek default: 32359ce48e5aSMichal Kubecek ethtool_rx_flow_rule_destroy(flow); 32369ce48e5aSMichal Kubecek return ERR_PTR(-EINVAL); 32379ce48e5aSMichal Kubecek } 32389ce48e5aSMichal Kubecek 32399ce48e5aSMichal Kubecek switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) { 32409ce48e5aSMichal Kubecek case TCP_V4_FLOW: 32419ce48e5aSMichal Kubecek case TCP_V6_FLOW: 32429ce48e5aSMichal Kubecek match->key.basic.ip_proto = IPPROTO_TCP; 3243d0a84e1fSVishal Kulkarni match->mask.basic.ip_proto = 0xff; 32449ce48e5aSMichal Kubecek break; 32459ce48e5aSMichal Kubecek case UDP_V4_FLOW: 32469ce48e5aSMichal Kubecek case UDP_V6_FLOW: 32479ce48e5aSMichal Kubecek match->key.basic.ip_proto = IPPROTO_UDP; 3248d0a84e1fSVishal Kulkarni match->mask.basic.ip_proto = 0xff; 32499ce48e5aSMichal Kubecek break; 32509ce48e5aSMichal Kubecek } 32519ce48e5aSMichal Kubecek 32529ce48e5aSMichal Kubecek match->dissector.used_keys |= BIT(FLOW_DISSECTOR_KEY_BASIC); 32539ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_BASIC] = 32549ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, basic); 32559ce48e5aSMichal Kubecek 32569ce48e5aSMichal Kubecek if (fs->flow_type & FLOW_EXT) { 32579ce48e5aSMichal Kubecek const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext; 32589ce48e5aSMichal Kubecek const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext; 32599ce48e5aSMichal Kubecek 32609ce48e5aSMichal Kubecek if (ext_m_spec->vlan_etype) { 32619ce48e5aSMichal Kubecek match->key.vlan.vlan_tpid = ext_h_spec->vlan_etype; 32629ce48e5aSMichal Kubecek match->mask.vlan.vlan_tpid = ext_m_spec->vlan_etype; 32639ce48e5aSMichal Kubecek } 32649ce48e5aSMichal Kubecek 32659ce48e5aSMichal Kubecek if (ext_m_spec->vlan_tci) { 32669ce48e5aSMichal Kubecek match->key.vlan.vlan_id = 32679ce48e5aSMichal Kubecek ntohs(ext_h_spec->vlan_tci) & 0x0fff; 32689ce48e5aSMichal Kubecek match->mask.vlan.vlan_id = 32699ce48e5aSMichal Kubecek ntohs(ext_m_spec->vlan_tci) & 0x0fff; 32709ce48e5aSMichal Kubecek 32719ce48e5aSMichal Kubecek match->key.vlan.vlan_dei = 32729ce48e5aSMichal Kubecek !!(ext_h_spec->vlan_tci & htons(0x1000)); 32739ce48e5aSMichal Kubecek match->mask.vlan.vlan_dei = 32749ce48e5aSMichal Kubecek !!(ext_m_spec->vlan_tci & htons(0x1000)); 32759ce48e5aSMichal Kubecek 32769ce48e5aSMichal Kubecek match->key.vlan.vlan_priority = 32779ce48e5aSMichal Kubecek (ntohs(ext_h_spec->vlan_tci) & 0xe000) >> 13; 32789ce48e5aSMichal Kubecek match->mask.vlan.vlan_priority = 32799ce48e5aSMichal Kubecek (ntohs(ext_m_spec->vlan_tci) & 0xe000) >> 13; 32809ce48e5aSMichal Kubecek } 32819ce48e5aSMichal Kubecek 32829ce48e5aSMichal Kubecek if (ext_m_spec->vlan_etype || 32839ce48e5aSMichal Kubecek ext_m_spec->vlan_tci) { 32849ce48e5aSMichal Kubecek match->dissector.used_keys |= 32859ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_VLAN); 32869ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_VLAN] = 32879ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, vlan); 32889ce48e5aSMichal Kubecek } 32899ce48e5aSMichal Kubecek } 32909ce48e5aSMichal Kubecek if (fs->flow_type & FLOW_MAC_EXT) { 32919ce48e5aSMichal Kubecek const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext; 32929ce48e5aSMichal Kubecek const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext; 32939ce48e5aSMichal Kubecek 32949ce48e5aSMichal Kubecek memcpy(match->key.eth_addrs.dst, ext_h_spec->h_dest, 32959ce48e5aSMichal Kubecek ETH_ALEN); 32969ce48e5aSMichal Kubecek memcpy(match->mask.eth_addrs.dst, ext_m_spec->h_dest, 32979ce48e5aSMichal Kubecek ETH_ALEN); 32989ce48e5aSMichal Kubecek 32999ce48e5aSMichal Kubecek match->dissector.used_keys |= 33009ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_ETH_ADDRS); 33019ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_ETH_ADDRS] = 33029ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, eth_addrs); 33039ce48e5aSMichal Kubecek } 33049ce48e5aSMichal Kubecek 33059ce48e5aSMichal Kubecek act = &flow->rule->action.entries[0]; 33069ce48e5aSMichal Kubecek switch (fs->ring_cookie) { 33079ce48e5aSMichal Kubecek case RX_CLS_FLOW_DISC: 33089ce48e5aSMichal Kubecek act->id = FLOW_ACTION_DROP; 33099ce48e5aSMichal Kubecek break; 33109ce48e5aSMichal Kubecek case RX_CLS_FLOW_WAKE: 33119ce48e5aSMichal Kubecek act->id = FLOW_ACTION_WAKE; 33129ce48e5aSMichal Kubecek break; 33139ce48e5aSMichal Kubecek default: 33149ce48e5aSMichal Kubecek act->id = FLOW_ACTION_QUEUE; 33159ce48e5aSMichal Kubecek if (fs->flow_type & FLOW_RSS) 33169ce48e5aSMichal Kubecek act->queue.ctx = input->rss_ctx; 33179ce48e5aSMichal Kubecek 33189ce48e5aSMichal Kubecek act->queue.vf = ethtool_get_flow_spec_ring_vf(fs->ring_cookie); 33199ce48e5aSMichal Kubecek act->queue.index = ethtool_get_flow_spec_ring(fs->ring_cookie); 33209ce48e5aSMichal Kubecek break; 33219ce48e5aSMichal Kubecek } 33229ce48e5aSMichal Kubecek 33239ce48e5aSMichal Kubecek return flow; 33249ce48e5aSMichal Kubecek } 33259ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_rx_flow_rule_create); 33269ce48e5aSMichal Kubecek 33279ce48e5aSMichal Kubecek void ethtool_rx_flow_rule_destroy(struct ethtool_rx_flow_rule *flow) 33289ce48e5aSMichal Kubecek { 33299ce48e5aSMichal Kubecek kfree(flow->rule); 33309ce48e5aSMichal Kubecek kfree(flow); 33319ce48e5aSMichal Kubecek } 33329ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_rx_flow_rule_destroy); 3333