ping.c 29.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
/*
 * INET		An implementation of the TCP/IP protocol suite for the LINUX
 *		operating system.  INET is implemented using the  BSD Socket
 *		interface as the means of communication with the user level.
 *
 *		"Ping" sockets
 *
 *		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.
 *
 * Based on ipv4/udp.c code.
 *
 * Authors:	Vasiliy Kulikov / Openwall (for Linux 2.6),
 *		Pavel Kankovsky (for Linux 2.4.32)
 *
 * Pavel gave all rights to bugs to Vasiliy,
 * none of the bugs are Pavel's now.
 *
 */

#include <linux/uaccess.h>
#include <linux/types.h>
#include <linux/fcntl.h>
#include <linux/socket.h>
#include <linux/sockios.h>
#include <linux/in.h>
#include <linux/errno.h>
#include <linux/timer.h>
#include <linux/mm.h>
#include <linux/inet.h>
#include <linux/netdevice.h>
#include <net/snmp.h>
#include <net/ip.h>
#include <net/icmp.h>
#include <net/protocol.h>
#include <linux/skbuff.h>
#include <linux/proc_fs.h>
40
#include <linux/export.h>
41 42 43 44 45 46 47
#include <net/sock.h>
#include <net/ping.h>
#include <net/udp.h>
#include <net/route.h>
#include <net/inet_common.h>
#include <net/checksum.h>

48 49 50 51 52 53 54 55
#if IS_ENABLED(CONFIG_IPV6)
#include <linux/in6.h>
#include <linux/icmpv6.h>
#include <net/addrconf.h>
#include <net/ipv6.h>
#include <net/transp_v6.h>
#endif

56 57 58 59
struct ping_table {
	struct hlist_nulls_head	hash[PING_HTABLE_SIZE];
	rwlock_t		lock;
};
60

61
static struct ping_table ping_table;
62 63
struct pingv6_ops pingv6_ops;
EXPORT_SYMBOL_GPL(pingv6_ops);
64

E
Eric Dumazet 已提交
65
static u16 ping_port_rover;
66

67
static inline u32 ping_hashfn(const struct net *net, u32 num, u32 mask)
68
{
69
	u32 res = (num + net_hash_mix(net)) & mask;
70

71
	pr_debug("hash(%u) = %u\n", num, res);
72 73
	return res;
}
74
EXPORT_SYMBOL_GPL(ping_hash);
75 76

static inline struct hlist_nulls_head *ping_hashslot(struct ping_table *table,
77
					     struct net *net, unsigned int num)
78 79 80 81
{
	return &table->hash[ping_hashfn(net, num, PING_HTABLE_MASK)];
}

82
int ping_get_port(struct sock *sk, unsigned short ident)
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
{
	struct hlist_nulls_node *node;
	struct hlist_nulls_head *hlist;
	struct inet_sock *isk, *isk2;
	struct sock *sk2 = NULL;

	isk = inet_sk(sk);
	write_lock_bh(&ping_table.lock);
	if (ident == 0) {
		u32 i;
		u16 result = ping_port_rover + 1;

		for (i = 0; i < (1L << 16); i++, result++) {
			if (!result)
				result++; /* avoid zero */
			hlist = ping_hashslot(&ping_table, sock_net(sk),
					    result);
			ping_portaddr_for_each_entry(sk2, node, hlist) {
				isk2 = inet_sk(sk2);

				if (isk2->inet_num == result)
					goto next_port;
			}

			/* found */
			ping_port_rover = ident = result;
			break;
next_port:
			;
		}
		if (i >= (1L << 16))
			goto fail;
	} else {
		hlist = ping_hashslot(&ping_table, sock_net(sk), ident);
		ping_portaddr_for_each_entry(sk2, node, hlist) {
			isk2 = inet_sk(sk2);

120 121 122 123
			/* BUG? Why is this reuse and not reuseaddr? ping.c
			 * doesn't turn off SO_REUSEADDR, and it doesn't expect
			 * that other ping processes can steal its packets.
			 */
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
			if ((isk2->inet_num == ident) &&
			    (sk2 != sk) &&
			    (!sk2->sk_reuse || !sk->sk_reuse))
				goto fail;
		}
	}

	pr_debug("found port/ident = %d\n", ident);
	isk->inet_num = ident;
	if (sk_unhashed(sk)) {
		pr_debug("was not hashed\n");
		sock_hold(sk);
		hlist_nulls_add_head(&sk->sk_nulls_node, hlist);
		sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
	}
	write_unlock_bh(&ping_table.lock);
	return 0;

fail:
	write_unlock_bh(&ping_table.lock);
	return 1;
}
146
EXPORT_SYMBOL_GPL(ping_get_port);
147

148
void ping_hash(struct sock *sk)
149
{
150
	pr_debug("ping_hash(sk->port=%u)\n", inet_sk(sk)->inet_num);
151 152 153
	BUG(); /* "Please do not press this button again." */
}

154
void ping_unhash(struct sock *sk)
155 156
{
	struct inet_sock *isk = inet_sk(sk);
157
	pr_debug("ping_unhash(isk=%p,isk->num=%u)\n", isk, isk->inet_num);
158 159 160
	if (sk_hashed(sk)) {
		write_lock_bh(&ping_table.lock);
		hlist_nulls_del(&sk->sk_nulls_node);
161
		sk_nulls_node_init(&sk->sk_nulls_node);
162
		sock_put(sk);
E
Eric Dumazet 已提交
163 164
		isk->inet_num = 0;
		isk->inet_sport = 0;
165 166 167 168
		sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
		write_unlock_bh(&ping_table.lock);
	}
}
169
EXPORT_SYMBOL_GPL(ping_unhash);
170

