pkt_sched: act_api: Move away from NLMSG_PUT().
[deliverable/linux.git] / net / unix / diag.c
CommitLineData
22931d3b
PE
1#include <linux/types.h>
2#include <linux/spinlock.h>
3#include <linux/sock_diag.h>
4#include <linux/unix_diag.h>
5#include <linux/skbuff.h>
2ea744a5 6#include <linux/module.h>
22931d3b
PE
7#include <net/netlink.h>
8#include <net/af_unix.h>
9#include <net/tcp_states.h>
10
11#define UNIX_DIAG_PUT(skb, attrtype, attrlen) \
12 RTA_DATA(__RTA_PUT(skb, attrtype, attrlen))
13
f5248b48
PE
14static int sk_diag_dump_name(struct sock *sk, struct sk_buff *nlskb)
15{
16 struct unix_address *addr = unix_sk(sk)->addr;
17 char *s;
18
19 if (addr) {
20 s = UNIX_DIAG_PUT(nlskb, UNIX_DIAG_NAME, addr->len - sizeof(short));
21 memcpy(s, addr->name->sun_path, addr->len - sizeof(short));
22 }
23
24 return 0;
25
26rtattr_failure:
27 return -EMSGSIZE;
28}
29
5f7b0569
PE
30static int sk_diag_dump_vfs(struct sock *sk, struct sk_buff *nlskb)
31{
40ffe67d 32 struct dentry *dentry = unix_sk(sk)->path.dentry;
5f7b0569
PE
33 struct unix_diag_vfs *uv;
34
35 if (dentry) {
36 uv = UNIX_DIAG_PUT(nlskb, UNIX_DIAG_VFS, sizeof(*uv));
37 uv->udiag_vfs_ino = dentry->d_inode->i_ino;
38 uv->udiag_vfs_dev = dentry->d_sb->s_dev;
39 }
40
41 return 0;
42
43rtattr_failure:
44 return -EMSGSIZE;
45}
46
ac02be8d
PE
47static int sk_diag_dump_peer(struct sock *sk, struct sk_buff *nlskb)
48{
49 struct sock *peer;
50 int ino;
51
52 peer = unix_peer_get(sk);
53 if (peer) {
54 unix_state_lock(peer);
55 ino = sock_i_ino(peer);
56 unix_state_unlock(peer);
57 sock_put(peer);
58
59 RTA_PUT_U32(nlskb, UNIX_DIAG_PEER, ino);
60 }
61
62 return 0;
63rtattr_failure:
64 return -EMSGSIZE;
65}
66
2aac7a2c
PE
67static int sk_diag_dump_icons(struct sock *sk, struct sk_buff *nlskb)
68{
69 struct sk_buff *skb;
70 u32 *buf;
71 int i;
72
73 if (sk->sk_state == TCP_LISTEN) {
74 spin_lock(&sk->sk_receive_queue.lock);
3b0723c1
PE
75 buf = UNIX_DIAG_PUT(nlskb, UNIX_DIAG_ICONS,
76 sk->sk_receive_queue.qlen * sizeof(u32));
2aac7a2c
PE
77 i = 0;
78 skb_queue_walk(&sk->sk_receive_queue, skb) {
79 struct sock *req, *peer;
80
81 req = skb->sk;
82 /*
83 * The state lock is outer for the same sk's
84 * queue lock. With the other's queue locked it's
85 * OK to lock the state.
86 */
87 unix_state_lock_nested(req);
88 peer = unix_sk(req)->peer;
e09e9d18 89 buf[i++] = (peer ? sock_i_ino(peer) : 0);
2aac7a2c
PE
90 unix_state_unlock(req);
91 }
92 spin_unlock(&sk->sk_receive_queue.lock);
93 }
94
95 return 0;
96
97rtattr_failure:
98 spin_unlock(&sk->sk_receive_queue.lock);
99 return -EMSGSIZE;
100}
101
cbf39195
PE
102static int sk_diag_show_rqlen(struct sock *sk, struct sk_buff *nlskb)
103{
c9da99e6
PE
104 struct unix_diag_rqlen *rql;
105
106 rql = UNIX_DIAG_PUT(nlskb, UNIX_DIAG_RQLEN, sizeof(*rql));
107
108 if (sk->sk_state == TCP_LISTEN) {
109 rql->udiag_rqueue = sk->sk_receive_queue.qlen;
110 rql->udiag_wqueue = sk->sk_max_ack_backlog;
111 } else {
112 rql->udiag_rqueue = (__u32)unix_inq_len(sk);
113 rql->udiag_wqueue = (__u32)unix_outq_len(sk);
114 }
115
cbf39195
PE
116 return 0;
117
118rtattr_failure:
119 return -EMSGSIZE;
120}
121
45a96b9b
PE
122static int sk_diag_fill(struct sock *sk, struct sk_buff *skb, struct unix_diag_req *req,
123 u32 pid, u32 seq, u32 flags, int sk_ino)
124{
125 unsigned char *b = skb_tail_pointer(skb);
126 struct nlmsghdr *nlh;
127 struct unix_diag_msg *rep;
128
129 nlh = NLMSG_PUT(skb, pid, seq, SOCK_DIAG_BY_FAMILY, sizeof(*rep));
130 nlh->nlmsg_flags = flags;
131
132 rep = NLMSG_DATA(nlh);
133
134 rep->udiag_family = AF_UNIX;
135 rep->udiag_type = sk->sk_type;
136 rep->udiag_state = sk->sk_state;
137 rep->udiag_ino = sk_ino;
138 sock_diag_save_cookie(sk, rep->udiag_cookie);
139
f5248b48 140 if ((req->udiag_show & UDIAG_SHOW_NAME) &&
257b5298 141 sk_diag_dump_name(sk, skb))
f5248b48
PE
142 goto nlmsg_failure;
143
5f7b0569 144 if ((req->udiag_show & UDIAG_SHOW_VFS) &&
257b5298 145 sk_diag_dump_vfs(sk, skb))
5f7b0569
PE
146 goto nlmsg_failure;
147
ac02be8d 148 if ((req->udiag_show & UDIAG_SHOW_PEER) &&
257b5298 149 sk_diag_dump_peer(sk, skb))
ac02be8d
PE
150 goto nlmsg_failure;
151
2aac7a2c 152 if ((req->udiag_show & UDIAG_SHOW_ICONS) &&
257b5298 153 sk_diag_dump_icons(sk, skb))
2aac7a2c
PE
154 goto nlmsg_failure;
155
cbf39195 156 if ((req->udiag_show & UDIAG_SHOW_RQLEN) &&
257b5298
PE
157 sk_diag_show_rqlen(sk, skb))
158 goto nlmsg_failure;
159
160 if ((req->udiag_show & UDIAG_SHOW_MEMINFO) &&
161 sock_diag_put_meminfo(sk, skb, UNIX_DIAG_MEMINFO))
cbf39195
PE
162 goto nlmsg_failure;
163
45a96b9b
PE
164 nlh->nlmsg_len = skb_tail_pointer(skb) - b;
165 return skb->len;
166
167nlmsg_failure:
168 nlmsg_trim(skb, b);
169 return -EMSGSIZE;
170}
171
172static int sk_diag_dump(struct sock *sk, struct sk_buff *skb, struct unix_diag_req *req,
173 u32 pid, u32 seq, u32 flags)
174{
175 int sk_ino;
176
177 unix_state_lock(sk);
178 sk_ino = sock_i_ino(sk);
179 unix_state_unlock(sk);
180
181 if (!sk_ino)
182 return 0;
183
184 return sk_diag_fill(sk, skb, req, pid, seq, flags, sk_ino);
185}
186
22931d3b
PE
187static int unix_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
188{
45a96b9b
PE
189 struct unix_diag_req *req;
190 int num, s_num, slot, s_slot;
191
192 req = NLMSG_DATA(cb->nlh);
193
194 s_slot = cb->args[0];
195 num = s_num = cb->args[1];
196
197 spin_lock(&unix_table_lock);
7123aaa3
ED
198 for (slot = s_slot;
199 slot < ARRAY_SIZE(unix_socket_table);
200 s_num = 0, slot++) {
45a96b9b
PE
201 struct sock *sk;
202 struct hlist_node *node;
203
204 num = 0;
205 sk_for_each(sk, node, &unix_socket_table[slot]) {
206 if (num < s_num)
207 goto next;
208 if (!(req->udiag_states & (1 << sk->sk_state)))
209 goto next;
210 if (sk_diag_dump(sk, skb, req,
257b5298
PE
211 NETLINK_CB(cb->skb).pid,
212 cb->nlh->nlmsg_seq,
213 NLM_F_MULTI) < 0)
45a96b9b
PE
214 goto done;
215next:
216 num++;
217 }
218 }
219done:
220 spin_unlock(&unix_table_lock);
221 cb->args[0] = slot;
222 cb->args[1] = num;
223
224 return skb->len;
22931d3b
PE
225}
226
5d3cae8b
PE
227static struct sock *unix_lookup_by_ino(int ino)
228{
229 int i;
230 struct sock *sk;
231
232 spin_lock(&unix_table_lock);
7123aaa3 233 for (i = 0; i < ARRAY_SIZE(unix_socket_table); i++) {
5d3cae8b
PE
234 struct hlist_node *node;
235
236 sk_for_each(sk, node, &unix_socket_table[i])
237 if (ino == sock_i_ino(sk)) {
238 sock_hold(sk);
239 spin_unlock(&unix_table_lock);
240
241 return sk;
242 }
243 }
244
245 spin_unlock(&unix_table_lock);
246 return NULL;
247}
248
22931d3b
PE
249static int unix_diag_get_exact(struct sk_buff *in_skb,
250 const struct nlmsghdr *nlh,
251 struct unix_diag_req *req)
252{
5d3cae8b
PE
253 int err = -EINVAL;
254 struct sock *sk;
255 struct sk_buff *rep;
256 unsigned int extra_len;
257
258 if (req->udiag_ino == 0)
259 goto out_nosk;
260
261 sk = unix_lookup_by_ino(req->udiag_ino);
262 err = -ENOENT;
263 if (sk == NULL)
264 goto out_nosk;
265
266 err = sock_diag_check_cookie(sk, req->udiag_cookie);
267 if (err)
268 goto out;
269
270 extra_len = 256;
271again:
272 err = -ENOMEM;
273 rep = alloc_skb(NLMSG_SPACE((sizeof(struct unix_diag_msg) + extra_len)),
274 GFP_KERNEL);
275 if (!rep)
276 goto out;
277
278 err = sk_diag_fill(sk, rep, req, NETLINK_CB(in_skb).pid,
279 nlh->nlmsg_seq, 0, req->udiag_ino);
280 if (err < 0) {
281 kfree_skb(rep);
282 extra_len += 256;
283 if (extra_len >= PAGE_SIZE)
284 goto out;
285
286 goto again;
287 }
288 err = netlink_unicast(sock_diag_nlsk, rep, NETLINK_CB(in_skb).pid,
289 MSG_DONTWAIT);
290 if (err > 0)
291 err = 0;
292out:
293 if (sk)
294 sock_put(sk);
295out_nosk:
296 return err;
22931d3b
PE
297}
298
299static int unix_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
300{
301 int hdrlen = sizeof(struct unix_diag_req);
302
303 if (nlmsg_len(h) < hdrlen)
304 return -EINVAL;
305
80d326fa
PNA
306 if (h->nlmsg_flags & NLM_F_DUMP) {
307 struct netlink_dump_control c = {
308 .dump = unix_diag_dump,
309 };
310 return netlink_dump_start(sock_diag_nlsk, skb, h, &c);
311 } else
22931d3b
PE
312 return unix_diag_get_exact(skb, h, (struct unix_diag_req *)NLMSG_DATA(h));
313}
314
8dcf01fc 315static const struct sock_diag_handler unix_diag_handler = {
22931d3b
PE
316 .family = AF_UNIX,
317 .dump = unix_diag_handler_dump,
318};
319
320static int __init unix_diag_init(void)
321{
322 return sock_diag_register(&unix_diag_handler);
323}
324
325static void __exit unix_diag_exit(void)
326{
327 sock_diag_unregister(&unix_diag_handler);
328}
329
330module_init(unix_diag_init);
331module_exit(unix_diag_exit);
332MODULE_LICENSE("GPL");
333MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 1 /* AF_LOCAL */);
This page took 0.125146 seconds and 5 git commands to generate.