Code

re-add a call to setlocale(LC_ALL, "") in check_ping.c
[nagiosplug.git] / plugins / check_ping.c
index ab5e0cc327271d57446e703a0e9be96b7c869798..fc720144dd0b419a7b97368282b407306452e637 100644 (file)
  along with this program; if not, write to the Free Software
  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
+ $Id$
 ******************************************************************************/
 
 const char *progname = "check_ping";
 const char *revision = "$Revision$";
-const char *copyright = "2000-2003";
+const char *copyright = "2000-2004";
 const char *email = "nagiosplug-devel@lists.sourceforge.net";
 
 #include "common.h"
@@ -60,56 +62,55 @@ char *warn_text;
 
 
 
-
-\f
 int
 main (int argc, char **argv)
 {
        char *cmd = NULL;
+       char *rawcmd = NULL;
        int result = STATE_UNKNOWN;
        int this_result = STATE_UNKNOWN;
        int i;
 
        setlocale (LC_ALL, "");
+       setlocale (LC_NUMERIC, "C");
        bindtextdomain (PACKAGE, LOCALEDIR);
        textdomain (PACKAGE);
 
-       addresses = malloc ((size_t)max_addr);
+       addresses = malloc (sizeof(char*) * max_addr);
+       addresses[0] = NULL;
 
        if (process_arguments (argc, argv) == ERROR)
-               usage (_("Could not parse arguments"));
+               usage4 (_("Could not parse arguments"));
 
        /* Set signal handling and alarm */
        if (signal (SIGALRM, popen_timeout_alarm_handler) == SIG_ERR) {
-               printf (_("Cannot catch SIGALRM"));
-               return STATE_UNKNOWN;
+               usage4 (_("Cannot catch SIGALRM"));
        }
 
        /* handle timeouts gracefully */
        alarm (timeout_interval);
 
        for (i = 0 ; i < n_addresses ; i++) {
+               
+#ifdef PING6_COMMAND
+               if (is_inet6_addr(addresses[i]) && address_family != AF_INET)
+                       rawcmd = strdup(PING6_COMMAND);
+               else
+                       rawcmd = strdup(PING_COMMAND);
+#else
+               rawcmd = strdup(PING_COMMAND);
+#endif
 
                /* does the host address of number of packets argument come first? */
-#ifdef PING6_COMMAND
-# ifdef PING_PACKETS_FIRST
-       if (is_inet6_addr(addresses[i]) && address_family != AF_INET)
-               asprintf (&cmd, PING6_COMMAND, max_packets, addresses[i]);
-       else
-               asprintf (&cmd, PING_COMMAND, max_packets, addresses[i]);
-# else
-       if (is_inet6_addr(addresses[i]) && address_family != AF_INET) 
-               asprintf (&cmd, PING6_COMMAND, addresses[i], max_packets);
-       else
-               asprintf (&cmd, PING_COMMAND, addresses[i], max_packets);
-# endif
-#else /* USE_IPV6 */
-# ifdef PING_PACKETS_FIRST
-               asprintf (&cmd, PING_COMMAND, max_packets, addresses[i]);
+#ifdef PING_PACKETS_FIRST
+# ifdef PING_HAS_TIMEOUT
+               asprintf (&cmd, rawcmd, timeout_interval, max_packets, addresses[i]);
 # else
-               asprintf (&cmd, PING_COMMAND, addresses[i], max_packets);
+               asprintf (&cmd, rawcmd, max_packets, addresses[i]);
 # endif
-#endif /* USE_IPV6 */
+#else
+               asprintf (&cmd, rawcmd, addresses[i], max_packets);
+#endif
 
                if (verbose)
                        printf ("%s ==> ", cmd);
@@ -120,7 +121,7 @@ main (int argc, char **argv)
                if (pl == UNKNOWN_PACKET_LOSS || rta < 0.0) {
                        printf ("%s\n", cmd);
                        die (STATE_UNKNOWN,
-                                  _("Error: Could not interpret output from ping command\n"));
+                                  _("CRITICAL - Could not interpret output from ping command\n"));
                }
 
                if (pl >= cpl || rta >= crta || rta < 0)
@@ -149,7 +150,8 @@ main (int argc, char **argv)
                        printf ("%f:%d%% %f:%d%%\n", wrta, wpl, crta, cpl);
 
                result = max_state (result, this_result);
-
+               free (rawcmd);
+               free (cmd);
        }
 
        return result;
@@ -157,9 +159,6 @@ main (int argc, char **argv)
 
 
 
