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