1 #include <linux/module.h>
4 #include <linux/netlink.h>
5 #include <linux/sock_diag.h>
6 #include <linux/netlink_diag.h>
7 #include <linux/rhashtable.h>
9 #include "af_netlink.h"
11 static int sk_diag_dump_groups(struct sock *sk, struct sk_buff *nlskb)
13 struct netlink_sock *nlk = nlk_sk(sk);
15 if (nlk->groups == NULL)
18 return nla_put(nlskb, NETLINK_DIAG_GROUPS, NLGRPSZ(nlk->ngroups),
22 static int sk_diag_put_flags(struct sock *sk, struct sk_buff *skb)
24 struct netlink_sock *nlk = nlk_sk(sk);
28 flags |= NDIAG_FLAG_CB_RUNNING;
29 if (nlk->flags & NETLINK_F_RECV_PKTINFO)
30 flags |= NDIAG_FLAG_PKTINFO;
31 if (nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR)
32 flags |= NDIAG_FLAG_BROADCAST_ERROR;
33 if (nlk->flags & NETLINK_F_RECV_NO_ENOBUFS)
34 flags |= NDIAG_FLAG_NO_ENOBUFS;
35 if (nlk->flags & NETLINK_F_LISTEN_ALL_NSID)
36 flags |= NDIAG_FLAG_LISTEN_ALL_NSID;
37 if (nlk->flags & NETLINK_F_CAP_ACK)
38 flags |= NDIAG_FLAG_CAP_ACK;
40 return nla_put_u32(skb, NETLINK_DIAG_FLAGS, flags);
43 static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
44 struct netlink_diag_req *req,
45 u32 portid, u32 seq, u32 flags, int sk_ino)
48 struct netlink_diag_msg *rep;
49 struct netlink_sock *nlk = nlk_sk(sk);
51 nlh = nlmsg_put(skb, portid, seq, SOCK_DIAG_BY_FAMILY, sizeof(*rep),
56 rep = nlmsg_data(nlh);
57 rep->ndiag_family = AF_NETLINK;
58 rep->ndiag_type = sk->sk_type;
59 rep->ndiag_protocol = sk->sk_protocol;
60 rep->ndiag_state = sk->sk_state;
62 rep->ndiag_ino = sk_ino;
63 rep->ndiag_portid = nlk->portid;
64 rep->ndiag_dst_portid = nlk->dst_portid;
65 rep->ndiag_dst_group = nlk->dst_group;
66 sock_diag_save_cookie(sk, rep->ndiag_cookie);
68 if ((req->ndiag_show & NDIAG_SHOW_GROUPS) &&
69 sk_diag_dump_groups(sk, skb))
72 if ((req->ndiag_show & NDIAG_SHOW_MEMINFO) &&
73 sock_diag_put_meminfo(sk, skb, NETLINK_DIAG_MEMINFO))
76 if ((req->ndiag_show & NDIAG_SHOW_FLAGS) &&
77 sk_diag_put_flags(sk, skb))
84 nlmsg_cancel(skb, nlh);
88 static int __netlink_diag_dump(struct sk_buff *skb, struct netlink_callback *cb,
89 int protocol, int s_num)
91 struct rhashtable_iter *hti = (void *)cb->args[2];
92 struct netlink_table *tbl = &nl_table[protocol];
93 struct net *net = sock_net(skb->sk);
94 struct netlink_diag_req *req;
95 struct netlink_sock *nlsk;
100 req = nlmsg_data(cb->nlh);
108 hti = kmalloc(sizeof(*hti), GFP_KERNEL);
112 cb->args[2] = (long)hti;
116 rhashtable_walk_enter(&tbl->hash, hti);
118 rhashtable_walk_start(hti);
120 while ((nlsk = rhashtable_walk_next(hti))) {
123 if (ret == -EAGAIN) {
130 sk = (struct sock *)nlsk;
132 if (!net_eq(sock_net(sk), net))
135 if (sk_diag_fill(sk, skb, req,
136 NETLINK_CB(cb->skb).portid,
139 sock_i_ino(sk)) < 0) {
145 rhashtable_walk_stop(hti);
150 rhashtable_walk_exit(hti);
154 read_lock(&nl_table_lock);
155 sk_for_each_bound(sk, &tbl->mc_list) {
158 if (!net_eq(sock_net(sk), net))
165 if (sk_diag_fill(sk, skb, req,
166 NETLINK_CB(cb->skb).portid,
169 sock_i_ino(sk)) < 0) {
175 read_unlock(&nl_table_lock);
183 static int netlink_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
185 struct netlink_diag_req *req;
186 int s_num = cb->args[0];
189 req = nlmsg_data(cb->nlh);
191 if (req->sdiag_protocol == NDIAG_PROTO_ALL) {
194 for (i = cb->args[1]; i < MAX_LINKS; i++) {
195 err = __netlink_diag_dump(skb, cb, i, s_num);
202 if (req->sdiag_protocol >= MAX_LINKS)
205 err = __netlink_diag_dump(skb, cb, req->sdiag_protocol, s_num);
208 return err < 0 ? err : skb->len;
211 static int netlink_diag_dump_done(struct netlink_callback *cb)
213 struct rhashtable_iter *hti = (void *)cb->args[2];
215 if (cb->args[0] == 1)
216 rhashtable_walk_exit(hti);
223 static int netlink_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
225 int hdrlen = sizeof(struct netlink_diag_req);
226 struct net *net = sock_net(skb->sk);
228 if (nlmsg_len(h) < hdrlen)
231 if (h->nlmsg_flags & NLM_F_DUMP) {
232 struct netlink_dump_control c = {
233 .dump = netlink_diag_dump,
234 .done = netlink_diag_dump_done,
236 return netlink_dump_start(net->diag_nlsk, skb, h, &c);
241 static const struct sock_diag_handler netlink_diag_handler = {
242 .family = AF_NETLINK,
243 .dump = netlink_diag_handler_dump,
246 static int __init netlink_diag_init(void)
248 return sock_diag_register(&netlink_diag_handler);
251 static void __exit netlink_diag_exit(void)
253 sock_diag_unregister(&netlink_diag_handler);
256 module_init(netlink_diag_init);
257 module_exit(netlink_diag_exit);
258 MODULE_LICENSE("GPL");
259 MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 16 /* AF_NETLINK */);