Code

- bindtextdomain for gettext, a few other smale cleanups here and there
[nagiosplug.git] / plugins / check_tcp.c
index 4da2ea5262240abc9328cc4d2e8d66e27649dc16..a660649cbedc21419beb8fcae0913062a2e366bb 100644 (file)
@@ -1,80 +1,47 @@
-/******************************************************************************
-*
-* This program is free software; you can redistribute it and/or modify
-* it under the terms of the GNU General Public License as published by
-* the Free Software Foundation; either version 2 of the License, or
-* (at your option) any later version.
-*
-* This program is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-* GNU General Public License for more details.
-*
-* You should have received a copy of the GNU General Public License
-* along with this program; if not, write to the Free Software
-* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-*
+/*****************************************************************************
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
 *****************************************************************************/
 
-const char *progname = "check_tcp";
+/* progname "check_tcp" changes depending on symlink called */
+char *progname;
 const char *revision = "$Revision$";
-const char *copyright = "2002-2003";
-const char *authors = "Nagios Plugin Development Team";
+const char *copyright = "1999-2003";
 const char *email = "nagiosplug-devel@lists.sourceforge.net";
 
-const char *summary = "\
-This plugin tests %s connections with the specified host.\n";
-
-const char *option_summary = "\
--H host -p port [-w warn_time] [-c crit_time] [-s send]\n\
-       [-e expect] [-W wait] [-t to_sec] [-v]\n";
-
-const char *options = "\
- -H, --hostname=ADDRESS\n\
-    Host name argument for servers using host headers (use numeric\n\
-    address if possible to bypass DNS lookup).\n\
- -p, --port=INTEGER\n\
-    Port number\n\
- -s, --send=STRING\n\
-    String to send to the server\n\
- -e, --expect=STRING\n\
-    String to expect in server response\n\
- -W, --wait=INTEGER\n\
-    Seconds to wait between sending string and polling for response\n\
- -w, --warning=DOUBLE\n\
-    Response time to result in warning status (seconds)\n\
- -c, --critical=DOUBLE\n\
-    Response time to result in critical status (seconds)\n\
- -t, --timeout=INTEGER\n\
-    Seconds before connection times out (default: %d)\n\
- -v\n\
-    Show details for command-line debugging (do not use with nagios server)\n\
- -h, --help\n\
-    Print detailed help screen\n\
- -V, --version\n\
-    Print version information";
-
-#include "config.h"
 #include "common.h"
 #include "netutils.h"
 #include "utils.h"
 
 #ifdef HAVE_SSL_H
-#include <rsa.h>
-#include <crypto.h>
-#include <x509.h>
-#include <pem.h>
-#include <ssl.h>
-#include <err.h>
-#endif
-
-#ifdef HAVE_OPENSSL_SSL_H
-#include <openssl/rsa.h>
-#include <openssl/crypto.h>
-#include <openssl/x509.h>
-#include <openssl/pem.h>
-#include <openssl/ssl.h>
-#include <openssl/err.h>
+#  include <rsa.h>
+#  include <crypto.h>
+#  include <x509.h>
+#  include <pem.h>
+#  include <ssl.h>
+#  include <err.h>
+#else
+#  ifdef HAVE_OPENSSL_SSL_H
+#    include <openssl/rsa.h>
+#    include <openssl/crypto.h>
+#    include <openssl/x509.h>
+#    include <openssl/pem.h>
+#    include <openssl/ssl.h>
+#    include <openssl/err.h>
+#  endif
 #endif
 
 #ifdef HAVE_SSL
@@ -90,9 +57,9 @@ enum {
 };
 
 int process_arguments (int, char **);
-void print_usage (void);
-void print_help (void);
 int my_recv (void);
+void print_help (void);
+void print_usage (void);
 
 char *SERVICE = NULL;
 char *SEND = NULL;
@@ -106,33 +73,44 @@ char *server_address = NULL;
 char *server_send = NULL;
 char *server_quit = NULL;
 char **server_expect = NULL;
