/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: Björn Påhlsson
  • Date: 2008-08-24 23:13:57 UTC
  • mto: (237.7.1 mandos) (24.1.154 mandos)
  • mto: This revision was merged to the branch mainline in revision 102.
  • Revision ID: belorn@braxen-20080824231357-e304pw7ls2dnnvw5
* plugin-runner.c (handle_sigchld): Loop until all exited children
                                    have been wait()ed for.

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;
189
199
 
190
200
process *process_list = NULL;
191
201
 
192
 
/* Mark a process as completed when it exits, and save its exit
 
202
/* Mark processes as completed when it exits, and save its exit
193
203
   status. */
194
204
void handle_sigchld(__attribute__((unused)) int sig){
195
205
  process *proc = process_list;
196
 
  int status;
197
 
  pid_t pid = wait(&status);
198
 
  if(pid == -1){
199
 
    perror("wait");
200
 
    return;
201
 
  }
202
 
  while(proc != NULL and proc->pid != pid){
203
 
    proc = proc->next;
204
 
  }
205
 
  if(proc == NULL){
206
 
    /* Process not found in process list */
207
 
    return;
208
 
  }
209
 
  proc->status = status;
210
 
  proc->completed = true;
 
206
  while(true){
 
207
    int status;
 
208
    pid_t pid = waitpid(-1, &status, WNOHANG);
 
209
    if(pid == 0){
 
210
      break;
 
211
    }
 
212
    if(pid == -1){
 
213
      if (errno != ECHILD){
 
214
        perror("waitpid");
 
215
      }
 
216
      return;
 
217
    }
 
218
 
 
219
    while(proc != NULL and proc->pid != pid){
 
220
      proc = proc->next;
 
221
    }
 
222
    if(proc == NULL){
 
223
      /* Process not found in process list */
 
224
      continue;
 
225
    }
 
226
    proc->status = status;
 
227
    proc->completed = true;
 
228
  }
211
229
}
212
230
 
213
231
bool print_out_password(const char *buffer, size_t length){
242
260
    return NULL;
243
261
  }
244
262
  argv[*argc-1] = arg;
245
 
  argv[*argc] = NULL;   
 
263
  argv[*argc] = NULL;
246
264
  return argv;
247
265
}
248
266
 
 
267
static void free_plugin_list(plugin *plugin_list){
 
268
  for(plugin *next; plugin_list != NULL; plugin_list = next){
 
269
    next = plugin_list->next;
 
270
    for(char **arg = plugin_list->argv; *arg != NULL; arg++){
 
271
      free(*arg);
 
272
    }
 
273
    free(plugin_list->argv);
 
274
    for(char **env = plugin_list->environ; *env != NULL; env++){
 
275
      free(*env);
 
276
    }
 
277
    free(plugin_list->environ);
 
278
    free(plugin_list);
 
279
  }
 
280
}
 
281
 
249
282
int main(int argc, char *argv[]){
250
283
  const char *plugindir = "/lib/mandos/plugins.d";
251
284
  const char *argfile = ARGFILE;
269
302
  /* Establish a signal handler */
270
303
  sigemptyset(&sigchld_action.sa_mask);
271
304
  ret = sigaddset(&sigchld_action.sa_mask, SIGCHLD);
272
 
  if(ret < 0){
 
305
  if(ret == -1){
273
306
    perror("sigaddset");
274
 
    exit(EXIT_FAILURE);
 
307
    exitstatus = EXIT_FAILURE;
 
308
    goto fallback;
275
309
  }
276
310
  ret = sigaction(SIGCHLD, &sigchld_action, &old_sigchld_action);
277
 
  if(ret < 0){
 
311
  if(ret == -1){
278
312
    perror("sigaction");
279
 
    exit(EXIT_FAILURE);
 
313
    exitstatus = EXIT_FAILURE;
 
314
    goto fallback;
280
315
  }
281
316
  
282
317
  /* The options we understand. */
428
463
  if (ret == ARGP_ERR_UNKNOWN){
429
464
    fprintf(stderr, "Unknown error while parsing arguments\n");
430
465
    exitstatus = EXIT_FAILURE;
431
 
    goto end;
 
466
    goto fallback;
432
467
  }
433
468
 
434
469
  conffp = fopen(argfile, "r");
435
470
  if(conffp != NULL){
436
471
    char *org_line = NULL;
 
472
    char *p, *arg, *new_arg, *line;
437
473
    size_t size = 0;
438
474
    ssize_t sret;
439
 
    char *p, *arg, *new_arg, *line;
440
475
    const char whitespace_delims[] = " \r\t\f\v\n";
441
476
    const char comment_delim[] = "#";
442
477
 
457
492
        if (custom_argv == NULL){
458
493
          perror("add_to_argv");
459
494
          exitstatus = EXIT_FAILURE;
460
 
          goto end;
 
495
          goto fallback;
461
496
        }
462
497
      }
463
498
    }
468
503
    if (errno == EMFILE or errno == ENFILE or errno == ENOMEM){
469
504
      perror("fopen");
470
505
      exitstatus = EXIT_FAILURE;
471
 
      goto end;
 
506
      goto fallback;
472
507
    }
473
508
  }
474
509
 
478
513
    if (ret == ARGP_ERR_UNKNOWN){
479
514
      fprintf(stderr, "Unknown error while parsing arguments\n");
480
515
      exitstatus = EXIT_FAILURE;
481
 
      goto end;
 
516
      goto fallback;
482
517
    }
483
518
  }