-
-
-\f
 /* process command-line arguments */
 int
 process_arguments (int argc, char **argv)
@@ -196,8 +195,7 @@ process_arguments (int argc, char **argv)
 
                switch (c) {
                case '?':       /* usage */
-                       usage3 (_("Unknown argument"), optopt);
-                       break;
+                       usage2 (_("Unknown argument"), optarg);
                case 'h':       /* help */
                        print_help ();
                        exit (STATE_OK);
@@ -228,7 +226,7 @@ process_arguments (int argc, char **argv)
                                n_addresses++;
                                if (n_addresses > max_addr) {
                                        max_addr *= 2;
-                                       addresses = realloc (addresses, (size_t)max_addr);
+                                       addresses = realloc (addresses, sizeof(char*) * max_addr);
                                        if (addresses == NULL)
                                                die (STATE_UNKNOWN, _("Could not realloc() addresses\n"));
                                }
@@ -268,10 +266,10 @@ process_arguments (int argc, char **argv)
 
        if (addresses[0] == NULL) {
                if (is_host (argv[c]) == FALSE) {
-                       printf (_("Invalid host name/address: %s\n\n"), argv[c]);
-                       return ERROR;
+                       usage2 (_("Invalid hostname/address"), argv[c]);
                } else {
                        addresses[0] = argv[c++];
+                       n_addresses++;
                        if (c == argc)
                                return validate_arguments ();
                }
@@ -333,6 +331,8 @@ process_arguments (int argc, char **argv)
        return validate_arguments ();
 }
 
+
+
 int
 get_threshold (char *arg, float *trta, int *tpl)
 {
@@ -347,6 +347,8 @@ get_threshold (char *arg, float *trta, int *tpl)
        return STATE_UNKNOWN;
 }
 
+
+
 int
 validate_arguments ()
 {
@@ -387,7 +389,7 @@ validate_arguments ()
 
        for (i=0; i<n_addresses; i++) {
                if (is_host(addresses[i]) == FALSE)
-                       usage2 (_("Invalid host name/address"), addresses[i]);
+                       usage2 (_("Invalid hostname/address"), addresses[i]);
        }
 
        return OK;
@@ -395,9 +397,6 @@ validate_arguments ()
 
 
 
-
-
-\f
 int
 run_ping (const char *cmd, const char *addr)
 {
@@ -405,7 +404,7 @@ run_ping (const char *cmd, const char *addr)
        int result = STATE_UNKNOWN;
 
        if ((child_process = spopen (cmd)) == NULL)
-               die (STATE_UNKNOWN, _("Cannot open pipe: %s"), cmd);
+               die (STATE_UNKNOWN, _("Could not open pipe: %s\n"), cmd);
 
        child_stderr = fdopen (child_stderr_array[fileno (child_process)], "r");
        if (child_stderr == NULL)
@@ -417,10 +416,15 @@ run_ping (const char *cmd, const char *addr)
 
                /* get the percent loss statistics */
                if(sscanf(buf,"%*d packets transmitted, %*d packets received, +%*d errors, %d%% packet loss",&pl)==1 ||
-                        sscanf(buf,"%*d packets transmitted, %*d packets received, %d%% packet loss",&pl)==1   ||
+                        sscanf(buf,"%*d packets transmitted, %*d packets received, +%*d duplicates, %d%% packet loss", &pl) == 1 ||
+                        sscanf(buf,"%*d packets transmitted, %*d received, +%*d duplicates, %d%% packet loss", &pl) == 1 ||
+                        sscanf(buf,"%*d packets transmitted, %*d packets received, %d%% packet loss",&pl)==1 ||
                         sscanf(buf,"%*d packets transmitted, %*d packets received, %d%% loss, time",&pl)==1 ||
                         sscanf(buf,"%*d packets transmitted, %*d received, %d%% loss, time", &pl)==1 ||
-                  sscanf(buf,"%*d packets transmitted, %*d received, +%*d errors, %d%% packet loss", &pl) == 1)
+                        sscanf(buf,"%*d packets transmitted, %*d received, %d%% packet loss, time", &pl)==1 ||
+                        sscanf(buf,"%*d packets transmitted, %*d received, +%*d errors, %d%% packet loss", &pl) == 1 ||
+                        sscanf(buf,"%*d packets transmitted %*d received, +%*d errors, %d%% packet loss", &pl) == 1
+                        )
                        continue;
 
                /* get the round trip average */
@@ -431,6 +435,7 @@ run_ping (const char *cmd, const char *addr)
                                 sscanf(buf,"round-trip min/avg/max/stddev = %*f/%f/%*f/%*f",&rta)==1 ||
                                 sscanf(buf,"round-trip min/avg/max/std-dev = %*f/%f/%*f/%*f",&rta)==1 ||
                                 sscanf(buf,"round-trip (ms) min/avg/max = %*f/%f/%*f",&rta)==1 ||
+                                sscanf(buf,"round-trip (ms) min/avg/max/stddev = %*f/%f/%*f/%*f",&rta)==1 ||
                                 sscanf(buf,"rtt min/avg/max/mdev = %*f/%f/%*f/%*f ms",&rta)==1)
                        continue;
        }
