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