inet_diag.c 27.2 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * inet_diag.c	Module for monitoring INET transport protocols sockets.
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11
 *
 * Authors:	Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
 *
 *	This program is free software; you can redistribute it and/or
 *      modify it under the terms of the GNU General Public License
 *      as published by the Free Software Foundation; either version
 *      2 of the License, or (at your option) any later version.
 */

12
#include <linux/kernel.h>
L
Linus Torvalds 已提交
13 14 15 16
#include <linux/module.h>
#include <linux/types.h>
#include <linux/fcntl.h>
#include <linux/random.h>
17
#include <linux/slab.h>
L
Linus Torvalds 已提交
18 19 20 21 22 23 24 25
#include <linux/cache.h>
#include <linux/init.h>
#include <linux/time.h>

#include <net/icmp.h>
#include <net/tcp.h>
#include <net/ipv6.h>
#include <net/inet_common.h>
26 27 28 29
#include <net/inet_connection_sock.h>
#include <net/inet_hashtables.h>
#include <net/inet_timewait_sock.h>
#include <net/inet6_hashtables.h>
30
#include <net/netlink.h>
L
Linus Torvalds 已提交
31 32 33 34

#include <linux/inet.h>
#include <linux/stddef.h>

35
#include <linux/inet_diag.h>
P
Pavel Emelyanov 已提交
36
#include <linux/sock_diag.h>
L
Linus Torvalds 已提交
37

38 39
static const struct inet_diag_handler **inet_diag_table;

40
struct inet_diag_entry {
A
Al Viro 已提交
41 42
	__be32 *saddr;
	__be32 *daddr;
L
Linus Torvalds 已提交
43 44 45 46 47 48
	u16 sport;
	u16 dport;
	u16 family;
	u16 userlocks;
};

49
static struct sock *sdiagnl;
L
Linus Torvalds 已提交
50

51
#define INET_DIAG_PUT(skb, attrtype, attrlen) \
52
	RTA_DATA(__RTA_PUT(skb, attrtype, attrlen))
L
Linus Torvalds 已提交
53

54 55
static DEFINE_MUTEX(inet_diag_table_mutex);

56
static const struct inet_diag_handler *inet_diag_lock_handler(int proto)
57
{
58
	if (!inet_diag_table[proto])
59
		request_module("net-pf-%d-proto-%d-type-%d", PF_NETLINK,
60
			       NETLINK_SOCK_DIAG, proto);
61 62

	mutex_lock(&inet_diag_table_mutex);
63
	if (!inet_diag_table[proto])
64 65
		return ERR_PTR(-ENOENT);

66
	return inet_diag_table[proto];
67 68 69 70 71 72 73 74
}

static inline void inet_diag_unlock_handler(
	const struct inet_diag_handler *handler)
{
	mutex_unlock(&inet_diag_table_mutex);
}

75
static int inet_csk_diag_fill(struct sock *sk,
76 77
			      struct sk_buff *skb, struct inet_diag_req *req,
			      u32 pid, u32 seq, u16 nlmsg_flags,
78
			      const struct nlmsghdr *unlh)
L
Linus Torvalds 已提交
79
{
80 81
	const struct inet_sock *inet = inet_sk(sk);
	const struct inet_connection_sock *icsk = inet_csk(sk);
82
	struct inet_diag_msg *r;
L
Linus Torvalds 已提交
83
	struct nlmsghdr  *nlh;
84
	void *info = NULL;
85
	struct inet_diag_meminfo  *minfo = NULL;
86
	unsigned char	 *b = skb_tail_pointer(skb);
87
	const struct inet_diag_handler *handler;
88
	int ext = req->idiag_ext;
89

90
	handler = inet_diag_table[req->sdiag_protocol];
91
	BUG_ON(handler == NULL);
L
Linus Torvalds 已提交
92

93
	nlh = NLMSG_PUT(skb, pid, seq, unlh->nlmsg_type, sizeof(*r));
L
Linus Torvalds 已提交
94
	nlh->nlmsg_flags = nlmsg_flags;
95

L
Linus Torvalds 已提交
96
	r = NLMSG_DATA(nlh);
97 98 99 100 101 102 103 104 105 106 107 108 109 110
	BUG_ON(sk->sk_state == TCP_TIME_WAIT);

	if (ext & (1 << (INET_DIAG_MEMINFO - 1)))
		minfo = INET_DIAG_PUT(skb, INET_DIAG_MEMINFO, sizeof(*minfo));

	if (ext & (1 << (INET_DIAG_INFO - 1)))
		info = INET_DIAG_PUT(skb, INET_DIAG_INFO,
				     handler->idiag_info_size);

	if ((ext & (1 << (INET_DIAG_CONG - 1))) && icsk->icsk_ca_ops) {
		const size_t len = strlen(icsk->icsk_ca_ops->name);

		strcpy(INET_DIAG_PUT(skb, INET_DIAG_CONG, len + 1),
		       icsk->icsk_ca_ops->name);
L
Linus Torvalds 已提交
111
	}
112

113 114 115 116
	r->idiag_family = sk->sk_family;
	r->idiag_state = sk->sk_state;
	r->idiag_timer = 0;
	r->idiag_retrans = 0;
L
Linus Torvalds 已提交
117

118 119 120
	r->id.idiag_if = sk->sk_bound_dev_if;
	r->id.idiag_cookie[0] = (u32)(unsigned long)sk;
	r->id.idiag_cookie[1] = (u32)(((unsigned long)sk >> 31) >> 1);
L
Linus Torvalds 已提交
121

E
Eric Dumazet 已提交
122 123 124 125
	r->id.idiag_sport = inet->inet_sport;
	r->id.idiag_dport = inet->inet_dport;
	r->id.idiag_src[0] = inet->inet_rcv_saddr;
	r->id.idiag_dst[0] = inet->inet_daddr;
L
Linus Torvalds 已提交
126

127 128 129 130 131 132
	/* IPv6 dual-stack sockets use inet->tos for IPv4 connections,
	 * hence this needs to be included regardless of socket family.
	 */
	if (ext & (1 << (INET_DIAG_TOS - 1)))
		RTA_PUT_U8(skb, INET_DIAG_TOS, inet->tos);

133
#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
134
	if (r->idiag_family == AF_INET6) {
135
		const struct ipv6_pinfo *np = inet6_sk(sk);
L
Linus Torvalds 已提交
136

A
Alexey Dobriyan 已提交
137 138
		*(struct in6_addr *)r->id.idiag_src = np->rcv_saddr;
		*(struct in6_addr *)r->id.idiag_dst = np->daddr;
139 140
		if (ext & (1 << (INET_DIAG_TCLASS - 1)))
			RTA_PUT_U8(skb, INET_DIAG_TCLASS, np->tclass);
L
Linus Torvalds 已提交
141 142 143
	}
#endif

144
#define EXPIRES_IN_MS(tmo)  DIV_ROUND_UP((tmo - jiffies) * 1000, HZ)
L
Linus Torvalds 已提交
145

146
	if (icsk->icsk_pending == ICSK_TIME_RETRANS) {
147 148 149
		r->idiag_timer = 1;
		r->idiag_retrans = icsk->icsk_retransmits;
		r->idiag_expires = EXPIRES_IN_MS(icsk->icsk_timeout);
150
	} else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
151 152 153
		r->idiag_timer = 4;
		r->idiag_retrans = icsk->icsk_probes_out;
		r->idiag_expires = EXPIRES_IN_MS(icsk->icsk_timeout);
L
Linus Torvalds 已提交
154
	} else if (timer_pending(&sk->sk_timer)) {
155 156 157
		r->idiag_timer = 2;
		r->idiag_retrans = icsk->icsk_probes_out;
		r->idiag_expires = EXPIRES_IN_MS(sk->sk_timer.expires);
L
Linus Torvalds 已提交
158
	} else {
159 160
		r->idiag_timer = 0;
		r->idiag_expires = 0;
L
Linus Torvalds 已提交
161 162
	}
