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>
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
{
49 static DEFINE_MUTEX(inet_diag_table_mutex
);
51 static const struct inet_diag_handler
*inet_diag_lock_handler(int proto
)
53 if (!inet_diag_table
[proto
])
54 request_module("net-pf-%d-proto-%d-type-%d-%d", PF_NETLINK
,
55 NETLINK_SOCK_DIAG
, AF_INET
, proto
);
57 mutex_lock(&inet_diag_table_mutex
);
58 if (!inet_diag_table
[proto
])
59 return ERR_PTR(-ENOENT
);
61 return inet_diag_table
[proto
];
64 static inline void inet_diag_unlock_handler(
65 const struct inet_diag_handler
*handler
)
67 mutex_unlock(&inet_diag_table_mutex
);
70 int inet_sk_diag_fill(struct sock
*sk
, struct inet_connection_sock
*icsk
,
71 struct sk_buff
*skb
, struct inet_diag_req_v2
*req
,
72 struct user_namespace
*user_ns
,
73 u32 portid
, u32 seq
, u16 nlmsg_flags
,
74 const struct nlmsghdr
*unlh
)
76 const struct inet_sock
*inet
= inet_sk(sk
);
77 struct inet_diag_msg
*r
;
81 const struct inet_diag_handler
*handler
;
82 int ext
= req
->idiag_ext
;
84 handler
= inet_diag_table
[req
->sdiag_protocol
];
85 BUG_ON(handler
== NULL
);
87 nlh
= nlmsg_put(skb
, portid
, seq
, unlh
->nlmsg_type
, sizeof(*r
),
93 BUG_ON(sk
->sk_state
== TCP_TIME_WAIT
);
95 r
->idiag_family
= sk
->sk_family
;
96 r
->idiag_state
= sk
->sk_state
;
100 r
->id
.idiag_if
= sk
->sk_bound_dev_if
;
101 sock_diag_save_cookie(sk
, r
->id
.idiag_cookie
);
103 r
->id
.idiag_sport
= inet
->inet_sport
;
104 r
->id
.idiag_dport
= inet
->inet_dport
;
105 r
->id
.idiag_src
[0] = inet
->inet_rcv_saddr
;
106 r
->id
.idiag_dst
[0] = inet
->inet_daddr
;
108 /* IPv6 dual-stack sockets use inet->tos for IPv4 connections,
109 * hence this needs to be included regardless of socket family.
111 if (ext
& (1 << (INET_DIAG_TOS
- 1)))
112 if (nla_put_u8(skb
, INET_DIAG_TOS
, inet
->tos
) < 0)
115 #if IS_ENABLED(CONFIG_IPV6)
116 if (r
->idiag_family
== AF_INET6
) {
117 const struct ipv6_pinfo
*np
= inet6_sk(sk
);
119 *(struct in6_addr
*)r
->id
.idiag_src
= np
->rcv_saddr
;
120 *(struct in6_addr
*)r
->id
.idiag_dst
= np
->daddr
;
122 if (ext
& (1 << (INET_DIAG_TCLASS
- 1)))
123 if (nla_put_u8(skb
, INET_DIAG_TCLASS
, np
->tclass
) < 0)
128 r
->idiag_uid
= from_kuid_munged(user_ns
, sock_i_uid(sk
));
129 r
->idiag_inode
= sock_i_ino(sk
);
131 if (ext
& (1 << (INET_DIAG_MEMINFO
- 1))) {
132 struct inet_diag_meminfo minfo
= {
133 .idiag_rmem
= sk_rmem_alloc_get(sk
),
134 .idiag_wmem
= sk
->sk_wmem_queued
,
135 .idiag_fmem
= sk
->sk_forward_alloc
,
136 .idiag_tmem
= sk_wmem_alloc_get(sk
),
139 if (nla_put(skb
, INET_DIAG_MEMINFO
, sizeof(minfo
), &minfo
) < 0)
143 if (ext
& (1 << (INET_DIAG_SKMEMINFO
- 1)))
144 if (sock_diag_put_meminfo(sk
, skb
, INET_DIAG_SKMEMINFO
))
148 handler
->idiag_get_info(sk
, r
, NULL
);
152 #define EXPIRES_IN_MS(tmo) DIV_ROUND_UP((tmo - jiffies) * 1000, HZ)
154 if (icsk
->icsk_pending
== ICSK_TIME_RETRANS
) {
156 r
->idiag_retrans
= icsk
->icsk_retransmits
;
157 r
->idiag_expires
= EXPIRES_IN_MS(icsk
->icsk_timeout
);
158 } else if (icsk
->icsk_pending
== ICSK_TIME_PROBE0
) {
160 r
->idiag_retrans
= icsk
->icsk_probes_out
;
161 r
->idiag_expires
= EXPIRES_IN_MS(icsk
->icsk_timeout
);
162 } else if (timer_pending(&sk
->sk_timer
)) {
164 r
->idiag_retrans
= icsk
->icsk_probes_out
;
165 r
->idiag_expires
= EXPIRES_IN_MS(sk
->sk_timer
.expires
);
168 r
->idiag_expires
= 0;
172 if (ext
& (1 << (INET_DIAG_INFO
- 1))) {
173 attr
= nla_reserve(skb
, INET_DIAG_INFO
,
174 sizeof(struct tcp_info
));
178 info
= nla_data(attr
);
181 if ((ext
& (1 << (INET_DIAG_CONG
- 1))) && icsk
->icsk_ca_ops
)
182 if (nla_put_string(skb
, INET_DIAG_CONG
,
183 icsk
->icsk_ca_ops
->name
) < 0)
186 handler
->idiag_get_info(sk
, r
, info
);
188 if (sk
->sk_state
< TCP_TIME_WAIT
&&
189 icsk
->icsk_ca_ops
&& icsk
->icsk_ca_ops
->get_info
)
190 icsk
->icsk_ca_ops
->get_info(sk
, ext
, skb
);
193 return nlmsg_end(skb
, nlh
);
196 nlmsg_cancel(skb
, nlh
);
199 EXPORT_SYMBOL_GPL(inet_sk_diag_fill
);
201 static int inet_csk_diag_fill(struct sock
*sk
,
202 struct sk_buff
*skb
, struct inet_diag_req_v2
*req
,
203 struct user_namespace
*user_ns
,
204 u32 portid
, u32 seq
, u16 nlmsg_flags
,
205 const struct nlmsghdr
*unlh
)
207 return inet_sk_diag_fill(sk
, inet_csk(sk
),
208 skb
, req
, user_ns
, portid
, seq
, nlmsg_flags
, unlh
);
211 static int inet_twsk_diag_fill(struct inet_timewait_sock
*tw
,
212 struct sk_buff
*skb
, struct inet_diag_req_v2
*req
,
213 u32 portid
, u32 seq
, u16 nlmsg_flags
,
214 const struct nlmsghdr
*unlh
)
217 struct inet_diag_msg
*r
;
218 struct nlmsghdr
*nlh
;
220 nlh
= nlmsg_put(skb
, portid
, seq
, unlh
->nlmsg_type
, sizeof(*r
),
226 BUG_ON(tw
->tw_state
!= TCP_TIME_WAIT
);
228 tmo
= tw
->tw_ttd
- jiffies
;
232 r
->idiag_family
= tw
->tw_family
;
233 r
->idiag_retrans
= 0;
234 r
->id
.idiag_if
= tw
->tw_bound_dev_if
;
235 sock_diag_save_cookie(tw
, r
->id
.idiag_cookie
);
236 r
->id
.idiag_sport
= tw
->tw_sport
;
237 r
->id
.idiag_dport
= tw
->tw_dport
;
238 r
->id
.idiag_src
[0] = tw
->tw_rcv_saddr
;
239 r
->id
.idiag_dst
[0] = tw
->tw_daddr
;
240 r
->idiag_state
= tw
->tw_substate
;
242 r
->idiag_expires
= DIV_ROUND_UP(tmo
* 1000, HZ
);
247 #if IS_ENABLED(CONFIG_IPV6)
248 if (tw
->tw_family
== AF_INET6
) {
249 const struct inet6_timewait_sock
*tw6
=
250 inet6_twsk((struct sock
*)tw
);
252 *(struct in6_addr
*)r
->id
.idiag_src
= tw6
->tw_v6_rcv_saddr
;
253 *(struct in6_addr
*)r
->id
.idiag_dst
= tw6
->tw_v6_daddr
;
257 return nlmsg_end(skb
, nlh
);
260 static int sk_diag_fill(struct sock
*sk
, struct sk_buff
*skb
,
261 struct inet_diag_req_v2
*r
,
262 struct user_namespace
*user_ns
,
263 u32 portid
, u32 seq
, u16 nlmsg_flags
,
264 const struct nlmsghdr
*unlh
)
266 if (sk
->sk_state
== TCP_TIME_WAIT
)
267 return inet_twsk_diag_fill((struct inet_timewait_sock
*)sk
,
268 skb
, r
, portid
, seq
, nlmsg_flags
,
270 return inet_csk_diag_fill(sk
, skb
, r
, user_ns
, portid
, seq
, nlmsg_flags
, unlh
);
273 int inet_diag_dump_one_icsk(struct inet_hashinfo
*hashinfo
, struct sk_buff
*in_skb
,
274 const struct nlmsghdr
*nlh
, struct inet_diag_req_v2
*req
)
279 struct net
*net
= sock_net(in_skb
->sk
);
282 if (req
->sdiag_family
== AF_INET
) {
283 sk
= inet_lookup(net
, hashinfo
, req
->id
.idiag_dst
[0],
284 req
->id
.idiag_dport
, req
->id
.idiag_src
[0],
285 req
->id
.idiag_sport
, req
->id
.idiag_if
);
287 #if IS_ENABLED(CONFIG_IPV6)
288 else if (req
->sdiag_family
== AF_INET6
) {
289 sk
= inet6_lookup(net
, hashinfo
,
290 (struct in6_addr
*)req
->id
.idiag_dst
,
292 (struct in6_addr
*)req
->id
.idiag_src
,
305 err
= sock_diag_check_cookie(sk
, req
->id
.idiag_cookie
);
309 rep
= nlmsg_new(sizeof(struct inet_diag_msg
) +
310 sizeof(struct inet_diag_meminfo
) +
311 sizeof(struct tcp_info
) + 64, GFP_KERNEL
);
317 err
= sk_diag_fill(sk
, rep
, req
,
318 sk_user_ns(NETLINK_CB(in_skb
).ssk
),
319 NETLINK_CB(in_skb
).portid
,
320 nlh
->nlmsg_seq
, 0, nlh
);
322 WARN_ON(err
== -EMSGSIZE
);
326 err
= netlink_unicast(net
->diag_nlsk
, rep
, NETLINK_CB(in_skb
).portid
,
333 if (sk
->sk_state
== TCP_TIME_WAIT
)
334 inet_twsk_put((struct inet_timewait_sock
*)sk
);
341 EXPORT_SYMBOL_GPL(inet_diag_dump_one_icsk
);
343 static int inet_diag_get_exact(struct sk_buff
*in_skb
,
344 const struct nlmsghdr
*nlh
,
345 struct inet_diag_req_v2
*req
)
347 const struct inet_diag_handler
*handler
;
350 handler
= inet_diag_lock_handler(req
->sdiag_protocol
);
352 err
= PTR_ERR(handler
);
354 err
= handler
->dump_one(in_skb
, nlh
, req
);
355 inet_diag_unlock_handler(handler
);
360 static int bitstring_match(const __be32
*a1
, const __be32
*a2
, int bits
)
362 int words
= bits
>> 5;
367 if (memcmp(a1
, a2
, words
<< 2))
377 mask
= htonl((0xffffffff) << (32 - bits
));
379 if ((w1
^ w2
) & mask
)
387 static int inet_diag_bc_run(const struct nlattr
*_bc
,
388 const struct inet_diag_entry
*entry
)
390 const void *bc
= nla_data(_bc
);
391 int len
= nla_len(_bc
);
395 const struct inet_diag_bc_op
*op
= bc
;
398 case INET_DIAG_BC_NOP
:
400 case INET_DIAG_BC_JMP
:
403 case INET_DIAG_BC_S_GE
:
404 yes
= entry
->sport
>= op
[1].no
;
406 case INET_DIAG_BC_S_LE
:
407 yes
= entry
->sport
<= op
[1].no
;
409 case INET_DIAG_BC_D_GE
:
410 yes
= entry
->dport
>= op
[1].no
;
412 case INET_DIAG_BC_D_LE
:
413 yes
= entry
->dport
<= op
[1].no
;
415 case INET_DIAG_BC_AUTO
:
416 yes
= !(entry
->userlocks
& SOCK_BINDPORT_LOCK
);
418 case INET_DIAG_BC_S_COND
:
419 case INET_DIAG_BC_D_COND
: {
420 struct inet_diag_hostcond
*cond
;
423 cond
= (struct inet_diag_hostcond
*)(op
+ 1);
424 if (cond
->port
!= -1 &&
425 cond
->port
!= (op
->code
== INET_DIAG_BC_S_COND
?
426 entry
->sport
: entry
->dport
)) {
431 if (cond
->prefix_len
== 0)
434 if (op
->code
== INET_DIAG_BC_S_COND
)
439 if (bitstring_match(addr
, cond
->addr
,
442 if (entry
->family
== AF_INET6
&&
443 cond
->family
== AF_INET
) {
444 if (addr
[0] == 0 && addr
[1] == 0 &&
445 addr
[2] == htonl(0xffff) &&
446 bitstring_match(addr
+ 3, cond
->addr
,
466 int inet_diag_bc_sk(const struct nlattr
*bc
, struct sock
*sk
)
468 struct inet_diag_entry entry
;
469 struct inet_sock
*inet
= inet_sk(sk
);
474 entry
.family
= sk
->sk_family
;
475 #if IS_ENABLED(CONFIG_IPV6)
476 if (entry
.family
== AF_INET6
) {
477 struct ipv6_pinfo
*np
= inet6_sk(sk
);
479 entry
.saddr
= np
->rcv_saddr
.s6_addr32
;
480 entry
.daddr
= np
->daddr
.s6_addr32
;
484 entry
.saddr
= &inet
->inet_rcv_saddr
;
485 entry
.daddr
= &inet
->inet_daddr
;
487 entry
.sport
= inet
->inet_num
;
488 entry
.dport
= ntohs(inet
->inet_dport
);
489 entry
.userlocks
= sk
->sk_userlocks
;
491 return inet_diag_bc_run(bc
, &entry
);
493 EXPORT_SYMBOL_GPL(inet_diag_bc_sk
);
495 static int valid_cc(const void *bc
, int len
, int cc
)
498 const struct inet_diag_bc_op
*op
= bc
;
504 if (op
->yes
< 4 || op
->yes
& 3)
512 static int inet_diag_bc_audit(const void *bytecode
, int bytecode_len
)
514 const void *bc
= bytecode
;
515 int len
= bytecode_len
;
518 const struct inet_diag_bc_op
*op
= bc
;
520 //printk("BC: %d %d %d {%d} / %d\n", op->code, op->yes, op->no, op[1].no, len);
522 case INET_DIAG_BC_AUTO
:
523 case INET_DIAG_BC_S_COND
:
524 case INET_DIAG_BC_D_COND
:
525 case INET_DIAG_BC_S_GE
:
526 case INET_DIAG_BC_S_LE
:
527 case INET_DIAG_BC_D_GE
:
528 case INET_DIAG_BC_D_LE
:
529 case INET_DIAG_BC_JMP
:
530 if (op
->no
< 4 || op
->no
> len
+ 4 || op
->no
& 3)
533 !valid_cc(bytecode
, bytecode_len
, len
- op
->no
))
536 case INET_DIAG_BC_NOP
:
541 if (op
->yes
< 4 || op
->yes
> len
+ 4 || op
->yes
& 3)
546 return len
== 0 ? 0 : -EINVAL
;
549 static int inet_csk_diag_dump(struct sock
*sk
,
551 struct netlink_callback
*cb
,
552 struct inet_diag_req_v2
*r
,
553 const struct nlattr
*bc
)
555 if (!inet_diag_bc_sk(bc
, sk
))
558 return inet_csk_diag_fill(sk
, skb
, r
,
559 sk_user_ns(NETLINK_CB(cb
->skb
).ssk
),
560 NETLINK_CB(cb
->skb
).portid
,
561 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
, cb
->nlh
);
564 static int inet_twsk_diag_dump(struct inet_timewait_sock
*tw
,
566 struct netlink_callback
*cb
,
567 struct inet_diag_req_v2
*r
,
568 const struct nlattr
*bc
)
571 struct inet_diag_entry entry
;
573 entry
.family
= tw
->tw_family
;
574 #if IS_ENABLED(CONFIG_IPV6)
575 if (tw
->tw_family
== AF_INET6
) {
576 struct inet6_timewait_sock
*tw6
=
577 inet6_twsk((struct sock
*)tw
);
578 entry
.saddr
= tw6
->tw_v6_rcv_saddr
.s6_addr32
;
579 entry
.daddr
= tw6
->tw_v6_daddr
.s6_addr32
;
583 entry
.saddr
= &tw
->tw_rcv_saddr
;
584 entry
.daddr
= &tw
->tw_daddr
;
586 entry
.sport
= tw
->tw_num
;
587 entry
.dport
= ntohs(tw
->tw_dport
);
590 if (!inet_diag_bc_run(bc
, &entry
))
594 return inet_twsk_diag_fill(tw
, skb
, r
,
595 NETLINK_CB(cb
->skb
).portid
,
596 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
, cb
->nlh
);
599 static int inet_diag_fill_req(struct sk_buff
*skb
, struct sock
*sk
,
600 struct request_sock
*req
,
601 struct user_namespace
*user_ns
,
603 const struct nlmsghdr
*unlh
)
605 const struct inet_request_sock
*ireq
= inet_rsk(req
);
606 struct inet_sock
*inet
= inet_sk(sk
);
607 struct inet_diag_msg
*r
;
608 struct nlmsghdr
*nlh
;
611 nlh
= nlmsg_put(skb
, portid
, seq
, unlh
->nlmsg_type
, sizeof(*r
),
617 r
->idiag_family
= sk
->sk_family
;
618 r
->idiag_state
= TCP_SYN_RECV
;
620 r
->idiag_retrans
= req
->retrans
;
622 r
->id
.idiag_if
= sk
->sk_bound_dev_if
;
623 sock_diag_save_cookie(req
, r
->id
.idiag_cookie
);
625 tmo
= req
->expires
- jiffies
;
629 r
->id
.idiag_sport
= inet
->inet_sport
;
630 r
->id
.idiag_dport
= ireq
->rmt_port
;
631 r
->id
.idiag_src
[0] = ireq
->loc_addr
;
632 r
->id
.idiag_dst
[0] = ireq
->rmt_addr
;
633 r
->idiag_expires
= jiffies_to_msecs(tmo
);
636 r
->idiag_uid
= from_kuid_munged(user_ns
, sock_i_uid(sk
));
638 #if IS_ENABLED(CONFIG_IPV6)
639 if (r
->idiag_family
== AF_INET6
) {
640 *(struct in6_addr
*)r
->id
.idiag_src
= inet6_rsk(req
)->loc_addr
;
641 *(struct in6_addr
*)r
->id
.idiag_dst
= inet6_rsk(req
)->rmt_addr
;
645 return nlmsg_end(skb
, nlh
);
648 static int inet_diag_dump_reqs(struct sk_buff
*skb
, struct sock
*sk
,
649 struct netlink_callback
*cb
,
650 struct inet_diag_req_v2
*r
,
651 const struct nlattr
*bc
)
653 struct inet_diag_entry entry
;
654 struct inet_connection_sock
*icsk
= inet_csk(sk
);
655 struct listen_sock
*lopt
;
656 struct inet_sock
*inet
= inet_sk(sk
);
658 int reqnum
, s_reqnum
;
662 s_reqnum
= cb
->args
[4];
667 entry
.family
= sk
->sk_family
;
669 read_lock_bh(&icsk
->icsk_accept_queue
.syn_wait_lock
);
671 lopt
= icsk
->icsk_accept_queue
.listen_opt
;
672 if (!lopt
|| !lopt
->qlen
)
676 entry
.sport
= inet
->inet_num
;
677 entry
.userlocks
= sk
->sk_userlocks
;
680 for (j
= s_j
; j
< lopt
->nr_table_entries
; j
++) {
681 struct request_sock
*req
, *head
= lopt
->syn_table
[j
];
684 for (req
= head
; req
; reqnum
++, req
= req
->dl_next
) {
685 struct inet_request_sock
*ireq
= inet_rsk(req
);
687 if (reqnum
< s_reqnum
)
689 if (r
->id
.idiag_dport
!= ireq
->rmt_port
&&
695 #if IS_ENABLED(CONFIG_IPV6)
696 (entry
.family
== AF_INET6
) ?
697 inet6_rsk(req
)->loc_addr
.s6_addr32
:
701 #if IS_ENABLED(CONFIG_IPV6)
702 (entry
.family
== AF_INET6
) ?
703 inet6_rsk(req
)->rmt_addr
.s6_addr32
:
706 entry
.dport
= ntohs(ireq
->rmt_port
);
708 if (!inet_diag_bc_run(bc
, &entry
))
712 err
= inet_diag_fill_req(skb
, sk
, req
,
713 sk_user_ns(NETLINK_CB(cb
->skb
).ssk
),
714 NETLINK_CB(cb
->skb
).portid
,
715 cb
->nlh
->nlmsg_seq
, cb
->nlh
);
718 cb
->args
[4] = reqnum
;
727 read_unlock_bh(&icsk
->icsk_accept_queue
.syn_wait_lock
);
732 void inet_diag_dump_icsk(struct inet_hashinfo
*hashinfo
, struct sk_buff
*skb
,
733 struct netlink_callback
*cb
, struct inet_diag_req_v2
*r
, struct nlattr
*bc
)
737 struct net
*net
= sock_net(skb
->sk
);
740 s_num
= num
= cb
->args
[2];
742 if (cb
->args
[0] == 0) {
743 if (!(r
->idiag_states
& (TCPF_LISTEN
| TCPF_SYN_RECV
)))
746 for (i
= s_i
; i
< INET_LHTABLE_SIZE
; i
++) {
748 struct hlist_nulls_node
*node
;
749 struct inet_listen_hashbucket
*ilb
;
752 ilb
= &hashinfo
->listening_hash
[i
];
753 spin_lock_bh(&ilb
->lock
);
754 sk_nulls_for_each(sk
, node
, &ilb
->head
) {
755 struct inet_sock
*inet
= inet_sk(sk
);
757 if (!net_eq(sock_net(sk
), net
))
765 if (r
->sdiag_family
!= AF_UNSPEC
&&
766 sk
->sk_family
!= r
->sdiag_family
)
769 if (r
->id
.idiag_sport
!= inet
->inet_sport
&&
773 if (!(r
->idiag_states
& TCPF_LISTEN
) ||
778 if (inet_csk_diag_dump(sk
, skb
, cb
, r
, bc
) < 0) {
779 spin_unlock_bh(&ilb
->lock
);
784 if (!(r
->idiag_states
& TCPF_SYN_RECV
))
787 if (inet_diag_dump_reqs(skb
, sk
, cb
, r
, bc
) < 0) {
788 spin_unlock_bh(&ilb
->lock
);
797 spin_unlock_bh(&ilb
->lock
);
805 s_i
= num
= s_num
= 0;
808 if (!(r
->idiag_states
& ~(TCPF_LISTEN
| TCPF_SYN_RECV
)))
811 for (i
= s_i
; i
<= hashinfo
->ehash_mask
; i
++) {
812 struct inet_ehash_bucket
*head
= &hashinfo
->ehash
[i
];
813 spinlock_t
*lock
= inet_ehash_lockp(hashinfo
, i
);
815 struct hlist_nulls_node
*node
;
819 if (hlist_nulls_empty(&head
->chain
) &&
820 hlist_nulls_empty(&head
->twchain
))
827 sk_nulls_for_each(sk
, node
, &head
->chain
) {
828 struct inet_sock
*inet
= inet_sk(sk
);
830 if (!net_eq(sock_net(sk
), net
))
834 if (!(r
->idiag_states
& (1 << sk
->sk_state
)))
836 if (r
->sdiag_family
!= AF_UNSPEC
&&
837 sk
->sk_family
!= r
->sdiag_family
)
839 if (r
->id
.idiag_sport
!= inet
->inet_sport
&&
842 if (r
->id
.idiag_dport
!= inet
->inet_dport
&&
845 if (inet_csk_diag_dump(sk
, skb
, cb
, r
, bc
) < 0) {
846 spin_unlock_bh(lock
);
853 if (r
->idiag_states
& TCPF_TIME_WAIT
) {
854 struct inet_timewait_sock
*tw
;
856 inet_twsk_for_each(tw
, node
,
858 if (!net_eq(twsk_net(tw
), net
))
863 if (r
->sdiag_family
!= AF_UNSPEC
&&
864 tw
->tw_family
!= r
->sdiag_family
)
866 if (r
->id
.idiag_sport
!= tw
->tw_sport
&&
869 if (r
->id
.idiag_dport
!= tw
->tw_dport
&&
872 if (inet_twsk_diag_dump(tw
, skb
, cb
, r
, bc
) < 0) {
873 spin_unlock_bh(lock
);
880 spin_unlock_bh(lock
);
889 EXPORT_SYMBOL_GPL(inet_diag_dump_icsk
);
891 static int __inet_diag_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
,
892 struct inet_diag_req_v2
*r
, struct nlattr
*bc
)
894 const struct inet_diag_handler
*handler
;
896 handler
= inet_diag_lock_handler(r
->sdiag_protocol
);
897 if (!IS_ERR(handler
))
898 handler
->dump(skb
, cb
, r
, bc
);
899 inet_diag_unlock_handler(handler
);
904 static int inet_diag_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
906 struct nlattr
*bc
= NULL
;
907 int hdrlen
= sizeof(struct inet_diag_req_v2
);
909 if (nlmsg_attrlen(cb
->nlh
, hdrlen
))
910 bc
= nlmsg_find_attr(cb
->nlh
, hdrlen
, INET_DIAG_REQ_BYTECODE
);
912 return __inet_diag_dump(skb
, cb
, nlmsg_data(cb
->nlh
), bc
);
915 static inline int inet_diag_type2proto(int type
)
918 case TCPDIAG_GETSOCK
:
920 case DCCPDIAG_GETSOCK
:
927 static int inet_diag_dump_compat(struct sk_buff
*skb
, struct netlink_callback
*cb
)
929 struct inet_diag_req
*rc
= nlmsg_data(cb
->nlh
);
930 struct inet_diag_req_v2 req
;
931 struct nlattr
*bc
= NULL
;
932 int hdrlen
= sizeof(struct inet_diag_req
);
934 req
.sdiag_family
= AF_UNSPEC
; /* compatibility */
935 req
.sdiag_protocol
= inet_diag_type2proto(cb
->nlh
->nlmsg_type
);
936 req
.idiag_ext
= rc
->idiag_ext
;
937 req
.idiag_states
= rc
->idiag_states
;
940 if (nlmsg_attrlen(cb
->nlh
, hdrlen
))
941 bc
= nlmsg_find_attr(cb
->nlh
, hdrlen
, INET_DIAG_REQ_BYTECODE
);
943 return __inet_diag_dump(skb
, cb
, &req
, bc
);
946 static int inet_diag_get_exact_compat(struct sk_buff
*in_skb
,
947 const struct nlmsghdr
*nlh
)
949 struct inet_diag_req
*rc
= nlmsg_data(nlh
);
950 struct inet_diag_req_v2 req
;
952 req
.sdiag_family
= rc
->idiag_family
;
953 req
.sdiag_protocol
= inet_diag_type2proto(nlh
->nlmsg_type
);
954 req
.idiag_ext
= rc
->idiag_ext
;
955 req
.idiag_states
= rc
->idiag_states
;
958 return inet_diag_get_exact(in_skb
, nlh
, &req
);
961 static int inet_diag_rcv_msg_compat(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
963 int hdrlen
= sizeof(struct inet_diag_req
);
964 struct net
*net
= sock_net(skb
->sk
);
966 if (nlh
->nlmsg_type
>= INET_DIAG_GETSOCK_MAX
||
967 nlmsg_len(nlh
) < hdrlen
)
970 if (nlh
->nlmsg_flags
& NLM_F_DUMP
) {
971 if (nlmsg_attrlen(nlh
, hdrlen
)) {
974 attr
= nlmsg_find_attr(nlh
, hdrlen
,
975 INET_DIAG_REQ_BYTECODE
);
977 nla_len(attr
) < sizeof(struct inet_diag_bc_op
) ||
978 inet_diag_bc_audit(nla_data(attr
), nla_len(attr
)))
982 struct netlink_dump_control c
= {
983 .dump
= inet_diag_dump_compat
,
985 return netlink_dump_start(net
->diag_nlsk
, skb
, nlh
, &c
);
989 return inet_diag_get_exact_compat(skb
, nlh
);
992 static int inet_diag_handler_dump(struct sk_buff
*skb
, struct nlmsghdr
*h
)
994 int hdrlen
= sizeof(struct inet_diag_req_v2
);
995 struct net
*net
= sock_net(skb
->sk
);
997 if (nlmsg_len(h
) < hdrlen
)
1000 if (h
->nlmsg_flags
& NLM_F_DUMP
) {
1001 if (nlmsg_attrlen(h
, hdrlen
)) {
1002 struct nlattr
*attr
;
1003 attr
= nlmsg_find_attr(h
, hdrlen
,
1004 INET_DIAG_REQ_BYTECODE
);
1006 nla_len(attr
) < sizeof(struct inet_diag_bc_op
) ||
1007 inet_diag_bc_audit(nla_data(attr
), nla_len(attr
)))
1011 struct netlink_dump_control c
= {
1012 .dump
= inet_diag_dump
,
1014 return netlink_dump_start(net
->diag_nlsk
, skb
, h
, &c
);
1018 return inet_diag_get_exact(skb
, h
, nlmsg_data(h
));
1021 static const struct sock_diag_handler inet_diag_handler
= {
1023 .dump
= inet_diag_handler_dump
,
1026 static const struct sock_diag_handler inet6_diag_handler
= {
1028 .dump
= inet_diag_handler_dump
,
1031 int inet_diag_register(const struct inet_diag_handler
*h
)
1033 const __u16 type
= h
->idiag_type
;
1036 if (type
>= IPPROTO_MAX
)
1039 mutex_lock(&inet_diag_table_mutex
);
1041 if (inet_diag_table
[type
] == NULL
) {
1042 inet_diag_table
[type
] = h
;
1045 mutex_unlock(&inet_diag_table_mutex
);
1049 EXPORT_SYMBOL_GPL(inet_diag_register
);
1051 void inet_diag_unregister(const struct inet_diag_handler
*h
)
1053 const __u16 type
= h
->idiag_type
;
1055 if (type
>= IPPROTO_MAX
)
1058 mutex_lock(&inet_diag_table_mutex
);
1059 inet_diag_table
[type
] = NULL
;
1060 mutex_unlock(&inet_diag_table_mutex
);
1062 EXPORT_SYMBOL_GPL(inet_diag_unregister
);
1064 static int __init
inet_diag_init(void)
1066 const int inet_diag_table_size
= (IPPROTO_MAX
*
1067 sizeof(struct inet_diag_handler
*));
1070 inet_diag_table
= kzalloc(inet_diag_table_size
, GFP_KERNEL
);
1071 if (!inet_diag_table
)
1074 err
= sock_diag_register(&inet_diag_handler
);
1078 err
= sock_diag_register(&inet6_diag_handler
);
1082 sock_diag_register_inet_compat(inet_diag_rcv_msg_compat
);
1087 sock_diag_unregister(&inet_diag_handler
);
1089 kfree(inet_diag_table
);
1093 static void __exit
inet_diag_exit(void)
1095 sock_diag_unregister(&inet6_diag_handler
);
1096 sock_diag_unregister(&inet_diag_handler
);
1097 sock_diag_unregister_inet_compat(inet_diag_rcv_msg_compat
);
1098 kfree(inet_diag_table
);
1101 module_init(inet_diag_init
);
1102 module_exit(inet_diag_exit
);
1103 MODULE_LICENSE("GPL");
1104 MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK
, NETLINK_SOCK_DIAG
, 2 /* AF_INET */);
1105 MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK
, NETLINK_SOCK_DIAG
, 10 /* AF_INET6 */);