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 && rxfh.input_xfrm != RXH_XFRM_SYM_XOR && 1306 rxfh.input_xfrm != RXH_XFRM_NO_CHANGE) 1307 return -EINVAL; 1308 if ((rxfh.input_xfrm & RXH_XFRM_SYM_XOR) && 1309 !ops->cap_rss_sym_xor_supported) 1310 return -EOPNOTSUPP; 1311 1312 /* If either indir, hash key or function is valid, proceed further. 1313 * Must request at least one change: indir size, hash key, function 1314 * or input transformation. 1315 */ 1316 if ((rxfh.indir_size && 1317 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE && 1318 rxfh.indir_size != dev_indir_size) || 1319 (rxfh.key_size && (rxfh.key_size != dev_key_size)) || 1320 (rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE && 1321 rxfh.key_size == 0 && rxfh.hfunc == ETH_RSS_HASH_NO_CHANGE && 1322 rxfh.input_xfrm == RXH_XFRM_NO_CHANGE)) 1323 return -EINVAL; 1324 1325 if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) 1326 indir_bytes = dev_indir_size * sizeof(rxfh_dev.indir[0]); 1327 1328 rss_config = kzalloc(indir_bytes + rxfh.key_size, GFP_USER); 1329 if (!rss_config) 1330 return -ENOMEM; 1331 1332 rx_rings.cmd = ETHTOOL_GRXRINGS; 1333 ret = ops->get_rxnfc(dev, &rx_rings, NULL); 1334 if (ret) 1335 goto out; 1336 1337 /* rxfh.indir_size == 0 means reset the indir table to default (master 1338 * context) or delete the context (other RSS contexts). 1339 * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged. 1340 */ 1341 if (rxfh.indir_size && 1342 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) { 1343 rxfh_dev.indir = (u32 *)rss_config; 1344 rxfh_dev.indir_size = dev_indir_size; 1345 ret = ethtool_copy_validate_indir(rxfh_dev.indir, 1346 useraddr + rss_cfg_offset, 1347 &rx_rings, 1348 rxfh.indir_size); 1349 if (ret) 1350 goto out; 1351 } else if (rxfh.indir_size == 0) { 1352 if (rxfh.rss_context == 0) { 1353 u32 *indir; 1354 1355 rxfh_dev.indir = (u32 *)rss_config; 1356 rxfh_dev.indir_size = dev_indir_size; 1357 indir = rxfh_dev.indir; 1358 for (i = 0; i < dev_indir_size; i++) 1359 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data); 1360 } else { 1361 rxfh_dev.rss_delete = true; 1362 } 1363 } 1364 1365 if (rxfh.key_size) { 1366 rxfh_dev.key_size = dev_key_size; 1367 rxfh_dev.key = rss_config + indir_bytes; 1368 if (copy_from_user(rxfh_dev.key, 1369 useraddr + rss_cfg_offset + indir_bytes, 1370 rxfh.key_size)) { 1371 ret = -EFAULT; 1372 goto out; 1373 } 1374 } 1375 1376 rxfh_dev.hfunc = rxfh.hfunc; 1377 rxfh_dev.rss_context = rxfh.rss_context; 1378 rxfh_dev.input_xfrm = rxfh.input_xfrm; 1379 1380 ret = ops->set_rxfh(dev, &rxfh_dev, extack); 1381 if (ret) 1382 goto out; 1383 1384 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, rss_context), 1385 &rxfh_dev.rss_context, sizeof(rxfh_dev.rss_context))) 1386 ret = -EFAULT; 1387 1388 if (!rxfh_dev.rss_context) { 1389 /* indicate whether rxfh was set to default */ 1390 if (rxfh.indir_size == 0) 1391 dev->priv_flags &= ~IFF_RXFH_CONFIGURED; 1392 else if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) 1393 dev->priv_flags |= IFF_RXFH_CONFIGURED; 1394 } 1395 1396 out: 1397 kfree(rss_config); 1398 return ret; 1399 } 1400 1401 static int ethtool_get_regs(struct net_device *dev, char __user *useraddr) 1402 { 1403 struct ethtool_regs regs; 1404 const struct ethtool_ops *ops = dev->ethtool_ops; 1405 void *regbuf; 1406 int reglen, ret; 1407 1408 if (!ops->get_regs || !ops->get_regs_len) 1409 return -EOPNOTSUPP; 1410 1411 if (copy_from_user(®s, useraddr, sizeof(regs))) 1412 return -EFAULT; 1413 1414 reglen = ops->get_regs_len(dev); 1415 if (reglen <= 0) 1416 return reglen; 1417 1418 if (regs.len > reglen) 1419 regs.len = reglen; 1420 1421 regbuf = vzalloc(reglen); 1422 if (!regbuf) 1423 return -ENOMEM; 1424 1425 if (regs.len < reglen) 1426 reglen = regs.len; 1427 1428 ops->get_regs(dev, ®s, regbuf); 1429 1430 ret = -EFAULT; 1431 if (copy_to_user(useraddr, ®s, sizeof(regs))) 1432 goto out; 1433 useraddr += offsetof(struct ethtool_regs, data); 1434 if (copy_to_user(useraddr, regbuf, reglen)) 1435 goto out; 1436 ret = 0; 1437 1438 out: 1439 vfree(regbuf); 1440 return ret; 1441 } 1442 1443 static int ethtool_reset(struct net_device *dev, char __user *useraddr) 1444 { 1445 struct ethtool_value reset; 1446 int ret; 1447 1448 if (!dev->ethtool_ops->reset) 1449 return -EOPNOTSUPP; 1450 1451 if (copy_from_user(&reset, useraddr, sizeof(reset))) 1452 return -EFAULT; 1453 1454 ret = dev->ethtool_ops->reset(dev, &reset.data); 1455 if (ret) 1456 return ret; 1457 1458 if (copy_to_user(useraddr, &reset, sizeof(reset))) 1459 return -EFAULT; 1460 return 0; 1461 } 1462 1463 static int ethtool_get_wol(struct net_device *dev, char __user *useraddr) 1464 { 1465 struct ethtool_wolinfo wol; 1466 1467 if (!dev->ethtool_ops->get_wol) 1468 return -EOPNOTSUPP; 1469 1470 memset(&wol, 0, sizeof(struct ethtool_wolinfo)); 1471 wol.cmd = ETHTOOL_GWOL; 1472 dev->ethtool_ops->get_wol(dev, &wol); 1473 1474 if (copy_to_user(useraddr, &wol, sizeof(wol))) 1475 return -EFAULT; 1476 return 0; 1477 } 1478 1479 static int ethtool_set_wol(struct net_device *dev, char __user *useraddr) 1480 { 1481 struct ethtool_wolinfo wol, cur_wol; 1482 int ret; 1483 1484 if (!dev->ethtool_ops->get_wol || !dev->ethtool_ops->set_wol) 1485 return -EOPNOTSUPP; 1486 1487 memset(&cur_wol, 0, sizeof(struct ethtool_wolinfo)); 1488 cur_wol.cmd = ETHTOOL_GWOL; 1489 dev->ethtool_ops->get_wol(dev, &cur_wol); 1490 1491 if (copy_from_user(&wol, useraddr, sizeof(wol))) 1492 return -EFAULT; 1493 1494 if (wol.wolopts & ~cur_wol.supported) 1495 return -EINVAL; 1496 1497 if (wol.wolopts == cur_wol.wolopts && 1498 !memcmp(wol.sopass, cur_wol.sopass, sizeof(wol.sopass))) 1499 return 0; 1500 1501 ret = dev->ethtool_ops->set_wol(dev, &wol); 1502 if (ret) 1503 return ret; 1504 1505 dev->wol_enabled = !!wol.wolopts; 1506 ethtool_notify(dev, ETHTOOL_MSG_WOL_NTF, NULL); 1507 1508 return 0; 1509 } 1510 1511 static void eee_to_keee(struct ethtool_keee *keee, 1512 const struct ethtool_eee *eee) 1513 { 1514 memset(keee, 0, sizeof(*keee)); 1515 1516 keee->supported_u32 = eee->supported; 1517 keee->advertised_u32 = eee->advertised; 1518 keee->lp_advertised_u32 = eee->lp_advertised; 1519 keee->eee_active = eee->eee_active; 1520 keee->eee_enabled = eee->eee_enabled; 1521 keee->tx_lpi_enabled = eee->tx_lpi_enabled; 1522 keee->tx_lpi_timer = eee->tx_lpi_timer; 1523 1524 ethtool_convert_legacy_u32_to_link_mode(keee->supported, 1525 eee->supported); 1526 ethtool_convert_legacy_u32_to_link_mode(keee->advertised, 1527 eee->advertised); 1528 ethtool_convert_legacy_u32_to_link_mode(keee->lp_advertised, 1529 eee->lp_advertised); 1530 } 1531 1532 static void keee_to_eee(struct ethtool_eee *eee, 1533 const struct ethtool_keee *keee) 1534 { 1535 memset(eee, 0, sizeof(*eee)); 1536 1537 eee->eee_active = keee->eee_active; 1538 eee->eee_enabled = keee->eee_enabled; 1539 eee->tx_lpi_enabled = keee->tx_lpi_enabled; 1540 eee->tx_lpi_timer = keee->tx_lpi_timer; 1541 1542 if (ethtool_eee_use_linkmodes(keee)) { 1543 bool overflow; 1544 1545 overflow = !ethtool_convert_link_mode_to_legacy_u32(&eee->supported, 1546 keee->supported); 1547 ethtool_convert_link_mode_to_legacy_u32(&eee->advertised, 1548 keee->advertised); 1549 ethtool_convert_link_mode_to_legacy_u32(&eee->lp_advertised, 1550 keee->lp_advertised); 1551 if (overflow) 1552 pr_warn("Ethtool ioctl interface doesn't support passing EEE linkmodes beyond bit 32\n"); 1553 } else { 1554 eee->supported = keee->supported_u32; 1555 eee->advertised = keee->advertised_u32; 1556 eee->lp_advertised = keee->lp_advertised_u32; 1557 } 1558 } 1559 1560 static int ethtool_get_eee(struct net_device *dev, char __user *useraddr) 1561 { 1562 struct ethtool_keee keee; 1563 struct ethtool_eee eee; 1564 int rc; 1565 1566 if (!dev->ethtool_ops->get_eee) 1567 return -EOPNOTSUPP; 1568 1569 memset(&keee, 0, sizeof(keee)); 1570 rc = dev->ethtool_ops->get_eee(dev, &keee); 1571 if (rc) 1572 return rc; 1573 1574 keee_to_eee(&eee, &keee); 1575 if (copy_to_user(useraddr, &eee, sizeof(eee))) 1576 return -EFAULT; 1577 1578 return 0; 1579 } 1580 1581 static int ethtool_set_eee(struct net_device *dev, char __user *useraddr) 1582 { 1583 struct ethtool_keee keee; 1584 struct ethtool_eee eee; 1585 int ret; 1586 1587 if (!dev->ethtool_ops->set_eee) 1588 return -EOPNOTSUPP; 1589 1590 if (copy_from_user(&eee, useraddr, sizeof(eee))) 1591 return -EFAULT; 1592 1593 eee_to_keee(&keee, &eee); 1594 ret = dev->ethtool_ops->set_eee(dev, &keee); 1595 if (!ret) 1596 ethtool_notify(dev, ETHTOOL_MSG_EEE_NTF, NULL); 1597 return ret; 1598 } 1599 1600 static int ethtool_nway_reset(struct net_device *dev) 1601 { 1602 if (!dev->ethtool_ops->nway_reset) 1603 return -EOPNOTSUPP; 1604 1605 return dev->ethtool_ops->nway_reset(dev); 1606 } 1607 1608 static int ethtool_get_link(struct net_device *dev, char __user *useraddr) 1609 { 1610 struct ethtool_value edata = { .cmd = ETHTOOL_GLINK }; 1611 int link = __ethtool_get_link(dev); 1612 1613 if (link < 0) 1614 return link; 1615 1616 edata.data = link; 1617 if (copy_to_user(useraddr, &edata, sizeof(edata))) 1618 return -EFAULT; 1619 return 0; 1620 } 1621 1622 static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr, 1623 int (*getter)(struct net_device *, 1624 struct ethtool_eeprom *, u8 *), 1625 u32 total_len) 1626 { 1627 struct ethtool_eeprom eeprom; 1628 void __user *userbuf = useraddr + sizeof(eeprom); 1629 u32 bytes_remaining; 1630 u8 *data; 1631 int ret = 0; 1632 1633 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom))) 1634 return -EFAULT; 1635 1636 /* Check for wrap and zero */ 1637 if (eeprom.offset + eeprom.len <= eeprom.offset) 1638 return -EINVAL; 1639 1640 /* Check for exceeding total eeprom len */ 1641 if (eeprom.offset + eeprom.len > total_len) 1642 return -EINVAL; 1643 1644 data = kzalloc(PAGE_SIZE, GFP_USER); 1645 if (!data) 1646 return -ENOMEM; 1647 1648 bytes_remaining = eeprom.len; 1649 while (bytes_remaining > 0) { 1650 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); 1651 1652 ret = getter(dev, &eeprom, data); 1653 if (ret) 1654 break; 1655 if (!eeprom.len) { 1656 ret = -EIO; 1657 break; 1658 } 1659 if (copy_to_user(userbuf, data, eeprom.len)) { 1660 ret = -EFAULT; 1661 break; 1662 } 1663 userbuf += eeprom.len; 1664 eeprom.offset += eeprom.len; 1665 bytes_remaining -= eeprom.len; 1666 } 1667 1668 eeprom.len = userbuf - (useraddr + sizeof(eeprom)); 1669 eeprom.offset -= eeprom.len; 1670 if (copy_to_user(useraddr, &eeprom, sizeof(eeprom))) 1671 ret = -EFAULT; 1672 1673 kfree(data); 1674 return ret; 1675 } 1676 1677 static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr) 1678 { 1679 const struct ethtool_ops *ops = dev->ethtool_ops; 1680 1681 if (!ops->get_eeprom || !ops->get_eeprom_len || 1682 !ops->get_eeprom_len(dev)) 1683 return -EOPNOTSUPP; 1684 1685 return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom, 1686 ops->get_eeprom_len(dev)); 1687 } 1688 1689 static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr) 1690 { 1691 struct ethtool_eeprom eeprom; 1692 const struct ethtool_ops *ops = dev->ethtool_ops; 1693 void __user *userbuf = useraddr + sizeof(eeprom); 1694 u32 bytes_remaining; 1695 u8 *data; 1696 int ret = 0; 1697 1698 if (!ops->set_eeprom || !ops->get_eeprom_len || 1699 !ops->get_eeprom_len(dev)) 1700 return -EOPNOTSUPP; 1701 1702 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom))) 1703 return -EFAULT; 1704 1705 /* Check for wrap and zero */ 1706 if (eeprom.offset + eeprom.len <= eeprom.offset) 1707 return -EINVAL; 1708 1709 /* Check for exceeding total eeprom len */ 1710 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev)) 1711 return -EINVAL; 1712 1713 data = kzalloc(PAGE_SIZE, GFP_USER); 1714 if (!data) 1715 return -ENOMEM; 1716 1717 bytes_remaining = eeprom.len; 1718 while (bytes_remaining > 0) { 1719 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE); 1720 1721 if (copy_from_user(data, userbuf, eeprom.len)) { 1722 ret = -EFAULT; 1723 break; 1724 } 1725 ret = ops->set_eeprom(dev, &eeprom, data); 1726 if (ret) 1727 break; 1728 userbuf += eeprom.len; 1729 eeprom.offset += eeprom.len; 1730 bytes_remaining -= eeprom.len; 1731 } 1732 1733 kfree(data); 1734 return ret; 1735 } 1736 1737 static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev, 1738 void __user *useraddr) 1739 { 1740 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE }; 1741 struct kernel_ethtool_coalesce kernel_coalesce = {}; 1742 int ret; 1743 1744 if (!dev->ethtool_ops->get_coalesce) 1745 return -EOPNOTSUPP; 1746 1747 ret = dev->ethtool_ops->get_coalesce(dev, &coalesce, &kernel_coalesce, 1748 NULL); 1749 if (ret) 1750 return ret; 1751 1752 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce))) 1753 return -EFAULT; 1754 return 0; 1755 } 1756 1757 static bool 1758 ethtool_set_coalesce_supported(struct net_device *dev, 1759 struct ethtool_coalesce *coalesce) 1760 { 1761 u32 supported_params = dev->ethtool_ops->supported_coalesce_params; 1762 u32 nonzero_params = 0; 1763 1764 if (coalesce->rx_coalesce_usecs) 1765 nonzero_params |= ETHTOOL_COALESCE_RX_USECS; 1766 if (coalesce->rx_max_coalesced_frames) 1767 nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES; 1768 if (coalesce->rx_coalesce_usecs_irq) 1769 nonzero_params |= ETHTOOL_COALESCE_RX_USECS_IRQ; 1770 if (coalesce->rx_max_coalesced_frames_irq) 1771 nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_IRQ; 1772 if (coalesce->tx_coalesce_usecs) 1773 nonzero_params |= ETHTOOL_COALESCE_TX_USECS; 1774 if (coalesce->tx_max_coalesced_frames) 1775 nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES; 1776 if (coalesce->tx_coalesce_usecs_irq) 1777 nonzero_params |= ETHTOOL_COALESCE_TX_USECS_IRQ; 1778 if (coalesce->tx_max_coalesced_frames_irq) 1779 nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_IRQ; 1780 if (coalesce->stats_block_coalesce_usecs) 1781 nonzero_params |= ETHTOOL_COALESCE_STATS_BLOCK_USECS; 1782 if (coalesce->use_adaptive_rx_coalesce) 1783 nonzero_params |= ETHTOOL_COALESCE_USE_ADAPTIVE_RX; 1784 if (coalesce->use_adaptive_tx_coalesce) 1785 nonzero_params |= ETHTOOL_COALESCE_USE_ADAPTIVE_TX; 1786 if (coalesce->pkt_rate_low) 1787 nonzero_params |= ETHTOOL_COALESCE_PKT_RATE_LOW; 1788 if (coalesce->rx_coalesce_usecs_low) 1789 nonzero_params |= ETHTOOL_COALESCE_RX_USECS_LOW; 1790 if (coalesce->rx_max_coalesced_frames_low) 1791 nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_LOW; 1792 if (coalesce->tx_coalesce_usecs_low) 1793 nonzero_params |= ETHTOOL_COALESCE_TX_USECS_LOW; 1794 if (coalesce->tx_max_coalesced_frames_low) 1795 nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_LOW; 1796 if (coalesce->pkt_rate_high) 1797 nonzero_params |= ETHTOOL_COALESCE_PKT_RATE_HIGH; 1798 if (coalesce->rx_coalesce_usecs_high) 1799 nonzero_params |= ETHTOOL_COALESCE_RX_USECS_HIGH; 1800 if (coalesce->rx_max_coalesced_frames_high) 1801 nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_HIGH; 1802 if (coalesce->tx_coalesce_usecs_high) 1803 nonzero_params |= ETHTOOL_COALESCE_TX_USECS_HIGH; 1804 if (coalesce->tx_max_coalesced_frames_high) 1805 nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_HIGH; 1806 if (coalesce->rate_sample_interval) 1807 nonzero_params |= ETHTOOL_COALESCE_RATE_SAMPLE_INTERVAL; 1808 1809 return (supported_params & nonzero_params) == nonzero_params; 1810 } 1811 1812 static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev, 1813 void __user *useraddr) 1814 { 1815 struct kernel_ethtool_coalesce kernel_coalesce = {}; 1816 struct ethtool_coalesce coalesce; 1817 int ret; 1818 1819 if (!dev->ethtool_ops->set_coalesce || !dev->ethtool_ops->get_coalesce) 1820 return -EOPNOTSUPP; 1821 1822 ret = dev->ethtool_ops->get_coalesce(dev, &coalesce, &kernel_coalesce, 1823 NULL); 1824 if (ret) 1825 return ret; 1826 1827 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) 1828 return -EFAULT; 1829 1830 if (!ethtool_set_coalesce_supported(dev, &coalesce)) 1831 return -EOPNOTSUPP; 1832 1833 ret = dev->ethtool_ops->set_coalesce(dev, &coalesce, &kernel_coalesce, 1834 NULL); 1835 if (!ret) 1836 ethtool_notify(dev, ETHTOOL_MSG_COALESCE_NTF, NULL); 1837 return ret; 1838 } 1839 1840 static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr) 1841 { 1842 struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM }; 1843 struct kernel_ethtool_ringparam kernel_ringparam = {}; 1844 1845 if (!dev->ethtool_ops->get_ringparam) 1846 return -EOPNOTSUPP; 1847 1848 dev->ethtool_ops->get_ringparam(dev, &ringparam, 1849 &kernel_ringparam, NULL); 1850 1851 if (copy_to_user(useraddr, &ringparam, sizeof(ringparam))) 1852 return -EFAULT; 1853 return 0; 1854 } 1855 1856 static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr) 1857 { 1858 struct ethtool_ringparam ringparam, max = { .cmd = ETHTOOL_GRINGPARAM }; 1859 struct kernel_ethtool_ringparam kernel_ringparam; 1860 int ret; 1861 1862 if (!dev->ethtool_ops->set_ringparam || !dev->ethtool_ops->get_ringparam) 1863 return -EOPNOTSUPP; 1864 1865 if (copy_from_user(&ringparam, useraddr, sizeof(ringparam))) 1866 return -EFAULT; 1867 1868 dev->ethtool_ops->get_ringparam(dev, &max, &kernel_ringparam, NULL); 1869 1870 /* ensure new ring parameters are within the maximums */ 1871 if (ringparam.rx_pending > max.rx_max_pending || 1872 ringparam.rx_mini_pending > max.rx_mini_max_pending || 1873 ringparam.rx_jumbo_pending > max.rx_jumbo_max_pending || 1874 ringparam.tx_pending > max.tx_max_pending) 1875 return -EINVAL; 1876 1877 ret = dev->ethtool_ops->set_ringparam(dev, &ringparam, 1878 &kernel_ringparam, NULL); 1879 if (!ret) 1880 ethtool_notify(dev, ETHTOOL_MSG_RINGS_NTF, NULL); 1881 return ret; 1882 } 1883 1884 static noinline_for_stack int ethtool_get_channels(struct net_device *dev, 1885 void __user *useraddr) 1886 { 1887 struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS }; 1888 1889 if (!dev->ethtool_ops->get_channels) 1890 return -EOPNOTSUPP; 1891 1892 dev->ethtool_ops->get_channels(dev, &channels); 1893 1894 if (copy_to_user(useraddr, &channels, sizeof(channels))) 1895 return -EFAULT; 1896 return 0; 1897 } 1898 1899 static noinline_for_stack int ethtool_set_channels(struct net_device *dev, 1900 void __user *useraddr) 1901 { 1902 struct ethtool_channels channels, curr = { .cmd = ETHTOOL_GCHANNELS }; 1903 u16 from_channel, to_channel; 1904 u64 max_rxnfc_in_use; 1905 u32 max_rxfh_in_use; 1906 unsigned int i; 1907 int ret; 1908 1909 if (!dev->ethtool_ops->set_channels || !dev->ethtool_ops->get_channels) 1910 return -EOPNOTSUPP; 1911 1912 if (copy_from_user(&channels, useraddr, sizeof(channels))) 1913 return -EFAULT; 1914 1915 dev->ethtool_ops->get_channels(dev, &curr); 1916 1917 if (channels.rx_count == curr.rx_count && 1918 channels.tx_count == curr.tx_count && 1919 channels.combined_count == curr.combined_count && 1920 channels.other_count == curr.other_count) 1921 return 0; 1922 1923 /* ensure new counts are within the maximums */ 1924 if (channels.rx_count > curr.max_rx || 1925 channels.tx_count > curr.max_tx || 1926 channels.combined_count > curr.max_combined || 1927 channels.other_count > curr.max_other) 1928 return -EINVAL; 1929 1930 /* ensure there is at least one RX and one TX channel */ 1931 if (!channels.combined_count && 1932 (!channels.rx_count || !channels.tx_count)) 1933 return -EINVAL; 1934 1935 /* ensure the new Rx count fits within the configured Rx flow 1936 * indirection table/rxnfc settings */ 1937 if (ethtool_get_max_rxnfc_channel(dev, &max_rxnfc_in_use)) 1938 max_rxnfc_in_use = 0; 1939 if (!netif_is_rxfh_configured(dev) || 1940 ethtool_get_max_rxfh_channel(dev, &max_rxfh_in_use)) 1941 max_rxfh_in_use = 0; 1942 if (channels.combined_count + channels.rx_count <= 1943 max_t(u64, max_rxnfc_in_use, max_rxfh_in_use)) 1944 return -EINVAL; 1945 1946 /* Disabling channels, query zero-copy AF_XDP sockets */ 1947 from_channel = channels.combined_count + 1948 min(channels.rx_count, channels.tx_count); 1949 to_channel = curr.combined_count + max(curr.rx_count, curr.tx_count); 1950 for (i = from_channel; i < to_channel; i++) 1951 if (xsk_get_pool_from_qid(dev, i)) 1952 return -EINVAL; 1953 1954 ret = dev->ethtool_ops->set_channels(dev, &channels); 1955 if (!ret) 1956 ethtool_notify(dev, ETHTOOL_MSG_CHANNELS_NTF, NULL); 1957 return ret; 1958 } 1959 1960 static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr) 1961 { 1962 struct ethtool_pauseparam pauseparam = { .cmd = ETHTOOL_GPAUSEPARAM }; 1963 1964 if (!dev->ethtool_ops->get_pauseparam) 1965 return -EOPNOTSUPP; 1966 1967 dev->ethtool_ops->get_pauseparam(dev, &pauseparam); 1968 1969 if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam))) 1970 return -EFAULT; 1971 return 0; 1972 } 1973 1974 static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr) 1975 { 1976 struct ethtool_pauseparam pauseparam; 1977 int ret; 1978 1979 if (!dev->ethtool_ops->set_pauseparam) 1980 return -EOPNOTSUPP; 1981 1982 if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam))) 1983 return -EFAULT; 1984 1985 ret = dev->ethtool_ops->set_pauseparam(dev, &pauseparam); 1986 if (!ret) 1987 ethtool_notify(dev, ETHTOOL_MSG_PAUSE_NTF, NULL); 1988 return ret; 1989 } 1990 1991 static int ethtool_self_test(struct net_device *dev, char __user *useraddr) 1992 { 1993 struct ethtool_test test; 1994 const struct ethtool_ops *ops = dev->ethtool_ops; 1995 u64 *data; 1996 int ret, test_len; 1997 1998 if (!ops->self_test || !ops->get_sset_count) 1999 return -EOPNOTSUPP; 2000 2001 test_len = ops->get_sset_count(dev, ETH_SS_TEST); 2002 if (test_len < 0) 2003 return test_len; 2004 WARN_ON(test_len == 0); 2005 2006 if (copy_from_user(&test, useraddr, sizeof(test))) 2007 return -EFAULT; 2008 2009 test.len = test_len; 2010 data = kcalloc(test_len, sizeof(u64), GFP_USER); 2011 if (!data) 2012 return -ENOMEM; 2013 2014 netif_testing_on(dev); 2015 ops->self_test(dev, &test, data); 2016 netif_testing_off(dev); 2017 2018 ret = -EFAULT; 2019 if (copy_to_user(useraddr, &test, sizeof(test))) 2020 goto out; 2021 useraddr += sizeof(test); 2022 if (copy_to_user(useraddr, data, array_size(test.len, sizeof(u64)))) 2023 goto out; 2024 ret = 0; 2025 2026 out: 2027 kfree(data); 2028 return ret; 2029 } 2030 2031 static int ethtool_get_strings(struct net_device *dev, void __user *useraddr) 2032 { 2033 struct ethtool_gstrings gstrings; 2034 u8 *data; 2035 int ret; 2036 2037 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings))) 2038 return -EFAULT; 2039 2040 ret = __ethtool_get_sset_count(dev, gstrings.string_set); 2041 if (ret < 0) 2042 return ret; 2043 if (ret > S32_MAX / ETH_GSTRING_LEN) 2044 return -ENOMEM; 2045 WARN_ON_ONCE(!ret); 2046 2047 gstrings.len = ret; 2048 2049 if (gstrings.len) { 2050 data = vzalloc(array_size(gstrings.len, ETH_GSTRING_LEN)); 2051 if (!data) 2052 return -ENOMEM; 2053 2054 __ethtool_get_strings(dev, gstrings.string_set, data); 2055 } else { 2056 data = NULL; 2057 } 2058 2059 ret = -EFAULT; 2060 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings))) 2061 goto out; 2062 useraddr += sizeof(gstrings); 2063 if (gstrings.len && 2064 copy_to_user(useraddr, data, 2065 array_size(gstrings.len, ETH_GSTRING_LEN))) 2066 goto out; 2067 ret = 0; 2068 2069 out: 2070 vfree(data); 2071 return ret; 2072 } 2073 2074 __printf(2, 3) void ethtool_sprintf(u8 **data, const char *fmt, ...) 2075 { 2076 va_list args; 2077 2078 va_start(args, fmt); 2079 vsnprintf(*data, ETH_GSTRING_LEN, fmt, args); 2080 va_end(args); 2081 2082 *data += ETH_GSTRING_LEN; 2083 } 2084 EXPORT_SYMBOL(ethtool_sprintf); 2085 2086 void ethtool_puts(u8 **data, const char *str) 2087 { 2088 strscpy(*data, str, ETH_GSTRING_LEN); 2089 *data += ETH_GSTRING_LEN; 2090 } 2091 EXPORT_SYMBOL(ethtool_puts); 2092 2093 static int ethtool_phys_id(struct net_device *dev, void __user *useraddr) 2094 { 2095 struct ethtool_value id; 2096 static bool busy; 2097 const struct ethtool_ops *ops = dev->ethtool_ops; 2098 netdevice_tracker dev_tracker; 2099 int rc; 2100 2101 if (!ops->set_phys_id) 2102 return -EOPNOTSUPP; 2103 2104 if (busy) 2105 return -EBUSY; 2106 2107 if (copy_from_user(&id, useraddr, sizeof(id))) 2108 return -EFAULT; 2109 2110 rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE); 2111 if (rc < 0) 2112 return rc; 2113 2114 /* Drop the RTNL lock while waiting, but prevent reentry or 2115 * removal of the device. 2116 */ 2117 busy = true; 2118 netdev_hold(dev, &dev_tracker, GFP_KERNEL); 2119 rtnl_unlock(); 2120 2121 if (rc == 0) { 2122 /* Driver will handle this itself */ 2123 schedule_timeout_interruptible( 2124 id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT); 2125 } else { 2126 /* Driver expects to be called at twice the frequency in rc */ 2127 int n = rc * 2, interval = HZ / n; 2128 u64 count = mul_u32_u32(n, id.data); 2129 u64 i = 0; 2130 2131 do { 2132 rtnl_lock(); 2133 rc = ops->set_phys_id(dev, 2134 (i++ & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON); 2135 rtnl_unlock(); 2136 if (rc) 2137 break; 2138 schedule_timeout_interruptible(interval); 2139 } while (!signal_pending(current) && (!id.data || i < count)); 2140 } 2141 2142 rtnl_lock(); 2143 netdev_put(dev, &dev_tracker); 2144 busy = false; 2145 2146 (void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE); 2147 return rc; 2148 } 2149 2150 static int ethtool_get_stats(struct net_device *dev, void __user *useraddr) 2151 { 2152 struct ethtool_stats stats; 2153 const struct ethtool_ops *ops = dev->ethtool_ops; 2154 u64 *data; 2155 int ret, n_stats; 2156 2157 if (!ops->get_ethtool_stats || !ops->get_sset_count) 2158 return -EOPNOTSUPP; 2159 2160 n_stats = ops->get_sset_count(dev, ETH_SS_STATS); 2161 if (n_stats < 0) 2162 return n_stats; 2163 if (n_stats > S32_MAX / sizeof(u64)) 2164 return -ENOMEM; 2165 WARN_ON_ONCE(!n_stats); 2166 if (copy_from_user(&stats, useraddr, sizeof(stats))) 2167 return -EFAULT; 2168 2169 stats.n_stats = n_stats; 2170 2171 if (n_stats) { 2172 data = vzalloc(array_size(n_stats, sizeof(u64))); 2173 if (!data) 2174 return -ENOMEM; 2175 ops->get_ethtool_stats(dev, &stats, data); 2176 } else { 2177 data = NULL; 2178 } 2179 2180 ret = -EFAULT; 2181 if (copy_to_user(useraddr, &stats, sizeof(stats))) 2182 goto out; 2183 useraddr += sizeof(stats); 2184 if (n_stats && copy_to_user(useraddr, data, array_size(n_stats, sizeof(u64)))) 2185 goto out; 2186 ret = 0; 2187 2188 out: 2189 vfree(data); 2190 return ret; 2191 } 2192 2193 static int ethtool_vzalloc_stats_array(int n_stats, u64 **data) 2194 { 2195 if (n_stats < 0) 2196 return n_stats; 2197 if (n_stats > S32_MAX / sizeof(u64)) 2198 return -ENOMEM; 2199 if (WARN_ON_ONCE(!n_stats)) 2200 return -EOPNOTSUPP; 2201 2202 *data = vzalloc(array_size(n_stats, sizeof(u64))); 2203 if (!*data) 2204 return -ENOMEM; 2205 2206 return 0; 2207 } 2208 2209 static int ethtool_get_phy_stats_phydev(struct phy_device *phydev, 2210 struct ethtool_stats *stats, 2211 u64 **data) 2212 { 2213 const struct ethtool_phy_ops *phy_ops = ethtool_phy_ops; 2214 int n_stats, ret; 2215 2216 if (!phy_ops || !phy_ops->get_sset_count || !phy_ops->get_stats) 2217 return -EOPNOTSUPP; 2218 2219 n_stats = phy_ops->get_sset_count(phydev); 2220 2221 ret = ethtool_vzalloc_stats_array(n_stats, data); 2222 if (ret) 2223 return ret; 2224 2225 stats->n_stats = n_stats; 2226 return phy_ops->get_stats(phydev, stats, *data); 2227 } 2228 2229 static int ethtool_get_phy_stats_ethtool(struct net_device *dev, 2230 struct ethtool_stats *stats, 2231 u64 **data) 2232 { 2233 const struct ethtool_ops *ops = dev->ethtool_ops; 2234 int n_stats, ret; 2235 2236 if (!ops || !ops->get_sset_count || ops->get_ethtool_phy_stats) 2237 return -EOPNOTSUPP; 2238 2239 n_stats = ops->get_sset_count(dev, ETH_SS_PHY_STATS); 2240 2241 ret = ethtool_vzalloc_stats_array(n_stats, data); 2242 if (ret) 2243 return ret; 2244 2245 stats->n_stats = n_stats; 2246 ops->get_ethtool_phy_stats(dev, stats, *data); 2247 2248 return 0; 2249 } 2250 2251 static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr) 2252 { 2253 struct phy_device *phydev = dev->phydev; 2254 struct ethtool_stats stats; 2255 u64 *data = NULL; 2256 int ret = -EOPNOTSUPP; 2257 2258 if (copy_from_user(&stats, useraddr, sizeof(stats))) 2259 return -EFAULT; 2260 2261 if (phydev) 2262 ret = ethtool_get_phy_stats_phydev(phydev, &stats, &data); 2263 2264 if (ret == -EOPNOTSUPP) 2265 ret = ethtool_get_phy_stats_ethtool(dev, &stats, &data); 2266 2267 if (ret) 2268 goto out; 2269 2270 if (copy_to_user(useraddr, &stats, sizeof(stats))) { 2271 ret = -EFAULT; 2272 goto out; 2273 } 2274 2275 useraddr += sizeof(stats); 2276 if (copy_to_user(useraddr, data, array_size(stats.n_stats, sizeof(u64)))) 2277 ret = -EFAULT; 2278 2279 out: 2280 vfree(data); 2281 return ret; 2282 } 2283 2284 static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr) 2285 { 2286 struct ethtool_perm_addr epaddr; 2287 2288 if (copy_from_user(&epaddr, useraddr, sizeof(epaddr))) 2289 return -EFAULT; 2290 2291 if (epaddr.size < dev->addr_len) 2292 return -ETOOSMALL; 2293 epaddr.size = dev->addr_len; 2294 2295 if (copy_to_user(useraddr, &epaddr, sizeof(epaddr))) 2296 return -EFAULT; 2297 useraddr += sizeof(epaddr); 2298 if (copy_to_user(useraddr, dev->perm_addr, epaddr.size)) 2299 return -EFAULT; 2300 return 0; 2301 } 2302 2303 static int ethtool_get_value(struct net_device *dev, char __user *useraddr, 2304 u32 cmd, u32 (*actor)(struct net_device *)) 2305 { 2306 struct ethtool_value edata = { .cmd = cmd }; 2307 2308 if (!actor) 2309 return -EOPNOTSUPP; 2310 2311 edata.data = actor(dev); 2312 2313 if (copy_to_user(useraddr, &edata, sizeof(edata))) 2314 return -EFAULT; 2315 return 0; 2316 } 2317 2318 static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr, 2319 void (*actor)(struct net_device *, u32)) 2320 { 2321 struct ethtool_value edata; 2322 2323 if (!actor) 2324 return -EOPNOTSUPP; 2325 2326 if (copy_from_user(&edata, useraddr, sizeof(edata))) 2327 return -EFAULT; 2328 2329 actor(dev, edata.data); 2330 return 0; 2331 } 2332 2333 static int ethtool_set_value(struct net_device *dev, char __user *useraddr, 2334 int (*actor)(struct net_device *, u32)) 2335 { 2336 struct ethtool_value edata; 2337 2338 if (!actor) 2339 return -EOPNOTSUPP; 2340 2341 if (copy_from_user(&edata, useraddr, sizeof(edata))) 2342 return -EFAULT; 2343 2344 return actor(dev, edata.data); 2345 } 2346 2347 static int 2348 ethtool_flash_device(struct net_device *dev, struct ethtool_devlink_compat *req) 2349 { 2350 if (!dev->ethtool_ops->flash_device) { 2351 req->devlink = netdev_to_devlink_get(dev); 2352 return 0; 2353 } 2354 2355 return dev->ethtool_ops->flash_device(dev, &req->efl); 2356 } 2357 2358 static int ethtool_set_dump(struct net_device *dev, 2359 void __user *useraddr) 2360 { 2361 struct ethtool_dump dump; 2362 2363 if (!dev->ethtool_ops->set_dump) 2364 return -EOPNOTSUPP; 2365 2366 if (copy_from_user(&dump, useraddr, sizeof(dump))) 2367 return -EFAULT; 2368 2369 return dev->ethtool_ops->set_dump(dev, &dump); 2370 } 2371 2372 static int ethtool_get_dump_flag(struct net_device *dev, 2373 void __user *useraddr) 2374 { 2375 int ret; 2376 struct ethtool_dump dump; 2377 const struct ethtool_ops *ops = dev->ethtool_ops; 2378 2379 if (!ops->get_dump_flag) 2380 return -EOPNOTSUPP; 2381 2382 if (copy_from_user(&dump, useraddr, sizeof(dump))) 2383 return -EFAULT; 2384 2385 ret = ops->get_dump_flag(dev, &dump); 2386 if (ret) 2387 return ret; 2388 2389 if (copy_to_user(useraddr, &dump, sizeof(dump))) 2390 return -EFAULT; 2391 return 0; 2392 } 2393 2394 static int ethtool_get_dump_data(struct net_device *dev, 2395 void __user *useraddr) 2396 { 2397 int ret; 2398 __u32 len; 2399 struct ethtool_dump dump, tmp; 2400 const struct ethtool_ops *ops = dev->ethtool_ops; 2401 void *data = NULL; 2402 2403 if (!ops->get_dump_data || !ops->get_dump_flag) 2404 return -EOPNOTSUPP; 2405 2406 if (copy_from_user(&dump, useraddr, sizeof(dump))) 2407 return -EFAULT; 2408 2409 memset(&tmp, 0, sizeof(tmp)); 2410 tmp.cmd = ETHTOOL_GET_DUMP_FLAG; 2411 ret = ops->get_dump_flag(dev, &tmp); 2412 if (ret) 2413 return ret; 2414 2415 len = min(tmp.len, dump.len); 2416 if (!len) 2417 return -EFAULT; 2418 2419 /* Don't ever let the driver think there's more space available 2420 * than it requested with .get_dump_flag(). 2421 */ 2422 dump.len = len; 2423 2424 /* Always allocate enough space to hold the whole thing so that the 2425 * driver does not need to check the length and bother with partial 2426 * dumping. 2427 */ 2428 data = vzalloc(tmp.len); 2429 if (!data) 2430 return -ENOMEM; 2431 ret = ops->get_dump_data(dev, &dump, data); 2432 if (ret) 2433 goto out; 2434 2435 /* There are two sane possibilities: 2436 * 1. The driver's .get_dump_data() does not touch dump.len. 2437 * 2. Or it may set dump.len to how much it really writes, which 2438 * should be tmp.len (or len if it can do a partial dump). 2439 * In any case respond to userspace with the actual length of data 2440 * it's receiving. 2441 */ 2442 WARN_ON(dump.len != len && dump.len != tmp.len); 2443 dump.len = len; 2444 2445 if (copy_to_user(useraddr, &dump, sizeof(dump))) { 2446 ret = -EFAULT; 2447 goto out; 2448 } 2449 useraddr += offsetof(struct ethtool_dump, data); 2450 if (copy_to_user(useraddr, data, len)) 2451 ret = -EFAULT; 2452 out: 2453 vfree(data); 2454 return ret; 2455 } 2456 2457 static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr) 2458 { 2459 struct ethtool_ts_info info; 2460 int err; 2461 2462 err = __ethtool_get_ts_info(dev, &info); 2463 if (err) 2464 return err; 2465 2466 if (copy_to_user(useraddr, &info, sizeof(info))) 2467 return -EFAULT; 2468 2469 return 0; 2470 } 2471 2472 int ethtool_get_module_info_call(struct net_device *dev, 2473 struct ethtool_modinfo *modinfo) 2474 { 2475 const struct ethtool_ops *ops = dev->ethtool_ops; 2476 struct phy_device *phydev = dev->phydev; 2477 2478 if (dev->sfp_bus) 2479 return sfp_get_module_info(dev->sfp_bus, modinfo); 2480 2481 if (phydev && phydev->drv && phydev->drv->module_info) 2482 return phydev->drv->module_info(phydev, modinfo); 2483 2484 if (ops->get_module_info) 2485 return ops->get_module_info(dev, modinfo); 2486 2487 return -EOPNOTSUPP; 2488 } 2489 2490 static int ethtool_get_module_info(struct net_device *dev, 2491 void __user *useraddr) 2492 { 2493 int ret; 2494 struct ethtool_modinfo modinfo; 2495 2496 if (copy_from_user(&modinfo, useraddr, sizeof(modinfo))) 2497 return -EFAULT; 2498 2499 ret = ethtool_get_module_info_call(dev, &modinfo); 2500 if (ret) 2501 return ret; 2502 2503 if (copy_to_user(useraddr, &modinfo, sizeof(modinfo))) 2504 return -EFAULT; 2505 2506 return 0; 2507 } 2508 2509 int ethtool_get_module_eeprom_call(struct net_device *dev, 2510 struct ethtool_eeprom *ee, u8 *data) 2511 { 2512 const struct ethtool_ops *ops = dev->ethtool_ops; 2513 struct phy_device *phydev = dev->phydev; 2514 2515 if (dev->sfp_bus) 2516 return sfp_get_module_eeprom(dev->sfp_bus, ee, data); 2517 2518 if (phydev && phydev->drv && phydev->drv->module_eeprom) 2519 return phydev->drv->module_eeprom(phydev, ee, data); 2520 2521 if (ops->get_module_eeprom) 2522 return ops->get_module_eeprom(dev, ee, data); 2523 2524 return -EOPNOTSUPP; 2525 } 2526 2527 static int ethtool_get_module_eeprom(struct net_device *dev, 2528 void __user *useraddr) 2529 { 2530 int ret; 2531 struct ethtool_modinfo modinfo; 2532 2533 ret = ethtool_get_module_info_call(dev, &modinfo); 2534 if (ret) 2535 return ret; 2536 2537 return ethtool_get_any_eeprom(dev, useraddr, 2538 ethtool_get_module_eeprom_call, 2539 modinfo.eeprom_len); 2540 } 2541 2542 static int ethtool_tunable_valid(const struct ethtool_tunable *tuna) 2543 { 2544 switch (tuna->id) { 2545 case ETHTOOL_RX_COPYBREAK: 2546 case ETHTOOL_TX_COPYBREAK: 2547 case ETHTOOL_TX_COPYBREAK_BUF_SIZE: 2548 if (tuna->len != sizeof(u32) || 2549 tuna->type_id != ETHTOOL_TUNABLE_U32) 2550 return -EINVAL; 2551 break; 2552 case ETHTOOL_PFC_PREVENTION_TOUT: 2553 if (tuna->len != sizeof(u16) || 2554 tuna->type_id != ETHTOOL_TUNABLE_U16) 2555 return -EINVAL; 2556 break; 2557 default: 2558 return -EINVAL; 2559 } 2560 2561 return 0; 2562 } 2563 2564 static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr) 2565 { 2566 int ret; 2567 struct ethtool_tunable tuna; 2568 const struct ethtool_ops *ops = dev->ethtool_ops; 2569 void *data; 2570 2571 if (!ops->get_tunable) 2572 return -EOPNOTSUPP; 2573 if (copy_from_user(&tuna, useraddr, sizeof(tuna))) 2574 return -EFAULT; 2575 ret = ethtool_tunable_valid(&tuna); 2576 if (ret) 2577 return ret; 2578 data = kzalloc(tuna.len, GFP_USER); 2579 if (!data) 2580 return -ENOMEM; 2581 ret = ops->get_tunable(dev, &tuna, data); 2582 if (ret) 2583 goto out; 2584 useraddr += sizeof(tuna); 2585 ret = -EFAULT; 2586 if (copy_to_user(useraddr, data, tuna.len)) 2587 goto out; 2588 ret = 0; 2589 2590 out: 2591 kfree(data); 2592 return ret; 2593 } 2594 2595 static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr) 2596 { 2597 int ret; 2598 struct ethtool_tunable tuna; 2599 const struct ethtool_ops *ops = dev->ethtool_ops; 2600 void *data; 2601 2602 if (!ops->set_tunable) 2603 return -EOPNOTSUPP; 2604 if (copy_from_user(&tuna, useraddr, sizeof(tuna))) 2605 return -EFAULT; 2606 ret = ethtool_tunable_valid(&tuna); 2607 if (ret) 2608 return ret; 2609 useraddr += sizeof(tuna); 2610 data = memdup_user(useraddr, tuna.len); 2611 if (IS_ERR(data)) 2612 return PTR_ERR(data); 2613 ret = ops->set_tunable(dev, &tuna, data); 2614 2615 kfree(data); 2616 return ret; 2617 } 2618 2619 static noinline_for_stack int 2620 ethtool_get_per_queue_coalesce(struct net_device *dev, 2621 void __user *useraddr, 2622 struct ethtool_per_queue_op *per_queue_opt) 2623 { 2624 u32 bit; 2625 int ret; 2626 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE); 2627 2628 if (!dev->ethtool_ops->get_per_queue_coalesce) 2629 return -EOPNOTSUPP; 2630 2631 useraddr += sizeof(*per_queue_opt); 2632 2633 bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask, 2634 MAX_NUM_QUEUE); 2635 2636 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) { 2637 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE }; 2638 2639 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, &coalesce); 2640 if (ret != 0) 2641 return ret; 2642 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce))) 2643 return -EFAULT; 2644 useraddr += sizeof(coalesce); 2645 } 2646 2647 return 0; 2648 } 2649 2650 static noinline_for_stack int 2651 ethtool_set_per_queue_coalesce(struct net_device *dev, 2652 void __user *useraddr, 2653 struct ethtool_per_queue_op *per_queue_opt) 2654 { 2655 u32 bit; 2656 int i, ret = 0; 2657 int n_queue; 2658 struct ethtool_coalesce *backup = NULL, *tmp = NULL; 2659 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE); 2660 2661 if ((!dev->ethtool_ops->set_per_queue_coalesce) || 2662 (!dev->ethtool_ops->get_per_queue_coalesce)) 2663 return -EOPNOTSUPP; 2664 2665 useraddr += sizeof(*per_queue_opt); 2666 2667 bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask, MAX_NUM_QUEUE); 2668 n_queue = bitmap_weight(queue_mask, MAX_NUM_QUEUE); 2669 tmp = backup = kmalloc_array(n_queue, sizeof(*backup), GFP_KERNEL); 2670 if (!backup) 2671 return -ENOMEM; 2672 2673 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) { 2674 struct ethtool_coalesce coalesce; 2675 2676 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, tmp); 2677 if (ret != 0) 2678 goto roll_back; 2679 2680 tmp++; 2681 2682 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) { 2683 ret = -EFAULT; 2684 goto roll_back; 2685 } 2686 2687 if (!ethtool_set_coalesce_supported(dev, &coalesce)) { 2688 ret = -EOPNOTSUPP; 2689 goto roll_back; 2690 } 2691 2692 ret = dev->ethtool_ops->set_per_queue_coalesce(dev, bit, &coalesce); 2693 if (ret != 0) 2694 goto roll_back; 2695 2696 useraddr += sizeof(coalesce); 2697 } 2698 2699 roll_back: 2700 if (ret != 0) { 2701 tmp = backup; 2702 for_each_set_bit(i, queue_mask, bit) { 2703 dev->ethtool_ops->set_per_queue_coalesce(dev, i, tmp); 2704 tmp++; 2705 } 2706 } 2707 kfree(backup); 2708 2709 return ret; 2710 } 2711 2712 static int noinline_for_stack ethtool_set_per_queue(struct net_device *dev, 2713 void __user *useraddr, u32 sub_cmd) 2714 { 2715 struct ethtool_per_queue_op per_queue_opt; 2716 2717 if (copy_from_user(&per_queue_opt, useraddr, sizeof(per_queue_opt))) 2718 return -EFAULT; 2719 2720 if (per_queue_opt.sub_command != sub_cmd) 2721 return -EINVAL; 2722 2723 switch (per_queue_opt.sub_command) { 2724 case ETHTOOL_GCOALESCE: 2725 return ethtool_get_per_queue_coalesce(dev, useraddr, &per_queue_opt); 2726 case ETHTOOL_SCOALESCE: 2727 return ethtool_set_per_queue_coalesce(dev, useraddr, &per_queue_opt); 2728 default: 2729 return -EOPNOTSUPP; 2730 } 2731 } 2732 2733 static int ethtool_phy_tunable_valid(const struct ethtool_tunable *tuna) 2734 { 2735 switch (tuna->id) { 2736 case ETHTOOL_PHY_DOWNSHIFT: 2737 case ETHTOOL_PHY_FAST_LINK_DOWN: 2738 if (tuna->len != sizeof(u8) || 2739 tuna->type_id != ETHTOOL_TUNABLE_U8) 2740 return -EINVAL; 2741 break; 2742 case ETHTOOL_PHY_EDPD: 2743 if (tuna->len != sizeof(u16) || 2744 tuna->type_id != ETHTOOL_TUNABLE_U16) 2745 return -EINVAL; 2746 break; 2747 default: 2748 return -EINVAL; 2749 } 2750 2751 return 0; 2752 } 2753 2754 static int get_phy_tunable(struct net_device *dev, void __user *useraddr) 2755 { 2756 struct phy_device *phydev = dev->phydev; 2757 struct ethtool_tunable tuna; 2758 bool phy_drv_tunable; 2759 void *data; 2760 int ret; 2761 2762 phy_drv_tunable = phydev && phydev->drv && phydev->drv->get_tunable; 2763 if (!phy_drv_tunable && !dev->ethtool_ops->get_phy_tunable) 2764 return -EOPNOTSUPP; 2765 if (copy_from_user(&tuna, useraddr, sizeof(tuna))) 2766 return -EFAULT; 2767 ret = ethtool_phy_tunable_valid(&tuna); 2768 if (ret) 2769 return ret; 2770 data = kzalloc(tuna.len, GFP_USER); 2771 if (!data) 2772 return -ENOMEM; 2773 if (phy_drv_tunable) { 2774 mutex_lock(&phydev->lock); 2775 ret = phydev->drv->get_tunable(phydev, &tuna, data); 2776 mutex_unlock(&phydev->lock); 2777 } else { 2778 ret = dev->ethtool_ops->get_phy_tunable(dev, &tuna, data); 2779 } 2780 if (ret) 2781 goto out; 2782 useraddr += sizeof(tuna); 2783 ret = -EFAULT; 2784 if (copy_to_user(useraddr, data, tuna.len)) 2785 goto out; 2786 ret = 0; 2787 2788 out: 2789 kfree(data); 2790 return ret; 2791 } 2792 2793 static int set_phy_tunable(struct net_device *dev, void __user *useraddr) 2794 { 2795 struct phy_device *phydev = dev->phydev; 2796 struct ethtool_tunable tuna; 2797 bool phy_drv_tunable; 2798 void *data; 2799 int ret; 2800 2801 phy_drv_tunable = phydev && phydev->drv && phydev->drv->get_tunable; 2802 if (!phy_drv_tunable && !dev->ethtool_ops->set_phy_tunable) 2803 return -EOPNOTSUPP; 2804 if (copy_from_user(&tuna, useraddr, sizeof(tuna))) 2805 return -EFAULT; 2806 ret = ethtool_phy_tunable_valid(&tuna); 2807 if (ret) 2808 return ret; 2809 useraddr += sizeof(tuna); 2810 data = memdup_user(useraddr, tuna.len); 2811 if (IS_ERR(data)) 2812 return PTR_ERR(data); 2813 if (phy_drv_tunable) { 2814 mutex_lock(&phydev->lock); 2815 ret = phydev->drv->set_tunable(phydev, &tuna, data); 2816 mutex_unlock(&phydev->lock); 2817 } else { 2818 ret = dev->ethtool_ops->set_phy_tunable(dev, &tuna, data); 2819 } 2820 2821 kfree(data); 2822 return ret; 2823 } 2824 2825 static int ethtool_get_fecparam(struct net_device *dev, void __user *useraddr) 2826 { 2827 struct ethtool_fecparam fecparam = { .cmd = ETHTOOL_GFECPARAM }; 2828 int rc; 2829 2830 if (!dev->ethtool_ops->get_fecparam) 2831 return -EOPNOTSUPP; 2832 2833 rc = dev->ethtool_ops->get_fecparam(dev, &fecparam); 2834 if (rc) 2835 return rc; 2836 2837 if (WARN_ON_ONCE(fecparam.reserved)) 2838 fecparam.reserved = 0; 2839 2840 if (copy_to_user(useraddr, &fecparam, sizeof(fecparam))) 2841 return -EFAULT; 2842 return 0; 2843 } 2844 2845 static int ethtool_set_fecparam(struct net_device *dev, void __user *useraddr) 2846 { 2847 struct ethtool_fecparam fecparam; 2848 2849 if (!dev->ethtool_ops->set_fecparam) 2850 return -EOPNOTSUPP; 2851 2852 if (copy_from_user(&fecparam, useraddr, sizeof(fecparam))) 2853 return -EFAULT; 2854 2855 if (!fecparam.fec || fecparam.fec & ETHTOOL_FEC_NONE) 2856 return -EINVAL; 2857 2858 fecparam.active_fec = 0; 2859 fecparam.reserved = 0; 2860 2861 return dev->ethtool_ops->set_fecparam(dev, &fecparam); 2862 } 2863 2864 /* The main entry point in this file. Called from net/core/dev_ioctl.c */ 2865 2866 static int 2867 __dev_ethtool(struct net *net, struct ifreq *ifr, void __user *useraddr, 2868 u32 ethcmd, struct ethtool_devlink_compat *devlink_state) 2869 { 2870 struct net_device *dev; 2871 u32 sub_cmd; 2872 int rc; 2873 netdev_features_t old_features; 2874 2875 dev = __dev_get_by_name(net, ifr->ifr_name); 2876 if (!dev) 2877 return -ENODEV; 2878 2879 if (ethcmd == ETHTOOL_PERQUEUE) { 2880 if (copy_from_user(&sub_cmd, useraddr + sizeof(ethcmd), sizeof(sub_cmd))) 2881 return -EFAULT; 2882 } else { 2883 sub_cmd = ethcmd; 2884 } 2885 /* Allow some commands to be done by anyone */ 2886 switch (sub_cmd) { 2887 case ETHTOOL_GSET: 2888 case ETHTOOL_GDRVINFO: 2889 case ETHTOOL_GMSGLVL: 2890 case ETHTOOL_GLINK: 2891 case ETHTOOL_GCOALESCE: 2892 case ETHTOOL_GRINGPARAM: 2893 case ETHTOOL_GPAUSEPARAM: 2894 case ETHTOOL_GRXCSUM: 2895 case ETHTOOL_GTXCSUM: 2896 case ETHTOOL_GSG: 2897 case ETHTOOL_GSSET_INFO: 2898 case ETHTOOL_GSTRINGS: 2899 case ETHTOOL_GSTATS: 2900 case ETHTOOL_GPHYSTATS: 2901 case ETHTOOL_GTSO: 2902 case ETHTOOL_GPERMADDR: 2903 case ETHTOOL_GUFO: 2904 case ETHTOOL_GGSO: 2905 case ETHTOOL_GGRO: 2906 case ETHTOOL_GFLAGS: 2907 case ETHTOOL_GPFLAGS: 2908 case ETHTOOL_GRXFH: 2909 case ETHTOOL_GRXRINGS: 2910 case ETHTOOL_GRXCLSRLCNT: 2911 case ETHTOOL_GRXCLSRULE: 2912 case ETHTOOL_GRXCLSRLALL: 2913 case ETHTOOL_GRXFHINDIR: 2914 case ETHTOOL_GRSSH: 2915 case ETHTOOL_GFEATURES: 2916 case ETHTOOL_GCHANNELS: 2917 case ETHTOOL_GET_TS_INFO: 2918 case ETHTOOL_GEEE: 2919 case ETHTOOL_GTUNABLE: 2920 case ETHTOOL_PHY_GTUNABLE: 2921 case ETHTOOL_GLINKSETTINGS: 2922 case ETHTOOL_GFECPARAM: 2923 break; 2924 default: 2925 if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) 2926 return -EPERM; 2927 } 2928 2929 if (dev->dev.parent) 2930 pm_runtime_get_sync(dev->dev.parent); 2931 2932 if (!netif_device_present(dev)) { 2933 rc = -ENODEV; 2934 goto out; 2935 } 2936 2937 if (dev->ethtool_ops->begin) { 2938 rc = dev->ethtool_ops->begin(dev); 2939 if (rc < 0) 2940 goto out; 2941 } 2942 old_features = dev->features; 2943 2944 switch (ethcmd) { 2945 case ETHTOOL_GSET: 2946 rc = ethtool_get_settings(dev, useraddr); 2947 break; 2948 case ETHTOOL_SSET: 2949 rc = ethtool_set_settings(dev, useraddr); 2950 break; 2951 case ETHTOOL_GDRVINFO: 2952 rc = ethtool_get_drvinfo(dev, devlink_state); 2953 break; 2954 case ETHTOOL_GREGS: 2955 rc = ethtool_get_regs(dev, useraddr); 2956 break; 2957 case ETHTOOL_GWOL: 2958 rc = ethtool_get_wol(dev, useraddr); 2959 break; 2960 case ETHTOOL_SWOL: 2961 rc = ethtool_set_wol(dev, useraddr); 2962 break; 2963 case ETHTOOL_GMSGLVL: 2964 rc = ethtool_get_value(dev, useraddr, ethcmd, 2965 dev->ethtool_ops->get_msglevel); 2966 break; 2967 case ETHTOOL_SMSGLVL: 2968 rc = ethtool_set_value_void(dev, useraddr, 2969 dev->ethtool_ops->set_msglevel); 2970 if (!rc) 2971 ethtool_notify(dev, ETHTOOL_MSG_DEBUG_NTF, NULL); 2972 break; 2973 case ETHTOOL_GEEE: 2974 rc = ethtool_get_eee(dev, useraddr); 2975 break; 2976 case ETHTOOL_SEEE: 2977 rc = ethtool_set_eee(dev, useraddr); 2978 break; 2979 case ETHTOOL_NWAY_RST: 2980 rc = ethtool_nway_reset(dev); 2981 break; 2982 case ETHTOOL_GLINK: 2983 rc = ethtool_get_link(dev, useraddr); 2984 break; 2985 case ETHTOOL_GEEPROM: 2986 rc = ethtool_get_eeprom(dev, useraddr); 2987 break; 2988 case ETHTOOL_SEEPROM: 2989 rc = ethtool_set_eeprom(dev, useraddr); 2990 break; 2991 case ETHTOOL_GCOALESCE: 2992 rc = ethtool_get_coalesce(dev, useraddr); 2993 break; 2994 case ETHTOOL_SCOALESCE: 2995 rc = ethtool_set_coalesce(dev, useraddr); 2996 break; 2997 case ETHTOOL_GRINGPARAM: 2998 rc = ethtool_get_ringparam(dev, useraddr); 2999 break; 3000 case ETHTOOL_SRINGPARAM: 3001 rc = ethtool_set_ringparam(dev, useraddr); 3002 break; 3003 case ETHTOOL_GPAUSEPARAM: 3004 rc = ethtool_get_pauseparam(dev, useraddr); 3005 break; 3006 case ETHTOOL_SPAUSEPARAM: 3007 rc = ethtool_set_pauseparam(dev, useraddr); 3008 break; 3009 case ETHTOOL_TEST: 3010 rc = ethtool_self_test(dev, useraddr); 3011 break; 3012 case ETHTOOL_GSTRINGS: 3013 rc = ethtool_get_strings(dev, useraddr); 3014 break; 3015 case ETHTOOL_PHYS_ID: 3016 rc = ethtool_phys_id(dev, useraddr); 3017 break; 3018 case ETHTOOL_GSTATS: 3019 rc = ethtool_get_stats(dev, useraddr); 3020 break; 3021 case ETHTOOL_GPERMADDR: 3022 rc = ethtool_get_perm_addr(dev, useraddr); 3023 break; 3024 case ETHTOOL_GFLAGS: 3025 rc = ethtool_get_value(dev, useraddr, ethcmd, 3026 __ethtool_get_flags); 3027 break; 3028 case ETHTOOL_SFLAGS: 3029 rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags); 3030 break; 3031 case ETHTOOL_GPFLAGS: 3032 rc = ethtool_get_value(dev, useraddr, ethcmd, 3033 dev->ethtool_ops->get_priv_flags); 3034 if (!rc) 3035 ethtool_notify(dev, ETHTOOL_MSG_PRIVFLAGS_NTF, NULL); 3036 break; 3037 case ETHTOOL_SPFLAGS: 3038 rc = ethtool_set_value(dev, useraddr, 3039 dev->ethtool_ops->set_priv_flags); 3040 break; 3041 case ETHTOOL_GRXFH: 3042 case ETHTOOL_GRXRINGS: 3043 case ETHTOOL_GRXCLSRLCNT: 3044 case ETHTOOL_GRXCLSRULE: 3045 case ETHTOOL_GRXCLSRLALL: 3046 rc = ethtool_get_rxnfc(dev, ethcmd, useraddr); 3047 break; 3048 case ETHTOOL_SRXFH: 3049 case ETHTOOL_SRXCLSRLDEL: 3050 case ETHTOOL_SRXCLSRLINS: 3051 rc = ethtool_set_rxnfc(dev, ethcmd, useraddr); 3052 break; 3053 case ETHTOOL_FLASHDEV: 3054 rc = ethtool_flash_device(dev, devlink_state); 3055 break; 3056 case ETHTOOL_RESET: 3057 rc = ethtool_reset(dev, useraddr); 3058 break; 3059 case ETHTOOL_GSSET_INFO: 3060 rc = ethtool_get_sset_info(dev, useraddr); 3061 break; 3062 case ETHTOOL_GRXFHINDIR: 3063 rc = ethtool_get_rxfh_indir(dev, useraddr); 3064 break; 3065 case ETHTOOL_SRXFHINDIR: 3066 rc = ethtool_set_rxfh_indir(dev, useraddr); 3067 break; 3068 case ETHTOOL_GRSSH: 3069 rc = ethtool_get_rxfh(dev, useraddr); 3070 break; 3071 case ETHTOOL_SRSSH: 3072 rc = ethtool_set_rxfh(dev, useraddr); 3073 break; 3074 case ETHTOOL_GFEATURES: 3075 rc = ethtool_get_features(dev, useraddr); 3076 break; 3077 case ETHTOOL_SFEATURES: 3078 rc = ethtool_set_features(dev, useraddr); 3079 break; 3080 case ETHTOOL_GTXCSUM: 3081 case ETHTOOL_GRXCSUM: 3082 case ETHTOOL_GSG: 3083 case ETHTOOL_GTSO: 3084 case ETHTOOL_GGSO: 3085 case ETHTOOL_GGRO: 3086 rc = ethtool_get_one_feature(dev, useraddr, ethcmd); 3087 break; 3088 case ETHTOOL_STXCSUM: 3089 case ETHTOOL_SRXCSUM: 3090 case ETHTOOL_SSG: 3091 case ETHTOOL_STSO: 3092 case ETHTOOL_SGSO: 3093 case ETHTOOL_SGRO: 3094 rc = ethtool_set_one_feature(dev, useraddr, ethcmd); 3095 break; 3096 case ETHTOOL_GCHANNELS: 3097 rc = ethtool_get_channels(dev, useraddr); 3098 break; 3099 case ETHTOOL_SCHANNELS: 3100 rc = ethtool_set_channels(dev, useraddr); 3101 break; 3102 case ETHTOOL_SET_DUMP: 3103 rc = ethtool_set_dump(dev, useraddr); 3104 break; 3105 case ETHTOOL_GET_DUMP_FLAG: 3106 rc = ethtool_get_dump_flag(dev, useraddr); 3107 break; 3108 case ETHTOOL_GET_DUMP_DATA: 3109 rc = ethtool_get_dump_data(dev, useraddr); 3110 break; 3111 case ETHTOOL_GET_TS_INFO: 3112 rc = ethtool_get_ts_info(dev, useraddr); 3113 break; 3114 case ETHTOOL_GMODULEINFO: 3115 rc = ethtool_get_module_info(dev, useraddr); 3116 break; 3117 case ETHTOOL_GMODULEEEPROM: 3118 rc = ethtool_get_module_eeprom(dev, useraddr); 3119 break; 3120 case ETHTOOL_GTUNABLE: 3121 rc = ethtool_get_tunable(dev, useraddr); 3122 break; 3123 case ETHTOOL_STUNABLE: 3124 rc = ethtool_set_tunable(dev, useraddr); 3125 break; 3126 case ETHTOOL_GPHYSTATS: 3127 rc = ethtool_get_phy_stats(dev, useraddr); 3128 break; 3129 case ETHTOOL_PERQUEUE: 3130 rc = ethtool_set_per_queue(dev, useraddr, sub_cmd); 3131 break; 3132 case ETHTOOL_GLINKSETTINGS: 3133 rc = ethtool_get_link_ksettings(dev, useraddr); 3134 break; 3135 case ETHTOOL_SLINKSETTINGS: 3136 rc = ethtool_set_link_ksettings(dev, useraddr); 3137 break; 3138 case ETHTOOL_PHY_GTUNABLE: 3139 rc = get_phy_tunable(dev, useraddr); 3140 break; 3141 case ETHTOOL_PHY_STUNABLE: 3142 rc = set_phy_tunable(dev, useraddr); 3143 break; 3144 case ETHTOOL_GFECPARAM: 3145 rc = ethtool_get_fecparam(dev, useraddr); 3146 break; 3147 case ETHTOOL_SFECPARAM: 3148 rc = ethtool_set_fecparam(dev, useraddr); 3149 break; 3150 default: 3151 rc = -EOPNOTSUPP; 3152 } 3153 3154 if (dev->ethtool_ops->complete) 3155 dev->ethtool_ops->complete(dev); 3156 3157 if (old_features != dev->features) 3158 netdev_features_change(dev); 3159 out: 3160 if (dev->dev.parent) 3161 pm_runtime_put(dev->dev.parent); 3162 3163 return rc; 3164 } 3165 3166 int dev_ethtool(struct net *net, struct ifreq *ifr, void __user *useraddr) 3167 { 3168 struct ethtool_devlink_compat *state; 3169 u32 ethcmd; 3170 int rc; 3171 3172 if (copy_from_user(ðcmd, useraddr, sizeof(ethcmd))) 3173 return -EFAULT; 3174 3175 state = kzalloc(sizeof(*state), GFP_KERNEL); 3176 if (!state) 3177 return -ENOMEM; 3178 3179 switch (ethcmd) { 3180 case ETHTOOL_FLASHDEV: 3181 if (copy_from_user(&state->efl, useraddr, sizeof(state->efl))) { 3182 rc = -EFAULT; 3183 goto exit_free; 3184 } 3185 state->efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0; 3186 break; 3187 } 3188 3189 rtnl_lock(); 3190 rc = __dev_ethtool(net, ifr, useraddr, ethcmd, state); 3191 rtnl_unlock(); 3192 if (rc) 3193 goto exit_free; 3194 3195 switch (ethcmd) { 3196 case ETHTOOL_FLASHDEV: 3197 if (state->devlink) 3198 rc = devlink_compat_flash_update(state->devlink, 3199 state->efl.data); 3200 break; 3201 case ETHTOOL_GDRVINFO: 3202 if (state->devlink) 3203 devlink_compat_running_version(state->devlink, 3204 state->info.fw_version, 3205 sizeof(state->info.fw_version)); 3206 if (copy_to_user(useraddr, &state->info, sizeof(state->info))) { 3207 rc = -EFAULT; 3208 goto exit_free; 3209 } 3210 break; 3211 } 3212 3213 exit_free: 3214 if (state->devlink) 3215 devlink_put(state->devlink); 3216 kfree(state); 3217 return rc; 3218 } 3219 3220 struct ethtool_rx_flow_key { 3221 struct flow_dissector_key_basic basic; 3222 union { 3223 struct flow_dissector_key_ipv4_addrs ipv4; 3224 struct flow_dissector_key_ipv6_addrs ipv6; 3225 }; 3226 struct flow_dissector_key_ports tp; 3227 struct flow_dissector_key_ip ip; 3228 struct flow_dissector_key_vlan vlan; 3229 struct flow_dissector_key_eth_addrs eth_addrs; 3230 } __aligned(BITS_PER_LONG / 8); /* Ensure that we can do comparisons as longs. */ 3231 3232 struct ethtool_rx_flow_match { 3233 struct flow_dissector dissector; 3234 struct ethtool_rx_flow_key key; 3235 struct ethtool_rx_flow_key mask; 3236 }; 3237 3238 struct ethtool_rx_flow_rule * 3239 ethtool_rx_flow_rule_create(const struct ethtool_rx_flow_spec_input *input) 3240 { 3241 const struct ethtool_rx_flow_spec *fs = input->fs; 3242 struct ethtool_rx_flow_match *match; 3243 struct ethtool_rx_flow_rule *flow; 3244 struct flow_action_entry *act; 3245 3246 flow = kzalloc(sizeof(struct ethtool_rx_flow_rule) + 3247 sizeof(struct ethtool_rx_flow_match), GFP_KERNEL); 3248 if (!flow) 3249 return ERR_PTR(-ENOMEM); 3250 3251 /* ethtool_rx supports only one single action per rule. */ 3252 flow->rule = flow_rule_alloc(1); 3253 if (!flow->rule) { 3254 kfree(flow); 3255 return ERR_PTR(-ENOMEM); 3256 } 3257 3258 match = (struct ethtool_rx_flow_match *)flow->priv; 3259 flow->rule->match.dissector = &match->dissector; 3260 flow->rule->match.mask = &match->mask; 3261 flow->rule->match.key = &match->key; 3262 3263 match->mask.basic.n_proto = htons(0xffff); 3264 3265 switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) { 3266 case ETHER_FLOW: { 3267 const struct ethhdr *ether_spec, *ether_m_spec; 3268 3269 ether_spec = &fs->h_u.ether_spec; 3270 ether_m_spec = &fs->m_u.ether_spec; 3271 3272 if (!is_zero_ether_addr(ether_m_spec->h_source)) { 3273 ether_addr_copy(match->key.eth_addrs.src, 3274 ether_spec->h_source); 3275 ether_addr_copy(match->mask.eth_addrs.src, 3276 ether_m_spec->h_source); 3277 } 3278 if (!is_zero_ether_addr(ether_m_spec->h_dest)) { 3279 ether_addr_copy(match->key.eth_addrs.dst, 3280 ether_spec->h_dest); 3281 ether_addr_copy(match->mask.eth_addrs.dst, 3282 ether_m_spec->h_dest); 3283 } 3284 if (ether_m_spec->h_proto) { 3285 match->key.basic.n_proto = ether_spec->h_proto; 3286 match->mask.basic.n_proto = ether_m_spec->h_proto; 3287 } 3288 } 3289 break; 3290 case TCP_V4_FLOW: 3291 case UDP_V4_FLOW: { 3292 const struct ethtool_tcpip4_spec *v4_spec, *v4_m_spec; 3293 3294 match->key.basic.n_proto = htons(ETH_P_IP); 3295 3296 v4_spec = &fs->h_u.tcp_ip4_spec; 3297 v4_m_spec = &fs->m_u.tcp_ip4_spec; 3298 3299 if (v4_m_spec->ip4src) { 3300 match->key.ipv4.src = v4_spec->ip4src; 3301 match->mask.ipv4.src = v4_m_spec->ip4src; 3302 } 3303 if (v4_m_spec->ip4dst) { 3304 match->key.ipv4.dst = v4_spec->ip4dst; 3305 match->mask.ipv4.dst = v4_m_spec->ip4dst; 3306 } 3307 if (v4_m_spec->ip4src || 3308 v4_m_spec->ip4dst) { 3309 match->dissector.used_keys |= 3310 BIT_ULL(FLOW_DISSECTOR_KEY_IPV4_ADDRS); 3311 match->dissector.offset[FLOW_DISSECTOR_KEY_IPV4_ADDRS] = 3312 offsetof(struct ethtool_rx_flow_key, ipv4); 3313 } 3314 if (v4_m_spec->psrc) { 3315 match->key.tp.src = v4_spec->psrc; 3316 match->mask.tp.src = v4_m_spec->psrc; 3317 } 3318 if (v4_m_spec->pdst) { 3319 match->key.tp.dst = v4_spec->pdst; 3320 match->mask.tp.dst = v4_m_spec->pdst; 3321 } 3322 if (v4_m_spec->psrc || 3323 v4_m_spec->pdst) { 3324 match->dissector.used_keys |= 3325 BIT_ULL(FLOW_DISSECTOR_KEY_PORTS); 3326 match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] = 3327 offsetof(struct ethtool_rx_flow_key, tp); 3328 } 3329 if (v4_m_spec->tos) { 3330 match->key.ip.tos = v4_spec->tos; 3331 match->mask.ip.tos = v4_m_spec->tos; 3332 match->dissector.used_keys |= 3333 BIT(FLOW_DISSECTOR_KEY_IP); 3334 match->dissector.offset[FLOW_DISSECTOR_KEY_IP] = 3335 offsetof(struct ethtool_rx_flow_key, ip); 3336 } 3337 } 3338 break; 3339 case TCP_V6_FLOW: 3340 case UDP_V6_FLOW: { 3341 const struct ethtool_tcpip6_spec *v6_spec, *v6_m_spec; 3342 3343 match->key.basic.n_proto = htons(ETH_P_IPV6); 3344 3345 v6_spec = &fs->h_u.tcp_ip6_spec; 3346 v6_m_spec = &fs->m_u.tcp_ip6_spec; 3347 if (!ipv6_addr_any((struct in6_addr *)v6_m_spec->ip6src)) { 3348 memcpy(&match->key.ipv6.src, v6_spec->ip6src, 3349 sizeof(match->key.ipv6.src)); 3350 memcpy(&match->mask.ipv6.src, v6_m_spec->ip6src, 3351 sizeof(match->mask.ipv6.src)); 3352 } 3353 if (!ipv6_addr_any((struct in6_addr *)v6_m_spec->ip6dst)) { 3354 memcpy(&match->key.ipv6.dst, v6_spec->ip6dst, 3355 sizeof(match->key.ipv6.dst)); 3356 memcpy(&match->mask.ipv6.dst, v6_m_spec->ip6dst, 3357 sizeof(match->mask.ipv6.dst)); 3358 } 3359 if (!ipv6_addr_any((struct in6_addr *)v6_m_spec->ip6src) || 3360 !ipv6_addr_any((struct in6_addr *)v6_m_spec->ip6dst)) { 3361 match->dissector.used_keys |= 3362 BIT_ULL(FLOW_DISSECTOR_KEY_IPV6_ADDRS); 3363 match->dissector.offset[FLOW_DISSECTOR_KEY_IPV6_ADDRS] = 3364 offsetof(struct ethtool_rx_flow_key, ipv6); 3365 } 3366 if (v6_m_spec->psrc) { 3367 match->key.tp.src = v6_spec->psrc; 3368 match->mask.tp.src = v6_m_spec->psrc; 3369 } 3370 if (v6_m_spec->pdst) { 3371 match->key.tp.dst = v6_spec->pdst; 3372 match->mask.tp.dst = v6_m_spec->pdst; 3373 } 3374 if (v6_m_spec->psrc || 3375 v6_m_spec->pdst) { 3376 match->dissector.used_keys |= 3377 BIT_ULL(FLOW_DISSECTOR_KEY_PORTS); 3378 match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] = 3379 offsetof(struct ethtool_rx_flow_key, tp); 3380 } 3381 if (v6_m_spec->tclass) { 3382 match->key.ip.tos = v6_spec->tclass; 3383 match->mask.ip.tos = v6_m_spec->tclass; 3384 match->dissector.used_keys |= 3385 BIT_ULL(FLOW_DISSECTOR_KEY_IP); 3386 match->dissector.offset[FLOW_DISSECTOR_KEY_IP] = 3387 offsetof(struct ethtool_rx_flow_key, ip); 3388 } 3389 } 3390 break; 3391 default: 3392 ethtool_rx_flow_rule_destroy(flow); 3393 return ERR_PTR(-EINVAL); 3394 } 3395 3396 switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) { 3397 case TCP_V4_FLOW: 3398 case TCP_V6_FLOW: 3399 match->key.basic.ip_proto = IPPROTO_TCP; 3400 match->mask.basic.ip_proto = 0xff; 3401 break; 3402 case UDP_V4_FLOW: 3403 case UDP_V6_FLOW: 3404 match->key.basic.ip_proto = IPPROTO_UDP; 3405 match->mask.basic.ip_proto = 0xff; 3406 break; 3407 } 3408 3409 match->dissector.used_keys |= BIT_ULL(FLOW_DISSECTOR_KEY_BASIC); 3410 match->dissector.offset[FLOW_DISSECTOR_KEY_BASIC] = 3411 offsetof(struct ethtool_rx_flow_key, basic); 3412 3413 if (fs->flow_type & FLOW_EXT) { 3414 const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext; 3415 const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext; 3416 3417 if (ext_m_spec->vlan_etype) { 3418 match->key.vlan.vlan_tpid = ext_h_spec->vlan_etype; 3419 match->mask.vlan.vlan_tpid = ext_m_spec->vlan_etype; 3420 } 3421 3422 if (ext_m_spec->vlan_tci) { 3423 match->key.vlan.vlan_id = 3424 ntohs(ext_h_spec->vlan_tci) & 0x0fff; 3425 match->mask.vlan.vlan_id = 3426 ntohs(ext_m_spec->vlan_tci) & 0x0fff; 3427 3428 match->key.vlan.vlan_dei = 3429 !!(ext_h_spec->vlan_tci & htons(0x1000)); 3430 match->mask.vlan.vlan_dei = 3431 !!(ext_m_spec->vlan_tci & htons(0x1000)); 3432 3433 match->key.vlan.vlan_priority = 3434 (ntohs(ext_h_spec->vlan_tci) & 0xe000) >> 13; 3435 match->mask.vlan.vlan_priority = 3436 (ntohs(ext_m_spec->vlan_tci) & 0xe000) >> 13; 3437 } 3438 3439 if (ext_m_spec->vlan_etype || 3440 ext_m_spec->vlan_tci) { 3441 match->dissector.used_keys |= 3442 BIT_ULL(FLOW_DISSECTOR_KEY_VLAN); 3443 match->dissector.offset[FLOW_DISSECTOR_KEY_VLAN] = 3444 offsetof(struct ethtool_rx_flow_key, vlan); 3445 } 3446 } 3447 if (fs->flow_type & FLOW_MAC_EXT) { 3448 const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext; 3449 const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext; 3450 3451 memcpy(match->key.eth_addrs.dst, ext_h_spec->h_dest, 3452 ETH_ALEN); 3453 memcpy(match->mask.eth_addrs.dst, ext_m_spec->h_dest, 3454 ETH_ALEN); 3455 3456 match->dissector.used_keys |= 3457 BIT_ULL(FLOW_DISSECTOR_KEY_ETH_ADDRS); 3458 match->dissector.offset[FLOW_DISSECTOR_KEY_ETH_ADDRS] = 3459 offsetof(struct ethtool_rx_flow_key, eth_addrs); 3460 } 3461 3462 act = &flow->rule->action.entries[0]; 3463 switch (fs->ring_cookie) { 3464 case RX_CLS_FLOW_DISC: 3465 act->id = FLOW_ACTION_DROP; 3466 break; 3467 case RX_CLS_FLOW_WAKE: 3468 act->id = FLOW_ACTION_WAKE; 3469 break; 3470 default: 3471 act->id = FLOW_ACTION_QUEUE; 3472 if (fs->flow_type & FLOW_RSS) 3473 act->queue.ctx = input->rss_ctx; 3474 3475 act->queue.vf = ethtool_get_flow_spec_ring_vf(fs->ring_cookie); 3476 act->queue.index = ethtool_get_flow_spec_ring(fs->ring_cookie); 3477 break; 3478 } 3479 3480 return flow; 3481 } 3482 EXPORT_SYMBOL(ethtool_rx_flow_rule_create); 3483 3484 void ethtool_rx_flow_rule_destroy(struct ethtool_rx_flow_rule *flow) 3485 { 3486 kfree(flow->rule); 3487 kfree(flow); 3488 } 3489 EXPORT_SYMBOL(ethtool_rx_flow_rule_destroy); 3490