-int server_expect_count = 0;
+size_t server_expect_count = 0;
+int maxbytes = 0;
 char **warn_codes = NULL;
-int warn_codes_count = 0;
+size_t warn_codes_count = 0;
 char **crit_codes = NULL;
-int crit_codes_count = 0;
-int delay = 0;
+size_t crit_codes_count = 0;
+unsigned int delay = 0;
 double warning_time = 0;
 int check_warning_time = FALSE;
 double critical_time = 0;
 int check_critical_time = FALSE;
 double elapsed_time = 0;
+long microsec;
 int verbose = FALSE;
 int use_ssl = FALSE;
 int sd = 0;
-char *buffer = "";
+char *buffer;
+
+
 
+
+
+\f
 int
 main (int argc, char **argv)
 {
        int result;
        int i;
-       char *status = "";
+       char *status;
        struct timeval tv;
 
+       setlocale (LC_ALL, "");
+       bindtextdomain (PACKAGE, LOCALEDIR);
+       textdomain (PACKAGE);
+
        if (strstr (argv[0], "check_udp")) {
-               asprintf (&progname, "check_udp");
-               asprintf (&SERVICE, "UDP");
+               progname = strdup ("check_udp");
+               SERVICE = strdup ("UDP");
                SEND = NULL;
                EXPECT = NULL;
                QUIT = NULL;
@@ -140,8 +118,8 @@ main (int argc, char **argv)
                PORT = 0;
        }
        else if (strstr (argv[0], "check_tcp")) {
-               asprintf (&progname, "check_tcp");
-               asprintf (&SERVICE, "TCP");
+               progname = strdup ("check_tcp");
+               SERVICE = strdup ("TCP");
                SEND = NULL;
                EXPECT = NULL;
                QUIT = NULL;
@@ -149,66 +127,66 @@ main (int argc, char **argv)
                PORT = 0;
        }
        else if (strstr (argv[0], "check_ftp")) {
-               asprintf (&progname, "check_ftp");
-               asprintf (&SERVICE, "FTP");
+               progname = strdup ("check_ftp");
+               SERVICE = strdup ("FTP");
                SEND = NULL;
-               asprintf (&EXPECT, "220");
-               asprintf (&QUIT, "QUIT\r\n");
+               EXPECT = strdup ("220");
+               QUIT = strdup ("QUIT\r\n");
                PROTOCOL = TCP_PROTOCOL;
                PORT = 21;
        }
        else if (strstr (argv[0], "check_smtp")) {
-               asprintf (&progname, "check_smtp");
-               asprintf (&SERVICE, "SMTP");
+               progname = strdup ("check_smtp");
+               SERVICE = strdup ("SMTP");
                SEND = NULL;
-               asprintf (&EXPECT, "220");
-               asprintf (&QUIT, "QUIT\r\n");
+               EXPECT = strdup ("220");
+               QUIT = strdup ("QUIT\r\n");
                PROTOCOL = TCP_PROTOCOL;
                PORT = 25;
        }
        else if (strstr (argv[0], "check_pop")) {
-               asprintf (&progname, "check_pop");
-               asprintf (&SERVICE, "POP");
+               progname = strdup ("check_pop");
+               SERVICE = strdup ("POP");
                SEND = NULL;
-               asprintf (&EXPECT, "+OK");
-               asprintf (&QUIT, "QUIT\r\n");
+               EXPECT = strdup ("+OK");
+               QUIT = strdup ("QUIT\r\n");
                PROTOCOL = TCP_PROTOCOL;
                PORT = 110;
        }
        else if (strstr (argv[0], "check_imap")) {
-               asprintf (&progname, "check_imap");
-               asprintf (&SERVICE, "IMAP");
+               progname = strdup ("check_imap");
+               SERVICE = strdup ("IMAP");
                SEND = NULL;
-               asprintf (&EXPECT, "* OK");
-               asprintf (&QUIT, "a1 LOGOUT\r\n");
+               EXPECT = strdup ("* OK");
+               QUIT = strdup ("a1 LOGOUT\r\n");
                PROTOCOL = TCP_PROTOCOL;
                PORT = 143;
        }
 #ifdef HAVE_SSL
        else if (strstr(argv[0],"check_simap")) {
-               asprintf (&progname, "check_simap");
-               asprintf (&SERVICE, "SIMAP");
+               progname = strdup ("check_simap");
+               SERVICE = strdup ("SIMAP");
                SEND=NULL;
-               asprintf (&EXPECT, "* OK");
-               asprintf (&QUIT, "a1 LOGOUT\r\n");
+               EXPECT = strdup ("* OK");
+               QUIT = strdup ("a1 LOGOUT\r\n");
                PROTOCOL=TCP_PROTOCOL;
                use_ssl=TRUE;
                PORT=993;
        }
        else if (strstr(argv[0],"check_spop")) {
-               asprintf (&progname, "check_spop");
-               asprintf (&SERVICE, "SPOP");
+               progname = strdup ("check_spop");
+               SERVICE = strdup ("SPOP");
                SEND=NULL;
-               asprintf (&EXPECT, "+OK");
-               asprintf (&QUIT, "QUIT\r\n");
+               EXPECT = strdup ("+OK");
+               QUIT = strdup ("QUIT\r\n");
                PROTOCOL=TCP_PROTOCOL;
                use_ssl=TRUE;
                PORT=995;
        }
 #endif
        else if (strstr (argv[0], "check_nntp")) {
-               asprintf (&progname, "check_nntp");
-               asprintf (&SERVICE, "NNTP");
+               progname = strdup ("check_nntp");
+               SERVICE = strdup ("NNTP");
                SEND = NULL;
                EXPECT = NULL;
                server_expect = realloc (server_expect, ++server_expect_count);
@@ -220,16 +198,17 @@ main (int argc, char **argv)
                PORT = 119;
        }
        else {
-               usage ("ERROR: Generic check_tcp called with unknown service\n");
+               progname = strdup ("check_tcp");
+               usage (_("ERROR: Generic check_tcp called with unknown service\n"));
        }
 
-       asprintf (&server_address, "127.0.0.1");
+       server_address = strdup ("127.0.0.1");
        server_port = PORT;
        server_send = SEND;
        server_quit = QUIT;
 
        if (process_arguments (argc, argv) == ERROR)
-               usage ("Could not parse arguments\n");
+               usage (_("Could not parse arguments\n"));
 
        /* use default expect if none listed in process_arguments() */
        if (EXPECT && server_expect_count == 0) {
@@ -265,10 +244,10 @@ main (int argc, char **argv)
                asprintf (&server_send, "%s\r\n", server_send);
 #ifdef HAVE_SSL
                if (use_ssl)
-                       SSL_write(ssl, server_send, strlen (server_send));
+                       SSL_write(ssl, server_send, (int)strlen(server_send));
                else
 #endif
-                       send (sd, server_send, strlen (server_send), 0);
+                       send (sd, server_send, strlen(server_send), 0);
        }
 
        if (delay > 0) {
@@ -280,17 +259,20 @@ main (int argc, char **argv)
 
                buffer = malloc (MAXBUF);
                memset (buffer, '\0', MAXBUF);
+               status = strdup ("");
                /* watch for the expect string */
                while ((i = my_recv ()) > 0) {
                        buffer[i] = '\0';
                        asprintf (&status, "%s%s", status, buffer);
                        if (buffer[i-2] == '\r' && buffer[i-1] == '\n')
                                break;
+                       if (maxbytes>0 && strlen(status) >= (unsigned)maxbytes)
+                               break;
                }
 
                /* return a CRITICAL status if we couldn't read any data */
                if (status == NULL)
-                       terminate (STATE_CRITICAL, "No data received from host\n");
+                       die (STATE_CRITICAL, _("No data received from host\n"));
 
                strip (status);
 
@@ -300,32 +282,37 @@ main (int argc, char **argv)
                if (server_expect_count > 0) {
                        for (i = 0;; i++) {
                                if (verbose)
-                                       printf ("%d %d\n", i, server_expect_count);
-                               if (i >= server_expect_count)
-                                       terminate (STATE_WARNING, "Invalid response from host\n");
+                                       printf ("%d %d\n", i, (int)server_expect_count);
+                               if (i >= (int)server_expect_count)
+                                       die (STATE_WARNING, _("Invalid response from host\n"));
                                if (strstr (status, server_expect[i]))
                                        break;
                        }
                }
        }
 
-       if (server_quit != NULL)
+       if (server_quit != NULL) {
 #ifdef HAVE_SSL
                if (use_ssl) {
-                       SSL_write (ssl, QUIT, strlen (QUIT));
+                       SSL_write (ssl, server_quit, (int)strlen(server_quit));
                        SSL_shutdown (ssl);
                        SSL_free (ssl);
                        SSL_CTX_free (ctx);
                }
-               else
+               else {
 #endif
-               send (sd, server_quit, strlen (server_quit), 0);
+                       send (sd, server_quit, strlen (server_quit), 0);
+#ifdef HAVE_SSL
+               }
+#endif
+       }
 
        /* close the connection */
        if (sd)
                close (sd);
 
-       elapsed_time = delta_time (tv);
+       microsec = deltime (tv);
+       elapsed_time = (double)microsec / 1.0e6;
 
        if (check_critical_time == TRUE && elapsed_time > critical_time)
                result = STATE_CRITICAL;
@@ -336,21 +323,20 @@ main (int argc, char **argv)
        alarm (0);
 
        printf
-               ("%s %s - %7.3f second response time on port %d",
+               (_("%s %s%s - %.3f second response time on port %d"),
                 SERVICE,
-                state_text (result), elapsed_time, server_port);
+                state_text (result),
+                (was_refused) ? " (refused)" : "",
+                elapsed_time, server_port);
 
        if (status && strlen(status) > 0)
                printf (" [%s]", status);
 
-       printf ("|time=%7.3f\n", elapsed_time);
+       printf ("|time=%ldus\n", microsec);
 
        return result;
 }