@@ -441,7 +446,7 @@ run_ping (const char *cmd, const char *addr)
 
        /* check stderr, setting at least WARNING if there is output here */
        while (fgets (buf, MAX_INPUT_BUFFER - 1, child_stderr))
-               if (! strstr(buf,"Warning: no SO_TIMESTAMP support, falling back to SIOCGSTAMP"))
+               if (! strstr(buf,"WARNING - no SO_TIMESTAMP support, falling back to SIOCGSTAMP"))
                        result = max_state (STATE_WARNING, error_scan (buf, addr));
 
        (void) fclose (child_stderr);
@@ -459,24 +464,24 @@ run_ping (const char *cmd, const char *addr)
 
 
 
-
-
 int
 error_scan (char buf[MAX_INPUT_BUFFER], const char *addr)
 {
        if (strstr (buf, "Network is unreachable"))
-               die (STATE_CRITICAL, _("PING CRITICAL - Network unreachable (%s)"), addr);
+               die (STATE_CRITICAL, _("CRITICAL - Network unreachable (%s)"), addr);
        else if (strstr (buf, "Destination Host Unreachable"))
-               die (STATE_CRITICAL, _("PING CRITICAL - Host Unreachable (%s)"), addr);
+               die (STATE_CRITICAL, _("CRITICAL - Host Unreachable (%s)"), addr);
        else if (strstr (buf, "unknown host" ))
-               die (STATE_CRITICAL, _("PING CRITICAL - Host not found (%s)"), addr);
+               die (STATE_CRITICAL, _("CRITICAL - Host not found (%s)"), addr);
+       else if (strstr (buf, "Time to live exceeded"))
+               die (STATE_CRITICAL, _("CRITICAL - Time to live exceeded (%s)"), addr);
 
        if (strstr (buf, "(DUP!)") || strstr (buf, "DUPLICATES FOUND")) {
                if (warn_text == NULL)
                        warn_text = strdup (_(WARN_DUPLICATES));
                else if (! strstr (warn_text, _(WARN_DUPLICATES)) &&
                         asprintf (&warn_text, "%s %s", warn_text, _(WARN_DUPLICATES)) == -1)
-                       die (STATE_UNKNOWN, _("unable to realloc warn_text"));
+                       die (STATE_UNKNOWN, _("Unable to realloc warn_text"));
                return (STATE_WARNING);
        }
 
@@ -485,25 +490,13 @@ error_scan (char buf[MAX_INPUT_BUFFER], const char *addr)
 
 
 
-
-
-\f
-void
-print_usage (void)
-{
-       printf (\
-"Usage: %s -H <host_address> -w <wrta>,<wpl>%% -c <crta>,<cpl>%%\n\
-  [-p packets] [-t timeout] [-L] [-4|-6]\n", progname);
-       printf (_(UT_HLP_VRS), progname, progname);
-}
-
 void
 print_help (void)
 {
        print_revision (progname, revision);
 
-       printf (_("Copyright (c) 1999 Ethan Galstad <nagios@nagios.org>"));
-       printf (_(COPYRIGHT), copyright, email);
+       printf ("Copyright (c) 1999 Ethan Galstad <nagios@nagios.org>");
+       printf (COPYRIGHT, copyright, email);
 
        printf (_("Use ping to check connection statistics for a remote host.\n\n"));
 
@@ -541,3 +534,10 @@ the contrib area of the downloads section at http://www.nagios.org\n\n"));
 
        printf (_(UT_SUPPORT));
 }
+
+void
+print_usage (void)
+{
+       printf ("Usage: %s -H <host_address> -w <wrta>,<wpl>%% -c <crta>,<cpl>%%\n\
+                     [-p packets] [-t timeout] [-L] [-4|-6]\n", progname);
+}