1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun * net/tipc/diag.c: TIPC socket diag
3*4882a593Smuzhiyun *
4*4882a593Smuzhiyun * Copyright (c) 2018, Ericsson AB
5*4882a593Smuzhiyun * All rights reserved.
6*4882a593Smuzhiyun *
7*4882a593Smuzhiyun * Redistribution and use in source and binary forms, with or without
8*4882a593Smuzhiyun * modification, are permitted provided that the following conditions are met:
9*4882a593Smuzhiyun *
10*4882a593Smuzhiyun * 1. Redistributions of source code must retain the above copyright
11*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer.
12*4882a593Smuzhiyun * 2. Redistributions in binary form must reproduce the above copyright
13*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer in the
14*4882a593Smuzhiyun * documentation and/or other materials provided with the distribution.
15*4882a593Smuzhiyun * 3. Neither the names of the copyright holders nor the names of its
16*4882a593Smuzhiyun * contributors may be used to endorse or promote products derived from
17*4882a593Smuzhiyun * this software without specific prior written permission.
18*4882a593Smuzhiyun *
19*4882a593Smuzhiyun * Alternatively, this software may be distributed under the terms of the
20*4882a593Smuzhiyun * GNU General Public License ("GPL") version 2 as published by the Free
21*4882a593Smuzhiyun * Software Foundation.
22*4882a593Smuzhiyun *
23*4882a593Smuzhiyun * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "ASIS"
24*4882a593Smuzhiyun * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,THE
25*4882a593Smuzhiyun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26*4882a593Smuzhiyun * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
27*4882a593Smuzhiyun * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28*4882a593Smuzhiyun * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29*4882a593Smuzhiyun * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30*4882a593Smuzhiyun * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31*4882a593Smuzhiyun * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32*4882a593Smuzhiyun * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33*4882a593Smuzhiyun * POSSIBILITY OF SUCH DAMAGE.
34*4882a593Smuzhiyun */
35*4882a593Smuzhiyun
36*4882a593Smuzhiyun #include "core.h"
37*4882a593Smuzhiyun #include "socket.h"
38*4882a593Smuzhiyun #include <linux/sock_diag.h>
39*4882a593Smuzhiyun #include <linux/tipc_sockets_diag.h>
40*4882a593Smuzhiyun
__tipc_diag_gen_cookie(struct sock * sk)41*4882a593Smuzhiyun static u64 __tipc_diag_gen_cookie(struct sock *sk)
42*4882a593Smuzhiyun {
43*4882a593Smuzhiyun u32 res[2];
44*4882a593Smuzhiyun
45*4882a593Smuzhiyun sock_diag_save_cookie(sk, res);
46*4882a593Smuzhiyun return *((u64 *)res);
47*4882a593Smuzhiyun }
48*4882a593Smuzhiyun
__tipc_add_sock_diag(struct sk_buff * skb,struct netlink_callback * cb,struct tipc_sock * tsk)49*4882a593Smuzhiyun static int __tipc_add_sock_diag(struct sk_buff *skb,
50*4882a593Smuzhiyun struct netlink_callback *cb,
51*4882a593Smuzhiyun struct tipc_sock *tsk)
52*4882a593Smuzhiyun {
53*4882a593Smuzhiyun struct tipc_sock_diag_req *req = nlmsg_data(cb->nlh);
54*4882a593Smuzhiyun struct nlmsghdr *nlh;
55*4882a593Smuzhiyun int err;
56*4882a593Smuzhiyun
57*4882a593Smuzhiyun nlh = nlmsg_put_answer(skb, cb, SOCK_DIAG_BY_FAMILY, 0,
58*4882a593Smuzhiyun NLM_F_MULTI);
59*4882a593Smuzhiyun if (!nlh)
60*4882a593Smuzhiyun return -EMSGSIZE;
61*4882a593Smuzhiyun
62*4882a593Smuzhiyun err = tipc_sk_fill_sock_diag(skb, cb, tsk, req->tidiag_states,
63*4882a593Smuzhiyun __tipc_diag_gen_cookie);
64*4882a593Smuzhiyun if (err)
65*4882a593Smuzhiyun return err;
66*4882a593Smuzhiyun
67*4882a593Smuzhiyun nlmsg_end(skb, nlh);
68*4882a593Smuzhiyun return 0;
69*4882a593Smuzhiyun }
70*4882a593Smuzhiyun
tipc_diag_dump(struct sk_buff * skb,struct netlink_callback * cb)71*4882a593Smuzhiyun static int tipc_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
72*4882a593Smuzhiyun {
73*4882a593Smuzhiyun return tipc_nl_sk_walk(skb, cb, __tipc_add_sock_diag);
74*4882a593Smuzhiyun }
75*4882a593Smuzhiyun
tipc_sock_diag_handler_dump(struct sk_buff * skb,struct nlmsghdr * h)76*4882a593Smuzhiyun static int tipc_sock_diag_handler_dump(struct sk_buff *skb,
77*4882a593Smuzhiyun struct nlmsghdr *h)
78*4882a593Smuzhiyun {
79*4882a593Smuzhiyun int hdrlen = sizeof(struct tipc_sock_diag_req);
80*4882a593Smuzhiyun struct net *net = sock_net(skb->sk);
81*4882a593Smuzhiyun
82*4882a593Smuzhiyun if (nlmsg_len(h) < hdrlen)
83*4882a593Smuzhiyun return -EINVAL;
84*4882a593Smuzhiyun
85*4882a593Smuzhiyun if (h->nlmsg_flags & NLM_F_DUMP) {
86*4882a593Smuzhiyun struct netlink_dump_control c = {
87*4882a593Smuzhiyun .start = tipc_dump_start,
88*4882a593Smuzhiyun .dump = tipc_diag_dump,
89*4882a593Smuzhiyun .done = tipc_dump_done,
90*4882a593Smuzhiyun };
91*4882a593Smuzhiyun netlink_dump_start(net->diag_nlsk, skb, h, &c);
92*4882a593Smuzhiyun return 0;
93*4882a593Smuzhiyun }
94*4882a593Smuzhiyun return -EOPNOTSUPP;
95*4882a593Smuzhiyun }
96*4882a593Smuzhiyun
97*4882a593Smuzhiyun static const struct sock_diag_handler tipc_sock_diag_handler = {
98*4882a593Smuzhiyun .family = AF_TIPC,
99*4882a593Smuzhiyun .dump = tipc_sock_diag_handler_dump,
100*4882a593Smuzhiyun };
101*4882a593Smuzhiyun
tipc_diag_init(void)102*4882a593Smuzhiyun static int __init tipc_diag_init(void)
103*4882a593Smuzhiyun {
104*4882a593Smuzhiyun return sock_diag_register(&tipc_sock_diag_handler);
105*4882a593Smuzhiyun }
106*4882a593Smuzhiyun
tipc_diag_exit(void)107*4882a593Smuzhiyun static void __exit tipc_diag_exit(void)
108*4882a593Smuzhiyun {
109*4882a593Smuzhiyun sock_diag_unregister(&tipc_sock_diag_handler);
110*4882a593Smuzhiyun }
111*4882a593Smuzhiyun
112*4882a593Smuzhiyun module_init(tipc_diag_init);
113*4882a593Smuzhiyun module_exit(tipc_diag_exit);
114*4882a593Smuzhiyun
115*4882a593Smuzhiyun MODULE_LICENSE("Dual BSD/GPL");
116*4882a593Smuzhiyun MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, AF_TIPC);
117