1 /* vi: set sw=4 ts=4: */
3 * $Id: ping6.c,v 1.5 2003/05/22 07:10:22 andersen Exp $
4 * Mini ping implementation for busybox
6 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * This version of ping is adapted from the ping in netkit-base 0.10,
25 * Copyright (c) 1989 The Regents of the University of California.
26 * All rights reserved.
28 * This code is derived from software contributed to Berkeley by
31 * Original copyright notice is retained at the end of this file.
33 * This version is an adaptation of ping.c from busybox.
34 * The code was modified by Bart Visscher <magick@linux-fan.com>
37 #include <sys/param.h>
38 #include <sys/socket.h>
41 #include <sys/times.h>
42 #include <sys/signal.h>
44 #include <netinet/in.h>
45 #include <netinet/ip6.h>
46 #include <netinet/icmp6.h>
47 #include <arpa/inet.h>
56 #include <stddef.h> /* offsetof */
59 static const int DEFDATALEN = 56;
60 static const int MAXIPLEN = 60;
61 static const int MAXICMPLEN = 76;
62 static const int MAXPACKET = 65468;
63 #define MAX_DUP_CHK (8 * 128)
64 static const int MAXWAIT = 10;
65 static const int PINGINTERVAL = 1; /* second */
67 #define O_QUIET (1 << 0)
68 #define O_VERBOSE (1 << 1)
70 #define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
71 #define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
72 #define SET(bit) (A(bit) |= B(bit))
73 #define CLR(bit) (A(bit) &= (~B(bit)))
74 #define TST(bit) (A(bit) & B(bit))
76 static void ping(const char *host);
79 #ifndef CONFIG_FEATURE_FANCY_PING6
80 static struct hostent *h;
84 printf("No response from %s\n", h->h_name);
88 static void ping(const char *host)
90 struct sockaddr_in6 pingaddr;
91 struct icmp6_hdr *pkt;
94 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
96 pingsock = create_icmp6_socket();
98 memset(&pingaddr, 0, sizeof(struct sockaddr_in));
100 pingaddr.sin6_family = AF_INET6;
101 h = xgethostbyname2(host, AF_INET6);
102 memcpy(&pingaddr.sin6_addr, h->h_addr, sizeof(pingaddr.sin6_addr));
104 pkt = (struct icmp6_hdr *) packet;
105 memset(pkt, 0, sizeof(packet));
106 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
108 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
109 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, (char *) &sockopt,
112 c = sendto(pingsock, packet, sizeof(packet), 0,
113 (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in6));
115 if (c < 0 || c != sizeof(packet))
116 bb_perror_msg_and_die("sendto");
118 signal(SIGALRM, noresp);
119 alarm(5); /* give the host 5000ms to respond */
120 /* listen for replies */
122 struct sockaddr_in6 from;
123 size_t fromlen = sizeof(from);
125 if ((c = recvfrom(pingsock, packet, sizeof(packet), 0,
126 (struct sockaddr *) &from, &fromlen)) < 0) {
129 bb_perror_msg("recvfrom");
132 if (c >= 8) { /* icmp6_hdr */
133 pkt = (struct icmp6_hdr *) packet;
134 if (pkt->icmp6_type == ICMP6_ECHO_REPLY)
138 printf("%s is alive!\n", h->h_name);
142 extern int ping6_main(int argc, char **argv)
152 #else /* ! CONFIG_FEATURE_FANCY_PING6 */
153 /* full(er) version */
154 static struct sockaddr_in6 pingaddr;
155 static int pingsock = -1;
156 static int datalen; /* intentionally uninitialized to work around gcc bug */
159 static long ntransmitted, nreceived, nrepeats, pingcount;
160 static int myid, options;
161 static unsigned long tmin = ULONG_MAX, tmax, tsum;
162 static char rcvd_tbl[MAX_DUP_CHK / 8];
164 # ifdef CONFIG_FEATURE_FANCY_PING
167 struct hostent *hostent;
169 static void sendping(int);
170 static void pingstats(int);
171 static void unpack(char *, int, struct sockaddr_in6 *, int);
173 /**************************************************************************/
175 static void pingstats(int junk)
179 signal(SIGINT, SIG_IGN);
181 printf("\n--- %s ping statistics ---\n", hostent->h_name);
182 printf("%ld packets transmitted, ", ntransmitted);
183 printf("%ld packets received, ", nreceived);
185 printf("%ld duplicates, ", nrepeats);
187 printf("%ld%% packet loss\n",
188 (ntransmitted - nreceived) * 100 / ntransmitted);
190 printf("round-trip min/avg/max = %lu.%lu/%lu.%lu/%lu.%lu ms\n",
191 tmin / 10, tmin % 10,
192 (tsum / (nreceived + nrepeats)) / 10,
193 (tsum / (nreceived + nrepeats)) % 10, tmax / 10, tmax % 10);
195 status = EXIT_SUCCESS;
197 status = EXIT_FAILURE;
201 static void sendping(int junk)
203 struct icmp6_hdr *pkt;
205 char packet[datalen + 8];
207 pkt = (struct icmp6_hdr *) packet;
209 pkt->icmp6_type = ICMP6_ECHO_REQUEST;
211 pkt->icmp6_cksum = 0;
212 pkt->icmp6_seq = ntransmitted++;
213 pkt->icmp6_id = myid;
214 CLR(pkt->icmp6_seq % MAX_DUP_CHK);
216 gettimeofday((struct timeval *) &pkt->icmp6_data8[4], NULL);
218 i = sendto(pingsock, packet, sizeof(packet), 0,
219 (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in6));
222 bb_perror_msg_and_die("sendto");
223 else if ((size_t)i != sizeof(packet))
224 bb_error_msg_and_die("ping wrote %d chars; %d expected", i,
225 (int)sizeof(packet));
227 signal(SIGALRM, sendping);
228 if (pingcount == 0 || ntransmitted < pingcount) { /* schedule next in 1s */
230 } else { /* done, wait for the last ping to come back */
231 /* todo, don't necessarily need to wait so long... */
232 signal(SIGALRM, pingstats);
237 static char *icmp6_type_name (int id)
240 case ICMP6_DST_UNREACH: return "Destination Unreachable";
241 case ICMP6_PACKET_TOO_BIG: return "Packet too big";
242 case ICMP6_TIME_EXCEEDED: return "Time Exceeded";
243 case ICMP6_PARAM_PROB: return "Parameter Problem";
244 case ICMP6_ECHO_REPLY: return "Echo Reply";
245 case ICMP6_ECHO_REQUEST: return "Echo Request";
246 case ICMP6_MEMBERSHIP_QUERY: return "Membership Query";
247 case ICMP6_MEMBERSHIP_REPORT: return "Membership Report";
248 case ICMP6_MEMBERSHIP_REDUCTION: return "Membership Reduction";
249 default: return "unknown ICMP type";
253 static void unpack(char *packet, int sz, struct sockaddr_in6 *from, int hoplimit)
255 struct icmp6_hdr *icmppkt;
256 struct timeval tv, *tp;
258 unsigned long triptime;
259 char buf[INET6_ADDRSTRLEN];
261 gettimeofday(&tv, NULL);
263 /* discard if too short */
264 if (sz < (datalen + sizeof(struct icmp6_hdr)))
267 icmppkt = (struct icmp6_hdr *) packet;
269 if (icmppkt->icmp6_id != myid)
270 return; /* not our ping */
272 if (icmppkt->icmp6_type == ICMP6_ECHO_REPLY) {
274 tp = (struct timeval *) &icmppkt->icmp6_data8[4];
276 if ((tv.tv_usec -= tp->tv_usec) < 0) {
278 tv.tv_usec += 1000000;
280 tv.tv_sec -= tp->tv_sec;
282 triptime = tv.tv_sec * 10000 + (tv.tv_usec / 100);
289 if (TST(icmppkt->icmp6_seq % MAX_DUP_CHK)) {
294 SET(icmppkt->icmp6_seq % MAX_DUP_CHK);
298 if (options & O_QUIET)
301 printf("%d bytes from %s: icmp6_seq=%u", sz,
302 inet_ntop(AF_INET6, (struct in_addr6 *) &pingaddr.sin6_addr,
305 printf(" ttl=%d time=%lu.%lu ms", hoplimit,
306 triptime / 10, triptime % 10);
311 if (icmppkt->icmp6_type != ICMP6_ECHO_REQUEST)
312 bb_error_msg("Warning: Got ICMP %d (%s)",
313 icmppkt->icmp6_type, icmp6_type_name (icmppkt->icmp6_type));
316 static void ping(const char *host)
318 char packet[datalen + MAXIPLEN + MAXICMPLEN];
319 char buf[INET6_ADDRSTRLEN];
322 struct sockaddr_in6 from;
324 char control_buf[CMSG_SPACE(36)];
326 pingsock = create_icmp6_socket();
328 memset(&pingaddr, 0, sizeof(struct sockaddr_in));
330 pingaddr.sin6_family = AF_INET6;
331 hostent = xgethostbyname2(host, AF_INET6);
332 if (hostent->h_addrtype != AF_INET6)
333 bb_error_msg_and_die("unknown address type; only AF_INET6 is currently supported.");
335 memcpy(&pingaddr.sin6_addr, hostent->h_addr, sizeof(pingaddr.sin6_addr));
339 struct icmp6_filter filt;
340 if (!(options & O_VERBOSE)) {
341 ICMP6_FILTER_SETBLOCKALL(&filt);
343 if ((options & F_FQDN) || (options & F_FQDNOLD) ||
344 (options & F_NODEADDR) || (options & F_SUPTYPES))
345 ICMP6_FILTER_SETPASS(ICMP6_NI_REPLY, &filt);
348 ICMP6_FILTER_SETPASS(ICMP6_ECHO_REPLY, &filt);
350 ICMP6_FILTER_SETPASSALL(&filt);
352 if (setsockopt(pingsock, IPPROTO_ICMPV6, ICMP6_FILTER, &filt,
354 bb_error_msg_and_die("setsockopt(ICMP6_FILTER)");
356 #endif /*ICMP6_FILTER*/
358 /* enable broadcast pings */
360 setsockopt(pingsock, SOL_SOCKET, SO_BROADCAST, (char *) &sockopt,
363 /* set recv buf for broadcast pings */
365 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, (char *) &sockopt,
368 sockopt = offsetof(struct icmp6_hdr, icmp6_cksum);
369 setsockopt(pingsock, SOL_RAW, IPV6_CHECKSUM, (char *) &sockopt,
373 setsockopt(pingsock, SOL_IPV6, IPV6_HOPLIMIT, (char *) &sockopt,
377 if ((pingaddr.sin6_scope_id = if_nametoindex(ifname)) == 0)
378 bb_error_msg_and_die("%s: invalid interface name", ifname);
381 printf("PING %s (%s): %d data bytes\n",
383 inet_ntop(AF_INET6, (struct in_addr6 *) &pingaddr.sin6_addr,
387 signal(SIGINT, pingstats);
389 /* start the ping's going ... */
392 /* listen for replies */
394 msg.msg_namelen=sizeof(from);
397 msg.msg_control=control_buf;
399 iov.iov_len=sizeof(packet);
402 struct cmsghdr *cmsgptr = NULL;
404 msg.msg_controllen=sizeof(control_buf);
406 if ((c = recvmsg(pingsock, &msg, 0)) < 0) {
409 bb_perror_msg("recvfrom");
412 for (cmsgptr = CMSG_FIRSTHDR(&msg); cmsgptr != NULL;
413 cmsgptr = CMSG_NXTHDR(&msg, cmsgptr)) {
414 if (cmsgptr->cmsg_level == SOL_IPV6 &&
415 cmsgptr->cmsg_type == IPV6_HOPLIMIT ) {
416 hoplimit=*(int*)CMSG_DATA(cmsgptr);
419 unpack(packet, c, &from, hoplimit);
420 if (pingcount > 0 && nreceived >= pingcount)
426 extern int ping6_main(int argc, char **argv)
430 datalen = DEFDATALEN; /* initialized here rather than in global scope to work around gcc bug */
435 /* Parse any options */
436 while (argc >= 1 && **argv == '-') {
442 options |= O_VERBOSE;
445 options &= ~O_VERBOSE;
452 pingcount = atoi(*argv);
458 datalen = atoi(*argv);
475 myid = getpid() & 0xFFFF;
479 #endif /* ! CONFIG_FEATURE_FANCY_PING6 */
482 * Copyright (c) 1989 The Regents of the University of California.
483 * All rights reserved.
485 * This code is derived from software contributed to Berkeley by
488 * Redistribution and use in source and binary forms, with or without
489 * modification, are permitted provided that the following conditions
491 * 1. Redistributions of source code must retain the above copyright
492 * notice, this list of conditions and the following disclaimer.
493 * 2. Redistributions in binary form must reproduce the above copyright
494 * notice, this list of conditions and the following disclaimer in the
495 * documentation and/or other materials provided with the distribution.
497 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
498 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
500 * 4. Neither the name of the University nor the names of its contributors
501 * may be used to endorse or promote products derived from this software
502 * without specific prior written permission.
504 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
505 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
506 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
507 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
508 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
509 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
510 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
511 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
512 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
513 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF