1 /*****************************************************************************
3 * Monitoring check_real plugin
6 * Copyright (c) 2000-2007 Monitoring Plugins Development Team
10 * This file contains the check_real plugin
12 * This plugin tests the REAL service on the specified host.
15 * This program is free software: you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation, either version 3 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program. If not, see <http://www.gnu.org/licenses/>.
29 *****************************************************************************/
31 const char *progname
= "check_real";
32 const char *copyright
= "2000-2007";
33 const char *email
= "devel@monitoring-plugins.org";
43 #define EXPECT "RTSP/1."
46 int process_arguments (int, char **);
47 int validate_arguments (void);
48 void print_help (void);
49 void print_usage (void);
51 int server_port
= PORT
;
54 char *server_url
= NULL
;
57 int check_warning_time
= FALSE
;
58 int critical_time
= 0;
59 int check_critical_time
= FALSE
;
65 main (int argc
, char **argv
)
68 int result
= STATE_UNKNOWN
;
69 char buffer
[MAX_INPUT_BUFFER
];
70 char *status_line
= NULL
;
72 setlocale (LC_ALL
, "");
73 bindtextdomain (PACKAGE
, LOCALEDIR
);
76 /* Parse extra opts if any */
77 argv
=np_extra_opts (&argc
, argv
, progname
);
79 if (process_arguments (argc
, argv
) == ERROR
)
80 usage4 (_("Could not parse arguments"));
82 /* initialize alarm signal handling */
83 signal (SIGALRM
, socket_timeout_alarm_handler
);
85 /* set socket timeout */
86 alarm (socket_timeout
);
89 /* try to connect to the host at the given port number */
90 if (my_tcp_connect (server_address
, server_port
, &sd
) != STATE_OK
)
91 die (STATE_CRITICAL
, _("Unable to connect to %s on port %d\n"),
92 server_address
, server_port
);
94 /* Part I - Server Check */
96 /* send the OPTIONS request */
97 sprintf (buffer
, "OPTIONS rtsp://%s:%d RTSP/1.0\r\n", host_name
, server_port
);
98 result
= send (sd
, buffer
, strlen (buffer
), 0);
100 /* send the header sync */
101 sprintf (buffer
, "CSeq: 1\r\n");
102 result
= send (sd
, buffer
, strlen (buffer
), 0);
104 /* send a newline so the server knows we're done with the request */
105 sprintf (buffer
, "\r\n");
106 result
= send (sd
, buffer
, strlen (buffer
), 0);
108 /* watch for the REAL connection string */
109 result
= recv (sd
, buffer
, MAX_INPUT_BUFFER
- 1, 0);
111 /* return a CRITICAL status if we couldn't read any data */
113 die (STATE_CRITICAL
, _("No data received from %s\n"), host_name
);
115 /* make sure we find the response we are looking for */
116 if (!strstr (buffer
, server_expect
)) {
117 if (server_port
== PORT
)
118 printf ("%s\n", _("Invalid REAL response received from host"));
120 printf (_("Invalid REAL response received from host on port %d\n"),
124 /* else we got the REAL string, so check the return code */
130 status_line
= (char *) strtok (buffer
, "\n");
132 if (strstr (status_line
, "200"))
135 /* client errors result in a warning state */
136 else if (strstr (status_line
, "400"))
137 result
= STATE_WARNING
;
138 else if (strstr (status_line
, "401"))
139 result
= STATE_WARNING
;
140 else if (strstr (status_line
, "402"))
141 result
= STATE_WARNING
;
142 else if (strstr (status_line
, "403"))
143 result
= STATE_WARNING
;
144 else if (strstr (status_line
, "404"))
145 result
= STATE_WARNING
;
147 /* server errors result in a critical state */
148 else if (strstr (status_line
, "500"))
149 result
= STATE_CRITICAL
;
150 else if (strstr (status_line
, "501"))
151 result
= STATE_CRITICAL
;
152 else if (strstr (status_line
, "502"))
153 result
= STATE_CRITICAL
;
154 else if (strstr (status_line
, "503"))
155 result
= STATE_CRITICAL
;
158 result
= STATE_UNKNOWN
;
161 /* Part II - Check stream exists and is ok */
162 if ((result
== STATE_OK
)&& (server_url
!= NULL
) ) {
164 /* Part I - Server Check */
166 /* send the DESCRIBE request */
167 sprintf (buffer
, "DESCRIBE rtsp://%s:%d%s RTSP/1.0\r\n", host_name
,
168 server_port
, server_url
);
169 result
= send (sd
, buffer
, strlen (buffer
), 0);
171 /* send the header sync */
172 sprintf (buffer
, "CSeq: 2\r\n");
173 result
= send (sd
, buffer
, strlen (buffer
), 0);
175 /* send a newline so the server knows we're done with the request */
176 sprintf (buffer
, "\r\n");
177 result
= send (sd
, buffer
, strlen (buffer
), 0);
179 /* watch for the REAL connection string */
180 result
= recv (sd
, buffer
, MAX_INPUT_BUFFER
- 1, 0);
181 buffer
[result
] = '\0'; /* null terminate recieved buffer */
183 /* return a CRITICAL status if we couldn't read any data */
185 printf (_("No data received from host\n"));
186 result
= STATE_CRITICAL
;
189 /* make sure we find the response we are looking for */
190 if (!strstr (buffer
, server_expect
)) {
191 if (server_port
== PORT
)
192 printf ("%s\n", _("Invalid REAL response received from host"));
194 printf (_("Invalid REAL response received from host on port %d\n"),
199 /* else we got the REAL string, so check the return code */
205 status_line
= (char *) strtok (buffer
, "\n");
207 if (strstr (status_line
, "200"))
210 /* client errors result in a warning state */
211 else if (strstr (status_line
, "400"))
212 result
= STATE_WARNING
;
213 else if (strstr (status_line
, "401"))
214 result
= STATE_WARNING
;
215 else if (strstr (status_line
, "402"))
216 result
= STATE_WARNING
;
217 else if (strstr (status_line
, "403"))
218 result
= STATE_WARNING
;
219 else if (strstr (status_line
, "404"))
220 result
= STATE_WARNING
;
222 /* server errors result in a critical state */
223 else if (strstr (status_line
, "500"))
224 result
= STATE_CRITICAL
;
225 else if (strstr (status_line
, "501"))
226 result
= STATE_CRITICAL
;
227 else if (strstr (status_line
, "502"))
228 result
= STATE_CRITICAL
;
229 else if (strstr (status_line
, "503"))
230 result
= STATE_CRITICAL
;
233 result
= STATE_UNKNOWN
;
239 if (result
== STATE_OK
) {
241 if (check_critical_time
== TRUE
242 && (end_time
- start_time
) > critical_time
) result
= STATE_CRITICAL
;
243 else if (check_warning_time
== TRUE
244 && (end_time
- start_time
) > warning_time
) result
=
247 /* Put some HTML in here to create a dynamic link */
248 printf (_("REAL %s - %d second response time\n"),
250 (int) (end_time
- start_time
));
253 printf ("%s\n", status_line
);
255 /* close the connection */
258 /* reset the alarm */
266 /* process command-line arguments */
268 process_arguments (int argc
, char **argv
)
273 static struct option longopts
[] = {
274 {"hostname", required_argument
, 0, 'H'},
275 {"IPaddress", required_argument
, 0, 'I'},
276 {"expect", required_argument
, 0, 'e'},
277 {"url", required_argument
, 0, 'u'},
278 {"port", required_argument
, 0, 'p'},
279 {"critical", required_argument
, 0, 'c'},
280 {"warning", required_argument
, 0, 'w'},
281 {"timeout", required_argument
, 0, 't'},
282 {"verbose", no_argument
, 0, 'v'},
283 {"version", no_argument
, 0, 'V'},
284 {"help", no_argument
, 0, 'h'},
291 for (c
= 1; c
< argc
; c
++) {
292 if (strcmp ("-to", argv
[c
]) == 0)
293 strcpy (argv
[c
], "-t");
294 else if (strcmp ("-wt", argv
[c
]) == 0)
295 strcpy (argv
[c
], "-w");
296 else if (strcmp ("-ct", argv
[c
]) == 0)
297 strcpy (argv
[c
], "-c");
301 c
= getopt_long (argc
, argv
, "+hvVI:H:e:u:p:w:c:t:", longopts
,
304 if (c
== -1 || c
== EOF
)
308 case 'I': /* hostname */
309 case 'H': /* hostname */
312 else if (is_host (optarg
))
313 server_address
= optarg
;
315 usage2 (_("Invalid hostname/address"), optarg
);
317 case 'e': /* string to expect in response header */
318 server_expect
= optarg
;
320 case 'u': /* server URL */
324 if (is_intpos (optarg
)) {
325 server_port
= atoi (optarg
);
328 usage4 (_("Port must be a positive integer"));
331 case 'w': /* warning time threshold */
332 if (is_intnonneg (optarg
)) {
333 warning_time
= atoi (optarg
);
334 check_warning_time
= TRUE
;
337 usage4 (_("Warning time must be a positive integer"));
340 case 'c': /* critical time threshold */
341 if (is_intnonneg (optarg
)) {
342 critical_time
= atoi (optarg
);
343 check_critical_time
= TRUE
;
346 usage4 (_("Critical time must be a positive integer"));
349 case 'v': /* verbose */
352 case 't': /* timeout */
353 if (is_intnonneg (optarg
)) {
354 socket_timeout
= atoi (optarg
);
357 usage4 (_("Timeout interval must be a positive integer"));
360 case 'V': /* version */
361 print_revision (progname
, NP_VERSION
);
362 exit (STATE_UNKNOWN
);
365 exit (STATE_UNKNOWN
);
366 case '?': /* usage */
372 if (server_address
==NULL
&& argc
>c
) {
373 if (is_host (argv
[c
])) {
374 server_address
= argv
[c
++];
377 usage2 (_("Invalid hostname/address"), argv
[c
]);
381 if (server_address
==NULL
)
382 usage4 (_("You must provide a server to check"));
385 host_name
= strdup (server_address
);
387 if (server_expect
== NULL
)
388 server_expect
= strdup(EXPECT
);
390 return validate_arguments ();
396 validate_arguments (void)
407 xasprintf (&myport
, "%d", PORT
);
409 print_revision (progname
, NP_VERSION
);
411 printf ("Copyright (c) 1999 Pedro Leite <leite@cic.ua.pt>\n");
412 printf (COPYRIGHT
, copyright
, email
);
414 printf ("%s\n", _("This plugin tests the REAL service on the specified host."));
420 printf (UT_HELP_VRSN
);
421 printf (UT_EXTRA_OPTS
);
423 printf (UT_HOST_PORT
, 'p', myport
);
425 printf (" %s\n", "-u, --url=STRING");
426 printf (" %s\n", _("Connect to this url"));
427 printf (" %s\n", "-e, --expect=STRING");
428 printf (_("String to expect in first line of server response (default: %s)\n"),
431 printf (UT_WARN_CRIT
);
433 printf (UT_CONN_TIMEOUT
, DEFAULT_SOCKET_TIMEOUT
);
438 printf ("%s\n", _("This plugin will attempt to open an RTSP connection with the host."));
439 printf ("%s\n", _("Successul connects return STATE_OK, refusals and timeouts return"));
440 printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN. Successful connects,"));
441 printf ("%s\n", _("but incorrect reponse messages from the host result in STATE_WARNING return"));
442 printf ("%s\n", _("values."));
452 printf ("%s\n", _("Usage:"));
453 printf ("%s -H host [-e expect] [-p port] [-w warn] [-c crit] [-t timeout] [-v]\n", progname
);