inet_diag.c 22.6 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>
L
Linus Torvalds 已提交
36

37 38
static const struct inet_diag_handler **inet_diag_table;

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

48
static struct sock *idiagnl;
L
Linus Torvalds 已提交
49

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

53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
static DEFINE_MUTEX(inet_diag_table_mutex);

static const struct inet_diag_handler *inet_diag_lock_handler(int type)
{
	if (!inet_diag_table[type])
		request_module("net-pf-%d-proto-%d-type-%d", PF_NETLINK,
			       NETLINK_INET_DIAG, type);

	mutex_lock(&inet_diag_table_mutex);
	if (!inet_diag_table[type])
		return ERR_PTR(-ENOENT);

	return inet_diag_table[type];
}

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

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

	handler = inet_diag_table[unlh->nlmsg_type];
	BUG_ON(handler == NULL);
L
Linus Torvalds 已提交
90

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

L
Linus Torvalds 已提交
94
	r = NLMSG_DATA(nlh);
95 96 97 98 99 100 101 102 103 104 105 106 107 108
	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 已提交
109
	}
110

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

116 117 118
	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 已提交
119

E
Eric Dumazet 已提交
120 121 122 123
	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 已提交
124

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);
L
Linus Torvalds 已提交
128

129
		ipv6_addr_copy((struct in6_addr *)r->id.idiag_src,
L
Linus Torvalds 已提交
130
			       &np->rcv_saddr);
131
		ipv6_addr_copy((struct in6_addr *)r->id.idiag_dst,
L
Linus Torvalds 已提交
132 133 134 135
			       &np->daddr);
	}
#endif

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

138
	if (icsk->icsk_pending == ICSK_TIME_RETRANS) {
139 140 141
		r->idiag_timer = 1;
		r->idiag_retrans = icsk->icsk_retransmits;
		r->idiag_expires = EXPIRES_IN_MS(icsk->icsk_timeout);
142
	} else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
143 144 145
		r->idiag_timer = 4;
		r->idiag_retrans = icsk->icsk_probes_out;
		r->idiag_expires = EXPIRES_IN_MS(icsk->icsk_timeout);
L
Linus Torvalds 已提交
146
	} else if (timer_pending(&sk->sk_timer)) {
147 148 149
		r->idiag_timer = 2;
		r->idiag_retrans = icsk->icsk_probes_out;
		r->idiag_expires = EXPIRES_IN_MS(sk->sk_timer.expires);
L
Linus Torvalds 已提交
150
	} else {
151 152
		r->idiag_timer = 0;
		r->idiag_expires = 0;
L
Linus Torvalds 已提交
153 154
	}
#undef EXPIRES_IN_MS
155

156 157
	r->idiag_uid = sock_i_uid(sk);
	r->idiag_inode = sock_i_ino(sk);
L
Linus Torvalds 已提交
158 159

	if (minfo) {
160
		minfo->idiag_rmem = sk_rmem_alloc_get(sk);
161 162
		minfo->idiag_wmem = sk->sk_wmem_queued;
		minfo->idiag_fmem = sk->sk_forward_alloc;
163
		minfo->idiag_tmem = sk_wmem_alloc_get(sk);
L
Linus Torvalds 已提交
164 165
	}

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

168 169 170
	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 已提交
171

172
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
L
Linus Torvalds 已提交
173 174
	return skb->len;

175
rtattr_failure:
L
Linus Torvalds 已提交
176
nlmsg_failure:
177
	nlmsg_trim(skb, b);
178
	return -EMSGSIZE;
L
Linus Torvalds 已提交
179 180
}

181 182 183 184 185 186 187
static int inet_twsk_diag_fill(struct inet_timewait_sock *tw,
			       struct sk_buff *skb, int ext, u32 pid,
			       u32 seq, u16 nlmsg_flags,
			       const struct nlmsghdr *unlh)
{
	long tmo;
	struct inet_diag_msg *r;
188
	const unsigned char *previous_tail = skb_tail_pointer(skb);
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
	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;
212
	r->idiag_expires      = DIV_ROUND_UP(tmo * 1000, HZ);
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
	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);

		ipv6_addr_copy((struct in6_addr *)r->id.idiag_src,
			       &tw6->tw_v6_rcv_saddr);
		ipv6_addr_copy((struct in6_addr *)r->id.idiag_dst,
			       &tw6->tw_v6_daddr);
	}
#endif
228
	nlh->nlmsg_len = skb_tail_pointer(skb) - previous_tail;
229 230
	return skb->len;
nlmsg_failure:
231
	nlmsg_trim(skb, previous_tail);
232
	return -EMSGSIZE;
233 234
}

235 236 237 238 239 240 241 242 243 244 245
static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
			int ext, u32 pid, u32 seq, u16 nlmsg_flags,
			const struct nlmsghdr *unlh)
{
	if (sk->sk_state == TCP_TIME_WAIT)
		return inet_twsk_diag_fill((struct inet_timewait_sock *)sk,
					   skb, ext, pid, seq, nlmsg_flags,
					   unlh);
	return inet_csk_diag_fill(sk, skb, ext, pid, seq, nlmsg_flags, unlh);
}

246 247
static int inet_diag_get_exact(struct sk_buff *in_skb,
			       const struct nlmsghdr *nlh)
L
Linus Torvalds 已提交
248 249 250
{
	int err;
	struct sock *sk;
251
	struct inet_diag_req *req = NLMSG_DATA(nlh);
L
Linus Torvalds 已提交
252
	struct sk_buff *rep;
253 254 255
	struct inet_hashinfo *hashinfo;
	const struct inet_diag_handler *handler;

256
	handler = inet_diag_lock_handler(nlh->nlmsg_type);
257 258 259 260
	if (IS_ERR(handler)) {
		err = PTR_ERR(handler);
		goto unlock;
	}
261

262
	hashinfo = handler->idiag_hashinfo;
263
	err = -EINVAL;
264

265
	if (req->idiag_family == AF_INET) {
266
		sk = inet_lookup(&init_net, hashinfo, req->id.idiag_dst[0],
267 268
				 req->id.idiag_dport, req->id.idiag_src[0],
				 req->id.idiag_sport, req->id.idiag_if);
L
Linus Torvalds 已提交
269
	}
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 274 275 276 277
				  (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 已提交
278 279 280
	}
#endif
	else {
281
		goto unlock;
L
Linus Torvalds 已提交
282 283
	}

284
	err = -ENOENT;
L
Linus Torvalds 已提交
285
	if (sk == NULL)
286
		goto unlock;
L
Linus Torvalds 已提交
287 288

	err = -ESTALE;
289 290 291 292
	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 已提交
293 294 295
		goto out;

	err = -ENOMEM;
296 297
	rep = alloc_skb(NLMSG_SPACE((sizeof(struct inet_diag_msg) +
				     sizeof(struct inet_diag_meminfo) +
298 299
				     handler->idiag_info_size + 64)),
			GFP_KERNEL);
L
Linus Torvalds 已提交
300 301 302
	if (!rep)
		goto out;

303 304 305 306 307 308 309 310
	err = sk_diag_fill(sk, rep, req->idiag_ext,
			   NETLINK_CB(in_skb).pid,
			   nlh->nlmsg_seq, 0, nlh);
	if (err < 0) {
		WARN_ON(err == -EMSGSIZE);
		kfree_skb(rep);
		goto out;
	}
311 312
	err = netlink_unicast(idiagnl, rep, NETLINK_CB(in_skb).pid,
			      MSG_DONTWAIT);
L
Linus Torvalds 已提交
313 314 315 316 317 318
	if (err > 0)
		err = 0;

out:
	if (sk) {
		if (sk->sk_state == TCP_TIME_WAIT)
319
			inet_twsk_put((struct inet_timewait_sock *)sk);
L
Linus Torvalds 已提交
320 321 322
		else
			sock_put(sk);
	}
323 324
unlock:
	inet_diag_unlock_handler(handler);
L
Linus Torvalds 已提交
325 326 327
	return err;
}

