Capitalize "Monitoring Plugins"
[monitoring-plugins.git] / plugins-root / check_icmp.c
blob4b4197d885ca95634078a68a9874ae6f99dcba9c
1 /*****************************************************************************
2 *
3 * Monitoring check_icmp plugin
4 *
5 * License: GPL
6 * Copyright (c) 2005-2008 Monitoring Plugins Development Team
7 * Original Author : Andreas Ericsson <ae@op5.se>
8 *
9 * Description:
11 * This file contains the check_icmp plugin
13 * Relevant RFC's: 792 (ICMP), 791 (IP)
15 * This program was modeled somewhat after the check_icmp program,
16 * which was in turn a hack of fping (www.fping.org) but has been
17 * completely rewritten since to generate higher precision rta values,
18 * and support several different modes as well as setting ttl to control.
19 * redundant routes. The only remainders of fping is currently a few
20 * function names.
23 * This program is free software: you can redistribute it and/or modify
24 * it under the terms of the GNU General Public License as published by
25 * the Free Software Foundation, either version 3 of the License, or
26 * (at your option) any later version.
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
33 * You should have received a copy of the GNU General Public License
34 * along with this program. If not, see <http://www.gnu.org/licenses/>.
37 *****************************************************************************/
39 /* progname may change */
40 /* char *progname = "check_icmp"; */
41 char *progname;
42 const char *copyright = "2005-2008";
43 const char *email = "devel@monitoring-plugins.org";
45 /** Monitoring Plugins basic includes */
46 #include "common.h"
47 #include "netutils.h"
48 #include "utils.h"
50 #if HAVE_SYS_SOCKIO_H
51 #include <sys/sockio.h>
52 #endif
53 #include <sys/ioctl.h>
54 #include <sys/time.h>
55 #include <sys/types.h>
56 #include <stdio.h>
57 #include <stdlib.h>
58 #include <stdarg.h>
59 #include <unistd.h>
60 #include <stddef.h>
61 #include <errno.h>
62 #include <string.h>
63 #include <ctype.h>
64 #include <netdb.h>
65 #include <sys/socket.h>
66 #include <net/if.h>
67 #include <netinet/in_systm.h>
68 #include <netinet/in.h>
69 #include <netinet/ip.h>
70 #include <netinet/ip_icmp.h>
71 #include <arpa/inet.h>
72 #include <signal.h>
73 #include <float.h>
76 /** sometimes undefined system macros (quite a few, actually) **/
77 #ifndef MAXTTL
78 # define MAXTTL 255
79 #endif
80 #ifndef INADDR_NONE
81 # define INADDR_NONE (in_addr_t)(-1)
82 #endif
84 #ifndef SOL_IP
85 #define SOL_IP 0
86 #endif
88 /* we bundle these in one #ifndef, since they're all from BSD
89 * Put individual #ifndef's around those that bother you */
90 #ifndef ICMP_UNREACH_NET_UNKNOWN
91 # define ICMP_UNREACH_NET_UNKNOWN 6
92 # define ICMP_UNREACH_HOST_UNKNOWN 7
93 # define ICMP_UNREACH_ISOLATED 8
94 # define ICMP_UNREACH_NET_PROHIB 9
95 # define ICMP_UNREACH_HOST_PROHIB 10
96 # define ICMP_UNREACH_TOSNET 11
97 # define ICMP_UNREACH_TOSHOST 12
98 #endif
99 /* tru64 has the ones above, but not these */
100 #ifndef ICMP_UNREACH_FILTER_PROHIB
101 # define ICMP_UNREACH_FILTER_PROHIB 13
102 # define ICMP_UNREACH_HOST_PRECEDENCE 14
103 # define ICMP_UNREACH_PRECEDENCE_CUTOFF 15
104 #endif
106 #ifndef DBL_MAX
107 # define DBL_MAX 9.9999999999e999
108 #endif
110 typedef unsigned short range_t; /* type for get_range() -- unimplemented */
112 typedef struct rta_host {
113 unsigned short id; /* id in **table, and icmp pkts */
114 char *name; /* arg used for adding this host */
115 char *msg; /* icmp error message, if any */
116 struct sockaddr_in saddr_in; /* the address of this host */
117 struct in_addr error_addr; /* stores address of error replies */
118 unsigned long long time_waited; /* total time waited, in usecs */
119 unsigned int icmp_sent, icmp_recv, icmp_lost; /* counters */
120 unsigned char icmp_type, icmp_code; /* type and code from errors */
121 unsigned short flags; /* control/status flags */
122 double rta; /* measured RTA */
123 double rtmax; /* max rtt */
124 double rtmin; /* min rtt */
125 unsigned char pl; /* measured packet loss */
126 struct rta_host *next; /* linked list */
127 } rta_host;
129 #define FLAG_LOST_CAUSE 0x01 /* decidedly dead target. */
131 /* threshold structure. all values are maximum allowed, exclusive */
132 typedef struct threshold {
133 unsigned char pl; /* max allowed packet loss in percent */
134 unsigned int rta; /* roundtrip time average, microseconds */
135 } threshold;
137 /* the data structure */
138 typedef struct icmp_ping_data {
139 struct timeval stime; /* timestamp (saved in protocol struct as well) */
140 unsigned short ping_id;
141 } icmp_ping_data;
143 /* the different modes of this program are as follows:
144 * MODE_RTA: send all packets no matter what (mimic check_icmp and check_ping)
145 * MODE_HOSTCHECK: Return immediately upon any sign of life
146 * In addition, sends packets to ALL addresses assigned
147 * to this host (as returned by gethostbyname() or
148 * gethostbyaddr() and expects one host only to be checked at
149 * a time. Therefore, any packet response what so ever will
150 * count as a sign of life, even when received outside
151 * crit.rta limit. Do not misspell any additional IP's.
152 * MODE_ALL: Requires packets from ALL requested IP to return OK (default).
153 * MODE_ICMP: implement something similar to check_icmp (MODE_RTA without
154 * tcp and udp args does this)
156 #define MODE_RTA 0
157 #define MODE_HOSTCHECK 1
158 #define MODE_ALL 2
159 #define MODE_ICMP 3
161 /* the different ping types we can do
162 * TODO: investigate ARP ping as well */
163 #define HAVE_ICMP 1
164 #define HAVE_UDP 2
165 #define HAVE_TCP 4
166 #define HAVE_ARP 8
168 #define MIN_PING_DATA_SIZE sizeof(struct icmp_ping_data)
169 #define MAX_IP_PKT_SIZE 65536 /* (theoretical) max IP packet size */
170 #define IP_HDR_SIZE 20
171 #define MAX_PING_DATA (MAX_IP_PKT_SIZE - IP_HDR_SIZE - ICMP_MINLEN)
172 #define DEFAULT_PING_DATA_SIZE (MIN_PING_DATA_SIZE + 44)
174 /* various target states */
175 #define TSTATE_INACTIVE 0x01 /* don't ping this host anymore */
176 #define TSTATE_WAITING 0x02 /* unanswered packets on the wire */
177 #define TSTATE_ALIVE 0x04 /* target is alive (has answered something) */
178 #define TSTATE_UNREACH 0x08
180 /** prototypes **/
181 void print_help (void);
182 void print_usage (void);
183 static u_int get_timevar(const char *);
184 static u_int get_timevaldiff(struct timeval *, struct timeval *);
185 static in_addr_t get_ip_address(const char *);
186 static int wait_for_reply(int, u_int);
187 static int recvfrom_wto(int, void *, unsigned int, struct sockaddr *, u_int *);
188 static int send_icmp_ping(int, struct rta_host *);
189 static int get_threshold(char *str, threshold *th);
190 static void run_checks(void);
191 static void set_source_ip(char *);
192 static int add_target(char *);
193 static int add_target_ip(char *, struct in_addr *);
194 static int handle_random_icmp(unsigned char *, struct sockaddr_in *);
195 static unsigned short icmp_checksum(unsigned short *, int);
196 static void finish(int);
197 static void crash(const char *, ...);
199 /** external **/
200 extern int optind, opterr, optopt;
201 extern char *optarg;
202 extern char **environ;
204 /** global variables **/
205 static struct rta_host **table, *cursor, *list;
206 static threshold crit = {80, 500000}, warn = {40, 200000};
207 static int mode, protocols, sockets, debug = 0, timeout = 10;
208 static unsigned short icmp_data_size = DEFAULT_PING_DATA_SIZE;
209 static unsigned short icmp_pkt_size = DEFAULT_PING_DATA_SIZE + ICMP_MINLEN;
211 static unsigned int icmp_sent = 0, icmp_recv = 0, icmp_lost = 0;
212 #define icmp_pkts_en_route (icmp_sent - (icmp_recv + icmp_lost))
213 static unsigned short targets_down = 0, targets = 0, packets = 0;
214 #define targets_alive (targets - targets_down)
215 static unsigned int retry_interval, pkt_interval, target_interval;
216 static int icmp_sock, tcp_sock, udp_sock, status = STATE_OK;
217 static pid_t pid;
218 static struct timezone tz;
219 static struct timeval prog_start;
220 static unsigned long long max_completion_time = 0;
221 static unsigned char ttl = 0; /* outgoing ttl */
222 static unsigned int warn_down = 1, crit_down = 1; /* host down threshold values */
223 static int min_hosts_alive = -1;
224 float pkt_backoff_factor = 1.5;
225 float target_backoff_factor = 1.5;
227 /** code start **/
228 static void
229 crash(const char *fmt, ...)
231 va_list ap;
233 printf("%s: ", progname);
235 va_start(ap, fmt);
236 vprintf(fmt, ap);
237 va_end(ap);
239 if(errno) printf(": %s", strerror(errno));
240 puts("");
242 exit(3);
246 static const char *
247 get_icmp_error_msg(unsigned char icmp_type, unsigned char icmp_code)
249 const char *msg = "unreachable";
251 if(debug > 1) printf("get_icmp_error_msg(%u, %u)\n", icmp_type, icmp_code);
252 switch(icmp_type) {
253 case ICMP_UNREACH:
254 switch(icmp_code) {
255 case ICMP_UNREACH_NET: msg = "Net unreachable"; break;
256 case ICMP_UNREACH_HOST: msg = "Host unreachable"; break;
257 case ICMP_UNREACH_PROTOCOL: msg = "Protocol unreachable (firewall?)"; break;
258 case ICMP_UNREACH_PORT: msg = "Port unreachable (firewall?)"; break;
259 case ICMP_UNREACH_NEEDFRAG: msg = "Fragmentation needed"; break;
260 case ICMP_UNREACH_SRCFAIL: msg = "Source route failed"; break;
261 case ICMP_UNREACH_ISOLATED: msg = "Source host isolated"; break;
262 case ICMP_UNREACH_NET_UNKNOWN: msg = "Unknown network"; break;
263 case ICMP_UNREACH_HOST_UNKNOWN: msg = "Unknown host"; break;
264 case ICMP_UNREACH_NET_PROHIB: msg = "Network denied (firewall?)"; break;
265 case ICMP_UNREACH_HOST_PROHIB: msg = "Host denied (firewall?)"; break;
266 case ICMP_UNREACH_TOSNET: msg = "Bad TOS for network (firewall?)"; break;
267 case ICMP_UNREACH_TOSHOST: msg = "Bad TOS for host (firewall?)"; break;
268 case ICMP_UNREACH_FILTER_PROHIB: msg = "Prohibited by filter (firewall)"; break;
269 case ICMP_UNREACH_HOST_PRECEDENCE: msg = "Host precedence violation"; break;
270 case ICMP_UNREACH_PRECEDENCE_CUTOFF: msg = "Precedence cutoff"; break;
271 default: msg = "Invalid code"; break;
273 break;
275 case ICMP_TIMXCEED:
276 /* really 'out of reach', or non-existant host behind a router serving
277 * two different subnets */
278 switch(icmp_code) {
279 case ICMP_TIMXCEED_INTRANS: msg = "Time to live exceeded in transit"; break;
280 case ICMP_TIMXCEED_REASS: msg = "Fragment reassembly time exceeded"; break;
281 default: msg = "Invalid code"; break;
283 break;
285 case ICMP_SOURCEQUENCH: msg = "Transmitting too fast"; break;
286 case ICMP_REDIRECT: msg = "Redirect (change route)"; break;
287 case ICMP_PARAMPROB: msg = "Bad IP header (required option absent)"; break;
289 /* the following aren't error messages, so ignore */
290 case ICMP_TSTAMP:
291 case ICMP_TSTAMPREPLY:
292 case ICMP_IREQ:
293 case ICMP_IREQREPLY:
294 case ICMP_MASKREQ:
295 case ICMP_MASKREPLY:
296 default: msg = ""; break;
299 return msg;
302 static int
303 handle_random_icmp(unsigned char *packet, struct sockaddr_in *addr)
305 struct icmp p, sent_icmp;
306 struct rta_host *host = NULL;
308 memcpy(&p, packet, sizeof(p));
309 if(p.icmp_type == ICMP_ECHO && ntohs(p.icmp_id) == pid) {
310 /* echo request from us to us (pinging localhost) */
311 return 0;
314 if(debug) printf("handle_random_icmp(%p, %p)\n", (void *)&p, (void *)addr);
316 /* only handle a few types, since others can't possibly be replies to
317 * us in a sane network (if it is anyway, it will be counted as lost
318 * at summary time, but not as quickly as a proper response */
319 /* TIMXCEED can be an unreach from a router with multiple IP's which
320 * serves two different subnets on the same interface and a dead host
321 * on one net is pinged from the other. The router will respond to
322 * itself and thus set TTL=0 so as to not loop forever. Even when
323 * TIMXCEED actually sends a proper icmp response we will have passed
324 * too many hops to have a hope of reaching it later, in which case it
325 * indicates overconfidence in the network, poor routing or both. */
326 if(p.icmp_type != ICMP_UNREACH && p.icmp_type != ICMP_TIMXCEED &&
327 p.icmp_type != ICMP_SOURCEQUENCH && p.icmp_type != ICMP_PARAMPROB)
329 return 0;
332 /* might be for us. At least it holds the original package (according
333 * to RFC 792). If it isn't, just ignore it */
334 memcpy(&sent_icmp, packet + 28, sizeof(sent_icmp));
335 if(sent_icmp.icmp_type != ICMP_ECHO || ntohs(sent_icmp.icmp_id) != pid ||
336 ntohs(sent_icmp.icmp_seq) >= targets*packets)
338 if(debug) printf("Packet is no response to a packet we sent\n");
339 return 0;
342 /* it is indeed a response for us */
343 host = table[ntohs(sent_icmp.icmp_seq)/packets];
344 if(debug) {
345 printf("Received \"%s\" from %s for ICMP ECHO sent to %s.\n",
346 get_icmp_error_msg(p.icmp_type, p.icmp_code),
347 inet_ntoa(addr->sin_addr), host->name);
350 icmp_lost++;
351 host->icmp_lost++;
352 /* don't spend time on lost hosts any more */
353 if(host->flags & FLAG_LOST_CAUSE) return 0;
355 /* source quench means we're sending too fast, so increase the
356 * interval and mark this packet lost */
357 if(p.icmp_type == ICMP_SOURCEQUENCH) {
358 pkt_interval *= pkt_backoff_factor;
359 target_interval *= target_backoff_factor;
361 else {
362 targets_down++;
363 host->flags |= FLAG_LOST_CAUSE;
365 host->icmp_type = p.icmp_type;
366 host->icmp_code = p.icmp_code;
367 host->error_addr.s_addr = addr->sin_addr.s_addr;
369 return 0;
373 main(int argc, char **argv)
375 int i;
376 char *ptr;
377 long int arg;
378 int icmp_sockerrno, udp_sockerrno, tcp_sockerrno;
379 int result;
380 struct rta_host *host;
382 setlocale (LC_ALL, "");
383 bindtextdomain (PACKAGE, LOCALEDIR);
384 textdomain (PACKAGE);
386 /* print a helpful error message if geteuid != 0 */
387 np_warn_if_not_root();
389 /* we only need to be setsuid when we get the sockets, so do
390 * that before pointer magic (esp. on network data) */
391 icmp_sockerrno = udp_sockerrno = tcp_sockerrno = sockets = 0;
393 if((icmp_sock = socket(PF_INET, SOCK_RAW, IPPROTO_ICMP)) != -1)
394 sockets |= HAVE_ICMP;
395 else icmp_sockerrno = errno;
397 /* if((udp_sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP)) != -1) */
398 /* sockets |= HAVE_UDP; */
399 /* else udp_sockerrno = errno; */
401 /* if((tcp_sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP)) != -1) */
402 /* sockets |= HAVE_TCP; */
403 /* else tcp_sockerrno = errno; */
405 /* now drop privileges (no effect if not setsuid or geteuid() == 0) */
406 setuid(getuid());
408 /* POSIXLY_CORRECT might break things, so unset it (the portable way) */
409 environ = NULL;
411 /* use the pid to mark packets as ours */
412 /* Some systems have 32-bit pid_t so mask off only 16 bits */
413 pid = getpid() & 0xffff;
414 /* printf("pid = %u\n", pid); */
416 /* get calling name the old-fashioned way for portability instead
417 * of relying on the glibc-ism __progname */
418 ptr = strrchr(argv[0], '/');
419 if(ptr) progname = &ptr[1];
420 else progname = argv[0];
422 /* now set defaults. Use progname to set them initially (allows for
423 * superfast check_host program when target host is up */
424 cursor = list = NULL;
425 table = NULL;
427 mode = MODE_RTA;
428 crit.rta = 500000;
429 crit.pl = 80;
430 warn.rta = 200000;
431 warn.pl = 40;
432 protocols = HAVE_ICMP | HAVE_UDP | HAVE_TCP;
433 pkt_interval = 80000; /* 80 msec packet interval by default */
434 packets = 5;
436 if(!strcmp(progname, "check_icmp") || !strcmp(progname, "check_ping")) {
437 mode = MODE_ICMP;
438 protocols = HAVE_ICMP;
440 else if(!strcmp(progname, "check_host")) {
441 mode = MODE_HOSTCHECK;
442 pkt_interval = 1000000;
443 packets = 5;
444 crit.rta = warn.rta = 1000000;
445 crit.pl = warn.pl = 100;
447 else if(!strcmp(progname, "check_rta_multi")) {
448 mode = MODE_ALL;
449 target_interval = 0;
450 pkt_interval = 50000;
451 packets = 5;
454 /* Parse extra opts if any */
455 argv=np_extra_opts(&argc, argv, progname);
457 /* support "--help" and "--version" */
458 if(argc == 2) {
459 if(!strcmp(argv[1], "--help"))
460 strcpy(argv[1], "-h");
461 if(!strcmp(argv[1], "--version"))
462 strcpy(argv[1], "-V");
465 /* parse the arguments */
466 for(i = 1; i < argc; i++) {
467 while((arg = getopt(argc, argv, "vhVw:c:n:p:t:H:s:i:b:I:l:m:")) != EOF) {
468 long size;
469 switch(arg) {
470 case 'v':
471 debug++;
472 break;
473 case 'b':
474 size = strtol(optarg,NULL,0);
475 if (size >= (sizeof(struct icmp) + sizeof(struct icmp_ping_data)) &&
476 size < MAX_PING_DATA) {
477 icmp_data_size = size;
478 icmp_pkt_size = size + ICMP_MINLEN;
479 } else
480 usage_va("ICMP data length must be between: %d and %d",
481 sizeof(struct icmp) + sizeof(struct icmp_ping_data),
482 MAX_PING_DATA - 1);
483 break;
484 case 'i':
485 pkt_interval = get_timevar(optarg);
486 break;
487 case 'I':
488 target_interval = get_timevar(optarg);
489 break;
490 case 'w':
491 get_threshold(optarg, &warn);
492 break;
493 case 'c':
494 get_threshold(optarg, &crit);
495 break;
496 case 'n':
497 case 'p':
498 packets = strtoul(optarg, NULL, 0);
499 break;
500 case 't':
501 timeout = strtoul(optarg, NULL, 0);
502 if(!timeout) timeout = 10;
503 break;
504 case 'H':
505 add_target(optarg);
506 break;
507 case 'l':
508 ttl = (unsigned char)strtoul(optarg, NULL, 0);
509 break;
510 case 'm':
511 min_hosts_alive = (int)strtoul(optarg, NULL, 0);
512 break;
513 case 'd': /* implement later, for cluster checks */
514 warn_down = (unsigned char)strtoul(optarg, &ptr, 0);
515 if(ptr) {
516 crit_down = (unsigned char)strtoul(ptr + 1, NULL, 0);
518 break;
519 case 's': /* specify source IP address */
520 set_source_ip(optarg);
521 break;
522 case 'V': /* version */
523 print_revision (progname, NP_VERSION);
524 exit (STATE_OK);
525 case 'h': /* help */
526 print_help ();
527 exit (STATE_OK);
532 argv = &argv[optind];
533 while(*argv) {
534 add_target(*argv);
535 argv++;
537 if(!targets) {
538 errno = 0;
539 crash("No hosts to check");
540 exit(3);
543 if(!sockets) {
544 if(icmp_sock == -1) {
545 errno = icmp_sockerrno;
546 crash("Failed to obtain ICMP socket");
547 return -1;
549 /* if(udp_sock == -1) { */
550 /* errno = icmp_sockerrno; */
551 /* crash("Failed to obtain UDP socket"); */
552 /* return -1; */
553 /* } */
554 /* if(tcp_sock == -1) { */
555 /* errno = icmp_sockerrno; */
556 /* crash("Failed to obtain TCP socker"); */
557 /* return -1; */
558 /* } */
560 if(!ttl) ttl = 64;
562 if(icmp_sock) {
563 result = setsockopt(icmp_sock, SOL_IP, IP_TTL, &ttl, sizeof(ttl));
564 if(debug) {
565 if(result == -1) printf("setsockopt failed\n");
566 else printf("ttl set to %u\n", ttl);
570 /* stupid users should be able to give whatever thresholds they want
571 * (nothing will break if they do), but some anal plugin maintainer
572 * will probably add some printf() thing here later, so it might be
573 * best to at least show them where to do it. ;) */
574 if(warn.pl > crit.pl) warn.pl = crit.pl;
575 if(warn.rta > crit.rta) warn.rta = crit.rta;
576 if(warn_down > crit_down) crit_down = warn_down;
578 signal(SIGINT, finish);
579 signal(SIGHUP, finish);
580 signal(SIGTERM, finish);
581 signal(SIGALRM, finish);
582 if(debug) printf("Setting alarm timeout to %u seconds\n", timeout);
583 alarm(timeout);
585 /* make sure we don't wait any longer than necessary */
586 gettimeofday(&prog_start, &tz);
587 max_completion_time =
588 ((targets * packets * pkt_interval) + (targets * target_interval)) +
589 (targets * packets * crit.rta) + crit.rta;
591 if(debug) {
592 printf("packets: %u, targets: %u\n"
593 "target_interval: %0.3f, pkt_interval %0.3f\n"
594 "crit.rta: %0.3f\n"
595 "max_completion_time: %0.3f\n",
596 packets, targets,
597 (float)target_interval / 1000, (float)pkt_interval / 1000,
598 (float)crit.rta / 1000,
599 (float)max_completion_time / 1000);
602 if(debug) {
603 if(max_completion_time > (u_int)timeout * 1000000) {
604 printf("max_completion_time: %llu timeout: %u\n",
605 max_completion_time, timeout);
606 printf("Timout must be at lest %llu\n",
607 max_completion_time / 1000000 + 1);
611 if(debug) {
612 printf("crit = {%u, %u%%}, warn = {%u, %u%%}\n",
613 crit.rta, crit.pl, warn.rta, warn.pl);
614 printf("pkt_interval: %u target_interval: %u retry_interval: %u\n",
615 pkt_interval, target_interval, retry_interval);
616 printf("icmp_pkt_size: %u timeout: %u\n",
617 icmp_pkt_size, timeout);
620 if(packets > 20) {
621 errno = 0;
622 crash("packets is > 20 (%d)", packets);
625 if(min_hosts_alive < -1) {
626 errno = 0;
627 crash("minimum alive hosts is negative (%i)", min_hosts_alive);
630 host = list;
631 table = malloc(sizeof(struct rta_host **) * targets);
632 i = 0;
633 while(host) {
634 host->id = i*packets;
635 table[i] = host;
636 host = host->next;
637 i++;
640 run_checks();
642 errno = 0;
643 finish(0);
645 return(0);
648 static void
649 run_checks()
651 u_int i, t, result;
652 u_int final_wait, time_passed;
654 /* this loop might actually violate the pkt_interval or target_interval
655 * settings, but only if there aren't any packets on the wire which
656 * indicates that the target can handle an increased packet rate */
657 for(i = 0; i < packets; i++) {
658 for(t = 0; t < targets; t++) {
659 /* don't send useless packets */
660 if(!targets_alive) finish(0);
661 if(table[t]->flags & FLAG_LOST_CAUSE) {
662 if(debug) printf("%s is a lost cause. not sending any more\n",
663 table[t]->name);
664 continue;
667 /* we're still in the game, so send next packet */
668 (void)send_icmp_ping(icmp_sock, table[t]);
669 result = wait_for_reply(icmp_sock, target_interval);
671 result = wait_for_reply(icmp_sock, pkt_interval * targets);
674 if(icmp_pkts_en_route && targets_alive) {
675 time_passed = get_timevaldiff(NULL, NULL);
676 final_wait = max_completion_time - time_passed;
678 if(debug) {
679 printf("time_passed: %u final_wait: %u max_completion_time: %llu\n",
680 time_passed, final_wait, max_completion_time);
682 if(time_passed > max_completion_time) {
683 if(debug) printf("Time passed. Finishing up\n");
684 finish(0);
687 /* catch the packets that might come in within the timeframe, but
688 * haven't yet */
689 if(debug) printf("Waiting for %u micro-seconds (%0.3f msecs)\n",
690 final_wait, (float)final_wait / 1000);
691 result = wait_for_reply(icmp_sock, final_wait);
695 /* response structure:
696 * ip header : 20 bytes
697 * icmp header : 28 bytes
698 * icmp echo reply : the rest
700 static int
701 wait_for_reply(int sock, u_int t)
703 int n, hlen;
704 static unsigned char buf[4096];
705 struct sockaddr_in resp_addr;
706 struct ip *ip;
707 struct icmp icp;
708 struct rta_host *host;
709 struct icmp_ping_data data;
710 struct timeval wait_start, now;
711 u_int tdiff, i, per_pkt_wait;
713 /* if we can't listen or don't have anything to listen to, just return */
714 if(!t || !icmp_pkts_en_route) return 0;
716 gettimeofday(&wait_start, &tz);
718 i = t;
719 per_pkt_wait = t / icmp_pkts_en_route;
720 while(icmp_pkts_en_route && get_timevaldiff(&wait_start, NULL) < i) {
721 t = per_pkt_wait;
723 /* wrap up if all targets are declared dead */
724 if(!targets_alive ||
725 get_timevaldiff(&prog_start, NULL) >= max_completion_time ||
726 (mode == MODE_HOSTCHECK && targets_down))
728 finish(0);
731 /* reap responses until we hit a timeout */
732 n = recvfrom_wto(sock, buf, sizeof(buf),
733 (struct sockaddr *)&resp_addr, &t);
734 if(!n) {
735 if(debug > 1) {
736 printf("recvfrom_wto() timed out during a %u usecs wait\n",
737 per_pkt_wait);
739 continue; /* timeout for this one, so keep trying */
741 if(n < 0) {
742 if(debug) printf("recvfrom_wto() returned errors\n");
743 return n;
746 ip = (struct ip *)buf;
747 if(debug > 1) printf("received %u bytes from %s\n",
748 ntohs(ip->ip_len), inet_ntoa(resp_addr.sin_addr));
750 /* obsolete. alpha on tru64 provides the necessary defines, but isn't broken */
751 /* #if defined( __alpha__ ) && __STDC__ && !defined( __GLIBC__ ) */
752 /* alpha headers are decidedly broken. Using an ansi compiler,
753 * they provide ip_vhl instead of ip_hl and ip_v, so we mask
754 * off the bottom 4 bits */
755 /* hlen = (ip->ip_vhl & 0x0f) << 2; */
756 /* #else */
757 hlen = ip->ip_hl << 2;
758 /* #endif */
760 if(n < (hlen + ICMP_MINLEN)) {
761 crash("received packet too short for ICMP (%d bytes, expected %d) from %s\n",
762 n, hlen + icmp_pkt_size, inet_ntoa(resp_addr.sin_addr));
764 /* else if(debug) { */
765 /* printf("ip header size: %u, packet size: %u (expected %u, %u)\n", */
766 /* hlen, ntohs(ip->ip_len) - hlen, */
767 /* sizeof(struct ip), icmp_pkt_size); */
768 /* } */
770 /* check the response */
771 memcpy(&icp, buf + hlen, sizeof(icp));
773 if(ntohs(icp.icmp_id) != pid || icp.icmp_type != ICMP_ECHOREPLY ||
774 ntohs(icp.icmp_seq) >= targets*packets) {
775 if(debug > 2) printf("not a proper ICMP_ECHOREPLY\n");
776 handle_random_icmp(buf + hlen, &resp_addr);
777 continue;
780 /* this is indeed a valid response */
781 memcpy(&data, icp.icmp_data, sizeof(data));
782 if (debug > 2)
783 printf("ICMP echo-reply of len %u, id %u, seq %u, cksum 0x%X\n",
784 sizeof(data), ntohs(icp.icmp_id), ntohs(icp.icmp_seq), icp.icmp_cksum);
786 host = table[ntohs(icp.icmp_seq)/packets];
787 gettimeofday(&now, &tz);
788 tdiff = get_timevaldiff(&data.stime, &now);
790 host->time_waited += tdiff;
791 host->icmp_recv++;
792 icmp_recv++;
793 if (tdiff > host->rtmax)
794 host->rtmax = tdiff;
795 if (tdiff < host->rtmin)
796 host->rtmin = tdiff;
798 if(debug) {
799 printf("%0.3f ms rtt from %s, outgoing ttl: %u, incoming ttl: %u, max: %0.3f, min: %0.3f\n",
800 (float)tdiff / 1000, inet_ntoa(resp_addr.sin_addr),
801 ttl, ip->ip_ttl, (float)host->rtmax / 1000, (float)host->rtmin / 1000);
804 /* if we're in hostcheck mode, exit with limited printouts */
805 if(mode == MODE_HOSTCHECK) {
806 printf("OK - %s responds to ICMP. Packet %u, rta %0.3fms|"
807 "pkt=%u;;0;%u rta=%0.3f;%0.3f;%0.3f;;\n",
808 host->name, icmp_recv, (float)tdiff / 1000,
809 icmp_recv, packets, (float)tdiff / 1000,
810 (float)warn.rta / 1000, (float)crit.rta / 1000);
811 exit(STATE_OK);
815 return 0;
818 /* the ping functions */
819 static int
820 send_icmp_ping(int sock, struct rta_host *host)
822 static union {
823 void *buf; /* re-use so we prevent leaks */
824 struct icmp *icp;
825 u_short *cksum_in;
826 } packet = { NULL };
827 long int len;
828 struct icmp_ping_data data;
829 struct timeval tv;
830 struct sockaddr *addr;
832 if(sock == -1) {
833 errno = 0;
834 crash("Attempt to send on bogus socket");
835 return -1;
837 addr = (struct sockaddr *)&host->saddr_in;
839 if(!packet.buf) {
840 if (!(packet.buf = malloc(icmp_pkt_size))) {
841 crash("send_icmp_ping(): failed to malloc %d bytes for send buffer",
842 icmp_pkt_size);
843 return -1; /* might be reached if we're in debug mode */
846 memset(packet.buf, 0, icmp_pkt_size);
848 if((gettimeofday(&tv, &tz)) == -1) return -1;
850 data.ping_id = 10; /* host->icmp.icmp_sent; */
851 memcpy(&data.stime, &tv, sizeof(tv));
852 memcpy(&packet.icp->icmp_data, &data, sizeof(data));
853 packet.icp->icmp_type = ICMP_ECHO;
854 packet.icp->icmp_code = 0;
855 packet.icp->icmp_cksum = 0;
856 packet.icp->icmp_id = htons(pid);
857 packet.icp->icmp_seq = htons(host->id++);
858 packet.icp->icmp_cksum = icmp_checksum(packet.cksum_in, icmp_pkt_size);
860 if (debug > 2)
861 printf("Sending ICMP echo-request of len %u, id %u, seq %u, cksum 0x%X to host %s\n",
862 sizeof(data), ntohs(packet.icp->icmp_id), ntohs(packet.icp->icmp_seq), packet.icp->icmp_cksum, host->name);
864 len = sendto(sock, packet.buf, icmp_pkt_size, 0, (struct sockaddr *)addr,
865 sizeof(struct sockaddr));
867 if(len < 0 || (unsigned int)len != icmp_pkt_size) {
868 if(debug) printf("Failed to send ping to %s\n",
869 inet_ntoa(host->saddr_in.sin_addr));
870 return -1;
873 icmp_sent++;
874 host->icmp_sent++;
876 return 0;
879 static int
880 recvfrom_wto(int sock, void *buf, unsigned int len, struct sockaddr *saddr,
881 u_int *timo)
883 u_int slen;
884 int n;
885 struct timeval to, then, now;
886 fd_set rd, wr;
888 if(!*timo) {
889 if(debug) printf("*timo is not\n");
890 return 0;
893 to.tv_sec = *timo / 1000000;
894 to.tv_usec = (*timo - (to.tv_sec * 1000000));
896 FD_ZERO(&rd);
897 FD_ZERO(&wr);
898 FD_SET(sock, &rd);
899 errno = 0;
900 gettimeofday(&then, &tz);
901 n = select(sock + 1, &rd, &wr, NULL, &to);
902 if(n < 0) crash("select() in recvfrom_wto");
903 gettimeofday(&now, &tz);
904 *timo = get_timevaldiff(&then, &now);
906 if(!n) return 0; /* timeout */
908 slen = sizeof(struct sockaddr);
910 return recvfrom(sock, buf, len, 0, saddr, &slen);
913 static void
914 finish(int sig)
916 u_int i = 0;
917 unsigned char pl;
918 double rta;
919 struct rta_host *host;
920 const char *status_string[] =
921 {"OK", "WARNING", "CRITICAL", "UNKNOWN", "DEPENDENT"};
922 int hosts_ok = 0;
923 int hosts_warn = 0;
925 alarm(0);
926 if(debug > 1) printf("finish(%d) called\n", sig);
928 if(icmp_sock != -1) close(icmp_sock);
929 if(udp_sock != -1) close(udp_sock);
930 if(tcp_sock != -1) close(tcp_sock);
932 if(debug) {
933 printf("icmp_sent: %u icmp_recv: %u icmp_lost: %u\n",
934 icmp_sent, icmp_recv, icmp_lost);
935 printf("targets: %u targets_alive: %u\n", targets, targets_alive);
938 /* iterate thrice to calculate values, give output, and print perfparse */
939 host = list;
940 while(host) {
941 if(!host->icmp_recv) {
942 /* rta 0 is ofcourse not entirely correct, but will still show up
943 * conspicuosly as missing entries in perfparse and cacti */
944 pl = 100;
945 rta = 0;
946 status = STATE_CRITICAL;
947 /* up the down counter if not already counted */
948 if(!(host->flags & FLAG_LOST_CAUSE) && targets_alive) targets_down++;
950 else {
951 pl = ((host->icmp_sent - host->icmp_recv) * 100) / host->icmp_sent;
952 rta = (double)host->time_waited / host->icmp_recv;
954 host->pl = pl;
955 host->rta = rta;
956 if(pl >= crit.pl || rta >= crit.rta) {
957 status = STATE_CRITICAL;
959 else if(!status && (pl >= warn.pl || rta >= warn.rta)) {
960 status = STATE_WARNING;
961 hosts_warn++;
963 else {
964 hosts_ok++;
967 host = host->next;
969 /* this is inevitable */
970 if(!targets_alive) status = STATE_CRITICAL;
971 if(min_hosts_alive > -1) {
972 if(hosts_ok >= min_hosts_alive) status = STATE_OK;
973 else if((hosts_ok + hosts_warn) >= min_hosts_alive) status = STATE_WARNING;
975 printf("%s - ", status_string[status]);
977 host = list;
978 while(host) {
979 if(debug) puts("");
980 if(i) {
981 if(i < targets) printf(" :: ");
982 else printf("\n");
984 i++;
985 if(!host->icmp_recv) {
986 status = STATE_CRITICAL;
987 if(host->flags & FLAG_LOST_CAUSE) {
988 printf("%s: %s @ %s. rta nan, lost %d%%",
989 host->name,
990 get_icmp_error_msg(host->icmp_type, host->icmp_code),
991 inet_ntoa(host->error_addr),
992 100);
994 else { /* not marked as lost cause, so we have no flags for it */
995 printf("%s: rta nan, lost 100%%", host->name);
998 else { /* !icmp_recv */
999 printf("%s: rta %0.3fms, lost %u%%",
1000 host->name, host->rta / 1000, host->pl);
1003 host = host->next;
1006 /* iterate once more for pretty perfparse output */
1007 printf("|");
1008 i = 0;
1009 host = list;
1010 while(host) {
1011 if(debug) puts("");
1012 printf("%srta=%0.3fms;%0.3f;%0.3f;0; %spl=%u%%;%u;%u;; %srtmax=%0.3fms;;;; %srtmin=%0.3fms;;;; ",
1013 (targets > 1) ? host->name : "",
1014 host->rta / 1000, (float)warn.rta / 1000, (float)crit.rta / 1000,
1015 (targets > 1) ? host->name : "", host->pl, warn.pl, crit.pl,
1016 (targets > 1) ? host->name : "", (float)host->rtmax / 1000,
1017 (targets > 1) ? host->name : "", (host->rtmin < DBL_MAX) ? (float)host->rtmin / 1000 : (float)0);
1019 host = host->next;
1022 if(min_hosts_alive > -1) {
1023 if(hosts_ok >= min_hosts_alive) status = STATE_OK;
1024 else if((hosts_ok + hosts_warn) >= min_hosts_alive) status = STATE_WARNING;
1027 /* finish with an empty line */
1028 puts("");
1029 if(debug) printf("targets: %u, targets_alive: %u, hosts_ok: %u, hosts_warn: %u, min_hosts_alive: %i\n",
1030 targets, targets_alive, hosts_ok, hosts_warn, min_hosts_alive);
1032 exit(status);
1035 static u_int
1036 get_timevaldiff(struct timeval *early, struct timeval *later)
1038 u_int ret;
1039 struct timeval now;
1041 if(!later) {
1042 gettimeofday(&now, &tz);
1043 later = &now;
1045 if(!early) early = &prog_start;
1047 /* if early > later we return 0 so as to indicate a timeout */
1048 if(early->tv_sec > later->tv_sec ||
1049 (early->tv_sec == later->tv_sec && early->tv_usec > later->tv_usec))
1051 return 0;
1054 ret = (later->tv_sec - early->tv_sec) * 1000000;
1055 ret += later->tv_usec - early->tv_usec;
1057 return ret;
1060 static int
1061 add_target_ip(char *arg, struct in_addr *in)
1063 struct rta_host *host;
1065 /* disregard obviously stupid addresses */
1066 if(in->s_addr == INADDR_NONE || in->s_addr == INADDR_ANY)
1067 return -1;
1069 /* no point in adding two identical IP's, so don't. ;) */
1070 host = list;
1071 while(host) {
1072 if(host->saddr_in.sin_addr.s_addr == in->s_addr) {
1073 if(debug) printf("Identical IP already exists. Not adding %s\n", arg);
1074 return -1;
1076 host = host->next;
1079 /* add the fresh ip */
1080 host = malloc(sizeof(struct rta_host));
1081 if(!host) {
1082 crash("add_target_ip(%s, %s): malloc(%d) failed",
1083 arg, inet_ntoa(*in), sizeof(struct rta_host));
1085 memset(host, 0, sizeof(struct rta_host));
1087 /* set the values. use calling name for output */
1088 host->name = strdup(arg);
1090 /* fill out the sockaddr_in struct */
1091 host->saddr_in.sin_family = AF_INET;
1092 host->saddr_in.sin_addr.s_addr = in->s_addr;
1094 host->rtmin = DBL_MAX;
1096 if(!list) list = cursor = host;
1097 else cursor->next = host;
1099 cursor = host;
1100 targets++;
1102 return 0;
1105 /* wrapper for add_target_ip */
1106 static int
1107 add_target(char *arg)
1109 int i;
1110 struct hostent *he;
1111 struct in_addr *in, ip;
1113 /* don't resolve if we don't have to */
1114 if((ip.s_addr = inet_addr(arg)) != INADDR_NONE) {
1115 /* don't add all ip's if we were given a specific one */
1116 return add_target_ip(arg, &ip);
1117 /* he = gethostbyaddr((char *)in, sizeof(struct in_addr), AF_INET); */
1118 /* if(!he) return add_target_ip(arg, in); */
1120 else {
1121 errno = 0;
1122 he = gethostbyname(arg);
1123 if(!he) {
1124 errno = 0;
1125 crash("Failed to resolve %s", arg);
1126 return -1;
1130 /* possibly add all the IP's as targets */
1131 for(i = 0; he->h_addr_list[i]; i++) {
1132 in = (struct in_addr *)he->h_addr_list[i];
1133 add_target_ip(arg, in);
1135 /* this is silly, but it works */
1136 if(mode == MODE_HOSTCHECK || mode == MODE_ALL) {
1137 if(debug > 2) printf("mode: %d\n", mode);
1138 continue;
1140 break;
1143 return 0;
1146 static void
1147 set_source_ip(char *arg)
1149 struct sockaddr_in src;
1151 memset(&src, 0, sizeof(src));
1152 src.sin_family = AF_INET;
1153 if((src.sin_addr.s_addr = inet_addr(arg)) == INADDR_NONE)
1154 src.sin_addr.s_addr = get_ip_address(arg);
1155 if(bind(icmp_sock, (struct sockaddr *)&src, sizeof(src)) == -1)
1156 crash("Cannot bind to IP address %s", arg);
1159 /* TODO: Move this to netutils.c and also change check_dhcp to use that. */
1160 static in_addr_t
1161 get_ip_address(const char *ifname)
1163 #if defined(SIOCGIFADDR)
1164 struct ifreq ifr;
1165 struct sockaddr_in ip;
1167 strncpy(ifr.ifr_name, ifname, sizeof(ifr.ifr_name) - 1);
1168 ifr.ifr_name[sizeof(ifr.ifr_name) - 1] = '\0';
1169 if(ioctl(icmp_sock, SIOCGIFADDR, &ifr) == -1)
1170 crash("Cannot determine IP address of interface %s", ifname);
1171 memcpy(&ip, &ifr.ifr_addr, sizeof(ip));
1172 return ip.sin_addr.s_addr;
1173 #else
1174 errno = 0;
1175 crash("Cannot get interface IP address on this platform.");
1176 #endif
1180 * u = micro
1181 * m = milli
1182 * s = seconds
1183 * return value is in microseconds
1185 static u_int
1186 get_timevar(const char *str)
1188 char p, u, *ptr;
1189 unsigned int len;
1190 u_int i, d; /* integer and decimal, respectively */
1191 u_int factor = 1000; /* default to milliseconds */
1193 if(!str) return 0;
1194 len = strlen(str);
1195 if(!len) return 0;
1197 /* unit might be given as ms|m (millisec),
1198 * us|u (microsec) or just plain s, for seconds */
1199 u = p = '\0';
1200 u = str[len - 1];
1201 if(len >= 2 && !isdigit((int)str[len - 2])) p = str[len - 2];
1202 if(p && u == 's') u = p;
1203 else if(!p) p = u;
1204 if(debug > 2) printf("evaluating %s, u: %c, p: %c\n", str, u, p);
1206 if(u == 'u') factor = 1; /* microseconds */
1207 else if(u == 'm') factor = 1000; /* milliseconds */
1208 else if(u == 's') factor = 1000000; /* seconds */
1209 if(debug > 2) printf("factor is %u\n", factor);
1211 i = strtoul(str, &ptr, 0);
1212 if(!ptr || *ptr != '.' || strlen(ptr) < 2 || factor == 1)
1213 return i * factor;
1215 /* time specified in usecs can't have decimal points, so ignore them */
1216 if(factor == 1) return i;
1218 d = strtoul(ptr + 1, NULL, 0);
1220 /* d is decimal, so get rid of excess digits */
1221 while(d >= factor) d /= 10;
1223 /* the last parenthesis avoids floating point exceptions. */
1224 return ((i * factor) + (d * (factor / 10)));
1227 /* not too good at checking errors, but it'll do (main() should barfe on -1) */
1228 static int
1229 get_threshold(char *str, threshold *th)
1231 char *p = NULL, i = 0;
1233 if(!str || !strlen(str) || !th) return -1;
1235 /* pointer magic slims code by 10 lines. i is bof-stop on stupid libc's */
1236 p = &str[strlen(str) - 1];
1237 while(p != &str[1]) {
1238 if(*p == '%') *p = '\0';
1239 else if(*p == ',' && i) {
1240 *p = '\0'; /* reset it so get_timevar(str) works nicely later */
1241 th->pl = (unsigned char)strtoul(p+1, NULL, 0);
1242 break;
1244 i = 1;
1245 p--;
1247 th->rta = get_timevar(str);
1249 if(!th->rta) return -1;
1251 if(th->rta > MAXTTL * 1000000) th->rta = MAXTTL * 1000000;
1252 if(th->pl > 100) th->pl = 100;
1254 return 0;
1257 unsigned short
1258 icmp_checksum(unsigned short *p, int n)
1260 register unsigned short cksum;
1261 register long sum = 0;
1263 while(n > 1) {
1264 sum += *p++;
1265 n -= 2;
1268 /* mop up the occasional odd byte */
1269 if(n == 1) sum += (unsigned char)*p;
1271 sum = (sum >> 16) + (sum & 0xffff); /* add hi 16 to low 16 */
1272 sum += (sum >> 16); /* add carry */
1273 cksum = ~sum; /* ones-complement, trunc to 16 bits */
1275 return cksum;
1278 void
1279 print_help(void)
1282 /*print_revision (progname);*/ /* FIXME: Why? */
1284 printf ("Copyright (c) 2005 Andreas Ericsson <ae@op5.se>\n");
1285 printf (COPYRIGHT, copyright, email);
1287 printf ("\n\n");
1289 print_usage ();
1291 printf (UT_HELP_VRSN);
1292 printf (UT_EXTRA_OPTS);
1294 printf (" %s\n", "-H");
1295 printf (" %s\n", _("specify a target"));
1296 printf (" %s\n", "-w");
1297 printf (" %s", _("warning threshold (currently "));
1298 printf ("%0.3fms,%u%%)\n", (float)warn.rta / 1000, warn.pl);
1299 printf (" %s\n", "-c");
1300 printf (" %s", _("critical threshold (currently "));
1301 printf ("%0.3fms,%u%%)\n", (float)crit.rta / 1000, crit.pl);
1302 printf (" %s\n", "-s");
1303 printf (" %s\n", _("specify a source IP address or device name"));
1304 printf (" %s\n", "-n");
1305 printf (" %s", _("number of packets to send (currently "));
1306 printf ("%u)\n",packets);
1307 printf (" %s\n", "-i");
1308 printf (" %s", _("max packet interval (currently "));
1309 printf ("%0.3fms)\n",(float)pkt_interval / 1000);
1310 printf (" %s\n", "-I");
1311 printf (" %s", _("max target interval (currently "));
1312 printf ("%0.3fms)\n", (float)target_interval / 1000);
1313 printf (" %s\n", "-m");
1314 printf (" %s",_("number of alive hosts required for success"));
1315 printf ("\n");
1316 printf (" %s\n", "-l");
1317 printf (" %s", _("TTL on outgoing packets (currently "));
1318 printf ("%u)\n", ttl);
1319 printf (" %s\n", "-t");
1320 printf (" %s",_("timeout value (seconds, currently "));
1321 printf ("%u)\n", timeout);
1322 printf (" %s\n", "-b");
1323 printf (" %s\n", _("Number of icmp data bytes to send"));
1324 printf (" %s %u + %d)\n", _("Packet size will be data bytes + icmp header (currently"),icmp_data_size, ICMP_MINLEN);
1325 printf (" %s\n", "-v");
1326 printf (" %s\n", _("verbose"));
1328 printf ("\n");
1329 printf ("%s\n", _("Notes:"));
1330 printf (" %s\n", _("The -H switch is optional. Naming a host (or several) to check is not."));
1331 printf ("\n");
1332 printf (" %s\n", _("Threshold format for -w and -c is 200.25,60% for 200.25 msec RTA and 60%"));
1333 printf (" %s\n", _("packet loss. The default values should work well for most users."));
1334 printf (" %s\n", _("You can specify different RTA factors using the standardized abbreviations"));
1335 printf (" %s\n", _("us (microseconds), ms (milliseconds, default) or just plain s for seconds."));
1336 /* -d not yet implemented */
1337 /* printf ("%s\n", _("Threshold format for -d is warn,crit. 12,14 means WARNING if >= 12 hops"));
1338 printf ("%s\n", _("are spent and CRITICAL if >= 14 hops are spent."));
1339 printf ("%s\n\n", _("NOTE: Some systems decrease TTL when forming ICMP_ECHOREPLY, others do not."));*/
1340 printf ("\n");
1341 printf (" %s\n", _("The -v switch can be specified several times for increased verbosity."));
1342 /* printf ("%s\n", _("Long options are currently unsupported."));
1343 printf ("%s\n", _("Options marked with * require an argument"));
1346 printf (UT_SUPPORT);
1351 void
1352 print_usage (void)
1354 printf ("%s\n", _("Usage:"));
1355 printf(" %s [options] [-H] host1 host2 hostN\n", progname);