/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-09 19:26:19 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090209192619-7rse82x9pypq4ihk
* plugin-runner.c: Comment change.

* plugins.d/mandos-client.c: Comment changes.
  (quit_now): New global flag.
  (handle_sigterm): Only call avahi_simple_poll_quit once.
  (main): Also handle SIGINT and SIGHUP.

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, PRIdMAX, strtoimax() */
 
68
#include <inttypes.h>           /* intmax_t, SCNdMAX, PRIdMAX,  */
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, maxfd = 0;
 
316
  int ret, numchars, 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;
384
383
    switch(key){
385
384
    case 'g':                   /* --global-options */
386
385
      if(arg != NULL){
463
462
      /* This is already done by parse_opt_config_file() */
464
463
      break;
465
464
    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){
 
465
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
466
      if(ret < 1 or tmpmax != (uid_t)tmpmax
 
467
         or arg[numchars] != '\0'){
470
468
        fprintf(stderr, "Bad user ID number: \"%s\", using %"
471
469
                PRIdMAX "\n", arg, (intmax_t)uid);
472
470
      } else {
474
472
      }
475
473
      break;
476
474
    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){
 
475
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
476
      if(ret < 1 or tmpmax != (gid_t)tmpmax
 
477
         or arg[numchars] != '\0'){
481
478
        fprintf(stderr, "Bad group ID number: \"%s\", using %"
482
479
                PRIdMAX "\n", arg, (intmax_t)gid);
483
480
      } else {
569
566
    size_t size = 0;
570
567
    const char whitespace_delims[] = " \r\t\f\v\n";
571
568
    const char comment_delim[] = "#";
572
 
    
 
569
 
573
570
    custom_argc = 1;
574
571
    custom_argv = malloc(sizeof(char*) * 2);
575
572
    if(custom_argv == NULL){
579
576
    }
580
577
    custom_argv[0] = argv[0];
581
578
    custom_argv[1] = NULL;
582
 
    
 
579
 
583
580
    /* for each line in the config file, strip whitespace and ignore
584
581
       commented text */
585
582
    while(true){
587
584
      if(sret == -1){
588
585
        break;
589
586
      }
590
 
      
 
587
 
591
588
      line = org_line;
592
589
      arg = strsep(&line, comment_delim);
593
590
      while((p = strsep(&arg, whitespace_delims)) != NULL){
756
753
        continue;
757
754
      }
758
755
    }
759
 
    
 
756
 
760
757
    char *filename;
761
758
    if(plugindir == NULL){
762
759
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
774
771
      free(filename);
775
772
      continue;
776
773
    }
777
 
    
 
774
 
778
775
    /* Ignore non-executable files */
779
776
    if(not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
780
777
      if(debug){
964
961
        if(not WIFEXITED(proc->status)
965
962
           or WEXITSTATUS(proc->status) != 0){
966
963
          /* Bad exit by plugin */
967
 
          
 
964
 
968
965
          if(debug){
969
966
            if(WIFEXITED(proc->status)){
970
967
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] exited with"
984
981
          
985
982
          /* Remove the plugin */
986
983
          FD_CLR(proc->fd, &rfds_all);
987
 
          
 
984
 
988
985
          /* Block signal while modifying process_list */
989
986
          ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
990
987
          if(ret < 0){
1057
1054
      }
1058
1055
    }
1059
1056
  }
1060
 
  
1061
 
  
 
1057
 
 
1058
 
1062
1059
 fallback:
1063
1060
  
1064
1061
  if(plugin_list == NULL or exitstatus != EXIT_SUCCESS){