1 // SPDX-License-Identifier: GPL-2.0-only 2 3 #include <net/sock.h> 4 #include <linux/ethtool_netlink.h> 5 #include <linux/pm_runtime.h> 6 #include "netlink.h" 7 8 static struct genl_family ethtool_genl_family; 9 10 static bool ethnl_ok __read_mostly; 11 static u32 ethnl_bcast_seq; 12 13 #define ETHTOOL_FLAGS_BASIC (ETHTOOL_FLAG_COMPACT_BITSETS | \ 14 ETHTOOL_FLAG_OMIT_REPLY) 15 #define ETHTOOL_FLAGS_STATS (ETHTOOL_FLAGS_BASIC | ETHTOOL_FLAG_STATS) 16 17 const struct nla_policy ethnl_header_policy[] = { 18 [ETHTOOL_A_HEADER_DEV_INDEX] = { .type = NLA_U32 }, 19 [ETHTOOL_A_HEADER_DEV_NAME] = { .type = NLA_NUL_STRING, 20 .len = ALTIFNAMSIZ - 1 }, 21 [ETHTOOL_A_HEADER_FLAGS] = NLA_POLICY_MASK(NLA_U32, 22 ETHTOOL_FLAGS_BASIC), 23 }; 24 25 const struct nla_policy ethnl_header_policy_stats[] = { 26 [ETHTOOL_A_HEADER_DEV_INDEX] = { .type = NLA_U32 }, 27 [ETHTOOL_A_HEADER_DEV_NAME] = { .type = NLA_NUL_STRING, 28 .len = ALTIFNAMSIZ - 1 }, 29 [ETHTOOL_A_HEADER_FLAGS] = NLA_POLICY_MASK(NLA_U32, 30 ETHTOOL_FLAGS_STATS), 31 }; 32 33 int ethnl_ops_begin(struct net_device *dev) 34 { 35 int ret; 36 37 if (!dev) 38 return -ENODEV; 39 40 if (dev->dev.parent) 41 pm_runtime_get_sync(dev->dev.parent); 42 43 if (!netif_device_present(dev) || 44 dev->reg_state == NETREG_UNREGISTERING) { 45 ret = -ENODEV; 46 goto err; 47 } 48 49 if (dev->ethtool_ops->begin) { 50 ret = dev->ethtool_ops->begin(dev); 51 if (ret) 52 goto err; 53 } 54 55 return 0; 56 err: 57 if (dev->dev.parent) 58 pm_runtime_put(dev->dev.parent); 59 60 return ret; 61 } 62 63 void ethnl_ops_complete(struct net_device *dev) 64 { 65 if (dev->ethtool_ops->complete) 66 dev->ethtool_ops->complete(dev); 67 68 if (dev->dev.parent) 69 pm_runtime_put(dev->dev.parent); 70 } 71 72 /** 73 * ethnl_parse_header_dev_get() - parse request header 74 * @req_info: structure to put results into 75 * @header: nest attribute with request header 76 * @net: request netns 77 * @extack: netlink extack for error reporting 78 * @require_dev: fail if no device identified in header 79 * 80 * Parse request header in nested attribute @nest and puts results into 81 * the structure pointed to by @req_info. Extack from @info is used for error 82 * reporting. If req_info->dev is not null on return, reference to it has 83 * been taken. If error is returned, *req_info is null initialized and no 84 * reference is held. 85 * 86 * Return: 0 on success or negative error code 87 */ 88 int ethnl_parse_header_dev_get(struct ethnl_req_info *req_info, 89 const struct nlattr *header, struct net *net, 90 struct netlink_ext_ack *extack, bool require_dev) 91 { 92 struct nlattr *tb[ARRAY_SIZE(ethnl_header_policy)]; 93 const struct nlattr *devname_attr; 94 struct net_device *dev = NULL; 95 u32 flags = 0; 96 int ret; 97 98 if (!header) { 99 if (!require_dev) 100 return 0; 101 NL_SET_ERR_MSG(extack, "request header missing"); 102 return -EINVAL; 103 } 104 /* No validation here, command policy should have a nested policy set 105 * for the header, therefore validation should have already been done. 106 */ 107 ret = nla_parse_nested(tb, ARRAY_SIZE(ethnl_header_policy) - 1, header, 108 NULL, extack); 109 if (ret < 0) 110 return ret; 111 if (tb[ETHTOOL_A_HEADER_FLAGS]) 112 flags = nla_get_u32(tb[ETHTOOL_A_HEADER_FLAGS]); 113 114 devname_attr = tb[ETHTOOL_A_HEADER_DEV_NAME]; 115 if (tb[ETHTOOL_A_HEADER_DEV_INDEX]) { 116 u32 ifindex = nla_get_u32(tb[ETHTOOL_A_HEADER_DEV_INDEX]); 117 118 dev = netdev_get_by_index(net, ifindex, &req_info->dev_tracker, 119 GFP_KERNEL); 120 if (!dev) { 121 NL_SET_ERR_MSG_ATTR(extack, 122 tb[ETHTOOL_A_HEADER_DEV_INDEX], 123 "no device matches ifindex"); 124 return -ENODEV; 125 } 126 /* if both ifindex and ifname are passed, they must match */ 127 if (devname_attr && 128 strncmp(dev->name, nla_data(devname_attr), IFNAMSIZ)) { 129 netdev_put(dev, &req_info->dev_tracker); 130 NL_SET_ERR_MSG_ATTR(extack, header, 131 "ifindex and name do not match"); 132 return -ENODEV; 133 } 134 } else if (devname_attr) { 135 dev = netdev_get_by_name(net, nla_data(devname_attr), 136 &req_info->dev_tracker, GFP_KERNEL); 137 if (!dev) { 138 NL_SET_ERR_MSG_ATTR(extack, devname_attr, 139 "no device matches name"); 140 return -ENODEV; 141 } 142 } else if (require_dev) { 143 NL_SET_ERR_MSG_ATTR(extack, header, 144 "neither ifindex nor name specified"); 145 return -EINVAL; 146 } 147 148 req_info->dev = dev; 149 req_info->flags = flags; 150 return 0; 151 } 152 153 /** 154 * ethnl_fill_reply_header() - Put common header into a reply message 155 * @skb: skb with the message 156 * @dev: network device to describe in header 157 * @attrtype: attribute type to use for the nest 158 * 159 * Create a nested attribute with attributes describing given network device. 160 * 161 * Return: 0 on success, error value (-EMSGSIZE only) on error 162 */ 163 int ethnl_fill_reply_header(struct sk_buff *skb, struct net_device *dev, 164 u16 attrtype) 165 { 166 struct nlattr *nest; 167 168 if (!dev) 169 return 0; 170 nest = nla_nest_start(skb, attrtype); 171 if (!nest) 172 return -EMSGSIZE; 173 174 if (nla_put_u32(skb, ETHTOOL_A_HEADER_DEV_INDEX, (u32)dev->ifindex) || 175 nla_put_string(skb, ETHTOOL_A_HEADER_DEV_NAME, dev->name)) 176 goto nla_put_failure; 177 /* If more attributes are put into reply header, ethnl_header_size() 178 * must be updated to account for them. 179 */ 180 181 nla_nest_end(skb, nest); 182 return 0; 183 184 nla_put_failure: 185 nla_nest_cancel(skb, nest); 186 return -EMSGSIZE; 187 } 188 189 /** 190 * ethnl_reply_init() - Create skb for a reply and fill device identification 191 * @payload: payload length (without netlink and genetlink header) 192 * @dev: device the reply is about (may be null) 193 * @cmd: ETHTOOL_MSG_* message type for reply 194 * @hdr_attrtype: attribute type for common header 195 * @info: genetlink info of the received packet we respond to 196 * @ehdrp: place to store payload pointer returned by genlmsg_new() 197 * 198 * Return: pointer to allocated skb on success, NULL on error 199 */ 200 struct sk_buff *ethnl_reply_init(size_t payload, struct net_device *dev, u8 cmd, 201 u16 hdr_attrtype, struct genl_info *info, 202 void **ehdrp) 203 { 204 struct sk_buff *skb; 205 206 skb = genlmsg_new(payload, GFP_KERNEL); 207 if (!skb) 208 goto err; 209 *ehdrp = genlmsg_put_reply(skb, info, ðtool_genl_family, 0, cmd); 210 if (!*ehdrp) 211 goto err_free; 212 213 if (dev) { 214 int ret; 215 216 ret = ethnl_fill_reply_header(skb, dev, hdr_attrtype); 217 if (ret < 0) 218 goto err_free; 219 } 220 return skb; 221 222 err_free: 223 nlmsg_free(skb); 224 err: 225 if (info) 226 GENL_SET_ERR_MSG(info, "failed to setup reply message"); 227 return NULL; 228 } 229 230 void *ethnl_dump_put(struct sk_buff *skb, struct netlink_callback *cb, u8 cmd) 231 { 232 return genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq, 233 ðtool_genl_family, 0, cmd); 234 } 235 236 void *ethnl_bcastmsg_put(struct sk_buff *skb, u8 cmd) 237 { 238 return genlmsg_put(skb, 0, ++ethnl_bcast_seq, ðtool_genl_family, 0, 239 cmd); 240 } 241 242 int ethnl_multicast(struct sk_buff *skb, struct net_device *dev) 243 { 244 return genlmsg_multicast_netns(ðtool_genl_family, dev_net(dev), skb, 245 0, ETHNL_MCGRP_MONITOR, GFP_KERNEL); 246 } 247 248 /* GET request helpers */ 249 250 /** 251 * struct ethnl_dump_ctx - context structure for generic dumpit() callback 252 * @ops: request ops of currently processed message type 253 * @req_info: parsed request header of processed request 254 * @reply_data: data needed to compose the reply 255 * @pos_ifindex: saved iteration position - ifindex 256 * 257 * These parameters are kept in struct netlink_callback as context preserved 258 * between iterations. They are initialized by ethnl_default_start() and used 259 * in ethnl_default_dumpit() and ethnl_default_done(). 260 */ 261 struct ethnl_dump_ctx { 262 const struct ethnl_request_ops *ops; 263 struct ethnl_req_info *req_info; 264 struct ethnl_reply_data *reply_data; 265 unsigned long pos_ifindex; 266 }; 267 268 static const struct ethnl_request_ops * 269 ethnl_default_requests[__ETHTOOL_MSG_USER_CNT] = { 270 [ETHTOOL_MSG_STRSET_GET] = ðnl_strset_request_ops, 271 [ETHTOOL_MSG_LINKINFO_GET] = ðnl_linkinfo_request_ops, 272 [ETHTOOL_MSG_LINKINFO_SET] = ðnl_linkinfo_request_ops, 273 [ETHTOOL_MSG_LINKMODES_GET] = ðnl_linkmodes_request_ops, 274 [ETHTOOL_MSG_LINKMODES_SET] = ðnl_linkmodes_request_ops, 275 [ETHTOOL_MSG_LINKSTATE_GET] = ðnl_linkstate_request_ops, 276 [ETHTOOL_MSG_DEBUG_GET] = ðnl_debug_request_ops, 277 [ETHTOOL_MSG_DEBUG_SET] = ðnl_debug_request_ops, 278 [ETHTOOL_MSG_WOL_GET] = ðnl_wol_request_ops, 279 [ETHTOOL_MSG_WOL_SET] = ðnl_wol_request_ops, 280 [ETHTOOL_MSG_FEATURES_GET] = ðnl_features_request_ops, 281 [ETHTOOL_MSG_PRIVFLAGS_GET] = ðnl_privflags_request_ops, 282 [ETHTOOL_MSG_PRIVFLAGS_SET] = ðnl_privflags_request_ops, 283 [ETHTOOL_MSG_RINGS_GET] = ðnl_rings_request_ops, 284 [ETHTOOL_MSG_RINGS_SET] = ðnl_rings_request_ops, 285 [ETHTOOL_MSG_CHANNELS_GET] = ðnl_channels_request_ops, 286 [ETHTOOL_MSG_CHANNELS_SET] = ðnl_channels_request_ops, 287 [ETHTOOL_MSG_COALESCE_GET] = ðnl_coalesce_request_ops, 288 [ETHTOOL_MSG_COALESCE_SET] = ðnl_coalesce_request_ops, 289 [ETHTOOL_MSG_PAUSE_GET] = ðnl_pause_request_ops, 290 [ETHTOOL_MSG_PAUSE_SET] = ðnl_pause_request_ops, 291 [ETHTOOL_MSG_EEE_GET] = ðnl_eee_request_ops, 292 [ETHTOOL_MSG_EEE_SET] = ðnl_eee_request_ops, 293 [ETHTOOL_MSG_FEC_GET] = ðnl_fec_request_ops, 294 [ETHTOOL_MSG_FEC_SET] = ðnl_fec_request_ops, 295 [ETHTOOL_MSG_TSINFO_GET] = ðnl_tsinfo_request_ops, 296 [ETHTOOL_MSG_MODULE_EEPROM_GET] = ðnl_module_eeprom_request_ops, 297 [ETHTOOL_MSG_STATS_GET] = ðnl_stats_request_ops, 298 [ETHTOOL_MSG_PHC_VCLOCKS_GET] = ðnl_phc_vclocks_request_ops, 299 [ETHTOOL_MSG_MODULE_GET] = ðnl_module_request_ops, 300 [ETHTOOL_MSG_MODULE_SET] = ðnl_module_request_ops, 301 [ETHTOOL_MSG_PSE_GET] = ðnl_pse_request_ops, 302 [ETHTOOL_MSG_PSE_SET] = ðnl_pse_request_ops, 303 [ETHTOOL_MSG_RSS_GET] = ðnl_rss_request_ops, 304 [ETHTOOL_MSG_PLCA_GET_CFG] = ðnl_plca_cfg_request_ops, 305 [ETHTOOL_MSG_PLCA_SET_CFG] = ðnl_plca_cfg_request_ops, 306 [ETHTOOL_MSG_PLCA_GET_STATUS] = ðnl_plca_status_request_ops, 307 [ETHTOOL_MSG_MM_GET] = ðnl_mm_request_ops, 308 [ETHTOOL_MSG_MM_SET] = ðnl_mm_request_ops, 309 [ETHTOOL_MSG_TS_GET] = ðnl_ts_request_ops, 310 [ETHTOOL_MSG_TS_LIST_GET] = ðnl_ts_list_request_ops, 311 [ETHTOOL_MSG_TS_SET] = ðnl_ts_request_ops, 312 }; 313 314 static struct ethnl_dump_ctx *ethnl_dump_context(struct netlink_callback *cb) 315 { 316 return (struct ethnl_dump_ctx *)cb->ctx; 317 } 318 319 /** 320 * ethnl_default_parse() - Parse request message 321 * @req_info: pointer to structure to put data into 322 * @info: genl_info from the request 323 * @request_ops: struct request_ops for request type 324 * @require_dev: fail if no device identified in header 325 * 326 * Parse universal request header and call request specific ->parse_request() 327 * callback (if defined) to parse the rest of the message. 328 * 329 * Return: 0 on success or negative error code 330 */ 331 static int ethnl_default_parse(struct ethnl_req_info *req_info, 332 const struct genl_info *info, 333 const struct ethnl_request_ops *request_ops, 334 bool require_dev) 335 { 336 struct nlattr **tb = info->attrs; 337 int ret; 338 339 ret = ethnl_parse_header_dev_get(req_info, tb[request_ops->hdr_attr], 340 genl_info_net(info), info->extack, 341 require_dev); 342 if (ret < 0) 343 return ret; 344 345 if (request_ops->parse_request) { 346 ret = request_ops->parse_request(req_info, tb, info->extack); 347 if (ret < 0) 348 return ret; 349 } 350 351 return 0; 352 } 353 354 /** 355 * ethnl_init_reply_data() - Initialize reply data for GET request 356 * @reply_data: pointer to embedded struct ethnl_reply_data 357 * @ops: instance of struct ethnl_request_ops describing the layout 358 * @dev: network device to initialize the reply for 359 * 360 * Fills the reply data part with zeros and sets the dev member. Must be called 361 * before calling the ->fill_reply() callback (for each iteration when handling 362 * dump requests). 363 */ 364 static void ethnl_init_reply_data(struct ethnl_reply_data *reply_data, 365 const struct ethnl_request_ops *ops, 366 struct net_device *dev) 367 { 368 memset(reply_data, 0, ops->reply_data_size); 369 reply_data->dev = dev; 370 } 371 372 /* default ->doit() handler for GET type requests */ 373 static int ethnl_default_doit(struct sk_buff *skb, struct genl_info *info) 374 { 375 struct ethnl_reply_data *reply_data = NULL; 376 struct ethnl_req_info *req_info = NULL; 377 const u8 cmd = info->genlhdr->cmd; 378 const struct ethnl_request_ops *ops; 379 int hdr_len, reply_len; 380 struct sk_buff *rskb; 381 void *reply_payload; 382 int ret; 383 384 ops = ethnl_default_requests[cmd]; 385 if (WARN_ONCE(!ops, "cmd %u has no ethnl_request_ops\n", cmd)) 386 return -EOPNOTSUPP; 387 if (GENL_REQ_ATTR_CHECK(info, ops->hdr_attr)) 388 return -EINVAL; 389 390 req_info = kzalloc(ops->req_info_size, GFP_KERNEL); 391 if (!req_info) 392 return -ENOMEM; 393 reply_data = kmalloc(ops->reply_data_size, GFP_KERNEL); 394 if (!reply_data) { 395 kfree(req_info); 396 return -ENOMEM; 397 } 398 399 ret = ethnl_default_parse(req_info, info, ops, !ops->allow_nodev_do); 400 if (ret < 0) 401 goto err_dev; 402 ethnl_init_reply_data(reply_data, ops, req_info->dev); 403 404 rtnl_lock(); 405 ret = ops->prepare_data(req_info, reply_data, info); 406 rtnl_unlock(); 407 if (ret < 0) 408 goto err_cleanup; 409 ret = ops->reply_size(req_info, reply_data); 410 if (ret < 0) 411 goto err_cleanup; 412 reply_len = ret; 413 ret = -ENOMEM; 414 rskb = ethnl_reply_init(reply_len + ethnl_reply_header_size(), 415 req_info->dev, ops->reply_cmd, 416 ops->hdr_attr, info, &reply_payload); 417 if (!rskb) 418 goto err_cleanup; 419 hdr_len = rskb->len; 420 ret = ops->fill_reply(rskb, req_info, reply_data); 421 if (ret < 0) 422 goto err_msg; 423 WARN_ONCE(rskb->len - hdr_len > reply_len, 424 "ethnl cmd %d: calculated reply length %d, but consumed %d\n", 425 cmd, reply_len, rskb->len - hdr_len); 426 if (ops->cleanup_data) 427 ops->cleanup_data(reply_data); 428 429 genlmsg_end(rskb, reply_payload); 430 netdev_put(req_info->dev, &req_info->dev_tracker); 431 kfree(reply_data); 432 kfree(req_info); 433 return genlmsg_reply(rskb, info); 434 435 err_msg: 436 WARN_ONCE(ret == -EMSGSIZE, "calculated message payload length (%d) not sufficient\n", reply_len); 437 nlmsg_free(rskb); 438 err_cleanup: 439 if (ops->cleanup_data) 440 ops->cleanup_data(reply_data); 441 err_dev: 442 netdev_put(req_info->dev, &req_info->dev_tracker); 443 kfree(reply_data); 444 kfree(req_info); 445 return ret; 446 } 447 448 static int ethnl_default_dump_one(struct sk_buff *skb, struct net_device *dev, 449 const struct ethnl_dump_ctx *ctx, 450 const struct genl_info *info) 451 { 452 void *ehdr; 453 int ret; 454 455 ehdr = genlmsg_put(skb, info->snd_portid, info->snd_seq, 456 ðtool_genl_family, NLM_F_MULTI, 457 ctx->ops->reply_cmd); 458 if (!ehdr) 459 return -EMSGSIZE; 460 461 ethnl_init_reply_data(ctx->reply_data, ctx->ops, dev); 462 rtnl_lock(); 463 ret = ctx->ops->prepare_data(ctx->req_info, ctx->reply_data, info); 464 rtnl_unlock(); 465 if (ret < 0) 466 goto out; 467 ret = ethnl_fill_reply_header(skb, dev, ctx->ops->hdr_attr); 468 if (ret < 0) 469 goto out; 470 ret = ctx->ops->fill_reply(skb, ctx->req_info, ctx->reply_data); 471 472 out: 473 if (ctx->ops->cleanup_data) 474 ctx->ops->cleanup_data(ctx->reply_data); 475 ctx->reply_data->dev = NULL; 476 if (ret < 0) 477 genlmsg_cancel(skb, ehdr); 478 else 479 genlmsg_end(skb, ehdr); 480 return ret; 481 } 482 483 /* Default ->dumpit() handler for GET requests. Device iteration copied from 484 * rtnl_dump_ifinfo(); we have to be more careful about device hashtable 485 * persistence as we cannot guarantee to hold RTNL lock through the whole 486 * function as rtnetnlink does. 487 */ 488 static int ethnl_default_dumpit(struct sk_buff *skb, 489 struct netlink_callback *cb) 490 { 491 struct ethnl_dump_ctx *ctx = ethnl_dump_context(cb); 492 struct net *net = sock_net(skb->sk); 493 struct net_device *dev; 494 int ret = 0; 495 496 rtnl_lock(); 497 for_each_netdev_dump(net, dev, ctx->pos_ifindex) { 498 dev_hold(dev); 499 rtnl_unlock(); 500 501 ret = ethnl_default_dump_one(skb, dev, ctx, genl_info_dump(cb)); 502 503 rtnl_lock(); 504 dev_put(dev); 505 506 if (ret < 0 && ret != -EOPNOTSUPP) { 507 if (likely(skb->len)) 508 ret = skb->len; 509 break; 510 } 511 } 512 rtnl_unlock(); 513 514 return ret; 515 } 516 517 /* generic ->start() handler for GET requests */ 518 static int ethnl_default_start(struct netlink_callback *cb) 519 { 520 const struct genl_dumpit_info *info = genl_dumpit_info(cb); 521 struct ethnl_dump_ctx *ctx = ethnl_dump_context(cb); 522 struct ethnl_reply_data *reply_data; 523 const struct ethnl_request_ops *ops; 524 struct ethnl_req_info *req_info; 525 struct genlmsghdr *ghdr; 526 int ret; 527 528 BUILD_BUG_ON(sizeof(*ctx) > sizeof(cb->ctx)); 529 530 ghdr = nlmsg_data(cb->nlh); 531 ops = ethnl_default_requests[ghdr->cmd]; 532 if (WARN_ONCE(!ops, "cmd %u has no ethnl_request_ops\n", ghdr->cmd)) 533 return -EOPNOTSUPP; 534 req_info = kzalloc(ops->req_info_size, GFP_KERNEL); 535 if (!req_info) 536 return -ENOMEM; 537 reply_data = kmalloc(ops->reply_data_size, GFP_KERNEL); 538 if (!reply_data) { 539 ret = -ENOMEM; 540 goto free_req_info; 541 } 542 543 ret = ethnl_default_parse(req_info, &info->info, ops, false); 544 if (req_info->dev) { 545 /* We ignore device specification in dump requests but as the 546 * same parser as for non-dump (doit) requests is used, it 547 * would take reference to the device if it finds one 548 */ 549 netdev_put(req_info->dev, &req_info->dev_tracker); 550 req_info->dev = NULL; 551 } 552 if (ret < 0) 553 goto free_reply_data; 554 555 ctx->ops = ops; 556 ctx->req_info = req_info; 557 ctx->reply_data = reply_data; 558 ctx->pos_ifindex = 0; 559 560 return 0; 561 562 free_reply_data: 563 kfree(reply_data); 564 free_req_info: 565 kfree(req_info); 566 567 return ret; 568 } 569 570 /* default ->done() handler for GET requests */ 571 static int ethnl_default_done(struct netlink_callback *cb) 572 { 573 struct ethnl_dump_ctx *ctx = ethnl_dump_context(cb); 574 575 kfree(ctx->reply_data); 576 kfree(ctx->req_info); 577 578 return 0; 579 } 580 581 static int ethnl_default_set_doit(struct sk_buff *skb, struct genl_info *info) 582 { 583 const struct ethnl_request_ops *ops; 584 struct ethnl_req_info req_info = {}; 585 const u8 cmd = info->genlhdr->cmd; 586 int ret; 587 588 ops = ethnl_default_requests[cmd]; 589 if (WARN_ONCE(!ops, "cmd %u has no ethnl_request_ops\n", cmd)) 590 return -EOPNOTSUPP; 591 if (GENL_REQ_ATTR_CHECK(info, ops->hdr_attr)) 592 return -EINVAL; 593 594 ret = ethnl_parse_header_dev_get(&req_info, info->attrs[ops->hdr_attr], 595 genl_info_net(info), info->extack, 596 true); 597 if (ret < 0) 598 return ret; 599 600 if (ops->set_validate) { 601 ret = ops->set_validate(&req_info, info); 602 /* 0 means nothing to do */ 603 if (ret <= 0) 604 goto out_dev; 605 } 606 607 rtnl_lock(); 608 ret = ethnl_ops_begin(req_info.dev); 609 if (ret < 0) 610 goto out_rtnl; 611 612 ret = ops->set(&req_info, info); 613 if (ret <= 0) 614 goto out_ops; 615 ethtool_notify(req_info.dev, ops->set_ntf_cmd, NULL); 616 617 ret = 0; 618 out_ops: 619 ethnl_ops_complete(req_info.dev); 620 out_rtnl: 621 rtnl_unlock(); 622 out_dev: 623 ethnl_parse_header_dev_put(&req_info); 624 return ret; 625 } 626 627 static const struct ethnl_request_ops * 628 ethnl_default_notify_ops[ETHTOOL_MSG_KERNEL_MAX + 1] = { 629 [ETHTOOL_MSG_LINKINFO_NTF] = ðnl_linkinfo_request_ops, 630 [ETHTOOL_MSG_LINKMODES_NTF] = ðnl_linkmodes_request_ops, 631 [ETHTOOL_MSG_DEBUG_NTF] = ðnl_debug_request_ops, 632 [ETHTOOL_MSG_WOL_NTF] = ðnl_wol_request_ops, 633 [ETHTOOL_MSG_FEATURES_NTF] = ðnl_features_request_ops, 634 [ETHTOOL_MSG_PRIVFLAGS_NTF] = ðnl_privflags_request_ops, 635 [ETHTOOL_MSG_RINGS_NTF] = ðnl_rings_request_ops, 636 [ETHTOOL_MSG_CHANNELS_NTF] = ðnl_channels_request_ops, 637 [ETHTOOL_MSG_COALESCE_NTF] = ðnl_coalesce_request_ops, 638 [ETHTOOL_MSG_PAUSE_NTF] = ðnl_pause_request_ops, 639 [ETHTOOL_MSG_EEE_NTF] = ðnl_eee_request_ops, 640 [ETHTOOL_MSG_FEC_NTF] = ðnl_fec_request_ops, 641 [ETHTOOL_MSG_MODULE_NTF] = ðnl_module_request_ops, 642 [ETHTOOL_MSG_PLCA_NTF] = ðnl_plca_cfg_request_ops, 643 [ETHTOOL_MSG_MM_NTF] = ðnl_mm_request_ops, 644 }; 645 646 /* default notification handler */ 647 static void ethnl_default_notify(struct net_device *dev, unsigned int cmd, 648 const void *data) 649 { 650 struct ethnl_reply_data *reply_data; 651 const struct ethnl_request_ops *ops; 652 struct ethnl_req_info *req_info; 653 struct genl_info info; 654 struct sk_buff *skb; 655 void *reply_payload; 656 int reply_len; 657 int ret; 658 659 genl_info_init_ntf(&info, ðtool_genl_family, cmd); 660 661 if (WARN_ONCE(cmd > ETHTOOL_MSG_KERNEL_MAX || 662 !ethnl_default_notify_ops[cmd], 663 "unexpected notification type %u\n", cmd)) 664 return; 665 ops = ethnl_default_notify_ops[cmd]; 666 req_info = kzalloc(ops->req_info_size, GFP_KERNEL); 667 if (!req_info) 668 return; 669 reply_data = kmalloc(ops->reply_data_size, GFP_KERNEL); 670 if (!reply_data) { 671 kfree(req_info); 672 return; 673 } 674 675 req_info->dev = dev; 676 req_info->flags |= ETHTOOL_FLAG_COMPACT_BITSETS; 677 678 ethnl_init_reply_data(reply_data, ops, dev); 679 ret = ops->prepare_data(req_info, reply_data, &info); 680 if (ret < 0) 681 goto err_cleanup; 682 ret = ops->reply_size(req_info, reply_data); 683 if (ret < 0) 684 goto err_cleanup; 685 reply_len = ret + ethnl_reply_header_size(); 686 skb = genlmsg_new(reply_len, GFP_KERNEL); 687 if (!skb) 688 goto err_cleanup; 689 reply_payload = ethnl_bcastmsg_put(skb, cmd); 690 if (!reply_payload) 691 goto err_skb; 692 ret = ethnl_fill_reply_header(skb, dev, ops->hdr_attr); 693 if (ret < 0) 694 goto err_msg; 695 ret = ops->fill_reply(skb, req_info, reply_data); 696 if (ret < 0) 697 goto err_msg; 698 if (ops->cleanup_data) 699 ops->cleanup_data(reply_data); 700 701 genlmsg_end(skb, reply_payload); 702 kfree(reply_data); 703 kfree(req_info); 704 ethnl_multicast(skb, dev); 705 return; 706 707 err_msg: 708 WARN_ONCE(ret == -EMSGSIZE, 709 "calculated message payload length (%d) not sufficient\n", 710 reply_len); 711 err_skb: 712 nlmsg_free(skb); 713 err_cleanup: 714 if (ops->cleanup_data) 715 ops->cleanup_data(reply_data); 716 kfree(reply_data); 717 kfree(req_info); 718 return; 719 } 720 721 /* notifications */ 722 723 typedef void (*ethnl_notify_handler_t)(struct net_device *dev, unsigned int cmd, 724 const void *data); 725 726 static const ethnl_notify_handler_t ethnl_notify_handlers[] = { 727 [ETHTOOL_MSG_LINKINFO_NTF] = ethnl_default_notify, 728 [ETHTOOL_MSG_LINKMODES_NTF] = ethnl_default_notify, 729 [ETHTOOL_MSG_DEBUG_NTF] = ethnl_default_notify, 730 [ETHTOOL_MSG_WOL_NTF] = ethnl_default_notify, 731 [ETHTOOL_MSG_FEATURES_NTF] = ethnl_default_notify, 732 [ETHTOOL_MSG_PRIVFLAGS_NTF] = ethnl_default_notify, 733 [ETHTOOL_MSG_RINGS_NTF] = ethnl_default_notify, 734 [ETHTOOL_MSG_CHANNELS_NTF] = ethnl_default_notify, 735 [ETHTOOL_MSG_COALESCE_NTF] = ethnl_default_notify, 736 [ETHTOOL_MSG_PAUSE_NTF] = ethnl_default_notify, 737 [ETHTOOL_MSG_EEE_NTF] = ethnl_default_notify, 738 [ETHTOOL_MSG_FEC_NTF] = ethnl_default_notify, 739 [ETHTOOL_MSG_MODULE_NTF] = ethnl_default_notify, 740 [ETHTOOL_MSG_PLCA_NTF] = ethnl_default_notify, 741 [ETHTOOL_MSG_MM_NTF] = ethnl_default_notify, 742 }; 743 744 void ethtool_notify(struct net_device *dev, unsigned int cmd, const void *data) 745 { 746 if (unlikely(!ethnl_ok)) 747 return; 748 ASSERT_RTNL(); 749 750 if (likely(cmd < ARRAY_SIZE(ethnl_notify_handlers) && 751 ethnl_notify_handlers[cmd])) 752 ethnl_notify_handlers[cmd](dev, cmd, data); 753 else 754 WARN_ONCE(1, "notification %u not implemented (dev=%s)\n", 755 cmd, netdev_name(dev)); 756 } 757 EXPORT_SYMBOL(ethtool_notify); 758 759 static void ethnl_notify_features(struct netdev_notifier_info *info) 760 { 761 struct net_device *dev = netdev_notifier_info_to_dev(info); 762 763 ethtool_notify(dev, ETHTOOL_MSG_FEATURES_NTF, NULL); 764 } 765 766 static int ethnl_netdev_event(struct notifier_block *this, unsigned long event, 767 void *ptr) 768 { 769 switch (event) { 770 case NETDEV_FEAT_CHANGE: 771 ethnl_notify_features(ptr); 772 break; 773 } 774 775 return NOTIFY_DONE; 776 } 777 778 static struct notifier_block ethnl_netdev_notifier = { 779 .notifier_call = ethnl_netdev_event, 780 }; 781 782 /* genetlink setup */ 783 784 static const struct genl_ops ethtool_genl_ops[] = { 785 { 786 .cmd = ETHTOOL_MSG_STRSET_GET, 787 .doit = ethnl_default_doit, 788 .start = ethnl_default_start, 789 .dumpit = ethnl_default_dumpit, 790 .done = ethnl_default_done, 791 .policy = ethnl_strset_get_policy, 792 .maxattr = ARRAY_SIZE(ethnl_strset_get_policy) - 1, 793 }, 794 { 795 .cmd = ETHTOOL_MSG_LINKINFO_GET, 796 .doit = ethnl_default_doit, 797 .start = ethnl_default_start, 798 .dumpit = ethnl_default_dumpit, 799 .done = ethnl_default_done, 800 .policy = ethnl_linkinfo_get_policy, 801 .maxattr = ARRAY_SIZE(ethnl_linkinfo_get_policy) - 1, 802 }, 803 { 804 .cmd = ETHTOOL_MSG_LINKINFO_SET, 805 .flags = GENL_UNS_ADMIN_PERM, 806 .doit = ethnl_default_set_doit, 807 .policy = ethnl_linkinfo_set_policy, 808 .maxattr = ARRAY_SIZE(ethnl_linkinfo_set_policy) - 1, 809 }, 810 { 811 .cmd = ETHTOOL_MSG_LINKMODES_GET, 812 .doit = ethnl_default_doit, 813 .start = ethnl_default_start, 814 .dumpit = ethnl_default_dumpit, 815 .done = ethnl_default_done, 816 .policy = ethnl_linkmodes_get_policy, 817 .maxattr = ARRAY_SIZE(ethnl_linkmodes_get_policy) - 1, 818 }, 819 { 820 .cmd = ETHTOOL_MSG_LINKMODES_SET, 821 .flags = GENL_UNS_ADMIN_PERM, 822 .doit = ethnl_default_set_doit, 823 .policy = ethnl_linkmodes_set_policy, 824 .maxattr = ARRAY_SIZE(ethnl_linkmodes_set_policy) - 1, 825 }, 826 { 827 .cmd = ETHTOOL_MSG_LINKSTATE_GET, 828 .doit = ethnl_default_doit, 829 .start = ethnl_default_start, 830 .dumpit = ethnl_default_dumpit, 831 .done = ethnl_default_done, 832 .policy = ethnl_linkstate_get_policy, 833 .maxattr = ARRAY_SIZE(ethnl_linkstate_get_policy) - 1, 834 }, 835 { 836 .cmd = ETHTOOL_MSG_DEBUG_GET, 837 .doit = ethnl_default_doit, 838 .start = ethnl_default_start, 839 .dumpit = ethnl_default_dumpit, 840 .done = ethnl_default_done, 841 .policy = ethnl_debug_get_policy, 842 .maxattr = ARRAY_SIZE(ethnl_debug_get_policy) - 1, 843 }, 844 { 845 .cmd = ETHTOOL_MSG_DEBUG_SET, 846 .flags = GENL_UNS_ADMIN_PERM, 847 .doit = ethnl_default_set_doit, 848 .policy = ethnl_debug_set_policy, 849 .maxattr = ARRAY_SIZE(ethnl_debug_set_policy) - 1, 850 }, 851 { 852 .cmd = ETHTOOL_MSG_WOL_GET, 853 .flags = GENL_UNS_ADMIN_PERM, 854 .doit = ethnl_default_doit, 855 .start = ethnl_default_start, 856 .dumpit = ethnl_default_dumpit, 857 .done = ethnl_default_done, 858 .policy = ethnl_wol_get_policy, 859 .maxattr = ARRAY_SIZE(ethnl_wol_get_policy) - 1, 860 }, 861 { 862 .cmd = ETHTOOL_MSG_WOL_SET, 863 .flags = GENL_UNS_ADMIN_PERM, 864 .doit = ethnl_default_set_doit, 865 .policy = ethnl_wol_set_policy, 866 .maxattr = ARRAY_SIZE(ethnl_wol_set_policy) - 1, 867 }, 868 { 869 .cmd = ETHTOOL_MSG_FEATURES_GET, 870 .doit = ethnl_default_doit, 871 .start = ethnl_default_start, 872 .dumpit = ethnl_default_dumpit, 873 .done = ethnl_default_done, 874 .policy = ethnl_features_get_policy, 875 .maxattr = ARRAY_SIZE(ethnl_features_get_policy) - 1, 876 }, 877 { 878 .cmd = ETHTOOL_MSG_FEATURES_SET, 879 .flags = GENL_UNS_ADMIN_PERM, 880 .doit = ethnl_set_features, 881 .policy = ethnl_features_set_policy, 882 .maxattr = ARRAY_SIZE(ethnl_features_set_policy) - 1, 883 }, 884 { 885 .cmd = ETHTOOL_MSG_PRIVFLAGS_GET, 886 .doit = ethnl_default_doit, 887 .start = ethnl_default_start, 888 .dumpit = ethnl_default_dumpit, 889 .done = ethnl_default_done, 890 .policy = ethnl_privflags_get_policy, 891 .maxattr = ARRAY_SIZE(ethnl_privflags_get_policy) - 1, 892 }, 893 { 894 .cmd = ETHTOOL_MSG_PRIVFLAGS_SET, 895 .flags = GENL_UNS_ADMIN_PERM, 896 .doit = ethnl_default_set_doit, 897 .policy = ethnl_privflags_set_policy, 898 .maxattr = ARRAY_SIZE(ethnl_privflags_set_policy) - 1, 899 }, 900 { 901 .cmd = ETHTOOL_MSG_RINGS_GET, 902 .doit = ethnl_default_doit, 903 .start = ethnl_default_start, 904 .dumpit = ethnl_default_dumpit, 905 .done = ethnl_default_done, 906 .policy = ethnl_rings_get_policy, 907 .maxattr = ARRAY_SIZE(ethnl_rings_get_policy) - 1, 908 }, 909 { 910 .cmd = ETHTOOL_MSG_RINGS_SET, 911 .flags = GENL_UNS_ADMIN_PERM, 912 .doit = ethnl_default_set_doit, 913 .policy = ethnl_rings_set_policy, 914 .maxattr = ARRAY_SIZE(ethnl_rings_set_policy) - 1, 915 }, 916 { 917 .cmd = ETHTOOL_MSG_CHANNELS_GET, 918 .doit = ethnl_default_doit, 919 .start = ethnl_default_start, 920 .dumpit = ethnl_default_dumpit, 921 .done = ethnl_default_done, 922 .policy = ethnl_channels_get_policy, 923 .maxattr = ARRAY_SIZE(ethnl_channels_get_policy) - 1, 924 }, 925 { 926 .cmd = ETHTOOL_MSG_CHANNELS_SET, 927 .flags = GENL_UNS_ADMIN_PERM, 928 .doit = ethnl_default_set_doit, 929 .policy = ethnl_channels_set_policy, 930 .maxattr = ARRAY_SIZE(ethnl_channels_set_policy) - 1, 931 }, 932 { 933 .cmd = ETHTOOL_MSG_COALESCE_GET, 934 .doit = ethnl_default_doit, 935 .start = ethnl_default_start, 936 .dumpit = ethnl_default_dumpit, 937 .done = ethnl_default_done, 938 .policy = ethnl_coalesce_get_policy, 939 .maxattr = ARRAY_SIZE(ethnl_coalesce_get_policy) - 1, 940 }, 941 { 942 .cmd = ETHTOOL_MSG_COALESCE_SET, 943 .flags = GENL_UNS_ADMIN_PERM, 944 .doit = ethnl_default_set_doit, 945 .policy = ethnl_coalesce_set_policy, 946 .maxattr = ARRAY_SIZE(ethnl_coalesce_set_policy) - 1, 947 }, 948 { 949 .cmd = ETHTOOL_MSG_PAUSE_GET, 950 .doit = ethnl_default_doit, 951 .start = ethnl_default_start, 952 .dumpit = ethnl_default_dumpit, 953 .done = ethnl_default_done, 954 .policy = ethnl_pause_get_policy, 955 .maxattr = ARRAY_SIZE(ethnl_pause_get_policy) - 1, 956 }, 957 { 958 .cmd = ETHTOOL_MSG_PAUSE_SET, 959 .flags = GENL_UNS_ADMIN_PERM, 960 .doit = ethnl_default_set_doit, 961 .policy = ethnl_pause_set_policy, 962 .maxattr = ARRAY_SIZE(ethnl_pause_set_policy) - 1, 963 }, 964 { 965 .cmd = ETHTOOL_MSG_EEE_GET, 966 .doit = ethnl_default_doit, 967 .start = ethnl_default_start, 968 .dumpit = ethnl_default_dumpit, 969 .done = ethnl_default_done, 970 .policy = ethnl_eee_get_policy, 971 .maxattr = ARRAY_SIZE(ethnl_eee_get_policy) - 1, 972 }, 973 { 974 .cmd = ETHTOOL_MSG_EEE_SET, 975 .flags = GENL_UNS_ADMIN_PERM, 976 .doit = ethnl_default_set_doit, 977 .policy = ethnl_eee_set_policy, 978 .maxattr = ARRAY_SIZE(ethnl_eee_set_policy) - 1, 979 }, 980 { 981 .cmd = ETHTOOL_MSG_TSINFO_GET, 982 .doit = ethnl_default_doit, 983 .start = ethnl_default_start, 984 .dumpit = ethnl_default_dumpit, 985 .done = ethnl_default_done, 986 .policy = ethnl_tsinfo_get_policy, 987 .maxattr = ARRAY_SIZE(ethnl_tsinfo_get_policy) - 1, 988 }, 989 { 990 .cmd = ETHTOOL_MSG_CABLE_TEST_ACT, 991 .flags = GENL_UNS_ADMIN_PERM, 992 .doit = ethnl_act_cable_test, 993 .policy = ethnl_cable_test_act_policy, 994 .maxattr = ARRAY_SIZE(ethnl_cable_test_act_policy) - 1, 995 }, 996 { 997 .cmd = ETHTOOL_MSG_CABLE_TEST_TDR_ACT, 998 .flags = GENL_UNS_ADMIN_PERM, 999 .doit = ethnl_act_cable_test_tdr, 1000 .policy = ethnl_cable_test_tdr_act_policy, 1001 .maxattr = ARRAY_SIZE(ethnl_cable_test_tdr_act_policy) - 1, 1002 }, 1003 { 1004 .cmd = ETHTOOL_MSG_TUNNEL_INFO_GET, 1005 .doit = ethnl_tunnel_info_doit, 1006 .start = ethnl_tunnel_info_start, 1007 .dumpit = ethnl_tunnel_info_dumpit, 1008 .policy = ethnl_tunnel_info_get_policy, 1009 .maxattr = ARRAY_SIZE(ethnl_tunnel_info_get_policy) - 1, 1010 }, 1011 { 1012 .cmd = ETHTOOL_MSG_FEC_GET, 1013 .doit = ethnl_default_doit, 1014 .start = ethnl_default_start, 1015 .dumpit = ethnl_default_dumpit, 1016 .done = ethnl_default_done, 1017 .policy = ethnl_fec_get_policy, 1018 .maxattr = ARRAY_SIZE(ethnl_fec_get_policy) - 1, 1019 }, 1020 { 1021 .cmd = ETHTOOL_MSG_FEC_SET, 1022 .flags = GENL_UNS_ADMIN_PERM, 1023 .doit = ethnl_default_set_doit, 1024 .policy = ethnl_fec_set_policy, 1025 .maxattr = ARRAY_SIZE(ethnl_fec_set_policy) - 1, 1026 }, 1027 { 1028 .cmd = ETHTOOL_MSG_MODULE_EEPROM_GET, 1029 .flags = GENL_UNS_ADMIN_PERM, 1030 .doit = ethnl_default_doit, 1031 .start = ethnl_default_start, 1032 .dumpit = ethnl_default_dumpit, 1033 .done = ethnl_default_done, 1034 .policy = ethnl_module_eeprom_get_policy, 1035 .maxattr = ARRAY_SIZE(ethnl_module_eeprom_get_policy) - 1, 1036 }, 1037 { 1038 .cmd = ETHTOOL_MSG_STATS_GET, 1039 .doit = ethnl_default_doit, 1040 .start = ethnl_default_start, 1041 .dumpit = ethnl_default_dumpit, 1042 .done = ethnl_default_done, 1043 .policy = ethnl_stats_get_policy, 1044 .maxattr = ARRAY_SIZE(ethnl_stats_get_policy) - 1, 1045 }, 1046 { 1047 .cmd = ETHTOOL_MSG_PHC_VCLOCKS_GET, 1048 .doit = ethnl_default_doit, 1049 .start = ethnl_default_start, 1050 .dumpit = ethnl_default_dumpit, 1051 .done = ethnl_default_done, 1052 .policy = ethnl_phc_vclocks_get_policy, 1053 .maxattr = ARRAY_SIZE(ethnl_phc_vclocks_get_policy) - 1, 1054 }, 1055 { 1056 .cmd = ETHTOOL_MSG_MODULE_GET, 1057 .doit = ethnl_default_doit, 1058 .start = ethnl_default_start, 1059 .dumpit = ethnl_default_dumpit, 1060 .done = ethnl_default_done, 1061 .policy = ethnl_module_get_policy, 1062 .maxattr = ARRAY_SIZE(ethnl_module_get_policy) - 1, 1063 }, 1064 { 1065 .cmd = ETHTOOL_MSG_MODULE_SET, 1066 .flags = GENL_UNS_ADMIN_PERM, 1067 .doit = ethnl_default_set_doit, 1068 .policy = ethnl_module_set_policy, 1069 .maxattr = ARRAY_SIZE(ethnl_module_set_policy) - 1, 1070 }, 1071 { 1072 .cmd = ETHTOOL_MSG_PSE_GET, 1073 .doit = ethnl_default_doit, 1074 .start = ethnl_default_start, 1075 .dumpit = ethnl_default_dumpit, 1076 .done = ethnl_default_done, 1077 .policy = ethnl_pse_get_policy, 1078 .maxattr = ARRAY_SIZE(ethnl_pse_get_policy) - 1, 1079 }, 1080 { 1081 .cmd = ETHTOOL_MSG_PSE_SET, 1082 .flags = GENL_UNS_ADMIN_PERM, 1083 .doit = ethnl_default_set_doit, 1084 .policy = ethnl_pse_set_policy, 1085 .maxattr = ARRAY_SIZE(ethnl_pse_set_policy) - 1, 1086 }, 1087 { 1088 .cmd = ETHTOOL_MSG_RSS_GET, 1089 .doit = ethnl_default_doit, 1090 .policy = ethnl_rss_get_policy, 1091 .maxattr = ARRAY_SIZE(ethnl_rss_get_policy) - 1, 1092 }, 1093 { 1094 .cmd = ETHTOOL_MSG_PLCA_GET_CFG, 1095 .doit = ethnl_default_doit, 1096 .start = ethnl_default_start, 1097 .dumpit = ethnl_default_dumpit, 1098 .done = ethnl_default_done, 1099 .policy = ethnl_plca_get_cfg_policy, 1100 .maxattr = ARRAY_SIZE(ethnl_plca_get_cfg_policy) - 1, 1101 }, 1102 { 1103 .cmd = ETHTOOL_MSG_PLCA_SET_CFG, 1104 .flags = GENL_UNS_ADMIN_PERM, 1105 .doit = ethnl_default_set_doit, 1106 .policy = ethnl_plca_set_cfg_policy, 1107 .maxattr = ARRAY_SIZE(ethnl_plca_set_cfg_policy) - 1, 1108 }, 1109 { 1110 .cmd = ETHTOOL_MSG_PLCA_GET_STATUS, 1111 .doit = ethnl_default_doit, 1112 .start = ethnl_default_start, 1113 .dumpit = ethnl_default_dumpit, 1114 .done = ethnl_default_done, 1115 .policy = ethnl_plca_get_status_policy, 1116 .maxattr = ARRAY_SIZE(ethnl_plca_get_status_policy) - 1, 1117 }, 1118 { 1119 .cmd = ETHTOOL_MSG_MM_GET, 1120 .doit = ethnl_default_doit, 1121 .start = ethnl_default_start, 1122 .dumpit = ethnl_default_dumpit, 1123 .done = ethnl_default_done, 1124 .policy = ethnl_mm_get_policy, 1125 .maxattr = ARRAY_SIZE(ethnl_mm_get_policy) - 1, 1126 }, 1127 { 1128 .cmd = ETHTOOL_MSG_MM_SET, 1129 .flags = GENL_UNS_ADMIN_PERM, 1130 .doit = ethnl_default_set_doit, 1131 .policy = ethnl_mm_set_policy, 1132 .maxattr = ARRAY_SIZE(ethnl_mm_set_policy) - 1, 1133 }, 1134 { 1135 .cmd = ETHTOOL_MSG_TS_GET, 1136 .doit = ethnl_default_doit, 1137 .start = ethnl_default_start, 1138 .dumpit = ethnl_default_dumpit, 1139 .done = ethnl_default_done, 1140 .policy = ethnl_ts_get_policy, 1141 .maxattr = ARRAY_SIZE(ethnl_ts_get_policy) - 1, 1142 }, 1143 { 1144 .cmd = ETHTOOL_MSG_TS_LIST_GET, 1145 .doit = ethnl_default_doit, 1146 .start = ethnl_default_start, 1147 .dumpit = ethnl_default_dumpit, 1148 .done = ethnl_default_done, 1149 .policy = ethnl_ts_get_policy, 1150 .maxattr = ARRAY_SIZE(ethnl_ts_get_policy) - 1, 1151 }, 1152 { 1153 .cmd = ETHTOOL_MSG_TS_SET, 1154 .flags = GENL_UNS_ADMIN_PERM, 1155 .doit = ethnl_default_set_doit, 1156 .policy = ethnl_ts_set_policy, 1157 .maxattr = ARRAY_SIZE(ethnl_ts_set_policy) - 1, 1158 }, 1159 }; 1160 1161 static const struct genl_multicast_group ethtool_nl_mcgrps[] = { 1162 [ETHNL_MCGRP_MONITOR] = { .name = ETHTOOL_MCGRP_MONITOR_NAME }, 1163 }; 1164 1165 static struct genl_family ethtool_genl_family __ro_after_init = { 1166 .name = ETHTOOL_GENL_NAME, 1167 .version = ETHTOOL_GENL_VERSION, 1168 .netnsok = true, 1169 .parallel_ops = true, 1170 .ops = ethtool_genl_ops, 1171 .n_ops = ARRAY_SIZE(ethtool_genl_ops), 1172 .resv_start_op = ETHTOOL_MSG_MODULE_GET + 1, 1173 .mcgrps = ethtool_nl_mcgrps, 1174 .n_mcgrps = ARRAY_SIZE(ethtool_nl_mcgrps), 1175 }; 1176 1177 /* module setup */ 1178 1179 static int __init ethnl_init(void) 1180 { 1181 int ret; 1182 1183 ret = genl_register_family(ðtool_genl_family); 1184 if (WARN(ret < 0, "ethtool: genetlink family registration failed")) 1185 return ret; 1186 ethnl_ok = true; 1187 1188 ret = register_netdevice_notifier(ðnl_netdev_notifier); 1189 WARN(ret < 0, "ethtool: net device notifier registration failed"); 1190 return ret; 1191 } 1192 1193 subsys_initcall(ethnl_init); 1194