#undef EXPIRES_IN_MS
163

164 165
	r->idiag_uid = sock_i_uid(sk);
	r->idiag_inode = sock_i_ino(sk);
L
Linus Torvalds 已提交
166 167

	if (minfo) {
168
		minfo->idiag_rmem = sk_rmem_alloc_get(sk);
169 170
		minfo->idiag_wmem = sk->sk_wmem_queued;
		minfo->idiag_fmem = sk->sk_forward_alloc;
171
		minfo->idiag_tmem = sk_wmem_alloc_get(sk);
L
Linus Torvalds 已提交
172 173
	}

174
	handler->idiag_get_info(sk, r, info);
L
Linus Torvalds 已提交
175

176 177 178
	if (sk->sk_state < TCP_TIME_WAIT &&
	    icsk->icsk_ca_ops && icsk->icsk_ca_ops->get_info)
		icsk->icsk_ca_ops->get_info(sk, ext, skb);
L
Linus Torvalds 已提交
179

180
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
L
Linus Torvalds 已提交
181 182
	return skb->len;

183
rtattr_failure:
L
Linus Torvalds 已提交
184
nlmsg_failure:
185
	nlmsg_trim(skb, b);
186
	return -EMSGSIZE;
L
Linus Torvalds 已提交
187 188
}

189
static int inet_twsk_diag_fill(struct inet_timewait_sock *tw,
190 191
			       struct sk_buff *skb, struct inet_diag_req *req,
			       u32 pid, u32 seq, u16 nlmsg_flags,
192 193 194 195
			       const struct nlmsghdr *unlh)
{
	long tmo;
	struct inet_diag_msg *r;
196
	const unsigned char *previous_tail = skb_tail_pointer(skb);
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
	struct nlmsghdr *nlh = NLMSG_PUT(skb, pid, seq,
					 unlh->nlmsg_type, sizeof(*r));

	r = NLMSG_DATA(nlh);
	BUG_ON(tw->tw_state != TCP_TIME_WAIT);

	nlh->nlmsg_flags = nlmsg_flags;

	tmo = tw->tw_ttd - jiffies;
	if (tmo < 0)
		tmo = 0;

	r->idiag_family	      = tw->tw_family;
	r->idiag_retrans      = 0;
	r->id.idiag_if	      = tw->tw_bound_dev_if;
	r->id.idiag_cookie[0] = (u32)(unsigned long)tw;
	r->id.idiag_cookie[1] = (u32)(((unsigned long)tw >> 31) >> 1);
	r->id.idiag_sport     = tw->tw_sport;
	r->id.idiag_dport     = tw->tw_dport;
	r->id.idiag_src[0]    = tw->tw_rcv_saddr;
	r->id.idiag_dst[0]    = tw->tw_daddr;
	r->idiag_state	      = tw->tw_substate;
	r->idiag_timer	      = 3;
220
	r->idiag_expires      = DIV_ROUND_UP(tmo * 1000, HZ);
221 222 223 224 225 226 227 228 229
	r->idiag_rqueue	      = 0;
	r->idiag_wqueue	      = 0;
	r->idiag_uid	      = 0;
	r->idiag_inode	      = 0;
#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
	if (tw->tw_family == AF_INET6) {
		const struct inet6_timewait_sock *tw6 =
						inet6_twsk((struct sock *)tw);

A
Alexey Dobriyan 已提交
230 231
		*(struct in6_addr *)r->id.idiag_src = tw6->tw_v6_rcv_saddr;
		*(struct in6_addr *)r->id.idiag_dst = tw6->tw_v6_daddr;
232 233
	}
#endif
234
	nlh->nlmsg_len = skb_tail_pointer(skb) - previous_tail;
235 236
	return skb->len;
nlmsg_failure:
237
	nlmsg_trim(skb, previous_tail);
238
	return -EMSGSIZE;
239 240
}

241
static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
242
			struct inet_diag_req *r, u32 pid, u32 seq, u16 nlmsg_flags,
243 244 245 246
			const struct nlmsghdr *unlh)
{
	if (sk->sk_state == TCP_TIME_WAIT)
		return inet_twsk_diag_fill((struct inet_timewait_sock *)sk,
247
					   skb, r, pid, seq, nlmsg_flags,
248
					   unlh);
249
	return inet_csk_diag_fill(sk, skb, r, pid, seq, nlmsg_flags, unlh);
250 251
}