171
static struct sock *ping_lookup(struct net *net, struct sk_buff *skb, u16 ident)
172 173 174 175 176
{
	struct hlist_nulls_head *hslot = ping_hashslot(&ping_table, net, ident);
	struct sock *sk = NULL;
	struct inet_sock *isk;
	struct hlist_nulls_node *hnode;
177 178 179 180 181 182 183 184 185 186 187
	int dif = skb->dev->ifindex;

	if (skb->protocol == htons(ETH_P_IP)) {
		pr_debug("try to find: num = %d, daddr = %pI4, dif = %d\n",
			 (int)ident, &ip_hdr(skb)->daddr, dif);
#if IS_ENABLED(CONFIG_IPV6)
	} else if (skb->protocol == htons(ETH_P_IPV6)) {
		pr_debug("try to find: num = %d, daddr = %pI6c, dif = %d\n",
			 (int)ident, &ipv6_hdr(skb)->daddr, dif);
#endif
	}
188 189 190 191 192 193 194 195 196

	read_lock_bh(&ping_table.lock);

	ping_portaddr_for_each_entry(sk, hnode, hslot) {
		isk = inet_sk(sk);

		pr_debug("iterate\n");
		if (isk->inet_num != ident)
			continue;
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212

		if (skb->protocol == htons(ETH_P_IP) &&
		    sk->sk_family == AF_INET) {
			pr_debug("found: %p: num=%d, daddr=%pI4, dif=%d\n", sk,
				 (int) isk->inet_num, &isk->inet_rcv_saddr,
				 sk->sk_bound_dev_if);

			if (isk->inet_rcv_saddr &&
			    isk->inet_rcv_saddr != ip_hdr(skb)->daddr)
				continue;
#if IS_ENABLED(CONFIG_IPV6)
		} else if (skb->protocol == htons(ETH_P_IPV6) &&
			   sk->sk_family == AF_INET6) {

			pr_debug("found: %p: num=%d, daddr=%pI6c, dif=%d\n", sk,
				 (int) isk->inet_num,
213
				 &sk->sk_v6_rcv_saddr,
214 215
				 sk->sk_bound_dev_if);

216 217
			if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr) &&
			    !ipv6_addr_equal(&sk->sk_v6_rcv_saddr,
218 219 220
					     &ipv6_hdr(skb)->daddr))
				continue;
#endif
221 222
		} else {
			continue;
223 224
		}

225 226 227 228 229 230 231 232 233 234 235 236 237 238
		if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif)
			continue;

		sock_hold(sk);
		goto exit;
	}

	sk = NULL;
exit:
	read_unlock_bh(&ping_table.lock);

	return sk;
}

239 240
static void inet_get_ping_group_range_net(struct net *net, kgid_t *low,
					  kgid_t *high)
V
Vasiliy Kulikov 已提交
241
{
242
	kgid_t *data = net->ipv4.ping_group_range.range;
243 244
	unsigned int seq;

V
Vasiliy Kulikov 已提交
245
	do {
246
		seq = read_seqbegin(&net->ipv4.ping_group_range.lock);
V
Vasiliy Kulikov 已提交
247 248 249

		*low = data[0];
		*high = data[1];
250
	} while (read_seqretry(&net->ipv4.ping_group_range.lock, seq));
V
Vasiliy Kulikov 已提交
251 252 253
}


254
int ping_init_sock(struct sock *sk)
255 256
{
	struct net *net = sock_net(sk);
257
	kgid_t group = current_egid();
258 259
	struct group_info *group_info;
	int i, j, count;
260
	kgid_t low, high;
261
	int ret = 0;
262

263 264 265
	if (sk->sk_family == AF_INET6)
		sk->sk_ipv6only = 1;

266 267
	inet_get_ping_group_range_net(net, &low, &high);
	if (gid_lte(low, group) && gid_lte(group, high))
268 269
		return 0;

270 271
	group_info = get_current_groups();
	count = group_info->ngroups;
272 273 274
	for (i = 0; i < group_info->nblocks; i++) {
		int cp_count = min_t(int, NGROUPS_PER_BLOCK, count);
		for (j = 0; j < cp_count; j++) {
275 276
			kgid_t gid = group_info->blocks[i][j];
			if (gid_lte(low, gid) && gid_lte(gid, high))
277
				goto out_release_group;
278 279 280 281 282
		}

		count -= cp_count;
	}

283 284 285 286 287
	ret = -EACCES;

out_release_group:
	put_group_info(group_info);
	return ret;
288
}
289
EXPORT_SYMBOL_GPL(ping_init_sock);
290

291
void ping_close(struct sock *sk, long timeout)
292 293
{
	pr_debug("ping_close(sk=%p,sk->num=%u)\n",
J
Joe Perches 已提交
294
		 inet_sk(sk), inet_sk(sk)->inet_num);
295 296 297 298
	pr_debug("isk->refcnt = %d\n", sk->sk_refcnt.counter);

	sk_common_release(sk);
}
299 300 301
EXPORT_SYMBOL_GPL(ping_close);

