/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugbasedclient.c

merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*
3
3
 * Mandos plugin runner - Run Mandos plugins
4
4
 *
5
 
 * Copyright © 2007-2008 Teddy Hogeborn and Björn Påhlsson.
 
5
 * Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
6
6
 * 
7
7
 * This program is free software: you can redistribute it and/or
8
8
 * modify it under the terms of the GNU General Public License as
18
18
 * along with this program.  If not, see
19
19
 * <http://www.gnu.org/licenses/>.
20
20
 * 
21
 
 * Contact the authors at <https://www.fukt.bsnet.se/~belorn/> and
22
 
 * <https://www.fukt.bsnet.se/~teddy/>.
 
21
 * Contact the authors at <mandos@fukt.bsnet.se>.
23
22
 */
24
23
 
25
 
#define _FORTIFY_SOURCE 2
 
24
#define _GNU_SOURCE             /* TEMP_FAILURE_RETRY() */
26
25
 
27
 
#include <stdio.h>      /* popen, fileno */
28
 
#include <iso646.h>     /* and, or, not */
29
 
#include <sys/types.h>  /* DIR, opendir, stat, struct stat, waitpid,
30
 
                           WIFEXITED, WEXITSTATUS, wait */
31
 
#include <sys/wait.h>   /* wait */
32
 
#include <dirent.h>     /* DIR, opendir */
33
 
#include <sys/stat.h>   /* stat, struct stat */
34
 
#include <unistd.h>     /* stat, struct stat, chdir */
35
 
#include <stdlib.h>     /* EXIT_FAILURE */
36
 
#include <sys/select.h> /* fd_set, select, FD_ZERO, FD_SET,
37
 
                           FD_ISSET */
38
 
#include <string.h>     /* strlen, strcpy, strcat */
39
 
#include <stdbool.h>    /* true */
40
 
#include <sys/wait.h>   /* waitpid, WIFEXITED, WEXITSTATUS */
41
 
#include <errno.h>      /* errno */
42
 
#include <argp.h>       /* argp */
 
26
#include <stdio.h>              /* popen(), fileno(), fprintf(),
 
27
                                   stderr, STDOUT_FILENO */
 
28
#include <iso646.h>             /* and, or, not */
 
29
#include <sys/types.h>          /* DIR, opendir(), stat(),
 
30
                                   struct stat, waitpid(),
 
31
                                   WIFEXITED(), WEXITSTATUS(),
 
32
                                   wait() */
 
33
#include <sys/wait.h>           /* wait() */
 
34
#include <dirent.h>             /* DIR, struct dirent, opendir(),
 
35
                                   readdir(), closedir() */
 
36
#include <sys/stat.h>           /* struct stat, stat(), S_ISREG() */
 
37
#include <unistd.h>             /* struct stat, stat(), S_ISREG(),
 
38
                                   fcntl() */
 
39
#include <fcntl.h>              /* fcntl() */
 
40
#include <stddef.h>             /* NULL */
 
41
#include <stdlib.h>             /* EXIT_FAILURE */
 
42
#include <sys/select.h>         /* fd_set, select(), FD_ZERO(),
 
43
                                   FD_SET(), FD_ISSET() */
 
44
#include <string.h>             /* strlen(), strcpy(), strcat() */
 
45
#include <stdbool.h>            /* true */
 
46
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
 
47
                                   WEXITSTATUS() */
 
48
#include <errno.h>              /* errno */
 
49
#include <argp.h>               /* struct argp_option,
 
50
                                   struct argp_state, struct argp,
 
51
                                   argp_parse() */
43
52
 
44
53
struct process;
45
54
 
49
58
  char *buffer;
50
59
  size_t buffer_size;
51
60
  size_t buffer_length;
 
61
  bool eof;
 
62
  bool completed;
 
63
  int status;
52
64
  struct process *next;
53
65
} process;
54
66
 
55
67
typedef struct plugin{
56
 
  char *name;           /* can be "global" and any plugin name */
 
68
  char *name;                   /* can be NULL or any plugin name */
57
69
  char **argv;
58
70
  int argc;
59
 
  bool disable;
 
71
  bool disabled;
60
72
  struct plugin *next;
61
73
} plugin;
62
74
 
82
94
  new_plugin->argv[0] = name;
