inet_diag.c 26.0 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 50
static DEFINE_MUTEX(inet_diag_table_mutex);

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

	mutex_lock(&inet_diag_table_mutex);
58
	if (!inet_diag_table[proto])
59 60
		return ERR_PTR(-ENOENT);

61
	return inet_diag_table[proto];
62 63 64 65 66 67 68 69
}

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

70
int inet_sk_diag_fill(struct sock *sk, struct inet_connection_sock *icsk,
71
			      struct sk_buff *skb, struct inet_diag_req_v2 *req,
72
			      struct user_namespace *user_ns,		      	
73
			      u32 pid, u32 seq, u16 nlmsg_flags,
74
			      const struct nlmsghdr *unlh)
L
Linus Torvalds 已提交
75
{
76
	const struct inet_sock *inet = inet_sk(sk);
77
	struct inet_diag_msg *r;
L
Linus Torvalds 已提交
78
	struct nlmsghdr  *nlh;
79
	struct nlattr *attr;
80 81
	void *info = NULL;
	const struct inet_diag_handler *handler;
82
	int ext = req->idiag_ext;
83

84
	handler = inet_diag_table[req->sdiag_protocol];
85
	BUG_ON(handler == NULL);
L
Linus Torvalds 已提交
86

87 88 89
	nlh = nlmsg_put(skb, pid, seq, unlh->nlmsg_type, sizeof(*r),
			nlmsg_flags);
	if (!nlh)
90
		return -EMSGSIZE;
91

92
	r = nlmsg_data(nlh);
93 94
	BUG_ON(sk->sk_state == TCP_TIME_WAIT);

95 96 97 98
	r->idiag_family = sk->sk_family;
	r->idiag_state = sk->sk_state;
	r->idiag_timer = 0;
	r->idiag_retrans = 0;
L
Linus Torvalds 已提交
99

100
	r->id.idiag_if = sk->sk_bound_dev_if;
101
	sock_diag_save_cookie(sk, r->id.idiag_cookie);
L
Linus Torvalds 已提交
102

E
Eric Dumazet 已提交
103 104 105 106
	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 已提交
107

108 109 110 111
	/* 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)))
112 113
		if (nla_put_u8(skb, INET_DIAG_TOS, inet->tos) < 0)
			goto errout;
114

E
Eric Dumazet 已提交
115
#if IS_ENABLED(CONFIG_IPV6)
116
	if (r->idiag_family == AF_INET6) {
117
		const struct ipv6_pinfo *np = inet6_sk(sk);
L
Linus Torvalds 已提交
118

A
Alexey Dobriyan 已提交
119 120
		*(struct in6_addr *)r->id.idiag_src = np->rcv_saddr;
		*(struct in6_addr *)r->id.idiag_dst = np->daddr;
121

122
		if (ext & (1 << (INET_DIAG_TCLASS - 1)))
123 124
			if (nla_put_u8(skb, INET_DIAG_TCLASS, np->tclass) < 0)
				goto errout;
L
Linus Torvalds 已提交
125 126 127
	}
#endif

128
	r->idiag_uid = from_kuid_munged(user_ns, sock_i_uid(sk));
129 130
	r->idiag_inode = sock_i_ino(sk);

131 132 133 134 135 136 137 138 139 140
	if (ext & (1 << (INET_DIAG_MEMINFO - 1))) {
		struct inet_diag_meminfo minfo = {
			.idiag_rmem = sk_rmem_alloc_get(sk),
			.idiag_wmem = sk->sk_wmem_queued,
			.idiag_fmem = sk->sk_forward_alloc,
			.idiag_tmem = sk_wmem_alloc_get(sk),
		};

		if (nla_put(skb, INET_DIAG_MEMINFO, sizeof(minfo), &minfo) < 0)
			goto errout;
141 142
	}

143 144
	if (ext & (1 << (INET_DIAG_SKMEMINFO - 1)))
		if (sock_diag_put_meminfo(sk, skb, INET_DIAG_SKMEMINFO))
145
			goto errout;
146

147
	if (icsk == NULL) {
148
		handler->idiag_get_info(sk, r, NULL);
149 150 151
		goto out;
	}

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

154
	if (icsk->icsk_pending == ICSK_TIME_RETRANS) {
155 156 157
		r->idiag_timer = 1;
		r->idiag_retrans = icsk->icsk_retransmits;
		r->idiag_expires = EXPIRES_IN_MS(icsk->icsk_timeout);
158
	} else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
159 160 161
		r->idiag_timer = 4;
		r->idiag_retrans = icsk->icsk_probes_out;
		r->idiag_expires = EXPIRES_IN_MS(icsk->icsk_timeout);
L
Linus Torvalds 已提交
162
	} else if (timer_pending(&sk->sk_timer)) {
163 164 165
		r->idiag_timer = 2;
		r->idiag_retrans = icsk->icsk_probes_out;
		r->idiag_expires = EXPIRES_IN_MS(sk->sk_timer.expires);
L
Linus Torvalds 已提交
166
	} else {
167 168
		r->idiag_timer = 0;
		r->idiag_expires = 0;
L
Linus Torvalds 已提交
169 170
	}
#undef EXPIRES_IN_MS
171

172 173 174 175 176
	if (ext & (1 << (INET_DIAG_INFO - 1))) {
		attr = nla_reserve(skb, INET_DIAG_INFO,
				   sizeof(struct tcp_info));
		if (!attr)
			goto errout;
177

178
		info = nla_data(attr);
L
Linus Torvalds 已提交
179 180
	}

181 182 183 184 185
	if ((ext & (1 << (INET_DIAG_CONG - 1))) && icsk->icsk_ca_ops)
		if (nla_put_string(skb, INET_DIAG_CONG,
				   icsk->icsk_ca_ops->name) < 0)
			goto errout;

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

188 189 190
	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 已提交
191

192
out:
193
	return nlmsg_end(skb, nlh);
L
Linus Torvalds 已提交
194

195 196
errout:
	nlmsg_cancel(skb, nlh);
197
	return -EMSGSIZE;
L
Linus Torvalds 已提交
198
}
199 200 201
EXPORT_SYMBOL_GPL(inet_sk_diag_fill);

static int inet_csk_diag_fill(struct sock *sk,
202
			      struct sk_buff *skb, struct inet_diag_req_v2 *req,
203
			      struct user_namespace *user_ns,
204 205 206 207
			      u32 pid, u32 seq, u16 nlmsg_flags,
			      const struct nlmsghdr *unlh)
{
	return inet_sk_diag_fill(sk, inet_csk(sk),
208
			skb, req, user_ns, pid, seq, nlmsg_flags, unlh);
209
}
L
Linus Torvalds 已提交
210

211
static int inet_twsk_diag_fill(struct inet_timewait_sock *tw,
212
			       struct sk_buff *skb, struct inet_diag_req_v2 *req,
213
			       u32 pid, u32 seq, u16 nlmsg_flags,
214 215 216 217
			       const struct nlmsghdr *unlh)
{
	long tmo;
	struct inet_diag_msg *r;
218
	struct nlmsghdr *nlh;
219

220 221 222
	nlh = nlmsg_put(skb, pid, seq, unlh->nlmsg_type, sizeof(*r),
			nlmsg_flags);
	if (!nlh)
223
		return -EMSGSIZE;
224

225
	r = nlmsg_data(nlh);
226 227 228 229 230 231 232 233 234
	BUG_ON(tw->tw_state != TCP_TIME_WAIT);

	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;
235
	sock_diag_save_cookie(tw, r->id.idiag_cookie);
236 237 238 239 240 241
	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;
242
	r->idiag_expires      = DIV_ROUND_UP(tmo * 1000, HZ);
243 244 245 246
	r->idiag_rqueue	      = 0;
	r->idiag_wqueue	      = 0;
	r->idiag_uid	      = 0;
	r->idiag_inode	      = 0;
E
Eric Dumazet 已提交
247
#if IS_ENABLED(CONFIG_IPV6)
248 249 250 251
	if (tw->tw_family == AF_INET6) {
		const struct inet6_timewait_sock *tw6 =
						inet6_twsk((struct sock *)tw);

A
Alexey Dobriyan 已提交
252 253
		*(struct in6_addr *)r->id.idiag_src = tw6->tw_v6_rcv_saddr;
		*(struct in6_addr *)r->id.idiag_dst = tw6->tw_v6_daddr;
254 255
	}
#endif
256 257

	return nlmsg_end(skb, nlh);
258 259
}

260
static int sk_diag_fill(struct sock *sk, struct sk_buff *skb,
261 262 263
			struct inet_diag_req_v2 *r,
			struct user_namespace *user_ns,
			u32 pid, u32 seq, u16 nlmsg_flags,
264 265 266 267
			const struct nlmsghdr *unlh)
{
	if (sk->sk_state == TCP_TIME_WAIT)
		return inet_twsk_diag_fill((struct inet_timewait_sock *)sk,
268
					   skb, r, pid, seq, nlmsg_flags,
269
					   unlh);
270
	return inet_csk_diag_fill(sk, skb, r, user_ns, pid, seq, nlmsg_flags, unlh);
271 272
}

273
int inet_diag_dump_one_icsk(struct inet_hashinfo *hashinfo, struct sk_buff *in_skb,
274
		const struct nlmsghdr *nlh, struct inet_diag_req_v2 *req)
L
Linus Torvalds 已提交
275 276 277 278
{
	int err;
	struct sock *sk;
	struct sk_buff *rep;
A
Andrey Vagin 已提交
279
	struct net *net = sock_net(in_skb->sk);
280 281

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

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

305
	err = sock_diag_check_cookie(sk, req->id.idiag_cookie);
306
	if (err)
L
Linus Torvalds 已提交
307 308
		goto out;

309 310 311 312 313
	rep = nlmsg_new(sizeof(struct inet_diag_msg) +
			sizeof(struct inet_diag_meminfo) +
			sizeof(struct tcp_info) + 64, GFP_KERNEL);
	if (!rep) {
		err = -ENOMEM;
L
Linus Torvalds 已提交
314
		goto out;
315
	}
L
Linus Torvalds 已提交
316

317
	err = sk_diag_fill(sk, rep, req,
318
			   sk_user_ns(NETLINK_CB(in_skb).ssk),
319 320 321 322
			   NETLINK_CB(in_skb).pid,
			   nlh->nlmsg_seq, 0, nlh);
	if (err < 0) {
		WARN_ON(err == -EMSGSIZE);
323
		nlmsg_free(rep);
324 325
		goto out;
	}
A
Andrey Vagin 已提交
326
	err = netlink_unicast(net->diag_nlsk, rep, NETLINK_CB(in_skb).pid,
327
			      MSG_DONTWAIT);
L
Linus Torvalds 已提交
328 329 330 331 332 333
	if (err > 0)
		err = 0;

out:
	if (sk) {
		if (sk->sk_state == TCP_TIME_WAIT)
334
			inet_twsk_put((struct inet_timewait_sock *)sk);
L
Linus Torvalds 已提交
335 336 337
		else
			sock_put(sk);
	}
338 339 340
out_nosk:
	return err;
}
341
EXPORT_SYMBOL_GPL(inet_diag_dump_one_icsk);
342 343 344

static int inet_diag_get_exact(struct sk_buff *in_skb,
			       const struct nlmsghdr *nlh,
345
			       struct inet_diag_req_v2 *req)
346 347 348 349 350 351 352 353
{
	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
354
		err = handler->dump_one(in_skb, nlh, req);
355
	inet_diag_unlock_handler(handler);
356

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

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

	bits &= 0x1f;

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

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

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

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

	return 1;
}


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

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

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

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

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

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

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

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

466 467 468 469 470 471 472 473 474
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 已提交
475
#if IS_ENABLED(CONFIG_IPV6)
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
	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 已提交
495 496 497
static int valid_cc(const void *bc, int len, int cc)
{
	while (len >= 0) {
498
		const struct inet_diag_bc_op *op = bc;
L
Linus Torvalds 已提交
499 500 501 502 503

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

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

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

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

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

558
	return inet_csk_diag_fill(sk, skb, r,
559
				  sk_user_ns(NETLINK_CB(cb->skb).ssk),
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_v2 *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 602
			      struct request_sock *req,
			      struct user_namespace *user_ns,
			      u32 pid, u32 seq,
603
			      const struct nlmsghdr *unlh)
L
Linus Torvalds 已提交
604
{
605
	const struct inet_request_sock *ireq = inet_rsk(req);
L
Linus Torvalds 已提交
606
	struct inet_sock *inet = inet_sk(sk);
607
	struct inet_diag_msg *r;
L
Linus Torvalds 已提交
608 609 610
	struct nlmsghdr *nlh;
	long tmo;

611 612 613 614
	nlh = nlmsg_put(skb, pid, seq, unlh->nlmsg_type, sizeof(*r),
			NLM_F_MULTI);
	if (!nlh)
		return -EMSGSIZE;
L
Linus Torvalds 已提交
615

616
	r = nlmsg_data(nlh);
617 618 619 620
	r->idiag_family = sk->sk_family;
	r->idiag_state = TCP_SYN_RECV;
	r->idiag_timer = 1;
	r->idiag_retrans = req->retrans;
L
Linus Torvalds 已提交
621

622
	r->id.idiag_if = sk->sk_bound_dev_if;
623
	sock_diag_save_cookie(req, r->id.idiag_cookie);
L
Linus Torvalds 已提交
624 625 626 627 628

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

E
Eric Dumazet 已提交
629
	r->id.idiag_sport = inet->inet_sport;
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;
636
	r->idiag_uid = from_kuid_munged(user_ns, sock_i_uid(sk));
637
	r->idiag_inode = 0;
E
Eric Dumazet 已提交
638
#if IS_ENABLED(CONFIG_IPV6)
639
	if (r->idiag_family == AF_INET6) {
A
Alexey Dobriyan 已提交
640 641
		*(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 已提交
642 643 644
	}
#endif

645
	return nlmsg_end(skb, nlh);
L
Linus Torvalds 已提交
646 647
}

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

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

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

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

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

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

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

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

708
				if (!inet_diag_bc_run(bc, &entry))
L
Linus Torvalds 已提交
709 710 711
					continue;
			}

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

		s_reqnum = 0;
	}

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

	return err;
}

732
void inet_diag_dump_icsk(struct inet_hashinfo *hashinfo, struct sk_buff *skb,
733
		struct netlink_callback *cb, struct inet_diag_req_v2 *r, struct nlattr *bc)
L
Linus Torvalds 已提交
734 735 736
{
	int i, num;
	int s_i, s_num;
A
Andrey Vagin 已提交
737
	struct net *net = sock_net(skb->sk);
738

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

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

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

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

A
Andrey Vagin 已提交
757 758 759
				if (!net_eq(sock_net(sk), net))
					continue;

L
Linus Torvalds 已提交
760 761 762 763 764
				if (num < s_num) {
					num++;
					continue;
				}

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

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

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

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

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

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

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

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

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

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

817 818
		num = 0;

819 820
		if (hlist_nulls_empty(&head->chain) &&
			hlist_nulls_empty(&head->twchain))
821 822
			continue;

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

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

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

853
		if (r->idiag_states & TCPF_TIME_WAIT) {
854 855 856
			struct inet_timewait_sock *tw;

			inet_twsk_for_each(tw, node,
857
				    &head->twchain) {
A
Andrey Vagin 已提交
858 859
				if (!net_eq(twsk_net(tw), net))
					continue;
L
Linus Torvalds 已提交
860 861 862

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

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

static int __inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb,
892
		struct inet_diag_req_v2 *r, struct nlattr *bc)
893 894 895 896 897
{
	const struct inet_diag_handler *handler;

	handler = inet_diag_lock_handler(r->sdiag_protocol);
	if (!IS_ERR(handler))
898
		handler->dump(skb, cb, r, bc);
899
	inet_diag_unlock_handler(handler);
900

L
Linus Torvalds 已提交
901 902 903
	return skb->len;
}

904 905 906
static int inet_diag_dump(struct sk_buff *skb, struct netlink_callback *cb)
{
	struct nlattr *bc = NULL;
907
	int hdrlen = sizeof(struct inet_diag_req_v2);
908 909 910 911

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

912
	return __inet_diag_dump(skb, cb, nlmsg_data(cb->nlh), bc);
913 914
}

915 916 917 918 919 920 921 922 923 924 925 926
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;
	}
}

927 928
static int inet_diag_dump_compat(struct sk_buff *skb, struct netlink_callback *cb)
{
929
	struct inet_diag_req *rc = nlmsg_data(cb->nlh);
930
	struct inet_diag_req_v2 req;
931
	struct nlattr *bc = NULL;
932
	int hdrlen = sizeof(struct inet_diag_req);
933

934
	req.sdiag_family = AF_UNSPEC; /* compatibility */
935 936 937 938 939 940 941 942 943 944 945
	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);
}

