/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-02-07 04:50:39 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090207045039-xkr6b80vtqwqrq8l
* Makefile (install-client-nokey): Move "initramfs-tools-script" from
                                   "/scripts/local-top/mandos" to
                                   "/scripts/init-premount/mandos".
  (uninstall-client): - '' -
* debian/mandos-client.dirs: - '' -
* initramfs-tools-script (PREREQ): Added "udev".

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
                                   sigprocmask(), SIG_BLOCK, SIGCHLD,
65
65
                                   SIG_UNBLOCK, kill() */
66
66
#include <errno.h>              /* errno, EBADF */
 
67
#include <inttypes.h>           /* intmax_t, SCNdMAX, PRIdMAX,  */
67
68
 
68
69
#define BUFFER_SIZE 256
69
70
 
88
89
  size_t buffer_size;
89
90
  size_t buffer_length;
90
91
  bool eof;
91
 
  volatile bool completed;
92
 
  volatile int status;
 
92
  volatile sig_atomic_t completed;
 
93
  int status;
93
94
  struct plugin *next;
94
95
} plugin;
95
96
 
99
100
   or if none is found, creates a new one */
100
101
static plugin *getplugin(char *name){
101
102
  /* Check for exiting plugin with that name */
102
 
  for (plugin *p = plugin_list; p != NULL; p = p->next){
103
 
    if ((p->name == name)
104
 
        or (p->name and name and (strcmp(p->name, name) == 0))){
 
103
  for(plugin *p = plugin_list; p != NULL; p = p->next){
 
104
    if((p->name == name)
 
105
       or (p->name and name and (strcmp(p->name, name) == 0))){
105
106
      return p;
106
107
    }
107
108
  }
108
109
  /* Create a new plugin */
109
110
  plugin *new_plugin = malloc(sizeof(plugin));
110
 
  if (new_plugin == NULL){
 
111
  if(new_plugin == NULL){
111
112
    return NULL;
112
113
  }
113
114
  char *copy_name = NULL;
114
115
  if(name != NULL){
115
116
    copy_name = strdup(name);
116
117
    if(copy_name == NULL){
 
118
      free(new_plugin);
117
119
      return NULL;
118
120
    }
119
121
  }
120
122
  
121
 
  *new_plugin = (plugin) { .name = copy_name,
122
 
                           .argc = 1,
123
 
                           .disabled = false,
124
 
                           .next = plugin_list };
 
123
  *new_plugin = (plugin){ .name = copy_name,
 
124
                          .argc = 1,
 
125
                          .disabled = false,
 
126
                          .next = plugin_list };
125
127
  
126
128
  new_plugin->argv = malloc(sizeof(char *) * 2);
127
 
  if (new_plugin->argv == NULL){
 
129
  if(new_plugin->argv == NULL){
128
130
    free(copy_name);
129
131
    free(new_plugin);
130
132
    return NULL;
221
223
/* Mark processes as completed when they exit, and save their exit
222
224
   status. */
223
225
static void handle_sigchld(__attribute__((unused)) int sig){
 
226
  int old_errno = errno;
224
227
  while(true){
225
228
    plugin *proc = plugin_list;
226
229
    int status;
230
233
      break;
231
234
    }
232
235
    if(pid == -1){
233
 
      if (errno != ECHILD){
234
 
        perror("waitpid");
 
236
      if(errno == ECHILD){
 
237
        /* No child processes */
 
238
        break;
235
239
      }
236
 
      /* No child processes */
237
 
      break;
 
240
      perror("waitpid");
238
241
    }
239
242
    
240
243
    /* A child exited, find it in process_list */
246
249
      continue;
247
250
    }
248
251
    proc->status = status;
249
 
    proc->completed = true;
 
252
    proc->completed = 1;
250
253
  }
 
254
  errno = old_errno;
251
255
}
252
256
 
253
257
/* Prints out a password to stdout */
308
312
  struct dirent *dirst;
309
313
  struct stat st;
310
314
  fd_set rfds_all;
311
 
  int ret, maxfd = 0;
 
315
  int ret, numchars, maxfd = 0;
312
316
  ssize_t sret;
 
317
  intmax_t tmpmax;
313
318
  uid_t uid = 65534;
314
319
  gid_t gid = 65534;
315
320
  bool debug = false;
372
377
    { .name = NULL }
373
378
  };
374
379
  
375
 
  error_t parse_opt (int key, char *arg, __attribute__((unused))
376
 
                     struct argp_state *state) {
377
 
    switch (key) {
 
380
  error_t parse_opt(int key, char *arg, __attribute__((unused))
 
381
                    struct argp_state *state){
 
382
    switch(key){
378
383
    case 'g':                   /* --global-options */
379
 
      if (arg != NULL){
 
384
      if(arg != NULL){
380
385
        char *p;
381
386
        while((p = strsep(&arg, ",")) != NULL){
382
387
          if(p[0] == '\0'){
398
403
      }
399
404
      break;
400
405
    case 'o':                   /* --options-for */
401
 
      if (arg != NULL){
 
406
      if(arg != NULL){
402
407
        char *p_name = strsep(&arg, ":");
403
408
        if(p_name[0] == '\0' or arg == NULL){
404
409
          break;
435
440
      }
436
441
      break;
437
442
    case 'd':                   /* --disable */
438
 
      if (arg != NULL){
 
443
      if(arg != NULL){
439
444
        plugin *p = getplugin(arg);
440
445
        if(p == NULL){
441
446
          return ARGP_ERR_UNKNOWN;
444
449
      }
445
450
      break;
446
451
    case 'e':                   /* --enable */
447
 
      if (arg != NULL){
 
452
      if(arg != NULL){
448
453
        plugin *p = getplugin(arg);
449
454
        if(p == NULL){
450
455
          return ARGP_ERR_UNKNOWN;
463
468
      /* This is already done by parse_opt_config_file() */
464
469
      break;
465
470
    case 130:                   /* --userid */
466
 
      /* In the GNU C library, uid_t is always unsigned int */
467
 
      ret = sscanf(arg, "%u", &uid);
468
 
      if(ret != 1){
469
 
        fprintf(stderr, "Bad user ID number: \"%s\", using %u\n", arg,
470
 
                uid);
 
471
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
472
      if(ret < 1 or tmpmax != (uid_t)tmpmax
 
473
         or arg[numchars] != '\0'){
 
474
        fprintf(stderr, "Bad user ID number: \"%s\", using %"
 
475
                PRIdMAX "\n", arg, (intmax_t)uid);
 
476
      } else {
 
477
        uid = (uid_t)tmpmax;
471
478
      }
472
479
      break;
473
480
    case 131:                   /* --groupid */
474
 
      /* In the GNU C library, gid_t is always unsigned int */
475
 
      ret = sscanf(arg, "%u", &gid);
476
 
      if(ret != 1){
477
 
        fprintf(stderr, "Bad group ID number: \"%s\", using %u\n",
478
 
                arg, gid);
 
481
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
482
      if(ret < 1 or tmpmax != (gid_t)tmpmax
 
483
         or arg[numchars] != '\0'){
 
484
        fprintf(stderr, "Bad group ID number: \"%s\", using %"
 
485
                PRIdMAX "\n", arg, (intmax_t)gid);
 
486
      } else {
 
487
        gid = (gid_t)tmpmax;
479
488
      }
480
489
      break;
481
490
    case 132:                   /* --debug */
503
512
  
504
513
  /* This option parser is the same as parse_opt() above, except it
505
514
     ignores everything but the --config-file option. */
506
 
  error_t parse_opt_config_file (int key, char *arg,
507
 
                                 __attribute__((unused))
508
 
                                 struct argp_state *state) {
509
 
    switch (key) {
 
515
  error_t parse_opt_config_file(int key, char *arg,
 
516
                                __attribute__((unused))
 
517
                                struct argp_state *state){
 
518
    switch(key){
510
519
    case 'g':                   /* --global-options */
511
520
    case 'G':                   /* --global-env */
512
521
    case 'o':                   /* --options-for */
541
550
  
542
551
  /* Parse using parse_opt_config_file() in order to get the custom
543
552
     config file location, if any. */
544
 
  ret = argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
545
 
  if (ret == ARGP_ERR_UNKNOWN){
 
553
  ret = argp_parse(&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
 
554
  if(ret == ARGP_ERR_UNKNOWN){
546
555
    fprintf(stderr, "Unknown error while parsing arguments\n");
547
556
    exitstatus = EXIT_FAILURE;
548
557
    goto fallback;
552
561
  argp.parser = parse_opt;
553
562
  
554
563
  /* Open the configfile if available */
555
 
  if (argfile == NULL){
 
564
  if(argfile == NULL){
556
565
    conffp = fopen(AFILE, "r");
557
566
  } else {
558
567
    conffp = fopen(argfile, "r");
613
622
  } else {
614
623
    /* Check for harmful errors and go to fallback. Other errors might
615
624
       not affect opening plugins */
616
 
    if (errno == EMFILE or errno == ENFILE or errno == ENOMEM){
 
625
    if(errno == EMFILE or errno == ENFILE or errno == ENOMEM){
617
626
      perror("fopen");
618
627
      exitstatus = EXIT_FAILURE;
619
628
      goto fallback;
622
631
  /* If there was any arguments from configuration file,
623
632
     pass them to parser as command arguments */
624
633
  if(custom_argv != NULL){
625
 
    ret = argp_parse (&argp, custom_argc, custom_argv, ARGP_IN_ORDER,
626
 
                      0, NULL);
627
 
    if (ret == ARGP_ERR_UNKNOWN){
 
634
    ret = argp_parse(&argp, custom_argc, custom_argv, ARGP_IN_ORDER,
 
635
                     0, NULL);
 
636
    if(ret == ARGP_ERR_UNKNOWN){
628
637
      fprintf(stderr, "Unknown error while parsing arguments\n");
629
638
      exitstatus = EXIT_FAILURE;
630
639
      goto fallback;
633
642
  
634
643
  /* Parse actual command line arguments, to let them override the
635
644
     config file */
636
 
  ret = argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
637
 
  if (ret == ARGP_ERR_UNKNOWN){
 
645
  ret = argp_parse(&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
 
646
  if(ret == ARGP_ERR_UNKNOWN){
638
647
    fprintf(stderr, "Unknown error while parsing arguments\n");
639
648
    exitstatus = EXIT_FAILURE;
640
649
    goto fallback;
647
656
      for(char **a = p->argv; *a != NULL; a++){
648
657
        fprintf(stderr, "\tArg: %s\n", *a);
649
658
      }
650
 
      fprintf(stderr, "...and %u environment variables\n", p->envc);
 
659
      fprintf(stderr, "...and %d environment variables\n", p->envc);
651
660
      for(char **a = p->environ; *a != NULL; a++){
652
661
        fprintf(stderr, "\t%s\n", *a);
653
662
      }
655
664
  }
656
665
  
657
666
  /* Strip permissions down to nobody */
 
667
  setgid(gid);
 
668
  if(ret == -1){
 
669
    perror("setgid");
 
670
  }
658
671
  ret = setuid(uid);
659
 
  if (ret == -1){
 
672
  if(ret == -1){
660
673
    perror("setuid");
661
 
  }  
662
 
  setgid(gid);
663
 
  if (ret == -1){
664
 
    perror("setgid");
665
674
  }
666
675
  
667
 
  if (plugindir == NULL){
 
676
  if(plugindir == NULL){
668
677
    dir = opendir(PDIR);
669
678
  } else {
670
679
    dir = opendir(plugindir);
697
706
    
698
707
    /* All directory entries have been processed */
699
708
    if(dirst == NULL){
700
 
      if (errno == EBADF){
 
709
      if(errno == EBADF){
701
710
        perror("readdir");
702
711
        exitstatus = EXIT_FAILURE;
703
712
        goto fallback;
763
772
    }
764
773
    
765
774
    ret = stat(filename, &st);
766
 
    if (ret == -1){
 
775
    if(ret == -1){
767
776
      perror("stat");
768
777
      free(filename);
769
778
      continue;
770
779
    }
771
780
 
772
781
    /* Ignore non-executable files */
773
 
    if (not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
 
782
    if(not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
774
783
      if(debug){
775
784
        fprintf(stderr, "Ignoring plugin dir entry \"%s\""
776
785
                " with bad type or mode\n", filename);
823
832
    
824
833
    int pipefd[2];
825
834
    ret = pipe(pipefd);
826
 
    if (ret == -1){
 
835
    if(ret == -1){
827
836
      perror("pipe");
828
837
      exitstatus = EXIT_FAILURE;
829
838
      goto fallback;
842
851
      goto fallback;
843
852
    }
844
853
    /* Block SIGCHLD until process is safely in process list */
845
 
    ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
854
    ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
846
855
    if(ret < 0){
847
856
      perror("sigprocmask");
848
857
      exitstatus = EXIT_FAILURE;
896
905
    close(pipefd[1]);           /* Close unused write end of pipe */
897
906
    free(filename);
898
907
    plugin *new_plugin = getplugin(dirst->d_name);
899
 
    if (new_plugin == NULL){
 
908
    if(new_plugin == NULL){
900
909
      perror("getplugin");
901
 
      ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
910
      ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
902
911
      if(ret < 0){
903
912
        perror("sigprocmask");
904
913
      }
911
920
    
912
921
    /* Unblock SIGCHLD so signal handler can be run if this process
913
922
       has already completed */
914
 
    ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
923
    ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
915
924
    if(ret < 0){
916
925
      perror("sigprocmask");
917
926
      exitstatus = EXIT_FAILURE;
920
929
    
921
930
    FD_SET(new_plugin->fd, &rfds_all);
922
931
    
923
 
    if (maxfd < new_plugin->fd){
 
932
    if(maxfd < new_plugin->fd){
924
933
      maxfd = new_plugin->fd;
925
934
    }
926
935
  }
943
952
  while(plugin_list){
944
953
    fd_set rfds = rfds_all;
945
954
    int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
946
 
    if (select_ret == -1){
 
955
    if(select_ret == -1){
947
956
      perror("select");
948
957
      exitstatus = EXIT_FAILURE;
949
958
      goto fallback;
952
961
       from one of them */
953
962
    for(plugin *proc = plugin_list; proc != NULL;){
954
963
      /* Is this process completely done? */
955
 
      if(proc->eof and proc->completed){
 
964
      if(proc->completed and proc->eof){
956
965
        /* Only accept the plugin output if it exited cleanly */
957
966
        if(not WIFEXITED(proc->status)
958
967
           or WEXITSTATUS(proc->status) != 0){
960
969
 
961
970
          if(debug){
962
971
            if(WIFEXITED(proc->status)){
963
 
              fprintf(stderr, "Plugin %u exited with status %d\n",
964
 
                      (unsigned int) (proc->pid),
 
972
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] exited with"
 
973
                      " status %d\n", proc->name,
 
974
                      (intmax_t) (proc->pid),
965
975
                      WEXITSTATUS(proc->status));
966
 
            } else if(WIFSIGNALED(proc->status)) {
967
 
              fprintf(stderr, "Plugin %u killed by signal %d\n",
968
 
                      (unsigned int) (proc->pid),
 
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),
969
980
                      WTERMSIG(proc->status));
970
981
            } else if(WCOREDUMP(proc->status)){
971
 
              fprintf(stderr, "Plugin %u dumped core\n",
972
 
                      (unsigned int) (proc->pid));
 
982
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] dumped"
 
983
                      " core\n", proc->name, (intmax_t) (proc->pid));
973
984
            }
974
985
          }
975
986
          
989
1000
          proc = next_plugin;
990
1001
          
991
1002
          /* We are done modifying process list, so unblock signal */
992
 
          ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
993
 
                             NULL);
 
1003
          ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask,
 
1004
                            NULL);
994
1005
          if(ret < 0){
995
1006
            perror("sigprocmask");
996
1007
            exitstatus = EXIT_FAILURE;
1025
1036
      if(proc->buffer_length + BUFFER_SIZE > proc->buffer_size){
1026
1037
        proc->buffer = realloc(proc->buffer, proc->buffer_size
1027
1038
                               + (size_t) BUFFER_SIZE);
1028
 
        if (proc->buffer == NULL){
 
1039
        if(proc->buffer == NULL){
1029
1040
          perror("malloc");
1030
1041
          exitstatus = EXIT_FAILURE;
1031
1042
          goto fallback;