/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

merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
                                   SIG_UNBLOCK, kill(), sig_atomic_t
66
66
                                */
67
67
#include <errno.h>              /* errno, EBADF */
68
 
#include <inttypes.h>           /* intmax_t, SCNdMAX, PRIdMAX,  */
 
68
#include <inttypes.h>           /* intmax_t, PRIdMAX, strtoimax() */
69
69
 
70
70
#define BUFFER_SIZE 256
71
71
 
82
82
  char **environ;
83
83
  int envc;
84
84
  bool disabled;
85
 
 
 
85
  
86
86
  /* Variables used for running processes*/
87
87
  pid_t pid;
88
88
  int fd;
280
280
  }
281
281
  free(plugin_node->environ);
282
282
  free(plugin_node->buffer);
283
 
 
 
283
  
284
284
  /* Removes the plugin from the singly-linked list */
285
285
  if(plugin_node == plugin_list){
286
286
    /* First one - simple */
313
313
  struct dirent *dirst;
314
314
  struct stat st;
315
315
  fd_set rfds_all;
316
 
  int ret, numchars, maxfd = 0;
 
316
  int ret, maxfd = 0;
317
317
  ssize_t sret;
318
318
  intmax_t tmpmax;
319
319
  uid_t uid = 65534;
380
380
  
381
381
  error_t parse_opt(int key, char *arg, __attribute__((unused))
382
382
                    struct argp_state *state){
 
383
    char *tmp;
383
384
    switch(key){
384
385
    case 'g':                   /* --global-options */
385
386
      if(arg != NULL){
462
463
      /* This is already done by parse_opt_config_file() */
463
464
      break;
464
465
    case 130:                   /* --userid */
465
 
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
466
 
      if(ret < 1 or tmpmax != (uid_t)tmpmax
467
 
         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){
468
470
        fprintf(stderr, "Bad user ID number: \"%s\", using %"
469
471
                PRIdMAX "\n", arg, (intmax_t)uid);
470
472
      } else {
472
474
      }
473
475
      break;
474
476
    case 131:                   /* --groupid */
475
 
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
476
 
      if(ret < 1 or tmpmax != (gid_t)tmpmax
477
 
         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){
478
481
        fprintf(stderr, "Bad group ID number: \"%s\", using %"
479
482
                PRIdMAX "\n", arg, (intmax_t)gid);
480
483
      } else {
566
569
    size_t size = 0;
567
570
    const char whitespace_delims[] = " \r\t\f\v\n";
568
571
    const char comment_delim[] = "#";
569
 
 
 
572
    
570
573
    custom_argc = 1;
571
574
    custom_argv = malloc(sizeof(char*) * 2);
572
575
    if(custom_argv == NULL){
576
579
    }
577
580
    custom_argv[0] = argv[0];
578
581
    custom_argv[1] = NULL;
579
 
 
 
582
    
580
583
    /* for each line in the config file, strip whitespace and ignore
581
584
       commented text */
582
585
    while(true){
584
587
      if(sret == -1){
585
588
        break;
586
589
      }
587
 
 
 
590
      
588
591
      line = org_line;
589
592
      arg = strsep(&line, comment_delim);
590
593
      while((p = strsep(&arg, whitespace_delims)) != NULL){
753
756
        continue;
754
757
      }
755
758
    }
756
 
 
 
759
    
757
760
    char *filename;
758
761
    if(plugindir == NULL){
759
762
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
771
774
      free(filename);
772
775
      continue;
773
776
    }
774
 
 
 
777
    
775
778
    /* Ignore non-executable files */
776
779
    if(not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
777
780
      if(debug){
961
964
        if(not WIFEXITED(proc->status)
962
965
           or WEXITSTATUS(proc->status) != 0){
963
966
          /* Bad exit by plugin */
964
 
 
 
967
          
965
968
          if(debug){
966
969
            if(WIFEXITED(proc->status)){
967
970
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] exited with"
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){