Replace "depends on PLATFORM_LINUX" with "select PLATFORM_LINUX"
[platform/upstream/busybox.git] / networking / ping.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini ping implementation for busybox
4  *
5  * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
6  *
7  * Adapted from the ping in netkit-base 0.10:
8  * Copyright (c) 1989 The Regents of the University of California.
9  * All rights reserved.
10  *
11  * This code is derived from software contributed to Berkeley by
12  * Mike Muuss.
13  *
14  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
15  */
16 /* from ping6.c:
17  * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
18  *
19  * This version of ping is adapted from the ping in netkit-base 0.10,
20  * which is:
21  *
22  * Original copyright notice is retained at the end of this file.
23  *
24  * This version is an adaptation of ping.c from busybox.
25  * The code was modified by Bart Visscher <magick@linux-fan.com>
26  */
27
28 #include <net/if.h>
29 #include <netinet/ip_icmp.h>
30 #include "libbb.h"
31
32 //config:config PING
33 //config:       bool "ping"
34 //config:       default y
35 //config:       select PLATFORM_LINUX
36 //config:       help
37 //config:         ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to
38 //config:         elicit an ICMP ECHO_RESPONSE from a host or gateway.
39 //config:
40 //config:config PING6
41 //config:       bool "ping6"
42 //config:       default y
43 //config:       depends on FEATURE_IPV6 && PING
44 //config:       help
45 //config:         This will give you a ping that can talk IPv6.
46 //config:
47 //config:config FEATURE_FANCY_PING
48 //config:       bool "Enable fancy ping output"
49 //config:       default y
50 //config:       depends on PING
51 //config:       help
52 //config:         Make the output from the ping applet include statistics, and at the
53 //config:         same time provide full support for ICMP packets.
54
55 /* Needs socket(AF_INET, SOCK_RAW, IPPROTO_ICMP), therefore BB_SUID_MAYBE: */
56 //applet:IF_PING(APPLET(ping, BB_DIR_BIN, BB_SUID_MAYBE))
57 //applet:IF_PING6(APPLET(ping6, BB_DIR_BIN, BB_SUID_MAYBE))
58
59 //kbuild:lib-$(CONFIG_PING)  += ping.o
60 //kbuild:lib-$(CONFIG_PING6) += ping.o
61
62 //usage:#if !ENABLE_FEATURE_FANCY_PING
63 //usage:# define ping_trivial_usage
64 //usage:       "HOST"
65 //usage:# define ping_full_usage "\n\n"
66 //usage:       "Send ICMP ECHO_REQUEST packets to network hosts"
67 //usage:# define ping6_trivial_usage
68 //usage:       "HOST"
69 //usage:# define ping6_full_usage "\n\n"
70 //usage:       "Send ICMP ECHO_REQUEST packets to network hosts"
71 //usage:#else
72 //usage:# define ping_trivial_usage
73 //usage:       "[OPTIONS] HOST"
74 //usage:# define ping_full_usage "\n\n"
75 //usage:       "Send ICMP ECHO_REQUEST packets to network hosts\n"
76 //usage:     "\nOptions:"
77 //usage:     "\n        -4,-6           Force IP or IPv6 name resolution"
78 //usage:     "\n        -c CNT          Send only CNT pings"
79 //usage:     "\n        -s SIZE         Send SIZE data bytes in packets (default:56)"
80 //usage:     "\n        -t TTL          Set TTL"
81 //usage:     "\n        -I IFACE/IP     Use interface or IP address as source"
82 //usage:     "\n        -W SEC          Seconds to wait for the first response (default:10)"
83 //usage:     "\n                        (after all -c CNT packets are sent)"
84 //usage:     "\n        -w SEC          Seconds until ping exits (default:infinite)"
85 //usage:     "\n                        (can exit earlier with -c CNT)"
86 //usage:     "\n        -q              Quiet, only displays output at start"
87 //usage:     "\n                        and when finished"
88 //usage:
89 //usage:# define ping6_trivial_usage
90 //usage:       "[OPTIONS] HOST"
91 //usage:# define ping6_full_usage "\n\n"
92 //usage:       "Send ICMP ECHO_REQUEST packets to network hosts\n"
93 //usage:     "\nOptions:"
94 //usage:     "\n        -c CNT          Send only CNT pings"
95 //usage:     "\n        -s SIZE         Send SIZE data bytes in packets (default:56)"
96 //usage:     "\n        -I IFACE/IP     Use interface or IP address as source"
97 //usage:     "\n        -q              Quiet, only displays output at start"
98 //usage:     "\n                        and when finished"
99 //usage:
100 //usage:#endif
101 //usage:
102 //usage:#define ping_example_usage
103 //usage:       "$ ping localhost\n"
104 //usage:       "PING slag (127.0.0.1): 56 data bytes\n"
105 //usage:       "64 bytes from 127.0.0.1: icmp_seq=0 ttl=255 time=20.1 ms\n"
106 //usage:       "\n"
107 //usage:       "--- debian ping statistics ---\n"
108 //usage:       "1 packets transmitted, 1 packets received, 0% packet loss\n"
109 //usage:       "round-trip min/avg/max = 20.1/20.1/20.1 ms\n"
110 //usage:#define ping6_example_usage
111 //usage:       "$ ping6 ip6-localhost\n"
112 //usage:       "PING ip6-localhost (::1): 56 data bytes\n"
113 //usage:       "64 bytes from ::1: icmp6_seq=0 ttl=64 time=20.1 ms\n"
114 //usage:       "\n"
115 //usage:       "--- ip6-localhost ping statistics ---\n"
116 //usage:       "1 packets transmitted, 1 packets received, 0% packet loss\n"
117 //usage:       "round-trip min/avg/max = 20.1/20.1/20.1 ms\n"
118
119 #if ENABLE_PING6
120 # include <netinet/icmp6.h>
121 /* I see RENUMBERED constants in bits/in.h - !!?
122  * What a fuck is going on with libc? Is it a glibc joke? */
123 # ifdef IPV6_2292HOPLIMIT
124 #  undef IPV6_HOPLIMIT
125 #  define IPV6_HOPLIMIT IPV6_2292HOPLIMIT
126 # endif
127 #endif
128
129 enum {
130         DEFDATALEN = 56,
131         MAXIPLEN = 60,
132         MAXICMPLEN = 76,
133         MAX_DUP_CHK = (8 * 128),
134         MAXWAIT = 10,
135         PINGINTERVAL = 1, /* 1 second */
136 };
137
138 /* Common routines */
139
140 static int in_cksum(unsigned short *buf, int sz)
141 {
142         int nleft = sz;
143         int sum = 0;
144         unsigned short *w = buf;
145         unsigned short ans = 0;
146
147         while (nleft > 1) {
148                 sum += *w++;
149                 nleft -= 2;
150         }
151
152         if (nleft == 1) {
153                 *(unsigned char *) (&ans) = *(unsigned char *) w;
154                 sum += ans;
155         }
156
157         sum = (sum >> 16) + (sum & 0xFFFF);
158         sum += (sum >> 16);
159         ans = ~sum;
160         return ans;
161 }
162
163 #if !ENABLE_FEATURE_FANCY_PING
164
165 /* Simple version */
166
167 struct globals {
168         char *hostname;
169         char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
170 } FIX_ALIASING;
171 #define G (*(struct globals*)&bb_common_bufsiz1)
172 #define INIT_G() do { } while (0)
173
174 static void noresp(int ign UNUSED_PARAM)
175 {
176         printf("No response from %s\n", G.hostname);
177         exit(EXIT_FAILURE);
178 }
179
180 static void ping4(len_and_sockaddr *lsa)
181 {
182         struct icmp *pkt;
183         int pingsock, c;
184
185         pingsock = create_icmp_socket();
186
187         pkt = (struct icmp *) G.packet;
188         memset(pkt, 0, sizeof(G.packet));
189         pkt->icmp_type = ICMP_ECHO;
190         pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(G.packet));
191
192         xsendto(pingsock, G.packet, DEFDATALEN + ICMP_MINLEN, &lsa->u.sa, lsa->len);
193
194         /* listen for replies */
195         while (1) {
196                 struct sockaddr_in from;
197                 socklen_t fromlen = sizeof(from);
198
199                 c = recvfrom(pingsock, G.packet, sizeof(G.packet), 0,
200                                 (struct sockaddr *) &from, &fromlen);
201                 if (c < 0) {
202                         if (errno != EINTR)
203                                 bb_perror_msg("recvfrom");
204                         continue;
205                 }
206                 if (c >= 76) {                  /* ip + icmp */
207                         struct iphdr *iphdr = (struct iphdr *) G.packet;
208
209                         pkt = (struct icmp *) (G.packet + (iphdr->ihl << 2));   /* skip ip hdr */
210                         if (pkt->icmp_type == ICMP_ECHOREPLY)
211                                 break;
212                 }
213         }
214         if (ENABLE_FEATURE_CLEAN_UP)
215                 close(pingsock);
216 }
217
218 #if ENABLE_PING6
219 static void ping6(len_and_sockaddr *lsa)
220 {
221         struct icmp6_hdr *pkt;
222         int pingsock, c;
223         int sockopt;
224
225         pingsock = create_icmp6_socket();
226
227         pkt = (struct icmp6_hdr *) G.packet;
228         memset(pkt, 0, sizeof(G.packet));
229         pkt->icmp6_type = ICMP6_ECHO_REQUEST;
230
231         sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
232         setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
233
234         xsendto(pingsock, G.packet, DEFDATALEN + sizeof(struct icmp6_hdr), &lsa->u.sa, lsa->len);
235
236         /* listen for replies */
237         while (1) {
238                 struct sockaddr_in6 from;
239                 socklen_t fromlen = sizeof(from);
240
241                 c = recvfrom(pingsock, G.packet, sizeof(G.packet), 0,
242                                 (struct sockaddr *) &from, &fromlen);
243                 if (c < 0) {
244                         if (errno != EINTR)
245                                 bb_perror_msg("recvfrom");
246                         continue;
247                 }
248                 if (c >= ICMP_MINLEN) {                 /* icmp6_hdr */
249                         pkt = (struct icmp6_hdr *) G.packet;
250                         if (pkt->icmp6_type == ICMP6_ECHO_REPLY)
251                                 break;
252                 }
253         }
254         if (ENABLE_FEATURE_CLEAN_UP)
255                 close(pingsock);
256 }
257 #endif
258
259 #if !ENABLE_PING6
260 # define common_ping_main(af, argv) common_ping_main(argv)
261 #endif
262 static int common_ping_main(sa_family_t af, char **argv)
263 {
264         len_and_sockaddr *lsa;
265
266         INIT_G();
267
268 #if ENABLE_PING6
269         while ((++argv)[0] && argv[0][0] == '-') {
270                 if (argv[0][1] == '4') {
271                         af = AF_INET;
272                         continue;
273                 }
274                 if (argv[0][1] == '6') {
275                         af = AF_INET6;
276                         continue;
277                 }
278                 bb_show_usage();
279         }
280 #else
281         argv++;
282 #endif
283
284         G.hostname = *argv;
285         if (!G.hostname)
286                 bb_show_usage();
287
288 #if ENABLE_PING6
289         lsa = xhost_and_af2sockaddr(G.hostname, 0, af);
290 #else
291         lsa = xhost_and_af2sockaddr(G.hostname, 0, AF_INET);
292 #endif
293         /* Set timer _after_ DNS resolution */
294         signal(SIGALRM, noresp);
295         alarm(5); /* give the host 5000ms to respond */
296
297 #if ENABLE_PING6
298         if (lsa->u.sa.sa_family == AF_INET6)
299                 ping6(lsa);
300         else
301 #endif
302                 ping4(lsa);
303         printf("%s is alive!\n", G.hostname);
304         return EXIT_SUCCESS;
305 }
306
307
308 #else /* FEATURE_FANCY_PING */
309
310
311 /* Full(er) version */
312
313 #define OPT_STRING ("qvc:s:t:w:W:I:4" IF_PING6("6"))
314 enum {
315         OPT_QUIET = 1 << 0,
316         OPT_VERBOSE = 1 << 1,
317         OPT_c = 1 << 2,
318         OPT_s = 1 << 3,
319         OPT_t = 1 << 4,
320         OPT_w = 1 << 5,
321         OPT_W = 1 << 6,
322         OPT_I = 1 << 7,
323         OPT_IPV4 = 1 << 8,
324         OPT_IPV6 = (1 << 9) * ENABLE_PING6,
325 };
326
327
328 struct globals {
329         int pingsock;
330         int if_index;
331         char *str_I;
332         len_and_sockaddr *source_lsa;
333         unsigned datalen;
334         unsigned pingcount; /* must be int-sized */
335         unsigned opt_ttl;
336         unsigned long ntransmitted, nreceived, nrepeats;
337         uint16_t myid;
338         unsigned tmin, tmax; /* in us */
339         unsigned long long tsum; /* in us, sum of all times */
340         unsigned deadline;
341         unsigned timeout;
342         unsigned total_secs;
343         unsigned sizeof_rcv_packet;
344         char *rcv_packet; /* [datalen + MAXIPLEN + MAXICMPLEN] */
345         void *snd_packet; /* [datalen + ipv4/ipv6_const] */
346         const char *hostname;
347         const char *dotted;
348         union {
349                 struct sockaddr sa;
350                 struct sockaddr_in sin;
351 #if ENABLE_PING6
352                 struct sockaddr_in6 sin6;
353 #endif
354         } pingaddr;
355         char rcvd_tbl[MAX_DUP_CHK / 8];
356 } FIX_ALIASING;
357 #define G (*(struct globals*)&bb_common_bufsiz1)
358 #define pingsock     (G.pingsock    )
359 #define if_index     (G.if_index    )
360 #define source_lsa   (G.source_lsa  )
361 #define str_I        (G.str_I       )
362 #define datalen      (G.datalen     )
363 #define ntransmitted (G.ntransmitted)
364 #define nreceived    (G.nreceived   )
365 #define nrepeats     (G.nrepeats    )
366 #define pingcount    (G.pingcount   )
367 #define opt_ttl      (G.opt_ttl     )
368 #define myid         (G.myid        )
369 #define tmin         (G.tmin        )
370 #define tmax         (G.tmax        )
371 #define tsum         (G.tsum        )
372 #define deadline     (G.deadline    )
373 #define timeout      (G.timeout     )
374 #define total_secs   (G.total_secs  )
375 #define hostname     (G.hostname    )
376 #define dotted       (G.dotted      )
377 #define pingaddr     (G.pingaddr    )
378 #define rcvd_tbl     (G.rcvd_tbl    )
379 void BUG_ping_globals_too_big(void);
380 #define INIT_G() do { \
381         if (sizeof(G) > COMMON_BUFSIZE) \
382                 BUG_ping_globals_too_big(); \
383         pingsock = -1; \
384         datalen = DEFDATALEN; \
385         timeout = MAXWAIT; \
386         tmin = UINT_MAX; \
387 } while (0)
388
389
390 #define A(bit)          rcvd_tbl[(bit)>>3]      /* identify byte in array */
391 #define B(bit)          (1 << ((bit) & 0x07))   /* identify bit in byte */
392 #define SET(bit)        (A(bit) |= B(bit))
393 #define CLR(bit)        (A(bit) &= (~B(bit)))
394 #define TST(bit)        (A(bit) & B(bit))
395
396 /**************************************************************************/
397
398 static void print_stats_and_exit(int junk) NORETURN;
399 static void print_stats_and_exit(int junk UNUSED_PARAM)
400 {
401         signal(SIGINT, SIG_IGN);
402
403         printf("\n--- %s ping statistics ---\n", hostname);
404         printf("%lu packets transmitted, ", ntransmitted);
405         printf("%lu packets received, ", nreceived);
406         if (nrepeats)
407                 printf("%lu duplicates, ", nrepeats);
408         if (ntransmitted)
409                 ntransmitted = (ntransmitted - nreceived) * 100 / ntransmitted;
410         printf("%lu%% packet loss\n", ntransmitted);
411         if (tmin != UINT_MAX) {
412                 unsigned tavg = tsum / (nreceived + nrepeats);
413                 printf("round-trip min/avg/max = %u.%03u/%u.%03u/%u.%03u ms\n",
414                         tmin / 1000, tmin % 1000,
415                         tavg / 1000, tavg % 1000,
416                         tmax / 1000, tmax % 1000);
417         }
418         /* if condition is true, exit with 1 -- 'failure' */
419         exit(nreceived == 0 || (deadline && nreceived < pingcount));
420 }
421
422 static void sendping_tail(void (*sp)(int), int size_pkt)
423 {
424         int sz;
425
426         CLR((uint16_t)ntransmitted % MAX_DUP_CHK);
427         ntransmitted++;
428
429         size_pkt += datalen;
430
431         /* sizeof(pingaddr) can be larger than real sa size, but I think
432          * it doesn't matter */
433         sz = xsendto(pingsock, G.snd_packet, size_pkt, &pingaddr.sa, sizeof(pingaddr));
434         if (sz != size_pkt)
435                 bb_error_msg_and_die(bb_msg_write_error);
436
437         if (pingcount == 0 || deadline || ntransmitted < pingcount) {
438                 /* Didn't send all pings yet - schedule next in 1s */
439                 signal(SIGALRM, sp);
440                 if (deadline) {
441                         total_secs += PINGINTERVAL;
442                         if (total_secs >= deadline)
443                                 signal(SIGALRM, print_stats_and_exit);
444                 }
445                 alarm(PINGINTERVAL);
446         } else { /* -c NN, and all NN are sent (and no deadline) */
447                 /* Wait for the last ping to come back.
448                  * -W timeout: wait for a response in seconds.
449                  * Affects only timeout in absense of any responses,
450                  * otherwise ping waits for two RTTs. */
451                 unsigned expire = timeout;
452
453                 if (nreceived) {
454                         /* approx. 2*tmax, in seconds (2 RTT) */
455                         expire = tmax / (512*1024);
456                         if (expire == 0)
457                                 expire = 1;
458                 }
459                 signal(SIGALRM, print_stats_and_exit);
460                 alarm(expire);
461         }
462 }
463
464 static void sendping4(int junk UNUSED_PARAM)
465 {
466         struct icmp *pkt = G.snd_packet;
467
468         //memset(pkt, 0, datalen + ICMP_MINLEN + 4); - G.snd_packet was xzalloced
469         pkt->icmp_type = ICMP_ECHO;
470         /*pkt->icmp_code = 0;*/
471         pkt->icmp_cksum = 0; /* cksum is calculated with this field set to 0 */
472         pkt->icmp_seq = htons(ntransmitted); /* don't ++ here, it can be a macro */
473         pkt->icmp_id = myid;
474
475         /* If datalen < 4, we store timestamp _past_ the packet,
476          * but it's ok - we allocated 4 extra bytes in xzalloc() just in case.
477          */
478         /*if (datalen >= 4)*/
479                 /* No hton: we'll read it back on the same machine */
480                 *(uint32_t*)&pkt->icmp_dun = monotonic_us();
481
482         pkt->icmp_cksum = in_cksum((unsigned short *) pkt, datalen + ICMP_MINLEN);
483
484         sendping_tail(sendping4, ICMP_MINLEN);
485 }
486 #if ENABLE_PING6
487 static void sendping6(int junk UNUSED_PARAM)
488 {
489         struct icmp6_hdr *pkt = G.snd_packet;
490
491         //memset(pkt, 0, datalen + sizeof(struct icmp6_hdr) + 4);
492         pkt->icmp6_type = ICMP6_ECHO_REQUEST;
493         /*pkt->icmp6_code = 0;*/
494         /*pkt->icmp6_cksum = 0;*/
495         pkt->icmp6_seq = htons(ntransmitted); /* don't ++ here, it can be a macro */
496         pkt->icmp6_id = myid;
497
498         /*if (datalen >= 4)*/
499                 *(uint32_t*)(&pkt->icmp6_data8[4]) = monotonic_us();
500
501         //TODO? pkt->icmp_cksum = in_cksum(...);
502
503         sendping_tail(sendping6, sizeof(struct icmp6_hdr));
504 }
505 #endif
506
507 static const char *icmp_type_name(int id)
508 {
509         switch (id) {
510         case ICMP_ECHOREPLY:      return "Echo Reply";
511         case ICMP_DEST_UNREACH:   return "Destination Unreachable";
512         case ICMP_SOURCE_QUENCH:  return "Source Quench";
513         case ICMP_REDIRECT:       return "Redirect (change route)";
514         case ICMP_ECHO:           return "Echo Request";
515         case ICMP_TIME_EXCEEDED:  return "Time Exceeded";
516         case ICMP_PARAMETERPROB:  return "Parameter Problem";
517         case ICMP_TIMESTAMP:      return "Timestamp Request";
518         case ICMP_TIMESTAMPREPLY: return "Timestamp Reply";
519         case ICMP_INFO_REQUEST:   return "Information Request";
520         case ICMP_INFO_REPLY:     return "Information Reply";
521         case ICMP_ADDRESS:        return "Address Mask Request";
522         case ICMP_ADDRESSREPLY:   return "Address Mask Reply";
523         default:                  return "unknown ICMP type";
524         }
525 }
526 #if ENABLE_PING6
527 /* RFC3542 changed some definitions from RFC2292 for no good reason, whee!
528  * the newer 3542 uses a MLD_ prefix where as 2292 uses ICMP6_ prefix */
529 #ifndef MLD_LISTENER_QUERY
530 # define MLD_LISTENER_QUERY ICMP6_MEMBERSHIP_QUERY
531 #endif
532 #ifndef MLD_LISTENER_REPORT
533 # define MLD_LISTENER_REPORT ICMP6_MEMBERSHIP_REPORT
534 #endif
535 #ifndef MLD_LISTENER_REDUCTION
536 # define MLD_LISTENER_REDUCTION ICMP6_MEMBERSHIP_REDUCTION
537 #endif
538 static const char *icmp6_type_name(int id)
539 {
540         switch (id) {
541         case ICMP6_DST_UNREACH:      return "Destination Unreachable";
542         case ICMP6_PACKET_TOO_BIG:   return "Packet too big";
543         case ICMP6_TIME_EXCEEDED:    return "Time Exceeded";
544         case ICMP6_PARAM_PROB:       return "Parameter Problem";
545         case ICMP6_ECHO_REPLY:       return "Echo Reply";
546         case ICMP6_ECHO_REQUEST:     return "Echo Request";
547         case MLD_LISTENER_QUERY:     return "Listener Query";
548         case MLD_LISTENER_REPORT:    return "Listener Report";
549         case MLD_LISTENER_REDUCTION: return "Listener Reduction";
550         default:                     return "unknown ICMP type";
551         }
552 }
553 #endif
554
555 static void unpack_tail(int sz, uint32_t *tp,
556                 const char *from_str,
557                 uint16_t recv_seq, int ttl)
558 {
559         const char *dupmsg = " (DUP!)";
560         unsigned triptime = triptime; /* for gcc */
561
562         ++nreceived;
563
564         if (tp) {
565                 /* (int32_t) cast is for hypothetical 64-bit unsigned */
566                 /* (doesn't hurt 32-bit real-world anyway) */
567                 triptime = (int32_t) ((uint32_t)monotonic_us() - *tp);
568                 tsum += triptime;
569                 if (triptime < tmin)
570                         tmin = triptime;
571                 if (triptime > tmax)
572                         tmax = triptime;
573         }
574
575         if (TST(recv_seq % MAX_DUP_CHK)) {
576                 ++nrepeats;
577                 --nreceived;
578         } else {
579                 SET(recv_seq % MAX_DUP_CHK);
580                 dupmsg += 7;
581         }
582
583         if (option_mask32 & OPT_QUIET)
584                 return;
585
586         printf("%d bytes from %s: seq=%u ttl=%d", sz,
587                 from_str, recv_seq, ttl);
588         if (tp)
589                 printf(" time=%u.%03u ms", triptime / 1000, triptime % 1000);
590         puts(dupmsg);
591         fflush_all();
592 }
593 static void unpack4(char *buf, int sz, struct sockaddr_in *from)
594 {
595         struct icmp *icmppkt;
596         struct iphdr *iphdr;
597         int hlen;
598
599         /* discard if too short */
600         if (sz < (datalen + ICMP_MINLEN))
601                 return;
602
603         /* check IP header */
604         iphdr = (struct iphdr *) buf;
605         hlen = iphdr->ihl << 2;
606         sz -= hlen;
607         icmppkt = (struct icmp *) (buf + hlen);
608         if (icmppkt->icmp_id != myid)
609                 return;                         /* not our ping */
610
611         if (icmppkt->icmp_type == ICMP_ECHOREPLY) {
612                 uint16_t recv_seq = ntohs(icmppkt->icmp_seq);
613                 uint32_t *tp = NULL;
614
615                 if (sz >= ICMP_MINLEN + sizeof(uint32_t))
616                         tp = (uint32_t *) icmppkt->icmp_data;
617                 unpack_tail(sz, tp,
618                         inet_ntoa(*(struct in_addr *) &from->sin_addr.s_addr),
619                         recv_seq, iphdr->ttl);
620         } else if (icmppkt->icmp_type != ICMP_ECHO) {
621                 bb_error_msg("warning: got ICMP %d (%s)",
622                                 icmppkt->icmp_type,
623                                 icmp_type_name(icmppkt->icmp_type));
624         }
625 }
626 #if ENABLE_PING6
627 static void unpack6(char *packet, int sz, /*struct sockaddr_in6 *from,*/ int hoplimit)
628 {
629         struct icmp6_hdr *icmppkt;
630         char buf[INET6_ADDRSTRLEN];
631
632         /* discard if too short */
633         if (sz < (datalen + sizeof(struct icmp6_hdr)))
634                 return;
635
636         icmppkt = (struct icmp6_hdr *) packet;
637         if (icmppkt->icmp6_id != myid)
638                 return;                         /* not our ping */
639
640         if (icmppkt->icmp6_type == ICMP6_ECHO_REPLY) {
641                 uint16_t recv_seq = ntohs(icmppkt->icmp6_seq);
642                 uint32_t *tp = NULL;
643
644                 if (sz >= sizeof(struct icmp6_hdr) + sizeof(uint32_t))
645                         tp = (uint32_t *) &icmppkt->icmp6_data8[4];
646                 unpack_tail(sz, tp,
647                         inet_ntop(AF_INET6, &pingaddr.sin6.sin6_addr,
648                                         buf, sizeof(buf)),
649                         recv_seq, hoplimit);
650         } else if (icmppkt->icmp6_type != ICMP6_ECHO_REQUEST) {
651                 bb_error_msg("warning: got ICMP %d (%s)",
652                                 icmppkt->icmp6_type,
653                                 icmp6_type_name(icmppkt->icmp6_type));
654         }
655 }
656 #endif
657
658 static void ping4(len_and_sockaddr *lsa)
659 {
660         int sockopt;
661
662         pingsock = create_icmp_socket();
663         pingaddr.sin = lsa->u.sin;
664         if (source_lsa) {
665                 if (setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_IF,
666                                 &source_lsa->u.sa, source_lsa->len))
667                         bb_error_msg_and_die("can't set multicast source interface");
668                 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
669         }
670         if (str_I)
671                 setsockopt_bindtodevice(pingsock, str_I);
672
673         /* enable broadcast pings */
674         setsockopt_broadcast(pingsock);
675
676         /* set recv buf (needed if we can get lots of responses: flood ping,
677          * broadcast ping etc) */
678         sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */
679         setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
680
681         if (opt_ttl != 0) {
682                 setsockopt(pingsock, IPPROTO_IP, IP_TTL, &opt_ttl, sizeof(opt_ttl));
683                 /* above doesnt affect packets sent to bcast IP, so... */
684                 setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_TTL, &opt_ttl, sizeof(opt_ttl));
685         }
686
687         signal(SIGINT, print_stats_and_exit);
688
689         /* start the ping's going ... */
690         sendping4(0);
691
692         /* listen for replies */
693         while (1) {
694                 struct sockaddr_in from;
695                 socklen_t fromlen = (socklen_t) sizeof(from);
696                 int c;
697
698                 c = recvfrom(pingsock, G.rcv_packet, G.sizeof_rcv_packet, 0,
699                                 (struct sockaddr *) &from, &fromlen);
700                 if (c < 0) {
701                         if (errno != EINTR)
702                                 bb_perror_msg("recvfrom");
703                         continue;
704                 }
705                 unpack4(G.rcv_packet, c, &from);
706                 if (pingcount && nreceived >= pingcount)
707                         break;
708         }
709 }
710 #if ENABLE_PING6
711 extern int BUG_bad_offsetof_icmp6_cksum(void);
712 static void ping6(len_and_sockaddr *lsa)
713 {
714         int sockopt;
715         struct msghdr msg;
716         struct sockaddr_in6 from;
717         struct iovec iov;
718         char control_buf[CMSG_SPACE(36)];
719
720         pingsock = create_icmp6_socket();
721         pingaddr.sin6 = lsa->u.sin6;
722         /* untested whether "-I addr" really works for IPv6: */
723         if (source_lsa)
724                 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
725         if (str_I)
726                 setsockopt_bindtodevice(pingsock, str_I);
727
728 #ifdef ICMP6_FILTER
729         {
730                 struct icmp6_filter filt;
731                 if (!(option_mask32 & OPT_VERBOSE)) {
732                         ICMP6_FILTER_SETBLOCKALL(&filt);
733                         ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt);
734                 } else {
735                         ICMP6_FILTER_SETPASSALL(&filt);
736                 }
737                 if (setsockopt(pingsock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
738                                            sizeof(filt)) < 0)
739                         bb_error_msg_and_die("setsockopt(ICMP6_FILTER)");
740         }
741 #endif /*ICMP6_FILTER*/
742
743         /* enable broadcast pings */
744         setsockopt_broadcast(pingsock);
745
746         /* set recv buf (needed if we can get lots of responses: flood ping,
747          * broadcast ping etc) */
748         sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */
749         setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
750
751         sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
752         if (offsetof(struct icmp6_hdr, icmp6_cksum) != 2)
753                 BUG_bad_offsetof_icmp6_cksum();
754         setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
755
756         /* request ttl info to be returned in ancillary data */
757         setsockopt(pingsock, SOL_IPV6, IPV6_HOPLIMIT, &const_int_1, sizeof(const_int_1));
758
759         if (if_index)
760                 pingaddr.sin6.sin6_scope_id = if_index;
761
762         signal(SIGINT, print_stats_and_exit);
763
764         /* start the ping's going ... */
765         sendping6(0);
766
767         /* listen for replies */
768         msg.msg_name = &from;
769         msg.msg_namelen = sizeof(from);
770         msg.msg_iov = &iov;
771         msg.msg_iovlen = 1;
772         msg.msg_control = control_buf;
773         iov.iov_base = G.rcv_packet;
774         iov.iov_len = G.sizeof_rcv_packet;
775         while (1) {
776                 int c;
777                 struct cmsghdr *mp;
778                 int hoplimit = -1;
779                 msg.msg_controllen = sizeof(control_buf);
780
781                 c = recvmsg(pingsock, &msg, 0);
782                 if (c < 0) {
783                         if (errno != EINTR)
784                                 bb_perror_msg("recvfrom");
785                         continue;
786                 }
787                 for (mp = CMSG_FIRSTHDR(&msg); mp; mp = CMSG_NXTHDR(&msg, mp)) {
788                         if (mp->cmsg_level == SOL_IPV6
789                          && mp->cmsg_type == IPV6_HOPLIMIT
790                          /* don't check len - we trust the kernel: */
791                          /* && mp->cmsg_len >= CMSG_LEN(sizeof(int)) */
792                         ) {
793                                 /*hoplimit = *(int*)CMSG_DATA(mp); - unaligned access */
794                                 move_from_unaligned_int(hoplimit, CMSG_DATA(mp));
795                         }
796                 }
797                 unpack6(G.rcv_packet, c, /*&from,*/ hoplimit);
798                 if (pingcount && nreceived >= pingcount)
799                         break;
800         }
801 }
802 #endif
803
804 static void ping(len_and_sockaddr *lsa)
805 {
806         printf("PING %s (%s)", hostname, dotted);
807         if (source_lsa) {
808                 printf(" from %s",
809                         xmalloc_sockaddr2dotted_noport(&source_lsa->u.sa));
810         }
811         printf(": %d data bytes\n", datalen);
812
813         G.sizeof_rcv_packet = datalen + MAXIPLEN + MAXICMPLEN;
814         G.rcv_packet = xzalloc(G.sizeof_rcv_packet);
815 #if ENABLE_PING6
816         if (lsa->u.sa.sa_family == AF_INET6) {
817                 /* +4 reserves a place for timestamp, which may end up sitting
818                  * _after_ packet. Saves one if() - see sendping4/6() */
819                 G.snd_packet = xzalloc(datalen + sizeof(struct icmp6_hdr) + 4);
820                 ping6(lsa);
821         } else
822 #endif
823         {
824                 G.snd_packet = xzalloc(datalen + ICMP_MINLEN + 4);
825                 ping4(lsa);
826         }
827 }
828
829 static int common_ping_main(int opt, char **argv)
830 {
831         len_and_sockaddr *lsa;
832         char *str_s;
833
834         INIT_G();
835
836         /* exactly one argument needed; -v and -q don't mix; -c NUM, -t NUM, -w NUM, -W NUM */
837         opt_complementary = "=1:q--v:v--q:c+:t+:w+:W+";
838         opt |= getopt32(argv, OPT_STRING, &pingcount, &str_s, &opt_ttl, &deadline, &timeout, &str_I);
839         if (opt & OPT_s)
840                 datalen = xatou16(str_s); // -s
841         if (opt & OPT_I) { // -I
842                 if_index = if_nametoindex(str_I);
843                 if (!if_index) {
844                         /* TODO: I'm not sure it takes IPv6 unless in [XX:XX..] format */
845                         source_lsa = xdotted2sockaddr(str_I, 0);
846                         str_I = NULL; /* don't try to bind to device later */
847                 }
848         }
849         myid = (uint16_t) getpid();
850         hostname = argv[optind];
851 #if ENABLE_PING6
852         {
853                 sa_family_t af = AF_UNSPEC;
854                 if (opt & OPT_IPV4)
855                         af = AF_INET;
856                 if (opt & OPT_IPV6)
857                         af = AF_INET6;
858                 lsa = xhost_and_af2sockaddr(hostname, 0, af);
859         }
860 #else
861         lsa = xhost_and_af2sockaddr(hostname, 0, AF_INET);
862 #endif
863
864         if (source_lsa && source_lsa->u.sa.sa_family != lsa->u.sa.sa_family)
865                 /* leaking it here... */
866                 source_lsa = NULL;
867
868         dotted = xmalloc_sockaddr2dotted_noport(&lsa->u.sa);
869         ping(lsa);
870         print_stats_and_exit(EXIT_SUCCESS);
871         /*return EXIT_SUCCESS;*/
872 }
873 #endif /* FEATURE_FANCY_PING */
874
875
876 int ping_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
877 int ping_main(int argc UNUSED_PARAM, char **argv)
878 {
879 #if !ENABLE_FEATURE_FANCY_PING
880         return common_ping_main(AF_UNSPEC, argv);
881 #else
882         return common_ping_main(0, argv);
883 #endif
884 }
885
886 #if ENABLE_PING6
887 int ping6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
888 int ping6_main(int argc UNUSED_PARAM, char **argv)
889 {
890 # if !ENABLE_FEATURE_FANCY_PING
891         return common_ping_main(AF_INET6, argv);
892 # else
893         return common_ping_main(OPT_IPV6, argv);
894 # endif
895 }
896 #endif
897
898 /* from ping6.c:
899  * Copyright (c) 1989 The Regents of the University of California.
900  * All rights reserved.
901  *
902  * This code is derived from software contributed to Berkeley by
903  * Mike Muuss.
904  *
905  * Redistribution and use in source and binary forms, with or without
906  * modification, are permitted provided that the following conditions
907  * are met:
908  * 1. Redistributions of source code must retain the above copyright
909  *    notice, this list of conditions and the following disclaimer.
910  * 2. Redistributions in binary form must reproduce the above copyright
911  *    notice, this list of conditions and the following disclaimer in the
912  *    documentation and/or other materials provided with the distribution.
913  *
914  * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
915  *              ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
916  *
917  * 4. Neither the name of the University nor the names of its contributors
918  *    may be used to endorse or promote products derived from this software
919  *    without specific prior written permission.
920  *
921  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
922  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
923  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
924  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
925  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
926  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
927  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
928  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
929  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
930  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
931  * SUCH DAMAGE.
932  */