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