Merge tag 'drm-msm-fixes-2022-08-27' of https://gitlab.freedesktop.org/drm/msm into...
[linux-block.git] / net / unix / diag.c
CommitLineData
09c434b8 1// SPDX-License-Identifier: GPL-2.0-only
22931d3b
PE
2#include <linux/types.h>
3#include <linux/spinlock.h>
4#include <linux/sock_diag.h>
5#include <linux/unix_diag.h>
6#include <linux/skbuff.h>
2ea744a5 7#include <linux/module.h>
cae9910e 8#include <linux/uidgid.h>
22931d3b
PE
9#include <net/netlink.h>
10#include <net/af_unix.h>
11#include <net/tcp_states.h>
cae9910e 12#include <net/sock.h>
22931d3b 13
f5248b48
PE
14static int sk_diag_dump_name(struct sock *sk, struct sk_buff *nlskb)
15{
2f7ca90a 16 /* might or might not have a hash table lock */
ae3b5641 17 struct unix_address *addr = smp_load_acquire(&unix_sk(sk)->addr);
f5248b48 18
4245375d
TG
19 if (!addr)
20 return 0;
f5248b48 21
755662ce
KI
22 return nla_put(nlskb, UNIX_DIAG_NAME,
23 addr->len - offsetof(struct sockaddr_un, sun_path),
4245375d 24 addr->name->sun_path);
f5248b48
PE
25}
26
5f7b0569
PE
27static int sk_diag_dump_vfs(struct sock *sk, struct sk_buff *nlskb)
28{
40ffe67d 29 struct dentry *dentry = unix_sk(sk)->path.dentry;
5f7b0569
PE
30
31 if (dentry) {
4245375d 32 struct unix_diag_vfs uv = {
a25b376b 33 .udiag_vfs_ino = d_backing_inode(dentry)->i_ino,
4245375d
TG
34 .udiag_vfs_dev = dentry->d_sb->s_dev,
35 };
36
37 return nla_put(nlskb, UNIX_DIAG_VFS, sizeof(uv), &uv);
5f7b0569
PE
38 }
39
40 return 0;
5f7b0569
PE
41}
42
ac02be8d
PE
43static int sk_diag_dump_peer(struct sock *sk, struct sk_buff *nlskb)
44{
45 struct sock *peer;
46 int ino;
47
48 peer = unix_peer_get(sk);
49 if (peer) {
50 unix_state_lock(peer);
51 ino = sock_i_ino(peer);
52 unix_state_unlock(peer);
53 sock_put(peer);
54
4245375d 55 return nla_put_u32(nlskb, UNIX_DIAG_PEER, ino);
ac02be8d
PE
56 }
57
58 return 0;
ac02be8d
PE
59}
60
2aac7a2c
PE
61static int sk_diag_dump_icons(struct sock *sk, struct sk_buff *nlskb)
62{
63 struct sk_buff *skb;
4245375d 64 struct nlattr *attr;
2aac7a2c
PE
65 u32 *buf;
66 int i;
67
68 if (sk->sk_state == TCP_LISTEN) {
69 spin_lock(&sk->sk_receive_queue.lock);
4245375d
TG
70
71 attr = nla_reserve(nlskb, UNIX_DIAG_ICONS,
72 sk->sk_receive_queue.qlen * sizeof(u32));
73 if (!attr)
74 goto errout;
75
76 buf = nla_data(attr);
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
4245375d 97errout:
2aac7a2c
PE
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{
4245375d 104 struct unix_diag_rqlen rql;
c9da99e6
PE
105
106 if (sk->sk_state == TCP_LISTEN) {
4245375d
TG
107 rql.udiag_rqueue = sk->sk_receive_queue.qlen;
108 rql.udiag_wqueue = sk->sk_max_ack_backlog;
c9da99e6 109 } else {
4245375d
TG
110 rql.udiag_rqueue = (u32) unix_inq_len(sk);
111 rql.udiag_wqueue = (u32) unix_outq_len(sk);
c9da99e6
PE
112 }
113
4245375d 114 return nla_put(nlskb, UNIX_DIAG_RQLEN, sizeof(rql), &rql);
cbf39195
PE
115}
116
cae9910e
FG
117static int sk_diag_dump_uid(struct sock *sk, struct sk_buff *nlskb)
118{
119 uid_t uid = from_kuid_munged(sk_user_ns(nlskb->sk), sock_i_uid(sk));
120 return nla_put(nlskb, UNIX_DIAG_UID, sizeof(uid_t), &uid);
121}
122
45a96b9b 123static int sk_diag_fill(struct sock *sk, struct sk_buff *skb, struct unix_diag_req *req,
15e47304 124 u32 portid, u32 seq, u32 flags, int sk_ino)
45a96b9b 125{
45a96b9b
PE
126 struct nlmsghdr *nlh;
127 struct unix_diag_msg *rep;
128
15e47304 129 nlh = nlmsg_put(skb, portid, seq, SOCK_DIAG_BY_FAMILY, sizeof(*rep),
4245375d 130 flags);
b61bb019 131 if (!nlh)
4245375d 132 return -EMSGSIZE;
45a96b9b 133
b61bb019 134 rep = nlmsg_data(nlh);
45a96b9b
PE
135 rep->udiag_family = AF_UNIX;
136 rep->udiag_type = sk->sk_type;
137 rep->udiag_state = sk->sk_state;
6865d1e8 138 rep->pad = 0;
45a96b9b
PE
139 rep->udiag_ino = sk_ino;
140 sock_diag_save_cookie(sk, rep->udiag_cookie);
141
f5248b48 142 if ((req->udiag_show & UDIAG_SHOW_NAME) &&
257b5298 143 sk_diag_dump_name(sk, skb))
b61bb019 144 goto out_nlmsg_trim;
f5248b48 145
5f7b0569 146 if ((req->udiag_show & UDIAG_SHOW_VFS) &&
257b5298 147 sk_diag_dump_vfs(sk, skb))
b61bb019 148 goto out_nlmsg_trim;
5f7b0569 149
ac02be8d 150 if ((req->udiag_show & UDIAG_SHOW_PEER) &&
257b5298 151 sk_diag_dump_peer(sk, skb))
b61bb019 152 goto out_nlmsg_trim;
ac02be8d 153
2aac7a2c 154 if ((req->udiag_show & UDIAG_SHOW_ICONS) &&
257b5298 155 sk_diag_dump_icons(sk, skb))
b61bb019 156 goto out_nlmsg_trim;
2aac7a2c 157
cbf39195 158 if ((req->udiag_show & UDIAG_SHOW_RQLEN) &&
257b5298 159 sk_diag_show_rqlen(sk, skb))
b61bb019 160 goto out_nlmsg_trim;
257b5298
PE
161
162 if ((req->udiag_show & UDIAG_SHOW_MEMINFO) &&
163 sock_diag_put_meminfo(sk, skb, UNIX_DIAG_MEMINFO))
b61bb019 164 goto out_nlmsg_trim;
cbf39195 165
e4e541a8
PE
166 if (nla_put_u8(skb, UNIX_DIAG_SHUTDOWN, sk->sk_shutdown))
167 goto out_nlmsg_trim;
168
cae9910e
FG
169 if ((req->udiag_show & UDIAG_SHOW_UID) &&
170 sk_diag_dump_uid(sk, skb))
171 goto out_nlmsg_trim;
172
053c095a
JB
173 nlmsg_end(skb, nlh);
174 return 0;
45a96b9b 175
b61bb019 176out_nlmsg_trim:
4245375d 177 nlmsg_cancel(skb, nlh);
45a96b9b
PE
178 return -EMSGSIZE;
179}
180
181static int sk_diag_dump(struct sock *sk, struct sk_buff *skb, struct unix_diag_req *req,
15e47304 182 u32 portid, u32 seq, u32 flags)
45a96b9b
PE
183{
184 int sk_ino;
185
186 unix_state_lock(sk);
187 sk_ino = sock_i_ino(sk);
188 unix_state_unlock(sk);
189
190 if (!sk_ino)
191 return 0;
192
15e47304 193 return sk_diag_fill(sk, skb, req, portid, seq, flags, sk_ino);
45a96b9b
PE
194}
195
22931d3b
PE
196static int unix_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
197{
51d7cccf 198 struct net *net = sock_net(skb->sk);
79b05bea
KI
199 int num, s_num, slot, s_slot;
200 struct unix_diag_req *req;
45a96b9b 201
b61bb019 202 req = nlmsg_data(cb->nlh);
45a96b9b
PE
203
204 s_slot = cb->args[0];
205 num = s_num = cb->args[1];
206
f302d180 207 for (slot = s_slot; slot < UNIX_HASH_SIZE; s_num = 0, slot++) {
45a96b9b 208 struct sock *sk;
45a96b9b
PE
209
210 num = 0;
79b05bea 211 spin_lock(&net->unx.table.locks[slot]);
cf2f225e 212 sk_for_each(sk, &net->unx.table.buckets[slot]) {
45a96b9b
PE
213 if (num < s_num)
214 goto next;
215 if (!(req->udiag_states & (1 << sk->sk_state)))
216 goto next;
217 if (sk_diag_dump(sk, skb, req,
15e47304 218 NETLINK_CB(cb->skb).portid,
257b5298 219 cb->nlh->nlmsg_seq,
afd20b92 220 NLM_F_MULTI) < 0) {
79b05bea 221 spin_unlock(&net->unx.table.locks[slot]);
45a96b9b 222 goto done;
afd20b92 223 }
45a96b9b
PE
224next:
225 num++;
226 }
79b05bea 227 spin_unlock(&net->unx.table.locks[slot]);
45a96b9b
PE
228 }
229done:
45a96b9b
PE
230 cb->args[0] = slot;
231 cb->args[1] = num;
232
233 return skb->len;
22931d3b
PE
234}
235
79b05bea 236static struct sock *unix_lookup_by_ino(struct net *net, unsigned int ino)
5d3cae8b 237{
5d3cae8b 238 struct sock *sk;
afd20b92 239 int i;
5d3cae8b 240
f302d180 241 for (i = 0; i < UNIX_HASH_SIZE; i++) {
79b05bea 242 spin_lock(&net->unx.table.locks[i]);
cf2f225e 243 sk_for_each(sk, &net->unx.table.buckets[i]) {
5d3cae8b
PE
244 if (ino == sock_i_ino(sk)) {
245 sock_hold(sk);
79b05bea 246 spin_unlock(&net->unx.table.locks[i]);
5d3cae8b
PE
247 return sk;
248 }
cf2f225e 249 }
79b05bea 250 spin_unlock(&net->unx.table.locks[i]);
5d3cae8b 251 }
5d3cae8b
PE
252 return NULL;
253}
254
22931d3b
PE
255static int unix_diag_get_exact(struct sk_buff *in_skb,
256 const struct nlmsghdr *nlh,
257 struct unix_diag_req *req)
258{
51d7cccf 259 struct net *net = sock_net(in_skb->sk);
79b05bea
KI
260 unsigned int extra_len;
261 struct sk_buff *rep;
262 struct sock *sk;
263 int err;
5d3cae8b 264
79b05bea 265 err = -EINVAL;
5d3cae8b
PE
266 if (req->udiag_ino == 0)
267 goto out_nosk;
268
79b05bea 269 sk = unix_lookup_by_ino(net, req->udiag_ino);
5d3cae8b
PE
270 err = -ENOENT;
271 if (sk == NULL)
272 goto out_nosk;
273
274 err = sock_diag_check_cookie(sk, req->udiag_cookie);
275 if (err)
276 goto out;
277
278 extra_len = 256;
279again:
280 err = -ENOMEM;
4245375d 281 rep = nlmsg_new(sizeof(struct unix_diag_msg) + extra_len, GFP_KERNEL);
5d3cae8b
PE
282 if (!rep)
283 goto out;
284
15e47304 285 err = sk_diag_fill(sk, rep, req, NETLINK_CB(in_skb).portid,
5d3cae8b
PE
286 nlh->nlmsg_seq, 0, req->udiag_ino);
287 if (err < 0) {
4245375d 288 nlmsg_free(rep);
5d3cae8b
PE
289 extra_len += 256;
290 if (extra_len >= PAGE_SIZE)
291 goto out;
292
293 goto again;
294 }
01757f53
YD
295 err = nlmsg_unicast(net->diag_nlsk, rep, NETLINK_CB(in_skb).portid);
296
5d3cae8b
PE
297out:
298 if (sk)
299 sock_put(sk);
300out_nosk:
301 return err;
22931d3b
PE
302}
303
304static int unix_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
305{
306 int hdrlen = sizeof(struct unix_diag_req);
307
308 if (nlmsg_len(h) < hdrlen)
309 return -EINVAL;
310
80d326fa
PNA
311 if (h->nlmsg_flags & NLM_F_DUMP) {
312 struct netlink_dump_control c = {
313 .dump = unix_diag_dump,
314 };
340c3d33 315 return netlink_dump_start(sock_net(skb->sk)->diag_nlsk, skb, h, &c);
80d326fa 316 } else
b61bb019 317 return unix_diag_get_exact(skb, h, nlmsg_data(h));
22931d3b
PE
318}
319
8dcf01fc 320static const struct sock_diag_handler unix_diag_handler = {
22931d3b
PE
321 .family = AF_UNIX,
322 .dump = unix_diag_handler_dump,
323};
324
325static int __init unix_diag_init(void)
326{
327 return sock_diag_register(&unix_diag_handler);
328}
329
330static void __exit unix_diag_exit(void)
331{
332 sock_diag_unregister(&unix_diag_handler);
333}
334
335module_init(unix_diag_init);
336module_exit(unix_diag_exit);
337MODULE_LICENSE("GPL");
338MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 1 /* AF_LOCAL */);