/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

  • Committer: Teddy Hogeborn
  • Date: 2008-08-24 10:52:46 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080824105246-4gu1o1q6sdjvqcyb
* mandos (fingerprint): Bug fix: Remove some temporary debugging code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
  if (new_plugin == NULL){
106
106
    return NULL;
107
107
  }
108
 
  *new_plugin = (plugin) { .name = name,
 
108
  char *copy_name = NULL;
 
109
  if(name != NULL){
 
110
    copy_name = strdup(name);
 
111
    if(copy_name == NULL){
 
112
      return NULL;
 
113
    }
 
114
  }
 
115
  
 
116
  *new_plugin = (plugin) { .name = copy_name,
109
117
                           .argc = 1,
110
118
                           .envc = 0,
111
119
                           .disabled = false,
113
121
  
114
122
  new_plugin->argv = malloc(sizeof(char *) * 2);
115
123
  if (new_plugin->argv == NULL){
 
124
    free(copy_name);
116
125
    free(new_plugin);
117
126
    return NULL;
118
127
  }
119
 
  new_plugin->argv[0] = name;
 
128
  new_plugin->argv[0] = copy_name;
120
129
  new_plugin->argv[1] = NULL;
121
130
 
122
131
  new_plugin->environ = malloc(sizeof(char *));
123
132
  if(new_plugin->environ == NULL){
 
133
    free(copy_name);
124
134
    free(new_plugin->argv);
125
135
    free(new_plugin);
126
136
    return NULL;
242
252
    return NULL;
243
253
  }
244
254
  argv[*argc-1] = arg;
245
 
  argv[*argc] = NULL;   
 
255
  argv[*argc] = NULL;
246
256
  return argv;
247
257
}
248
258
 
 
259
static void free_plugin_list(plugin *plugin_list){
 
260
  for(plugin *next; plugin_list != NULL; plugin_list = next){
 
261
    next = plugin_list->next;
 
262
    for(char **arg = plugin_list->argv; *arg != NULL; arg++){
 
263
      free(*arg);
 
264
    }
 
265
    free(plugin_list->argv);
 
266
    for(char **env = plugin_list->environ; *env != NULL; env++){
 
267
      free(*env);
 
268
    }
 
269
    free(plugin_list->environ);
 
270
    free(plugin_list);
 
271
  }
 
272
}
 
273
 
249
274
int main(int argc, char *argv[]){
250
275
  const char *plugindir = "/lib/mandos/plugins.d";
251
276
  const char *argfile = ARGFILE;
269
294
  /* Establish a signal handler */
270
295
  sigemptyset(&sigchld_action.sa_mask);
271
296
  ret = sigaddset(&sigchld_action.sa_mask, SIGCHLD);
272
 
  if(ret < 0){
 
297
  if(ret == -1){
273
298
    perror("sigaddset");
274
 
    exit(EXIT_FAILURE);
 
299
    exitstatus = EXIT_FAILURE;
 
300
    goto fallback;
275
301
  }
276
302
  ret = sigaction(SIGCHLD, &sigchld_action, &old_sigchld_action);
277
 
  if(ret < 0){
 
303
  if(ret == -1){
278
304
    perror("sigaction");
279
 
    exit(EXIT_FAILURE);
 
305
    exitstatus = EXIT_FAILURE;
 
306
    goto fallback;
280
307
  }
281
308
  
282
309
  /* The options we understand. */
428
455
  if (ret == ARGP_ERR_UNKNOWN){
429
456
    fprintf(stderr, "Unknown error while parsing arguments\n");
430
457
    exitstatus = EXIT_FAILURE;
431
 
    goto end;
 
458
    goto fallback;
432
459
  }
433
460
 
434
461
  conffp = fopen(argfile, "r");
435
462
  if(conffp != NULL){
436
463
    char *org_line = NULL;
 
464
    char *p, *arg, *new_arg, *line;
437
465
    size_t size = 0;
438
466
    ssize_t sret;
439
 
    char *p, *arg, *new_arg, *line;
440
467
    const char whitespace_delims[] = " \r\t\f\v\n";
441
468
    const char comment_delim[] = "#";
442
469
 
457
484
        if (custom_argv == NULL){
458
485
          perror("add_to_argv");
459
486
          exitstatus = EXIT_FAILURE;
460
 
          goto end;
 
487
          goto fallback;
461
488
        }
462
489
      }
463
490
    }
468
495
    if (errno == EMFILE or errno == ENFILE or errno == ENOMEM){
469
496
      perror("fopen");
470
497
      exitstatus = EXIT_FAILURE;
471
 
      goto end;
 
498
      goto fallback;
472
499
    }
473
500
  }
474
501
 
478
505
    if (ret == ARGP_ERR_UNKNOWN){
479
506
      fprintf(stderr, "Unknown error while parsing arguments\n");
480
507
      exitstatus = EXIT_FAILURE;
481
 
      goto end;
 
508
      goto fallback;
482
509
    }
483
510
  }
484
511
  
510
537
  if(dir == NULL){
511
538
    perror("Could not open plugin dir");
512
539
    exitstatus = EXIT_FAILURE;
513
 
    goto end;
 
540
    goto fallback;
514
541
  }
515
542
  
516
543
  /* Set the FD_CLOEXEC flag on the directory, if possible */
521
548
      if(ret < 0){
522
549
        perror("set_cloexec_flag");
523
550
        exitstatus = EXIT_FAILURE;
524
 
        goto end;
 
551
        goto fallback;
525
552
      }
526
553
    }
527
554
  }
536
563
      if (errno == EBADF){
537
564
        perror("readdir");
538
565
        exitstatus = EXIT_FAILURE;
539
 
        goto end;
 
566
        goto fallback;
540
567
      }