A
Al Viro 已提交
328
static int bitstring_match(const __be32 *a1, const __be32 *a2, int bits)
L
Linus Torvalds 已提交
329 330 331 332 333 334 335 336 337 338
{
	int words = bits >> 5;

	bits &= 0x1f;

	if (words) {
		if (memcmp(a1, a2, words << 2))
			return 0;
	}
	if (bits) {
A
Al Viro 已提交
339 340
		__be32 w1, w2;
		__be32 mask;
L
Linus Torvalds 已提交
341 342 343 344 345 346 347 348 349 350 351 352 353 354

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

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

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

	return 1;
}


355
static int inet_diag_bc_run(const void *bc, int len,
356
			    const struct inet_diag_entry *entry)
L
Linus Torvalds 已提交
357 358 359
{
	while (len > 0) {
		int yes = 1;
360
		const struct inet_diag_bc_op *op = bc;
L
Linus Torvalds 已提交
361 362

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

388
			cond = (struct inet_diag_hostcond *)(op + 1);
L
Linus Torvalds 已提交
389
			if (cond->port != -1 &&
390
			    cond->port != (op->code == INET_DIAG_BC_S_COND ?
L
Linus Torvalds 已提交
391 392 393 394
					     entry->sport : entry->dport)) {
				yes = 0;
				break;
			}
395

L
Linus Torvalds 已提交
396 397 398
			if (cond->prefix_len == 0)
				break;

399
			if (op->code == INET_DIAG_BC_S_COND)
L
Linus Torvalds 已提交
400 401 402 403
				addr = entry->saddr;
			else
				addr = entry->daddr;

404 405
			if (bitstring_match(addr, cond->addr,
					    cond->prefix_len))
L
Linus Torvalds 已提交
406 407 408 409 410
				break;
			if (entry->family == AF_INET6 &&
			    cond->family == AF_INET) {
				if (addr[0] == 0 && addr[1] == 0 &&
				    addr[2] == htonl(0xffff) &&
411
				    bitstring_match(addr + 3, cond->addr,
412
						    cond->prefix_len))
L
Linus Torvalds 已提交
413 414 415 416 417 418 419
					break;
			}
			yes = 0;
			break;
		}
		}

420
		if (yes) {
L
Linus Torvalds 已提交
421 422 423 424 425 426 427
			len -= op->yes;
			bc += op->yes;
		} else {
			len -= op->no;
			bc += op->no;
		}
	}
E
Eric Dumazet 已提交
428
	return len == 0;
L
Linus Torvalds 已提交
429 430 431 432 433
}

static int valid_cc(const void *bc, int len, int cc)
{
	while (len >= 0) {
434
		const struct inet_diag_bc_op *op = bc;
L
Linus Torvalds 已提交
435 436 437 438 439

		if (cc > len)
			return 0;
		if (cc == len)
			return 1;
440
		if (op->yes < 4 || op->yes & 3)
L
Linus Torvalds 已提交
441 442 443 444 445 446 447
			return 0;
		len -= op->yes;
		bc  += op->yes;
	}
	return 0;
}

448
static int inet_diag_bc_audit(const void *bytecode, int bytecode_len)
L
Linus Torvalds 已提交
449
{
450
	const void *bc = bytecode;
L
Linus Torvalds 已提交
451 452 453
	int  len = bytecode_len;

	while (len > 0) {
454
		const struct inet_diag_bc_op *op = bc;
L
Linus Torvalds 已提交
455 456 457

//printk("BC: %d %d %d {%d} / %d\n", op->code, op->yes, op->no, op[1].no, len);
		switch (op->code) {
458 459 460 461 462 463 464 465
		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:
466
			if (op->no < 4 || op->no > len + 4 || op->no & 3)
L
Linus Torvalds 已提交
467 468
				return -EINVAL;
			if (op->no < len &&
469
			    !valid_cc(bytecode, bytecode_len, len - op->no))
L
Linus Torvalds 已提交
470 471
				return -EINVAL;
			break;
472
		case INET_DIAG_BC_NOP:
L
Linus Torvalds 已提交
473 474 475 476
			break;
		default:
			return -EINVAL;
		}
477 478
		if (op->yes < 4 || op->yes > len + 4 || op->yes & 3)
			return -EINVAL;
479
		bc  += op->yes;
L
Linus Torvalds 已提交
480 481 482 483 484
		len -= op->yes;
	}
	return len == 0 ? 0 : -EINVAL;
}

485 486 487
static int inet_csk_diag_dump(struct sock *sk,
			      struct sk_buff *skb,
			      struct netlink_callback *cb)
L
Linus Torvalds 已提交
488
{
489
	struct inet_diag_req *r = NLMSG_DATA(cb->nlh);
L
Linus Torvalds 已提交
490

491
	if (nlmsg_attrlen(cb->nlh, sizeof(*r))) {
492
		struct inet_diag_entry entry;
493 494 495
		const struct nlattr *bc = nlmsg_find_attr(cb->nlh,
							  sizeof(*r),
							  INET_DIAG_REQ_BYTECODE);
L
Linus Torvalds 已提交
496 497 498
		struct inet_sock *inet = inet_sk(sk);

		entry.family = sk->sk_family;
499
#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
L
Linus Torvalds 已提交
500 501 502 503 504 505 506 507
		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 已提交
508 509
			entry.saddr = &inet->inet_rcv_saddr;
			entry.daddr = &inet->inet_daddr;
L
Linus Torvalds 已提交
510
		}
E
Eric Dumazet 已提交
511 512
		entry.sport = inet->inet_num;
		entry.dport = ntohs(inet->inet_dport);
L
Linus Torvalds 已提交
513 514
		entry.userlocks = sk->sk_userlocks;

515
		if (!inet_diag_bc_run(nla_data(bc), nla_len(bc), &entry))
L
Linus Torvalds 已提交
516 517 518
			return 0;
	}

