Code

Timings in milliseconds and nicer output
[nagiosplug.git] / plugins / check_dns.c
1 /******************************************************************************
2  *
3  * CHECK_DNS.C
4  *
5  * Program: DNS plugin for Nagios
6  * License: GPL
7  * Copyright (c) 1999 Ethan Galstad (nagios@nagios.org)
8  *
9  * Last Modified: $Date$
10  *
11  * Notes:
12  *  - Safe popen added by Karl DeBisschop 9-11-99
13  *  - expected-address parameter added by Alex Chaffee - 7 Oct 2002
14  *
15  * Command line: (see print_usage)
16  *
17  * Description:
18  *
19  * This program will use the nslookup program to obtain the IP address
20  * for a given host name.  A optional DNS server may be specified.  If
21  * no DNS server is specified, the default server(s) for the system
22  * are used.
23  *
24  * Return Values:
25  *  OK           The DNS query was successful (host IP address was returned).
26  *  WARNING      The DNS server responded, but could not fulfill the request.
27  *  CRITICAL     The DNS server is not responding or encountered an error.
28  *
29  * License Information:
30  *
31  * This program is free software; you can redistribute it and/or modify
32  * it under the terms of the GNU General Public License as published by
33  * the Free Software Foundation; either version 2 of the License, or
34  * (at your option) any later version.
35  *
36  * This program is distributed in the hope that it will be useful,
37  * but WITHOUT ANY WARRANTY; without even the implied warranty of
38  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
39  * GNU General Public License for more details.
40  *
41  * You should have received a copy of the GNU General Public License
42  * along with this program; if not, write to the Free Software
43  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
44  *
45  *****************************************************************************/
47 #include "common.h"
48 #include "popen.h"
49 #include "utils.h"
51 const char *progname = "check_dns";
52 #define REVISION "$Revision$"
53 #define COPYRIGHT "2000-2002"
55 int process_arguments (int, char **);
56 int validate_arguments (void);
57 void print_usage (void);
58 void print_help (void);
59 int error_scan (char *);
61 #define ADDRESS_LENGTH 256
62 char query_address[ADDRESS_LENGTH] = "";
63 char dns_server[ADDRESS_LENGTH] = "";
64 char ptr_server[ADDRESS_LENGTH] = "";
65 int verbose = FALSE;
66 char expected_address[ADDRESS_LENGTH] = "";
67 int match_expected_address = FALSE;
69 int
70 main (int argc, char **argv)
71 {
72         char *command_line = NULL;
73         char input_buffer[MAX_INPUT_BUFFER];
74         char *output = NULL;
75         char *address = NULL;
76         char *temp_buffer = NULL;
77         int result = STATE_UNKNOWN;
78         double elapsed_time;
79         struct timeval tv;
80         int multi_address;
82         /* Set signal handling and alarm */
83         if (signal (SIGALRM, popen_timeout_alarm_handler) == SIG_ERR) {
84                 printf ("Cannot catch SIGALRM");
85                 return STATE_UNKNOWN;
86         }
88         if (process_arguments (argc, argv) != OK) {
89                 print_usage ();
90                 return STATE_UNKNOWN;
91         }
93         /* get the command to run */
94         asprintf (&command_line, "%s %s %s", NSLOOKUP_COMMAND,  query_address, dns_server);
96         alarm (timeout_interval);
97         gettimeofday (&tv, NULL);
99         if (verbose)
100                 printf ("%s\n", command_line);
101         /* run the command */
102         child_process = spopen (command_line);
103         if (child_process == NULL) {
104                 printf ("Could not open pipe: %s\n", command_line);
105                 return STATE_UNKNOWN;
106         }
108         child_stderr = fdopen (child_stderr_array[fileno (child_process)], "r");
109         if (child_stderr == NULL)
110                 printf ("Could not open stderr for %s\n", command_line);
112         /* scan stdout */
113         while (fgets (input_buffer, MAX_INPUT_BUFFER - 1, child_process)) {
115                 if (verbose)
116                         printf ("%s\n", input_buffer);
118                 if (strstr (input_buffer, ".in-addr.arpa")) {
119                         if ((temp_buffer = strstr (input_buffer, "name = ")))
120                                 address = strscpy (address, temp_buffer + 7);
121                         else {
122                                 output = strscpy (output, "Unknown error (plugin)");
123                                 result = STATE_WARNING;
124                         }
125                 }
127                 /* the server is responding, we just got the host name... */
128                 if (strstr (input_buffer, "Name:")) {
130                         /* get the host address */
131                         if (!fgets (input_buffer, MAX_INPUT_BUFFER - 1, child_process))
132                                 break;
134                         if (verbose)
135                                 printf ("%s\n", input_buffer);
137                         if ((temp_buffer = index (input_buffer, ':'))) {
138                                 temp_buffer++;
139                                 /* Strip leading spaces */
140                                 for (; *temp_buffer != '\0' && *temp_buffer == ' '; temp_buffer++)
141                                         /* NOOP */;
142                                 address = strscpy (address, temp_buffer);
143                                 strip (address);
144                                 result = STATE_OK;
145                         }
146                         else {
147                                 output = strscpy (output, "Unknown error (plugin)");
148                                 result = STATE_WARNING;
149                         }
151                         break;
152                 }
154                 result = error_scan (input_buffer);
155                 if (result != STATE_OK) {
156                         output = strscpy (output, 1 + index (input_buffer, ':'));
157                         break;
158                 }
160         }
162         /* scan stderr */
163         while (fgets (input_buffer, MAX_INPUT_BUFFER - 1, child_stderr)) {
164                 if (error_scan (input_buffer) != STATE_OK) {
165                         result = max_state (result, error_scan (input_buffer));
166                         output = strscpy (output, 1 + index (input_buffer, ':'));
167                 }
168         }
170         /* close stderr */
171         (void) fclose (child_stderr);
173         /* close stdout */
174         if (spclose (child_process)) {
175                 result = max_state (result, STATE_WARNING);
176                 if (!strcmp (output, ""))
177                         output = strscpy (output, "nslookup returned error status");
178         }
180         /* compare to expected address */
181         if (result == STATE_OK && match_expected_address && strcmp(address, expected_address)) {
182                 result = STATE_CRITICAL;
183                 asprintf(&output, "expected %s but got %s", expected_address, address);
184                 }
185         
186         elapsed_time = delta_time (tv);
188         if (result == STATE_OK) {
189                 if (strchr (address, ',') == NULL)
190                         multi_address = FALSE;
191                 else
192                         multi_address = TRUE;
194                 printf ("DNS ok - %-7.3f seconds response time, address%s %s|time=%-7.3f\n",
195                   elapsed_time, (multi_address==TRUE ? "es are" : " is"), address, elapsed_time);
196         }
197         else if (result == STATE_WARNING)
198                 printf ("DNS WARNING - %s\n",
199                         !strcmp (output, "") ? " Probably a non-existent host/domain" : output);
200         else if (result == STATE_CRITICAL)
201                 printf ("DNS CRITICAL - %s\n",
202                         !strcmp (output, "") ? " Probably a non-existent host/domain" : output);
203         else
204                 printf ("DNS problem - %s\n",
205                         !strcmp (output, "") ? " Probably a non-existent host/domain" : output);
207         return result;
210 int
211 error_scan (char *input_buffer)
214         /* the DNS lookup timed out */
215         if (strstr (input_buffer,
216              "Note:  nslookup is deprecated and may be removed from future releases.")
217             || strstr (input_buffer,
218              "Consider using the `dig' or `host' programs instead.  Run nslookup with")
219             || strstr (input_buffer,
220              "the `-sil[ent]' option to prevent this message from appearing."))
221                 return STATE_OK;
223         /* the DNS lookup timed out */
224         else if (strstr (input_buffer, "Timed out"))
225                 return STATE_WARNING;
227         /* DNS server is not running... */
228         else if (strstr (input_buffer, "No response from server"))
229                 return STATE_CRITICAL;
231         /* Host name is valid, but server doesn't have records... */
232         else if (strstr (input_buffer, "No records"))
233                 return STATE_WARNING;
235         /* Host or domain name does not exist */
236         else if (strstr (input_buffer, "Non-existent"))
237                 return STATE_CRITICAL;
238         else if (strstr (input_buffer, "** server can't find"))
239                 return STATE_CRITICAL;
240         else if(strstr(input_buffer,"NXDOMAIN")) /* 9.x */
241                 return STATE_CRITICAL;
243         /* Connection was refused */
244         else if (strstr (input_buffer, "Connection refused"))
245                 return STATE_CRITICAL;
247         /* Network is unreachable */
248         else if (strstr (input_buffer, "Network is unreachable"))
249                 return STATE_CRITICAL;
251         /* Internal server failure */
252         else if (strstr (input_buffer, "Server failure"))
253                 return STATE_CRITICAL;
255         /* DNS server refused to service request */
256         else if (strstr (input_buffer, "Refused"))
257                 return STATE_CRITICAL;
259         /* Request error */
260         else if (strstr (input_buffer, "Format error"))
261                 return STATE_WARNING;
263         else
264                 return STATE_OK;
268 /* process command-line arguments */
269 int
270 process_arguments (int argc, char **argv)
272         int c;
274         int opt_index = 0;
275         static struct option long_opts[] = {
276                 {"help", no_argument, 0, 'h'},
277                 {"version", no_argument, 0, 'V'},
278                 {"verbose", no_argument, 0, 'v'},
279                 {"timeout", required_argument, 0, 't'},
280                 {"hostname", required_argument, 0, 'H'},
281                 {"server", required_argument, 0, 's'},
282                 {"reverse-server", required_argument, 0, 'r'},
283                 {"expected-address", required_argument, 0, 'a'},
284                 {0, 0, 0, 0}
285         };
287         if (argc < 2)
288                 return ERROR;
290         for (c = 1; c < argc; c++)
291                 if (strcmp ("-to", argv[c]) == 0)
292                         strcpy (argv[c], "-t");
294         while (1) {
295                 c = getopt_long (argc, argv, "hVvt:H:s:r:a:", long_opts, &opt_index);
297                 if (c == -1 || c == EOF)
298                         break;
300                 switch (c) {
301                 case '?': /* args not parsable */
302                         printf ("%s: Unknown argument: %s\n\n", progname, optarg);
303                         print_usage ();
304                         exit (STATE_UNKNOWN);
305                 case 'h': /* help */
306                         print_help ();
307                         exit (STATE_OK);
308                 case 'V': /* version */
309                         print_revision (progname, REVISION);
310                         exit (STATE_OK);
311                 case 'v': /* version */
312                         verbose = TRUE;
313                         break;
314                 case 't': /* timeout period */
315                         timeout_interval = atoi (optarg);
316                         break;
317                 case 'H': /* hostname */
318                         if (is_host (optarg) == FALSE) {
319                                 printf ("Invalid host name/address\n\n");
320                                 print_usage ();
321                                 exit (STATE_UNKNOWN);
322                         }
323                         if (strlen (optarg) >= ADDRESS_LENGTH)
324                                 terminate (STATE_UNKNOWN, "Input buffer overflow\n");
325                         strcpy (query_address, optarg);
326                         break;
327                 case 's': /* server name */
328                         if (is_host (optarg) == FALSE) {
329                                 printf ("Invalid server name/address\n\n");
330                                 print_usage ();
331                                 exit (STATE_UNKNOWN);
332                         }
333                         if (strlen (optarg) >= ADDRESS_LENGTH)
334                                 terminate (STATE_UNKNOWN, "Input buffer overflow\n");
335                         strcpy (dns_server, optarg);
336                         break;
337                 case 'r': /* reverse server name */
338                         if (is_host (optarg) == FALSE) {
339                                 printf ("Invalid host name/address\n\n");
340                                 print_usage ();
341                                 exit (STATE_UNKNOWN);
342                         }
343                         if (strlen (optarg) >= ADDRESS_LENGTH)
344                                 terminate (STATE_UNKNOWN, "Input buffer overflow\n");
345                         strcpy (ptr_server, optarg);
346                         break;
347                 case 'a': /* expected address */
348                         if (is_addr (optarg) == FALSE) {
349                                 printf ("Invalid expected address\n\n");
350                                 print_usage ();
351                                 exit (STATE_UNKNOWN);
352                         }
353                         if (strlen (optarg) >= ADDRESS_LENGTH)
354                                 terminate (STATE_UNKNOWN, "Input buffer overflow\n");
355                         strcpy (expected_address, optarg);
356                         match_expected_address = TRUE;
357                         break;
358                 }
359         }
361         c = optind;
362         if (strlen(query_address)==0 && c<argc) {
363                 if (is_host(argv[c])==FALSE) {
364                         printf ("Invalid name/address: %s\n\n", argv[c]);
365                         return ERROR;
366                 }
367                 if (strlen(argv[c])>=ADDRESS_LENGTH)
368                         terminate (STATE_UNKNOWN, "Input buffer overflow\n");
369                 strcpy (query_address, argv[c++]);
370         }
372         if (strlen(dns_server)==0 && c<argc) {
373                 if (is_host(argv[c]) == FALSE) {
374                         printf ("Invalid name/address: %s\n\n", argv[c]);
375                         return ERROR;
376                 }
377                 if (strlen(argv[c]) >= ADDRESS_LENGTH)
378                         terminate (STATE_UNKNOWN, "Input buffer overflow\n");
379                 strcpy (dns_server, argv[c++]);
380         }
382         return validate_arguments ();
385 int
386 validate_arguments ()
388         if (query_address[0] == 0)
389                 return ERROR;
390         else
391                 return OK;
394 void
395 print_usage (void)
397         printf ("Usage: %s -H host [-s server] [-a expected-address] [-t timeout]\n" "       %s --help\n"
398                                         "       %s --version\n", progname, progname, progname);
401 void
402 print_help (void)
404         print_revision (progname, REVISION);
405         printf ("Copyright (c) 1999 Ethan Galstad (nagios@nagios.org)\n\n");
406         print_usage ();
407         printf
408                 ("\nOptions:\n"
409                  "-H, --hostname=HOST\n"
410                  "   The name or address you want to query\n"
411                  "-s, --server=HOST\n"
412                  "   Optional DNS server you want to use for the lookup\n"
413                  "-a, --expected-address=IP-ADDRESS\n"
414                  "   Optional IP address you expect the DNS server to return\n"
415                  "-t, --timeout=INTEGER\n"
416                  "   Seconds before connection times out (default: %d)\n"
417                  "-h, --help\n"
418                  "   Print detailed help\n"
419                  "-V, --version\n"
420                  "   Print version numbers and license information\n"
421                  "\n"
422                  "This plugin uses the nslookup program to obtain the IP address\n"
423                  "for the given host/domain query.  A optional DNS server to use may\n"
424                  "be specified.  If no DNS server is specified, the default server(s)\n"
425                  "specified in /etc/resolv.conf will be used.\n", DEFAULT_SOCKET_TIMEOUT);