83
95
  new_plugin->argv[1] = NULL;
84
96
  new_plugin->argc = 1;
85
 
  new_plugin->disable = false;
 
97
  new_plugin->disabled = false;
86
98
  new_plugin->next = *plugin_list;
87
99
  /* Append the new plugin to the list */
88
100
  *plugin_list = new_plugin;
89
101
  return new_plugin;
90
102
}
91
103
 
92
 
void addarguments(plugin *p, char *arg){
 
104
void addargument(plugin *p, char *arg){
93
105
  p->argv[p->argc] = arg;
94
106
  p->argv = realloc(p->argv, sizeof(char *) * (size_t)(p->argc + 2));
95
107
  if (p->argv == NULL){
99
111
  p->argc++;
100
112
  p->argv[p->argc] = NULL;
101
113
}
102
 
        
 
114
 
 
115
/*
 
116
 * Based on the example in the GNU LibC manual chapter 13.13 "File
 
117
 * Descriptor Flags".
 
118
 * *Note File Descriptor Flags:(libc)Descriptor Flags.
 
119
 */
 
120
int set_cloexec_flag(int fd)
 
121
{
 
122
  int ret = fcntl(fd, F_GETFD, 0);
 
123
  /* If reading the flags failed, return error indication now. */
 
124
  if(ret < 0){
 
125
    return ret;
 
126
  }
 
127
  /* Store modified flag word in the descriptor. */
 
128
  return fcntl(fd, F_SETFD, ret | FD_CLOEXEC);
 
129
}
 
130
 
103
131
#define BUFFER_SIZE 256
104
132
 
105
 
const char *argp_program_version =
106
 
  "plugbasedclient 0.9";
107
 
const char *argp_program_bug_address =
108
 
  "<mandos@fukt.bsnet.se>";
109
 
static char doc[] =
110
 
  "Mandos plugin runner -- Run Mandos plugins";
111
 
/* A description of the arguments we accept. */
112
 
static char args_doc[] = "";
 
133
const char *argp_program_version = "plugbasedclient 0.9";
 
134
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
135
 
 
136
process *process_list = NULL;
 
137
 
 
138
/* Mark a process as completed when it exits, and save its exit
 
139
   status. */
 
140
void handle_sigchld(__attribute__((unused)) int sig){
 
141
  process *proc = process_list;
 
142
  int status;
 
143
  pid_t pid = wait(&status);
 
144
  while(proc != NULL and proc->pid != pid){
 
145
    proc = proc->next;    
 
146
  }
 
147
  if(proc == NULL){
 
148
    /* Process not found in process list */
 
149
    return;
 
150
  }
 
151
  proc->status = status;
 
152
  proc->completed = true;
 
153
}
113
154
 
114
155
int main(int argc, char *argv[]){
115
 
  const char *plugindir = "plugins.d";
 
156
  const char *plugindir = "/conf/conf.d/mandos/plugins.d";
116
157
  size_t d_name_len;
117
 
  DIR *dir;
 
158
  DIR *dir = NULL;
118
159
  struct dirent *dirst;
119
160
  struct stat st;
120
 
  fd_set rfds_orig;
 
161
  fd_set rfds_all;
121
162
  int ret, maxfd = 0;
122
 
  process *process_list = NULL;
123
163
  uid_t uid = 65534;
124
164
  gid_t gid = 65534;
 
165
  bool debug = false;
 
166
  int exitstatus = EXIT_SUCCESS;
 
167
  struct sigaction old_sigchld_action;
 
168
  struct sigaction sigchld_action = { .sa_handler = handle_sigchld,
 
169
                                      .sa_flags = SA_NOCLDSTOP };
 
170
 
 
171
  /* Establish a signal handler */
 
172
  sigemptyset(&sigchld_action.sa_mask);
 
173
  ret = sigaddset(&sigchld_action.sa_mask, SIGCHLD);
 
174
  if(ret < 0){
 
175
    perror("sigaddset");
 
176
    exit(EXIT_FAILURE);
 
177
  }
 
178
  ret = sigaction(SIGCHLD, &sigchld_action, &old_sigchld_action);
 
179
  if(ret < 0){
 
180
    perror("sigaction");
 
181
    exit(EXIT_FAILURE);
 
182
  }
 
183
  
125
184
  /* The options we understand. */
126
185
  struct argp_option options[] = {
127
186
    { .name = "global-options", .key = 'g',
128
 
      .arg = "option[,option[,...]]", .flags = 0,
129
 
      .doc = "Options effecting all plugins" },
 
187
      .arg = "OPTION[,OPTION[,...]]",
 
188
      .doc = "Options passed to all plugins" },
130
189
    { .name = "options-for", .key = 'o',
131
 
      .arg = "plugin:option[,option[,...]]", .flags = 0,
132
 
      .doc = "Options effecting only specified plugins" },
133
 
    { .name = "disable-plugin", .key = 'd',
134
 
      .arg = "Plugin[,Plugin[,...]]", .flags = 0,
135
 
      .doc = "Option to disable specififed plugins" },
 
190
      .arg = "PLUGIN:OPTION[,OPTION[,...]]",
 
191
      .doc = "Options passed only to specified plugin" },
 
192
    { .name = "disable", .key = 'd',
 
193
      .arg = "PLUGIN",
 
194
      .doc = "Disable a specific plugin", .group = 1 },
136
195
    { .name = "plugin-dir", .key = 128,
137
 
      .arg = "Directory", .flags = 0,
138
 
      .doc = "Option to change directory to search for plugins" },
 
196
      .arg = "DIRECTORY",
 
197
      .doc = "Specify a different plugin directory", .group = 2 },
139
198
    { .name = "userid", .key = 129,
140
 
      .arg = "Id", .flags = 0,
141
 
      .doc = "Option to change which user id the plugins will run as" },
 
199
      .arg = "ID", .flags = 0,
 
200
      .doc = "User ID the plugins will run as", .group = 2 },
