Loading...
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>
6#include <linux/module.h>
7#include <net/netlink.h>
8#include <net/af_unix.h>
9#include <net/tcp_states.h>
10
11static int sk_diag_dump_name(struct sock *sk, struct sk_buff *nlskb)
12{
13 struct unix_address *addr = unix_sk(sk)->addr;
14
15 if (!addr)
16 return 0;
17
18 return nla_put(nlskb, UNIX_DIAG_NAME, addr->len - sizeof(short),
19 addr->name->sun_path);
20}
21
22static int sk_diag_dump_vfs(struct sock *sk, struct sk_buff *nlskb)
23{
24 struct dentry *dentry = unix_sk(sk)->path.dentry;
25
26 if (dentry) {
27 struct unix_diag_vfs uv = {
28 .udiag_vfs_ino = d_backing_inode(dentry)->i_ino,
29 .udiag_vfs_dev = dentry->d_sb->s_dev,
30 };
31
32 return nla_put(nlskb, UNIX_DIAG_VFS, sizeof(uv), &uv);
33 }
34
35 return 0;
36}
37
38static int sk_diag_dump_peer(struct sock *sk, struct sk_buff *nlskb)
39{
40 struct sock *peer;
41 int ino;
42
43 peer = unix_peer_get(sk);
44 if (peer) {
45 unix_state_lock(peer);
46 ino = sock_i_ino(peer);
47 unix_state_unlock(peer);
48 sock_put(peer);
49
50 return nla_put_u32(nlskb, UNIX_DIAG_PEER, ino);
51 }
52
53 return 0;
54}
55
56static int sk_diag_dump_icons(struct sock *sk, struct sk_buff *nlskb)
57{
58 struct sk_buff *skb;
59 struct nlattr *attr;
60 u32 *buf;
61 int i;
62
63 if (sk->sk_state == TCP_LISTEN) {
64 spin_lock(&sk->sk_receive_queue.lock);
65
66 attr = nla_reserve(nlskb, UNIX_DIAG_ICONS,
67 sk->sk_receive_queue.qlen * sizeof(u32));
68 if (!attr)
69 goto errout;
70
71 buf = nla_data(attr);
72 i = 0;
73 skb_queue_walk(&sk->sk_receive_queue, skb) {
74 struct sock *req, *peer;
75
76 req = skb->sk;
77 /*
78 * The state lock is outer for the same sk's
79 * queue lock. With the other's queue locked it's
80 * OK to lock the state.
81 */
82 unix_state_lock_nested(req);
83 peer = unix_sk(req)->peer;
84 buf[i++] = (peer ? sock_i_ino(peer) : 0);
85 unix_state_unlock(req);
86 }
87 spin_unlock(&sk->sk_receive_queue.lock);
88 }
89
90 return 0;
91
92errout:
93 spin_unlock(&sk->sk_receive_queue.lock);
94 return -EMSGSIZE;
95}
96
97static int sk_diag_show_rqlen(struct sock *sk, struct sk_buff *nlskb)
98{
99 struct unix_diag_rqlen rql;
100
101 if (sk->sk_state == TCP_LISTEN) {
102 rql.udiag_rqueue = sk->sk_receive_queue.qlen;
103 rql.udiag_wqueue = sk->sk_max_ack_backlog;
104 } else {
105 rql.udiag_rqueue = (u32) unix_inq_len(sk);
106 rql.udiag_wqueue = (u32) unix_outq_len(sk);
107 }
108
109 return nla_put(nlskb, UNIX_DIAG_RQLEN, sizeof(rql), &rql);
110}
111
112static int sk_diag_fill(struct sock *sk, struct sk_buff *skb, struct unix_diag_req *req,
113 u32 portid, u32 seq, u32 flags, int sk_ino)
114{
115 struct nlmsghdr *nlh;
116 struct unix_diag_msg *rep;
117
118 nlh = nlmsg_put(skb, portid, seq, SOCK_DIAG_BY_FAMILY, sizeof(*rep),
119 flags);
120 if (!nlh)
121 return -EMSGSIZE;
122
123 rep = nlmsg_data(nlh);
124 rep->udiag_family = AF_UNIX;
125 rep->udiag_type = sk->sk_type;
126 rep->udiag_state = sk->sk_state;
127 rep->pad = 0;
128 rep->udiag_ino = sk_ino;
129 sock_diag_save_cookie(sk, rep->udiag_cookie);
130
131 if ((req->udiag_show & UDIAG_SHOW_NAME) &&
132 sk_diag_dump_name(sk, skb))
133 goto out_nlmsg_trim;
134
135 if ((req->udiag_show & UDIAG_SHOW_VFS) &&
136 sk_diag_dump_vfs(sk, skb))
137 goto out_nlmsg_trim;
138
139 if ((req->udiag_show & UDIAG_SHOW_PEER) &&
140 sk_diag_dump_peer(sk, skb))
141 goto out_nlmsg_trim;
142
143 if ((req->udiag_show & UDIAG_SHOW_ICONS) &&
144 sk_diag_dump_icons(sk, skb))
145 goto out_nlmsg_trim;
146
147 if ((req->udiag_show & UDIAG_SHOW_RQLEN) &&
148 sk_diag_show_rqlen(sk, skb))
149 goto out_nlmsg_trim;
150
151 if ((req->udiag_show & UDIAG_SHOW_MEMINFO) &&
152 sock_diag_put_meminfo(sk, skb, UNIX_DIAG_MEMINFO))
153 goto out_nlmsg_trim;
154
155 if (nla_put_u8(skb, UNIX_DIAG_SHUTDOWN, sk->sk_shutdown))
156 goto out_nlmsg_trim;
157
158 nlmsg_end(skb, nlh);
159 return 0;
160
161out_nlmsg_trim:
162 nlmsg_cancel(skb, nlh);
163 return -EMSGSIZE;
164}
165
166static int sk_diag_dump(struct sock *sk, struct sk_buff *skb, struct unix_diag_req *req,
167 u32 portid, u32 seq, u32 flags)
168{
169 int sk_ino;
170
171 unix_state_lock(sk);
172 sk_ino = sock_i_ino(sk);
173 unix_state_unlock(sk);
174
175 if (!sk_ino)
176 return 0;
177
178 return sk_diag_fill(sk, skb, req, portid, seq, flags, sk_ino);
179}
180
181static int unix_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
182{
183 struct unix_diag_req *req;
184 int num, s_num, slot, s_slot;
185 struct net *net = sock_net(skb->sk);
186
187 req = nlmsg_data(cb->nlh);
188
189 s_slot = cb->args[0];
190 num = s_num = cb->args[1];
191
192 spin_lock(&unix_table_lock);
193 for (slot = s_slot;
194 slot < ARRAY_SIZE(unix_socket_table);
195 s_num = 0, slot++) {
196 struct sock *sk;
197
198 num = 0;
199 sk_for_each(sk, &unix_socket_table[slot]) {
200 if (!net_eq(sock_net(sk), net))
201 continue;
202 if (num < s_num)
203 goto next;
204 if (!(req->udiag_states & (1 << sk->sk_state)))
205 goto next;
206 if (sk_diag_dump(sk, skb, req,
207 NETLINK_CB(cb->skb).portid,
208 cb->nlh->nlmsg_seq,
209 NLM_F_MULTI) < 0)
210 goto done;
211next:
212 num++;
213 }
214 }
215done:
216 spin_unlock(&unix_table_lock);
217 cb->args[0] = slot;
218 cb->args[1] = num;
219
220 return skb->len;
221}
222
223static struct sock *unix_lookup_by_ino(unsigned int ino)
224{
225 int i;
226 struct sock *sk;
227
228 spin_lock(&unix_table_lock);
229 for (i = 0; i < ARRAY_SIZE(unix_socket_table); i++) {
230 sk_for_each(sk, &unix_socket_table[i])
231 if (ino == sock_i_ino(sk)) {
232 sock_hold(sk);
233 spin_unlock(&unix_table_lock);
234
235 return sk;
236 }
237 }
238
239 spin_unlock(&unix_table_lock);
240 return NULL;
241}
242
243static int unix_diag_get_exact(struct sk_buff *in_skb,
244 const struct nlmsghdr *nlh,
245 struct unix_diag_req *req)
246{
247 int err = -EINVAL;
248 struct sock *sk;
249 struct sk_buff *rep;
250 unsigned int extra_len;
251 struct net *net = sock_net(in_skb->sk);
252
253 if (req->udiag_ino == 0)
254 goto out_nosk;
255
256 sk = unix_lookup_by_ino(req->udiag_ino);
257 err = -ENOENT;
258 if (sk == NULL)
259 goto out_nosk;
260
261 err = sock_diag_check_cookie(sk, req->udiag_cookie);
262 if (err)
263 goto out;
264
265 extra_len = 256;
266again:
267 err = -ENOMEM;
268 rep = nlmsg_new(sizeof(struct unix_diag_msg) + extra_len, GFP_KERNEL);
269 if (!rep)
270 goto out;
271
272 err = sk_diag_fill(sk, rep, req, NETLINK_CB(in_skb).portid,
273 nlh->nlmsg_seq, 0, req->udiag_ino);
274 if (err < 0) {
275 nlmsg_free(rep);
276 extra_len += 256;
277 if (extra_len >= PAGE_SIZE)
278 goto out;
279
280 goto again;
281 }
282 err = netlink_unicast(net->diag_nlsk, rep, NETLINK_CB(in_skb).portid,
283 MSG_DONTWAIT);
284 if (err > 0)
285 err = 0;
286out:
287 if (sk)
288 sock_put(sk);
289out_nosk:
290 return err;
291}
292
293static int unix_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
294{
295 int hdrlen = sizeof(struct unix_diag_req);
296 struct net *net = sock_net(skb->sk);
297
298 if (nlmsg_len(h) < hdrlen)
299 return -EINVAL;
300
301 if (h->nlmsg_flags & NLM_F_DUMP) {
302 struct netlink_dump_control c = {
303 .dump = unix_diag_dump,
304 };
305 return netlink_dump_start(net->diag_nlsk, skb, h, &c);
306 } else
307 return unix_diag_get_exact(skb, h, nlmsg_data(h));
308}
309
310static const struct sock_diag_handler unix_diag_handler = {
311 .family = AF_UNIX,
312 .dump = unix_diag_handler_dump,
313};
314
315static int __init unix_diag_init(void)
316{
317 return sock_diag_register(&unix_diag_handler);
318}
319
320static void __exit unix_diag_exit(void)
321{
322 sock_diag_unregister(&unix_diag_handler);
323}
324
325module_init(unix_diag_init);
326module_exit(unix_diag_exit);
327MODULE_LICENSE("GPL");
328MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 1 /* AF_LOCAL */);
1// SPDX-License-Identifier: GPL-2.0-only
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>
7#include <linux/module.h>
8#include <linux/uidgid.h>
9#include <net/netlink.h>
10#include <net/af_unix.h>
11#include <net/tcp_states.h>
12#include <net/sock.h>
13
14static int sk_diag_dump_name(struct sock *sk, struct sk_buff *nlskb)
15{
16 /* might or might not have a hash table lock */
17 struct unix_address *addr = smp_load_acquire(&unix_sk(sk)->addr);
18
19 if (!addr)
20 return 0;
21
22 return nla_put(nlskb, UNIX_DIAG_NAME,
23 addr->len - offsetof(struct sockaddr_un, sun_path),
24 addr->name->sun_path);
25}
26
27static int sk_diag_dump_vfs(struct sock *sk, struct sk_buff *nlskb)
28{
29 struct dentry *dentry = unix_sk(sk)->path.dentry;
30
31 if (dentry) {
32 struct unix_diag_vfs uv = {
33 .udiag_vfs_ino = d_backing_inode(dentry)->i_ino,
34 .udiag_vfs_dev = dentry->d_sb->s_dev,
35 };
36
37 return nla_put(nlskb, UNIX_DIAG_VFS, sizeof(uv), &uv);
38 }
39
40 return 0;
41}
42
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 ino = sock_i_ino(peer);
51 sock_put(peer);
52
53 return nla_put_u32(nlskb, UNIX_DIAG_PEER, ino);
54 }
55
56 return 0;
57}
58
59static int sk_diag_dump_icons(struct sock *sk, struct sk_buff *nlskb)
60{
61 struct sk_buff *skb;
62 struct nlattr *attr;
63 u32 *buf;
64 int i;
65
66 if (READ_ONCE(sk->sk_state) == TCP_LISTEN) {
67 spin_lock(&sk->sk_receive_queue.lock);
68
69 attr = nla_reserve(nlskb, UNIX_DIAG_ICONS,
70 sk->sk_receive_queue.qlen * sizeof(u32));
71 if (!attr)
72 goto errout;
73
74 buf = nla_data(attr);
75 i = 0;
76 skb_queue_walk(&sk->sk_receive_queue, skb)
77 buf[i++] = sock_i_ino(unix_peer(skb->sk));
78
79 spin_unlock(&sk->sk_receive_queue.lock);
80 }
81
82 return 0;
83
84errout:
85 spin_unlock(&sk->sk_receive_queue.lock);
86 return -EMSGSIZE;
87}
88
89static int sk_diag_show_rqlen(struct sock *sk, struct sk_buff *nlskb)
90{
91 struct unix_diag_rqlen rql;
92
93 if (READ_ONCE(sk->sk_state) == TCP_LISTEN) {
94 rql.udiag_rqueue = skb_queue_len_lockless(&sk->sk_receive_queue);
95 rql.udiag_wqueue = sk->sk_max_ack_backlog;
96 } else {
97 rql.udiag_rqueue = (u32) unix_inq_len(sk);
98 rql.udiag_wqueue = (u32) unix_outq_len(sk);
99 }
100
101 return nla_put(nlskb, UNIX_DIAG_RQLEN, sizeof(rql), &rql);
102}
103
104static int sk_diag_dump_uid(struct sock *sk, struct sk_buff *nlskb,
105 struct user_namespace *user_ns)
106{
107 uid_t uid = from_kuid_munged(user_ns, sock_i_uid(sk));
108 return nla_put(nlskb, UNIX_DIAG_UID, sizeof(uid_t), &uid);
109}
110
111static int sk_diag_fill(struct sock *sk, struct sk_buff *skb, struct unix_diag_req *req,
112 struct user_namespace *user_ns,
113 u32 portid, u32 seq, u32 flags, int sk_ino)
114{
115 struct nlmsghdr *nlh;
116 struct unix_diag_msg *rep;
117
118 nlh = nlmsg_put(skb, portid, seq, SOCK_DIAG_BY_FAMILY, sizeof(*rep),
119 flags);
120 if (!nlh)
121 return -EMSGSIZE;
122
123 rep = nlmsg_data(nlh);
124 rep->udiag_family = AF_UNIX;
125 rep->udiag_type = sk->sk_type;
126 rep->udiag_state = READ_ONCE(sk->sk_state);
127 rep->pad = 0;
128 rep->udiag_ino = sk_ino;
129 sock_diag_save_cookie(sk, rep->udiag_cookie);
130
131 if ((req->udiag_show & UDIAG_SHOW_NAME) &&
132 sk_diag_dump_name(sk, skb))
133 goto out_nlmsg_trim;
134
135 if ((req->udiag_show & UDIAG_SHOW_VFS) &&
136 sk_diag_dump_vfs(sk, skb))
137 goto out_nlmsg_trim;
138
139 if ((req->udiag_show & UDIAG_SHOW_PEER) &&
140 sk_diag_dump_peer(sk, skb))
141 goto out_nlmsg_trim;
142
143 if ((req->udiag_show & UDIAG_SHOW_ICONS) &&
144 sk_diag_dump_icons(sk, skb))
145 goto out_nlmsg_trim;
146
147 if ((req->udiag_show & UDIAG_SHOW_RQLEN) &&
148 sk_diag_show_rqlen(sk, skb))
149 goto out_nlmsg_trim;
150
151 if ((req->udiag_show & UDIAG_SHOW_MEMINFO) &&
152 sock_diag_put_meminfo(sk, skb, UNIX_DIAG_MEMINFO))
153 goto out_nlmsg_trim;
154
155 if (nla_put_u8(skb, UNIX_DIAG_SHUTDOWN, READ_ONCE(sk->sk_shutdown)))
156 goto out_nlmsg_trim;
157
158 if ((req->udiag_show & UDIAG_SHOW_UID) &&
159 sk_diag_dump_uid(sk, skb, user_ns))
160 goto out_nlmsg_trim;
161
162 nlmsg_end(skb, nlh);
163 return 0;
164
165out_nlmsg_trim:
166 nlmsg_cancel(skb, nlh);
167 return -EMSGSIZE;
168}
169
170static int unix_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
171{
172 struct net *net = sock_net(skb->sk);
173 int num, s_num, slot, s_slot;
174 struct unix_diag_req *req;
175
176 req = nlmsg_data(cb->nlh);
177
178 s_slot = cb->args[0];
179 num = s_num = cb->args[1];
180
181 for (slot = s_slot; slot < UNIX_HASH_SIZE; s_num = 0, slot++) {
182 struct sock *sk;
183
184 num = 0;
185 spin_lock(&net->unx.table.locks[slot]);
186 sk_for_each(sk, &net->unx.table.buckets[slot]) {
187 int sk_ino;
188
189 if (num < s_num)
190 goto next;
191
192 if (!(req->udiag_states & (1 << READ_ONCE(sk->sk_state))))
193 goto next;
194
195 sk_ino = sock_i_ino(sk);
196 if (!sk_ino)
197 goto next;
198
199 if (sk_diag_fill(sk, skb, req, sk_user_ns(skb->sk),
200 NETLINK_CB(cb->skb).portid,
201 cb->nlh->nlmsg_seq,
202 NLM_F_MULTI, sk_ino) < 0) {
203 spin_unlock(&net->unx.table.locks[slot]);
204 goto done;
205 }
206next:
207 num++;
208 }
209 spin_unlock(&net->unx.table.locks[slot]);
210 }
211done:
212 cb->args[0] = slot;
213 cb->args[1] = num;
214
215 return skb->len;
216}
217
218static struct sock *unix_lookup_by_ino(struct net *net, unsigned int ino)
219{
220 struct sock *sk;
221 int i;
222
223 for (i = 0; i < UNIX_HASH_SIZE; i++) {
224 spin_lock(&net->unx.table.locks[i]);
225 sk_for_each(sk, &net->unx.table.buckets[i]) {
226 if (ino == sock_i_ino(sk)) {
227 sock_hold(sk);
228 spin_unlock(&net->unx.table.locks[i]);
229 return sk;
230 }
231 }
232 spin_unlock(&net->unx.table.locks[i]);
233 }
234 return NULL;
235}
236
237static int unix_diag_get_exact(struct sk_buff *in_skb,
238 const struct nlmsghdr *nlh,
239 struct unix_diag_req *req)
240{
241 struct net *net = sock_net(in_skb->sk);
242 unsigned int extra_len;
243 struct sk_buff *rep;
244 struct sock *sk;
245 int err;
246
247 err = -EINVAL;
248 if (req->udiag_ino == 0)
249 goto out_nosk;
250
251 sk = unix_lookup_by_ino(net, req->udiag_ino);
252 err = -ENOENT;
253 if (sk == NULL)
254 goto out_nosk;
255
256 err = sock_diag_check_cookie(sk, req->udiag_cookie);
257 if (err)
258 goto out;
259
260 extra_len = 256;
261again:
262 err = -ENOMEM;
263 rep = nlmsg_new(sizeof(struct unix_diag_msg) + extra_len, GFP_KERNEL);
264 if (!rep)
265 goto out;
266
267 err = sk_diag_fill(sk, rep, req, sk_user_ns(NETLINK_CB(in_skb).sk),
268 NETLINK_CB(in_skb).portid,
269 nlh->nlmsg_seq, 0, req->udiag_ino);
270 if (err < 0) {
271 nlmsg_free(rep);
272 extra_len += 256;
273 if (extra_len >= PAGE_SIZE)
274 goto out;
275
276 goto again;
277 }
278 err = nlmsg_unicast(net->diag_nlsk, rep, NETLINK_CB(in_skb).portid);
279
280out:
281 if (sk)
282 sock_put(sk);
283out_nosk:
284 return err;
285}
286
287static int unix_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
288{
289 int hdrlen = sizeof(struct unix_diag_req);
290
291 if (nlmsg_len(h) < hdrlen)
292 return -EINVAL;
293
294 if (h->nlmsg_flags & NLM_F_DUMP) {
295 struct netlink_dump_control c = {
296 .dump = unix_diag_dump,
297 };
298 return netlink_dump_start(sock_net(skb->sk)->diag_nlsk, skb, h, &c);
299 } else
300 return unix_diag_get_exact(skb, h, nlmsg_data(h));
301}
302
303static const struct sock_diag_handler unix_diag_handler = {
304 .owner = THIS_MODULE,
305 .family = AF_UNIX,
306 .dump = unix_diag_handler_dump,
307};
308
309static int __init unix_diag_init(void)
310{
311 return sock_diag_register(&unix_diag_handler);
312}
313
314static void __exit unix_diag_exit(void)
315{
316 sock_diag_unregister(&unix_diag_handler);
317}
318
319module_init(unix_diag_init);
320module_exit(unix_diag_exit);
321MODULE_LICENSE("GPL");
322MODULE_DESCRIPTION("UNIX socket monitoring via SOCK_DIAG");
323MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 1 /* AF_LOCAL */);