xref: /openbmc/linux/net/ipv4/ping.c (revision 9a29f5fc)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * INET		An implementation of the TCP/IP protocol suite for the LINUX
4  *		operating system.  INET is implemented using the  BSD Socket
5  *		interface as the means of communication with the user level.
6  *
7  *		"Ping" sockets
8  *
9  * Based on ipv4/udp.c code.
10  *
11  * Authors:	Vasiliy Kulikov / Openwall (for Linux 2.6),
12  *		Pavel Kankovsky (for Linux 2.4.32)
13  *
14  * Pavel gave all rights to bugs to Vasiliy,
15  * none of the bugs are Pavel's now.
16  */
17 
18 #include <linux/uaccess.h>
19 #include <linux/types.h>
20 #include <linux/fcntl.h>
21 #include <linux/socket.h>
22 #include <linux/sockios.h>
23 #include <linux/in.h>
24 #include <linux/errno.h>
25 #include <linux/timer.h>
26 #include <linux/mm.h>
27 #include <linux/inet.h>
28 #include <linux/netdevice.h>
29 #include <net/snmp.h>
30 #include <net/ip.h>
31 #include <net/icmp.h>
32 #include <net/protocol.h>
33 #include <linux/skbuff.h>
34 #include <linux/proc_fs.h>
35 #include <linux/export.h>
36 #include <linux/bpf-cgroup.h>
37 #include <net/sock.h>
38 #include <net/ping.h>
39 #include <net/udp.h>
40 #include <net/route.h>
41 #include <net/inet_common.h>
42 #include <net/checksum.h>
43 
44 #if IS_ENABLED(CONFIG_IPV6)
45 #include <linux/in6.h>
46 #include <linux/icmpv6.h>
47 #include <net/addrconf.h>
48 #include <net/ipv6.h>
49 #include <net/transp_v6.h>
50 #endif
51 
52 struct ping_table {
53 	struct hlist_nulls_head	hash[PING_HTABLE_SIZE];
54 	spinlock_t		lock;
55 };
56 
57 static struct ping_table ping_table;
58 struct pingv6_ops pingv6_ops;
59 EXPORT_SYMBOL_GPL(pingv6_ops);
60 
61 static u16 ping_port_rover;
62 
63 static inline u32 ping_hashfn(const struct net *net, u32 num, u32 mask)
64 {
65 	u32 res = (num + net_hash_mix(net)) & mask;
66 
67 	pr_debug("hash(%u) = %u\n", num, res);
68 	return res;
69 }
70 EXPORT_SYMBOL_GPL(ping_hash);
71 
72 static inline struct hlist_nulls_head *ping_hashslot(struct ping_table *table,
73 					     struct net *net, unsigned int num)
74 {
75 	return &table->hash[ping_hashfn(net, num, PING_HTABLE_MASK)];
76 }
77 
78 int ping_get_port(struct sock *sk, unsigned short ident)
79 {
80 	struct hlist_nulls_node *node;
81 	struct hlist_nulls_head *hlist;
82 	struct inet_sock *isk, *isk2;
83 	struct sock *sk2 = NULL;
84 
85 	isk = inet_sk(sk);
86 	spin_lock(&ping_table.lock);
87 	if (ident == 0) {
88 		u32 i;
89 		u16 result = ping_port_rover + 1;
90 
91 		for (i = 0; i < (1L << 16); i++, result++) {
92 			if (!result)
93 				result++; /* avoid zero */
94 			hlist = ping_hashslot(&ping_table, sock_net(sk),
95 					    result);
96 			ping_portaddr_for_each_entry(sk2, node, hlist) {
97 				isk2 = inet_sk(sk2);
98 
99 				if (isk2->inet_num == result)
100 					goto next_port;
101 			}
102 
103 			/* found */
104 			ping_port_rover = ident = result;
105 			break;
106 next_port:
107 			;
108 		}
109 		if (i >= (1L << 16))
110 			goto fail;
111 	} else {
112 		hlist = ping_hashslot(&ping_table, sock_net(sk), ident);
113 		ping_portaddr_for_each_entry(sk2, node, hlist) {
114 			isk2 = inet_sk(sk2);
115 
116 			/* BUG? Why is this reuse and not reuseaddr? ping.c
117 			 * doesn't turn off SO_REUSEADDR, and it doesn't expect
118 			 * that other ping processes can steal its packets.
119 			 */
120 			if ((isk2->inet_num == ident) &&
121 			    (sk2 != sk) &&
122 			    (!sk2->sk_reuse || !sk->sk_reuse))
123 				goto fail;
124 		}
125 	}
126 
127 	pr_debug("found port/ident = %d\n", ident);
128 	isk->inet_num = ident;
129 	if (sk_unhashed(sk)) {
130 		pr_debug("was not hashed\n");
131 		sock_hold(sk);
132 		sock_set_flag(sk, SOCK_RCU_FREE);
133 		hlist_nulls_add_head_rcu(&sk->sk_nulls_node, hlist);
134 		sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
135 	}
136 	spin_unlock(&ping_table.lock);
137 	return 0;
138 
139 fail:
140 	spin_unlock(&ping_table.lock);
141 	return 1;
142 }
143 EXPORT_SYMBOL_GPL(ping_get_port);
144 
145 int ping_hash(struct sock *sk)
146 {
147 	pr_debug("ping_hash(sk->port=%u)\n", inet_sk(sk)->inet_num);
148 	BUG(); /* "Please do not press this button again." */
149 
150 	return 0;
151 }
152 
153 void ping_unhash(struct sock *sk)
154 {
155 	struct inet_sock *isk = inet_sk(sk);
156 
157 	pr_debug("ping_unhash(isk=%p,isk->num=%u)\n", isk, isk->inet_num);
158 	spin_lock(&ping_table.lock);
159 	if (sk_hashed(sk)) {
160 		hlist_nulls_del_init_rcu(&sk->sk_nulls_node);
161 		sock_put(sk);
162 		isk->inet_num = 0;
163 		isk->inet_sport = 0;
164 		sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
165 	}
166 	spin_unlock(&ping_table.lock);
167 }
168 EXPORT_SYMBOL_GPL(ping_unhash);
169 
170 /* Called under rcu_read_lock() */
171 static struct sock *ping_lookup(struct net *net, struct sk_buff *skb, u16 ident)
172 {
173 	struct hlist_nulls_head *hslot = ping_hashslot(&ping_table, net, ident);
174 	struct sock *sk = NULL;
175 	struct inet_sock *isk;
176 	struct hlist_nulls_node *hnode;
177 	int dif, sdif;
178 
179 	if (skb->protocol == htons(ETH_P_IP)) {
180 		dif = inet_iif(skb);
181 		sdif = inet_sdif(skb);
182 		pr_debug("try to find: num = %d, daddr = %pI4, dif = %d\n",
183 			 (int)ident, &ip_hdr(skb)->daddr, dif);
184 #if IS_ENABLED(CONFIG_IPV6)
185 	} else if (skb->protocol == htons(ETH_P_IPV6)) {
186 		dif = inet6_iif(skb);
187 		sdif = inet6_sdif(skb);
188 		pr_debug("try to find: num = %d, daddr = %pI6c, dif = %d\n",
189 			 (int)ident, &ipv6_hdr(skb)->daddr, dif);
190 #endif
191 	} else {
192 		return NULL;
193 	}
194 
195 	ping_portaddr_for_each_entry(sk, hnode, hslot) {
196 		isk = inet_sk(sk);
197 
198 		pr_debug("iterate\n");
199 		if (isk->inet_num != ident)
200 			continue;
201 
202 		if (skb->protocol == htons(ETH_P_IP) &&
203 		    sk->sk_family == AF_INET) {
204 			pr_debug("found: %p: num=%d, daddr=%pI4, dif=%d\n", sk,
205 				 (int) isk->inet_num, &isk->inet_rcv_saddr,
206 				 sk->sk_bound_dev_if);
207 
208 			if (isk->inet_rcv_saddr &&
209 			    isk->inet_rcv_saddr != ip_hdr(skb)->daddr)
210 				continue;
211 #if IS_ENABLED(CONFIG_IPV6)
212 		} else if (skb->protocol == htons(ETH_P_IPV6) &&
213 			   sk->sk_family == AF_INET6) {
214 
215 			pr_debug("found: %p: num=%d, daddr=%pI6c, dif=%d\n", sk,
216 				 (int) isk->inet_num,
217 				 &sk->sk_v6_rcv_saddr,
218 				 sk->sk_bound_dev_if);
219 
220 			if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr) &&
221 			    !ipv6_addr_equal(&sk->sk_v6_rcv_saddr,
222 					     &ipv6_hdr(skb)->daddr))
223 				continue;
224 #endif
225 		} else {
226 			continue;
227 		}
228 
229 		if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif &&
230 		    sk->sk_bound_dev_if != sdif)
231 			continue;
232 
233 		goto exit;
234 	}
235 
236 	sk = NULL;
237 exit:
238 
239 	return sk;
240 }
241 
242 static void inet_get_ping_group_range_net(struct net *net, kgid_t *low,
243 					  kgid_t *high)
244 {
245 	kgid_t *data = net->ipv4.ping_group_range.range;
246 	unsigned int seq;
247 
248 	do {
249 		seq = read_seqbegin(&net->ipv4.ping_group_range.lock);
250 
251 		*low = data[0];
252 		*high = data[1];
253 	} while (read_seqretry(&net->ipv4.ping_group_range.lock, seq));
254 }
255 
256 
257 int ping_init_sock(struct sock *sk)
258 {
259 	struct net *net = sock_net(sk);
260 	kgid_t group = current_egid();
261 	struct group_info *group_info;
262 	int i;
263 	kgid_t low, high;
264 	int ret = 0;
265 
266 	if (sk->sk_family == AF_INET6)
267 		sk->sk_ipv6only = 1;
268 
269 	inet_get_ping_group_range_net(net, &low, &high);
270 	if (gid_lte(low, group) && gid_lte(group, high))
271 		return 0;
272 
273 	group_info = get_current_groups();
274 	for (i = 0; i < group_info->ngroups; i++) {
275 		kgid_t gid = group_info->gid[i];
276 
277 		if (gid_lte(low, gid) && gid_lte(gid, high))
278 			goto out_release_group;
279 	}
280 
281 	ret = -EACCES;
282 
283 out_release_group:
284 	put_group_info(group_info);
285 	return ret;
286 }
287 EXPORT_SYMBOL_GPL(ping_init_sock);
288 
289 void ping_close(struct sock *sk, long timeout)
290 {
291 	pr_debug("ping_close(sk=%p,sk->num=%u)\n",
292 		 inet_sk(sk), inet_sk(sk)->inet_num);
293 	pr_debug("isk->refcnt = %d\n", refcount_read(&sk->sk_refcnt));
294 
295 	sk_common_release(sk);
296 }
297 EXPORT_SYMBOL_GPL(ping_close);
298 
299 static int ping_pre_connect(struct sock *sk, struct sockaddr *uaddr,
300 			    int addr_len)
301 {
302 	/* This check is replicated from __ip4_datagram_connect() and
303 	 * intended to prevent BPF program called below from accessing bytes
304 	 * that are out of the bound specified by user in addr_len.
305 	 */
306 	if (addr_len < sizeof(struct sockaddr_in))
307 		return -EINVAL;
308 
309 	return BPF_CGROUP_RUN_PROG_INET4_CONNECT_LOCK(sk, uaddr);
310 }
311 
312 /* Checks the bind address and possibly modifies sk->sk_bound_dev_if. */
313 static int ping_check_bind_addr(struct sock *sk, struct inet_sock *isk,
314 				struct sockaddr *uaddr, int addr_len)
315 {
316 	struct net *net = sock_net(sk);
317 	if (sk->sk_family == AF_INET) {
318 		struct sockaddr_in *addr = (struct sockaddr_in *) uaddr;
319 		u32 tb_id = RT_TABLE_LOCAL;
320 		int chk_addr_ret;
321 
322 		if (addr_len < sizeof(*addr))
323 			return -EINVAL;
324 
325 		if (addr->sin_family != AF_INET &&
326 		    !(addr->sin_family == AF_UNSPEC &&
327 		      addr->sin_addr.s_addr == htonl(INADDR_ANY)))
328 			return -EAFNOSUPPORT;
329 
330 		pr_debug("ping_check_bind_addr(sk=%p,addr=%pI4,port=%d)\n",
331 			 sk, &addr->sin_addr.s_addr, ntohs(addr->sin_port));
332 
333 		if (addr->sin_addr.s_addr == htonl(INADDR_ANY))
334 			return 0;
335 
336 		tb_id = l3mdev_fib_table_by_index(net, sk->sk_bound_dev_if) ? : tb_id;
337 		chk_addr_ret = inet_addr_type_table(net, addr->sin_addr.s_addr, tb_id);
338 
339 		if (chk_addr_ret == RTN_MULTICAST ||
340 		    chk_addr_ret == RTN_BROADCAST ||
341 		    (chk_addr_ret != RTN_LOCAL &&
342 		     !inet_can_nonlocal_bind(net, isk)))
343 			return -EADDRNOTAVAIL;
344 
345 #if IS_ENABLED(CONFIG_IPV6)
346 	} else if (sk->sk_family == AF_INET6) {
347 		struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
348 		int addr_type, scoped, has_addr;
349 		struct net_device *dev = NULL;
350 
351 		if (addr_len < sizeof(*addr))
352 			return -EINVAL;
353 
354 		if (addr->sin6_family != AF_INET6)
355 			return -EAFNOSUPPORT;
356 
357 		pr_debug("ping_check_bind_addr(sk=%p,addr=%pI6c,port=%d)\n",
358 			 sk, addr->sin6_addr.s6_addr, ntohs(addr->sin6_port));
359 
360 		addr_type = ipv6_addr_type(&addr->sin6_addr);
361 		scoped = __ipv6_addr_needs_scope_id(addr_type);
362 		if ((addr_type != IPV6_ADDR_ANY &&
363 		     !(addr_type & IPV6_ADDR_UNICAST)) ||
364 		    (scoped && !addr->sin6_scope_id))
365 			return -EINVAL;
366 
367 		rcu_read_lock();
368 		if (addr->sin6_scope_id) {
369 			dev = dev_get_by_index_rcu(net, addr->sin6_scope_id);
370 			if (!dev) {
371 				rcu_read_unlock();
372 				return -ENODEV;
373 			}
374 		}
375 
376 		if (!dev && sk->sk_bound_dev_if) {
377 			dev = dev_get_by_index_rcu(net, sk->sk_bound_dev_if);
378 			if (!dev) {
379 				rcu_read_unlock();
380 				return -ENODEV;
381 			}
382 		}
383 		has_addr = pingv6_ops.ipv6_chk_addr(net, &addr->sin6_addr, dev,
384 						    scoped);
385 		rcu_read_unlock();
386 
387 		if (!(ipv6_can_nonlocal_bind(net, isk) || has_addr ||
388 		      addr_type == IPV6_ADDR_ANY))
389 			return -EADDRNOTAVAIL;
390 
391 		if (scoped)
392 			sk->sk_bound_dev_if = addr->sin6_scope_id;
393 #endif
394 	} else {
395 		return -EAFNOSUPPORT;
396 	}
397 	return 0;
398 }
399 
400 static void ping_set_saddr(struct sock *sk, struct sockaddr *saddr)
401 {
402 	if (saddr->sa_family == AF_INET) {
403 		struct inet_sock *isk = inet_sk(sk);
404 		struct sockaddr_in *addr = (struct sockaddr_in *) saddr;
405 		isk->inet_rcv_saddr = isk->inet_saddr = addr->sin_addr.s_addr;
406 #if IS_ENABLED(CONFIG_IPV6)
407 	} else if (saddr->sa_family == AF_INET6) {
408 		struct sockaddr_in6 *addr = (struct sockaddr_in6 *) saddr;
409 		struct ipv6_pinfo *np = inet6_sk(sk);
410 		sk->sk_v6_rcv_saddr = np->saddr = addr->sin6_addr;
411 #endif
412 	}
413 }
414 
415 /*
416  * We need our own bind because there are no privileged id's == local ports.
417  * Moreover, we don't allow binding to multi- and broadcast addresses.
418  */
419 
420 int ping_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
421 {
422 	struct inet_sock *isk = inet_sk(sk);
423 	unsigned short snum;
424 	int err;
425 	int dif = sk->sk_bound_dev_if;
426 
427 	err = ping_check_bind_addr(sk, isk, uaddr, addr_len);
428 	if (err)
429 		return err;
430 
431 	lock_sock(sk);
432 
433 	err = -EINVAL;
434 	if (isk->inet_num != 0)
435 		goto out;
436 
437 	err = -EADDRINUSE;
438 	snum = ntohs(((struct sockaddr_in *)uaddr)->sin_port);
439 	if (ping_get_port(sk, snum) != 0) {
440 		/* Restore possibly modified sk->sk_bound_dev_if by ping_check_bind_addr(). */
441 		sk->sk_bound_dev_if = dif;
442 		goto out;
443 	}
444 	ping_set_saddr(sk, uaddr);
445 
446 	pr_debug("after bind(): num = %hu, dif = %d\n",
447 		 isk->inet_num,
448 		 sk->sk_bound_dev_if);
449 
450 	err = 0;
451 	if (sk->sk_family == AF_INET && isk->inet_rcv_saddr)
452 		sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
453 #if IS_ENABLED(CONFIG_IPV6)
454 	if (sk->sk_family == AF_INET6 && !ipv6_addr_any(&sk->sk_v6_rcv_saddr))
455 		sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
456 #endif
457 
458 	if (snum)
459 		sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
460 	isk->inet_sport = htons(isk->inet_num);
461 	isk->inet_daddr = 0;
462 	isk->inet_dport = 0;
463 
464 #if IS_ENABLED(CONFIG_IPV6)
465 	if (sk->sk_family == AF_INET6)
466 		memset(&sk->sk_v6_daddr, 0, sizeof(sk->sk_v6_daddr));
467 #endif
468 
469 	sk_dst_reset(sk);
470 out:
471 	release_sock(sk);
472 	pr_debug("ping_v4_bind -> %d\n", err);
473 	return err;
474 }
475 EXPORT_SYMBOL_GPL(ping_bind);
476 
477 /*
478  * Is this a supported type of ICMP message?
479  */
480 
481 static inline int ping_supported(int family, int type, int code)
482 {
483 	return (family == AF_INET && type == ICMP_ECHO && code == 0) ||
484 	       (family == AF_INET && type == ICMP_EXT_ECHO && code == 0) ||
485 	       (family == AF_INET6 && type == ICMPV6_ECHO_REQUEST && code == 0) ||
486 	       (family == AF_INET6 && type == ICMPV6_EXT_ECHO_REQUEST && code == 0);
487 }
488 
489 /*
490  * This routine is called by the ICMP module when it gets some
491  * sort of error condition.
492  */
493 
494 void ping_err(struct sk_buff *skb, int offset, u32 info)
495 {
496 	int family;
497 	struct icmphdr *icmph;
498 	struct inet_sock *inet_sock;
499 	int type;
500 	int code;
501 	struct net *net = dev_net(skb->dev);
502 	struct sock *sk;
503 	int harderr;
504 	int err;
505 
506 	if (skb->protocol == htons(ETH_P_IP)) {
507 		family = AF_INET;
508 		type = icmp_hdr(skb)->type;
509 		code = icmp_hdr(skb)->code;
510 		icmph = (struct icmphdr *)(skb->data + offset);
511 	} else if (skb->protocol == htons(ETH_P_IPV6)) {
512 		family = AF_INET6;
513 		type = icmp6_hdr(skb)->icmp6_type;
514 		code = icmp6_hdr(skb)->icmp6_code;
515 		icmph = (struct icmphdr *) (skb->data + offset);
516 	} else {
517 		BUG();
518 	}
519 
520 	/* We assume the packet has already been checked by icmp_unreach */
521 
522 	if (!ping_supported(family, icmph->type, icmph->code))
523 		return;
524 
525 	pr_debug("ping_err(proto=0x%x,type=%d,code=%d,id=%04x,seq=%04x)\n",
526 		 skb->protocol, type, code, ntohs(icmph->un.echo.id),
527 		 ntohs(icmph->un.echo.sequence));
528 
529 	sk = ping_lookup(net, skb, ntohs(icmph->un.echo.id));
530 	if (!sk) {
531 		pr_debug("no socket, dropping\n");
532 		return;	/* No socket for error */
533 	}
534 	pr_debug("err on socket %p\n", sk);
535 
536 	err = 0;
537 	harderr = 0;
538 	inet_sock = inet_sk(sk);
539 
540 	if (skb->protocol == htons(ETH_P_IP)) {
541 		switch (type) {
542 		default:
543 		case ICMP_TIME_EXCEEDED:
544 			err = EHOSTUNREACH;
545 			break;
546 		case ICMP_SOURCE_QUENCH:
547 			/* This is not a real error but ping wants to see it.
548 			 * Report it with some fake errno.
549 			 */
550 			err = EREMOTEIO;
551 			break;
552 		case ICMP_PARAMETERPROB:
553 			err = EPROTO;
554 			harderr = 1;
555 			break;
556 		case ICMP_DEST_UNREACH:
557 			if (code == ICMP_FRAG_NEEDED) { /* Path MTU discovery */
558 				ipv4_sk_update_pmtu(skb, sk, info);
559 				if (inet_sock->pmtudisc != IP_PMTUDISC_DONT) {
560 					err = EMSGSIZE;
561 					harderr = 1;
562 					break;
563 				}
564 				goto out;
565 			}
566 			err = EHOSTUNREACH;
567 			if (code <= NR_ICMP_UNREACH) {
568 				harderr = icmp_err_convert[code].fatal;
569 				err = icmp_err_convert[code].errno;
570 			}
571 			break;
572 		case ICMP_REDIRECT:
573 			/* See ICMP_SOURCE_QUENCH */
574 			ipv4_sk_redirect(skb, sk);
575 			err = EREMOTEIO;
576 			break;
577 		}
578 #if IS_ENABLED(CONFIG_IPV6)
579 	} else if (skb->protocol == htons(ETH_P_IPV6)) {
580 		harderr = pingv6_ops.icmpv6_err_convert(type, code, &err);
581 #endif
582 	}
583 
584 	/*
585 	 *      RFC1122: OK.  Passes ICMP errors back to application, as per
586 	 *	4.1.3.3.
587 	 */
588 	if ((family == AF_INET && !inet_sock->recverr) ||
589 	    (family == AF_INET6 && !inet6_sk(sk)->recverr)) {
590 		if (!harderr || sk->sk_state != TCP_ESTABLISHED)
591 			goto out;
592 	} else {
593 		if (family == AF_INET) {
594 			ip_icmp_error(sk, skb, err, 0 /* no remote port */,
595 				      info, (u8 *)icmph);
596 #if IS_ENABLED(CONFIG_IPV6)
597 		} else if (family == AF_INET6) {
598 			pingv6_ops.ipv6_icmp_error(sk, skb, err, 0,
599 						   info, (u8 *)icmph);
600 #endif
601 		}
602 	}
603 	sk->sk_err = err;
604 	sk_error_report(sk);
605 out:
606 	return;
607 }
608 EXPORT_SYMBOL_GPL(ping_err);
609 
610 /*
611  *	Copy and checksum an ICMP Echo packet from user space into a buffer
612  *	starting from the payload.
613  */
614 
615 int ping_getfrag(void *from, char *to,
616 		 int offset, int fraglen, int odd, struct sk_buff *skb)
617 {
618 	struct pingfakehdr *pfh = from;
619 
620 	if (!csum_and_copy_from_iter_full(to, fraglen, &pfh->wcheck,
621 					  &pfh->msg->msg_iter))
622 		return -EFAULT;
623 
624 #if IS_ENABLED(CONFIG_IPV6)
625 	/* For IPv6, checksum each skb as we go along, as expected by
626 	 * icmpv6_push_pending_frames. For IPv4, accumulate the checksum in
627 	 * wcheck, it will be finalized in ping_v4_push_pending_frames.
628 	 */
629 	if (pfh->family == AF_INET6) {
630 		skb->csum = csum_block_add(skb->csum, pfh->wcheck, odd);
631 		skb->ip_summed = CHECKSUM_NONE;
632 		pfh->wcheck = 0;
633 	}
634 #endif
635 
636 	return 0;
637 }
638 EXPORT_SYMBOL_GPL(ping_getfrag);
639 
640 static int ping_v4_push_pending_frames(struct sock *sk, struct pingfakehdr *pfh,
641 				       struct flowi4 *fl4)
642 {
643 	struct sk_buff *skb = skb_peek(&sk->sk_write_queue);
644 
645 	if (!skb)
646 		return 0;
647 	pfh->wcheck = csum_partial((char *)&pfh->icmph,
648 		sizeof(struct icmphdr), pfh->wcheck);
649 	pfh->icmph.checksum = csum_fold(pfh->wcheck);
650 	memcpy(icmp_hdr(skb), &pfh->icmph, sizeof(struct icmphdr));
651 	skb->ip_summed = CHECKSUM_NONE;
652 	return ip_push_pending_frames(sk, fl4);
653 }
654 
655 int ping_common_sendmsg(int family, struct msghdr *msg, size_t len,
656 			void *user_icmph, size_t icmph_len)
657 {
658 	u8 type, code;
659 
660 	if (len > 0xFFFF)
661 		return -EMSGSIZE;
662 
663 	/* Must have at least a full ICMP header. */
664 	if (len < icmph_len)
665 		return -EINVAL;
666 
667 	/*
668 	 *	Check the flags.
669 	 */
670 
671 	/* Mirror BSD error message compatibility */
672 	if (msg->msg_flags & MSG_OOB)
673 		return -EOPNOTSUPP;
674 
675 	/*
676 	 *	Fetch the ICMP header provided by the userland.
677 	 *	iovec is modified! The ICMP header is consumed.
678 	 */
679 	if (memcpy_from_msg(user_icmph, msg, icmph_len))
680 		return -EFAULT;
681 
682 	if (family == AF_INET) {
683 		type = ((struct icmphdr *) user_icmph)->type;
684 		code = ((struct icmphdr *) user_icmph)->code;
685 #if IS_ENABLED(CONFIG_IPV6)
686 	} else if (family == AF_INET6) {
687 		type = ((struct icmp6hdr *) user_icmph)->icmp6_type;
688 		code = ((struct icmp6hdr *) user_icmph)->icmp6_code;
689 #endif
690 	} else {
691 		BUG();
692 	}
693 
694 	if (!ping_supported(family, type, code))
695 		return -EINVAL;
696 
697 	return 0;
698 }
699 EXPORT_SYMBOL_GPL(ping_common_sendmsg);
700 
701 static int ping_v4_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
702 {
703 	struct net *net = sock_net(sk);
704 	struct flowi4 fl4;
705 	struct inet_sock *inet = inet_sk(sk);
706 	struct ipcm_cookie ipc;
707 	struct icmphdr user_icmph;
708 	struct pingfakehdr pfh;
709 	struct rtable *rt = NULL;
710 	struct ip_options_data opt_copy;
711 	int free = 0;
712 	__be32 saddr, daddr, faddr;
713 	u8  tos;
714 	int err;
715 
716 	pr_debug("ping_v4_sendmsg(sk=%p,sk->num=%u)\n", inet, inet->inet_num);
717 
718 	err = ping_common_sendmsg(AF_INET, msg, len, &user_icmph,
719 				  sizeof(user_icmph));
720 	if (err)
721 		return err;
722 
723 	/*
724 	 *	Get and verify the address.
725 	 */
726 
727 	if (msg->msg_name) {
728 		DECLARE_SOCKADDR(struct sockaddr_in *, usin, msg->msg_name);
729 		if (msg->msg_namelen < sizeof(*usin))
730 			return -EINVAL;
731 		if (usin->sin_family != AF_INET)
732 			return -EAFNOSUPPORT;
733 		daddr = usin->sin_addr.s_addr;
734 		/* no remote port */
735 	} else {
736 		if (sk->sk_state != TCP_ESTABLISHED)
737 			return -EDESTADDRREQ;
738 		daddr = inet->inet_daddr;
739 		/* no remote port */
740 	}
741 
742 	ipcm_init_sk(&ipc, inet);
743 
744 	if (msg->msg_controllen) {
745 		err = ip_cmsg_send(sk, msg, &ipc, false);
746 		if (unlikely(err)) {
747 			kfree(ipc.opt);
748 			return err;
749 		}
750 		if (ipc.opt)
751 			free = 1;
752 	}
753 	if (!ipc.opt) {
754 		struct ip_options_rcu *inet_opt;
755 
756 		rcu_read_lock();
757 		inet_opt = rcu_dereference(inet->inet_opt);
758 		if (inet_opt) {
759 			memcpy(&opt_copy, inet_opt,
760 			       sizeof(*inet_opt) + inet_opt->opt.optlen);
761 			ipc.opt = &opt_copy.opt;
762 		}
763 		rcu_read_unlock();
764 	}
765 
766 	saddr = ipc.addr;
767 	ipc.addr = faddr = daddr;
768 
769 	if (ipc.opt && ipc.opt->opt.srr) {
770 		if (!daddr) {
771 			err = -EINVAL;
772 			goto out_free;
773 		}
774 		faddr = ipc.opt->opt.faddr;
775 	}
776 	tos = get_rttos(&ipc, inet);
777 	if (sock_flag(sk, SOCK_LOCALROUTE) ||
778 	    (msg->msg_flags & MSG_DONTROUTE) ||
779 	    (ipc.opt && ipc.opt->opt.is_strictroute)) {
780 		tos |= RTO_ONLINK;
781 	}
782 
783 	if (ipv4_is_multicast(daddr)) {
784 		if (!ipc.oif || netif_index_is_l3_master(sock_net(sk), ipc.oif))
785 			ipc.oif = inet->mc_index;
786 		if (!saddr)
787 			saddr = inet->mc_addr;
788 	} else if (!ipc.oif)
789 		ipc.oif = inet->uc_index;
790 
791 	flowi4_init_output(&fl4, ipc.oif, ipc.sockc.mark, tos,
792 			   RT_SCOPE_UNIVERSE, sk->sk_protocol,
793 			   inet_sk_flowi_flags(sk), faddr, saddr, 0, 0,
794 			   sk->sk_uid);
795 
796 	fl4.fl4_icmp_type = user_icmph.type;
797 	fl4.fl4_icmp_code = user_icmph.code;
798 
799 	security_sk_classify_flow(sk, flowi4_to_flowi_common(&fl4));
800 	rt = ip_route_output_flow(net, &fl4, sk);
801 	if (IS_ERR(rt)) {
802 		err = PTR_ERR(rt);
803 		rt = NULL;
804 		if (err == -ENETUNREACH)
805 			IP_INC_STATS(net, IPSTATS_MIB_OUTNOROUTES);
806 		goto out;
807 	}
808 
809 	err = -EACCES;
810 	if ((rt->rt_flags & RTCF_BROADCAST) &&
811 	    !sock_flag(sk, SOCK_BROADCAST))
812 		goto out;
813 
814 	if (msg->msg_flags & MSG_CONFIRM)
815 		goto do_confirm;
816 back_from_confirm:
817 
818 	if (!ipc.addr)
819 		ipc.addr = fl4.daddr;
820 
821 	lock_sock(sk);
822 
823 	pfh.icmph.type = user_icmph.type; /* already checked */
824 	pfh.icmph.code = user_icmph.code; /* ditto */
825 	pfh.icmph.checksum = 0;
826 	pfh.icmph.un.echo.id = inet->inet_sport;
827 	pfh.icmph.un.echo.sequence = user_icmph.un.echo.sequence;
828 	pfh.msg = msg;
829 	pfh.wcheck = 0;
830 	pfh.family = AF_INET;
831 
832 	err = ip_append_data(sk, &fl4, ping_getfrag, &pfh, len,
833 			     sizeof(struct icmphdr), &ipc, &rt,
834 			     msg->msg_flags);
835 	if (err)
836 		ip_flush_pending_frames(sk);
837 	else
838 		err = ping_v4_push_pending_frames(sk, &pfh, &fl4);
839 	release_sock(sk);
840 
841 out:
842 	ip_rt_put(rt);
843 out_free:
844 	if (free)
845 		kfree(ipc.opt);
846 	if (!err) {
847 		icmp_out_count(sock_net(sk), user_icmph.type);
848 		return len;
849 	}
850 	return err;
851 
852 do_confirm:
853 	if (msg->msg_flags & MSG_PROBE)
854 		dst_confirm_neigh(&rt->dst, &fl4.daddr);
855 	if (!(msg->msg_flags & MSG_PROBE) || len)
856 		goto back_from_confirm;
857 	err = 0;
858 	goto out;
859 }
860 
861 int ping_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, int flags,
862 		 int *addr_len)
863 {
864 	struct inet_sock *isk = inet_sk(sk);
865 	int family = sk->sk_family;
866 	struct sk_buff *skb;
867 	int copied, err;
868 
869 	pr_debug("ping_recvmsg(sk=%p,sk->num=%u)\n", isk, isk->inet_num);
870 
871 	err = -EOPNOTSUPP;
872 	if (flags & MSG_OOB)
873 		goto out;
874 
875 	if (flags & MSG_ERRQUEUE)
876 		return inet_recv_error(sk, msg, len, addr_len);
877 
878 	skb = skb_recv_datagram(sk, flags, &err);
879 	if (!skb)
880 		goto out;
881 
882 	copied = skb->len;
883 	if (copied > len) {
884 		msg->msg_flags |= MSG_TRUNC;
885 		copied = len;
886 	}
887 
888 	/* Don't bother checking the checksum */
889 	err = skb_copy_datagram_msg(skb, 0, msg, copied);
890 	if (err)
891 		goto done;
892 
893 	sock_recv_timestamp(msg, sk, skb);
894 
895 	/* Copy the address and add cmsg data. */
896 	if (family == AF_INET) {
897 		DECLARE_SOCKADDR(struct sockaddr_in *, sin, msg->msg_name);
898 
899 		if (sin) {
900 			sin->sin_family = AF_INET;
901 			sin->sin_port = 0 /* skb->h.uh->source */;
902 			sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
903 			memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
904 			*addr_len = sizeof(*sin);
905 		}
906 
907 		if (isk->cmsg_flags)
908 			ip_cmsg_recv(msg, skb);
909 
910 #if IS_ENABLED(CONFIG_IPV6)
911 	} else if (family == AF_INET6) {
912 		struct ipv6_pinfo *np = inet6_sk(sk);
913 		struct ipv6hdr *ip6 = ipv6_hdr(skb);
914 		DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
915 
916 		if (sin6) {
917 			sin6->sin6_family = AF_INET6;
918 			sin6->sin6_port = 0;
919 			sin6->sin6_addr = ip6->saddr;
920 			sin6->sin6_flowinfo = 0;
921 			if (np->sndflow)
922 				sin6->sin6_flowinfo = ip6_flowinfo(ip6);
923 			sin6->sin6_scope_id =
924 				ipv6_iface_scope_id(&sin6->sin6_addr,
925 						    inet6_iif(skb));
926 			*addr_len = sizeof(*sin6);
927 		}
928 
929 		if (inet6_sk(sk)->rxopt.all)
930 			pingv6_ops.ip6_datagram_recv_common_ctl(sk, msg, skb);
931 		if (skb->protocol == htons(ETH_P_IPV6) &&
932 		    inet6_sk(sk)->rxopt.all)
933 			pingv6_ops.ip6_datagram_recv_specific_ctl(sk, msg, skb);
934 		else if (skb->protocol == htons(ETH_P_IP) && isk->cmsg_flags)
935 			ip_cmsg_recv(msg, skb);
936 #endif
937 	} else {
938 		BUG();
939 	}
940 
941 	err = copied;
942 
943 done:
944 	skb_free_datagram(sk, skb);
945 out:
946 	pr_debug("ping_recvmsg -> %d\n", err);
947 	return err;
948 }
949 EXPORT_SYMBOL_GPL(ping_recvmsg);
950 
951 static enum skb_drop_reason __ping_queue_rcv_skb(struct sock *sk,
952 						 struct sk_buff *skb)
953 {
954 	enum skb_drop_reason reason;
955 
956 	pr_debug("ping_queue_rcv_skb(sk=%p,sk->num=%d,skb=%p)\n",
957 		 inet_sk(sk), inet_sk(sk)->inet_num, skb);
958 	if (sock_queue_rcv_skb_reason(sk, skb, &reason) < 0) {
959 		kfree_skb_reason(skb, reason);
960 		pr_debug("ping_queue_rcv_skb -> failed\n");
961 		return reason;
962 	}
963 	return SKB_NOT_DROPPED_YET;
964 }
965 
966 int ping_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
967 {
968 	return __ping_queue_rcv_skb(sk, skb) ? -1 : 0;
969 }
970 EXPORT_SYMBOL_GPL(ping_queue_rcv_skb);
971 
972 
973 /*
974  *	All we need to do is get the socket.
975  */
976 
977 enum skb_drop_reason ping_rcv(struct sk_buff *skb)
978 {
979 	enum skb_drop_reason reason = SKB_DROP_REASON_NO_SOCKET;
980 	struct sock *sk;
981 	struct net *net = dev_net(skb->dev);
982 	struct icmphdr *icmph = icmp_hdr(skb);
983 
984 	/* We assume the packet has already been checked by icmp_rcv */
985 
986 	pr_debug("ping_rcv(skb=%p,id=%04x,seq=%04x)\n",
987 		 skb, ntohs(icmph->un.echo.id), ntohs(icmph->un.echo.sequence));
988 
989 	/* Push ICMP header back */
990 	skb_push(skb, skb->data - (u8 *)icmph);
991 
992 	sk = ping_lookup(net, skb, ntohs(icmph->un.echo.id));
993 	if (sk) {
994 		struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
995 
996 		pr_debug("rcv on socket %p\n", sk);
997 		if (skb2)
998 			reason = __ping_queue_rcv_skb(sk, skb2);
999 		else
1000 			reason = SKB_DROP_REASON_NOMEM;
1001 	}
1002 
1003 	if (reason)
1004 		pr_debug("no socket, dropping\n");
1005 
1006 	return reason;
1007 }
1008 EXPORT_SYMBOL_GPL(ping_rcv);
1009 
1010 struct proto ping_prot = {
1011 	.name =		"PING",
1012 	.owner =	THIS_MODULE,
1013 	.init =		ping_init_sock,
1014 	.close =	ping_close,
1015 	.pre_connect =	ping_pre_connect,
1016 	.connect =	ip4_datagram_connect,
1017 	.disconnect =	__udp_disconnect,
1018 	.setsockopt =	ip_setsockopt,
1019 	.getsockopt =	ip_getsockopt,
1020 	.sendmsg =	ping_v4_sendmsg,
1021 	.recvmsg =	ping_recvmsg,
1022 	.bind =		ping_bind,
1023 	.backlog_rcv =	ping_queue_rcv_skb,
1024 	.release_cb =	ip4_datagram_release_cb,
1025 	.hash =		ping_hash,
1026 	.unhash =	ping_unhash,
1027 	.get_port =	ping_get_port,
1028 	.put_port =	ping_unhash,
1029 	.obj_size =	sizeof(struct inet_sock),
1030 };
1031 EXPORT_SYMBOL(ping_prot);
1032 
1033 #ifdef CONFIG_PROC_FS
1034 
1035 static struct sock *ping_get_first(struct seq_file *seq, int start)
1036 {
1037 	struct sock *sk;
1038 	struct ping_iter_state *state = seq->private;
1039 	struct net *net = seq_file_net(seq);
1040 
1041 	for (state->bucket = start; state->bucket < PING_HTABLE_SIZE;
1042 	     ++state->bucket) {
1043 		struct hlist_nulls_node *node;
1044 		struct hlist_nulls_head *hslot;
1045 
1046 		hslot = &ping_table.hash[state->bucket];
1047 
1048 		if (hlist_nulls_empty(hslot))
1049 			continue;
1050 
1051 		sk_nulls_for_each(sk, node, hslot) {
1052 			if (net_eq(sock_net(sk), net) &&
1053 			    sk->sk_family == state->family)
1054 				goto found;
1055 		}
1056 	}
1057 	sk = NULL;
1058 found:
1059 	return sk;
1060 }
1061 
1062 static struct sock *ping_get_next(struct seq_file *seq, struct sock *sk)
1063 {
1064 	struct ping_iter_state *state = seq->private;
1065 	struct net *net = seq_file_net(seq);
1066 
1067 	do {
1068 		sk = sk_nulls_next(sk);
1069 	} while (sk && (!net_eq(sock_net(sk), net)));
1070 
1071 	if (!sk)
1072 		return ping_get_first(seq, state->bucket + 1);
1073 	return sk;
1074 }
1075 
1076 static struct sock *ping_get_idx(struct seq_file *seq, loff_t pos)
1077 {
1078 	struct sock *sk = ping_get_first(seq, 0);
1079 
1080 	if (sk)
1081 		while (pos && (sk = ping_get_next(seq, sk)) != NULL)
1082 			--pos;
1083 	return pos ? NULL : sk;
1084 }
1085 
1086 void *ping_seq_start(struct seq_file *seq, loff_t *pos, sa_family_t family)
1087 	__acquires(RCU)
1088 {
1089 	struct ping_iter_state *state = seq->private;
1090 	state->bucket = 0;
1091 	state->family = family;
1092 
1093 	rcu_read_lock();
1094 
1095 	return *pos ? ping_get_idx(seq, *pos-1) : SEQ_START_TOKEN;
1096 }
1097 EXPORT_SYMBOL_GPL(ping_seq_start);
1098 
1099 static void *ping_v4_seq_start(struct seq_file *seq, loff_t *pos)
1100 {
1101 	return ping_seq_start(seq, pos, AF_INET);
1102 }
1103 
1104 void *ping_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1105 {
1106 	struct sock *sk;
1107 
1108 	if (v == SEQ_START_TOKEN)
1109 		sk = ping_get_idx(seq, 0);
1110 	else
1111 		sk = ping_get_next(seq, v);
1112 
1113 	++*pos;
1114 	return sk;
1115 }
1116 EXPORT_SYMBOL_GPL(ping_seq_next);
1117 
1118 void ping_seq_stop(struct seq_file *seq, void *v)
1119 	__releases(RCU)
1120 {
1121 	rcu_read_unlock();
1122 }
1123 EXPORT_SYMBOL_GPL(ping_seq_stop);
1124 
1125 static void ping_v4_format_sock(struct sock *sp, struct seq_file *f,
1126 		int bucket)
1127 {
1128 	struct inet_sock *inet = inet_sk(sp);
1129 	__be32 dest = inet->inet_daddr;
1130 	__be32 src = inet->inet_rcv_saddr;
1131 	__u16 destp = ntohs(inet->inet_dport);
1132 	__u16 srcp = ntohs(inet->inet_sport);
1133 
1134 	seq_printf(f, "%5d: %08X:%04X %08X:%04X"
1135 		" %02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %u",
1136 		bucket, src, srcp, dest, destp, sp->sk_state,
1137 		sk_wmem_alloc_get(sp),
1138 		sk_rmem_alloc_get(sp),
1139 		0, 0L, 0,
1140 		from_kuid_munged(seq_user_ns(f), sock_i_uid(sp)),
1141 		0, sock_i_ino(sp),
1142 		refcount_read(&sp->sk_refcnt), sp,
1143 		atomic_read(&sp->sk_drops));
1144 }
1145 
1146 static int ping_v4_seq_show(struct seq_file *seq, void *v)
1147 {
1148 	seq_setwidth(seq, 127);
1149 	if (v == SEQ_START_TOKEN)
1150 		seq_puts(seq, "  sl  local_address rem_address   st tx_queue "
1151 			   "rx_queue tr tm->when retrnsmt   uid  timeout "
1152 			   "inode ref pointer drops");
1153 	else {
1154 		struct ping_iter_state *state = seq->private;
1155 
1156 		ping_v4_format_sock(v, seq, state->bucket);
1157 	}
1158 	seq_pad(seq, '\n');
1159 	return 0;
1160 }
1161 
1162 static const struct seq_operations ping_v4_seq_ops = {
1163 	.start		= ping_v4_seq_start,
1164 	.show		= ping_v4_seq_show,
1165 	.next		= ping_seq_next,
1166 	.stop		= ping_seq_stop,
1167 };
1168 
1169 static int __net_init ping_v4_proc_init_net(struct net *net)
1170 {
1171 	if (!proc_create_net("icmp", 0444, net->proc_net, &ping_v4_seq_ops,
1172 			sizeof(struct ping_iter_state)))
1173 		return -ENOMEM;
1174 	return 0;
1175 }
1176 
1177 static void __net_exit ping_v4_proc_exit_net(struct net *net)
1178 {
1179 	remove_proc_entry("icmp", net->proc_net);
1180 }
1181 
1182 static struct pernet_operations ping_v4_net_ops = {
1183 	.init = ping_v4_proc_init_net,
1184 	.exit = ping_v4_proc_exit_net,
1185 };
1186 
1187 int __init ping_proc_init(void)
1188 {
1189 	return register_pernet_subsys(&ping_v4_net_ops);
1190 }
1191 
1192 void ping_proc_exit(void)
1193 {
1194 	unregister_pernet_subsys(&ping_v4_net_ops);
1195 }
1196 
1197 #endif
1198 
1199 void __init ping_init(void)
1200 {
1201 	int i;
1202 
1203 	for (i = 0; i < PING_HTABLE_SIZE; i++)
1204 		INIT_HLIST_NULLS_HEAD(&ping_table.hash[i], i);
1205 	spin_lock_init(&ping_table.lock);
1206 }
1207