Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 2 | /* |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 3 | * $Id: ping.c,v 1.15 2000/05/12 19:41:47 erik Exp $ |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 4 | * 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 Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 57 | #define PINGINTERVAL 1 /* second */ |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 58 | |
| 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 Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 67 | /* common routines */ |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 68 | static int in_cksum(unsigned short *buf, int sz) |
| 69 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 70 | int nleft = sz; |
| 71 | int sum = 0; |
| 72 | unsigned short *w = buf; |
| 73 | unsigned short ans = 0; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 74 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 75 | while (nleft > 1) { |
| 76 | sum += *w++; |
| 77 | nleft -= 2; |
| 78 | } |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 79 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 80 | if (nleft == 1) { |
| 81 | *(unsigned char *) (&ans) = *(unsigned char *) w; |
| 82 | sum += ans; |
| 83 | } |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 84 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 85 | sum = (sum >> 16) + (sum & 0xFFFF); |
| 86 | sum += (sum >> 16); |
| 87 | ans = ~sum; |
| 88 | return (ans); |
| 89 | } |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 90 | |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 91 | /* simple version */ |
| 92 | #ifdef BB_SIMPLE_PING |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 93 | static 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 Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 98 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 99 | static char *hostname = NULL; |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 100 | |
| 101 | static void noresp(int ign) |
| 102 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 103 | printf("No response from %s\n", hostname); |
| 104 | exit(0); |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | static int ping(const char *host) |
| 108 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 109 | struct hostent *h; |
| 110 | struct sockaddr_in pingaddr; |
| 111 | struct icmp *pkt; |
| 112 | int pingsock, c; |
| 113 | char packet[DEFDATALEN + MAXIPLEN + MAXICMPLEN]; |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 114 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 115 | if ((pingsock = socket(AF_INET, SOCK_RAW, 1)) < 0) { /* 1 == ICMP */ |
| 116 | perror("ping"); |
| 117 | exit(1); |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 118 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 119 | |
| 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 Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | extern int ping_main(int argc, char **argv) |
| 175 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 176 | argc--; |
| 177 | argv++; |
| 178 | if (argc < 1) |
| 179 | usage(ping_usage); |
| 180 | ping(*argv); |
| 181 | exit(TRUE); |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 182 | } |
| 183 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 184 | #else |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 185 | /* full(er) version */ |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 186 | static 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 Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 189 | "Options:\n" |
Erik Andersen | 9cf3bfa | 2000-04-13 18:49:43 +0000 | [diff] [blame] | 190 | "\t-c COUNT\tSend only COUNT pings.\n" |
| 191 | "\t-q\t\tQuiet mode, only displays output at start\n" |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 192 | "\t\t\tand when finished.\n" |
| 193 | #endif |
| 194 | ; |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 195 | |
| 196 | static char *hostname = NULL; |
| 197 | static struct sockaddr_in pingaddr; |
| 198 | static int pingsock = -1; |
| 199 | |
| 200 | static long ntransmitted = 0, nreceived = 0, nrepeats = 0, pingcount = 0; |
| 201 | static int myid = 0, options = 0; |
| 202 | static unsigned long tmin = ULONG_MAX, tmax = 0, tsum = 0; |
| 203 | static char rcvd_tbl[MAX_DUP_CHK / 8]; |
| 204 | |
| 205 | static void sendping(int); |
| 206 | static void pingstats(int); |
| 207 | static void unpack(char *, int, struct sockaddr_in *); |
| 208 | |
| 209 | static void ping(char *); |
| 210 | |
| 211 | /**************************************************************************/ |
| 212 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 213 | static 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 Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | static void sendping(int ign) |
| 234 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 235 | struct icmp *pkt; |
| 236 | int i; |
| 237 | char packet[DEFDATALEN + 8]; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 238 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 239 | pkt = (struct icmp *) packet; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 240 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 241 | 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 Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 247 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 248 | gettimeofday((struct timeval *) &packet[8], NULL); |
| 249 | pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(packet)); |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 250 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 251 | 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 Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 258 | (int)sizeof(packet)); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 259 | 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 Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 270 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 271 | |
Erik Andersen | 227a59b | 2000-04-25 23:24:55 +0000 | [diff] [blame] | 272 | static 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 Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 292 | static void unpack(char *buf, int sz, struct sockaddr_in *from) |
| 293 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 294 | struct icmp *icmppkt; |
| 295 | struct iphdr *iphdr; |
| 296 | struct timeval tv, *tp; |
| 297 | int hlen, dupflag; |
| 298 | unsigned long triptime; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 299 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 300 | gettimeofday(&tv, NULL); |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 301 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 302 | /* 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 Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 308 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 309 | sz -= hlen; |
| 310 | icmppkt = (struct icmp *) (buf + hlen); |
| 311 | |
Erik Andersen | 227a59b | 2000-04-25 23:24:55 +0000 | [diff] [blame] | 312 | if (icmppkt->icmp_id != myid) |
| 313 | return; /* not our ping */ |
| 314 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 315 | if (icmppkt->icmp_type == ICMP_ECHOREPLY) { |
Erik Andersen | 227a59b | 2000-04-25 23:24:55 +0000 | [diff] [blame] | 316 | ++nreceived; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 317 | 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 Andersen | 227a59b | 2000-04-25 23:24:55 +0000 | [diff] [blame] | 352 | } 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 Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | static void ping(char *host) |
| 360 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 361 | 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 Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 378 | } |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 379 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 380 | /* drop root privs if running setuid */ |
| 381 | setuid(getuid()); |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 382 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 383 | memset(&pingaddr, 0, sizeof(struct sockaddr_in)); |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 384 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 385 | pingaddr.sin_family = AF_INET; |
| 386 | if (!(h = gethostbyname(host))) { |
| 387 | fprintf(stderr, "ping: unknown host %s\n", host); |
| 388 | exit(1); |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 389 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 390 | |
| 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 Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 425 | socklen_t fromlen = (socklen_t) sizeof(from); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 426 | 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 Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | extern int ping_main(int argc, char **argv) |
| 443 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 444 | char *thisarg; |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 445 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 446 | argc--; |
| 447 | argv++; |
| 448 | options = 0; |
| 449 | /* Parse any options */ |
Erik Andersen | 9cf3bfa | 2000-04-13 18:49:43 +0000 | [diff] [blame] | 450 | while (argc >= 1 && **argv == '-') { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 451 | 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 Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 474 | } |
Eric Andersen | 19db07b | 1999-12-11 08:41:28 +0000 | [diff] [blame] | 475 | #endif |
Eric Andersen | 485b955 | 1999-12-07 23:14:59 +0000 | [diff] [blame] | 476 | |
| 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 | */ |