484
519
  
510
545
  if(dir == NULL){
511
546
    perror("Could not open plugin dir");
512
547
    exitstatus = EXIT_FAILURE;
513
 
    goto end;
 
548
    goto fallback;
514
549
  }
515
550
  
516
551
  /* Set the FD_CLOEXEC flag on the directory, if possible */
521
556
      if(ret < 0){
522
557
        perror("set_cloexec_flag");
523
558
        exitstatus = EXIT_FAILURE;
524
 
        goto end;
 
559
        goto fallback;
525
560
      }
526
561
    }
527
562
  }
536
571
      if (errno == EBADF){
537
572
        perror("readdir");
538
573
        exitstatus = EXIT_FAILURE;
539
 
        goto end;
 
574
        goto fallback;
540
575
      }
541
576
      break;
542
577
    }
657
692
      }
658
693
    }
659
694
    
660
 
    int pipefd[2]; 
 
695
    int pipefd[2];
661
696
    ret = pipe(pipefd);
662
697
    if (ret == -1){
663
698
      perror("pipe");
664
699
      exitstatus = EXIT_FAILURE;
665
 
      goto end;
 
700
      goto fallback;
666
701
    }
667
702
    ret = set_cloexec_flag(pipefd[0]);
668
703
    if(ret < 0){
669
704
      perror("set_cloexec_flag");
670
705
      exitstatus = EXIT_FAILURE;
671
 
      goto end;
 
706
      goto fallback;
672
707
    }
673
708
    ret = set_cloexec_flag(pipefd[1]);
674
709
    if(ret < 0){
675
710
      perror("set_cloexec_flag");
676
711
      exitstatus = EXIT_FAILURE;
677
 
      goto end;
 
712
      goto fallback;
678
713
    }
679
714
    /* Block SIGCHLD until process is safely in process list */
680
715
    ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
681
716
    if(ret < 0){
682
717
      perror("sigprocmask");
683
718
      exitstatus = EXIT_FAILURE;
684
 
      goto end;
 
719
      goto fallback;
685
720
    }
686
721
    // Starting a new process to be watched
687
722
    pid_t pid = fork();
688
723
    if(pid == -1){
689
724
      perror("fork");
690
725
      exitstatus = EXIT_FAILURE;
691
 
      goto end;
 
726
      goto fallback;
692
727
    }
693
728
    if(pid == 0){
694
729
      /* this is the child process */
738
773
        perror("sigprocmask");
739
774
      }
740
775
      exitstatus = EXIT_FAILURE;
741
 
      goto end;
 
776
      goto fallback;
742
777
    }
743
778
    
744
779
    *new_process = (struct process){ .pid = pid,
752
787
    if(ret < 0){
753
788
      perror("sigprocmask");
754
789
      exitstatus = EXIT_FAILURE;
755
 
      goto end;
 
790
      goto fallback;
756
791
    }
757
792
    
758
793
    FD_SET(new_process->fd, &rfds_all);
763
798
    
764
799
  }
765
800
  
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
 
  }
 
801
  free_plugin_list(plugin_list);
 
802
  plugin_list = NULL;
777
803
  
778
804
  closedir(dir);
779
805
  dir = NULL;
789
815
    if (select_ret == -1){
790
816
      perror("select");
791
817
      exitstatus = EXIT_FAILURE;
792
 
      goto end;
 
818
      goto fallback;
793
819
    }
794
820
    /* OK, now either a process completed, or something can be read
795
821
       from one of them */
821
847
          if(ret < 0){
822
848
            perror("sigprocmask");
823
849
            exitstatus = EXIT_FAILURE;
824
 
            goto end;
 
850
            goto fallback;
825
851
          }
826
852
          /* Delete this process entry from the list */
827
853
          if(process_list == proc){
856
882
          perror("print_out_password");
857
883
          exitstatus = EXIT_FAILURE;
858
884
        }
859
 
        goto end;
 
885
        goto fallback;
860
886
      }
861
887
      /* This process has not completed.  Does it have any output? */
862
888
      if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
870
896
        if (proc->buffer == NULL){
871
897
          perror("malloc");
872
898
          exitstatus = EXIT_FAILURE;
873
 
          goto end;
 
899
          goto fallback;
874
900
        }
875
901
        proc->buffer_size += BUFFER_SIZE;
876
902
      }
891
917
  }
892
918
 
893
919
 
894
 
 end:
 
920
 fallback:
895
921
  
896
922
  if(process_list == NULL or exitstatus != EXIT_SUCCESS){
897
923
    /* Fallback if all plugins failed, none are found or an error occured */
902
928
    if(not bret){
903
929
      perror("print_out_password");
904
930
      exitstatus = EXIT_FAILURE;
905
 
      goto end;
906
931
    }
907
932
  }
908
933
  
909
934
  /* 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
 
      }
 
935
  ret = sigaction(SIGCHLD, &old_sigchld_action, NULL);
 
936
  if(ret == -1){
 
937
    perror("sigaction");
 
938
    exitstatus = EXIT_FAILURE;
 
939
  }
 
940
 
 
941
  if(custom_argv != NULL){
 
942
    for(char **arg = custom_argv; *arg != NULL; arg++){
 
943
      free(*arg);
922
944
    }
923
 
    free(plugin_list->environ);
924
 
    free(plugin_list);
 
945
    free(custom_argv);
925
946
  }
 
947
  free_plugin_list(plugin_list);
926
948
  
927
949
  if(dir != NULL){
928
950
    closedir(dir);