519 520 521
	return inet_csk_diag_fill(sk, skb, r->idiag_ext,
				  NETLINK_CB(cb->skb).pid,
				  cb->nlh->nlmsg_seq, NLM_F_MULTI, cb->nlh);
L
Linus Torvalds 已提交
522 523
}

524 525 526 527 528 529
static int inet_twsk_diag_dump(struct inet_timewait_sock *tw,
			       struct sk_buff *skb,
			       struct netlink_callback *cb)
{
	struct inet_diag_req *r = NLMSG_DATA(cb->nlh);

530
	if (nlmsg_attrlen(cb->nlh, sizeof(*r))) {
531
		struct inet_diag_entry entry;
532 533 534
		const struct nlattr *bc = nlmsg_find_attr(cb->nlh,
							  sizeof(*r),
							  INET_DIAG_REQ_BYTECODE);
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550

		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 557 558 559 560 561
			return 0;
	}

	return inet_twsk_diag_fill(tw, skb, r->idiag_ext,
				   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 601
	if (r->idiag_family == AF_INET6) {
		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);
L
Linus Torvalds 已提交
605 606
	}
#endif
607
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
L
Linus Torvalds 已提交
608 609 610 611

	return skb->len;

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

616
static int inet_diag_dump_reqs(struct sk_buff *skb, struct sock *sk,
617
			       struct netlink_callback *cb)
L
Linus Torvalds 已提交
618
{
619 620
	struct inet_diag_entry entry;
	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;
L
Linus Torvalds 已提交
624 625 626 627 628 629 630 631 632 633 634 635 636
	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;

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

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

643 644 645
	if (nlmsg_attrlen(cb->nlh, sizeof(*r))) {
		bc = nlmsg_find_attr(cb->nlh, sizeof(*r),
				     INET_DIAG_REQ_BYTECODE);
E
Eric Dumazet 已提交
646
		entry.sport = inet->inet_num;
L
Linus Torvalds 已提交
647 648 649
		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];
L
Linus Torvalds 已提交
652 653 654

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

L
Linus Torvalds 已提交
657 658
			if (reqnum < s_reqnum)
				continue;
659 660
			if (r->id.idiag_dport != ireq->rmt_port &&
			    r->id.idiag_dport)
L
Linus Torvalds 已提交
661 662 663 664
				continue;

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

678 679
				if (!inet_diag_bc_run(nla_data(bc),
						      nla_len(bc), &entry))
L
Linus Torvalds 已提交
680 681 682
					continue;
			}

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

		s_reqnum = 0;
	}

out:
697
	read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
L
Linus Torvalds 已提交
698 699 700 701

	return err;
}

702
static int inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
L
Linus Torvalds 已提交
703 704 705
{
	int i, num;
	int s_i, s_num;
706
	struct inet_diag_req *r = NLMSG_DATA(cb->nlh);
707
	const struct inet_diag_handler *handler;
708
	struct inet_hashinfo *hashinfo;
L
Linus Torvalds 已提交
709

710
	handler = inet_diag_lock_handler(cb->nlh->nlmsg_type);
711 712
	if (IS_ERR(handler))
		goto unlock;
713

714
	hashinfo = handler->idiag_hashinfo;
715

L
Linus Torvalds 已提交
716 717
	s_i = cb->args[1];
	s_num = num = cb->args[2];
718

L
Linus Torvalds 已提交
719
	if (cb->args[0] == 0) {
720
		if (!(r->idiag_states & (TCPF_LISTEN | TCPF_SYN_RECV)))
L
Linus Torvalds 已提交
721
			goto skip_listen_ht;
722

723
		for (i = s_i; i < INET_LHTABLE_SIZE; i++) {
L
Linus Torvalds 已提交
724
			struct sock *sk;
725
			struct hlist_nulls_node *node;
726
			struct inet_listen_hashbucket *ilb;
L
Linus Torvalds 已提交
727 728

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

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

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) < 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) < 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;
E
Eric Dumazet 已提交
804
			if (r->id.idiag_sport != inet->inet_sport &&
805
			    r->id.idiag_sport)
L
Linus Torvalds 已提交
806
				goto next_normal;
E
Eric Dumazet 已提交
807
			if (r->id.idiag_dport != inet->inet_dport &&
808
			    r->id.idiag_dport)
L
Linus Torvalds 已提交
809
				goto next_normal;
810
			if (inet_csk_diag_dump(sk, skb, cb) < 0) {
811
				spin_unlock_bh(lock);
L
Linus Torvalds 已提交
812 813 814 815 816 817
				goto done;
			}
next_normal:
			++num;
		}

