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