diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-12 22:01:46 +0100 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-12 22:01:46 +0100 |
commit | 6ac236c1ef06ef17541d3919aed2a008aabaa7f4 (patch) | |
tree | c34e7cedcd3a4540b4de0e40df5f6ba104a45f7f /plugins/check_users.c | |
parent | 39b9b62adda3887e7706754d4e34a7eff2f793b5 (diff) | |
download | monitoring-plugins-6ac236c1ef06ef17541d3919aed2a008aabaa7f4.tar.gz |
Refactor check_users
Diffstat (limited to 'plugins/check_users.c')
-rw-r--r-- | plugins/check_users.c | 250 |
1 files changed, 113 insertions, 137 deletions
diff --git a/plugins/check_users.c b/plugins/check_users.c index e91ed4a0..61427f97 100644 --- a/plugins/check_users.c +++ b/plugins/check_users.c | |||
@@ -34,8 +34,15 @@ const char *progname = "check_users"; | |||
34 | const char *copyright = "2000-2024"; | 34 | const char *copyright = "2000-2024"; |
35 | const char *email = "devel@monitoring-plugins.org"; | 35 | const char *email = "devel@monitoring-plugins.org"; |
36 | 36 | ||
37 | #include "common.h" | 37 | #include "check_users.d/users.h" |
38 | #include "utils.h" | 38 | #include "output.h" |
39 | #include "perfdata.h" | ||
40 | #include "states.h" | ||
41 | #include "utils_base.h" | ||
42 | #include "./common.h" | ||
43 | #include "./utils.h" | ||
44 | #include "check_users.d/config.h" | ||
45 | #include "thresholds.h" | ||
39 | 46 | ||
40 | #if HAVE_WTSAPI32_H | 47 | #if HAVE_WTSAPI32_H |
41 | # include <windows.h> | 48 | # include <windows.h> |
@@ -53,29 +60,16 @@ const char *email = "devel@monitoring-plugins.org"; | |||
53 | # include <systemd/sd-login.h> | 60 | # include <systemd/sd-login.h> |
54 | #endif | 61 | #endif |
55 | 62 | ||
56 | #define possibly_set(a, b) ((a) == 0 ? (b) : 0) | 63 | typedef struct process_argument_wrapper { |
64 | int errorcode; | ||
65 | check_users_config config; | ||
66 | } check_users_config_wrapper; | ||
67 | check_users_config_wrapper process_arguments(int /*argc*/, char ** /*argv*/); | ||
57 | 68 | ||
58 | static int process_arguments(int, char **); | 69 | void print_help(void); |
59 | static void print_help(void); | ||
60 | void print_usage(void); | 70 | void print_usage(void); |
61 | 71 | ||
62 | static char *warning_range = NULL; | ||
63 | static char *critical_range = NULL; | ||
64 | static thresholds *thlds = NULL; | ||
65 | |||
66 | int main(int argc, char **argv) { | 72 | int main(int argc, char **argv) { |
67 | int users = -1; | ||
68 | int result = STATE_UNKNOWN; | ||
69 | #if HAVE_WTSAPI32_H | ||
70 | WTS_SESSION_INFO *wtsinfo; | ||
71 | DWORD wtscount; | ||
72 | DWORD index; | ||
73 | #elif HAVE_UTMPX_H | ||
74 | struct utmpx *putmpx; | ||
75 | #else | ||
76 | char input_buffer[MAX_INPUT_BUFFER]; | ||
77 | #endif | ||
78 | |||
79 | setlocale(LC_ALL, ""); | 73 | setlocale(LC_ALL, ""); |
80 | bindtextdomain(PACKAGE, LOCALEDIR); | 74 | bindtextdomain(PACKAGE, LOCALEDIR); |
81 | textdomain(PACKAGE); | 75 | textdomain(PACKAGE); |
@@ -83,133 +77,100 @@ int main(int argc, char **argv) { | |||
83 | /* Parse extra opts if any */ | 77 | /* Parse extra opts if any */ |
84 | argv = np_extra_opts(&argc, argv, progname); | 78 | argv = np_extra_opts(&argc, argv, progname); |
85 | 79 | ||
86 | if (process_arguments(argc, argv) == ERROR) { | 80 | check_users_config_wrapper tmp_config = process_arguments(argc, argv); |
81 | |||
82 | if (tmp_config.errorcode == ERROR) { | ||
87 | usage4(_("Could not parse arguments")); | 83 | usage4(_("Could not parse arguments")); |
88 | } | 84 | } |
89 | 85 | ||
90 | users = 0; | 86 | check_users_config config = tmp_config.config; |
91 | |||
92 | #ifdef HAVE_LIBSYSTEMD | ||
93 | if (sd_booted() > 0) { | ||
94 | users = sd_get_sessions(NULL); | ||
95 | } else { | ||
96 | #endif | ||
97 | #if HAVE_WTSAPI32_H | ||
98 | if (!WTSEnumerateSessions(WTS_CURRENT_SERVER_HANDLE, 0, 1, &wtsinfo, &wtscount)) { | ||
99 | printf(_("Could not enumerate RD sessions: %d\n"), GetLastError()); | ||
100 | return STATE_UNKNOWN; | ||
101 | } | ||
102 | |||
103 | for (index = 0; index < wtscount; index++) { | ||
104 | LPTSTR username; | ||
105 | DWORD size; | ||
106 | int len; | ||
107 | |||
108 | if (!WTSQuerySessionInformation(WTS_CURRENT_SERVER_HANDLE, wtsinfo[index].SessionId, WTSUserName, &username, &size)) { | ||
109 | continue; | ||
110 | } | ||
111 | |||
112 | len = lstrlen(username); | ||
113 | |||
114 | WTSFreeMemory(username); | ||
115 | |||
116 | if (len == 0) { | ||
117 | continue; | ||
118 | } | ||
119 | |||
120 | if (wtsinfo[index].State == WTSActive || wtsinfo[index].State == WTSDisconnected) { | ||
121 | users++; | ||
122 | } | ||
123 | } | ||
124 | 87 | ||
125 | WTSFreeMemory(wtsinfo); | 88 | #ifdef _WIN32 |
126 | #elif HAVE_UTMPX_H | 89 | # if HAVE_WTSAPI32_H |
127 | /* get currently logged users from utmpx */ | 90 | get_num_of_users_wrapper user_wrapper = get_num_of_users_windows(); |
128 | setutxent(); | 91 | # else |
129 | 92 | # error Did not find WTSAPI32 | |
130 | while ((putmpx = getutxent()) != NULL) { | 93 | # endif // HAVE_WTSAPI32_H |
131 | if (putmpx->ut_type == USER_PROCESS) { | ||
132 | users++; | ||
133 | } | ||
134 | } | ||
135 | |||
136 | endutxent(); | ||
137 | #else | 94 | #else |
138 | /* run the command */ | 95 | # ifdef HAVE_LIBSYSTEMD |
139 | child_process = spopen(WHO_COMMAND); | 96 | get_num_of_users_wrapper user_wrapper = get_num_of_users_systemd(); |
140 | if (child_process == NULL) { | 97 | # elif HAVE_UTMPX_H |
141 | printf(_("Could not open pipe: %s\n"), WHO_COMMAND); | 98 | get_num_of_users_wrapper user_wrapper = get_num_of_users_utmp(); |
142 | return STATE_UNKNOWN; | 99 | # else // !HAVE_LIBSYSTEMD && !HAVE_UTMPX_H |
143 | } | 100 | get_num_of_users_wrapper user_wrapper = get_num_of_users_who_command(); |
144 | 101 | # endif // HAVE_LIBSYSTEMD | |
145 | child_stderr = fdopen(child_stderr_array[fileno(child_process)], "r"); | 102 | #endif // _WIN32 |
146 | if (child_stderr == NULL) { | 103 | |
147 | printf(_("Could not open stderr for %s\n"), WHO_COMMAND); | 104 | mp_check overall = mp_check_init(); |
148 | } | 105 | if (config.output_format_is_set) { |
149 | 106 | mp_set_format(config.output_format); | |
150 | while (fgets(input_buffer, MAX_INPUT_BUFFER - 1, child_process)) { | ||
151 | /* increment 'users' on all lines except total user count */ | ||
152 | if (input_buffer[0] != '#') { | ||
153 | users++; | ||
154 | continue; | ||
155 | } | ||
156 | |||
157 | /* get total logged in users */ | ||
158 | if (sscanf(input_buffer, _("# users=%d"), &users) == 1) { | ||
159 | break; | ||
160 | } | ||
161 | } | ||
162 | |||
163 | /* check STDERR */ | ||
164 | if (fgets(input_buffer, MAX_INPUT_BUFFER - 1, child_stderr)) { | ||
165 | result = possibly_set(result, STATE_UNKNOWN); | ||
166 | } | 107 | } |
167 | (void)fclose(child_stderr); | 108 | mp_subcheck sc_users = mp_subcheck_init(); |
168 | 109 | ||
169 | /* close the pipe */ | 110 | if (user_wrapper.errorcode != 0) { |
170 | if (spclose(child_process)) { | 111 | sc_users = mp_set_subcheck_state(sc_users, STATE_UNKNOWN); |
171 | result = possibly_set(result, STATE_UNKNOWN); | 112 | sc_users.output = "Failed to retrieve number of users"; |
113 | mp_add_subcheck_to_check(&overall, sc_users); | ||
114 | mp_exit(overall); | ||
172 | } | 115 | } |
173 | #endif | ||
174 | #ifdef HAVE_LIBSYSTEMD | ||
175 | } | ||
176 | #endif | ||
177 | |||
178 | /* check the user count against warning and critical thresholds */ | 116 | /* check the user count against warning and critical thresholds */ |
179 | result = get_status((double)users, thlds); | ||
180 | 117 | ||
181 | if (result == STATE_UNKNOWN) { | 118 | mp_perfdata users_pd = { |
182 | printf("%s\n", _("Unable to read output")); | 119 | .label = "users", |
183 | } else { | 120 | .value = mp_create_pd_value(user_wrapper.users), |
184 | printf(_("USERS %s - %d users currently logged in |%s\n"), state_text(result), users, | 121 | }; |
185 | sperfdata_int("users", users, "", warning_range, critical_range, true, 0, false, 0)); | 122 | |
123 | users_pd = mp_pd_set_thresholds(users_pd, config.thresholds); | ||
124 | mp_add_perfdata_to_subcheck(&sc_users, users_pd); | ||
125 | |||
126 | int tmp_status = mp_get_pd_status(users_pd); | ||
127 | sc_users = mp_set_subcheck_state(sc_users, tmp_status); | ||
128 | |||
129 | switch (tmp_status) { | ||
130 | case STATE_WARNING: | ||
131 | xasprintf(&sc_users.output, "%d users currently logged in. This violates the warning threshold", user_wrapper.users); | ||
132 | break; | ||
133 | case STATE_CRITICAL: | ||
134 | xasprintf(&sc_users.output, "%d users currently logged in. This violates the critical threshold", user_wrapper.users); | ||
135 | break; | ||
136 | default: | ||
137 | xasprintf(&sc_users.output, "%d users currently logged in", user_wrapper.users); | ||
186 | } | 138 | } |
187 | 139 | ||
188 | return result; | 140 | mp_add_subcheck_to_check(&overall, sc_users); |
141 | mp_exit(overall); | ||
189 | } | 142 | } |
190 | 143 | ||
144 | #define output_format_index CHAR_MAX + 1 | ||
145 | |||
191 | /* process command-line arguments */ | 146 | /* process command-line arguments */ |
192 | int process_arguments(int argc, char **argv) { | 147 | check_users_config_wrapper process_arguments(int argc, char **argv) { |
193 | static struct option longopts[] = {{"critical", required_argument, 0, 'c'}, | 148 | static struct option longopts[] = {{"critical", required_argument, 0, 'c'}, |
194 | {"warning", required_argument, 0, 'w'}, | 149 | {"warning", required_argument, 0, 'w'}, |
195 | {"version", no_argument, 0, 'V'}, | 150 | {"version", no_argument, 0, 'V'}, |
196 | {"help", no_argument, 0, 'h'}, | 151 | {"help", no_argument, 0, 'h'}, |
152 | {"output-format", required_argument, 0, output_format_index}, | ||
197 | {0, 0, 0, 0}}; | 153 | {0, 0, 0, 0}}; |
198 | 154 | ||
199 | if (argc < 2) { | 155 | if (argc < 2) { |
200 | usage("\n"); | 156 | usage(progname); |
201 | } | 157 | } |
202 | 158 | ||
203 | int option_char; | 159 | char *warning_range = NULL; |
160 | char *critical_range = NULL; | ||
161 | check_users_config_wrapper result = { | ||
162 | .config = check_users_config_init(), | ||
163 | .errorcode = OK, | ||
164 | }; | ||
165 | |||
204 | while (true) { | 166 | while (true) { |
205 | int option = 0; | 167 | int counter = getopt_long(argc, argv, "+hVvc:w:", longopts, NULL); |
206 | option_char = getopt_long(argc, argv, "+hVvc:w:", longopts, &option); | ||
207 | 168 | ||
208 | if (option_char == -1 || option_char == EOF || option_char == 1) { | 169 | if (counter == -1 || counter == EOF || counter == 1) { |
209 | break; | 170 | break; |
210 | } | 171 | } |
211 | 172 | ||
212 | switch (option_char) { | 173 | switch (counter) { |
213 | case '?': /* print short usage statement if args not parsable */ | 174 | case '?': /* print short usage statement if args not parsable */ |
214 | usage5(); | 175 | usage5(); |
215 | case 'h': /* help */ | 176 | case 'h': /* help */ |
@@ -224,31 +185,45 @@ int process_arguments(int argc, char **argv) { | |||
224 | case 'w': /* warning */ | 185 | case 'w': /* warning */ |
225 | warning_range = optarg; | 186 | warning_range = optarg; |
226 | break; | 187 | break; |
227 | } | 188 | case output_format_index: { |
228 | } | 189 | parsed_output_format parser = mp_parse_output_format(optarg); |
229 | 190 | if (!parser.parsing_success) { | |
230 | option_char = optind; | 191 | // TODO List all available formats here, maybe add anothoer usage function |
231 | 192 | printf("Invalid output format: %s\n", optarg); | |
232 | if (warning_range == NULL && argc > option_char) { | 193 | exit(STATE_UNKNOWN); |
233 | warning_range = argv[option_char++]; | 194 | } |
234 | } | ||
235 | 195 | ||
236 | if (critical_range == NULL && argc > option_char) { | 196 | result.config.output_format_is_set = true; |
237 | critical_range = argv[option_char++]; | 197 | result.config.output_format = parser.output_format; |
198 | break; | ||
199 | } | ||
200 | } | ||
238 | } | 201 | } |
239 | 202 | ||
240 | /* this will abort in case of invalid ranges */ | 203 | // TODO add proper verification for ranges here! |
241 | set_thresholds(&thlds, warning_range, critical_range); | 204 | if (warning_range) { |
242 | 205 | mp_range_parsed tmp = mp_parse_range_string(warning_range); | |
243 | if (!thlds->warning) { | 206 | if (tmp.error == MP_PARSING_SUCCES) { |
244 | usage4(_("Warning threshold must be a valid range expression")); | 207 | result.config.thresholds.warning = tmp.range; |
208 | result.config.thresholds.warning_is_set = true; | ||
209 | } else { | ||
210 | printf("Failed to parse warning range: %s", warning_range); | ||
211 | exit(STATE_UNKNOWN); | ||
212 | } | ||
245 | } | 213 | } |
246 | 214 | ||
247 | if (!thlds->critical) { | 215 | if (critical_range) { |
248 | usage4(_("Critical threshold must be a valid range expression")); | 216 | mp_range_parsed tmp = mp_parse_range_string(critical_range); |
217 | if (tmp.error == MP_PARSING_SUCCES) { | ||
218 | result.config.thresholds.critical = tmp.range; | ||
219 | result.config.thresholds.critical_is_set = true; | ||
220 | } else { | ||
221 | printf("Failed to parse critical range: %s", critical_range); | ||
222 | exit(STATE_UNKNOWN); | ||
223 | } | ||
249 | } | 224 | } |
250 | 225 | ||
251 | return OK; | 226 | return result; |
252 | } | 227 | } |
253 | 228 | ||
254 | void print_help(void) { | 229 | void print_help(void) { |
@@ -271,6 +246,7 @@ void print_help(void) { | |||
271 | printf(" %s\n", _("Set WARNING status if number of logged in users violates RANGE_EXPRESSION")); | 246 | printf(" %s\n", _("Set WARNING status if number of logged in users violates RANGE_EXPRESSION")); |
272 | printf(" %s\n", "-c, --critical=RANGE_EXPRESSION"); | 247 | printf(" %s\n", "-c, --critical=RANGE_EXPRESSION"); |
273 | printf(" %s\n", _("Set CRITICAL status if number of logged in users violates RANGE_EXPRESSION")); | 248 | printf(" %s\n", _("Set CRITICAL status if number of logged in users violates RANGE_EXPRESSION")); |
249 | printf(UT_OUTPUT_FORMAT); | ||
274 | 250 | ||
275 | printf(UT_SUPPORT); | 251 | printf(UT_SUPPORT); |
276 | } | 252 | } |