inet_diag.c 26.1 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
#define INET_DIAG_PUT(skb, attrtype, attrlen) \
50
	RTA_DATA(__RTA_PUT(skb, attrtype, attrlen))
L
Linus Torvalds 已提交
51

52 53
static DEFINE_MUTEX(inet_diag_table_mutex);

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

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

64
	return inet_diag_table[proto];
65 66 67 68 69 70 71 72
}

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

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

87
	handler = inet_diag_table[req->sdiag_protocol];
88
	BUG_ON(handler == NULL);
L
Linus Torvalds 已提交
89

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

L
Linus Torvalds 已提交
93
	r = NLMSG_DATA(nlh);
94 95 96 97 98
	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));

99 100 101 102
	r->idiag_family = sk->sk_family;
	r->idiag_state = sk->sk_state;
	r->idiag_timer = 0;
	r->idiag_retrans = 0;
L
Linus Torvalds 已提交
103

104 105 106
	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 已提交
107

E
Eric Dumazet 已提交
108 109 110 111
	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 已提交
112

113 114 115 116 117 118
	/* 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);

E
Eric Dumazet 已提交
119
#if IS_ENABLED(CONFIG_IPV6)
120
	if (r->idiag_family == AF_INET6) {
121
		const struct ipv6_pinfo *np = inet6_sk(sk);
L
Linus Torvalds 已提交
122

A
Alexey Dobriyan 已提交
123 124
		*(struct in6_addr *)r->id.idiag_src = np->rcv_saddr;
		*(struct in6_addr *)r->id.idiag_dst = np->daddr;
125 126
		if (ext & (1 << (INET_DIAG_TCLASS - 1)))
			RTA_PUT_U8(skb, INET_DIAG_TCLASS, np->tclass);
L
Linus Torvalds 已提交
127 128 129
	}
#endif

130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
	r->idiag_uid = sock_i_uid(sk);
	r->idiag_inode = sock_i_ino(sk);

	if (minfo) {
		minfo->idiag_rmem = sk_rmem_alloc_get(sk);
		minfo->idiag_wmem = sk->sk_wmem_queued;
		minfo->idiag_fmem = sk->sk_forward_alloc;
		minfo->idiag_tmem = sk_wmem_alloc_get(sk);
	}

	if (icsk == NULL) {
		r->idiag_rqueue = r->idiag_wqueue = 0;
		goto out;
	}

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

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

165 166
	if (ext & (1 << (INET_DIAG_INFO - 1)))
		info = INET_DIAG_PUT(skb, INET_DIAG_INFO, sizeof(struct tcp_info));
L
Linus Torvalds 已提交
167

168 169 170 171 172
	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 已提交
173 174
	}

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

177 178 179
	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 已提交
180

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

185
rtattr_failure:
L
Linus Torvalds 已提交
186
nlmsg_failure:
187
	nlmsg_trim(skb, b);
188
	return -EMSGSIZE;
L
Linus Torvalds 已提交
189
}
190 191 192 193 194 195 196 197 198 199
EXPORT_SYMBOL_GPL(inet_sk_diag_fill);

static int inet_csk_diag_fill(struct sock *sk,
			      struct sk_buff *skb, struct inet_diag_req *req,
			      u32 pid, u32 seq, u16 nlmsg_flags,
			      const struct nlmsghdr *unlh)
{
	return inet_sk_diag_fill(sk, inet_csk(sk),
			skb, req, pid, seq, nlmsg_flags, unlh);
}
L
Linus Torvalds 已提交
200

201
static int inet_twsk_diag_fill(struct inet_timewait_sock *tw,
202 203
			       struct sk_buff *skb, struct inet_diag_req *req,
			       u32 pid, u32 seq, u16 nlmsg_flags,
204 205 206 207
			       const struct nlmsghdr *unlh)
{
	long tmo;
	struct inet_diag_msg *r;
208
	const unsigned char *previous_tail = skb_tail_pointer(skb);
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
	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;
232
	r->idiag_expires      = DIV_ROUND_UP(tmo * 1000, HZ);
233 234 235 236
	r->idiag_rqueue	      = 0;
	r->idiag_wqueue	      = 0;
	r->idiag_uid	      = 0;
	r->idiag_inode	      = 0;
E
Eric Dumazet 已提交
237
#if IS_ENABLED(CONFIG_IPV6)
238 239 240 241
	if (tw->tw_family == AF_INET6) {
		const struct inet6_timewait_sock *tw6 =
						inet6_twsk((struct sock *)tw);

A
Alexey Dobriyan 已提交
242 243
		*(struct in6_addr *)r->id.idiag_src = tw6->tw_v6_rcv_saddr;
		*(struct in6_addr *)r->id.idiag_dst = tw6->tw_v6_daddr;
244 245
	}
#endif
246
	nlh->nlmsg_len = skb_tail_pointer(skb) - previous_tail;
247 248
	return skb->len;
nlmsg_failure:
249
	nlmsg_trim(skb, previous_tail);
250
	return -EMSGSIZE;
251 252
}

253
static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
254
			struct inet_diag_req *r, u32 pid, u32 seq, u16 nlmsg_flags,
255 256 257 258
			const struct nlmsghdr *unlh)
{
	if (sk->sk_state == TCP_TIME_WAIT)
		return inet_twsk_diag_fill((struct inet_timewait_sock *)sk,
259
					   skb, r, pid, seq, nlmsg_flags,
260
					   unlh);
261
	return inet_csk_diag_fill(sk, skb, r, pid, seq, nlmsg_flags, unlh);
262 263
}

264 265 266 267 268 269 270 271 272 273 274 275
int inet_diag_check_cookie(struct sock *sk, struct inet_diag_req *req)
{
	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]))
		return -ESTALE;
	else
		return 0;
}
EXPORT_SYMBOL_GPL(inet_diag_check_cookie);

276
int inet_diag_dump_one_icsk(struct inet_hashinfo *hashinfo, struct sk_buff *in_skb,
277
		const struct nlmsghdr *nlh, struct inet_diag_req *req)
L
Linus Torvalds 已提交
278 279 280 281
{
	int err;
	struct sock *sk;
	struct sk_buff *rep;
282 283

	err = -EINVAL;
284
	if (req->sdiag_family == AF_INET) {
285
		sk = inet_lookup(&init_net, hashinfo, req->id.idiag_dst[0],
286 287
				 req->id.idiag_dport, req->id.idiag_src[0],
				 req->id.idiag_sport, req->id.idiag_if);
L
Linus Torvalds 已提交
288
	}
E
Eric Dumazet 已提交
289
#if IS_ENABLED(CONFIG_IPV6)
290
	else if (req->sdiag_family == AF_INET6) {
291
		sk = inet6_lookup(&init_net, hashinfo,
292 293 294 295 296
				  (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 已提交
297 298 299
	}
#endif
	else {
300
		goto out_nosk;
L
Linus Torvalds 已提交
301 302
	}

303
	err = -ENOENT;
L
Linus Torvalds 已提交
304
	if (sk == NULL)
305
		goto out_nosk;
L
Linus Torvalds 已提交
306

307 308
	err = inet_diag_check_cookie(sk, req);
	if (err)
L
Linus Torvalds 已提交
309 310 311
		goto out;

	err = -ENOMEM;
312 313
	rep = alloc_skb(NLMSG_SPACE((sizeof(struct inet_diag_msg) +
				     sizeof(struct inet_diag_meminfo) +
314
				     sizeof(struct tcp_info) + 64)),
315
			GFP_KERNEL);
L
Linus Torvalds 已提交
316 317 318
	if (!rep)
		goto out;

319
	err = sk_diag_fill(sk, rep, req,
320 321 322 323 324 325 326
			   NETLINK_CB(in_skb).pid,
			   nlh->nlmsg_seq, 0, nlh);
	if (err < 0) {
		WARN_ON(err == -EMSGSIZE);
		kfree_skb(rep);
		goto out;
	}
327
	err = netlink_unicast(sock_diag_nlsk, rep, NETLINK_CB(in_skb).pid,
328
			      MSG_DONTWAIT);
L
Linus Torvalds 已提交
329 330 331 332 333 334
	if (err > 0)
		err = 0;

out:
	if (sk) {
		if (sk->sk_state == TCP_TIME_WAIT)
335
			inet_twsk_put((struct inet_timewait_sock *)sk);
L
Linus Torvalds 已提交
336 337 338
		else
			sock_put(sk);
	}
339 340 341
out_nosk:
	return err;
}
342
EXPORT_SYMBOL_GPL(inet_diag_dump_one_icsk);
343 344 345 346 347 348 349 350 351 352 353 354

static int inet_diag_get_exact(struct sk_buff *in_skb,
			       const struct nlmsghdr *nlh,
			       struct inet_diag_req *req)
{
	const struct inet_diag_handler *handler;
	int err;

	handler = inet_diag_lock_handler(req->sdiag_protocol);
	if (IS_ERR(handler))
		err = PTR_ERR(handler);
	else
355
		err = handler->dump_one(in_skb, nlh, req);
356
	inet_diag_unlock_handler(handler);
357

L
Linus Torvalds 已提交
358 359 360
	return err;
}

A
Al Viro 已提交
361
static int bitstring_match(const __be32 *a1, const __be32 *a2, int bits)
L
Linus Torvalds 已提交
362 363 364 365 366 367 368 369 370 371
{
	int words = bits >> 5;

	bits &= 0x1f;

	if (words) {
		if (memcmp(a1, a2, words << 2))
			return 0;
	}
	if (bits) {
A
Al Viro 已提交
372 373
		__be32 w1, w2;
		__be32 mask;
L
Linus Torvalds 已提交
374 375 376 377 378 379 380 381 382 383 384 385 386 387

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

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

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

	return 1;
}


388 389
static int inet_diag_bc_run(const struct nlattr *_bc,
		const struct inet_diag_entry *entry)
L
Linus Torvalds 已提交
390
{
391 392 393
	const void *bc = nla_data(_bc);
	int len = nla_len(_bc);

L
Linus Torvalds 已提交
394 395
	while (len > 0) {
		int yes = 1;
396
		const struct inet_diag_bc_op *op = bc;
L
Linus Torvalds 已提交
397 398

		switch (op->code) {
399
		case INET_DIAG_BC_NOP:
L
Linus Torvalds 已提交
400
			break;
401
		case INET_DIAG_BC_JMP:
L
Linus Torvalds 已提交
402 403
			yes = 0;
			break;
404
		case INET_DIAG_BC_S_GE:
L
Linus Torvalds 已提交
405 406
			yes = entry->sport >= op[1].no;
			break;
407
		case INET_DIAG_BC_S_LE:
408
			yes = entry->sport <= op[1].no;
L
Linus Torvalds 已提交
409
			break;
410
		case INET_DIAG_BC_D_GE:
L
Linus Torvalds 已提交
411 412
			yes = entry->dport >= op[1].no;
			break;
413
		case INET_DIAG_BC_D_LE:
L
Linus Torvalds 已提交
414 415
			yes = entry->dport <= op[1].no;
			break;
416
		case INET_DIAG_BC_AUTO:
L
Linus Torvalds 已提交
417 418
			yes = !(entry->userlocks & SOCK_BINDPORT_LOCK);
			break;
419
		case INET_DIAG_BC_S_COND:
420 421
		case INET_DIAG_BC_D_COND: {
			struct inet_diag_hostcond *cond;
A
Al Viro 已提交
422
			__be32 *addr;
L
Linus Torvalds 已提交
423

424
			cond = (struct inet_diag_hostcond *)(op + 1);
L
Linus Torvalds 已提交
425
			if (cond->port != -1 &&
426
			    cond->port != (op->code == INET_DIAG_BC_S_COND ?
L
Linus Torvalds 已提交
427 428 429 430
					     entry->sport : entry->dport)) {
				yes = 0;
				break;
			}
431

L
Linus Torvalds 已提交
432 433 434
			if (cond->prefix_len == 0)
				break;

435
			if (op->code == INET_DIAG_BC_S_COND)
L
Linus Torvalds 已提交
436 437 438 439
				addr = entry->saddr;
			else
				addr = entry->daddr;

440 441
			if (bitstring_match(addr, cond->addr,
					    cond->prefix_len))
L
Linus Torvalds 已提交
442 443 444 445 446
				break;
			if (entry->family == AF_INET6 &&
			    cond->family == AF_INET) {
				if (addr[0] == 0 && addr[1] == 0 &&
				    addr[2] == htonl(0xffff) &&
447
				    bitstring_match(addr + 3, cond->addr,
448
						    cond->prefix_len))
L
Linus Torvalds 已提交
449 450 451 452 453 454 455
					break;
			}
			yes = 0;
			break;
		}
		}

456
		if (yes) {
L
Linus Torvalds 已提交
457 458 459 460 461 462 463
			len -= op->yes;
			bc += op->yes;
		} else {
			len -= op->no;
			bc += op->no;
		}
	}
E
Eric Dumazet 已提交
464
	return len == 0;
L
Linus Torvalds 已提交
465 466
}

467 468 469 470 471 472 473 474 475
int inet_diag_bc_sk(const struct nlattr *bc, struct sock *sk)
{
	struct inet_diag_entry entry;
	struct inet_sock *inet = inet_sk(sk);

	if (bc == NULL)
		return 1;

	entry.family = sk->sk_family;
E
Eric Dumazet 已提交
476
#if IS_ENABLED(CONFIG_IPV6)
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
	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
	{
		entry.saddr = &inet->inet_rcv_saddr;
		entry.daddr = &inet->inet_daddr;
	}
	entry.sport = inet->inet_num;
	entry.dport = ntohs(inet->inet_dport);
	entry.userlocks = sk->sk_userlocks;

	return inet_diag_bc_run(bc, &entry);
}
EXPORT_SYMBOL_GPL(inet_diag_bc_sk);

L
Linus Torvalds 已提交
496 497 498
static int valid_cc(const void *bc, int len, int cc)
{
	while (len >= 0) {
499
		const struct inet_diag_bc_op *op = bc;
L
Linus Torvalds 已提交
500 501 502 503 504

		if (cc > len)
			return 0;
		if (cc == len)
			return 1;
505
		if (op->yes < 4 || op->yes & 3)
L
Linus Torvalds 已提交
506 507 508 509 510 511 512
			return 0;
		len -= op->yes;
		bc  += op->yes;
	}
	return 0;
}

513
static int inet_diag_bc_audit(const void *bytecode, int bytecode_len)
L
Linus Torvalds 已提交
514
{
515
	const void *bc = bytecode;
L
Linus Torvalds 已提交
516 517 518
	int  len = bytecode_len;

	while (len > 0) {
519
		const struct inet_diag_bc_op *op = bc;
L
Linus Torvalds 已提交
520 521 522

//printk("BC: %d %d %d {%d} / %d\n", op->code, op->yes, op->no, op[1].no, len);
		switch (op->code) {
523 524 525 526 527 528 529 530
		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:
531
			if (op->no < 4 || op->no > len + 4 || op->no & 3)
L
Linus Torvalds 已提交
532 533
				return -EINVAL;
			if (op->no < len &&
534
			    !valid_cc(bytecode, bytecode_len, len - op->no))
L
Linus Torvalds 已提交
535 536
				return -EINVAL;
			break;
537
		case INET_DIAG_BC_NOP:
L
Linus Torvalds 已提交
538 539 540 541
			break;
		default:
			return -EINVAL;
		}
542 543
		if (op->yes < 4 || op->yes > len + 4 || op->yes & 3)
			return -EINVAL;
544
		bc  += op->yes;
L
Linus Torvalds 已提交
545 546 547 548 549
		len -= op->yes;
	}
	return len == 0 ? 0 : -EINVAL;
}

550 551
static int inet_csk_diag_dump(struct sock *sk,
			      struct sk_buff *skb,
552
			      struct netlink_callback *cb,
553
			      struct inet_diag_req *r,
554
			      const struct nlattr *bc)
L
Linus Torvalds 已提交
555
{
556 557
	if (!inet_diag_bc_sk(bc, sk))
		return 0;
L
Linus Torvalds 已提交
558

559
	return inet_csk_diag_fill(sk, skb, r,
560 561
				  NETLINK_CB(cb->skb).pid,
				  cb->nlh->nlmsg_seq, NLM_F_MULTI, cb->nlh);
L
Linus Torvalds 已提交
562 563
}

564 565
static int inet_twsk_diag_dump(struct inet_timewait_sock *tw,
			       struct sk_buff *skb,
566
			       struct netlink_callback *cb,
567
			       struct inet_diag_req *r,
568
			       const struct nlattr *bc)
569
{
570
	if (bc != NULL) {
571 572 573
		struct inet_diag_entry entry;

		entry.family = tw->tw_family;
E
Eric Dumazet 已提交
574
#if IS_ENABLED(CONFIG_IPV6)
575 576 577 578 579 580 581 582 583 584 585 586 587
		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);
588
		entry.userlocks = 0;
589

590
		if (!inet_diag_bc_run(bc, &entry))
591 592 593
			return 0;
	}

594
	return inet_twsk_diag_fill(tw, skb, r,
595 596 597 598
				   NETLINK_CB(cb->skb).pid,
				   cb->nlh->nlmsg_seq, NLM_F_MULTI, cb->nlh);
}

599
static int inet_diag_fill_req(struct sk_buff *skb, struct sock *sk,
600 601
			      struct request_sock *req, u32 pid, u32 seq,
			      const struct nlmsghdr *unlh)
L
Linus Torvalds 已提交
602
{
603
	const struct inet_request_sock *ireq = inet_rsk(req);
L
Linus Torvalds 已提交
604
	struct inet_sock *inet = inet_sk(sk);
605
	unsigned char *b = skb_tail_pointer(skb);
606
	struct inet_diag_msg *r;
L
Linus Torvalds 已提交
607 608 609
	struct nlmsghdr *nlh;
	long tmo;

610
	nlh = NLMSG_PUT(skb, pid, seq, unlh->nlmsg_type, sizeof(*r));
L
Linus Torvalds 已提交
611 612 613
	nlh->nlmsg_flags = NLM_F_MULTI;
	r = NLMSG_DATA(nlh);

614 615 616 617
	r->idiag_family = sk->sk_family;
	r->idiag_state = TCP_SYN_RECV;
	r->idiag_timer = 1;
	r->idiag_retrans = req->retrans;
L
Linus Torvalds 已提交
618

619 620 621
	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 已提交
622 623 624 625 626

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

E
Eric Dumazet 已提交
627
	r->id.idiag_sport = inet->inet_sport;
628 629 630 631 632 633 634 635
	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;
E
Eric Dumazet 已提交
636
#if IS_ENABLED(CONFIG_IPV6)
637
	if (r->idiag_family == AF_INET6) {
A
Alexey Dobriyan 已提交
638 639
		*(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 已提交
640 641
	}
#endif
642
	nlh->nlmsg_len = skb_tail_pointer(skb) - b;
L
Linus Torvalds 已提交
643 644 645 646

	return skb->len;

nlmsg_failure:
647
	nlmsg_trim(skb, b);
L
Linus Torvalds 已提交
648 649 650
	return -1;
}

651
static int inet_diag_dump_reqs(struct sk_buff *skb, struct sock *sk,
652
			       struct netlink_callback *cb,
653
			       struct inet_diag_req *r,
654
			       const struct nlattr *bc)
L
Linus Torvalds 已提交
655
{
656
	struct inet_diag_entry entry;
657
	struct inet_connection_sock *icsk = inet_csk(sk);
658
	struct listen_sock *lopt;
L
Linus Torvalds 已提交
659 660 661 662 663 664 665 666 667 668 669 670 671
	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;

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

674
	lopt = icsk->icsk_accept_queue.listen_opt;
L
Linus Torvalds 已提交
675 676 677
	if (!lopt || !lopt->qlen)
		goto out;

678
	if (bc != NULL) {
E
Eric Dumazet 已提交
679
		entry.sport = inet->inet_num;
L
Linus Torvalds 已提交
680 681 682
		entry.userlocks = sk->sk_userlocks;
	}

683
	for (j = s_j; j < lopt->nr_table_entries; j++) {
684
		struct request_sock *req, *head = lopt->syn_table[j];
L
Linus Torvalds 已提交
685 686 687

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

L
Linus Torvalds 已提交
690 691
			if (reqnum < s_reqnum)
				continue;
692 693
			if (r->id.idiag_dport != ireq->rmt_port &&
			    r->id.idiag_dport)
L
Linus Torvalds 已提交
694 695 696 697
				continue;

			if (bc) {
				entry.saddr =
E
Eric Dumazet 已提交
698
#if IS_ENABLED(CONFIG_IPV6)
L
Linus Torvalds 已提交
699
					(entry.family == AF_INET6) ?
700
					inet6_rsk(req)->loc_addr.s6_addr32 :
L
Linus Torvalds 已提交
701
#endif
702
					&ireq->loc_addr;
703
				entry.daddr =
E
Eric Dumazet 已提交
704
#if IS_ENABLED(CONFIG_IPV6)
L
Linus Torvalds 已提交
705
					(entry.family == AF_INET6) ?
706
					inet6_rsk(req)->rmt_addr.s6_addr32 :
L
Linus Torvalds 已提交
707
#endif
708 709
					&ireq->rmt_addr;
				entry.dport = ntohs(ireq->rmt_port);
L
Linus Torvalds 已提交
710

711
				if (!inet_diag_bc_run(bc, &entry))
L
Linus Torvalds 已提交
712 713 714
					continue;
			}

715
			err = inet_diag_fill_req(skb, sk, req,
L
Linus Torvalds 已提交
716
					       NETLINK_CB(cb->skb).pid,
717
					       cb->nlh->nlmsg_seq, cb->nlh);
L
Linus Torvalds 已提交
718 719 720 721 722 723 724 725 726 727 728
			if (err < 0) {
				cb->args[3] = j + 1;
				cb->args[4] = reqnum;
				goto out;
			}
		}

		s_reqnum = 0;
	}

out:
729
	read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
L
Linus Torvalds 已提交
730 731 732 733

	return err;
}

734
void inet_diag_dump_icsk(struct inet_hashinfo *hashinfo, struct sk_buff *skb,
735
		struct netlink_callback *cb, struct inet_diag_req *r, struct nlattr *bc)
L
Linus Torvalds 已提交
736 737 738
{
	int i, num;
	int s_i, s_num;
739

L
Linus Torvalds 已提交
740 741
	s_i = cb->args[1];
	s_num = num = cb->args[2];
742

L
Linus Torvalds 已提交
743
	if (cb->args[0] == 0) {
744
		if (!(r->idiag_states & (TCPF_LISTEN | TCPF_SYN_RECV)))
L
Linus Torvalds 已提交
745
			goto skip_listen_ht;
746

747
		for (i = s_i; i < INET_LHTABLE_SIZE; i++) {
L
Linus Torvalds 已提交
748
			struct sock *sk;
749
			struct hlist_nulls_node *node;
750
			struct inet_listen_hashbucket *ilb;
L
Linus Torvalds 已提交
751 752

			num = 0;
753 754
			ilb = &hashinfo->listening_hash[i];
			spin_lock_bh(&ilb->lock);
755
			sk_nulls_for_each(sk, node, &ilb->head) {
L
Linus Torvalds 已提交
756 757 758 759 760 761 762
				struct inet_sock *inet = inet_sk(sk);

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

763 764 765 766
				if (r->sdiag_family != AF_UNSPEC &&
						sk->sk_family != r->sdiag_family)
					goto next_listen;

E
Eric Dumazet 已提交
767
				if (r->id.idiag_sport != inet->inet_sport &&
768
				    r->id.idiag_sport)
L
Linus Torvalds 已提交
769 770
					goto next_listen;

771 772
				if (!(r->idiag_states & TCPF_LISTEN) ||
				    r->id.idiag_dport ||
L
Linus Torvalds 已提交
773 774 775
				    cb->args[3] > 0)
					goto syn_recv;

776
				if (inet_csk_diag_dump(sk, skb, cb, r, bc) < 0) {
777
					spin_unlock_bh(&ilb->lock);
L
Linus Torvalds 已提交
778 779 780 781
					goto done;
				}

syn_recv:
782
				if (!(r->idiag_states & TCPF_SYN_RECV))
L
Linus Torvalds 已提交
783 784
					goto next_listen;

785
				if (inet_diag_dump_reqs(skb, sk, cb, r, bc) < 0) {
786
					spin_unlock_bh(&ilb->lock);
L
Linus Torvalds 已提交
787 788 789 790 791 792 793 794
					goto done;
				}

next_listen:
				cb->args[3] = 0;
				cb->args[4] = 0;
				++num;
			}
795
			spin_unlock_bh(&ilb->lock);
L
Linus Torvalds 已提交
796 797 798 799 800 801 802 803 804 805

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

806
	if (!(r->idiag_states & ~(TCPF_LISTEN | TCPF_SYN_RECV)))
807
		goto out;
L
Linus Torvalds 已提交
808

809
	for (i = s_i; i <= hashinfo->ehash_mask; i++) {
810
		struct inet_ehash_bucket *head = &hashinfo->ehash[i];
811
		spinlock_t *lock = inet_ehash_lockp(hashinfo, i);
L
Linus Torvalds 已提交
812
		struct sock *sk;
813
		struct hlist_nulls_node *node;
L
Linus Torvalds 已提交
814

815 816
		num = 0;

817 818
		if (hlist_nulls_empty(&head->chain) &&
			hlist_nulls_empty(&head->twchain))
819 820
			continue;

L
Linus Torvalds 已提交
821 822 823
		if (i > s_i)
			s_num = 0;

824
		spin_lock_bh(lock);
825
		sk_nulls_for_each(sk, node, &head->chain) {
L
Linus Torvalds 已提交
826 827 828 829
			struct inet_sock *inet = inet_sk(sk);

			if (num < s_num)
				goto next_normal;
830
			if (!(r->idiag_states & (1 << sk->sk_state)))
L
Linus Torvalds 已提交
831
				goto next_normal;
832 833 834
			if (r->sdiag_family != AF_UNSPEC &&
					sk->sk_family != r->sdiag_family)
				goto next_normal;
E
Eric Dumazet 已提交
835
			if (r->id.idiag_sport != inet->inet_sport &&
836
			    r->id.idiag_sport)
L
Linus Torvalds 已提交
837
				goto next_normal;
E
Eric Dumazet 已提交
838
			if (r->id.idiag_dport != inet->inet_dport &&
839
			    r->id.idiag_dport)
L
Linus Torvalds 已提交
840
				goto next_normal;
841
			if (inet_csk_diag_dump(sk, skb, cb, r, bc) < 0) {
842
				spin_unlock_bh(lock);
L
Linus Torvalds 已提交
843 844 845 846 847 848
				goto done;
			}
next_normal:
			++num;
		}

849
		if (r->idiag_states & TCPF_TIME_WAIT) {
850 851 852
			struct inet_timewait_sock *tw;

			inet_twsk_for_each(tw, node,
853
				    &head->twchain) {
L
Linus Torvalds 已提交
854 855 856

				if (num < s_num)
					goto next_dying;
857 858 859
				if (r->sdiag_family != AF_UNSPEC &&
						tw->tw_family != r->sdiag_family)
					goto next_dying;
860
				if (r->id.idiag_sport != tw->tw_sport &&
861
				    r->id.idiag_sport)
L
Linus Torvalds 已提交
862
					goto next_dying;
863
				if (r->id.idiag_dport != tw->tw_dport &&
864
				    r->id.idiag_dport)
L
Linus Torvalds 已提交
865
					goto next_dying;
866
				if (inet_twsk_diag_dump(tw, skb, cb, r, bc) < 0) {
867
					spin_unlock_bh(lock);
L
Linus Torvalds 已提交
868 869 870 871 872 873
					goto done;
				}
next_dying:
				++num;
			}
		}
874
		spin_unlock_bh(lock);
L
Linus Torvalds 已提交
875 876 877 878 879
	}

done:
	cb->args[1] = i;
	cb->args[2] = num;
880 881 882
out:
	;
}
883
EXPORT_SYMBOL_GPL(inet_diag_dump_icsk);
884 885 886 887 888 889 890 891

static int __inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb,
		struct inet_diag_req *r, struct nlattr *bc)
{
	const struct inet_diag_handler *handler;

	handler = inet_diag_lock_handler(r->sdiag_protocol);
	if (!IS_ERR(handler))
892
		handler->dump(skb, cb, r, bc);
893
	inet_diag_unlock_handler(handler);
894

L
Linus Torvalds 已提交
895 896 897
	return skb->len;
}

898 899 900 901 902 903 904 905 906 907 908
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);
}

909 910 911 912 913 914 915 916 917 918 919 920
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;
	}
}

921 922 923 924 925 926 927
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);

928
	req.sdiag_family = AF_UNSPEC; /* compatibility */
