/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-12 18:56:52 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090212185652-ast00yprt2pe2l4p
Overflows are not detected by sscanf(), so stop using it:

* plugin-runner.c (main/parse_opt): Change from using "sscanf()" to
                                    "strtoimax()".
* plugins.d/mandos-client.c (main/parse_opt, main): Change from using
                                                    "sscanf()" to
                                                    "strtoimax()" and
                                                    "strtof()".
* splashy.c (main): Change from using "sscanf()" to "strtoimax()".
* usplash.c (main): - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  -*- coding: utf-8; mode: c; mode: orgtbl -*- */
 
1
/*  -*- coding: utf-8 -*- */
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(), WTERMSIG(),
42
 
                                   WCOREDUMP() */
 
41
                                   WEXITSTATUS() */
43
42
#include <sys/stat.h>           /* struct stat, stat(), S_ISREG() */
44
43
#include <iso646.h>             /* and, or, not */
45
44
#include <dirent.h>             /* DIR, struct dirent, opendir(),
53
52
                                   close() */
54
53
#include <fcntl.h>              /* fcntl(), F_GETFD, F_SETFD,
55
54
                                   FD_CLOEXEC */
56
 
#include <string.h>             /* strsep, strlen(), asprintf(),
57
 
                                   strsignal() */
 
55
#include <string.h>             /* strsep, strlen(), asprintf() */
58
56
#include <errno.h>              /* errno */
59
57
#include <argp.h>               /* struct argp_option, struct
60
58
                                   argp_state, struct argp,
84
82
  char **environ;
85
83
  int envc;
86
84
  bool disabled;
87
 
  
 
85
 
88
86
  /* Variables used for running processes*/
89
87
  pid_t pid;
90
88
  int fd;
210
208
/*
211
209
 * Based on the example in the GNU LibC manual chapter 13.13 "File
212
210
 * Descriptor Flags".
213
 
 | [[info:libc:Descriptor%20Flags][File Descriptor Flags]] |
 
211
 * *Note File Descriptor Flags:(libc)Descriptor Flags.
214
212
 */
215
213
static int set_cloexec_flag(int fd){
216
214
  int ret = fcntl(fd, F_GETFD, 0);
282
280
  }
283
281
  free(plugin_node->environ);
284
282
  free(plugin_node->buffer);
285
 
  
 
283
 
286
284
  /* Removes the plugin from the singly-linked list */
287
285
  if(plugin_node == plugin_list){
288
286
    /* First one - simple */
459
457
      plugindir = strdup(arg);
460
458
      if(plugindir == NULL){
461
459
        perror("strdup");
462
 
      }
 
460
      }      
463
461
      break;
464
462
    case 129:                   /* --config-file */
465
463
      /* This is already done by parse_opt_config_file() */
529
527
      if(argfile == NULL){
530
528
        perror("strdup");
531
529
      }
532
 
      break;
 
530
      break;      
533
531
    case 130:                   /* --userid */
534
532
    case 131:                   /* --groupid */
535
533
    case 132:                   /* --debug */
564
562
    conffp = fopen(AFILE, "r");
565
563
  } else {
566
564
    conffp = fopen(argfile, "r");
567
 
  }
 
565
  }  
568
566
  if(conffp != NULL){
569
567
    char *org_line = NULL;
570
568
    char *p, *arg, *new_arg, *line;
571
569
    size_t size = 0;
572
570
    const char whitespace_delims[] = " \r\t\f\v\n";
573
571
    const char comment_delim[] = "#";
574
 
    
 
572
 
575
573
    custom_argc = 1;
576
574
    custom_argv = malloc(sizeof(char*) * 2);
577
575
    if(custom_argv == NULL){
581
579
    }
582
580
    custom_argv[0] = argv[0];
583
581
    custom_argv[1] = NULL;
584
 
    
 
582
 
585
583
    /* for each line in the config file, strip whitespace and ignore
586
584
       commented text */
587
585
    while(true){
589
587
      if(sret == -1){
590
588
        break;
591
589
      }
592
 
      
 
590
 
593
591
      line = org_line;
594
592
      arg = strsep(&line, comment_delim);
595
593
      while((p = strsep(&arg, whitespace_delims)) != NULL){
614
612
          goto fallback;
615
613
        }
616
614
        custom_argv[custom_argc-1] = new_arg;
617
 
        custom_argv[custom_argc] = NULL;
 
615
        custom_argv[custom_argc] = NULL;        
618
616
      }
619
617
    }
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
 
    }
628
618
    free(org_line);
629
619
  } else {
630
620
    /* Check for harmful errors and go to fallback. Other errors might
766
756
        continue;
767
757
      }
768
758
    }
769
 
    
 
759
 
770
760
    char *filename;
771
761
    if(plugindir == NULL){
772
762
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
784
774
      free(filename);
785
775
      continue;
786
776
    }
787
 
    
 
777
 
788
778
    /* Ignore non-executable files */
789
779
    if(not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
790
780
      if(debug){
974
964
        if(not WIFEXITED(proc->status)
975
965
           or WEXITSTATUS(proc->status) != 0){
976
966
          /* Bad exit by plugin */
977
 
          
 
967
 
978
968
          if(debug){
979
969
            if(WIFEXITED(proc->status)){
980
970
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] exited with"
983
973
                      WEXITSTATUS(proc->status));
984
974
            } else if(WIFSIGNALED(proc->status)){
985
975
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] killed by"
986
 
                      " signal %d: %s\n", proc->name,
 
976
                      " signal %d\n", proc->name,
987
977
                      (intmax_t) (proc->pid),
988
 
                      WTERMSIG(proc->status),
989
 
                      strsignal(WTERMSIG(proc->status)));
 
978
                      WTERMSIG(proc->status));
990
979
            } else if(WCOREDUMP(proc->status)){
991
980
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] dumped"
992
981
                      " core\n", proc->name, (intmax_t) (proc->pid));
995
984
          
996
985
          /* Remove the plugin */
997
986
          FD_CLR(proc->fd, &rfds_all);
998
 
          
 
987
 
999
988
          /* Block signal while modifying process_list */
1000
989
          ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
1001
990
          if(ret < 0){
1068
1057
      }
1069
1058
    }
1070
1059
  }
1071
 
  
1072
 
  
 
1060
 
 
1061
 
1073
1062
 fallback:
1074
1063
  
1075
1064
  if(plugin_list == NULL or exitstatus != EXIT_SUCCESS){