2 * Copyright (c) 2014, Ericsson AB
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the names of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
17 * Alternatively, this software may be distributed under the terms of the
18 * GNU General Public License ("GPL") version 2 as published by the Free
19 * Software Foundation.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
37 #include "name_table.h"
41 #include <net/genetlink.h>
42 #include <linux/tipc_config.h>
44 /* The legacy API had an artificial message length limit called
45 * ULTRA_STRING_MAX_LEN.
47 #define ULTRA_STRING_MAX_LEN 32768
49 #define TIPC_SKB_MAX TLV_SPACE(ULTRA_STRING_MAX_LEN)
51 #define REPLY_TRUNCATED "<truncated>\n"
53 struct tipc_nl_compat_msg
{
65 struct tipc_nl_compat_cmd_dump
{
66 int (*header
)(struct tipc_nl_compat_msg
*);
67 int (*dumpit
)(struct sk_buff
*, struct netlink_callback
*);
68 int (*format
)(struct tipc_nl_compat_msg
*msg
, struct nlattr
**attrs
);
71 struct tipc_nl_compat_cmd_doit
{
72 int (*doit
)(struct sk_buff
*skb
, struct genl_info
*info
);
73 int (*transcode
)(struct tipc_nl_compat_cmd_doit
*cmd
,
74 struct sk_buff
*skb
, struct tipc_nl_compat_msg
*msg
);
77 static int tipc_skb_tailroom(struct sk_buff
*skb
)
82 tailroom
= skb_tailroom(skb
);
83 limit
= TIPC_SKB_MAX
- skb
->len
;
91 static inline int TLV_GET_DATA_LEN(struct tlv_desc
*tlv
)
93 return TLV_GET_LEN(tlv
) - TLV_SPACE(0);
96 static int tipc_add_tlv(struct sk_buff
*skb
, u16 type
, void *data
, u16 len
)
98 struct tlv_desc
*tlv
= (struct tlv_desc
*)skb_tail_pointer(skb
);
100 if (tipc_skb_tailroom(skb
) < TLV_SPACE(len
))
103 skb_put(skb
, TLV_SPACE(len
));
104 tlv
->tlv_type
= htons(type
);
105 tlv
->tlv_len
= htons(TLV_LENGTH(len
));
107 memcpy(TLV_DATA(tlv
), data
, len
);
112 static void tipc_tlv_init(struct sk_buff
*skb
, u16 type
)
114 struct tlv_desc
*tlv
= (struct tlv_desc
*)skb
->data
;
117 TLV_SET_TYPE(tlv
, type
);
118 skb_put(skb
, sizeof(struct tlv_desc
));
121 static int tipc_tlv_sprintf(struct sk_buff
*skb
, const char *fmt
, ...)
127 struct tlv_desc
*tlv
;
130 rem
= tipc_skb_tailroom(skb
);
132 tlv
= (struct tlv_desc
*)skb
->data
;
133 len
= TLV_GET_LEN(tlv
);
134 buf
= TLV_DATA(tlv
) + len
;
137 n
= vscnprintf(buf
, rem
, fmt
, args
);
140 TLV_SET_LEN(tlv
, n
+ len
);
146 static struct sk_buff
*tipc_tlv_alloc(int size
)
151 size
= TLV_SPACE(size
);
152 hdr_len
= nlmsg_total_size(GENL_HDRLEN
+ TIPC_GENL_HDRLEN
);
154 buf
= alloc_skb(hdr_len
+ size
, GFP_KERNEL
);
158 skb_reserve(buf
, hdr_len
);
163 static struct sk_buff
*tipc_get_err_tlv(char *str
)
165 int str_len
= strlen(str
) + 1;
168 buf
= tipc_tlv_alloc(TLV_SPACE(str_len
));
170 tipc_add_tlv(buf
, TIPC_TLV_ERROR_STRING
, str
, str_len
);
175 static inline bool string_is_valid(char *s
, int len
)
177 return memchr(s
, '\0', len
) ? true : false;
180 static int __tipc_nl_compat_dumpit(struct tipc_nl_compat_cmd_dump
*cmd
,
181 struct tipc_nl_compat_msg
*msg
,
184 struct genl_dumpit_info info
;
188 struct nlmsghdr
*nlmsg
;
189 struct netlink_callback cb
;
190 struct nlattr
**attrbuf
;
192 memset(&cb
, 0, sizeof(cb
));
193 cb
.nlh
= (struct nlmsghdr
*)arg
->data
;
197 buf
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
201 buf
->sk
= msg
->dst_sk
;
202 if (__tipc_dump_start(&cb
, msg
->net
)) {
207 attrbuf
= kcalloc(tipc_genl_family
.maxattr
+ 1,
208 sizeof(struct nlattr
*), GFP_KERNEL
);
214 info
.attrs
= attrbuf
;
215 err
= nlmsg_parse_deprecated(cb
.nlh
, GENL_HDRLEN
, attrbuf
,
216 tipc_genl_family
.maxattr
,
217 tipc_genl_family
.policy
, NULL
);
224 len
= (*cmd
->dumpit
)(buf
, &cb
);
226 nlmsg_for_each_msg(nlmsg
, nlmsg_hdr(buf
), len
, rem
) {
227 err
= nlmsg_parse_deprecated(nlmsg
, GENL_HDRLEN
,
229 tipc_genl_family
.maxattr
,
230 tipc_genl_family
.policy
,
235 err
= (*cmd
->format
)(msg
, attrbuf
);
239 if (tipc_skb_tailroom(msg
->rep
) <= 1) {
245 skb_reset_tail_pointer(buf
);
257 if (err
== -EMSGSIZE
) {
258 /* The legacy API only considered messages filling
259 * "ULTRA_STRING_MAX_LEN" to be truncated.
261 if ((TIPC_SKB_MAX
- msg
->rep
->len
) <= 1) {
262 char *tail
= skb_tail_pointer(msg
->rep
);
265 sprintf(tail
- sizeof(REPLY_TRUNCATED
) - 1,
275 static int tipc_nl_compat_dumpit(struct tipc_nl_compat_cmd_dump
*cmd
,
276 struct tipc_nl_compat_msg
*msg
)
281 if (msg
->req_type
&& (!msg
->req_size
||
282 !TLV_CHECK_TYPE(msg
->req
, msg
->req_type
)))
285 msg
->rep
= tipc_tlv_alloc(msg
->rep_size
);
290 tipc_tlv_init(msg
->rep
, msg
->rep_type
);
293 err
= (*cmd
->header
)(msg
);
301 arg
= nlmsg_new(0, GFP_KERNEL
);
308 err
= __tipc_nl_compat_dumpit(cmd
, msg
, arg
);
318 static int __tipc_nl_compat_doit(struct tipc_nl_compat_cmd_doit
*cmd
,
319 struct tipc_nl_compat_msg
*msg
)
322 struct sk_buff
*doit_buf
;
323 struct sk_buff
*trans_buf
;
324 struct nlattr
**attrbuf
;
325 struct genl_info info
;
327 trans_buf
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
331 attrbuf
= kmalloc_array(tipc_genl_family
.maxattr
+ 1,
332 sizeof(struct nlattr
*),
339 doit_buf
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
345 memset(&info
, 0, sizeof(info
));
346 info
.attrs
= attrbuf
;
349 err
= (*cmd
->transcode
)(cmd
, trans_buf
, msg
);
353 err
= nla_parse_deprecated(attrbuf
, tipc_genl_family
.maxattr
,
354 (const struct nlattr
*)trans_buf
->data
,
355 trans_buf
->len
, NULL
, NULL
);
359 doit_buf
->sk
= msg
->dst_sk
;
361 err
= (*cmd
->doit
)(doit_buf
, &info
);
369 kfree_skb(trans_buf
);
374 static int tipc_nl_compat_doit(struct tipc_nl_compat_cmd_doit
*cmd
,
375 struct tipc_nl_compat_msg
*msg
)
379 if (msg
->req_type
&& (!msg
->req_size
||
380 !TLV_CHECK_TYPE(msg
->req
, msg
->req_type
)))
383 err
= __tipc_nl_compat_doit(cmd
, msg
);
387 /* The legacy API considered an empty message a success message */
388 msg
->rep
= tipc_tlv_alloc(0);
395 static int tipc_nl_compat_bearer_dump(struct tipc_nl_compat_msg
*msg
,
396 struct nlattr
**attrs
)
398 struct nlattr
*bearer
[TIPC_NLA_BEARER_MAX
+ 1];
401 if (!attrs
[TIPC_NLA_BEARER
])
404 err
= nla_parse_nested_deprecated(bearer
, TIPC_NLA_BEARER_MAX
,
405 attrs
[TIPC_NLA_BEARER
], NULL
, NULL
);
409 return tipc_add_tlv(msg
->rep
, TIPC_TLV_BEARER_NAME
,
410 nla_data(bearer
[TIPC_NLA_BEARER_NAME
]),
411 nla_len(bearer
[TIPC_NLA_BEARER_NAME
]));
414 static int tipc_nl_compat_bearer_enable(struct tipc_nl_compat_cmd_doit
*cmd
,
416 struct tipc_nl_compat_msg
*msg
)
419 struct nlattr
*bearer
;
420 struct tipc_bearer_config
*b
;
423 b
= (struct tipc_bearer_config
*)TLV_DATA(msg
->req
);
425 bearer
= nla_nest_start_noflag(skb
, TIPC_NLA_BEARER
);
429 len
= TLV_GET_DATA_LEN(msg
->req
);
430 len
-= offsetof(struct tipc_bearer_config
, name
);
434 len
= min_t(int, len
, TIPC_MAX_BEARER_NAME
);
435 if (!string_is_valid(b
->name
, len
))
438 if (nla_put_string(skb
, TIPC_NLA_BEARER_NAME
, b
->name
))
441 if (nla_put_u32(skb
, TIPC_NLA_BEARER_DOMAIN
, ntohl(b
->disc_domain
)))
444 if (ntohl(b
->priority
) <= TIPC_MAX_LINK_PRI
) {
445 prop
= nla_nest_start_noflag(skb
, TIPC_NLA_BEARER_PROP
);
448 if (nla_put_u32(skb
, TIPC_NLA_PROP_PRIO
, ntohl(b
->priority
)))
450 nla_nest_end(skb
, prop
);
452 nla_nest_end(skb
, bearer
);
457 static int tipc_nl_compat_bearer_disable(struct tipc_nl_compat_cmd_doit
*cmd
,
459 struct tipc_nl_compat_msg
*msg
)
462 struct nlattr
*bearer
;
465 name
= (char *)TLV_DATA(msg
->req
);
467 bearer
= nla_nest_start_noflag(skb
, TIPC_NLA_BEARER
);
471 len
= TLV_GET_DATA_LEN(msg
->req
);
475 len
= min_t(int, len
, TIPC_MAX_BEARER_NAME
);
476 if (!string_is_valid(name
, len
))
479 if (nla_put_string(skb
, TIPC_NLA_BEARER_NAME
, name
))
482 nla_nest_end(skb
, bearer
);
487 static inline u32
perc(u32 count
, u32 total
)
489 return (count
* 100 + (total
/ 2)) / total
;
492 static void __fill_bc_link_stat(struct tipc_nl_compat_msg
*msg
,
493 struct nlattr
*prop
[], struct nlattr
*stats
[])
495 tipc_tlv_sprintf(msg
->rep
, " Window:%u packets\n",
496 nla_get_u32(prop
[TIPC_NLA_PROP_WIN
]));
498 tipc_tlv_sprintf(msg
->rep
,
499 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
500 nla_get_u32(stats
[TIPC_NLA_STATS_RX_INFO
]),
501 nla_get_u32(stats
[TIPC_NLA_STATS_RX_FRAGMENTS
]),
502 nla_get_u32(stats
[TIPC_NLA_STATS_RX_FRAGMENTED
]),
503 nla_get_u32(stats
[TIPC_NLA_STATS_RX_BUNDLES
]),
504 nla_get_u32(stats
[TIPC_NLA_STATS_RX_BUNDLED
]));
506 tipc_tlv_sprintf(msg
->rep
,
507 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
508 nla_get_u32(stats
[TIPC_NLA_STATS_TX_INFO
]),
509 nla_get_u32(stats
[TIPC_NLA_STATS_TX_FRAGMENTS
]),
510 nla_get_u32(stats
[TIPC_NLA_STATS_TX_FRAGMENTED
]),
511 nla_get_u32(stats
[TIPC_NLA_STATS_TX_BUNDLES
]),
512 nla_get_u32(stats
[TIPC_NLA_STATS_TX_BUNDLED
]));
514 tipc_tlv_sprintf(msg
->rep
, " RX naks:%u defs:%u dups:%u\n",
515 nla_get_u32(stats
[TIPC_NLA_STATS_RX_NACKS
]),
516 nla_get_u32(stats
[TIPC_NLA_STATS_RX_DEFERRED
]),
517 nla_get_u32(stats
[TIPC_NLA_STATS_DUPLICATES
]));
519 tipc_tlv_sprintf(msg
->rep
, " TX naks:%u acks:%u dups:%u\n",
520 nla_get_u32(stats
[TIPC_NLA_STATS_TX_NACKS
]),
521 nla_get_u32(stats
[TIPC_NLA_STATS_TX_ACKS
]),
522 nla_get_u32(stats
[TIPC_NLA_STATS_RETRANSMITTED
]));
524 tipc_tlv_sprintf(msg
->rep
,
525 " Congestion link:%u Send queue max:%u avg:%u",
526 nla_get_u32(stats
[TIPC_NLA_STATS_LINK_CONGS
]),
527 nla_get_u32(stats
[TIPC_NLA_STATS_MAX_QUEUE
]),
528 nla_get_u32(stats
[TIPC_NLA_STATS_AVG_QUEUE
]));
531 static int tipc_nl_compat_link_stat_dump(struct tipc_nl_compat_msg
*msg
,
532 struct nlattr
**attrs
)
535 struct nlattr
*link
[TIPC_NLA_LINK_MAX
+ 1];
536 struct nlattr
*prop
[TIPC_NLA_PROP_MAX
+ 1];
537 struct nlattr
*stats
[TIPC_NLA_STATS_MAX
+ 1];
541 if (!attrs
[TIPC_NLA_LINK
])
544 err
= nla_parse_nested_deprecated(link
, TIPC_NLA_LINK_MAX
,
545 attrs
[TIPC_NLA_LINK
], NULL
, NULL
);
549 if (!link
[TIPC_NLA_LINK_PROP
])
552 err
= nla_parse_nested_deprecated(prop
, TIPC_NLA_PROP_MAX
,
553 link
[TIPC_NLA_LINK_PROP
], NULL
,
558 if (!link
[TIPC_NLA_LINK_STATS
])
561 err
= nla_parse_nested_deprecated(stats
, TIPC_NLA_STATS_MAX
,
562 link
[TIPC_NLA_LINK_STATS
], NULL
,
567 name
= (char *)TLV_DATA(msg
->req
);
569 len
= TLV_GET_DATA_LEN(msg
->req
);
573 len
= min_t(int, len
, TIPC_MAX_LINK_NAME
);
574 if (!string_is_valid(name
, len
))
577 if (strcmp(name
, nla_data(link
[TIPC_NLA_LINK_NAME
])) != 0)
580 tipc_tlv_sprintf(msg
->rep
, "\nLink <%s>\n",
581 nla_data(link
[TIPC_NLA_LINK_NAME
]));
583 if (link
[TIPC_NLA_LINK_BROADCAST
]) {
584 __fill_bc_link_stat(msg
, prop
, stats
);
588 if (link
[TIPC_NLA_LINK_ACTIVE
])
589 tipc_tlv_sprintf(msg
->rep
, " ACTIVE");
590 else if (link
[TIPC_NLA_LINK_UP
])
591 tipc_tlv_sprintf(msg
->rep
, " STANDBY");
593 tipc_tlv_sprintf(msg
->rep
, " DEFUNCT");
595 tipc_tlv_sprintf(msg
->rep
, " MTU:%u Priority:%u",
596 nla_get_u32(link
[TIPC_NLA_LINK_MTU
]),
597 nla_get_u32(prop
[TIPC_NLA_PROP_PRIO
]));
599 tipc_tlv_sprintf(msg
->rep
, " Tolerance:%u ms Window:%u packets\n",
600 nla_get_u32(prop
[TIPC_NLA_PROP_TOL
]),
601 nla_get_u32(prop
[TIPC_NLA_PROP_WIN
]));
603 tipc_tlv_sprintf(msg
->rep
,
604 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
605 nla_get_u32(link
[TIPC_NLA_LINK_RX
]) -
606 nla_get_u32(stats
[TIPC_NLA_STATS_RX_INFO
]),
607 nla_get_u32(stats
[TIPC_NLA_STATS_RX_FRAGMENTS
]),
608 nla_get_u32(stats
[TIPC_NLA_STATS_RX_FRAGMENTED
]),
609 nla_get_u32(stats
[TIPC_NLA_STATS_RX_BUNDLES
]),
610 nla_get_u32(stats
[TIPC_NLA_STATS_RX_BUNDLED
]));
612 tipc_tlv_sprintf(msg
->rep
,
613 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
614 nla_get_u32(link
[TIPC_NLA_LINK_TX
]) -
615 nla_get_u32(stats
[TIPC_NLA_STATS_TX_INFO
]),
616 nla_get_u32(stats
[TIPC_NLA_STATS_TX_FRAGMENTS
]),
617 nla_get_u32(stats
[TIPC_NLA_STATS_TX_FRAGMENTED
]),
618 nla_get_u32(stats
[TIPC_NLA_STATS_TX_BUNDLES
]),
619 nla_get_u32(stats
[TIPC_NLA_STATS_TX_BUNDLED
]));
621 tipc_tlv_sprintf(msg
->rep
,
622 " TX profile sample:%u packets average:%u octets\n",
623 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_CNT
]),
624 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_TOT
]) /
625 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
]));
627 tipc_tlv_sprintf(msg
->rep
,
628 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% ",
629 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P0
]),
630 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
631 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P1
]),
632 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
633 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P2
]),
634 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
635 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P3
]),
636 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])));
638 tipc_tlv_sprintf(msg
->rep
, "-16384:%u%% -32768:%u%% -66000:%u%%\n",
639 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P4
]),
640 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
641 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P5
]),
642 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
643 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P6
]),
644 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])));
646 tipc_tlv_sprintf(msg
->rep
,
647 " RX states:%u probes:%u naks:%u defs:%u dups:%u\n",
648 nla_get_u32(stats
[TIPC_NLA_STATS_RX_STATES
]),
649 nla_get_u32(stats
[TIPC_NLA_STATS_RX_PROBES
]),
650 nla_get_u32(stats
[TIPC_NLA_STATS_RX_NACKS
]),
651 nla_get_u32(stats
[TIPC_NLA_STATS_RX_DEFERRED
]),
652 nla_get_u32(stats
[TIPC_NLA_STATS_DUPLICATES
]));
654 tipc_tlv_sprintf(msg
->rep
,
655 " TX states:%u probes:%u naks:%u acks:%u dups:%u\n",
656 nla_get_u32(stats
[TIPC_NLA_STATS_TX_STATES
]),
657 nla_get_u32(stats
[TIPC_NLA_STATS_TX_PROBES
]),
658 nla_get_u32(stats
[TIPC_NLA_STATS_TX_NACKS
]),
659 nla_get_u32(stats
[TIPC_NLA_STATS_TX_ACKS
]),
660 nla_get_u32(stats
[TIPC_NLA_STATS_RETRANSMITTED
]));
662 tipc_tlv_sprintf(msg
->rep
,
663 " Congestion link:%u Send queue max:%u avg:%u",
664 nla_get_u32(stats
[TIPC_NLA_STATS_LINK_CONGS
]),
665 nla_get_u32(stats
[TIPC_NLA_STATS_MAX_QUEUE
]),
666 nla_get_u32(stats
[TIPC_NLA_STATS_AVG_QUEUE
]));
671 static int tipc_nl_compat_link_dump(struct tipc_nl_compat_msg
*msg
,
672 struct nlattr
**attrs
)
674 struct nlattr
*link
[TIPC_NLA_LINK_MAX
+ 1];
675 struct tipc_link_info link_info
;
678 if (!attrs
[TIPC_NLA_LINK
])
681 err
= nla_parse_nested_deprecated(link
, TIPC_NLA_LINK_MAX
,
682 attrs
[TIPC_NLA_LINK
], NULL
, NULL
);
686 link_info
.dest
= nla_get_flag(link
[TIPC_NLA_LINK_DEST
]);
687 link_info
.up
= htonl(nla_get_flag(link
[TIPC_NLA_LINK_UP
]));
688 nla_strlcpy(link_info
.str
, link
[TIPC_NLA_LINK_NAME
],
691 return tipc_add_tlv(msg
->rep
, TIPC_TLV_LINK_INFO
,
692 &link_info
, sizeof(link_info
));
695 static int __tipc_add_link_prop(struct sk_buff
*skb
,
696 struct tipc_nl_compat_msg
*msg
,
697 struct tipc_link_config
*lc
)
700 case TIPC_CMD_SET_LINK_PRI
:
701 return nla_put_u32(skb
, TIPC_NLA_PROP_PRIO
, ntohl(lc
->value
));
702 case TIPC_CMD_SET_LINK_TOL
:
703 return nla_put_u32(skb
, TIPC_NLA_PROP_TOL
, ntohl(lc
->value
));
704 case TIPC_CMD_SET_LINK_WINDOW
:
705 return nla_put_u32(skb
, TIPC_NLA_PROP_WIN
, ntohl(lc
->value
));
711 static int tipc_nl_compat_media_set(struct sk_buff
*skb
,
712 struct tipc_nl_compat_msg
*msg
)
715 struct nlattr
*media
;
716 struct tipc_link_config
*lc
;
718 lc
= (struct tipc_link_config
*)TLV_DATA(msg
->req
);
720 media
= nla_nest_start_noflag(skb
, TIPC_NLA_MEDIA
);
724 if (nla_put_string(skb
, TIPC_NLA_MEDIA_NAME
, lc
->name
))
727 prop
= nla_nest_start_noflag(skb
, TIPC_NLA_MEDIA_PROP
);
731 __tipc_add_link_prop(skb
, msg
, lc
);
732 nla_nest_end(skb
, prop
);
733 nla_nest_end(skb
, media
);
738 static int tipc_nl_compat_bearer_set(struct sk_buff
*skb
,
739 struct tipc_nl_compat_msg
*msg
)
742 struct nlattr
*bearer
;
743 struct tipc_link_config
*lc
;
745 lc
= (struct tipc_link_config
*)TLV_DATA(msg
->req
);
747 bearer
= nla_nest_start_noflag(skb
, TIPC_NLA_BEARER
);
751 if (nla_put_string(skb
, TIPC_NLA_BEARER_NAME
, lc
->name
))
754 prop
= nla_nest_start_noflag(skb
, TIPC_NLA_BEARER_PROP
);
758 __tipc_add_link_prop(skb
, msg
, lc
);
759 nla_nest_end(skb
, prop
);
760 nla_nest_end(skb
, bearer
);
765 static int __tipc_nl_compat_link_set(struct sk_buff
*skb
,
766 struct tipc_nl_compat_msg
*msg
)
770 struct tipc_link_config
*lc
;
772 lc
= (struct tipc_link_config
*)TLV_DATA(msg
->req
);
774 link
= nla_nest_start_noflag(skb
, TIPC_NLA_LINK
);
778 if (nla_put_string(skb
, TIPC_NLA_LINK_NAME
, lc
->name
))
781 prop
= nla_nest_start_noflag(skb
, TIPC_NLA_LINK_PROP
);
785 __tipc_add_link_prop(skb
, msg
, lc
);
786 nla_nest_end(skb
, prop
);
787 nla_nest_end(skb
, link
);
792 static int tipc_nl_compat_link_set(struct tipc_nl_compat_cmd_doit
*cmd
,
794 struct tipc_nl_compat_msg
*msg
)
796 struct tipc_link_config
*lc
;
797 struct tipc_bearer
*bearer
;
798 struct tipc_media
*media
;
801 lc
= (struct tipc_link_config
*)TLV_DATA(msg
->req
);
803 len
= TLV_GET_DATA_LEN(msg
->req
);
804 len
-= offsetof(struct tipc_link_config
, name
);
808 len
= min_t(int, len
, TIPC_MAX_LINK_NAME
);
809 if (!string_is_valid(lc
->name
, len
))
812 media
= tipc_media_find(lc
->name
);
814 cmd
->doit
= &__tipc_nl_media_set
;
815 return tipc_nl_compat_media_set(skb
, msg
);
818 bearer
= tipc_bearer_find(msg
->net
, lc
->name
);
820 cmd
->doit
= &__tipc_nl_bearer_set
;
821 return tipc_nl_compat_bearer_set(skb
, msg
);
824 return __tipc_nl_compat_link_set(skb
, msg
);
827 static int tipc_nl_compat_link_reset_stats(struct tipc_nl_compat_cmd_doit
*cmd
,
829 struct tipc_nl_compat_msg
*msg
)
835 name
= (char *)TLV_DATA(msg
->req
);
837 link
= nla_nest_start_noflag(skb
, TIPC_NLA_LINK
);
841 len
= TLV_GET_DATA_LEN(msg
->req
);
845 len
= min_t(int, len
, TIPC_MAX_LINK_NAME
);
846 if (!string_is_valid(name
, len
))
849 if (nla_put_string(skb
, TIPC_NLA_LINK_NAME
, name
))
852 nla_nest_end(skb
, link
);
857 static int tipc_nl_compat_name_table_dump_header(struct tipc_nl_compat_msg
*msg
)
861 struct tipc_name_table_query
*ntq
;
862 static const char * const header
[] = {
869 ntq
= (struct tipc_name_table_query
*)TLV_DATA(msg
->req
);
870 if (TLV_GET_DATA_LEN(msg
->req
) < sizeof(struct tipc_name_table_query
))
873 depth
= ntohl(ntq
->depth
);
877 for (i
= 0; i
< depth
; i
++)
878 tipc_tlv_sprintf(msg
->rep
, header
[i
]);
879 tipc_tlv_sprintf(msg
->rep
, "\n");
884 static int tipc_nl_compat_name_table_dump(struct tipc_nl_compat_msg
*msg
,
885 struct nlattr
**attrs
)
888 struct tipc_name_table_query
*ntq
;
889 struct nlattr
*nt
[TIPC_NLA_NAME_TABLE_MAX
+ 1];
890 struct nlattr
*publ
[TIPC_NLA_PUBL_MAX
+ 1];
891 u32 node
, depth
, type
, lowbound
, upbound
;
892 static const char * const scope_str
[] = {"", " zone", " cluster",
896 if (!attrs
[TIPC_NLA_NAME_TABLE
])
899 err
= nla_parse_nested_deprecated(nt
, TIPC_NLA_NAME_TABLE_MAX
,
900 attrs
[TIPC_NLA_NAME_TABLE
], NULL
,
905 if (!nt
[TIPC_NLA_NAME_TABLE_PUBL
])
908 err
= nla_parse_nested_deprecated(publ
, TIPC_NLA_PUBL_MAX
,
909 nt
[TIPC_NLA_NAME_TABLE_PUBL
], NULL
,
914 ntq
= (struct tipc_name_table_query
*)TLV_DATA(msg
->req
);
916 depth
= ntohl(ntq
->depth
);
917 type
= ntohl(ntq
->type
);
918 lowbound
= ntohl(ntq
->lowbound
);
919 upbound
= ntohl(ntq
->upbound
);
921 if (!(depth
& TIPC_NTQ_ALLTYPES
) &&
922 (type
!= nla_get_u32(publ
[TIPC_NLA_PUBL_TYPE
])))
924 if (lowbound
&& (lowbound
> nla_get_u32(publ
[TIPC_NLA_PUBL_UPPER
])))
926 if (upbound
&& (upbound
< nla_get_u32(publ
[TIPC_NLA_PUBL_LOWER
])))
929 tipc_tlv_sprintf(msg
->rep
, "%-10u ",
930 nla_get_u32(publ
[TIPC_NLA_PUBL_TYPE
]));
935 tipc_tlv_sprintf(msg
->rep
, "%-10u %-10u ",
936 nla_get_u32(publ
[TIPC_NLA_PUBL_LOWER
]),
937 nla_get_u32(publ
[TIPC_NLA_PUBL_UPPER
]));
942 node
= nla_get_u32(publ
[TIPC_NLA_PUBL_NODE
]);
943 sprintf(port_str
, "<%u.%u.%u:%u>", tipc_zone(node
), tipc_cluster(node
),
944 tipc_node(node
), nla_get_u32(publ
[TIPC_NLA_PUBL_REF
]));
945 tipc_tlv_sprintf(msg
->rep
, "%-26s ", port_str
);
950 tipc_tlv_sprintf(msg
->rep
, "%-10u %s",
951 nla_get_u32(publ
[TIPC_NLA_PUBL_KEY
]),
952 scope_str
[nla_get_u32(publ
[TIPC_NLA_PUBL_SCOPE
])]);
954 tipc_tlv_sprintf(msg
->rep
, "\n");
959 static int __tipc_nl_compat_publ_dump(struct tipc_nl_compat_msg
*msg
,
960 struct nlattr
**attrs
)
962 u32 type
, lower
, upper
;
963 struct nlattr
*publ
[TIPC_NLA_PUBL_MAX
+ 1];
966 if (!attrs
[TIPC_NLA_PUBL
])
969 err
= nla_parse_nested_deprecated(publ
, TIPC_NLA_PUBL_MAX
,
970 attrs
[TIPC_NLA_PUBL
], NULL
, NULL
);
974 type
= nla_get_u32(publ
[TIPC_NLA_PUBL_TYPE
]);
975 lower
= nla_get_u32(publ
[TIPC_NLA_PUBL_LOWER
]);
976 upper
= nla_get_u32(publ
[TIPC_NLA_PUBL_UPPER
]);
979 tipc_tlv_sprintf(msg
->rep
, " {%u,%u}", type
, lower
);
981 tipc_tlv_sprintf(msg
->rep
, " {%u,%u,%u}", type
, lower
, upper
);
986 static int tipc_nl_compat_publ_dump(struct tipc_nl_compat_msg
*msg
, u32 sock
)
991 struct sk_buff
*args
;
992 struct tipc_nl_compat_cmd_dump dump
;
994 args
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
998 hdr
= genlmsg_put(args
, 0, 0, &tipc_genl_family
, NLM_F_MULTI
,
1005 nest
= nla_nest_start_noflag(args
, TIPC_NLA_SOCK
);
1011 if (nla_put_u32(args
, TIPC_NLA_SOCK_REF
, sock
)) {
1016 nla_nest_end(args
, nest
);
1017 genlmsg_end(args
, hdr
);
1019 dump
.dumpit
= tipc_nl_publ_dump
;
1020 dump
.format
= __tipc_nl_compat_publ_dump
;
1022 err
= __tipc_nl_compat_dumpit(&dump
, msg
, args
);
1029 static int tipc_nl_compat_sk_dump(struct tipc_nl_compat_msg
*msg
,
1030 struct nlattr
**attrs
)
1034 struct nlattr
*sock
[TIPC_NLA_SOCK_MAX
+ 1];
1036 if (!attrs
[TIPC_NLA_SOCK
])
1039 err
= nla_parse_nested_deprecated(sock
, TIPC_NLA_SOCK_MAX
,
1040 attrs
[TIPC_NLA_SOCK
], NULL
, NULL
);
1044 sock_ref
= nla_get_u32(sock
[TIPC_NLA_SOCK_REF
]);
1045 tipc_tlv_sprintf(msg
->rep
, "%u:", sock_ref
);
1047 if (sock
[TIPC_NLA_SOCK_CON
]) {
1049 struct nlattr
*con
[TIPC_NLA_CON_MAX
+ 1];
1051 err
= nla_parse_nested_deprecated(con
, TIPC_NLA_CON_MAX
,
1052 sock
[TIPC_NLA_SOCK_CON
],
1058 node
= nla_get_u32(con
[TIPC_NLA_CON_NODE
]);
1059 tipc_tlv_sprintf(msg
->rep
, " connected to <%u.%u.%u:%u>",
1063 nla_get_u32(con
[TIPC_NLA_CON_SOCK
]));
1065 if (con
[TIPC_NLA_CON_FLAG
])
1066 tipc_tlv_sprintf(msg
->rep
, " via {%u,%u}\n",
1067 nla_get_u32(con
[TIPC_NLA_CON_TYPE
]),
1068 nla_get_u32(con
[TIPC_NLA_CON_INST
]));
1070 tipc_tlv_sprintf(msg
->rep
, "\n");
1071 } else if (sock
[TIPC_NLA_SOCK_HAS_PUBL
]) {
1072 tipc_tlv_sprintf(msg
->rep
, " bound to");
1074 err
= tipc_nl_compat_publ_dump(msg
, sock_ref
);
1078 tipc_tlv_sprintf(msg
->rep
, "\n");
1083 static int tipc_nl_compat_media_dump(struct tipc_nl_compat_msg
*msg
,
1084 struct nlattr
**attrs
)
1086 struct nlattr
*media
[TIPC_NLA_MEDIA_MAX
+ 1];
1089 if (!attrs
[TIPC_NLA_MEDIA
])
1092 err
= nla_parse_nested_deprecated(media
, TIPC_NLA_MEDIA_MAX
,
1093 attrs
[TIPC_NLA_MEDIA
], NULL
, NULL
);
1097 return tipc_add_tlv(msg
->rep
, TIPC_TLV_MEDIA_NAME
,
1098 nla_data(media
[TIPC_NLA_MEDIA_NAME
]),
1099 nla_len(media
[TIPC_NLA_MEDIA_NAME
]));
1102 static int tipc_nl_compat_node_dump(struct tipc_nl_compat_msg
*msg
,
1103 struct nlattr
**attrs
)
1105 struct tipc_node_info node_info
;
1106 struct nlattr
*node
[TIPC_NLA_NODE_MAX
+ 1];
1109 if (!attrs
[TIPC_NLA_NODE
])
1112 err
= nla_parse_nested_deprecated(node
, TIPC_NLA_NODE_MAX
,
1113 attrs
[TIPC_NLA_NODE
], NULL
, NULL
);
1117 node_info
.addr
= htonl(nla_get_u32(node
[TIPC_NLA_NODE_ADDR
]));
1118 node_info
.up
= htonl(nla_get_flag(node
[TIPC_NLA_NODE_UP
]));
1120 return tipc_add_tlv(msg
->rep
, TIPC_TLV_NODE_INFO
, &node_info
,
1124 static int tipc_nl_compat_net_set(struct tipc_nl_compat_cmd_doit
*cmd
,
1125 struct sk_buff
*skb
,
1126 struct tipc_nl_compat_msg
*msg
)
1131 val
= ntohl(*(__be32
*)TLV_DATA(msg
->req
));
1133 net
= nla_nest_start_noflag(skb
, TIPC_NLA_NET
);
1137 if (msg
->cmd
== TIPC_CMD_SET_NODE_ADDR
) {
1138 if (nla_put_u32(skb
, TIPC_NLA_NET_ADDR
, val
))
1140 } else if (msg
->cmd
== TIPC_CMD_SET_NETID
) {
1141 if (nla_put_u32(skb
, TIPC_NLA_NET_ID
, val
))
1144 nla_nest_end(skb
, net
);
1149 static int tipc_nl_compat_net_dump(struct tipc_nl_compat_msg
*msg
,
1150 struct nlattr
**attrs
)
1153 struct nlattr
*net
[TIPC_NLA_NET_MAX
+ 1];
1156 if (!attrs
[TIPC_NLA_NET
])
1159 err
= nla_parse_nested_deprecated(net
, TIPC_NLA_NET_MAX
,
1160 attrs
[TIPC_NLA_NET
], NULL
, NULL
);
1164 id
= htonl(nla_get_u32(net
[TIPC_NLA_NET_ID
]));
1166 return tipc_add_tlv(msg
->rep
, TIPC_TLV_UNSIGNED
, &id
, sizeof(id
));
1169 static int tipc_cmd_show_stats_compat(struct tipc_nl_compat_msg
*msg
)
1171 msg
->rep
= tipc_tlv_alloc(ULTRA_STRING_MAX_LEN
);
1175 tipc_tlv_init(msg
->rep
, TIPC_TLV_ULTRA_STRING
);
1176 tipc_tlv_sprintf(msg
->rep
, "TIPC version " TIPC_MOD_VER
"\n");
1181 static int tipc_nl_compat_handle(struct tipc_nl_compat_msg
*msg
)
1183 struct tipc_nl_compat_cmd_dump dump
;
1184 struct tipc_nl_compat_cmd_doit doit
;
1186 memset(&dump
, 0, sizeof(dump
));
1187 memset(&doit
, 0, sizeof(doit
));
1191 msg
->rep
= tipc_tlv_alloc(0);
1195 case TIPC_CMD_GET_BEARER_NAMES
:
1196 msg
->rep_size
= MAX_BEARERS
* TLV_SPACE(TIPC_MAX_BEARER_NAME
);
1197 dump
.dumpit
= tipc_nl_bearer_dump
;
1198 dump
.format
= tipc_nl_compat_bearer_dump
;
1199 return tipc_nl_compat_dumpit(&dump
, msg
);
1200 case TIPC_CMD_ENABLE_BEARER
:
1201 msg
->req_type
= TIPC_TLV_BEARER_CONFIG
;
1202 doit
.doit
= __tipc_nl_bearer_enable
;
1203 doit
.transcode
= tipc_nl_compat_bearer_enable
;
1204 return tipc_nl_compat_doit(&doit
, msg
);
1205 case TIPC_CMD_DISABLE_BEARER
:
1206 msg
->req_type
= TIPC_TLV_BEARER_NAME
;
1207 doit
.doit
= __tipc_nl_bearer_disable
;
1208 doit
.transcode
= tipc_nl_compat_bearer_disable
;
1209 return tipc_nl_compat_doit(&doit
, msg
);
1210 case TIPC_CMD_SHOW_LINK_STATS
:
1211 msg
->req_type
= TIPC_TLV_LINK_NAME
;
1212 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1213 msg
->rep_type
= TIPC_TLV_ULTRA_STRING
;
1214 dump
.dumpit
= tipc_nl_node_dump_link
;
1215 dump
.format
= tipc_nl_compat_link_stat_dump
;
1216 return tipc_nl_compat_dumpit(&dump
, msg
);
1217 case TIPC_CMD_GET_LINKS
:
1218 msg
->req_type
= TIPC_TLV_NET_ADDR
;
1219 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1220 dump
.dumpit
= tipc_nl_node_dump_link
;
1221 dump
.format
= tipc_nl_compat_link_dump
;
1222 return tipc_nl_compat_dumpit(&dump
, msg
);
1223 case TIPC_CMD_SET_LINK_TOL
:
1224 case TIPC_CMD_SET_LINK_PRI
:
1225 case TIPC_CMD_SET_LINK_WINDOW
:
1226 msg
->req_type
= TIPC_TLV_LINK_CONFIG
;
1227 doit
.doit
= tipc_nl_node_set_link
;
1228 doit
.transcode
= tipc_nl_compat_link_set
;
1229 return tipc_nl_compat_doit(&doit
, msg
);
1230 case TIPC_CMD_RESET_LINK_STATS
:
1231 msg
->req_type
= TIPC_TLV_LINK_NAME
;
1232 doit
.doit
= tipc_nl_node_reset_link_stats
;
1233 doit
.transcode
= tipc_nl_compat_link_reset_stats
;
1234 return tipc_nl_compat_doit(&doit
, msg
);
1235 case TIPC_CMD_SHOW_NAME_TABLE
:
1236 msg
->req_type
= TIPC_TLV_NAME_TBL_QUERY
;
1237 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1238 msg
->rep_type
= TIPC_TLV_ULTRA_STRING
;
1239 dump
.header
= tipc_nl_compat_name_table_dump_header
;
1240 dump
.dumpit
= tipc_nl_name_table_dump
;
1241 dump
.format
= tipc_nl_compat_name_table_dump
;
1242 return tipc_nl_compat_dumpit(&dump
, msg
);
1243 case TIPC_CMD_SHOW_PORTS
:
1244 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1245 msg
->rep_type
= TIPC_TLV_ULTRA_STRING
;
1246 dump
.dumpit
= tipc_nl_sk_dump
;
1247 dump
.format
= tipc_nl_compat_sk_dump
;
1248 return tipc_nl_compat_dumpit(&dump
, msg
);
1249 case TIPC_CMD_GET_MEDIA_NAMES
:
1250 msg
->rep_size
= MAX_MEDIA
* TLV_SPACE(TIPC_MAX_MEDIA_NAME
);
1251 dump
.dumpit
= tipc_nl_media_dump
;
1252 dump
.format
= tipc_nl_compat_media_dump
;
1253 return tipc_nl_compat_dumpit(&dump
, msg
);
1254 case TIPC_CMD_GET_NODES
:
1255 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1256 dump
.dumpit
= tipc_nl_node_dump
;
1257 dump
.format
= tipc_nl_compat_node_dump
;
1258 return tipc_nl_compat_dumpit(&dump
, msg
);
1259 case TIPC_CMD_SET_NODE_ADDR
:
1260 msg
->req_type
= TIPC_TLV_NET_ADDR
;
1261 doit
.doit
= __tipc_nl_net_set
;
1262 doit
.transcode
= tipc_nl_compat_net_set
;
1263 return tipc_nl_compat_doit(&doit
, msg
);
1264 case TIPC_CMD_SET_NETID
:
1265 msg
->req_type
= TIPC_TLV_UNSIGNED
;
1266 doit
.doit
= __tipc_nl_net_set
;
1267 doit
.transcode
= tipc_nl_compat_net_set
;
1268 return tipc_nl_compat_doit(&doit
, msg
);
1269 case TIPC_CMD_GET_NETID
:
1270 msg
->rep_size
= sizeof(u32
);
1271 dump
.dumpit
= tipc_nl_net_dump
;
1272 dump
.format
= tipc_nl_compat_net_dump
;
1273 return tipc_nl_compat_dumpit(&dump
, msg
);
1274 case TIPC_CMD_SHOW_STATS
:
1275 return tipc_cmd_show_stats_compat(msg
);
1281 static int tipc_nl_compat_recv(struct sk_buff
*skb
, struct genl_info
*info
)
1285 struct tipc_nl_compat_msg msg
;
1286 struct nlmsghdr
*req_nlh
;
1287 struct nlmsghdr
*rep_nlh
;
1288 struct tipc_genlmsghdr
*req_userhdr
= info
->userhdr
;
1290 memset(&msg
, 0, sizeof(msg
));
1292 req_nlh
= (struct nlmsghdr
*)skb
->data
;
1293 msg
.req
= nlmsg_data(req_nlh
) + GENL_HDRLEN
+ TIPC_GENL_HDRLEN
;
1294 msg
.cmd
= req_userhdr
->cmd
;
1295 msg
.net
= genl_info_net(info
);
1296 msg
.dst_sk
= skb
->sk
;
1298 if ((msg
.cmd
& 0xC000) && (!netlink_net_capable(skb
, CAP_NET_ADMIN
))) {
1299 msg
.rep
= tipc_get_err_tlv(TIPC_CFG_NOT_NET_ADMIN
);
1304 msg
.req_size
= nlmsg_attrlen(req_nlh
, GENL_HDRLEN
+ TIPC_GENL_HDRLEN
);
1305 if (msg
.req_size
&& !TLV_OK(msg
.req
, msg
.req_size
)) {
1306 msg
.rep
= tipc_get_err_tlv(TIPC_CFG_NOT_SUPPORTED
);
1311 err
= tipc_nl_compat_handle(&msg
);
1312 if ((err
== -EOPNOTSUPP
) || (err
== -EPERM
))
1313 msg
.rep
= tipc_get_err_tlv(TIPC_CFG_NOT_SUPPORTED
);
1314 else if (err
== -EINVAL
)
1315 msg
.rep
= tipc_get_err_tlv(TIPC_CFG_TLV_ERROR
);
1320 len
= nlmsg_total_size(GENL_HDRLEN
+ TIPC_GENL_HDRLEN
);
1321 skb_push(msg
.rep
, len
);
1322 rep_nlh
= nlmsg_hdr(msg
.rep
);
1323 memcpy(rep_nlh
, info
->nlhdr
, len
);
1324 rep_nlh
->nlmsg_len
= msg
.rep
->len
;
1325 genlmsg_unicast(msg
.net
, msg
.rep
, NETLINK_CB(skb
).portid
);
1330 static const struct genl_ops tipc_genl_compat_ops
[] = {
1332 .cmd
= TIPC_GENL_CMD
,
1333 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
1334 .doit
= tipc_nl_compat_recv
,
1338 static struct genl_family tipc_genl_compat_family __ro_after_init
= {
1339 .name
= TIPC_GENL_NAME
,
1340 .version
= TIPC_GENL_VERSION
,
1341 .hdrsize
= TIPC_GENL_HDRLEN
,
1344 .module
= THIS_MODULE
,
1345 .ops
= tipc_genl_compat_ops
,
1346 .n_ops
= ARRAY_SIZE(tipc_genl_compat_ops
),
1349 int __init
tipc_netlink_compat_start(void)
1353 res
= genl_register_family(&tipc_genl_compat_family
);
1355 pr_err("Failed to register legacy compat interface\n");
1362 void tipc_netlink_compat_stop(void)
1364 genl_unregister_family(&tipc_genl_compat_family
);