blob: 14a56cd55bdc3a9dd3f725fa10dcbc6de2454422 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen485b9551999-12-07 23:14:59 +00002/*
Erik Andersen7ab9c7e2000-05-12 19:41:47 +00003 * $Id: ping.c,v 1.15 2000/05/12 19:41:47 erik Exp $
Eric Andersen485b9551999-12-07 23:14:59 +00004 * Mini ping implementation for busybox
5 *
6 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
7 *
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.
12 *
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.
17 *
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
21 *
22 * This version of ping is adapted from the ping in netkit-base 0.10,
23 * which is:
24 *
25 * Copyright (c) 1989 The Regents of the University of California.
26 * All rights reserved.
27 *
28 * This code is derived from software contributed to Berkeley by
29 * Mike Muuss.
30 *
31 * Original copyright notice is retained at the end of this file.
32 */
33
34#include "internal.h"
35#include <sys/param.h>
36#include <sys/socket.h>
37#include <sys/file.h>
38#include <sys/time.h>
39#include <sys/times.h>
40#include <sys/signal.h>
41
42#include <netinet/in.h>
43#include <netinet/ip.h>
44#include <netinet/ip_icmp.h>
45#include <arpa/inet.h>
46#include <netdb.h>
47#include <stdio.h>
48#include <stdlib.h>
49#include <errno.h>
50
51#define DEFDATALEN 56
52#define MAXIPLEN 60
53#define MAXICMPLEN 76
54#define MAXPACKET 65468
55#define MAX_DUP_CHK (8 * 128)
56#define MAXWAIT 10
Erik Andersene49d5ec2000-02-08 19:58:47 +000057#define PINGINTERVAL 1 /* second */
Eric Andersen485b9551999-12-07 23:14:59 +000058
59#define O_QUIET (1 << 0)
60
61#define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
62#define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
63#define SET(bit) (A(bit) |= B(bit))
64#define CLR(bit) (A(bit) &= (~B(bit)))
65#define TST(bit) (A(bit) & B(bit))
66
Eric Andersen19db07b1999-12-11 08:41:28 +000067/* common routines */
Eric Andersen485b9551999-12-07 23:14:59 +000068static int in_cksum(unsigned short *buf, int sz)
69{
Erik Andersene49d5ec2000-02-08 19:58:47 +000070 int nleft = sz;
71 int sum = 0;
72 unsigned short *w = buf;
73 unsigned short ans = 0;
Eric Andersen485b9551999-12-07 23:14:59 +000074
Erik Andersene49d5ec2000-02-08 19:58:47 +000075 while (nleft > 1) {
76 sum += *w++;
77 nleft -= 2;
78 }
Eric Andersen485b9551999-12-07 23:14:59 +000079
Erik Andersene49d5ec2000-02-08 19:58:47 +000080 if (nleft == 1) {
81 *(unsigned char *) (&ans) = *(unsigned char *) w;
82 sum += ans;
83 }
Eric Andersen485b9551999-12-07 23:14:59 +000084
Erik Andersene49d5ec2000-02-08 19:58:47 +000085 sum = (sum >> 16) + (sum & 0xFFFF);
86 sum += (sum >> 16);
87 ans = ~sum;
88 return (ans);
89}
Eric Andersen485b9551999-12-07 23:14:59 +000090
Eric Andersen19db07b1999-12-11 08:41:28 +000091/* simple version */
92#ifdef BB_SIMPLE_PING
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000093static const char *ping_usage = "ping host\n"
94#ifndef BB_FEATURE_TRIVIAL_HELP
95 "\nSend ICMP ECHO_REQUEST packets to network hosts\n"
96#endif
97 ;
Eric Andersen19db07b1999-12-11 08:41:28 +000098
Erik Andersene49d5ec2000-02-08 19:58:47 +000099static char *hostname = NULL;
Eric Andersen19db07b1999-12-11 08:41:28 +0000100
101static void noresp(int ign)
102{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000103 printf("No response from %s\n", hostname);
104 exit(0);
Eric Andersen19db07b1999-12-11 08:41:28 +0000105}
106
107static int ping(const char *host)
108{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000109 struct hostent *h;
110 struct sockaddr_in pingaddr;
111 struct icmp *pkt;
112 int pingsock, c;
113 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
Eric Andersen19db07b1999-12-11 08:41:28 +0000114
Erik Andersene49d5ec2000-02-08 19:58:47 +0000115 if ((pingsock = socket(AF_INET, SOCK_RAW, 1)) < 0) { /* 1 == ICMP */
116 perror("ping");
117 exit(1);
Eric Andersen19db07b1999-12-11 08:41:28 +0000118 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000119
120 /* drop root privs if running setuid */
121 setuid(getuid());
122
123 memset(&pingaddr, 0, sizeof(struct sockaddr_in));
124
125 pingaddr.sin_family = AF_INET;
126 if (!(h = gethostbyname(host))) {
127 fprintf(stderr, "ping: unknown host %s\n", host);
128 exit(1);
129 }
130 memcpy(&pingaddr.sin_addr, h->h_addr, sizeof(pingaddr.sin_addr));
131 hostname = h->h_name;
132
133 pkt = (struct icmp *) packet;
134 memset(pkt, 0, sizeof(packet));
135 pkt->icmp_type = ICMP_ECHO;
136 pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(packet));
137
138 c = sendto(pingsock, packet, sizeof(packet), 0,
139 (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in));
140
141 if (c < 0 || c != sizeof(packet)) {
142 if (c < 0)
143 perror("ping");
144 fprintf(stderr, "ping: write incomplete\n");
145 exit(1);
146 }
147
148 signal(SIGALRM, noresp);
149 alarm(5); /* give the host 5000ms to respond */
150 /* listen for replies */
151 while (1) {
152 struct sockaddr_in from;
153 size_t fromlen = sizeof(from);
154
155 if ((c = recvfrom(pingsock, packet, sizeof(packet), 0,
156 (struct sockaddr *) &from, &fromlen)) < 0) {
157 if (errno == EINTR)
158 continue;
159 perror("ping");
160 continue;
161 }
162 if (c >= 76) { /* ip + icmp */
163 struct iphdr *iphdr = (struct iphdr *) packet;
164
165 pkt = (struct icmp *) (packet + (iphdr->ihl << 2)); /* skip ip hdr */
166 if (pkt->icmp_type == ICMP_ECHOREPLY)
167 break;
168 }
169 }
170 printf("%s is alive!\n", hostname);
171 return (TRUE);
Eric Andersen19db07b1999-12-11 08:41:28 +0000172}
173
174extern int ping_main(int argc, char **argv)
175{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000176 argc--;
177 argv++;
178 if (argc < 1)
179 usage(ping_usage);
180 ping(*argv);
181 exit(TRUE);
Eric Andersen19db07b1999-12-11 08:41:28 +0000182}
183
Erik Andersene49d5ec2000-02-08 19:58:47 +0000184#else
Eric Andersen19db07b1999-12-11 08:41:28 +0000185/* full(er) version */
Erik Andersen7ab9c7e2000-05-12 19:41:47 +0000186static const char *ping_usage = "ping [OPTION]... host\n"
187#ifndef BB_FEATURE_TRIVIAL_HELP
188 "\nSend ICMP ECHO_REQUEST packets to network hosts.\n\n"
Erik Andersene49d5ec2000-02-08 19:58:47 +0000189 "Options:\n"
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000190 "\t-c COUNT\tSend only COUNT pings.\n"
191 "\t-q\t\tQuiet mode, only displays output at start\n"
Erik Andersen7ab9c7e2000-05-12 19:41:47 +0000192 "\t\t\tand when finished.\n"
193#endif
194 ;
Eric Andersen19db07b1999-12-11 08:41:28 +0000195
196static char *hostname = NULL;
197static struct sockaddr_in pingaddr;
198static int pingsock = -1;
199
200static long ntransmitted = 0, nreceived = 0, nrepeats = 0, pingcount = 0;
201static int myid = 0, options = 0;
202static unsigned long tmin = ULONG_MAX, tmax = 0, tsum = 0;
203static char rcvd_tbl[MAX_DUP_CHK / 8];
204
205static void sendping(int);
206static void pingstats(int);
207static void unpack(char *, int, struct sockaddr_in *);
208
209static void ping(char *);
210
211/**************************************************************************/
212
Erik Andersene49d5ec2000-02-08 19:58:47 +0000213static void pingstats(int ign)
214{
215 signal(SIGINT, SIG_IGN);
216
217 printf("\n--- %s ping statistics ---\n", hostname);
218 printf("%ld packets transmitted, ", ntransmitted);
219 printf("%ld packets received, ", nreceived);
220 if (nrepeats)
221 printf("%ld duplicates, ", nrepeats);
222 if (ntransmitted)
223 printf("%ld%% packet loss\n",
224 (ntransmitted - nreceived) * 100 / ntransmitted);
225 if (nreceived)
226 printf("round-trip min/avg/max = %lu.%lu/%lu.%lu/%lu.%lu ms\n",
227 tmin / 10, tmin % 10,
228 (tsum / (nreceived + nrepeats)) / 10,
229 (tsum / (nreceived + nrepeats)) % 10, tmax / 10, tmax % 10);
230 exit(0);
Eric Andersen485b9551999-12-07 23:14:59 +0000231}
232
233static void sendping(int ign)
234{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000235 struct icmp *pkt;
236 int i;
237 char packet[DEFDATALEN + 8];
Eric Andersen485b9551999-12-07 23:14:59 +0000238
Erik Andersene49d5ec2000-02-08 19:58:47 +0000239 pkt = (struct icmp *) packet;
Eric Andersen485b9551999-12-07 23:14:59 +0000240
Erik Andersene49d5ec2000-02-08 19:58:47 +0000241 pkt->icmp_type = ICMP_ECHO;
242 pkt->icmp_code = 0;
243 pkt->icmp_cksum = 0;
244 pkt->icmp_seq = ntransmitted++;
245 pkt->icmp_id = myid;
246 CLR(pkt->icmp_seq % MAX_DUP_CHK);
Eric Andersen485b9551999-12-07 23:14:59 +0000247
Erik Andersene49d5ec2000-02-08 19:58:47 +0000248 gettimeofday((struct timeval *) &packet[8], NULL);
249 pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(packet));
Eric Andersen485b9551999-12-07 23:14:59 +0000250
Erik Andersene49d5ec2000-02-08 19:58:47 +0000251 i = sendto(pingsock, packet, sizeof(packet), 0,
252 (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in));
253
254 if (i < 0 || i != sizeof(packet)) {
255 if (i < 0)
256 perror("ping");
257 fprintf(stderr, "ping wrote %d chars; %d expected\n", i,
Erik Andersen1d1d9502000-04-21 01:26:49 +0000258 (int)sizeof(packet));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000259 exit(1);
260 }
261
262 signal(SIGALRM, sendping);
263 if (pingcount == 0 || ntransmitted < pingcount) { /* schedule next in 1s */
264 alarm(PINGINTERVAL);
265 } else { /* done, wait for the last ping to come back */
266 /* todo, don't necessarily need to wait so long... */
267 signal(SIGALRM, pingstats);
268 alarm(MAXWAIT);
269 }
Eric Andersen485b9551999-12-07 23:14:59 +0000270}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000271
Erik Andersen227a59b2000-04-25 23:24:55 +0000272static char *icmp_type_name (int id)
273{
274 switch (id) {
275 case ICMP_ECHOREPLY: return "Echo Reply";
276 case ICMP_DEST_UNREACH: return "Destination Unreachable";
277 case ICMP_SOURCE_QUENCH: return "Source Quench";
278 case ICMP_REDIRECT: return "Redirect (change route)";
279 case ICMP_ECHO: return "Echo Request";
280 case ICMP_TIME_EXCEEDED: return "Time Exceeded";
281 case ICMP_PARAMETERPROB: return "Parameter Problem";
282 case ICMP_TIMESTAMP: return "Timestamp Request";
283 case ICMP_TIMESTAMPREPLY: return "Timestamp Reply";
284 case ICMP_INFO_REQUEST: return "Information Request";
285 case ICMP_INFO_REPLY: return "Information Reply";
286 case ICMP_ADDRESS: return "Address Mask Request";
287 case ICMP_ADDRESSREPLY: return "Address Mask Reply";
288 default: return "unknown ICMP type";
289 }
290}
291
Eric Andersen485b9551999-12-07 23:14:59 +0000292static void unpack(char *buf, int sz, struct sockaddr_in *from)
293{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000294 struct icmp *icmppkt;
295 struct iphdr *iphdr;
296 struct timeval tv, *tp;
297 int hlen, dupflag;
298 unsigned long triptime;
Eric Andersen485b9551999-12-07 23:14:59 +0000299
Erik Andersene49d5ec2000-02-08 19:58:47 +0000300 gettimeofday(&tv, NULL);
Eric Andersen485b9551999-12-07 23:14:59 +0000301
Erik Andersene49d5ec2000-02-08 19:58:47 +0000302 /* check IP header */
303 iphdr = (struct iphdr *) buf;
304 hlen = iphdr->ihl << 2;
305 /* discard if too short */
306 if (sz < (DEFDATALEN + ICMP_MINLEN))
307 return;
Eric Andersen485b9551999-12-07 23:14:59 +0000308
Erik Andersene49d5ec2000-02-08 19:58:47 +0000309 sz -= hlen;
310 icmppkt = (struct icmp *) (buf + hlen);
311
Erik Andersen227a59b2000-04-25 23:24:55 +0000312 if (icmppkt->icmp_id != myid)
313 return; /* not our ping */
314
Erik Andersene49d5ec2000-02-08 19:58:47 +0000315 if (icmppkt->icmp_type == ICMP_ECHOREPLY) {
Erik Andersen227a59b2000-04-25 23:24:55 +0000316 ++nreceived;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000317 tp = (struct timeval *) icmppkt->icmp_data;
318
319 if ((tv.tv_usec -= tp->tv_usec) < 0) {
320 --tv.tv_sec;
321 tv.tv_usec += 1000000;
322 }
323 tv.tv_sec -= tp->tv_sec;
324
325 triptime = tv.tv_sec * 10000 + (tv.tv_usec / 100);
326 tsum += triptime;
327 if (triptime < tmin)
328 tmin = triptime;
329 if (triptime > tmax)
330 tmax = triptime;
331
332 if (TST(icmppkt->icmp_seq % MAX_DUP_CHK)) {
333 ++nrepeats;
334 --nreceived;
335 dupflag = 1;
336 } else {
337 SET(icmppkt->icmp_seq % MAX_DUP_CHK);
338 dupflag = 0;
339 }
340
341 if (options & O_QUIET)
342 return;
343
344 printf("%d bytes from %s: icmp_seq=%u", sz,
345 inet_ntoa(*(struct in_addr *) &from->sin_addr.s_addr),
346 icmppkt->icmp_seq);
347 printf(" ttl=%d", iphdr->ttl);
348 printf(" time=%lu.%lu ms", triptime / 10, triptime % 10);
349 if (dupflag)
350 printf(" (DUP!)");
351 printf("\n");
Erik Andersen227a59b2000-04-25 23:24:55 +0000352 } else
353 if (icmppkt->icmp_type != ICMP_ECHO)
354 fprintf(stderr,
355 "Warning: Got ICMP %d (%s)\n",
356 icmppkt->icmp_type, icmp_type_name (icmppkt->icmp_type));
Eric Andersen485b9551999-12-07 23:14:59 +0000357}
358
359static void ping(char *host)
360{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000361 struct protoent *proto;
362 struct hostent *h;
363 char buf[MAXHOSTNAMELEN];
364 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
365 int sockopt;
366
367 proto = getprotobyname("icmp");
368 /* if getprotobyname failed, just silently force
369 * proto->p_proto to have the correct value for "icmp" */
370 if ((pingsock = socket(AF_INET, SOCK_RAW,
371 (proto ? proto->p_proto : 1))) < 0) { /* 1 == ICMP */
372 if (errno == EPERM) {
373 fprintf(stderr, "ping: permission denied. (are you root?)\n");
374 } else {
375 perror("ping");
376 }
377 exit(1);
Eric Andersen485b9551999-12-07 23:14:59 +0000378 }
Eric Andersen485b9551999-12-07 23:14:59 +0000379
Erik Andersene49d5ec2000-02-08 19:58:47 +0000380 /* drop root privs if running setuid */
381 setuid(getuid());
Eric Andersen485b9551999-12-07 23:14:59 +0000382
Erik Andersene49d5ec2000-02-08 19:58:47 +0000383 memset(&pingaddr, 0, sizeof(struct sockaddr_in));
Eric Andersen19db07b1999-12-11 08:41:28 +0000384
Erik Andersene49d5ec2000-02-08 19:58:47 +0000385 pingaddr.sin_family = AF_INET;
386 if (!(h = gethostbyname(host))) {
387 fprintf(stderr, "ping: unknown host %s\n", host);
388 exit(1);
Eric Andersen485b9551999-12-07 23:14:59 +0000389 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000390
391 if (h->h_addrtype != AF_INET) {
392 fprintf(stderr,
393 "ping: unknown address type; only AF_INET is currently supported.\n");
394 exit(1);
395 }
396
397 pingaddr.sin_family = AF_INET; /* h->h_addrtype */
398 memcpy(&pingaddr.sin_addr, h->h_addr, sizeof(pingaddr.sin_addr));
399 strncpy(buf, h->h_name, sizeof(buf) - 1);
400 hostname = buf;
401
402 /* enable broadcast pings */
403 sockopt = 1;
404 setsockopt(pingsock, SOL_SOCKET, SO_BROADCAST, (char *) &sockopt,
405 sizeof(sockopt));
406
407 /* set recv buf for broadcast pings */
408 sockopt = 48 * 1024;
409 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, (char *) &sockopt,
410 sizeof(sockopt));
411
412 printf("PING %s (%s): %d data bytes\n",
413 hostname,
414 inet_ntoa(*(struct in_addr *) &pingaddr.sin_addr.s_addr),
415 DEFDATALEN);
416
417 signal(SIGINT, pingstats);
418
419 /* start the ping's going ... */
420 sendping(0);
421
422 /* listen for replies */
423 while (1) {
424 struct sockaddr_in from;
Erik Andersen1d1d9502000-04-21 01:26:49 +0000425 socklen_t fromlen = (socklen_t) sizeof(from);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000426 int c;
427
428 if ((c = recvfrom(pingsock, packet, sizeof(packet), 0,
429 (struct sockaddr *) &from, &fromlen)) < 0) {
430 if (errno == EINTR)
431 continue;
432 perror("ping");
433 continue;
434 }
435 unpack(packet, c, &from);
436 if (pingcount > 0 && nreceived >= pingcount)
437 break;
438 }
439 pingstats(0);
Eric Andersen485b9551999-12-07 23:14:59 +0000440}
441
442extern int ping_main(int argc, char **argv)
443{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000444 char *thisarg;
Eric Andersen485b9551999-12-07 23:14:59 +0000445
Erik Andersene49d5ec2000-02-08 19:58:47 +0000446 argc--;
447 argv++;
448 options = 0;
449 /* Parse any options */
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000450 while (argc >= 1 && **argv == '-') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000451 thisarg = *argv;
452 thisarg++;
453 switch (*thisarg) {
454 case 'q':
455 options |= O_QUIET;
456 break;
457 case 'c':
458 argc--;
459 argv++;
460 pingcount = atoi(*argv);
461 break;
462 default:
463 usage(ping_usage);
464 }
465 argc--;
466 argv++;
467 }
468 if (argc < 1)
469 usage(ping_usage);
470
471 myid = getpid() & 0xFFFF;
472 ping(*argv);
473 exit(TRUE);
Eric Andersen485b9551999-12-07 23:14:59 +0000474}
Eric Andersen19db07b1999-12-11 08:41:28 +0000475#endif
Eric Andersen485b9551999-12-07 23:14:59 +0000476
477/*
478 * Copyright (c) 1989 The Regents of the University of California.
479 * All rights reserved.
480 *
481 * This code is derived from software contributed to Berkeley by
482 * Mike Muuss.
483 *
484 * Redistribution and use in source and binary forms, with or without
485 * modification, are permitted provided that the following conditions
486 * are met:
487 * 1. Redistributions of source code must retain the above copyright
488 * notice, this list of conditions and the following disclaimer.
489 * 2. Redistributions in binary form must reproduce the above copyright
490 * notice, this list of conditions and the following disclaimer in the
491 * documentation and/or other materials provided with the distribution.
492 * 3. All advertising materials mentioning features or use of this software
493 * must display the following acknowledgement:
494 * This product includes software developed by the University of
495 * California, Berkeley and its contributors.
496 * 4. Neither the name of the University nor the names of its contributors
497 * may be used to endorse or promote products derived from this software
498 * without specific prior written permission.
499 *
500 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
501 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
502 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
503 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
504 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
505 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
506 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
507 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
508 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
509 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
510 * SUCH DAMAGE.
511 */