/* Checks the bind address and possibly modifies sk->sk_bound_dev_if. */
302 303
static int ping_check_bind_addr(struct sock *sk, struct inet_sock *isk,
				struct sockaddr *uaddr, int addr_len) {
304 305 306 307 308 309 310 311
	struct net *net = sock_net(sk);
	if (sk->sk_family == AF_INET) {
		struct sockaddr_in *addr = (struct sockaddr_in *) uaddr;
		int chk_addr_ret;

		if (addr_len < sizeof(*addr))
			return -EINVAL;

312 313 314 315 316
		if (addr->sin_family != AF_INET &&
		    !(addr->sin_family == AF_UNSPEC &&
		      addr->sin_addr.s_addr == htonl(INADDR_ANY)))
			return -EAFNOSUPPORT;

317 318 319 320 321 322 323 324
		pr_debug("ping_check_bind_addr(sk=%p,addr=%pI4,port=%d)\n",
			 sk, &addr->sin_addr.s_addr, ntohs(addr->sin_port));

		chk_addr_ret = inet_addr_type(net, addr->sin_addr.s_addr);

		if (addr->sin_addr.s_addr == htonl(INADDR_ANY))
			chk_addr_ret = RTN_LOCAL;

325
		if ((net->ipv4.sysctl_ip_nonlocal_bind == 0 &&
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
		    isk->freebind == 0 && isk->transparent == 0 &&
		     chk_addr_ret != RTN_LOCAL) ||
		    chk_addr_ret == RTN_MULTICAST ||
		    chk_addr_ret == RTN_BROADCAST)
			return -EADDRNOTAVAIL;

#if IS_ENABLED(CONFIG_IPV6)
	} else if (sk->sk_family == AF_INET6) {
		struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
		int addr_type, scoped, has_addr;
		struct net_device *dev = NULL;

		if (addr_len < sizeof(*addr))
			return -EINVAL;

341
		if (addr->sin6_family != AF_INET6)
342
			return -EAFNOSUPPORT;
343

344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
		pr_debug("ping_check_bind_addr(sk=%p,addr=%pI6c,port=%d)\n",
			 sk, addr->sin6_addr.s6_addr, ntohs(addr->sin6_port));

		addr_type = ipv6_addr_type(&addr->sin6_addr);
		scoped = __ipv6_addr_needs_scope_id(addr_type);
		if ((addr_type != IPV6_ADDR_ANY &&
		     !(addr_type & IPV6_ADDR_UNICAST)) ||
		    (scoped && !addr->sin6_scope_id))
			return -EINVAL;

		rcu_read_lock();
		if (addr->sin6_scope_id) {
			dev = dev_get_by_index_rcu(net, addr->sin6_scope_id);
			if (!dev) {
				rcu_read_unlock();
				return -ENODEV;
			}
		}
		has_addr = pingv6_ops.ipv6_chk_addr(net, &addr->sin6_addr, dev,
						    scoped);
		rcu_read_unlock();

T
Tom Herbert 已提交
366 367
		if (!(net->ipv6.sysctl.ip_nonlocal_bind ||
		      isk->freebind || isk->transparent || has_addr ||
368 369 370 371 372 373 374 375 376 377 378 379
		      addr_type == IPV6_ADDR_ANY))
			return -EADDRNOTAVAIL;

		if (scoped)
			sk->sk_bound_dev_if = addr->sin6_scope_id;
#endif
	} else {
		return -EAFNOSUPPORT;
	}
	return 0;
}

380
static void ping_set_saddr(struct sock *sk, struct sockaddr *saddr)
381 382 383 384 385 386 387 388 389
{
	if (saddr->sa_family == AF_INET) {
		struct inet_sock *isk = inet_sk(sk);
		struct sockaddr_in *addr = (struct sockaddr_in *) saddr;
		isk->inet_rcv_saddr = isk->inet_saddr = addr->sin_addr.s_addr;
#if IS_ENABLED(CONFIG_IPV6)
	} else if (saddr->sa_family == AF_INET6) {
		struct sockaddr_in6 *addr = (struct sockaddr_in6 *) saddr;
		struct ipv6_pinfo *np = inet6_sk(sk);
390
		sk->sk_v6_rcv_saddr = np->saddr = addr->sin6_addr;
391 392 393
#endif
	}
}
394

395
static void ping_clear_saddr(struct sock *sk, int dif)
396 397 398 399 400 401 402 403
{
	sk->sk_bound_dev_if = dif;
	if (sk->sk_family == AF_INET) {
		struct inet_sock *isk = inet_sk(sk);
		isk->inet_rcv_saddr = isk->inet_saddr = 0;
#if IS_ENABLED(CONFIG_IPV6)
	} else if (sk->sk_family == AF_INET6) {
		struct ipv6_pinfo *np = inet6_sk(sk);
404
		memset(&sk->sk_v6_rcv_saddr, 0, sizeof(sk->sk_v6_rcv_saddr));
405 406 407 408
		memset(&np->saddr, 0, sizeof(np->saddr));
#endif
	}
}
409 410 411 412 413
/*
 * We need our own bind because there are no privileged id's == local ports.
 * Moreover, we don't allow binding to multi- and broadcast addresses.
 */

414
int ping_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
415 416 417 418
{
	struct inet_sock *isk = inet_sk(sk);
	unsigned short snum;
	int err;
419
	int dif = sk->sk_bound_dev_if;
420

421 422 423
	err = ping_check_bind_addr(sk, isk, uaddr, addr_len);
	if (err)
		return err;
424 425 426 427 428 429 430 431

	lock_sock(sk);

	err = -EINVAL;
	if (isk->inet_num != 0)
		goto out;

	err = -EADDRINUSE;
432 433 434 435
	ping_set_saddr(sk, uaddr);
	snum = ntohs(((struct sockaddr_in *)uaddr)->sin_port);
	if (ping_get_port(sk, snum) != 0) {
		ping_clear_saddr(sk, dif);
436 437 438
		goto out;
	}

439
	pr_debug("after bind(): num = %d, dif = %d\n",
J
Joe Perches 已提交
440 441
		 (int)isk->inet_num,
		 (int)sk->sk_bound_dev_if);
442 443

	err = 0;
444
	if (sk->sk_family == AF_INET && isk->inet_rcv_saddr)
445
		sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
446 447 448 449
#if IS_ENABLED(CONFIG_IPV6)
	if (sk->sk_family == AF_INET6 && !ipv6_addr_any(&sk->sk_v6_rcv_saddr))
		sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
#endif
450

451 452 453 454 455
	if (snum)
		sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
	isk->inet_sport = htons(isk->inet_num);
	isk->inet_daddr = 0;
	isk->inet_dport = 0;
456 457 458

#if IS_ENABLED(CONFIG_IPV6)
	if (sk->sk_family == AF_INET6)
459
		memset(&sk->sk_v6_daddr, 0, sizeof(sk->sk_v6_daddr));
460 461
#endif

462 463 464 465 466 467
	sk_dst_reset(sk);
out:
	release_sock(sk);
	pr_debug("ping_v4_bind -> %d\n", err);
	return err;
}
468
EXPORT_SYMBOL_GPL(ping_bind);
469 470 471 472 473

