/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-13 04:29:35 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090113042935-ztxe47n42q5z767b
* plugin-runner.c (main): Bug fix; do not accept a "d" character after
                          user ID or group ID numbers.  Bug fix: use
                          "%u" when printing PID of coredumped plugin,
                          not "%d".
* plugins.d/password-prompt.c (main): Remove comment which was copied
                                      from another program by mistake.
* plugins.d/splashy.c: Only comment changes.
* plugins.d/usplash.c: - '' -

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