929 930 931 932 933 934 935 936 937 938 939
	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);
}

940 941 942 943 944 945 946 947 948 949 950 951 952 953 954
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);
}

955
static int inet_diag_rcv_msg_compat(struct sk_buff *skb, struct nlmsghdr *nlh)
L
Linus Torvalds 已提交
956
{
957
	int hdrlen = sizeof(struct inet_diag_req_compat);
L
Linus Torvalds 已提交
958

959 960 961
	if (nlh->nlmsg_type >= INET_DIAG_GETSOCK_MAX ||
	    nlmsg_len(nlh) < hdrlen)
		return -EINVAL;
L
Linus Torvalds 已提交
962

963
	if (nlh->nlmsg_flags & NLM_F_DUMP) {
964 965
		if (nlmsg_attrlen(nlh, hdrlen)) {
			struct nlattr *attr;
L
Linus Torvalds 已提交
966

967 968 969 970 971 972 973
			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 已提交
974

975
		return netlink_dump_start(sock_diag_nlsk, skb, nlh,
976
					  inet_diag_dump_compat, NULL, 0);
L
Linus Torvalds 已提交
977
	}
978

979
	return inet_diag_get_exact_compat(skb, nlh);
L
Linus Torvalds 已提交
980 981
}

P
Pavel Emelyanov 已提交
982 983 984 985 986 987 988 989
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) {
990 991 992 993 994 995 996 997 998 999
		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;
		}