-
-
-
-
+\f
 
 
 
@@ -360,8 +346,8 @@ process_arguments (int argc, char **argv)
 {
        int c;
 
-       int option_index = 0;
-       static struct option long_options[] = {
+       int option = 0;
+       static struct option longopts[] = {
                {"hostname", required_argument, 0, 'H'},
                {"critical-time", required_argument, 0, 'c'},
                {"warning-time", required_argument, 0, 'w'},
@@ -372,8 +358,12 @@ process_arguments (int argc, char **argv)
                {"port", required_argument, 0, 'p'},
                {"send", required_argument, 0, 's'},
                {"expect", required_argument, 0, 'e'},
+               {"maxbytes", required_argument, 0, 'm'},
                {"quit", required_argument, 0, 'q'},
                {"delay", required_argument, 0, 'd'},
+               {"refuse", required_argument, 0, 'r'},
+               {"use-ipv4", no_argument, 0, '4'},
+               {"use-ipv6", no_argument, 0, '6'},
                {"verbose", no_argument, 0, 'v'},
                {"version", no_argument, 0, 'V'},
                {"help", no_argument, 0, 'h'},
@@ -401,15 +391,15 @@ process_arguments (int argc, char **argv)
        }
 
        while (1) {
-               c = getopt_long (argc, argv, "+hVvH:s:e:q:c:w:t:p:C:W:d:S", long_options,
-                                                                        &option_index);
+               c = getopt_long (argc, argv, "+hVv46H:s:e:q:m:c:w:t:p:C:W:d:Sr:",
+                                longopts, &option);
 
                if (c == -1 || c == EOF || c == 1)
                        break;
 
                switch (c) {
                case '?':                 /* print short usage statement if args not parsable */
-                       printf ("%s: Unknown argument: %s\n\n", progname, optarg);
+                       printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
                        print_usage ();
                        exit (STATE_UNKNOWN);
                case 'h':                 /* help */
@@ -421,21 +411,33 @@ process_arguments (int argc, char **argv)
                case 'v':                 /* verbose mode */
                        verbose = TRUE;
                        break;
+               case '4':
+                       address_family = AF_INET;
+                       break;
+               case '6':
+#ifdef USE_IPV6
+                       address_family = AF_INET6;
+#else
+                       usage (_("IPv6 support not available\n"));
+#endif
+                       break;
                case 'H':                 /* hostname */
                        if (is_host (optarg) == FALSE)
-                               usage2 ("invalid host name or address", optarg);
+                               usage2 (_("invalid host name or address"), optarg);
                        server_address = optarg;
                        break;
                case 'c':                 /* critical */
                        if (!is_intnonneg (optarg))
-                               usage ("Critical threshold must be a nonnegative integer\n");
-                       critical_time = strtod (optarg, NULL);
+                               usage (_("Critical threshold must be a nonnegative integer\n"));
+                       else
+                               critical_time = strtod (optarg, NULL);
                        check_critical_time = TRUE;
                        break;
                case 'w':                 /* warning */
                        if (!is_intnonneg (optarg))
-                               usage ("Warning threshold must be a nonnegative integer\n");
-                       warning_time = strtod (optarg, NULL);
+                               usage (_("Warning threshold must be a nonnegative integer\n"));
+                       else
+                               warning_time = strtod (optarg, NULL);
                        check_warning_time = TRUE;
                        break;
                case 'C':
@@ -448,13 +450,15 @@ process_arguments (int argc, char **argv)
                        break;
                case 't':                 /* timeout */
                        if (!is_intpos (optarg))
-                               usage ("Timeout interval must be a positive integer\n");
-                       socket_timeout = atoi (optarg);
+                               usage (_("Timeout interval must be a positive integer\n"));
+                       else
+                               socket_timeout = atoi (optarg);
                        break;
                case 'p':                 /* port */
                        if (!is_intpos (optarg))
-                               usage ("Server port must be a positive integer\n");
-                       server_port = atoi (optarg);
+                               usage (_("Server port must be a positive integer\n"));
+                       else
+                               server_port = atoi (optarg);
                        break;
                case 's':
                        server_send = optarg;
@@ -467,19 +471,34 @@ process_arguments (int argc, char **argv)
                                server_expect = realloc (server_expect, ++server_expect_count);
                        server_expect[server_expect_count - 1] = optarg;
                        break;
+               case 'm':
+                       if (!is_intpos (optarg))
+                               usage (_("Maxbytes must be a positive integer\n"));
+                       else
+                               maxbytes = atoi (optarg);
                case 'q':
                        server_quit = optarg;
                        break;
+               case 'r':
+                       if (!strncmp(optarg,"ok",2))
+                               econn_refuse_state = STATE_OK;
+                       else if (!strncmp(optarg,"warn",4))
+                               econn_refuse_state = STATE_WARNING;
+                       else if (!strncmp(optarg,"crit",4))
+                               econn_refuse_state = STATE_CRITICAL;
+                       else
+                               usage (_("Refuse mut be one of ok, warn, crit\n"));
+                       break;
                case 'd':
                        if (is_intpos (optarg))
                                delay = atoi (optarg);
                        else
-                               usage ("Delay must be a positive integer\n");
+                               usage (_("Delay must be a positive integer\n"));
                        break;
                case 'S':
 #ifndef HAVE_SSL
-                       terminate (STATE_UNKNOWN,
-                               "SSL support not available. Install OpenSSL and recompile.");
+                       die (STATE_UNKNOWN,
+                               _("SSL support not available. Install OpenSSL and recompile."));
 #endif
                        use_ssl = TRUE;
                        break;
@@ -487,32 +506,11 @@ process_arguments (int argc, char **argv)
        }
 
        if (server_address == NULL)
-               usage ("You must provide a server address\n");
+               usage (_("You must provide a server address\n"));
 
        return OK;
 }
-
-void
-print_help (void)
-{
-        print_revision (progname, revision);
-        printf ("Copyright (c) %s %s\n\t<%s>\n\n",
-                 copyright, authors, email);
-       printf (summary, SERVICE);
-        print_usage ();
-        printf ("\nOptions:\n");
-        printf (options, DEFAULT_SOCKET_TIMEOUT);
-        support ();
-}
-
-void
-print_usage (void)
-{
-        printf
-                ("Usage: %s %s\n"
-                 "       %s (-h|--help)\n"
-                 "       %s (-V|--version)\n", progname, option_summary, progname, progname);
-}
+\f
 
 #ifdef HAVE_SSL
 int
@@ -526,7 +524,7 @@ connect_SSL (void)
   SSL_load_error_strings ();
   if ((ctx = SSL_CTX_new (meth)) == NULL)
     {
-      printf ("ERROR: Cannot create SSL context.\n");
+      printf (_("ERROR: Cannot create SSL context.\n"));
       return STATE_CRITICAL;
     }
 
@@ -540,7 +538,7 @@ connect_SSL (void)
   time (&start_time);
 
   /* Make TCP connection */
-  if (my_tcp_connect (server_address, server_port, &sd) == STATE_OK)
+  if (my_tcp_connect (server_address, server_port, &sd) == STATE_OK && was_refused == FALSE)
     {
     /* Do the SSL handshake */
       if ((ssl = SSL_new (ctx)) != NULL)
@@ -552,7 +550,7 @@ connect_SSL (void)
       }
       else
       {
-        printf ("ERROR: Cannot initiate SSL handshake.\n");
+        printf (_("ERROR: Cannot initiate SSL handshake.\n"));
       }
       SSL_free (ssl);
     }
@@ -584,3 +582,67 @@ my_recv (void)
 
        return i;
 }
