blob: 7e7d7f45685af6eeb71a1cfc8ec8dd30ac0fa9a1 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Pavel Emelyanov22931d32011-12-15 02:44:35 +00002#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>
Cyrill Gorcunov2ea744a2011-12-20 04:33:03 +00007#include <linux/module.h>
Felipe Gaspercae99102019-05-20 19:43:51 -05008#include <linux/uidgid.h>
Pavel Emelyanov22931d32011-12-15 02:44:35 +00009#include <net/netlink.h>
10#include <net/af_unix.h>
11#include <net/tcp_states.h>
Felipe Gaspercae99102019-05-20 19:43:51 -050012#include <net/sock.h>
Pavel Emelyanov22931d32011-12-15 02:44:35 +000013
Pavel Emelyanovf5248b42011-12-15 02:45:24 +000014static int sk_diag_dump_name(struct sock *sk, struct sk_buff *nlskb)
15{
Al Viroae3b5642019-02-15 20:09:35 +000016 /* might or might not have unix_table_lock */
17 struct unix_address *addr = smp_load_acquire(&unix_sk(sk)->addr);
Pavel Emelyanovf5248b42011-12-15 02:45:24 +000018
Thomas Graf42453752012-06-26 23:36:10 +000019 if (!addr)
20 return 0;
Pavel Emelyanovf5248b42011-12-15 02:45:24 +000021
Thomas Graf42453752012-06-26 23:36:10 +000022 return nla_put(nlskb, UNIX_DIAG_NAME, addr->len - sizeof(short),
23 addr->name->sun_path);
Pavel Emelyanovf5248b42011-12-15 02:45:24 +000024}
25
Pavel Emelyanov5f7b0562011-12-15 02:45:43 +000026static int sk_diag_dump_vfs(struct sock *sk, struct sk_buff *nlskb)
27{
Al Viro40ffe672012-03-14 21:54:32 -040028 struct dentry *dentry = unix_sk(sk)->path.dentry;
Pavel Emelyanov5f7b0562011-12-15 02:45:43 +000029
30 if (dentry) {
Thomas Graf42453752012-06-26 23:36:10 +000031 struct unix_diag_vfs uv = {
David Howellsa25b3762015-03-17 22:26:21 +000032 .udiag_vfs_ino = d_backing_inode(dentry)->i_ino,
Thomas Graf42453752012-06-26 23:36:10 +000033 .udiag_vfs_dev = dentry->d_sb->s_dev,
34 };
35
36 return nla_put(nlskb, UNIX_DIAG_VFS, sizeof(uv), &uv);
Pavel Emelyanov5f7b0562011-12-15 02:45:43 +000037 }
38
39 return 0;
Pavel Emelyanov5f7b0562011-12-15 02:45:43 +000040}
41
Pavel Emelyanovac02be82011-12-15 02:45:58 +000042static int sk_diag_dump_peer(struct sock *sk, struct sk_buff *nlskb)
43{
44 struct sock *peer;
45 int ino;
46
47 peer = unix_peer_get(sk);
48 if (peer) {
49 unix_state_lock(peer);
50 ino = sock_i_ino(peer);
51 unix_state_unlock(peer);
52 sock_put(peer);
53
Thomas Graf42453752012-06-26 23:36:10 +000054 return nla_put_u32(nlskb, UNIX_DIAG_PEER, ino);
Pavel Emelyanovac02be82011-12-15 02:45:58 +000055 }
56
57 return 0;
Pavel Emelyanovac02be82011-12-15 02:45:58 +000058}
59
Pavel Emelyanov2aac7a22011-12-15 02:46:14 +000060static int sk_diag_dump_icons(struct sock *sk, struct sk_buff *nlskb)
61{
62 struct sk_buff *skb;
Thomas Graf42453752012-06-26 23:36:10 +000063 struct nlattr *attr;
Pavel Emelyanov2aac7a22011-12-15 02:46:14 +000064 u32 *buf;
65 int i;
66
67 if (sk->sk_state == TCP_LISTEN) {
68 spin_lock(&sk->sk_receive_queue.lock);
Thomas Graf42453752012-06-26 23:36:10 +000069
70 attr = nla_reserve(nlskb, UNIX_DIAG_ICONS,
71 sk->sk_receive_queue.qlen * sizeof(u32));
72 if (!attr)
73 goto errout;
74
75 buf = nla_data(attr);
Pavel Emelyanov2aac7a22011-12-15 02:46:14 +000076 i = 0;
77 skb_queue_walk(&sk->sk_receive_queue, skb) {
78 struct sock *req, *peer;
79
80 req = skb->sk;
81 /*
82 * The state lock is outer for the same sk's
83 * queue lock. With the other's queue locked it's
84 * OK to lock the state.
85 */
86 unix_state_lock_nested(req);
87 peer = unix_sk(req)->peer;
David S. Millere09e9d12011-12-26 14:41:55 -050088 buf[i++] = (peer ? sock_i_ino(peer) : 0);
Pavel Emelyanov2aac7a22011-12-15 02:46:14 +000089 unix_state_unlock(req);
90 }
91 spin_unlock(&sk->sk_receive_queue.lock);
92 }
93
94 return 0;
95
Thomas Graf42453752012-06-26 23:36:10 +000096errout:
Pavel Emelyanov2aac7a22011-12-15 02:46:14 +000097 spin_unlock(&sk->sk_receive_queue.lock);
98 return -EMSGSIZE;
99}
100
Pavel Emelyanovcbf39192011-12-15 02:46:31 +0000101static int sk_diag_show_rqlen(struct sock *sk, struct sk_buff *nlskb)
102{
Thomas Graf42453752012-06-26 23:36:10 +0000103 struct unix_diag_rqlen rql;
Pavel Emelyanovc9da99e2011-12-30 00:54:39 +0000104
105 if (sk->sk_state == TCP_LISTEN) {
Thomas Graf42453752012-06-26 23:36:10 +0000106 rql.udiag_rqueue = sk->sk_receive_queue.qlen;
107 rql.udiag_wqueue = sk->sk_max_ack_backlog;
Pavel Emelyanovc9da99e2011-12-30 00:54:39 +0000108 } else {
Thomas Graf42453752012-06-26 23:36:10 +0000109 rql.udiag_rqueue = (u32) unix_inq_len(sk);
110 rql.udiag_wqueue = (u32) unix_outq_len(sk);
Pavel Emelyanovc9da99e2011-12-30 00:54:39 +0000111 }
112
Thomas Graf42453752012-06-26 23:36:10 +0000113 return nla_put(nlskb, UNIX_DIAG_RQLEN, sizeof(rql), &rql);
Pavel Emelyanovcbf39192011-12-15 02:46:31 +0000114}
115
Felipe Gaspercae99102019-05-20 19:43:51 -0500116static int sk_diag_dump_uid(struct sock *sk, struct sk_buff *nlskb)
117{
118 uid_t uid = from_kuid_munged(sk_user_ns(nlskb->sk), sock_i_uid(sk));
119 return nla_put(nlskb, UNIX_DIAG_UID, sizeof(uid_t), &uid);
120}
121
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000122static int sk_diag_fill(struct sock *sk, struct sk_buff *skb, struct unix_diag_req *req,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000123 u32 portid, u32 seq, u32 flags, int sk_ino)
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000124{
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000125 struct nlmsghdr *nlh;
126 struct unix_diag_msg *rep;
127
Eric W. Biederman15e47302012-09-07 20:12:54 +0000128 nlh = nlmsg_put(skb, portid, seq, SOCK_DIAG_BY_FAMILY, sizeof(*rep),
Thomas Graf42453752012-06-26 23:36:10 +0000129 flags);
David S. Millerb61bb012012-06-26 21:41:00 -0700130 if (!nlh)
Thomas Graf42453752012-06-26 23:36:10 +0000131 return -EMSGSIZE;
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000132
David S. Millerb61bb012012-06-26 21:41:00 -0700133 rep = nlmsg_data(nlh);
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000134 rep->udiag_family = AF_UNIX;
135 rep->udiag_type = sk->sk_type;
136 rep->udiag_state = sk->sk_state;
Mathias Krause6865d1e2013-09-30 22:05:40 +0200137 rep->pad = 0;
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000138 rep->udiag_ino = sk_ino;
139 sock_diag_save_cookie(sk, rep->udiag_cookie);
140
Pavel Emelyanovf5248b42011-12-15 02:45:24 +0000141 if ((req->udiag_show & UDIAG_SHOW_NAME) &&
Pavel Emelyanov257b5292011-12-30 09:27:43 +0000142 sk_diag_dump_name(sk, skb))
David S. Millerb61bb012012-06-26 21:41:00 -0700143 goto out_nlmsg_trim;
Pavel Emelyanovf5248b42011-12-15 02:45:24 +0000144
Pavel Emelyanov5f7b0562011-12-15 02:45:43 +0000145 if ((req->udiag_show & UDIAG_SHOW_VFS) &&
Pavel Emelyanov257b5292011-12-30 09:27:43 +0000146 sk_diag_dump_vfs(sk, skb))
David S. Millerb61bb012012-06-26 21:41:00 -0700147 goto out_nlmsg_trim;
Pavel Emelyanov5f7b0562011-12-15 02:45:43 +0000148
Pavel Emelyanovac02be82011-12-15 02:45:58 +0000149 if ((req->udiag_show & UDIAG_SHOW_PEER) &&
Pavel Emelyanov257b5292011-12-30 09:27:43 +0000150 sk_diag_dump_peer(sk, skb))
David S. Millerb61bb012012-06-26 21:41:00 -0700151 goto out_nlmsg_trim;
Pavel Emelyanovac02be82011-12-15 02:45:58 +0000152
Pavel Emelyanov2aac7a22011-12-15 02:46:14 +0000153 if ((req->udiag_show & UDIAG_SHOW_ICONS) &&
Pavel Emelyanov257b5292011-12-30 09:27:43 +0000154 sk_diag_dump_icons(sk, skb))
David S. Millerb61bb012012-06-26 21:41:00 -0700155 goto out_nlmsg_trim;
Pavel Emelyanov2aac7a22011-12-15 02:46:14 +0000156
Pavel Emelyanovcbf39192011-12-15 02:46:31 +0000157 if ((req->udiag_show & UDIAG_SHOW_RQLEN) &&
Pavel Emelyanov257b5292011-12-30 09:27:43 +0000158 sk_diag_show_rqlen(sk, skb))
David S. Millerb61bb012012-06-26 21:41:00 -0700159 goto out_nlmsg_trim;
Pavel Emelyanov257b5292011-12-30 09:27:43 +0000160
161 if ((req->udiag_show & UDIAG_SHOW_MEMINFO) &&
162 sock_diag_put_meminfo(sk, skb, UNIX_DIAG_MEMINFO))
David S. Millerb61bb012012-06-26 21:41:00 -0700163 goto out_nlmsg_trim;
Pavel Emelyanovcbf39192011-12-15 02:46:31 +0000164
Pavel Emelyanove4e541a2012-10-23 22:29:56 +0400165 if (nla_put_u8(skb, UNIX_DIAG_SHUTDOWN, sk->sk_shutdown))
166 goto out_nlmsg_trim;
167
Felipe Gaspercae99102019-05-20 19:43:51 -0500168 if ((req->udiag_show & UDIAG_SHOW_UID) &&
169 sk_diag_dump_uid(sk, skb))
170 goto out_nlmsg_trim;
171
Johannes Berg053c0952015-01-16 22:09:00 +0100172 nlmsg_end(skb, nlh);
173 return 0;
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000174
David S. Millerb61bb012012-06-26 21:41:00 -0700175out_nlmsg_trim:
Thomas Graf42453752012-06-26 23:36:10 +0000176 nlmsg_cancel(skb, nlh);
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000177 return -EMSGSIZE;
178}
179
180static int sk_diag_dump(struct sock *sk, struct sk_buff *skb, struct unix_diag_req *req,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000181 u32 portid, u32 seq, u32 flags)
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000182{
183 int sk_ino;
184
185 unix_state_lock(sk);
186 sk_ino = sock_i_ino(sk);
187 unix_state_unlock(sk);
188
189 if (!sk_ino)
190 return 0;
191
Eric W. Biederman15e47302012-09-07 20:12:54 +0000192 return sk_diag_fill(sk, skb, req, portid, seq, flags, sk_ino);
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000193}
194
Pavel Emelyanov22931d32011-12-15 02:44:35 +0000195static int unix_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
196{
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000197 struct unix_diag_req *req;
198 int num, s_num, slot, s_slot;
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000199 struct net *net = sock_net(skb->sk);
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000200
David S. Millerb61bb012012-06-26 21:41:00 -0700201 req = nlmsg_data(cb->nlh);
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000202
203 s_slot = cb->args[0];
204 num = s_num = cb->args[1];
205
206 spin_lock(&unix_table_lock);
Eric Dumazet7123aaa2012-06-08 05:03:21 +0000207 for (slot = s_slot;
208 slot < ARRAY_SIZE(unix_socket_table);
209 s_num = 0, slot++) {
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000210 struct sock *sk;
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000211
212 num = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800213 sk_for_each(sk, &unix_socket_table[slot]) {
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000214 if (!net_eq(sock_net(sk), net))
215 continue;
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000216 if (num < s_num)
217 goto next;
218 if (!(req->udiag_states & (1 << sk->sk_state)))
219 goto next;
220 if (sk_diag_dump(sk, skb, req,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000221 NETLINK_CB(cb->skb).portid,
Pavel Emelyanov257b5292011-12-30 09:27:43 +0000222 cb->nlh->nlmsg_seq,
223 NLM_F_MULTI) < 0)
Pavel Emelyanov45a96b92011-12-15 02:44:52 +0000224 goto done;
225next:
226 num++;
227 }
228 }
229done:
230 spin_unlock(&unix_table_lock);
231 cb->args[0] = slot;
232 cb->args[1] = num;
233
234 return skb->len;
Pavel Emelyanov22931d32011-12-15 02:44:35 +0000235}
236
Dmitry V. Levinb5f05492016-02-19 04:27:48 +0300237static struct sock *unix_lookup_by_ino(unsigned int ino)
Pavel Emelyanov5d3cae82011-12-15 02:45:07 +0000238{
239 int i;
240 struct sock *sk;
241
242 spin_lock(&unix_table_lock);
Eric Dumazet7123aaa2012-06-08 05:03:21 +0000243 for (i = 0; i < ARRAY_SIZE(unix_socket_table); i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800244 sk_for_each(sk, &unix_socket_table[i])
Pavel Emelyanov5d3cae82011-12-15 02:45:07 +0000245 if (ino == sock_i_ino(sk)) {
246 sock_hold(sk);
247 spin_unlock(&unix_table_lock);
248
249 return sk;
250 }
251 }
252
253 spin_unlock(&unix_table_lock);
254 return NULL;
255}
256
Pavel Emelyanov22931d32011-12-15 02:44:35 +0000257static int unix_diag_get_exact(struct sk_buff *in_skb,
258 const struct nlmsghdr *nlh,
259 struct unix_diag_req *req)
260{
Pavel Emelyanov5d3cae82011-12-15 02:45:07 +0000261 int err = -EINVAL;
262 struct sock *sk;
263 struct sk_buff *rep;
264 unsigned int extra_len;
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000265 struct net *net = sock_net(in_skb->sk);
Pavel Emelyanov5d3cae82011-12-15 02:45:07 +0000266
267 if (req->udiag_ino == 0)
268 goto out_nosk;
269
270 sk = unix_lookup_by_ino(req->udiag_ino);
271 err = -ENOENT;
272 if (sk == NULL)
273 goto out_nosk;
Andrei Vagin0f5da652017-10-25 10:16:42 -0700274 if (!net_eq(sock_net(sk), net))
275 goto out;
Pavel Emelyanov5d3cae82011-12-15 02:45:07 +0000276
277 err = sock_diag_check_cookie(sk, req->udiag_cookie);
278 if (err)
279 goto out;
280
281 extra_len = 256;
282again:
283 err = -ENOMEM;
Thomas Graf42453752012-06-26 23:36:10 +0000284 rep = nlmsg_new(sizeof(struct unix_diag_msg) + extra_len, GFP_KERNEL);
Pavel Emelyanov5d3cae82011-12-15 02:45:07 +0000285 if (!rep)
286 goto out;
287
Eric W. Biederman15e47302012-09-07 20:12:54 +0000288 err = sk_diag_fill(sk, rep, req, NETLINK_CB(in_skb).portid,
Pavel Emelyanov5d3cae82011-12-15 02:45:07 +0000289 nlh->nlmsg_seq, 0, req->udiag_ino);
290 if (err < 0) {
Thomas Graf42453752012-06-26 23:36:10 +0000291 nlmsg_free(rep);
Pavel Emelyanov5d3cae82011-12-15 02:45:07 +0000292 extra_len += 256;
293 if (extra_len >= PAGE_SIZE)
294 goto out;
295
296 goto again;
297 }
Yajun Deng01757f52021-07-13 10:48:24 +0800298 err = nlmsg_unicast(net->diag_nlsk, rep, NETLINK_CB(in_skb).portid);
299
Pavel Emelyanov5d3cae82011-12-15 02:45:07 +0000300out:
301 if (sk)
302 sock_put(sk);
303out_nosk:
304 return err;
Pavel Emelyanov22931d32011-12-15 02:44:35 +0000305}
306
307static int unix_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
308{
309 int hdrlen = sizeof(struct unix_diag_req);
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000310 struct net *net = sock_net(skb->sk);
Pavel Emelyanov22931d32011-12-15 02:44:35 +0000311
312 if (nlmsg_len(h) < hdrlen)
313 return -EINVAL;
314
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000315 if (h->nlmsg_flags & NLM_F_DUMP) {
316 struct netlink_dump_control c = {
317 .dump = unix_diag_dump,
318 };
Andrey Vagin51d7ccc2012-07-16 04:28:49 +0000319 return netlink_dump_start(net->diag_nlsk, skb, h, &c);
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000320 } else
David S. Millerb61bb012012-06-26 21:41:00 -0700321 return unix_diag_get_exact(skb, h, nlmsg_data(h));
Pavel Emelyanov22931d32011-12-15 02:44:35 +0000322}
323
Shan Wei8dcf01f2012-04-24 18:21:07 +0000324static const struct sock_diag_handler unix_diag_handler = {
Pavel Emelyanov22931d32011-12-15 02:44:35 +0000325 .family = AF_UNIX,
326 .dump = unix_diag_handler_dump,
327};
328
329static int __init unix_diag_init(void)
330{
331 return sock_diag_register(&unix_diag_handler);
332}
333
334static void __exit unix_diag_exit(void)
335{
336 sock_diag_unregister(&unix_diag_handler);
337}
338
339module_init(unix_diag_init);
340module_exit(unix_diag_exit);
341MODULE_LICENSE("GPL");
342MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 1 /* AF_LOCAL */);