252
static int inet_diag_get_exact(struct sk_buff *in_skb,
253 254
			       const struct nlmsghdr *nlh,
			       struct inet_diag_req *req)
L
Linus Torvalds 已提交
255 256 257 258
{
	int err;
	struct sock *sk;
	struct sk_buff *rep;
259 260 261
	struct inet_hashinfo *hashinfo;
	const struct inet_diag_handler *handler;

262
	handler = inet_diag_lock_handler(req->sdiag_protocol);
263 264 265 266
	if (IS_ERR(handler)) {
		err = PTR_ERR(handler);
		goto unlock;
	}
267

268
	hashinfo = handler->idiag_hashinfo;
269
	err = -EINVAL;
270

271
	if (req->sdiag_family == AF_INET) {
272
		sk = inet_lookup(&init_net, hashinfo, req->id.idiag_dst[0],
273 274
				 req->id.idiag_dport, req->id.idiag_src[0],
				 req->id.idiag_sport, req->id.idiag_if);
L
Linus Torvalds 已提交
275
	}
276
#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
277
	else if (req->sdiag_family == AF_INET6) {
278
		sk = inet6_lookup(&init_net, hashinfo,
279 280 281 282 283
				  (struct in6_addr *)req->id.idiag_dst,
				  req->id.idiag_dport,
				  (struct in6_addr *)req->id.idiag_src,
				  req->id.idiag_sport,
				  req->id.idiag_if);
L
Linus Torvalds 已提交
284 285 286
	}
#endif
	else {
287
		goto unlock;
L
Linus Torvalds 已提交
288 289
	}

290
	err = -ENOENT;
L
Linus Torvalds 已提交
291
	if (sk == NULL)
292
		goto unlock;
L
Linus Torvalds 已提交
293 294

	err = -ESTALE;
295 296 297 298
	if ((req->id.idiag_cookie[0] != INET_DIAG_NOCOOKIE ||
	     req->id.idiag_cookie[1] != INET_DIAG_NOCOOKIE) &&
	    ((u32)(unsigned long)sk != req->id.idiag_cookie[0] ||
	     (u32)((((unsigned long)sk) >> 31) >> 1) != req->id.idiag_cookie[1]))
L
Linus Torvalds 已提交
299 300 301
		goto out;

	err = -ENOMEM;
302 303
	rep = alloc_skb(NLMSG_SPACE((sizeof(struct inet_diag_msg) +
				     sizeof(struct inet_diag_meminfo) +
304 305
				     handler->idiag_info_size + 64)),
			GFP_KERNEL);
L
Linus Torvalds 已提交
306 307 308
	if (!rep)
		goto out;

309
	err = sk_diag_fill(sk, rep, req,
310 311 312 313 314 315 316
			   NETLINK_CB(in_skb).pid,
			   nlh->nlmsg_seq, 0, nlh);
	if (err < 0) {
		WARN_ON(err == -EMSGSIZE);
		kfree_skb(rep);
		goto out;
	}
317
	err = netlink_unicast(sdiagnl, rep, NETLINK_CB(in_skb).pid,
318
			      MSG_DONTWAIT);
L
Linus Torvalds 已提交
319 320 321 322 323 324
	if (err > 0)
		err = 0;

out:
	if (sk) {
		if (sk->sk_state == TCP_TIME_WAIT)
325
			inet_twsk_put((struct inet_timewait_sock *)sk);
L
Linus Torvalds 已提交
326 327 328
		else
			sock_put(sk);
	}
329 330
unlock:
	inet_diag_unlock_handler(handler);
L
Linus Torvalds 已提交
331 332 333
	return err;
}

A
Al Viro 已提交
334
static int bitstring_match(const __be32 *a1, const __be32 *a2, int bits)
L
Linus Torvalds 已提交
335 336 337 338 339 340 341 342 343 344
{
	int words = bits >> 5;

	bits &= 0x1f;

	if (words) {
		if (memcmp(a1, a2, words << 2))
			return 0;
	}
	if (bits) {
A
Al Viro 已提交
345 346
		__be32 w1, w2;
		__be32 mask;
L
Linus Torvalds 已提交
347 348 349 350 351 352 353 354 355 356 357 358 359 360

		w1 = a1[words];
		w2 = a2[words];

		mask = htonl((0xffffffff) << (32 - bits));

		if ((w1 ^ w2) & mask)
			return 0;
	}

	return 1;
}


361
static int inet_diag_bc_run(const void *bc, int len,
362
			    const struct inet_diag_entry *entry)
