X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fcheck_real.c;h=cbc3103c41b05756c7e64eb7ebe5b6b265512ed5;hb=d89d0b40f9cef4c1e04127dc4f71fad5057e1930;hp=9c9c3e0b93cdd2797ca7ef9ff6a4834c19a7ec4c;hpb=a228492c4bea15a3e6e7bdbfd6631611c97fe92c;p=nagiosplug.git diff --git a/plugins/check_real.c b/plugins/check_real.c index 9c9c3e0..cbc3103 100644 --- a/plugins/check_real.c +++ b/plugins/check_real.c @@ -1,24 +1,35 @@ -/****************************************************************************** - - 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. - -******************************************************************************/ +/***************************************************************************** +* +* Nagios check_real plugin +* +* License: GPL +* Copyright (c) 2000-2007 Nagios Plugins Development Team +* +* Description: +* +* This file contains the check_real plugin +* +* This plugin tests the REAL service on the specified host. +* +* +* 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 3 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, see . +* +* +*****************************************************************************/ const char *progname = "check_real"; -const char *revision = "$Revision$"; -const char *copyright = "2000-2003"; +const char *copyright = "2000-2007"; const char *email = "nagiosplug-devel@lists.sourceforge.net"; #include "common.h" @@ -50,19 +61,23 @@ int verbose = FALSE; - - - int main (int argc, char **argv) { int sd; - int result; + int result = STATE_UNKNOWN; char buffer[MAX_INPUT_BUFFER]; char *status_line = NULL; - if (process_arguments (argc, argv) != OK) - usage (_("Invalid command arguments supplied\n")); + setlocale (LC_ALL, ""); + bindtextdomain (PACKAGE, LOCALEDIR); + textdomain (PACKAGE); + + /* Parse extra opts if any */ + argv=np_extra_opts (&argc, argv, progname); + + if (process_arguments (argc, argv) == ERROR) + usage4 (_("Could not parse arguments")); /* initialize alarm signal handling */ signal (SIGALRM, socket_timeout_alarm_handler); @@ -100,7 +115,7 @@ main (int argc, char **argv) /* make sure we find the response we are looking for */ if (!strstr (buffer, server_expect)) { if (server_port == PORT) - printf (_("Invalid REAL response received from host\n")); + printf ("%s\n", _("Invalid REAL response received from host")); else printf (_("Invalid REAL response received from host on port %d\n"), server_port); @@ -173,7 +188,7 @@ main (int argc, char **argv) /* make sure we find the response we are looking for */ if (!strstr (buffer, server_expect)) { if (server_port == PORT) - printf (_("Invalid REAL response received from host\n")); + printf ("%s\n", _("Invalid REAL response received from host")); else printf (_("Invalid REAL response received from host on port %d\n"), server_port); @@ -247,17 +262,14 @@ main (int argc, char **argv) - - - /* process command-line arguments */ int 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'}, {"IPaddress", required_argument, 0, 'I'}, {"expect", required_argument, 0, 'e'}, @@ -285,8 +297,8 @@ process_arguments (int argc, char **argv) } while (1) { - c = getopt_long (argc, argv, "+hVI:H:e:u:p:w:c:t:", long_options, - &option_index); + c = getopt_long (argc, argv, "+hvVI:H:e:u:p:w:c:t:", longopts, + &option); if (c == -1 || c == EOF) break; @@ -297,22 +309,22 @@ process_arguments (int argc, char **argv) if (server_address) break; else if (is_host (optarg)) - server_address = strdup(optarg); + server_address = optarg; else - usage (_("Invalid host name\n")); + usage2 (_("Invalid hostname/address"), optarg); break; case 'e': /* string to expect in response header */ - server_expect = strdup(optarg); + server_expect = optarg; break; case 'u': /* server URL */ - server_url = strdup(optarg); + server_url = optarg; break; case 'p': /* port */ if (is_intpos (optarg)) { server_port = atoi (optarg); } else { - usage (_("Server port must be a positive integer\n")); + usage4 (_("Port must be a positive integer")); } break; case 'w': /* warning time threshold */ @@ -321,7 +333,7 @@ process_arguments (int argc, char **argv) check_warning_time = TRUE; } else { - usage (_("Warning time must be a nonnegative integer\n")); + usage4 (_("Warning time must be a positive integer")); } break; case 'c': /* critical time threshold */ @@ -330,7 +342,7 @@ process_arguments (int argc, char **argv) check_critical_time = TRUE; } else { - usage (_("Critical time must be a nonnegative integer\n")); + usage4 (_("Critical time must be a positive integer")); } break; case 'v': /* verbose */ @@ -341,17 +353,17 @@ process_arguments (int argc, char **argv) socket_timeout = atoi (optarg); } else { - usage (_("Time interval must be a nonnegative integer\n")); + usage4 (_("Timeout interval must be a positive integer")); } break; case 'V': /* version */ - print_revision (progname, "$Revision$"); + print_revision (progname, NP_VERSION); exit (STATE_OK); case 'h': /* help */ print_help (); exit (STATE_OK); case '?': /* usage */ - usage (_("Invalid argument\n")); + usage5 (); } } @@ -361,12 +373,12 @@ process_arguments (int argc, char **argv) server_address = argv[c++]; } else { - usage (_("Invalid host name")); + usage2 (_("Invalid hostname/address"), argv[c]); } } if (server_address==NULL) - usage (_("You must provide a server to check\n")); + usage4 (_("You must provide a server to check")); if (host_name==NULL) host_name = strdup (server_address); @@ -379,8 +391,6 @@ process_arguments (int argc, char **argv) - - int validate_arguments (void) { @@ -389,32 +399,32 @@ validate_arguments (void) - - void print_help (void) { char *myport; asprintf (&myport, "%d", PORT); - print_revision (progname, "$Revision$"); + print_revision (progname, NP_VERSION); - printf (_("Copyright (c) 1999 Pedro Leite \n")); - printf (_(COPYRIGHT), copyright, email); + printf ("Copyright (c) 1999 Pedro Leite \n"); + printf (COPYRIGHT, copyright, email); - printf (_("This plugin tests the REAL service on the specified host.\n\n")); + printf ("%s\n", _("This plugin tests the REAL service on the specified host.")); + + printf ("\n\n"); print_usage (); printf (_(UT_HELP_VRSN)); + printf (_(UT_EXTRA_OPTS)); printf (_(UT_HOST_PORT), 'p', myport); - printf (_("\ - -u, --url=STRING\n\ - Connect to this url\n\ - -e, --expect=STRING\n\ - String to expect in first line of server response (default: %s)\n"), + printf (" %s\n", "-u, --url=STRING"); + printf (" %s\n", _("Connect to this url")); + printf (" %s\n", "-e, --expect=STRING"); + printf (_("String to expect in first line of server response (default: %s)\n"), EXPECT); printf (_(UT_WARN_CRIT)); @@ -423,25 +433,27 @@ print_help (void) printf (_(UT_VERBOSE)); - printf(_("\ -This plugin will attempt to open an RTSP connection with the host.\n\ -Successul connects return STATE_OK, refusals and timeouts return\n\ -STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects,\n\ -but incorrect reponse messages from the host result in STATE_WARNING return\n\ -values.")); + printf ("\n"); + printf ("%s\n", _("This plugin will attempt to open an RTSP connection with the host.")); + printf ("%s\n", _("Successul connects return STATE_OK, refusals and timeouts return")); + printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects,")); + printf ("%s\n", _("but incorrect reponse messages from the host result in STATE_WARNING return")); + printf ("%s\n", _("values.")); + +#ifdef NP_EXTRA_OPTS + printf ("\n"); + printf ("%s\n", _("Notes:")); + printf (_(UT_EXTRA_OPTS_NOTES)); +#endif printf (_(UT_SUPPORT)); } - - void print_usage (void) { - printf ("\ -Usage: %s -H host [-e expect] [-p port] [-w warn] [-c crit]\n\ - [-t timeout] [-v]\n", progname); - printf (_(UT_HLP_VRS), progname, progname); + printf (_("Usage:")); + printf ("%s -H host [-e expect] [-p port] [-w warn] [-c crit] [-t timeout] [-v]\n", progname); }