summaryrefslogtreecommitdiffstats
path: root/plugins/check_procs.c
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2008-07-08 09:31:04 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2008-07-08 09:31:04 (GMT)
commitb93562e6e235eabbe620dc969702bb381d3a0a07 (patch)
treeced6323b0cb4f863b30a33cfd1dbe029b588efec /plugins/check_procs.c
parent830f3cc38a0b7ddcb80dc322f7f60f7f73ac9bfe (diff)
downloadmonitoring-plugins-b93562e6e235eabbe620dc969702bb381d3a0a07.tar.gz
check_procs captures stderr and adds to plugin output. This is
from a merge of branch nagiosplug/branches/new_threshold_syntax 1979:1982 git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2019 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_procs.c')
-rw-r--r--plugins/check_procs.c61
1 files changed, 15 insertions, 46 deletions
diff --git a/plugins/check_procs.c b/plugins/check_procs.c
index 875f867..4aaeddb 100644
--- a/plugins/check_procs.c
+++ b/plugins/check_procs.c
@@ -41,8 +41,8 @@ const char *copyright = "2000-2008";
41const char *email = "nagiosplug-devel@lists.sourceforge.net"; 41const char *email = "nagiosplug-devel@lists.sourceforge.net";
42 42
43#include "common.h" 43#include "common.h"
44#include "popen.h"
45#include "utils.h" 44#include "utils.h"
45#include "utils_cmd.h"
46#include "regex.h" 46#include "regex.h"
47 47
48#include <pwd.h> 48#include <pwd.h>
@@ -129,8 +129,9 @@ main (int argc, char **argv)
129 int expected_cols = PS_COLS - 1; 129 int expected_cols = PS_COLS - 1;
130 int warn = 0; /* number of processes in warn state */ 130 int warn = 0; /* number of processes in warn state */
131 int crit = 0; /* number of processes in crit state */ 131 int crit = 0; /* number of processes in crit state */
132 int i = 0; 132 int i = 0, j = 0;
133 int result = STATE_UNKNOWN; 133 int result = STATE_UNKNOWN;
134 output chld_out, chld_err;
134 135
135 setlocale (LC_ALL, ""); 136 setlocale (LC_ALL, "");
136 bindtextdomain (PACKAGE, LOCALEDIR); 137 bindtextdomain (PACKAGE, LOCALEDIR);
@@ -153,41 +154,27 @@ main (int argc, char **argv)
153 mypid = getpid(); 154 mypid = getpid();
154 155
155 /* Set signal handling and alarm timeout */ 156 /* Set signal handling and alarm timeout */
156 if (signal (SIGALRM, popen_timeout_alarm_handler) == SIG_ERR) { 157 if (signal (SIGALRM, timeout_alarm_handler) == SIG_ERR) {
157 usage4 (_("Cannot catch SIGALRM")); 158 die (STATE_UNKNOWN, _("Cannot catch SIGALRM"));
158 } 159 }
159 alarm (timeout_interval); 160 (void) alarm ((unsigned) timeout_interval);
160 161
161 if (verbose >= 2) 162 if (verbose >= 2)
162 printf (_("CMD: %s\n"), PS_COMMAND); 163 printf (_("CMD: %s\n"), PS_COMMAND);
163 164
164 if (input_filename == NULL) { 165 if (input_filename == NULL) {
165 ps_input = spopen (PS_COMMAND); 166 result = cmd_run( PS_COMMAND, &chld_out, &chld_err, 0);
166 if (ps_input == NULL) { 167 if (chld_err.lines > 0) {
167 printf (_("Could not open pipe: %s\n"), PS_COMMAND); 168 printf ("%s: %s", _("System call sent warnings to stderr"), chld_err.line[0]);
168 return STATE_UNKNOWN; 169 exit(STATE_WARNING);
169 } 170 }
170 child_stderr = fdopen (child_stderr_array[fileno (ps_input)], "r");
171 if (child_stderr == NULL)
172 printf (_("Could not open stderr for %s\n"), PS_COMMAND);
173 } else { 171 } else {
174 ps_input = fopen(input_filename, "r"); 172 result = cmd_file_read( input_filename, &chld_out, 0);
175 if (ps_input == NULL) {
176 die( STATE_UNKNOWN, _("Error opening %s\n"), input_filename );
177 }
178 } 173 }
179 174
180 /* flush first line */ 175 /* flush first line: j starts at 1 */
181 fgets (input_buffer, MAX_INPUT_BUFFER - 1, ps_input); 176 for (j = 1; j < chld_out.lines; j++) {
182 while ( input_buffer[strlen(input_buffer)-1] != '\n' ) 177 input_line = chld_out.line[j];
183 fgets (input_buffer, MAX_INPUT_BUFFER - 1, ps_input);
184
185 while (fgets (input_buffer, MAX_INPUT_BUFFER - 1, ps_input)) {
186 asprintf (&input_line, "%s", input_buffer);
187 while ( input_buffer[strlen(input_buffer)-1] != '\n' ) {
188 fgets (input_buffer, MAX_INPUT_BUFFER - 1, ps_input);
189 asprintf (&input_line, "%s%s", input_line, input_buffer);
190 }
191 178
192 if (verbose >= 3) 179 if (verbose >= 3)
193 printf ("%s", input_line); 180 printf ("%s", input_line);
@@ -283,27 +270,9 @@ main (int argc, char **argv)
283 } 270 }
284 } 271 }
285 272
286 /* If we get anything on STDERR, at least set warning */
287 if (input_filename == NULL) {
288 while (fgets (input_buffer, MAX_INPUT_BUFFER - 1, child_stderr)) {
289 if (verbose)
290 printf ("STDERR: %s", input_buffer);
291 result = max_state (result, STATE_WARNING);
292 printf (_("System call sent warnings to stderr\n"));
293 }
294
295 (void) fclose (child_stderr);
296
297 /* close the pipe */
298 if (spclose (ps_input)) {
299 printf (_("System call returned nonzero status\n"));
300 result = max_state (result, STATE_WARNING);
301 }
302 }
303
304 if (found == 0) { /* no process lines parsed so return STATE_UNKNOWN */ 273 if (found == 0) { /* no process lines parsed so return STATE_UNKNOWN */
305 printf (_("Unable to read output\n")); 274 printf (_("Unable to read output\n"));
306 return result; 275 return STATE_UNKNOWN;
307 } 276 }
308 277
309 if ( result == STATE_UNKNOWN ) 278 if ( result == STATE_UNKNOWN )