L
Linus Torvalds 已提交
363 364 365
{
	while (len > 0) {
		int yes = 1;
366
		const struct inet_diag_bc_op *op = bc;
L
Linus Torvalds 已提交
367 368

		switch (op->code) {
369
		case INET_DIAG_BC_NOP:
L
Linus Torvalds 已提交
370
			break;
371
		case INET_DIAG_BC_JMP:
L
Linus Torvalds 已提交
372 373
			yes = 0;
			break;
374
		case INET_DIAG_BC_S_GE:
L
Linus Torvalds 已提交
375 376
			yes = entry->sport >= op[1].no;
			break;
377
		case INET_DIAG_BC_S_LE:
378
			yes = entry->sport <= op[1].no;
L
Linus Torvalds 已提交
379
			break;
380
		case INET_DIAG_BC_D_GE:
L
Linus Torvalds 已提交
381 382
			yes = entry->dport >= op[1].no;
			break;
383
		case INET_DIAG_BC_D_LE:
L
Linus Torvalds 已提交
384 385
			yes = entry->dport <= op[1].no;
			break;
386
		case INET_DIAG_BC_AUTO:
L
Linus Torvalds 已提交
387 388
			yes = !(entry->userlocks & SOCK_BINDPORT_LOCK);
			break;
389
		case INET_DIAG_BC_S_COND:
390 391
		case INET_DIAG_BC_D_COND: {
			struct inet_diag_hostcond *cond;
A
Al Viro 已提交
392
			__be32 *addr;
L
Linus Torvalds 已提交
393

394
			cond = (struct inet_diag_hostcond *)(op + 1);
L
Linus Torvalds 已提交
395
			if (cond->port != -1 &&
396
			    cond->port != (op->code == INET_DIAG_BC_S_COND ?
L
Linus Torvalds 已提交
397 398 399 400
					     entry->sport : entry->dport)) {
				yes = 0;
				break;
			}
401

L
Linus Torvalds 已提交
402 403 404
			if (cond->prefix_len == 0)
				break;

405
			if (op->code == INET_DIAG_BC_S_COND)
L
Linus Torvalds 已提交
406 407 408 409
				addr = entry->saddr;
			else
				addr = entry->daddr;

410 411
			if (bitstring_match(addr, cond->addr,
					    cond->prefix_len))
L
Linus Torvalds 已提交
412 413 414 415 416
				break;
			if (entry->family == AF_INET6 &&
			    cond->family == AF_INET) {
				if (addr[0] == 0 && addr[1] == 0 &&
				    addr[2] == htonl(0xffff) &&
417
				    bitstring_match(addr + 3, cond->addr,
418
						    cond->prefix_len))
L
Linus Torvalds 已提交
419 420 421 422 423 424 425
					break;
			}
			yes = 0;
			break;
		}
		}

426
		if (yes) {
L
Linus Torvalds 已提交
427 428 429 430 431 432 433
			len -= op->yes;
			bc += op->yes;
		} else {
			len -= op->no;
			bc += op->no;
		}
	}
E
Eric Dumazet 已提交
434
	return len == 0;
L
Linus Torvalds 已提交
435 436 437 438 439
}

static int valid_cc(const void *bc, int len, int cc)
{
	while (len >= 0) {
440
		const struct inet_diag_bc_op *op = bc;
L
Linus Torvalds 已提交
441 442 443 444 445

		if (cc > len)
			return 0;
		if (cc == len)
			return 1;
446
		if (op->yes < 4 || op->yes & 3)
L
Linus Torvalds 已提交
447 448 449 450 451 452 453
			return 0;
		len -= op->yes;
		bc  += op->yes;
	}
	return 0;
}

454
static int inet_diag_bc_audit(const void *bytecode, int bytecode_len)
L
Linus Torvalds 已提交
455
{
456
	const void *bc = bytecode;
L
Linus Torvalds 已提交
457 458 459
	int  len = bytecode_len;

	while (len > 0) {
460
		const struct inet_diag_bc_op *op = bc;
L
Linus Torvalds 已提交
461 462 463

//printk("BC: %d %d %d {%d} / %d\n", op->code, op->yes, op->no, op[1].no, len);
		switch (op->code) {
464 465 466 467 468 469 470 471
		case INET_DIAG_BC_AUTO:
		case INET_DIAG_BC_S_COND:
		case INET_DIAG_BC_D_COND:
		case INET_DIAG_BC_S_GE:
		case INET_DIAG_BC_S_LE:
		case INET_DIAG_BC_D_GE:
		case INET_DIAG_BC_D_LE:
		case INET_DIAG_BC_JMP:
472
			if (op->no < 4 || op->no > len + 4 || op->no & 3)
L
Linus Torvalds 已提交
473 474
				return -EINVAL;
			if (op->no < len &&
475
			    !valid_cc(bytecode, bytecode_len, len - op->no))
L
Linus Torvalds 已提交
476 477
				return -EINVAL;
			break;
478
		case INET_DIAG_BC_NOP:
L
Linus Torvalds 已提交
479 480 481 482
			break;
		default:
			return -EINVAL;
		}
483 484
		if (op->yes < 4 || op->yes > len + 4 || op->yes & 3)
			return -EINVAL;
485
		bc  += op->yes;
L
Linus Torvalds 已提交
486 487 488 489 490
		len -= op->yes;
	}
	return len == 0 ? 0 : -EINVAL;
}

491 492
static int inet_csk_diag_dump(struct sock *sk,
			      struct sk_buff *skb,
493
			      struct netlink_callback *cb,
494
			      struct inet_diag_req *r,
495
			      const struct nlattr *bc)
L
Linus Torvalds 已提交
496
{
497
	if (bc != NULL) {
498
		struct inet_diag_entry entry;
L
Linus Torvalds 已提交
499 500 501
		struct inet_sock *inet = inet_sk(sk);

		entry.family = sk->sk_family;
502
#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
L
Linus Torvalds 已提交
503 504 505 506 507 508 509 510
		if (entry.family == AF_INET6) {
			struct ipv6_pinfo *np = inet6_sk(sk);

			entry.saddr = np->rcv_saddr.s6_addr32;
			entry.daddr = np->daddr.s6_addr32;
		} else
#endif
		{
E
Eric Dumazet 已提交
511 512
			entry.saddr = &inet->inet_rcv_saddr;
			entry.daddr = &inet->inet_daddr;
L
Linus Torvalds 已提交
513
		}
E
Eric Dumazet 已提交
514 515
		entry.sport = inet->inet_num;
		entry.dport = ntohs(inet->inet_dport);
L
Linus Torvalds 已提交
516 517
		entry.userlocks = sk->sk_userlocks;

518
		if (!inet_diag_bc_run(nla_data(bc), nla_len(bc), &entry))
L
Linus Torvalds 已提交
519 520 521
			return 0;
	}

522
	return inet_csk_diag_fill(sk, skb, r,
523 524
				  NETLINK_CB(cb->skb).pid,
				  cb->nlh->nlmsg_seq, NLM_F_MULTI, cb->nlh);
L
Linus Torvalds 已提交
525 526
}

527 528
static int inet_twsk_diag_dump(struct inet_timewait_sock *tw,
			       struct sk_buff *skb,
529
			       struct netlink_callback *cb,
530
			       struct inet_diag_req *r,
531
			       const struct nlattr *bc)
