366a98668f794dff010d5030ed61b94056301e5b
[oweals/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:       depends on 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), const void *pkt, int size_pkt)
423 {
424         int sz;
425
426         CLR((uint16_t)ntransmitted % MAX_DUP_CHK);
427         ntransmitted++;
428
429         /* sizeof(pingaddr) can be larger than real sa size, but I think
430          * it doesn't matter */
431         sz = xsendto(pingsock, pkt, size_pkt, &pingaddr.sa, sizeof(pingaddr));
432         if (sz != size_pkt)
433                 bb_error_msg_and_die(bb_msg_write_error);
434
435         if (pingcount == 0 || deadline || ntransmitted < pingcount) {
436                 /* Didn't send all pings yet - schedule next in 1s */
437                 signal(SIGALRM, sp);
438                 if (deadline) {
439                         total_secs += PINGINTERVAL;
440                         if (total_secs >= deadline)
441                                 signal(SIGALRM, print_stats_and_exit);
442                 }
443                 alarm(PINGINTERVAL);
444         } else { /* -c NN, and all NN are sent (and no deadline) */
445                 /* Wait for the last ping to come back.
446                  * -W timeout: wait for a response in seconds.
447                  * Affects only timeout in absense of any responses,
448                  * otherwise ping waits for two RTTs. */
449                 unsigned expire = timeout;
450
451                 if (nreceived) {
452                         /* approx. 2*tmax, in seconds (2 RTT) */
453                         expire = tmax / (512*1024);
454                         if (expire == 0)
455                                 expire = 1;
456                 }
457                 signal(SIGALRM, print_stats_and_exit);
458                 alarm(expire);
459         }
460 }
461
462 static void sendping4(int junk UNUSED_PARAM)
463 {
464         struct icmp *pkt = G.snd_packet;
465
466         //memset(pkt, 0, datalen + ICMP_MINLEN + 4); - G.snd_packet was xzalloced
467         pkt->icmp_type = ICMP_ECHO;
468         /*pkt->icmp_code = 0;*/
469         pkt->icmp_cksum = 0; /* cksum is calculated with this field set to 0 */
470         pkt->icmp_seq = htons(ntransmitted); /* don't ++ here, it can be a macro */
471         pkt->icmp_id = myid;
472
473         /* If datalen < 4, we store timestamp _past_ the packet,
474          * but it's ok - we allocated 4 extra bytes in xzalloc() just in case.
475          */
476         /*if (datalen >= 4)*/
477                 /* No hton: we'll read it back on the same machine */
478                 *(uint32_t*)&pkt->icmp_dun = monotonic_us();
479
480         pkt->icmp_cksum = in_cksum((unsigned short *) pkt, datalen + ICMP_MINLEN);
481
482         sendping_tail(sendping4, pkt, datalen + ICMP_MINLEN);
483 }
484 #if ENABLE_PING6
485 static void sendping6(int junk UNUSED_PARAM)
486 {
487         struct icmp6_hdr *pkt = alloca(datalen + sizeof(struct icmp6_hdr) + 4);
488
489         //memset(pkt, 0, datalen + sizeof(struct icmp6_hdr) + 4);
490         pkt->icmp6_type = ICMP6_ECHO_REQUEST;
491         /*pkt->icmp6_code = 0;*/
492         /*pkt->icmp6_cksum = 0;*/
493         pkt->icmp6_seq = htons(ntransmitted); /* don't ++ here, it can be a macro */
494         pkt->icmp6_id = myid;
495
496         /*if (datalen >= 4)*/
497                 *(uint32_t*)(&pkt->icmp6_data8[4]) = monotonic_us();
498
499         //TODO? pkt->icmp_cksum = in_cksum(...);
500
501         sendping_tail(sendping6, pkt, datalen + sizeof(struct icmp6_hdr));
502 }
503 #endif
504
505 static const char *icmp_type_name(int id)
506 {
507         switch (id) {
508         case ICMP_ECHOREPLY:      return "Echo Reply";
509         case ICMP_DEST_UNREACH:   return "Destination Unreachable";
510         case ICMP_SOURCE_QUENCH:  return "Source Quench";
511         case ICMP_REDIRECT:       return "Redirect (change route)";
512         case ICMP_ECHO:           return "Echo Request";
513         case ICMP_TIME_EXCEEDED:  return "Time Exceeded";
514         case ICMP_PARAMETERPROB:  return "Parameter Problem";
515         case ICMP_TIMESTAMP:      return "Timestamp Request";
516         case ICMP_TIMESTAMPREPLY: return "Timestamp Reply";
517         case ICMP_INFO_REQUEST:   return "Information Request";
518         case ICMP_INFO_REPLY:     return "Information Reply";
519         case ICMP_ADDRESS:        return "Address Mask Request";
520         case ICMP_ADDRESSREPLY:   return "Address Mask Reply";
521         default:                  return "unknown ICMP type";
522         }
523 }
524 #if ENABLE_PING6
525 /* RFC3542 changed some definitions from RFC2292 for no good reason, whee!
526  * the newer 3542 uses a MLD_ prefix where as 2292 uses ICMP6_ prefix */
527 #ifndef MLD_LISTENER_QUERY
528 # define MLD_LISTENER_QUERY ICMP6_MEMBERSHIP_QUERY
529 #endif
530 #ifndef MLD_LISTENER_REPORT
531 # define MLD_LISTENER_REPORT ICMP6_MEMBERSHIP_REPORT
532 #endif
533 #ifndef MLD_LISTENER_REDUCTION
534 # define MLD_LISTENER_REDUCTION ICMP6_MEMBERSHIP_REDUCTION
535 #endif
536 static const char *icmp6_type_name(int id)
537 {
538         switch (id) {
539         case ICMP6_DST_UNREACH:      return "Destination Unreachable";
540         case ICMP6_PACKET_TOO_BIG:   return "Packet too big";
541         case ICMP6_TIME_EXCEEDED:    return "Time Exceeded";
542         case ICMP6_PARAM_PROB:       return "Parameter Problem";
543         case ICMP6_ECHO_REPLY:       return "Echo Reply";
544         case ICMP6_ECHO_REQUEST:     return "Echo Request";
545         case MLD_LISTENER_QUERY:     return "Listener Query";
546         case MLD_LISTENER_REPORT:    return "Listener Report";
547         case MLD_LISTENER_REDUCTION: return "Listener Reduction";
548         default:                     return "unknown ICMP type";
549         }
550 }
551 #endif
552
553 static void unpack_tail(int sz, uint32_t *tp,
554                 const char *from_str,
555                 uint16_t recv_seq, int ttl)
556 {
557         const char *dupmsg = " (DUP!)";
558         unsigned triptime = triptime; /* for gcc */
559
560         ++nreceived;
561
562         if (tp) {
563                 /* (int32_t) cast is for hypothetical 64-bit unsigned */
564                 /* (doesn't hurt 32-bit real-world anyway) */
565                 triptime = (int32_t) ((uint32_t)monotonic_us() - *tp);
566                 tsum += triptime;
567                 if (triptime < tmin)
568                         tmin = triptime;
569                 if (triptime > tmax)
570                         tmax = triptime;
571         }
572
573         if (TST(recv_seq % MAX_DUP_CHK)) {
574                 ++nrepeats;
575                 --nreceived;
576         } else {
577                 SET(recv_seq % MAX_DUP_CHK);
578                 dupmsg += 7;
579         }
580
581         if (option_mask32 & OPT_QUIET)
582                 return;
583
584         printf("%d bytes from %s: seq=%u ttl=%d", sz,
585                 from_str, recv_seq, ttl);
586         if (tp)
587                 printf(" time=%u.%03u ms", triptime / 1000, triptime % 1000);
588         puts(dupmsg);
589         fflush_all();
590 }
591 static void unpack4(char *buf, int sz, struct sockaddr_in *from)
592 {
593         struct icmp *icmppkt;
594         struct iphdr *iphdr;
595         int hlen;
596
597         /* discard if too short */
598         if (sz < (datalen + ICMP_MINLEN))
599                 return;
600
601         /* check IP header */
602         iphdr = (struct iphdr *) buf;
603         hlen = iphdr->ihl << 2;
604         sz -= hlen;
605         icmppkt = (struct icmp *) (buf + hlen);
606         if (icmppkt->icmp_id != myid)
607                 return;                         /* not our ping */
608
609         if (icmppkt->icmp_type == ICMP_ECHOREPLY) {
610                 uint16_t recv_seq = ntohs(icmppkt->icmp_seq);
611                 uint32_t *tp = NULL;
612
613                 if (sz >= ICMP_MINLEN + sizeof(uint32_t))
614                         tp = (uint32_t *) icmppkt->icmp_data;
615                 unpack_tail(sz, tp,
616                         inet_ntoa(*(struct in_addr *) &from->sin_addr.s_addr),
617                         recv_seq, iphdr->ttl);
618         } else if (icmppkt->icmp_type != ICMP_ECHO) {
619                 bb_error_msg("warning: got ICMP %d (%s)",
620                                 icmppkt->icmp_type,
621                                 icmp_type_name(icmppkt->icmp_type));
622         }
623 }
624 #if ENABLE_PING6
625 static void unpack6(char *packet, int sz, /*struct sockaddr_in6 *from,*/ int hoplimit)
626 {
627         struct icmp6_hdr *icmppkt;
628         char buf[INET6_ADDRSTRLEN];
629
630         /* discard if too short */
631         if (sz < (datalen + sizeof(struct icmp6_hdr)))
632                 return;
633
634         icmppkt = (struct icmp6_hdr *) packet;
635         if (icmppkt->icmp6_id != myid)
636                 return;                         /* not our ping */
637
638         if (icmppkt->icmp6_type == ICMP6_ECHO_REPLY) {
639                 uint16_t recv_seq = ntohs(icmppkt->icmp6_seq);
640                 uint32_t *tp = NULL;
641
642                 if (sz >= sizeof(struct icmp6_hdr) + sizeof(uint32_t))
643                         tp = (uint32_t *) &icmppkt->icmp6_data8[4];
644                 unpack_tail(sz, tp,
645                         inet_ntop(AF_INET6, &pingaddr.sin6.sin6_addr,
646                                         buf, sizeof(buf)),
647                         recv_seq, hoplimit);
648         } else if (icmppkt->icmp6_type != ICMP6_ECHO_REQUEST) {
649                 bb_error_msg("warning: got ICMP %d (%s)",
650                                 icmppkt->icmp6_type,
651                                 icmp6_type_name(icmppkt->icmp6_type));
652         }
653 }
654 #endif
655
656 static void ping4(len_and_sockaddr *lsa)
657 {
658         int sockopt;
659
660         pingsock = create_icmp_socket();
661         pingaddr.sin = lsa->u.sin;
662         if (source_lsa) {
663                 if (setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_IF,
664                                 &source_lsa->u.sa, source_lsa->len))
665                         bb_error_msg_and_die("can't set multicast source interface");
666                 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
667         }
668         if (str_I)
669                 setsockopt_bindtodevice(pingsock, str_I);
670
671         /* enable broadcast pings */
672         setsockopt_broadcast(pingsock);
673
674         /* set recv buf (needed if we can get lots of responses: flood ping,
675          * broadcast ping etc) */
676         sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */
677         setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
678
679         if (opt_ttl != 0) {
680                 setsockopt(pingsock, IPPROTO_IP, IP_TTL, &opt_ttl, sizeof(opt_ttl));
681                 /* above doesnt affect packets sent to bcast IP, so... */
682                 setsockopt(pingsock, IPPROTO_IP, IP_MULTICAST_TTL, &opt_ttl, sizeof(opt_ttl));
683         }
684
685         signal(SIGINT, print_stats_and_exit);
686
687         /* start the ping's going ... */
688         sendping4(0);
689
690         /* listen for replies */
691         while (1) {
692                 struct sockaddr_in from;
693                 socklen_t fromlen = (socklen_t) sizeof(from);
694                 int c;
695
696                 c = recvfrom(pingsock, G.rcv_packet, G.sizeof_rcv_packet, 0,
697                                 (struct sockaddr *) &from, &fromlen);
698                 if (c < 0) {
699                         if (errno != EINTR)
700                                 bb_perror_msg("recvfrom");
701                         continue;
702                 }
703                 unpack4(G.rcv_packet, c, &from);
704                 if (pingcount && nreceived >= pingcount)
705                         break;
706         }
707 }
708 #if ENABLE_PING6
709 extern int BUG_bad_offsetof_icmp6_cksum(void);
710 static void ping6(len_and_sockaddr *lsa)
711 {
712         int sockopt;
713         struct msghdr msg;
714         struct sockaddr_in6 from;
715         struct iovec iov;
716         char control_buf[CMSG_SPACE(36)];
717
718         pingsock = create_icmp6_socket();
719         pingaddr.sin6 = lsa->u.sin6;
720         /* untested whether "-I addr" really works for IPv6: */
721         if (source_lsa)
722                 xbind(pingsock, &source_lsa->u.sa, source_lsa->len);
723         if (str_I)
724                 setsockopt_bindtodevice(pingsock, str_I);
725
726 #ifdef ICMP6_FILTER
727         {
728                 struct icmp6_filter filt;
729                 if (!(option_mask32 & OPT_VERBOSE)) {
730                         ICMP6_FILTER_SETBLOCKALL(&filt);
731                         ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt);
732                 } else {
733                         ICMP6_FILTER_SETPASSALL(&filt);
734                 }
735                 if (setsockopt(pingsock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
736                                            sizeof(filt)) < 0)
737                         bb_error_msg_and_die("setsockopt(ICMP6_FILTER)");
738         }
739 #endif /*ICMP6_FILTER*/
740
741         /* enable broadcast pings */
742         setsockopt_broadcast(pingsock);
743
744         /* set recv buf (needed if we can get lots of responses: flood ping,
745          * broadcast ping etc) */
746         sockopt = (datalen * 2) + 7 * 1024; /* giving it a bit of extra room */
747         setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, &sockopt, sizeof(sockopt));
748
749         sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
750         if (offsetof(struct icmp6_hdr, icmp6_cksum) != 2)
751                 BUG_bad_offsetof_icmp6_cksum();
752         setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, &sockopt, sizeof(sockopt));
753
754         /* request ttl info to be returned in ancillary data */
755         setsockopt(pingsock, SOL_IPV6, IPV6_HOPLIMIT, &const_int_1, sizeof(const_int_1));
756
757         if (if_index)
758                 pingaddr.sin6.sin6_scope_id = if_index;
759
760         signal(SIGINT, print_stats_and_exit);
761
762         /* start the ping's going ... */
763         sendping6(0);
764
765         /* listen for replies */
766         msg.msg_name = &from;
767         msg.msg_namelen = sizeof(from);
768         msg.msg_iov = &iov;
769         msg.msg_iovlen = 1;
770         msg.msg_control = control_buf;
771         iov.iov_base = G.rcv_packet;
772         iov.iov_len = G.sizeof_rcv_packet;
773         while (1) {
774                 int c;
775                 struct cmsghdr *mp;
776                 int hoplimit = -1;
777                 msg.msg_controllen = sizeof(control_buf);
778
779                 c = recvmsg(pingsock, &msg, 0);
780                 if (c < 0) {
781                         if (errno != EINTR)
782                                 bb_perror_msg("recvfrom");
783                         continue;
784                 }
785                 for (mp = CMSG_FIRSTHDR(&msg); mp; mp = CMSG_NXTHDR(&msg, mp)) {
786                         if (mp->cmsg_level == SOL_IPV6
787                          && mp->cmsg_type == IPV6_HOPLIMIT
788                          /* don't check len - we trust the kernel: */
789                          /* && mp->cmsg_len >= CMSG_LEN(sizeof(int)) */
790                         ) {
791                                 /*hoplimit = *(int*)CMSG_DATA(mp); - unaligned access */
792                                 move_from_unaligned_int(hoplimit, CMSG_DATA(mp));
793                         }
794                 }
795                 unpack6(G.rcv_packet, c, /*&from,*/ hoplimit);
796                 if (pingcount && nreceived >= pingcount)
797                         break;
798         }
799 }
800 #endif
801
802 static void ping(len_and_sockaddr *lsa)
803 {
804         printf("PING %s (%s)", hostname, dotted);
805         if (source_lsa) {
806                 printf(" from %s",
807                         xmalloc_sockaddr2dotted_noport(&source_lsa->u.sa));
808         }
809         printf(": %d data bytes\n", datalen);
810
811         G.sizeof_rcv_packet = datalen + MAXIPLEN + MAXICMPLEN;
812         G.rcv_packet = xzalloc(G.sizeof_rcv_packet);
813 #if ENABLE_PING6
814         if (lsa->u.sa.sa_family == AF_INET6) {
815                 /* +4 reserves a place for timestamp, which may end up sitting
816                  * _after_ packet. Saves one if() - see sendping4/6() */
817                 G.snd_packet = xzalloc(datalen + sizeof(struct icmp6_hdr) + 4);
818                 ping6(lsa);
819         } else
820 #endif
821         {
822                 G.snd_packet = xzalloc(datalen + ICMP_MINLEN + 4);
823                 ping4(lsa);
824         }
825 }
826
827 static int common_ping_main(int opt, char **argv)
828 {
829         len_and_sockaddr *lsa;
830         char *str_s;
831
832         INIT_G();
833
834         /* exactly one argument needed; -v and -q don't mix; -c NUM, -t NUM, -w NUM, -W NUM */
835         opt_complementary = "=1:q--v:v--q:c+:t+:w+:W+";
836         opt |= getopt32(argv, OPT_STRING, &pingcount, &str_s, &opt_ttl, &deadline, &timeout, &str_I);
837         if (opt & OPT_s)
838                 datalen = xatou16(str_s); // -s
839         if (opt & OPT_I) { // -I
840                 if_index = if_nametoindex(str_I);
841                 if (!if_index) {
842                         /* TODO: I'm not sure it takes IPv6 unless in [XX:XX..] format */
843                         source_lsa = xdotted2sockaddr(str_I, 0);
844                         str_I = NULL; /* don't try to bind to device later */
845                 }
846         }
847         myid = (uint16_t) getpid();
848         hostname = argv[optind];
849 #if ENABLE_PING6
850         {
851                 sa_family_t af = AF_UNSPEC;
852                 if (opt & OPT_IPV4)
853                         af = AF_INET;
854                 if (opt & OPT_IPV6)
855                         af = AF_INET6;
856                 lsa = xhost_and_af2sockaddr(hostname, 0, af);
857         }
858 #else
859         lsa = xhost_and_af2sockaddr(hostname, 0, AF_INET);
860 #endif
861
862         if (source_lsa && source_lsa->u.sa.sa_family != lsa->u.sa.sa_family)
863                 /* leaking it here... */
864                 source_lsa = NULL;
865
866         dotted = xmalloc_sockaddr2dotted_noport(&lsa->u.sa);
867         ping(lsa);
868         print_stats_and_exit(EXIT_SUCCESS);
869         /*return EXIT_SUCCESS;*/
870 }
871 #endif /* FEATURE_FANCY_PING */
872
873
874 int ping_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
875 int ping_main(int argc UNUSED_PARAM, char **argv)
876 {
877 #if !ENABLE_FEATURE_FANCY_PING
878         return common_ping_main(AF_UNSPEC, argv);
879 #else
880         return common_ping_main(0, argv);
881 #endif
882 }
883
884 #if ENABLE_PING6
885 int ping6_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
886 int ping6_main(int argc UNUSED_PARAM, char **argv)
887 {
888 # if !ENABLE_FEATURE_FANCY_PING
889         return common_ping_main(AF_INET6, argv);
890 # else
891         return common_ping_main(OPT_IPV6, argv);
892 # endif
893 }
894 #endif
895
896 /* from ping6.c:
897  * Copyright (c) 1989 The Regents of the University of California.
898  * All rights reserved.
899  *
900  * This code is derived from software contributed to Berkeley by
901  * Mike Muuss.
902  *
903  * Redistribution and use in source and binary forms, with or without
904  * modification, are permitted provided that the following conditions
905  * are met:
906  * 1. Redistributions of source code must retain the above copyright
907  *    notice, this list of conditions and the following disclaimer.
908  * 2. Redistributions in binary form must reproduce the above copyright
909  *    notice, this list of conditions and the following disclaimer in the
910  *    documentation and/or other materials provided with the distribution.
911  *
912  * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
913  *              ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
914  *
915  * 4. Neither the name of the University nor the names of its contributors
916  *    may be used to endorse or promote products derived from this software
917  *    without specific prior written permission.
918  *
919  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
920  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
921  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
922  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
923  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
924  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
925  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
926  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
927  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
928  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
929  * SUCH DAMAGE.
930  */