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 __printf(2, 3) int tipc_tlv_sprintf(struct sk_buff
*skb
,
122 const char *fmt
, ...)
128 struct tlv_desc
*tlv
;
131 rem
= tipc_skb_tailroom(skb
);
133 tlv
= (struct tlv_desc
*)skb
->data
;
134 len
= TLV_GET_LEN(tlv
);
135 buf
= TLV_DATA(tlv
) + len
;
138 n
= vscnprintf(buf
, rem
, fmt
, args
);
141 TLV_SET_LEN(tlv
, n
+ len
);
147 static struct sk_buff
*tipc_tlv_alloc(int size
)
152 size
= TLV_SPACE(size
);
153 hdr_len
= nlmsg_total_size(GENL_HDRLEN
+ TIPC_GENL_HDRLEN
);
155 buf
= alloc_skb(hdr_len
+ size
, GFP_KERNEL
);
159 skb_reserve(buf
, hdr_len
);
164 static struct sk_buff
*tipc_get_err_tlv(char *str
)
166 int str_len
= strlen(str
) + 1;
169 buf
= tipc_tlv_alloc(TLV_SPACE(str_len
));
171 tipc_add_tlv(buf
, TIPC_TLV_ERROR_STRING
, str
, str_len
);
176 static inline bool string_is_valid(char *s
, int len
)
178 return memchr(s
, '\0', len
) ? true : false;
181 static int __tipc_nl_compat_dumpit(struct tipc_nl_compat_cmd_dump
*cmd
,
182 struct tipc_nl_compat_msg
*msg
,
185 struct genl_dumpit_info info
;
189 struct nlmsghdr
*nlmsg
;
190 struct netlink_callback cb
;
191 struct nlattr
**attrbuf
;
193 memset(&cb
, 0, sizeof(cb
));
194 cb
.nlh
= (struct nlmsghdr
*)arg
->data
;
198 buf
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
202 buf
->sk
= msg
->dst_sk
;
203 if (__tipc_dump_start(&cb
, msg
->net
)) {
208 attrbuf
= kcalloc(tipc_genl_family
.maxattr
+ 1,
209 sizeof(struct nlattr
*), GFP_KERNEL
);
215 info
.attrs
= attrbuf
;
217 if (nlmsg_len(cb
.nlh
) > 0) {
218 err
= nlmsg_parse_deprecated(cb
.nlh
, GENL_HDRLEN
, attrbuf
,
219 tipc_genl_family
.maxattr
,
220 tipc_genl_family
.policy
, NULL
);
227 len
= (*cmd
->dumpit
)(buf
, &cb
);
229 nlmsg_for_each_msg(nlmsg
, nlmsg_hdr(buf
), len
, rem
) {
230 err
= nlmsg_parse_deprecated(nlmsg
, GENL_HDRLEN
,
232 tipc_genl_family
.maxattr
,
233 tipc_genl_family
.policy
,
238 err
= (*cmd
->format
)(msg
, attrbuf
);
242 if (tipc_skb_tailroom(msg
->rep
) <= 1) {
248 skb_reset_tail_pointer(buf
);
260 if (err
== -EMSGSIZE
) {
261 /* The legacy API only considered messages filling
262 * "ULTRA_STRING_MAX_LEN" to be truncated.
264 if ((TIPC_SKB_MAX
- msg
->rep
->len
) <= 1) {
265 char *tail
= skb_tail_pointer(msg
->rep
);
268 sprintf(tail
- sizeof(REPLY_TRUNCATED
) - 1,
278 static int tipc_nl_compat_dumpit(struct tipc_nl_compat_cmd_dump
*cmd
,
279 struct tipc_nl_compat_msg
*msg
)
281 struct nlmsghdr
*nlh
;
285 if (msg
->req_type
&& (!msg
->req_size
||
286 !TLV_CHECK_TYPE(msg
->req
, msg
->req_type
)))
289 msg
->rep
= tipc_tlv_alloc(msg
->rep_size
);
294 tipc_tlv_init(msg
->rep
, msg
->rep_type
);
297 err
= (*cmd
->header
)(msg
);
305 arg
= nlmsg_new(0, GFP_KERNEL
);
312 nlh
= nlmsg_put(arg
, 0, 0, tipc_genl_family
.id
, 0, NLM_F_MULTI
);
321 err
= __tipc_nl_compat_dumpit(cmd
, msg
, arg
);
331 static int __tipc_nl_compat_doit(struct tipc_nl_compat_cmd_doit
*cmd
,
332 struct tipc_nl_compat_msg
*msg
)
335 struct sk_buff
*doit_buf
;
336 struct sk_buff
*trans_buf
;
337 struct nlattr
**attrbuf
;
338 struct genl_info info
;
340 trans_buf
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
344 attrbuf
= kmalloc_array(tipc_genl_family
.maxattr
+ 1,
345 sizeof(struct nlattr
*),
352 doit_buf
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
358 memset(&info
, 0, sizeof(info
));
359 info
.attrs
= attrbuf
;
362 err
= (*cmd
->transcode
)(cmd
, trans_buf
, msg
);
366 err
= nla_parse_deprecated(attrbuf
, tipc_genl_family
.maxattr
,
367 (const struct nlattr
*)trans_buf
->data
,
368 trans_buf
->len
, NULL
, NULL
);
372 doit_buf
->sk
= msg
->dst_sk
;
374 err
= (*cmd
->doit
)(doit_buf
, &info
);
382 kfree_skb(trans_buf
);
387 static int tipc_nl_compat_doit(struct tipc_nl_compat_cmd_doit
*cmd
,
388 struct tipc_nl_compat_msg
*msg
)
392 if (msg
->req_type
&& (!msg
->req_size
||
393 !TLV_CHECK_TYPE(msg
->req
, msg
->req_type
)))
396 err
= __tipc_nl_compat_doit(cmd
, msg
);
400 /* The legacy API considered an empty message a success message */
401 msg
->rep
= tipc_tlv_alloc(0);
408 static int tipc_nl_compat_bearer_dump(struct tipc_nl_compat_msg
*msg
,
409 struct nlattr
**attrs
)
411 struct nlattr
*bearer
[TIPC_NLA_BEARER_MAX
+ 1];
414 if (!attrs
[TIPC_NLA_BEARER
])
417 err
= nla_parse_nested_deprecated(bearer
, TIPC_NLA_BEARER_MAX
,
418 attrs
[TIPC_NLA_BEARER
], NULL
, NULL
);
422 return tipc_add_tlv(msg
->rep
, TIPC_TLV_BEARER_NAME
,
423 nla_data(bearer
[TIPC_NLA_BEARER_NAME
]),
424 nla_len(bearer
[TIPC_NLA_BEARER_NAME
]));
427 static int tipc_nl_compat_bearer_enable(struct tipc_nl_compat_cmd_doit
*cmd
,
429 struct tipc_nl_compat_msg
*msg
)
432 struct nlattr
*bearer
;
433 struct tipc_bearer_config
*b
;
436 b
= (struct tipc_bearer_config
*)TLV_DATA(msg
->req
);
438 bearer
= nla_nest_start_noflag(skb
, TIPC_NLA_BEARER
);
442 len
= TLV_GET_DATA_LEN(msg
->req
);
443 len
-= offsetof(struct tipc_bearer_config
, name
);
447 len
= min_t(int, len
, TIPC_MAX_BEARER_NAME
);
448 if (!string_is_valid(b
->name
, len
))
451 if (nla_put_string(skb
, TIPC_NLA_BEARER_NAME
, b
->name
))
454 if (nla_put_u32(skb
, TIPC_NLA_BEARER_DOMAIN
, ntohl(b
->disc_domain
)))
457 if (ntohl(b
->priority
) <= TIPC_MAX_LINK_PRI
) {
458 prop
= nla_nest_start_noflag(skb
, TIPC_NLA_BEARER_PROP
);
461 if (nla_put_u32(skb
, TIPC_NLA_PROP_PRIO
, ntohl(b
->priority
)))
463 nla_nest_end(skb
, prop
);
465 nla_nest_end(skb
, bearer
);
470 static int tipc_nl_compat_bearer_disable(struct tipc_nl_compat_cmd_doit
*cmd
,
472 struct tipc_nl_compat_msg
*msg
)
475 struct nlattr
*bearer
;
478 name
= (char *)TLV_DATA(msg
->req
);
480 bearer
= nla_nest_start_noflag(skb
, TIPC_NLA_BEARER
);
484 len
= TLV_GET_DATA_LEN(msg
->req
);
488 len
= min_t(int, len
, TIPC_MAX_BEARER_NAME
);
489 if (!string_is_valid(name
, len
))
492 if (nla_put_string(skb
, TIPC_NLA_BEARER_NAME
, name
))
495 nla_nest_end(skb
, bearer
);
500 static inline u32
perc(u32 count
, u32 total
)
502 return (count
* 100 + (total
/ 2)) / total
;
505 static void __fill_bc_link_stat(struct tipc_nl_compat_msg
*msg
,
506 struct nlattr
*prop
[], struct nlattr
*stats
[])
508 tipc_tlv_sprintf(msg
->rep
, " Window:%u packets\n",
509 nla_get_u32(prop
[TIPC_NLA_PROP_WIN
]));
511 tipc_tlv_sprintf(msg
->rep
,
512 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
513 nla_get_u32(stats
[TIPC_NLA_STATS_RX_INFO
]),
514 nla_get_u32(stats
[TIPC_NLA_STATS_RX_FRAGMENTS
]),
515 nla_get_u32(stats
[TIPC_NLA_STATS_RX_FRAGMENTED
]),
516 nla_get_u32(stats
[TIPC_NLA_STATS_RX_BUNDLES
]),
517 nla_get_u32(stats
[TIPC_NLA_STATS_RX_BUNDLED
]));
519 tipc_tlv_sprintf(msg
->rep
,
520 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
521 nla_get_u32(stats
[TIPC_NLA_STATS_TX_INFO
]),
522 nla_get_u32(stats
[TIPC_NLA_STATS_TX_FRAGMENTS
]),
523 nla_get_u32(stats
[TIPC_NLA_STATS_TX_FRAGMENTED
]),
524 nla_get_u32(stats
[TIPC_NLA_STATS_TX_BUNDLES
]),
525 nla_get_u32(stats
[TIPC_NLA_STATS_TX_BUNDLED
]));
527 tipc_tlv_sprintf(msg
->rep
, " RX naks:%u defs:%u dups:%u\n",
528 nla_get_u32(stats
[TIPC_NLA_STATS_RX_NACKS
]),
529 nla_get_u32(stats
[TIPC_NLA_STATS_RX_DEFERRED
]),
530 nla_get_u32(stats
[TIPC_NLA_STATS_DUPLICATES
]));
532 tipc_tlv_sprintf(msg
->rep
, " TX naks:%u acks:%u dups:%u\n",
533 nla_get_u32(stats
[TIPC_NLA_STATS_TX_NACKS
]),
534 nla_get_u32(stats
[TIPC_NLA_STATS_TX_ACKS
]),
535 nla_get_u32(stats
[TIPC_NLA_STATS_RETRANSMITTED
]));
537 tipc_tlv_sprintf(msg
->rep
,
538 " Congestion link:%u Send queue max:%u avg:%u",
539 nla_get_u32(stats
[TIPC_NLA_STATS_LINK_CONGS
]),
540 nla_get_u32(stats
[TIPC_NLA_STATS_MAX_QUEUE
]),
541 nla_get_u32(stats
[TIPC_NLA_STATS_AVG_QUEUE
]));
544 static int tipc_nl_compat_link_stat_dump(struct tipc_nl_compat_msg
*msg
,
545 struct nlattr
**attrs
)
548 struct nlattr
*link
[TIPC_NLA_LINK_MAX
+ 1];
549 struct nlattr
*prop
[TIPC_NLA_PROP_MAX
+ 1];
550 struct nlattr
*stats
[TIPC_NLA_STATS_MAX
+ 1];
554 if (!attrs
[TIPC_NLA_LINK
])
557 err
= nla_parse_nested_deprecated(link
, TIPC_NLA_LINK_MAX
,
558 attrs
[TIPC_NLA_LINK
], NULL
, NULL
);
562 if (!link
[TIPC_NLA_LINK_PROP
])
565 err
= nla_parse_nested_deprecated(prop
, TIPC_NLA_PROP_MAX
,
566 link
[TIPC_NLA_LINK_PROP
], NULL
,
571 if (!link
[TIPC_NLA_LINK_STATS
])
574 err
= nla_parse_nested_deprecated(stats
, TIPC_NLA_STATS_MAX
,
575 link
[TIPC_NLA_LINK_STATS
], NULL
,
580 name
= (char *)TLV_DATA(msg
->req
);
582 len
= TLV_GET_DATA_LEN(msg
->req
);
586 len
= min_t(int, len
, TIPC_MAX_LINK_NAME
);
587 if (!string_is_valid(name
, len
))
590 if (strcmp(name
, nla_data(link
[TIPC_NLA_LINK_NAME
])) != 0)
593 tipc_tlv_sprintf(msg
->rep
, "\nLink <%s>\n",
594 (char *)nla_data(link
[TIPC_NLA_LINK_NAME
]));
596 if (link
[TIPC_NLA_LINK_BROADCAST
]) {
597 __fill_bc_link_stat(msg
, prop
, stats
);
601 if (link
[TIPC_NLA_LINK_ACTIVE
])
602 tipc_tlv_sprintf(msg
->rep
, " ACTIVE");
603 else if (link
[TIPC_NLA_LINK_UP
])
604 tipc_tlv_sprintf(msg
->rep
, " STANDBY");
606 tipc_tlv_sprintf(msg
->rep
, " DEFUNCT");
608 tipc_tlv_sprintf(msg
->rep
, " MTU:%u Priority:%u",
609 nla_get_u32(link
[TIPC_NLA_LINK_MTU
]),
610 nla_get_u32(prop
[TIPC_NLA_PROP_PRIO
]));
612 tipc_tlv_sprintf(msg
->rep
, " Tolerance:%u ms Window:%u packets\n",
613 nla_get_u32(prop
[TIPC_NLA_PROP_TOL
]),
614 nla_get_u32(prop
[TIPC_NLA_PROP_WIN
]));
616 tipc_tlv_sprintf(msg
->rep
,
617 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
618 nla_get_u32(link
[TIPC_NLA_LINK_RX
]) -
619 nla_get_u32(stats
[TIPC_NLA_STATS_RX_INFO
]),
620 nla_get_u32(stats
[TIPC_NLA_STATS_RX_FRAGMENTS
]),
621 nla_get_u32(stats
[TIPC_NLA_STATS_RX_FRAGMENTED
]),
622 nla_get_u32(stats
[TIPC_NLA_STATS_RX_BUNDLES
]),
623 nla_get_u32(stats
[TIPC_NLA_STATS_RX_BUNDLED
]));
625 tipc_tlv_sprintf(msg
->rep
,
626 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
627 nla_get_u32(link
[TIPC_NLA_LINK_TX
]) -
628 nla_get_u32(stats
[TIPC_NLA_STATS_TX_INFO
]),
629 nla_get_u32(stats
[TIPC_NLA_STATS_TX_FRAGMENTS
]),
630 nla_get_u32(stats
[TIPC_NLA_STATS_TX_FRAGMENTED
]),
631 nla_get_u32(stats
[TIPC_NLA_STATS_TX_BUNDLES
]),
632 nla_get_u32(stats
[TIPC_NLA_STATS_TX_BUNDLED
]));
634 tipc_tlv_sprintf(msg
->rep
,
635 " TX profile sample:%u packets average:%u octets\n",
636 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_CNT
]),
637 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_TOT
]) /
638 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
]));
640 tipc_tlv_sprintf(msg
->rep
,
641 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% ",
642 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P0
]),
643 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
644 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P1
]),
645 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
646 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P2
]),
647 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
648 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P3
]),
649 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])));
651 tipc_tlv_sprintf(msg
->rep
, "-16384:%u%% -32768:%u%% -66000:%u%%\n",
652 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P4
]),
653 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
654 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P5
]),
655 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
656 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P6
]),
657 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])));
659 tipc_tlv_sprintf(msg
->rep
,
660 " RX states:%u probes:%u naks:%u defs:%u dups:%u\n",
661 nla_get_u32(stats
[TIPC_NLA_STATS_RX_STATES
]),
662 nla_get_u32(stats
[TIPC_NLA_STATS_RX_PROBES
]),
663 nla_get_u32(stats
[TIPC_NLA_STATS_RX_NACKS
]),
664 nla_get_u32(stats
[TIPC_NLA_STATS_RX_DEFERRED
]),
665 nla_get_u32(stats
[TIPC_NLA_STATS_DUPLICATES
]));
667 tipc_tlv_sprintf(msg
->rep
,
668 " TX states:%u probes:%u naks:%u acks:%u dups:%u\n",
669 nla_get_u32(stats
[TIPC_NLA_STATS_TX_STATES
]),
670 nla_get_u32(stats
[TIPC_NLA_STATS_TX_PROBES
]),
671 nla_get_u32(stats
[TIPC_NLA_STATS_TX_NACKS
]),
672 nla_get_u32(stats
[TIPC_NLA_STATS_TX_ACKS
]),
673 nla_get_u32(stats
[TIPC_NLA_STATS_RETRANSMITTED
]));
675 tipc_tlv_sprintf(msg
->rep
,
676 " Congestion link:%u Send queue max:%u avg:%u",
677 nla_get_u32(stats
[TIPC_NLA_STATS_LINK_CONGS
]),
678 nla_get_u32(stats
[TIPC_NLA_STATS_MAX_QUEUE
]),
679 nla_get_u32(stats
[TIPC_NLA_STATS_AVG_QUEUE
]));
684 static int tipc_nl_compat_link_dump(struct tipc_nl_compat_msg
*msg
,
685 struct nlattr
**attrs
)
687 struct nlattr
*link
[TIPC_NLA_LINK_MAX
+ 1];
688 struct tipc_link_info link_info
;
691 if (!attrs
[TIPC_NLA_LINK
])
694 err
= nla_parse_nested_deprecated(link
, TIPC_NLA_LINK_MAX
,
695 attrs
[TIPC_NLA_LINK
], NULL
, NULL
);
699 link_info
.dest
= nla_get_flag(link
[TIPC_NLA_LINK_DEST
]);
700 link_info
.up
= htonl(nla_get_flag(link
[TIPC_NLA_LINK_UP
]));
701 nla_strscpy(link_info
.str
, link
[TIPC_NLA_LINK_NAME
],
704 return tipc_add_tlv(msg
->rep
, TIPC_TLV_LINK_INFO
,
705 &link_info
, sizeof(link_info
));
708 static int __tipc_add_link_prop(struct sk_buff
*skb
,
709 struct tipc_nl_compat_msg
*msg
,
710 struct tipc_link_config
*lc
)
713 case TIPC_CMD_SET_LINK_PRI
:
714 return nla_put_u32(skb
, TIPC_NLA_PROP_PRIO
, ntohl(lc
->value
));
715 case TIPC_CMD_SET_LINK_TOL
:
716 return nla_put_u32(skb
, TIPC_NLA_PROP_TOL
, ntohl(lc
->value
));
717 case TIPC_CMD_SET_LINK_WINDOW
:
718 return nla_put_u32(skb
, TIPC_NLA_PROP_WIN
, ntohl(lc
->value
));
724 static int tipc_nl_compat_media_set(struct sk_buff
*skb
,
725 struct tipc_nl_compat_msg
*msg
)
728 struct nlattr
*media
;
729 struct tipc_link_config
*lc
;
731 lc
= (struct tipc_link_config
*)TLV_DATA(msg
->req
);
733 media
= nla_nest_start_noflag(skb
, TIPC_NLA_MEDIA
);
737 if (nla_put_string(skb
, TIPC_NLA_MEDIA_NAME
, lc
->name
))
740 prop
= nla_nest_start_noflag(skb
, TIPC_NLA_MEDIA_PROP
);
744 __tipc_add_link_prop(skb
, msg
, lc
);
745 nla_nest_end(skb
, prop
);
746 nla_nest_end(skb
, media
);
751 static int tipc_nl_compat_bearer_set(struct sk_buff
*skb
,
752 struct tipc_nl_compat_msg
*msg
)
755 struct nlattr
*bearer
;
756 struct tipc_link_config
*lc
;
758 lc
= (struct tipc_link_config
*)TLV_DATA(msg
->req
);
760 bearer
= nla_nest_start_noflag(skb
, TIPC_NLA_BEARER
);
764 if (nla_put_string(skb
, TIPC_NLA_BEARER_NAME
, lc
->name
))
767 prop
= nla_nest_start_noflag(skb
, TIPC_NLA_BEARER_PROP
);
771 __tipc_add_link_prop(skb
, msg
, lc
);
772 nla_nest_end(skb
, prop
);
773 nla_nest_end(skb
, bearer
);
778 static int __tipc_nl_compat_link_set(struct sk_buff
*skb
,
779 struct tipc_nl_compat_msg
*msg
)
783 struct tipc_link_config
*lc
;
785 lc
= (struct tipc_link_config
*)TLV_DATA(msg
->req
);
787 link
= nla_nest_start_noflag(skb
, TIPC_NLA_LINK
);
791 if (nla_put_string(skb
, TIPC_NLA_LINK_NAME
, lc
->name
))
794 prop
= nla_nest_start_noflag(skb
, TIPC_NLA_LINK_PROP
);
798 __tipc_add_link_prop(skb
, msg
, lc
);
799 nla_nest_end(skb
, prop
);
800 nla_nest_end(skb
, link
);
805 static int tipc_nl_compat_link_set(struct tipc_nl_compat_cmd_doit
*cmd
,
807 struct tipc_nl_compat_msg
*msg
)
809 struct tipc_link_config
*lc
;
810 struct tipc_bearer
*bearer
;
811 struct tipc_media
*media
;
814 lc
= (struct tipc_link_config
*)TLV_DATA(msg
->req
);
816 len
= TLV_GET_DATA_LEN(msg
->req
);
817 len
-= offsetof(struct tipc_link_config
, name
);
821 len
= min_t(int, len
, TIPC_MAX_LINK_NAME
);
822 if (!string_is_valid(lc
->name
, len
))
825 media
= tipc_media_find(lc
->name
);
827 cmd
->doit
= &__tipc_nl_media_set
;
828 return tipc_nl_compat_media_set(skb
, msg
);
831 bearer
= tipc_bearer_find(msg
->net
, lc
->name
);
833 cmd
->doit
= &__tipc_nl_bearer_set
;
834 return tipc_nl_compat_bearer_set(skb
, msg
);
837 return __tipc_nl_compat_link_set(skb
, msg
);
840 static int tipc_nl_compat_link_reset_stats(struct tipc_nl_compat_cmd_doit
*cmd
,
842 struct tipc_nl_compat_msg
*msg
)
848 name
= (char *)TLV_DATA(msg
->req
);
850 link
= nla_nest_start_noflag(skb
, TIPC_NLA_LINK
);
854 len
= TLV_GET_DATA_LEN(msg
->req
);
858 len
= min_t(int, len
, TIPC_MAX_LINK_NAME
);
859 if (!string_is_valid(name
, len
))
862 if (nla_put_string(skb
, TIPC_NLA_LINK_NAME
, name
))
865 nla_nest_end(skb
, link
);
870 static int tipc_nl_compat_name_table_dump_header(struct tipc_nl_compat_msg
*msg
)
874 struct tipc_name_table_query
*ntq
;
875 static const char * const header
[] = {
882 ntq
= (struct tipc_name_table_query
*)TLV_DATA(msg
->req
);
883 if (TLV_GET_DATA_LEN(msg
->req
) < sizeof(struct tipc_name_table_query
))
886 depth
= ntohl(ntq
->depth
);
890 for (i
= 0; i
< depth
; i
++)
891 tipc_tlv_sprintf(msg
->rep
, header
[i
]);
892 tipc_tlv_sprintf(msg
->rep
, "\n");
897 static int tipc_nl_compat_name_table_dump(struct tipc_nl_compat_msg
*msg
,
898 struct nlattr
**attrs
)
901 struct tipc_name_table_query
*ntq
;
902 struct nlattr
*nt
[TIPC_NLA_NAME_TABLE_MAX
+ 1];
903 struct nlattr
*publ
[TIPC_NLA_PUBL_MAX
+ 1];
904 u32 node
, depth
, type
, lowbound
, upbound
;
905 static const char * const scope_str
[] = {"", " zone", " cluster",
909 if (!attrs
[TIPC_NLA_NAME_TABLE
])
912 err
= nla_parse_nested_deprecated(nt
, TIPC_NLA_NAME_TABLE_MAX
,
913 attrs
[TIPC_NLA_NAME_TABLE
], NULL
,
918 if (!nt
[TIPC_NLA_NAME_TABLE_PUBL
])
921 err
= nla_parse_nested_deprecated(publ
, TIPC_NLA_PUBL_MAX
,
922 nt
[TIPC_NLA_NAME_TABLE_PUBL
], NULL
,
927 ntq
= (struct tipc_name_table_query
*)TLV_DATA(msg
->req
);
929 depth
= ntohl(ntq
->depth
);
930 type
= ntohl(ntq
->type
);
931 lowbound
= ntohl(ntq
->lowbound
);
932 upbound
= ntohl(ntq
->upbound
);
934 if (!(depth
& TIPC_NTQ_ALLTYPES
) &&
935 (type
!= nla_get_u32(publ
[TIPC_NLA_PUBL_TYPE
])))
937 if (lowbound
&& (lowbound
> nla_get_u32(publ
[TIPC_NLA_PUBL_UPPER
])))
939 if (upbound
&& (upbound
< nla_get_u32(publ
[TIPC_NLA_PUBL_LOWER
])))
942 tipc_tlv_sprintf(msg
->rep
, "%-10u ",
943 nla_get_u32(publ
[TIPC_NLA_PUBL_TYPE
]));
948 tipc_tlv_sprintf(msg
->rep
, "%-10u %-10u ",
949 nla_get_u32(publ
[TIPC_NLA_PUBL_LOWER
]),
950 nla_get_u32(publ
[TIPC_NLA_PUBL_UPPER
]));
955 node
= nla_get_u32(publ
[TIPC_NLA_PUBL_NODE
]);
956 sprintf(port_str
, "<%u.%u.%u:%u>", tipc_zone(node
), tipc_cluster(node
),
957 tipc_node(node
), nla_get_u32(publ
[TIPC_NLA_PUBL_REF
]));
958 tipc_tlv_sprintf(msg
->rep
, "%-26s ", port_str
);
963 tipc_tlv_sprintf(msg
->rep
, "%-10u %s",
964 nla_get_u32(publ
[TIPC_NLA_PUBL_KEY
]),
965 scope_str
[nla_get_u32(publ
[TIPC_NLA_PUBL_SCOPE
])]);
967 tipc_tlv_sprintf(msg
->rep
, "\n");
972 static int __tipc_nl_compat_publ_dump(struct tipc_nl_compat_msg
*msg
,
973 struct nlattr
**attrs
)
975 u32 type
, lower
, upper
;
976 struct nlattr
*publ
[TIPC_NLA_PUBL_MAX
+ 1];
979 if (!attrs
[TIPC_NLA_PUBL
])
982 err
= nla_parse_nested_deprecated(publ
, TIPC_NLA_PUBL_MAX
,
983 attrs
[TIPC_NLA_PUBL
], NULL
, NULL
);
987 type
= nla_get_u32(publ
[TIPC_NLA_PUBL_TYPE
]);
988 lower
= nla_get_u32(publ
[TIPC_NLA_PUBL_LOWER
]);
989 upper
= nla_get_u32(publ
[TIPC_NLA_PUBL_UPPER
]);
992 tipc_tlv_sprintf(msg
->rep
, " {%u,%u}", type
, lower
);
994 tipc_tlv_sprintf(msg
->rep
, " {%u,%u,%u}", type
, lower
, upper
);
999 static int tipc_nl_compat_publ_dump(struct tipc_nl_compat_msg
*msg
, u32 sock
)
1003 struct nlattr
*nest
;
1004 struct sk_buff
*args
;
1005 struct tipc_nl_compat_cmd_dump dump
;
1007 args
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
1011 hdr
= genlmsg_put(args
, 0, 0, &tipc_genl_family
, NLM_F_MULTI
,
1018 nest
= nla_nest_start_noflag(args
, TIPC_NLA_SOCK
);
1024 if (nla_put_u32(args
, TIPC_NLA_SOCK_REF
, sock
)) {
1029 nla_nest_end(args
, nest
);
1030 genlmsg_end(args
, hdr
);
1032 dump
.dumpit
= tipc_nl_publ_dump
;
1033 dump
.format
= __tipc_nl_compat_publ_dump
;
1035 err
= __tipc_nl_compat_dumpit(&dump
, msg
, args
);
1042 static int tipc_nl_compat_sk_dump(struct tipc_nl_compat_msg
*msg
,
1043 struct nlattr
**attrs
)
1047 struct nlattr
*sock
[TIPC_NLA_SOCK_MAX
+ 1];
1049 if (!attrs
[TIPC_NLA_SOCK
])
1052 err
= nla_parse_nested_deprecated(sock
, TIPC_NLA_SOCK_MAX
,
1053 attrs
[TIPC_NLA_SOCK
], NULL
, NULL
);
1057 sock_ref
= nla_get_u32(sock
[TIPC_NLA_SOCK_REF
]);
1058 tipc_tlv_sprintf(msg
->rep
, "%u:", sock_ref
);
1060 if (sock
[TIPC_NLA_SOCK_CON
]) {
1062 struct nlattr
*con
[TIPC_NLA_CON_MAX
+ 1];
1064 err
= nla_parse_nested_deprecated(con
, TIPC_NLA_CON_MAX
,
1065 sock
[TIPC_NLA_SOCK_CON
],
1071 node
= nla_get_u32(con
[TIPC_NLA_CON_NODE
]);
1072 tipc_tlv_sprintf(msg
->rep
, " connected to <%u.%u.%u:%u>",
1076 nla_get_u32(con
[TIPC_NLA_CON_SOCK
]));
1078 if (con
[TIPC_NLA_CON_FLAG
])
1079 tipc_tlv_sprintf(msg
->rep
, " via {%u,%u}\n",
1080 nla_get_u32(con
[TIPC_NLA_CON_TYPE
]),
1081 nla_get_u32(con
[TIPC_NLA_CON_INST
]));
1083 tipc_tlv_sprintf(msg
->rep
, "\n");
1084 } else if (sock
[TIPC_NLA_SOCK_HAS_PUBL
]) {
1085 tipc_tlv_sprintf(msg
->rep
, " bound to");
1087 err
= tipc_nl_compat_publ_dump(msg
, sock_ref
);
1091 tipc_tlv_sprintf(msg
->rep
, "\n");
1096 static int tipc_nl_compat_media_dump(struct tipc_nl_compat_msg
*msg
,
1097 struct nlattr
**attrs
)
1099 struct nlattr
*media
[TIPC_NLA_MEDIA_MAX
+ 1];
1102 if (!attrs
[TIPC_NLA_MEDIA
])
1105 err
= nla_parse_nested_deprecated(media
, TIPC_NLA_MEDIA_MAX
,
1106 attrs
[TIPC_NLA_MEDIA
], NULL
, NULL
);
1110 return tipc_add_tlv(msg
->rep
, TIPC_TLV_MEDIA_NAME
,
1111 nla_data(media
[TIPC_NLA_MEDIA_NAME
]),
1112 nla_len(media
[TIPC_NLA_MEDIA_NAME
]));
1115 static int tipc_nl_compat_node_dump(struct tipc_nl_compat_msg
*msg
,
1116 struct nlattr
**attrs
)
1118 struct tipc_node_info node_info
;
1119 struct nlattr
*node
[TIPC_NLA_NODE_MAX
+ 1];
1122 if (!attrs
[TIPC_NLA_NODE
])
1125 err
= nla_parse_nested_deprecated(node
, TIPC_NLA_NODE_MAX
,
1126 attrs
[TIPC_NLA_NODE
], NULL
, NULL
);
1130 node_info
.addr
= htonl(nla_get_u32(node
[TIPC_NLA_NODE_ADDR
]));
1131 node_info
.up
= htonl(nla_get_flag(node
[TIPC_NLA_NODE_UP
]));
1133 return tipc_add_tlv(msg
->rep
, TIPC_TLV_NODE_INFO
, &node_info
,
1137 static int tipc_nl_compat_net_set(struct tipc_nl_compat_cmd_doit
*cmd
,
1138 struct sk_buff
*skb
,
1139 struct tipc_nl_compat_msg
*msg
)
1144 val
= ntohl(*(__be32
*)TLV_DATA(msg
->req
));
1146 net
= nla_nest_start_noflag(skb
, TIPC_NLA_NET
);
1150 if (msg
->cmd
== TIPC_CMD_SET_NODE_ADDR
) {
1151 if (nla_put_u32(skb
, TIPC_NLA_NET_ADDR
, val
))
1153 } else if (msg
->cmd
== TIPC_CMD_SET_NETID
) {
1154 if (nla_put_u32(skb
, TIPC_NLA_NET_ID
, val
))
1157 nla_nest_end(skb
, net
);
1162 static int tipc_nl_compat_net_dump(struct tipc_nl_compat_msg
*msg
,
1163 struct nlattr
**attrs
)
1166 struct nlattr
*net
[TIPC_NLA_NET_MAX
+ 1];
1169 if (!attrs
[TIPC_NLA_NET
])
1172 err
= nla_parse_nested_deprecated(net
, TIPC_NLA_NET_MAX
,
1173 attrs
[TIPC_NLA_NET
], NULL
, NULL
);
1177 id
= htonl(nla_get_u32(net
[TIPC_NLA_NET_ID
]));
1179 return tipc_add_tlv(msg
->rep
, TIPC_TLV_UNSIGNED
, &id
, sizeof(id
));
1182 static int tipc_cmd_show_stats_compat(struct tipc_nl_compat_msg
*msg
)
1184 msg
->rep
= tipc_tlv_alloc(ULTRA_STRING_MAX_LEN
);
1188 tipc_tlv_init(msg
->rep
, TIPC_TLV_ULTRA_STRING
);
1189 tipc_tlv_sprintf(msg
->rep
, "TIPC version " TIPC_MOD_VER
"\n");
1194 static int tipc_nl_compat_handle(struct tipc_nl_compat_msg
*msg
)
1196 struct tipc_nl_compat_cmd_dump dump
;
1197 struct tipc_nl_compat_cmd_doit doit
;
1199 memset(&dump
, 0, sizeof(dump
));
1200 memset(&doit
, 0, sizeof(doit
));
1204 msg
->rep
= tipc_tlv_alloc(0);
1208 case TIPC_CMD_GET_BEARER_NAMES
:
1209 msg
->rep_size
= MAX_BEARERS
* TLV_SPACE(TIPC_MAX_BEARER_NAME
);
1210 dump
.dumpit
= tipc_nl_bearer_dump
;
1211 dump
.format
= tipc_nl_compat_bearer_dump
;
1212 return tipc_nl_compat_dumpit(&dump
, msg
);
1213 case TIPC_CMD_ENABLE_BEARER
:
1214 msg
->req_type
= TIPC_TLV_BEARER_CONFIG
;
1215 doit
.doit
= __tipc_nl_bearer_enable
;
1216 doit
.transcode
= tipc_nl_compat_bearer_enable
;
1217 return tipc_nl_compat_doit(&doit
, msg
);
1218 case TIPC_CMD_DISABLE_BEARER
:
1219 msg
->req_type
= TIPC_TLV_BEARER_NAME
;
1220 doit
.doit
= __tipc_nl_bearer_disable
;
1221 doit
.transcode
= tipc_nl_compat_bearer_disable
;
1222 return tipc_nl_compat_doit(&doit
, msg
);
1223 case TIPC_CMD_SHOW_LINK_STATS
:
1224 msg
->req_type
= TIPC_TLV_LINK_NAME
;
1225 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1226 msg
->rep_type
= TIPC_TLV_ULTRA_STRING
;
1227 dump
.dumpit
= tipc_nl_node_dump_link
;
1228 dump
.format
= tipc_nl_compat_link_stat_dump
;
1229 return tipc_nl_compat_dumpit(&dump
, msg
);
1230 case TIPC_CMD_GET_LINKS
:
1231 msg
->req_type
= TIPC_TLV_NET_ADDR
;
1232 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1233 dump
.dumpit
= tipc_nl_node_dump_link
;
1234 dump
.format
= tipc_nl_compat_link_dump
;
1235 return tipc_nl_compat_dumpit(&dump
, msg
);
1236 case TIPC_CMD_SET_LINK_TOL
:
1237 case TIPC_CMD_SET_LINK_PRI
:
1238 case TIPC_CMD_SET_LINK_WINDOW
:
1239 msg
->req_type
= TIPC_TLV_LINK_CONFIG
;
1240 doit
.doit
= tipc_nl_node_set_link
;
1241 doit
.transcode
= tipc_nl_compat_link_set
;
1242 return tipc_nl_compat_doit(&doit
, msg
);
1243 case TIPC_CMD_RESET_LINK_STATS
:
1244 msg
->req_type
= TIPC_TLV_LINK_NAME
;
1245 doit
.doit
= tipc_nl_node_reset_link_stats
;
1246 doit
.transcode
= tipc_nl_compat_link_reset_stats
;
1247 return tipc_nl_compat_doit(&doit
, msg
);
1248 case TIPC_CMD_SHOW_NAME_TABLE
:
1249 msg
->req_type
= TIPC_TLV_NAME_TBL_QUERY
;
1250 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1251 msg
->rep_type
= TIPC_TLV_ULTRA_STRING
;
1252 dump
.header
= tipc_nl_compat_name_table_dump_header
;
1253 dump
.dumpit
= tipc_nl_name_table_dump
;
1254 dump
.format
= tipc_nl_compat_name_table_dump
;
1255 return tipc_nl_compat_dumpit(&dump
, msg
);
1256 case TIPC_CMD_SHOW_PORTS
:
1257 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1258 msg
->rep_type
= TIPC_TLV_ULTRA_STRING
;
1259 dump
.dumpit
= tipc_nl_sk_dump
;
1260 dump
.format
= tipc_nl_compat_sk_dump
;
1261 return tipc_nl_compat_dumpit(&dump
, msg
);
1262 case TIPC_CMD_GET_MEDIA_NAMES
:
1263 msg
->rep_size
= MAX_MEDIA
* TLV_SPACE(TIPC_MAX_MEDIA_NAME
);
1264 dump
.dumpit
= tipc_nl_media_dump
;
1265 dump
.format
= tipc_nl_compat_media_dump
;
1266 return tipc_nl_compat_dumpit(&dump
, msg
);
1267 case TIPC_CMD_GET_NODES
:
1268 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1269 dump
.dumpit
= tipc_nl_node_dump
;
1270 dump
.format
= tipc_nl_compat_node_dump
;
1271 return tipc_nl_compat_dumpit(&dump
, msg
);
1272 case TIPC_CMD_SET_NODE_ADDR
:
1273 msg
->req_type
= TIPC_TLV_NET_ADDR
;
1274 doit
.doit
= __tipc_nl_net_set
;
1275 doit
.transcode
= tipc_nl_compat_net_set
;
1276 return tipc_nl_compat_doit(&doit
, msg
);
1277 case TIPC_CMD_SET_NETID
:
1278 msg
->req_type
= TIPC_TLV_UNSIGNED
;
1279 doit
.doit
= __tipc_nl_net_set
;
1280 doit
.transcode
= tipc_nl_compat_net_set
;
1281 return tipc_nl_compat_doit(&doit
, msg
);
1282 case TIPC_CMD_GET_NETID
:
1283 msg
->rep_size
= sizeof(u32
);
1284 dump
.dumpit
= tipc_nl_net_dump
;
1285 dump
.format
= tipc_nl_compat_net_dump
;
1286 return tipc_nl_compat_dumpit(&dump
, msg
);
1287 case TIPC_CMD_SHOW_STATS
:
1288 return tipc_cmd_show_stats_compat(msg
);
1294 static int tipc_nl_compat_recv(struct sk_buff
*skb
, struct genl_info
*info
)
1298 struct tipc_nl_compat_msg msg
;
1299 struct nlmsghdr
*req_nlh
;
1300 struct nlmsghdr
*rep_nlh
;
1301 struct tipc_genlmsghdr
*req_userhdr
= info
->userhdr
;
1303 memset(&msg
, 0, sizeof(msg
));
1305 req_nlh
= (struct nlmsghdr
*)skb
->data
;
1306 msg
.req
= nlmsg_data(req_nlh
) + GENL_HDRLEN
+ TIPC_GENL_HDRLEN
;
1307 msg
.cmd
= req_userhdr
->cmd
;
1308 msg
.net
= genl_info_net(info
);
1309 msg
.dst_sk
= skb
->sk
;
1311 if ((msg
.cmd
& 0xC000) && (!netlink_net_capable(skb
, CAP_NET_ADMIN
))) {
1312 msg
.rep
= tipc_get_err_tlv(TIPC_CFG_NOT_NET_ADMIN
);
1317 msg
.req_size
= nlmsg_attrlen(req_nlh
, GENL_HDRLEN
+ TIPC_GENL_HDRLEN
);
1318 if (msg
.req_size
&& !TLV_OK(msg
.req
, msg
.req_size
)) {
1319 msg
.rep
= tipc_get_err_tlv(TIPC_CFG_NOT_SUPPORTED
);
1324 err
= tipc_nl_compat_handle(&msg
);
1325 if ((err
== -EOPNOTSUPP
) || (err
== -EPERM
))
1326 msg
.rep
= tipc_get_err_tlv(TIPC_CFG_NOT_SUPPORTED
);
1327 else if (err
== -EINVAL
)
1328 msg
.rep
= tipc_get_err_tlv(TIPC_CFG_TLV_ERROR
);
1333 len
= nlmsg_total_size(GENL_HDRLEN
+ TIPC_GENL_HDRLEN
);
1334 skb_push(msg
.rep
, len
);
1335 rep_nlh
= nlmsg_hdr(msg
.rep
);
1336 memcpy(rep_nlh
, info
->nlhdr
, len
);
1337 rep_nlh
->nlmsg_len
= msg
.rep
->len
;
1338 genlmsg_unicast(msg
.net
, msg
.rep
, NETLINK_CB(skb
).portid
);
1343 static const struct genl_small_ops tipc_genl_compat_ops
[] = {
1345 .cmd
= TIPC_GENL_CMD
,
1346 .validate
= GENL_DONT_VALIDATE_STRICT
| GENL_DONT_VALIDATE_DUMP
,
1347 .doit
= tipc_nl_compat_recv
,
1351 static struct genl_family tipc_genl_compat_family __ro_after_init
= {
1352 .name
= TIPC_GENL_NAME
,
1353 .version
= TIPC_GENL_VERSION
,
1354 .hdrsize
= TIPC_GENL_HDRLEN
,
1357 .module
= THIS_MODULE
,
1358 .small_ops
= tipc_genl_compat_ops
,
1359 .n_small_ops
= ARRAY_SIZE(tipc_genl_compat_ops
),
1362 int __init
tipc_netlink_compat_start(void)
1366 res
= genl_register_family(&tipc_genl_compat_family
);
1368 pr_err("Failed to register legacy compat interface\n");
1375 void tipc_netlink_compat_stop(void)
1377 genl_unregister_family(&tipc_genl_compat_family
);