532
{
533
	if (bc != NULL) {
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
		struct inet_diag_entry entry;

		entry.family = tw->tw_family;
#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
		if (tw->tw_family == AF_INET6) {
			struct inet6_timewait_sock *tw6 =
						inet6_twsk((struct sock *)tw);
			entry.saddr = tw6->tw_v6_rcv_saddr.s6_addr32;
			entry.daddr = tw6->tw_v6_daddr.s6_addr32;
		} else
#endif
		{
			entry.saddr = &tw->tw_rcv_saddr;
			entry.daddr = &tw->tw_daddr;
		}
		entry.sport = tw->tw_num;
		entry.dport = ntohs(tw->tw_dport);
551
		entry.userlocks = 0;
552

553
		if (!inet_diag_bc_run(nla_data(bc), nla_len(bc), &entry))
554 555 556
			return 0;
	}

557
	return inet_twsk_diag_fill(tw, skb, r,
558 559 560 561
				   NETLINK_CB(cb->skb).pid,
				   cb->nlh->nlmsg_seq, NLM_F_MULTI, cb->nlh);
}

562
static int inet_diag_fill_req(struct sk_buff *skb, struct sock *sk,
563 564
			      struct request_sock *req, u32 pid, u32 seq,
			      const struct nlmsghdr *unlh)
L
Linus Torvalds 已提交
565
{
566
	const struct inet_request_sock *ireq = inet_rsk(req);
L
Linus Torvalds 已提交
567
	struct inet_sock *inet = inet_sk(sk);
568
	unsigned char *b = skb_tail_pointer(skb);
569
	struct inet_diag_msg *r;
L
Linus Torvalds 已提交
570 571 572
	struct nlmsghdr *nlh;
	long tmo;

573
	nlh = NLMSG_PUT(skb, pid, seq, unlh->nlmsg_type, sizeof(*r));
L
Linus Torvalds 已提交
574 575 576
	nlh->nlmsg_flags = NLM_F_MULTI;
	r = NLMSG_DATA(nlh);

577 578 579 580
	r->idiag_family = sk->sk_family;
	r->idiag_state = TCP_SYN_RECV;
	r->idiag_timer = 1;
	r->idiag_retrans = req->retrans;
L
Linus Torvalds 已提交
581

582 583 584
	r->id.idiag_if = sk->sk_bound_dev_if;
	r->id.idiag_cookie[0] = (u32)(unsigned long)req;
	r->id.idiag_cookie[1] = (u32)(((unsigned long)req >> 31) >> 1);
L
Linus Torvalds 已提交
585 586 587 588 589

	tmo = req->expires - jiffies;
	if (tmo < 0)
		tmo = 0;

E
Eric Dumazet 已提交
590
	r->id.idiag_sport = inet->inet_sport;
591 592 593 594 595 596 597 598
	r->id.idiag_dport = ireq->rmt_port;
	r->id.idiag_src[0] = ireq->loc_addr;
	r->id.idiag_dst[0] = ireq->rmt_addr;
	r->idiag_expires = jiffies_to_msecs(tmo);
	r->idiag_rqueue = 0;
	r->idiag_wqueue = 0;
	r->idiag_uid = sock_i_uid(sk);
	r->idiag_inode = 0;
599
#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
600
	if (r->idiag_family == AF_INET6) {
A
Alexey Dobriyan 已提交
601 602
		*(struct in6_addr *)r->id.idiag_src = inet6_rsk(req)->loc_addr;
		*(struct in6_addr *)r->id.idiag_dst = inet6_rsk(req)->rmt_addr;
L
Linus Torvalds 已提交
603 604
	}
#endif
605
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
L
Linus Torvalds 已提交
606 607 608 609

	return skb->len;

nlmsg_failure:
610
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
611 612 613
	return -1;
}

614
static int inet_diag_dump_reqs(struct sk_buff *skb, struct sock *sk,
615
			       struct netlink_callback *cb,
616
			       struct inet_diag_req *r,
617
			       const struct nlattr *bc)
L
Linus Torvalds 已提交
618
{
619
	struct inet_diag_entry entry;
620
	struct inet_connection_sock *icsk = inet_csk(sk);
621
	struct listen_sock *lopt;
L
Linus Torvalds 已提交
622 623 624 625 626 627 628 629 630 631 632 633 634
	struct inet_sock *inet = inet_sk(sk);
	int j, s_j;
	int reqnum, s_reqnum;
	int err = 0;

	s_j = cb->args[3];
	s_reqnum = cb->args[4];

	if (s_j > 0)
		s_j--;

	entry.family = sk->sk_family;

635
	read_lock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
L
Linus Torvalds 已提交
636

637
	lopt = icsk->icsk_accept_queue.listen_opt;
L
Linus Torvalds 已提交
638 639 640
	if (!lopt || !lopt->qlen)
		goto out;

641
	if (bc != NULL) {
E
Eric Dumazet 已提交
642
		entry.sport = inet->inet_num;
L
Linus Torvalds 已提交
643 644 645
		entry.userlocks = sk->sk_userlocks;
	}

646
	for (j = s_j; j < lopt->nr_table_entries; j++) {
647
		struct request_sock *req, *head = lopt->syn_table[j];
L
Linus Torvalds 已提交
648 649 650

		reqnum = 0;
		for (req = head; req; reqnum++, req = req->dl_next) {
651 652
			struct inet_request_sock *ireq = inet_rsk(req);

L
Linus Torvalds 已提交
653 654
			if (reqnum < s_reqnum)
				continue;
655 656
			if (r->id.idiag_dport != ireq->rmt_port &&
			    r->id.idiag_dport)
L
Linus Torvalds 已提交
657 658 659 660
				continue;

			if (bc) {
				entry.saddr =
661
#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
L
Linus Torvalds 已提交
662
					(entry.family == AF_INET6) ?
663
					inet6_rsk(req)->loc_addr.s6_addr32 :
L
Linus Torvalds 已提交
664
#endif
665
					&ireq->loc_addr;
666
				entry.daddr =
667
#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
L
Linus Torvalds 已提交
668
					(entry.family == AF_INET6) ?
669
					inet6_rsk(req)->rmt_addr.s6_addr32 :
L
Linus Torvalds 已提交
670
#endif
671 672
					&ireq->rmt_addr;
				entry.dport = ntohs(ireq->rmt_port);
L
Linus Torvalds 已提交
673

674 675
				if (!inet_diag_bc_run(nla_data(bc),
						      nla_len(bc), &entry))
L
Linus Torvalds 已提交
676 677 678
					continue;
			}

679
			err = inet_diag_fill_req(skb, sk, req,
L
Linus Torvalds 已提交
680
					       NETLINK_CB(cb->skb).pid,
681
					       cb->nlh->nlmsg_seq, cb->nlh);
L
Linus Torvalds 已提交
682 683 684 685 686 687 688 689 690 691 692
			if (err < 0) {
				cb->args[3] = j + 1;
				cb->args[4] = reqnum;
				goto out;
			}
		}

		s_reqnum = 0;
	}

out:
693
	read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
L
Linus Torvalds 已提交
694 695 696 697

	return err;
}

