1 /* vi: set sw=4 ts=4: */
3 * $Id: ping.c,v 1.46 2001/07/17 01:12:36 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.
34 #include <sys/param.h>
35 #include <sys/socket.h>
38 #include <sys/times.h>
39 #include <sys/signal.h>
41 #include <netinet/in.h>
42 #include <netinet/ip.h>
43 #include <netinet/ip_icmp.h>
44 #include <arpa/inet.h>
55 /* It turns out that libc5 doesn't have proper icmp support
56 * built into it header files, so we have to supplement it */
57 #if __GNU_LIBRARY__ < 5
58 static const int ICMP_MINLEN = 8; /* abs minimum */
63 u_int32_t ira_preference;
69 u_int8_t icmp_type; /* type of message, see below */
70 u_int8_t icmp_code; /* type sub code */
71 u_int16_t icmp_cksum; /* ones complement checksum of struct */
74 u_char ih_pptr; /* ICMP_PARAMPROB */
75 struct in_addr ih_gwaddr; /* gateway address */
76 struct ih_idseq /* echo datagram */
83 /* ICMP_UNREACH_NEEDFRAG -- Path MTU Discovery (RFC1191) */
87 u_int16_t ipm_nextmtu;
92 u_int8_t irt_num_addrs;
94 u_int16_t irt_lifetime;
97 #define icmp_pptr icmp_hun.ih_pptr
98 #define icmp_gwaddr icmp_hun.ih_gwaddr
99 #define icmp_id icmp_hun.ih_idseq.icd_id
100 #define icmp_seq icmp_hun.ih_idseq.icd_seq
101 #define icmp_void icmp_hun.ih_void
102 #define icmp_pmvoid icmp_hun.ih_pmtu.ipm_void
103 #define icmp_nextmtu icmp_hun.ih_pmtu.ipm_nextmtu
104 #define icmp_num_addrs icmp_hun.ih_rtradv.irt_num_addrs
105 #define icmp_wpa icmp_hun.ih_rtradv.irt_wpa
106 #define icmp_lifetime icmp_hun.ih_rtradv.irt_lifetime
118 /* options and then 64 bits of data */
120 struct icmp_ra_addr id_radv;
124 #define icmp_otime icmp_dun.id_ts.its_otime
125 #define icmp_rtime icmp_dun.id_ts.its_rtime
126 #define icmp_ttime icmp_dun.id_ts.its_ttime
127 #define icmp_ip icmp_dun.id_ip.idi_ip
128 #define icmp_radv icmp_dun.id_radv
129 #define icmp_mask icmp_dun.id_mask
130 #define icmp_data icmp_dun.id_data
134 static const int DEFDATALEN = 56;
135 static const int MAXIPLEN = 60;
136 static const int MAXICMPLEN = 76;
137 static const int MAXPACKET = 65468;
138 #define MAX_DUP_CHK (8 * 128)
139 static const int MAXWAIT = 10;
140 static const int PINGINTERVAL = 1; /* second */
142 #define O_QUIET (1 << 0)
144 #define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
145 #define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
146 #define SET(bit) (A(bit) |= B(bit))
147 #define CLR(bit) (A(bit) &= (~B(bit)))
148 #define TST(bit) (A(bit) & B(bit))
150 static void ping(const char *host);
152 /* common routines */
153 static int in_cksum(unsigned short *buf, int sz)
157 unsigned short *w = buf;
158 unsigned short ans = 0;
166 *(unsigned char *) (&ans) = *(unsigned char *) w;
170 sum = (sum >> 16) + (sum & 0xFFFF);
177 #ifndef BB_FEATURE_FANCY_PING
178 static char *hostname = NULL;
180 static void noresp(int ign)
182 printf("No response from %s\n", hostname);
186 static void ping(const char *host)
189 struct sockaddr_in pingaddr;
192 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
194 pingsock = create_icmp_socket();
196 memset(&pingaddr, 0, sizeof(struct sockaddr_in));
198 pingaddr.sin_family = AF_INET;
199 h = xgethostbyname(host);
200 memcpy(&pingaddr.sin_addr, h->h_addr, sizeof(pingaddr.sin_addr));
201 hostname = h->h_name;
203 pkt = (struct icmp *) packet;
204 memset(pkt, 0, sizeof(packet));
205 pkt->icmp_type = ICMP_ECHO;
206 pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(packet));
208 c = sendto(pingsock, packet, sizeof(packet), 0,
209 (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in));
211 if (c < 0 || c != sizeof(packet))
212 perror_msg_and_die("sendto");
214 signal(SIGALRM, noresp);
215 alarm(5); /* give the host 5000ms to respond */
216 /* listen for replies */
218 struct sockaddr_in from;
219 size_t fromlen = sizeof(from);
221 if ((c = recvfrom(pingsock, packet, sizeof(packet), 0,
222 (struct sockaddr *) &from, &fromlen)) < 0) {
225 perror_msg("recvfrom");
228 if (c >= 76) { /* ip + icmp */
229 struct iphdr *iphdr = (struct iphdr *) packet;
231 pkt = (struct icmp *) (packet + (iphdr->ihl << 2)); /* skip ip hdr */
232 if (pkt->icmp_type == ICMP_ECHOREPLY)
236 printf("%s is alive!\n", hostname);
240 extern int ping_main(int argc, char **argv)
250 #else /* ! BB_FEATURE_FANCY_PING */
251 /* full(er) version */
252 static char *hostname = NULL;
253 static struct sockaddr_in pingaddr;
254 static int pingsock = -1;
255 static int datalen; /* intentionally uninitialized to work around gcc bug */
257 static long ntransmitted = 0, nreceived = 0, nrepeats = 0, pingcount = 0;
258 static int myid = 0, options = 0;
259 static unsigned long tmin = ULONG_MAX, tmax = 0, tsum = 0;
260 static char rcvd_tbl[MAX_DUP_CHK / 8];
262 static void sendping(int);
263 static void pingstats(int);
264 static void unpack(char *, int, struct sockaddr_in *);
266 /**************************************************************************/
268 static void pingstats(int junk)
272 signal(SIGINT, SIG_IGN);
274 printf("\n--- %s ping statistics ---\n", hostname);
275 printf("%ld packets transmitted, ", ntransmitted);
276 printf("%ld packets received, ", nreceived);
278 printf("%ld duplicates, ", nrepeats);
280 printf("%ld%% packet loss\n",
281 (ntransmitted - nreceived) * 100 / ntransmitted);
283 printf("round-trip min/avg/max = %lu.%lu/%lu.%lu/%lu.%lu ms\n",
284 tmin / 10, tmin % 10,
285 (tsum / (nreceived + nrepeats)) / 10,
286 (tsum / (nreceived + nrepeats)) % 10, tmax / 10, tmax % 10);
288 status = EXIT_SUCCESS;
290 status = EXIT_FAILURE;
294 static void sendping(int junk)
298 char packet[datalen + 8];
300 pkt = (struct icmp *) packet;
302 pkt->icmp_type = ICMP_ECHO;
305 pkt->icmp_seq = ntransmitted++;
307 CLR(pkt->icmp_seq % MAX_DUP_CHK);
309 gettimeofday((struct timeval *) &packet[8], NULL);
310 pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(packet));
312 i = sendto(pingsock, packet, sizeof(packet), 0,
313 (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in));
316 perror_msg_and_die("sendto");
317 else if ((size_t)i != sizeof(packet))
318 error_msg_and_die("ping wrote %d chars; %d expected", i,
319 (int)sizeof(packet));
321 signal(SIGALRM, sendping);
322 if (pingcount == 0 || ntransmitted < pingcount) { /* schedule next in 1s */
324 } else { /* done, wait for the last ping to come back */
325 /* todo, don't necessarily need to wait so long... */
326 signal(SIGALRM, pingstats);
331 static char *icmp_type_name (int id)
334 case ICMP_ECHOREPLY: return "Echo Reply";
335 case ICMP_DEST_UNREACH: return "Destination Unreachable";
336 case ICMP_SOURCE_QUENCH: return "Source Quench";
337 case ICMP_REDIRECT: return "Redirect (change route)";
338 case ICMP_ECHO: return "Echo Request";
339 case ICMP_TIME_EXCEEDED: return "Time Exceeded";
340 case ICMP_PARAMETERPROB: return "Parameter Problem";
341 case ICMP_TIMESTAMP: return "Timestamp Request";
342 case ICMP_TIMESTAMPREPLY: return "Timestamp Reply";
343 case ICMP_INFO_REQUEST: return "Information Request";
344 case ICMP_INFO_REPLY: return "Information Reply";
345 case ICMP_ADDRESS: return "Address Mask Request";
346 case ICMP_ADDRESSREPLY: return "Address Mask Reply";
347 default: return "unknown ICMP type";
351 static void unpack(char *buf, int sz, struct sockaddr_in *from)
353 struct icmp *icmppkt;
355 struct timeval tv, *tp;
357 unsigned long triptime;
359 gettimeofday(&tv, NULL);
361 /* check IP header */
362 iphdr = (struct iphdr *) buf;
363 hlen = iphdr->ihl << 2;
364 /* discard if too short */
365 if (sz < (datalen + ICMP_MINLEN))
369 icmppkt = (struct icmp *) (buf + hlen);
371 if (icmppkt->icmp_id != myid)
372 return; /* not our ping */
374 if (icmppkt->icmp_type == ICMP_ECHOREPLY) {
376 tp = (struct timeval *) icmppkt->icmp_data;
378 if ((tv.tv_usec -= tp->tv_usec) < 0) {
380 tv.tv_usec += 1000000;
382 tv.tv_sec -= tp->tv_sec;
384 triptime = tv.tv_sec * 10000 + (tv.tv_usec / 100);
391 if (TST(icmppkt->icmp_seq % MAX_DUP_CHK)) {
396 SET(icmppkt->icmp_seq % MAX_DUP_CHK);
400 if (options & O_QUIET)
403 printf("%d bytes from %s: icmp_seq=%u", sz,
404 inet_ntoa(*(struct in_addr *) &from->sin_addr.s_addr),
406 printf(" ttl=%d", iphdr->ttl);
407 printf(" time=%lu.%lu ms", triptime / 10, triptime % 10);
412 if (icmppkt->icmp_type != ICMP_ECHO)
413 error_msg("Warning: Got ICMP %d (%s)",
414 icmppkt->icmp_type, icmp_type_name (icmppkt->icmp_type));
417 static void ping(const char *host)
420 char buf[MAXHOSTNAMELEN];
421 char packet[datalen + MAXIPLEN + MAXICMPLEN];
424 pingsock = create_icmp_socket();
426 memset(&pingaddr, 0, sizeof(struct sockaddr_in));
428 pingaddr.sin_family = AF_INET;
429 h = xgethostbyname(host);
430 if (h->h_addrtype != AF_INET)
431 error_msg_and_die("unknown address type; only AF_INET is currently supported.");
433 memcpy(&pingaddr.sin_addr, h->h_addr, sizeof(pingaddr.sin_addr));
434 strncpy(buf, h->h_name, sizeof(buf) - 1);
437 /* enable broadcast pings */
439 setsockopt(pingsock, SOL_SOCKET, SO_BROADCAST, (char *) &sockopt,
442 /* set recv buf for broadcast pings */
444 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, (char *) &sockopt,
447 printf("PING %s (%s): %d data bytes\n",
449 inet_ntoa(*(struct in_addr *) &pingaddr.sin_addr.s_addr),
452 signal(SIGINT, pingstats);
454 /* start the ping's going ... */
457 /* listen for replies */
459 struct sockaddr_in from;
460 socklen_t fromlen = (socklen_t) sizeof(from);
463 if ((c = recvfrom(pingsock, packet, sizeof(packet), 0,
464 (struct sockaddr *) &from, &fromlen)) < 0) {
467 perror_msg("recvfrom");
470 unpack(packet, c, &from);
471 if (pingcount > 0 && nreceived >= pingcount)
477 extern int ping_main(int argc, char **argv)
481 datalen = DEFDATALEN; /* initialized here rather than in global scope to work around gcc bug */
486 /* Parse any options */
487 while (argc >= 1 && **argv == '-') {
498 pingcount = atoi(*argv);
504 datalen = atoi(*argv);
515 myid = getpid() & 0xFFFF;
519 #endif /* ! BB_FEATURE_FANCY_PING */
522 * Copyright (c) 1989 The Regents of the University of California.
523 * All rights reserved.
525 * This code is derived from software contributed to Berkeley by
528 * Redistribution and use in source and binary forms, with or without
529 * modification, are permitted provided that the following conditions
531 * 1. Redistributions of source code must retain the above copyright
532 * notice, this list of conditions and the following disclaimer.
533 * 2. Redistributions in binary form must reproduce the above copyright
534 * notice, this list of conditions and the following disclaimer in the
535 * documentation and/or other materials provided with the distribution.
537 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
538 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
540 * 4. Neither the name of the University nor the names of its contributors
541 * may be used to endorse or promote products derived from this software
542 * without specific prior written permission.
544 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
545 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
546 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
547 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
548 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
549 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
550 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
551 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
552 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
553 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF