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 { 471af0a094SJakub Kicinski struct devlink_port *devlink_port; 481af0a094SJakub Kicinski 491af0a094SJakub Kicinski if (!dev->netdev_ops->ndo_get_devlink_port) 501af0a094SJakub Kicinski return NULL; 511af0a094SJakub Kicinski 521af0a094SJakub Kicinski devlink_port = dev->netdev_ops->ndo_get_devlink_port(dev); 531af0a094SJakub Kicinski if (!devlink_port) 541af0a094SJakub Kicinski return NULL; 551af0a094SJakub Kicinski 561af0a094SJakub Kicinski return devlink_try_get(devlink_port->devlink); 571af0a094SJakub Kicinski } 581af0a094SJakub Kicinski 599ce48e5aSMichal Kubecek /* 609ce48e5aSMichal Kubecek * Some useful ethtool_ops methods that're device independent. 619ce48e5aSMichal Kubecek * If we find that all drivers want to do the same thing here, 629ce48e5aSMichal Kubecek * we can turn these into dev_() function calls. 639ce48e5aSMichal Kubecek */ 649ce48e5aSMichal Kubecek 659ce48e5aSMichal Kubecek u32 ethtool_op_get_link(struct net_device *dev) 669ce48e5aSMichal Kubecek { 679ce48e5aSMichal Kubecek return netif_carrier_ok(dev) ? 1 : 0; 689ce48e5aSMichal Kubecek } 699ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_op_get_link); 709ce48e5aSMichal Kubecek 719ce48e5aSMichal Kubecek int ethtool_op_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info) 729ce48e5aSMichal Kubecek { 739ce48e5aSMichal Kubecek info->so_timestamping = 749ce48e5aSMichal Kubecek SOF_TIMESTAMPING_TX_SOFTWARE | 759ce48e5aSMichal Kubecek SOF_TIMESTAMPING_RX_SOFTWARE | 769ce48e5aSMichal Kubecek SOF_TIMESTAMPING_SOFTWARE; 779ce48e5aSMichal Kubecek info->phc_index = -1; 789ce48e5aSMichal Kubecek return 0; 799ce48e5aSMichal Kubecek } 809ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_op_get_ts_info); 819ce48e5aSMichal Kubecek 829ce48e5aSMichal Kubecek /* Handlers for each ethtool command */ 839ce48e5aSMichal Kubecek 849ce48e5aSMichal Kubecek static int ethtool_get_features(struct net_device *dev, void __user *useraddr) 859ce48e5aSMichal Kubecek { 869ce48e5aSMichal Kubecek struct ethtool_gfeatures cmd = { 879ce48e5aSMichal Kubecek .cmd = ETHTOOL_GFEATURES, 889ce48e5aSMichal Kubecek .size = ETHTOOL_DEV_FEATURE_WORDS, 899ce48e5aSMichal Kubecek }; 909ce48e5aSMichal Kubecek struct ethtool_get_features_block features[ETHTOOL_DEV_FEATURE_WORDS]; 919ce48e5aSMichal Kubecek u32 __user *sizeaddr; 929ce48e5aSMichal Kubecek u32 copy_size; 939ce48e5aSMichal Kubecek int i; 949ce48e5aSMichal Kubecek 959ce48e5aSMichal Kubecek /* in case feature bits run out again */ 969ce48e5aSMichal Kubecek BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS * sizeof(u32) > sizeof(netdev_features_t)); 979ce48e5aSMichal Kubecek 989ce48e5aSMichal Kubecek for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) { 999ce48e5aSMichal Kubecek features[i].available = (u32)(dev->hw_features >> (32 * i)); 1009ce48e5aSMichal Kubecek features[i].requested = (u32)(dev->wanted_features >> (32 * i)); 1019ce48e5aSMichal Kubecek features[i].active = (u32)(dev->features >> (32 * i)); 1029ce48e5aSMichal Kubecek features[i].never_changed = 1039ce48e5aSMichal Kubecek (u32)(NETIF_F_NEVER_CHANGE >> (32 * i)); 1049ce48e5aSMichal Kubecek } 1059ce48e5aSMichal Kubecek 1069ce48e5aSMichal Kubecek sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size); 1079ce48e5aSMichal Kubecek if (get_user(copy_size, sizeaddr)) 1089ce48e5aSMichal Kubecek return -EFAULT; 1099ce48e5aSMichal Kubecek 1109ce48e5aSMichal Kubecek if (copy_size > ETHTOOL_DEV_FEATURE_WORDS) 1119ce48e5aSMichal Kubecek copy_size = ETHTOOL_DEV_FEATURE_WORDS; 1129ce48e5aSMichal Kubecek 1139ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &cmd, sizeof(cmd))) 1149ce48e5aSMichal Kubecek return -EFAULT; 1159ce48e5aSMichal Kubecek useraddr += sizeof(cmd); 116ed717613SGustavo A. R. Silva if (copy_to_user(useraddr, features, 117ed717613SGustavo A. R. Silva array_size(copy_size, sizeof(*features)))) 1189ce48e5aSMichal Kubecek return -EFAULT; 1199ce48e5aSMichal Kubecek 1209ce48e5aSMichal Kubecek return 0; 1219ce48e5aSMichal Kubecek } 1229ce48e5aSMichal Kubecek 1239ce48e5aSMichal Kubecek static int ethtool_set_features(struct net_device *dev, void __user *useraddr) 1249ce48e5aSMichal Kubecek { 1259ce48e5aSMichal Kubecek struct ethtool_sfeatures cmd; 1269ce48e5aSMichal Kubecek struct ethtool_set_features_block features[ETHTOOL_DEV_FEATURE_WORDS]; 1279ce48e5aSMichal Kubecek netdev_features_t wanted = 0, valid = 0; 1289ce48e5aSMichal Kubecek int i, ret = 0; 1299ce48e5aSMichal Kubecek 1309ce48e5aSMichal Kubecek if (copy_from_user(&cmd, useraddr, sizeof(cmd))) 1319ce48e5aSMichal Kubecek return -EFAULT; 1329ce48e5aSMichal Kubecek useraddr += sizeof(cmd); 1339ce48e5aSMichal Kubecek 1349ce48e5aSMichal Kubecek if (cmd.size != ETHTOOL_DEV_FEATURE_WORDS) 1359ce48e5aSMichal Kubecek return -EINVAL; 1369ce48e5aSMichal Kubecek 1379ce48e5aSMichal Kubecek if (copy_from_user(features, useraddr, sizeof(features))) 1389ce48e5aSMichal Kubecek return -EFAULT; 1399ce48e5aSMichal Kubecek 1409ce48e5aSMichal Kubecek for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) { 1419ce48e5aSMichal Kubecek valid |= (netdev_features_t)features[i].valid << (32 * i); 1429ce48e5aSMichal Kubecek wanted |= (netdev_features_t)features[i].requested << (32 * i); 1439ce48e5aSMichal Kubecek } 1449ce48e5aSMichal Kubecek 1459ce48e5aSMichal Kubecek if (valid & ~NETIF_F_ETHTOOL_BITS) 1469ce48e5aSMichal Kubecek return -EINVAL; 1479ce48e5aSMichal Kubecek 1489ce48e5aSMichal Kubecek if (valid & ~dev->hw_features) { 1499ce48e5aSMichal Kubecek valid &= dev->hw_features; 1509ce48e5aSMichal Kubecek ret |= ETHTOOL_F_UNSUPPORTED; 1519ce48e5aSMichal Kubecek } 1529ce48e5aSMichal Kubecek 1539ce48e5aSMichal Kubecek dev->wanted_features &= ~valid; 1549ce48e5aSMichal Kubecek dev->wanted_features |= wanted & valid; 1559ce48e5aSMichal Kubecek __netdev_update_features(dev); 1569ce48e5aSMichal Kubecek 1579ce48e5aSMichal Kubecek if ((dev->wanted_features ^ dev->features) & valid) 1589ce48e5aSMichal Kubecek ret |= ETHTOOL_F_WISH; 1599ce48e5aSMichal Kubecek 1609ce48e5aSMichal Kubecek return ret; 1619ce48e5aSMichal Kubecek } 1629ce48e5aSMichal Kubecek 1639ce48e5aSMichal Kubecek static int __ethtool_get_sset_count(struct net_device *dev, int sset) 1649ce48e5aSMichal Kubecek { 16517809516SFlorian Fainelli const struct ethtool_phy_ops *phy_ops = ethtool_phy_ops; 1669ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 1679ce48e5aSMichal Kubecek 1689ce48e5aSMichal Kubecek if (sset == ETH_SS_FEATURES) 1699ce48e5aSMichal Kubecek return ARRAY_SIZE(netdev_features_strings); 1709ce48e5aSMichal Kubecek 1719ce48e5aSMichal Kubecek if (sset == ETH_SS_RSS_HASH_FUNCS) 1729ce48e5aSMichal Kubecek return ARRAY_SIZE(rss_hash_func_strings); 1739ce48e5aSMichal Kubecek 1749ce48e5aSMichal Kubecek if (sset == ETH_SS_TUNABLES) 1759ce48e5aSMichal Kubecek return ARRAY_SIZE(tunable_strings); 1769ce48e5aSMichal Kubecek 1779ce48e5aSMichal Kubecek if (sset == ETH_SS_PHY_TUNABLES) 1789ce48e5aSMichal Kubecek return ARRAY_SIZE(phy_tunable_strings); 1799ce48e5aSMichal Kubecek 1809ce48e5aSMichal Kubecek if (sset == ETH_SS_PHY_STATS && dev->phydev && 18117809516SFlorian Fainelli !ops->get_ethtool_phy_stats && 18217809516SFlorian Fainelli phy_ops && phy_ops->get_sset_count) 18317809516SFlorian Fainelli return phy_ops->get_sset_count(dev->phydev); 1849ce48e5aSMichal Kubecek 185428c122fSMichal Kubecek if (sset == ETH_SS_LINK_MODES) 186428c122fSMichal Kubecek return __ETHTOOL_LINK_MODE_MASK_NBITS; 187428c122fSMichal Kubecek 1889ce48e5aSMichal Kubecek if (ops->get_sset_count && ops->get_strings) 1899ce48e5aSMichal Kubecek return ops->get_sset_count(dev, sset); 1909ce48e5aSMichal Kubecek else 1919ce48e5aSMichal Kubecek return -EOPNOTSUPP; 1929ce48e5aSMichal Kubecek } 1939ce48e5aSMichal Kubecek 1949ce48e5aSMichal Kubecek static void __ethtool_get_strings(struct net_device *dev, 1959ce48e5aSMichal Kubecek u32 stringset, u8 *data) 1969ce48e5aSMichal Kubecek { 19717809516SFlorian Fainelli const struct ethtool_phy_ops *phy_ops = ethtool_phy_ops; 1989ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 1999ce48e5aSMichal Kubecek 2009ce48e5aSMichal Kubecek if (stringset == ETH_SS_FEATURES) 2019ce48e5aSMichal Kubecek memcpy(data, netdev_features_strings, 2029ce48e5aSMichal Kubecek sizeof(netdev_features_strings)); 2039ce48e5aSMichal Kubecek else if (stringset == ETH_SS_RSS_HASH_FUNCS) 2049ce48e5aSMichal Kubecek memcpy(data, rss_hash_func_strings, 2059ce48e5aSMichal Kubecek sizeof(rss_hash_func_strings)); 2069ce48e5aSMichal Kubecek else if (stringset == ETH_SS_TUNABLES) 2079ce48e5aSMichal Kubecek memcpy(data, tunable_strings, sizeof(tunable_strings)); 2089ce48e5aSMichal Kubecek else if (stringset == ETH_SS_PHY_TUNABLES) 2099ce48e5aSMichal Kubecek memcpy(data, phy_tunable_strings, sizeof(phy_tunable_strings)); 2109ce48e5aSMichal Kubecek else if (stringset == ETH_SS_PHY_STATS && dev->phydev && 21117809516SFlorian Fainelli !ops->get_ethtool_phy_stats && phy_ops && 21217809516SFlorian Fainelli phy_ops->get_strings) 21317809516SFlorian Fainelli phy_ops->get_strings(dev->phydev, data); 214428c122fSMichal Kubecek else if (stringset == ETH_SS_LINK_MODES) 215428c122fSMichal Kubecek memcpy(data, link_mode_names, 216428c122fSMichal Kubecek __ETHTOOL_LINK_MODE_MASK_NBITS * ETH_GSTRING_LEN); 2179ce48e5aSMichal Kubecek else 2189ce48e5aSMichal Kubecek /* ops->get_strings is valid because checked earlier */ 2199ce48e5aSMichal Kubecek ops->get_strings(dev, stringset, data); 2209ce48e5aSMichal Kubecek } 2219ce48e5aSMichal Kubecek 2229ce48e5aSMichal Kubecek static netdev_features_t ethtool_get_feature_mask(u32 eth_cmd) 2239ce48e5aSMichal Kubecek { 2249ce48e5aSMichal Kubecek /* feature masks of legacy discrete ethtool ops */ 2259ce48e5aSMichal Kubecek 2269ce48e5aSMichal Kubecek switch (eth_cmd) { 2279ce48e5aSMichal Kubecek case ETHTOOL_GTXCSUM: 2289ce48e5aSMichal Kubecek case ETHTOOL_STXCSUM: 2299d648fb5SVladyslav Tarasiuk return NETIF_F_CSUM_MASK | NETIF_F_FCOE_CRC | 230f70bb065SMichal Kubecek NETIF_F_SCTP_CRC; 2319ce48e5aSMichal Kubecek case ETHTOOL_GRXCSUM: 2329ce48e5aSMichal Kubecek case ETHTOOL_SRXCSUM: 2339ce48e5aSMichal Kubecek return NETIF_F_RXCSUM; 2349ce48e5aSMichal Kubecek case ETHTOOL_GSG: 2359ce48e5aSMichal Kubecek case ETHTOOL_SSG: 236f70bb065SMichal Kubecek return NETIF_F_SG | NETIF_F_FRAGLIST; 2379ce48e5aSMichal Kubecek case ETHTOOL_GTSO: 2389ce48e5aSMichal Kubecek case ETHTOOL_STSO: 2399ce48e5aSMichal Kubecek return NETIF_F_ALL_TSO; 2409ce48e5aSMichal Kubecek case ETHTOOL_GGSO: 2419ce48e5aSMichal Kubecek case ETHTOOL_SGSO: 2429ce48e5aSMichal Kubecek return NETIF_F_GSO; 2439ce48e5aSMichal Kubecek case ETHTOOL_GGRO: 2449ce48e5aSMichal Kubecek case ETHTOOL_SGRO: 2459ce48e5aSMichal Kubecek return NETIF_F_GRO; 2469ce48e5aSMichal Kubecek default: 2479ce48e5aSMichal Kubecek BUG(); 2489ce48e5aSMichal Kubecek } 2499ce48e5aSMichal Kubecek } 2509ce48e5aSMichal Kubecek 2519ce48e5aSMichal Kubecek static int ethtool_get_one_feature(struct net_device *dev, 2529ce48e5aSMichal Kubecek char __user *useraddr, u32 ethcmd) 2539ce48e5aSMichal Kubecek { 2549ce48e5aSMichal Kubecek netdev_features_t mask = ethtool_get_feature_mask(ethcmd); 2559ce48e5aSMichal Kubecek struct ethtool_value edata = { 2569ce48e5aSMichal Kubecek .cmd = ethcmd, 2579ce48e5aSMichal Kubecek .data = !!(dev->features & mask), 2589ce48e5aSMichal Kubecek }; 2599ce48e5aSMichal Kubecek 2609ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &edata, sizeof(edata))) 2619ce48e5aSMichal Kubecek return -EFAULT; 2629ce48e5aSMichal Kubecek return 0; 2639ce48e5aSMichal Kubecek } 2649ce48e5aSMichal Kubecek 2659ce48e5aSMichal Kubecek static int ethtool_set_one_feature(struct net_device *dev, 2669ce48e5aSMichal Kubecek void __user *useraddr, u32 ethcmd) 2679ce48e5aSMichal Kubecek { 2689ce48e5aSMichal Kubecek struct ethtool_value edata; 2699ce48e5aSMichal Kubecek netdev_features_t mask; 2709ce48e5aSMichal Kubecek 2719ce48e5aSMichal Kubecek if (copy_from_user(&edata, useraddr, sizeof(edata))) 2729ce48e5aSMichal Kubecek return -EFAULT; 2739ce48e5aSMichal Kubecek 2749ce48e5aSMichal Kubecek mask = ethtool_get_feature_mask(ethcmd); 2759ce48e5aSMichal Kubecek mask &= dev->hw_features; 2769ce48e5aSMichal Kubecek if (!mask) 2779ce48e5aSMichal Kubecek return -EOPNOTSUPP; 2789ce48e5aSMichal Kubecek 2799ce48e5aSMichal Kubecek if (edata.data) 2809ce48e5aSMichal Kubecek dev->wanted_features |= mask; 2819ce48e5aSMichal Kubecek else 2829ce48e5aSMichal Kubecek dev->wanted_features &= ~mask; 2839ce48e5aSMichal Kubecek 2849ce48e5aSMichal Kubecek __netdev_update_features(dev); 2859ce48e5aSMichal Kubecek 2869ce48e5aSMichal Kubecek return 0; 2879ce48e5aSMichal Kubecek } 2889ce48e5aSMichal Kubecek 2899ce48e5aSMichal Kubecek #define ETH_ALL_FLAGS (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \ 2909ce48e5aSMichal Kubecek ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH) 2919ce48e5aSMichal Kubecek #define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \ 2929ce48e5aSMichal Kubecek NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \ 2939ce48e5aSMichal Kubecek NETIF_F_RXHASH) 2949ce48e5aSMichal Kubecek 2959ce48e5aSMichal Kubecek static u32 __ethtool_get_flags(struct net_device *dev) 2969ce48e5aSMichal Kubecek { 2979ce48e5aSMichal Kubecek u32 flags = 0; 2989ce48e5aSMichal Kubecek 2999ce48e5aSMichal Kubecek if (dev->features & NETIF_F_LRO) 3009ce48e5aSMichal Kubecek flags |= ETH_FLAG_LRO; 3019ce48e5aSMichal Kubecek if (dev->features & NETIF_F_HW_VLAN_CTAG_RX) 3029ce48e5aSMichal Kubecek flags |= ETH_FLAG_RXVLAN; 3039ce48e5aSMichal Kubecek if (dev->features & NETIF_F_HW_VLAN_CTAG_TX) 3049ce48e5aSMichal Kubecek flags |= ETH_FLAG_TXVLAN; 3059ce48e5aSMichal Kubecek if (dev->features & NETIF_F_NTUPLE) 3069ce48e5aSMichal Kubecek flags |= ETH_FLAG_NTUPLE; 3079ce48e5aSMichal Kubecek if (dev->features & NETIF_F_RXHASH) 3089ce48e5aSMichal Kubecek flags |= ETH_FLAG_RXHASH; 3099ce48e5aSMichal Kubecek 3109ce48e5aSMichal Kubecek return flags; 3119ce48e5aSMichal Kubecek } 3129ce48e5aSMichal Kubecek 3139ce48e5aSMichal Kubecek static int __ethtool_set_flags(struct net_device *dev, u32 data) 3149ce48e5aSMichal Kubecek { 3159ce48e5aSMichal Kubecek netdev_features_t features = 0, changed; 3169ce48e5aSMichal Kubecek 3179ce48e5aSMichal Kubecek if (data & ~ETH_ALL_FLAGS) 3189ce48e5aSMichal Kubecek return -EINVAL; 3199ce48e5aSMichal Kubecek 3209ce48e5aSMichal Kubecek if (data & ETH_FLAG_LRO) 3219ce48e5aSMichal Kubecek features |= NETIF_F_LRO; 3229ce48e5aSMichal Kubecek if (data & ETH_FLAG_RXVLAN) 3239ce48e5aSMichal Kubecek features |= NETIF_F_HW_VLAN_CTAG_RX; 3249ce48e5aSMichal Kubecek if (data & ETH_FLAG_TXVLAN) 3259ce48e5aSMichal Kubecek features |= NETIF_F_HW_VLAN_CTAG_TX; 3269ce48e5aSMichal Kubecek if (data & ETH_FLAG_NTUPLE) 3279ce48e5aSMichal Kubecek features |= NETIF_F_NTUPLE; 3289ce48e5aSMichal Kubecek if (data & ETH_FLAG_RXHASH) 3299ce48e5aSMichal Kubecek features |= NETIF_F_RXHASH; 3309ce48e5aSMichal Kubecek 3319ce48e5aSMichal Kubecek /* allow changing only bits set in hw_features */ 3329ce48e5aSMichal Kubecek changed = (features ^ dev->features) & ETH_ALL_FEATURES; 3339ce48e5aSMichal Kubecek if (changed & ~dev->hw_features) 3349ce48e5aSMichal Kubecek return (changed & dev->hw_features) ? -EINVAL : -EOPNOTSUPP; 3359ce48e5aSMichal Kubecek 3369ce48e5aSMichal Kubecek dev->wanted_features = 3379ce48e5aSMichal Kubecek (dev->wanted_features & ~changed) | (features & changed); 3389ce48e5aSMichal Kubecek 3399ce48e5aSMichal Kubecek __netdev_update_features(dev); 3409ce48e5aSMichal Kubecek 3419ce48e5aSMichal Kubecek return 0; 3429ce48e5aSMichal Kubecek } 3439ce48e5aSMichal Kubecek 3449ce48e5aSMichal Kubecek /* Given two link masks, AND them together and save the result in dst. */ 3459ce48e5aSMichal Kubecek void ethtool_intersect_link_masks(struct ethtool_link_ksettings *dst, 3469ce48e5aSMichal Kubecek struct ethtool_link_ksettings *src) 3479ce48e5aSMichal Kubecek { 3489ce48e5aSMichal Kubecek unsigned int size = BITS_TO_LONGS(__ETHTOOL_LINK_MODE_MASK_NBITS); 3499ce48e5aSMichal Kubecek unsigned int idx = 0; 3509ce48e5aSMichal Kubecek 3519ce48e5aSMichal Kubecek for (; idx < size; idx++) { 3529ce48e5aSMichal Kubecek dst->link_modes.supported[idx] &= 3539ce48e5aSMichal Kubecek src->link_modes.supported[idx]; 3549ce48e5aSMichal Kubecek dst->link_modes.advertising[idx] &= 3559ce48e5aSMichal Kubecek src->link_modes.advertising[idx]; 3569ce48e5aSMichal Kubecek } 3579ce48e5aSMichal Kubecek } 3589ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_intersect_link_masks); 3599ce48e5aSMichal Kubecek 3609ce48e5aSMichal Kubecek void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst, 3619ce48e5aSMichal Kubecek u32 legacy_u32) 3629ce48e5aSMichal Kubecek { 3634973056cSSean Anderson linkmode_zero(dst); 3649ce48e5aSMichal Kubecek dst[0] = legacy_u32; 3659ce48e5aSMichal Kubecek } 3669ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_convert_legacy_u32_to_link_mode); 3679ce48e5aSMichal Kubecek 3689ce48e5aSMichal Kubecek /* return false if src had higher bits set. lower bits always updated. */ 3699ce48e5aSMichal Kubecek bool ethtool_convert_link_mode_to_legacy_u32(u32 *legacy_u32, 3709ce48e5aSMichal Kubecek const unsigned long *src) 3719ce48e5aSMichal Kubecek { 3729ce48e5aSMichal Kubecek *legacy_u32 = src[0]; 37319d62f5eSMarco Bonelli return find_next_bit(src, __ETHTOOL_LINK_MODE_MASK_NBITS, 32) == 37419d62f5eSMarco Bonelli __ETHTOOL_LINK_MODE_MASK_NBITS; 3759ce48e5aSMichal Kubecek } 3769ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_convert_link_mode_to_legacy_u32); 3779ce48e5aSMichal Kubecek 3789ce48e5aSMichal Kubecek /* return false if ksettings link modes had higher bits 3799ce48e5aSMichal Kubecek * set. legacy_settings always updated (best effort) 3809ce48e5aSMichal Kubecek */ 3819ce48e5aSMichal Kubecek static bool 3829ce48e5aSMichal Kubecek convert_link_ksettings_to_legacy_settings( 3839ce48e5aSMichal Kubecek struct ethtool_cmd *legacy_settings, 3849ce48e5aSMichal Kubecek const struct ethtool_link_ksettings *link_ksettings) 3859ce48e5aSMichal Kubecek { 3869ce48e5aSMichal Kubecek bool retval = true; 3879ce48e5aSMichal Kubecek 3889ce48e5aSMichal Kubecek memset(legacy_settings, 0, sizeof(*legacy_settings)); 3899ce48e5aSMichal Kubecek /* this also clears the deprecated fields in legacy structure: 3909ce48e5aSMichal Kubecek * __u8 transceiver; 3919ce48e5aSMichal Kubecek * __u32 maxtxpkt; 3929ce48e5aSMichal Kubecek * __u32 maxrxpkt; 3939ce48e5aSMichal Kubecek */ 3949ce48e5aSMichal Kubecek 3959ce48e5aSMichal Kubecek retval &= ethtool_convert_link_mode_to_legacy_u32( 3969ce48e5aSMichal Kubecek &legacy_settings->supported, 3979ce48e5aSMichal Kubecek link_ksettings->link_modes.supported); 3989ce48e5aSMichal Kubecek retval &= ethtool_convert_link_mode_to_legacy_u32( 3999ce48e5aSMichal Kubecek &legacy_settings->advertising, 4009ce48e5aSMichal Kubecek link_ksettings->link_modes.advertising); 4019ce48e5aSMichal Kubecek retval &= ethtool_convert_link_mode_to_legacy_u32( 4029ce48e5aSMichal Kubecek &legacy_settings->lp_advertising, 4039ce48e5aSMichal Kubecek link_ksettings->link_modes.lp_advertising); 4049ce48e5aSMichal Kubecek ethtool_cmd_speed_set(legacy_settings, link_ksettings->base.speed); 4059ce48e5aSMichal Kubecek legacy_settings->duplex 4069ce48e5aSMichal Kubecek = link_ksettings->base.duplex; 4079ce48e5aSMichal Kubecek legacy_settings->port 4089ce48e5aSMichal Kubecek = link_ksettings->base.port; 4099ce48e5aSMichal Kubecek legacy_settings->phy_address 4109ce48e5aSMichal Kubecek = link_ksettings->base.phy_address; 4119ce48e5aSMichal Kubecek legacy_settings->autoneg 4129ce48e5aSMichal Kubecek = link_ksettings->base.autoneg; 4139ce48e5aSMichal Kubecek legacy_settings->mdio_support 4149ce48e5aSMichal Kubecek = link_ksettings->base.mdio_support; 4159ce48e5aSMichal Kubecek legacy_settings->eth_tp_mdix 4169ce48e5aSMichal Kubecek = link_ksettings->base.eth_tp_mdix; 4179ce48e5aSMichal Kubecek legacy_settings->eth_tp_mdix_ctrl 4189ce48e5aSMichal Kubecek = link_ksettings->base.eth_tp_mdix_ctrl; 4199ce48e5aSMichal Kubecek legacy_settings->transceiver 4209ce48e5aSMichal Kubecek = link_ksettings->base.transceiver; 4219ce48e5aSMichal Kubecek return retval; 4229ce48e5aSMichal Kubecek } 4239ce48e5aSMichal Kubecek 4249ce48e5aSMichal Kubecek /* number of 32-bit words to store the user's link mode bitmaps */ 4259ce48e5aSMichal Kubecek #define __ETHTOOL_LINK_MODE_MASK_NU32 \ 4269ce48e5aSMichal Kubecek DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32) 4279ce48e5aSMichal Kubecek 4289ce48e5aSMichal Kubecek /* layout of the struct passed from/to userland */ 4299ce48e5aSMichal Kubecek struct ethtool_link_usettings { 4309ce48e5aSMichal Kubecek struct ethtool_link_settings base; 4319ce48e5aSMichal Kubecek struct { 4329ce48e5aSMichal Kubecek __u32 supported[__ETHTOOL_LINK_MODE_MASK_NU32]; 4339ce48e5aSMichal Kubecek __u32 advertising[__ETHTOOL_LINK_MODE_MASK_NU32]; 4349ce48e5aSMichal Kubecek __u32 lp_advertising[__ETHTOOL_LINK_MODE_MASK_NU32]; 4359ce48e5aSMichal Kubecek } link_modes; 4369ce48e5aSMichal Kubecek }; 4379ce48e5aSMichal Kubecek 4389ce48e5aSMichal Kubecek /* Internal kernel helper to query a device ethtool_link_settings. */ 4399ce48e5aSMichal Kubecek int __ethtool_get_link_ksettings(struct net_device *dev, 4409ce48e5aSMichal Kubecek struct ethtool_link_ksettings *link_ksettings) 4419ce48e5aSMichal Kubecek { 4429ce48e5aSMichal Kubecek ASSERT_RTNL(); 4439ce48e5aSMichal Kubecek 4449ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_link_ksettings) 4459ce48e5aSMichal Kubecek return -EOPNOTSUPP; 4469ce48e5aSMichal Kubecek 4479ce48e5aSMichal Kubecek memset(link_ksettings, 0, sizeof(*link_ksettings)); 448a975d7d8SDanielle Ratson return dev->ethtool_ops->get_link_ksettings(dev, link_ksettings); 4499ce48e5aSMichal Kubecek } 4509ce48e5aSMichal Kubecek EXPORT_SYMBOL(__ethtool_get_link_ksettings); 4519ce48e5aSMichal Kubecek 4529ce48e5aSMichal Kubecek /* convert ethtool_link_usettings in user space to a kernel internal 4539ce48e5aSMichal Kubecek * ethtool_link_ksettings. return 0 on success, errno on error. 4549ce48e5aSMichal Kubecek */ 4559ce48e5aSMichal Kubecek static int load_link_ksettings_from_user(struct ethtool_link_ksettings *to, 4569ce48e5aSMichal Kubecek const void __user *from) 4579ce48e5aSMichal Kubecek { 4589ce48e5aSMichal Kubecek struct ethtool_link_usettings link_usettings; 4599ce48e5aSMichal Kubecek 4609ce48e5aSMichal Kubecek if (copy_from_user(&link_usettings, from, sizeof(link_usettings))) 4619ce48e5aSMichal Kubecek return -EFAULT; 4629ce48e5aSMichal Kubecek 4639ce48e5aSMichal Kubecek memcpy(&to->base, &link_usettings.base, sizeof(to->base)); 4649ce48e5aSMichal Kubecek bitmap_from_arr32(to->link_modes.supported, 4659ce48e5aSMichal Kubecek link_usettings.link_modes.supported, 4669ce48e5aSMichal Kubecek __ETHTOOL_LINK_MODE_MASK_NBITS); 4679ce48e5aSMichal Kubecek bitmap_from_arr32(to->link_modes.advertising, 4689ce48e5aSMichal Kubecek link_usettings.link_modes.advertising, 4699ce48e5aSMichal Kubecek __ETHTOOL_LINK_MODE_MASK_NBITS); 4709ce48e5aSMichal Kubecek bitmap_from_arr32(to->link_modes.lp_advertising, 4719ce48e5aSMichal Kubecek link_usettings.link_modes.lp_advertising, 4729ce48e5aSMichal Kubecek __ETHTOOL_LINK_MODE_MASK_NBITS); 4739ce48e5aSMichal Kubecek 4749ce48e5aSMichal Kubecek return 0; 4759ce48e5aSMichal Kubecek } 4769ce48e5aSMichal Kubecek 47770ae1e12SCris Forno /* Check if the user is trying to change anything besides speed/duplex */ 47870ae1e12SCris Forno bool ethtool_virtdev_validate_cmd(const struct ethtool_link_ksettings *cmd) 47970ae1e12SCris Forno { 48070ae1e12SCris Forno struct ethtool_link_settings base2 = {}; 48170ae1e12SCris Forno 48270ae1e12SCris Forno base2.speed = cmd->base.speed; 48370ae1e12SCris Forno base2.port = PORT_OTHER; 48470ae1e12SCris Forno base2.duplex = cmd->base.duplex; 48570ae1e12SCris Forno base2.cmd = cmd->base.cmd; 48670ae1e12SCris Forno base2.link_mode_masks_nwords = cmd->base.link_mode_masks_nwords; 48770ae1e12SCris Forno 48870ae1e12SCris Forno return !memcmp(&base2, &cmd->base, sizeof(base2)) && 48970ae1e12SCris Forno bitmap_empty(cmd->link_modes.supported, 49070ae1e12SCris Forno __ETHTOOL_LINK_MODE_MASK_NBITS) && 49170ae1e12SCris Forno bitmap_empty(cmd->link_modes.lp_advertising, 49270ae1e12SCris Forno __ETHTOOL_LINK_MODE_MASK_NBITS); 49370ae1e12SCris Forno } 49470ae1e12SCris Forno 4959ce48e5aSMichal Kubecek /* convert a kernel internal ethtool_link_ksettings to 4969ce48e5aSMichal Kubecek * ethtool_link_usettings in user space. return 0 on success, errno on 4979ce48e5aSMichal Kubecek * error. 4989ce48e5aSMichal Kubecek */ 4999ce48e5aSMichal Kubecek static int 5009ce48e5aSMichal Kubecek store_link_ksettings_for_user(void __user *to, 5019ce48e5aSMichal Kubecek const struct ethtool_link_ksettings *from) 5029ce48e5aSMichal Kubecek { 5039ce48e5aSMichal Kubecek struct ethtool_link_usettings link_usettings; 5049ce48e5aSMichal Kubecek 505c1d9e34eSGustavo A. R. Silva memcpy(&link_usettings, from, sizeof(link_usettings)); 5069ce48e5aSMichal Kubecek bitmap_to_arr32(link_usettings.link_modes.supported, 5079ce48e5aSMichal Kubecek from->link_modes.supported, 5089ce48e5aSMichal Kubecek __ETHTOOL_LINK_MODE_MASK_NBITS); 5099ce48e5aSMichal Kubecek bitmap_to_arr32(link_usettings.link_modes.advertising, 5109ce48e5aSMichal Kubecek from->link_modes.advertising, 5119ce48e5aSMichal Kubecek __ETHTOOL_LINK_MODE_MASK_NBITS); 5129ce48e5aSMichal Kubecek bitmap_to_arr32(link_usettings.link_modes.lp_advertising, 5139ce48e5aSMichal Kubecek from->link_modes.lp_advertising, 5149ce48e5aSMichal Kubecek __ETHTOOL_LINK_MODE_MASK_NBITS); 5159ce48e5aSMichal Kubecek 5169ce48e5aSMichal Kubecek if (copy_to_user(to, &link_usettings, sizeof(link_usettings))) 5179ce48e5aSMichal Kubecek return -EFAULT; 5189ce48e5aSMichal Kubecek 5199ce48e5aSMichal Kubecek return 0; 5209ce48e5aSMichal Kubecek } 5219ce48e5aSMichal Kubecek 5229ce48e5aSMichal Kubecek /* Query device for its ethtool_link_settings. */ 5239ce48e5aSMichal Kubecek static int ethtool_get_link_ksettings(struct net_device *dev, 5249ce48e5aSMichal Kubecek void __user *useraddr) 5259ce48e5aSMichal Kubecek { 5269ce48e5aSMichal Kubecek int err = 0; 5279ce48e5aSMichal Kubecek struct ethtool_link_ksettings link_ksettings; 5289ce48e5aSMichal Kubecek 5299ce48e5aSMichal Kubecek ASSERT_RTNL(); 5309ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_link_ksettings) 5319ce48e5aSMichal Kubecek return -EOPNOTSUPP; 5329ce48e5aSMichal Kubecek 5339ce48e5aSMichal Kubecek /* handle bitmap nbits handshake */ 5349ce48e5aSMichal Kubecek if (copy_from_user(&link_ksettings.base, useraddr, 5359ce48e5aSMichal Kubecek sizeof(link_ksettings.base))) 5369ce48e5aSMichal Kubecek return -EFAULT; 5379ce48e5aSMichal Kubecek 5389ce48e5aSMichal Kubecek if (__ETHTOOL_LINK_MODE_MASK_NU32 5399ce48e5aSMichal Kubecek != link_ksettings.base.link_mode_masks_nwords) { 5409ce48e5aSMichal Kubecek /* wrong link mode nbits requested */ 5419ce48e5aSMichal Kubecek memset(&link_ksettings, 0, sizeof(link_ksettings)); 5429ce48e5aSMichal Kubecek link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS; 5439ce48e5aSMichal Kubecek /* send back number of words required as negative val */ 5449ce48e5aSMichal Kubecek compiletime_assert(__ETHTOOL_LINK_MODE_MASK_NU32 <= S8_MAX, 5459ce48e5aSMichal Kubecek "need too many bits for link modes!"); 5469ce48e5aSMichal Kubecek link_ksettings.base.link_mode_masks_nwords 5479ce48e5aSMichal Kubecek = -((s8)__ETHTOOL_LINK_MODE_MASK_NU32); 5489ce48e5aSMichal Kubecek 5499ce48e5aSMichal Kubecek /* copy the base fields back to user, not the link 5509ce48e5aSMichal Kubecek * mode bitmaps 5519ce48e5aSMichal Kubecek */ 5529ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &link_ksettings.base, 5539ce48e5aSMichal Kubecek sizeof(link_ksettings.base))) 5549ce48e5aSMichal Kubecek return -EFAULT; 5559ce48e5aSMichal Kubecek 5569ce48e5aSMichal Kubecek return 0; 5579ce48e5aSMichal Kubecek } 5589ce48e5aSMichal Kubecek 5599ce48e5aSMichal Kubecek /* handshake successful: user/kernel agree on 5609ce48e5aSMichal Kubecek * link_mode_masks_nwords 5619ce48e5aSMichal Kubecek */ 5629ce48e5aSMichal Kubecek 5639ce48e5aSMichal Kubecek memset(&link_ksettings, 0, sizeof(link_ksettings)); 5649ce48e5aSMichal Kubecek err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings); 5659ce48e5aSMichal Kubecek if (err < 0) 5669ce48e5aSMichal Kubecek return err; 5679ce48e5aSMichal Kubecek 5689ce48e5aSMichal Kubecek /* make sure we tell the right values to user */ 5699ce48e5aSMichal Kubecek link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS; 5709ce48e5aSMichal Kubecek link_ksettings.base.link_mode_masks_nwords 5719ce48e5aSMichal Kubecek = __ETHTOOL_LINK_MODE_MASK_NU32; 572bdbdac76SOleksij Rempel link_ksettings.base.master_slave_cfg = MASTER_SLAVE_CFG_UNSUPPORTED; 573bdbdac76SOleksij Rempel link_ksettings.base.master_slave_state = MASTER_SLAVE_STATE_UNSUPPORTED; 5749ce48e5aSMichal Kubecek 5759ce48e5aSMichal Kubecek return store_link_ksettings_for_user(useraddr, &link_ksettings); 5769ce48e5aSMichal Kubecek } 5779ce48e5aSMichal Kubecek 5789ce48e5aSMichal Kubecek /* Update device ethtool_link_settings. */ 5799ce48e5aSMichal Kubecek static int ethtool_set_link_ksettings(struct net_device *dev, 5809ce48e5aSMichal Kubecek void __user *useraddr) 5819ce48e5aSMichal Kubecek { 5829ce48e5aSMichal Kubecek int err; 5839ce48e5aSMichal Kubecek struct ethtool_link_ksettings link_ksettings; 5849ce48e5aSMichal Kubecek 5859ce48e5aSMichal Kubecek ASSERT_RTNL(); 5869ce48e5aSMichal Kubecek 5879ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_link_ksettings) 5889ce48e5aSMichal Kubecek return -EOPNOTSUPP; 5899ce48e5aSMichal Kubecek 5909ce48e5aSMichal Kubecek /* make sure nbits field has expected value */ 5919ce48e5aSMichal Kubecek if (copy_from_user(&link_ksettings.base, useraddr, 5929ce48e5aSMichal Kubecek sizeof(link_ksettings.base))) 5939ce48e5aSMichal Kubecek return -EFAULT; 5949ce48e5aSMichal Kubecek 5959ce48e5aSMichal Kubecek if (__ETHTOOL_LINK_MODE_MASK_NU32 5969ce48e5aSMichal Kubecek != link_ksettings.base.link_mode_masks_nwords) 5979ce48e5aSMichal Kubecek return -EINVAL; 5989ce48e5aSMichal Kubecek 5999ce48e5aSMichal Kubecek /* copy the whole structure, now that we know it has expected 6009ce48e5aSMichal Kubecek * format 6019ce48e5aSMichal Kubecek */ 6029ce48e5aSMichal Kubecek err = load_link_ksettings_from_user(&link_ksettings, useraddr); 6039ce48e5aSMichal Kubecek if (err) 6049ce48e5aSMichal Kubecek return err; 6059ce48e5aSMichal Kubecek 6069ce48e5aSMichal Kubecek /* re-check nwords field, just in case */ 6079ce48e5aSMichal Kubecek if (__ETHTOOL_LINK_MODE_MASK_NU32 6089ce48e5aSMichal Kubecek != link_ksettings.base.link_mode_masks_nwords) 6099ce48e5aSMichal Kubecek return -EINVAL; 6109ce48e5aSMichal Kubecek 611bdbdac76SOleksij Rempel if (link_ksettings.base.master_slave_cfg || 612bdbdac76SOleksij Rempel link_ksettings.base.master_slave_state) 613bdbdac76SOleksij Rempel return -EINVAL; 614bdbdac76SOleksij Rempel 61573286734SMichal Kubecek err = dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings); 6161b1b1847SMichal Kubecek if (err >= 0) { 61773286734SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_LINKINFO_NTF, NULL); 6181b1b1847SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_LINKMODES_NTF, NULL); 6191b1b1847SMichal Kubecek } 62073286734SMichal Kubecek return err; 6219ce48e5aSMichal Kubecek } 6229ce48e5aSMichal Kubecek 62370ae1e12SCris Forno int ethtool_virtdev_set_link_ksettings(struct net_device *dev, 62470ae1e12SCris Forno const struct ethtool_link_ksettings *cmd, 62570ae1e12SCris Forno u32 *dev_speed, u8 *dev_duplex) 62670ae1e12SCris Forno { 62770ae1e12SCris Forno u32 speed; 62870ae1e12SCris Forno u8 duplex; 62970ae1e12SCris Forno 63070ae1e12SCris Forno speed = cmd->base.speed; 63170ae1e12SCris Forno duplex = cmd->base.duplex; 63270ae1e12SCris Forno /* don't allow custom speed and duplex */ 63370ae1e12SCris Forno if (!ethtool_validate_speed(speed) || 63470ae1e12SCris Forno !ethtool_validate_duplex(duplex) || 63570ae1e12SCris Forno !ethtool_virtdev_validate_cmd(cmd)) 63670ae1e12SCris Forno return -EINVAL; 63770ae1e12SCris Forno *dev_speed = speed; 63870ae1e12SCris Forno *dev_duplex = duplex; 63970ae1e12SCris Forno 64070ae1e12SCris Forno return 0; 64170ae1e12SCris Forno } 64270ae1e12SCris Forno EXPORT_SYMBOL(ethtool_virtdev_set_link_ksettings); 64370ae1e12SCris Forno 6449ce48e5aSMichal Kubecek /* Query device for its ethtool_cmd settings. 6459ce48e5aSMichal Kubecek * 6469ce48e5aSMichal Kubecek * Backward compatibility note: for compatibility with legacy ethtool, this is 6479ce48e5aSMichal Kubecek * now implemented via get_link_ksettings. When driver reports higher link mode 6489ce48e5aSMichal Kubecek * bits, a kernel warning is logged once (with name of 1st driver/device) to 6499ce48e5aSMichal Kubecek * recommend user to upgrade ethtool, but the command is successful (only the 6509ce48e5aSMichal Kubecek * lower link mode bits reported back to user). Deprecated fields from 6519ce48e5aSMichal Kubecek * ethtool_cmd (transceiver/maxrxpkt/maxtxpkt) are always set to zero. 6529ce48e5aSMichal Kubecek */ 6539ce48e5aSMichal Kubecek static int ethtool_get_settings(struct net_device *dev, void __user *useraddr) 6549ce48e5aSMichal Kubecek { 6559ce48e5aSMichal Kubecek struct ethtool_link_ksettings link_ksettings; 6569ce48e5aSMichal Kubecek struct ethtool_cmd cmd; 6579ce48e5aSMichal Kubecek int err; 6589ce48e5aSMichal Kubecek 6599ce48e5aSMichal Kubecek ASSERT_RTNL(); 6609ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_link_ksettings) 6619ce48e5aSMichal Kubecek return -EOPNOTSUPP; 6629ce48e5aSMichal Kubecek 6639ce48e5aSMichal Kubecek memset(&link_ksettings, 0, sizeof(link_ksettings)); 6649ce48e5aSMichal Kubecek err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings); 6659ce48e5aSMichal Kubecek if (err < 0) 6669ce48e5aSMichal Kubecek return err; 6679ce48e5aSMichal Kubecek convert_link_ksettings_to_legacy_settings(&cmd, &link_ksettings); 6689ce48e5aSMichal Kubecek 6699ce48e5aSMichal Kubecek /* send a sensible cmd tag back to user */ 6709ce48e5aSMichal Kubecek cmd.cmd = ETHTOOL_GSET; 6719ce48e5aSMichal Kubecek 6729ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &cmd, sizeof(cmd))) 6739ce48e5aSMichal Kubecek return -EFAULT; 6749ce48e5aSMichal Kubecek 6759ce48e5aSMichal Kubecek return 0; 6769ce48e5aSMichal Kubecek } 6779ce48e5aSMichal Kubecek 6789ce48e5aSMichal Kubecek /* Update device link settings with given ethtool_cmd. 6799ce48e5aSMichal Kubecek * 6809ce48e5aSMichal Kubecek * Backward compatibility note: for compatibility with legacy ethtool, this is 6819ce48e5aSMichal Kubecek * now always implemented via set_link_settings. When user's request updates 6829ce48e5aSMichal Kubecek * deprecated ethtool_cmd fields (transceiver/maxrxpkt/maxtxpkt), a kernel 6839ce48e5aSMichal Kubecek * warning is logged once (with name of 1st driver/device) to recommend user to 6849ce48e5aSMichal Kubecek * upgrade ethtool, and the request is rejected. 6859ce48e5aSMichal Kubecek */ 6869ce48e5aSMichal Kubecek static int ethtool_set_settings(struct net_device *dev, void __user *useraddr) 6879ce48e5aSMichal Kubecek { 6889ce48e5aSMichal Kubecek struct ethtool_link_ksettings link_ksettings; 6899ce48e5aSMichal Kubecek struct ethtool_cmd cmd; 69073286734SMichal Kubecek int ret; 6919ce48e5aSMichal Kubecek 6929ce48e5aSMichal Kubecek ASSERT_RTNL(); 6939ce48e5aSMichal Kubecek 6949ce48e5aSMichal Kubecek if (copy_from_user(&cmd, useraddr, sizeof(cmd))) 6959ce48e5aSMichal Kubecek return -EFAULT; 6969ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_link_ksettings) 6979ce48e5aSMichal Kubecek return -EOPNOTSUPP; 6989ce48e5aSMichal Kubecek 6999ce48e5aSMichal Kubecek if (!convert_legacy_settings_to_link_ksettings(&link_ksettings, &cmd)) 7009ce48e5aSMichal Kubecek return -EINVAL; 7019ce48e5aSMichal Kubecek link_ksettings.base.link_mode_masks_nwords = 7029ce48e5aSMichal Kubecek __ETHTOOL_LINK_MODE_MASK_NU32; 70373286734SMichal Kubecek ret = dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings); 7041b1b1847SMichal Kubecek if (ret >= 0) { 70573286734SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_LINKINFO_NTF, NULL); 7061b1b1847SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_LINKMODES_NTF, NULL); 7071b1b1847SMichal Kubecek } 70873286734SMichal Kubecek return ret; 7099ce48e5aSMichal Kubecek } 7109ce48e5aSMichal Kubecek 711095cfcfeSJakub Kicinski static int 712095cfcfeSJakub Kicinski ethtool_get_drvinfo(struct net_device *dev, struct ethtool_devlink_compat *rsp) 7139ce48e5aSMichal Kubecek { 7149ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 7159ce48e5aSMichal Kubecek 716095cfcfeSJakub Kicinski rsp->info.cmd = ETHTOOL_GDRVINFO; 717*a71af890SWolfram Sang strscpy(rsp->info.version, UTS_RELEASE, sizeof(rsp->info.version)); 7189ce48e5aSMichal Kubecek if (ops->get_drvinfo) { 719095cfcfeSJakub Kicinski ops->get_drvinfo(dev, &rsp->info); 7209ce48e5aSMichal Kubecek } else if (dev->dev.parent && dev->dev.parent->driver) { 721*a71af890SWolfram Sang strscpy(rsp->info.bus_info, dev_name(dev->dev.parent), 722095cfcfeSJakub Kicinski sizeof(rsp->info.bus_info)); 723*a71af890SWolfram Sang strscpy(rsp->info.driver, dev->dev.parent->driver->name, 724095cfcfeSJakub Kicinski sizeof(rsp->info.driver)); 725bde3b0fdSTonghao Zhang } else if (dev->rtnl_link_ops) { 726*a71af890SWolfram Sang strscpy(rsp->info.driver, dev->rtnl_link_ops->kind, 727bde3b0fdSTonghao Zhang sizeof(rsp->info.driver)); 7289ce48e5aSMichal Kubecek } else { 7299ce48e5aSMichal Kubecek return -EOPNOTSUPP; 7309ce48e5aSMichal Kubecek } 7319ce48e5aSMichal Kubecek 7329ce48e5aSMichal Kubecek /* 7339ce48e5aSMichal Kubecek * this method of obtaining string set info is deprecated; 7349ce48e5aSMichal Kubecek * Use ETHTOOL_GSSET_INFO instead. 7359ce48e5aSMichal Kubecek */ 7369ce48e5aSMichal Kubecek if (ops->get_sset_count) { 7379ce48e5aSMichal Kubecek int rc; 7389ce48e5aSMichal Kubecek 7399ce48e5aSMichal Kubecek rc = ops->get_sset_count(dev, ETH_SS_TEST); 7409ce48e5aSMichal Kubecek if (rc >= 0) 741095cfcfeSJakub Kicinski rsp->info.testinfo_len = rc; 7429ce48e5aSMichal Kubecek rc = ops->get_sset_count(dev, ETH_SS_STATS); 7439ce48e5aSMichal Kubecek if (rc >= 0) 744095cfcfeSJakub Kicinski rsp->info.n_stats = rc; 7459ce48e5aSMichal Kubecek rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS); 7469ce48e5aSMichal Kubecek if (rc >= 0) 747095cfcfeSJakub Kicinski rsp->info.n_priv_flags = rc; 7489ce48e5aSMichal Kubecek } 7499ce48e5aSMichal Kubecek if (ops->get_regs_len) { 7509ce48e5aSMichal Kubecek int ret = ops->get_regs_len(dev); 7519ce48e5aSMichal Kubecek 7529ce48e5aSMichal Kubecek if (ret > 0) 753095cfcfeSJakub Kicinski rsp->info.regdump_len = ret; 7549ce48e5aSMichal Kubecek } 7559ce48e5aSMichal Kubecek 7569ce48e5aSMichal Kubecek if (ops->get_eeprom_len) 757095cfcfeSJakub Kicinski rsp->info.eedump_len = ops->get_eeprom_len(dev); 7589ce48e5aSMichal Kubecek 759095cfcfeSJakub Kicinski if (!rsp->info.fw_version[0]) 7601af0a094SJakub Kicinski rsp->devlink = netdev_to_devlink_get(dev); 7611af0a094SJakub Kicinski 7629ce48e5aSMichal Kubecek return 0; 7639ce48e5aSMichal Kubecek } 7649ce48e5aSMichal Kubecek 7659ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev, 7669ce48e5aSMichal Kubecek void __user *useraddr) 7679ce48e5aSMichal Kubecek { 7689ce48e5aSMichal Kubecek struct ethtool_sset_info info; 7699ce48e5aSMichal Kubecek u64 sset_mask; 7709ce48e5aSMichal Kubecek int i, idx = 0, n_bits = 0, ret, rc; 7719ce48e5aSMichal Kubecek u32 *info_buf = NULL; 7729ce48e5aSMichal Kubecek 7739ce48e5aSMichal Kubecek if (copy_from_user(&info, useraddr, sizeof(info))) 7749ce48e5aSMichal Kubecek return -EFAULT; 7759ce48e5aSMichal Kubecek 7769ce48e5aSMichal Kubecek /* store copy of mask, because we zero struct later on */ 7779ce48e5aSMichal Kubecek sset_mask = info.sset_mask; 7789ce48e5aSMichal Kubecek if (!sset_mask) 7799ce48e5aSMichal Kubecek return 0; 7809ce48e5aSMichal Kubecek 7819ce48e5aSMichal Kubecek /* calculate size of return buffer */ 7829ce48e5aSMichal Kubecek n_bits = hweight64(sset_mask); 7839ce48e5aSMichal Kubecek 7849ce48e5aSMichal Kubecek memset(&info, 0, sizeof(info)); 7859ce48e5aSMichal Kubecek info.cmd = ETHTOOL_GSSET_INFO; 7869ce48e5aSMichal Kubecek 7879ce48e5aSMichal Kubecek info_buf = kcalloc(n_bits, sizeof(u32), GFP_USER); 7889ce48e5aSMichal Kubecek if (!info_buf) 7899ce48e5aSMichal Kubecek return -ENOMEM; 7909ce48e5aSMichal Kubecek 7919ce48e5aSMichal Kubecek /* 7929ce48e5aSMichal Kubecek * fill return buffer based on input bitmask and successful 7939ce48e5aSMichal Kubecek * get_sset_count return 7949ce48e5aSMichal Kubecek */ 7959ce48e5aSMichal Kubecek for (i = 0; i < 64; i++) { 7969ce48e5aSMichal Kubecek if (!(sset_mask & (1ULL << i))) 7979ce48e5aSMichal Kubecek continue; 7989ce48e5aSMichal Kubecek 7999ce48e5aSMichal Kubecek rc = __ethtool_get_sset_count(dev, i); 8009ce48e5aSMichal Kubecek if (rc >= 0) { 8019ce48e5aSMichal Kubecek info.sset_mask |= (1ULL << i); 8029ce48e5aSMichal Kubecek info_buf[idx++] = rc; 8039ce48e5aSMichal Kubecek } 8049ce48e5aSMichal Kubecek } 8059ce48e5aSMichal Kubecek 8069ce48e5aSMichal Kubecek ret = -EFAULT; 8079ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &info, sizeof(info))) 8089ce48e5aSMichal Kubecek goto out; 8099ce48e5aSMichal Kubecek 8109ce48e5aSMichal Kubecek useraddr += offsetof(struct ethtool_sset_info, data); 811ed717613SGustavo A. R. Silva if (copy_to_user(useraddr, info_buf, array_size(idx, sizeof(u32)))) 8129ce48e5aSMichal Kubecek goto out; 8139ce48e5aSMichal Kubecek 8149ce48e5aSMichal Kubecek ret = 0; 8159ce48e5aSMichal Kubecek 8169ce48e5aSMichal Kubecek out: 8179ce48e5aSMichal Kubecek kfree(info_buf); 8189ce48e5aSMichal Kubecek return ret; 8199ce48e5aSMichal Kubecek } 8209ce48e5aSMichal Kubecek 821dd98d289SArnd Bergmann static noinline_for_stack int 822dd98d289SArnd Bergmann ethtool_rxnfc_copy_from_compat(struct ethtool_rxnfc *rxnfc, 823dd98d289SArnd Bergmann const struct compat_ethtool_rxnfc __user *useraddr, 824dd98d289SArnd Bergmann size_t size) 825dd98d289SArnd Bergmann { 826dd98d289SArnd Bergmann struct compat_ethtool_rxnfc crxnfc = {}; 827dd98d289SArnd Bergmann 828dd98d289SArnd Bergmann /* We expect there to be holes between fs.m_ext and 829dd98d289SArnd Bergmann * fs.ring_cookie and at the end of fs, but nowhere else. 830dd98d289SArnd Bergmann * On non-x86, no conversion should be needed. 831dd98d289SArnd Bergmann */ 832dd98d289SArnd Bergmann BUILD_BUG_ON(!IS_ENABLED(CONFIG_X86_64) && 833dd98d289SArnd Bergmann sizeof(struct compat_ethtool_rxnfc) != 834dd98d289SArnd Bergmann sizeof(struct ethtool_rxnfc)); 835dd98d289SArnd Bergmann BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) + 836dd98d289SArnd Bergmann sizeof(useraddr->fs.m_ext) != 837dd98d289SArnd Bergmann offsetof(struct ethtool_rxnfc, fs.m_ext) + 838dd98d289SArnd Bergmann sizeof(rxnfc->fs.m_ext)); 839dd98d289SArnd Bergmann BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.location) - 840dd98d289SArnd Bergmann offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) != 841dd98d289SArnd Bergmann offsetof(struct ethtool_rxnfc, fs.location) - 842dd98d289SArnd Bergmann offsetof(struct ethtool_rxnfc, fs.ring_cookie)); 843dd98d289SArnd Bergmann 844dd98d289SArnd Bergmann if (copy_from_user(&crxnfc, useraddr, min(size, sizeof(crxnfc)))) 845dd98d289SArnd Bergmann return -EFAULT; 846dd98d289SArnd Bergmann 847dd98d289SArnd Bergmann *rxnfc = (struct ethtool_rxnfc) { 848dd98d289SArnd Bergmann .cmd = crxnfc.cmd, 849dd98d289SArnd Bergmann .flow_type = crxnfc.flow_type, 850dd98d289SArnd Bergmann .data = crxnfc.data, 851dd98d289SArnd Bergmann .fs = { 852dd98d289SArnd Bergmann .flow_type = crxnfc.fs.flow_type, 853dd98d289SArnd Bergmann .h_u = crxnfc.fs.h_u, 854dd98d289SArnd Bergmann .h_ext = crxnfc.fs.h_ext, 855dd98d289SArnd Bergmann .m_u = crxnfc.fs.m_u, 856dd98d289SArnd Bergmann .m_ext = crxnfc.fs.m_ext, 857dd98d289SArnd Bergmann .ring_cookie = crxnfc.fs.ring_cookie, 858dd98d289SArnd Bergmann .location = crxnfc.fs.location, 859dd98d289SArnd Bergmann }, 860dd98d289SArnd Bergmann .rule_cnt = crxnfc.rule_cnt, 861dd98d289SArnd Bergmann }; 862dd98d289SArnd Bergmann 863dd98d289SArnd Bergmann return 0; 864dd98d289SArnd Bergmann } 865dd98d289SArnd Bergmann 866dd98d289SArnd Bergmann static int ethtool_rxnfc_copy_from_user(struct ethtool_rxnfc *rxnfc, 867dd98d289SArnd Bergmann const void __user *useraddr, 868dd98d289SArnd Bergmann size_t size) 869dd98d289SArnd Bergmann { 870dd98d289SArnd Bergmann if (compat_need_64bit_alignment_fixup()) 871dd98d289SArnd Bergmann return ethtool_rxnfc_copy_from_compat(rxnfc, useraddr, size); 872dd98d289SArnd Bergmann 873dd98d289SArnd Bergmann if (copy_from_user(rxnfc, useraddr, size)) 874dd98d289SArnd Bergmann return -EFAULT; 875dd98d289SArnd Bergmann 876dd98d289SArnd Bergmann return 0; 877dd98d289SArnd Bergmann } 878dd98d289SArnd Bergmann 879dd98d289SArnd Bergmann static int ethtool_rxnfc_copy_to_compat(void __user *useraddr, 880dd98d289SArnd Bergmann const struct ethtool_rxnfc *rxnfc, 881dd98d289SArnd Bergmann size_t size, const u32 *rule_buf) 882dd98d289SArnd Bergmann { 883dd98d289SArnd Bergmann struct compat_ethtool_rxnfc crxnfc; 884dd98d289SArnd Bergmann 885dd98d289SArnd Bergmann memset(&crxnfc, 0, sizeof(crxnfc)); 886dd98d289SArnd Bergmann crxnfc = (struct compat_ethtool_rxnfc) { 887dd98d289SArnd Bergmann .cmd = rxnfc->cmd, 888dd98d289SArnd Bergmann .flow_type = rxnfc->flow_type, 889dd98d289SArnd Bergmann .data = rxnfc->data, 890dd98d289SArnd Bergmann .fs = { 891dd98d289SArnd Bergmann .flow_type = rxnfc->fs.flow_type, 892dd98d289SArnd Bergmann .h_u = rxnfc->fs.h_u, 893dd98d289SArnd Bergmann .h_ext = rxnfc->fs.h_ext, 894dd98d289SArnd Bergmann .m_u = rxnfc->fs.m_u, 895dd98d289SArnd Bergmann .m_ext = rxnfc->fs.m_ext, 896dd98d289SArnd Bergmann .ring_cookie = rxnfc->fs.ring_cookie, 897dd98d289SArnd Bergmann .location = rxnfc->fs.location, 898dd98d289SArnd Bergmann }, 899dd98d289SArnd Bergmann .rule_cnt = rxnfc->rule_cnt, 900dd98d289SArnd Bergmann }; 901dd98d289SArnd Bergmann 902dd98d289SArnd Bergmann if (copy_to_user(useraddr, &crxnfc, min(size, sizeof(crxnfc)))) 903dd98d289SArnd Bergmann return -EFAULT; 904dd98d289SArnd Bergmann 905dd98d289SArnd Bergmann return 0; 906dd98d289SArnd Bergmann } 907dd98d289SArnd Bergmann 908dd98d289SArnd Bergmann static int ethtool_rxnfc_copy_to_user(void __user *useraddr, 909dd98d289SArnd Bergmann const struct ethtool_rxnfc *rxnfc, 910dd98d289SArnd Bergmann size_t size, const u32 *rule_buf) 911dd98d289SArnd Bergmann { 912dd98d289SArnd Bergmann int ret; 913dd98d289SArnd Bergmann 914dd98d289SArnd Bergmann if (compat_need_64bit_alignment_fixup()) { 915dd98d289SArnd Bergmann ret = ethtool_rxnfc_copy_to_compat(useraddr, rxnfc, size, 916dd98d289SArnd Bergmann rule_buf); 917dd98d289SArnd Bergmann useraddr += offsetof(struct compat_ethtool_rxnfc, rule_locs); 918dd98d289SArnd Bergmann } else { 9199b29a161SSaeed Mahameed ret = copy_to_user(useraddr, rxnfc, size); 920dd98d289SArnd Bergmann useraddr += offsetof(struct ethtool_rxnfc, rule_locs); 921dd98d289SArnd Bergmann } 922dd98d289SArnd Bergmann 923dd98d289SArnd Bergmann if (ret) 924dd98d289SArnd Bergmann return -EFAULT; 925dd98d289SArnd Bergmann 926dd98d289SArnd Bergmann if (rule_buf) { 927dd98d289SArnd Bergmann if (copy_to_user(useraddr, rule_buf, 928dd98d289SArnd Bergmann rxnfc->rule_cnt * sizeof(u32))) 929dd98d289SArnd Bergmann return -EFAULT; 930dd98d289SArnd Bergmann } 931dd98d289SArnd Bergmann 932dd98d289SArnd Bergmann return 0; 933dd98d289SArnd Bergmann } 934dd98d289SArnd Bergmann 9359ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev, 9369ce48e5aSMichal Kubecek u32 cmd, void __user *useraddr) 9379ce48e5aSMichal Kubecek { 9389ce48e5aSMichal Kubecek struct ethtool_rxnfc info; 9399ce48e5aSMichal Kubecek size_t info_size = sizeof(info); 9409ce48e5aSMichal Kubecek int rc; 9419ce48e5aSMichal Kubecek 9429ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_rxnfc) 9439ce48e5aSMichal Kubecek return -EOPNOTSUPP; 9449ce48e5aSMichal Kubecek 9459ce48e5aSMichal Kubecek /* struct ethtool_rxnfc was originally defined for 9469ce48e5aSMichal Kubecek * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data 9479ce48e5aSMichal Kubecek * members. User-space might still be using that 9489ce48e5aSMichal Kubecek * definition. */ 9499ce48e5aSMichal Kubecek if (cmd == ETHTOOL_SRXFH) 9509ce48e5aSMichal Kubecek info_size = (offsetof(struct ethtool_rxnfc, data) + 9519ce48e5aSMichal Kubecek sizeof(info.data)); 9529ce48e5aSMichal Kubecek 953dd98d289SArnd Bergmann if (ethtool_rxnfc_copy_from_user(&info, useraddr, info_size)) 9549ce48e5aSMichal Kubecek return -EFAULT; 9559ce48e5aSMichal Kubecek 9569ce48e5aSMichal Kubecek rc = dev->ethtool_ops->set_rxnfc(dev, &info); 9579ce48e5aSMichal Kubecek if (rc) 9589ce48e5aSMichal Kubecek return rc; 9599ce48e5aSMichal Kubecek 9609ce48e5aSMichal Kubecek if (cmd == ETHTOOL_SRXCLSRLINS && 961dd98d289SArnd Bergmann ethtool_rxnfc_copy_to_user(useraddr, &info, info_size, NULL)) 9629ce48e5aSMichal Kubecek return -EFAULT; 9639ce48e5aSMichal Kubecek 9649ce48e5aSMichal Kubecek return 0; 9659ce48e5aSMichal Kubecek } 9669ce48e5aSMichal Kubecek 9679ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev, 9689ce48e5aSMichal Kubecek u32 cmd, void __user *useraddr) 9699ce48e5aSMichal Kubecek { 9709ce48e5aSMichal Kubecek struct ethtool_rxnfc info; 9719ce48e5aSMichal Kubecek size_t info_size = sizeof(info); 9729ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 9739ce48e5aSMichal Kubecek int ret; 9749ce48e5aSMichal Kubecek void *rule_buf = NULL; 9759ce48e5aSMichal Kubecek 9769ce48e5aSMichal Kubecek if (!ops->get_rxnfc) 9779ce48e5aSMichal Kubecek return -EOPNOTSUPP; 9789ce48e5aSMichal Kubecek 9799ce48e5aSMichal Kubecek /* struct ethtool_rxnfc was originally defined for 9809ce48e5aSMichal Kubecek * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data 9819ce48e5aSMichal Kubecek * members. User-space might still be using that 9829ce48e5aSMichal Kubecek * definition. */ 9839ce48e5aSMichal Kubecek if (cmd == ETHTOOL_GRXFH) 9849ce48e5aSMichal Kubecek info_size = (offsetof(struct ethtool_rxnfc, data) + 9859ce48e5aSMichal Kubecek sizeof(info.data)); 9869ce48e5aSMichal Kubecek 987dd98d289SArnd Bergmann if (ethtool_rxnfc_copy_from_user(&info, useraddr, info_size)) 9889ce48e5aSMichal Kubecek return -EFAULT; 9899ce48e5aSMichal Kubecek 9909ce48e5aSMichal Kubecek /* If FLOW_RSS was requested then user-space must be using the 9919ce48e5aSMichal Kubecek * new definition, as FLOW_RSS is newer. 9929ce48e5aSMichal Kubecek */ 9939ce48e5aSMichal Kubecek if (cmd == ETHTOOL_GRXFH && info.flow_type & FLOW_RSS) { 9949ce48e5aSMichal Kubecek info_size = sizeof(info); 995dd98d289SArnd Bergmann if (ethtool_rxnfc_copy_from_user(&info, useraddr, info_size)) 9969ce48e5aSMichal Kubecek return -EFAULT; 9979ce48e5aSMichal Kubecek /* Since malicious users may modify the original data, 9989ce48e5aSMichal Kubecek * we need to check whether FLOW_RSS is still requested. 9999ce48e5aSMichal Kubecek */ 10009ce48e5aSMichal Kubecek if (!(info.flow_type & FLOW_RSS)) 10019ce48e5aSMichal Kubecek return -EINVAL; 10029ce48e5aSMichal Kubecek } 10039ce48e5aSMichal Kubecek 10049ce48e5aSMichal Kubecek if (info.cmd != cmd) 10059ce48e5aSMichal Kubecek return -EINVAL; 10069ce48e5aSMichal Kubecek 10079ce48e5aSMichal Kubecek if (info.cmd == ETHTOOL_GRXCLSRLALL) { 10089ce48e5aSMichal Kubecek if (info.rule_cnt > 0) { 10099ce48e5aSMichal Kubecek if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32)) 10109ce48e5aSMichal Kubecek rule_buf = kcalloc(info.rule_cnt, sizeof(u32), 10119ce48e5aSMichal Kubecek GFP_USER); 10129ce48e5aSMichal Kubecek if (!rule_buf) 10139ce48e5aSMichal Kubecek return -ENOMEM; 10149ce48e5aSMichal Kubecek } 10159ce48e5aSMichal Kubecek } 10169ce48e5aSMichal Kubecek 10179ce48e5aSMichal Kubecek ret = ops->get_rxnfc(dev, &info, rule_buf); 10189ce48e5aSMichal Kubecek if (ret < 0) 10199ce48e5aSMichal Kubecek goto err_out; 10209ce48e5aSMichal Kubecek 1021dd98d289SArnd Bergmann ret = ethtool_rxnfc_copy_to_user(useraddr, &info, info_size, rule_buf); 10229ce48e5aSMichal Kubecek err_out: 10239ce48e5aSMichal Kubecek kfree(rule_buf); 10249ce48e5aSMichal Kubecek 10259ce48e5aSMichal Kubecek return ret; 10269ce48e5aSMichal Kubecek } 10279ce48e5aSMichal Kubecek 10289ce48e5aSMichal Kubecek static int ethtool_copy_validate_indir(u32 *indir, void __user *useraddr, 10299ce48e5aSMichal Kubecek struct ethtool_rxnfc *rx_rings, 10309ce48e5aSMichal Kubecek u32 size) 10319ce48e5aSMichal Kubecek { 10329ce48e5aSMichal Kubecek int i; 10339ce48e5aSMichal Kubecek 1034ed717613SGustavo A. R. Silva if (copy_from_user(indir, useraddr, array_size(size, sizeof(indir[0])))) 10359ce48e5aSMichal Kubecek return -EFAULT; 10369ce48e5aSMichal Kubecek 10379ce48e5aSMichal Kubecek /* Validate ring indices */ 10389ce48e5aSMichal Kubecek for (i = 0; i < size; i++) 10399ce48e5aSMichal Kubecek if (indir[i] >= rx_rings->data) 10409ce48e5aSMichal Kubecek return -EINVAL; 10419ce48e5aSMichal Kubecek 10429ce48e5aSMichal Kubecek return 0; 10439ce48e5aSMichal Kubecek } 10449ce48e5aSMichal Kubecek 10459ce48e5aSMichal Kubecek u8 netdev_rss_key[NETDEV_RSS_KEY_LEN] __read_mostly; 10469ce48e5aSMichal Kubecek 10479ce48e5aSMichal Kubecek void netdev_rss_key_fill(void *buffer, size_t len) 10489ce48e5aSMichal Kubecek { 10499ce48e5aSMichal Kubecek BUG_ON(len > sizeof(netdev_rss_key)); 10509ce48e5aSMichal Kubecek net_get_random_once(netdev_rss_key, sizeof(netdev_rss_key)); 10519ce48e5aSMichal Kubecek memcpy(buffer, netdev_rss_key, len); 10529ce48e5aSMichal Kubecek } 10539ce48e5aSMichal Kubecek EXPORT_SYMBOL(netdev_rss_key_fill); 10549ce48e5aSMichal Kubecek 10559ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev, 10569ce48e5aSMichal Kubecek void __user *useraddr) 10579ce48e5aSMichal Kubecek { 10589ce48e5aSMichal Kubecek u32 user_size, dev_size; 10599ce48e5aSMichal Kubecek u32 *indir; 10609ce48e5aSMichal Kubecek int ret; 10619ce48e5aSMichal Kubecek 10629ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_rxfh_indir_size || 10639ce48e5aSMichal Kubecek !dev->ethtool_ops->get_rxfh) 10649ce48e5aSMichal Kubecek return -EOPNOTSUPP; 10659ce48e5aSMichal Kubecek dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev); 10669ce48e5aSMichal Kubecek if (dev_size == 0) 10679ce48e5aSMichal Kubecek return -EOPNOTSUPP; 10689ce48e5aSMichal Kubecek 10699ce48e5aSMichal Kubecek if (copy_from_user(&user_size, 10709ce48e5aSMichal Kubecek useraddr + offsetof(struct ethtool_rxfh_indir, size), 10719ce48e5aSMichal Kubecek sizeof(user_size))) 10729ce48e5aSMichal Kubecek return -EFAULT; 10739ce48e5aSMichal Kubecek 10749ce48e5aSMichal Kubecek if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size), 10759ce48e5aSMichal Kubecek &dev_size, sizeof(dev_size))) 10769ce48e5aSMichal Kubecek return -EFAULT; 10779ce48e5aSMichal Kubecek 10789ce48e5aSMichal Kubecek /* If the user buffer size is 0, this is just a query for the 10799ce48e5aSMichal Kubecek * device table size. Otherwise, if it's smaller than the 10809ce48e5aSMichal Kubecek * device table size it's an error. 10819ce48e5aSMichal Kubecek */ 10829ce48e5aSMichal Kubecek if (user_size < dev_size) 10839ce48e5aSMichal Kubecek return user_size == 0 ? 0 : -EINVAL; 10849ce48e5aSMichal Kubecek 10859ce48e5aSMichal Kubecek indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER); 10869ce48e5aSMichal Kubecek if (!indir) 10879ce48e5aSMichal Kubecek return -ENOMEM; 10889ce48e5aSMichal Kubecek 10899ce48e5aSMichal Kubecek ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL); 10909ce48e5aSMichal Kubecek if (ret) 10919ce48e5aSMichal Kubecek goto out; 10929ce48e5aSMichal Kubecek 10939ce48e5aSMichal Kubecek if (copy_to_user(useraddr + 10949ce48e5aSMichal Kubecek offsetof(struct ethtool_rxfh_indir, ring_index[0]), 10959ce48e5aSMichal Kubecek indir, dev_size * sizeof(indir[0]))) 10969ce48e5aSMichal Kubecek ret = -EFAULT; 10979ce48e5aSMichal Kubecek 10989ce48e5aSMichal Kubecek out: 10999ce48e5aSMichal Kubecek kfree(indir); 11009ce48e5aSMichal Kubecek return ret; 11019ce48e5aSMichal Kubecek } 11029ce48e5aSMichal Kubecek 11039ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev, 11049ce48e5aSMichal Kubecek void __user *useraddr) 11059ce48e5aSMichal Kubecek { 11069ce48e5aSMichal Kubecek struct ethtool_rxnfc rx_rings; 11079ce48e5aSMichal Kubecek u32 user_size, dev_size, i; 11089ce48e5aSMichal Kubecek u32 *indir; 11099ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 11109ce48e5aSMichal Kubecek int ret; 11119ce48e5aSMichal Kubecek u32 ringidx_offset = offsetof(struct ethtool_rxfh_indir, ring_index[0]); 11129ce48e5aSMichal Kubecek 11139ce48e5aSMichal Kubecek if (!ops->get_rxfh_indir_size || !ops->set_rxfh || 11149ce48e5aSMichal Kubecek !ops->get_rxnfc) 11159ce48e5aSMichal Kubecek return -EOPNOTSUPP; 11169ce48e5aSMichal Kubecek 11179ce48e5aSMichal Kubecek dev_size = ops->get_rxfh_indir_size(dev); 11189ce48e5aSMichal Kubecek if (dev_size == 0) 11199ce48e5aSMichal Kubecek return -EOPNOTSUPP; 11209ce48e5aSMichal Kubecek 11219ce48e5aSMichal Kubecek if (copy_from_user(&user_size, 11229ce48e5aSMichal Kubecek useraddr + offsetof(struct ethtool_rxfh_indir, size), 11239ce48e5aSMichal Kubecek sizeof(user_size))) 11249ce48e5aSMichal Kubecek return -EFAULT; 11259ce48e5aSMichal Kubecek 11269ce48e5aSMichal Kubecek if (user_size != 0 && user_size != dev_size) 11279ce48e5aSMichal Kubecek return -EINVAL; 11289ce48e5aSMichal Kubecek 11299ce48e5aSMichal Kubecek indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER); 11309ce48e5aSMichal Kubecek if (!indir) 11319ce48e5aSMichal Kubecek return -ENOMEM; 11329ce48e5aSMichal Kubecek 11339ce48e5aSMichal Kubecek rx_rings.cmd = ETHTOOL_GRXRINGS; 11349ce48e5aSMichal Kubecek ret = ops->get_rxnfc(dev, &rx_rings, NULL); 11359ce48e5aSMichal Kubecek if (ret) 11369ce48e5aSMichal Kubecek goto out; 11379ce48e5aSMichal Kubecek 11389ce48e5aSMichal Kubecek if (user_size == 0) { 11399ce48e5aSMichal Kubecek for (i = 0; i < dev_size; i++) 11409ce48e5aSMichal Kubecek indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data); 11419ce48e5aSMichal Kubecek } else { 11429ce48e5aSMichal Kubecek ret = ethtool_copy_validate_indir(indir, 11439ce48e5aSMichal Kubecek useraddr + ringidx_offset, 11449ce48e5aSMichal Kubecek &rx_rings, 11459ce48e5aSMichal Kubecek dev_size); 11469ce48e5aSMichal Kubecek if (ret) 11479ce48e5aSMichal Kubecek goto out; 11489ce48e5aSMichal Kubecek } 11499ce48e5aSMichal Kubecek 11509ce48e5aSMichal Kubecek ret = ops->set_rxfh(dev, indir, NULL, ETH_RSS_HASH_NO_CHANGE); 11519ce48e5aSMichal Kubecek if (ret) 11529ce48e5aSMichal Kubecek goto out; 11539ce48e5aSMichal Kubecek 11549ce48e5aSMichal Kubecek /* indicate whether rxfh was set to default */ 11559ce48e5aSMichal Kubecek if (user_size == 0) 11569ce48e5aSMichal Kubecek dev->priv_flags &= ~IFF_RXFH_CONFIGURED; 11579ce48e5aSMichal Kubecek else 11589ce48e5aSMichal Kubecek dev->priv_flags |= IFF_RXFH_CONFIGURED; 11599ce48e5aSMichal Kubecek 11609ce48e5aSMichal Kubecek out: 11619ce48e5aSMichal Kubecek kfree(indir); 11629ce48e5aSMichal Kubecek return ret; 11639ce48e5aSMichal Kubecek } 11649ce48e5aSMichal Kubecek 11659ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_rxfh(struct net_device *dev, 11669ce48e5aSMichal Kubecek void __user *useraddr) 11679ce48e5aSMichal Kubecek { 11689ce48e5aSMichal Kubecek int ret; 11699ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 11709ce48e5aSMichal Kubecek u32 user_indir_size, user_key_size; 11719ce48e5aSMichal Kubecek u32 dev_indir_size = 0, dev_key_size = 0; 11729ce48e5aSMichal Kubecek struct ethtool_rxfh rxfh; 11739ce48e5aSMichal Kubecek u32 total_size; 11749ce48e5aSMichal Kubecek u32 indir_bytes; 11759ce48e5aSMichal Kubecek u32 *indir = NULL; 11769ce48e5aSMichal Kubecek u8 dev_hfunc = 0; 11779ce48e5aSMichal Kubecek u8 *hkey = NULL; 11789ce48e5aSMichal Kubecek u8 *rss_config; 11799ce48e5aSMichal Kubecek 11809ce48e5aSMichal Kubecek if (!ops->get_rxfh) 11819ce48e5aSMichal Kubecek return -EOPNOTSUPP; 11829ce48e5aSMichal Kubecek 11839ce48e5aSMichal Kubecek if (ops->get_rxfh_indir_size) 11849ce48e5aSMichal Kubecek dev_indir_size = ops->get_rxfh_indir_size(dev); 11859ce48e5aSMichal Kubecek if (ops->get_rxfh_key_size) 11869ce48e5aSMichal Kubecek dev_key_size = ops->get_rxfh_key_size(dev); 11879ce48e5aSMichal Kubecek 11889ce48e5aSMichal Kubecek if (copy_from_user(&rxfh, useraddr, sizeof(rxfh))) 11899ce48e5aSMichal Kubecek return -EFAULT; 11909ce48e5aSMichal Kubecek user_indir_size = rxfh.indir_size; 11919ce48e5aSMichal Kubecek user_key_size = rxfh.key_size; 11929ce48e5aSMichal Kubecek 11939ce48e5aSMichal Kubecek /* Check that reserved fields are 0 for now */ 11949ce48e5aSMichal Kubecek if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32) 11959ce48e5aSMichal Kubecek return -EINVAL; 11969ce48e5aSMichal Kubecek /* Most drivers don't handle rss_context, check it's 0 as well */ 11979ce48e5aSMichal Kubecek if (rxfh.rss_context && !ops->get_rxfh_context) 11989ce48e5aSMichal Kubecek return -EOPNOTSUPP; 11999ce48e5aSMichal Kubecek 12009ce48e5aSMichal Kubecek rxfh.indir_size = dev_indir_size; 12019ce48e5aSMichal Kubecek rxfh.key_size = dev_key_size; 12029ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &rxfh, sizeof(rxfh))) 12039ce48e5aSMichal Kubecek return -EFAULT; 12049ce48e5aSMichal Kubecek 12059ce48e5aSMichal Kubecek if ((user_indir_size && (user_indir_size != dev_indir_size)) || 12069ce48e5aSMichal Kubecek (user_key_size && (user_key_size != dev_key_size))) 12079ce48e5aSMichal Kubecek return -EINVAL; 12089ce48e5aSMichal Kubecek 12099ce48e5aSMichal Kubecek indir_bytes = user_indir_size * sizeof(indir[0]); 12109ce48e5aSMichal Kubecek total_size = indir_bytes + user_key_size; 12119ce48e5aSMichal Kubecek rss_config = kzalloc(total_size, GFP_USER); 12129ce48e5aSMichal Kubecek if (!rss_config) 12139ce48e5aSMichal Kubecek return -ENOMEM; 12149ce48e5aSMichal Kubecek 12159ce48e5aSMichal Kubecek if (user_indir_size) 12169ce48e5aSMichal Kubecek indir = (u32 *)rss_config; 12179ce48e5aSMichal Kubecek 12189ce48e5aSMichal Kubecek if (user_key_size) 12199ce48e5aSMichal Kubecek hkey = rss_config + indir_bytes; 12209ce48e5aSMichal Kubecek 12219ce48e5aSMichal Kubecek if (rxfh.rss_context) 12229ce48e5aSMichal Kubecek ret = dev->ethtool_ops->get_rxfh_context(dev, indir, hkey, 12239ce48e5aSMichal Kubecek &dev_hfunc, 12249ce48e5aSMichal Kubecek rxfh.rss_context); 12259ce48e5aSMichal Kubecek else 12269ce48e5aSMichal Kubecek ret = dev->ethtool_ops->get_rxfh(dev, indir, hkey, &dev_hfunc); 12279ce48e5aSMichal Kubecek if (ret) 12289ce48e5aSMichal Kubecek goto out; 12299ce48e5aSMichal Kubecek 12309ce48e5aSMichal Kubecek if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, hfunc), 12319ce48e5aSMichal Kubecek &dev_hfunc, sizeof(rxfh.hfunc))) { 12329ce48e5aSMichal Kubecek ret = -EFAULT; 12339ce48e5aSMichal Kubecek } else if (copy_to_user(useraddr + 12349ce48e5aSMichal Kubecek offsetof(struct ethtool_rxfh, rss_config[0]), 12359ce48e5aSMichal Kubecek rss_config, total_size)) { 12369ce48e5aSMichal Kubecek ret = -EFAULT; 12379ce48e5aSMichal Kubecek } 12389ce48e5aSMichal Kubecek out: 12399ce48e5aSMichal Kubecek kfree(rss_config); 12409ce48e5aSMichal Kubecek 12419ce48e5aSMichal Kubecek return ret; 12429ce48e5aSMichal Kubecek } 12439ce48e5aSMichal Kubecek 12449ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_rxfh(struct net_device *dev, 12459ce48e5aSMichal Kubecek void __user *useraddr) 12469ce48e5aSMichal Kubecek { 12479ce48e5aSMichal Kubecek int ret; 12489ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 12499ce48e5aSMichal Kubecek struct ethtool_rxnfc rx_rings; 12509ce48e5aSMichal Kubecek struct ethtool_rxfh rxfh; 12519ce48e5aSMichal Kubecek u32 dev_indir_size = 0, dev_key_size = 0, i; 12529ce48e5aSMichal Kubecek u32 *indir = NULL, indir_bytes = 0; 12539ce48e5aSMichal Kubecek u8 *hkey = NULL; 12549ce48e5aSMichal Kubecek u8 *rss_config; 12559ce48e5aSMichal Kubecek u32 rss_cfg_offset = offsetof(struct ethtool_rxfh, rss_config[0]); 12569ce48e5aSMichal Kubecek bool delete = false; 12579ce48e5aSMichal Kubecek 12589ce48e5aSMichal Kubecek if (!ops->get_rxnfc || !ops->set_rxfh) 12599ce48e5aSMichal Kubecek return -EOPNOTSUPP; 12609ce48e5aSMichal Kubecek 12619ce48e5aSMichal Kubecek if (ops->get_rxfh_indir_size) 12629ce48e5aSMichal Kubecek dev_indir_size = ops->get_rxfh_indir_size(dev); 12639ce48e5aSMichal Kubecek if (ops->get_rxfh_key_size) 12649ce48e5aSMichal Kubecek dev_key_size = ops->get_rxfh_key_size(dev); 12659ce48e5aSMichal Kubecek 12669ce48e5aSMichal Kubecek if (copy_from_user(&rxfh, useraddr, sizeof(rxfh))) 12679ce48e5aSMichal Kubecek return -EFAULT; 12689ce48e5aSMichal Kubecek 12699ce48e5aSMichal Kubecek /* Check that reserved fields are 0 for now */ 12709ce48e5aSMichal Kubecek if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32) 12719ce48e5aSMichal Kubecek return -EINVAL; 12729ce48e5aSMichal Kubecek /* Most drivers don't handle rss_context, check it's 0 as well */ 12739ce48e5aSMichal Kubecek if (rxfh.rss_context && !ops->set_rxfh_context) 12749ce48e5aSMichal Kubecek return -EOPNOTSUPP; 12759ce48e5aSMichal Kubecek 12769ce48e5aSMichal Kubecek /* If either indir, hash key or function is valid, proceed further. 12779ce48e5aSMichal Kubecek * Must request at least one change: indir size, hash key or function. 12789ce48e5aSMichal Kubecek */ 12799ce48e5aSMichal Kubecek if ((rxfh.indir_size && 12809ce48e5aSMichal Kubecek rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE && 12819ce48e5aSMichal Kubecek rxfh.indir_size != dev_indir_size) || 12829ce48e5aSMichal Kubecek (rxfh.key_size && (rxfh.key_size != dev_key_size)) || 12839ce48e5aSMichal Kubecek (rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE && 12849ce48e5aSMichal Kubecek rxfh.key_size == 0 && rxfh.hfunc == ETH_RSS_HASH_NO_CHANGE)) 12859ce48e5aSMichal Kubecek return -EINVAL; 12869ce48e5aSMichal Kubecek 12879ce48e5aSMichal Kubecek if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) 12889ce48e5aSMichal Kubecek indir_bytes = dev_indir_size * sizeof(indir[0]); 12899ce48e5aSMichal Kubecek 12909ce48e5aSMichal Kubecek rss_config = kzalloc(indir_bytes + rxfh.key_size, GFP_USER); 12919ce48e5aSMichal Kubecek if (!rss_config) 12929ce48e5aSMichal Kubecek return -ENOMEM; 12939ce48e5aSMichal Kubecek 12949ce48e5aSMichal Kubecek rx_rings.cmd = ETHTOOL_GRXRINGS; 12959ce48e5aSMichal Kubecek ret = ops->get_rxnfc(dev, &rx_rings, NULL); 12969ce48e5aSMichal Kubecek if (ret) 12979ce48e5aSMichal Kubecek goto out; 12989ce48e5aSMichal Kubecek 12999ce48e5aSMichal Kubecek /* rxfh.indir_size == 0 means reset the indir table to default (master 13009ce48e5aSMichal Kubecek * context) or delete the context (other RSS contexts). 13019ce48e5aSMichal Kubecek * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged. 13029ce48e5aSMichal Kubecek */ 13039ce48e5aSMichal Kubecek if (rxfh.indir_size && 13049ce48e5aSMichal Kubecek rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) { 13059ce48e5aSMichal Kubecek indir = (u32 *)rss_config; 13069ce48e5aSMichal Kubecek ret = ethtool_copy_validate_indir(indir, 13079ce48e5aSMichal Kubecek useraddr + rss_cfg_offset, 13089ce48e5aSMichal Kubecek &rx_rings, 13099ce48e5aSMichal Kubecek rxfh.indir_size); 13109ce48e5aSMichal Kubecek if (ret) 13119ce48e5aSMichal Kubecek goto out; 13129ce48e5aSMichal Kubecek } else if (rxfh.indir_size == 0) { 13139ce48e5aSMichal Kubecek if (rxfh.rss_context == 0) { 13149ce48e5aSMichal Kubecek indir = (u32 *)rss_config; 13159ce48e5aSMichal Kubecek for (i = 0; i < dev_indir_size; i++) 13169ce48e5aSMichal Kubecek indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data); 13179ce48e5aSMichal Kubecek } else { 13189ce48e5aSMichal Kubecek delete = true; 13199ce48e5aSMichal Kubecek } 13209ce48e5aSMichal Kubecek } 13219ce48e5aSMichal Kubecek 13229ce48e5aSMichal Kubecek if (rxfh.key_size) { 13239ce48e5aSMichal Kubecek hkey = rss_config + indir_bytes; 13249ce48e5aSMichal Kubecek if (copy_from_user(hkey, 13259ce48e5aSMichal Kubecek useraddr + rss_cfg_offset + indir_bytes, 13269ce48e5aSMichal Kubecek rxfh.key_size)) { 13279ce48e5aSMichal Kubecek ret = -EFAULT; 13289ce48e5aSMichal Kubecek goto out; 13299ce48e5aSMichal Kubecek } 13309ce48e5aSMichal Kubecek } 13319ce48e5aSMichal Kubecek 13329ce48e5aSMichal Kubecek if (rxfh.rss_context) 13339ce48e5aSMichal Kubecek ret = ops->set_rxfh_context(dev, indir, hkey, rxfh.hfunc, 13349ce48e5aSMichal Kubecek &rxfh.rss_context, delete); 13359ce48e5aSMichal Kubecek else 13369ce48e5aSMichal Kubecek ret = ops->set_rxfh(dev, indir, hkey, rxfh.hfunc); 13379ce48e5aSMichal Kubecek if (ret) 13389ce48e5aSMichal Kubecek goto out; 13399ce48e5aSMichal Kubecek 13409ce48e5aSMichal Kubecek if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, rss_context), 13419ce48e5aSMichal Kubecek &rxfh.rss_context, sizeof(rxfh.rss_context))) 13429ce48e5aSMichal Kubecek ret = -EFAULT; 13439ce48e5aSMichal Kubecek 13449ce48e5aSMichal Kubecek if (!rxfh.rss_context) { 13459ce48e5aSMichal Kubecek /* indicate whether rxfh was set to default */ 13469ce48e5aSMichal Kubecek if (rxfh.indir_size == 0) 13479ce48e5aSMichal Kubecek dev->priv_flags &= ~IFF_RXFH_CONFIGURED; 13489ce48e5aSMichal Kubecek else if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) 13499ce48e5aSMichal Kubecek dev->priv_flags |= IFF_RXFH_CONFIGURED; 13509ce48e5aSMichal Kubecek } 13519ce48e5aSMichal Kubecek 13529ce48e5aSMichal Kubecek out: 13539ce48e5aSMichal Kubecek kfree(rss_config); 13549ce48e5aSMichal Kubecek return ret; 13559ce48e5aSMichal Kubecek } 13569ce48e5aSMichal Kubecek 13579ce48e5aSMichal Kubecek static int ethtool_get_regs(struct net_device *dev, char __user *useraddr) 13589ce48e5aSMichal Kubecek { 13599ce48e5aSMichal Kubecek struct ethtool_regs regs; 13609ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 13619ce48e5aSMichal Kubecek void *regbuf; 13629ce48e5aSMichal Kubecek int reglen, ret; 13639ce48e5aSMichal Kubecek 13649ce48e5aSMichal Kubecek if (!ops->get_regs || !ops->get_regs_len) 13659ce48e5aSMichal Kubecek return -EOPNOTSUPP; 13669ce48e5aSMichal Kubecek 13679ce48e5aSMichal Kubecek if (copy_from_user(®s, useraddr, sizeof(regs))) 13689ce48e5aSMichal Kubecek return -EFAULT; 13699ce48e5aSMichal Kubecek 13709ce48e5aSMichal Kubecek reglen = ops->get_regs_len(dev); 13719ce48e5aSMichal Kubecek if (reglen <= 0) 13729ce48e5aSMichal Kubecek return reglen; 13739ce48e5aSMichal Kubecek 13749ce48e5aSMichal Kubecek if (regs.len > reglen) 13759ce48e5aSMichal Kubecek regs.len = reglen; 13769ce48e5aSMichal Kubecek 13779ce48e5aSMichal Kubecek regbuf = vzalloc(reglen); 13789ce48e5aSMichal Kubecek if (!regbuf) 13799ce48e5aSMichal Kubecek return -ENOMEM; 13809ce48e5aSMichal Kubecek 13819ce48e5aSMichal Kubecek if (regs.len < reglen) 13829ce48e5aSMichal Kubecek reglen = regs.len; 13839ce48e5aSMichal Kubecek 13849ce48e5aSMichal Kubecek ops->get_regs(dev, ®s, regbuf); 13859ce48e5aSMichal Kubecek 13869ce48e5aSMichal Kubecek ret = -EFAULT; 13879ce48e5aSMichal Kubecek if (copy_to_user(useraddr, ®s, sizeof(regs))) 13889ce48e5aSMichal Kubecek goto out; 13899ce48e5aSMichal Kubecek useraddr += offsetof(struct ethtool_regs, data); 13909ce48e5aSMichal Kubecek if (copy_to_user(useraddr, regbuf, reglen)) 13919ce48e5aSMichal Kubecek goto out; 13929ce48e5aSMichal Kubecek ret = 0; 13939ce48e5aSMichal Kubecek 13949ce48e5aSMichal Kubecek out: 13959ce48e5aSMichal Kubecek vfree(regbuf); 13969ce48e5aSMichal Kubecek return ret; 13979ce48e5aSMichal Kubecek } 13989ce48e5aSMichal Kubecek 13999ce48e5aSMichal Kubecek static int ethtool_reset(struct net_device *dev, char __user *useraddr) 14009ce48e5aSMichal Kubecek { 14019ce48e5aSMichal Kubecek struct ethtool_value reset; 14029ce48e5aSMichal Kubecek int ret; 14039ce48e5aSMichal Kubecek 14049ce48e5aSMichal Kubecek if (!dev->ethtool_ops->reset) 14059ce48e5aSMichal Kubecek return -EOPNOTSUPP; 14069ce48e5aSMichal Kubecek 14079ce48e5aSMichal Kubecek if (copy_from_user(&reset, useraddr, sizeof(reset))) 14089ce48e5aSMichal Kubecek return -EFAULT; 14099ce48e5aSMichal Kubecek 14109ce48e5aSMichal Kubecek ret = dev->ethtool_ops->reset(dev, &reset.data); 14119ce48e5aSMichal Kubecek if (ret) 14129ce48e5aSMichal Kubecek return ret; 14139ce48e5aSMichal Kubecek 14149ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &reset, sizeof(reset))) 14159ce48e5aSMichal Kubecek return -EFAULT; 14169ce48e5aSMichal Kubecek return 0; 14179ce48e5aSMichal Kubecek } 14189ce48e5aSMichal Kubecek 14199ce48e5aSMichal Kubecek static int ethtool_get_wol(struct net_device *dev, char __user *useraddr) 14209ce48e5aSMichal Kubecek { 14219ce48e5aSMichal Kubecek struct ethtool_wolinfo wol; 14229ce48e5aSMichal Kubecek 14239ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_wol) 14249ce48e5aSMichal Kubecek return -EOPNOTSUPP; 14259ce48e5aSMichal Kubecek 14269ce48e5aSMichal Kubecek memset(&wol, 0, sizeof(struct ethtool_wolinfo)); 14279ce48e5aSMichal Kubecek wol.cmd = ETHTOOL_GWOL; 14289ce48e5aSMichal Kubecek dev->ethtool_ops->get_wol(dev, &wol); 14299ce48e5aSMichal Kubecek 14309ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &wol, sizeof(wol))) 14319ce48e5aSMichal Kubecek return -EFAULT; 14329ce48e5aSMichal Kubecek return 0; 14339ce48e5aSMichal Kubecek } 14349ce48e5aSMichal Kubecek 14359ce48e5aSMichal Kubecek static int ethtool_set_wol(struct net_device *dev, char __user *useraddr) 14369ce48e5aSMichal Kubecek { 14379ce48e5aSMichal Kubecek struct ethtool_wolinfo wol; 14389ce48e5aSMichal Kubecek int ret; 14399ce48e5aSMichal Kubecek 14409ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_wol) 14419ce48e5aSMichal Kubecek return -EOPNOTSUPP; 14429ce48e5aSMichal Kubecek 14439ce48e5aSMichal Kubecek if (copy_from_user(&wol, useraddr, sizeof(wol))) 14449ce48e5aSMichal Kubecek return -EFAULT; 14459ce48e5aSMichal Kubecek 14469ce48e5aSMichal Kubecek ret = dev->ethtool_ops->set_wol(dev, &wol); 14479ce48e5aSMichal Kubecek if (ret) 14489ce48e5aSMichal Kubecek return ret; 14499ce48e5aSMichal Kubecek 14509ce48e5aSMichal Kubecek dev->wol_enabled = !!wol.wolopts; 145167bffa79SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_WOL_NTF, NULL); 14529ce48e5aSMichal Kubecek 14539ce48e5aSMichal Kubecek return 0; 14549ce48e5aSMichal Kubecek } 14559ce48e5aSMichal Kubecek 14569ce48e5aSMichal Kubecek static int ethtool_get_eee(struct net_device *dev, char __user *useraddr) 14579ce48e5aSMichal Kubecek { 14589ce48e5aSMichal Kubecek struct ethtool_eee edata; 14599ce48e5aSMichal Kubecek int rc; 14609ce48e5aSMichal Kubecek 14619ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_eee) 14629ce48e5aSMichal Kubecek return -EOPNOTSUPP; 14639ce48e5aSMichal Kubecek 14649ce48e5aSMichal Kubecek memset(&edata, 0, sizeof(struct ethtool_eee)); 14659ce48e5aSMichal Kubecek edata.cmd = ETHTOOL_GEEE; 14669ce48e5aSMichal Kubecek rc = dev->ethtool_ops->get_eee(dev, &edata); 14679ce48e5aSMichal Kubecek 14689ce48e5aSMichal Kubecek if (rc) 14699ce48e5aSMichal Kubecek return rc; 14709ce48e5aSMichal Kubecek 14719ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &edata, sizeof(edata))) 14729ce48e5aSMichal Kubecek return -EFAULT; 14739ce48e5aSMichal Kubecek 14749ce48e5aSMichal Kubecek return 0; 14759ce48e5aSMichal Kubecek } 14769ce48e5aSMichal Kubecek 14779ce48e5aSMichal Kubecek static int ethtool_set_eee(struct net_device *dev, char __user *useraddr) 14789ce48e5aSMichal Kubecek { 14799ce48e5aSMichal Kubecek struct ethtool_eee edata; 14806c5bc8feSMichal Kubecek int ret; 14819ce48e5aSMichal Kubecek 14829ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_eee) 14839ce48e5aSMichal Kubecek return -EOPNOTSUPP; 14849ce48e5aSMichal Kubecek 14859ce48e5aSMichal Kubecek if (copy_from_user(&edata, useraddr, sizeof(edata))) 14869ce48e5aSMichal Kubecek return -EFAULT; 14879ce48e5aSMichal Kubecek 14886c5bc8feSMichal Kubecek ret = dev->ethtool_ops->set_eee(dev, &edata); 14896c5bc8feSMichal Kubecek if (!ret) 14906c5bc8feSMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_EEE_NTF, NULL); 14916c5bc8feSMichal Kubecek return ret; 14929ce48e5aSMichal Kubecek } 14939ce48e5aSMichal Kubecek 14949ce48e5aSMichal Kubecek static int ethtool_nway_reset(struct net_device *dev) 14959ce48e5aSMichal Kubecek { 14969ce48e5aSMichal Kubecek if (!dev->ethtool_ops->nway_reset) 14979ce48e5aSMichal Kubecek return -EOPNOTSUPP; 14989ce48e5aSMichal Kubecek 14999ce48e5aSMichal Kubecek return dev->ethtool_ops->nway_reset(dev); 15009ce48e5aSMichal Kubecek } 15019ce48e5aSMichal Kubecek 15029ce48e5aSMichal Kubecek static int ethtool_get_link(struct net_device *dev, char __user *useraddr) 15039ce48e5aSMichal Kubecek { 15049ce48e5aSMichal Kubecek struct ethtool_value edata = { .cmd = ETHTOOL_GLINK }; 15053d2b847fSMichal Kubecek int link = __ethtool_get_link(dev); 15069ce48e5aSMichal Kubecek 15073d2b847fSMichal Kubecek if (link < 0) 15083d2b847fSMichal Kubecek return link; 15099ce48e5aSMichal Kubecek 15103d2b847fSMichal Kubecek edata.data = link; 15119ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &edata, sizeof(edata))) 15129ce48e5aSMichal Kubecek return -EFAULT; 15139ce48e5aSMichal Kubecek return 0; 15149ce48e5aSMichal Kubecek } 15159ce48e5aSMichal Kubecek 15169ce48e5aSMichal Kubecek static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr, 15179ce48e5aSMichal Kubecek int (*getter)(struct net_device *, 15189ce48e5aSMichal Kubecek struct ethtool_eeprom *, u8 *), 15199ce48e5aSMichal Kubecek u32 total_len) 15209ce48e5aSMichal Kubecek { 15219ce48e5aSMichal Kubecek struct ethtool_eeprom eeprom; 15229ce48e5aSMichal Kubecek void __user *userbuf = useraddr + sizeof(eeprom); 15239ce48e5aSMichal Kubecek u32 bytes_remaining; 15249ce48e5aSMichal Kubecek u8 *data; 15259ce48e5aSMichal Kubecek int ret = 0; 15269ce48e5aSMichal Kubecek 15279ce48e5aSMichal Kubecek if (copy_from_user(&eeprom, useraddr, sizeof(eeprom))) 15289ce48e5aSMichal Kubecek return -EFAULT; 15299ce48e5aSMichal Kubecek 15309ce48e5aSMichal Kubecek /* Check for wrap and zero */ 15319ce48e5aSMichal Kubecek if (eeprom.offset + eeprom.len <= eeprom.offset) 15329ce48e5aSMichal Kubecek return -EINVAL; 15339ce48e5aSMichal Kubecek 15349ce48e5aSMichal Kubecek /* Check for exceeding total eeprom len */ 15359ce48e5aSMichal Kubecek if (eeprom.offset + eeprom.len > total_len) 15369ce48e5aSMichal Kubecek return -EINVAL; 15379ce48e5aSMichal Kubecek 153880ec82e3SAustin Kim data = kzalloc(PAGE_SIZE, GFP_USER); 15399ce48e5aSMichal Kubecek if (!data) 15409ce48e5aSMichal Kubecek return -ENOMEM; 15419ce48e5aSMichal Kubecek 15429ce48e5aSMichal Kubecek bytes_remaining = eeprom.len; 15439ce48e5aSMichal Kubecek while (bytes_remaining > 0) { 15449ce48e5aSMichal Kubecek eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); 15459ce48e5aSMichal Kubecek 15469ce48e5aSMichal Kubecek ret = getter(dev, &eeprom, data); 15479ce48e5aSMichal Kubecek if (ret) 15489ce48e5aSMichal Kubecek break; 1549b9bbc4c1SHeiner Kallweit if (!eeprom.len) { 1550b9bbc4c1SHeiner Kallweit ret = -EIO; 1551b9bbc4c1SHeiner Kallweit break; 1552b9bbc4c1SHeiner Kallweit } 15539ce48e5aSMichal Kubecek if (copy_to_user(userbuf, data, eeprom.len)) { 15549ce48e5aSMichal Kubecek ret = -EFAULT; 15559ce48e5aSMichal Kubecek break; 15569ce48e5aSMichal Kubecek } 15579ce48e5aSMichal Kubecek userbuf += eeprom.len; 15589ce48e5aSMichal Kubecek eeprom.offset += eeprom.len; 15599ce48e5aSMichal Kubecek bytes_remaining -= eeprom.len; 15609ce48e5aSMichal Kubecek } 15619ce48e5aSMichal Kubecek 15629ce48e5aSMichal Kubecek eeprom.len = userbuf - (useraddr + sizeof(eeprom)); 15639ce48e5aSMichal Kubecek eeprom.offset -= eeprom.len; 15649ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &eeprom, sizeof(eeprom))) 15659ce48e5aSMichal Kubecek ret = -EFAULT; 15669ce48e5aSMichal Kubecek 15679ce48e5aSMichal Kubecek kfree(data); 15689ce48e5aSMichal Kubecek return ret; 15699ce48e5aSMichal Kubecek } 15709ce48e5aSMichal Kubecek 15719ce48e5aSMichal Kubecek static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr) 15729ce48e5aSMichal Kubecek { 15739ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 15749ce48e5aSMichal Kubecek 15759ce48e5aSMichal Kubecek if (!ops->get_eeprom || !ops->get_eeprom_len || 15769ce48e5aSMichal Kubecek !ops->get_eeprom_len(dev)) 15779ce48e5aSMichal Kubecek return -EOPNOTSUPP; 15789ce48e5aSMichal Kubecek 15799ce48e5aSMichal Kubecek return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom, 15809ce48e5aSMichal Kubecek ops->get_eeprom_len(dev)); 15819ce48e5aSMichal Kubecek } 15829ce48e5aSMichal Kubecek 15839ce48e5aSMichal Kubecek static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr) 15849ce48e5aSMichal Kubecek { 15859ce48e5aSMichal Kubecek struct ethtool_eeprom eeprom; 15869ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 15879ce48e5aSMichal Kubecek void __user *userbuf = useraddr + sizeof(eeprom); 15889ce48e5aSMichal Kubecek u32 bytes_remaining; 15899ce48e5aSMichal Kubecek u8 *data; 15909ce48e5aSMichal Kubecek int ret = 0; 15919ce48e5aSMichal Kubecek 15929ce48e5aSMichal Kubecek if (!ops->set_eeprom || !ops->get_eeprom_len || 15939ce48e5aSMichal Kubecek !ops->get_eeprom_len(dev)) 15949ce48e5aSMichal Kubecek return -EOPNOTSUPP; 15959ce48e5aSMichal Kubecek 15969ce48e5aSMichal Kubecek if (copy_from_user(&eeprom, useraddr, sizeof(eeprom))) 15979ce48e5aSMichal Kubecek return -EFAULT; 15989ce48e5aSMichal Kubecek 15999ce48e5aSMichal Kubecek /* Check for wrap and zero */ 16009ce48e5aSMichal Kubecek if (eeprom.offset + eeprom.len <= eeprom.offset) 16019ce48e5aSMichal Kubecek return -EINVAL; 16029ce48e5aSMichal Kubecek 16039ce48e5aSMichal Kubecek /* Check for exceeding total eeprom len */ 16049ce48e5aSMichal Kubecek if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev)) 16059ce48e5aSMichal Kubecek return -EINVAL; 16069ce48e5aSMichal Kubecek 160780ec82e3SAustin Kim data = kzalloc(PAGE_SIZE, GFP_USER); 16089ce48e5aSMichal Kubecek if (!data) 16099ce48e5aSMichal Kubecek return -ENOMEM; 16109ce48e5aSMichal Kubecek 16119ce48e5aSMichal Kubecek bytes_remaining = eeprom.len; 16129ce48e5aSMichal Kubecek while (bytes_remaining > 0) { 16139ce48e5aSMichal Kubecek eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); 16149ce48e5aSMichal Kubecek 16159ce48e5aSMichal Kubecek if (copy_from_user(data, userbuf, eeprom.len)) { 16169ce48e5aSMichal Kubecek ret = -EFAULT; 16179ce48e5aSMichal Kubecek break; 16189ce48e5aSMichal Kubecek } 16199ce48e5aSMichal Kubecek ret = ops->set_eeprom(dev, &eeprom, data); 16209ce48e5aSMichal Kubecek if (ret) 16219ce48e5aSMichal Kubecek break; 16229ce48e5aSMichal Kubecek userbuf += eeprom.len; 16239ce48e5aSMichal Kubecek eeprom.offset += eeprom.len; 16249ce48e5aSMichal Kubecek bytes_remaining -= eeprom.len; 16259ce48e5aSMichal Kubecek } 16269ce48e5aSMichal Kubecek 16279ce48e5aSMichal Kubecek kfree(data); 16289ce48e5aSMichal Kubecek return ret; 16299ce48e5aSMichal Kubecek } 16309ce48e5aSMichal Kubecek 16319ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev, 16329ce48e5aSMichal Kubecek void __user *useraddr) 16339ce48e5aSMichal Kubecek { 16349ce48e5aSMichal Kubecek struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE }; 1635f3ccfda1SYufeng Mo struct kernel_ethtool_coalesce kernel_coalesce = {}; 163631610711SHeiner Kallweit int ret; 16379ce48e5aSMichal Kubecek 16389ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_coalesce) 16399ce48e5aSMichal Kubecek return -EOPNOTSUPP; 16409ce48e5aSMichal Kubecek 1641f3ccfda1SYufeng Mo ret = dev->ethtool_ops->get_coalesce(dev, &coalesce, &kernel_coalesce, 1642f3ccfda1SYufeng Mo NULL); 164331610711SHeiner Kallweit if (ret) 164431610711SHeiner Kallweit return ret; 16459ce48e5aSMichal Kubecek 16469ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &coalesce, sizeof(coalesce))) 16479ce48e5aSMichal Kubecek return -EFAULT; 16489ce48e5aSMichal Kubecek return 0; 16499ce48e5aSMichal Kubecek } 16509ce48e5aSMichal Kubecek 165195cddcb5SJakub Kicinski static bool 165295cddcb5SJakub Kicinski ethtool_set_coalesce_supported(struct net_device *dev, 165395cddcb5SJakub Kicinski struct ethtool_coalesce *coalesce) 165495cddcb5SJakub Kicinski { 165595cddcb5SJakub Kicinski u32 supported_params = dev->ethtool_ops->supported_coalesce_params; 165695cddcb5SJakub Kicinski u32 nonzero_params = 0; 165795cddcb5SJakub Kicinski 165895cddcb5SJakub Kicinski if (coalesce->rx_coalesce_usecs) 165995cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_USECS; 166095cddcb5SJakub Kicinski if (coalesce->rx_max_coalesced_frames) 166195cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES; 166295cddcb5SJakub Kicinski if (coalesce->rx_coalesce_usecs_irq) 166395cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_USECS_IRQ; 166495cddcb5SJakub Kicinski if (coalesce->rx_max_coalesced_frames_irq) 166595cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_IRQ; 166695cddcb5SJakub Kicinski if (coalesce->tx_coalesce_usecs) 166795cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_USECS; 166895cddcb5SJakub Kicinski if (coalesce->tx_max_coalesced_frames) 166995cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES; 167095cddcb5SJakub Kicinski if (coalesce->tx_coalesce_usecs_irq) 167195cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_USECS_IRQ; 167295cddcb5SJakub Kicinski if (coalesce->tx_max_coalesced_frames_irq) 167395cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_IRQ; 167495cddcb5SJakub Kicinski if (coalesce->stats_block_coalesce_usecs) 167595cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_STATS_BLOCK_USECS; 167695cddcb5SJakub Kicinski if (coalesce->use_adaptive_rx_coalesce) 167795cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_USE_ADAPTIVE_RX; 167895cddcb5SJakub Kicinski if (coalesce->use_adaptive_tx_coalesce) 167995cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_USE_ADAPTIVE_TX; 168095cddcb5SJakub Kicinski if (coalesce->pkt_rate_low) 168195cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_PKT_RATE_LOW; 168295cddcb5SJakub Kicinski if (coalesce->rx_coalesce_usecs_low) 168395cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_USECS_LOW; 168495cddcb5SJakub Kicinski if (coalesce->rx_max_coalesced_frames_low) 168595cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_LOW; 168695cddcb5SJakub Kicinski if (coalesce->tx_coalesce_usecs_low) 168795cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_USECS_LOW; 168895cddcb5SJakub Kicinski if (coalesce->tx_max_coalesced_frames_low) 168995cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_LOW; 169095cddcb5SJakub Kicinski if (coalesce->pkt_rate_high) 169195cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_PKT_RATE_HIGH; 169295cddcb5SJakub Kicinski if (coalesce->rx_coalesce_usecs_high) 169395cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_USECS_HIGH; 169495cddcb5SJakub Kicinski if (coalesce->rx_max_coalesced_frames_high) 169595cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_HIGH; 169695cddcb5SJakub Kicinski if (coalesce->tx_coalesce_usecs_high) 169795cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_USECS_HIGH; 169895cddcb5SJakub Kicinski if (coalesce->tx_max_coalesced_frames_high) 169995cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_HIGH; 170095cddcb5SJakub Kicinski if (coalesce->rate_sample_interval) 170195cddcb5SJakub Kicinski nonzero_params |= ETHTOOL_COALESCE_RATE_SAMPLE_INTERVAL; 170295cddcb5SJakub Kicinski 170395cddcb5SJakub Kicinski return (supported_params & nonzero_params) == nonzero_params; 170495cddcb5SJakub Kicinski } 170595cddcb5SJakub Kicinski 17069ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev, 17079ce48e5aSMichal Kubecek void __user *useraddr) 17089ce48e5aSMichal Kubecek { 1709f3ccfda1SYufeng Mo struct kernel_ethtool_coalesce kernel_coalesce = {}; 17109ce48e5aSMichal Kubecek struct ethtool_coalesce coalesce; 17110cf3eac8SMichal Kubecek int ret; 17129ce48e5aSMichal Kubecek 17130276af21SJulian Wiedmann if (!dev->ethtool_ops->set_coalesce || !dev->ethtool_ops->get_coalesce) 17149ce48e5aSMichal Kubecek return -EOPNOTSUPP; 17159ce48e5aSMichal Kubecek 1716f3ccfda1SYufeng Mo ret = dev->ethtool_ops->get_coalesce(dev, &coalesce, &kernel_coalesce, 1717f3ccfda1SYufeng Mo NULL); 1718f3ccfda1SYufeng Mo if (ret) 1719f3ccfda1SYufeng Mo return ret; 1720f3ccfda1SYufeng Mo 17219ce48e5aSMichal Kubecek if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) 17229ce48e5aSMichal Kubecek return -EFAULT; 17239ce48e5aSMichal Kubecek 172495cddcb5SJakub Kicinski if (!ethtool_set_coalesce_supported(dev, &coalesce)) 172595cddcb5SJakub Kicinski return -EOPNOTSUPP; 172695cddcb5SJakub Kicinski 1727f3ccfda1SYufeng Mo ret = dev->ethtool_ops->set_coalesce(dev, &coalesce, &kernel_coalesce, 1728f3ccfda1SYufeng Mo NULL); 17290cf3eac8SMichal Kubecek if (!ret) 17300cf3eac8SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_COALESCE_NTF, NULL); 17310cf3eac8SMichal Kubecek return ret; 17329ce48e5aSMichal Kubecek } 17339ce48e5aSMichal Kubecek 17349ce48e5aSMichal Kubecek static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr) 17359ce48e5aSMichal Kubecek { 17369ce48e5aSMichal Kubecek struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM }; 173774624944SHao Chen struct kernel_ethtool_ringparam kernel_ringparam = {}; 17389ce48e5aSMichal Kubecek 17399ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_ringparam) 17409ce48e5aSMichal Kubecek return -EOPNOTSUPP; 17419ce48e5aSMichal Kubecek 174274624944SHao Chen dev->ethtool_ops->get_ringparam(dev, &ringparam, 174374624944SHao Chen &kernel_ringparam, NULL); 17449ce48e5aSMichal Kubecek 17459ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &ringparam, sizeof(ringparam))) 17469ce48e5aSMichal Kubecek return -EFAULT; 17479ce48e5aSMichal Kubecek return 0; 17489ce48e5aSMichal Kubecek } 17499ce48e5aSMichal Kubecek 17509ce48e5aSMichal Kubecek static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr) 17519ce48e5aSMichal Kubecek { 17529ce48e5aSMichal Kubecek struct ethtool_ringparam ringparam, max = { .cmd = ETHTOOL_GRINGPARAM }; 175374624944SHao Chen struct kernel_ethtool_ringparam kernel_ringparam; 1754bc9d1c99SMichal Kubecek int ret; 17559ce48e5aSMichal Kubecek 17569ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_ringparam || !dev->ethtool_ops->get_ringparam) 17579ce48e5aSMichal Kubecek return -EOPNOTSUPP; 17589ce48e5aSMichal Kubecek 17599ce48e5aSMichal Kubecek if (copy_from_user(&ringparam, useraddr, sizeof(ringparam))) 17609ce48e5aSMichal Kubecek return -EFAULT; 17619ce48e5aSMichal Kubecek 176274624944SHao Chen dev->ethtool_ops->get_ringparam(dev, &max, &kernel_ringparam, NULL); 17639ce48e5aSMichal Kubecek 17649ce48e5aSMichal Kubecek /* ensure new ring parameters are within the maximums */ 17659ce48e5aSMichal Kubecek if (ringparam.rx_pending > max.rx_max_pending || 17669ce48e5aSMichal Kubecek ringparam.rx_mini_pending > max.rx_mini_max_pending || 17679ce48e5aSMichal Kubecek ringparam.rx_jumbo_pending > max.rx_jumbo_max_pending || 17689ce48e5aSMichal Kubecek ringparam.tx_pending > max.tx_max_pending) 17699ce48e5aSMichal Kubecek return -EINVAL; 17709ce48e5aSMichal Kubecek 177174624944SHao Chen ret = dev->ethtool_ops->set_ringparam(dev, &ringparam, 177274624944SHao Chen &kernel_ringparam, NULL); 1773bc9d1c99SMichal Kubecek if (!ret) 1774bc9d1c99SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_RINGS_NTF, NULL); 1775bc9d1c99SMichal Kubecek return ret; 17769ce48e5aSMichal Kubecek } 17779ce48e5aSMichal Kubecek 17789ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_get_channels(struct net_device *dev, 17799ce48e5aSMichal Kubecek void __user *useraddr) 17809ce48e5aSMichal Kubecek { 17819ce48e5aSMichal Kubecek struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS }; 17829ce48e5aSMichal Kubecek 17839ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_channels) 17849ce48e5aSMichal Kubecek return -EOPNOTSUPP; 17859ce48e5aSMichal Kubecek 17869ce48e5aSMichal Kubecek dev->ethtool_ops->get_channels(dev, &channels); 17879ce48e5aSMichal Kubecek 17889ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &channels, sizeof(channels))) 17899ce48e5aSMichal Kubecek return -EFAULT; 17909ce48e5aSMichal Kubecek return 0; 17919ce48e5aSMichal Kubecek } 17929ce48e5aSMichal Kubecek 17939ce48e5aSMichal Kubecek static noinline_for_stack int ethtool_set_channels(struct net_device *dev, 17949ce48e5aSMichal Kubecek void __user *useraddr) 17959ce48e5aSMichal Kubecek { 17969ce48e5aSMichal Kubecek struct ethtool_channels channels, curr = { .cmd = ETHTOOL_GCHANNELS }; 17979ce48e5aSMichal Kubecek u16 from_channel, to_channel; 17989ce48e5aSMichal Kubecek u32 max_rx_in_use = 0; 17999ce48e5aSMichal Kubecek unsigned int i; 1800546379b9SMichal Kubecek int ret; 18019ce48e5aSMichal Kubecek 18029ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_channels || !dev->ethtool_ops->get_channels) 18039ce48e5aSMichal Kubecek return -EOPNOTSUPP; 18049ce48e5aSMichal Kubecek 18059ce48e5aSMichal Kubecek if (copy_from_user(&channels, useraddr, sizeof(channels))) 18069ce48e5aSMichal Kubecek return -EFAULT; 18079ce48e5aSMichal Kubecek 18089ce48e5aSMichal Kubecek dev->ethtool_ops->get_channels(dev, &curr); 18099ce48e5aSMichal Kubecek 181075c36dbbSJakub Kicinski if (channels.rx_count == curr.rx_count && 181175c36dbbSJakub Kicinski channels.tx_count == curr.tx_count && 181275c36dbbSJakub Kicinski channels.combined_count == curr.combined_count && 181375c36dbbSJakub Kicinski channels.other_count == curr.other_count) 181475c36dbbSJakub Kicinski return 0; 181575c36dbbSJakub Kicinski 18169ce48e5aSMichal Kubecek /* ensure new counts are within the maximums */ 18179ce48e5aSMichal Kubecek if (channels.rx_count > curr.max_rx || 18189ce48e5aSMichal Kubecek channels.tx_count > curr.max_tx || 18199ce48e5aSMichal Kubecek channels.combined_count > curr.max_combined || 18209ce48e5aSMichal Kubecek channels.other_count > curr.max_other) 18219ce48e5aSMichal Kubecek return -EINVAL; 18229ce48e5aSMichal Kubecek 18237be92514SJakub Kicinski /* ensure there is at least one RX and one TX channel */ 18247be92514SJakub Kicinski if (!channels.combined_count && 18257be92514SJakub Kicinski (!channels.rx_count || !channels.tx_count)) 18267be92514SJakub Kicinski return -EINVAL; 18277be92514SJakub Kicinski 18289ce48e5aSMichal Kubecek /* ensure the new Rx count fits within the configured Rx flow 18299ce48e5aSMichal Kubecek * indirection table settings */ 18309ce48e5aSMichal Kubecek if (netif_is_rxfh_configured(dev) && 18319ce48e5aSMichal Kubecek !ethtool_get_max_rxfh_channel(dev, &max_rx_in_use) && 18329ce48e5aSMichal Kubecek (channels.combined_count + channels.rx_count) <= max_rx_in_use) 18339ce48e5aSMichal Kubecek return -EINVAL; 18349ce48e5aSMichal Kubecek 18359ce48e5aSMichal Kubecek /* Disabling channels, query zero-copy AF_XDP sockets */ 18369ce48e5aSMichal Kubecek from_channel = channels.combined_count + 18379ce48e5aSMichal Kubecek min(channels.rx_count, channels.tx_count); 18389ce48e5aSMichal Kubecek to_channel = curr.combined_count + max(curr.rx_count, curr.tx_count); 18399ce48e5aSMichal Kubecek for (i = from_channel; i < to_channel; i++) 1840c4655761SMagnus Karlsson if (xsk_get_pool_from_qid(dev, i)) 18419ce48e5aSMichal Kubecek return -EINVAL; 18429ce48e5aSMichal Kubecek 1843546379b9SMichal Kubecek ret = dev->ethtool_ops->set_channels(dev, &channels); 1844546379b9SMichal Kubecek if (!ret) 1845546379b9SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_CHANNELS_NTF, NULL); 1846546379b9SMichal Kubecek return ret; 18479ce48e5aSMichal Kubecek } 18489ce48e5aSMichal Kubecek 18499ce48e5aSMichal Kubecek static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr) 18509ce48e5aSMichal Kubecek { 18519ce48e5aSMichal Kubecek struct ethtool_pauseparam pauseparam = { .cmd = ETHTOOL_GPAUSEPARAM }; 18529ce48e5aSMichal Kubecek 18539ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_pauseparam) 18549ce48e5aSMichal Kubecek return -EOPNOTSUPP; 18559ce48e5aSMichal Kubecek 18569ce48e5aSMichal Kubecek dev->ethtool_ops->get_pauseparam(dev, &pauseparam); 18579ce48e5aSMichal Kubecek 18589ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam))) 18599ce48e5aSMichal Kubecek return -EFAULT; 18609ce48e5aSMichal Kubecek return 0; 18619ce48e5aSMichal Kubecek } 18629ce48e5aSMichal Kubecek 18639ce48e5aSMichal Kubecek static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr) 18649ce48e5aSMichal Kubecek { 18659ce48e5aSMichal Kubecek struct ethtool_pauseparam pauseparam; 1866bf37faa3SMichal Kubecek int ret; 18679ce48e5aSMichal Kubecek 18689ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_pauseparam) 18699ce48e5aSMichal Kubecek return -EOPNOTSUPP; 18709ce48e5aSMichal Kubecek 18719ce48e5aSMichal Kubecek if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam))) 18729ce48e5aSMichal Kubecek return -EFAULT; 18739ce48e5aSMichal Kubecek 1874bf37faa3SMichal Kubecek ret = dev->ethtool_ops->set_pauseparam(dev, &pauseparam); 1875bf37faa3SMichal Kubecek if (!ret) 1876bf37faa3SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_PAUSE_NTF, NULL); 1877bf37faa3SMichal Kubecek return ret; 18789ce48e5aSMichal Kubecek } 18799ce48e5aSMichal Kubecek 18809ce48e5aSMichal Kubecek static int ethtool_self_test(struct net_device *dev, char __user *useraddr) 18819ce48e5aSMichal Kubecek { 18829ce48e5aSMichal Kubecek struct ethtool_test test; 18839ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 18849ce48e5aSMichal Kubecek u64 *data; 18859ce48e5aSMichal Kubecek int ret, test_len; 18869ce48e5aSMichal Kubecek 18879ce48e5aSMichal Kubecek if (!ops->self_test || !ops->get_sset_count) 18889ce48e5aSMichal Kubecek return -EOPNOTSUPP; 18899ce48e5aSMichal Kubecek 18909ce48e5aSMichal Kubecek test_len = ops->get_sset_count(dev, ETH_SS_TEST); 18919ce48e5aSMichal Kubecek if (test_len < 0) 18929ce48e5aSMichal Kubecek return test_len; 18939ce48e5aSMichal Kubecek WARN_ON(test_len == 0); 18949ce48e5aSMichal Kubecek 18959ce48e5aSMichal Kubecek if (copy_from_user(&test, useraddr, sizeof(test))) 18969ce48e5aSMichal Kubecek return -EFAULT; 18979ce48e5aSMichal Kubecek 18989ce48e5aSMichal Kubecek test.len = test_len; 189980ec82e3SAustin Kim data = kcalloc(test_len, sizeof(u64), GFP_USER); 19009ce48e5aSMichal Kubecek if (!data) 19019ce48e5aSMichal Kubecek return -ENOMEM; 19029ce48e5aSMichal Kubecek 190377e9b2abSAndrew Lunn netif_testing_on(dev); 19049ce48e5aSMichal Kubecek ops->self_test(dev, &test, data); 190577e9b2abSAndrew Lunn netif_testing_off(dev); 19069ce48e5aSMichal Kubecek 19079ce48e5aSMichal Kubecek ret = -EFAULT; 19089ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &test, sizeof(test))) 19099ce48e5aSMichal Kubecek goto out; 19109ce48e5aSMichal Kubecek useraddr += sizeof(test); 1911ed717613SGustavo A. R. Silva if (copy_to_user(useraddr, data, array_size(test.len, sizeof(u64)))) 19129ce48e5aSMichal Kubecek goto out; 19139ce48e5aSMichal Kubecek ret = 0; 19149ce48e5aSMichal Kubecek 19159ce48e5aSMichal Kubecek out: 19169ce48e5aSMichal Kubecek kfree(data); 19179ce48e5aSMichal Kubecek return ret; 19189ce48e5aSMichal Kubecek } 19199ce48e5aSMichal Kubecek 19209ce48e5aSMichal Kubecek static int ethtool_get_strings(struct net_device *dev, void __user *useraddr) 19219ce48e5aSMichal Kubecek { 19229ce48e5aSMichal Kubecek struct ethtool_gstrings gstrings; 19239ce48e5aSMichal Kubecek u8 *data; 19249ce48e5aSMichal Kubecek int ret; 19259ce48e5aSMichal Kubecek 19269ce48e5aSMichal Kubecek if (copy_from_user(&gstrings, useraddr, sizeof(gstrings))) 19279ce48e5aSMichal Kubecek return -EFAULT; 19289ce48e5aSMichal Kubecek 19299ce48e5aSMichal Kubecek ret = __ethtool_get_sset_count(dev, gstrings.string_set); 19309ce48e5aSMichal Kubecek if (ret < 0) 19319ce48e5aSMichal Kubecek return ret; 19329ce48e5aSMichal Kubecek if (ret > S32_MAX / ETH_GSTRING_LEN) 19339ce48e5aSMichal Kubecek return -ENOMEM; 19349ce48e5aSMichal Kubecek WARN_ON_ONCE(!ret); 19359ce48e5aSMichal Kubecek 19369ce48e5aSMichal Kubecek gstrings.len = ret; 19379ce48e5aSMichal Kubecek 19389ce48e5aSMichal Kubecek if (gstrings.len) { 19399ce48e5aSMichal Kubecek data = vzalloc(array_size(gstrings.len, ETH_GSTRING_LEN)); 19409ce48e5aSMichal Kubecek if (!data) 19419ce48e5aSMichal Kubecek return -ENOMEM; 19429ce48e5aSMichal Kubecek 19439ce48e5aSMichal Kubecek __ethtool_get_strings(dev, gstrings.string_set, data); 19449ce48e5aSMichal Kubecek } else { 19459ce48e5aSMichal Kubecek data = NULL; 19469ce48e5aSMichal Kubecek } 19479ce48e5aSMichal Kubecek 19489ce48e5aSMichal Kubecek ret = -EFAULT; 19499ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &gstrings, sizeof(gstrings))) 19509ce48e5aSMichal Kubecek goto out; 19519ce48e5aSMichal Kubecek useraddr += sizeof(gstrings); 19529ce48e5aSMichal Kubecek if (gstrings.len && 1953ed717613SGustavo A. R. Silva copy_to_user(useraddr, data, 1954ed717613SGustavo A. R. Silva array_size(gstrings.len, ETH_GSTRING_LEN))) 19559ce48e5aSMichal Kubecek goto out; 19569ce48e5aSMichal Kubecek ret = 0; 19579ce48e5aSMichal Kubecek 19589ce48e5aSMichal Kubecek out: 19599ce48e5aSMichal Kubecek vfree(data); 19609ce48e5aSMichal Kubecek return ret; 19619ce48e5aSMichal Kubecek } 19629ce48e5aSMichal Kubecek 19637888fe53SAlexander Duyck __printf(2, 3) void ethtool_sprintf(u8 **data, const char *fmt, ...) 19647888fe53SAlexander Duyck { 19657888fe53SAlexander Duyck va_list args; 19667888fe53SAlexander Duyck 19677888fe53SAlexander Duyck va_start(args, fmt); 19687888fe53SAlexander Duyck vsnprintf(*data, ETH_GSTRING_LEN, fmt, args); 19697888fe53SAlexander Duyck va_end(args); 19707888fe53SAlexander Duyck 19717888fe53SAlexander Duyck *data += ETH_GSTRING_LEN; 19727888fe53SAlexander Duyck } 19737888fe53SAlexander Duyck EXPORT_SYMBOL(ethtool_sprintf); 19747888fe53SAlexander Duyck 19759ce48e5aSMichal Kubecek static int ethtool_phys_id(struct net_device *dev, void __user *useraddr) 19769ce48e5aSMichal Kubecek { 19779ce48e5aSMichal Kubecek struct ethtool_value id; 19789ce48e5aSMichal Kubecek static bool busy; 19799ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 19805ae21950SEric Dumazet netdevice_tracker dev_tracker; 19819ce48e5aSMichal Kubecek int rc; 19829ce48e5aSMichal Kubecek 19839ce48e5aSMichal Kubecek if (!ops->set_phys_id) 19849ce48e5aSMichal Kubecek return -EOPNOTSUPP; 19859ce48e5aSMichal Kubecek 19869ce48e5aSMichal Kubecek if (busy) 19879ce48e5aSMichal Kubecek return -EBUSY; 19889ce48e5aSMichal Kubecek 19899ce48e5aSMichal Kubecek if (copy_from_user(&id, useraddr, sizeof(id))) 19909ce48e5aSMichal Kubecek return -EFAULT; 19919ce48e5aSMichal Kubecek 19929ce48e5aSMichal Kubecek rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE); 19939ce48e5aSMichal Kubecek if (rc < 0) 19949ce48e5aSMichal Kubecek return rc; 19959ce48e5aSMichal Kubecek 19969ce48e5aSMichal Kubecek /* Drop the RTNL lock while waiting, but prevent reentry or 19979ce48e5aSMichal Kubecek * removal of the device. 19989ce48e5aSMichal Kubecek */ 19999ce48e5aSMichal Kubecek busy = true; 2000d62607c3SJakub Kicinski netdev_hold(dev, &dev_tracker, GFP_KERNEL); 20019ce48e5aSMichal Kubecek rtnl_unlock(); 20029ce48e5aSMichal Kubecek 20039ce48e5aSMichal Kubecek if (rc == 0) { 20049ce48e5aSMichal Kubecek /* Driver will handle this itself */ 20059ce48e5aSMichal Kubecek schedule_timeout_interruptible( 20069ce48e5aSMichal Kubecek id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT); 20079ce48e5aSMichal Kubecek } else { 20089ce48e5aSMichal Kubecek /* Driver expects to be called at twice the frequency in rc */ 20092adc6edcSEdward Cree int n = rc * 2, interval = HZ / n; 20102adc6edcSEdward Cree u64 count = n * id.data, i = 0; 20119ce48e5aSMichal Kubecek 20129ce48e5aSMichal Kubecek do { 20139ce48e5aSMichal Kubecek rtnl_lock(); 20149ce48e5aSMichal Kubecek rc = ops->set_phys_id(dev, 20152adc6edcSEdward Cree (i++ & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON); 20169ce48e5aSMichal Kubecek rtnl_unlock(); 20179ce48e5aSMichal Kubecek if (rc) 20189ce48e5aSMichal Kubecek break; 20199ce48e5aSMichal Kubecek schedule_timeout_interruptible(interval); 20202adc6edcSEdward Cree } while (!signal_pending(current) && (!id.data || i < count)); 20219ce48e5aSMichal Kubecek } 20229ce48e5aSMichal Kubecek 20239ce48e5aSMichal Kubecek rtnl_lock(); 2024d62607c3SJakub Kicinski netdev_put(dev, &dev_tracker); 20259ce48e5aSMichal Kubecek busy = false; 20269ce48e5aSMichal Kubecek 20279ce48e5aSMichal Kubecek (void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE); 20289ce48e5aSMichal Kubecek return rc; 20299ce48e5aSMichal Kubecek } 20309ce48e5aSMichal Kubecek 20319ce48e5aSMichal Kubecek static int ethtool_get_stats(struct net_device *dev, void __user *useraddr) 20329ce48e5aSMichal Kubecek { 20339ce48e5aSMichal Kubecek struct ethtool_stats stats; 20349ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 20359ce48e5aSMichal Kubecek u64 *data; 20369ce48e5aSMichal Kubecek int ret, n_stats; 20379ce48e5aSMichal Kubecek 20389ce48e5aSMichal Kubecek if (!ops->get_ethtool_stats || !ops->get_sset_count) 20399ce48e5aSMichal Kubecek return -EOPNOTSUPP; 20409ce48e5aSMichal Kubecek 20419ce48e5aSMichal Kubecek n_stats = ops->get_sset_count(dev, ETH_SS_STATS); 20429ce48e5aSMichal Kubecek if (n_stats < 0) 20439ce48e5aSMichal Kubecek return n_stats; 20449ce48e5aSMichal Kubecek if (n_stats > S32_MAX / sizeof(u64)) 20459ce48e5aSMichal Kubecek return -ENOMEM; 20469ce48e5aSMichal Kubecek WARN_ON_ONCE(!n_stats); 20479ce48e5aSMichal Kubecek if (copy_from_user(&stats, useraddr, sizeof(stats))) 20489ce48e5aSMichal Kubecek return -EFAULT; 20499ce48e5aSMichal Kubecek 20509ce48e5aSMichal Kubecek stats.n_stats = n_stats; 20519ce48e5aSMichal Kubecek 20529ce48e5aSMichal Kubecek if (n_stats) { 20539ce48e5aSMichal Kubecek data = vzalloc(array_size(n_stats, sizeof(u64))); 20549ce48e5aSMichal Kubecek if (!data) 20559ce48e5aSMichal Kubecek return -ENOMEM; 20569ce48e5aSMichal Kubecek ops->get_ethtool_stats(dev, &stats, data); 20579ce48e5aSMichal Kubecek } else { 20589ce48e5aSMichal Kubecek data = NULL; 20599ce48e5aSMichal Kubecek } 20609ce48e5aSMichal Kubecek 20619ce48e5aSMichal Kubecek ret = -EFAULT; 20629ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &stats, sizeof(stats))) 20639ce48e5aSMichal Kubecek goto out; 20649ce48e5aSMichal Kubecek useraddr += sizeof(stats); 20653dd14996SGustavo A. R. Silva if (n_stats && copy_to_user(useraddr, data, array_size(n_stats, sizeof(u64)))) 20669ce48e5aSMichal Kubecek goto out; 20679ce48e5aSMichal Kubecek ret = 0; 20689ce48e5aSMichal Kubecek 20699ce48e5aSMichal Kubecek out: 20709ce48e5aSMichal Kubecek vfree(data); 20719ce48e5aSMichal Kubecek return ret; 20729ce48e5aSMichal Kubecek } 20739ce48e5aSMichal Kubecek 20749ce48e5aSMichal Kubecek static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr) 20759ce48e5aSMichal Kubecek { 207617809516SFlorian Fainelli const struct ethtool_phy_ops *phy_ops = ethtool_phy_ops; 20779ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 20789ce48e5aSMichal Kubecek struct phy_device *phydev = dev->phydev; 20799ce48e5aSMichal Kubecek struct ethtool_stats stats; 20809ce48e5aSMichal Kubecek u64 *data; 20819ce48e5aSMichal Kubecek int ret, n_stats; 20829ce48e5aSMichal Kubecek 20839ce48e5aSMichal Kubecek if (!phydev && (!ops->get_ethtool_phy_stats || !ops->get_sset_count)) 20849ce48e5aSMichal Kubecek return -EOPNOTSUPP; 20859ce48e5aSMichal Kubecek 2086ccd21ec5STom Rix if (phydev && !ops->get_ethtool_phy_stats && 208717809516SFlorian Fainelli phy_ops && phy_ops->get_sset_count) 2088ccd21ec5STom Rix n_stats = phy_ops->get_sset_count(phydev); 20899ce48e5aSMichal Kubecek else 20909ce48e5aSMichal Kubecek n_stats = ops->get_sset_count(dev, ETH_SS_PHY_STATS); 20919ce48e5aSMichal Kubecek if (n_stats < 0) 20929ce48e5aSMichal Kubecek return n_stats; 20939ce48e5aSMichal Kubecek if (n_stats > S32_MAX / sizeof(u64)) 20949ce48e5aSMichal Kubecek return -ENOMEM; 20959ce48e5aSMichal Kubecek WARN_ON_ONCE(!n_stats); 20969ce48e5aSMichal Kubecek 20979ce48e5aSMichal Kubecek if (copy_from_user(&stats, useraddr, sizeof(stats))) 20989ce48e5aSMichal Kubecek return -EFAULT; 20999ce48e5aSMichal Kubecek 21009ce48e5aSMichal Kubecek stats.n_stats = n_stats; 21019ce48e5aSMichal Kubecek 21029ce48e5aSMichal Kubecek if (n_stats) { 21039ce48e5aSMichal Kubecek data = vzalloc(array_size(n_stats, sizeof(u64))); 21049ce48e5aSMichal Kubecek if (!data) 21059ce48e5aSMichal Kubecek return -ENOMEM; 21069ce48e5aSMichal Kubecek 2107ccd21ec5STom Rix if (phydev && !ops->get_ethtool_phy_stats && 210817809516SFlorian Fainelli phy_ops && phy_ops->get_stats) { 2109ccd21ec5STom Rix ret = phy_ops->get_stats(phydev, &stats, data); 21109ce48e5aSMichal Kubecek if (ret < 0) 21119ce48e5aSMichal Kubecek goto out; 21129ce48e5aSMichal Kubecek } else { 21139ce48e5aSMichal Kubecek ops->get_ethtool_phy_stats(dev, &stats, data); 21149ce48e5aSMichal Kubecek } 21159ce48e5aSMichal Kubecek } else { 21169ce48e5aSMichal Kubecek data = NULL; 21179ce48e5aSMichal Kubecek } 21189ce48e5aSMichal Kubecek 21199ce48e5aSMichal Kubecek ret = -EFAULT; 21209ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &stats, sizeof(stats))) 21219ce48e5aSMichal Kubecek goto out; 21229ce48e5aSMichal Kubecek useraddr += sizeof(stats); 21233dd14996SGustavo A. R. Silva if (n_stats && copy_to_user(useraddr, data, array_size(n_stats, sizeof(u64)))) 21249ce48e5aSMichal Kubecek goto out; 21259ce48e5aSMichal Kubecek ret = 0; 21269ce48e5aSMichal Kubecek 21279ce48e5aSMichal Kubecek out: 21289ce48e5aSMichal Kubecek vfree(data); 21299ce48e5aSMichal Kubecek return ret; 21309ce48e5aSMichal Kubecek } 21319ce48e5aSMichal Kubecek 21329ce48e5aSMichal Kubecek static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr) 21339ce48e5aSMichal Kubecek { 21349ce48e5aSMichal Kubecek struct ethtool_perm_addr epaddr; 21359ce48e5aSMichal Kubecek 21369ce48e5aSMichal Kubecek if (copy_from_user(&epaddr, useraddr, sizeof(epaddr))) 21379ce48e5aSMichal Kubecek return -EFAULT; 21389ce48e5aSMichal Kubecek 21399ce48e5aSMichal Kubecek if (epaddr.size < dev->addr_len) 21409ce48e5aSMichal Kubecek return -ETOOSMALL; 21419ce48e5aSMichal Kubecek epaddr.size = dev->addr_len; 21429ce48e5aSMichal Kubecek 21439ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &epaddr, sizeof(epaddr))) 21449ce48e5aSMichal Kubecek return -EFAULT; 21459ce48e5aSMichal Kubecek useraddr += sizeof(epaddr); 21469ce48e5aSMichal Kubecek if (copy_to_user(useraddr, dev->perm_addr, epaddr.size)) 21479ce48e5aSMichal Kubecek return -EFAULT; 21489ce48e5aSMichal Kubecek return 0; 21499ce48e5aSMichal Kubecek } 21509ce48e5aSMichal Kubecek 21519ce48e5aSMichal Kubecek static int ethtool_get_value(struct net_device *dev, char __user *useraddr, 21529ce48e5aSMichal Kubecek u32 cmd, u32 (*actor)(struct net_device *)) 21539ce48e5aSMichal Kubecek { 21549ce48e5aSMichal Kubecek struct ethtool_value edata = { .cmd = cmd }; 21559ce48e5aSMichal Kubecek 21569ce48e5aSMichal Kubecek if (!actor) 21579ce48e5aSMichal Kubecek return -EOPNOTSUPP; 21589ce48e5aSMichal Kubecek 21599ce48e5aSMichal Kubecek edata.data = actor(dev); 21609ce48e5aSMichal Kubecek 21619ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &edata, sizeof(edata))) 21629ce48e5aSMichal Kubecek return -EFAULT; 21639ce48e5aSMichal Kubecek return 0; 21649ce48e5aSMichal Kubecek } 21659ce48e5aSMichal Kubecek 21669ce48e5aSMichal Kubecek static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr, 21679ce48e5aSMichal Kubecek void (*actor)(struct net_device *, u32)) 21689ce48e5aSMichal Kubecek { 21699ce48e5aSMichal Kubecek struct ethtool_value edata; 21709ce48e5aSMichal Kubecek 21719ce48e5aSMichal Kubecek if (!actor) 21729ce48e5aSMichal Kubecek return -EOPNOTSUPP; 21739ce48e5aSMichal Kubecek 21749ce48e5aSMichal Kubecek if (copy_from_user(&edata, useraddr, sizeof(edata))) 21759ce48e5aSMichal Kubecek return -EFAULT; 21769ce48e5aSMichal Kubecek 21779ce48e5aSMichal Kubecek actor(dev, edata.data); 21789ce48e5aSMichal Kubecek return 0; 21799ce48e5aSMichal Kubecek } 21809ce48e5aSMichal Kubecek 21819ce48e5aSMichal Kubecek static int ethtool_set_value(struct net_device *dev, char __user *useraddr, 21829ce48e5aSMichal Kubecek int (*actor)(struct net_device *, u32)) 21839ce48e5aSMichal Kubecek { 21849ce48e5aSMichal Kubecek struct ethtool_value edata; 21859ce48e5aSMichal Kubecek 21869ce48e5aSMichal Kubecek if (!actor) 21879ce48e5aSMichal Kubecek return -EOPNOTSUPP; 21889ce48e5aSMichal Kubecek 21899ce48e5aSMichal Kubecek if (copy_from_user(&edata, useraddr, sizeof(edata))) 21909ce48e5aSMichal Kubecek return -EFAULT; 21919ce48e5aSMichal Kubecek 21929ce48e5aSMichal Kubecek return actor(dev, edata.data); 21939ce48e5aSMichal Kubecek } 21949ce48e5aSMichal Kubecek 2195095cfcfeSJakub Kicinski static int 2196095cfcfeSJakub Kicinski ethtool_flash_device(struct net_device *dev, struct ethtool_devlink_compat *req) 21979ce48e5aSMichal Kubecek { 21981af0a094SJakub Kicinski if (!dev->ethtool_ops->flash_device) { 21991af0a094SJakub Kicinski req->devlink = netdev_to_devlink_get(dev); 22001af0a094SJakub Kicinski return 0; 22011af0a094SJakub Kicinski } 22029ce48e5aSMichal Kubecek 2203095cfcfeSJakub Kicinski return dev->ethtool_ops->flash_device(dev, &req->efl); 22049ce48e5aSMichal Kubecek } 22059ce48e5aSMichal Kubecek 22069ce48e5aSMichal Kubecek static int ethtool_set_dump(struct net_device *dev, 22079ce48e5aSMichal Kubecek void __user *useraddr) 22089ce48e5aSMichal Kubecek { 22099ce48e5aSMichal Kubecek struct ethtool_dump dump; 22109ce48e5aSMichal Kubecek 22119ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_dump) 22129ce48e5aSMichal Kubecek return -EOPNOTSUPP; 22139ce48e5aSMichal Kubecek 22149ce48e5aSMichal Kubecek if (copy_from_user(&dump, useraddr, sizeof(dump))) 22159ce48e5aSMichal Kubecek return -EFAULT; 22169ce48e5aSMichal Kubecek 22179ce48e5aSMichal Kubecek return dev->ethtool_ops->set_dump(dev, &dump); 22189ce48e5aSMichal Kubecek } 22199ce48e5aSMichal Kubecek 22209ce48e5aSMichal Kubecek static int ethtool_get_dump_flag(struct net_device *dev, 22219ce48e5aSMichal Kubecek void __user *useraddr) 22229ce48e5aSMichal Kubecek { 22239ce48e5aSMichal Kubecek int ret; 22249ce48e5aSMichal Kubecek struct ethtool_dump dump; 22259ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 22269ce48e5aSMichal Kubecek 22279ce48e5aSMichal Kubecek if (!ops->get_dump_flag) 22289ce48e5aSMichal Kubecek return -EOPNOTSUPP; 22299ce48e5aSMichal Kubecek 22309ce48e5aSMichal Kubecek if (copy_from_user(&dump, useraddr, sizeof(dump))) 22319ce48e5aSMichal Kubecek return -EFAULT; 22329ce48e5aSMichal Kubecek 22339ce48e5aSMichal Kubecek ret = ops->get_dump_flag(dev, &dump); 22349ce48e5aSMichal Kubecek if (ret) 22359ce48e5aSMichal Kubecek return ret; 22369ce48e5aSMichal Kubecek 22379ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &dump, sizeof(dump))) 22389ce48e5aSMichal Kubecek return -EFAULT; 22399ce48e5aSMichal Kubecek return 0; 22409ce48e5aSMichal Kubecek } 22419ce48e5aSMichal Kubecek 22429ce48e5aSMichal Kubecek static int ethtool_get_dump_data(struct net_device *dev, 22439ce48e5aSMichal Kubecek void __user *useraddr) 22449ce48e5aSMichal Kubecek { 22459ce48e5aSMichal Kubecek int ret; 22469ce48e5aSMichal Kubecek __u32 len; 22479ce48e5aSMichal Kubecek struct ethtool_dump dump, tmp; 22489ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 22499ce48e5aSMichal Kubecek void *data = NULL; 22509ce48e5aSMichal Kubecek 22519ce48e5aSMichal Kubecek if (!ops->get_dump_data || !ops->get_dump_flag) 22529ce48e5aSMichal Kubecek return -EOPNOTSUPP; 22539ce48e5aSMichal Kubecek 22549ce48e5aSMichal Kubecek if (copy_from_user(&dump, useraddr, sizeof(dump))) 22559ce48e5aSMichal Kubecek return -EFAULT; 22569ce48e5aSMichal Kubecek 22579ce48e5aSMichal Kubecek memset(&tmp, 0, sizeof(tmp)); 22589ce48e5aSMichal Kubecek tmp.cmd = ETHTOOL_GET_DUMP_FLAG; 22599ce48e5aSMichal Kubecek ret = ops->get_dump_flag(dev, &tmp); 22609ce48e5aSMichal Kubecek if (ret) 22619ce48e5aSMichal Kubecek return ret; 22629ce48e5aSMichal Kubecek 22639ce48e5aSMichal Kubecek len = min(tmp.len, dump.len); 22649ce48e5aSMichal Kubecek if (!len) 22659ce48e5aSMichal Kubecek return -EFAULT; 22669ce48e5aSMichal Kubecek 22679ce48e5aSMichal Kubecek /* Don't ever let the driver think there's more space available 22689ce48e5aSMichal Kubecek * than it requested with .get_dump_flag(). 22699ce48e5aSMichal Kubecek */ 22709ce48e5aSMichal Kubecek dump.len = len; 22719ce48e5aSMichal Kubecek 22729ce48e5aSMichal Kubecek /* Always allocate enough space to hold the whole thing so that the 22739ce48e5aSMichal Kubecek * driver does not need to check the length and bother with partial 22749ce48e5aSMichal Kubecek * dumping. 22759ce48e5aSMichal Kubecek */ 22769ce48e5aSMichal Kubecek data = vzalloc(tmp.len); 22779ce48e5aSMichal Kubecek if (!data) 22789ce48e5aSMichal Kubecek return -ENOMEM; 22799ce48e5aSMichal Kubecek ret = ops->get_dump_data(dev, &dump, data); 22809ce48e5aSMichal Kubecek if (ret) 22819ce48e5aSMichal Kubecek goto out; 22829ce48e5aSMichal Kubecek 22839ce48e5aSMichal Kubecek /* There are two sane possibilities: 22849ce48e5aSMichal Kubecek * 1. The driver's .get_dump_data() does not touch dump.len. 22859ce48e5aSMichal Kubecek * 2. Or it may set dump.len to how much it really writes, which 22869ce48e5aSMichal Kubecek * should be tmp.len (or len if it can do a partial dump). 22879ce48e5aSMichal Kubecek * In any case respond to userspace with the actual length of data 22889ce48e5aSMichal Kubecek * it's receiving. 22899ce48e5aSMichal Kubecek */ 22909ce48e5aSMichal Kubecek WARN_ON(dump.len != len && dump.len != tmp.len); 22919ce48e5aSMichal Kubecek dump.len = len; 22929ce48e5aSMichal Kubecek 22939ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &dump, sizeof(dump))) { 22949ce48e5aSMichal Kubecek ret = -EFAULT; 22959ce48e5aSMichal Kubecek goto out; 22969ce48e5aSMichal Kubecek } 22979ce48e5aSMichal Kubecek useraddr += offsetof(struct ethtool_dump, data); 22989ce48e5aSMichal Kubecek if (copy_to_user(useraddr, data, len)) 22999ce48e5aSMichal Kubecek ret = -EFAULT; 23009ce48e5aSMichal Kubecek out: 23019ce48e5aSMichal Kubecek vfree(data); 23029ce48e5aSMichal Kubecek return ret; 23039ce48e5aSMichal Kubecek } 23049ce48e5aSMichal Kubecek 23059ce48e5aSMichal Kubecek static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr) 23069ce48e5aSMichal Kubecek { 23079ce48e5aSMichal Kubecek struct ethtool_ts_info info; 23085b071c59SMichal Kubecek int err; 23099ce48e5aSMichal Kubecek 23105b071c59SMichal Kubecek err = __ethtool_get_ts_info(dev, &info); 23119ce48e5aSMichal Kubecek if (err) 23129ce48e5aSMichal Kubecek return err; 23139ce48e5aSMichal Kubecek 23149ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &info, sizeof(info))) 23155b071c59SMichal Kubecek return -EFAULT; 23169ce48e5aSMichal Kubecek 23175b071c59SMichal Kubecek return 0; 23189ce48e5aSMichal Kubecek } 23199ce48e5aSMichal Kubecek 232095dfc7efSAndrew Lunn int ethtool_get_module_info_call(struct net_device *dev, 23219ce48e5aSMichal Kubecek struct ethtool_modinfo *modinfo) 23229ce48e5aSMichal Kubecek { 23239ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 23249ce48e5aSMichal Kubecek struct phy_device *phydev = dev->phydev; 23259ce48e5aSMichal Kubecek 23269ce48e5aSMichal Kubecek if (dev->sfp_bus) 23279ce48e5aSMichal Kubecek return sfp_get_module_info(dev->sfp_bus, modinfo); 23289ce48e5aSMichal Kubecek 23299ce48e5aSMichal Kubecek if (phydev && phydev->drv && phydev->drv->module_info) 23309ce48e5aSMichal Kubecek return phydev->drv->module_info(phydev, modinfo); 23319ce48e5aSMichal Kubecek 23329ce48e5aSMichal Kubecek if (ops->get_module_info) 23339ce48e5aSMichal Kubecek return ops->get_module_info(dev, modinfo); 23349ce48e5aSMichal Kubecek 23359ce48e5aSMichal Kubecek return -EOPNOTSUPP; 23369ce48e5aSMichal Kubecek } 23379ce48e5aSMichal Kubecek 23389ce48e5aSMichal Kubecek static int ethtool_get_module_info(struct net_device *dev, 23399ce48e5aSMichal Kubecek void __user *useraddr) 23409ce48e5aSMichal Kubecek { 23419ce48e5aSMichal Kubecek int ret; 23429ce48e5aSMichal Kubecek struct ethtool_modinfo modinfo; 23439ce48e5aSMichal Kubecek 23449ce48e5aSMichal Kubecek if (copy_from_user(&modinfo, useraddr, sizeof(modinfo))) 23459ce48e5aSMichal Kubecek return -EFAULT; 23469ce48e5aSMichal Kubecek 234795dfc7efSAndrew Lunn ret = ethtool_get_module_info_call(dev, &modinfo); 23489ce48e5aSMichal Kubecek if (ret) 23499ce48e5aSMichal Kubecek return ret; 23509ce48e5aSMichal Kubecek 23519ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &modinfo, sizeof(modinfo))) 23529ce48e5aSMichal Kubecek return -EFAULT; 23539ce48e5aSMichal Kubecek 23549ce48e5aSMichal Kubecek return 0; 23559ce48e5aSMichal Kubecek } 23569ce48e5aSMichal Kubecek 235795dfc7efSAndrew Lunn int ethtool_get_module_eeprom_call(struct net_device *dev, 23589ce48e5aSMichal Kubecek struct ethtool_eeprom *ee, u8 *data) 23599ce48e5aSMichal Kubecek { 23609ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 23619ce48e5aSMichal Kubecek struct phy_device *phydev = dev->phydev; 23629ce48e5aSMichal Kubecek 23639ce48e5aSMichal Kubecek if (dev->sfp_bus) 23649ce48e5aSMichal Kubecek return sfp_get_module_eeprom(dev->sfp_bus, ee, data); 23659ce48e5aSMichal Kubecek 23669ce48e5aSMichal Kubecek if (phydev && phydev->drv && phydev->drv->module_eeprom) 23679ce48e5aSMichal Kubecek return phydev->drv->module_eeprom(phydev, ee, data); 23689ce48e5aSMichal Kubecek 23699ce48e5aSMichal Kubecek if (ops->get_module_eeprom) 23709ce48e5aSMichal Kubecek return ops->get_module_eeprom(dev, ee, data); 23719ce48e5aSMichal Kubecek 23729ce48e5aSMichal Kubecek return -EOPNOTSUPP; 23739ce48e5aSMichal Kubecek } 23749ce48e5aSMichal Kubecek 23759ce48e5aSMichal Kubecek static int ethtool_get_module_eeprom(struct net_device *dev, 23769ce48e5aSMichal Kubecek void __user *useraddr) 23779ce48e5aSMichal Kubecek { 23789ce48e5aSMichal Kubecek int ret; 23799ce48e5aSMichal Kubecek struct ethtool_modinfo modinfo; 23809ce48e5aSMichal Kubecek 238195dfc7efSAndrew Lunn ret = ethtool_get_module_info_call(dev, &modinfo); 23829ce48e5aSMichal Kubecek if (ret) 23839ce48e5aSMichal Kubecek return ret; 23849ce48e5aSMichal Kubecek 23859ce48e5aSMichal Kubecek return ethtool_get_any_eeprom(dev, useraddr, 238695dfc7efSAndrew Lunn ethtool_get_module_eeprom_call, 23879ce48e5aSMichal Kubecek modinfo.eeprom_len); 23889ce48e5aSMichal Kubecek } 23899ce48e5aSMichal Kubecek 23909ce48e5aSMichal Kubecek static int ethtool_tunable_valid(const struct ethtool_tunable *tuna) 23919ce48e5aSMichal Kubecek { 23929ce48e5aSMichal Kubecek switch (tuna->id) { 23939ce48e5aSMichal Kubecek case ETHTOOL_RX_COPYBREAK: 23949ce48e5aSMichal Kubecek case ETHTOOL_TX_COPYBREAK: 2395448f413aSHao Chen case ETHTOOL_TX_COPYBREAK_BUF_SIZE: 23969ce48e5aSMichal Kubecek if (tuna->len != sizeof(u32) || 23979ce48e5aSMichal Kubecek tuna->type_id != ETHTOOL_TUNABLE_U32) 23989ce48e5aSMichal Kubecek return -EINVAL; 23999ce48e5aSMichal Kubecek break; 24009ce48e5aSMichal Kubecek case ETHTOOL_PFC_PREVENTION_TOUT: 24019ce48e5aSMichal Kubecek if (tuna->len != sizeof(u16) || 24029ce48e5aSMichal Kubecek tuna->type_id != ETHTOOL_TUNABLE_U16) 24039ce48e5aSMichal Kubecek return -EINVAL; 24049ce48e5aSMichal Kubecek break; 24059ce48e5aSMichal Kubecek default: 24069ce48e5aSMichal Kubecek return -EINVAL; 24079ce48e5aSMichal Kubecek } 24089ce48e5aSMichal Kubecek 24099ce48e5aSMichal Kubecek return 0; 24109ce48e5aSMichal Kubecek } 24119ce48e5aSMichal Kubecek 24129ce48e5aSMichal Kubecek static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr) 24139ce48e5aSMichal Kubecek { 24149ce48e5aSMichal Kubecek int ret; 24159ce48e5aSMichal Kubecek struct ethtool_tunable tuna; 24169ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 24179ce48e5aSMichal Kubecek void *data; 24189ce48e5aSMichal Kubecek 24199ce48e5aSMichal Kubecek if (!ops->get_tunable) 24209ce48e5aSMichal Kubecek return -EOPNOTSUPP; 24219ce48e5aSMichal Kubecek if (copy_from_user(&tuna, useraddr, sizeof(tuna))) 24229ce48e5aSMichal Kubecek return -EFAULT; 24239ce48e5aSMichal Kubecek ret = ethtool_tunable_valid(&tuna); 24249ce48e5aSMichal Kubecek if (ret) 24259ce48e5aSMichal Kubecek return ret; 242680ec82e3SAustin Kim data = kzalloc(tuna.len, GFP_USER); 24279ce48e5aSMichal Kubecek if (!data) 24289ce48e5aSMichal Kubecek return -ENOMEM; 24299ce48e5aSMichal Kubecek ret = ops->get_tunable(dev, &tuna, data); 24309ce48e5aSMichal Kubecek if (ret) 24319ce48e5aSMichal Kubecek goto out; 24329ce48e5aSMichal Kubecek useraddr += sizeof(tuna); 24339ce48e5aSMichal Kubecek ret = -EFAULT; 24349ce48e5aSMichal Kubecek if (copy_to_user(useraddr, data, tuna.len)) 24359ce48e5aSMichal Kubecek goto out; 24369ce48e5aSMichal Kubecek ret = 0; 24379ce48e5aSMichal Kubecek 24389ce48e5aSMichal Kubecek out: 24399ce48e5aSMichal Kubecek kfree(data); 24409ce48e5aSMichal Kubecek return ret; 24419ce48e5aSMichal Kubecek } 24429ce48e5aSMichal Kubecek 24439ce48e5aSMichal Kubecek static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr) 24449ce48e5aSMichal Kubecek { 24459ce48e5aSMichal Kubecek int ret; 24469ce48e5aSMichal Kubecek struct ethtool_tunable tuna; 24479ce48e5aSMichal Kubecek const struct ethtool_ops *ops = dev->ethtool_ops; 24489ce48e5aSMichal Kubecek void *data; 24499ce48e5aSMichal Kubecek 24509ce48e5aSMichal Kubecek if (!ops->set_tunable) 24519ce48e5aSMichal Kubecek return -EOPNOTSUPP; 24529ce48e5aSMichal Kubecek if (copy_from_user(&tuna, useraddr, sizeof(tuna))) 24539ce48e5aSMichal Kubecek return -EFAULT; 24549ce48e5aSMichal Kubecek ret = ethtool_tunable_valid(&tuna); 24559ce48e5aSMichal Kubecek if (ret) 24569ce48e5aSMichal Kubecek return ret; 24579ce48e5aSMichal Kubecek useraddr += sizeof(tuna); 24589ce48e5aSMichal Kubecek data = memdup_user(useraddr, tuna.len); 24599ce48e5aSMichal Kubecek if (IS_ERR(data)) 24609ce48e5aSMichal Kubecek return PTR_ERR(data); 24619ce48e5aSMichal Kubecek ret = ops->set_tunable(dev, &tuna, data); 24629ce48e5aSMichal Kubecek 24639ce48e5aSMichal Kubecek kfree(data); 24649ce48e5aSMichal Kubecek return ret; 24659ce48e5aSMichal Kubecek } 24669ce48e5aSMichal Kubecek 24679ce48e5aSMichal Kubecek static noinline_for_stack int 24689ce48e5aSMichal Kubecek ethtool_get_per_queue_coalesce(struct net_device *dev, 24699ce48e5aSMichal Kubecek void __user *useraddr, 24709ce48e5aSMichal Kubecek struct ethtool_per_queue_op *per_queue_opt) 24719ce48e5aSMichal Kubecek { 24729ce48e5aSMichal Kubecek u32 bit; 24739ce48e5aSMichal Kubecek int ret; 24749ce48e5aSMichal Kubecek DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE); 24759ce48e5aSMichal Kubecek 24769ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_per_queue_coalesce) 24779ce48e5aSMichal Kubecek return -EOPNOTSUPP; 24789ce48e5aSMichal Kubecek 24799ce48e5aSMichal Kubecek useraddr += sizeof(*per_queue_opt); 24809ce48e5aSMichal Kubecek 24819ce48e5aSMichal Kubecek bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask, 24829ce48e5aSMichal Kubecek MAX_NUM_QUEUE); 24839ce48e5aSMichal Kubecek 24849ce48e5aSMichal Kubecek for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) { 24859ce48e5aSMichal Kubecek struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE }; 24869ce48e5aSMichal Kubecek 24879ce48e5aSMichal Kubecek ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, &coalesce); 24889ce48e5aSMichal Kubecek if (ret != 0) 24899ce48e5aSMichal Kubecek return ret; 24909ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &coalesce, sizeof(coalesce))) 24919ce48e5aSMichal Kubecek return -EFAULT; 24929ce48e5aSMichal Kubecek useraddr += sizeof(coalesce); 24939ce48e5aSMichal Kubecek } 24949ce48e5aSMichal Kubecek 24959ce48e5aSMichal Kubecek return 0; 24969ce48e5aSMichal Kubecek } 24979ce48e5aSMichal Kubecek 24989ce48e5aSMichal Kubecek static noinline_for_stack int 24999ce48e5aSMichal Kubecek ethtool_set_per_queue_coalesce(struct net_device *dev, 25009ce48e5aSMichal Kubecek void __user *useraddr, 25019ce48e5aSMichal Kubecek struct ethtool_per_queue_op *per_queue_opt) 25029ce48e5aSMichal Kubecek { 25039ce48e5aSMichal Kubecek u32 bit; 25049ce48e5aSMichal Kubecek int i, ret = 0; 25059ce48e5aSMichal Kubecek int n_queue; 25069ce48e5aSMichal Kubecek struct ethtool_coalesce *backup = NULL, *tmp = NULL; 25079ce48e5aSMichal Kubecek DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE); 25089ce48e5aSMichal Kubecek 25099ce48e5aSMichal Kubecek if ((!dev->ethtool_ops->set_per_queue_coalesce) || 25109ce48e5aSMichal Kubecek (!dev->ethtool_ops->get_per_queue_coalesce)) 25119ce48e5aSMichal Kubecek return -EOPNOTSUPP; 25129ce48e5aSMichal Kubecek 25139ce48e5aSMichal Kubecek useraddr += sizeof(*per_queue_opt); 25149ce48e5aSMichal Kubecek 25159ce48e5aSMichal Kubecek bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask, MAX_NUM_QUEUE); 25169ce48e5aSMichal Kubecek n_queue = bitmap_weight(queue_mask, MAX_NUM_QUEUE); 25179ce48e5aSMichal Kubecek tmp = backup = kmalloc_array(n_queue, sizeof(*backup), GFP_KERNEL); 25189ce48e5aSMichal Kubecek if (!backup) 25199ce48e5aSMichal Kubecek return -ENOMEM; 25209ce48e5aSMichal Kubecek 25219ce48e5aSMichal Kubecek for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) { 25229ce48e5aSMichal Kubecek struct ethtool_coalesce coalesce; 25239ce48e5aSMichal Kubecek 25249ce48e5aSMichal Kubecek ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, tmp); 25259ce48e5aSMichal Kubecek if (ret != 0) 25269ce48e5aSMichal Kubecek goto roll_back; 25279ce48e5aSMichal Kubecek 25289ce48e5aSMichal Kubecek tmp++; 25299ce48e5aSMichal Kubecek 25309ce48e5aSMichal Kubecek if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) { 25319ce48e5aSMichal Kubecek ret = -EFAULT; 25329ce48e5aSMichal Kubecek goto roll_back; 25339ce48e5aSMichal Kubecek } 25349ce48e5aSMichal Kubecek 253595cddcb5SJakub Kicinski if (!ethtool_set_coalesce_supported(dev, &coalesce)) { 253695cddcb5SJakub Kicinski ret = -EOPNOTSUPP; 253795cddcb5SJakub Kicinski goto roll_back; 253895cddcb5SJakub Kicinski } 253995cddcb5SJakub Kicinski 25409ce48e5aSMichal Kubecek ret = dev->ethtool_ops->set_per_queue_coalesce(dev, bit, &coalesce); 25419ce48e5aSMichal Kubecek if (ret != 0) 25429ce48e5aSMichal Kubecek goto roll_back; 25439ce48e5aSMichal Kubecek 25449ce48e5aSMichal Kubecek useraddr += sizeof(coalesce); 25459ce48e5aSMichal Kubecek } 25469ce48e5aSMichal Kubecek 25479ce48e5aSMichal Kubecek roll_back: 25489ce48e5aSMichal Kubecek if (ret != 0) { 25499ce48e5aSMichal Kubecek tmp = backup; 25509ce48e5aSMichal Kubecek for_each_set_bit(i, queue_mask, bit) { 25519ce48e5aSMichal Kubecek dev->ethtool_ops->set_per_queue_coalesce(dev, i, tmp); 25529ce48e5aSMichal Kubecek tmp++; 25539ce48e5aSMichal Kubecek } 25549ce48e5aSMichal Kubecek } 25559ce48e5aSMichal Kubecek kfree(backup); 25569ce48e5aSMichal Kubecek 25579ce48e5aSMichal Kubecek return ret; 25589ce48e5aSMichal Kubecek } 25599ce48e5aSMichal Kubecek 25609ce48e5aSMichal Kubecek static int noinline_for_stack ethtool_set_per_queue(struct net_device *dev, 25619ce48e5aSMichal Kubecek void __user *useraddr, u32 sub_cmd) 25629ce48e5aSMichal Kubecek { 25639ce48e5aSMichal Kubecek struct ethtool_per_queue_op per_queue_opt; 25649ce48e5aSMichal Kubecek 25659ce48e5aSMichal Kubecek if (copy_from_user(&per_queue_opt, useraddr, sizeof(per_queue_opt))) 25669ce48e5aSMichal Kubecek return -EFAULT; 25679ce48e5aSMichal Kubecek 25689ce48e5aSMichal Kubecek if (per_queue_opt.sub_command != sub_cmd) 25699ce48e5aSMichal Kubecek return -EINVAL; 25709ce48e5aSMichal Kubecek 25719ce48e5aSMichal Kubecek switch (per_queue_opt.sub_command) { 25729ce48e5aSMichal Kubecek case ETHTOOL_GCOALESCE: 25739ce48e5aSMichal Kubecek return ethtool_get_per_queue_coalesce(dev, useraddr, &per_queue_opt); 25749ce48e5aSMichal Kubecek case ETHTOOL_SCOALESCE: 25759ce48e5aSMichal Kubecek return ethtool_set_per_queue_coalesce(dev, useraddr, &per_queue_opt); 25769ce48e5aSMichal Kubecek default: 25779ce48e5aSMichal Kubecek return -EOPNOTSUPP; 25789d253c02STom Rix } 25799ce48e5aSMichal Kubecek } 25809ce48e5aSMichal Kubecek 25819ce48e5aSMichal Kubecek static int ethtool_phy_tunable_valid(const struct ethtool_tunable *tuna) 25829ce48e5aSMichal Kubecek { 25839ce48e5aSMichal Kubecek switch (tuna->id) { 25849ce48e5aSMichal Kubecek case ETHTOOL_PHY_DOWNSHIFT: 25859ce48e5aSMichal Kubecek case ETHTOOL_PHY_FAST_LINK_DOWN: 25869ce48e5aSMichal Kubecek if (tuna->len != sizeof(u8) || 25879ce48e5aSMichal Kubecek tuna->type_id != ETHTOOL_TUNABLE_U8) 25889ce48e5aSMichal Kubecek return -EINVAL; 25899ce48e5aSMichal Kubecek break; 25909ce48e5aSMichal Kubecek case ETHTOOL_PHY_EDPD: 25919ce48e5aSMichal Kubecek if (tuna->len != sizeof(u16) || 25929ce48e5aSMichal Kubecek tuna->type_id != ETHTOOL_TUNABLE_U16) 25939ce48e5aSMichal Kubecek return -EINVAL; 25949ce48e5aSMichal Kubecek break; 25959ce48e5aSMichal Kubecek default: 25969ce48e5aSMichal Kubecek return -EINVAL; 25979ce48e5aSMichal Kubecek } 25989ce48e5aSMichal Kubecek 25999ce48e5aSMichal Kubecek return 0; 26009ce48e5aSMichal Kubecek } 26019ce48e5aSMichal Kubecek 26029ce48e5aSMichal Kubecek static int get_phy_tunable(struct net_device *dev, void __user *useraddr) 26039ce48e5aSMichal Kubecek { 26049ce48e5aSMichal Kubecek struct phy_device *phydev = dev->phydev; 2605c6db31ffSIgor Russkikh struct ethtool_tunable tuna; 2606c6db31ffSIgor Russkikh bool phy_drv_tunable; 26079ce48e5aSMichal Kubecek void *data; 2608c6db31ffSIgor Russkikh int ret; 26099ce48e5aSMichal Kubecek 2610c6db31ffSIgor Russkikh phy_drv_tunable = phydev && phydev->drv && phydev->drv->get_tunable; 2611c6db31ffSIgor Russkikh if (!phy_drv_tunable && !dev->ethtool_ops->get_phy_tunable) 26129ce48e5aSMichal Kubecek return -EOPNOTSUPP; 26139ce48e5aSMichal Kubecek if (copy_from_user(&tuna, useraddr, sizeof(tuna))) 26149ce48e5aSMichal Kubecek return -EFAULT; 26159ce48e5aSMichal Kubecek ret = ethtool_phy_tunable_valid(&tuna); 26169ce48e5aSMichal Kubecek if (ret) 26179ce48e5aSMichal Kubecek return ret; 261880ec82e3SAustin Kim data = kzalloc(tuna.len, GFP_USER); 26199ce48e5aSMichal Kubecek if (!data) 26209ce48e5aSMichal Kubecek return -ENOMEM; 2621c6db31ffSIgor Russkikh if (phy_drv_tunable) { 26229ce48e5aSMichal Kubecek mutex_lock(&phydev->lock); 26239ce48e5aSMichal Kubecek ret = phydev->drv->get_tunable(phydev, &tuna, data); 26249ce48e5aSMichal Kubecek mutex_unlock(&phydev->lock); 2625c6db31ffSIgor Russkikh } else { 2626c6db31ffSIgor Russkikh ret = dev->ethtool_ops->get_phy_tunable(dev, &tuna, data); 2627c6db31ffSIgor Russkikh } 26289ce48e5aSMichal Kubecek if (ret) 26299ce48e5aSMichal Kubecek goto out; 26309ce48e5aSMichal Kubecek useraddr += sizeof(tuna); 26319ce48e5aSMichal Kubecek ret = -EFAULT; 26329ce48e5aSMichal Kubecek if (copy_to_user(useraddr, data, tuna.len)) 26339ce48e5aSMichal Kubecek goto out; 26349ce48e5aSMichal Kubecek ret = 0; 26359ce48e5aSMichal Kubecek 26369ce48e5aSMichal Kubecek out: 26379ce48e5aSMichal Kubecek kfree(data); 26389ce48e5aSMichal Kubecek return ret; 26399ce48e5aSMichal Kubecek } 26409ce48e5aSMichal Kubecek 26419ce48e5aSMichal Kubecek static int set_phy_tunable(struct net_device *dev, void __user *useraddr) 26429ce48e5aSMichal Kubecek { 26439ce48e5aSMichal Kubecek struct phy_device *phydev = dev->phydev; 2644c6db31ffSIgor Russkikh struct ethtool_tunable tuna; 2645c6db31ffSIgor Russkikh bool phy_drv_tunable; 26469ce48e5aSMichal Kubecek void *data; 2647c6db31ffSIgor Russkikh int ret; 26489ce48e5aSMichal Kubecek 2649c6db31ffSIgor Russkikh phy_drv_tunable = phydev && phydev->drv && phydev->drv->get_tunable; 2650c6db31ffSIgor Russkikh if (!phy_drv_tunable && !dev->ethtool_ops->set_phy_tunable) 26519ce48e5aSMichal Kubecek return -EOPNOTSUPP; 26529ce48e5aSMichal Kubecek if (copy_from_user(&tuna, useraddr, sizeof(tuna))) 26539ce48e5aSMichal Kubecek return -EFAULT; 26549ce48e5aSMichal Kubecek ret = ethtool_phy_tunable_valid(&tuna); 26559ce48e5aSMichal Kubecek if (ret) 26569ce48e5aSMichal Kubecek return ret; 26579ce48e5aSMichal Kubecek useraddr += sizeof(tuna); 26589ce48e5aSMichal Kubecek data = memdup_user(useraddr, tuna.len); 26599ce48e5aSMichal Kubecek if (IS_ERR(data)) 26609ce48e5aSMichal Kubecek return PTR_ERR(data); 2661c6db31ffSIgor Russkikh if (phy_drv_tunable) { 26629ce48e5aSMichal Kubecek mutex_lock(&phydev->lock); 26639ce48e5aSMichal Kubecek ret = phydev->drv->set_tunable(phydev, &tuna, data); 26649ce48e5aSMichal Kubecek mutex_unlock(&phydev->lock); 2665c6db31ffSIgor Russkikh } else { 2666c6db31ffSIgor Russkikh ret = dev->ethtool_ops->set_phy_tunable(dev, &tuna, data); 2667c6db31ffSIgor Russkikh } 26689ce48e5aSMichal Kubecek 26699ce48e5aSMichal Kubecek kfree(data); 26709ce48e5aSMichal Kubecek return ret; 26719ce48e5aSMichal Kubecek } 26729ce48e5aSMichal Kubecek 26739ce48e5aSMichal Kubecek static int ethtool_get_fecparam(struct net_device *dev, void __user *useraddr) 26749ce48e5aSMichal Kubecek { 26759ce48e5aSMichal Kubecek struct ethtool_fecparam fecparam = { .cmd = ETHTOOL_GFECPARAM }; 26769ce48e5aSMichal Kubecek int rc; 26779ce48e5aSMichal Kubecek 26789ce48e5aSMichal Kubecek if (!dev->ethtool_ops->get_fecparam) 26799ce48e5aSMichal Kubecek return -EOPNOTSUPP; 26809ce48e5aSMichal Kubecek 26819ce48e5aSMichal Kubecek rc = dev->ethtool_ops->get_fecparam(dev, &fecparam); 26829ce48e5aSMichal Kubecek if (rc) 26839ce48e5aSMichal Kubecek return rc; 26849ce48e5aSMichal Kubecek 2685240e1144SJakub Kicinski if (WARN_ON_ONCE(fecparam.reserved)) 2686240e1144SJakub Kicinski fecparam.reserved = 0; 2687240e1144SJakub Kicinski 26889ce48e5aSMichal Kubecek if (copy_to_user(useraddr, &fecparam, sizeof(fecparam))) 26899ce48e5aSMichal Kubecek return -EFAULT; 26909ce48e5aSMichal Kubecek return 0; 26919ce48e5aSMichal Kubecek } 26929ce48e5aSMichal Kubecek 26939ce48e5aSMichal Kubecek static int ethtool_set_fecparam(struct net_device *dev, void __user *useraddr) 26949ce48e5aSMichal Kubecek { 26959ce48e5aSMichal Kubecek struct ethtool_fecparam fecparam; 26969ce48e5aSMichal Kubecek 26979ce48e5aSMichal Kubecek if (!dev->ethtool_ops->set_fecparam) 26989ce48e5aSMichal Kubecek return -EOPNOTSUPP; 26999ce48e5aSMichal Kubecek 27009ce48e5aSMichal Kubecek if (copy_from_user(&fecparam, useraddr, sizeof(fecparam))) 27019ce48e5aSMichal Kubecek return -EFAULT; 27029ce48e5aSMichal Kubecek 2703cf2cc0bfSJakub Kicinski if (!fecparam.fec || fecparam.fec & ETHTOOL_FEC_NONE) 270442ce127dSJakub Kicinski return -EINVAL; 270542ce127dSJakub Kicinski 2706d3b37fc8SJakub Kicinski fecparam.active_fec = 0; 2707240e1144SJakub Kicinski fecparam.reserved = 0; 2708240e1144SJakub Kicinski 27099ce48e5aSMichal Kubecek return dev->ethtool_ops->set_fecparam(dev, &fecparam); 27109ce48e5aSMichal Kubecek } 27119ce48e5aSMichal Kubecek 27129ce48e5aSMichal Kubecek /* The main entry point in this file. Called from net/core/dev_ioctl.c */ 27139ce48e5aSMichal Kubecek 2714f49deaa6SJakub Kicinski static int 2715095cfcfeSJakub Kicinski __dev_ethtool(struct net *net, struct ifreq *ifr, void __user *useraddr, 2716095cfcfeSJakub Kicinski u32 ethcmd, struct ethtool_devlink_compat *devlink_state) 27179ce48e5aSMichal Kubecek { 2718095cfcfeSJakub Kicinski struct net_device *dev; 2719095cfcfeSJakub Kicinski u32 sub_cmd; 27209ce48e5aSMichal Kubecek int rc; 27219ce48e5aSMichal Kubecek netdev_features_t old_features; 27229ce48e5aSMichal Kubecek 2723095cfcfeSJakub Kicinski dev = __dev_get_by_name(net, ifr->ifr_name); 2724f32a2137SHeiner Kallweit if (!dev) 27259ce48e5aSMichal Kubecek return -ENODEV; 27269ce48e5aSMichal Kubecek 27279ce48e5aSMichal Kubecek if (ethcmd == ETHTOOL_PERQUEUE) { 27289ce48e5aSMichal Kubecek if (copy_from_user(&sub_cmd, useraddr + sizeof(ethcmd), sizeof(sub_cmd))) 27299ce48e5aSMichal Kubecek return -EFAULT; 27309ce48e5aSMichal Kubecek } else { 27319ce48e5aSMichal Kubecek sub_cmd = ethcmd; 27329ce48e5aSMichal Kubecek } 27339ce48e5aSMichal Kubecek /* Allow some commands to be done by anyone */ 27349ce48e5aSMichal Kubecek switch (sub_cmd) { 27359ce48e5aSMichal Kubecek case ETHTOOL_GSET: 27369ce48e5aSMichal Kubecek case ETHTOOL_GDRVINFO: 27379ce48e5aSMichal Kubecek case ETHTOOL_GMSGLVL: 27389ce48e5aSMichal Kubecek case ETHTOOL_GLINK: 27399ce48e5aSMichal Kubecek case ETHTOOL_GCOALESCE: 27409ce48e5aSMichal Kubecek case ETHTOOL_GRINGPARAM: 27419ce48e5aSMichal Kubecek case ETHTOOL_GPAUSEPARAM: 27429ce48e5aSMichal Kubecek case ETHTOOL_GRXCSUM: 27439ce48e5aSMichal Kubecek case ETHTOOL_GTXCSUM: 27449ce48e5aSMichal Kubecek case ETHTOOL_GSG: 27459ce48e5aSMichal Kubecek case ETHTOOL_GSSET_INFO: 27469ce48e5aSMichal Kubecek case ETHTOOL_GSTRINGS: 27479ce48e5aSMichal Kubecek case ETHTOOL_GSTATS: 27489ce48e5aSMichal Kubecek case ETHTOOL_GPHYSTATS: 27499ce48e5aSMichal Kubecek case ETHTOOL_GTSO: 27509ce48e5aSMichal Kubecek case ETHTOOL_GPERMADDR: 27519ce48e5aSMichal Kubecek case ETHTOOL_GUFO: 27529ce48e5aSMichal Kubecek case ETHTOOL_GGSO: 27539ce48e5aSMichal Kubecek case ETHTOOL_GGRO: 27549ce48e5aSMichal Kubecek case ETHTOOL_GFLAGS: 27559ce48e5aSMichal Kubecek case ETHTOOL_GPFLAGS: 27569ce48e5aSMichal Kubecek case ETHTOOL_GRXFH: 27579ce48e5aSMichal Kubecek case ETHTOOL_GRXRINGS: 27589ce48e5aSMichal Kubecek case ETHTOOL_GRXCLSRLCNT: 27599ce48e5aSMichal Kubecek case ETHTOOL_GRXCLSRULE: 27609ce48e5aSMichal Kubecek case ETHTOOL_GRXCLSRLALL: 27619ce48e5aSMichal Kubecek case ETHTOOL_GRXFHINDIR: 27629ce48e5aSMichal Kubecek case ETHTOOL_GRSSH: 27639ce48e5aSMichal Kubecek case ETHTOOL_GFEATURES: 27649ce48e5aSMichal Kubecek case ETHTOOL_GCHANNELS: 27659ce48e5aSMichal Kubecek case ETHTOOL_GET_TS_INFO: 27669ce48e5aSMichal Kubecek case ETHTOOL_GEEE: 27679ce48e5aSMichal Kubecek case ETHTOOL_GTUNABLE: 27689ce48e5aSMichal Kubecek case ETHTOOL_PHY_GTUNABLE: 27699ce48e5aSMichal Kubecek case ETHTOOL_GLINKSETTINGS: 27709ce48e5aSMichal Kubecek case ETHTOOL_GFECPARAM: 27719ce48e5aSMichal Kubecek break; 27729ce48e5aSMichal Kubecek default: 27739ce48e5aSMichal Kubecek if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) 27749ce48e5aSMichal Kubecek return -EPERM; 27759ce48e5aSMichal Kubecek } 27769ce48e5aSMichal Kubecek 2777f32a2137SHeiner Kallweit if (dev->dev.parent) 2778f32a2137SHeiner Kallweit pm_runtime_get_sync(dev->dev.parent); 2779f32a2137SHeiner Kallweit 2780f32a2137SHeiner Kallweit if (!netif_device_present(dev)) { 2781f32a2137SHeiner Kallweit rc = -ENODEV; 2782f32a2137SHeiner Kallweit goto out; 2783f32a2137SHeiner Kallweit } 2784f32a2137SHeiner Kallweit 27859ce48e5aSMichal Kubecek if (dev->ethtool_ops->begin) { 27869ce48e5aSMichal Kubecek rc = dev->ethtool_ops->begin(dev); 27879ce48e5aSMichal Kubecek if (rc < 0) 2788f32a2137SHeiner Kallweit goto out; 27899ce48e5aSMichal Kubecek } 27909ce48e5aSMichal Kubecek old_features = dev->features; 27919ce48e5aSMichal Kubecek 27929ce48e5aSMichal Kubecek switch (ethcmd) { 27939ce48e5aSMichal Kubecek case ETHTOOL_GSET: 27949ce48e5aSMichal Kubecek rc = ethtool_get_settings(dev, useraddr); 27959ce48e5aSMichal Kubecek break; 27969ce48e5aSMichal Kubecek case ETHTOOL_SSET: 27979ce48e5aSMichal Kubecek rc = ethtool_set_settings(dev, useraddr); 27989ce48e5aSMichal Kubecek break; 27999ce48e5aSMichal Kubecek case ETHTOOL_GDRVINFO: 2800095cfcfeSJakub Kicinski rc = ethtool_get_drvinfo(dev, devlink_state); 28019ce48e5aSMichal Kubecek break; 28029ce48e5aSMichal Kubecek case ETHTOOL_GREGS: 28039ce48e5aSMichal Kubecek rc = ethtool_get_regs(dev, useraddr); 28049ce48e5aSMichal Kubecek break; 28059ce48e5aSMichal Kubecek case ETHTOOL_GWOL: 28069ce48e5aSMichal Kubecek rc = ethtool_get_wol(dev, useraddr); 28079ce48e5aSMichal Kubecek break; 28089ce48e5aSMichal Kubecek case ETHTOOL_SWOL: 28099ce48e5aSMichal Kubecek rc = ethtool_set_wol(dev, useraddr); 28109ce48e5aSMichal Kubecek break; 28119ce48e5aSMichal Kubecek case ETHTOOL_GMSGLVL: 28129ce48e5aSMichal Kubecek rc = ethtool_get_value(dev, useraddr, ethcmd, 28139ce48e5aSMichal Kubecek dev->ethtool_ops->get_msglevel); 28149ce48e5aSMichal Kubecek break; 28159ce48e5aSMichal Kubecek case ETHTOOL_SMSGLVL: 28169ce48e5aSMichal Kubecek rc = ethtool_set_value_void(dev, useraddr, 28179ce48e5aSMichal Kubecek dev->ethtool_ops->set_msglevel); 28180bda7af3SMichal Kubecek if (!rc) 28190bda7af3SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_DEBUG_NTF, NULL); 28209ce48e5aSMichal Kubecek break; 28219ce48e5aSMichal Kubecek case ETHTOOL_GEEE: 28229ce48e5aSMichal Kubecek rc = ethtool_get_eee(dev, useraddr); 28239ce48e5aSMichal Kubecek break; 28249ce48e5aSMichal Kubecek case ETHTOOL_SEEE: 28259ce48e5aSMichal Kubecek rc = ethtool_set_eee(dev, useraddr); 28269ce48e5aSMichal Kubecek break; 28279ce48e5aSMichal Kubecek case ETHTOOL_NWAY_RST: 28289ce48e5aSMichal Kubecek rc = ethtool_nway_reset(dev); 28299ce48e5aSMichal Kubecek break; 28309ce48e5aSMichal Kubecek case ETHTOOL_GLINK: 28319ce48e5aSMichal Kubecek rc = ethtool_get_link(dev, useraddr); 28329ce48e5aSMichal Kubecek break; 28339ce48e5aSMichal Kubecek case ETHTOOL_GEEPROM: 28349ce48e5aSMichal Kubecek rc = ethtool_get_eeprom(dev, useraddr); 28359ce48e5aSMichal Kubecek break; 28369ce48e5aSMichal Kubecek case ETHTOOL_SEEPROM: 28379ce48e5aSMichal Kubecek rc = ethtool_set_eeprom(dev, useraddr); 28389ce48e5aSMichal Kubecek break; 28399ce48e5aSMichal Kubecek case ETHTOOL_GCOALESCE: 28409ce48e5aSMichal Kubecek rc = ethtool_get_coalesce(dev, useraddr); 28419ce48e5aSMichal Kubecek break; 28429ce48e5aSMichal Kubecek case ETHTOOL_SCOALESCE: 28439ce48e5aSMichal Kubecek rc = ethtool_set_coalesce(dev, useraddr); 28449ce48e5aSMichal Kubecek break; 28459ce48e5aSMichal Kubecek case ETHTOOL_GRINGPARAM: 28469ce48e5aSMichal Kubecek rc = ethtool_get_ringparam(dev, useraddr); 28479ce48e5aSMichal Kubecek break; 28489ce48e5aSMichal Kubecek case ETHTOOL_SRINGPARAM: 28499ce48e5aSMichal Kubecek rc = ethtool_set_ringparam(dev, useraddr); 28509ce48e5aSMichal Kubecek break; 28519ce48e5aSMichal Kubecek case ETHTOOL_GPAUSEPARAM: 28529ce48e5aSMichal Kubecek rc = ethtool_get_pauseparam(dev, useraddr); 28539ce48e5aSMichal Kubecek break; 28549ce48e5aSMichal Kubecek case ETHTOOL_SPAUSEPARAM: 28559ce48e5aSMichal Kubecek rc = ethtool_set_pauseparam(dev, useraddr); 28569ce48e5aSMichal Kubecek break; 28579ce48e5aSMichal Kubecek case ETHTOOL_TEST: 28589ce48e5aSMichal Kubecek rc = ethtool_self_test(dev, useraddr); 28599ce48e5aSMichal Kubecek break; 28609ce48e5aSMichal Kubecek case ETHTOOL_GSTRINGS: 28619ce48e5aSMichal Kubecek rc = ethtool_get_strings(dev, useraddr); 28629ce48e5aSMichal Kubecek break; 28639ce48e5aSMichal Kubecek case ETHTOOL_PHYS_ID: 28649ce48e5aSMichal Kubecek rc = ethtool_phys_id(dev, useraddr); 28659ce48e5aSMichal Kubecek break; 28669ce48e5aSMichal Kubecek case ETHTOOL_GSTATS: 28679ce48e5aSMichal Kubecek rc = ethtool_get_stats(dev, useraddr); 28689ce48e5aSMichal Kubecek break; 28699ce48e5aSMichal Kubecek case ETHTOOL_GPERMADDR: 28709ce48e5aSMichal Kubecek rc = ethtool_get_perm_addr(dev, useraddr); 28719ce48e5aSMichal Kubecek break; 28729ce48e5aSMichal Kubecek case ETHTOOL_GFLAGS: 28739ce48e5aSMichal Kubecek rc = ethtool_get_value(dev, useraddr, ethcmd, 28749ce48e5aSMichal Kubecek __ethtool_get_flags); 28759ce48e5aSMichal Kubecek break; 28769ce48e5aSMichal Kubecek case ETHTOOL_SFLAGS: 28779ce48e5aSMichal Kubecek rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags); 28789ce48e5aSMichal Kubecek break; 28799ce48e5aSMichal Kubecek case ETHTOOL_GPFLAGS: 28809ce48e5aSMichal Kubecek rc = ethtool_get_value(dev, useraddr, ethcmd, 28819ce48e5aSMichal Kubecek dev->ethtool_ops->get_priv_flags); 2882111dcba3SMichal Kubecek if (!rc) 2883111dcba3SMichal Kubecek ethtool_notify(dev, ETHTOOL_MSG_PRIVFLAGS_NTF, NULL); 28849ce48e5aSMichal Kubecek break; 28859ce48e5aSMichal Kubecek case ETHTOOL_SPFLAGS: 28869ce48e5aSMichal Kubecek rc = ethtool_set_value(dev, useraddr, 28879ce48e5aSMichal Kubecek dev->ethtool_ops->set_priv_flags); 28889ce48e5aSMichal Kubecek break; 28899ce48e5aSMichal Kubecek case ETHTOOL_GRXFH: 28909ce48e5aSMichal Kubecek case ETHTOOL_GRXRINGS: 28919ce48e5aSMichal Kubecek case ETHTOOL_GRXCLSRLCNT: 28929ce48e5aSMichal Kubecek case ETHTOOL_GRXCLSRULE: 28939ce48e5aSMichal Kubecek case ETHTOOL_GRXCLSRLALL: 28949ce48e5aSMichal Kubecek rc = ethtool_get_rxnfc(dev, ethcmd, useraddr); 28959ce48e5aSMichal Kubecek break; 28969ce48e5aSMichal Kubecek case ETHTOOL_SRXFH: 28979ce48e5aSMichal Kubecek case ETHTOOL_SRXCLSRLDEL: 28989ce48e5aSMichal Kubecek case ETHTOOL_SRXCLSRLINS: 28999ce48e5aSMichal Kubecek rc = ethtool_set_rxnfc(dev, ethcmd, useraddr); 29009ce48e5aSMichal Kubecek break; 29019ce48e5aSMichal Kubecek case ETHTOOL_FLASHDEV: 2902095cfcfeSJakub Kicinski rc = ethtool_flash_device(dev, devlink_state); 29039ce48e5aSMichal Kubecek break; 29049ce48e5aSMichal Kubecek case ETHTOOL_RESET: 29059ce48e5aSMichal Kubecek rc = ethtool_reset(dev, useraddr); 29069ce48e5aSMichal Kubecek break; 29079ce48e5aSMichal Kubecek case ETHTOOL_GSSET_INFO: 29089ce48e5aSMichal Kubecek rc = ethtool_get_sset_info(dev, useraddr); 29099ce48e5aSMichal Kubecek break; 29109ce48e5aSMichal Kubecek case ETHTOOL_GRXFHINDIR: 29119ce48e5aSMichal Kubecek rc = ethtool_get_rxfh_indir(dev, useraddr); 29129ce48e5aSMichal Kubecek break; 29139ce48e5aSMichal Kubecek case ETHTOOL_SRXFHINDIR: 29149ce48e5aSMichal Kubecek rc = ethtool_set_rxfh_indir(dev, useraddr); 29159ce48e5aSMichal Kubecek break; 29169ce48e5aSMichal Kubecek case ETHTOOL_GRSSH: 29179ce48e5aSMichal Kubecek rc = ethtool_get_rxfh(dev, useraddr); 29189ce48e5aSMichal Kubecek break; 29199ce48e5aSMichal Kubecek case ETHTOOL_SRSSH: 29209ce48e5aSMichal Kubecek rc = ethtool_set_rxfh(dev, useraddr); 29219ce48e5aSMichal Kubecek break; 29229ce48e5aSMichal Kubecek case ETHTOOL_GFEATURES: 29239ce48e5aSMichal Kubecek rc = ethtool_get_features(dev, useraddr); 29249ce48e5aSMichal Kubecek break; 29259ce48e5aSMichal Kubecek case ETHTOOL_SFEATURES: 29269ce48e5aSMichal Kubecek rc = ethtool_set_features(dev, useraddr); 29279ce48e5aSMichal Kubecek break; 29289ce48e5aSMichal Kubecek case ETHTOOL_GTXCSUM: 29299ce48e5aSMichal Kubecek case ETHTOOL_GRXCSUM: 29309ce48e5aSMichal Kubecek case ETHTOOL_GSG: 29319ce48e5aSMichal Kubecek case ETHTOOL_GTSO: 29329ce48e5aSMichal Kubecek case ETHTOOL_GGSO: 29339ce48e5aSMichal Kubecek case ETHTOOL_GGRO: 29349ce48e5aSMichal Kubecek rc = ethtool_get_one_feature(dev, useraddr, ethcmd); 29359ce48e5aSMichal Kubecek break; 29369ce48e5aSMichal Kubecek case ETHTOOL_STXCSUM: 29379ce48e5aSMichal Kubecek case ETHTOOL_SRXCSUM: 29389ce48e5aSMichal Kubecek case ETHTOOL_SSG: 29399ce48e5aSMichal Kubecek case ETHTOOL_STSO: 29409ce48e5aSMichal Kubecek case ETHTOOL_SGSO: 29419ce48e5aSMichal Kubecek case ETHTOOL_SGRO: 29429ce48e5aSMichal Kubecek rc = ethtool_set_one_feature(dev, useraddr, ethcmd); 29439ce48e5aSMichal Kubecek break; 29449ce48e5aSMichal Kubecek case ETHTOOL_GCHANNELS: 29459ce48e5aSMichal Kubecek rc = ethtool_get_channels(dev, useraddr); 29469ce48e5aSMichal Kubecek break; 29479ce48e5aSMichal Kubecek case ETHTOOL_SCHANNELS: 29489ce48e5aSMichal Kubecek rc = ethtool_set_channels(dev, useraddr); 29499ce48e5aSMichal Kubecek break; 29509ce48e5aSMichal Kubecek case ETHTOOL_SET_DUMP: 29519ce48e5aSMichal Kubecek rc = ethtool_set_dump(dev, useraddr); 29529ce48e5aSMichal Kubecek break; 29539ce48e5aSMichal Kubecek case ETHTOOL_GET_DUMP_FLAG: 29549ce48e5aSMichal Kubecek rc = ethtool_get_dump_flag(dev, useraddr); 29559ce48e5aSMichal Kubecek break; 29569ce48e5aSMichal Kubecek case ETHTOOL_GET_DUMP_DATA: 29579ce48e5aSMichal Kubecek rc = ethtool_get_dump_data(dev, useraddr); 29589ce48e5aSMichal Kubecek break; 29599ce48e5aSMichal Kubecek case ETHTOOL_GET_TS_INFO: 29609ce48e5aSMichal Kubecek rc = ethtool_get_ts_info(dev, useraddr); 29619ce48e5aSMichal Kubecek break; 29629ce48e5aSMichal Kubecek case ETHTOOL_GMODULEINFO: 29639ce48e5aSMichal Kubecek rc = ethtool_get_module_info(dev, useraddr); 29649ce48e5aSMichal Kubecek break; 29659ce48e5aSMichal Kubecek case ETHTOOL_GMODULEEEPROM: 29669ce48e5aSMichal Kubecek rc = ethtool_get_module_eeprom(dev, useraddr); 29679ce48e5aSMichal Kubecek break; 29689ce48e5aSMichal Kubecek case ETHTOOL_GTUNABLE: 29699ce48e5aSMichal Kubecek rc = ethtool_get_tunable(dev, useraddr); 29709ce48e5aSMichal Kubecek break; 29719ce48e5aSMichal Kubecek case ETHTOOL_STUNABLE: 29729ce48e5aSMichal Kubecek rc = ethtool_set_tunable(dev, useraddr); 29739ce48e5aSMichal Kubecek break; 29749ce48e5aSMichal Kubecek case ETHTOOL_GPHYSTATS: 29759ce48e5aSMichal Kubecek rc = ethtool_get_phy_stats(dev, useraddr); 29769ce48e5aSMichal Kubecek break; 29779ce48e5aSMichal Kubecek case ETHTOOL_PERQUEUE: 29789ce48e5aSMichal Kubecek rc = ethtool_set_per_queue(dev, useraddr, sub_cmd); 29799ce48e5aSMichal Kubecek break; 29809ce48e5aSMichal Kubecek case ETHTOOL_GLINKSETTINGS: 29819ce48e5aSMichal Kubecek rc = ethtool_get_link_ksettings(dev, useraddr); 29829ce48e5aSMichal Kubecek break; 29839ce48e5aSMichal Kubecek case ETHTOOL_SLINKSETTINGS: 29849ce48e5aSMichal Kubecek rc = ethtool_set_link_ksettings(dev, useraddr); 29859ce48e5aSMichal Kubecek break; 29869ce48e5aSMichal Kubecek case ETHTOOL_PHY_GTUNABLE: 29879ce48e5aSMichal Kubecek rc = get_phy_tunable(dev, useraddr); 29889ce48e5aSMichal Kubecek break; 29899ce48e5aSMichal Kubecek case ETHTOOL_PHY_STUNABLE: 29909ce48e5aSMichal Kubecek rc = set_phy_tunable(dev, useraddr); 29919ce48e5aSMichal Kubecek break; 29929ce48e5aSMichal Kubecek case ETHTOOL_GFECPARAM: 29939ce48e5aSMichal Kubecek rc = ethtool_get_fecparam(dev, useraddr); 29949ce48e5aSMichal Kubecek break; 29959ce48e5aSMichal Kubecek case ETHTOOL_SFECPARAM: 29969ce48e5aSMichal Kubecek rc = ethtool_set_fecparam(dev, useraddr); 29979ce48e5aSMichal Kubecek break; 29989ce48e5aSMichal Kubecek default: 29999ce48e5aSMichal Kubecek rc = -EOPNOTSUPP; 30009ce48e5aSMichal Kubecek } 30019ce48e5aSMichal Kubecek 30029ce48e5aSMichal Kubecek if (dev->ethtool_ops->complete) 30039ce48e5aSMichal Kubecek dev->ethtool_ops->complete(dev); 30049ce48e5aSMichal Kubecek 30059ce48e5aSMichal Kubecek if (old_features != dev->features) 30069ce48e5aSMichal Kubecek netdev_features_change(dev); 3007f32a2137SHeiner Kallweit out: 3008f32a2137SHeiner Kallweit if (dev->dev.parent) 3009f32a2137SHeiner Kallweit pm_runtime_put(dev->dev.parent); 30109ce48e5aSMichal Kubecek 30119ce48e5aSMichal Kubecek return rc; 30129ce48e5aSMichal Kubecek } 30139ce48e5aSMichal Kubecek 3014f49deaa6SJakub Kicinski int dev_ethtool(struct net *net, struct ifreq *ifr, void __user *useraddr) 3015f49deaa6SJakub Kicinski { 3016095cfcfeSJakub Kicinski struct ethtool_devlink_compat *state; 3017095cfcfeSJakub Kicinski u32 ethcmd; 3018f49deaa6SJakub Kicinski int rc; 3019f49deaa6SJakub Kicinski 3020095cfcfeSJakub Kicinski if (copy_from_user(ðcmd, useraddr, sizeof(ethcmd))) 3021095cfcfeSJakub Kicinski return -EFAULT; 3022f49deaa6SJakub Kicinski 3023095cfcfeSJakub Kicinski state = kzalloc(sizeof(*state), GFP_KERNEL); 3024095cfcfeSJakub Kicinski if (!state) 3025095cfcfeSJakub Kicinski return -ENOMEM; 3026095cfcfeSJakub Kicinski 3027095cfcfeSJakub Kicinski switch (ethcmd) { 3028095cfcfeSJakub Kicinski case ETHTOOL_FLASHDEV: 3029095cfcfeSJakub Kicinski if (copy_from_user(&state->efl, useraddr, sizeof(state->efl))) { 3030095cfcfeSJakub Kicinski rc = -EFAULT; 3031095cfcfeSJakub Kicinski goto exit_free; 3032095cfcfeSJakub Kicinski } 3033095cfcfeSJakub Kicinski state->efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0; 3034095cfcfeSJakub Kicinski break; 3035095cfcfeSJakub Kicinski } 3036095cfcfeSJakub Kicinski 3037095cfcfeSJakub Kicinski rtnl_lock(); 3038095cfcfeSJakub Kicinski rc = __dev_ethtool(net, ifr, useraddr, ethcmd, state); 3039095cfcfeSJakub Kicinski rtnl_unlock(); 3040095cfcfeSJakub Kicinski if (rc) 3041095cfcfeSJakub Kicinski goto exit_free; 3042095cfcfeSJakub Kicinski 3043095cfcfeSJakub Kicinski switch (ethcmd) { 30441af0a094SJakub Kicinski case ETHTOOL_FLASHDEV: 30451af0a094SJakub Kicinski if (state->devlink) 30461af0a094SJakub Kicinski rc = devlink_compat_flash_update(state->devlink, 30471af0a094SJakub Kicinski state->efl.data); 30481af0a094SJakub Kicinski break; 3049095cfcfeSJakub Kicinski case ETHTOOL_GDRVINFO: 30501af0a094SJakub Kicinski if (state->devlink) 30511af0a094SJakub Kicinski devlink_compat_running_version(state->devlink, 30521af0a094SJakub Kicinski state->info.fw_version, 30531af0a094SJakub Kicinski sizeof(state->info.fw_version)); 3054095cfcfeSJakub Kicinski if (copy_to_user(useraddr, &state->info, sizeof(state->info))) { 3055095cfcfeSJakub Kicinski rc = -EFAULT; 3056095cfcfeSJakub Kicinski goto exit_free; 3057095cfcfeSJakub Kicinski } 3058095cfcfeSJakub Kicinski break; 3059095cfcfeSJakub Kicinski } 3060095cfcfeSJakub Kicinski 3061095cfcfeSJakub Kicinski exit_free: 30621af0a094SJakub Kicinski if (state->devlink) 30631af0a094SJakub Kicinski devlink_put(state->devlink); 3064095cfcfeSJakub Kicinski kfree(state); 3065f49deaa6SJakub Kicinski return rc; 3066f49deaa6SJakub Kicinski } 3067f49deaa6SJakub Kicinski 30689ce48e5aSMichal Kubecek struct ethtool_rx_flow_key { 30699ce48e5aSMichal Kubecek struct flow_dissector_key_basic basic; 30709ce48e5aSMichal Kubecek union { 30719ce48e5aSMichal Kubecek struct flow_dissector_key_ipv4_addrs ipv4; 30729ce48e5aSMichal Kubecek struct flow_dissector_key_ipv6_addrs ipv6; 30739ce48e5aSMichal Kubecek }; 30749ce48e5aSMichal Kubecek struct flow_dissector_key_ports tp; 30759ce48e5aSMichal Kubecek struct flow_dissector_key_ip ip; 30769ce48e5aSMichal Kubecek struct flow_dissector_key_vlan vlan; 30779ce48e5aSMichal Kubecek struct flow_dissector_key_eth_addrs eth_addrs; 30789ce48e5aSMichal Kubecek } __aligned(BITS_PER_LONG / 8); /* Ensure that we can do comparisons as longs. */ 30799ce48e5aSMichal Kubecek 30809ce48e5aSMichal Kubecek struct ethtool_rx_flow_match { 30819ce48e5aSMichal Kubecek struct flow_dissector dissector; 30829ce48e5aSMichal Kubecek struct ethtool_rx_flow_key key; 30839ce48e5aSMichal Kubecek struct ethtool_rx_flow_key mask; 30849ce48e5aSMichal Kubecek }; 30859ce48e5aSMichal Kubecek 30869ce48e5aSMichal Kubecek struct ethtool_rx_flow_rule * 30879ce48e5aSMichal Kubecek ethtool_rx_flow_rule_create(const struct ethtool_rx_flow_spec_input *input) 30889ce48e5aSMichal Kubecek { 30899ce48e5aSMichal Kubecek const struct ethtool_rx_flow_spec *fs = input->fs; 30909ce48e5aSMichal Kubecek static struct in6_addr zero_addr = {}; 30919ce48e5aSMichal Kubecek struct ethtool_rx_flow_match *match; 30929ce48e5aSMichal Kubecek struct ethtool_rx_flow_rule *flow; 30939ce48e5aSMichal Kubecek struct flow_action_entry *act; 30949ce48e5aSMichal Kubecek 30959ce48e5aSMichal Kubecek flow = kzalloc(sizeof(struct ethtool_rx_flow_rule) + 30969ce48e5aSMichal Kubecek sizeof(struct ethtool_rx_flow_match), GFP_KERNEL); 30979ce48e5aSMichal Kubecek if (!flow) 30989ce48e5aSMichal Kubecek return ERR_PTR(-ENOMEM); 30999ce48e5aSMichal Kubecek 31009ce48e5aSMichal Kubecek /* ethtool_rx supports only one single action per rule. */ 31019ce48e5aSMichal Kubecek flow->rule = flow_rule_alloc(1); 31029ce48e5aSMichal Kubecek if (!flow->rule) { 31039ce48e5aSMichal Kubecek kfree(flow); 31049ce48e5aSMichal Kubecek return ERR_PTR(-ENOMEM); 31059ce48e5aSMichal Kubecek } 31069ce48e5aSMichal Kubecek 31079ce48e5aSMichal Kubecek match = (struct ethtool_rx_flow_match *)flow->priv; 31089ce48e5aSMichal Kubecek flow->rule->match.dissector = &match->dissector; 31099ce48e5aSMichal Kubecek flow->rule->match.mask = &match->mask; 31109ce48e5aSMichal Kubecek flow->rule->match.key = &match->key; 31119ce48e5aSMichal Kubecek 31129ce48e5aSMichal Kubecek match->mask.basic.n_proto = htons(0xffff); 31139ce48e5aSMichal Kubecek 31149ce48e5aSMichal Kubecek switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) { 31159ce48e5aSMichal Kubecek case ETHER_FLOW: { 31169ce48e5aSMichal Kubecek const struct ethhdr *ether_spec, *ether_m_spec; 31179ce48e5aSMichal Kubecek 31189ce48e5aSMichal Kubecek ether_spec = &fs->h_u.ether_spec; 31199ce48e5aSMichal Kubecek ether_m_spec = &fs->m_u.ether_spec; 31209ce48e5aSMichal Kubecek 31219ce48e5aSMichal Kubecek if (!is_zero_ether_addr(ether_m_spec->h_source)) { 31229ce48e5aSMichal Kubecek ether_addr_copy(match->key.eth_addrs.src, 31239ce48e5aSMichal Kubecek ether_spec->h_source); 31249ce48e5aSMichal Kubecek ether_addr_copy(match->mask.eth_addrs.src, 31259ce48e5aSMichal Kubecek ether_m_spec->h_source); 31269ce48e5aSMichal Kubecek } 31279ce48e5aSMichal Kubecek if (!is_zero_ether_addr(ether_m_spec->h_dest)) { 31289ce48e5aSMichal Kubecek ether_addr_copy(match->key.eth_addrs.dst, 31299ce48e5aSMichal Kubecek ether_spec->h_dest); 31309ce48e5aSMichal Kubecek ether_addr_copy(match->mask.eth_addrs.dst, 31319ce48e5aSMichal Kubecek ether_m_spec->h_dest); 31329ce48e5aSMichal Kubecek } 31339ce48e5aSMichal Kubecek if (ether_m_spec->h_proto) { 31349ce48e5aSMichal Kubecek match->key.basic.n_proto = ether_spec->h_proto; 31359ce48e5aSMichal Kubecek match->mask.basic.n_proto = ether_m_spec->h_proto; 31369ce48e5aSMichal Kubecek } 31379ce48e5aSMichal Kubecek } 31389ce48e5aSMichal Kubecek break; 31399ce48e5aSMichal Kubecek case TCP_V4_FLOW: 31409ce48e5aSMichal Kubecek case UDP_V4_FLOW: { 31419ce48e5aSMichal Kubecek const struct ethtool_tcpip4_spec *v4_spec, *v4_m_spec; 31429ce48e5aSMichal Kubecek 31439ce48e5aSMichal Kubecek match->key.basic.n_proto = htons(ETH_P_IP); 31449ce48e5aSMichal Kubecek 31459ce48e5aSMichal Kubecek v4_spec = &fs->h_u.tcp_ip4_spec; 31469ce48e5aSMichal Kubecek v4_m_spec = &fs->m_u.tcp_ip4_spec; 31479ce48e5aSMichal Kubecek 31489ce48e5aSMichal Kubecek if (v4_m_spec->ip4src) { 31499ce48e5aSMichal Kubecek match->key.ipv4.src = v4_spec->ip4src; 31509ce48e5aSMichal Kubecek match->mask.ipv4.src = v4_m_spec->ip4src; 31519ce48e5aSMichal Kubecek } 31529ce48e5aSMichal Kubecek if (v4_m_spec->ip4dst) { 31539ce48e5aSMichal Kubecek match->key.ipv4.dst = v4_spec->ip4dst; 31549ce48e5aSMichal Kubecek match->mask.ipv4.dst = v4_m_spec->ip4dst; 31559ce48e5aSMichal Kubecek } 31569ce48e5aSMichal Kubecek if (v4_m_spec->ip4src || 31579ce48e5aSMichal Kubecek v4_m_spec->ip4dst) { 31589ce48e5aSMichal Kubecek match->dissector.used_keys |= 31599ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_IPV4_ADDRS); 31609ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_IPV4_ADDRS] = 31619ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, ipv4); 31629ce48e5aSMichal Kubecek } 31639ce48e5aSMichal Kubecek if (v4_m_spec->psrc) { 31649ce48e5aSMichal Kubecek match->key.tp.src = v4_spec->psrc; 31659ce48e5aSMichal Kubecek match->mask.tp.src = v4_m_spec->psrc; 31669ce48e5aSMichal Kubecek } 31679ce48e5aSMichal Kubecek if (v4_m_spec->pdst) { 31689ce48e5aSMichal Kubecek match->key.tp.dst = v4_spec->pdst; 31699ce48e5aSMichal Kubecek match->mask.tp.dst = v4_m_spec->pdst; 31709ce48e5aSMichal Kubecek } 31719ce48e5aSMichal Kubecek if (v4_m_spec->psrc || 31729ce48e5aSMichal Kubecek v4_m_spec->pdst) { 31739ce48e5aSMichal Kubecek match->dissector.used_keys |= 31749ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_PORTS); 31759ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] = 31769ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, tp); 31779ce48e5aSMichal Kubecek } 31789ce48e5aSMichal Kubecek if (v4_m_spec->tos) { 31799ce48e5aSMichal Kubecek match->key.ip.tos = v4_spec->tos; 31809ce48e5aSMichal Kubecek match->mask.ip.tos = v4_m_spec->tos; 31819ce48e5aSMichal Kubecek match->dissector.used_keys |= 31829ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_IP); 31839ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_IP] = 31849ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, ip); 31859ce48e5aSMichal Kubecek } 31869ce48e5aSMichal Kubecek } 31879ce48e5aSMichal Kubecek break; 31889ce48e5aSMichal Kubecek case TCP_V6_FLOW: 31899ce48e5aSMichal Kubecek case UDP_V6_FLOW: { 31909ce48e5aSMichal Kubecek const struct ethtool_tcpip6_spec *v6_spec, *v6_m_spec; 31919ce48e5aSMichal Kubecek 31929ce48e5aSMichal Kubecek match->key.basic.n_proto = htons(ETH_P_IPV6); 31939ce48e5aSMichal Kubecek 31949ce48e5aSMichal Kubecek v6_spec = &fs->h_u.tcp_ip6_spec; 31959ce48e5aSMichal Kubecek v6_m_spec = &fs->m_u.tcp_ip6_spec; 31969ce48e5aSMichal Kubecek if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr))) { 31979ce48e5aSMichal Kubecek memcpy(&match->key.ipv6.src, v6_spec->ip6src, 31989ce48e5aSMichal Kubecek sizeof(match->key.ipv6.src)); 31999ce48e5aSMichal Kubecek memcpy(&match->mask.ipv6.src, v6_m_spec->ip6src, 32009ce48e5aSMichal Kubecek sizeof(match->mask.ipv6.src)); 32019ce48e5aSMichal Kubecek } 32029ce48e5aSMichal Kubecek if (memcmp(v6_m_spec->ip6dst, &zero_addr, sizeof(zero_addr))) { 32039ce48e5aSMichal Kubecek memcpy(&match->key.ipv6.dst, v6_spec->ip6dst, 32049ce48e5aSMichal Kubecek sizeof(match->key.ipv6.dst)); 32059ce48e5aSMichal Kubecek memcpy(&match->mask.ipv6.dst, v6_m_spec->ip6dst, 32069ce48e5aSMichal Kubecek sizeof(match->mask.ipv6.dst)); 32079ce48e5aSMichal Kubecek } 32089ce48e5aSMichal Kubecek if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr)) || 320921a739c6SGaurav Singh memcmp(v6_m_spec->ip6dst, &zero_addr, sizeof(zero_addr))) { 32109ce48e5aSMichal Kubecek match->dissector.used_keys |= 32119ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_IPV6_ADDRS); 32129ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_IPV6_ADDRS] = 32139ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, ipv6); 32149ce48e5aSMichal Kubecek } 32159ce48e5aSMichal Kubecek if (v6_m_spec->psrc) { 32169ce48e5aSMichal Kubecek match->key.tp.src = v6_spec->psrc; 32179ce48e5aSMichal Kubecek match->mask.tp.src = v6_m_spec->psrc; 32189ce48e5aSMichal Kubecek } 32199ce48e5aSMichal Kubecek if (v6_m_spec->pdst) { 32209ce48e5aSMichal Kubecek match->key.tp.dst = v6_spec->pdst; 32219ce48e5aSMichal Kubecek match->mask.tp.dst = v6_m_spec->pdst; 32229ce48e5aSMichal Kubecek } 32239ce48e5aSMichal Kubecek if (v6_m_spec->psrc || 32249ce48e5aSMichal Kubecek v6_m_spec->pdst) { 32259ce48e5aSMichal Kubecek match->dissector.used_keys |= 32269ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_PORTS); 32279ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] = 32289ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, tp); 32299ce48e5aSMichal Kubecek } 32309ce48e5aSMichal Kubecek if (v6_m_spec->tclass) { 32319ce48e5aSMichal Kubecek match->key.ip.tos = v6_spec->tclass; 32329ce48e5aSMichal Kubecek match->mask.ip.tos = v6_m_spec->tclass; 32339ce48e5aSMichal Kubecek match->dissector.used_keys |= 32349ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_IP); 32359ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_IP] = 32369ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, ip); 32379ce48e5aSMichal Kubecek } 32389ce48e5aSMichal Kubecek } 32399ce48e5aSMichal Kubecek break; 32409ce48e5aSMichal Kubecek default: 32419ce48e5aSMichal Kubecek ethtool_rx_flow_rule_destroy(flow); 32429ce48e5aSMichal Kubecek return ERR_PTR(-EINVAL); 32439ce48e5aSMichal Kubecek } 32449ce48e5aSMichal Kubecek 32459ce48e5aSMichal Kubecek switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) { 32469ce48e5aSMichal Kubecek case TCP_V4_FLOW: 32479ce48e5aSMichal Kubecek case TCP_V6_FLOW: 32489ce48e5aSMichal Kubecek match->key.basic.ip_proto = IPPROTO_TCP; 3249d0a84e1fSVishal Kulkarni match->mask.basic.ip_proto = 0xff; 32509ce48e5aSMichal Kubecek break; 32519ce48e5aSMichal Kubecek case UDP_V4_FLOW: 32529ce48e5aSMichal Kubecek case UDP_V6_FLOW: 32539ce48e5aSMichal Kubecek match->key.basic.ip_proto = IPPROTO_UDP; 3254d0a84e1fSVishal Kulkarni match->mask.basic.ip_proto = 0xff; 32559ce48e5aSMichal Kubecek break; 32569ce48e5aSMichal Kubecek } 32579ce48e5aSMichal Kubecek 32589ce48e5aSMichal Kubecek match->dissector.used_keys |= BIT(FLOW_DISSECTOR_KEY_BASIC); 32599ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_BASIC] = 32609ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, basic); 32619ce48e5aSMichal Kubecek 32629ce48e5aSMichal Kubecek if (fs->flow_type & FLOW_EXT) { 32639ce48e5aSMichal Kubecek const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext; 32649ce48e5aSMichal Kubecek const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext; 32659ce48e5aSMichal Kubecek 32669ce48e5aSMichal Kubecek if (ext_m_spec->vlan_etype) { 32679ce48e5aSMichal Kubecek match->key.vlan.vlan_tpid = ext_h_spec->vlan_etype; 32689ce48e5aSMichal Kubecek match->mask.vlan.vlan_tpid = ext_m_spec->vlan_etype; 32699ce48e5aSMichal Kubecek } 32709ce48e5aSMichal Kubecek 32719ce48e5aSMichal Kubecek if (ext_m_spec->vlan_tci) { 32729ce48e5aSMichal Kubecek match->key.vlan.vlan_id = 32739ce48e5aSMichal Kubecek ntohs(ext_h_spec->vlan_tci) & 0x0fff; 32749ce48e5aSMichal Kubecek match->mask.vlan.vlan_id = 32759ce48e5aSMichal Kubecek ntohs(ext_m_spec->vlan_tci) & 0x0fff; 32769ce48e5aSMichal Kubecek 32779ce48e5aSMichal Kubecek match->key.vlan.vlan_dei = 32789ce48e5aSMichal Kubecek !!(ext_h_spec->vlan_tci & htons(0x1000)); 32799ce48e5aSMichal Kubecek match->mask.vlan.vlan_dei = 32809ce48e5aSMichal Kubecek !!(ext_m_spec->vlan_tci & htons(0x1000)); 32819ce48e5aSMichal Kubecek 32829ce48e5aSMichal Kubecek match->key.vlan.vlan_priority = 32839ce48e5aSMichal Kubecek (ntohs(ext_h_spec->vlan_tci) & 0xe000) >> 13; 32849ce48e5aSMichal Kubecek match->mask.vlan.vlan_priority = 32859ce48e5aSMichal Kubecek (ntohs(ext_m_spec->vlan_tci) & 0xe000) >> 13; 32869ce48e5aSMichal Kubecek } 32879ce48e5aSMichal Kubecek 32889ce48e5aSMichal Kubecek if (ext_m_spec->vlan_etype || 32899ce48e5aSMichal Kubecek ext_m_spec->vlan_tci) { 32909ce48e5aSMichal Kubecek match->dissector.used_keys |= 32919ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_VLAN); 32929ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_VLAN] = 32939ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, vlan); 32949ce48e5aSMichal Kubecek } 32959ce48e5aSMichal Kubecek } 32969ce48e5aSMichal Kubecek if (fs->flow_type & FLOW_MAC_EXT) { 32979ce48e5aSMichal Kubecek const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext; 32989ce48e5aSMichal Kubecek const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext; 32999ce48e5aSMichal Kubecek 33009ce48e5aSMichal Kubecek memcpy(match->key.eth_addrs.dst, ext_h_spec->h_dest, 33019ce48e5aSMichal Kubecek ETH_ALEN); 33029ce48e5aSMichal Kubecek memcpy(match->mask.eth_addrs.dst, ext_m_spec->h_dest, 33039ce48e5aSMichal Kubecek ETH_ALEN); 33049ce48e5aSMichal Kubecek 33059ce48e5aSMichal Kubecek match->dissector.used_keys |= 33069ce48e5aSMichal Kubecek BIT(FLOW_DISSECTOR_KEY_ETH_ADDRS); 33079ce48e5aSMichal Kubecek match->dissector.offset[FLOW_DISSECTOR_KEY_ETH_ADDRS] = 33089ce48e5aSMichal Kubecek offsetof(struct ethtool_rx_flow_key, eth_addrs); 33099ce48e5aSMichal Kubecek } 33109ce48e5aSMichal Kubecek 33119ce48e5aSMichal Kubecek act = &flow->rule->action.entries[0]; 33129ce48e5aSMichal Kubecek switch (fs->ring_cookie) { 33139ce48e5aSMichal Kubecek case RX_CLS_FLOW_DISC: 33149ce48e5aSMichal Kubecek act->id = FLOW_ACTION_DROP; 33159ce48e5aSMichal Kubecek break; 33169ce48e5aSMichal Kubecek case RX_CLS_FLOW_WAKE: 33179ce48e5aSMichal Kubecek act->id = FLOW_ACTION_WAKE; 33189ce48e5aSMichal Kubecek break; 33199ce48e5aSMichal Kubecek default: 33209ce48e5aSMichal Kubecek act->id = FLOW_ACTION_QUEUE; 33219ce48e5aSMichal Kubecek if (fs->flow_type & FLOW_RSS) 33229ce48e5aSMichal Kubecek act->queue.ctx = input->rss_ctx; 33239ce48e5aSMichal Kubecek 33249ce48e5aSMichal Kubecek act->queue.vf = ethtool_get_flow_spec_ring_vf(fs->ring_cookie); 33259ce48e5aSMichal Kubecek act->queue.index = ethtool_get_flow_spec_ring(fs->ring_cookie); 33269ce48e5aSMichal Kubecek break; 33279ce48e5aSMichal Kubecek } 33289ce48e5aSMichal Kubecek 33299ce48e5aSMichal Kubecek return flow; 33309ce48e5aSMichal Kubecek } 33319ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_rx_flow_rule_create); 33329ce48e5aSMichal Kubecek 33339ce48e5aSMichal Kubecek void ethtool_rx_flow_rule_destroy(struct ethtool_rx_flow_rule *flow) 33349ce48e5aSMichal Kubecek { 33359ce48e5aSMichal Kubecek kfree(flow->rule); 33369ce48e5aSMichal Kubecek kfree(flow); 33379ce48e5aSMichal Kubecek } 33389ce48e5aSMichal Kubecek EXPORT_SYMBOL(ethtool_rx_flow_rule_destroy); 3339