698 699
static int __inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb,
		struct inet_diag_req *r, struct nlattr *bc)
L
Linus Torvalds 已提交
700 701 702
{
	int i, num;
	int s_i, s_num;
703
	const struct inet_diag_handler *handler;
704
	struct inet_hashinfo *hashinfo;
705

706
	handler = inet_diag_lock_handler(r->sdiag_protocol);
707 708
	if (IS_ERR(handler))
		goto unlock;
709

710
	hashinfo = handler->idiag_hashinfo;
711

L
Linus Torvalds 已提交
712 713
	s_i = cb->args[1];
	s_num = num = cb->args[2];
714

L
Linus Torvalds 已提交
715
	if (cb->args[0] == 0) {
716
		if (!(r->idiag_states & (TCPF_LISTEN | TCPF_SYN_RECV)))
L
Linus Torvalds 已提交
717
			goto skip_listen_ht;
718

719
		for (i = s_i; i < INET_LHTABLE_SIZE; i++) {
L
Linus Torvalds 已提交
720
			struct sock *sk;
721
			struct hlist_nulls_node *node;
722
			struct inet_listen_hashbucket *ilb;
L
Linus Torvalds 已提交
723 724

			num = 0;
725 726
			ilb = &hashinfo->listening_hash[i];
			spin_lock_bh(&ilb->lock);
727
			sk_nulls_for_each(sk, node, &ilb->head) {
L
Linus Torvalds 已提交
728 729 730 731 732 733 734
				struct inet_sock *inet = inet_sk(sk);

				if (num < s_num) {
					num++;
					continue;
				}

735 736 737 738
				if (r->sdiag_family != AF_UNSPEC &&
						sk->sk_family != r->sdiag_family)
					goto next_listen;

E
Eric Dumazet 已提交
739
				if (r->id.idiag_sport != inet->inet_sport &&
740
				    r->id.idiag_sport)
L
Linus Torvalds 已提交
741 742
					goto next_listen;

743 744
				if (!(r->idiag_states & TCPF_LISTEN) ||
				    r->id.idiag_dport ||
L
Linus Torvalds 已提交
745 746 747
				    cb->args[3] > 0)
					goto syn_recv;

748
				if (inet_csk_diag_dump(sk, skb, cb, r, bc) < 0) {
749
					spin_unlock_bh(&ilb->lock);
L
Linus Torvalds 已提交
750 751 752 753
					goto done;
				}

syn_recv:
754
				if (!(r->idiag_states & TCPF_SYN_RECV))
L
Linus Torvalds 已提交
755 756
					goto next_listen;

757
				if (inet_diag_dump_reqs(skb, sk, cb, r, bc) < 0) {
758
					spin_unlock_bh(&ilb->lock);
L
Linus Torvalds 已提交
759 760 761 762 763 764 765 766
					goto done;
				}

next_listen:
				cb->args[3] = 0;
				cb->args[4] = 0;
				++num;
			}
767
			spin_unlock_bh(&ilb->lock);
L
Linus Torvalds 已提交
768 769 770 771 772 773 774 775 776 777

			s_num = 0;
			cb->args[3] = 0;
			cb->args[4] = 0;
		}
skip_listen_ht:
		cb->args[0] = 1;
		s_i = num = s_num = 0;
	}

778
	if (!(r->idiag_states & ~(TCPF_LISTEN | TCPF_SYN_RECV)))
779
		goto unlock;
L
Linus Torvalds 已提交
780

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);
L
Linus Torvalds 已提交
784
		struct sock *sk;
785
		struct hlist_nulls_node *node;
L
Linus Torvalds 已提交
786

787 788
		num = 0;

789 790
		if (hlist_nulls_empty(&head->chain) &&
			hlist_nulls_empty(&head->twchain))
791 792
			continue;

L
Linus Torvalds 已提交
793 794 795
		if (i > s_i)
			s_num = 0;

796
		spin_lock_bh(lock);
797
		sk_nulls_for_each(sk, node, &head->chain) {
L
Linus Torvalds 已提交
798 799 800 801
			struct inet_sock *inet = inet_sk(sk);

			if (num < s_num)
				goto next_normal;
802
			if (!(r->idiag_states & (1 << sk->sk_state)))
L
Linus Torvalds 已提交
803
				goto next_normal;
804 805 806
			if (r->sdiag_family != AF_UNSPEC &&
					sk->sk_family != r->sdiag_family)
				goto next_normal;
E
Eric Dumazet 已提交
807
			if (r->id.idiag_sport != inet->inet_sport &&
808
			    r->id.idiag_sport)
L
Linus Torvalds 已提交
809
				goto next_normal;
E
Eric Dumazet 已提交
810
			if (r->id.idiag_dport != inet->inet_dport &&
811
			    r->id.idiag_dport)
L
Linus Torvalds 已提交
812
				goto next_normal;
813
			if (inet_csk_diag_dump(sk, skb, cb, r, bc) < 0) {
814
				spin_unlock_bh(lock);
L
Linus Torvalds 已提交
815 816 817 818 819 820
				goto done;
			}
next_normal:
			++num;
		}