+
+
+
+
+
+\f
+void
+print_help (void)
+{
+       print_revision (progname, revision);
+
+       printf (_("Copyright (c) 1999 Ethan Galstad <nagios@nagios.org>\n"));
+       printf (_(COPYRIGHT), copyright, email);
+
+       printf (_("This plugin tests %s connections with the specified host.\n\n"),
+               SERVICE);
+
+       print_usage ();
+
+       printf (_(UT_HELP_VRSN));
+
+       printf (_(UT_HOST_PORT), 'p', "none");
+
+       printf (_(UT_IPv46));
+
+       printf (_("\
+ -s, --send=STRING\n\
+    String to send to the server\n\
+ -e, --expect=STRING\n\
+    String to expect in server response\n\
+ -q, --quit=STRING\n\
+    String to send server to initiate a clean close of the connection\n"));
+
+       printf (_("\
+ -r, --refuse=ok|warn|crit\n\
+    Accept tcp refusals with states ok, warn, crit (default: crit)\n\
+ -m, --maxbytes=INTEGER\n\
+    Close connection once more than this number of bytes are received\n\
+ -d, --delay=INTEGER\n\
+    Seconds to wait between sending string and polling for response\n"));
+
+       printf (_(UT_WARN_CRIT));
+
+       printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT);
+
+       printf (_(UT_VERBOSE));
+
+       printf (_(UT_SUPPORT));
+}
+
+
+
+
+void
+print_usage (void)
+{
+       printf (_("\
+Usage: %s -H host -p port [-w <warning time>] [-c <critical time>]\n\
+  [-s <send string>] [-e <expect string>] [-q <quit string>]\n\
+  [-m <maximum bytes>] [-d <delay>] [-t <timeout seconds>]\n\
+  [-r <refuse state>] [-v] [-4|-6]\n"), progname);
+       printf ("       %s (-h|--help)\n", progname);
+       printf ("       %s (-V|--version)\n", progname);
+}