/*
 * Is this a supported type of ICMP message?
 */

474
static inline int ping_supported(int family, int type, int code)
475
{
476 477
	return (family == AF_INET && type == ICMP_ECHO && code == 0) ||
	       (family == AF_INET6 && type == ICMPV6_ECHO_REQUEST && code == 0);
478 479 480 481 482 483 484
}

/*
 * This routine is called by the ICMP module when it gets some
 * sort of error condition.
 */

485
void ping_err(struct sk_buff *skb, int offset, u32 info)
486
{
487 488
	int family;
	struct icmphdr *icmph;
489
	struct inet_sock *inet_sock;
490 491
	int type;
	int code;
492 493 494 495 496
	struct net *net = dev_net(skb->dev);
	struct sock *sk;
	int harderr;
	int err;

497 498 499 500 501 502 503 504 505 506 507 508 509 510
	if (skb->protocol == htons(ETH_P_IP)) {
		family = AF_INET;
		type = icmp_hdr(skb)->type;
		code = icmp_hdr(skb)->code;
		icmph = (struct icmphdr *)(skb->data + offset);
	} else if (skb->protocol == htons(ETH_P_IPV6)) {
		family = AF_INET6;
		type = icmp6_hdr(skb)->icmp6_type;
		code = icmp6_hdr(skb)->icmp6_code;
		icmph = (struct icmphdr *) (skb->data + offset);
	} else {
		BUG();
	}

511 512
	/* We assume the packet has already been checked by icmp_unreach */

513
	if (!ping_supported(family, icmph->type, icmph->code))
514 515
		return;

516 517 518
	pr_debug("ping_err(proto=0x%x,type=%d,code=%d,id=%04x,seq=%04x)\n",
		 skb->protocol, type, code, ntohs(icmph->un.echo.id),
		 ntohs(icmph->un.echo.sequence));
519

520
	sk = ping_lookup(net, skb, ntohs(icmph->un.echo.id));
521
	if (!sk) {
522 523 524 525 526 527 528 529 530
		pr_debug("no socket, dropping\n");
		return;	/* No socket for error */
	}
	pr_debug("err on socket %p\n", sk);

	err = 0;
	harderr = 0;
	inet_sock = inet_sk(sk);

531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
	if (skb->protocol == htons(ETH_P_IP)) {
		switch (type) {
		default:
		case ICMP_TIME_EXCEEDED:
			err = EHOSTUNREACH;
			break;
		case ICMP_SOURCE_QUENCH:
			/* This is not a real error but ping wants to see it.
			 * Report it with some fake errno.
			 */
			err = EREMOTEIO;
			break;
		case ICMP_PARAMETERPROB:
			err = EPROTO;
			harderr = 1;
			break;
		case ICMP_DEST_UNREACH:
			if (code == ICMP_FRAG_NEEDED) { /* Path MTU discovery */
				ipv4_sk_update_pmtu(skb, sk, info);
				if (inet_sock->pmtudisc != IP_PMTUDISC_DONT) {
					err = EMSGSIZE;
					harderr = 1;
					break;
				}
				goto out;
556
			}
557 558 559 560 561 562 563 564 565 566 567
			err = EHOSTUNREACH;
			if (code <= NR_ICMP_UNREACH) {
				harderr = icmp_err_convert[code].fatal;
				err = icmp_err_convert[code].errno;
			}
			break;
		case ICMP_REDIRECT:
			/* See ICMP_SOURCE_QUENCH */
			ipv4_sk_redirect(skb, sk);
			err = EREMOTEIO;
			break;
568
		}
569 570 571 572
#if IS_ENABLED(CONFIG_IPV6)
	} else if (skb->protocol == htons(ETH_P_IPV6)) {
		harderr = pingv6_ops.icmpv6_err_convert(type, code, &err);
#endif
573 574 575 576 577 578
	}

	/*
	 *      RFC1122: OK.  Passes ICMP errors back to application, as per
	 *	4.1.3.3.
	 */
579 580
	if ((family == AF_INET && !inet_sock->recverr) ||
	    (family == AF_INET6 && !inet6_sk(sk)->recverr)) {
581 582 583
		if (!harderr || sk->sk_state != TCP_ESTABLISHED)
			goto out;
	} else {
584 585 586 587 588 589 590 591 592
		if (family == AF_INET) {
			ip_icmp_error(sk, skb, err, 0 /* no remote port */,
				      info, (u8 *)icmph);
#if IS_ENABLED(CONFIG_IPV6)
		} else if (family == AF_INET6) {
			pingv6_ops.ipv6_icmp_error(sk, skb, err, 0,
						   info, (u8 *)icmph);
#endif
		}
593 594 595 596 597 598
	}
	sk->sk_err = err;
	sk->sk_error_report(sk);
out:
	sock_put(sk);
}
599
EXPORT_SYMBOL_GPL(ping_err);
600 601

/*
602 603
 *	Copy and checksum an ICMP Echo packet from user space into a buffer
 *	starting from the payload.
604 605
 */