1000
		return netlink_dump_start(sock_diag_nlsk, skb, h,
1001
					  inet_diag_dump, NULL, 0);
P
Pavel Emelyanov 已提交
1002 1003
	}

1004
	return inet_diag_get_exact(skb, h, (struct inet_diag_req *)NLMSG_DATA(h));
P
Pavel Emelyanov 已提交
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
}

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,
};

1017 1018 1019 1020 1021
int inet_diag_register(const struct inet_diag_handler *h)
{
	const __u16 type = h->idiag_type;
	int err = -EINVAL;

1022
	if (type >= IPPROTO_MAX)
1023 1024
		goto out;

1025
	mutex_lock(&inet_diag_table_mutex);
1026 1027 1028 1029 1030
	err = -EEXIST;
	if (inet_diag_table[type] == NULL) {
		inet_diag_table[type] = h;
		err = 0;
	}
1031
	mutex_unlock(&inet_diag_table_mutex);
1032 1033 1034 1035 1036 1037 1038 1039 1040
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;

1041
	if (type >= IPPROTO_MAX)
1042 1043
		return;

1044
	mutex_lock(&inet_diag_table_mutex);
1045
	inet_diag_table[type] = NULL;
1046
	mutex_unlock(&inet_diag_table_mutex);
1047 1048 1049
}
EXPORT_SYMBOL_GPL(inet_diag_unregister);

