monitoring-plugins/plugins/check_time.c

356 lines
11 KiB
C
Raw Normal View History

/*****************************************************************************
2024-10-31 09:09:45 -04:00
*
* Monitoring check_time plugin
*
* License: GPL
2024-10-31 09:13:00 -04:00
* Copyright (c) 1999-2024 Monitoring Plugins Development Team
2024-10-31 09:09:45 -04:00
*
* Description:
*
* This file contains the check_time plugin
*
* This plugin will check the time difference with 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 <http://www.gnu.org/licenses/>.
*
*
*****************************************************************************/
2025-03-12 13:14:54 -04:00
#include "states.h"
const char *progname = "check_time";
2024-10-31 09:13:00 -04:00
const char *copyright = "1999-2024";
const char *email = "devel@monitoring-plugins.org";
#include "common.h"
#include "netutils.h"
#include "utils.h"
2025-03-12 13:14:54 -04:00
#include "check_time.d/config.h"
2024-10-31 09:09:45 -04:00
#define UNIX_EPOCH 2208988800UL
2025-03-12 13:14:54 -04:00
typedef struct {
int errorcode;
check_time_config config;
} check_time_config_wrapper;
static check_time_config_wrapper process_arguments(int /*argc*/, char ** /*argv*/);
static void print_help(void);
2024-10-31 09:09:45 -04:00
void print_usage(void);
2024-10-31 09:09:45 -04:00
int main(int argc, char **argv) {
setlocale(LC_ALL, "");
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
/* Parse extra opts if any */
2024-10-31 09:09:45 -04:00
argv = np_extra_opts(&argc, argv, progname);
2025-03-12 13:14:54 -04:00
check_time_config_wrapper tmp_config = process_arguments(argc, argv);
if (tmp_config.errorcode == ERROR) {
2024-10-31 09:09:45 -04:00
usage4(_("Could not parse arguments"));
2025-03-12 13:01:31 -04:00
}
2025-03-12 13:14:54 -04:00
const check_time_config config = tmp_config.config;
/* initialize alarm signal handling */
2024-10-31 09:09:45 -04:00
signal(SIGALRM, socket_timeout_alarm_handler);
/* set socket timeout */
2024-10-31 09:09:45 -04:00
alarm(socket_timeout);
time(&start_time);
2024-10-31 09:12:27 -04:00
int socket;
2025-03-12 13:14:54 -04:00
mp_state_enum result = STATE_UNKNOWN;
/* try to connect to the host at the given port number */
2025-03-12 13:14:54 -04:00
if (config.use_udp) {
result = my_udp_connect(config.server_address, config.server_port, &socket);
} else {
2025-03-12 13:14:54 -04:00
result = my_tcp_connect(config.server_address, config.server_port, &socket);
}
if (result != STATE_OK) {
2025-03-12 13:14:54 -04:00
if (config.check_critical_time) {
result = STATE_CRITICAL;
2025-03-12 13:14:54 -04:00
} else if (config.check_warning_time) {
result = STATE_WARNING;
2025-03-12 13:01:31 -04:00
} else {
result = STATE_UNKNOWN;
2025-03-12 13:01:31 -04:00
}
2025-09-15 06:59:37 -04:00
die(result, _("TIME UNKNOWN - could not connect to server %s, port %d\n"),
config.server_address, config.server_port);
}
2025-03-12 13:14:54 -04:00
if (config.use_udp) {
2024-10-31 09:12:27 -04:00
if (send(socket, "", 0, 0) < 0) {
2025-03-12 13:14:54 -04:00
if (config.check_critical_time) {
result = STATE_CRITICAL;
2025-03-12 13:14:54 -04:00
} else if (config.check_warning_time) {
result = STATE_WARNING;
2025-03-12 13:01:31 -04:00
} else {
result = STATE_UNKNOWN;
2025-03-12 13:01:31 -04:00
}
2025-09-15 06:59:37 -04:00
die(result, _("TIME UNKNOWN - could not send UDP request to server %s, port %d\n"),
config.server_address, config.server_port);
}
}
/* watch for the connection string */
2025-03-12 13:14:54 -04:00
uint32_t raw_server_time;
2024-10-31 09:12:27 -04:00
result = recv(socket, (void *)&raw_server_time, sizeof(raw_server_time), 0);
/* close the connection */
2024-10-31 09:12:27 -04:00
close(socket);
/* reset the alarm */
2024-10-31 09:09:45 -04:00
time(&end_time);
alarm(0);
/* return a WARNING status if we couldn't read any data */
if (result <= 0) {
2025-03-12 13:14:54 -04:00
if (config.check_critical_time) {
result = STATE_CRITICAL;
2025-03-12 13:14:54 -04:00
} else if (config.check_warning_time) {
result = STATE_WARNING;
2025-03-12 13:01:31 -04:00
} else {
result = STATE_UNKNOWN;
2025-03-12 13:01:31 -04:00
}
2025-09-15 06:59:37 -04:00
die(result, _("TIME UNKNOWN - no data received from server %s, port %d\n"),
config.server_address, config.server_port);
}
result = STATE_OK;
2024-10-31 09:12:27 -04:00
time_t conntime = (end_time - start_time);
2025-03-12 13:14:54 -04:00
if (config.check_critical_time && conntime > config.critical_time) {
result = STATE_CRITICAL;
2025-03-12 13:14:54 -04:00
} else if (config.check_warning_time && conntime > config.warning_time) {
result = STATE_WARNING;
2025-03-12 13:01:31 -04:00
}
2025-03-12 13:01:31 -04:00
if (result != STATE_OK) {
2024-10-31 09:09:45 -04:00
die(result, _("TIME %s - %d second response time|%s\n"), state_text(result), (int)conntime,
2025-09-15 06:59:37 -04:00
perfdata("time", (long)conntime, "s", config.check_warning_time,
(long)config.warning_time, config.check_critical_time,
2025-03-12 13:14:54 -04:00
(long)config.critical_time, true, 0, false, 0));
2025-03-12 13:01:31 -04:00
}
2024-10-31 09:09:45 -04:00
2025-03-12 13:14:54 -04:00
unsigned long server_time;
unsigned long diff_time;
2024-10-31 09:09:45 -04:00
server_time = ntohl(raw_server_time) - UNIX_EPOCH;
2025-03-12 13:01:31 -04:00
if (server_time > (unsigned long)end_time) {
diff_time = server_time - (unsigned long)end_time;
2025-03-12 13:01:31 -04:00
} else {
diff_time = (unsigned long)end_time - server_time;
2025-03-12 13:01:31 -04:00
}
2025-03-12 13:14:54 -04:00
if (config.check_critical_diff && diff_time > config.critical_diff) {
result = STATE_CRITICAL;
2025-03-12 13:14:54 -04:00
} else if (config.check_warning_diff && diff_time > config.warning_diff) {
result = STATE_WARNING;
2025-03-12 13:01:31 -04:00
}
2024-10-31 09:09:45 -04:00
printf(_("TIME %s - %lu second time difference|%s %s\n"), state_text(result), diff_time,
2025-09-15 06:59:37 -04:00
perfdata("time", (long)conntime, "s", config.check_warning_time,
(long)config.warning_time, config.check_critical_time,
2025-03-12 13:14:54 -04:00
(long)config.critical_time, true, 0, false, 0),
2025-09-15 06:59:37 -04:00
perfdata("offset", diff_time, "s", config.check_warning_diff, config.warning_diff,
config.check_critical_diff, config.critical_diff, true, 0, false, 0));
return result;
}
/* process command-line arguments */
2025-03-12 13:14:54 -04:00
check_time_config_wrapper process_arguments(int argc, char **argv) {
2024-10-31 09:09:45 -04:00
static struct option longopts[] = {{"hostname", required_argument, 0, 'H'},
{"warning-variance", required_argument, 0, 'w'},
{"critical-variance", required_argument, 0, 'c'},
{"warning-connect", required_argument, 0, 'W'},
{"critical-connect", required_argument, 0, 'C'},
{"port", required_argument, 0, 'p'},
{"udp", no_argument, 0, 'u'},
{"timeout", required_argument, 0, 't'},
{"version", no_argument, 0, 'V'},
{"help", no_argument, 0, 'h'},
{0, 0, 0, 0}};
2025-03-12 13:01:31 -04:00
if (argc < 2) {
2024-10-31 09:09:45 -04:00
usage("\n");
2025-03-12 13:01:31 -04:00
}
2024-10-31 09:12:27 -04:00
for (int i = 1; i < argc; i++) {
2025-03-12 13:01:31 -04:00
if (strcmp("-to", argv[i]) == 0) {
2024-10-31 09:12:27 -04:00
strcpy(argv[i], "-t");
2025-03-12 13:01:31 -04:00
} else if (strcmp("-wd", argv[i]) == 0) {
2024-10-31 09:12:27 -04:00
strcpy(argv[i], "-w");
2025-03-12 13:01:31 -04:00
} else if (strcmp("-cd", argv[i]) == 0) {
2024-10-31 09:12:27 -04:00
strcpy(argv[i], "-c");
2025-03-12 13:01:31 -04:00
} else if (strcmp("-wt", argv[i]) == 0) {
2024-10-31 09:12:27 -04:00
strcpy(argv[i], "-W");
2025-03-12 13:01:31 -04:00
} else if (strcmp("-ct", argv[i]) == 0) {
2024-10-31 09:12:27 -04:00
strcpy(argv[i], "-C");
2025-03-12 13:01:31 -04:00
}
}
2025-03-12 13:14:54 -04:00
check_time_config_wrapper result = {
.errorcode = OK,
.config = check_time_config_init(),
};
2024-10-31 09:12:27 -04:00
int option_char;
2023-10-18 14:33:06 -04:00
while (true) {
2024-10-31 09:12:27 -04:00
int option = 0;
option_char = getopt_long(argc, argv, "hVH:w:c:W:C:p:t:u", longopts, &option);
2025-03-12 13:01:31 -04:00
if (option_char == -1 || option_char == EOF) {
break;
2025-03-12 13:01:31 -04:00
}
2024-10-31 09:12:27 -04:00
switch (option_char) {
2024-10-31 09:09:45 -04:00
case '?': /* print short usage statement if args not parsable */
usage5();
case 'h': /* help */
print_help();
exit(STATE_UNKNOWN);
case 'V': /* version */
print_revision(progname, NP_VERSION);
exit(STATE_UNKNOWN);
case 'H': /* hostname */
2025-03-12 13:01:31 -04:00
if (!is_host(optarg)) {
2024-10-31 09:09:45 -04:00
usage2(_("Invalid hostname/address"), optarg);
2025-03-12 13:01:31 -04:00
}
2025-03-12 13:14:54 -04:00
result.config.server_address = optarg;
break;
2024-10-31 09:09:45 -04:00
case 'w': /* warning-variance */
if (is_intnonneg(optarg)) {
2025-03-12 13:14:54 -04:00
result.config.warning_diff = strtoul(optarg, NULL, 10);
result.config.check_warning_diff = true;
2024-10-31 09:09:45 -04:00
} else if (strspn(optarg, "0123456789:,") > 0) {
2025-09-15 06:59:37 -04:00
if (sscanf(optarg, "%lu%*[:,]%d", &result.config.warning_diff,
&result.config.warning_time) == 2) {
2025-03-12 13:14:54 -04:00
result.config.check_warning_diff = true;
result.config.check_warning_time = true;
2024-10-31 09:09:45 -04:00
} else {
usage4(_("Warning thresholds must be a positive integer"));
}
2024-10-31 09:09:45 -04:00
} else {
usage4(_("Warning threshold must be a positive integer"));
}
break;
2024-10-31 09:09:45 -04:00
case 'c': /* critical-variance */
if (is_intnonneg(optarg)) {
2025-03-12 13:14:54 -04:00
result.config.critical_diff = strtoul(optarg, NULL, 10);
result.config.check_critical_diff = true;
2024-10-31 09:09:45 -04:00
} else if (strspn(optarg, "0123456789:,") > 0) {
2025-09-15 06:59:37 -04:00
if (sscanf(optarg, "%lu%*[:,]%d", &result.config.critical_diff,
&result.config.critical_time) == 2) {
2025-03-12 13:14:54 -04:00
result.config.check_critical_diff = true;
result.config.check_critical_time = true;
2024-10-31 09:09:45 -04:00
} else {
usage4(_("Critical thresholds must be a positive integer"));
}
2024-10-31 09:09:45 -04:00
} else {
usage4(_("Critical threshold must be a positive integer"));
}
break;
2024-10-31 09:09:45 -04:00
case 'W': /* warning-connect */
2025-03-12 13:01:31 -04:00
if (!is_intnonneg(optarg)) {
2024-10-31 09:09:45 -04:00
usage4(_("Warning threshold must be a positive integer"));
2025-03-12 13:01:31 -04:00
} else {
2025-03-12 13:14:54 -04:00
result.config.warning_time = atoi(optarg);
2025-03-12 13:01:31 -04:00
}
2025-03-12 13:14:54 -04:00
result.config.check_warning_time = true;
break;
2024-10-31 09:09:45 -04:00
case 'C': /* critical-connect */
2025-03-12 13:01:31 -04:00
if (!is_intnonneg(optarg)) {
2024-10-31 09:09:45 -04:00
usage4(_("Critical threshold must be a positive integer"));
2025-03-12 13:01:31 -04:00
} else {
2025-03-12 13:14:54 -04:00
result.config.critical_time = atoi(optarg);
2025-03-12 13:01:31 -04:00
}
2025-03-12 13:14:54 -04:00
result.config.check_critical_time = true;
break;
2024-10-31 09:09:45 -04:00
case 'p': /* port */
2025-03-12 13:01:31 -04:00
if (!is_intnonneg(optarg)) {
2024-10-31 09:09:45 -04:00
usage4(_("Port must be a positive integer"));
2025-03-12 13:01:31 -04:00
} else {
2025-03-12 13:14:54 -04:00
result.config.server_port = atoi(optarg);
2025-03-12 13:01:31 -04:00
}
break;
2024-10-31 09:09:45 -04:00
case 't': /* timeout */
2025-03-12 13:01:31 -04:00
if (!is_intnonneg(optarg)) {
2024-10-31 09:09:45 -04:00
usage2(_("Timeout interval must be a positive integer"), optarg);
2025-03-12 13:01:31 -04:00
} else {
2024-10-31 09:09:45 -04:00
socket_timeout = atoi(optarg);
2025-03-12 13:01:31 -04:00
}
break;
2024-10-31 09:09:45 -04:00
case 'u': /* udp */
2025-03-12 13:14:54 -04:00
result.config.use_udp = true;
}
}
2024-10-31 09:12:27 -04:00
option_char = optind;
2025-03-12 13:14:54 -04:00
if (result.config.server_address == NULL) {
2024-10-31 09:12:27 -04:00
if (argc > option_char) {
2025-03-12 13:01:31 -04:00
if (!is_host(argv[option_char])) {
2024-10-31 09:09:45 -04:00
usage2(_("Invalid hostname/address"), optarg);
2025-03-12 13:01:31 -04:00
}
2025-03-12 13:14:54 -04:00
result.config.server_address = argv[option_char];
2024-10-31 09:09:45 -04:00
} else {
usage4(_("Hostname was not supplied"));
}
}
2025-03-12 13:14:54 -04:00
return result;
}
2024-10-31 09:09:45 -04:00
void print_help(void) {
char *myport;
2024-10-31 09:09:45 -04:00
xasprintf(&myport, "%d", TIME_PORT);
2024-10-31 09:09:45 -04:00
print_revision(progname, NP_VERSION);
2024-10-31 09:09:45 -04:00
printf("Copyright (c) 1999 Ethan Galstad\n");
printf(COPYRIGHT, copyright, email);
2024-10-31 09:09:45 -04:00
printf("%s\n", _("This plugin will check the time on the specified host."));
2024-10-31 09:09:45 -04:00
printf("\n\n");
2024-10-31 09:09:45 -04:00
print_usage();
2024-10-31 09:09:45 -04:00
printf(UT_HELP_VRSN);
printf(UT_EXTRA_OPTS);
2024-10-31 09:09:45 -04:00
printf(UT_HOST_PORT, 'p', myport);
2024-10-31 09:09:45 -04:00
printf(" %s\n", "-u, --udp");
printf(" %s\n", _("Use UDP to connect, not TCP"));
printf(" %s\n", "-w, --warning-variance=INTEGER");
printf(" %s\n", _("Time difference (sec.) necessary to result in a warning status"));
printf(" %s\n", "-c, --critical-variance=INTEGER");
printf(" %s\n", _("Time difference (sec.) necessary to result in a critical status"));
printf(" %s\n", "-W, --warning-connect=INTEGER");
printf(" %s\n", _("Response time (sec.) necessary to result in warning status"));
printf(" %s\n", "-C, --critical-connect=INTEGER");
printf(" %s\n", _("Response time (sec.) necessary to result in critical status"));
2024-10-31 09:09:45 -04:00
printf(UT_CONN_TIMEOUT, DEFAULT_SOCKET_TIMEOUT);
2024-10-31 09:09:45 -04:00
printf(UT_SUPPORT);
}
2024-10-31 09:09:45 -04:00
void print_usage(void) {
printf("%s\n", _("Usage:"));
printf("%s -H <host_address> [-p port] [-u] [-w variance] [-c variance]\n", progname);
printf(" [-W connect_time] [-C connect_time] [-t timeout]\n");
}