/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-04-17 08:26:17 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090417082617-eltetak5lzjyz55o
* initramfs-tools-hook: Bug fix: Add "--userid" and "--groupid" to
                        start of "plugin-runner.conf" file instead of
                        appending, to allow any preexisting options to
                        override.
* plugin-runner.conf: Improved wording.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
#include <signal.h>             /* struct sigaction, sigemptyset(),
63
63
                                   sigaddset(), sigaction(),
64
64
                                   sigprocmask(), SIG_BLOCK, SIGCHLD,
65
 
                                   SIG_UNBLOCK, kill() */
 
65
                                   SIG_UNBLOCK, kill(), sig_atomic_t
 
66
                                */
66
67
#include <errno.h>              /* errno, EBADF */
67
 
#include <inttypes.h>           /* intmax_t, SCNdMAX, PRIdMAX,  */
 
68
#include <inttypes.h>           /* intmax_t, PRIdMAX, strtoimax() */
68
69
 
69
70
#define BUFFER_SIZE 256
70
71
 
81
82
  char **environ;
82
83
  int envc;
83
84
  bool disabled;
84
 
 
 
85
  
85
86
  /* Variables used for running processes*/
86
87
  pid_t pid;
87
88
  int fd;
89
90
  size_t buffer_size;
90
91
  size_t buffer_length;
91
92
  bool eof;
92
 
  volatile bool completed;
93
 
  volatile int status;
 
93
  volatile sig_atomic_t completed;
 
94
  int status;
94
95
  struct plugin *next;
95
96
} plugin;
96
97
 
115
116
  if(name != NULL){
116
117
    copy_name = strdup(name);
117
118
    if(copy_name == NULL){
 
119
      free(new_plugin);
118
120
      return NULL;
119
121
    }
120
122
  }
121
123
  
122
 
  *new_plugin = (plugin) { .name = copy_name,
123
 
                           .argc = 1,
124
 
                           .disabled = false,
125
 
                           .next = plugin_list };
 
124
  *new_plugin = (plugin){ .name = copy_name,
 
125
                          .argc = 1,
 
126
                          .disabled = false,
 
127
                          .next = plugin_list };
126
128
  
127
129
  new_plugin->argv = malloc(sizeof(char *) * 2);
128
130
  if(new_plugin->argv == NULL){
222
224
/* Mark processes as completed when they exit, and save their exit
223
225
   status. */
224
226
static void handle_sigchld(__attribute__((unused)) int sig){
 
227
  int old_errno = errno;
225
228
  while(true){
226
229
    plugin *proc = plugin_list;
227
230
    int status;
231
234
      break;
232
235
    }
233
236
    if(pid == -1){
234
 
      if(errno != ECHILD){
235
 
        perror("waitpid");
 
237
      if(errno == ECHILD){
 
238
        /* No child processes */
 
239
        break;
236
240
      }
237
 
      /* No child processes */
238
 
      break;
 
241
      perror("waitpid");
239
242
    }
240
243
    
241
244
    /* A child exited, find it in process_list */
247
250
      continue;
248
251
    }
249
252
    proc->status = status;
250
 
    proc->completed = true;
 
253
    proc->completed = 1;
251
254
  }
 
255
  errno = old_errno;
252
256
}
253
257
 
254
258
/* Prints out a password to stdout */
276
280
  }
277
281
  free(plugin_node->environ);
278
282
  free(plugin_node->buffer);
279
 
 
 
283
  
280
284
  /* Removes the plugin from the singly-linked list */
281
285
  if(plugin_node == plugin_list){
282
286
    /* First one - simple */
309
313
  struct dirent *dirst;
310
314
  struct stat st;
311
315
  fd_set rfds_all;
312
 
  int ret, numchars, maxfd = 0;
 
316
  int ret, maxfd = 0;
313
317
  ssize_t sret;
314
318
  intmax_t tmpmax;
315
319
  uid_t uid = 65534;
375
379
  };
376
380
  