946 947 948
static int inet_diag_get_exact_compat(struct sk_buff *in_skb,
			       const struct nlmsghdr *nlh)
{
949
	struct inet_diag_req *rc = nlmsg_data(nlh);
950
	struct inet_diag_req_v2 req;
951 952 953 954 955 956 957 958 959 960

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

961
static int inet_diag_rcv_msg_compat(struct sk_buff *skb, struct nlmsghdr *nlh)
L
Linus Torvalds 已提交
962
{
963
	int hdrlen = sizeof(struct inet_diag_req);
A
Andrey Vagin 已提交
964
	struct net *net = sock_net(skb->sk);
L
Linus Torvalds 已提交
965

966 967 968
	if (nlh->nlmsg_type >= INET_DIAG_GETSOCK_MAX ||
	    nlmsg_len(nlh) < hdrlen)
		return -EINVAL;
L
Linus Torvalds 已提交
969

970
	if (nlh->nlmsg_flags & NLM_F_DUMP) {
971 972
		if (nlmsg_attrlen(nlh, hdrlen)) {
			struct nlattr *attr;
L
Linus Torvalds 已提交
973

974 975 976 977 978 979 980
			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;
		}
981 982 983 984
		{
			struct netlink_dump_control c = {
				.dump = inet_diag_dump_compat,
			};
A
Andrey Vagin 已提交
985
			return netlink_dump_start(net->diag_nlsk, skb, nlh, &c);
986
		}
L
Linus Torvalds 已提交
987
	}
988

989
	return inet_diag_get_exact_compat(skb, nlh);
L
Linus Torvalds 已提交
990 991
}

P
Pavel Emelyanov 已提交
992 993
static int inet_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h)
{
994
	int hdrlen = sizeof(struct inet_diag_req_v2);
A
Andrey Vagin 已提交
995
	struct net *net = sock_net(skb->sk);
P
Pavel Emelyanov 已提交
996 997 998 999 1000

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

	if (h->nlmsg_flags & NLM_F_DUMP) {
1001 1002 1003 1004 1005 1006 1007 1008 1009
		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;
		}
1010 1011 1012 1013
		{
			struct netlink_dump_control c = {
				.dump = inet_diag_dump,
			};
A
Andrey Vagin 已提交
1014
			return netlink_dump_start(net->diag_nlsk, skb, h, &c);
1015
		}
P
Pavel Emelyanov 已提交
1016 1017
	}

