2 * inet_diag.c Module for monitoring INET transport protocols sockets.
4 * Version: $Id: inet_diag.c,v 1.3 2002/02/01 22:01:04 davem Exp $
6 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
14 #include <linux/config.h>
15 #include <linux/module.h>
16 #include <linux/types.h>
17 #include <linux/fcntl.h>
18 #include <linux/random.h>
19 #include <linux/cache.h>
20 #include <linux/init.h>
21 #include <linux/time.h>
26 #include <net/inet_common.h>
27 #include <net/inet_connection_sock.h>
28 #include <net/inet_hashtables.h>
29 #include <net/inet_timewait_sock.h>
30 #include <net/inet6_hashtables.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 int inet_csk_diag_fill(struct sock *sk,
55 int ext, u32 pid, u32 seq, u16 nlmsg_flags,
56 const struct nlmsghdr *unlh)
58 const struct inet_sock *inet = inet_sk(sk);
59 const struct inet_connection_sock *icsk = inet_csk(sk);
60 struct inet_diag_msg *r;
63 struct inet_diag_meminfo *minfo = NULL;
64 unsigned char *b = skb->tail;
65 const struct inet_diag_handler *handler;
67 handler = inet_diag_table[unlh->nlmsg_type];
68 BUG_ON(handler == NULL);
70 nlh = NLMSG_PUT(skb, pid, seq, unlh->nlmsg_type, sizeof(*r));
71 nlh->nlmsg_flags = nlmsg_flags;
74 BUG_ON(sk->sk_state == TCP_TIME_WAIT);
76 if (ext & (1 << (INET_DIAG_MEMINFO - 1)))
77 minfo = INET_DIAG_PUT(skb, INET_DIAG_MEMINFO, sizeof(*minfo));
79 if (ext & (1 << (INET_DIAG_INFO - 1)))
80 info = INET_DIAG_PUT(skb, INET_DIAG_INFO,
81 handler->idiag_info_size);
83 if ((ext & (1 << (INET_DIAG_CONG - 1))) && icsk->icsk_ca_ops) {
84 const size_t len = strlen(icsk->icsk_ca_ops->name);
86 strcpy(INET_DIAG_PUT(skb, INET_DIAG_CONG, len + 1),
87 icsk->icsk_ca_ops->name);
90 r->idiag_family = sk->sk_family;
91 r->idiag_state = sk->sk_state;
95 r->id.idiag_if = sk->sk_bound_dev_if;
96 r->id.idiag_cookie[0] = (u32)(unsigned long)sk;
97 r->id.idiag_cookie[1] = (u32)(((unsigned long)sk >> 31) >> 1);
99 r->id.idiag_sport = inet->sport;
100 r->id.idiag_dport = inet->dport;
101 r->id.idiag_src[0] = inet->rcv_saddr;
102 r->id.idiag_dst[0] = inet->daddr;
104 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
105 if (r->idiag_family == AF_INET6) {
106 struct ipv6_pinfo *np = inet6_sk(sk);
108 ipv6_addr_copy((struct in6_addr *)r->id.idiag_src,
110 ipv6_addr_copy((struct in6_addr *)r->id.idiag_dst,
115 #define EXPIRES_IN_MS(tmo) ((tmo - jiffies) * 1000 + HZ - 1) / HZ
117 if (icsk->icsk_pending == ICSK_TIME_RETRANS) {
119 r->idiag_retrans = icsk->icsk_retransmits;
120 r->idiag_expires = EXPIRES_IN_MS(icsk->icsk_timeout);
121 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
123 r->idiag_retrans = icsk->icsk_probes_out;
124 r->idiag_expires = EXPIRES_IN_MS(icsk->icsk_timeout);
125 } else if (timer_pending(&sk->sk_timer)) {
127 r->idiag_retrans = icsk->icsk_probes_out;
128 r->idiag_expires = EXPIRES_IN_MS(sk->sk_timer.expires);
131 r->idiag_expires = 0;
135 r->idiag_uid = sock_i_uid(sk);
136 r->idiag_inode = sock_i_ino(sk);
139 minfo->idiag_rmem = atomic_read(&sk->sk_rmem_alloc);
140 minfo->idiag_wmem = sk->sk_wmem_queued;
141 minfo->idiag_fmem = sk->sk_forward_alloc;
142 minfo->idiag_tmem = atomic_read(&sk->sk_wmem_alloc);
145 handler->idiag_get_info(sk, r, info);
147 if (sk->sk_state < TCP_TIME_WAIT &&
148 icsk->icsk_ca_ops && icsk->icsk_ca_ops->get_info)
149 icsk->icsk_ca_ops->get_info(sk, ext, skb);
151 nlh->nlmsg_len = skb->tail - b;
156 skb_trim(skb, b - skb->data);
160 static int inet_twsk_diag_fill(struct inet_timewait_sock *tw,
161 struct sk_buff *skb, int ext, u32 pid,
162 u32 seq, u16 nlmsg_flags,
163 const struct nlmsghdr *unlh)
166 struct inet_diag_msg *r;
167 const unsigned char *previous_tail = skb->tail;
168 struct nlmsghdr *nlh = NLMSG_PUT(skb, pid, seq,
169 unlh->nlmsg_type, sizeof(*r));
172 BUG_ON(tw->tw_state != TCP_TIME_WAIT);
174 nlh->nlmsg_flags = nlmsg_flags;
176 tmo = tw->tw_ttd - jiffies;
180 r->idiag_family = tw->tw_family;
181 r->idiag_state = tw->tw_state;
183 r->idiag_retrans = 0;
184 r->id.idiag_if = tw->tw_bound_dev_if;
185 r->id.idiag_cookie[0] = (u32)(unsigned long)tw;
186 r->id.idiag_cookie[1] = (u32)(((unsigned long)tw >> 31) >> 1);
187 r->id.idiag_sport = tw->tw_sport;
188 r->id.idiag_dport = tw->tw_dport;
189 r->id.idiag_src[0] = tw->tw_rcv_saddr;
190 r->id.idiag_dst[0] = tw->tw_daddr;
191 r->idiag_state = tw->tw_substate;
193 r->idiag_expires = (tmo * 1000 + HZ - 1) / HZ;
198 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
199 if (tw->tw_family == AF_INET6) {
200 const struct inet6_timewait_sock *tw6 =
201 inet6_twsk((struct sock *)tw);
203 ipv6_addr_copy((struct in6_addr *)r->id.idiag_src,
204 &tw6->tw_v6_rcv_saddr);
205 ipv6_addr_copy((struct in6_addr *)r->id.idiag_dst,
209 nlh->nlmsg_len = skb->tail - previous_tail;
212 skb_trim(skb, previous_tail - skb->data);
216 static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
217 int ext, u32 pid, u32 seq, u16 nlmsg_flags,
218 const struct nlmsghdr *unlh)
220 if (sk->sk_state == TCP_TIME_WAIT)
221 return inet_twsk_diag_fill((struct inet_timewait_sock *)sk,
222 skb, ext, pid, seq, nlmsg_flags,
224 return inet_csk_diag_fill(sk, skb, ext, pid, seq, nlmsg_flags, unlh);
227 static int inet_diag_get_exact(struct sk_buff *in_skb,
228 const struct nlmsghdr *nlh)
232 struct inet_diag_req *req = NLMSG_DATA(nlh);
234 struct inet_hashinfo *hashinfo;
235 const struct inet_diag_handler *handler;
237 handler = inet_diag_table[nlh->nlmsg_type];
238 BUG_ON(handler == NULL);
239 hashinfo = handler->idiag_hashinfo;
241 if (req->idiag_family == AF_INET) {
242 sk = inet_lookup(hashinfo, req->id.idiag_dst[0],
243 req->id.idiag_dport, req->id.idiag_src[0],
244 req->id.idiag_sport, req->id.idiag_if);
246 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
247 else if (req->idiag_family == AF_INET6) {
248 sk = inet6_lookup(hashinfo,
249 (struct in6_addr *)req->id.idiag_dst,
251 (struct in6_addr *)req->id.idiag_src,
264 if ((req->id.idiag_cookie[0] != INET_DIAG_NOCOOKIE ||
265 req->id.idiag_cookie[1] != INET_DIAG_NOCOOKIE) &&
266 ((u32)(unsigned long)sk != req->id.idiag_cookie[0] ||
267 (u32)((((unsigned long)sk) >> 31) >> 1) != req->id.idiag_cookie[1]))
271 rep = alloc_skb(NLMSG_SPACE((sizeof(struct inet_diag_msg) +
272 sizeof(struct inet_diag_meminfo) +
273 handler->idiag_info_size + 64)),
278 if (sk_diag_fill(sk, rep, req->idiag_ext,
279 NETLINK_CB(in_skb).pid,
280 nlh->nlmsg_seq, 0, nlh) <= 0)
283 err = netlink_unicast(idiagnl, rep, NETLINK_CB(in_skb).pid,
290 if (sk->sk_state == TCP_TIME_WAIT)
291 inet_twsk_put((struct inet_timewait_sock *)sk);
298 static int bitstring_match(const u32 *a1, const u32 *a2, int bits)
300 int words = bits >> 5;
305 if (memcmp(a1, a2, words << 2))
315 mask = htonl((0xffffffff) << (32 - bits));
317 if ((w1 ^ w2) & mask)
325 static int inet_diag_bc_run(const void *bc, int len,
326 const struct inet_diag_entry *entry)
330 const struct inet_diag_bc_op *op = bc;
333 case INET_DIAG_BC_NOP:
335 case INET_DIAG_BC_JMP:
338 case INET_DIAG_BC_S_GE:
339 yes = entry->sport >= op[1].no;
341 case INET_DIAG_BC_S_LE:
342 yes = entry->dport <= op[1].no;
344 case INET_DIAG_BC_D_GE:
345 yes = entry->dport >= op[1].no;
347 case INET_DIAG_BC_D_LE:
348 yes = entry->dport <= op[1].no;
350 case INET_DIAG_BC_AUTO:
351 yes = !(entry->userlocks & SOCK_BINDPORT_LOCK);
353 case INET_DIAG_BC_S_COND:
354 case INET_DIAG_BC_D_COND: {
355 struct inet_diag_hostcond *cond;
358 cond = (struct inet_diag_hostcond *)(op + 1);
359 if (cond->port != -1 &&
360 cond->port != (op->code == INET_DIAG_BC_S_COND ?
361 entry->sport : entry->dport)) {
366 if (cond->prefix_len == 0)
369 if (op->code == INET_DIAG_BC_S_COND)
374 if (bitstring_match(addr, cond->addr,
377 if (entry->family == AF_INET6 &&
378 cond->family == AF_INET) {
379 if (addr[0] == 0 && addr[1] == 0 &&
380 addr[2] == htonl(0xffff) &&
381 bitstring_match(addr + 3, cond->addr,
401 static int valid_cc(const void *bc, int len, int cc)
404 const struct inet_diag_bc_op *op = bc;
418 static int inet_diag_bc_audit(const void *bytecode, int bytecode_len)
420 const unsigned char *bc = bytecode;
421 int len = bytecode_len;
424 struct inet_diag_bc_op *op = (struct inet_diag_bc_op *)bc;
426 //printk("BC: %d %d %d {%d} / %d\n", op->code, op->yes, op->no, op[1].no, len);
428 case INET_DIAG_BC_AUTO:
429 case INET_DIAG_BC_S_COND:
430 case INET_DIAG_BC_D_COND:
431 case INET_DIAG_BC_S_GE:
432 case INET_DIAG_BC_S_LE:
433 case INET_DIAG_BC_D_GE:
434 case INET_DIAG_BC_D_LE:
435 if (op->yes < 4 || op->yes > len + 4)
437 case INET_DIAG_BC_JMP:
438 if (op->no < 4 || op->no > len + 4)
441 !valid_cc(bytecode, bytecode_len, len - op->no))
444 case INET_DIAG_BC_NOP:
445 if (op->yes < 4 || op->yes > len + 4)
454 return len == 0 ? 0 : -EINVAL;
457 static int inet_csk_diag_dump(struct sock *sk,
459 struct netlink_callback *cb)
461 struct inet_diag_req *r = NLMSG_DATA(cb->nlh);
463 if (cb->nlh->nlmsg_len > 4 + NLMSG_SPACE(sizeof(*r))) {
464 struct inet_diag_entry entry;
465 struct rtattr *bc = (struct rtattr *)(r + 1);
466 struct inet_sock *inet = inet_sk(sk);
468 entry.family = sk->sk_family;
469 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
470 if (entry.family == AF_INET6) {
471 struct ipv6_pinfo *np = inet6_sk(sk);
473 entry.saddr = np->rcv_saddr.s6_addr32;
474 entry.daddr = np->daddr.s6_addr32;
478 entry.saddr = &inet->rcv_saddr;
479 entry.daddr = &inet->daddr;
481 entry.sport = inet->num;
482 entry.dport = ntohs(inet->dport);
483 entry.userlocks = sk->sk_userlocks;
485 if (!inet_diag_bc_run(RTA_DATA(bc), RTA_PAYLOAD(bc), &entry))
489 return inet_csk_diag_fill(sk, skb, r->idiag_ext,
490 NETLINK_CB(cb->skb).pid,
491 cb->nlh->nlmsg_seq, NLM_F_MULTI, cb->nlh);
494 static int inet_twsk_diag_dump(struct inet_timewait_sock *tw,
496 struct netlink_callback *cb)
498 struct inet_diag_req *r = NLMSG_DATA(cb->nlh);
500 if (cb->nlh->nlmsg_len > 4 + NLMSG_SPACE(sizeof(*r))) {
501 struct inet_diag_entry entry;
502 struct rtattr *bc = (struct rtattr *)(r + 1);
504 entry.family = tw->tw_family;
505 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
506 if (tw->tw_family == AF_INET6) {
507 struct inet6_timewait_sock *tw6 =
508 inet6_twsk((struct sock *)tw);
509 entry.saddr = tw6->tw_v6_rcv_saddr.s6_addr32;
510 entry.daddr = tw6->tw_v6_daddr.s6_addr32;
514 entry.saddr = &tw->tw_rcv_saddr;
515 entry.daddr = &tw->tw_daddr;
517 entry.sport = tw->tw_num;
518 entry.dport = ntohs(tw->tw_dport);
521 if (!inet_diag_bc_run(RTA_DATA(bc), RTA_PAYLOAD(bc), &entry))
525 return inet_twsk_diag_fill(tw, skb, r->idiag_ext,
526 NETLINK_CB(cb->skb).pid,
527 cb->nlh->nlmsg_seq, NLM_F_MULTI, cb->nlh);
530 static int inet_diag_fill_req(struct sk_buff *skb, struct sock *sk,
531 struct request_sock *req, u32 pid, u32 seq,
532 const struct nlmsghdr *unlh)
534 const struct inet_request_sock *ireq = inet_rsk(req);
535 struct inet_sock *inet = inet_sk(sk);
536 unsigned char *b = skb->tail;
537 struct inet_diag_msg *r;
538 struct nlmsghdr *nlh;
541 nlh = NLMSG_PUT(skb, pid, seq, unlh->nlmsg_type, sizeof(*r));
542 nlh->nlmsg_flags = NLM_F_MULTI;
545 r->idiag_family = sk->sk_family;
546 r->idiag_state = TCP_SYN_RECV;
548 r->idiag_retrans = req->retrans;
550 r->id.idiag_if = sk->sk_bound_dev_if;
551 r->id.idiag_cookie[0] = (u32)(unsigned long)req;
552 r->id.idiag_cookie[1] = (u32)(((unsigned long)req >> 31) >> 1);
554 tmo = req->expires - jiffies;
558 r->id.idiag_sport = inet->sport;
559 r->id.idiag_dport = ireq->rmt_port;
560 r->id.idiag_src[0] = ireq->loc_addr;
561 r->id.idiag_dst[0] = ireq->rmt_addr;
562 r->idiag_expires = jiffies_to_msecs(tmo);
565 r->idiag_uid = sock_i_uid(sk);
567 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
568 if (r->idiag_family == AF_INET6) {
569 ipv6_addr_copy((struct in6_addr *)r->id.idiag_src,
570 &inet6_rsk(req)->loc_addr);
571 ipv6_addr_copy((struct in6_addr *)r->id.idiag_dst,
572 &inet6_rsk(req)->rmt_addr);
575 nlh->nlmsg_len = skb->tail - b;
580 skb_trim(skb, b - skb->data);
584 static int inet_diag_dump_reqs(struct sk_buff *skb, struct sock *sk,
585 struct netlink_callback *cb)
587 struct inet_diag_entry entry;
588 struct inet_diag_req *r = NLMSG_DATA(cb->nlh);
589 struct inet_connection_sock *icsk = inet_csk(sk);
590 struct listen_sock *lopt;
591 struct rtattr *bc = NULL;
592 struct inet_sock *inet = inet_sk(sk);
594 int reqnum, s_reqnum;
598 s_reqnum = cb->args[4];
603 entry.family = sk->sk_family;
605 read_lock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
607 lopt = icsk->icsk_accept_queue.listen_opt;
608 if (!lopt || !lopt->qlen)
611 if (cb->nlh->nlmsg_len > 4 + NLMSG_SPACE(sizeof(*r))) {
612 bc = (struct rtattr *)(r + 1);
613 entry.sport = inet->num;
614 entry.userlocks = sk->sk_userlocks;
617 for (j = s_j; j < lopt->nr_table_entries; j++) {
618 struct request_sock *req, *head = lopt->syn_table[j];
621 for (req = head; req; reqnum++, req = req->dl_next) {
622 struct inet_request_sock *ireq = inet_rsk(req);
624 if (reqnum < s_reqnum)
626 if (r->id.idiag_dport != ireq->rmt_port &&
632 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
633 (entry.family == AF_INET6) ?
634 inet6_rsk(req)->loc_addr.s6_addr32 :
638 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
639 (entry.family == AF_INET6) ?
640 inet6_rsk(req)->rmt_addr.s6_addr32 :
643 entry.dport = ntohs(ireq->rmt_port);
645 if (!inet_diag_bc_run(RTA_DATA(bc),
646 RTA_PAYLOAD(bc), &entry))
650 err = inet_diag_fill_req(skb, sk, req,
651 NETLINK_CB(cb->skb).pid,
652 cb->nlh->nlmsg_seq, cb->nlh);
655 cb->args[4] = reqnum;
664 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
669 static int inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
673 struct inet_diag_req *r = NLMSG_DATA(cb->nlh);
674 const struct inet_diag_handler *handler;
675 struct inet_hashinfo *hashinfo;
677 handler = inet_diag_table[cb->nlh->nlmsg_type];
678 BUG_ON(handler == NULL);
679 hashinfo = handler->idiag_hashinfo;
682 s_num = num = cb->args[2];
684 if (cb->args[0] == 0) {
685 if (!(r->idiag_states & (TCPF_LISTEN | TCPF_SYN_RECV)))
688 inet_listen_lock(hashinfo);
689 for (i = s_i; i < INET_LHTABLE_SIZE; i++) {
691 struct hlist_node *node;
694 sk_for_each(sk, node, &hashinfo->listening_hash[i]) {
695 struct inet_sock *inet = inet_sk(sk);
702 if (r->id.idiag_sport != inet->sport &&
706 if (!(r->idiag_states & TCPF_LISTEN) ||
711 if (inet_csk_diag_dump(sk, skb, cb) < 0) {
712 inet_listen_unlock(hashinfo);
717 if (!(r->idiag_states & TCPF_SYN_RECV))
720 if (inet_diag_dump_reqs(skb, sk, cb) < 0) {
721 inet_listen_unlock(hashinfo);
735 inet_listen_unlock(hashinfo);
738 s_i = num = s_num = 0;
741 if (!(r->idiag_states & ~(TCPF_LISTEN | TCPF_SYN_RECV)))
744 for (i = s_i; i < hashinfo->ehash_size; i++) {
745 struct inet_ehash_bucket *head = &hashinfo->ehash[i];
747 struct hlist_node *node;
752 read_lock_bh(&head->lock);
754 sk_for_each(sk, node, &head->chain) {
755 struct inet_sock *inet = inet_sk(sk);
759 if (!(r->idiag_states & (1 << sk->sk_state)))
761 if (r->id.idiag_sport != inet->sport &&
764 if (r->id.idiag_dport != inet->dport &&
767 if (inet_csk_diag_dump(sk, skb, cb) < 0) {
768 read_unlock_bh(&head->lock);
775 if (r->idiag_states & TCPF_TIME_WAIT) {
776 struct inet_timewait_sock *tw;
778 inet_twsk_for_each(tw, node,
779 &hashinfo->ehash[i + hashinfo->ehash_size].chain) {
783 if (r->id.idiag_sport != tw->tw_sport &&
786 if (r->id.idiag_dport != tw->tw_dport &&
789 if (inet_twsk_diag_dump(tw, skb, cb) < 0) {
790 read_unlock_bh(&head->lock);
797 read_unlock_bh(&head->lock);
806 static inline int inet_diag_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
808 if (!(nlh->nlmsg_flags&NLM_F_REQUEST))
811 if (nlh->nlmsg_type >= INET_DIAG_GETSOCK_MAX)
814 if (inet_diag_table[nlh->nlmsg_type] == NULL)
817 if (NLMSG_LENGTH(sizeof(struct inet_diag_req)) > skb->len)
820 if (nlh->nlmsg_flags&NLM_F_DUMP) {
822 (4 + NLMSG_SPACE(sizeof(struct inet_diag_req)))) {
823 struct rtattr *rta = (void *)(NLMSG_DATA(nlh) +
824 sizeof(struct inet_diag_req));
825 if (rta->rta_type != INET_DIAG_REQ_BYTECODE ||
829 NLMSG_SPACE(sizeof(struct inet_diag_req))))
831 if (inet_diag_bc_audit(RTA_DATA(rta), RTA_PAYLOAD(rta)))
834 return netlink_dump_start(idiagnl, skb, nlh,
835 inet_diag_dump, NULL);
837 return inet_diag_get_exact(skb, nlh);
844 static inline void inet_diag_rcv_skb(struct sk_buff *skb)
846 if (skb->len >= NLMSG_SPACE(0)) {
848 struct nlmsghdr *nlh = (struct nlmsghdr *)skb->data;
850 if (nlh->nlmsg_len < sizeof(*nlh) ||
851 skb->len < nlh->nlmsg_len)
853 err = inet_diag_rcv_msg(skb, nlh);
854 if (err || nlh->nlmsg_flags & NLM_F_ACK)
855 netlink_ack(skb, nlh, err);
859 static void inet_diag_rcv(struct sock *sk, int len)
862 unsigned int qlen = skb_queue_len(&sk->sk_receive_queue);
864 while (qlen-- && (skb = skb_dequeue(&sk->sk_receive_queue))) {
865 inet_diag_rcv_skb(skb);
870 static DEFINE_SPINLOCK(inet_diag_register_lock);
872 int inet_diag_register(const struct inet_diag_handler *h)
874 const __u16 type = h->idiag_type;
877 if (type >= INET_DIAG_GETSOCK_MAX)
880 spin_lock(&inet_diag_register_lock);
882 if (inet_diag_table[type] == NULL) {
883 inet_diag_table[type] = h;
886 spin_unlock(&inet_diag_register_lock);
890 EXPORT_SYMBOL_GPL(inet_diag_register);
892 void inet_diag_unregister(const struct inet_diag_handler *h)
894 const __u16 type = h->idiag_type;
896 if (type >= INET_DIAG_GETSOCK_MAX)
899 spin_lock(&inet_diag_register_lock);
900 inet_diag_table[type] = NULL;
901 spin_unlock(&inet_diag_register_lock);
905 EXPORT_SYMBOL_GPL(inet_diag_unregister);
907 static int __init inet_diag_init(void)
909 const int inet_diag_table_size = (INET_DIAG_GETSOCK_MAX *
910 sizeof(struct inet_diag_handler *));
913 inet_diag_table = kmalloc(inet_diag_table_size, GFP_KERNEL);
914 if (!inet_diag_table)
917 memset(inet_diag_table, 0, inet_diag_table_size);
918 idiagnl = netlink_kernel_create(NETLINK_INET_DIAG, 0, inet_diag_rcv,
926 kfree(inet_diag_table);
930 static void __exit inet_diag_exit(void)
932 sock_release(idiagnl->sk_socket);
933 kfree(inet_diag_table);
936 module_init(inet_diag_init);
937 module_exit(inet_diag_exit);
938 MODULE_LICENSE("GPL");