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