821
		if (r->idiag_states & TCPF_TIME_WAIT) {
822 823 824
			struct inet_timewait_sock *tw;

			inet_twsk_for_each(tw, node,
825
				    &head->twchain) {
L
Linus Torvalds 已提交
826 827 828

				if (num < s_num)
					goto next_dying;
829 830 831
				if (r->sdiag_family != AF_UNSPEC &&
						tw->tw_family != r->sdiag_family)
					goto next_dying;
832
				if (r->id.idiag_sport != tw->tw_sport &&
833
				    r->id.idiag_sport)
L
Linus Torvalds 已提交
834
					goto next_dying;
835
				if (r->id.idiag_dport != tw->tw_dport &&
836
				    r->id.idiag_dport)
L
Linus Torvalds 已提交
837
					goto next_dying;
838
				if (inet_twsk_diag_dump(tw, skb, cb, r, bc) < 0) {
839
					spin_unlock_bh(lock);
L
Linus Torvalds 已提交
840 841 842 843 844 845
					goto done;
				}
next_dying:
				++num;
			}
		}
846
		spin_unlock_bh(lock);
L
Linus Torvalds 已提交
847 848 849 850 851
	}

done:
	cb->args[1] = i;
	cb->args[2] = num;
852 853
unlock:
	inet_diag_unlock_handler(handler);
L
Linus Torvalds 已提交
854 855 856
	return skb->len;
}

857 858 859 860 861 862 863 864 865 866 867
static int inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
{
	struct nlattr *bc = NULL;
	int hdrlen = sizeof(struct inet_diag_req);

	if (nlmsg_attrlen(cb->nlh, hdrlen))
		bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);

	return __inet_diag_dump(skb, cb, (struct inet_diag_req *)NLMSG_DATA(cb->nlh), bc);
}

868 869 870 871 872 873 874 875 876 877 878 879
static inline int inet_diag_type2proto(int type)
{
	switch (type) {
	case TCPDIAG_GETSOCK:
		return IPPROTO_TCP;
	case DCCPDIAG_GETSOCK:
		return IPPROTO_DCCP;
	default:
		return 0;
	}
}

880 881 882 883 884 885 886
static int inet_diag_dump_compat(struct sk_buff *skb, struct netlink_callback *cb)
{
	struct inet_diag_req_compat *rc = NLMSG_DATA(cb->nlh);
	struct inet_diag_req req;
	struct nlattr *bc = NULL;
	int hdrlen = sizeof(struct inet_diag_req_compat);

887
	req.sdiag_family = AF_UNSPEC; /* compatibility */
888 889 890 891 892 893 894 895 896 897 898
	req.sdiag_protocol = inet_diag_type2proto(cb->nlh->nlmsg_type);
	req.idiag_ext = rc->idiag_ext;
	req.idiag_states = rc->idiag_states;
	req.id = rc->id;

	if (nlmsg_attrlen(cb->nlh, hdrlen))
		bc = nlmsg_find_attr(cb->nlh, hdrlen, INET_DIAG_REQ_BYTECODE);

	return __inet_diag_dump(skb, cb, &req, bc);
}

899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
static int inet_diag_get_exact_compat(struct sk_buff *in_skb,
			       const struct nlmsghdr *nlh)
{
	struct inet_diag_req_compat *rc = NLMSG_DATA(nlh);
	struct inet_diag_req req;

	req.sdiag_family = rc->idiag_family;
	req.sdiag_protocol = inet_diag_type2proto(nlh->nlmsg_type);
	req.idiag_ext = rc->idiag_ext;
	req.idiag_states = rc->idiag_states;
	req.id = rc->id;

	return inet_diag_get_exact(in_skb, nlh, &req);
}

914
static int inet_diag_rcv_msg_compat(struct sk_buff *skb, struct nlmsghdr *nlh)
L
Linus Torvalds 已提交
915
{
916
	int hdrlen = sizeof(struct inet_diag_req_compat);
L
Linus Torvalds 已提交
917

918 919 920
	if (nlh->nlmsg_type >= INET_DIAG_GETSOCK_MAX ||
	    nlmsg_len(nlh) < hdrlen)
		return -EINVAL;
L
Linus Torvalds 已提交
921

922
	if (nlh->nlmsg_flags & NLM_F_DUMP) {
923 924
		if (nlmsg_attrlen(nlh, hdrlen)) {
			struct nlattr *attr;
L
Linus Torvalds 已提交
925

926 927 928 929 930 931 932
			attr = nlmsg_find_attr(nlh, hdrlen,
					       INET_DIAG_REQ_BYTECODE);
			if (attr == NULL ||
			    nla_len(attr) < sizeof(struct inet_diag_bc_op) ||
			    inet_diag_bc_audit(nla_data(attr), nla_len(attr)))
				return -EINVAL;
		}
L
Linus Torvalds 已提交
933

934
		return netlink_dump_start(sdiagnl, skb, nlh,
935
					  inet_diag_dump_compat, NULL, 0);
L
Linus Torvalds 已提交
936
	}
937

938
	return inet_diag_get_exact_compat(skb, nlh);
L
Linus Torvalds 已提交
939 940
}

P
Pavel Emelyanov 已提交
941 942 943 944 945 946 947 948
static int inet_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
{
	int hdrlen = sizeof(struct inet_diag_req);

	if (nlmsg_len(h) < hdrlen)
		return -EINVAL;

	if (h->nlmsg_flags & NLM_F_DUMP) {
949 950 951 952 953 954 955 956 957 958 959 960
		if (nlmsg_attrlen(h, hdrlen)) {
			struct nlattr *attr;
			attr = nlmsg_find_attr(h, hdrlen,
					       INET_DIAG_REQ_BYTECODE);
			if (attr == NULL ||
			    nla_len(attr) < sizeof(struct inet_diag_bc_op) ||
			    inet_diag_bc_audit(nla_data(attr), nla_len(attr)))
				return -EINVAL;
		}

		return netlink_dump_start(sdiagnl, skb, h,
					  inet_diag_dump, NULL, 0);
P
Pavel Emelyanov 已提交
961 962
	}

963
	return inet_diag_get_exact(skb, h, (struct inet_diag_req *)NLMSG_DATA(h));
P
Pavel Emelyanov 已提交
964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
}

static struct sock_diag_handler inet_diag_handler = {
	.family = AF_INET,
	.dump = inet_diag_handler_dump,
};

