monitoring-plugins/plugins/check_users.c

268 lines
6.8 KiB
C
Raw Normal View History

/*****************************************************************************
2024-10-31 09:14:31 -04:00
*
* Monitoring check_users plugin
*
* License: GPL
2024-10-31 09:16:13 -04:00
* Copyright (c) 2000-2024 Monitoring Plugins Development Team
2024-10-31 09:14:31 -04:00
*
* Description:
*
* This file contains the check_users plugin
*
* This plugin checks the number of users currently logged in on the local
* system and generates an error if the number exceeds the thresholds
* specified.
*
*
* 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/>.
*
*
*****************************************************************************/
const char *progname = "check_users";
2024-10-31 09:16:13 -04:00
const char *copyright = "2000-2024";
const char *email = "devel@monitoring-plugins.org";
#include "common.h"
#include "utils.h"
2014-04-21 15:51:19 -04:00
#if HAVE_WTSAPI32_H
2024-10-31 09:14:31 -04:00
# include <windows.h>
# include <wtsapi32.h>
# undef ERROR
# define ERROR -1
2014-04-21 15:51:19 -04:00
#elif HAVE_UTMPX_H
2024-10-31 09:14:31 -04:00
# include <utmpx.h>
#else
2024-10-31 09:14:31 -04:00
# include "popen.h"
#endif
#ifdef HAVE_LIBSYSTEMD
2024-10-31 09:14:31 -04:00
# include <systemd/sd-daemon.h>
# include <systemd/sd-login.h>
#endif
2024-10-31 09:14:31 -04:00
#define possibly_set(a, b) ((a) == 0 ? (b) : 0)
static int process_arguments(int, char **);
static void print_help(void);
2024-10-31 09:14:31 -04:00
void print_usage(void);
static char *warning_range = NULL;
static char *critical_range = NULL;
static thresholds *thlds = NULL;
2024-10-31 09:14:31 -04:00
int main(int argc, char **argv) {
int users = -1;
int result = STATE_UNKNOWN;
2014-04-21 15:51:19 -04:00
#if HAVE_WTSAPI32_H
WTS_SESSION_INFO *wtsinfo;
DWORD wtscount;
DWORD index;
#elif HAVE_UTMPX_H
struct utmpx *putmpx;
#else
char input_buffer[MAX_INPUT_BUFFER];
#endif
2024-10-31 09:14:31 -04:00
setlocale(LC_ALL, "");
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
/* Parse extra opts if any */
2024-10-31 09:14:31 -04:00
argv = np_extra_opts(&argc, argv, progname);
2024-10-31 09:14:31 -04:00
if (process_arguments(argc, argv) == ERROR)
usage4(_("Could not parse arguments"));
users = 0;
#ifdef HAVE_LIBSYSTEMD
2024-10-31 09:14:31 -04:00
if (sd_booted() > 0)
users = sd_get_sessions(NULL);
else {
#endif
2014-04-21 15:51:19 -04:00
#if HAVE_WTSAPI32_H
2024-10-31 09:14:31 -04:00
if (!WTSEnumerateSessions(WTS_CURRENT_SERVER_HANDLE, 0, 1, &wtsinfo, &wtscount)) {
printf(_("Could not enumerate RD sessions: %d\n"), GetLastError());
return STATE_UNKNOWN;
}
2014-04-21 15:51:19 -04:00
2024-10-31 09:14:31 -04:00
for (index = 0; index < wtscount; index++) {
LPTSTR username;
DWORD size;
int len;
2014-04-21 15:51:19 -04:00
2024-10-31 09:14:31 -04:00
if (!WTSQuerySessionInformation(WTS_CURRENT_SERVER_HANDLE, wtsinfo[index].SessionId, WTSUserName, &username, &size))
continue;
2014-04-21 15:51:19 -04:00
2024-10-31 09:14:31 -04:00
len = lstrlen(username);
2014-04-21 15:51:19 -04:00
2024-10-31 09:14:31 -04:00
WTSFreeMemory(username);
2014-04-21 15:51:19 -04:00
2024-10-31 09:14:31 -04:00
if (len == 0)
continue;
2014-04-21 15:51:19 -04:00
2024-10-31 09:14:31 -04:00
if (wtsinfo[index].State == WTSActive || wtsinfo[index].State == WTSDisconnected)
users++;
}
2014-04-21 15:51:19 -04:00
2024-10-31 09:14:31 -04:00
WTSFreeMemory(wtsinfo);
2014-04-21 15:51:19 -04:00
#elif HAVE_UTMPX_H
/* get currently logged users from utmpx */
2024-10-31 09:14:31 -04:00
setutxent();
2024-10-31 09:14:31 -04:00
while ((putmpx = getutxent()) != NULL)
2012-06-07 04:43:15 -04:00
if (putmpx->ut_type == USER_PROCESS)
users++;
2024-10-31 09:14:31 -04:00
endutxent();
#else
/* run the command */
2024-10-31 09:14:31 -04:00
child_process = spopen(WHO_COMMAND);
if (child_process == NULL) {
2024-10-31 09:14:31 -04:00
printf(_("Could not open pipe: %s\n"), WHO_COMMAND);
return STATE_UNKNOWN;
}
2024-10-31 09:14:31 -04:00
child_stderr = fdopen(child_stderr_array[fileno(child_process)], "r");
if (child_stderr == NULL)
2024-10-31 09:14:31 -04:00
printf(_("Could not open stderr for %s\n"), WHO_COMMAND);
2024-10-31 09:14:31 -04:00
while (fgets(input_buffer, MAX_INPUT_BUFFER - 1, child_process)) {
/* increment 'users' on all lines except total user count */
if (input_buffer[0] != '#') {
users++;
continue;
}
/* get total logged in users */
2024-10-31 09:14:31 -04:00
if (sscanf(input_buffer, _("# users=%d"), &users) == 1)
break;
}
/* check STDERR */
2024-10-31 09:14:31 -04:00
if (fgets(input_buffer, MAX_INPUT_BUFFER - 1, child_stderr))
result = possibly_set(result, STATE_UNKNOWN);
(void)fclose(child_stderr);
/* close the pipe */
2024-10-31 09:14:31 -04:00
if (spclose(child_process))
result = possibly_set(result, STATE_UNKNOWN);
#endif
#ifdef HAVE_LIBSYSTEMD
}
#endif
/* check the user count against warning and critical thresholds */
result = get_status((double)users, thlds);
if (result == STATE_UNKNOWN)
2024-10-31 09:14:31 -04:00
printf("%s\n", _("Unable to read output"));
else {
2024-10-31 09:14:31 -04:00
printf(_("USERS %s - %d users currently logged in |%s\n"), state_text(result), users,
sperfdata_int("users", users, "", warning_range, critical_range, true, 0, false, 0));
}
return result;
}
/* process command-line arguments */
2024-10-31 09:14:31 -04:00
int process_arguments(int argc, char **argv) {
static struct option longopts[] = {{"critical", required_argument, 0, 'c'},
{"warning", required_argument, 0, 'w'},
{"version", no_argument, 0, 'V'},
{"help", no_argument, 0, 'h'},
{0, 0, 0, 0}};
if (argc < 2)
2024-10-31 09:14:31 -04:00
usage("\n");
int option_char;
2023-10-18 14:40:24 -04:00
while (true) {
int option = 0;
option_char = getopt_long(argc, argv, "+hVvc:w:", longopts, &option);
if (option_char == -1 || option_char == EOF || option_char == 1)
break;
switch (option_char) {
2024-10-31 09:14:31 -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 'c': /* critical */
critical_range = optarg;
break;
2024-10-31 09:14:31 -04:00
case 'w': /* warning */
warning_range = optarg;
break;
}
}
option_char = optind;
if (warning_range == NULL && argc > option_char)
warning_range = argv[option_char++];
if (critical_range == NULL && argc > option_char)
critical_range = argv[option_char++];
/* this will abort in case of invalid ranges */
2024-10-31 09:14:31 -04:00
set_thresholds(&thlds, warning_range, critical_range);
if (!thlds->warning) {
2024-10-31 09:14:31 -04:00
usage4(_("Warning threshold must be a valid range expression"));
}
if (!thlds->critical) {
2024-10-31 09:14:31 -04:00
usage4(_("Critical threshold must be a valid range expression"));
}
return OK;
}
2024-10-31 09:14:31 -04:00
void print_help(void) {
print_revision(progname, NP_VERSION);
2024-10-31 09:14:31 -04:00
printf("Copyright (c) 1999 Ethan Galstad\n");
printf(COPYRIGHT, copyright, email);
2024-10-31 09:14:31 -04:00
printf("%s\n", _("This plugin checks the number of users currently logged in on the local"));
printf("%s\n", _("system and generates an error if the number exceeds the thresholds specified."));
2024-10-31 09:14:31 -04:00
printf("\n\n");
2024-10-31 09:14:31 -04:00
print_usage();
2024-10-31 09:14:31 -04:00
printf(UT_HELP_VRSN);
printf(UT_EXTRA_OPTS);
2024-10-31 09:14:31 -04:00
printf(" %s\n", "-w, --warning=RANGE_EXPRESSION");
printf(" %s\n", _("Set WARNING status if number of logged in users violates RANGE_EXPRESSION"));
printf(" %s\n", "-c, --critical=RANGE_EXPRESSION");
printf(" %s\n", _("Set CRITICAL status if number of logged in users violates RANGE_EXPRESSION"));
2024-10-31 09:14:31 -04:00
printf(UT_SUPPORT);
}
2024-10-31 09:14:31 -04:00
void print_usage(void) {
printf("%s\n", _("Usage:"));
printf("%s -w <users> -c <users>\n", progname);
}