1018
	return inet_diag_get_exact(skb, h, nlmsg_data(h));
P
Pavel Emelyanov 已提交
1019 1020
}

1021
static const struct sock_diag_handler inet_diag_handler = {
P
Pavel Emelyanov 已提交
1022 1023 1024 1025
	.family = AF_INET,
	.dump = inet_diag_handler_dump,
};

1026
static const struct sock_diag_handler inet6_diag_handler = {
P
Pavel Emelyanov 已提交
1027 1028 1029 1030
	.family = AF_INET6,
	.dump = inet_diag_handler_dump,
};

1031 1032 1033 1034 1035
int inet_diag_register(const struct inet_diag_handler *h)
{
	const __u16 type = h->idiag_type;
	int err = -EINVAL;

1036
	if (type >= IPPROTO_MAX)
1037 1038
		goto out;

1039
	mutex_lock(&inet_diag_table_mutex);
1040 1041 1042 1043 1044
	err = -EEXIST;
	if (inet_diag_table[type] == NULL) {
		inet_diag_table[type] = h;
		err = 0;
	}
1045
	mutex_unlock(&inet_diag_table_mutex);
1046 1047 1048 1049 1050 1051 1052 1053 1054
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;

1055
	if (type >= IPPROTO_MAX)
1056 1057
		return;

1058
	mutex_lock(&inet_diag_table_mutex);
1059
	inet_diag_table[type] = NULL;
1060
	mutex_unlock(&inet_diag_table_mutex);
1061 1062 1063
}
EXPORT_SYMBOL_GPL(inet_diag_unregister);

