blob: af109cf0a9a84b6b3952788a05d1561f4c5a097d [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/*
Matt Kraai3e856ce2000-12-01 02:55:13 +00003 * $Id: ping.c,v 1.27 2000/12/01 02:55:13 kraai 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
Eric Andersen3570a342000-09-25 21:45:58 +000034#include "busybox.h"
Eric Andersen485b9551999-12-07 23:14:59 +000035#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
Eric Andersen9ca57d32000-06-19 18:51:53 +000051
52/* It turns out that libc5 doesn't have proper icmp support
53 * built into it header files, so we have to supplement it */
Eric Andersen999bf722000-07-09 06:59:58 +000054#if ! defined __GLIBC__ && ! defined __UCLIBC__
Eric Andersen9ca57d32000-06-19 18:51:53 +000055typedef unsigned int socklen_t;
56
57#define ICMP_MINLEN 8 /* abs minimum */
58
59struct icmp_ra_addr
60{
61 u_int32_t ira_addr;
62 u_int32_t ira_preference;
63};
64
65
66struct icmp
67{
68 u_int8_t icmp_type; /* type of message, see below */
69 u_int8_t icmp_code; /* type sub code */
70 u_int16_t icmp_cksum; /* ones complement checksum of struct */
71 union
72 {
73 u_char ih_pptr; /* ICMP_PARAMPROB */
74 struct in_addr ih_gwaddr; /* gateway address */
75 struct ih_idseq /* echo datagram */
76 {
77 u_int16_t icd_id;
78 u_int16_t icd_seq;
79 } ih_idseq;
80 u_int32_t ih_void;
81
82 /* ICMP_UNREACH_NEEDFRAG -- Path MTU Discovery (RFC1191) */
83 struct ih_pmtu
84 {
85 u_int16_t ipm_void;
86 u_int16_t ipm_nextmtu;
87 } ih_pmtu;
88
89 struct ih_rtradv
90 {
91 u_int8_t irt_num_addrs;
92 u_int8_t irt_wpa;
93 u_int16_t irt_lifetime;
94 } ih_rtradv;
95 } icmp_hun;
96#define icmp_pptr icmp_hun.ih_pptr
97#define icmp_gwaddr icmp_hun.ih_gwaddr
98#define icmp_id icmp_hun.ih_idseq.icd_id
99#define icmp_seq icmp_hun.ih_idseq.icd_seq
100#define icmp_void icmp_hun.ih_void
101#define icmp_pmvoid icmp_hun.ih_pmtu.ipm_void
102#define icmp_nextmtu icmp_hun.ih_pmtu.ipm_nextmtu
103#define icmp_num_addrs icmp_hun.ih_rtradv.irt_num_addrs
104#define icmp_wpa icmp_hun.ih_rtradv.irt_wpa
105#define icmp_lifetime icmp_hun.ih_rtradv.irt_lifetime
106 union
107 {
108 struct
109 {
110 u_int32_t its_otime;
111 u_int32_t its_rtime;
112 u_int32_t its_ttime;
113 } id_ts;
114 struct
115 {
116 struct ip idi_ip;
117 /* options and then 64 bits of data */
118 } id_ip;
119 struct icmp_ra_addr id_radv;
120 u_int32_t id_mask;
121 u_int8_t id_data[1];
122 } icmp_dun;
123#define icmp_otime icmp_dun.id_ts.its_otime
124#define icmp_rtime icmp_dun.id_ts.its_rtime
125#define icmp_ttime icmp_dun.id_ts.its_ttime
126#define icmp_ip icmp_dun.id_ip.idi_ip
127#define icmp_radv icmp_dun.id_radv
128#define icmp_mask icmp_dun.id_mask
129#define icmp_data icmp_dun.id_data
130};
131#endif
132
Eric Andersen485b9551999-12-07 23:14:59 +0000133#define DEFDATALEN 56
134#define MAXIPLEN 60
135#define MAXICMPLEN 76
136#define MAXPACKET 65468
137#define MAX_DUP_CHK (8 * 128)
138#define MAXWAIT 10
Erik Andersene49d5ec2000-02-08 19:58:47 +0000139#define PINGINTERVAL 1 /* second */
Eric Andersen485b9551999-12-07 23:14:59 +0000140
141#define O_QUIET (1 << 0)
142
143#define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */
144#define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */
145#define SET(bit) (A(bit) |= B(bit))
146#define CLR(bit) (A(bit) &= (~B(bit)))
147#define TST(bit) (A(bit) & B(bit))
148
Pavel Roskin0024abc2000-06-07 20:38:15 +0000149static void ping(const char *host);
150
Eric Andersen19db07b1999-12-11 08:41:28 +0000151/* common routines */
Eric Andersen485b9551999-12-07 23:14:59 +0000152static int in_cksum(unsigned short *buf, int sz)
153{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000154 int nleft = sz;
155 int sum = 0;
156 unsigned short *w = buf;
157 unsigned short ans = 0;
Eric Andersen485b9551999-12-07 23:14:59 +0000158
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159 while (nleft > 1) {
160 sum += *w++;
161 nleft -= 2;
162 }
Eric Andersen485b9551999-12-07 23:14:59 +0000163
Erik Andersene49d5ec2000-02-08 19:58:47 +0000164 if (nleft == 1) {
165 *(unsigned char *) (&ans) = *(unsigned char *) w;
166 sum += ans;
167 }
Eric Andersen485b9551999-12-07 23:14:59 +0000168
Erik Andersene49d5ec2000-02-08 19:58:47 +0000169 sum = (sum >> 16) + (sum & 0xFFFF);
170 sum += (sum >> 16);
171 ans = ~sum;
172 return (ans);
173}
Eric Andersen485b9551999-12-07 23:14:59 +0000174
Eric Andersen19db07b1999-12-11 08:41:28 +0000175/* simple version */
Eric Andersen03f4c272000-07-06 23:10:29 +0000176#ifdef BB_FEATURE_SIMPLE_PING
Erik Andersene49d5ec2000-02-08 19:58:47 +0000177static char *hostname = NULL;
Eric Andersen19db07b1999-12-11 08:41:28 +0000178
179static void noresp(int ign)
180{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000181 printf("No response from %s\n", hostname);
182 exit(0);
Eric Andersen19db07b1999-12-11 08:41:28 +0000183}
184
Pavel Roskin0024abc2000-06-07 20:38:15 +0000185static void ping(const char *host)
Eric Andersen19db07b1999-12-11 08:41:28 +0000186{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000187 struct hostent *h;
188 struct sockaddr_in pingaddr;
189 struct icmp *pkt;
190 int pingsock, c;
191 char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN];
Eric Andersen19db07b1999-12-11 08:41:28 +0000192
Erik Andersene49d5ec2000-02-08 19:58:47 +0000193 if ((pingsock = socket(AF_INET, SOCK_RAW, 1)) < 0) { /* 1 == ICMP */
Pavel Roskin0024abc2000-06-07 20:38:15 +0000194 perror("ping: creating a raw socket");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000195 exit(1);
Eric Andersen19db07b1999-12-11 08:41:28 +0000196 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000197
198 /* drop root privs if running setuid */
199 setuid(getuid());
200
201 memset(&pingaddr, 0, sizeof(struct sockaddr_in));
202
203 pingaddr.sin_family = AF_INET;
204 if (!(h = gethostbyname(host))) {
Matt Kraaid537a952000-07-14 01:51:25 +0000205 errorMsg("unknown host %s\n", host);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000206 exit(1);
207 }
208 memcpy(&pingaddr.sin_addr, h->h_addr, sizeof(pingaddr.sin_addr));
209 hostname = h->h_name;
210
211 pkt = (struct icmp *) packet;
212 memset(pkt, 0, sizeof(packet));
213 pkt->icmp_type = ICMP_ECHO;
214 pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(packet));
215
216 c = sendto(pingsock, packet, sizeof(packet), 0,
217 (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in));
218
219 if (c < 0 || c != sizeof(packet)) {
220 if (c < 0)
Pavel Roskin0024abc2000-06-07 20:38:15 +0000221 perror("ping: sendto");
Matt Kraaid537a952000-07-14 01:51:25 +0000222 errorMsg("write incomplete\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000223 exit(1);
224 }
225
226 signal(SIGALRM, noresp);
227 alarm(5); /* give the host 5000ms to respond */
228 /* listen for replies */
229 while (1) {
230 struct sockaddr_in from;
231 size_t fromlen = sizeof(from);
232
233 if ((c = recvfrom(pingsock, packet, sizeof(packet), 0,
234 (struct sockaddr *) &from, &fromlen)) < 0) {
235 if (errno == EINTR)
236 continue;
Pavel Roskin0024abc2000-06-07 20:38:15 +0000237 perror("ping: recvfrom");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000238 continue;
239 }
240 if (c >= 76) { /* ip + icmp */
241 struct iphdr *iphdr = (struct iphdr *) packet;
242
243 pkt = (struct icmp *) (packet + (iphdr->ihl << 2)); /* skip ip hdr */
244 if (pkt->icmp_type == ICMP_ECHOREPLY)
245 break;
246 }
247 }
248 printf("%s is alive!\n", hostname);
Pavel Roskin0024abc2000-06-07 20:38:15 +0000249 return;
Eric Andersen19db07b1999-12-11 08:41:28 +0000250}
251
252extern int ping_main(int argc, char **argv)
253{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000254 argc--;
255 argv++;
256 if (argc < 1)
257 usage(ping_usage);
258 ping(*argv);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000259 return EXIT_SUCCESS;
Eric Andersen19db07b1999-12-11 08:41:28 +0000260}
261
Eric Andersen03f4c272000-07-06 23:10:29 +0000262#else /* ! BB_FEATURE_SIMPLE_PING */
Eric Andersen19db07b1999-12-11 08:41:28 +0000263/* full(er) version */
Eric Andersen19db07b1999-12-11 08:41:28 +0000264static char *hostname = NULL;
265static struct sockaddr_in pingaddr;
266static int pingsock = -1;
Pavel Roskin0024abc2000-06-07 20:38:15 +0000267static int datalen = DEFDATALEN;
Eric Andersen19db07b1999-12-11 08:41:28 +0000268
269static long ntransmitted = 0, nreceived = 0, nrepeats = 0, pingcount = 0;
270static int myid = 0, options = 0;
271static unsigned long tmin = ULONG_MAX, tmax = 0, tsum = 0;
272static char rcvd_tbl[MAX_DUP_CHK / 8];
273
274static void sendping(int);
275static void pingstats(int);
276static void unpack(char *, int, struct sockaddr_in *);
277
Eric Andersen19db07b1999-12-11 08:41:28 +0000278/**************************************************************************/
279
Eric Andersenfad04fd2000-07-14 06:49:52 +0000280static void pingstats(int junk)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000281{
Matt Kraaib938e2f2000-09-20 04:33:30 +0000282 int status;
283
Erik Andersene49d5ec2000-02-08 19:58:47 +0000284 signal(SIGINT, SIG_IGN);
285
286 printf("\n--- %s ping statistics ---\n", hostname);
287 printf("%ld packets transmitted, ", ntransmitted);
288 printf("%ld packets received, ", nreceived);
289 if (nrepeats)
290 printf("%ld duplicates, ", nrepeats);
291 if (ntransmitted)
292 printf("%ld%% packet loss\n",
293 (ntransmitted - nreceived) * 100 / ntransmitted);
294 if (nreceived)
295 printf("round-trip min/avg/max = %lu.%lu/%lu.%lu/%lu.%lu ms\n",
296 tmin / 10, tmin % 10,
297 (tsum / (nreceived + nrepeats)) / 10,
298 (tsum / (nreceived + nrepeats)) % 10, tmax / 10, tmax % 10);
Matt Kraaib938e2f2000-09-20 04:33:30 +0000299 if (nreceived != 0)
300 status = EXIT_SUCCESS;
301 else
302 status = EXIT_FAILURE;
303 exit(status);
Eric Andersen485b9551999-12-07 23:14:59 +0000304}
305
Eric Andersenfad04fd2000-07-14 06:49:52 +0000306static void sendping(int junk)
Eric Andersen485b9551999-12-07 23:14:59 +0000307{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000308 struct icmp *pkt;
309 int i;
Pavel Roskin0024abc2000-06-07 20:38:15 +0000310 char packet[datalen + 8];
Eric Andersen485b9551999-12-07 23:14:59 +0000311
Erik Andersene49d5ec2000-02-08 19:58:47 +0000312 pkt = (struct icmp *) packet;
Eric Andersen485b9551999-12-07 23:14:59 +0000313
Erik Andersene49d5ec2000-02-08 19:58:47 +0000314 pkt->icmp_type = ICMP_ECHO;
315 pkt->icmp_code = 0;
316 pkt->icmp_cksum = 0;
317 pkt->icmp_seq = ntransmitted++;
318 pkt->icmp_id = myid;
319 CLR(pkt->icmp_seq % MAX_DUP_CHK);
Eric Andersen485b9551999-12-07 23:14:59 +0000320
Erik Andersene49d5ec2000-02-08 19:58:47 +0000321 gettimeofday((struct timeval *) &packet[8], NULL);
322 pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(packet));
Eric Andersen485b9551999-12-07 23:14:59 +0000323
Erik Andersene49d5ec2000-02-08 19:58:47 +0000324 i = sendto(pingsock, packet, sizeof(packet), 0,
325 (struct sockaddr *) &pingaddr, sizeof(struct sockaddr_in));
326
Pavel Roskin0024abc2000-06-07 20:38:15 +0000327 if (i < 0)
Matt Kraaibe84cd42000-07-12 17:02:35 +0000328 fatalError("sendto: %s\n", strerror(errno));
Eric Andersenfad04fd2000-07-14 06:49:52 +0000329 else if ((size_t)i != sizeof(packet))
Pavel Roskin0024abc2000-06-07 20:38:15 +0000330 fatalError("ping wrote %d chars; %d expected\n", i,
331 (int)sizeof(packet));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000332
333 signal(SIGALRM, sendping);
334 if (pingcount == 0 || ntransmitted < pingcount) { /* schedule next in 1s */
335 alarm(PINGINTERVAL);
336 } else { /* done, wait for the last ping to come back */
337 /* todo, don't necessarily need to wait so long... */
338 signal(SIGALRM, pingstats);
339 alarm(MAXWAIT);
340 }
Eric Andersen485b9551999-12-07 23:14:59 +0000341}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000342
Erik Andersen227a59b2000-04-25 23:24:55 +0000343static char *icmp_type_name (int id)
344{
345 switch (id) {
346 case ICMP_ECHOREPLY: return "Echo Reply";
347 case ICMP_DEST_UNREACH: return "Destination Unreachable";
348 case ICMP_SOURCE_QUENCH: return "Source Quench";
349 case ICMP_REDIRECT: return "Redirect (change route)";
350 case ICMP_ECHO: return "Echo Request";
351 case ICMP_TIME_EXCEEDED: return "Time Exceeded";
352 case ICMP_PARAMETERPROB: return "Parameter Problem";
353 case ICMP_TIMESTAMP: return "Timestamp Request";
354 case ICMP_TIMESTAMPREPLY: return "Timestamp Reply";
355 case ICMP_INFO_REQUEST: return "Information Request";
356 case ICMP_INFO_REPLY: return "Information Reply";
357 case ICMP_ADDRESS: return "Address Mask Request";
358 case ICMP_ADDRESSREPLY: return "Address Mask Reply";
359 default: return "unknown ICMP type";
360 }
361}
362
Eric Andersen485b9551999-12-07 23:14:59 +0000363static void unpack(char *buf, int sz, struct sockaddr_in *from)
364{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000365 struct icmp *icmppkt;
366 struct iphdr *iphdr;
367 struct timeval tv, *tp;
368 int hlen, dupflag;
369 unsigned long triptime;
Eric Andersen485b9551999-12-07 23:14:59 +0000370
Erik Andersene49d5ec2000-02-08 19:58:47 +0000371 gettimeofday(&tv, NULL);
Eric Andersen485b9551999-12-07 23:14:59 +0000372
Erik Andersene49d5ec2000-02-08 19:58:47 +0000373 /* check IP header */
374 iphdr = (struct iphdr *) buf;
375 hlen = iphdr->ihl << 2;
376 /* discard if too short */
Pavel Roskin0024abc2000-06-07 20:38:15 +0000377 if (sz < (datalen + ICMP_MINLEN))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000378 return;
Eric Andersen485b9551999-12-07 23:14:59 +0000379
Erik Andersene49d5ec2000-02-08 19:58:47 +0000380 sz -= hlen;
381 icmppkt = (struct icmp *) (buf + hlen);
382
Erik Andersen227a59b2000-04-25 23:24:55 +0000383 if (icmppkt->icmp_id != myid)
384 return; /* not our ping */
385
Erik Andersene49d5ec2000-02-08 19:58:47 +0000386 if (icmppkt->icmp_type == ICMP_ECHOREPLY) {
Erik Andersen227a59b2000-04-25 23:24:55 +0000387 ++nreceived;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000388 tp = (struct timeval *) icmppkt->icmp_data;
389
390 if ((tv.tv_usec -= tp->tv_usec) < 0) {
391 --tv.tv_sec;
392 tv.tv_usec += 1000000;
393 }
394 tv.tv_sec -= tp->tv_sec;
395
396 triptime = tv.tv_sec * 10000 + (tv.tv_usec / 100);
397 tsum += triptime;
398 if (triptime < tmin)
399 tmin = triptime;
400 if (triptime > tmax)
401 tmax = triptime;
402
403 if (TST(icmppkt->icmp_seq % MAX_DUP_CHK)) {
404 ++nrepeats;
405 --nreceived;
406 dupflag = 1;
407 } else {
408 SET(icmppkt->icmp_seq % MAX_DUP_CHK);
409 dupflag = 0;
410 }
411
412 if (options & O_QUIET)
413 return;
414
415 printf("%d bytes from %s: icmp_seq=%u", sz,
416 inet_ntoa(*(struct in_addr *) &from->sin_addr.s_addr),
417 icmppkt->icmp_seq);
418 printf(" ttl=%d", iphdr->ttl);
419 printf(" time=%lu.%lu ms", triptime / 10, triptime % 10);
420 if (dupflag)
421 printf(" (DUP!)");
422 printf("\n");
Erik Andersen227a59b2000-04-25 23:24:55 +0000423 } else
424 if (icmppkt->icmp_type != ICMP_ECHO)
Matt Kraaid537a952000-07-14 01:51:25 +0000425 errorMsg("Warning: Got ICMP %d (%s)\n",
Erik Andersen227a59b2000-04-25 23:24:55 +0000426 icmppkt->icmp_type, icmp_type_name (icmppkt->icmp_type));
Eric Andersen485b9551999-12-07 23:14:59 +0000427}
428
Pavel Roskin0024abc2000-06-07 20:38:15 +0000429static void ping(const char *host)
Eric Andersen485b9551999-12-07 23:14:59 +0000430{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000431 struct protoent *proto;
432 struct hostent *h;
433 char buf[MAXHOSTNAMELEN];
Pavel Roskin0024abc2000-06-07 20:38:15 +0000434 char packet[datalen + MAXIPLEN + MAXICMPLEN];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000435 int sockopt;
436
437 proto = getprotobyname("icmp");
438 /* if getprotobyname failed, just silently force
439 * proto->p_proto to have the correct value for "icmp" */
440 if ((pingsock = socket(AF_INET, SOCK_RAW,
441 (proto ? proto->p_proto : 1))) < 0) { /* 1 == ICMP */
442 if (errno == EPERM) {
Matt Kraaid537a952000-07-14 01:51:25 +0000443 errorMsg("permission denied. (are you root?)\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000444 } else {
Pavel Roskin0024abc2000-06-07 20:38:15 +0000445 perror("ping: creating a raw socket");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000446 }
447 exit(1);
Eric Andersen485b9551999-12-07 23:14:59 +0000448 }
Eric Andersen485b9551999-12-07 23:14:59 +0000449
Erik Andersene49d5ec2000-02-08 19:58:47 +0000450 /* drop root privs if running setuid */
451 setuid(getuid());
Eric Andersen485b9551999-12-07 23:14:59 +0000452
Erik Andersene49d5ec2000-02-08 19:58:47 +0000453 memset(&pingaddr, 0, sizeof(struct sockaddr_in));
Eric Andersen19db07b1999-12-11 08:41:28 +0000454
Erik Andersene49d5ec2000-02-08 19:58:47 +0000455 pingaddr.sin_family = AF_INET;
456 if (!(h = gethostbyname(host))) {
Matt Kraaid537a952000-07-14 01:51:25 +0000457 errorMsg("unknown host %s\n", host);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000458 exit(1);
Eric Andersen485b9551999-12-07 23:14:59 +0000459 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000460
461 if (h->h_addrtype != AF_INET) {
Matt Kraaid537a952000-07-14 01:51:25 +0000462 errorMsg("unknown address type; only AF_INET is currently supported.\n");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000463 exit(1);
464 }
465
466 pingaddr.sin_family = AF_INET; /* h->h_addrtype */
467 memcpy(&pingaddr.sin_addr, h->h_addr, sizeof(pingaddr.sin_addr));
468 strncpy(buf, h->h_name, sizeof(buf) - 1);
469 hostname = buf;
470
471 /* enable broadcast pings */
472 sockopt = 1;
473 setsockopt(pingsock, SOL_SOCKET, SO_BROADCAST, (char *) &sockopt,
474 sizeof(sockopt));
475
476 /* set recv buf for broadcast pings */
477 sockopt = 48 * 1024;
478 setsockopt(pingsock, SOL_SOCKET, SO_RCVBUF, (char *) &sockopt,
479 sizeof(sockopt));
480
481 printf("PING %s (%s): %d data bytes\n",
482 hostname,
483 inet_ntoa(*(struct in_addr *) &pingaddr.sin_addr.s_addr),
Pavel Roskin0024abc2000-06-07 20:38:15 +0000484 datalen);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000485
486 signal(SIGINT, pingstats);
487
488 /* start the ping's going ... */
489 sendping(0);
490
491 /* listen for replies */
492 while (1) {
493 struct sockaddr_in from;
Erik Andersen1d1d9502000-04-21 01:26:49 +0000494 socklen_t fromlen = (socklen_t) sizeof(from);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000495 int c;
496
497 if ((c = recvfrom(pingsock, packet, sizeof(packet), 0,
498 (struct sockaddr *) &from, &fromlen)) < 0) {
499 if (errno == EINTR)
500 continue;
Pavel Roskin0024abc2000-06-07 20:38:15 +0000501 perror("ping: recvfrom");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000502 continue;
503 }
504 unpack(packet, c, &from);
505 if (pingcount > 0 && nreceived >= pingcount)
506 break;
507 }
508 pingstats(0);
Eric Andersen485b9551999-12-07 23:14:59 +0000509}
510
511extern int ping_main(int argc, char **argv)
512{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000513 char *thisarg;
Eric Andersen485b9551999-12-07 23:14:59 +0000514
Erik Andersene49d5ec2000-02-08 19:58:47 +0000515 argc--;
516 argv++;
517 options = 0;
518 /* Parse any options */
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000519 while (argc >= 1 && **argv == '-') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000520 thisarg = *argv;
521 thisarg++;
522 switch (*thisarg) {
523 case 'q':
524 options |= O_QUIET;
525 break;
526 case 'c':
Pavel Roskin0024abc2000-06-07 20:38:15 +0000527 if (--argc <= 0)
528 usage(ping_usage);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000529 argv++;
530 pingcount = atoi(*argv);
531 break;
Pavel Roskin0024abc2000-06-07 20:38:15 +0000532 case 's':
533 if (--argc <= 0)
534 usage(ping_usage);
535 argv++;
536 datalen = atoi(*argv);
537 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000538 default:
539 usage(ping_usage);
540 }
541 argc--;
542 argv++;
543 }
544 if (argc < 1)
545 usage(ping_usage);
546
547 myid = getpid() & 0xFFFF;
548 ping(*argv);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000549 return EXIT_SUCCESS;
Eric Andersen485b9551999-12-07 23:14:59 +0000550}
Eric Andersen03f4c272000-07-06 23:10:29 +0000551#endif /* ! BB_FEATURE_SIMPLE_PING */
Eric Andersen485b9551999-12-07 23:14:59 +0000552
553/*
554 * Copyright (c) 1989 The Regents of the University of California.
555 * All rights reserved.
556 *
557 * This code is derived from software contributed to Berkeley by
558 * Mike Muuss.
559 *
560 * Redistribution and use in source and binary forms, with or without
561 * modification, are permitted provided that the following conditions
562 * are met:
563 * 1. Redistributions of source code must retain the above copyright
564 * notice, this list of conditions and the following disclaimer.
565 * 2. Redistributions in binary form must reproduce the above copyright
566 * notice, this list of conditions and the following disclaimer in the
567 * documentation and/or other materials provided with the distribution.
Eric Andersen4e573f42000-11-14 23:29:24 +0000568 *
569 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
570 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
571 *
Eric Andersen485b9551999-12-07 23:14:59 +0000572 * 4. Neither the name of the University nor the names of its contributors
573 * may be used to endorse or promote products derived from this software
574 * without specific prior written permission.
575 *
576 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
577 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
578 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
579 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
580 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
581 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
582 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
583 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
584 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
585 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
586 * SUCH DAMAGE.
587 */