/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 plugin-runner.c

  • Committer: Teddy Hogeborn
  • Date: 2009-01-15 05:27:55 UTC
  • mfrom: (237.2.9 mandos-release)
  • Revision ID: teddy@fukt.bsnet.se-20090115052755-luw0gjx8727p24o3
Merge from release branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
  size_t buffer_size;
90
90
  size_t buffer_length;
91
91
  bool eof;
92
 
  volatile sig_atomic_t completed;
93
 
  int status;
 
92
  volatile bool completed;
 
93
  volatile int status;
94
94
  struct plugin *next;
95
95
} plugin;
96
96
 
115
115
  if(name != NULL){
116
116
    copy_name = strdup(name);
117
117
    if(copy_name == NULL){
118
 
      free(new_plugin);
119
118
      return NULL;
120
119
    }
121
120
  }
122
121
  
123
 
  *new_plugin = (plugin){ .name = copy_name,
124
 
                          .argc = 1,
125
 
                          .disabled = false,
126
 
                          .next = plugin_list };
 
122
  *new_plugin = (plugin) { .name = copy_name,
 
123
                           .argc = 1,
 
124
                           .disabled = false,
 
125
                           .next = plugin_list };
127
126
  
128
127
  new_plugin->argv = malloc(sizeof(char *) * 2);
129
128
  if(new_plugin->argv == NULL){
223
222
/* Mark processes as completed when they exit, and save their exit
224
223
   status. */
225
224
static void handle_sigchld(__attribute__((unused)) int sig){
226
 
  int old_errno = errno;
227
225
  while(true){
228
226
    plugin *proc = plugin_list;
229
227
    int status;
233
231
      break;
234
232
    }
235
233
    if(pid == -1){
236
 
      if(errno == ECHILD){
237
 
        /* No child processes */
238
 
        break;
 
234
      if(errno != ECHILD){
 
235
        perror("waitpid");
239
236
      }
240
 
      perror("waitpid");
 
237
      /* No child processes */
 
238
      break;
241
239
    }
242
240
    
243
241
    /* A child exited, find it in process_list */
249
247
      continue;
250
248
    }
251
249
    proc->status = status;
252
 
    proc->completed = 1;
 
250
    proc->completed = true;
253
251
  }
254
 
  errno = old_errno;
255
252
}
256
253
 
257
254
/* Prints out a password to stdout */
378
375
  };
379
376
  
380
377
  error_t parse_opt(int key, char *arg, __attribute__((unused))
381
 
                    struct argp_state *state){
382
 
    switch(key){
 
378
                    struct argp_state *state) {
 
379
    switch(key) {
383
380
    case 'g':                   /* --global-options */
384
381
      if(arg != NULL){
385
382
        char *p;
514
511
     ignores everything but the --config-file option. */
515
512
  error_t parse_opt_config_file(int key, char *arg,
516
513
                                __attribute__((unused))
517
 
                                struct argp_state *state){
518
 
    switch(key){
 
514
                                struct argp_state *state) {
 
515
    switch(key) {
519
516
    case 'g':                   /* --global-options */
520
517
    case 'G':                   /* --global-env */
521
518
    case 'o':                   /* --options-for */
664
661
  }
665
662
  
666
663
  /* Strip permissions down to nobody */
 
664
  ret = setuid(uid);
 
665
  if(ret == -1){
 
666
    perror("setuid");
 
667
  }  
667
668
  setgid(gid);
668
669
  if(ret == -1){
669
670
    perror("setgid");
670
671
  }
671
 
  ret = setuid(uid);
672
 
  if(ret == -1){
673
 
    perror("setuid");
674
 
  }
675
672
  
676
673
  if(plugindir == NULL){
677
674
    dir = opendir(PDIR);
961
958
       from one of them */
962
959
    for(plugin *proc = plugin_list; proc != NULL;){
963
960
      /* Is this process completely done? */
964
 
      if(proc->completed and proc->eof){
 
961
      if(proc->eof and proc->completed){
965
962
        /* Only accept the plugin output if it exited cleanly */
966
963
        if(not WIFEXITED(proc->status)
967
964
           or WEXITSTATUS(proc->status) != 0){
969
966
 
970
967
          if(debug){
971
968
            if(WIFEXITED(proc->status)){
972
 
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] exited with"
973
 
                      " status %d\n", proc->name,
974
 
                      (intmax_t) (proc->pid),
 
969
              fprintf(stderr, "Plugin %" PRIdMAX " exited with status"
 
970
                      " %d\n", (intmax_t) (proc->pid),
975
971
                      WEXITSTATUS(proc->status));
976
 
            } else if(WIFSIGNALED(proc->status)){
977
 
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] killed by"
978
 
                      " signal %d\n", proc->name,
979
 
                      (intmax_t) (proc->pid),
 
972
            } else if(WIFSIGNALED(proc->status)) {
 
973
              fprintf(stderr, "Plugin %" PRIdMAX " killed by signal"
 
974
                      " %d\n", (intmax_t) (proc->pid),
980
975
                      WTERMSIG(proc->status));
981
976
            } else if(WCOREDUMP(proc->status)){
982
 
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] dumped"
983
 
                      " core\n", proc->name, (intmax_t) (proc->pid));
 
977
              fprintf(stderr, "Plugin %" PRIdMAX " dumped core\n",
 
978
                      (intmax_t) (proc->pid));
984
979
            }
985
980
          }
986
981