142
201
    { .name = "groupid", .key = 130,
143
 
      .arg = "Id", .flags = 0,
144
 
      .doc = "Option to change which group id the plugins will run as" },
 
202
      .arg = "ID", .flags = 0,
 
203
      .doc = "Group ID the plugins will run as", .group = 2 },
 
204
    { .name = "debug", .key = 131,
 
205
      .doc = "Debug mode", .group = 3 },
145
206
    { .name = NULL }
146
207
  };
147
208
  
148
209
  error_t parse_opt (int key, char *arg, struct argp_state *state) {
149
 
       /* Get the INPUT argument from `argp_parse', which we
150
 
          know is a pointer to our arguments structure. */
 
210
    /* Get the INPUT argument from `argp_parse', which we know is a
 
211
       pointer to our plugin list pointer. */
151
212
    plugin **plugins = state->input;
152
213
    switch (key) {
153
214
    case 'g':
154
215
      if (arg != NULL){
155
216
        char *p = strtok(arg, ",");
156
217
        do{
157
 
          addarguments(getplugin(NULL, plugins), p);
 
218
          addargument(getplugin(NULL, plugins), p);
158
219
          p = strtok(NULL, ",");
159
220
        } while (p);
160
221
      }
163
224
      if (arg != NULL){
164
225
        char *name = strtok(arg, ":");
165
226
        char *p = strtok(NULL, ":");
166
 
        p = strtok(p, ",");
167
 
        do{
168
 
          addarguments(getplugin(name, plugins), p);
169
 
          p = strtok(NULL, ",");
170
 
        } while (p);
 
227
        if(p){
 
228
          p = strtok(p, ",");
 
229
          do{
 
230
            addargument(getplugin(name, plugins), p);
 
231
            p = strtok(NULL, ",");
 
232
          } while (p);
 
233
        }
171
234
      }
172
235
      break;
173
236
    case 'd':
174
237
      if (arg != NULL){
175
 
        char *p = strtok(arg, ",");
176
 
        do{
177
 
          getplugin(p, plugins)->disable = true;
178
 
          p = strtok(NULL, ",");
179
 
        } while (p);
 
238
        getplugin(arg, plugins)->disabled = true;
180
239
      }
181
240
      break;
182
241
    case 128:
188
247
    case 130:
189
248
      gid = (gid_t)strtol(arg, NULL, 10);
190
249
      break;
 
250
    case 131:
 
251
      debug = true;
 
252
      break;
191
253
    case ARGP_KEY_ARG:
192
254
      argp_usage (state);
193
255
      break;
198
260
    }
199
261
    return 0;
200
262
  }
