blob: c9cf5ffb4e553cde3e53065557fab340c46034e9 [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 Andersene49d5ec2000-02-08 19:58:47 +00003 * $Id: ping.c,v 1.11 2000/02/08 19:58: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 Andersene49d5ec2000-02-08 19:58:47 +000093static const char *ping_usage = "ping host\n\n";
Eric Andersen19db07b1999-12-11 08:41:28 +000094
Erik Andersene49d5ec2000-02-08 19:58:47 +000095static char *hostname = NULL;
Eric Andersen19db07b1999-12-11 08:41:28 +000096
97static void noresp(int ign)
98{
Erik Andersene49d5ec2000-02-08 19:58:47 +000099 printf("No response from %s\n", hostname);
100 exit(0);
Eric Andersen19db07b1999-12-11 08:41:28 +0000101}
102
103static int ping(const char *host)
104{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000105 struct hostent *h;
106 struct sockaddr_in pingaddr;
107 struct icmp *pkt;
108 int pingsock, c;
109 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
Eric Andersen19db07b1999-12-11 08:41:28 +0000110
Erik Andersene49d5ec2000-02-08 19:58:47 +0000111 if ((pingsock = socket(AF_INET, SOCK_RAW, 1)) < 0) { /* 1 == ICMP */
112 perror("ping");
113 exit(1);
Eric Andersen19db07b1999-12-11 08:41:28 +0000114 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000115
116 /* drop root privs if running setuid */
117 setuid(getuid());
118
119 memset(&pingaddr, 0, sizeof(struct sockaddr_in));
120
121 pingaddr.sin_family = AF_INET;
122 if (!(h = gethostbyname(host))) {
123 fprintf(stderr, "ping: unknown host %s\n", host);
124 exit(1);
125 }
126 memcpy(&pingaddr.sin_addr, h->h_addr, sizeof(pingaddr.sin_addr));
127 hostname = h->h_name;
128
129 pkt = (struct icmp *) packet;
130 memset(pkt, 0, sizeof(packet));
131 pkt->icmp_type = ICMP_ECHO;
132 pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(packet));
133
134 c = sendto(pingsock, packet, sizeof(packet), 0,
135 (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in));
136
137 if (c < 0 || c != sizeof(packet)) {
138 if (c < 0)
139 perror("ping");
140 fprintf(stderr, "ping: write incomplete\n");
141 exit(1);
142 }
143
144 signal(SIGALRM, noresp);
145 alarm(5); /* give the host 5000ms to respond */
146 /* listen for replies */
147 while (1) {
148 struct sockaddr_in from;
149 size_t fromlen = sizeof(from);
150
151 if ((c = recvfrom(pingsock, packet, sizeof(packet), 0,
152 (struct sockaddr *) &from, &fromlen)) < 0) {
153 if (errno == EINTR)
154 continue;
155 perror("ping");
156 continue;
157 }
158 if (c >= 76) { /* ip + icmp */
159 struct iphdr *iphdr = (struct iphdr *) packet;
160
161 pkt = (struct icmp *) (packet + (iphdr->ihl << 2)); /* skip ip hdr */
162 if (pkt->icmp_type == ICMP_ECHOREPLY)
163 break;
164 }
165 }
166 printf("%s is alive!\n", hostname);
167 return (TRUE);
Eric Andersen19db07b1999-12-11 08:41:28 +0000168}
169
170extern int ping_main(int argc, char **argv)
171{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000172 argc--;
173 argv++;
174 if (argc < 1)
175 usage(ping_usage);
176 ping(*argv);
177 exit(TRUE);
Eric Andersen19db07b1999-12-11 08:41:28 +0000178}
179
Erik Andersene49d5ec2000-02-08 19:58:47 +0000180#else
Eric Andersen19db07b1999-12-11 08:41:28 +0000181/* full(er) version */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000182static const char *ping_usage = "ping [OPTION]... host\n\n"
183 "Send ICMP ECHO_REQUEST packets to network hosts.\n\n"
184 "Options:\n"
185 "\t-q\t\tQuiet mode, only displays output at start"
186
187 "\t\t\tand when finished.\n" "\t-c COUNT\tSend only COUNT pings.\n";
Eric Andersen19db07b1999-12-11 08:41:28 +0000188
189static char *hostname = NULL;
190static struct sockaddr_in pingaddr;
191static int pingsock = -1;
192
193static long ntransmitted = 0, nreceived = 0, nrepeats = 0, pingcount = 0;
194static int myid = 0, options = 0;
195static unsigned long tmin = ULONG_MAX, tmax = 0, tsum = 0;
196static char rcvd_tbl[MAX_DUP_CHK / 8];
197
198static void sendping(int);
199static void pingstats(int);
200static void unpack(char *, int, struct sockaddr_in *);
201
202static void ping(char *);
203
204/**************************************************************************/
205
Erik Andersene49d5ec2000-02-08 19:58:47 +0000206static void pingstats(int ign)
207{
208 signal(SIGINT, SIG_IGN);
209
210 printf("\n--- %s ping statistics ---\n", hostname);
211 printf("%ld packets transmitted, ", ntransmitted);
212 printf("%ld packets received, ", nreceived);
213 if (nrepeats)
214 printf("%ld duplicates, ", nrepeats);
215 if (ntransmitted)
216 printf("%ld%% packet loss\n",
217 (ntransmitted - nreceived) * 100 / ntransmitted);
218 if (nreceived)
219 printf("round-trip min/avg/max = %lu.%lu/%lu.%lu/%lu.%lu ms\n",
220 tmin / 10, tmin % 10,
221 (tsum / (nreceived + nrepeats)) / 10,
222 (tsum / (nreceived + nrepeats)) % 10, tmax / 10, tmax % 10);
223 exit(0);
Eric Andersen485b9551999-12-07 23:14:59 +0000224}
225
226static void sendping(int ign)
227{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000228 struct icmp *pkt;
229 int i;
230 char packet[DEFDATALEN + 8];
Eric Andersen485b9551999-12-07 23:14:59 +0000231
Erik Andersene49d5ec2000-02-08 19:58:47 +0000232 pkt = (struct icmp *) packet;
Eric Andersen485b9551999-12-07 23:14:59 +0000233
Erik Andersene49d5ec2000-02-08 19:58:47 +0000234 pkt->icmp_type = ICMP_ECHO;
235 pkt->icmp_code = 0;
236 pkt->icmp_cksum = 0;
237 pkt->icmp_seq = ntransmitted++;
238 pkt->icmp_id = myid;
239 CLR(pkt->icmp_seq % MAX_DUP_CHK);
Eric Andersen485b9551999-12-07 23:14:59 +0000240
Erik Andersene49d5ec2000-02-08 19:58:47 +0000241 gettimeofday((struct timeval *) &packet[8], NULL);
242 pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(packet));
Eric Andersen485b9551999-12-07 23:14:59 +0000243
Erik Andersene49d5ec2000-02-08 19:58:47 +0000244 i = sendto(pingsock, packet, sizeof(packet), 0,
245 (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in));
246
247 if (i < 0 || i != sizeof(packet)) {
248 if (i < 0)
249 perror("ping");
250 fprintf(stderr, "ping wrote %d chars; %d expected\n", i,
251 sizeof(packet));
252 exit(1);
253 }
254
255 signal(SIGALRM, sendping);
256 if (pingcount == 0 || ntransmitted < pingcount) { /* schedule next in 1s */
257 alarm(PINGINTERVAL);
258 } else { /* done, wait for the last ping to come back */
259 /* todo, don't necessarily need to wait so long... */
260 signal(SIGALRM, pingstats);
261 alarm(MAXWAIT);
262 }
Eric Andersen485b9551999-12-07 23:14:59 +0000263}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000264
Eric Andersen485b9551999-12-07 23:14:59 +0000265static void unpack(char *buf, int sz, struct sockaddr_in *from)
266{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000267 struct icmp *icmppkt;
268 struct iphdr *iphdr;
269 struct timeval tv, *tp;
270 int hlen, dupflag;
271 unsigned long triptime;
Eric Andersen485b9551999-12-07 23:14:59 +0000272
Erik Andersene49d5ec2000-02-08 19:58:47 +0000273 gettimeofday(&tv, NULL);
Eric Andersen485b9551999-12-07 23:14:59 +0000274
Erik Andersene49d5ec2000-02-08 19:58:47 +0000275 /* check IP header */
276 iphdr = (struct iphdr *) buf;
277 hlen = iphdr->ihl << 2;
278 /* discard if too short */
279 if (sz < (DEFDATALEN + ICMP_MINLEN))
280 return;
Eric Andersen485b9551999-12-07 23:14:59 +0000281
Erik Andersene49d5ec2000-02-08 19:58:47 +0000282 sz -= hlen;
283 icmppkt = (struct icmp *) (buf + hlen);
284
285 if (icmppkt->icmp_type == ICMP_ECHOREPLY) {
286 if (icmppkt->icmp_id != myid)
287 return; /* not our ping */
288 ++nreceived;
289 tp = (struct timeval *) icmppkt->icmp_data;
290
291 if ((tv.tv_usec -= tp->tv_usec) < 0) {
292 --tv.tv_sec;
293 tv.tv_usec += 1000000;
294 }
295 tv.tv_sec -= tp->tv_sec;
296
297 triptime = tv.tv_sec * 10000 + (tv.tv_usec / 100);
298 tsum += triptime;
299 if (triptime < tmin)
300 tmin = triptime;
301 if (triptime > tmax)
302 tmax = triptime;
303
304 if (TST(icmppkt->icmp_seq % MAX_DUP_CHK)) {
305 ++nrepeats;
306 --nreceived;
307 dupflag = 1;
308 } else {
309 SET(icmppkt->icmp_seq % MAX_DUP_CHK);
310 dupflag = 0;
311 }
312
313 if (options & O_QUIET)
314 return;
315
316 printf("%d bytes from %s: icmp_seq=%u", sz,
317 inet_ntoa(*(struct in_addr *) &from->sin_addr.s_addr),
318 icmppkt->icmp_seq);
319 printf(" ttl=%d", iphdr->ttl);
320 printf(" time=%lu.%lu ms", triptime / 10, triptime % 10);
321 if (dupflag)
322 printf(" (DUP!)");
323 printf("\n");
Eric Andersen485b9551999-12-07 23:14:59 +0000324 } else {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000325 fprintf(stderr,
326 "Warning: unknown ICMP packet received (not echo-reply)\n");
Eric Andersen485b9551999-12-07 23:14:59 +0000327 }
Eric Andersen485b9551999-12-07 23:14:59 +0000328}
329
330static void ping(char *host)
331{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000332 struct protoent *proto;
333 struct hostent *h;
334 char buf[MAXHOSTNAMELEN];
335 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
336 int sockopt;
337
338 proto = getprotobyname("icmp");
339 /* if getprotobyname failed, just silently force
340 * proto->p_proto to have the correct value for "icmp" */
341 if ((pingsock = socket(AF_INET, SOCK_RAW,
342 (proto ? proto->p_proto : 1))) < 0) { /* 1 == ICMP */
343 if (errno == EPERM) {
344 fprintf(stderr, "ping: permission denied. (are you root?)\n");
345 } else {
346 perror("ping");
347 }
348 exit(1);
Eric Andersen485b9551999-12-07 23:14:59 +0000349 }
Eric Andersen485b9551999-12-07 23:14:59 +0000350
Erik Andersene49d5ec2000-02-08 19:58:47 +0000351 /* drop root privs if running setuid */
352 setuid(getuid());
Eric Andersen485b9551999-12-07 23:14:59 +0000353
Erik Andersene49d5ec2000-02-08 19:58:47 +0000354 memset(&pingaddr, 0, sizeof(struct sockaddr_in));
Eric Andersen19db07b1999-12-11 08:41:28 +0000355
Erik Andersene49d5ec2000-02-08 19:58:47 +0000356 pingaddr.sin_family = AF_INET;
357 if (!(h = gethostbyname(host))) {
358 fprintf(stderr, "ping: unknown host %s\n", host);
359 exit(1);
Eric Andersen485b9551999-12-07 23:14:59 +0000360 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000361
362 if (h->h_addrtype != AF_INET) {
363 fprintf(stderr,
364 "ping: unknown address type; only AF_INET is currently supported.\n");
365 exit(1);
366 }
367
368 pingaddr.sin_family = AF_INET; /* h->h_addrtype */
369 memcpy(&pingaddr.sin_addr, h->h_addr, sizeof(pingaddr.sin_addr));
370 strncpy(buf, h->h_name, sizeof(buf) - 1);
371 hostname = buf;
372
373 /* enable broadcast pings */
374 sockopt = 1;
375 setsockopt(pingsock, SOL_SOCKET, SO_BROADCAST, (char *) &sockopt,
376 sizeof(sockopt));
377
378 /* set recv buf for broadcast pings */
379 sockopt = 48 * 1024;
380 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, (char *) &sockopt,
381 sizeof(sockopt));
382
383 printf("PING %s (%s): %d data bytes\n",
384 hostname,
385 inet_ntoa(*(struct in_addr *) &pingaddr.sin_addr.s_addr),
386 DEFDATALEN);
387
388 signal(SIGINT, pingstats);
389
390 /* start the ping's going ... */
391 sendping(0);
392
393 /* listen for replies */
394 while (1) {
395 struct sockaddr_in from;
396 size_t fromlen = sizeof(from);
397 int c;
398
399 if ((c = recvfrom(pingsock, packet, sizeof(packet), 0,
400 (struct sockaddr *) &from, &fromlen)) < 0) {
401 if (errno == EINTR)
402 continue;
403 perror("ping");
404 continue;
405 }
406 unpack(packet, c, &from);
407 if (pingcount > 0 && nreceived >= pingcount)
408 break;
409 }
410 pingstats(0);
Eric Andersen485b9551999-12-07 23:14:59 +0000411}
412
413extern int ping_main(int argc, char **argv)
414{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000415 char *thisarg;
Eric Andersen485b9551999-12-07 23:14:59 +0000416
Erik Andersene49d5ec2000-02-08 19:58:47 +0000417 argc--;
418 argv++;
419 options = 0;
420 /* Parse any options */
421 while (argc > 1) {
422 if (**argv != '-')
423 usage(ping_usage);
424 thisarg = *argv;
425 thisarg++;
426 switch (*thisarg) {
427 case 'q':
428 options |= O_QUIET;
429 break;
430 case 'c':
431 argc--;
432 argv++;
433 pingcount = atoi(*argv);
434 break;
435 default:
436 usage(ping_usage);
437 }
438 argc--;
439 argv++;
440 }
441 if (argc < 1)
442 usage(ping_usage);
443
444 myid = getpid() & 0xFFFF;
445 ping(*argv);
446 exit(TRUE);
Eric Andersen485b9551999-12-07 23:14:59 +0000447}
Eric Andersen19db07b1999-12-11 08:41:28 +0000448#endif
Eric Andersen485b9551999-12-07 23:14:59 +0000449
450/*
451 * Copyright (c) 1989 The Regents of the University of California.
452 * All rights reserved.
453 *
454 * This code is derived from software contributed to Berkeley by
455 * Mike Muuss.
456 *
457 * Redistribution and use in source and binary forms, with or without
458 * modification, are permitted provided that the following conditions
459 * are met:
460 * 1. Redistributions of source code must retain the above copyright
461 * notice, this list of conditions and the following disclaimer.
462 * 2. Redistributions in binary form must reproduce the above copyright
463 * notice, this list of conditions and the following disclaimer in the
464 * documentation and/or other materials provided with the distribution.
465 * 3. All advertising materials mentioning features or use of this software
466 * must display the following acknowledgement:
467 * This product includes software developed by the University of
468 * California, Berkeley and its contributors.
469 * 4. Neither the name of the University nor the names of its contributors
470 * may be used to endorse or promote products derived from this software
471 * without specific prior written permission.
472 *
473 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
474 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
475 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
476 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
477 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
478 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
479 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
480 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
481 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
482 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
483 * SUCH DAMAGE.
484 */