606 607
int ping_getfrag(void *from, char *to,
		 int offset, int fraglen, int odd, struct sk_buff *skb)
608 609 610 611
{
	struct pingfakehdr *pfh = (struct pingfakehdr *)from;

	if (offset == 0) {
612 613
		fraglen -= sizeof(struct icmphdr);
		if (fraglen < 0)
614
			BUG();
615 616 617
		if (csum_and_copy_from_iter(to + sizeof(struct icmphdr),
			    fraglen, &pfh->wcheck,
			    &pfh->msg->msg_iter) != fraglen)
618
			return -EFAULT;
619 620 621
	} else if (offset < sizeof(struct icmphdr)) {
			BUG();
	} else {
622 623
		if (csum_and_copy_from_iter(to, fraglen, &pfh->wcheck,
					    &pfh->msg->msg_iter) != fraglen)
624 625
			return -EFAULT;
	}
626

627 628 629 630 631 632 633 634 635
#if IS_ENABLED(CONFIG_IPV6)
	/* For IPv6, checksum each skb as we go along, as expected by
	 * icmpv6_push_pending_frames. For IPv4, accumulate the checksum in
	 * wcheck, it will be finalized in ping_v4_push_pending_frames.
	 */
	if (pfh->family == AF_INET6) {
		skb->csum = pfh->wcheck;
		skb->ip_summed = CHECKSUM_NONE;
		pfh->wcheck = 0;
636
	}
637 638
#endif

639 640
	return 0;
}
641
EXPORT_SYMBOL_GPL(ping_getfrag);
642

643 644
static int ping_v4_push_pending_frames(struct sock *sk, struct pingfakehdr *pfh,
				       struct flowi4 *fl4)
645 646 647 648 649 650 651 652 653 654 655
{
	struct sk_buff *skb = skb_peek(&sk->sk_write_queue);

	pfh->wcheck = csum_partial((char *)&pfh->icmph,
		sizeof(struct icmphdr), pfh->wcheck);
	pfh->icmph.checksum = csum_fold(pfh->wcheck);
	memcpy(icmp_hdr(skb), &pfh->icmph, sizeof(struct icmphdr));
	skb->ip_summed = CHECKSUM_NONE;
	return ip_push_pending_frames(sk, fl4);
}

656 657 658
int ping_common_sendmsg(int family, struct msghdr *msg, size_t len,
			void *user_icmph, size_t icmph_len) {
	u8 type, code;
659 660 661 662 663 664 665 666 667 668 669 670 671 672

	if (len > 0xFFFF)
		return -EMSGSIZE;

	/*
	 *	Check the flags.
	 */

	/* Mirror BSD error message compatibility */
	if (msg->msg_flags & MSG_OOB)
		return -EOPNOTSUPP;

	/*
	 *	Fetch the ICMP header provided by the userland.
673
	 *	iovec is modified! The ICMP header is consumed.
674
	 */
A
Al Viro 已提交
675
	if (memcpy_from_msg(user_icmph, msg, icmph_len))
676
		return -EFAULT;
677 678 679 680 681 682 683 684 685 686 687 688 689 690

	if (family == AF_INET) {
		type = ((struct icmphdr *) user_icmph)->type;
		code = ((struct icmphdr *) user_icmph)->code;
#if IS_ENABLED(CONFIG_IPV6)
	} else if (family == AF_INET6) {
		type = ((struct icmp6hdr *) user_icmph)->icmp6_type;
		code = ((struct icmp6hdr *) user_icmph)->icmp6_code;
#endif
	} else {
		BUG();
	}

	if (!ping_supported(family, type, code))
691 692
		return -EINVAL;

693 694 695 696
	return 0;
}
EXPORT_SYMBOL_GPL(ping_common_sendmsg);

