l2tp: don't use inet_shutdown on ppp session destroy
[pandora-kernel.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 <asm/system.h>
24 #include <linux/uaccess.h>
25 #include <linux/types.h>
26 #include <linux/fcntl.h>
27 #include <linux/socket.h>
28 #include <linux/sockios.h>
29 #include <linux/in.h>
30 #include <linux/errno.h>
31 #include <linux/timer.h>
32 #include <linux/mm.h>
33 #include <linux/inet.h>
34 #include <linux/netdevice.h>
35 #include <net/snmp.h>
36 #include <net/ip.h>
37 #include <net/ipv6.h>
38 #include <net/icmp.h>
39 #include <net/protocol.h>
40 #include <linux/skbuff.h>
41 #include <linux/proc_fs.h>
42 #include <linux/export.h>
43 #include <net/sock.h>
44 #include <net/ping.h>
45 #include <net/udp.h>
46 #include <net/route.h>
47 #include <net/inet_common.h>
48 #include <net/checksum.h>
49
50
51 static struct ping_table ping_table;
52
53 static u16 ping_port_rover;
54
55 static inline int ping_hashfn(struct net *net, unsigned num, unsigned mask)
56 {
57         int res = (num + net_hash_mix(net)) & mask;
58         pr_debug("hash(%d) = %d\n", num, res);
59         return res;
60 }
61
62 static inline struct hlist_nulls_head *ping_hashslot(struct ping_table *table,
63                                              struct net *net, unsigned num)
64 {
65         return &table->hash[ping_hashfn(net, num, PING_HTABLE_MASK)];
66 }
67
68 static int ping_v4_get_port(struct sock *sk, unsigned short ident)
69 {
70         struct hlist_nulls_node *node;
71         struct hlist_nulls_head *hlist;
72         struct inet_sock *isk, *isk2;
73         struct sock *sk2 = NULL;
74
75         isk = inet_sk(sk);
76         write_lock_bh(&ping_table.lock);
77         if (ident == 0) {
78                 u32 i;
79                 u16 result = ping_port_rover + 1;
80
81                 for (i = 0; i < (1L << 16); i++, result++) {
82                         if (!result)
83                                 result++; /* avoid zero */
84                         hlist = ping_hashslot(&ping_table, sock_net(sk),
85                                             result);
86                         ping_portaddr_for_each_entry(sk2, node, hlist) {
87                                 isk2 = inet_sk(sk2);
88
89                                 if (isk2->inet_num == result)
90                                         goto next_port;
91                         }
92
93                         /* found */
94                         ping_port_rover = ident = result;
95                         break;
96 next_port:
97                         ;
98                 }
99                 if (i >= (1L << 16))
100                         goto fail;
101         } else {
102                 hlist = ping_hashslot(&ping_table, sock_net(sk), ident);
103                 ping_portaddr_for_each_entry(sk2, node, hlist) {
104                         isk2 = inet_sk(sk2);
105
106                         if ((isk2->inet_num == ident) &&
107                             (sk2 != sk) &&
108                             (!sk2->sk_reuse || !sk->sk_reuse))
109                                 goto fail;
110                 }
111         }
112
113         pr_debug("found port/ident = %d\n", ident);
114         isk->inet_num = ident;
115         if (sk_unhashed(sk)) {
116                 pr_debug("was not hashed\n");
117                 sock_hold(sk);
118                 hlist_nulls_add_head(&sk->sk_nulls_node, hlist);
119                 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
120         }
121         write_unlock_bh(&ping_table.lock);
122         return 0;
123
124 fail:
125         write_unlock_bh(&ping_table.lock);
126         return 1;
127 }
128
129 static void ping_v4_hash(struct sock *sk)
130 {
131         pr_debug("ping_v4_hash(sk->port=%u)\n", inet_sk(sk)->inet_num);
132         BUG(); /* "Please do not press this button again." */
133 }
134
135 static void ping_v4_unhash(struct sock *sk)
136 {
137         struct inet_sock *isk = inet_sk(sk);
138
139         pr_debug("ping_v4_unhash(isk=%p,isk->num=%u)\n", isk, isk->inet_num);
140         write_lock_bh(&ping_table.lock);
141         if (sk_hashed(sk)) {
142                 hlist_nulls_del(&sk->sk_nulls_node);
143                 sk_nulls_node_init(&sk->sk_nulls_node);
144                 sock_put(sk);
145                 isk->inet_num = isk->inet_sport = 0;
146                 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
147         }
148         write_unlock_bh(&ping_table.lock);
149 }
150
151 static struct sock *ping_v4_lookup(struct net *net, u32 saddr, u32 daddr,
152                                    u16 ident, int dif)
153 {
154         struct hlist_nulls_head *hslot = ping_hashslot(&ping_table, net, ident);
155         struct sock *sk = NULL;
156         struct inet_sock *isk;
157         struct hlist_nulls_node *hnode;
158
159         pr_debug("try to find: num = %d, daddr = %ld, dif = %d\n",
160                          (int)ident, (unsigned long)daddr, dif);
161         read_lock_bh(&ping_table.lock);
162
163         ping_portaddr_for_each_entry(sk, hnode, hslot) {
164                 isk = inet_sk(sk);
165
166                 pr_debug("found: %p: num = %d, daddr = %ld, dif = %d\n", sk,
167                          (int)isk->inet_num, (unsigned long)isk->inet_rcv_saddr,
168                          sk->sk_bound_dev_if);
169
170                 pr_debug("iterate\n");
171                 if (isk->inet_num != ident)
172                         continue;
173                 if (isk->inet_rcv_saddr && isk->inet_rcv_saddr != daddr)
174                         continue;
175                 if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif)
176                         continue;
177
178                 sock_hold(sk);
179                 goto exit;
180         }
181
182         sk = NULL;
183 exit:
184         read_unlock_bh(&ping_table.lock);
185
186         return sk;
187 }
188
189 static void inet_get_ping_group_range_net(struct net *net, gid_t *low,
190                                           gid_t *high)
191 {
192         gid_t *data = net->ipv4.sysctl_ping_group_range;
193         unsigned seq;
194         do {
195                 seq = read_seqbegin(&sysctl_local_ports.lock);
196
197                 *low = data[0];
198                 *high = data[1];
199         } while (read_seqretry(&sysctl_local_ports.lock, seq));
200 }
201
202
203 static int ping_init_sock(struct sock *sk)
204 {
205         struct net *net = sock_net(sk);
206         gid_t group = current_egid();
207         gid_t range[2];
208         struct group_info *group_info;
209         int i, j, count;
210         int ret = 0;
211
212         inet_get_ping_group_range_net(net, range, range+1);
213         if (range[0] <= group && group <= range[1])
214                 return 0;
215
216         group_info = get_current_groups();
217         count = group_info->ngroups;
218         for (i = 0; i < group_info->nblocks; i++) {
219                 int cp_count = min_t(int, NGROUPS_PER_BLOCK, count);
220
221                 for (j = 0; j < cp_count; j++) {
222                         group = group_info->blocks[i][j];
223                         if (range[0] <= group && group <= range[1])
224                                 goto out_release_group;
225                 }
226
227                 count -= cp_count;
228         }
229
230         ret = -EACCES;
231
232 out_release_group:
233         put_group_info(group_info);
234         return ret;
235 }
236
237 static void ping_close(struct sock *sk, long timeout)
238 {
239         pr_debug("ping_close(sk=%p,sk->num=%u)\n",
240                 inet_sk(sk), inet_sk(sk)->inet_num);
241         pr_debug("isk->refcnt = %d\n", sk->sk_refcnt.counter);
242
243         sk_common_release(sk);
244 }
245
246 /*
247  * We need our own bind because there are no privileged id's == local ports.
248  * Moreover, we don't allow binding to multi- and broadcast addresses.
249  */
250
251 static int ping_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
252 {
253         struct sockaddr_in *addr = (struct sockaddr_in *)uaddr;
254         struct inet_sock *isk = inet_sk(sk);
255         unsigned short snum;
256         int chk_addr_ret;
257         int err;
258
259         if (addr_len < sizeof(struct sockaddr_in))
260                 return -EINVAL;
261
262         if (addr->sin_family != AF_INET &&
263             !(addr->sin_family == AF_UNSPEC &&
264               addr->sin_addr.s_addr == htonl(INADDR_ANY)))
265                 return -EAFNOSUPPORT;
266
267         pr_debug("ping_v4_bind(sk=%p,sa_addr=%08x,sa_port=%d)\n",
268                 sk, addr->sin_addr.s_addr, ntohs(addr->sin_port));
269
270         chk_addr_ret = inet_addr_type(sock_net(sk), addr->sin_addr.s_addr);
271         if (addr->sin_addr.s_addr == INADDR_ANY)
272                 chk_addr_ret = RTN_LOCAL;
273
274         if ((sysctl_ip_nonlocal_bind == 0 &&
275             isk->freebind == 0 && isk->transparent == 0 &&
276              chk_addr_ret != RTN_LOCAL) ||
277             chk_addr_ret == RTN_MULTICAST ||
278             chk_addr_ret == RTN_BROADCAST)
279                 return -EADDRNOTAVAIL;
280
281         lock_sock(sk);
282
283         err = -EINVAL;
284         if (isk->inet_num != 0)
285                 goto out;
286
287         err = -EADDRINUSE;
288         isk->inet_rcv_saddr = isk->inet_saddr = addr->sin_addr.s_addr;
289         snum = ntohs(addr->sin_port);
290         if (ping_v4_get_port(sk, snum) != 0) {
291                 isk->inet_saddr = isk->inet_rcv_saddr = 0;
292                 goto out;
293         }
294
295         pr_debug("after bind(): num = %d, daddr = %ld, dif = %d\n",
296                 (int)isk->inet_num,
297                 (unsigned long) isk->inet_rcv_saddr,
298                 (int)sk->sk_bound_dev_if);
299
300         err = 0;
301         if (isk->inet_rcv_saddr)
302                 sk->sk_userlocks |= SOCK_BINDADDR_LOCK;
303         if (snum)
304                 sk->sk_userlocks |= SOCK_BINDPORT_LOCK;
305         isk->inet_sport = htons(isk->inet_num);
306         isk->inet_daddr = 0;
307         isk->inet_dport = 0;
308         sk_dst_reset(sk);
309 out:
310         release_sock(sk);
311         pr_debug("ping_v4_bind -> %d\n", err);
312         return err;
313 }
314
315 /*
316  * Is this a supported type of ICMP message?
317  */
318
319 static inline int ping_supported(int type, int code)
320 {
321         if (type == ICMP_ECHO && code == 0)
322                 return 1;
323         return 0;
324 }
325
326 /*
327  * This routine is called by the ICMP module when it gets some
328  * sort of error condition.
329  */
330
331 static int ping_queue_rcv_skb(struct sock *sk, struct sk_buff *skb);
332
333 void ping_err(struct sk_buff *skb, u32 info)
334 {
335         struct iphdr *iph = (struct iphdr *)skb->data;
336         struct icmphdr *icmph = (struct icmphdr *)(skb->data+(iph->ihl<<2));
337         struct inet_sock *inet_sock;
338         int type = icmp_hdr(skb)->type;
339         int code = icmp_hdr(skb)->code;
340         struct net *net = dev_net(skb->dev);
341         struct sock *sk;
342         int harderr;
343         int err;
344
345         /* We assume the packet has already been checked by icmp_unreach */
346
347         if (!ping_supported(icmph->type, icmph->code))
348                 return;
349
350         pr_debug("ping_err(type=%04x,code=%04x,id=%04x,seq=%04x)\n", type,
351                 code, ntohs(icmph->un.echo.id), ntohs(icmph->un.echo.sequence));
352
353         sk = ping_v4_lookup(net, iph->daddr, iph->saddr,
354                             ntohs(icmph->un.echo.id), skb->dev->ifindex);
355         if (sk == NULL) {
356                 pr_debug("no socket, dropping\n");
357                 return; /* No socket for error */
358         }
359         pr_debug("err on socket %p\n", sk);
360
361         err = 0;
362         harderr = 0;
363         inet_sock = inet_sk(sk);
364
365         switch (type) {
366         default:
367         case ICMP_TIME_EXCEEDED:
368                 err = EHOSTUNREACH;
369                 break;
370         case ICMP_SOURCE_QUENCH:
371                 /* This is not a real error but ping wants to see it.
372                  * Report it with some fake errno. */
373                 err = EREMOTEIO;
374                 break;
375         case ICMP_PARAMETERPROB:
376                 err = EPROTO;
377                 harderr = 1;
378                 break;
379         case ICMP_DEST_UNREACH:
380                 if (code == ICMP_FRAG_NEEDED) { /* Path MTU discovery */
381                         if (inet_sock->pmtudisc != IP_PMTUDISC_DONT) {
382                                 err = EMSGSIZE;
383                                 harderr = 1;
384                                 break;
385                         }
386                         goto out;
387                 }
388                 err = EHOSTUNREACH;
389                 if (code <= NR_ICMP_UNREACH) {
390                         harderr = icmp_err_convert[code].fatal;
391                         err = icmp_err_convert[code].errno;
392                 }
393                 break;
394         case ICMP_REDIRECT:
395                 /* See ICMP_SOURCE_QUENCH */
396                 err = EREMOTEIO;
397                 break;
398         }
399
400         /*
401          *      RFC1122: OK.  Passes ICMP errors back to application, as per
402          *      4.1.3.3.
403          */
404         if (!inet_sock->recverr) {
405                 if (!harderr || sk->sk_state != TCP_ESTABLISHED)
406                         goto out;
407         } else {
408                 ip_icmp_error(sk, skb, err, 0 /* no remote port */,
409                          info, (u8 *)icmph);
410         }
411         sk->sk_err = err;
412         sk->sk_error_report(sk);
413 out:
414         sock_put(sk);
415 }
416
417 /*
418  *      Copy and checksum an ICMP Echo packet from user space into a buffer.
419  */
420
421 struct pingfakehdr {
422         struct icmphdr icmph;
423         struct iovec *iov;
424         u32 wcheck;
425 };
426
427 static int ping_getfrag(void *from, char * to,
428                         int offset, int fraglen, int odd, struct sk_buff *skb)
429 {
430         struct pingfakehdr *pfh = (struct pingfakehdr *)from;
431
432         if (offset == 0) {
433                 if (fraglen < sizeof(struct icmphdr))
434                         BUG();
435                 if (csum_partial_copy_fromiovecend(to + sizeof(struct icmphdr),
436                             pfh->iov, 0, fraglen - sizeof(struct icmphdr),
437                             &pfh->wcheck))
438                         return -EFAULT;
439
440                 return 0;
441         }
442         if (offset < sizeof(struct icmphdr))
443                 BUG();
444         if (csum_partial_copy_fromiovecend
445                         (to, pfh->iov, offset - sizeof(struct icmphdr),
446                          fraglen, &pfh->wcheck))
447                 return -EFAULT;
448         return 0;
449 }
450
451 static int ping_push_pending_frames(struct sock *sk, struct pingfakehdr *pfh,
452                                     struct flowi4 *fl4)
453 {
454         struct sk_buff *skb = skb_peek(&sk->sk_write_queue);
455
456         if (!skb)
457                 return 0;
458         pfh->wcheck = csum_partial((char *)&pfh->icmph,
459                 sizeof(struct icmphdr), pfh->wcheck);
460         pfh->icmph.checksum = csum_fold(pfh->wcheck);
461         memcpy(icmp_hdr(skb), &pfh->icmph, sizeof(struct icmphdr));
462         skb->ip_summed = CHECKSUM_NONE;
463         return ip_push_pending_frames(sk, fl4);
464 }
465
466 static int ping_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
467                         size_t len)
468 {
469         struct net *net = sock_net(sk);
470         struct flowi4 fl4;
471         struct inet_sock *inet = inet_sk(sk);
472         struct ipcm_cookie ipc;
473         struct icmphdr user_icmph;
474         struct pingfakehdr pfh;
475         struct rtable *rt = NULL;
476         struct ip_options_data opt_copy;
477         int free = 0;
478         u32 saddr, daddr, faddr;
479         u8  tos;
480         int err;
481
482         pr_debug("ping_sendmsg(sk=%p,sk->num=%u)\n", inet, inet->inet_num);
483
484
485         if (len > 0xFFFF)
486                 return -EMSGSIZE;
487
488         /* Must have at least a full ICMP header. */
489         if (len < sizeof(struct icmphdr))
490                 return -EINVAL;
491
492         /*
493          *      Check the flags.
494          */
495
496         /* Mirror BSD error message compatibility */
497         if (msg->msg_flags & MSG_OOB)
498                 return -EOPNOTSUPP;
499
500         /*
501          *      Fetch the ICMP header provided by the userland.
502          *      iovec is modified!
503          */
504
505         if (memcpy_fromiovec((u8 *)&user_icmph, msg->msg_iov,
506                              sizeof(struct icmphdr)))
507                 return -EFAULT;
508         if (!ping_supported(user_icmph.type, user_icmph.code))
509                 return -EINVAL;
510
511         /*
512          *      Get and verify the address.
513          */
514
515         if (msg->msg_name) {
516                 struct sockaddr_in *usin = (struct sockaddr_in *)msg->msg_name;
517                 if (msg->msg_namelen < sizeof(*usin))
518                         return -EINVAL;
519                 if (usin->sin_family != AF_INET)
520                         return -EAFNOSUPPORT;
521                 daddr = usin->sin_addr.s_addr;
522                 /* no remote port */
523         } else {
524                 if (sk->sk_state != TCP_ESTABLISHED)
525                         return -EDESTADDRREQ;
526                 daddr = inet->inet_daddr;
527                 /* no remote port */
528         }
529
530         ipc.addr = inet->inet_saddr;
531         ipc.opt = NULL;
532         ipc.oif = sk->sk_bound_dev_if;
533         ipc.tx_flags = 0;
534         err = sock_tx_timestamp(sk, &ipc.tx_flags);
535         if (err)
536                 return err;
537
538         if (msg->msg_controllen) {
539                 err = ip_cmsg_send(sock_net(sk), msg, &ipc);
540                 if (unlikely(err)) {
541                         kfree(ipc.opt);
542                         return err;
543                 }
544                 if (ipc.opt)
545                         free = 1;
546         }
547         if (!ipc.opt) {
548                 struct ip_options_rcu *inet_opt;
549
550                 rcu_read_lock();
551                 inet_opt = rcu_dereference(inet->inet_opt);
552                 if (inet_opt) {
553                         memcpy(&opt_copy, inet_opt,
554                                sizeof(*inet_opt) + inet_opt->opt.optlen);
555                         ipc.opt = &opt_copy.opt;
556                 }
557                 rcu_read_unlock();
558         }
559
560         saddr = ipc.addr;
561         ipc.addr = faddr = daddr;
562
563         if (ipc.opt && ipc.opt->opt.srr) {
564                 if (!daddr)
565                         return -EINVAL;
566                 faddr = ipc.opt->opt.faddr;
567         }
568         tos = RT_TOS(inet->tos);
569         if (sock_flag(sk, SOCK_LOCALROUTE) ||
570             (msg->msg_flags & MSG_DONTROUTE) ||
571             (ipc.opt && ipc.opt->opt.is_strictroute)) {
572                 tos |= RTO_ONLINK;
573         }
574
575         if (ipv4_is_multicast(daddr)) {
576                 if (!ipc.oif)
577                         ipc.oif = inet->mc_index;
578                 if (!saddr)
579                         saddr = inet->mc_addr;
580         }
581
582         flowi4_init_output(&fl4, ipc.oif, sk->sk_mark, tos,
583                            RT_SCOPE_UNIVERSE, sk->sk_protocol,
584                            inet_sk_flowi_flags(sk), faddr, saddr, 0, 0);
585
586         security_sk_classify_flow(sk, flowi4_to_flowi(&fl4));
587         rt = ip_route_output_flow(net, &fl4, sk);
588         if (IS_ERR(rt)) {
589                 err = PTR_ERR(rt);
590                 rt = NULL;
591                 if (err == -ENETUNREACH)
592                         IP_INC_STATS(net, IPSTATS_MIB_OUTNOROUTES);
593                 goto out;
594         }
595
596         err = -EACCES;
597         if ((rt->rt_flags & RTCF_BROADCAST) &&
598             !sock_flag(sk, SOCK_BROADCAST))
599                 goto out;
600
601         if (msg->msg_flags & MSG_CONFIRM)
602                 goto do_confirm;
603 back_from_confirm:
604
605         if (!ipc.addr)
606                 ipc.addr = fl4.daddr;
607
608         lock_sock(sk);
609
610         pfh.icmph.type = user_icmph.type; /* already checked */
611         pfh.icmph.code = user_icmph.code; /* ditto */
612         pfh.icmph.checksum = 0;
613         pfh.icmph.un.echo.id = inet->inet_sport;
614         pfh.icmph.un.echo.sequence = user_icmph.un.echo.sequence;
615         pfh.iov = msg->msg_iov;
616         pfh.wcheck = 0;
617
618         err = ip_append_data(sk, &fl4, ping_getfrag, &pfh, len,
619                         0, &ipc, &rt, msg->msg_flags);
620         if (err)
621                 ip_flush_pending_frames(sk);
622         else
623                 err = ping_push_pending_frames(sk, &pfh, &fl4);
624         release_sock(sk);
625
626 out:
627         ip_rt_put(rt);
628         if (free)
629                 kfree(ipc.opt);
630         if (!err) {
631                 icmp_out_count(sock_net(sk), user_icmph.type);
632                 return len;
633         }
634         return err;
635
636 do_confirm:
637         dst_confirm(&rt->dst);
638         if (!(msg->msg_flags & MSG_PROBE) || len)
639                 goto back_from_confirm;
640         err = 0;
641         goto out;
642 }
643
644 static int ping_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
645                         size_t len, int noblock, int flags, int *addr_len)
646 {
647         struct inet_sock *isk = inet_sk(sk);
648         struct sk_buff *skb;
649         int copied, err;
650
651         pr_debug("ping_recvmsg(sk=%p,sk->num=%u)\n", isk, isk->inet_num);
652
653         if (flags & MSG_OOB)
654                 goto out;
655
656         if (flags & MSG_ERRQUEUE)
657                 return ip_recv_error(sk, msg, len, addr_len);
658
659         skb = skb_recv_datagram(sk, flags, noblock, &err);
660         if (!skb)
661                 goto out;
662
663         copied = skb->len;
664         if (copied > len) {
665                 msg->msg_flags |= MSG_TRUNC;
666                 copied = len;
667         }
668
669         /* Don't bother checking the checksum */
670         err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
671         if (err)
672                 goto done;
673
674         sock_recv_timestamp(msg, sk, skb);
675
676         /* Copy the address. */
677         if (msg->msg_name) {
678                 struct sockaddr_in *sin = (struct sockaddr_in *)msg->msg_name;
679
680                 sin->sin_family = AF_INET;
681                 sin->sin_port = 0 /* skb->h.uh->source */;
682                 sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
683                 memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
684                 *addr_len = sizeof(*sin);
685         }
686         if (isk->cmsg_flags)
687                 ip_cmsg_recv(msg, skb);
688         err = copied;
689
690 done:
691         skb_free_datagram(sk, skb);
692 out:
693         pr_debug("ping_recvmsg -> %d\n", err);
694         return err;
695 }
696
697 static int ping_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
698 {
699         pr_debug("ping_queue_rcv_skb(sk=%p,sk->num=%d,skb=%p)\n",
700                 inet_sk(sk), inet_sk(sk)->inet_num, skb);
701         if (sock_queue_rcv_skb(sk, skb) < 0) {
702                 kfree_skb(skb);
703                 pr_debug("ping_queue_rcv_skb -> failed\n");
704                 return -1;
705         }
706         return 0;
707 }
708
709
710 /*
711  *      All we need to do is get the socket.
712  */
713
714 void ping_rcv(struct sk_buff *skb)
715 {
716         struct sock *sk;
717         struct net *net = dev_net(skb->dev);
718         struct iphdr *iph = ip_hdr(skb);
719         struct icmphdr *icmph = icmp_hdr(skb);
720         u32 saddr = iph->saddr;
721         u32 daddr = iph->daddr;
722
723         /* We assume the packet has already been checked by icmp_rcv */
724
725         pr_debug("ping_rcv(skb=%p,id=%04x,seq=%04x)\n",
726                 skb, ntohs(icmph->un.echo.id), ntohs(icmph->un.echo.sequence));
727
728         /* Push ICMP header back */
729         skb_push(skb, skb->data - (u8 *)icmph);
730
731         sk = ping_v4_lookup(net, saddr, daddr, ntohs(icmph->un.echo.id),
732                             skb->dev->ifindex);
733         if (sk != NULL) {
734                 struct sk_buff *skb2 = skb_clone(skb, GFP_ATOMIC);
735
736                 pr_debug("rcv on socket %p\n", sk);
737                 if (skb2)
738                         ping_queue_rcv_skb(sk, skb2);
739                 sock_put(sk);
740                 return;
741         }
742         pr_debug("no socket, dropping\n");
743
744         /* We're called from icmp_rcv(). kfree_skb() is done there. */
745 }
746
747 struct proto ping_prot = {
748         .name =         "PING",
749         .owner =        THIS_MODULE,
750         .init =         ping_init_sock,
751         .close =        ping_close,
752         .connect =      ip4_datagram_connect,
753         .disconnect =   udp_disconnect,
754         .setsockopt =   ip_setsockopt,
755         .getsockopt =   ip_getsockopt,
756         .sendmsg =      ping_sendmsg,
757         .recvmsg =      ping_recvmsg,
758         .bind =         ping_bind,
759         .backlog_rcv =  ping_queue_rcv_skb,
760         .hash =         ping_v4_hash,
761         .unhash =       ping_v4_unhash,
762         .get_port =     ping_v4_get_port,
763         .obj_size =     sizeof(struct inet_sock),
764 };
765 EXPORT_SYMBOL(ping_prot);
766
767 #ifdef CONFIG_PROC_FS
768
769 static struct sock *ping_get_first(struct seq_file *seq, int start)
770 {
771         struct sock *sk;
772         struct ping_iter_state *state = seq->private;
773         struct net *net = seq_file_net(seq);
774
775         for (state->bucket = start; state->bucket < PING_HTABLE_SIZE;
776              ++state->bucket) {
777                 struct hlist_nulls_node *node;
778                 struct hlist_nulls_head *hslot;
779
780                 hslot = &ping_table.hash[state->bucket];
781
782                 if (hlist_nulls_empty(hslot))
783                         continue;
784
785                 sk_nulls_for_each(sk, node, hslot) {
786                         if (net_eq(sock_net(sk), net))
787                                 goto found;
788                 }
789         }
790         sk = NULL;
791 found:
792         return sk;
793 }
794
795 static struct sock *ping_get_next(struct seq_file *seq, struct sock *sk)
796 {
797         struct ping_iter_state *state = seq->private;
798         struct net *net = seq_file_net(seq);
799
800         do {
801                 sk = sk_nulls_next(sk);
802         } while (sk && (!net_eq(sock_net(sk), net)));
803
804         if (!sk)
805                 return ping_get_first(seq, state->bucket + 1);
806         return sk;
807 }
808
809 static struct sock *ping_get_idx(struct seq_file *seq, loff_t pos)
810 {
811         struct sock *sk = ping_get_first(seq, 0);
812
813         if (sk)
814                 while (pos && (sk = ping_get_next(seq, sk)) != NULL)
815                         --pos;
816         return pos ? NULL : sk;
817 }
818
819 static void *ping_seq_start(struct seq_file *seq, loff_t *pos)
820 {
821         struct ping_iter_state *state = seq->private;
822         state->bucket = 0;
823
824         read_lock_bh(&ping_table.lock);
825
826         return *pos ? ping_get_idx(seq, *pos-1) : SEQ_START_TOKEN;
827 }
828
829 static void *ping_seq_next(struct seq_file *seq, void *v, loff_t *pos)
830 {
831         struct sock *sk;
832
833         if (v == SEQ_START_TOKEN)
834                 sk = ping_get_idx(seq, 0);
835         else
836                 sk = ping_get_next(seq, v);
837
838         ++*pos;
839         return sk;
840 }
841
842 static void ping_seq_stop(struct seq_file *seq, void *v)
843 {
844         read_unlock_bh(&ping_table.lock);
845 }
846
847 static void ping_format_sock(struct sock *sp, struct seq_file *f,
848                 int bucket, int *len)
849 {
850         struct inet_sock *inet = inet_sk(sp);
851         __be32 dest = inet->inet_daddr;
852         __be32 src = inet->inet_rcv_saddr;
853         __u16 destp = ntohs(inet->inet_dport);
854         __u16 srcp = ntohs(inet->inet_sport);
855
856         seq_printf(f, "%5d: %08X:%04X %08X:%04X"
857                 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %pK %d%n",
858                 bucket, src, srcp, dest, destp, sp->sk_state,
859                 sk_wmem_alloc_get(sp),
860                 sk_rmem_alloc_get(sp),
861                 0, 0L, 0, sock_i_uid(sp), 0, sock_i_ino(sp),
862                 atomic_read(&sp->sk_refcnt), sp,
863                 atomic_read(&sp->sk_drops), len);
864 }
865
866 static int ping_seq_show(struct seq_file *seq, void *v)
867 {
868         if (v == SEQ_START_TOKEN)
869                 seq_printf(seq, "%-127s\n",
870                            "  sl  local_address rem_address   st tx_queue "
871                            "rx_queue tr tm->when retrnsmt   uid  timeout "
872                            "inode ref pointer drops");
873         else {
874                 struct ping_iter_state *state = seq->private;
875                 int len;
876
877                 ping_format_sock(v, seq, state->bucket, &len);
878                 seq_printf(seq, "%*s\n", 127 - len, "");
879         }
880         return 0;
881 }
882
883 static const struct seq_operations ping_seq_ops = {
884         .show           = ping_seq_show,
885         .start          = ping_seq_start,
886         .next           = ping_seq_next,
887         .stop           = ping_seq_stop,
888 };
889
890 static int ping_seq_open(struct inode *inode, struct file *file)
891 {
892         return seq_open_net(inode, file, &ping_seq_ops,
893                            sizeof(struct ping_iter_state));
894 }
895
896 static const struct file_operations ping_seq_fops = {
897         .open           = ping_seq_open,
898         .read           = seq_read,
899         .llseek         = seq_lseek,
900         .release        = seq_release_net,
901 };
902
903 static int ping_proc_register(struct net *net)
904 {
905         struct proc_dir_entry *p;
906         int rc = 0;
907
908         p = proc_net_fops_create(net, "icmp", S_IRUGO, &ping_seq_fops);
909         if (!p)
910                 rc = -ENOMEM;
911         return rc;
912 }
913
914 static void ping_proc_unregister(struct net *net)
915 {
916         proc_net_remove(net, "icmp");
917 }
918
919
920 static int __net_init ping_proc_init_net(struct net *net)
921 {
922         return ping_proc_register(net);
923 }
924
925 static void __net_exit ping_proc_exit_net(struct net *net)
926 {
927         ping_proc_unregister(net);
928 }
929
930 static struct pernet_operations ping_net_ops = {
931         .init = ping_proc_init_net,
932         .exit = ping_proc_exit_net,
933 };
934
935 int __init ping_proc_init(void)
936 {
937         return register_pernet_subsys(&ping_net_ops);
938 }
939
940 void ping_proc_exit(void)
941 {
942         unregister_pernet_subsys(&ping_net_ops);
943 }
944
945 #endif
946
947 void __init ping_init(void)
948 {
949         int i;
950
951         for (i = 0; i < PING_HTABLE_SIZE; i++)
952                 INIT_HLIST_NULLS_HEAD(&ping_table.hash[i], i);
953         rwlock_init(&ping_table.lock);
954 }