/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-09-05 17:39:34 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090905173934-gs0r858omhudc71m
* plugin-runner.c (main): Move variables "tmpmax" and "tmp" into
                          the innermost scope possible.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  -*- coding: utf-8 -*- */
 
1
/*  -*- coding: utf-8; mode: c; mode: orgtbl -*- */
2
2
/*
3
3
 * Mandos plugin runner - Run Mandos plugins
4
4
 *
38
38
#include <sys/select.h>         /* fd_set, select(), FD_ZERO(),
39
39
                                   FD_SET(), FD_ISSET(), FD_CLR */
40
40
#include <sys/wait.h>           /* wait(), waitpid(), WIFEXITED(),
41
 
                                   WEXITSTATUS() */
 
41
                                   WEXITSTATUS(), WTERMSIG(),
 
42
                                   WCOREDUMP() */
42
43
#include <sys/stat.h>           /* struct stat, stat(), S_ISREG() */
43
44
#include <iso646.h>             /* and, or, not */
44
45
#include <dirent.h>             /* DIR, struct dirent, opendir(),
52
53
                                   close() */
53
54
#include <fcntl.h>              /* fcntl(), F_GETFD, F_SETFD,
54
55
                                   FD_CLOEXEC */
55
 
#include <string.h>             /* strsep, strlen(), asprintf() */
 
56
#include <string.h>             /* strsep, strlen(), asprintf(),
 
57
                                   strsignal() */
56
58
#include <errno.h>              /* errno */
57
59
#include <argp.h>               /* struct argp_option, struct
58
60
                                   argp_state, struct argp,
62
64
#include <signal.h>             /* struct sigaction, sigemptyset(),
63
65
                                   sigaddset(), sigaction(),
64
66
                                   sigprocmask(), SIG_BLOCK, SIGCHLD,
65
 
                                   SIG_UNBLOCK, kill() */
 
67
                                   SIG_UNBLOCK, kill(), sig_atomic_t
 
68
                                */
66
69
#include <errno.h>              /* errno, EBADF */
67
 
#include <inttypes.h>           /* intmax_t, SCNdMAX, PRIdMAX,  */
 
70
#include <inttypes.h>           /* intmax_t, PRIdMAX, strtoimax() */
68
71
 
69
72
#define BUFFER_SIZE 256
70
73
 
81
84
  char **environ;
82
85
  int envc;
83
86
  bool disabled;
84
 
 
 
87
  
85
88
  /* Variables used for running processes*/
86
89
  pid_t pid;
87
90
  int fd;
89
92
  size_t buffer_size;
90
93
  size_t buffer_length;
91
94
  bool eof;
92
 
  volatile bool completed;
93
 
  volatile int status;
 
95
  volatile sig_atomic_t completed;
 
96
  int status;
94
97
  struct plugin *next;
95
98
} plugin;
96
99
 
120
123
    }
121
124
  }
122
125
  
123
 
  *new_plugin = (plugin) { .name = copy_name,
124
 
                           .argc = 1,
125
 
                           .disabled = false,
126
 
                           .next = plugin_list };
 
126
  *new_plugin = (plugin){ .name = copy_name,
 
127
                          .argc = 1,
 
128
                          .disabled = false,
 
129
                          .next = plugin_list };
127
130
  
128
131
  new_plugin->argv = malloc(sizeof(char *) * 2);
129
132
  if(new_plugin->argv == NULL){
207
210
/*
208
211
 * Based on the example in the GNU LibC manual chapter 13.13 "File
209
212
 * Descriptor Flags".
210
 
 * *Note File Descriptor Flags:(libc)Descriptor Flags.
 
213
 | [[info:libc:Descriptor%20Flags][File Descriptor Flags]] |
211
214
 */
212
215
static int set_cloexec_flag(int fd){
213
216
  int ret = fcntl(fd, F_GETFD, 0);
223
226
/* Mark processes as completed when they exit, and save their exit
224
227
   status. */
225
228
static void handle_sigchld(__attribute__((unused)) int sig){
 
229
  int old_errno = errno;
226
230
  while(true){
227
231
    plugin *proc = plugin_list;
228
232
    int status;
232
236
      break;
233
237
    }
234
238
    if(pid == -1){
235
 
      if(errno != ECHILD){
236
 
        perror("waitpid");
 
239
      if(errno == ECHILD){
 
240
        /* No child processes */
 
241
        break;
237
242
      }
238
 
      /* No child processes */
239
 
      break;
 
243
      perror("waitpid");
240
244
    }
241
245
    
242
246
    /* A child exited, find it in process_list */
248
252
      continue;
249
253
    }
250
254
    proc->status = status;
251
 
    proc->completed = true;
 
255
    proc->completed = 1;
252
256
  }
 
257
  errno = old_errno;
253
258
}
254
259
 
255
260
/* Prints out a password to stdout */
277
282
  }
278
283
  free(plugin_node->environ);
279
284
  free(plugin_node->buffer);
280
 
 
 
285
  
281
286
  /* Removes the plugin from the singly-linked list */