201
 
 
 
263
  
202
264
  plugin *plugin_list = NULL;
203
265
  
204
266
  struct argp argp = { .options = options, .parser = parse_opt,
205
 
                       .args_doc = args_doc, .doc = doc };
206
 
 
207
 
  argp_parse (&argp, argc, argv, 0, 0, &plugin_list);
208
 
 
209
 
/*   for(plugin *p = plugin_list; p != NULL; p=p->next){ */
210
 
/*     fprintf(stderr, "Plugin: %s has %d arguments\n", p->name ? p->name : "Global", p->argc); */
211
 
/*     for(char **a = p->argv + 1; *a != NULL; a++){ */
212
 
/*       fprintf(stderr, "\tArg: %s\n", *a); */
213
 
/*     } */
214
 
/*   } */
 
267
                       .args_doc = "",
 
268
                       .doc = "Mandos plugin runner -- Run plugins" };
215
269
  
216
 
/*   return 0; */
 
270
  argp_parse (&argp, argc, argv, 0, 0, &plugin_list);  
 
271
 
 
272
  if(debug){
 
273
    for(plugin *p = plugin_list; p != NULL; p=p->next){
 
274
      fprintf(stderr, "Plugin: %s has %d arguments\n",
 
275
              p->name ? p->name : "Global", p->argc - 1);
 
276
      for(char **a = p->argv; *a != NULL; a++){
 
277
        fprintf(stderr, "\tArg: %s\n", *a);
 
278
      }
 
279
    }
 
280
  }
217
281
 
218
282
  ret = setuid(uid);
219
283
  if (ret == -1){
220
284
    perror("setuid");
221
285
  }
222
 
 
 
286
  
223
287
  setgid(gid);
224
288
  if (ret == -1){
225
289
    perror("setuid");
226
290
  }
227
291
  
228
292
  dir = opendir(plugindir);
229
 
  
230
293
  if(dir == NULL){
231
 
    fprintf(stderr, "Can not open directory\n");
232
 
    return EXIT_FAILURE;
233
 
  }
234
 
  
235
 
  FD_ZERO(&rfds_orig);
 
294
    perror("Could not open plugin dir");
 
295
    exitstatus = EXIT_FAILURE;
 
296
    goto end;
 
297
  }
 
298
  
 
299
  /* Set the FD_CLOEXEC flag on the directory, if possible */
 
300
  {
 
301
    int dir_fd = dirfd(dir);
 
302
    if(dir_fd >= 0){
 
303
      ret = set_cloexec_flag(dir_fd);
 
304
      if(ret < 0){
 
305
        perror("set_cloexec_flag");
 
306
        exitstatus = EXIT_FAILURE;
 
307
        goto end;
 
308
      }
 
309
    }
 
310
  }
 
311
  
 
312
  FD_ZERO(&rfds_all);
236
313
  
