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>
37 static const struct inet_diag_handler
**inet_diag_table
;
39 struct inet_diag_entry
{
48 static struct sock
*idiagnl
;
50 #define INET_DIAG_PUT(skb, attrtype, attrlen) \
51 RTA_DATA(__RTA_PUT(skb, attrtype, attrlen))
53 static DEFINE_MUTEX(inet_diag_table_mutex
);
55 static const struct inet_diag_handler
*inet_diag_lock_handler(int type
)
57 if (!inet_diag_table
[type
])
58 request_module("net-pf-%d-proto-%d-type-%d", PF_NETLINK
,
59 NETLINK_INET_DIAG
, type
);
61 mutex_lock(&inet_diag_table_mutex
);
62 if (!inet_diag_table
[type
])
63 return ERR_PTR(-ENOENT
);
65 return inet_diag_table
[type
];
68 static inline void inet_diag_unlock_handler(
69 const struct inet_diag_handler
*handler
)
71 mutex_unlock(&inet_diag_table_mutex
);
74 static int inet_csk_diag_fill(struct sock
*sk
,
76 int ext
, u32 pid
, u32 seq
, u16 nlmsg_flags
,
77 const struct nlmsghdr
*unlh
)
79 const struct inet_sock
*inet
= inet_sk(sk
);
80 const struct inet_connection_sock
*icsk
= inet_csk(sk
);
81 struct inet_diag_msg
*r
;
84 struct inet_diag_meminfo
*minfo
= NULL
;
85 unsigned char *b
= skb_tail_pointer(skb
);
86 const struct inet_diag_handler
*handler
;
88 handler
= inet_diag_table
[unlh
->nlmsg_type
];
89 BUG_ON(handler
== NULL
);
91 nlh
= NLMSG_PUT(skb
, pid
, seq
, unlh
->nlmsg_type
, sizeof(*r
));
92 nlh
->nlmsg_flags
= nlmsg_flags
;
95 BUG_ON(sk
->sk_state
== TCP_TIME_WAIT
);
97 if (ext
& (1 << (INET_DIAG_MEMINFO
- 1)))
98 minfo
= INET_DIAG_PUT(skb
, INET_DIAG_MEMINFO
, sizeof(*minfo
));
100 if (ext
& (1 << (INET_DIAG_INFO
- 1)))
101 info
= INET_DIAG_PUT(skb
, INET_DIAG_INFO
,
102 handler
->idiag_info_size
);
104 if ((ext
& (1 << (INET_DIAG_CONG
- 1))) && icsk
->icsk_ca_ops
) {
105 const size_t len
= strlen(icsk
->icsk_ca_ops
->name
);
107 strcpy(INET_DIAG_PUT(skb
, INET_DIAG_CONG
, len
+ 1),
108 icsk
->icsk_ca_ops
->name
);
111 r
->idiag_family
= sk
->sk_family
;
112 r
->idiag_state
= sk
->sk_state
;
114 r
->idiag_retrans
= 0;
116 r
->id
.idiag_if
= sk
->sk_bound_dev_if
;
117 r
->id
.idiag_cookie
[0] = (u32
)(unsigned long)sk
;
118 r
->id
.idiag_cookie
[1] = (u32
)(((unsigned long)sk
>> 31) >> 1);
120 r
->id
.idiag_sport
= inet
->inet_sport
;
121 r
->id
.idiag_dport
= inet
->inet_dport
;
122 r
->id
.idiag_src
[0] = inet
->inet_rcv_saddr
;
123 r
->id
.idiag_dst
[0] = inet
->inet_daddr
;
125 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
126 if (r
->idiag_family
== AF_INET6
) {
127 const struct ipv6_pinfo
*np
= inet6_sk(sk
);
129 ipv6_addr_copy((struct in6_addr
*)r
->id
.idiag_src
,
131 ipv6_addr_copy((struct in6_addr
*)r
->id
.idiag_dst
,
136 #define EXPIRES_IN_MS(tmo) DIV_ROUND_UP((tmo - jiffies) * 1000, HZ)
138 if (icsk
->icsk_pending
== ICSK_TIME_RETRANS
) {
140 r
->idiag_retrans
= icsk
->icsk_retransmits
;
141 r
->idiag_expires
= EXPIRES_IN_MS(icsk
->icsk_timeout
);
142 } else if (icsk
->icsk_pending
== ICSK_TIME_PROBE0
) {
144 r
->idiag_retrans
= icsk
->icsk_probes_out
;
145 r
->idiag_expires
= EXPIRES_IN_MS(icsk
->icsk_timeout
);
146 } else if (timer_pending(&sk
->sk_timer
)) {
148 r
->idiag_retrans
= icsk
->icsk_probes_out
;
149 r
->idiag_expires
= EXPIRES_IN_MS(sk
->sk_timer
.expires
);
152 r
->idiag_expires
= 0;
156 r
->idiag_uid
= sock_i_uid(sk
);
157 r
->idiag_inode
= sock_i_ino(sk
);
160 minfo
->idiag_rmem
= sk_rmem_alloc_get(sk
);
161 minfo
->idiag_wmem
= sk
->sk_wmem_queued
;
162 minfo
->idiag_fmem
= sk
->sk_forward_alloc
;
163 minfo
->idiag_tmem
= sk_wmem_alloc_get(sk
);
166 handler
->idiag_get_info(sk
, r
, info
);
168 if (sk
->sk_state
< TCP_TIME_WAIT
&&
169 icsk
->icsk_ca_ops
&& icsk
->icsk_ca_ops
->get_info
)
170 icsk
->icsk_ca_ops
->get_info(sk
, ext
, skb
);
172 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
181 static int inet_twsk_diag_fill(struct inet_timewait_sock
*tw
,
182 struct sk_buff
*skb
, int ext
, u32 pid
,
183 u32 seq
, u16 nlmsg_flags
,
184 const struct nlmsghdr
*unlh
)
187 struct inet_diag_msg
*r
;
188 const unsigned char *previous_tail
= skb_tail_pointer(skb
);
189 struct nlmsghdr
*nlh
= NLMSG_PUT(skb
, pid
, seq
,
190 unlh
->nlmsg_type
, sizeof(*r
));
193 BUG_ON(tw
->tw_state
!= TCP_TIME_WAIT
);
195 nlh
->nlmsg_flags
= nlmsg_flags
;
197 tmo
= tw
->tw_ttd
- jiffies
;
201 r
->idiag_family
= tw
->tw_family
;
202 r
->idiag_retrans
= 0;
203 r
->id
.idiag_if
= tw
->tw_bound_dev_if
;
204 r
->id
.idiag_cookie
[0] = (u32
)(unsigned long)tw
;
205 r
->id
.idiag_cookie
[1] = (u32
)(((unsigned long)tw
>> 31) >> 1);
206 r
->id
.idiag_sport
= tw
->tw_sport
;
207 r
->id
.idiag_dport
= tw
->tw_dport
;
208 r
->id
.idiag_src
[0] = tw
->tw_rcv_saddr
;
209 r
->id
.idiag_dst
[0] = tw
->tw_daddr
;
210 r
->idiag_state
= tw
->tw_substate
;
212 r
->idiag_expires
= DIV_ROUND_UP(tmo
* 1000, HZ
);
217 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
218 if (tw
->tw_family
== AF_INET6
) {
219 const struct inet6_timewait_sock
*tw6
=
220 inet6_twsk((struct sock
*)tw
);
222 ipv6_addr_copy((struct in6_addr
*)r
->id
.idiag_src
,
223 &tw6
->tw_v6_rcv_saddr
);
224 ipv6_addr_copy((struct in6_addr
*)r
->id
.idiag_dst
,
228 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - previous_tail
;
231 nlmsg_trim(skb
, previous_tail
);
235 static int sk_diag_fill(struct sock
*sk
, struct sk_buff
*skb
,
236 int ext
, u32 pid
, u32 seq
, u16 nlmsg_flags
,
237 const struct nlmsghdr
*unlh
)
239 if (sk
->sk_state
== TCP_TIME_WAIT
)
240 return inet_twsk_diag_fill((struct inet_timewait_sock
*)sk
,
241 skb
, ext
, pid
, seq
, nlmsg_flags
,
243 return inet_csk_diag_fill(sk
, skb
, ext
, pid
, seq
, nlmsg_flags
, unlh
);
246 static int inet_diag_get_exact(struct sk_buff
*in_skb
,
247 const struct nlmsghdr
*nlh
)
251 struct inet_diag_req
*req
= NLMSG_DATA(nlh
);
253 struct inet_hashinfo
*hashinfo
;
254 const struct inet_diag_handler
*handler
;
256 handler
= inet_diag_lock_handler(nlh
->nlmsg_type
);
257 if (IS_ERR(handler
)) {
258 err
= PTR_ERR(handler
);
262 hashinfo
= handler
->idiag_hashinfo
;
265 if (req
->idiag_family
== AF_INET
) {
266 sk
= inet_lookup(&init_net
, hashinfo
, req
->id
.idiag_dst
[0],
267 req
->id
.idiag_dport
, req
->id
.idiag_src
[0],
268 req
->id
.idiag_sport
, req
->id
.idiag_if
);
270 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
271 else if (req
->idiag_family
== AF_INET6
) {
272 sk
= inet6_lookup(&init_net
, hashinfo
,
273 (struct in6_addr
*)req
->id
.idiag_dst
,
275 (struct in6_addr
*)req
->id
.idiag_src
,
289 if ((req
->id
.idiag_cookie
[0] != INET_DIAG_NOCOOKIE
||
290 req
->id
.idiag_cookie
[1] != INET_DIAG_NOCOOKIE
) &&
291 ((u32
)(unsigned long)sk
!= req
->id
.idiag_cookie
[0] ||
292 (u32
)((((unsigned long)sk
) >> 31) >> 1) != req
->id
.idiag_cookie
[1]))
296 rep
= alloc_skb(NLMSG_SPACE((sizeof(struct inet_diag_msg
) +
297 sizeof(struct inet_diag_meminfo
) +
298 handler
->idiag_info_size
+ 64)),
303 err
= sk_diag_fill(sk
, rep
, req
->idiag_ext
,
304 NETLINK_CB(in_skb
).pid
,
305 nlh
->nlmsg_seq
, 0, nlh
);
307 WARN_ON(err
== -EMSGSIZE
);
311 err
= netlink_unicast(idiagnl
, rep
, NETLINK_CB(in_skb
).pid
,
318 if (sk
->sk_state
== TCP_TIME_WAIT
)
319 inet_twsk_put((struct inet_timewait_sock
*)sk
);
324 inet_diag_unlock_handler(handler
);
328 static int bitstring_match(const __be32
*a1
, const __be32
*a2
, int bits
)
330 int words
= bits
>> 5;
335 if (memcmp(a1
, a2
, words
<< 2))
345 mask
= htonl((0xffffffff) << (32 - bits
));
347 if ((w1
^ w2
) & mask
)
355 static int inet_diag_bc_run(const void *bc
, int len
,
356 const struct inet_diag_entry
*entry
)
360 const struct inet_diag_bc_op
*op
= bc
;
363 case INET_DIAG_BC_NOP
:
365 case INET_DIAG_BC_JMP
:
368 case INET_DIAG_BC_S_GE
:
369 yes
= entry
->sport
>= op
[1].no
;
371 case INET_DIAG_BC_S_LE
:
372 yes
= entry
->sport
<= op
[1].no
;
374 case INET_DIAG_BC_D_GE
:
375 yes
= entry
->dport
>= op
[1].no
;
377 case INET_DIAG_BC_D_LE
:
378 yes
= entry
->dport
<= op
[1].no
;
380 case INET_DIAG_BC_AUTO
:
381 yes
= !(entry
->userlocks
& SOCK_BINDPORT_LOCK
);
383 case INET_DIAG_BC_S_COND
:
384 case INET_DIAG_BC_D_COND
: {
385 struct inet_diag_hostcond
*cond
;
388 cond
= (struct inet_diag_hostcond
*)(op
+ 1);
389 if (cond
->port
!= -1 &&
390 cond
->port
!= (op
->code
== INET_DIAG_BC_S_COND
?
391 entry
->sport
: entry
->dport
)) {
396 if (cond
->prefix_len
== 0)
399 if (op
->code
== INET_DIAG_BC_S_COND
)
404 if (bitstring_match(addr
, cond
->addr
,
407 if (entry
->family
== AF_INET6
&&
408 cond
->family
== AF_INET
) {
409 if (addr
[0] == 0 && addr
[1] == 0 &&
410 addr
[2] == htonl(0xffff) &&
411 bitstring_match(addr
+ 3, cond
->addr
,
431 static int valid_cc(const void *bc
, int len
, int cc
)
434 const struct inet_diag_bc_op
*op
= bc
;
440 if (op
->yes
< 4 || op
->yes
& 3)
448 static int inet_diag_bc_audit(const void *bytecode
, int bytecode_len
)
450 const void *bc
= bytecode
;
451 int len
= bytecode_len
;
454 const struct inet_diag_bc_op
*op
= bc
;
456 //printk("BC: %d %d %d {%d} / %d\n", op->code, op->yes, op->no, op[1].no, len);
458 case INET_DIAG_BC_AUTO
:
459 case INET_DIAG_BC_S_COND
:
460 case INET_DIAG_BC_D_COND
:
461 case INET_DIAG_BC_S_GE
:
462 case INET_DIAG_BC_S_LE
:
463 case INET_DIAG_BC_D_GE
:
464 case INET_DIAG_BC_D_LE
:
465 case INET_DIAG_BC_JMP
:
466 if (op
->no
< 4 || op
->no
> len
+ 4 || op
->no
& 3)
469 !valid_cc(bytecode
, bytecode_len
, len
- op
->no
))
472 case INET_DIAG_BC_NOP
:
477 if (op
->yes
< 4 || op
->yes
> len
+ 4 || op
->yes
& 3)
482 return len
== 0 ? 0 : -EINVAL
;
485 static int inet_csk_diag_dump(struct sock
*sk
,
487 struct netlink_callback
*cb
)
489 struct inet_diag_req
*r
= NLMSG_DATA(cb
->nlh
);
491 if (nlmsg_attrlen(cb
->nlh
, sizeof(*r
))) {
492 struct inet_diag_entry entry
;
493 const struct nlattr
*bc
= nlmsg_find_attr(cb
->nlh
,
495 INET_DIAG_REQ_BYTECODE
);
496 struct inet_sock
*inet
= inet_sk(sk
);
498 entry
.family
= sk
->sk_family
;
499 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
500 if (entry
.family
== AF_INET6
) {
501 struct ipv6_pinfo
*np
= inet6_sk(sk
);
503 entry
.saddr
= np
->rcv_saddr
.s6_addr32
;
504 entry
.daddr
= np
->daddr
.s6_addr32
;
508 entry
.saddr
= &inet
->inet_rcv_saddr
;
509 entry
.daddr
= &inet
->inet_daddr
;
511 entry
.sport
= inet
->inet_num
;
512 entry
.dport
= ntohs(inet
->inet_dport
);
513 entry
.userlocks
= sk
->sk_userlocks
;
515 if (!inet_diag_bc_run(nla_data(bc
), nla_len(bc
), &entry
))
519 return inet_csk_diag_fill(sk
, skb
, r
->idiag_ext
,
520 NETLINK_CB(cb
->skb
).pid
,
521 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
, cb
->nlh
);
524 static int inet_twsk_diag_dump(struct inet_timewait_sock
*tw
,
526 struct netlink_callback
*cb
)
528 struct inet_diag_req
*r
= NLMSG_DATA(cb
->nlh
);
530 if (nlmsg_attrlen(cb
->nlh
, sizeof(*r
))) {
531 struct inet_diag_entry entry
;
532 const struct nlattr
*bc
= nlmsg_find_attr(cb
->nlh
,
534 INET_DIAG_REQ_BYTECODE
);
536 entry
.family
= tw
->tw_family
;
537 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
538 if (tw
->tw_family
== AF_INET6
) {
539 struct inet6_timewait_sock
*tw6
=
540 inet6_twsk((struct sock
*)tw
);
541 entry
.saddr
= tw6
->tw_v6_rcv_saddr
.s6_addr32
;
542 entry
.daddr
= tw6
->tw_v6_daddr
.s6_addr32
;
546 entry
.saddr
= &tw
->tw_rcv_saddr
;
547 entry
.daddr
= &tw
->tw_daddr
;
549 entry
.sport
= tw
->tw_num
;
550 entry
.dport
= ntohs(tw
->tw_dport
);
553 if (!inet_diag_bc_run(nla_data(bc
), nla_len(bc
), &entry
))
557 return inet_twsk_diag_fill(tw
, skb
, r
->idiag_ext
,
558 NETLINK_CB(cb
->skb
).pid
,
559 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
, cb
->nlh
);
562 static int inet_diag_fill_req(struct sk_buff
*skb
, struct sock
*sk
,
563 struct request_sock
*req
, u32 pid
, u32 seq
,
564 const struct nlmsghdr
*unlh
)
566 const struct inet_request_sock
*ireq
= inet_rsk(req
);
567 struct inet_sock
*inet
= inet_sk(sk
);
568 unsigned char *b
= skb_tail_pointer(skb
);
569 struct inet_diag_msg
*r
;
570 struct nlmsghdr
*nlh
;
573 nlh
= NLMSG_PUT(skb
, pid
, seq
, unlh
->nlmsg_type
, sizeof(*r
));
574 nlh
->nlmsg_flags
= NLM_F_MULTI
;
577 r
->idiag_family
= sk
->sk_family
;
578 r
->idiag_state
= TCP_SYN_RECV
;
580 r
->idiag_retrans
= req
->retrans
;
582 r
->id
.idiag_if
= sk
->sk_bound_dev_if
;
583 r
->id
.idiag_cookie
[0] = (u32
)(unsigned long)req
;
584 r
->id
.idiag_cookie
[1] = (u32
)(((unsigned long)req
>> 31) >> 1);
586 tmo
= req
->expires
- jiffies
;
590 r
->id
.idiag_sport
= inet
->inet_sport
;
591 r
->id
.idiag_dport
= ireq
->rmt_port
;
592 r
->id
.idiag_src
[0] = ireq
->loc_addr
;
593 r
->id
.idiag_dst
[0] = ireq
->rmt_addr
;
594 r
->idiag_expires
= jiffies_to_msecs(tmo
);
597 r
->idiag_uid
= sock_i_uid(sk
);
599 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
600 if (r
->idiag_family
== AF_INET6
) {
601 ipv6_addr_copy((struct in6_addr
*)r
->id
.idiag_src
,
602 &inet6_rsk(req
)->loc_addr
);
603 ipv6_addr_copy((struct in6_addr
*)r
->id
.idiag_dst
,
604 &inet6_rsk(req
)->rmt_addr
);
607 nlh
->nlmsg_len
= skb_tail_pointer(skb
) - b
;
616 static int inet_diag_dump_reqs(struct sk_buff
*skb
, struct sock
*sk
,
617 struct netlink_callback
*cb
)
619 struct inet_diag_entry entry
;
620 struct inet_diag_req
*r
= NLMSG_DATA(cb
->nlh
);
621 struct inet_connection_sock
*icsk
= inet_csk(sk
);
622 struct listen_sock
*lopt
;
623 const struct nlattr
*bc
= NULL
;
624 struct inet_sock
*inet
= inet_sk(sk
);
626 int reqnum
, s_reqnum
;
630 s_reqnum
= cb
->args
[4];
635 entry
.family
= sk
->sk_family
;
637 read_lock_bh(&icsk
->icsk_accept_queue
.syn_wait_lock
);
639 lopt
= icsk
->icsk_accept_queue
.listen_opt
;
640 if (!lopt
|| !lopt
->qlen
)
643 if (nlmsg_attrlen(cb
->nlh
, sizeof(*r
))) {
644 bc
= nlmsg_find_attr(cb
->nlh
, sizeof(*r
),
645 INET_DIAG_REQ_BYTECODE
);
646 entry
.sport
= inet
->inet_num
;
647 entry
.userlocks
= sk
->sk_userlocks
;
650 for (j
= s_j
; j
< lopt
->nr_table_entries
; j
++) {
651 struct request_sock
*req
, *head
= lopt
->syn_table
[j
];
654 for (req
= head
; req
; reqnum
++, req
= req
->dl_next
) {
655 struct inet_request_sock
*ireq
= inet_rsk(req
);
657 if (reqnum
< s_reqnum
)
659 if (r
->id
.idiag_dport
!= ireq
->rmt_port
&&
665 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
666 (entry
.family
== AF_INET6
) ?
667 inet6_rsk(req
)->loc_addr
.s6_addr32
:
671 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
672 (entry
.family
== AF_INET6
) ?
673 inet6_rsk(req
)->rmt_addr
.s6_addr32
:
676 entry
.dport
= ntohs(ireq
->rmt_port
);
678 if (!inet_diag_bc_run(nla_data(bc
),
679 nla_len(bc
), &entry
))
683 err
= inet_diag_fill_req(skb
, sk
, req
,
684 NETLINK_CB(cb
->skb
).pid
,
685 cb
->nlh
->nlmsg_seq
, cb
->nlh
);
688 cb
->args
[4] = reqnum
;
697 read_unlock_bh(&icsk
->icsk_accept_queue
.syn_wait_lock
);
702 static int inet_diag_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
706 struct inet_diag_req
*r
= NLMSG_DATA(cb
->nlh
);
707 const struct inet_diag_handler
*handler
;
708 struct inet_hashinfo
*hashinfo
;
710 handler
= inet_diag_lock_handler(cb
->nlh
->nlmsg_type
);
714 hashinfo
= handler
->idiag_hashinfo
;
717 s_num
= num
= cb
->args
[2];
719 if (cb
->args
[0] == 0) {
720 if (!(r
->idiag_states
& (TCPF_LISTEN
| TCPF_SYN_RECV
)))
723 for (i
= s_i
; i
< INET_LHTABLE_SIZE
; i
++) {
725 struct hlist_nulls_node
*node
;
726 struct inet_listen_hashbucket
*ilb
;
729 ilb
= &hashinfo
->listening_hash
[i
];
730 spin_lock_bh(&ilb
->lock
);
731 sk_nulls_for_each(sk
, node
, &ilb
->head
) {
732 struct inet_sock
*inet
= inet_sk(sk
);
739 if (r
->id
.idiag_sport
!= inet
->inet_sport
&&
743 if (!(r
->idiag_states
& TCPF_LISTEN
) ||
748 if (inet_csk_diag_dump(sk
, skb
, cb
) < 0) {
749 spin_unlock_bh(&ilb
->lock
);
754 if (!(r
->idiag_states
& TCPF_SYN_RECV
))
757 if (inet_diag_dump_reqs(skb
, sk
, cb
) < 0) {
758 spin_unlock_bh(&ilb
->lock
);
767 spin_unlock_bh(&ilb
->lock
);
775 s_i
= num
= s_num
= 0;
778 if (!(r
->idiag_states
& ~(TCPF_LISTEN
| TCPF_SYN_RECV
)))
781 for (i
= s_i
; i
<= hashinfo
->ehash_mask
; i
++) {
782 struct inet_ehash_bucket
*head
= &hashinfo
->ehash
[i
];
783 spinlock_t
*lock
= inet_ehash_lockp(hashinfo
, i
);
785 struct hlist_nulls_node
*node
;
789 if (hlist_nulls_empty(&head
->chain
) &&
790 hlist_nulls_empty(&head
->twchain
))
797 sk_nulls_for_each(sk
, node
, &head
->chain
) {
798 struct inet_sock
*inet
= inet_sk(sk
);
802 if (!(r
->idiag_states
& (1 << sk
->sk_state
)))
804 if (r
->id
.idiag_sport
!= inet
->inet_sport
&&
807 if (r
->id
.idiag_dport
!= inet
->inet_dport
&&
810 if (inet_csk_diag_dump(sk
, skb
, cb
) < 0) {
811 spin_unlock_bh(lock
);
818 if (r
->idiag_states
& TCPF_TIME_WAIT
) {
819 struct inet_timewait_sock
*tw
;
821 inet_twsk_for_each(tw
, node
,
826 if (r
->id
.idiag_sport
!= tw
->tw_sport
&&
829 if (r
->id
.idiag_dport
!= tw
->tw_dport
&&
832 if (inet_twsk_diag_dump(tw
, skb
, cb
) < 0) {
833 spin_unlock_bh(lock
);
840 spin_unlock_bh(lock
);
847 inet_diag_unlock_handler(handler
);
851 static int inet_diag_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
853 int hdrlen
= sizeof(struct inet_diag_req
);
855 if (nlh
->nlmsg_type
>= INET_DIAG_GETSOCK_MAX
||
856 nlmsg_len(nlh
) < hdrlen
)
859 if (nlh
->nlmsg_flags
& NLM_F_DUMP
) {
860 if (nlmsg_attrlen(nlh
, hdrlen
)) {
863 attr
= nlmsg_find_attr(nlh
, hdrlen
,
864 INET_DIAG_REQ_BYTECODE
);
866 nla_len(attr
) < sizeof(struct inet_diag_bc_op
) ||
867 inet_diag_bc_audit(nla_data(attr
), nla_len(attr
)))
871 return netlink_dump_start(idiagnl
, skb
, nlh
,
872 inet_diag_dump
, NULL
, 0);
875 return inet_diag_get_exact(skb
, nlh
);
878 static DEFINE_MUTEX(inet_diag_mutex
);
880 static void inet_diag_rcv(struct sk_buff
*skb
)
882 mutex_lock(&inet_diag_mutex
);
883 netlink_rcv_skb(skb
, &inet_diag_rcv_msg
);
884 mutex_unlock(&inet_diag_mutex
);
887 int inet_diag_register(const struct inet_diag_handler
*h
)
889 const __u16 type
= h
->idiag_type
;
892 if (type
>= INET_DIAG_GETSOCK_MAX
)
895 mutex_lock(&inet_diag_table_mutex
);
897 if (inet_diag_table
[type
] == NULL
) {
898 inet_diag_table
[type
] = h
;
901 mutex_unlock(&inet_diag_table_mutex
);
905 EXPORT_SYMBOL_GPL(inet_diag_register
);
907 void inet_diag_unregister(const struct inet_diag_handler
*h
)
909 const __u16 type
= h
->idiag_type
;
911 if (type
>= INET_DIAG_GETSOCK_MAX
)
914 mutex_lock(&inet_diag_table_mutex
);
915 inet_diag_table
[type
] = NULL
;
916 mutex_unlock(&inet_diag_table_mutex
);
918 EXPORT_SYMBOL_GPL(inet_diag_unregister
);
920 static int __init
inet_diag_init(void)
922 const int inet_diag_table_size
= (INET_DIAG_GETSOCK_MAX
*
923 sizeof(struct inet_diag_handler
*));
926 inet_diag_table
= kzalloc(inet_diag_table_size
, GFP_KERNEL
);
927 if (!inet_diag_table
)
930 idiagnl
= netlink_kernel_create(&init_net
, NETLINK_INET_DIAG
, 0,
931 inet_diag_rcv
, NULL
, THIS_MODULE
);
938 kfree(inet_diag_table
);
942 static void __exit
inet_diag_exit(void)
944 netlink_kernel_release(idiagnl
);
945 kfree(inet_diag_table
);
948 module_init(inet_diag_init
);
949 module_exit(inet_diag_exit
);
950 MODULE_LICENSE("GPL");
951 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK
, NETLINK_INET_DIAG
);