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