697
static int ping_v4_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
{
	struct net *net = sock_net(sk);
	struct flowi4 fl4;
	struct inet_sock *inet = inet_sk(sk);
	struct ipcm_cookie ipc;
	struct icmphdr user_icmph;
	struct pingfakehdr pfh;
	struct rtable *rt = NULL;
	struct ip_options_data opt_copy;
	int free = 0;
	__be32 saddr, daddr, faddr;
	u8  tos;
	int err;

	pr_debug("ping_v4_sendmsg(sk=%p,sk->num=%u)\n", inet, inet->inet_num);

	err = ping_common_sendmsg(AF_INET, msg, len, &user_icmph,
				  sizeof(user_icmph));
	if (err)
		return err;

719 720 721 722 723
	/*
	 *	Get and verify the address.
	 */

	if (msg->msg_name) {
724
		DECLARE_SOCKADDR(struct sockaddr_in *, usin, msg->msg_name);
725 726 727
		if (msg->msg_namelen < sizeof(*usin))
			return -EINVAL;
		if (usin->sin_family != AF_INET)
728
			return -EAFNOSUPPORT;
729 730 731 732 733 734 735 736 737 738 739 740 741
		daddr = usin->sin_addr.s_addr;
		/* no remote port */
	} else {
		if (sk->sk_state != TCP_ESTABLISHED)
			return -EDESTADDRREQ;
		daddr = inet->inet_daddr;
		/* no remote port */
	}

	ipc.addr = inet->inet_saddr;
	ipc.opt = NULL;
	ipc.oif = sk->sk_bound_dev_if;
	ipc.tx_flags = 0;
742 743
	ipc.ttl = 0;
	ipc.tos = -1;
744 745

	sock_tx_timestamp(sk, &ipc.tx_flags);
746 747

	if (msg->msg_controllen) {
748
		err = ip_cmsg_send(sock_net(sk), msg, &ipc, false);
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774
		if (err)
			return err;
		if (ipc.opt)
			free = 1;
	}
	if (!ipc.opt) {
		struct ip_options_rcu *inet_opt;

		rcu_read_lock();
		inet_opt = rcu_dereference(inet->inet_opt);
		if (inet_opt) {
			memcpy(&opt_copy, inet_opt,
			       sizeof(*inet_opt) + inet_opt->opt.optlen);
			ipc.opt = &opt_copy.opt;
		}
		rcu_read_unlock();
	}

	saddr = ipc.addr;
	ipc.addr = faddr = daddr;

	if (ipc.opt && ipc.opt->opt.srr) {
		if (!daddr)
			return -EINVAL;
		faddr = ipc.opt->opt.faddr;
	}
775
	tos = get_rttos(&ipc, inet);
776 777 778 779 780 781 782 783 784 785 786
	if (sock_flag(sk, SOCK_LOCALROUTE) ||
	    (msg->msg_flags & MSG_DONTROUTE) ||
	    (ipc.opt && ipc.opt->opt.is_strictroute)) {
		tos |= RTO_ONLINK;
	}

	if (ipv4_is_multicast(daddr)) {
		if (!ipc.oif)
			ipc.oif = inet->mc_index;
		if (!saddr)
			saddr = inet->mc_addr;
787 788
	} else if (!ipc.oif)
		ipc.oif = inet->uc_index;
789 790 791 792 793 794 795 796 797 798 799

	flowi4_init_output(&fl4, ipc.oif, sk->sk_mark, tos,
			   RT_SCOPE_UNIVERSE, sk->sk_protocol,
			   inet_sk_flowi_flags(sk), faddr, saddr, 0, 0);

	security_sk_classify_flow(sk, flowi4_to_flowi(&fl4));
	rt = ip_route_output_flow(net, &fl4, sk);
	if (IS_ERR(rt)) {
		err = PTR_ERR(rt);
		rt = NULL;
		if (err == -ENETUNREACH)
800
			IP_INC_STATS(net, IPSTATS_MIB_OUTNOROUTES);
801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
		goto out;
	}

	err = -EACCES;
	if ((rt->rt_flags & RTCF_BROADCAST) &&
	    !sock_flag(sk, SOCK_BROADCAST))
		goto out;

	if (msg->msg_flags & MSG_CONFIRM)
		goto do_confirm;
back_from_confirm:

	if (!ipc.addr)
		ipc.addr = fl4.daddr;

	lock_sock(sk);

	pfh.icmph.type = user_icmph.type; /* already checked */
	pfh.icmph.code = user_icmph.code; /* ditto */
	pfh.icmph.checksum = 0;
	pfh.icmph.un.echo.id = inet->inet_sport;
	pfh.icmph.un.echo.sequence = user_icmph.un.echo.sequence;
823
	pfh.msg = msg;
824
	pfh.wcheck = 0;
825
	pfh.family = AF_INET;
826 827 828 829 830 831

	err = ip_append_data(sk, &fl4, ping_getfrag, &pfh, len,
			0, &ipc, &rt, msg->msg_flags);
	if (err)
		ip_flush_pending_frames(sk);
	else
832
		err = ping_v4_push_pending_frames(sk, &pfh, &fl4);
833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
	release_sock(sk);

out:
	ip_rt_put(rt);
	if (free)
		kfree(ipc.opt);
	if (!err) {
		icmp_out_count(sock_net(sk), user_icmph.type);
		return len;
	}
	return err;

do_confirm:
	dst_confirm(&rt->dst);
	if (!(msg->msg_flags & MSG_PROBE) || len)
		goto back_from_confirm;
	err = 0;
	goto out;
}

853 854
int ping_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int noblock,
		 int flags, int *addr_len)
855 856
{
	struct inet_sock *isk = inet_sk(sk);
857
	int family = sk->sk_family;
858 859 860 861 862
	struct sk_buff *skb;
	int copied, err;

	pr_debug("ping_recvmsg(sk=%p,sk->num=%u)\n", isk, isk->inet_num);

863
	err = -EOPNOTSUPP;
864 865 866
	if (flags & MSG_OOB)
		goto out;

867 868
	if (flags & MSG_ERRQUEUE)
		return inet_recv_error(sk, msg, len, addr_len);
869 870 871 872 873 874 875 876 877 878 879 880

	skb = skb_recv_datagram(sk, flags, noblock, &err);
	if (!skb)
		goto out;

	copied = skb->len;
	if (copied > len) {
		msg->msg_flags |= MSG_TRUNC;
		copied = len;
	}

	/* Don't bother checking the checksum */
881
	err = skb_copy_datagram_msg(skb, 0, msg, copied);
882 883 884 885 886
	if (err)
		goto done;

	sock_recv_timestamp(msg, sk, skb);

887 888
	/* Copy the address and add cmsg data. */
	if (family == AF_INET) {
889
		DECLARE_SOCKADDR(struct sockaddr_in *, sin, msg->msg_name);
890

891 892 893 894 895 896 897
		if (sin) {
			sin->sin_family = AF_INET;
			sin->sin_port = 0 /* skb->h.uh->source */;
			sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
			memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
			*addr_len = sizeof(*sin);
		}
898 899 900 901 902 903 904 905

		if (isk->cmsg_flags)
			ip_cmsg_recv(msg, skb);

#if IS_ENABLED(CONFIG_IPV6)
	} else if (family == AF_INET6) {
		struct ipv6_pinfo *np = inet6_sk(sk);
		struct ipv6hdr *ip6 = ipv6_hdr(skb);
906
		DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
907

908 909 910 911 912 913 914 915 916
		if (sin6) {
			sin6->sin6_family = AF_INET6;
			sin6->sin6_port = 0;
			sin6->sin6_addr = ip6->saddr;
			sin6->sin6_flowinfo = 0;
			if (np->sndflow)
				sin6->sin6_flowinfo = ip6_flowinfo(ip6);
			sin6->sin6_scope_id =
				ipv6_iface_scope_id(&sin6->sin6_addr,
917
						    inet6_iif(skb));
918 919
			*addr_len = sizeof(*sin6);
		}
920 921

		if (inet6_sk(sk)->rxopt.all)
922 923 924 925 926 927
			pingv6_ops.ip6_datagram_recv_common_ctl(sk, msg, skb);
		if (skb->protocol == htons(ETH_P_IPV6) &&
		    inet6_sk(sk)->rxopt.all)
			pingv6_ops.ip6_datagram_recv_specific_ctl(sk, msg, skb);
		else if (skb->protocol == htons(ETH_P_IP) && isk->cmsg_flags)
			ip_cmsg_recv(msg, skb);
928 929 930
#endif
	} else {
		BUG();
931
	}
932

933 934 935 936 937 938 939 940
	err = copied;

done:
	skb_free_datagram(sk, skb);
out:
	pr_debug("ping_recvmsg -> %d\n", err);
	return err;
}
941
EXPORT_SYMBOL_GPL(ping_recvmsg);
942

