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
{
64 struct tipc_nl_compat_cmd_dump
{
65 int (*header
)(struct tipc_nl_compat_msg
*);
66 int (*dumpit
)(struct sk_buff
*, struct netlink_callback
*);
67 int (*format
)(struct tipc_nl_compat_msg
*msg
, struct nlattr
**attrs
);
70 struct tipc_nl_compat_cmd_doit
{
71 int (*doit
)(struct sk_buff
*skb
, struct genl_info
*info
);
72 int (*transcode
)(struct tipc_nl_compat_cmd_doit
*cmd
,
73 struct sk_buff
*skb
, struct tipc_nl_compat_msg
*msg
);
76 static int tipc_skb_tailroom(struct sk_buff
*skb
)
81 tailroom
= skb_tailroom(skb
);
82 limit
= TIPC_SKB_MAX
- skb
->len
;
90 static inline int TLV_GET_DATA_LEN(struct tlv_desc
*tlv
)
92 return TLV_GET_LEN(tlv
) - TLV_SPACE(0);
95 static int tipc_add_tlv(struct sk_buff
*skb
, u16 type
, void *data
, u16 len
)
97 struct tlv_desc
*tlv
= (struct tlv_desc
*)skb_tail_pointer(skb
);
99 if (tipc_skb_tailroom(skb
) < TLV_SPACE(len
))
102 skb_put(skb
, TLV_SPACE(len
));
103 tlv
->tlv_type
= htons(type
);
104 tlv
->tlv_len
= htons(TLV_LENGTH(len
));
106 memcpy(TLV_DATA(tlv
), data
, len
);
111 static void tipc_tlv_init(struct sk_buff
*skb
, u16 type
)
113 struct tlv_desc
*tlv
= (struct tlv_desc
*)skb
->data
;
116 TLV_SET_TYPE(tlv
, type
);
117 skb_put(skb
, sizeof(struct tlv_desc
));
120 static int tipc_tlv_sprintf(struct sk_buff
*skb
, const char *fmt
, ...)
126 struct tlv_desc
*tlv
;
129 rem
= tipc_skb_tailroom(skb
);
131 tlv
= (struct tlv_desc
*)skb
->data
;
132 len
= TLV_GET_LEN(tlv
);
133 buf
= TLV_DATA(tlv
) + len
;
136 n
= vscnprintf(buf
, rem
, fmt
, args
);
139 TLV_SET_LEN(tlv
, n
+ len
);
145 static struct sk_buff
*tipc_tlv_alloc(int size
)
150 size
= TLV_SPACE(size
);
151 hdr_len
= nlmsg_total_size(GENL_HDRLEN
+ TIPC_GENL_HDRLEN
);
153 buf
= alloc_skb(hdr_len
+ size
, GFP_KERNEL
);
157 skb_reserve(buf
, hdr_len
);
162 static struct sk_buff
*tipc_get_err_tlv(char *str
)
164 int str_len
= strlen(str
) + 1;
167 buf
= tipc_tlv_alloc(TLV_SPACE(str_len
));
169 tipc_add_tlv(buf
, TIPC_TLV_ERROR_STRING
, str
, str_len
);
174 static inline bool string_is_valid(char *s
, int len
)
176 return memchr(s
, '\0', len
) ? true : false;
179 static int __tipc_nl_compat_dumpit(struct tipc_nl_compat_cmd_dump
*cmd
,
180 struct tipc_nl_compat_msg
*msg
,
186 struct nlmsghdr
*nlmsg
;
187 struct netlink_callback cb
;
189 memset(&cb
, 0, sizeof(cb
));
190 cb
.nlh
= (struct nlmsghdr
*)arg
->data
;
193 buf
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
197 buf
->sk
= msg
->dst_sk
;
198 if (__tipc_dump_start(&cb
, msg
->net
)) {
206 len
= (*cmd
->dumpit
)(buf
, &cb
);
208 nlmsg_for_each_msg(nlmsg
, nlmsg_hdr(buf
), len
, rem
) {
209 struct nlattr
**attrs
;
211 err
= tipc_nlmsg_parse(nlmsg
, &attrs
);
215 err
= (*cmd
->format
)(msg
, attrs
);
219 if (tipc_skb_tailroom(msg
->rep
) <= 1) {
225 skb_reset_tail_pointer(buf
);
236 if (err
== -EMSGSIZE
) {
237 /* The legacy API only considered messages filling
238 * "ULTRA_STRING_MAX_LEN" to be truncated.
240 if ((TIPC_SKB_MAX
- msg
->rep
->len
) <= 1) {
241 char *tail
= skb_tail_pointer(msg
->rep
);
244 sprintf(tail
- sizeof(REPLY_TRUNCATED
) - 1,
254 static int tipc_nl_compat_dumpit(struct tipc_nl_compat_cmd_dump
*cmd
,
255 struct tipc_nl_compat_msg
*msg
)
260 if (msg
->req_type
&& !TLV_CHECK_TYPE(msg
->req
, msg
->req_type
))
263 msg
->rep
= tipc_tlv_alloc(msg
->rep_size
);
268 tipc_tlv_init(msg
->rep
, msg
->rep_type
);
273 arg
= nlmsg_new(0, GFP_KERNEL
);
280 err
= __tipc_nl_compat_dumpit(cmd
, msg
, arg
);
290 static int __tipc_nl_compat_doit(struct tipc_nl_compat_cmd_doit
*cmd
,
291 struct tipc_nl_compat_msg
*msg
)
294 struct sk_buff
*doit_buf
;
295 struct sk_buff
*trans_buf
;
296 struct nlattr
**attrbuf
;
297 struct genl_info info
;
299 trans_buf
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
303 attrbuf
= kmalloc_array(tipc_genl_family
.maxattr
+ 1,
304 sizeof(struct nlattr
*),
311 doit_buf
= alloc_skb(NLMSG_GOODSIZE
, GFP_KERNEL
);
317 memset(&info
, 0, sizeof(info
));
318 info
.attrs
= attrbuf
;
321 err
= (*cmd
->transcode
)(cmd
, trans_buf
, msg
);
325 err
= nla_parse(attrbuf
, tipc_genl_family
.maxattr
,
326 (const struct nlattr
*)trans_buf
->data
,
327 trans_buf
->len
, NULL
, NULL
);
331 doit_buf
->sk
= msg
->dst_sk
;
333 err
= (*cmd
->doit
)(doit_buf
, &info
);
341 kfree_skb(trans_buf
);
346 static int tipc_nl_compat_doit(struct tipc_nl_compat_cmd_doit
*cmd
,
347 struct tipc_nl_compat_msg
*msg
)
351 if (msg
->req_type
&& !TLV_CHECK_TYPE(msg
->req
, msg
->req_type
))
354 err
= __tipc_nl_compat_doit(cmd
, msg
);
358 /* The legacy API considered an empty message a success message */
359 msg
->rep
= tipc_tlv_alloc(0);
366 static int tipc_nl_compat_bearer_dump(struct tipc_nl_compat_msg
*msg
,
367 struct nlattr
**attrs
)
369 struct nlattr
*bearer
[TIPC_NLA_BEARER_MAX
+ 1];
372 if (!attrs
[TIPC_NLA_BEARER
])
375 err
= nla_parse_nested(bearer
, TIPC_NLA_BEARER_MAX
,
376 attrs
[TIPC_NLA_BEARER
], NULL
, NULL
);
380 return tipc_add_tlv(msg
->rep
, TIPC_TLV_BEARER_NAME
,
381 nla_data(bearer
[TIPC_NLA_BEARER_NAME
]),
382 nla_len(bearer
[TIPC_NLA_BEARER_NAME
]));
385 static int tipc_nl_compat_bearer_enable(struct tipc_nl_compat_cmd_doit
*cmd
,
387 struct tipc_nl_compat_msg
*msg
)
390 struct nlattr
*bearer
;
391 struct tipc_bearer_config
*b
;
394 b
= (struct tipc_bearer_config
*)TLV_DATA(msg
->req
);
396 bearer
= nla_nest_start(skb
, TIPC_NLA_BEARER
);
400 len
= min_t(int, TLV_GET_DATA_LEN(msg
->req
), TIPC_MAX_BEARER_NAME
);
401 if (!string_is_valid(b
->name
, len
))
404 if (nla_put_string(skb
, TIPC_NLA_BEARER_NAME
, b
->name
))
407 if (nla_put_u32(skb
, TIPC_NLA_BEARER_DOMAIN
, ntohl(b
->disc_domain
)))
410 if (ntohl(b
->priority
) <= TIPC_MAX_LINK_PRI
) {
411 prop
= nla_nest_start(skb
, TIPC_NLA_BEARER_PROP
);
414 if (nla_put_u32(skb
, TIPC_NLA_PROP_PRIO
, ntohl(b
->priority
)))
416 nla_nest_end(skb
, prop
);
418 nla_nest_end(skb
, bearer
);
423 static int tipc_nl_compat_bearer_disable(struct tipc_nl_compat_cmd_doit
*cmd
,
425 struct tipc_nl_compat_msg
*msg
)
428 struct nlattr
*bearer
;
431 name
= (char *)TLV_DATA(msg
->req
);
433 bearer
= nla_nest_start(skb
, TIPC_NLA_BEARER
);
437 len
= min_t(int, TLV_GET_DATA_LEN(msg
->req
), TIPC_MAX_BEARER_NAME
);
438 if (!string_is_valid(name
, len
))
441 if (nla_put_string(skb
, TIPC_NLA_BEARER_NAME
, name
))
444 nla_nest_end(skb
, bearer
);
449 static inline u32
perc(u32 count
, u32 total
)
451 return (count
* 100 + (total
/ 2)) / total
;
454 static void __fill_bc_link_stat(struct tipc_nl_compat_msg
*msg
,
455 struct nlattr
*prop
[], struct nlattr
*stats
[])
457 tipc_tlv_sprintf(msg
->rep
, " Window:%u packets\n",
458 nla_get_u32(prop
[TIPC_NLA_PROP_WIN
]));
460 tipc_tlv_sprintf(msg
->rep
,
461 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
462 nla_get_u32(stats
[TIPC_NLA_STATS_RX_INFO
]),
463 nla_get_u32(stats
[TIPC_NLA_STATS_RX_FRAGMENTS
]),
464 nla_get_u32(stats
[TIPC_NLA_STATS_RX_FRAGMENTED
]),
465 nla_get_u32(stats
[TIPC_NLA_STATS_RX_BUNDLES
]),
466 nla_get_u32(stats
[TIPC_NLA_STATS_RX_BUNDLED
]));
468 tipc_tlv_sprintf(msg
->rep
,
469 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
470 nla_get_u32(stats
[TIPC_NLA_STATS_TX_INFO
]),
471 nla_get_u32(stats
[TIPC_NLA_STATS_TX_FRAGMENTS
]),
472 nla_get_u32(stats
[TIPC_NLA_STATS_TX_FRAGMENTED
]),
473 nla_get_u32(stats
[TIPC_NLA_STATS_TX_BUNDLES
]),
474 nla_get_u32(stats
[TIPC_NLA_STATS_TX_BUNDLED
]));
476 tipc_tlv_sprintf(msg
->rep
, " RX naks:%u defs:%u dups:%u\n",
477 nla_get_u32(stats
[TIPC_NLA_STATS_RX_NACKS
]),
478 nla_get_u32(stats
[TIPC_NLA_STATS_RX_DEFERRED
]),
479 nla_get_u32(stats
[TIPC_NLA_STATS_DUPLICATES
]));
481 tipc_tlv_sprintf(msg
->rep
, " TX naks:%u acks:%u dups:%u\n",
482 nla_get_u32(stats
[TIPC_NLA_STATS_TX_NACKS
]),
483 nla_get_u32(stats
[TIPC_NLA_STATS_TX_ACKS
]),
484 nla_get_u32(stats
[TIPC_NLA_STATS_RETRANSMITTED
]));
486 tipc_tlv_sprintf(msg
->rep
,
487 " Congestion link:%u Send queue max:%u avg:%u",
488 nla_get_u32(stats
[TIPC_NLA_STATS_LINK_CONGS
]),
489 nla_get_u32(stats
[TIPC_NLA_STATS_MAX_QUEUE
]),
490 nla_get_u32(stats
[TIPC_NLA_STATS_AVG_QUEUE
]));
493 static int tipc_nl_compat_link_stat_dump(struct tipc_nl_compat_msg
*msg
,
494 struct nlattr
**attrs
)
497 struct nlattr
*link
[TIPC_NLA_LINK_MAX
+ 1];
498 struct nlattr
*prop
[TIPC_NLA_PROP_MAX
+ 1];
499 struct nlattr
*stats
[TIPC_NLA_STATS_MAX
+ 1];
503 if (!attrs
[TIPC_NLA_LINK
])
506 err
= nla_parse_nested(link
, TIPC_NLA_LINK_MAX
, attrs
[TIPC_NLA_LINK
],
511 if (!link
[TIPC_NLA_LINK_PROP
])
514 err
= nla_parse_nested(prop
, TIPC_NLA_PROP_MAX
,
515 link
[TIPC_NLA_LINK_PROP
], NULL
, NULL
);
519 if (!link
[TIPC_NLA_LINK_STATS
])
522 err
= nla_parse_nested(stats
, TIPC_NLA_STATS_MAX
,
523 link
[TIPC_NLA_LINK_STATS
], NULL
, NULL
);
527 name
= (char *)TLV_DATA(msg
->req
);
529 len
= min_t(int, TLV_GET_DATA_LEN(msg
->req
), TIPC_MAX_LINK_NAME
);
530 if (!string_is_valid(name
, len
))
533 if (strcmp(name
, nla_data(link
[TIPC_NLA_LINK_NAME
])) != 0)
536 tipc_tlv_sprintf(msg
->rep
, "\nLink <%s>\n",
537 nla_data(link
[TIPC_NLA_LINK_NAME
]));
539 if (link
[TIPC_NLA_LINK_BROADCAST
]) {
540 __fill_bc_link_stat(msg
, prop
, stats
);
544 if (link
[TIPC_NLA_LINK_ACTIVE
])
545 tipc_tlv_sprintf(msg
->rep
, " ACTIVE");
546 else if (link
[TIPC_NLA_LINK_UP
])
547 tipc_tlv_sprintf(msg
->rep
, " STANDBY");
549 tipc_tlv_sprintf(msg
->rep
, " DEFUNCT");
551 tipc_tlv_sprintf(msg
->rep
, " MTU:%u Priority:%u",
552 nla_get_u32(link
[TIPC_NLA_LINK_MTU
]),
553 nla_get_u32(prop
[TIPC_NLA_PROP_PRIO
]));
555 tipc_tlv_sprintf(msg
->rep
, " Tolerance:%u ms Window:%u packets\n",
556 nla_get_u32(prop
[TIPC_NLA_PROP_TOL
]),
557 nla_get_u32(prop
[TIPC_NLA_PROP_WIN
]));
559 tipc_tlv_sprintf(msg
->rep
,
560 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
561 nla_get_u32(link
[TIPC_NLA_LINK_RX
]) -
562 nla_get_u32(stats
[TIPC_NLA_STATS_RX_INFO
]),
563 nla_get_u32(stats
[TIPC_NLA_STATS_RX_FRAGMENTS
]),
564 nla_get_u32(stats
[TIPC_NLA_STATS_RX_FRAGMENTED
]),
565 nla_get_u32(stats
[TIPC_NLA_STATS_RX_BUNDLES
]),
566 nla_get_u32(stats
[TIPC_NLA_STATS_RX_BUNDLED
]));
568 tipc_tlv_sprintf(msg
->rep
,
569 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
570 nla_get_u32(link
[TIPC_NLA_LINK_TX
]) -
571 nla_get_u32(stats
[TIPC_NLA_STATS_TX_INFO
]),
572 nla_get_u32(stats
[TIPC_NLA_STATS_TX_FRAGMENTS
]),
573 nla_get_u32(stats
[TIPC_NLA_STATS_TX_FRAGMENTED
]),
574 nla_get_u32(stats
[TIPC_NLA_STATS_TX_BUNDLES
]),
575 nla_get_u32(stats
[TIPC_NLA_STATS_TX_BUNDLED
]));
577 tipc_tlv_sprintf(msg
->rep
,
578 " TX profile sample:%u packets average:%u octets\n",
579 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_CNT
]),
580 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_TOT
]) /
581 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
]));
583 tipc_tlv_sprintf(msg
->rep
,
584 " 0-64:%u%% -256:%u%% -1024:%u%% -4096:%u%% ",
585 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P0
]),
586 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
587 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P1
]),
588 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
589 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P2
]),
590 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
591 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P3
]),
592 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])));
594 tipc_tlv_sprintf(msg
->rep
, "-16384:%u%% -32768:%u%% -66000:%u%%\n",
595 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P4
]),
596 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
597 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P5
]),
598 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])),
599 perc(nla_get_u32(stats
[TIPC_NLA_STATS_MSG_LEN_P6
]),
600 nla_get_u32(stats
[TIPC_NLA_STATS_MSG_PROF_TOT
])));
602 tipc_tlv_sprintf(msg
->rep
,
603 " RX states:%u probes:%u naks:%u defs:%u dups:%u\n",
604 nla_get_u32(stats
[TIPC_NLA_STATS_RX_STATES
]),
605 nla_get_u32(stats
[TIPC_NLA_STATS_RX_PROBES
]),
606 nla_get_u32(stats
[TIPC_NLA_STATS_RX_NACKS
]),
607 nla_get_u32(stats
[TIPC_NLA_STATS_RX_DEFERRED
]),
608 nla_get_u32(stats
[TIPC_NLA_STATS_DUPLICATES
]));
610 tipc_tlv_sprintf(msg
->rep
,
611 " TX states:%u probes:%u naks:%u acks:%u dups:%u\n",
612 nla_get_u32(stats
[TIPC_NLA_STATS_TX_STATES
]),
613 nla_get_u32(stats
[TIPC_NLA_STATS_TX_PROBES
]),
614 nla_get_u32(stats
[TIPC_NLA_STATS_TX_NACKS
]),
615 nla_get_u32(stats
[TIPC_NLA_STATS_TX_ACKS
]),
616 nla_get_u32(stats
[TIPC_NLA_STATS_RETRANSMITTED
]));
618 tipc_tlv_sprintf(msg
->rep
,
619 " Congestion link:%u Send queue max:%u avg:%u",
620 nla_get_u32(stats
[TIPC_NLA_STATS_LINK_CONGS
]),
621 nla_get_u32(stats
[TIPC_NLA_STATS_MAX_QUEUE
]),
622 nla_get_u32(stats
[TIPC_NLA_STATS_AVG_QUEUE
]));
627 static int tipc_nl_compat_link_dump(struct tipc_nl_compat_msg
*msg
,
628 struct nlattr
**attrs
)
630 struct nlattr
*link
[TIPC_NLA_LINK_MAX
+ 1];
631 struct tipc_link_info link_info
;
634 if (!attrs
[TIPC_NLA_LINK
])
637 err
= nla_parse_nested(link
, TIPC_NLA_LINK_MAX
, attrs
[TIPC_NLA_LINK
],
642 link_info
.dest
= nla_get_flag(link
[TIPC_NLA_LINK_DEST
]);
643 link_info
.up
= htonl(nla_get_flag(link
[TIPC_NLA_LINK_UP
]));
644 nla_strlcpy(link_info
.str
, link
[TIPC_NLA_LINK_NAME
],
647 return tipc_add_tlv(msg
->rep
, TIPC_TLV_LINK_INFO
,
648 &link_info
, sizeof(link_info
));
651 static int __tipc_add_link_prop(struct sk_buff
*skb
,
652 struct tipc_nl_compat_msg
*msg
,
653 struct tipc_link_config
*lc
)
656 case TIPC_CMD_SET_LINK_PRI
:
657 return nla_put_u32(skb
, TIPC_NLA_PROP_PRIO
, ntohl(lc
->value
));
658 case TIPC_CMD_SET_LINK_TOL
:
659 return nla_put_u32(skb
, TIPC_NLA_PROP_TOL
, ntohl(lc
->value
));
660 case TIPC_CMD_SET_LINK_WINDOW
:
661 return nla_put_u32(skb
, TIPC_NLA_PROP_WIN
, ntohl(lc
->value
));
667 static int tipc_nl_compat_media_set(struct sk_buff
*skb
,
668 struct tipc_nl_compat_msg
*msg
)
671 struct nlattr
*media
;
672 struct tipc_link_config
*lc
;
675 lc
= (struct tipc_link_config
*)TLV_DATA(msg
->req
);
677 media
= nla_nest_start(skb
, TIPC_NLA_MEDIA
);
681 len
= min_t(int, TLV_GET_DATA_LEN(msg
->req
), TIPC_MAX_MEDIA_NAME
);
682 if (!string_is_valid(lc
->name
, len
))
685 if (nla_put_string(skb
, TIPC_NLA_MEDIA_NAME
, lc
->name
))
688 prop
= nla_nest_start(skb
, TIPC_NLA_MEDIA_PROP
);
692 __tipc_add_link_prop(skb
, msg
, lc
);
693 nla_nest_end(skb
, prop
);
694 nla_nest_end(skb
, media
);
699 static int tipc_nl_compat_bearer_set(struct sk_buff
*skb
,
700 struct tipc_nl_compat_msg
*msg
)
703 struct nlattr
*bearer
;
704 struct tipc_link_config
*lc
;
707 lc
= (struct tipc_link_config
*)TLV_DATA(msg
->req
);
709 bearer
= nla_nest_start(skb
, TIPC_NLA_BEARER
);
713 len
= min_t(int, TLV_GET_DATA_LEN(msg
->req
), TIPC_MAX_MEDIA_NAME
);
714 if (!string_is_valid(lc
->name
, len
))
717 if (nla_put_string(skb
, TIPC_NLA_BEARER_NAME
, lc
->name
))
720 prop
= nla_nest_start(skb
, TIPC_NLA_BEARER_PROP
);
724 __tipc_add_link_prop(skb
, msg
, lc
);
725 nla_nest_end(skb
, prop
);
726 nla_nest_end(skb
, bearer
);
731 static int __tipc_nl_compat_link_set(struct sk_buff
*skb
,
732 struct tipc_nl_compat_msg
*msg
)
736 struct tipc_link_config
*lc
;
738 lc
= (struct tipc_link_config
*)TLV_DATA(msg
->req
);
740 link
= nla_nest_start(skb
, TIPC_NLA_LINK
);
744 if (nla_put_string(skb
, TIPC_NLA_LINK_NAME
, lc
->name
))
747 prop
= nla_nest_start(skb
, TIPC_NLA_LINK_PROP
);
751 __tipc_add_link_prop(skb
, msg
, lc
);
752 nla_nest_end(skb
, prop
);
753 nla_nest_end(skb
, link
);
758 static int tipc_nl_compat_link_set(struct tipc_nl_compat_cmd_doit
*cmd
,
760 struct tipc_nl_compat_msg
*msg
)
762 struct tipc_link_config
*lc
;
763 struct tipc_bearer
*bearer
;
764 struct tipc_media
*media
;
767 lc
= (struct tipc_link_config
*)TLV_DATA(msg
->req
);
769 len
= min_t(int, TLV_GET_DATA_LEN(msg
->req
), TIPC_MAX_LINK_NAME
);
770 if (!string_is_valid(lc
->name
, len
))
773 media
= tipc_media_find(lc
->name
);
775 cmd
->doit
= &__tipc_nl_media_set
;
776 return tipc_nl_compat_media_set(skb
, msg
);
779 bearer
= tipc_bearer_find(msg
->net
, lc
->name
);
781 cmd
->doit
= &__tipc_nl_bearer_set
;
782 return tipc_nl_compat_bearer_set(skb
, msg
);
785 return __tipc_nl_compat_link_set(skb
, msg
);
788 static int tipc_nl_compat_link_reset_stats(struct tipc_nl_compat_cmd_doit
*cmd
,
790 struct tipc_nl_compat_msg
*msg
)
796 name
= (char *)TLV_DATA(msg
->req
);
798 link
= nla_nest_start(skb
, TIPC_NLA_LINK
);
802 len
= min_t(int, TLV_GET_DATA_LEN(msg
->req
), TIPC_MAX_LINK_NAME
);
803 if (!string_is_valid(name
, len
))
806 if (nla_put_string(skb
, TIPC_NLA_LINK_NAME
, name
))
809 nla_nest_end(skb
, link
);
814 static int tipc_nl_compat_name_table_dump_header(struct tipc_nl_compat_msg
*msg
)
818 struct tipc_name_table_query
*ntq
;
819 static const char * const header
[] = {
826 ntq
= (struct tipc_name_table_query
*)TLV_DATA(msg
->req
);
827 if (TLV_GET_DATA_LEN(msg
->req
) < sizeof(struct tipc_name_table_query
))
830 depth
= ntohl(ntq
->depth
);
834 for (i
= 0; i
< depth
; i
++)
835 tipc_tlv_sprintf(msg
->rep
, header
[i
]);
836 tipc_tlv_sprintf(msg
->rep
, "\n");
841 static int tipc_nl_compat_name_table_dump(struct tipc_nl_compat_msg
*msg
,
842 struct nlattr
**attrs
)
845 struct tipc_name_table_query
*ntq
;
846 struct nlattr
*nt
[TIPC_NLA_NAME_TABLE_MAX
+ 1];
847 struct nlattr
*publ
[TIPC_NLA_PUBL_MAX
+ 1];
848 u32 node
, depth
, type
, lowbound
, upbound
;
849 static const char * const scope_str
[] = {"", " zone", " cluster",
853 if (!attrs
[TIPC_NLA_NAME_TABLE
])
856 err
= nla_parse_nested(nt
, TIPC_NLA_NAME_TABLE_MAX
,
857 attrs
[TIPC_NLA_NAME_TABLE
], NULL
, NULL
);
861 if (!nt
[TIPC_NLA_NAME_TABLE_PUBL
])
864 err
= nla_parse_nested(publ
, TIPC_NLA_PUBL_MAX
,
865 nt
[TIPC_NLA_NAME_TABLE_PUBL
], NULL
, NULL
);
869 ntq
= (struct tipc_name_table_query
*)TLV_DATA(msg
->req
);
871 depth
= ntohl(ntq
->depth
);
872 type
= ntohl(ntq
->type
);
873 lowbound
= ntohl(ntq
->lowbound
);
874 upbound
= ntohl(ntq
->upbound
);
876 if (!(depth
& TIPC_NTQ_ALLTYPES
) &&
877 (type
!= nla_get_u32(publ
[TIPC_NLA_PUBL_TYPE
])))
879 if (lowbound
&& (lowbound
> nla_get_u32(publ
[TIPC_NLA_PUBL_UPPER
])))
881 if (upbound
&& (upbound
< nla_get_u32(publ
[TIPC_NLA_PUBL_LOWER
])))
884 tipc_tlv_sprintf(msg
->rep
, "%-10u ",
885 nla_get_u32(publ
[TIPC_NLA_PUBL_TYPE
]));
890 tipc_tlv_sprintf(msg
->rep
, "%-10u %-10u ",
891 nla_get_u32(publ
[TIPC_NLA_PUBL_LOWER
]),
892 nla_get_u32(publ
[TIPC_NLA_PUBL_UPPER
]));
897 node
= nla_get_u32(publ
[TIPC_NLA_PUBL_NODE
]);
898 sprintf(port_str
, "<%u.%u.%u:%u>", tipc_zone(node
), tipc_cluster(node
),
899 tipc_node(node
), nla_get_u32(publ
[TIPC_NLA_PUBL_REF
]));
900 tipc_tlv_sprintf(msg
->rep
, "%-26s ", port_str
);
905 tipc_tlv_sprintf(msg
->rep
, "%-10u %s",
906 nla_get_u32(publ
[TIPC_NLA_PUBL_KEY
]),
907 scope_str
[nla_get_u32(publ
[TIPC_NLA_PUBL_SCOPE
])]);
909 tipc_tlv_sprintf(msg
->rep
, "\n");
914 static int __tipc_nl_compat_publ_dump(struct tipc_nl_compat_msg
*msg
,
915 struct nlattr
**attrs
)
917 u32 type
, lower
, upper
;
918 struct nlattr
*publ
[TIPC_NLA_PUBL_MAX
+ 1];
921 if (!attrs
[TIPC_NLA_PUBL
])
924 err
= nla_parse_nested(publ
, TIPC_NLA_PUBL_MAX
, attrs
[TIPC_NLA_PUBL
],
929 type
= nla_get_u32(publ
[TIPC_NLA_PUBL_TYPE
]);
930 lower
= nla_get_u32(publ
[TIPC_NLA_PUBL_LOWER
]);
931 upper
= nla_get_u32(publ
[TIPC_NLA_PUBL_UPPER
]);
934 tipc_tlv_sprintf(msg
->rep
, " {%u,%u}", type
, lower
);
936 tipc_tlv_sprintf(msg
->rep
, " {%u,%u,%u}", type
, lower
, upper
);
941 static int tipc_nl_compat_publ_dump(struct tipc_nl_compat_msg
*msg
, u32 sock
)
946 struct sk_buff
*args
;
947 struct tipc_nl_compat_cmd_dump dump
;
949 args
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
953 hdr
= genlmsg_put(args
, 0, 0, &tipc_genl_family
, NLM_F_MULTI
,
960 nest
= nla_nest_start(args
, TIPC_NLA_SOCK
);
966 if (nla_put_u32(args
, TIPC_NLA_SOCK_REF
, sock
)) {
971 nla_nest_end(args
, nest
);
972 genlmsg_end(args
, hdr
);
974 dump
.dumpit
= tipc_nl_publ_dump
;
975 dump
.format
= __tipc_nl_compat_publ_dump
;
977 err
= __tipc_nl_compat_dumpit(&dump
, msg
, args
);
984 static int tipc_nl_compat_sk_dump(struct tipc_nl_compat_msg
*msg
,
985 struct nlattr
**attrs
)
989 struct nlattr
*sock
[TIPC_NLA_SOCK_MAX
+ 1];
991 if (!attrs
[TIPC_NLA_SOCK
])
994 err
= nla_parse_nested(sock
, TIPC_NLA_SOCK_MAX
, attrs
[TIPC_NLA_SOCK
],
999 sock_ref
= nla_get_u32(sock
[TIPC_NLA_SOCK_REF
]);
1000 tipc_tlv_sprintf(msg
->rep
, "%u:", sock_ref
);
1002 if (sock
[TIPC_NLA_SOCK_CON
]) {
1004 struct nlattr
*con
[TIPC_NLA_CON_MAX
+ 1];
1006 err
= nla_parse_nested(con
, TIPC_NLA_CON_MAX
,
1007 sock
[TIPC_NLA_SOCK_CON
], NULL
, NULL
);
1012 node
= nla_get_u32(con
[TIPC_NLA_CON_NODE
]);
1013 tipc_tlv_sprintf(msg
->rep
, " connected to <%u.%u.%u:%u>",
1017 nla_get_u32(con
[TIPC_NLA_CON_SOCK
]));
1019 if (con
[TIPC_NLA_CON_FLAG
])
1020 tipc_tlv_sprintf(msg
->rep
, " via {%u,%u}\n",
1021 nla_get_u32(con
[TIPC_NLA_CON_TYPE
]),
1022 nla_get_u32(con
[TIPC_NLA_CON_INST
]));
1024 tipc_tlv_sprintf(msg
->rep
, "\n");
1025 } else if (sock
[TIPC_NLA_SOCK_HAS_PUBL
]) {
1026 tipc_tlv_sprintf(msg
->rep
, " bound to");
1028 err
= tipc_nl_compat_publ_dump(msg
, sock_ref
);
1032 tipc_tlv_sprintf(msg
->rep
, "\n");
1037 static int tipc_nl_compat_media_dump(struct tipc_nl_compat_msg
*msg
,
1038 struct nlattr
**attrs
)
1040 struct nlattr
*media
[TIPC_NLA_MEDIA_MAX
+ 1];
1043 if (!attrs
[TIPC_NLA_MEDIA
])
1046 err
= nla_parse_nested(media
, TIPC_NLA_MEDIA_MAX
,
1047 attrs
[TIPC_NLA_MEDIA
], NULL
, NULL
);
1051 return tipc_add_tlv(msg
->rep
, TIPC_TLV_MEDIA_NAME
,
1052 nla_data(media
[TIPC_NLA_MEDIA_NAME
]),
1053 nla_len(media
[TIPC_NLA_MEDIA_NAME
]));
1056 static int tipc_nl_compat_node_dump(struct tipc_nl_compat_msg
*msg
,
1057 struct nlattr
**attrs
)
1059 struct tipc_node_info node_info
;
1060 struct nlattr
*node
[TIPC_NLA_NODE_MAX
+ 1];
1063 if (!attrs
[TIPC_NLA_NODE
])
1066 err
= nla_parse_nested(node
, TIPC_NLA_NODE_MAX
, attrs
[TIPC_NLA_NODE
],
1071 node_info
.addr
= htonl(nla_get_u32(node
[TIPC_NLA_NODE_ADDR
]));
1072 node_info
.up
= htonl(nla_get_flag(node
[TIPC_NLA_NODE_UP
]));
1074 return tipc_add_tlv(msg
->rep
, TIPC_TLV_NODE_INFO
, &node_info
,
1078 static int tipc_nl_compat_net_set(struct tipc_nl_compat_cmd_doit
*cmd
,
1079 struct sk_buff
*skb
,
1080 struct tipc_nl_compat_msg
*msg
)
1085 val
= ntohl(*(__be32
*)TLV_DATA(msg
->req
));
1087 net
= nla_nest_start(skb
, TIPC_NLA_NET
);
1091 if (msg
->cmd
== TIPC_CMD_SET_NODE_ADDR
) {
1092 if (nla_put_u32(skb
, TIPC_NLA_NET_ADDR
, val
))
1094 } else if (msg
->cmd
== TIPC_CMD_SET_NETID
) {
1095 if (nla_put_u32(skb
, TIPC_NLA_NET_ID
, val
))
1098 nla_nest_end(skb
, net
);
1103 static int tipc_nl_compat_net_dump(struct tipc_nl_compat_msg
*msg
,
1104 struct nlattr
**attrs
)
1107 struct nlattr
*net
[TIPC_NLA_NET_MAX
+ 1];
1110 if (!attrs
[TIPC_NLA_NET
])
1113 err
= nla_parse_nested(net
, TIPC_NLA_NET_MAX
, attrs
[TIPC_NLA_NET
],
1118 id
= htonl(nla_get_u32(net
[TIPC_NLA_NET_ID
]));
1120 return tipc_add_tlv(msg
->rep
, TIPC_TLV_UNSIGNED
, &id
, sizeof(id
));
1123 static int tipc_cmd_show_stats_compat(struct tipc_nl_compat_msg
*msg
)
1125 msg
->rep
= tipc_tlv_alloc(ULTRA_STRING_MAX_LEN
);
1129 tipc_tlv_init(msg
->rep
, TIPC_TLV_ULTRA_STRING
);
1130 tipc_tlv_sprintf(msg
->rep
, "TIPC version " TIPC_MOD_VER
"\n");
1135 static int tipc_nl_compat_handle(struct tipc_nl_compat_msg
*msg
)
1137 struct tipc_nl_compat_cmd_dump dump
;
1138 struct tipc_nl_compat_cmd_doit doit
;
1140 memset(&dump
, 0, sizeof(dump
));
1141 memset(&doit
, 0, sizeof(doit
));
1145 msg
->rep
= tipc_tlv_alloc(0);
1149 case TIPC_CMD_GET_BEARER_NAMES
:
1150 msg
->rep_size
= MAX_BEARERS
* TLV_SPACE(TIPC_MAX_BEARER_NAME
);
1151 dump
.dumpit
= tipc_nl_bearer_dump
;
1152 dump
.format
= tipc_nl_compat_bearer_dump
;
1153 return tipc_nl_compat_dumpit(&dump
, msg
);
1154 case TIPC_CMD_ENABLE_BEARER
:
1155 msg
->req_type
= TIPC_TLV_BEARER_CONFIG
;
1156 doit
.doit
= __tipc_nl_bearer_enable
;
1157 doit
.transcode
= tipc_nl_compat_bearer_enable
;
1158 return tipc_nl_compat_doit(&doit
, msg
);
1159 case TIPC_CMD_DISABLE_BEARER
:
1160 msg
->req_type
= TIPC_TLV_BEARER_NAME
;
1161 doit
.doit
= __tipc_nl_bearer_disable
;
1162 doit
.transcode
= tipc_nl_compat_bearer_disable
;
1163 return tipc_nl_compat_doit(&doit
, msg
);
1164 case TIPC_CMD_SHOW_LINK_STATS
:
1165 msg
->req_type
= TIPC_TLV_LINK_NAME
;
1166 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1167 msg
->rep_type
= TIPC_TLV_ULTRA_STRING
;
1168 dump
.dumpit
= tipc_nl_node_dump_link
;
1169 dump
.format
= tipc_nl_compat_link_stat_dump
;
1170 return tipc_nl_compat_dumpit(&dump
, msg
);
1171 case TIPC_CMD_GET_LINKS
:
1172 msg
->req_type
= TIPC_TLV_NET_ADDR
;
1173 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1174 dump
.dumpit
= tipc_nl_node_dump_link
;
1175 dump
.format
= tipc_nl_compat_link_dump
;
1176 return tipc_nl_compat_dumpit(&dump
, msg
);
1177 case TIPC_CMD_SET_LINK_TOL
:
1178 case TIPC_CMD_SET_LINK_PRI
:
1179 case TIPC_CMD_SET_LINK_WINDOW
:
1180 msg
->req_type
= TIPC_TLV_LINK_CONFIG
;
1181 doit
.doit
= tipc_nl_node_set_link
;
1182 doit
.transcode
= tipc_nl_compat_link_set
;
1183 return tipc_nl_compat_doit(&doit
, msg
);
1184 case TIPC_CMD_RESET_LINK_STATS
:
1185 msg
->req_type
= TIPC_TLV_LINK_NAME
;
1186 doit
.doit
= tipc_nl_node_reset_link_stats
;
1187 doit
.transcode
= tipc_nl_compat_link_reset_stats
;
1188 return tipc_nl_compat_doit(&doit
, msg
);
1189 case TIPC_CMD_SHOW_NAME_TABLE
:
1190 msg
->req_type
= TIPC_TLV_NAME_TBL_QUERY
;
1191 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1192 msg
->rep_type
= TIPC_TLV_ULTRA_STRING
;
1193 dump
.header
= tipc_nl_compat_name_table_dump_header
;
1194 dump
.dumpit
= tipc_nl_name_table_dump
;
1195 dump
.format
= tipc_nl_compat_name_table_dump
;
1196 return tipc_nl_compat_dumpit(&dump
, msg
);
1197 case TIPC_CMD_SHOW_PORTS
:
1198 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1199 msg
->rep_type
= TIPC_TLV_ULTRA_STRING
;
1200 dump
.dumpit
= tipc_nl_sk_dump
;
1201 dump
.format
= tipc_nl_compat_sk_dump
;
1202 return tipc_nl_compat_dumpit(&dump
, msg
);
1203 case TIPC_CMD_GET_MEDIA_NAMES
:
1204 msg
->rep_size
= MAX_MEDIA
* TLV_SPACE(TIPC_MAX_MEDIA_NAME
);
1205 dump
.dumpit
= tipc_nl_media_dump
;
1206 dump
.format
= tipc_nl_compat_media_dump
;
1207 return tipc_nl_compat_dumpit(&dump
, msg
);
1208 case TIPC_CMD_GET_NODES
:
1209 msg
->rep_size
= ULTRA_STRING_MAX_LEN
;
1210 dump
.dumpit
= tipc_nl_node_dump
;
1211 dump
.format
= tipc_nl_compat_node_dump
;
1212 return tipc_nl_compat_dumpit(&dump
, msg
);
1213 case TIPC_CMD_SET_NODE_ADDR
:
1214 msg
->req_type
= TIPC_TLV_NET_ADDR
;
1215 doit
.doit
= __tipc_nl_net_set
;
1216 doit
.transcode
= tipc_nl_compat_net_set
;
1217 return tipc_nl_compat_doit(&doit
, msg
);
1218 case TIPC_CMD_SET_NETID
:
1219 msg
->req_type
= TIPC_TLV_UNSIGNED
;
1220 doit
.doit
= __tipc_nl_net_set
;
1221 doit
.transcode
= tipc_nl_compat_net_set
;
1222 return tipc_nl_compat_doit(&doit
, msg
);
1223 case TIPC_CMD_GET_NETID
:
1224 msg
->rep_size
= sizeof(u32
);
1225 dump
.dumpit
= tipc_nl_net_dump
;
1226 dump
.format
= tipc_nl_compat_net_dump
;
1227 return tipc_nl_compat_dumpit(&dump
, msg
);
1228 case TIPC_CMD_SHOW_STATS
:
1229 return tipc_cmd_show_stats_compat(msg
);
1235 static int tipc_nl_compat_recv(struct sk_buff
*skb
, struct genl_info
*info
)
1239 struct tipc_nl_compat_msg msg
;
1240 struct nlmsghdr
*req_nlh
;
1241 struct nlmsghdr
*rep_nlh
;
1242 struct tipc_genlmsghdr
*req_userhdr
= info
->userhdr
;
1244 memset(&msg
, 0, sizeof(msg
));
1246 req_nlh
= (struct nlmsghdr
*)skb
->data
;
1247 msg
.req
= nlmsg_data(req_nlh
) + GENL_HDRLEN
+ TIPC_GENL_HDRLEN
;
1248 msg
.cmd
= req_userhdr
->cmd
;
1249 msg
.net
= genl_info_net(info
);
1250 msg
.dst_sk
= skb
->sk
;
1252 if ((msg
.cmd
& 0xC000) && (!netlink_net_capable(skb
, CAP_NET_ADMIN
))) {
1253 msg
.rep
= tipc_get_err_tlv(TIPC_CFG_NOT_NET_ADMIN
);
1258 len
= nlmsg_attrlen(req_nlh
, GENL_HDRLEN
+ TIPC_GENL_HDRLEN
);
1259 if (!len
|| !TLV_OK(msg
.req
, len
)) {
1260 msg
.rep
= tipc_get_err_tlv(TIPC_CFG_NOT_SUPPORTED
);
1265 err
= tipc_nl_compat_handle(&msg
);
1266 if ((err
== -EOPNOTSUPP
) || (err
== -EPERM
))
1267 msg
.rep
= tipc_get_err_tlv(TIPC_CFG_NOT_SUPPORTED
);
1268 else if (err
== -EINVAL
)
1269 msg
.rep
= tipc_get_err_tlv(TIPC_CFG_TLV_ERROR
);
1274 len
= nlmsg_total_size(GENL_HDRLEN
+ TIPC_GENL_HDRLEN
);
1275 skb_push(msg
.rep
, len
);
1276 rep_nlh
= nlmsg_hdr(msg
.rep
);
1277 memcpy(rep_nlh
, info
->nlhdr
, len
);
1278 rep_nlh
->nlmsg_len
= msg
.rep
->len
;
1279 genlmsg_unicast(msg
.net
, msg
.rep
, NETLINK_CB(skb
).portid
);
1284 static const struct genl_ops tipc_genl_compat_ops
[] = {
1286 .cmd
= TIPC_GENL_CMD
,
1287 .doit
= tipc_nl_compat_recv
,
1291 static struct genl_family tipc_genl_compat_family __ro_after_init
= {
1292 .name
= TIPC_GENL_NAME
,
1293 .version
= TIPC_GENL_VERSION
,
1294 .hdrsize
= TIPC_GENL_HDRLEN
,
1297 .module
= THIS_MODULE
,
1298 .ops
= tipc_genl_compat_ops
,
1299 .n_ops
= ARRAY_SIZE(tipc_genl_compat_ops
),
1302 int __init
tipc_netlink_compat_start(void)
1306 res
= genl_register_family(&tipc_genl_compat_family
);
1308 pr_err("Failed to register legacy compat interface\n");
1315 void tipc_netlink_compat_stop(void)
1317 genl_unregister_family(&tipc_genl_compat_family
);