377
381
  error_t parse_opt(int key, char *arg, __attribute__((unused))
378
 
                    struct argp_state *state) {
379
 
    switch(key) {
 
382
                    struct argp_state *state){
 
383
    char *tmp;
 
384
    switch(key){
380
385
    case 'g':                   /* --global-options */
381
386
      if(arg != NULL){
382
 
        char *p;
383
 
        while((p = strsep(&arg, ",")) != NULL){
384
 
          if(p[0] == '\0'){
 
387
        char *plugin_option;
 
388
        while((plugin_option = strsep(&arg, ",")) != NULL){
 
389
          if(plugin_option[0] == '\0'){
385
390
            continue;
386
391
          }
387
 
          if(not add_argument(getplugin(NULL), p)){
 
392
          if(not add_argument(getplugin(NULL), plugin_option)){
388
393
            perror("add_argument");
389
394
            return ARGP_ERR_UNKNOWN;
390
395
          }
401
406
      break;
402
407
    case 'o':                   /* --options-for */
403
408
      if(arg != NULL){
404
 
        char *p_name = strsep(&arg, ":");
405
 
        if(p_name[0] == '\0' or arg == NULL){
406
 
          break;
407
 
        }
408
 
        char *opt = strsep(&arg, ":");
409
 
        if(opt[0] == '\0' or opt == NULL){
410
 
          break;
411
 
        }
412
 
        char *p;
413
 
        while((p = strsep(&opt, ",")) != NULL){
414
 
          if(p[0] == '\0'){
415
 
            continue;
416
 
          }
417
 
          if(not add_argument(getplugin(p_name), p)){
 
409
        char *plugin_name = strsep(&arg, ":");
 
410
        if(plugin_name[0] == '\0'){
 
411
          break;
 
412
        }
 
413
        char *plugin_option;
 
414
        while((plugin_option = strsep(&arg, ",")) != NULL){
 
415
          if(not add_argument(getplugin(plugin_name), plugin_option)){
418
416
            perror("add_argument");
419
417
            return ARGP_ERR_UNKNOWN;
420
418
          }
465
463
      /* This is already done by parse_opt_config_file() */
466
464
      break;
467
465
    case 130:                   /* --userid */
468
 
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
469
 
      if(ret < 1 or tmpmax != (uid_t)tmpmax
470
 
         or arg[numchars] != '\0'){
 
466
      errno = 0;
 
467
      tmpmax = strtoimax(arg, &tmp, 10);
 
468
      if(errno != 0 or tmp == arg or *tmp != '\0'
 
469
         or tmpmax != (uid_t)tmpmax){
471
470
        fprintf(stderr, "Bad user ID number: \"%s\", using %"
472
471
                PRIdMAX "\n", arg, (intmax_t)uid);
473
472
      } else {
475
474
      }
476
475
      break;
477
476
    case 131:                   /* --groupid */
478
 
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
479
 
      if(ret < 1 or tmpmax != (gid_t)tmpmax
480
 
         or arg[numchars] != '\0'){
 
477
      errno = 0;
 
478
      tmpmax = strtoimax(arg, &tmp, 10);
 
479
      if(errno != 0 or tmp == arg or *tmp != '\0'
 
480
         or tmpmax != (gid_t)tmpmax){
481
481
        fprintf(stderr, "Bad group ID number: \"%s\", using %"
482
482
                PRIdMAX "\n", arg, (intmax_t)gid);
483
483
      } else {
511
511
     ignores everything but the --config-file option. */
512
512
  error_t parse_opt_config_file(int key, char *arg,
513
513
                                __attribute__((unused))
514
 
                                struct argp_state *state) {
515
 
    switch(key) {
 
514
                                struct argp_state *state){
 
515
    switch(key){
516
516
    case 'g':                   /* --global-options */
517
517
    case 'G':                   /* --global-env */
518
518
    case 'o':                   /* --options-for */
569
569
    size_t size = 0;
570
570
    const char whitespace_delims[] = " \r\t\f\v\n";
571
571
    const char comment_delim[] = "#";
572
 
 
 
572
    
573
573
    custom_argc = 1;
574
574
    custom_argv = malloc(sizeof(char*) * 2);
575
575
    if(custom_argv == NULL){
579
579
    }
580
580
    custom_argv[0] = argv[0];
581
581
    custom_argv[1] = NULL;
582
 
 
 
582
    
583
583
    /* for each line in the config file, strip whitespace and ignore
584
584
       commented text */
585
585
    while(true){
587
587
      if(sret == -1){
588
588
        break;
589
589
      }
590
 
 
 
590
      
591
591
      line = org_line;
592
592
      arg = strsep(&line, comment_delim);
593
593
      while((p = strsep(&arg, whitespace_delims)) != NULL){
661
661
  }
662
662
  
663
663
  /* Strip permissions down to nobody */
 
664
  setgid(gid);
 
665
  if(ret == -1){
 
666
    perror("setgid");
 
667
  }
664
668
  ret = setuid(uid);
665
669
  if(ret == -1){
666
670
    perror("setuid");
667
 
  }  
668
 
  setgid(gid);
669
 
  if(ret == -1){
670
 
    perror("setgid");
671
671
  }
672
672
  
673
673
  if(plugindir == NULL){
756
756
        continue;
757
757
      }
758
758
    }
759
 
 
 
759
    
760
760
    char *filename;
761
761
    if(plugindir == NULL){
762
762
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
774
774
      free(filename);
775
775
      continue;
776
776
    }
777
 
 
 
777
    
778
778
    /* Ignore non-executable files */
779
779
    if(not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
780
780
      if(debug){
933
933
  
934
934
  closedir(dir);
935
935
  dir = NULL;
 
936
  free_plugin(getplugin(NULL));
936
937
  
937
938
  for(plugin *p = plugin_list; p != NULL; p = p->next){
938
939
    if(p->pid != 0){
958
959
       from one of them */
959
960
    for(plugin *proc = plugin_list; proc != NULL;){
960
961
      /* Is this process completely done? */
961
 
      if(proc->eof and proc->completed){
 
962
      if(proc->completed and proc->eof){
962
963
        /* Only accept the plugin output if it exited cleanly */
963
964
        if(not WIFEXITED(proc->status)
964
965
           or WEXITSTATUS(proc->status) != 0){
965
966
          /* Bad exit by plugin */
966
 
 
 
967
          
967
968
          if(debug){
968
969
            if(WIFEXITED(proc->status)){
969
 
              fprintf(stderr, "Plugin %" PRIdMAX " exited with status"
970
 
                      " %d\n", (intmax_t) (proc->pid),
 
970
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] exited with"
 
971
                      " status %d\n", proc->name,
 
972
                      (intmax_t) (proc->pid),
971
973
                      WEXITSTATUS(proc->status));
972
 
            } else if(WIFSIGNALED(proc->status)) {
973
 
              fprintf(stderr, "Plugin %" PRIdMAX " killed by signal"
974
 
                      " %d\n", (intmax_t) (proc->pid),
 
974
            } else if(WIFSIGNALED(proc->status)){
 
975
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] killed by"
 
976
                      " signal %d\n", proc->name,
 
977
                      (intmax_t) (proc->pid),
975
978
                      WTERMSIG(proc->status));
976
979
            } else if(WCOREDUMP(proc->status)){
977
 
              fprintf(stderr, "Plugin %" PRIdMAX " dumped core\n",
978
 
                      (intmax_t) (proc->pid));
 
980
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] dumped"
 
981
                      " core\n", proc->name, (intmax_t) (proc->pid));
979
982
            }
980
983
          }
981
984
          
982
985
          /* Remove the plugin */
983
986
          FD_CLR(proc->fd, &rfds_all);
984
 
 
 
987
          
985
988
          /* Block signal while modifying process_list */
986
989
          ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
987
990
          if(ret < 0){
1054
1057
      }
1055
1058
    }
1056
1059
  }
1057
 
 
1058
 
 
 
1060
  
 
1061
  
1059
1062
 fallback:
1060
1063
  
1061
1064
  if(plugin_list == NULL or exitstatus != EXIT_SUCCESS){