943
int ping_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
944 945
{
	pr_debug("ping_queue_rcv_skb(sk=%p,sk->num=%d,skb=%p)\n",
J
Joe Perches 已提交
946
		 inet_sk(sk), inet_sk(sk)->inet_num, skb);
947 948 949 950 951 952 953
	if (sock_queue_rcv_skb(sk, skb) < 0) {
		kfree_skb(skb);
		pr_debug("ping_queue_rcv_skb -> failed\n");
		return -1;
	}
	return 0;
}
954
EXPORT_SYMBOL_GPL(ping_queue_rcv_skb);
955 956 957 958 959 960


/*
 *	All we need to do is get the socket.
 */

961
bool ping_rcv(struct sk_buff *skb)
962 963 964 965 966 967 968 969
{
	struct sock *sk;
	struct net *net = dev_net(skb->dev);
	struct icmphdr *icmph = icmp_hdr(skb);

	/* We assume the packet has already been checked by icmp_rcv */

	pr_debug("ping_rcv(skb=%p,id=%04x,seq=%04x)\n",
J
Joe Perches 已提交
970
		 skb, ntohs(icmph->un.echo.id), ntohs(icmph->un.echo.sequence));
971 972 973 974

	/* Push ICMP header back */
	skb_push(skb, skb->data - (u8 *)icmph);

975
	sk = ping_lookup(net, skb, ntohs(icmph->un.echo.id));
976
	if (sk) {
977 978
		struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);

979
		pr_debug("rcv on socket %p\n", sk);
980 981
		if (skb2)
			ping_queue_rcv_skb(sk, skb2);
982
		sock_put(sk);
983
		return true;
984 985 986
	}
	pr_debug("no socket, dropping\n");

987
	return false;
988
}
989
EXPORT_SYMBOL_GPL(ping_rcv);
990 991 992 993 994 995 996 997 998 999

struct proto ping_prot = {
	.name =		"PING",
	.owner =	THIS_MODULE,
	.init =		ping_init_sock,
	.close =	ping_close,
	.connect =	ip4_datagram_connect,
	.disconnect =	udp_disconnect,
	.setsockopt =	ip_setsockopt,
	.getsockopt =	ip_getsockopt,
1000
	.sendmsg =	ping_v4_sendmsg,
1001 1002 1003
	.recvmsg =	ping_recvmsg,
	.bind =		ping_bind,
	.backlog_rcv =	ping_queue_rcv_skb,
1004
	.release_cb =	ip4_datagram_release_cb,
1005 1006 1007
	.hash =		ping_hash,
	.unhash =	ping_unhash,
	.get_port =	ping_get_port,
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
	.obj_size =	sizeof(struct inet_sock),
};
EXPORT_SYMBOL(ping_prot);

#ifdef CONFIG_PROC_FS

static struct sock *ping_get_first(struct seq_file *seq, int start)
{
	struct sock *sk;
	struct ping_iter_state *state = seq->private;
	struct net *net = seq_file_net(seq);

	for (state->bucket = start; state->bucket < PING_HTABLE_SIZE;
	     ++state->bucket) {
		struct hlist_nulls_node *node;
C
Changli Gao 已提交
1023 1024 1025
		struct hlist_nulls_head *hslot;

		hslot = &ping_table.hash[state->bucket];
1026 1027 1028 1029 1030

		if (hlist_nulls_empty(hslot))
			continue;

		sk_nulls_for_each(sk, node, hslot) {
1031 1032
			if (net_eq(sock_net(sk), net) &&
			    sk->sk_family == state->family)
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064
				goto found;
		}
	}
	sk = NULL;
found:
	return sk;
}

static struct sock *ping_get_next(struct seq_file *seq, struct sock *sk)
{
	struct ping_iter_state *state = seq->private;
	struct net *net = seq_file_net(seq);

	do {
		sk = sk_nulls_next(sk);
	} while (sk && (!net_eq(sock_net(sk), net)));

	if (!sk)
		return ping_get_first(seq, state->bucket + 1);
	return sk;
}

static struct sock *ping_get_idx(struct seq_file *seq, loff_t pos)
{
	struct sock *sk = ping_get_first(seq, 0);

	if (sk)
		while (pos && (sk = ping_get_next(seq, sk)) != NULL)
			--pos;
	return pos ? NULL : sk;
}

1065
void *ping_seq_start(struct seq_file *seq, loff_t *pos, sa_family_t family)
1066 1067 1068
{
	struct ping_iter_state *state = seq->private;
	state->bucket = 0;
1069
	state->family = family;
1070 1071 1072 1073 1074

	read_lock_bh(&ping_table.lock);

	return *pos ? ping_get_idx(seq, *pos-1) : SEQ_START_TOKEN;
}
1075
EXPORT_SYMBOL_GPL(ping_seq_start);
1076