static struct sock_diag_handler inet6_diag_handler = {
	.family = AF_INET6,
	.dump = inet_diag_handler_dump,
};

static struct sock_diag_handler *sock_diag_handlers[AF_MAX];
static DEFINE_MUTEX(sock_diag_table_mutex);

int sock_diag_register(struct sock_diag_handler *hndl)
{
	int err = 0;

	if (hndl->family > AF_MAX)
		return -EINVAL;

	mutex_lock(&sock_diag_table_mutex);
	if (sock_diag_handlers[hndl->family])
		err = -EBUSY;
	else
		sock_diag_handlers[hndl->family] = hndl;
	mutex_unlock(&sock_diag_table_mutex);

	return err;
}

void sock_diag_unregister(struct sock_diag_handler *hnld)
{
	int family = hnld->family;

	if (family > AF_MAX)
		return;

	mutex_lock(&sock_diag_table_mutex);
	BUG_ON(sock_diag_handlers[family] != hnld);
	sock_diag_handlers[family] = NULL;
	mutex_unlock(&sock_diag_table_mutex);
}

static inline struct sock_diag_handler *sock_diag_lock_handler(int family)
{
	mutex_lock(&sock_diag_table_mutex);
	return sock_diag_handlers[family];
}

static inline void sock_diag_unlock_handler(struct sock_diag_handler *h)
{
	mutex_unlock(&sock_diag_table_mutex);
}

1020 1021
static int __sock_diag_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
{
P
Pavel Emelyanov 已提交
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
	int err;
	struct sock_diag_req *req = NLMSG_DATA(nlh);
	struct sock_diag_handler *hndl;

	if (nlmsg_len(nlh) < sizeof(*req))
		return -EINVAL;

	hndl = sock_diag_lock_handler(req->sdiag_family);
	if (hndl == NULL)
		err = -ENOENT;
	else
		err = hndl->dump(skb, nlh);
	sock_diag_unlock_handler(hndl);

	return err;
1037 1038
}

1039 1040
static int sock_diag_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
{
1041 1042 1043 1044 1045 1046 1047 1048 1049
	switch (nlh->nlmsg_type) {
	case TCPDIAG_GETSOCK:
	case DCCPDIAG_GETSOCK:
		return inet_diag_rcv_msg_compat(skb, nlh);
	case SOCK_DIAG_BY_FAMILY:
		return __sock_diag_rcv_msg(skb, nlh);
	default:
		return -EINVAL;
	}
1050 1051 1052
}

static DEFINE_MUTEX(sock_diag_mutex);
1053

1054
static void sock_diag_rcv(struct sk_buff *skb)
L
Linus Torvalds 已提交
1055
{
1056 1057 1058
	mutex_lock(&sock_diag_mutex);
	netlink_rcv_skb(skb, &sock_diag_rcv_msg);
	mutex_unlock(&sock_diag_mutex);
L
Linus Torvalds 已提交
1059 1060
}

1061 1062 1063 1064 1065
int inet_diag_register(const struct inet_diag_handler *h)
{
	const __u16 type = h->idiag_type;
	int err = -EINVAL;

1066
	if (type >= IPPROTO_MAX)
1067 1068
		goto out;

1069
	mutex_lock(&inet_diag_table_mutex);
1070 1071 1072 1073 1074
	err = -EEXIST;
	if (inet_diag_table[type] == NULL) {
		inet_diag_table[type] = h;
		err = 0;
	}
1075
	mutex_unlock(&inet_diag_table_mutex);
1076 1077 1078 1079 1080 1081 1082 1083 1084
out:
	return err;
}
EXPORT_SYMBOL_GPL(inet_diag_register);

void inet_diag_unregister(const struct inet_diag_handler *h)
{
	const __u16 type = h->idiag_type;

1085
	if (type >= IPPROTO_MAX)
1086 1087
		return;

1088
	mutex_lock(&inet_diag_table_mutex);
1089
	inet_diag_table[type] = NULL;
1090
	mutex_unlock(&inet_diag_table_mutex);
1091 1092 1093
}
EXPORT_SYMBOL_GPL(inet_diag_unregister);

1094
static int __init inet_diag_init(void)
L
Linus Torvalds 已提交
1095
{
1096
	const int inet_diag_table_size = (IPPROTO_MAX *
1097 1098 1099
					  sizeof(struct inet_diag_handler *));
	int err = -ENOMEM;

1100
	inet_diag_table = kzalloc(inet_diag_table_size, GFP_KERNEL);
1101 1102 1103
	if (!inet_diag_table)
		goto out;

1104 1105 1106
	sdiagnl = netlink_kernel_create(&init_net, NETLINK_SOCK_DIAG, 0,
					sock_diag_rcv, NULL, THIS_MODULE);
	if (sdiagnl == NULL)
1107
		goto out_free_table;
P
Pavel Emelyanov 已提交
1108 1109 1110 1111 1112 1113 1114 1115 1116

	err = sock_diag_register(&inet_diag_handler);
	if (err)
		goto out_free_nl;

	err = sock_diag_register(&inet6_diag_handler);
	if (err)
		goto out_free_inet;

1117 1118
out:
	return err;
P
Pavel Emelyanov 已提交
1119 1120 1121 1122 1123

out_free_inet:
	sock_diag_unregister(&inet_diag_handler);
out_free_nl:
	netlink_kernel_release(sdiagnl);
1124 1125 1126
out_free_table:
	kfree(inet_diag_table);
	goto out;
L
Linus Torvalds 已提交
1127 1128
}

1129
static void __exit inet_diag_exit(void)
L
Linus Torvalds 已提交
1130
{
P
Pavel Emelyanov 已提交
1131 1132
	sock_diag_unregister(&inet6_diag_handler);
	sock_diag_unregister(&inet_diag_handler);
1133
	netlink_kernel_release(sdiagnl);
1134
	kfree(inet_diag_table);
L
Linus Torvalds 已提交
1135 1136
}

1137 1138
module_init(inet_diag_init);
module_exit(inet_diag_exit);
L
Linus Torvalds 已提交
1139
MODULE_LICENSE("GPL");
1140
MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_SOCK_DIAG);