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