1077 1078 1079 1080 1081
static void *ping_v4_seq_start(struct seq_file *seq, loff_t *pos)
{
	return ping_seq_start(seq, pos, AF_INET);
}

1082
void *ping_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
{
	struct sock *sk;

	if (v == SEQ_START_TOKEN)
		sk = ping_get_idx(seq, 0);
	else
		sk = ping_get_next(seq, v);

	++*pos;
	return sk;
}
1094
EXPORT_SYMBOL_GPL(ping_seq_next);
1095

1096
void ping_seq_stop(struct seq_file *seq, void *v)
1097 1098 1099
{
	read_unlock_bh(&ping_table.lock);
}
1100
EXPORT_SYMBOL_GPL(ping_seq_stop);
1101

1102
static void ping_v4_format_sock(struct sock *sp, struct seq_file *f,
1103
		int bucket)
1104 1105 1106 1107 1108 1109 1110 1111
{
	struct inet_sock *inet = inet_sk(sp);
	__be32 dest = inet->inet_daddr;
	__be32 src = inet->inet_rcv_saddr;
	__u16 destp = ntohs(inet->inet_dport);
	__u16 srcp = ntohs(inet->inet_sport);

	seq_printf(f, "%5d: %08X:%04X %08X:%04X"
1112
		" %02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %d",
1113 1114 1115
		bucket, src, srcp, dest, destp, sp->sk_state,
		sk_wmem_alloc_get(sp),
		sk_rmem_alloc_get(sp),
1116 1117 1118
		0, 0L, 0,
		from_kuid_munged(seq_user_ns(f), sock_i_uid(sp)),
		0, sock_i_ino(sp),
1119
		atomic_read(&sp->sk_refcnt), sp,
1120
		atomic_read(&sp->sk_drops));
1121 1122
}

1123
static int ping_v4_seq_show(struct seq_file *seq, void *v)
1124
{
1125
	seq_setwidth(seq, 127);
1126
	if (v == SEQ_START_TOKEN)
1127
		seq_puts(seq, "  sl  local_address rem_address   st tx_queue "
1128 1129 1130 1131 1132
			   "rx_queue tr tm->when retrnsmt   uid  timeout "
			   "inode ref pointer drops");
	else {
		struct ping_iter_state *state = seq->private;

1133
		ping_v4_format_sock(v, seq, state->bucket);
1134
	}
1135
	seq_pad(seq, '\n');
1136 1137 1138
	return 0;
}

1139 1140 1141
static const struct seq_operations ping_v4_seq_ops = {
	.show		= ping_v4_seq_show,
	.start		= ping_v4_seq_start,
1142 1143 1144 1145 1146 1147
	.next		= ping_seq_next,
	.stop		= ping_seq_stop,
};

static int ping_seq_open(struct inode *inode, struct file *file)
{
1148 1149
	struct ping_seq_afinfo *afinfo = PDE_DATA(inode);
	return seq_open_net(inode, file, &afinfo->seq_ops,
1150 1151 1152
			   sizeof(struct ping_iter_state));
}

1153
const struct file_operations ping_seq_fops = {
1154 1155 1156 1157 1158
	.open		= ping_seq_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= seq_release_net,
};
1159
EXPORT_SYMBOL_GPL(ping_seq_fops);
1160

1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172
static struct ping_seq_afinfo ping_v4_seq_afinfo = {
	.name		= "icmp",
	.family		= AF_INET,
	.seq_fops	= &ping_seq_fops,
	.seq_ops	= {
		.start		= ping_v4_seq_start,
		.show		= ping_v4_seq_show,
		.next		= ping_seq_next,
		.stop		= ping_seq_stop,
	},
};

1173
int ping_proc_register(struct net *net, struct ping_seq_afinfo *afinfo)
1174 1175
{
	struct proc_dir_entry *p;
1176 1177
	p = proc_create_data(afinfo->name, S_IRUGO, net->proc_net,
			     afinfo->seq_fops, afinfo);
1178
	if (!p)
1179 1180
		return -ENOMEM;
	return 0;
1181
}
1182
EXPORT_SYMBOL_GPL(ping_proc_register);
1183

1184
void ping_proc_unregister(struct net *net, struct ping_seq_afinfo *afinfo)
1185
{
1186
	remove_proc_entry(afinfo->name, net->proc_net);
1187
}
1188
EXPORT_SYMBOL_GPL(ping_proc_unregister);
1189

1190
static int __net_init ping_v4_proc_init_net(struct net *net)
1191
{
1192
	return ping_proc_register(net, &ping_v4_seq_afinfo);
1193 1194
}

1195
static void __net_exit ping_v4_proc_exit_net(struct net *net)
1196
{
1197
	ping_proc_unregister(net, &ping_v4_seq_afinfo);
1198 1199
}

1200 1201 1202
static struct pernet_operations ping_v4_net_ops = {
	.init = ping_v4_proc_init_net,
	.exit = ping_v4_proc_exit_net,
1203 1204 1205 1206
};

int __init ping_proc_init(void)
{
1207
	return register_pernet_subsys(&ping_v4_net_ops);
1208 1209 1210 1211
}

void ping_proc_exit(void)
{
1212
	unregister_pernet_subsys(&ping_v4_net_ops);
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
}

#endif

void __init ping_init(void)
{
	int i;

	for (i = 0; i < PING_HTABLE_SIZE; i++)
		INIT_HLIST_NULLS_HEAD(&ping_table.hash[i], i);
	rwlock_init(&ping_table.lock);
}