818
		if (r->idiag_states & TCPF_TIME_WAIT) {
819 820 821
			struct inet_timewait_sock *tw;

			inet_twsk_for_each(tw, node,
822
				    &head->twchain) {
L
Linus Torvalds 已提交
823 824 825

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

done:
	cb->args[1] = i;
	cb->args[2] = num;
846 847
unlock:
	inet_diag_unlock_handler(handler);
L
Linus Torvalds 已提交
848 849 850
	return skb->len;
}

851
static int inet_diag_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
L
Linus Torvalds 已提交
852
{
853
	int hdrlen = sizeof(struct inet_diag_req);
L
Linus Torvalds 已提交
854

855 856 857
	if (nlh->nlmsg_type >= INET_DIAG_GETSOCK_MAX ||
	    nlmsg_len(nlh) < hdrlen)
		return -EINVAL;
L
Linus Torvalds 已提交
858

859
	if (nlh->nlmsg_flags & NLM_F_DUMP) {
860 861
		if (nlmsg_attrlen(nlh, hdrlen)) {
			struct nlattr *attr;
L
Linus Torvalds 已提交
862

863 864 865 866 867 868 869
			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 已提交
870

871 872
		return netlink_dump_start(idiagnl, skb, nlh,
					  inet_diag_dump, NULL);
L
Linus Torvalds 已提交
873
	}
874 875

	return inet_diag_get_exact(skb, nlh);
L
Linus Torvalds 已提交
876 877
}

878 879
static DEFINE_MUTEX(inet_diag_mutex);

880
static void inet_diag_rcv(struct sk_buff *skb)
L
Linus Torvalds 已提交
881
{
882 883 884
	mutex_lock(&inet_diag_mutex);
	netlink_rcv_skb(skb, &inet_diag_rcv_msg);
	mutex_unlock(&inet_diag_mutex);
L
Linus Torvalds 已提交
885 886
}

887 888 889 890 891 892 893 894
int inet_diag_register(const struct inet_diag_handler *h)
{
	const __u16 type = h->idiag_type;
	int err = -EINVAL;

	if (type >= INET_DIAG_GETSOCK_MAX)
		goto out;

895
	mutex_lock(&inet_diag_table_mutex);
896 897 898 899 900
	err = -EEXIST;
	if (inet_diag_table[type] == NULL) {
		inet_diag_table[type] = h;
		err = 0;
	}
901
	mutex_unlock(&inet_diag_table_mutex);
902 903 904 905 906 907 908 909 910 911 912 913
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;

	if (type >= INET_DIAG_GETSOCK_MAX)
		return;

914
	mutex_lock(&inet_diag_table_mutex);
915
	inet_diag_table[type] = NULL;
916
	mutex_unlock(&inet_diag_table_mutex);
917 918 919
}
EXPORT_SYMBOL_GPL(inet_diag_unregister);

920
static int __init inet_diag_init(void)
L
Linus Torvalds 已提交
921
{
922 923 924 925
	const int inet_diag_table_size = (INET_DIAG_GETSOCK_MAX *
					  sizeof(struct inet_diag_handler *));
	int err = -ENOMEM;

926
	inet_diag_table = kzalloc(inet_diag_table_size, GFP_KERNEL);
927 928 929
	if (!inet_diag_table)
		goto out;

930
	idiagnl = netlink_kernel_create(&init_net, NETLINK_INET_DIAG, 0,
931
					inet_diag_rcv, NULL, THIS_MODULE);
932
	if (idiagnl == NULL)
933
		goto out_free_table;
934
	err = 0;
935 936 937 938 939
out:
	return err;
out_free_table:
	kfree(inet_diag_table);
	goto out;
L
Linus Torvalds 已提交
940 941
}

942
static void __exit inet_diag_exit(void)
L
Linus Torvalds 已提交
943
{
944
	netlink_kernel_release(idiagnl);
945
	kfree(inet_diag_table);
L
Linus Torvalds 已提交
946 947
}

948 949
module_init(inet_diag_init);
module_exit(inet_diag_exit);
L
Linus Torvalds 已提交
950
MODULE_LICENSE("GPL");
951
MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_INET_DIAG);