tty: serial: lpuart: avoid leaking struct tty_struct
[linux/fpc-iii.git] / net / ipv4 / inet_diag.c
blob4e5bc4b2f14e6786ceb7d63e5902f8fc17819dfa
1 /*
2 * inet_diag.c Module for monitoring INET transport protocols sockets.
4 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/types.h>
15 #include <linux/fcntl.h>
16 #include <linux/random.h>
17 #include <linux/slab.h>
18 #include <linux/cache.h>
19 #include <linux/init.h>
20 #include <linux/time.h>
22 #include <net/icmp.h>
23 #include <net/tcp.h>
24 #include <net/ipv6.h>
25 #include <net/inet_common.h>
26 #include <net/inet_connection_sock.h>
27 #include <net/inet_hashtables.h>
28 #include <net/inet_timewait_sock.h>
29 #include <net/inet6_hashtables.h>
30 #include <net/netlink.h>
32 #include <linux/inet.h>
33 #include <linux/stddef.h>
35 #include <linux/inet_diag.h>
36 #include <linux/sock_diag.h>
38 static const struct inet_diag_handler **inet_diag_table;
40 struct inet_diag_entry {
41 const __be32 *saddr;
42 const __be32 *daddr;
43 u16 sport;
44 u16 dport;
45 u16 family;
46 u16 userlocks;
47 u32 ifindex;
48 u32 mark;
51 static DEFINE_MUTEX(inet_diag_table_mutex);
53 static const struct inet_diag_handler *inet_diag_lock_handler(int proto)
55 if (!inet_diag_table[proto])
56 sock_load_diag_module(AF_INET, proto);
58 mutex_lock(&inet_diag_table_mutex);
59 if (!inet_diag_table[proto])
60 return ERR_PTR(-ENOENT);
62 return inet_diag_table[proto];
65 static void inet_diag_unlock_handler(const struct inet_diag_handler *handler)
67 mutex_unlock(&inet_diag_table_mutex);
70 void inet_diag_msg_common_fill(struct inet_diag_msg *r, struct sock *sk)
72 r->idiag_family = sk->sk_family;
74 r->id.idiag_sport = htons(sk->sk_num);
75 r->id.idiag_dport = sk->sk_dport;
76 r->id.idiag_if = sk->sk_bound_dev_if;
77 sock_diag_save_cookie(sk, r->id.idiag_cookie);
79 #if IS_ENABLED(CONFIG_IPV6)
80 if (sk->sk_family == AF_INET6) {
81 *(struct in6_addr *)r->id.idiag_src = sk->sk_v6_rcv_saddr;
82 *(struct in6_addr *)r->id.idiag_dst = sk->sk_v6_daddr;
83 } else
84 #endif
86 memset(&r->id.idiag_src, 0, sizeof(r->id.idiag_src));
87 memset(&r->id.idiag_dst, 0, sizeof(r->id.idiag_dst));
89 r->id.idiag_src[0] = sk->sk_rcv_saddr;
90 r->id.idiag_dst[0] = sk->sk_daddr;
93 EXPORT_SYMBOL_GPL(inet_diag_msg_common_fill);
95 static size_t inet_sk_attr_size(struct sock *sk,
96 const struct inet_diag_req_v2 *req,
97 bool net_admin)
99 const struct inet_diag_handler *handler;
100 size_t aux = 0;
102 handler = inet_diag_table[req->sdiag_protocol];
103 if (handler && handler->idiag_get_aux_size)
104 aux = handler->idiag_get_aux_size(sk, net_admin);
106 return nla_total_size(sizeof(struct tcp_info))
107 + nla_total_size(1) /* INET_DIAG_SHUTDOWN */
108 + nla_total_size(1) /* INET_DIAG_TOS */
109 + nla_total_size(1) /* INET_DIAG_TCLASS */
110 + nla_total_size(4) /* INET_DIAG_MARK */
111 + nla_total_size(sizeof(struct inet_diag_meminfo))
112 + nla_total_size(sizeof(struct inet_diag_msg))
113 + nla_total_size(SK_MEMINFO_VARS * sizeof(u32))
114 + nla_total_size(TCP_CA_NAME_MAX)
115 + nla_total_size(sizeof(struct tcpvegas_info))
116 + aux
117 + 64;
120 int inet_diag_msg_attrs_fill(struct sock *sk, struct sk_buff *skb,
121 struct inet_diag_msg *r, int ext,
122 struct user_namespace *user_ns,
123 bool net_admin)
125 const struct inet_sock *inet = inet_sk(sk);
127 if (nla_put_u8(skb, INET_DIAG_SHUTDOWN, sk->sk_shutdown))
128 goto errout;
130 /* IPv6 dual-stack sockets use inet->tos for IPv4 connections,
131 * hence this needs to be included regardless of socket family.
133 if (ext & (1 << (INET_DIAG_TOS - 1)))
134 if (nla_put_u8(skb, INET_DIAG_TOS, inet->tos) < 0)
135 goto errout;
137 #if IS_ENABLED(CONFIG_IPV6)
138 if (r->idiag_family == AF_INET6) {
139 if (ext & (1 << (INET_DIAG_TCLASS - 1)))
140 if (nla_put_u8(skb, INET_DIAG_TCLASS,
141 inet6_sk(sk)->tclass) < 0)
142 goto errout;
144 if (((1 << sk->sk_state) & (TCPF_LISTEN | TCPF_CLOSE)) &&
145 nla_put_u8(skb, INET_DIAG_SKV6ONLY, ipv6_only_sock(sk)))
146 goto errout;
148 #endif
150 if (net_admin && nla_put_u32(skb, INET_DIAG_MARK, sk->sk_mark))
151 goto errout;
153 r->idiag_uid = from_kuid_munged(user_ns, sock_i_uid(sk));
154 r->idiag_inode = sock_i_ino(sk);
156 return 0;
157 errout:
158 return 1;
160 EXPORT_SYMBOL_GPL(inet_diag_msg_attrs_fill);
162 int inet_sk_diag_fill(struct sock *sk, struct inet_connection_sock *icsk,
163 struct sk_buff *skb, const struct inet_diag_req_v2 *req,
164 struct user_namespace *user_ns,
165 u32 portid, u32 seq, u16 nlmsg_flags,
166 const struct nlmsghdr *unlh,
167 bool net_admin)
169 const struct tcp_congestion_ops *ca_ops;
170 const struct inet_diag_handler *handler;
171 int ext = req->idiag_ext;
172 struct inet_diag_msg *r;
173 struct nlmsghdr *nlh;
174 struct nlattr *attr;
175 void *info = NULL;
177 handler = inet_diag_table[req->sdiag_protocol];
178 BUG_ON(!handler);
180 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
181 nlmsg_flags);
182 if (!nlh)
183 return -EMSGSIZE;
185 r = nlmsg_data(nlh);
186 BUG_ON(!sk_fullsock(sk));
188 inet_diag_msg_common_fill(r, sk);
189 r->idiag_state = sk->sk_state;
190 r->idiag_timer = 0;
191 r->idiag_retrans = 0;
193 if (inet_diag_msg_attrs_fill(sk, skb, r, ext, user_ns, net_admin))
194 goto errout;
196 if (ext & (1 << (INET_DIAG_MEMINFO - 1))) {
197 struct inet_diag_meminfo minfo = {
198 .idiag_rmem = sk_rmem_alloc_get(sk),
199 .idiag_wmem = sk->sk_wmem_queued,
200 .idiag_fmem = sk->sk_forward_alloc,
201 .idiag_tmem = sk_wmem_alloc_get(sk),
204 if (nla_put(skb, INET_DIAG_MEMINFO, sizeof(minfo), &minfo) < 0)
205 goto errout;
208 if (ext & (1 << (INET_DIAG_SKMEMINFO - 1)))
209 if (sock_diag_put_meminfo(sk, skb, INET_DIAG_SKMEMINFO))
210 goto errout;
213 * RAW sockets might have user-defined protocols assigned,
214 * so report the one supplied on socket creation.
216 if (sk->sk_type == SOCK_RAW) {
217 if (nla_put_u8(skb, INET_DIAG_PROTOCOL, sk->sk_protocol))
218 goto errout;
221 if (!icsk) {
222 handler->idiag_get_info(sk, r, NULL);
223 goto out;
226 if (icsk->icsk_pending == ICSK_TIME_RETRANS ||
227 icsk->icsk_pending == ICSK_TIME_REO_TIMEOUT ||
228 icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) {
229 r->idiag_timer = 1;
230 r->idiag_retrans = icsk->icsk_retransmits;
231 r->idiag_expires =
232 jiffies_to_msecs(icsk->icsk_timeout - jiffies);
233 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
234 r->idiag_timer = 4;
235 r->idiag_retrans = icsk->icsk_probes_out;
236 r->idiag_expires =
237 jiffies_to_msecs(icsk->icsk_timeout - jiffies);
238 } else if (timer_pending(&sk->sk_timer)) {
239 r->idiag_timer = 2;
240 r->idiag_retrans = icsk->icsk_probes_out;
241 r->idiag_expires =
242 jiffies_to_msecs(sk->sk_timer.expires - jiffies);
243 } else {
244 r->idiag_timer = 0;
245 r->idiag_expires = 0;
248 if ((ext & (1 << (INET_DIAG_INFO - 1))) && handler->idiag_info_size) {
249 attr = nla_reserve_64bit(skb, INET_DIAG_INFO,
250 handler->idiag_info_size,
251 INET_DIAG_PAD);
252 if (!attr)
253 goto errout;
255 info = nla_data(attr);
258 if (ext & (1 << (INET_DIAG_CONG - 1))) {
259 int err = 0;
261 rcu_read_lock();
262 ca_ops = READ_ONCE(icsk->icsk_ca_ops);
263 if (ca_ops)
264 err = nla_put_string(skb, INET_DIAG_CONG, ca_ops->name);
265 rcu_read_unlock();
266 if (err < 0)
267 goto errout;
270 handler->idiag_get_info(sk, r, info);
272 if (ext & (1 << (INET_DIAG_INFO - 1)) && handler->idiag_get_aux)
273 if (handler->idiag_get_aux(sk, net_admin, skb) < 0)
274 goto errout;
276 if (sk->sk_state < TCP_TIME_WAIT) {
277 union tcp_cc_info info;
278 size_t sz = 0;
279 int attr;
281 rcu_read_lock();
282 ca_ops = READ_ONCE(icsk->icsk_ca_ops);
283 if (ca_ops && ca_ops->get_info)
284 sz = ca_ops->get_info(sk, ext, &attr, &info);
285 rcu_read_unlock();
286 if (sz && nla_put(skb, attr, sz, &info) < 0)
287 goto errout;
290 if (ext & (1 << (INET_DIAG_CLASS_ID - 1))) {
291 u32 classid = 0;
293 #ifdef CONFIG_SOCK_CGROUP_DATA
294 classid = sock_cgroup_classid(&sk->sk_cgrp_data);
295 #endif
297 if (nla_put_u32(skb, INET_DIAG_CLASS_ID, classid))
298 goto errout;
301 out:
302 nlmsg_end(skb, nlh);
303 return 0;
305 errout:
306 nlmsg_cancel(skb, nlh);
307 return -EMSGSIZE;
309 EXPORT_SYMBOL_GPL(inet_sk_diag_fill);
311 static int inet_csk_diag_fill(struct sock *sk,
312 struct sk_buff *skb,
313 const struct inet_diag_req_v2 *req,
314 struct user_namespace *user_ns,
315 u32 portid, u32 seq, u16 nlmsg_flags,
316 const struct nlmsghdr *unlh,
317 bool net_admin)
319 return inet_sk_diag_fill(sk, inet_csk(sk), skb, req, user_ns,
320 portid, seq, nlmsg_flags, unlh, net_admin);
323 static int inet_twsk_diag_fill(struct sock *sk,
324 struct sk_buff *skb,
325 u32 portid, u32 seq, u16 nlmsg_flags,
326 const struct nlmsghdr *unlh)
328 struct inet_timewait_sock *tw = inet_twsk(sk);
329 struct inet_diag_msg *r;
330 struct nlmsghdr *nlh;
331 long tmo;
333 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
334 nlmsg_flags);
335 if (!nlh)
336 return -EMSGSIZE;
338 r = nlmsg_data(nlh);
339 BUG_ON(tw->tw_state != TCP_TIME_WAIT);
341 tmo = tw->tw_timer.expires - jiffies;
342 if (tmo < 0)
343 tmo = 0;
345 inet_diag_msg_common_fill(r, sk);
346 r->idiag_retrans = 0;
348 r->idiag_state = tw->tw_substate;
349 r->idiag_timer = 3;
350 r->idiag_expires = jiffies_to_msecs(tmo);
351 r->idiag_rqueue = 0;
352 r->idiag_wqueue = 0;
353 r->idiag_uid = 0;
354 r->idiag_inode = 0;
356 nlmsg_end(skb, nlh);
357 return 0;
360 static int inet_req_diag_fill(struct sock *sk, struct sk_buff *skb,
361 u32 portid, u32 seq, u16 nlmsg_flags,
362 const struct nlmsghdr *unlh, bool net_admin)
364 struct request_sock *reqsk = inet_reqsk(sk);
365 struct inet_diag_msg *r;
366 struct nlmsghdr *nlh;
367 long tmo;
369 nlh = nlmsg_put(skb, portid, seq, unlh->nlmsg_type, sizeof(*r),
370 nlmsg_flags);
371 if (!nlh)
372 return -EMSGSIZE;
374 r = nlmsg_data(nlh);
375 inet_diag_msg_common_fill(r, sk);
376 r->idiag_state = TCP_SYN_RECV;
377 r->idiag_timer = 1;
378 r->idiag_retrans = reqsk->num_retrans;
380 BUILD_BUG_ON(offsetof(struct inet_request_sock, ir_cookie) !=
381 offsetof(struct sock, sk_cookie));
383 tmo = inet_reqsk(sk)->rsk_timer.expires - jiffies;
384 r->idiag_expires = (tmo >= 0) ? jiffies_to_msecs(tmo) : 0;
385 r->idiag_rqueue = 0;
386 r->idiag_wqueue = 0;
387 r->idiag_uid = 0;
388 r->idiag_inode = 0;
390 if (net_admin && nla_put_u32(skb, INET_DIAG_MARK,
391 inet_rsk(reqsk)->ir_mark))
392 return -EMSGSIZE;
394 nlmsg_end(skb, nlh);
395 return 0;
398 static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
399 const struct inet_diag_req_v2 *r,
400 struct user_namespace *user_ns,
401 u32 portid, u32 seq, u16 nlmsg_flags,
402 const struct nlmsghdr *unlh, bool net_admin)
404 if (sk->sk_state == TCP_TIME_WAIT)
405 return inet_twsk_diag_fill(sk, skb, portid, seq,
406 nlmsg_flags, unlh);
408 if (sk->sk_state == TCP_NEW_SYN_RECV)
409 return inet_req_diag_fill(sk, skb, portid, seq,
410 nlmsg_flags, unlh, net_admin);
412 return inet_csk_diag_fill(sk, skb, r, user_ns, portid, seq,
413 nlmsg_flags, unlh, net_admin);
416 struct sock *inet_diag_find_one_icsk(struct net *net,
417 struct inet_hashinfo *hashinfo,
418 const struct inet_diag_req_v2 *req)
420 struct sock *sk;
422 rcu_read_lock();
423 if (req->sdiag_family == AF_INET)
424 sk = inet_lookup(net, hashinfo, NULL, 0, req->id.idiag_dst[0],
425 req->id.idiag_dport, req->id.idiag_src[0],
426 req->id.idiag_sport, req->id.idiag_if);
427 #if IS_ENABLED(CONFIG_IPV6)
428 else if (req->sdiag_family == AF_INET6) {
429 if (ipv6_addr_v4mapped((struct in6_addr *)req->id.idiag_dst) &&
430 ipv6_addr_v4mapped((struct in6_addr *)req->id.idiag_src))
431 sk = inet_lookup(net, hashinfo, NULL, 0, req->id.idiag_dst[3],
432 req->id.idiag_dport, req->id.idiag_src[3],
433 req->id.idiag_sport, req->id.idiag_if);
434 else
435 sk = inet6_lookup(net, hashinfo, NULL, 0,
436 (struct in6_addr *)req->id.idiag_dst,
437 req->id.idiag_dport,
438 (struct in6_addr *)req->id.idiag_src,
439 req->id.idiag_sport,
440 req->id.idiag_if);
442 #endif
443 else {
444 rcu_read_unlock();
445 return ERR_PTR(-EINVAL);
447 rcu_read_unlock();
448 if (!sk)
449 return ERR_PTR(-ENOENT);
451 if (sock_diag_check_cookie(sk, req->id.idiag_cookie)) {
452 sock_gen_put(sk);
453 return ERR_PTR(-ENOENT);
456 return sk;
458 EXPORT_SYMBOL_GPL(inet_diag_find_one_icsk);
460 int inet_diag_dump_one_icsk(struct inet_hashinfo *hashinfo,
461 struct sk_buff *in_skb,
462 const struct nlmsghdr *nlh,
463 const struct inet_diag_req_v2 *req)
465 bool net_admin = netlink_net_capable(in_skb, CAP_NET_ADMIN);
466 struct net *net = sock_net(in_skb->sk);
467 struct sk_buff *rep;
468 struct sock *sk;
469 int err;
471 sk = inet_diag_find_one_icsk(net, hashinfo, req);
472 if (IS_ERR(sk))
473 return PTR_ERR(sk);
475 rep = nlmsg_new(inet_sk_attr_size(sk, req, net_admin), GFP_KERNEL);
476 if (!rep) {
477 err = -ENOMEM;
478 goto out;
481 err = sk_diag_fill(sk, rep, req,
482 sk_user_ns(NETLINK_CB(in_skb).sk),
483 NETLINK_CB(in_skb).portid,
484 nlh->nlmsg_seq, 0, nlh, net_admin);
485 if (err < 0) {
486 WARN_ON(err == -EMSGSIZE);
487 nlmsg_free(rep);
488 goto out;
490 err = netlink_unicast(net->diag_nlsk, rep, NETLINK_CB(in_skb).portid,
491 MSG_DONTWAIT);
492 if (err > 0)
493 err = 0;
495 out:
496 if (sk)
497 sock_gen_put(sk);
499 return err;
501 EXPORT_SYMBOL_GPL(inet_diag_dump_one_icsk);
503 static int inet_diag_cmd_exact(int cmd, struct sk_buff *in_skb,
504 const struct nlmsghdr *nlh,
505 const struct inet_diag_req_v2 *req)
507 const struct inet_diag_handler *handler;
508 int err;
510 handler = inet_diag_lock_handler(req->sdiag_protocol);
511 if (IS_ERR(handler))
512 err = PTR_ERR(handler);
513 else if (cmd == SOCK_DIAG_BY_FAMILY)
514 err = handler->dump_one(in_skb, nlh, req);
515 else if (cmd == SOCK_DESTROY && handler->destroy)
516 err = handler->destroy(in_skb, req);
517 else
518 err = -EOPNOTSUPP;
519 inet_diag_unlock_handler(handler);
521 return err;
524 static int bitstring_match(const __be32 *a1, const __be32 *a2, int bits)
526 int words = bits >> 5;
528 bits &= 0x1f;
530 if (words) {
531 if (memcmp(a1, a2, words << 2))
532 return 0;
534 if (bits) {
535 __be32 w1, w2;
536 __be32 mask;
538 w1 = a1[words];
539 w2 = a2[words];
541 mask = htonl((0xffffffff) << (32 - bits));
543 if ((w1 ^ w2) & mask)
544 return 0;
547 return 1;
550 static int inet_diag_bc_run(const struct nlattr *_bc,
551 const struct inet_diag_entry *entry)
553 const void *bc = nla_data(_bc);
554 int len = nla_len(_bc);
556 while (len > 0) {
557 int yes = 1;
558 const struct inet_diag_bc_op *op = bc;
560 switch (op->code) {
561 case INET_DIAG_BC_NOP:
562 break;
563 case INET_DIAG_BC_JMP:
564 yes = 0;
565 break;
566 case INET_DIAG_BC_S_EQ:
567 yes = entry->sport == op[1].no;
568 break;
569 case INET_DIAG_BC_S_GE:
570 yes = entry->sport >= op[1].no;
571 break;
572 case INET_DIAG_BC_S_LE:
573 yes = entry->sport <= op[1].no;
574 break;
575 case INET_DIAG_BC_D_EQ:
576 yes = entry->dport == op[1].no;
577 break;
578 case INET_DIAG_BC_D_GE:
579 yes = entry->dport >= op[1].no;
580 break;
581 case INET_DIAG_BC_D_LE:
582 yes = entry->dport <= op[1].no;
583 break;
584 case INET_DIAG_BC_AUTO:
585 yes = !(entry->userlocks & SOCK_BINDPORT_LOCK);
586 break;
587 case INET_DIAG_BC_S_COND:
588 case INET_DIAG_BC_D_COND: {
589 const struct inet_diag_hostcond *cond;
590 const __be32 *addr;
592 cond = (const struct inet_diag_hostcond *)(op + 1);
593 if (cond->port != -1 &&
594 cond->port != (op->code == INET_DIAG_BC_S_COND ?
595 entry->sport : entry->dport)) {
596 yes = 0;
597 break;
600 if (op->code == INET_DIAG_BC_S_COND)
601 addr = entry->saddr;
602 else
603 addr = entry->daddr;
605 if (cond->family != AF_UNSPEC &&
606 cond->family != entry->family) {
607 if (entry->family == AF_INET6 &&
608 cond->family == AF_INET) {
609 if (addr[0] == 0 && addr[1] == 0 &&
610 addr[2] == htonl(0xffff) &&
611 bitstring_match(addr + 3,
612 cond->addr,
613 cond->prefix_len))
614 break;
616 yes = 0;
617 break;
620 if (cond->prefix_len == 0)
621 break;
622 if (bitstring_match(addr, cond->addr,
623 cond->prefix_len))
624 break;
625 yes = 0;
626 break;
628 case INET_DIAG_BC_DEV_COND: {
629 u32 ifindex;
631 ifindex = *((const u32 *)(op + 1));
632 if (ifindex != entry->ifindex)
633 yes = 0;
634 break;
636 case INET_DIAG_BC_MARK_COND: {
637 struct inet_diag_markcond *cond;
639 cond = (struct inet_diag_markcond *)(op + 1);
640 if ((entry->mark & cond->mask) != cond->mark)
641 yes = 0;
642 break;
646 if (yes) {
647 len -= op->yes;
648 bc += op->yes;
649 } else {
650 len -= op->no;
651 bc += op->no;
654 return len == 0;
657 /* This helper is available for all sockets (ESTABLISH, TIMEWAIT, SYN_RECV)
659 static void entry_fill_addrs(struct inet_diag_entry *entry,
660 const struct sock *sk)
662 #if IS_ENABLED(CONFIG_IPV6)
663 if (sk->sk_family == AF_INET6) {
664 entry->saddr = sk->sk_v6_rcv_saddr.s6_addr32;
665 entry->daddr = sk->sk_v6_daddr.s6_addr32;
666 } else
667 #endif
669 entry->saddr = &sk->sk_rcv_saddr;
670 entry->daddr = &sk->sk_daddr;
674 int inet_diag_bc_sk(const struct nlattr *bc, struct sock *sk)
676 struct inet_sock *inet = inet_sk(sk);
677 struct inet_diag_entry entry;
679 if (!bc)
680 return 1;
682 entry.family = sk->sk_family;
683 entry_fill_addrs(&entry, sk);
684 entry.sport = inet->inet_num;
685 entry.dport = ntohs(inet->inet_dport);
686 entry.ifindex = sk->sk_bound_dev_if;
687 entry.userlocks = sk_fullsock(sk) ? sk->sk_userlocks : 0;
688 if (sk_fullsock(sk))
689 entry.mark = sk->sk_mark;
690 else if (sk->sk_state == TCP_NEW_SYN_RECV)
691 entry.mark = inet_rsk(inet_reqsk(sk))->ir_mark;
692 else
693 entry.mark = 0;
695 return inet_diag_bc_run(bc, &entry);
697 EXPORT_SYMBOL_GPL(inet_diag_bc_sk);
699 static int valid_cc(const void *bc, int len, int cc)
701 while (len >= 0) {
702 const struct inet_diag_bc_op *op = bc;
704 if (cc > len)
705 return 0;
706 if (cc == len)
707 return 1;
708 if (op->yes < 4 || op->yes & 3)
709 return 0;
710 len -= op->yes;
711 bc += op->yes;
713 return 0;
716 /* data is u32 ifindex */
717 static bool valid_devcond(const struct inet_diag_bc_op *op, int len,
718 int *min_len)
720 /* Check ifindex space. */
721 *min_len += sizeof(u32);
722 if (len < *min_len)
723 return false;
725 return true;
727 /* Validate an inet_diag_hostcond. */
728 static bool valid_hostcond(const struct inet_diag_bc_op *op, int len,
729 int *min_len)
731 struct inet_diag_hostcond *cond;
732 int addr_len;
734 /* Check hostcond space. */
735 *min_len += sizeof(struct inet_diag_hostcond);
736 if (len < *min_len)
737 return false;
738 cond = (struct inet_diag_hostcond *)(op + 1);
740 /* Check address family and address length. */
741 switch (cond->family) {
742 case AF_UNSPEC:
743 addr_len = 0;
744 break;
745 case AF_INET:
746 addr_len = sizeof(struct in_addr);
747 break;
748 case AF_INET6:
749 addr_len = sizeof(struct in6_addr);
750 break;
751 default:
752 return false;
754 *min_len += addr_len;
755 if (len < *min_len)
756 return false;
758 /* Check prefix length (in bits) vs address length (in bytes). */
759 if (cond->prefix_len > 8 * addr_len)
760 return false;
762 return true;
765 /* Validate a port comparison operator. */
766 static bool valid_port_comparison(const struct inet_diag_bc_op *op,
767 int len, int *min_len)
769 /* Port comparisons put the port in a follow-on inet_diag_bc_op. */
770 *min_len += sizeof(struct inet_diag_bc_op);
771 if (len < *min_len)
772 return false;
773 return true;
776 static bool valid_markcond(const struct inet_diag_bc_op *op, int len,
777 int *min_len)
779 *min_len += sizeof(struct inet_diag_markcond);
780 return len >= *min_len;
783 static int inet_diag_bc_audit(const struct nlattr *attr,
784 const struct sk_buff *skb)
786 bool net_admin = netlink_net_capable(skb, CAP_NET_ADMIN);
787 const void *bytecode, *bc;
788 int bytecode_len, len;
790 if (!attr || nla_len(attr) < sizeof(struct inet_diag_bc_op))
791 return -EINVAL;
793 bytecode = bc = nla_data(attr);
794 len = bytecode_len = nla_len(attr);
796 while (len > 0) {
797 int min_len = sizeof(struct inet_diag_bc_op);
798 const struct inet_diag_bc_op *op = bc;
800 switch (op->code) {
801 case INET_DIAG_BC_S_COND:
802 case INET_DIAG_BC_D_COND:
803 if (!valid_hostcond(bc, len, &min_len))
804 return -EINVAL;
805 break;
806 case INET_DIAG_BC_DEV_COND:
807 if (!valid_devcond(bc, len, &min_len))
808 return -EINVAL;
809 break;
810 case INET_DIAG_BC_S_EQ:
811 case INET_DIAG_BC_S_GE:
812 case INET_DIAG_BC_S_LE:
813 case INET_DIAG_BC_D_EQ:
814 case INET_DIAG_BC_D_GE:
815 case INET_DIAG_BC_D_LE:
816 if (!valid_port_comparison(bc, len, &min_len))
817 return -EINVAL;
818 break;
819 case INET_DIAG_BC_MARK_COND:
820 if (!net_admin)
821 return -EPERM;
822 if (!valid_markcond(bc, len, &min_len))
823 return -EINVAL;
824 break;
825 case INET_DIAG_BC_AUTO:
826 case INET_DIAG_BC_JMP:
827 case INET_DIAG_BC_NOP:
828 break;
829 default:
830 return -EINVAL;
833 if (op->code != INET_DIAG_BC_NOP) {
834 if (op->no < min_len || op->no > len + 4 || op->no & 3)
835 return -EINVAL;
836 if (op->no < len &&
837 !valid_cc(bytecode, bytecode_len, len - op->no))
838 return -EINVAL;
841 if (op->yes < min_len || op->yes > len + 4 || op->yes & 3)
842 return -EINVAL;
843 bc += op->yes;
844 len -= op->yes;
846 return len == 0 ? 0 : -EINVAL;
849 static int inet_csk_diag_dump(struct sock *sk,
850 struct sk_buff *skb,
851 struct netlink_callback *cb,
852 const struct inet_diag_req_v2 *r,
853 const struct nlattr *bc,
854 bool net_admin)
856 if (!inet_diag_bc_sk(bc, sk))
857 return 0;
859 return inet_csk_diag_fill(sk, skb, r,
860 sk_user_ns(NETLINK_CB(cb->skb).sk),
861 NETLINK_CB(cb->skb).portid,
862 cb->nlh->nlmsg_seq, NLM_F_MULTI, cb->nlh,
863 net_admin);
866 static void twsk_build_assert(void)
868 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_family) !=
869 offsetof(struct sock, sk_family));
871 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_num) !=
872 offsetof(struct inet_sock, inet_num));
874 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_dport) !=
875 offsetof(struct inet_sock, inet_dport));
877 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_rcv_saddr) !=
878 offsetof(struct inet_sock, inet_rcv_saddr));
880 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_daddr) !=
881 offsetof(struct inet_sock, inet_daddr));
883 #if IS_ENABLED(CONFIG_IPV6)
884 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_v6_rcv_saddr) !=
885 offsetof(struct sock, sk_v6_rcv_saddr));
887 BUILD_BUG_ON(offsetof(struct inet_timewait_sock, tw_v6_daddr) !=
888 offsetof(struct sock, sk_v6_daddr));
889 #endif
892 void inet_diag_dump_icsk(struct inet_hashinfo *hashinfo, struct sk_buff *skb,
893 struct netlink_callback *cb,
894 const struct inet_diag_req_v2 *r, struct nlattr *bc)
896 bool net_admin = netlink_net_capable(cb->skb, CAP_NET_ADMIN);
897 struct net *net = sock_net(skb->sk);
898 u32 idiag_states = r->idiag_states;
899 int i, num, s_i, s_num;
900 struct sock *sk;
902 if (idiag_states & TCPF_SYN_RECV)
903 idiag_states |= TCPF_NEW_SYN_RECV;
904 s_i = cb->args[1];
905 s_num = num = cb->args[2];
907 if (cb->args[0] == 0) {
908 if (!(idiag_states & TCPF_LISTEN) || r->id.idiag_dport)
909 goto skip_listen_ht;
911 for (i = s_i; i < INET_LHTABLE_SIZE; i++) {
912 struct inet_listen_hashbucket *ilb;
914 num = 0;
915 ilb = &hashinfo->listening_hash[i];
916 spin_lock(&ilb->lock);
917 sk_for_each(sk, &ilb->head) {
918 struct inet_sock *inet = inet_sk(sk);
920 if (!net_eq(sock_net(sk), net))
921 continue;
923 if (num < s_num) {
924 num++;
925 continue;
928 if (r->sdiag_family != AF_UNSPEC &&
929 sk->sk_family != r->sdiag_family)
930 goto next_listen;
932 if (r->id.idiag_sport != inet->inet_sport &&
933 r->id.idiag_sport)
934 goto next_listen;
936 if (inet_csk_diag_dump(sk, skb, cb, r,
937 bc, net_admin) < 0) {
938 spin_unlock(&ilb->lock);
939 goto done;
942 next_listen:
943 ++num;
945 spin_unlock(&ilb->lock);
947 s_num = 0;
949 skip_listen_ht:
950 cb->args[0] = 1;
951 s_i = num = s_num = 0;
954 if (!(idiag_states & ~TCPF_LISTEN))
955 goto out;
957 #define SKARR_SZ 16
958 for (i = s_i; i <= hashinfo->ehash_mask; i++) {
959 struct inet_ehash_bucket *head = &hashinfo->ehash[i];
960 spinlock_t *lock = inet_ehash_lockp(hashinfo, i);
961 struct hlist_nulls_node *node;
962 struct sock *sk_arr[SKARR_SZ];
963 int num_arr[SKARR_SZ];
964 int idx, accum, res;
966 if (hlist_nulls_empty(&head->chain))
967 continue;
969 if (i > s_i)
970 s_num = 0;
972 next_chunk:
973 num = 0;
974 accum = 0;
975 spin_lock_bh(lock);
976 sk_nulls_for_each(sk, node, &head->chain) {
977 int state;
979 if (!net_eq(sock_net(sk), net))
980 continue;
981 if (num < s_num)
982 goto next_normal;
983 state = (sk->sk_state == TCP_TIME_WAIT) ?
984 inet_twsk(sk)->tw_substate : sk->sk_state;
985 if (!(idiag_states & (1 << state)))
986 goto next_normal;
987 if (r->sdiag_family != AF_UNSPEC &&
988 sk->sk_family != r->sdiag_family)
989 goto next_normal;
990 if (r->id.idiag_sport != htons(sk->sk_num) &&
991 r->id.idiag_sport)
992 goto next_normal;
993 if (r->id.idiag_dport != sk->sk_dport &&
994 r->id.idiag_dport)
995 goto next_normal;
996 twsk_build_assert();
998 if (!inet_diag_bc_sk(bc, sk))
999 goto next_normal;
1001 sock_hold(sk);
1002 num_arr[accum] = num;
1003 sk_arr[accum] = sk;
1004 if (++accum == SKARR_SZ)
1005 break;
1006 next_normal:
1007 ++num;
1009 spin_unlock_bh(lock);
1010 res = 0;
1011 for (idx = 0; idx < accum; idx++) {
1012 if (res >= 0) {
1013 res = sk_diag_fill(sk_arr[idx], skb, r,
1014 sk_user_ns(NETLINK_CB(cb->skb).sk),
1015 NETLINK_CB(cb->skb).portid,
1016 cb->nlh->nlmsg_seq, NLM_F_MULTI,
1017 cb->nlh, net_admin);
1018 if (res < 0)
1019 num = num_arr[idx];
1021 sock_gen_put(sk_arr[idx]);
1023 if (res < 0)
1024 break;
1025 cond_resched();
1026 if (accum == SKARR_SZ) {
1027 s_num = num + 1;
1028 goto next_chunk;
1032 done:
1033 cb->args[1] = i;
1034 cb->args[2] = num;
1035 out:
1038 EXPORT_SYMBOL_GPL(inet_diag_dump_icsk);
1040 static int __inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb,
1041 const struct inet_diag_req_v2 *r,
1042 struct nlattr *bc)
1044 const struct inet_diag_handler *handler;
1045 int err = 0;
1047 handler = inet_diag_lock_handler(r->sdiag_protocol);
1048 if (!IS_ERR(handler))
1049 handler->dump(skb, cb, r, bc);
1050 else
1051 err = PTR_ERR(handler);
1052 inet_diag_unlock_handler(handler);
1054 return err ? : skb->len;
1057 static int inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
1059 int hdrlen = sizeof(struct inet_diag_req_v2);
1060 struct nlattr *bc = NULL;
1062 if (nlmsg_attrlen(cb->nlh, hdrlen))
1063 bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);
1065 return __inet_diag_dump(skb, cb, nlmsg_data(cb->nlh), bc);
1068 static int inet_diag_type2proto(int type)
1070 switch (type) {
1071 case TCPDIAG_GETSOCK:
1072 return IPPROTO_TCP;
1073 case DCCPDIAG_GETSOCK:
1074 return IPPROTO_DCCP;
1075 default:
1076 return 0;
1080 static int inet_diag_dump_compat(struct sk_buff *skb,
1081 struct netlink_callback *cb)
1083 struct inet_diag_req *rc = nlmsg_data(cb->nlh);
1084 int hdrlen = sizeof(struct inet_diag_req);
1085 struct inet_diag_req_v2 req;
1086 struct nlattr *bc = NULL;
1088 req.sdiag_family = AF_UNSPEC; /* compatibility */
1089 req.sdiag_protocol = inet_diag_type2proto(cb->nlh->nlmsg_type);
1090 req.idiag_ext = rc->idiag_ext;
1091 req.idiag_states = rc->idiag_states;
1092 req.id = rc->id;
1094 if (nlmsg_attrlen(cb->nlh, hdrlen))
1095 bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);
1097 return __inet_diag_dump(skb, cb, &req, bc);
1100 static int inet_diag_get_exact_compat(struct sk_buff *in_skb,
1101 const struct nlmsghdr *nlh)
1103 struct inet_diag_req *rc = nlmsg_data(nlh);
1104 struct inet_diag_req_v2 req;
1106 req.sdiag_family = rc->idiag_family;
1107 req.sdiag_protocol = inet_diag_type2proto(nlh->nlmsg_type);
1108 req.idiag_ext = rc->idiag_ext;
1109 req.idiag_states = rc->idiag_states;
1110 req.id = rc->id;
1112 return inet_diag_cmd_exact(SOCK_DIAG_BY_FAMILY, in_skb, nlh, &req);
1115 static int inet_diag_rcv_msg_compat(struct sk_buff *skb, struct nlmsghdr *nlh)
1117 int hdrlen = sizeof(struct inet_diag_req);
1118 struct net *net = sock_net(skb->sk);
1120 if (nlh->nlmsg_type >= INET_DIAG_GETSOCK_MAX ||
1121 nlmsg_len(nlh) < hdrlen)
1122 return -EINVAL;
1124 if (nlh->nlmsg_flags & NLM_F_DUMP) {
1125 if (nlmsg_attrlen(nlh, hdrlen)) {
1126 struct nlattr *attr;
1127 int err;
1129 attr = nlmsg_find_attr(nlh, hdrlen,
1130 INET_DIAG_REQ_BYTECODE);
1131 err = inet_diag_bc_audit(attr, skb);
1132 if (err)
1133 return err;
1136 struct netlink_dump_control c = {
1137 .dump = inet_diag_dump_compat,
1139 return netlink_dump_start(net->diag_nlsk, skb, nlh, &c);
1143 return inet_diag_get_exact_compat(skb, nlh);
1146 static int inet_diag_handler_cmd(struct sk_buff *skb, struct nlmsghdr *h)
1148 int hdrlen = sizeof(struct inet_diag_req_v2);
1149 struct net *net = sock_net(skb->sk);
1151 if (nlmsg_len(h) < hdrlen)
1152 return -EINVAL;
1154 if (h->nlmsg_type == SOCK_DIAG_BY_FAMILY &&
1155 h->nlmsg_flags & NLM_F_DUMP) {
1156 if (nlmsg_attrlen(h, hdrlen)) {
1157 struct nlattr *attr;
1158 int err;
1160 attr = nlmsg_find_attr(h, hdrlen,
1161 INET_DIAG_REQ_BYTECODE);
1162 err = inet_diag_bc_audit(attr, skb);
1163 if (err)
1164 return err;
1167 struct netlink_dump_control c = {
1168 .dump = inet_diag_dump,
1170 return netlink_dump_start(net->diag_nlsk, skb, h, &c);
1174 return inet_diag_cmd_exact(h->nlmsg_type, skb, h, nlmsg_data(h));
1177 static
1178 int inet_diag_handler_get_info(struct sk_buff *skb, struct sock *sk)
1180 const struct inet_diag_handler *handler;
1181 struct nlmsghdr *nlh;
1182 struct nlattr *attr;
1183 struct inet_diag_msg *r;
1184 void *info = NULL;
1185 int err = 0;
1187 nlh = nlmsg_put(skb, 0, 0, SOCK_DIAG_BY_FAMILY, sizeof(*r), 0);
1188 if (!nlh)
1189 return -ENOMEM;
1191 r = nlmsg_data(nlh);
1192 memset(r, 0, sizeof(*r));
1193 inet_diag_msg_common_fill(r, sk);
1194 if (sk->sk_type == SOCK_DGRAM || sk->sk_type == SOCK_STREAM)
1195 r->id.idiag_sport = inet_sk(sk)->inet_sport;
1196 r->idiag_state = sk->sk_state;
1198 if ((err = nla_put_u8(skb, INET_DIAG_PROTOCOL, sk->sk_protocol))) {
1199 nlmsg_cancel(skb, nlh);
1200 return err;
1203 handler = inet_diag_lock_handler(sk->sk_protocol);
1204 if (IS_ERR(handler)) {
1205 inet_diag_unlock_handler(handler);
1206 nlmsg_cancel(skb, nlh);
1207 return PTR_ERR(handler);
1210 attr = handler->idiag_info_size
1211 ? nla_reserve_64bit(skb, INET_DIAG_INFO,
1212 handler->idiag_info_size,
1213 INET_DIAG_PAD)
1214 : NULL;
1215 if (attr)
1216 info = nla_data(attr);
1218 handler->idiag_get_info(sk, r, info);
1219 inet_diag_unlock_handler(handler);
1221 nlmsg_end(skb, nlh);
1222 return 0;
1225 static const struct sock_diag_handler inet_diag_handler = {
1226 .family = AF_INET,
1227 .dump = inet_diag_handler_cmd,
1228 .get_info = inet_diag_handler_get_info,
1229 .destroy = inet_diag_handler_cmd,
1232 static const struct sock_diag_handler inet6_diag_handler = {
1233 .family = AF_INET6,
1234 .dump = inet_diag_handler_cmd,
1235 .get_info = inet_diag_handler_get_info,
1236 .destroy = inet_diag_handler_cmd,
1239 int inet_diag_register(const struct inet_diag_handler *h)
1241 const __u16 type = h->idiag_type;
1242 int err = -EINVAL;
1244 if (type >= IPPROTO_MAX)
1245 goto out;
1247 mutex_lock(&inet_diag_table_mutex);
1248 err = -EEXIST;
1249 if (!inet_diag_table[type]) {
1250 inet_diag_table[type] = h;
1251 err = 0;
1253 mutex_unlock(&inet_diag_table_mutex);
1254 out:
1255 return err;
1257 EXPORT_SYMBOL_GPL(inet_diag_register);
1259 void inet_diag_unregister(const struct inet_diag_handler *h)
1261 const __u16 type = h->idiag_type;
1263 if (type >= IPPROTO_MAX)
1264 return;
1266 mutex_lock(&inet_diag_table_mutex);
1267 inet_diag_table[type] = NULL;
1268 mutex_unlock(&inet_diag_table_mutex);
1270 EXPORT_SYMBOL_GPL(inet_diag_unregister);
1272 static int __init inet_diag_init(void)
1274 const int inet_diag_table_size = (IPPROTO_MAX *
1275 sizeof(struct inet_diag_handler *));
1276 int err = -ENOMEM;
1278 inet_diag_table = kzalloc(inet_diag_table_size, GFP_KERNEL);
1279 if (!inet_diag_table)
1280 goto out;
1282 err = sock_diag_register(&inet_diag_handler);
1283 if (err)
1284 goto out_free_nl;
1286 err = sock_diag_register(&inet6_diag_handler);
1287 if (err)
1288 goto out_free_inet;
1290 sock_diag_register_inet_compat(inet_diag_rcv_msg_compat);
1291 out:
1292 return err;
1294 out_free_inet:
1295 sock_diag_unregister(&inet_diag_handler);
1296 out_free_nl:
1297 kfree(inet_diag_table);
1298 goto out;
1301 static void __exit inet_diag_exit(void)
1303 sock_diag_unregister(&inet6_diag_handler);
1304 sock_diag_unregister(&inet_diag_handler);
1305 sock_diag_unregister_inet_compat(inet_diag_rcv_msg_compat);
1306 kfree(inet_diag_table);
1309 module_init(inet_diag_init);
1310 module_exit(inet_diag_exit);
1311 MODULE_LICENSE("GPL");
1312 MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 2 /* AF_INET */);
1313 MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 10 /* AF_INET6 */);