1050
static int __init inet_diag_init(void)
L
Linus Torvalds 已提交
1051
{
1052
	const int inet_diag_table_size = (IPPROTO_MAX *
1053 1054 1055
					  sizeof(struct inet_diag_handler *));
	int err = -ENOMEM;

1056
	inet_diag_table = kzalloc(inet_diag_table_size, GFP_KERNEL);
1057 1058 1059
	if (!inet_diag_table)
		goto out;

P
Pavel Emelyanov 已提交
1060 1061 1062 1063 1064 1065 1066 1067
	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;

1068
	sock_diag_register_inet_compat(inet_diag_rcv_msg_compat);
1069 1070
out:
	return err;
P
Pavel Emelyanov 已提交
1071 1072 1073 1074

out_free_inet:
	sock_diag_unregister(&inet_diag_handler);
out_free_nl:
1075 1076
	kfree(inet_diag_table);
	goto out;
L
Linus Torvalds 已提交
1077 1078
}

1079
static void __exit inet_diag_exit(void)
L
Linus Torvalds 已提交
1080
{
P
Pavel Emelyanov 已提交
1081 1082
	sock_diag_unregister(&inet6_diag_handler);
	sock_diag_unregister(&inet_diag_handler);
1083
	sock_diag_unregister_inet_compat(inet_diag_rcv_msg_compat);
1084
	kfree(inet_diag_table);
L
Linus Torvalds 已提交
1085 1086
}

1087 1088
module_init(inet_diag_init);
module_exit(inet_diag_exit);
L
Linus Torvalds 已提交
1089
MODULE_LICENSE("GPL");
1090 1091
MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 2 /* AF_INET */);
MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK, NETLINK_SOCK_DIAG, 10 /* AF_INET6 */);