237
314
  while(true){
238
315
    dirst = readdir(dir);
244
321
    
245
322
    d_name_len = strlen(dirst->d_name);
246
323
    
247
 
    // Ignore dotfiles and backup files
248
 
    if (dirst->d_name[0] == '.'
249
 
        or dirst->d_name[d_name_len - 1] == '~'){
250
 
      continue;
 
324
    // Ignore dotfiles, backup files and other junk
 
325
    {
 
326
      bool bad_name = false;
 
327
      
 
328
      const char const *bad_prefixes[] = { ".", "#", NULL };
 
329
      
 
330
      const char const *bad_suffixes[] = { "~", "#", ".dpkg-new",
 
331
                                           ".dpkg-old",
 
332
                                           ".dpkg-divert", NULL };
 
333
      for(const char **pre = bad_prefixes; *pre != NULL; pre++){
 
334
        size_t pre_len = strlen(*pre);
 
335
        if((d_name_len >= pre_len)
 
336
           and strncmp((dirst->d_name), *pre, pre_len) == 0){
 
337
          if(debug){
 
338
            fprintf(stderr, "Ignoring plugin dir entry \"%s\""
 
339
                    " with bad prefix %s\n", dirst->d_name, *pre);
 
340
          }
 
341
          bad_name = true;
 
342
          break;
 
343
        }
 
344
      }
 
345
      
 
346
      if(bad_name){
 
347
        continue;
 
348
      }
 
349
      
 
350
      for(const char **suf = bad_suffixes; *suf != NULL; suf++){
 
351
        size_t suf_len = strlen(*suf);
 
352
        if((d_name_len >= suf_len)
 
353
           and (strcmp((dirst->d_name)+d_name_len-suf_len, *suf)
 
354
                == 0)){
 
355
          if(debug){
 
356
            fprintf(stderr, "Ignoring plugin dir entry \"%s\""
 
357
                    " with bad suffix %s\n", dirst->d_name, *suf);
 
358
          }
 
359
          bad_name = true;
 
360
          break;
 
361
        }
 
362
      }
 
363
      
 
364
      if(bad_name){
 
365
        continue;
 
366
      }
251
367
    }
252
 
 
 
368
    
253
369
    char *filename = malloc(d_name_len + strlen(plugindir) + 2);
254
 
    strcpy(filename, plugindir);
255
 
    strcat(filename, "/");
256
 
    strcat(filename, dirst->d_name);    
257
 
 
 
370
    if (filename == NULL){
 
371
      perror("malloc");
 
372
      exitstatus = EXIT_FAILURE;
 
373
      goto end;
 
374
    }
 
375
    strcpy(filename, plugindir); /* Spurious warning */
 
376
    strcat(filename, "/");      /* Spurious warning */
 
377
    strcat(filename, dirst->d_name); /* Spurious warning */
 
378
    
258
379
    stat(filename, &st);
259
 
 
260
 
    if (S_ISREG(st.st_mode)
261
 
        and (access(filename, X_OK) == 0)
262
 
        and not (getplugin(dirst->d_name, &plugin_list)->disable)){
263
 
      // Starting a new process to be watched
264
 
      process *new_process = malloc(sizeof(process));
265
 
      int pipefd[2]; 
266
 
      ret = pipe(pipefd);
267
 
      if (ret == -1){
268
 
        perror(argv[0]);
269
 
        goto end;
270
 
      }
271
 
      new_process->pid = fork();
272
 
      if(new_process->pid == 0){
273
 
        /* this is the child process */
 
380
    
 
381
    if (not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
 
382
      if(debug){
 
383
        fprintf(stderr, "Ignoring plugin dir entry \"%s\""
 
384
                " with bad type or mode\n", filename);
 
385
      }
 
386
      free(filename);
 
387
      continue;
 
388
    }
 
389
    if(getplugin(dirst->d_name, &plugin_list)->disabled){
 
390
      if(debug){
 
391
        fprintf(stderr, "Ignoring disabled plugin \"%s\"\n",
 
392
                dirst->d_name);
 
393
      }
 
394
      free(filename);
 
395
      continue;
 
396
    }
 
397
    plugin *p = getplugin(dirst->d_name, &plugin_list);
 
398
    {
 
399
      /* Add global arguments to argument list for this plugin */
 
400
      plugin *g = getplugin(NULL, &plugin_list);
 
401
      for(char **a = g->argv + 1; *a != NULL; a++){
 
402
        addargument(p, *a);
 
403
      }
 
404
    }
 
405
    int pipefd[2]; 
 
406
    ret = pipe(pipefd);
 
407
    if (ret == -1){
 
408
      perror("pipe");
 
409
      exitstatus = EXIT_FAILURE;
 
410
      goto end;
 
411
    }
 
412
    ret = set_cloexec_flag(pipefd[0]);
 
413
    if(ret < 0){
 
414
      perror("set_cloexec_flag");
 
415
      exitstatus = EXIT_FAILURE;
 
416
      goto end;
 
417
    }
 
418
    ret = set_cloexec_flag(pipefd[1]);
 
419
    if(ret < 0){
 
420
      perror("set_cloexec_flag");
 
421
      exitstatus = EXIT_FAILURE;
 
422
      goto end;
 
423
    }
 
424
    /* Block SIGCHLD until process is safely in process list */
 
425
    ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
426
    if(ret < 0){
 
427
      perror("sigprocmask");
 
428
      exitstatus = EXIT_FAILURE;
 
429
      goto end;
 
430
    }
 
431
    // Starting a new process to be watched
 
432
    pid_t pid = fork();
 
433
    if(pid == 0){
 
434
      /* this is the child process */
 
435
      ret = sigaction(SIGCHLD, &old_sigchld_action, NULL);
 
436
      if(ret < 0){
 
437
        perror("sigaction");
 
438
        _exit(EXIT_FAILURE);
 
439
      }
 
440
      ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
441
      if(ret < 0){
 
442
        perror("sigprocmask");
 
443
        _exit(EXIT_FAILURE);
 
444
      }
 
445
      dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
 
446
      
 
447
      if(dirfd(dir) < 0){
 
448
        /* If dir has no file descriptor, we could not set FD_CLOEXEC
 
449
           above and must now close it manually here. */
274
450
        closedir(dir);
275
 
        close(pipefd[0]);       /* close unused read end of pipe */
276
 
        dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
277
 
 
278
 
        plugin *p = getplugin(dirst->d_name, &plugin_list);
279
 
        plugin *g = getplugin(NULL, &plugin_list);
280
 
        for(char **a = g->argv + 1; *a != NULL; a++){
281
 
          addarguments(p, *a);
282
 
        }
283
 
        if(execv(filename, p->argv) < 0){
284
 
          perror(argv[0]);
285
 
          close(pipefd[1]);
286
 
          exit(EXIT_FAILURE);
287
 
        }
288
 
        /* no return */
289
 
      }
290
 
      close(pipefd[1]);         /* close unused write end of pipe */
291
 
      new_process->fd = pipefd[0];
292
 
      new_process->buffer = malloc(BUFFER_SIZE);
293
 
      if (new_process->buffer == NULL){
294
 
        perror(argv[0]);
295
 
        goto end;
296
 
      }
297
 
      new_process->buffer_size = BUFFER_SIZE;
298
 
      new_process->buffer_length = 0;
299
 
      FD_SET(new_process->fd, &rfds_orig);
300
 
      
301
 
      if (maxfd < new_process->fd){
302
 
        maxfd = new_process->fd;
303
 
      }
304
 
      
305
 
      //List handling
306
 
      new_process->next = process_list;
307
 
      process_list = new_process;
308
 
    }
 
451
      }
 
452
      if(execv(filename, p->argv) < 0){
 
453
        perror("execv");
 
454
        _exit(EXIT_FAILURE);
 
455
      }
 
456
      /* no return */
 
457
    }
 
458
    /* parent process */
 
459
    free(filename);
 
460
    close(pipefd[1]);           /* close unused write end of pipe */
 
461
    process *new_process = malloc(sizeof(process));
 
462
    if (new_process == NULL){
 
463
      perror("malloc");
 
464
      ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
465
      if(ret < 0){
 
466
        perror("sigprocmask");
 
467
      }
 
468
      exitstatus = EXIT_FAILURE;
 
469
      goto end;
 
470
    }
 
471
    
 
472
    *new_process = (struct process){ .pid = pid,
 
473
                                     .fd = pipefd[0],
 
474
                                     .next = process_list };
 
475
    // List handling
 
476
    process_list = new_process;
 
477
    /* Unblock SIGCHLD so signal handler can be run if this process
 
478
       has already completed */
 
479
    ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
480
    if(ret < 0){
 
481
      perror("sigprocmask");
 
482
      exitstatus = EXIT_FAILURE;
 
483
      goto end;
 
484
    }
 
485
    
 
486
    FD_SET(new_process->fd, &rfds_all);
 
487
    
 
488
    if (maxfd < new_process->fd){
 
489
      maxfd = new_process->fd;
 
490
    }
 
491
    
 
492
  }
 
493
  
 
494
  /* Free the plugin list */
 
495
  for(plugin *next; plugin_list != NULL; plugin_list = next){
 
496
    next = plugin_list->next;
 
497
    free(plugin_list->argv);
 
498
    free(plugin_list);
309
499
  }
310
500
  
311
501
  closedir(dir);
 
502
  dir = NULL;
312
503
  
313
 
  if (process_list != NULL){
314
 
    while(true){
315
 
      fd_set rfds = rfds_orig;
316
 
      int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
317
 
      if (select_ret == -1){
318
 
        perror(argv[0]);
319
 
        goto end;
320
 
      }else{    
321
 
        for(process *process_itr = process_list; process_itr != NULL;
322
 
            process_itr = process_itr->next){
323
 
          if(FD_ISSET(process_itr->fd, &rfds)){
324
 
            if(process_itr->buffer_length + BUFFER_SIZE
325
 
               > process_itr->buffer_size){
326
 
                process_itr->buffer = realloc(process_itr->buffer,
327
 
                                              process_itr->buffer_size
328
 
                                              + (size_t) BUFFER_SIZE);
329
 
                if (process_itr->buffer == NULL){
330
 
                  perror(argv[0]);
331
 
                  goto end;
332
 
                }
333
 
                process_itr->buffer_size += BUFFER_SIZE;
334
 
            }
335
 
            ret = read(process_itr->fd, process_itr->buffer
336
 
                       + process_itr->buffer_length, BUFFER_SIZE);
337
 
            if(ret < 0){
338
 
              /* Read error from this process; ignore it */
339
 
              continue;
340
 
            }
341
 
            process_itr->buffer_length += (size_t) ret;
342
 
            if(ret == 0){
343
 
              /* got EOF */
344
 
              /* wait for process exit */
345
 
              int status;
346
 
              waitpid(process_itr->pid, &status, 0);
347
 
              if(WIFEXITED(status) and WEXITSTATUS(status) == 0){
348
 
                for(size_t written = 0;
349
 
                    written < process_itr->buffer_length;){
350
 
                  ret = write(STDOUT_FILENO,
351
 
                              process_itr->buffer + written,
352
 
                              process_itr->buffer_length - written);
353
 
                  if(ret < 0){
354
 
                    perror(argv[0]);
355
 
                    goto end;
356
 
                  }
357
 
                  written += (size_t)ret;
358
 
                }
359
 
                goto end;
360
 
              } else {
361
 
                FD_CLR(process_itr->fd, &rfds_orig);
 
504
  if (process_list == NULL){
 
505
    fprintf(stderr, "No plugin processes started, exiting\n");
 
506
    exitstatus = EXIT_FAILURE;
 
507
    goto end;
 
508
  }
 
509
  while(process_list){
 
510
    fd_set rfds = rfds_all;
 
511
    int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
 
512
    if (select_ret == -1){
 
513
      perror("select");
 
514
      exitstatus = EXIT_FAILURE;
 
515
      goto end;
 
516
    }
 
517
    /* OK, now either a process completed, or something can be read
 
518
       from one of them */
 
519
    for(process *proc = process_list; proc ; proc = proc->next){
 
520
      /* Is this process completely done? */
 
521
      if(proc->eof and proc->completed){
 
522
        /* Only accept the plugin output if it exited cleanly */
 
523
        if(not WIFEXITED(proc->status)
 
524
           or WEXITSTATUS(proc->status) != 0){
 
525
          /* Bad exit by plugin */
 
526
          if(debug){
 
527
            if(WIFEXITED(proc->status)){
 
528
              fprintf(stderr, "Plugin %d exited with status %d\n",
 
529
                      proc->pid, WEXITSTATUS(proc->status));
 
530
            } else if(WIFSIGNALED(proc->status)) {
 
531
              fprintf(stderr, "Plugin %d killed by signal %d\n",
 
532
                      proc->pid, WTERMSIG(proc->status));
 
533
            } else if(WCOREDUMP(proc->status)){
 
534
              fprintf(stderr, "Plugin %d dumped core\n", proc->pid);
 
535
            }
 
536
          }
 
537
          /* Remove the plugin */
 
538
          FD_CLR(proc->fd, &rfds_all);
 
539
          /* Block signal while modifying process_list */
 
540
          ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
541
          if(ret < 0){
 
542
            perror("sigprocmask");
 
543
            exitstatus = EXIT_FAILURE;
 
544
            goto end;
 
545
          }
 
546
          /* Delete this process entry from the list */
 
547
          if(process_list == proc){
 
548
            /* First one - simple */
 
549
            process_list = proc->next;
 
550
          } else {
 
551
            /* Second one or later */
 
552
            for(process *p = process_list; p != NULL; p = p->next){
 
553
              if(p->next == proc){
 
554
                p->next = proc->next;
 
555
                break;
362
556
              }
363
557
            }
364
558
          }
365
 
        }
 
559
          /* We are done modifying process list, so unblock signal */
 
560
          ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
 
561
                             NULL);
 
562
          if(ret < 0){
 
563
            perror("sigprocmask");
 
564
          }
 
565
          free(proc->buffer);
 
566
          free(proc);
 
567
          /* We deleted this process from the list, so we can't go
 
568
             proc->next.  Therefore, start over from the beginning of
 
569
             the process list */
 
570
          break;
 
571
        }
 
572
        /* This process exited nicely, so print its buffer */
 
573
        for(size_t written = 0; written < proc->buffer_length;
 
574
            written += (size_t)ret){
 
575
          ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO,
 
576
                                         proc->buffer + written,
 
577
                                         proc->buffer_length
 
578
                                         - written));
 
579
          if(ret < 0){
 
580
            perror("write");
 
581
            exitstatus = EXIT_FAILURE;
 
582
            goto end;
 
583
          }
 
584
        }
 
585
        goto end;
 
586
      }
 
587
      /* This process has not completed.  Does it have any output? */
 
588
      if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
 
589
        /* This process had nothing to say at this time */
 
590
        continue;
 
591
      }
 
592
      /* Before reading, make the process' data buffer large enough */
 
593
      if(proc->buffer_length + BUFFER_SIZE > proc->buffer_size){
 
594
        proc->buffer = realloc(proc->buffer, proc->buffer_size
 
595
                               + (size_t) BUFFER_SIZE);
 
596
        if (proc->buffer == NULL){
 
597
          perror("malloc");
 
598
          exitstatus = EXIT_FAILURE;
 
599
          goto end;
 
600
        }
 
601
        proc->buffer_size += BUFFER_SIZE;
 
602
      }
 
603
      /* Read from the process */
 
604
      ret = read(proc->fd, proc->buffer + proc->buffer_length,
 
605
                 BUFFER_SIZE);
 
606
      if(ret < 0){
 
607
        /* Read error from this process; ignore the error */
 
608
        continue;
 
609
      }
 
610
      if(ret == 0){
 
611
        /* got EOF */
 
612
        proc->eof = true;
 
613
      } else {
 
614
        proc->buffer_length += (size_t) ret;
366
615
      }
367
616
    }
368
617
  }
 
618
  if(process_list == NULL){
 
619
    fprintf(stderr, "All plugin processes failed, exiting\n");
 
620
    exitstatus = EXIT_FAILURE;
 
621
  }
369
622
  
370
623
 end:
371
 
  for(process *process_itr = process_list; process_itr != NULL;
372
 
      process_itr = process_itr->next){
373
 
    close(process_itr->fd);
374
 
    kill(process_itr->pid, SIGTERM);
375
 
    free(process_itr->buffer);
376
 
  }
377
 
  
378
 
  while(true){
379
 
    int status;
380
 
    ret = wait(&status);
381
 
    if (ret == -1){
382
 
      if(errno != ECHILD){
383
 
        perror("wait");
384
 
      }
385
 
      break;
386
 
    }
387
 
  }  
388
 
  return EXIT_SUCCESS;
 
624
  /* Restore old signal handler */
 
625
  sigaction(SIGCHLD, &old_sigchld_action, NULL);
 
626
  
 
627
  /* Free the plugin list */
 
628
  for(plugin *next; plugin_list != NULL; plugin_list = next){
 
629
    next = plugin_list->next;
 
630
    free(plugin_list->argv);
 
631
    free(plugin_list);
 
632
  }
 
633
  
 
634
  if(dir != NULL){
 
635
    closedir(dir);
 
636
  }
 
637
  
 
638
  /* Free the process list and kill the processes */
 
639
  for(process *next; process_list != NULL; process_list = next){
 
640
    next = process_list->next;
 
641
    close(process_list->fd);
 
642
    kill(process_list->pid, SIGTERM);
 
643
    free(process_list->buffer);
 
644
    free(process_list);
 
645
  }
 
646
  
 
647
  /* Wait for any remaining child processes to terminate */
 
648
  do{
 
649
    ret = wait(NULL);
 
650
  } while(ret >= 0);
 
651
  if(errno != ECHILD){
 
652
    perror("wait");
 
653
  }
 
654
  
 
655
  return exitstatus;
389
656
}