/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to plugin-runner.c

Merge from Björn:

* plugin-runner.c (main): Bug fix: For the "--options-for" option, do
                          not mangle arguments with colon characters.
                          Also support adding empty arguments.

* plugins.d/mandos-client.c: (mc): New global variable; moved from
                                   "main".
  (init_gpgme, pgp_packet_decrypt, init_gnutls_global,
  init_gnutls_session, start_mandos_communication): Removed "mc"
                                                    argument.  All
                                                    callers changed.

  (resolve_callback, browse_callback): Ignore "userdata" argument.
                                       All callers changed.
  (handle_sigterm): New function.
  (main): Add "handle_sigterm" as signal handler for SIGTERM before
          starting the main loop.

Show diffs side-by-side

added added

removed removed

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