541
568
      break;
542
569
    }
657
684
      }
658
685
    }
659
686
    
660
 
    int pipefd[2]; 
 
687
    int pipefd[2];
661
688
    ret = pipe(pipefd);
662
689
    if (ret == -1){
663
690
      perror("pipe");
664
691
      exitstatus = EXIT_FAILURE;
665
 
      goto end;
 
692
      goto fallback;
666
693
    }
667
694
    ret = set_cloexec_flag(pipefd[0]);
668
695
    if(ret < 0){
669
696
      perror("set_cloexec_flag");
670
697
      exitstatus = EXIT_FAILURE;
671
 
      goto end;
 
698
      goto fallback;
672
699
    }
673
700
    ret = set_cloexec_flag(pipefd[1]);
674
701
    if(ret < 0){
675
702
      perror("set_cloexec_flag");
676
703
      exitstatus = EXIT_FAILURE;
677
 
      goto end;
 
704
      goto fallback;
678
705
    }
679
706
    /* Block SIGCHLD until process is safely in process list */
680
707
    ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
681
708
    if(ret < 0){
682
709
      perror("sigprocmask");
683
710
      exitstatus = EXIT_FAILURE;
684
 
      goto end;
 
711
      goto fallback;
685
712
    }
686
713
    // Starting a new process to be watched
687
714
    pid_t pid = fork();
688
715
    if(pid == -1){
689
716
      perror("fork");
690
717
      exitstatus = EXIT_FAILURE;
691
 
      goto end;
 
718
      goto fallback;
692
719
    }
693
720
    if(pid == 0){
694
721
      /* this is the child process */
738
765
        perror("sigprocmask");
739
766
      }
740
767
      exitstatus = EXIT_FAILURE;
741
 
      goto end;
 
768
      goto fallback;
742
769
    }
743
770
    
744
771
    *new_process = (struct process){ .pid = pid,
752
779
    if(ret < 0){
753
780
      perror("sigprocmask");
754
781
      exitstatus = EXIT_FAILURE;
755
 
      goto end;
 
782
      goto fallback;
756
783
    }
757
784
    
758
785
    FD_SET(new_process->fd, &rfds_all);
763
790
    
764
791
  }
765
792
  
766
 
  /* Free the plugin list */
767
 
  for(plugin *next; plugin_list != NULL; plugin_list = next){
768
 
    next = plugin_list->next;
769
 
    free(plugin_list->argv);
770
 
    if(plugin_list->environ[0] != NULL){
771
 
      for(char **e = plugin_list->environ; *e != NULL; e++){
772
 
        free(*e);
773
 
      }
774
 
    }
775
 
    free(plugin_list);
776
 
  }
 
793
  free_plugin_list(plugin_list);
 
794
  plugin_list = NULL;
777
795
  
778
796
  closedir(dir);
779
797
  dir = NULL;
789
807
    if (select_ret == -1){
790
808
      perror("select");
791
809
      exitstatus = EXIT_FAILURE;
792
 
      goto end;
 
810
      goto fallback;
793
811
    }
794
812
    /* OK, now either a process completed, or something can be read
795
813
       from one of them */
821
839
          if(ret < 0){
822
840
            perror("sigprocmask");
823
841
            exitstatus = EXIT_FAILURE;
824
 
            goto end;
 
842
            goto fallback;
825
843
          }
826
844
          /* Delete this process entry from the list */
827
845
          if(process_list == proc){
856
874
          perror("print_out_password");
857
875
          exitstatus = EXIT_FAILURE;
858
876
        }
859
 
        goto end;
 
877
        goto fallback;
860
878
      }
861
879
      /* This process has not completed.  Does it have any output? */
862
880
      if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
870
888
        if (proc->buffer == NULL){
871
889
          perror("malloc");
872
890
          exitstatus = EXIT_FAILURE;
873
 
          goto end;
 
891
          goto fallback;
874
892
        }
875
893
        proc->buffer_size += BUFFER_SIZE;
876
894
      }
891
909
  }
892
910
 
893
911
 
894
 
 end:
 
912
 fallback:
895
913
  
896
914
  if(process_list == NULL or exitstatus != EXIT_SUCCESS){
897
915
    /* Fallback if all plugins failed, none are found or an error occured */
902
920
    if(not bret){
903
921
      perror("print_out_password");
904
922
      exitstatus = EXIT_FAILURE;
905
 
      goto end;
906
923
    }
907
924
  }
908
925
  
909
926
  /* Restore old signal handler */
910
 
  sigaction(SIGCHLD, &old_sigchld_action, NULL);
911
 
  
912
 
  free(custom_argv);
913
 
  
914
 
  /* Free the plugin list */
915
 
  for(plugin *next; plugin_list != NULL; plugin_list = next){
916
 
    next = plugin_list->next;
917
 
    free(plugin_list->argv);
918
 
    if(plugin_list->environ[0] != NULL){
919
 
      for(char **e = plugin_list->environ; *e != NULL; e++){
920
 
        free(*e);
921
 
      }
 
927
  ret = sigaction(SIGCHLD, &old_sigchld_action, NULL);
 
928
  if(ret == -1){
 
929
    perror("sigaction");
 
930
    exitstatus = EXIT_FAILURE;
 
931
  }
 
932
 
 
933
  if(custom_argv != NULL){
 
934
    for(char **arg = custom_argv; *arg != NULL; arg++){
 
935
      free(*arg);
922
936
    }
923
 
    free(plugin_list->environ);
924
 
    free(plugin_list);
 
937
    free(custom_argv);
925
938
  }
 
939
  free_plugin_list(plugin_list);
926
940
  
927
941
  if(dir != NULL){
928
942
    closedir(dir);