56
56
#include <argp.h>               /* struct argp_option, struct
 
57
57
                                   argp_state, struct argp,
 
58
58
                                   argp_parse(), ARGP_ERR_UNKNOWN,
 
59
 
                                   ARGP_KEY_END, ARGP_KEY_ARG,
 
 
59
                                   ARGP_KEY_END, ARGP_KEY_ARG, error_t */
 
61
60
#include <signal.h>             /* struct sigaction, sigemptyset(),
 
62
61
                                   sigaddset(), sigaction(),
 
63
62
                                   sigprocmask(), SIG_BLOCK, SIGCHLD,
 
 
65
64
#include <errno.h>              /* errno, EBADF */
 
67
66
#define BUFFER_SIZE 256
 
69
 
#define PDIR "/lib/mandos/plugins.d"
 
70
 
#define AFILE "/conf/conf.d/mandos/plugin-runner.conf"
 
 
67
#define ARGFILE "/conf/conf.d/mandos/plugin-runner.conf"
 
72
69
const char *argp_program_version = "plugin-runner 1.0";
 
73
70
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
 
203
200
process *process_list = NULL;
 
205
 
/* Mark processes as completed when they exit, and save their exit
 
 
202
/* Mark a process as completed when it exits, and save its exit
 
207
204
void handle_sigchld(__attribute__((unused)) int sig){
 
209
 
    process *proc = process_list;
 
211
 
    pid_t pid = waitpid(-1, &status, WNOHANG);
 
213
 
      /* Only still running child processes */
 
217
 
      if (errno != ECHILD){
 
220
 
      /* No child processes */
 
224
 
    /* A child exited, find it in process_list */
 
225
 
    while(proc != NULL and proc->pid != pid){
 
229
 
      /* Process not found in process list */
 
232
 
    proc->status = status;
 
233
 
    proc->completed = true;
 
 
205
  process *proc = process_list;
 
 
207
  pid_t pid = wait(&status);
 
 
212
  while(proc != NULL and proc->pid != pid){
 
 
216
    /* Process not found in process list */
 
 
219
  proc->status = status;
 
 
220
  proc->completed = true;
 
237
223
bool print_out_password(const char *buffer, size_t length){
 
 
 
238
char **add_to_argv(char **argv, int *argc, char *arg){
 
 
241
    argv = malloc(sizeof(char*) * 2);
 
 
245
    argv[0] = NULL;     /* Will be set to argv[0] in main before parsing */
 
 
249
  argv = realloc(argv, sizeof(char *)
 
 
250
                  * ((unsigned int) *argc + 1));
 
252
259
static void free_plugin_list(plugin *plugin_list){
 
253
260
  for(plugin *next; plugin_list != NULL; plugin_list = next){
 
254
261
    next = plugin_list->next;
 
 
319
326
    { .name = "plugin-dir", .key = 128,
 
320
327
      .arg = "DIRECTORY",
 
321
328
      .doc = "Specify a different plugin directory", .group = 2 },
 
322
 
    { .name = "config-file", .key = 129,
 
324
 
      .doc = "Specify a different configuration file", .group = 2 },
 
325
 
    { .name = "userid", .key = 130,
 
326
 
      .arg = "ID", .flags = 0,
 
327
 
      .doc = "User ID the plugins will run as", .group = 3 },
 
328
 
    { .name = "groupid", .key = 131,
 
329
 
      .arg = "ID", .flags = 0,
 
330
 
      .doc = "Group ID the plugins will run as", .group = 3 },
 
331
 
    { .name = "debug", .key = 132,
 
332
 
      .doc = "Debug mode", .group = 4 },
 
 
329
    { .name = "userid", .key = 129,
 
 
330
      .arg = "ID", .flags = 0,
 
 
331
      .doc = "User ID the plugins will run as", .group = 2 },
 
 
332
    { .name = "groupid", .key = 130,
 
 
333
      .arg = "ID", .flags = 0,
 
 
334
      .doc = "Group ID the plugins will run as", .group = 2 },
 
 
335
    { .name = "debug", .key = 131,
 
 
336
      .doc = "Debug mode", .group = 3 },
 
 
422
 
      plugindir = strdup(arg);
 
423
 
      if(plugindir == NULL){
 
428
 
      argfile = strdup(arg);
 
 
429
      uid = (uid_t)strtol(arg, NULL, 10);
 
434
 
      uid = (uid_t)strtol(arg, NULL, 10);
 
 
432
      gid = (gid_t)strtol(arg, NULL, 10);
 
437
 
      gid = (gid_t)strtol(arg, NULL, 10);
 
442
437
    case ARGP_KEY_ARG:
 
 
466
 
  if (argfile == NULL){
 
467
 
    conffp = fopen(AFILE, "r");
 
469
 
    conffp = fopen(argfile, "r");
 
 
461
  conffp = fopen(argfile, "r");
 
472
462
  if(conffp != NULL){
 
473
463
    char *org_line = NULL;
 
474
464
    char *p, *arg, *new_arg, *line;
 
 
477
467
    const char whitespace_delims[] = " \r\t\f\v\n";
 
478
468
    const char comment_delim[] = "#";
 
481
 
    custom_argv = malloc(sizeof(char*) * 2);
 
482
 
    if(custom_argv == NULL){
 
484
 
      exitstatus = EXIT_FAILURE;
 
487
 
    custom_argv[0] = argv[0];
 
488
 
    custom_argv[1] = NULL;
 
491
471
      sret = getline(&org_line, &size, conffp);
 
 
502
482
        new_arg = strdup(p);
 
505
 
          exitstatus = EXIT_FAILURE;
 
511
 
        custom_argv = realloc(custom_argv, sizeof(char *)
 
512
 
                              * ((unsigned int) custom_argc + 1));
 
513
 
        if(custom_argv == NULL){
 
515
 
          exitstatus = EXIT_FAILURE;
 
519
 
        custom_argv[custom_argc-1] = new_arg;
 
520
 
        custom_argv[custom_argc] = NULL;        
 
 
483
        custom_argv = add_to_argv(custom_argv, &custom_argc, new_arg);
 
 
484
        if (custom_argv == NULL){
 
 
485
          perror("add_to_argv");
 
 
486
          exitstatus = EXIT_FAILURE;
 
 
534
502
  if(custom_argv != NULL){
 
 
503
    custom_argv[0] = argv[0];
 
535
504
    ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, &plugin_list);
 
536
505
    if (ret == ARGP_ERR_UNKNOWN){
 
537
506
      fprintf(stderr, "Unknown error while parsing arguments\n");
 
 
871
835
          /* Remove the plugin */
 
872
836
          FD_CLR(proc->fd, &rfds_all);
 
873
837
          /* Block signal while modifying process_list */
 
874
 
          ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
 
838
          ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
876
840
            perror("sigprocmask");
 
877
841
            exitstatus = EXIT_FAILURE;
 
 
906
870
        /* This process exited nicely, so print its buffer */
 
908
 
        bool bret = print_out_password(proc->buffer,
 
909
 
                                       proc->buffer_length);
 
 
872
        bool bret = print_out_password(proc->buffer, proc->buffer_length);
 
911
874
          perror("print_out_password");
 
912
875
          exitstatus = EXIT_FAILURE;
 
 
951
914
  if(process_list == NULL or exitstatus != EXIT_SUCCESS){
 
952
 
    /* Fallback if all plugins failed, none are found or an error
 
 
915
    /* Fallback if all plugins failed, none are found or an error occured */
 
955
917
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
 
956
918
    char *passwordbuffer = getpass("Password: ");