1064
static int __init inet_diag_init(void)
L
Linus Torvalds 已提交
1065
{
1066
	const int inet_diag_table_size = (IPPROTO_MAX *
1067 1068 1069
					  sizeof(struct inet_diag_handler *));
	int err = -ENOMEM;

1070
	inet_diag_table = kzalloc(inet_diag_table_size, GFP_KERNEL);
1071 1072 1073
	if (!inet_diag_table)
		goto out;

P
Pavel Emelyanov 已提交
1074 1075 1076 1077 1078 1079 1080 1081
	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;

1082
	sock_diag_register_inet_compat(inet_diag_rcv_msg_compat);
1083 1084
out:
	return err;
P
Pavel Emelyanov 已提交
1085 1086 1087 1088

out_free_inet:
	sock_diag_unregister(&inet_diag_handler);
out_free_nl:
1089 1090
	kfree(inet_diag_table);
	goto out;
L
Linus Torvalds 已提交
1091 1092
}

1093
static void __exit inet_diag_exit(void)
L
Linus Torvalds 已提交
1094
{
P
Pavel Emelyanov 已提交
1095 1096
	sock_diag_unregister(&inet6_diag_handler);
	sock_diag_unregister(&inet_diag_handler);
1097
	sock_diag_unregister_inet_compat(inet_diag_rcv_msg_compat);
1098
	kfree(inet_diag_table);
L
Linus Torvalds 已提交
1099 1100
}

1101 1102
module_init(inet_diag_init);
module_exit(inet_diag_exit);
L
Linus Torvalds 已提交
1103
MODULE_LICENSE("GPL");
1104 1105
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 */);