Code

better wrapping: add a cursor and respect inner borders
[liboping.git] / src / oping.c
1 /**
2  * Object oriented C module to send ICMP and ICMPv6 `echo's.
3  * Copyright (C) 2006-2011  Florian octo Forster <ff at octo.it>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; only version 2 of the License is
8  * applicable.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
20 #if HAVE_CONFIG_H
21 # include <config.h>
22 #endif
24 #if STDC_HEADERS
25 # include <stdlib.h>
26 # include <stdio.h>
27 # include <string.h>
28 # include <stdint.h>
29 # include <inttypes.h>
30 # include <errno.h>
31 # include <assert.h>
32 #else
33 # error "You don't have the standard C99 header files installed"
34 #endif /* STDC_HEADERS */
36 #if HAVE_UNISTD_H
37 # include <unistd.h>
38 #endif
40 #if HAVE_MATH_H
41 # include <math.h>
42 #endif
44 #if TIME_WITH_SYS_TIME
45 # include <sys/time.h>
46 # include <time.h>
47 #else
48 # if HAVE_SYS_TIME_H
49 #  include <sys/time.h>
50 # else
51 #  include <time.h>
52 # endif
53 #endif
55 #if HAVE_SYS_SOCKET_H
56 # include <sys/socket.h>
57 #endif
58 #if HAVE_NETINET_IN_H
59 # include <netinet/in.h>
60 #endif
61 #if HAVE_NETINET_IP_H
62 # include <netinet/ip.h>
63 #endif
65 #if HAVE_NETDB_H
66 # include <netdb.h> /* NI_MAXHOST */
67 #endif
69 #if HAVE_SIGNAL_H
70 # include <signal.h>
71 #endif
73 #if HAVE_SYS_TYPES_H
74 #include <sys/types.h>
75 #endif
77 #include <locale.h>
79 #if USE_NCURSES
80 # define NCURSES_OPAQUE 1
81 /* http://newsgroups.derkeiler.com/Archive/Rec/rec.games.roguelike.development/2010-09/msg00050.html */
82 # define _X_OPEN_SOURCE_EXTENDED
83 # include <ncursesw/ncurses.h>
85 # define OPING_GREEN 1
86 # define OPING_YELLOW 2
87 # define OPING_RED 3
88 # define OPING_GREEN_HIST 4
89 # define OPING_YELLOW_HIST 5
90 # define OPING_RED_HIST 6
91 #endif
93 #include "oping.h"
95 const char *bars[BARS_LEN] = { "▁", "▂", "▃", "▄", "▅", "▆", "▇", "█" };
97 #ifndef _POSIX_SAVED_IDS
98 # define _POSIX_SAVED_IDS 0
99 #endif
101 /* Remove GNU specific __attribute__ settings when using another compiler */
102 #if !__GNUC__
103 # define __attribute__(x) /**/
104 #endif
106 typedef struct ping_context
108         char host[NI_MAXHOST];
109         char addr[NI_MAXHOST];
111         int index;
112         int req_sent;
113         int req_rcvd;
115         double latency_min;
116         double latency_max;
117         double latency_total;
118         double latency_total_square;
120 #if USE_NCURSES
121         WINDOW *window;
122 #endif
123 } ping_context_t;
125 static double  opt_interval   = 1.0;
126 static int     opt_addrfamily = PING_DEF_AF;
127 static char   *opt_srcaddr    = NULL;
128 static char   *opt_device     = NULL;
129 static char   *opt_filename   = NULL;
130 static int     opt_count      = -1;
131 static int     opt_send_ttl   = 64;
132 static uint8_t opt_send_qos   = 0;
134 static int host_num = 0;
136 #if USE_NCURSES
137 static WINDOW *main_win = NULL;
138 #endif
140 static void sigint_handler (int signal) /* {{{ */
142         /* Make compiler happy */
143         signal = 0;
144         /* Exit the loop */
145         opt_count = 0;
146 } /* }}} void sigint_handler */
148 static ping_context_t *context_create (void) /* {{{ */
150         ping_context_t *ret;
152         if ((ret = malloc (sizeof (ping_context_t))) == NULL)
153                 return (NULL);
155         memset (ret, '\0', sizeof (ping_context_t));
157         ret->latency_min   = -1.0;
158         ret->latency_max   = -1.0;
159         ret->latency_total = 0.0;
160         ret->latency_total_square = 0.0;
162 #if USE_NCURSES
163         ret->window = NULL;
164 #endif
166         return (ret);
167 } /* }}} ping_context_t *context_create */
169 static void context_destroy (ping_context_t *context) /* {{{ */
171         if (context == NULL)
172                 return;
174 #if USE_NCURSES
175         if (context->window != NULL)
176         {
177                 delwin (context->window);
178                 context->window = NULL;
179         }
180 #endif
182         free (context);
183 } /* }}} void context_destroy */
185 static double context_get_average (ping_context_t *ctx) /* {{{ */
187         double num_total;
189         if (ctx == NULL)
190                 return (-1.0);
192         if (ctx->req_rcvd < 1)
193                 return (-0.0);
195         num_total = (double) ctx->req_rcvd;
196         return (ctx->latency_total / num_total);
197 } /* }}} double context_get_average */
199 static double context_get_stddev (ping_context_t *ctx) /* {{{ */
201         double num_total;
203         if (ctx == NULL)
204                 return (-1.0);
206         if (ctx->req_rcvd < 1)
207                 return (-0.0);
208         else if (ctx->req_rcvd < 2)
209                 return (0.0);
211         num_total = (double) ctx->req_rcvd;
212         return (sqrt (((num_total * ctx->latency_total_square)
213                                         - (ctx->latency_total * ctx->latency_total))
214                                 / (num_total * (num_total - 1.0))));
215 } /* }}} double context_get_stddev */
217 static double context_get_packet_loss (const ping_context_t *ctx) /* {{{ */
219         if (ctx == NULL)
220                 return (-1.0);
222         if (ctx->req_sent < 1)
223                 return (0.0);
225         return (100.0 * (ctx->req_sent - ctx->req_rcvd)
226                         / ((double) ctx->req_sent));
227 } /* }}} double context_get_packet_loss */
229 static int ping_initialize_contexts (pingobj_t *ping) /* {{{ */
231         pingobj_iter_t *iter;
232         int index;
234         if (ping == NULL)
235                 return (EINVAL);
237         index = 0;
238         for (iter = ping_iterator_get (ping);
239                         iter != NULL;
240                         iter = ping_iterator_next (iter))
241         {
242                 ping_context_t *context;
243                 size_t buffer_size;
245                 context = context_create ();
246                 context->index = index;
248                 buffer_size = sizeof (context->host);
249                 ping_iterator_get_info (iter, PING_INFO_HOSTNAME, context->host, &buffer_size);
251                 buffer_size = sizeof (context->addr);
252                 ping_iterator_get_info (iter, PING_INFO_ADDRESS, context->addr, &buffer_size);
254                 ping_iterator_set_context (iter, (void *) context);
256                 index++;
257         }
259         return (0);
260 } /* }}} int ping_initialize_contexts */
262 static void usage_exit (const char *name, int status) /* {{{ */
264         fprintf (stderr, "Usage: %s [OPTIONS] "
265                                 "-f filename | host [host [host ...]]\n"
267                         "\nAvailable options:\n"
268                         "  -4|-6        force the use of IPv4 or IPv6\n"
269                         "  -c count     number of ICMP packets to send\n"
270                         "  -i interval  interval with which to send ICMP packets\n"
271                         "  -t ttl       time to live for each ICMP packet\n"
272                         "  -Q qos       Quality of Service (QoS) of outgoing packets\n"
273                         "               Use \"-Q help\" for a list of valid options.\n"
274                         "  -I srcaddr   source address\n"
275                         "  -D device    outgoing interface name\n"
276                         "  -f filename  filename to read hosts from\n"
278                         "\noping "PACKAGE_VERSION", http://verplant.org/liboping/\n"
279                         "by Florian octo Forster <octo@verplant.org>\n"
280                         "for contributions see `AUTHORS'\n",
281                         name);
282         exit (status);
283 } /* }}} void usage_exit */
285 __attribute__((noreturn))
286 static void usage_qos_exit (const char *arg, int status) /* {{{ */
288         if (arg != 0)
289                 fprintf (stderr, "Invalid QoS argument: \"%s\"\n\n", arg);
291         fprintf (stderr, "Valid QoS arguments (option \"-Q\") are:\n"
292                         "\n"
293                         "  Differentiated Services (IPv4 and IPv6, RFC 2474)\n"
294                         "\n"
295                         "    be                     Best Effort (BE, default PHB).\n"
296                         "    ef                     Expedited Forwarding (EF) PHB group (RFC 3246).\n"
297                         "                           (low delay, low loss, low jitter)\n"
298                         "    va                     Voice Admit (VA) DSCP (RFC 5865).\n"
299                         "                           (capacity-admitted traffic)\n"
300                         "    af[1-4][1-3]           Assured Forwarding (AF) PHB group (RFC 2597).\n"
301                         "                           For example: \"af12\" (class 1, precedence 2)\n"
302                         "    cs[0-7]                Class Selector (CS) PHB group (RFC 2474).\n"
303                         "                           For example: \"cs1\" (priority traffic)\n"
304                         "\n"
305                         "  Type of Service (IPv4, RFC 1349, obsolete)\n"
306                         "\n"
307                         "    lowdelay     (%#04x)    minimize delay\n"
308                         "    throughput   (%#04x)    maximize throughput\n"
309                         "    reliability  (%#04x)    maximize reliability\n"
310                         "    mincost      (%#04x)    minimize monetary cost\n"
311                         "\n"
312                         "  Specify manually\n"
313                         "\n"
314                         "    0x00 - 0xff            Hexadecimal numeric specification.\n"
315                         "       0 -  255            Decimal numeric specification.\n"
316                         "\n",
317                         (unsigned int) IPTOS_LOWDELAY,
318                         (unsigned int) IPTOS_THROUGHPUT,
319                         (unsigned int) IPTOS_RELIABILITY,
320                         (unsigned int) IPTOS_MINCOST);
322         exit (status);
323 } /* }}} void usage_qos_exit */
325 static int set_opt_send_qos (const char *opt) /* {{{ */
327         if (opt == NULL)
328                 return (EINVAL);
330         if (strcasecmp ("help", opt) == 0)
331                 usage_qos_exit (/* arg = */ NULL, /* status = */ EXIT_SUCCESS);
332         /* DiffServ (RFC 2474): */
333         /* - Best effort (BE) */
334         else if (strcasecmp ("be", opt) == 0)
335                 opt_send_qos = 0;
336         /* - Expedited Forwarding (EF, RFC 3246) */
337         else if (strcasecmp ("ef", opt) == 0)
338                 opt_send_qos = 0xB8; /* == 0x2E << 2 */
339         /* - Voice Admit (VA, RFC 5865) */
340         else if (strcasecmp ("va", opt) == 0)
341                 opt_send_qos = 0xB0; /* == 0x2D << 2 */
342         /* - Assured Forwarding (AF, RFC 2597) */
343         else if ((strncasecmp ("af", opt, strlen ("af")) == 0)
344                         && (strlen (opt) == 4))
345         {
346                 uint8_t dscp;
347                 uint8_t class = 0;
348                 uint8_t prec = 0;
350                 /* There are four classes, AF1x, AF2x, AF3x, and AF4x. */
351                 if (opt[2] == '1')
352                         class = 1;
353                 else if (opt[2] == '2')
354                         class = 2;
355                 else if (opt[2] == '3')
356                         class = 3;
357                 else if (opt[2] == '4')
358                         class = 4;
359                 else
360                         usage_qos_exit (/* arg = */ opt, /* status = */ EXIT_SUCCESS);
362                 /* In each class, there are three precedences, AFx1, AFx2, and AFx3 */
363                 if (opt[3] == '1')
364                         prec = 1;
365                 else if (opt[3] == '2')
366                         prec = 2;
367                 else if (opt[3] == '3')
368                         prec = 3;
369                 else
370                         usage_qos_exit (/* arg = */ opt, /* status = */ EXIT_SUCCESS);
372                 dscp = (8 * class) + (2 * prec);
373                 /* The lower two bits are used for Explicit Congestion Notification (ECN) */
374                 opt_send_qos = dscp << 2;
375         }
376         /* - Class Selector (CS) */
377         else if ((strncasecmp ("cs", opt, strlen ("cs")) == 0)
378                         && (strlen (opt) == 3))
379         {
380                 uint8_t class;
382                 if ((opt[2] < '0') || (opt[2] > '7'))
383                         usage_qos_exit (/* arg = */ opt, /* status = */ EXIT_FAILURE);
385                 /* Not exactly legal by the C standard, but I don't know of any
386                  * system not supporting this hack. */
387                 class = ((uint8_t) opt[2]) - ((uint8_t) '0');
388                 opt_send_qos = class << 5;
389         }
390         /* Type of Service (RFC 1349) */
391         else if (strcasecmp ("lowdelay", opt) == 0)
392                 opt_send_qos = IPTOS_LOWDELAY;
393         else if (strcasecmp ("throughput", opt) == 0)
394                 opt_send_qos = IPTOS_THROUGHPUT;
395         else if (strcasecmp ("reliability", opt) == 0)
396                 opt_send_qos = IPTOS_RELIABILITY;
397         else if (strcasecmp ("mincost", opt) == 0)
398                 opt_send_qos = IPTOS_MINCOST;
399         /* Numeric value */
400         else
401         {
402                 unsigned long value;
403                 char *endptr;
405                 errno = 0;
406                 endptr = NULL;
407                 value = strtoul (opt, &endptr, /* base = */ 0);
408                 if ((errno != 0) || (endptr == opt)
409                                 || (endptr == NULL) || (*endptr != 0)
410                                 || (value > 0xff))
411                         usage_qos_exit (/* arg = */ opt, /* status = */ EXIT_FAILURE);
412                 
413                 opt_send_qos = (uint8_t) value;
414         }
416         return (0);
417 } /* }}} int set_opt_send_qos */
419 static char *format_qos (uint8_t qos, char *buffer, size_t buffer_size) /* {{{ */
421         uint8_t dscp;
422         uint8_t ecn;
423         char *dscp_str;
424         char *ecn_str;
426         dscp = qos >> 2;
427         ecn = qos & 0x03;
429         switch (dscp)
430         {
431                 case 0x00: dscp_str = "be";  break;
432                 case 0x2e: dscp_str = "ef";  break;
433                 case 0x2d: dscp_str = "va";  break;
434                 case 0x0a: dscp_str = "af11"; break;
435                 case 0x0c: dscp_str = "af12"; break;
436                 case 0x0e: dscp_str = "af13"; break;
437                 case 0x12: dscp_str = "af21"; break;
438                 case 0x14: dscp_str = "af22"; break;
439                 case 0x16: dscp_str = "af23"; break;
440                 case 0x1a: dscp_str = "af31"; break;
441                 case 0x1c: dscp_str = "af32"; break;
442                 case 0x1e: dscp_str = "af33"; break;
443                 case 0x22: dscp_str = "af41"; break;
444                 case 0x24: dscp_str = "af42"; break;
445                 case 0x26: dscp_str = "af43"; break;
446                 case 0x08: dscp_str = "cs1";  break;
447                 case 0x10: dscp_str = "cs2";  break;
448                 case 0x18: dscp_str = "cs3";  break;
449                 case 0x20: dscp_str = "cs4";  break;
450                 case 0x28: dscp_str = "cs5";  break;
451                 case 0x30: dscp_str = "cs6";  break;
452                 case 0x38: dscp_str = "cs7";  break;
453                 default:   dscp_str = NULL;
454         }
456         switch (ecn)
457         {
458                 case 0x01: ecn_str = ",ecn(1)"; break;
459                 case 0x02: ecn_str = ",ecn(0)"; break;
460                 case 0x03: ecn_str = ",ce"; break;
461                 default:   ecn_str = "";
462         }
464         if (dscp_str == NULL)
465                 snprintf (buffer, buffer_size, "0x%02x%s", dscp, ecn_str);
466         else
467                 snprintf (buffer, buffer_size, "%s%s", dscp_str, ecn_str);
468         buffer[buffer_size - 1] = 0;
470         return (buffer);
471 } /* }}} char *format_qos */
473 static int read_options (int argc, char **argv) /* {{{ */
475         int optchar;
477         while (1)
478         {
479                 optchar = getopt (argc, argv, "46c:hi:I:t:Q:f:D:");
481                 if (optchar == -1)
482                         break;
484                 switch (optchar)
485                 {
486                         case '4':
487                         case '6':
488                                 opt_addrfamily = (optchar == '4') ? AF_INET : AF_INET6;
489                                 break;
491                         case 'c':
492                                 {
493                                         int new_count;
494                                         new_count = atoi (optarg);
495                                         if (new_count > 0)
496                                                 opt_count = new_count;
497                                         else
498                                                 fprintf(stderr, "Ignoring invalid count: %s\n",
499                                                                 optarg);
500                                 }
501                                 break;
503                         case 'f':
504                                 {
505                                         if (opt_filename != NULL)
506                                                 free (opt_filename);
507                                         opt_filename = strdup (optarg);
508                                 }
509                                 break;
511                         case 'i':
512                                 {
513                                         double new_interval;
514                                         new_interval = atof (optarg);
515                                         if (new_interval < 0.001)
516                                                 fprintf (stderr, "Ignoring invalid interval: %s\n",
517                                                                 optarg);
518                                         else
519                                                 opt_interval = new_interval;
520                                 }
521                                 break;
522                         case 'I':
523                                 {
524                                         if (opt_srcaddr != NULL)
525                                                 free (opt_srcaddr);
526                                         opt_srcaddr = strdup (optarg);
527                                 }
528                                 break;
530                         case 'D':
531                                 opt_device = optarg;
532                                 break;
534                         case 't':
535                         {
536                                 int new_send_ttl;
537                                 new_send_ttl = atoi (optarg);
538                                 if ((new_send_ttl > 0) && (new_send_ttl < 256))
539                                         opt_send_ttl = new_send_ttl;
540                                 else
541                                         fprintf (stderr, "Ignoring invalid TTL argument: %s\n",
542                                                         optarg);
543                                 break;
544                         }
546                         case 'Q':
547                                 set_opt_send_qos (optarg);
548                                 break;
550                         case 'h':
551                                 usage_exit (argv[0], 0);
552                                 break;
553                         default:
554                                 usage_exit (argv[0], 1);
555                 }
556         }
558         return (optind);
559 } /* }}} read_options */
561 static void time_normalize (struct timespec *ts) /* {{{ */
563         while (ts->tv_nsec < 0)
564         {
565                 if (ts->tv_sec == 0)
566                 {
567                         ts->tv_nsec = 0;
568                         return;
569                 }
571                 ts->tv_sec  -= 1;
572                 ts->tv_nsec += 1000000000;
573         }
575         while (ts->tv_nsec >= 1000000000)
576         {
577                 ts->tv_sec  += 1;
578                 ts->tv_nsec -= 1000000000;
579         }
580 } /* }}} void time_normalize */
582 static void time_calc (struct timespec *ts_dest, /* {{{ */
583                 const struct timespec *ts_int,
584                 const struct timeval  *tv_begin,
585                 const struct timeval  *tv_end)
587         ts_dest->tv_sec = tv_begin->tv_sec + ts_int->tv_sec;
588         ts_dest->tv_nsec = (tv_begin->tv_usec * 1000) + ts_int->tv_nsec;
589         time_normalize (ts_dest);
591         /* Assure that `(begin + interval) > end'.
592          * This may seem overly complicated, but `tv_sec' is of type `time_t'
593          * which may be `unsigned. *sigh* */
594         if ((tv_end->tv_sec > ts_dest->tv_sec)
595                         || ((tv_end->tv_sec == ts_dest->tv_sec)
596                                 && ((tv_end->tv_usec * 1000) > ts_dest->tv_nsec)))
597         {
598                 ts_dest->tv_sec  = 0;
599                 ts_dest->tv_nsec = 0;
600                 return;
601         }
603         ts_dest->tv_sec = ts_dest->tv_sec - tv_end->tv_sec;
604         ts_dest->tv_nsec = ts_dest->tv_nsec - (tv_end->tv_usec * 1000);
605         time_normalize (ts_dest);
606 } /* }}} void time_calc */
608 #if USE_NCURSES
609 static int update_stats_from_context (ping_context_t *ctx, pingobj_iter_t *iter) /* {{{ */
611         double latency = -1.0;
612         size_t buffer_len = sizeof (latency);
613         int maxx;
614         getmaxyx(ctx->window, maxx, maxx);
616         ping_iterator_get_info (iter, PING_INFO_LATENCY,
617                         &latency, &buffer_len);
619         unsigned int sequence = 0;
620         buffer_len = sizeof (sequence);
621         ping_iterator_get_info (iter, PING_INFO_SEQUENCE,
622                         &sequence, &buffer_len);
625         if ((ctx == NULL) || (ctx->window == NULL))
626                 return (EINVAL);
628         /* werase (ctx->window); */
630         box (ctx->window, 0, 0);
631         wattron (ctx->window, A_BOLD);
632         mvwprintw (ctx->window, /* y = */ 0, /* x = */ 5,
633                         " %s ", ctx->host);
634         wattroff (ctx->window, A_BOLD);
635         wprintw (ctx->window, "ping statistics ");
636         mvwprintw (ctx->window, /* y = */ 1, /* x = */ 2,
637                         "%i packets transmitted, %i received, %.2f%% packet "
638                         "loss, time %.1fms",
639                         ctx->req_sent, ctx->req_rcvd,
640                         context_get_packet_loss (ctx),
641                         ctx->latency_total);
642         if (ctx->req_rcvd != 0)
643         {
644                 double average;
645                 double deviation;
647                 average = context_get_average (ctx);
648                 deviation = context_get_stddev (ctx);
649                         
650                 mvwprintw (ctx->window, /* y = */ 2, /* x = */ 2,
651                                 "rtt min/avg/max/sdev = %.3f/%.3f/%.3f/%.3f ms",
652                                 ctx->latency_min,
653                                 average,
654                                 ctx->latency_max,
655                                 deviation);
656         }
658         if (latency > 0.0)
659         {
660                 if (has_colors () == TRUE)
661                 {
662                         int color = OPING_GREEN_HIST;
663                         float ratio = 0;
664                         int index = 0;
666                         ratio = latency / PING_DEF_TTL;
667                         if (ratio > 1) {
668                           ratio = 1.0;
669                         }
670                         index = (int) ((ratio * BARS_LEN * 3) -1); /* 3 colors */
671                         if (index >= BARS_LEN) {
672                           color = OPING_YELLOW_HIST;
673                         }
674                         if (index >= 2*BARS_LEN) {
675                           color = OPING_RED_HIST;
676                         }
677                         /* HOST_PRINTF ("%%r%f-ia%d-", ratio, index); */
678                         index = index % BARS_LEN;
679                         /* HOST_PRINTF ("im%d-", index); */
680                         if (index < 0) {
681                           index = 0; /* safety check */
682                         }
683                         if (index >= BARS_LEN) {
684                           index = BARS_LEN - 1; /* safety check */
685                         }
686                         wattron (ctx->window, COLOR_PAIR(color));
687                         mvwprintw (ctx->window,
688                                    /* y = */ 3,
689                                    /* x = */ ( (sequence - 1) % (maxx - 4) ) + 2,
690                                    bars[index]);
691                         wattroff (ctx->window, COLOR_PAIR(color));
692                         wprintw (ctx->window, " ");
693                 }
694                 else
695                 {
696                 }
697         }
698         else {
699                 wattron (ctx->window, COLOR_PAIR(OPING_RED) | A_BOLD);
700                 mvwprintw (ctx->window,
701                            /* y = */ 3,
702                            /* x = */ ( (sequence - 1) % (maxx - 4) ) + 2,
703                            "!");
704                 wattroff (ctx->window, COLOR_PAIR(OPING_RED) | A_BOLD);
705                 wprintw (ctx->window, " ");
706         }
707         wrefresh (ctx->window);
709         return (0);
710 } /* }}} int update_stats_from_context */
712 static int on_resize (pingobj_t *ping) /* {{{ */
714         pingobj_iter_t *iter;
715         int width = 0;
716         int height = 0;
717         int main_win_height;
719         getmaxyx (stdscr, height, width);
720         if ((height < 1) || (width < 1))
721                 return (EINVAL);
723         main_win_height = height - (5 * host_num);
724         wresize (main_win, main_win_height, /* width = */ width);
725         /* Allow scrolling */
726         scrollok (main_win, TRUE);
727         /* wsetscrreg (main_win, 0, main_win_height - 1); */
728         /* Allow hardware accelerated scrolling. */
729         idlok (main_win, TRUE);
730         wrefresh (main_win);
732         for (iter = ping_iterator_get (ping);
733                         iter != NULL;
734                         iter = ping_iterator_next (iter))
735         {
736                 ping_context_t *context;
738                 context = ping_iterator_get_context (iter);
739                 if (context == NULL)
740                         continue;
742                 if (context->window != NULL)
743                 {
744                         delwin (context->window);
745                         context->window = NULL;
746                 }
747                 context->window = newwin (/* height = */ 5,
748                                 /* width = */ width,
749                                 /* y = */ main_win_height + (5 * context->index),
750                                 /* x = */ 0);
751         }
753         return (0);
754 } /* }}} */
756 static int check_resize (pingobj_t *ping) /* {{{ */
758         int need_resize = 0;
760         while (42)
761         {
762                 int key = wgetch (stdscr);
763                 if (key == ERR)
764                         break;
765                 else if (key == KEY_RESIZE)
766                         need_resize = 1;
767         }
769         if (need_resize)
770                 return (on_resize (ping));
771         else
772                 return (0);
773 } /* }}} int check_resize */
775 static int pre_loop_hook (pingobj_t *ping) /* {{{ */
777         pingobj_iter_t *iter;
778         int width = 0;
779         int height = 0;
780         int main_win_height;
782         initscr ();
783         cbreak ();
784         noecho ();
785         nodelay (stdscr, TRUE);
787         getmaxyx (stdscr, height, width);
788         if ((height < 1) || (width < 1))
789                 return (EINVAL);
791         if (has_colors () == TRUE)
792         {
793                 start_color ();
794                 init_pair (OPING_GREEN,  COLOR_GREEN,  /* default = */ 0);
795                 init_pair (OPING_YELLOW, COLOR_YELLOW, /* default = */ 0);
796                 init_pair (OPING_RED,    COLOR_RED,    /* default = */ 0);
797                 init_pair (OPING_GREEN_HIST,  COLOR_GREEN,  COLOR_BLACK);
798                 init_pair (OPING_YELLOW_HIST, COLOR_YELLOW, COLOR_GREEN);
799                 init_pair (OPING_RED_HIST,    COLOR_RED,    COLOR_YELLOW);
800         }
802         main_win_height = height - (5 * host_num);
803         main_win = newwin (/* height = */ main_win_height,
804                         /* width = */ width,
805                         /* y = */ 0, /* x = */ 0);
806         /* Allow scrolling */
807         scrollok (main_win, TRUE);
808         /* wsetscrreg (main_win, 0, main_win_height - 1); */
809         /* Allow hardware accelerated scrolling. */
810         idlok (main_win, TRUE);
811         wmove (main_win, /* y = */ main_win_height - 1, /* x = */ 0);
812         wrefresh (main_win);
814         for (iter = ping_iterator_get (ping);
815                         iter != NULL;
816                         iter = ping_iterator_next (iter))
817         {
818                 ping_context_t *context;
820                 context = ping_iterator_get_context (iter);
821                 if (context == NULL)
822                         continue;
824                 if (context->window != NULL)
825                 {
826                         delwin (context->window);
827                         context->window = NULL;
828                 }
829                 context->window = newwin (/* height = */ 5,
830                                 /* width = */ width,
831                                 /* y = */ main_win_height + (5 * context->index),
832                                 /* x = */ 0);
833         }
836         /* Don't know what good this does exactly, but without this code
837          * "check_resize" will be called right after startup and *somehow*
838          * this leads to display errors. If we purge all initial characters
839          * here, the problem goes away. "wgetch" is non-blocking due to
840          * "nodelay" (see above). */
841         while (wgetch (stdscr) != ERR)
842         {
843                 /* eat up characters */;
844         }
846         return (0);
847 } /* }}} int pre_loop_hook */
849 static int pre_sleep_hook (pingobj_t *ping) /* {{{ */
851         return (check_resize (ping));
852 } /* }}} int pre_sleep_hook */
854 static int post_sleep_hook (pingobj_t *ping) /* {{{ */
856         return (check_resize (ping));
857 } /* }}} int pre_sleep_hook */
858 #else /* if !USE_NCURSES */
859 static int pre_loop_hook (pingobj_t *ping) /* {{{ */
861         pingobj_iter_t *iter;
863         for (iter = ping_iterator_get (ping);
864                         iter != NULL;
865                         iter = ping_iterator_next (iter))
866         {
867                 ping_context_t *ctx;
868                 size_t buffer_size;
870                 ctx = ping_iterator_get_context (iter);
871                 if (ctx == NULL)
872                         continue;
874                 buffer_size = 0;
875                 ping_iterator_get_info (iter, PING_INFO_DATA, NULL, &buffer_size);
877                 printf ("PING %s (%s) %zu bytes of data.\n",
878                                 ctx->host, ctx->addr, buffer_size);
879         }
881         return (0);
882 } /* }}} int pre_loop_hook */
884 static int pre_sleep_hook (__attribute__((unused)) pingobj_t *ping) /* {{{ */
886         fflush (stdout);
888         return (0);
889 } /* }}} int pre_sleep_hook */
891 static int post_sleep_hook (__attribute__((unused)) pingobj_t *ping) /* {{{ */
893         return (0);
894 } /* }}} int post_sleep_hook */
895 #endif
897 static void update_host_hook (pingobj_iter_t *iter, /* {{{ */
898                 __attribute__((unused)) int index)
900         double          latency;
901         unsigned int    sequence;
902         int             recv_ttl;
903         uint8_t         recv_qos;
904         char            recv_qos_str[16];
905         size_t          buffer_len;
906         size_t          data_len;
907         ping_context_t *context;
909         latency = -1.0;
910         buffer_len = sizeof (latency);
911         ping_iterator_get_info (iter, PING_INFO_LATENCY,
912                         &latency, &buffer_len);
914         sequence = 0;
915         buffer_len = sizeof (sequence);
916         ping_iterator_get_info (iter, PING_INFO_SEQUENCE,
917                         &sequence, &buffer_len);
919         recv_ttl = -1;
920         buffer_len = sizeof (recv_ttl);
921         ping_iterator_get_info (iter, PING_INFO_RECV_TTL,
922                         &recv_ttl, &buffer_len);
924         recv_qos = 0;
925         buffer_len = sizeof (recv_qos);
926         ping_iterator_get_info (iter, PING_INFO_RECV_QOS,
927                         &recv_qos, &buffer_len);
929         data_len = 0;
930         ping_iterator_get_info (iter, PING_INFO_DATA,
931                         NULL, &data_len);
933         context = (ping_context_t *) ping_iterator_get_context (iter);
935 #if USE_NCURSES
936 # define HOST_PRINTF(...) wprintw(main_win, __VA_ARGS__)
937 #else
938 # define HOST_PRINTF(...) printf(__VA_ARGS__)
939 #endif
941         context->req_sent++;
942         if (latency > 0.0)
943         {
944                 context->req_rcvd++;
945                 context->latency_total += latency;
946                 context->latency_total_square += (latency * latency);
948                 if ((context->latency_max < 0.0) || (context->latency_max < latency))
949                         context->latency_max = latency;
950                 if ((context->latency_min < 0.0) || (context->latency_min > latency))
951                         context->latency_min = latency;
953 #if USE_NCURSES
954                 if (has_colors () == TRUE)
955                 {
956                         int color = OPING_GREEN;
957                         double average = context_get_average (context);
958                         double stddev = context_get_stddev (context);
960                         if ((latency < (average - (2 * stddev)))
961                                         || (latency > (average + (2 * stddev))))
962                                 color = OPING_RED;
963                         else if ((latency < (average - stddev))
964                                         || (latency > (average + stddev)))
965                                 color = OPING_YELLOW;
967                         HOST_PRINTF ("%zu bytes from %s (%s): icmp_seq=%u ttl=%i ",
968                                         data_len, context->host, context->addr,
969                                         sequence, recv_ttl,
970                                         format_qos (recv_qos, recv_qos_str, sizeof (recv_qos_str)));
971                         if ((recv_qos != 0) || (opt_send_qos != 0))
972                         {
973                                 HOST_PRINTF ("qos=%s ",
974                                                 format_qos (recv_qos, recv_qos_str, sizeof (recv_qos_str)));
975                         }
976                         HOST_PRINTF ("time=");
977                         wattron (main_win, COLOR_PAIR(color));
978                         HOST_PRINTF ("%.2f", latency);
979                         wattroff (main_win, COLOR_PAIR(color));
980                         HOST_PRINTF (" ms\n");
981                 }
982                 else
983                 {
984 #endif
985                 HOST_PRINTF ("%zu bytes from %s (%s): icmp_seq=%u ttl=%i ",
986                                 data_len,
987                                 context->host, context->addr,
988                                 sequence, recv_ttl);
989                 if ((recv_qos != 0) || (opt_send_qos != 0))
990                 {
991                         HOST_PRINTF ("qos=%s ",
992                                         format_qos (recv_qos, recv_qos_str, sizeof (recv_qos_str)));
993                 }
994                 HOST_PRINTF ("time=%.2f ms\n", latency);
995 #if USE_NCURSES
996                 }
997 #endif
998         }
999         else
1000         {
1001 #if USE_NCURSES
1002                 if (has_colors () == TRUE)
1003                 {
1004                         HOST_PRINTF ("echo reply from %s (%s): icmp_seq=%u ",
1005                                         context->host, context->addr,
1006                                         sequence);
1007                         wattron (main_win, COLOR_PAIR(OPING_RED) | A_BOLD);
1008                         HOST_PRINTF ("timeout");
1009                         wattroff (main_win, COLOR_PAIR(OPING_RED) | A_BOLD);
1010                         HOST_PRINTF ("\n");
1011                 }
1012                 else
1013                 {
1014 #endif
1015                 HOST_PRINTF ("echo reply from %s (%s): icmp_seq=%u timeout\n",
1016                                 context->host, context->addr,
1017                                 sequence);
1018 #if USE_NCURSES
1019                 }
1020 #endif
1021         }
1023 #if USE_NCURSES
1024         update_stats_from_context (context, iter);
1025         wrefresh (main_win);
1026 #endif
1027 } /* }}} void update_host_hook */
1029 static int post_loop_hook (pingobj_t *ping) /* {{{ */
1031         pingobj_iter_t *iter;
1033 #if USE_NCURSES
1034         endwin ();
1035 #endif
1037         for (iter = ping_iterator_get (ping);
1038                         iter != NULL;
1039                         iter = ping_iterator_next (iter))
1040         {
1041                 ping_context_t *context;
1043                 context = ping_iterator_get_context (iter);
1045                 printf ("\n--- %s ping statistics ---\n"
1046                                 "%i packets transmitted, %i received, %.2f%% packet loss, time %.1fms\n",
1047                                 context->host, context->req_sent, context->req_rcvd,
1048                                 context_get_packet_loss (context),
1049                                 context->latency_total);
1051                 if (context->req_rcvd != 0)
1052                 {
1053                         double average;
1054                         double deviation;
1056                         average = context_get_average (context);
1057                         deviation = context_get_stddev (context);
1059                         printf ("rtt min/avg/max/sdev = %.3f/%.3f/%.3f/%.3f ms\n",
1060                                         context->latency_min,
1061                                         average,
1062                                         context->latency_max,
1063                                         deviation);
1064                 }
1066                 ping_iterator_set_context (iter, NULL);
1067                 context_destroy (context);
1068         }
1070         return (0);
1071 } /* }}} int post_loop_hook */
1073 int main (int argc, char **argv) /* {{{ */
1075         pingobj_t      *ping;
1076         pingobj_iter_t *iter;
1078         struct sigaction sigint_action;
1080         struct timeval  tv_begin;
1081         struct timeval  tv_end;
1082         struct timespec ts_wait;
1083         struct timespec ts_int;
1085         int optind;
1086         int i;
1087         int status;
1088 #if _POSIX_SAVED_IDS
1089         uid_t saved_set_uid;
1091         /* Save the old effective user id */
1092         saved_set_uid = geteuid ();
1093         /* Set the effective user ID to the real user ID without changing the
1094          * saved set-user ID */
1095         status = seteuid (getuid ());
1096         if (status != 0)
1097         {
1098                 fprintf (stderr, "Temporarily dropping privileges "
1099                                 "failed: %s\n", strerror (errno));
1100                 exit (EXIT_FAILURE);
1101         }
1102 #endif
1104         setlocale(LC_ALL, "");
1105         optind = read_options (argc, argv);
1107 #if !_POSIX_SAVED_IDS
1108         /* Cannot temporarily drop privileges -> reject every file but "-". */
1109         if ((opt_filename != NULL)
1110                         && (strcmp ("-", opt_filename) != 0)
1111                         && (getuid () != geteuid ()))
1112         {
1113                 fprintf (stderr, "Your real and effective user IDs don't "
1114                                 "match. Reading from a file (option '-f')\n"
1115                                 "is therefore too risky. You can still read "
1116                                 "from STDIN using '-f -' if you like.\n"
1117                                 "Sorry.\n");
1118                 exit (EXIT_FAILURE);
1119         }
1120 #endif
1122         if ((optind >= argc) && (opt_filename == NULL)) {
1123                 usage_exit (argv[0], 1);
1124         }
1126         if ((ping = ping_construct ()) == NULL)
1127         {
1128                 fprintf (stderr, "ping_construct failed\n");
1129                 return (1);
1130         }
1132         if (ping_setopt (ping, PING_OPT_TTL, &opt_send_ttl) != 0)
1133         {
1134                 fprintf (stderr, "Setting TTL to %i failed: %s\n",
1135                                 opt_send_ttl, ping_get_error (ping));
1136         }
1138         if (ping_setopt (ping, PING_OPT_QOS, &opt_send_qos) != 0)
1139         {
1140                 fprintf (stderr, "Setting TOS to %i failed: %s\n",
1141                                 opt_send_qos, ping_get_error (ping));
1142         }
1144         {
1145                 double temp_sec;
1146                 double temp_nsec;
1148                 temp_nsec = modf (opt_interval, &temp_sec);
1149                 ts_int.tv_sec  = (time_t) temp_sec;
1150                 ts_int.tv_nsec = (long) (temp_nsec * 1000000000L);
1152                 /* printf ("ts_int = %i.%09li\n", (int) ts_int.tv_sec, ts_int.tv_nsec); */
1153         }
1155         if (opt_addrfamily != PING_DEF_AF)
1156                 ping_setopt (ping, PING_OPT_AF, (void *) &opt_addrfamily);
1158         if (opt_srcaddr != NULL)
1159         {
1160                 if (ping_setopt (ping, PING_OPT_SOURCE, (void *) opt_srcaddr) != 0)
1161                 {
1162                         fprintf (stderr, "Setting source address failed: %s\n",
1163                                         ping_get_error (ping));
1164                 }
1165         }
1167         if (opt_device != NULL)
1168         {
1169                 if (ping_setopt (ping, PING_OPT_DEVICE, (void *) opt_device) != 0)
1170                 {
1171                         fprintf (stderr, "Setting device failed: %s\n",
1172                                         ping_get_error (ping));
1173                 }
1174         }
1176         if (opt_filename != NULL)
1177         {
1178                 FILE *infile;
1179                 char line[256];
1180                 char host[256];
1182                 if (strcmp (opt_filename, "-") == 0)
1183                         /* Open STDIN */
1184                         infile = fdopen(0, "r");
1185                 else
1186                         infile = fopen(opt_filename, "r");
1188                 if (infile == NULL)
1189                 {
1190                         fprintf (stderr, "Opening %s failed: %s\n",
1191                                         (strcmp (opt_filename, "-") == 0)
1192                                         ? "STDIN" : opt_filename,
1193                                         strerror(errno));
1194                         return (1);
1195                 }
1197 #if _POSIX_SAVED_IDS
1198                 /* Regain privileges */
1199                 status = seteuid (saved_set_uid);
1200                 if (status != 0)
1201                 {
1202                         fprintf (stderr, "Temporarily re-gaining privileges "
1203                                         "failed: %s\n", strerror (errno));
1204                         exit (EXIT_FAILURE);
1205                 }
1206 #endif
1208                 while (fgets(line, sizeof(line), infile))
1209                 {
1210                         /* Strip whitespace */
1211                         if (sscanf(line, "%s", host) != 1)
1212                                 continue;
1214                         if ((host[0] == 0) || (host[0] == '#'))
1215                                 continue;
1217                         if (ping_host_add(ping, host) < 0)
1218                         {
1219                                 const char *errmsg = ping_get_error (ping);
1221                                 fprintf (stderr, "Adding host `%s' failed: %s\n", host, errmsg);
1222                                 continue;
1223                         }
1224                         else
1225                         {
1226                                 host_num++;
1227                         }
1228                 }
1230 #if _POSIX_SAVED_IDS
1231                 /* Drop privileges */
1232                 status = seteuid (getuid ());
1233                 if (status != 0)
1234                 {
1235                         fprintf (stderr, "Temporarily dropping privileges "
1236                                         "failed: %s\n", strerror (errno));
1237                         exit (EXIT_FAILURE);
1238                 }
1239 #endif
1241                 fclose(infile);
1242         }
1244 #if _POSIX_SAVED_IDS
1245         /* Regain privileges */
1246         status = seteuid (saved_set_uid);
1247         if (status != 0)
1248         {
1249                 fprintf (stderr, "Temporarily re-gaining privileges "
1250                                 "failed: %s\n", strerror (errno));
1251                 exit (EXIT_FAILURE);
1252         }
1253 #endif
1255         for (i = optind; i < argc; i++)
1256         {
1257                 if (ping_host_add (ping, argv[i]) < 0)
1258                 {
1259                         const char *errmsg = ping_get_error (ping);
1261                         fprintf (stderr, "Adding host `%s' failed: %s\n", argv[i], errmsg);
1262                         continue;
1263                 }
1264                 else
1265                 {
1266                         host_num++;
1267                 }
1268         }
1270         /* Permanently drop root privileges if we're setuid-root. */
1271         status = setuid (getuid ());
1272         if (status != 0)
1273         {
1274                 fprintf (stderr, "Dropping privileges failed: %s\n",
1275                                 strerror (errno));
1276                 exit (EXIT_FAILURE);
1277         }
1279 #if _POSIX_SAVED_IDS
1280         saved_set_uid = (uid_t) -1;
1281 #endif
1283         ping_initialize_contexts (ping);
1285         if (i == 0)
1286                 return (1);
1288         memset (&sigint_action, '\0', sizeof (sigint_action));
1289         sigint_action.sa_handler = sigint_handler;
1290         if (sigaction (SIGINT, &sigint_action, NULL) < 0)
1291         {
1292                 perror ("sigaction");
1293                 return (1);
1294         }
1296         pre_loop_hook (ping);
1298         while (opt_count != 0)
1299         {
1300                 int index;
1301                 int status;
1303                 if (gettimeofday (&tv_begin, NULL) < 0)
1304                 {
1305                         perror ("gettimeofday");
1306                         return (1);
1307                 }
1309                 if (ping_send (ping) < 0)
1310                 {
1311                         fprintf (stderr, "ping_send failed: %s\n",
1312                                         ping_get_error (ping));
1313                         return (1);
1314                 }
1316                 index = 0;
1317                 for (iter = ping_iterator_get (ping);
1318                                 iter != NULL;
1319                                 iter = ping_iterator_next (iter))
1320                 {
1321                         update_host_hook (iter, index);
1322                         index++;
1323                 }
1325                 pre_sleep_hook (ping);
1327                 /* Don't sleep in the last iteration */
1328                 if (opt_count == 1)
1329                         break;
1331                 if (gettimeofday (&tv_end, NULL) < 0)
1332                 {
1333                         perror ("gettimeofday");
1334                         return (1);
1335                 }
1337                 time_calc (&ts_wait, &ts_int, &tv_begin, &tv_end);
1339                 /* printf ("Sleeping for %i.%09li seconds\n", (int) ts_wait.tv_sec, ts_wait.tv_nsec); */
1340                 while ((status = nanosleep (&ts_wait, &ts_wait)) != 0)
1341                 {
1342                         if (errno != EINTR)
1343                         {
1344                                 perror ("nanosleep");
1345                                 break;
1346                         }
1347                         else if (opt_count == 0)
1348                         {
1349                                 /* sigint */
1350                                 break;
1351                         }
1352                 }
1354                 post_sleep_hook (ping);
1356                 if (opt_count > 0)
1357                         opt_count--;
1358         } /* while (opt_count != 0) */
1360         post_loop_hook (ping);
1362         ping_destroy (ping);
1364         return (0);
1365 } /* }}} int main */
1367 /* vim: set fdm=marker : */