Loading...
1#include <linux/module.h>
2
3#include <net/sock.h>
4#include <linux/netlink.h>
5#include <linux/sock_diag.h>
6#include <linux/netlink_diag.h>
7#include <linux/rhashtable.h>
8
9#include "af_netlink.h"
10
11static int sk_diag_dump_groups(struct sock *sk, struct sk_buff *nlskb)
12{
13 struct netlink_sock *nlk = nlk_sk(sk);
14
15 if (nlk->groups == NULL)
16 return 0;
17
18 return nla_put(nlskb, NETLINK_DIAG_GROUPS, NLGRPSZ(nlk->ngroups),
19 nlk->groups);
20}
21
22static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
23 struct netlink_diag_req *req,
24 u32 portid, u32 seq, u32 flags, int sk_ino)
25{
26 struct nlmsghdr *nlh;
27 struct netlink_diag_msg *rep;
28 struct netlink_sock *nlk = nlk_sk(sk);
29
30 nlh = nlmsg_put(skb, portid, seq, SOCK_DIAG_BY_FAMILY, sizeof(*rep),
31 flags);
32 if (!nlh)
33 return -EMSGSIZE;
34
35 rep = nlmsg_data(nlh);
36 rep->ndiag_family = AF_NETLINK;
37 rep->ndiag_type = sk->sk_type;
38 rep->ndiag_protocol = sk->sk_protocol;
39 rep->ndiag_state = sk->sk_state;
40
41 rep->ndiag_ino = sk_ino;
42 rep->ndiag_portid = nlk->portid;
43 rep->ndiag_dst_portid = nlk->dst_portid;
44 rep->ndiag_dst_group = nlk->dst_group;
45 sock_diag_save_cookie(sk, rep->ndiag_cookie);
46
47 if ((req->ndiag_show & NDIAG_SHOW_GROUPS) &&
48 sk_diag_dump_groups(sk, skb))
49 goto out_nlmsg_trim;
50
51 if ((req->ndiag_show & NDIAG_SHOW_MEMINFO) &&
52 sock_diag_put_meminfo(sk, skb, NETLINK_DIAG_MEMINFO))
53 goto out_nlmsg_trim;
54
55 nlmsg_end(skb, nlh);
56 return 0;
57
58out_nlmsg_trim:
59 nlmsg_cancel(skb, nlh);
60 return -EMSGSIZE;
61}
62
63static int __netlink_diag_dump(struct sk_buff *skb, struct netlink_callback *cb,
64 int protocol, int s_num)
65{
66 struct rhashtable_iter *hti = (void *)cb->args[2];
67 struct netlink_table *tbl = &nl_table[protocol];
68 struct net *net = sock_net(skb->sk);
69 struct netlink_diag_req *req;
70 struct netlink_sock *nlsk;
71 struct sock *sk;
72 int num = 2;
73 int ret = 0;
74
75 req = nlmsg_data(cb->nlh);
76
77 if (s_num > 1)
78 goto mc_list;
79
80 num--;
81
82 if (!hti) {
83 hti = kmalloc(sizeof(*hti), GFP_KERNEL);
84 if (!hti)
85 return -ENOMEM;
86
87 cb->args[2] = (long)hti;
88 }
89
90 if (!s_num)
91 rhashtable_walk_enter(&tbl->hash, hti);
92
93 ret = rhashtable_walk_start(hti);
94 if (ret == -EAGAIN)
95 ret = 0;
96 if (ret)
97 goto stop;
98
99 while ((nlsk = rhashtable_walk_next(hti))) {
100 if (IS_ERR(nlsk)) {
101 ret = PTR_ERR(nlsk);
102 if (ret == -EAGAIN) {
103 ret = 0;
104 continue;
105 }
106 break;
107 }
108
109 sk = (struct sock *)nlsk;
110
111 if (!net_eq(sock_net(sk), net))
112 continue;
113
114 if (sk_diag_fill(sk, skb, req,
115 NETLINK_CB(cb->skb).portid,
116 cb->nlh->nlmsg_seq,
117 NLM_F_MULTI,
118 sock_i_ino(sk)) < 0) {
119 ret = 1;
120 break;
121 }
122 }
123
124stop:
125 rhashtable_walk_stop(hti);
126 if (ret)
127 goto done;
128
129 rhashtable_walk_exit(hti);
130 num++;
131
132mc_list:
133 read_lock(&nl_table_lock);
134 sk_for_each_bound(sk, &tbl->mc_list) {
135 if (sk_hashed(sk))
136 continue;
137 if (!net_eq(sock_net(sk), net))
138 continue;
139 if (num < s_num) {
140 num++;
141 continue;
142 }
143
144 if (sk_diag_fill(sk, skb, req,
145 NETLINK_CB(cb->skb).portid,
146 cb->nlh->nlmsg_seq,
147 NLM_F_MULTI,
148 sock_i_ino(sk)) < 0) {
149 ret = 1;
150 break;
151 }
152 num++;
153 }
154 read_unlock(&nl_table_lock);
155
156done:
157 cb->args[0] = num;
158
159 return ret;
160}
161
162static int netlink_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
163{
164 struct netlink_diag_req *req;
165 int s_num = cb->args[0];
166 int err = 0;
167
168 req = nlmsg_data(cb->nlh);
169
170 if (req->sdiag_protocol == NDIAG_PROTO_ALL) {
171 int i;
172
173 for (i = cb->args[1]; i < MAX_LINKS; i++) {
174 err = __netlink_diag_dump(skb, cb, i, s_num);
175 if (err)
176 break;
177 s_num = 0;
178 }
179 cb->args[1] = i;
180 } else {
181 if (req->sdiag_protocol >= MAX_LINKS)
182 return -ENOENT;
183
184 err = __netlink_diag_dump(skb, cb, req->sdiag_protocol, s_num);
185 }
186
187 return err < 0 ? err : skb->len;
188}
189
190static int netlink_diag_dump_done(struct netlink_callback *cb)
191{
192 struct rhashtable_iter *hti = (void *)cb->args[2];
193
194 if (cb->args[0] == 1)
195 rhashtable_walk_exit(hti);
196
197 kfree(hti);
198
199 return 0;
200}
201
202static int netlink_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
203{
204 int hdrlen = sizeof(struct netlink_diag_req);
205 struct net *net = sock_net(skb->sk);
206
207 if (nlmsg_len(h) < hdrlen)
208 return -EINVAL;
209
210 if (h->nlmsg_flags & NLM_F_DUMP) {
211 struct netlink_dump_control c = {
212 .dump = netlink_diag_dump,
213 .done = netlink_diag_dump_done,
214 };
215 return netlink_dump_start(net->diag_nlsk, skb, h, &c);
216 } else
217 return -EOPNOTSUPP;
218}
219
220static const struct sock_diag_handler netlink_diag_handler = {
221 .family = AF_NETLINK,
222 .dump = netlink_diag_handler_dump,
223};
224
225static int __init netlink_diag_init(void)
226{
227 return sock_diag_register(&netlink_diag_handler);
228}
229
230static void __exit netlink_diag_exit(void)
231{
232 sock_diag_unregister(&netlink_diag_handler);
233}
234
235module_init(netlink_diag_init);
236module_exit(netlink_diag_exit);
237MODULE_LICENSE("GPL");
238MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 16 /* AF_NETLINK */);
1#include <linux/module.h>
2
3#include <net/sock.h>
4#include <linux/netlink.h>
5#include <linux/sock_diag.h>
6#include <linux/netlink_diag.h>
7
8#include "af_netlink.h"
9
10#ifdef CONFIG_NETLINK_MMAP
11static int sk_diag_put_ring(struct netlink_ring *ring, int nl_type,
12 struct sk_buff *nlskb)
13{
14 struct netlink_diag_ring ndr;
15
16 ndr.ndr_block_size = ring->pg_vec_pages << PAGE_SHIFT;
17 ndr.ndr_block_nr = ring->pg_vec_len;
18 ndr.ndr_frame_size = ring->frame_size;
19 ndr.ndr_frame_nr = ring->frame_max + 1;
20
21 return nla_put(nlskb, nl_type, sizeof(ndr), &ndr);
22}
23
24static int sk_diag_put_rings_cfg(struct sock *sk, struct sk_buff *nlskb)
25{
26 struct netlink_sock *nlk = nlk_sk(sk);
27 int ret;
28
29 mutex_lock(&nlk->pg_vec_lock);
30 ret = sk_diag_put_ring(&nlk->rx_ring, NETLINK_DIAG_RX_RING, nlskb);
31 if (!ret)
32 ret = sk_diag_put_ring(&nlk->tx_ring, NETLINK_DIAG_TX_RING,
33 nlskb);
34 mutex_unlock(&nlk->pg_vec_lock);
35
36 return ret;
37}
38#else
39static int sk_diag_put_rings_cfg(struct sock *sk, struct sk_buff *nlskb)
40{
41 return 0;
42}
43#endif
44
45static int sk_diag_dump_groups(struct sock *sk, struct sk_buff *nlskb)
46{
47 struct netlink_sock *nlk = nlk_sk(sk);
48
49 if (nlk->groups == NULL)
50 return 0;
51
52 return nla_put(nlskb, NETLINK_DIAG_GROUPS, NLGRPSZ(nlk->ngroups),
53 nlk->groups);
54}
55
56static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
57 struct netlink_diag_req *req,
58 u32 portid, u32 seq, u32 flags, int sk_ino)
59{
60 struct nlmsghdr *nlh;
61 struct netlink_diag_msg *rep;
62 struct netlink_sock *nlk = nlk_sk(sk);
63
64 nlh = nlmsg_put(skb, portid, seq, SOCK_DIAG_BY_FAMILY, sizeof(*rep),
65 flags);
66 if (!nlh)
67 return -EMSGSIZE;
68
69 rep = nlmsg_data(nlh);
70 rep->ndiag_family = AF_NETLINK;
71 rep->ndiag_type = sk->sk_type;
72 rep->ndiag_protocol = sk->sk_protocol;
73 rep->ndiag_state = sk->sk_state;
74
75 rep->ndiag_ino = sk_ino;
76 rep->ndiag_portid = nlk->portid;
77 rep->ndiag_dst_portid = nlk->dst_portid;
78 rep->ndiag_dst_group = nlk->dst_group;
79 sock_diag_save_cookie(sk, rep->ndiag_cookie);
80
81 if ((req->ndiag_show & NDIAG_SHOW_GROUPS) &&
82 sk_diag_dump_groups(sk, skb))
83 goto out_nlmsg_trim;
84
85 if ((req->ndiag_show & NDIAG_SHOW_MEMINFO) &&
86 sock_diag_put_meminfo(sk, skb, NETLINK_DIAG_MEMINFO))
87 goto out_nlmsg_trim;
88
89 if ((req->ndiag_show & NDIAG_SHOW_RING_CFG) &&
90 sk_diag_put_rings_cfg(sk, skb))
91 goto out_nlmsg_trim;
92
93 return nlmsg_end(skb, nlh);
94
95out_nlmsg_trim:
96 nlmsg_cancel(skb, nlh);
97 return -EMSGSIZE;
98}
99
100static int __netlink_diag_dump(struct sk_buff *skb, struct netlink_callback *cb,
101 int protocol, int s_num)
102{
103 struct netlink_table *tbl = &nl_table[protocol];
104 struct nl_portid_hash *hash = &tbl->hash;
105 struct net *net = sock_net(skb->sk);
106 struct netlink_diag_req *req;
107 struct sock *sk;
108 int ret = 0, num = 0, i;
109
110 req = nlmsg_data(cb->nlh);
111
112 for (i = 0; i <= hash->mask; i++) {
113 sk_for_each(sk, &hash->table[i]) {
114 if (!net_eq(sock_net(sk), net))
115 continue;
116 if (num < s_num) {
117 num++;
118 continue;
119 }
120
121 if (sk_diag_fill(sk, skb, req,
122 NETLINK_CB(cb->skb).portid,
123 cb->nlh->nlmsg_seq,
124 NLM_F_MULTI,
125 sock_i_ino(sk)) < 0) {
126 ret = 1;
127 goto done;
128 }
129
130 num++;
131 }
132 }
133
134 sk_for_each_bound(sk, &tbl->mc_list) {
135 if (sk_hashed(sk))
136 continue;
137 if (!net_eq(sock_net(sk), net))
138 continue;
139 if (num < s_num) {
140 num++;
141 continue;
142 }
143
144 if (sk_diag_fill(sk, skb, req,
145 NETLINK_CB(cb->skb).portid,
146 cb->nlh->nlmsg_seq,
147 NLM_F_MULTI,
148 sock_i_ino(sk)) < 0) {
149 ret = 1;
150 goto done;
151 }
152 num++;
153 }
154done:
155 cb->args[0] = num;
156 cb->args[1] = protocol;
157
158 return ret;
159}
160
161static int netlink_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
162{
163 struct netlink_diag_req *req;
164 int s_num = cb->args[0];
165
166 req = nlmsg_data(cb->nlh);
167
168 read_lock(&nl_table_lock);
169
170 if (req->sdiag_protocol == NDIAG_PROTO_ALL) {
171 int i;
172
173 for (i = cb->args[1]; i < MAX_LINKS; i++) {
174 if (__netlink_diag_dump(skb, cb, i, s_num))
175 break;
176 s_num = 0;
177 }
178 } else {
179 if (req->sdiag_protocol >= MAX_LINKS) {
180 read_unlock(&nl_table_lock);
181 return -ENOENT;
182 }
183
184 __netlink_diag_dump(skb, cb, req->sdiag_protocol, s_num);
185 }
186
187 read_unlock(&nl_table_lock);
188
189 return skb->len;
190}
191
192static int netlink_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
193{
194 int hdrlen = sizeof(struct netlink_diag_req);
195 struct net *net = sock_net(skb->sk);
196
197 if (nlmsg_len(h) < hdrlen)
198 return -EINVAL;
199
200 if (h->nlmsg_flags & NLM_F_DUMP) {
201 struct netlink_dump_control c = {
202 .dump = netlink_diag_dump,
203 };
204 return netlink_dump_start(net->diag_nlsk, skb, h, &c);
205 } else
206 return -EOPNOTSUPP;
207}
208
209static const struct sock_diag_handler netlink_diag_handler = {
210 .family = AF_NETLINK,
211 .dump = netlink_diag_handler_dump,
212};
213
214static int __init netlink_diag_init(void)
215{
216 return sock_diag_register(&netlink_diag_handler);
217}
218
219static void __exit netlink_diag_exit(void)
220{
221 sock_diag_unregister(&netlink_diag_handler);
222}
223
224module_init(netlink_diag_init);
225module_exit(netlink_diag_exit);
226MODULE_LICENSE("GPL");
227MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 16 /* AF_NETLINK */);