282
287
  if(plugin_node == plugin_list){
283
288
    /* First one - simple */
310
315
  struct dirent *dirst;
311
316
  struct stat st;
312
317
  fd_set rfds_all;
313
 
  int ret, numchars, maxfd = 0;
 
318
  int ret, maxfd = 0;
314
319
  ssize_t sret;
315
 
  intmax_t tmpmax;
316
320
  uid_t uid = 65534;
317
321
  gid_t gid = 65534;
318
322
  bool debug = false;
376
380
  };
377
381
  
378
382
  error_t parse_opt(int key, char *arg, __attribute__((unused))
379
 
                    struct argp_state *state) {
380
 
    switch(key) {
 
383
                    struct argp_state *state){
 
384
    switch(key){
 
385
      char *tmp;
 
386
      intmax_t tmpmax;
381
387
    case 'g':                   /* --global-options */
382
388
      if(arg != NULL){
383
 
        char *p;
384
 
        while((p = strsep(&arg, ",")) != NULL){
385
 
          if(p[0] == '\0'){
 
389
        char *plugin_option;
 
390
        while((plugin_option = strsep(&arg, ",")) != NULL){
 
391
          if(plugin_option[0] == '\0'){
386
392
            continue;
387
393
          }
388
 
          if(not add_argument(getplugin(NULL), p)){
 
394
          if(not add_argument(getplugin(NULL), plugin_option)){
389
395
            perror("add_argument");
390
396
            return ARGP_ERR_UNKNOWN;
391
397
          }
402
408
      break;
403
409
    case 'o':                   /* --options-for */
404
410
      if(arg != NULL){
405
 
        char *p_name = strsep(&arg, ":");
406
 
        if(p_name[0] == '\0' or arg == NULL){
407
 
          break;
408
 
        }
409
 
        char *opt = strsep(&arg, ":");
410
 
        if(opt[0] == '\0' or opt == NULL){
411
 
          break;
412
 
        }
413
 
        char *p;
414
 
        while((p = strsep(&opt, ",")) != NULL){
415
 
          if(p[0] == '\0'){
416
 
            continue;
417
 
          }
418
 
          if(not add_argument(getplugin(p_name), p)){
 
411
        char *plugin_name = strsep(&arg, ":");
 
412
        if(plugin_name[0] == '\0'){
 
413
          break;
 
414
        }
 
415
        char *plugin_option;
 
416
        while((plugin_option = strsep(&arg, ",")) != NULL){
 
417
          if(not add_argument(getplugin(plugin_name), plugin_option)){
419
418
            perror("add_argument");
420
419
            return ARGP_ERR_UNKNOWN;
421
420
          }
460
459
      plugindir = strdup(arg);
461
460
      if(plugindir == NULL){
462
461
        perror("strdup");
463
 
      }      
 
462
      }
464
463
      break;
465
464
    case 129:                   /* --config-file */
466
465
      /* This is already done by parse_opt_config_file() */
467
466
      break;
468
467
    case 130:                   /* --userid */
469
 
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
470
 
      if(ret < 1 or tmpmax != (uid_t)tmpmax
471
 
         or arg[numchars] != '\0'){
 
468
      errno = 0;
 
469
      tmpmax = strtoimax(arg, &tmp, 10);
 
470
      if(errno != 0 or tmp == arg or *tmp != '\0'
 
471
         or tmpmax != (uid_t)tmpmax){
472
472
        fprintf(stderr, "Bad user ID number: \"%s\", using %"
473
473
                PRIdMAX "\n", arg, (intmax_t)uid);
474
474
      } else {
476
476
      }
477
477
      break;
478
478
    case 131:                   /* --groupid */
479
 
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
480
 
      if(ret < 1 or tmpmax != (gid_t)tmpmax
481
 
         or arg[numchars] != '\0'){
 
479
      errno = 0;
 
480
      tmpmax = strtoimax(arg, &tmp, 10);
 
481
      if(errno != 0 or tmp == arg or *tmp != '\0'
 
482
         or tmpmax != (gid_t)tmpmax){
482
483
        fprintf(stderr, "Bad group ID number: \"%s\", using %"
483
484
                PRIdMAX "\n", arg, (intmax_t)gid);
484
485
      } else {
512
513
     ignores everything but the --config-file option. */
513
514
  error_t parse_opt_config_file(int key, char *arg,
514
515
                                __attribute__((unused))
515
 
                                struct argp_state *state) {
516
 
    switch(key) {
 
516
                                struct argp_state *state){
 
517
    switch(key){
517
518
    case 'g':                   /* --global-options */
518
519
    case 'G':                   /* --global-env */
519
520
    case 'o':                   /* --options-for */
528
529
      if(argfile == NULL){
529
530
        perror("strdup");
530
531
      }
531
 
      break;      
 
532
      break;
532
533
    case 130:                   /* --userid */
533
534
    case 131:                   /* --groupid */
534
535
    case 132:                   /* --debug */
563
564
    conffp = fopen(AFILE, "r");
564
565
  } else {
565
566
    conffp = fopen(argfile, "r");
566
 
  }  
 
567
  }
567
568
  if(conffp != NULL){
568
569
    char *org_line = NULL;
569
570
    char *p, *arg, *new_arg, *line;
570
571
    size_t size = 0;
571
572
    const char whitespace_delims[] = " \r\t\f\v\n";
572
573
    const char comment_delim[] = "#";
573
 
 
 
574
    
574
575
    custom_argc = 1;
575
576
    custom_argv = malloc(sizeof(char*) * 2);
576
577
    if(custom_argv == NULL){
580
581
    }
581
582
    custom_argv[0] = argv[0];
582
583
    custom_argv[1] = NULL;
583
 
 
 
584
    
584
585
    /* for each line in the config file, strip whitespace and ignore
585
586
       commented text */
586
587
    while(true){
588
589
      if(sret == -1){
589
590
        break;
590
591
      }
591
 
 
 
592
      
592
593
      line = org_line;
593
594
      arg = strsep(&line, comment_delim);
594
595
      while((p = strsep(&arg, whitespace_delims)) != NULL){
613
614
          goto fallback;
614
615
        }
615
616
        custom_argv[custom_argc-1] = new_arg;
616
 
        custom_argv[custom_argc] = NULL;        
 
617
        custom_argv[custom_argc] = NULL;
617
618
      }
618
619
    }
 
620
    do{
 
621
      ret = fclose(conffp);
 
622
    }while(ret == EOF and errno == EINTR);
 
623
    if(ret == EOF){
 
624
      perror("fclose");
 
625
      exitstatus = EXIT_FAILURE;
 
626
      goto fallback;
 
627
    }
619
628
    free(org_line);
620
629
  } else {
621
630
    /* Check for harmful errors and go to fallback. Other errors might
662
671
  }
663
672
  
664
673
  /* Strip permissions down to nobody */
 
674
  setgid(gid);
 
675
  if(ret == -1){
 
676
    perror("setgid");
 
677
  }
665
678
  ret = setuid(uid);
666
679
  if(ret == -1){
667
680
    perror("setuid");
668
 
  }  
669
 
  setgid(gid);
670
 
  if(ret == -1){
671
 
    perror("setgid");
672
681
  }
673
682
  
674
683
  if(plugindir == NULL){
757
766
        continue;
758
767
      }
759
768
    }
760
 
 
 
769
    
761
770
    char *filename;
762
771
    if(plugindir == NULL){
763
772
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
775
784
      free(filename);
776
785
      continue;
777
786
    }
778
 
 
 
787
    
779
788
    /* Ignore non-executable files */
780
789
    if(not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
781
790
      if(debug){
934
943
  
935
944
  closedir(dir);
936
945
  dir = NULL;
 
946
  free_plugin(getplugin(NULL));
937
947
  
938
948
  for(plugin *p = plugin_list; p != NULL; p = p->next){
939
949
    if(p->pid != 0){
959
969
       from one of them */
960
970
    for(plugin *proc = plugin_list; proc != NULL;){
961
971
      /* Is this process completely done? */
962
 
      if(proc->eof and proc->completed){
 
972
      if(proc->completed and proc->eof){
963
973
        /* Only accept the plugin output if it exited cleanly */
964
974
        if(not WIFEXITED(proc->status)
965
975
           or WEXITSTATUS(proc->status) != 0){
966
976
          /* Bad exit by plugin */
967
 
 
 
977
          
968
978
          if(debug){
969
979
            if(WIFEXITED(proc->status)){
970
 
              fprintf(stderr, "Plugin %" PRIdMAX " exited with status"
971
 
                      " %d\n", (intmax_t) (proc->pid),
 
980
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] exited with"
 
981
                      " status %d\n", proc->name,
 
982
                      (intmax_t) (proc->pid),
972
983
                      WEXITSTATUS(proc->status));
973
 
            } else if(WIFSIGNALED(proc->status)) {
974
 
              fprintf(stderr, "Plugin %" PRIdMAX " killed by signal"
975
 
                      " %d\n", (intmax_t) (proc->pid),
976
 
                      WTERMSIG(proc->status));
 
984
            } else if(WIFSIGNALED(proc->status)){
 
985
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] killed by"
 
986
                      " signal %d: %s\n", proc->name,
 
987
                      (intmax_t) (proc->pid),
 
988
                      WTERMSIG(proc->status),
 
989
                      strsignal(WTERMSIG(proc->status)));
977
990
            } else if(WCOREDUMP(proc->status)){
978
 
              fprintf(stderr, "Plugin %" PRIdMAX " dumped core\n",
979
 
                      (intmax_t) (proc->pid));
 
991
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] dumped"
 
992
                      " core\n", proc->name, (intmax_t) (proc->pid));
980
993
            }
981
994
          }
982
995
          
983
996
          /* Remove the plugin */
984
997
          FD_CLR(proc->fd, &rfds_all);
985
 
 
 
998
          
986
999
          /* Block signal while modifying process_list */
987
1000
          ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
988
1001
          if(ret < 0){
1055
1068
      }
1056
1069
    }
1057
1070
  }
1058
 
 
1059
 
 
 
1071
  
 
1072
  
1060
1073
 fallback:
1061
1074
  
1062
1075
  if(plugin_list == NULL or exitstatus != EXIT_SUCCESS){