/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-01-13 04:35:19 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090113043519-0yr39snphoegq8l1
* plugin-runner.c: Only space changes.
* plugins.d/mandos-client.c: - '' -
* plugins.d/password-prompt.c: - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*
3
3
 * Mandos plugin runner - Run Mandos plugins
4
4
 *
5
 
 * Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
 
5
 * Copyright © 2008,2009 Teddy Hogeborn
 
6
 * Copyright © 2008,2009 Björn Påhlsson
6
7
 * 
7
8
 * This program is free software: you can redistribute it and/or
8
9
 * modify it under the terms of the GNU General Public License as
27
28
#include <stdlib.h>             /* malloc(), exit(), EXIT_FAILURE,
28
29
                                   EXIT_SUCCESS, realloc() */
29
30
#include <stdbool.h>            /* bool, true, false */
30
 
#include <stdio.h>              /* perror, popen(), fileno(),
31
 
                                   fprintf(), stderr, STDOUT_FILENO */
 
31
#include <stdio.h>              /* perror, fileno(), fprintf(),
 
32
                                   stderr, STDOUT_FILENO */
32
33
#include <sys/types.h>          /* DIR, opendir(), stat(), struct
33
34
                                   stat, waitpid(), WIFEXITED(),
34
35
                                   WEXITSTATUS(), wait(), pid_t,
46
47
                                   fcntl(), setuid(), setgid(),
47
48
                                   F_GETFD, F_SETFD, FD_CLOEXEC,
48
49
                                   access(), pipe(), fork(), close()
49
 
                                   dup2, STDOUT_FILENO, _exit(),
 
50
                                   dup2(), STDOUT_FILENO, _exit(),
50
51
                                   execv(), write(), read(),
51
52
                                   close() */
52
53
#include <fcntl.h>              /* fcntl(), F_GETFD, F_SETFD,
69
70
#define PDIR "/lib/mandos/plugins.d"
70
71
#define AFILE "/conf/conf.d/mandos/plugin-runner.conf"
71
72
 
72
 
const char *argp_program_version = "plugin-runner 1.0";
 
73
const char *argp_program_version = "plugin-runner " VERSION;
73
74
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
74
75
 
75
 
struct plugin;
76
 
 
77
76
typedef struct plugin{
78
77
  char *name;                   /* can be NULL or any plugin name */
79
78
  char **argv;
96
95
 
97
96
static plugin *plugin_list = NULL;
98
97
 
99
 
/* Gets a existing plugin based on name,
 
98
/* Gets an existing plugin based on name,
100
99
   or if none is found, creates a new one */
101
100
static plugin *getplugin(char *name){
102
101
  /* Check for exiting plugin with that name */
103
 
  for (plugin *p = plugin_list; p != NULL; p = p->next){
104
 
    if ((p->name == name)
105
 
        or (p->name and name and (strcmp(p->name, name) == 0))){
 
102
  for(plugin *p = plugin_list; p != NULL; p = p->next){
 
103
    if((p->name == name)
 
104
       or (p->name and name and (strcmp(p->name, name) == 0))){
106
105
      return p;
107
106
    }
108
107
  }
109
108
  /* Create a new plugin */
110
109
  plugin *new_plugin = malloc(sizeof(plugin));
111
 
  if (new_plugin == NULL){
 
110
  if(new_plugin == NULL){
112
111
    return NULL;
113
112
  }
114
113
  char *copy_name = NULL;
118
117
      return NULL;
119
118
    }
120
119
  }
121
 
 
 
120
  
122
121
  *new_plugin = (plugin) { .name = copy_name,
123
122
                           .argc = 1,
124
123
                           .disabled = false,
125
124
                           .next = plugin_list };
126
125
  
127
126
  new_plugin->argv = malloc(sizeof(char *) * 2);
128
 
  if (new_plugin->argv == NULL){
 
127
  if(new_plugin->argv == NULL){
129
128
    free(copy_name);
130
129
    free(new_plugin);
131
130
    return NULL;
179
178
}
180
179
 
181
180
/* Add to a plugin's environment */
182
 
static bool add_environment(plugin *p, const char *def){
 
181
static bool add_environment(plugin *p, const char *def, bool replace){
183
182
  if(p == NULL){
184
183
    return false;
185
184
  }
187
186
  size_t namelen = (size_t)(strchrnul(def, '=') - def);
188
187
  /* Search for this environment variable */
189
188
  for(char **e = p->environ; *e != NULL; e++){
190
 
    if(strncmp(*e, def, namelen+1) == 0){
191
 
      /* Refuse to add an existing variable */
 
189
    if(strncmp(*e, def, namelen + 1) == 0){
 
190
      /* It already exists */
 
191
      if(replace){
 
192
        char *new = realloc(*e, strlen(def) + 1);
 
193
        if(new == NULL){
 
194
          return false;
 
195
        }
 
196
        *e = new;
 
197
        strcpy(*e, def);
 
198
      }
192
199
      return true;
193
200
    }
194
201
  }
200
207
 * Descriptor Flags".
201
208
 * *Note File Descriptor Flags:(libc)Descriptor Flags.
202
209
 */
203
 
static int set_cloexec_flag(int fd)
204
 
{
 
210
static int set_cloexec_flag(int fd){
205
211
  int ret = fcntl(fd, F_GETFD, 0);
206
212
  /* If reading the flags failed, return error indication now. */
207
213
  if(ret < 0){
214
220
 
215
221
/* Mark processes as completed when they exit, and save their exit
216
222
   status. */
217
 
void handle_sigchld(__attribute__((unused)) int sig){
 
223
static void handle_sigchld(__attribute__((unused)) int sig){
218
224
  while(true){
219
225
    plugin *proc = plugin_list;
220
226
    int status;
224
230
      break;
225
231
    }
226
232
    if(pid == -1){
227
 
      if (errno != ECHILD){
 
233
      if(errno != ECHILD){
228
234
        perror("waitpid");
229
235
      }
230
236
      /* No child processes */
231
237
      break;
232
238
    }
233
 
 
 
239
    
234
240
    /* A child exited, find it in process_list */
235
241
    while(proc != NULL and proc->pid != pid){
236
242
      proc = proc->next;
245
251
}
246
252
 
247
253
/* Prints out a password to stdout */
248
 
bool print_out_password(const char *buffer, size_t length){
 
254
static bool print_out_password(const char *buffer, size_t length){
249
255
  ssize_t ret;
250
 
  if(length>0 and buffer[length-1] == '\n'){
251
 
    length--;
252
 
  }
253
256
  for(size_t written = 0; written < length; written += (size_t)ret){
254
257
    ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO, buffer + written,
255
258
                                   length - written));
306
309
  struct stat st;
307
310
  fd_set rfds_all;
308
311
  int ret, maxfd = 0;
 
312
  ssize_t sret;
309
313
  uid_t uid = 65534;
310
314
  gid_t gid = 65534;
311
315
  bool debug = false;
336
340
    { .name = "global-options", .key = 'g',
337
341
      .arg = "OPTION[,OPTION[,...]]",
338
342
      .doc = "Options passed to all plugins" },
339
 
    { .name = "global-env", .key = 'e',
 
343
    { .name = "global-env", .key = 'G',
340
344
      .arg = "VAR=value",
341
345
      .doc = "Environment variable passed to all plugins" },
342
346
    { .name = "options-for", .key = 'o',
343
347
      .arg = "PLUGIN:OPTION[,OPTION[,...]]",
344
348
      .doc = "Options passed only to specified plugin" },
345
 
    { .name = "env-for", .key = 'f',
 
349
    { .name = "env-for", .key = 'E',
346
350
      .arg = "PLUGIN:ENV=value",
347
351
      .doc = "Environment variable passed to specified plugin" },
348
352
    { .name = "disable", .key = 'd',
349
353
      .arg = "PLUGIN",
350
354
      .doc = "Disable a specific plugin", .group = 1 },
 
355
    { .name = "enable", .key = 'e',
 
356
      .arg = "PLUGIN",
 
357
      .doc = "Enable a specific plugin", .group = 1 },
351
358
    { .name = "plugin-dir", .key = 128,
352
359
      .arg = "DIRECTORY",
353
360
      .doc = "Specify a different plugin directory", .group = 2 },
365
372
    { .name = NULL }
366
373
  };
367
374
  
368
 
  error_t parse_opt (int key, char *arg, __attribute__((unused))
369
 
                     struct argp_state *state) {
370
 
    /* Get the INPUT argument from `argp_parse', which we know is a
371
 
       pointer to our plugin list pointer. */
372
 
    switch (key) {
 
375
  error_t parse_opt(int key, char *arg, __attribute__((unused))
 
376
                    struct argp_state *state) {
 
377
    switch(key) {
373
378
    case 'g':                   /* --global-options */
374
 
      if (arg != NULL){
 
379
      if(arg != NULL){
375
380
        char *p;
376
381
        while((p = strsep(&arg, ",")) != NULL){
377
382
          if(p[0] == '\0'){
384
389
        }
385
390
      }
386
391
      break;
387
 
    case 'e':                   /* --global-env */
 
392
    case 'G':                   /* --global-env */
388
393
      if(arg == NULL){
389
394
        break;
390
395
      }
391
 
      {
392
 
        char *envdef = strdup(arg);
393
 
        if(envdef == NULL){
394
 
          break;
395
 
        }
396
 
        if(not add_environment(getplugin(NULL), envdef)){
397
 
          perror("add_environment");
398
 
        }
 
396
      if(not add_environment(getplugin(NULL), arg, true)){
 
397
        perror("add_environment");
399
398
      }
400
399
      break;
401
400
    case 'o':                   /* --options-for */
402
 
      if (arg != NULL){
 
401
      if(arg != NULL){
403
402
        char *p_name = strsep(&arg, ":");
404
 
        if(p_name[0] == '\0'){
 
403
        if(p_name[0] == '\0' or arg == NULL){
405
404
          break;
406
405
        }
407
406
        char *opt = strsep(&arg, ":");
408
 
        if(opt[0] == '\0'){
 
407
        if(opt[0] == '\0' or opt == NULL){
409
408
          break;
410
409
        }
411
 
        if(opt != NULL){
412
 
          char *p;
413
 
          while((p = strsep(&opt, ",")) != NULL){
414
 
            if(p[0] == '\0'){
415
 
              continue;
416
 
            }
417
 
            if(not add_argument(getplugin(p_name), p)){
418
 
              perror("add_argument");
419
 
              return ARGP_ERR_UNKNOWN;
420
 
            }
 
410
        char *p;
 
411
        while((p = strsep(&opt, ",")) != NULL){
 
412
          if(p[0] == '\0'){
 
413
            continue;
 
414
          }
 
415
          if(not add_argument(getplugin(p_name), p)){
 
416
            perror("add_argument");
 
417
            return ARGP_ERR_UNKNOWN;
421
418
          }
422
419
        }
423
420
      }
424
421
      break;
425
 
    case 'f':                   /* --env-for */
 
422
    case 'E':                   /* --env-for */
426
423
      if(arg == NULL){
427
424
        break;
428
425
      }
431
428
        if(envdef == NULL){
432
429
          break;
433
430
        }
434
 
        char *p_name = strndup(arg, (size_t) (envdef-arg));
435
 
        if(p_name == NULL){
436
 
          break;
437
 
        }
438
 
        envdef++;
439
 
        if(not add_environment(getplugin(p_name), envdef)){
 
431
        *envdef = '\0';
 
432
        if(not add_environment(getplugin(arg), envdef+1, true)){
440
433
          perror("add_environment");
441
434
        }
442
435
      }
443
436
      break;
444
437
    case 'd':                   /* --disable */
445
 
      if (arg != NULL){
 
438
      if(arg != NULL){
446
439
        plugin *p = getplugin(arg);
447
440
        if(p == NULL){
448
441
          return ARGP_ERR_UNKNOWN;
450
443
        p->disabled = true;
451
444
      }
452
445
      break;
 
446
    case 'e':                   /* --enable */
 
447
      if(arg != NULL){
 
448
        plugin *p = getplugin(arg);
 
449
        if(p == NULL){
 
450
          return ARGP_ERR_UNKNOWN;
 
451
        }
 
452
        p->disabled = false;
 
453
      }
 
454
      break;
453
455
    case 128:                   /* --plugin-dir */
 
456
      free(plugindir);
454
457
      plugindir = strdup(arg);
455
458
      if(plugindir == NULL){
456
459
        perror("strdup");
457
460
      }      
458
461
      break;
459
462
    case 129:                   /* --config-file */
 
463
      /* This is already done by parse_opt_config_file() */
 
464
      break;
 
465
    case 130:                   /* --userid */
 
466
      /* In the GNU C library, uid_t is always unsigned int */
 
467
      ret = sscanf(arg, "%u", &uid);
 
468
      if(ret != 1){
 
469
        fprintf(stderr, "Bad user ID number: \"%s\", using %u\n", arg,
 
470
                uid);
 
471
      }
 
472
      break;
 
473
    case 131:                   /* --groupid */
 
474
      /* In the GNU C library, gid_t is always unsigned int */
 
475
      ret = sscanf(arg, "%u", &gid);
 
476
      if(ret != 1){
 
477
        fprintf(stderr, "Bad group ID number: \"%s\", using %u\n",
 
478
                arg, gid);
 
479
      }
 
480
      break;
 
481
    case 132:                   /* --debug */
 
482
      debug = true;
 
483
      break;
 
484
/*
 
485
 * When adding more options before this line, remember to also add a
 
486
 * "case" to the "parse_opt_config_file" function below.
 
487
 */
 
488
    case ARGP_KEY_ARG:
 
489
      /* Cryptsetup always passes an argument, which is an empty
 
490
         string if "none" was specified in /etc/crypttab.  So if
 
491
         argument was empty, we ignore it silently. */
 
492
      if(arg[0] != '\0'){
 
493
        fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
 
494
      }
 
495
      break;
 
496
    case ARGP_KEY_END:
 
497
      break;
 
498
    default:
 
499
      return ARGP_ERR_UNKNOWN;
 
500
    }
 
501
    return 0;
 
502
  }
 
503
  
 
504
  /* This option parser is the same as parse_opt() above, except it
 
505
     ignores everything but the --config-file option. */
 
506
  error_t parse_opt_config_file(int key, char *arg,
 
507
                                __attribute__((unused))
 
508
                                struct argp_state *state) {
 
509
    switch(key) {
 
510
    case 'g':                   /* --global-options */
 
511
    case 'G':                   /* --global-env */
 
512
    case 'o':                   /* --options-for */
 
513
    case 'E':                   /* --env-for */
 
514
    case 'd':                   /* --disable */
 
515
    case 'e':                   /* --enable */
 
516
    case 128:                   /* --plugin-dir */
 
517
      break;
 
518
    case 129:                   /* --config-file */
 
519
      free(argfile);
460
520
      argfile = strdup(arg);
461
521
      if(argfile == NULL){
462
522
        perror("strdup");
463
523
      }
464
524
      break;      
465
525
    case 130:                   /* --userid */
466
 
      uid = (uid_t)strtol(arg, NULL, 10);
467
 
      break;
468
526
    case 131:                   /* --groupid */
469
 
      gid = (gid_t)strtol(arg, NULL, 10);
470
 
      break;
471
527
    case 132:                   /* --debug */
472
 
      debug = true;
473
 
      break;
474
528
    case ARGP_KEY_ARG:
475
 
      fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
476
 
      break;
477
529
    case ARGP_KEY_END:
478
530
      break;
479
531
    default:
482
534
    return 0;
483
535
  }
484
536
  
485
 
  struct argp argp = { .options = options, .parser = parse_opt,
486
 
                       .args_doc = "[+PLUS_SEPARATED_OPTIONS]",
 
537
  struct argp argp = { .options = options,
 
538
                       .parser = parse_opt_config_file,
 
539
                       .args_doc = "",
487
540
                       .doc = "Mandos plugin runner -- Run plugins" };
488
541
  
489
 
  ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
490
 
  if (ret == ARGP_ERR_UNKNOWN){
 
542
  /* Parse using parse_opt_config_file() in order to get the custom
 
543
     config file location, if any. */
 
544
  ret = argp_parse(&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
 
545
  if(ret == ARGP_ERR_UNKNOWN){
491
546
    fprintf(stderr, "Unknown error while parsing arguments\n");
492
547
    exitstatus = EXIT_FAILURE;
493
548
    goto fallback;
494
549
  }
495
 
 
496
 
  /* Opens the configfile if aviable */
497
 
  if (argfile == NULL){
 
550
  
 
551
  /* Reset to the normal argument parser */
 
552
  argp.parser = parse_opt;
 
553
  
 
554
  /* Open the configfile if available */
 
555
  if(argfile == NULL){
498
556
    conffp = fopen(AFILE, "r");
499
557
  } else {
500
558
    conffp = fopen(argfile, "r");
503
561
    char *org_line = NULL;
504
562
    char *p, *arg, *new_arg, *line;
505
563
    size_t size = 0;
506
 
    ssize_t sret;
507
564
    const char whitespace_delims[] = " \r\t\f\v\n";
508
565
    const char comment_delim[] = "#";
509
566
 
553
610
      }
554
611
    }
555
612
    free(org_line);
556
 
  } else{
 
613
  } else {
557
614
    /* Check for harmful errors and go to fallback. Other errors might
558
615
       not affect opening plugins */
559
 
    if (errno == EMFILE or errno == ENFILE or errno == ENOMEM){
 
616
    if(errno == EMFILE or errno == ENFILE or errno == ENOMEM){
560
617
      perror("fopen");
561
618
      exitstatus = EXIT_FAILURE;
562
619
      goto fallback;
565
622
  /* If there was any arguments from configuration file,
566
623
     pass them to parser as command arguments */
567
624
  if(custom_argv != NULL){
568
 
    ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, NULL);
569
 
    if (ret == ARGP_ERR_UNKNOWN){
 
625
    ret = argp_parse(&argp, custom_argc, custom_argv, ARGP_IN_ORDER,
 
626
                     0, NULL);
 
627
    if(ret == ARGP_ERR_UNKNOWN){
570
628
      fprintf(stderr, "Unknown error while parsing arguments\n");
571
629
      exitstatus = EXIT_FAILURE;
572
630
      goto fallback;
573
631
    }
574
632
  }
575
633
  
 
634
  /* Parse actual command line arguments, to let them override the
 
635
     config file */
 
636
  ret = argp_parse(&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
 
637
  if(ret == ARGP_ERR_UNKNOWN){
 
638
    fprintf(stderr, "Unknown error while parsing arguments\n");
 
639
    exitstatus = EXIT_FAILURE;
 
640
    goto fallback;
 
641
  }
 
642
  
576
643
  if(debug){
577
644
    for(plugin *p = plugin_list; p != NULL; p=p->next){
578
645
      fprintf(stderr, "Plugin: %s has %d arguments\n",
586
653
      }
587
654
    }
588
655
  }
589
 
 
 
656
  
590
657
  /* Strip permissions down to nobody */
591
658
  ret = setuid(uid);
592
 
  if (ret == -1){
 
659
  if(ret == -1){
593
660
    perror("setuid");
594
661
  }  
595
662
  setgid(gid);
596
 
  if (ret == -1){
 
663
  if(ret == -1){
597
664
    perror("setgid");
598
665
  }
599
 
 
600
 
  if (plugindir == NULL){
 
666
  
 
667
  if(plugindir == NULL){
601
668
    dir = opendir(PDIR);
602
669
  } else {
603
670
    dir = opendir(plugindir);
623
690
  }
624
691
  
625
692
  FD_ZERO(&rfds_all);
626
 
 
 
693
  
627
694
  /* Read and execute any executable in the plugin directory*/
628
695
  while(true){
629
696
    dirst = readdir(dir);
630
697
    
631
 
    // All directory entries have been processed
 
698
    /* All directory entries have been processed */
632
699
    if(dirst == NULL){
633
 
      if (errno == EBADF){
 
700
      if(errno == EBADF){
634
701
        perror("readdir");
635
702
        exitstatus = EXIT_FAILURE;
636
703
        goto fallback;
640
707
    
641
708
    d_name_len = strlen(dirst->d_name);
642
709
    
643
 
    // Ignore dotfiles, backup files and other junk
 
710
    /* Ignore dotfiles, backup files and other junk */
644
711
    {
645
712
      bool bad_name = false;
646
713
      
648
715
      
649
716
      const char const *bad_suffixes[] = { "~", "#", ".dpkg-new",
650
717
                                           ".dpkg-old",
 
718
                                           ".dpkg-bak",
651
719
                                           ".dpkg-divert", NULL };
652
720
      for(const char **pre = bad_prefixes; *pre != NULL; pre++){
653
721
        size_t pre_len = strlen(*pre);
684
752
    }
685
753
 
686
754
    char *filename;
687
 
    ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
755
    if(plugindir == NULL){
 
756
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
 
757
    } else {
 
758
      ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
759
    }
688
760
    if(ret < 0){
689
761
      perror("asprintf");
690
762
      continue;
691
763
    }
692
764
    
693
765
    ret = stat(filename, &st);
694
 
    if (ret == -1){
 
766
    if(ret == -1){
695
767
      perror("stat");
696
768
      free(filename);
697
769
      continue;
698
770
    }
699
771
 
700
772
    /* Ignore non-executable files */
701
 
    if (not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
 
773
    if(not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
702
774
      if(debug){
703
775
        fprintf(stderr, "Ignoring plugin dir entry \"%s\""
704
776
                " with bad type or mode\n", filename);
732
804
        }
733
805
        /* Add global environment variables */
734
806
        for(char **e = g->environ; *e != NULL; e++){
735
 
          if(not add_environment(p, *e)){
 
807
          if(not add_environment(p, *e, false)){
736
808
            perror("add_environment");
737
809
          }
738
810
        }
743
815
       process, too. */
744
816
    if(p->environ[0] != NULL){
745
817
      for(char **e = environ; *e != NULL; e++){
746
 
        char *copy = strdup(*e);
747
 
        if(copy == NULL){
748
 
          perror("strdup");
749
 
          continue;
750
 
        }
751
 
        if(not add_environment(p, copy)){
 
818
        if(not add_environment(p, *e, false)){
752
819
          perror("add_environment");
753
820
        }
754
821
      }
756
823
    
757
824
    int pipefd[2];
758
825
    ret = pipe(pipefd);
759
 
    if (ret == -1){
 
826
    if(ret == -1){
760
827
      perror("pipe");
761
828
      exitstatus = EXIT_FAILURE;
762
829
      goto fallback;
775
842
      goto fallback;
776
843
    }
777
844
    /* Block SIGCHLD until process is safely in process list */
778
 
    ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
845
    ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
779
846
    if(ret < 0){
780
847
      perror("sigprocmask");
781
848
      exitstatus = EXIT_FAILURE;
782
849
      goto fallback;
783
850
    }
784
 
    // Starting a new process to be watched
 
851
    /* Starting a new process to be watched */
785
852
    pid_t pid = fork();
786
853
    if(pid == -1){
787
854
      perror("fork");
795
862
        perror("sigaction");
796
863
        _exit(EXIT_FAILURE);
797
864
      }
798
 
      ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
865
      ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
799
866
      if(ret < 0){
800
867
        perror("sigprocmask");
801
868
        _exit(EXIT_FAILURE);
802
869
      }
803
 
 
 
870
      
804
871
      ret = dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
805
872
      if(ret == -1){
806
873
        perror("dup2");
829
896
    close(pipefd[1]);           /* Close unused write end of pipe */
830
897
    free(filename);
831
898
    plugin *new_plugin = getplugin(dirst->d_name);
832
 
    if (new_plugin == NULL){
 
899
    if(new_plugin == NULL){
833
900
      perror("getplugin");
834
 
      ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
901
      ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
835
902
      if(ret < 0){
836
903
        perror("sigprocmask");
837
904
      }
844
911
    
845
912
    /* Unblock SIGCHLD so signal handler can be run if this process
846
913
       has already completed */
847
 
    ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
914
    ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
848
915
    if(ret < 0){
849
916
      perror("sigprocmask");
850
917
      exitstatus = EXIT_FAILURE;
853
920
    
854
921
    FD_SET(new_plugin->fd, &rfds_all);
855
922
    
856
 
    if (maxfd < new_plugin->fd){
 
923
    if(maxfd < new_plugin->fd){
857
924
      maxfd = new_plugin->fd;
858
925
    }
859
 
    
860
926
  }
861
927
  
862
928
  closedir(dir);
863
929
  dir = NULL;
864
 
 
 
930
  
865
931
  for(plugin *p = plugin_list; p != NULL; p = p->next){
866
932
    if(p->pid != 0){
867
933
      break;
872
938
      free_plugin_list();
873
939
    }
874
940
  }
875
 
 
 
941
  
876
942
  /* Main loop while running plugins exist */
877
943
  while(plugin_list){
878
944
    fd_set rfds = rfds_all;
879
945
    int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
880
 
    if (select_ret == -1){
 
946
    if(select_ret == -1){
881
947
      perror("select");
882
948
      exitstatus = EXIT_FAILURE;
883
949
      goto fallback;
884
950
    }
885
951
    /* OK, now either a process completed, or something can be read
886
952
       from one of them */
887
 
    for(plugin *proc = plugin_list; proc != NULL; proc = proc->next){
 
953
    for(plugin *proc = plugin_list; proc != NULL;){
888
954
      /* Is this process completely done? */
889
955
      if(proc->eof and proc->completed){
890
956
        /* Only accept the plugin output if it exited cleanly */
902
968
                      (unsigned int) (proc->pid),
903
969
                      WTERMSIG(proc->status));
904
970
            } else if(WCOREDUMP(proc->status)){
905
 
              fprintf(stderr, "Plugin %d dumped core\n",
 
971
              fprintf(stderr, "Plugin %u dumped core\n",
906
972
                      (unsigned int) (proc->pid));
907
973
            }
908
974
          }
917
983
            exitstatus = EXIT_FAILURE;
918
984
            goto fallback;
919
985
          }
 
986
          
 
987
          plugin *next_plugin = proc->next;
920
988
          free_plugin(proc);
 
989
          proc = next_plugin;
 
990
          
921
991
          /* We are done modifying process list, so unblock signal */
922
 
          ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
923
 
                             NULL);
 
992
          ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask,
 
993
                            NULL);
924
994
          if(ret < 0){
925
995
            perror("sigprocmask");
926
996
            exitstatus = EXIT_FAILURE;
930
1000
          if(plugin_list == NULL){
931
1001
            break;
932
1002
          }
 
1003
          
933
1004
          continue;
934
1005
        }
935
1006
        
936
1007
        /* This process exited nicely, so print its buffer */
937
 
 
 
1008
        
938
1009
        bool bret = print_out_password(proc->buffer,
939
1010
                                       proc->buffer_length);
940
1011
        if(not bret){
947
1018
      /* This process has not completed.  Does it have any output? */
948
1019
      if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
949
1020
        /* This process had nothing to say at this time */
 
1021
        proc = proc->next;
950
1022
        continue;
951
1023
      }
952
1024
      /* Before reading, make the process' data buffer large enough */
953
1025
      if(proc->buffer_length + BUFFER_SIZE > proc->buffer_size){
954
1026
        proc->buffer = realloc(proc->buffer, proc->buffer_size
955
1027
                               + (size_t) BUFFER_SIZE);
956
 
        if (proc->buffer == NULL){
 
1028
        if(proc->buffer == NULL){
957
1029
          perror("malloc");
958
1030
          exitstatus = EXIT_FAILURE;
959
1031
          goto fallback;
961
1033
        proc->buffer_size += BUFFER_SIZE;
962
1034
      }
963
1035
      /* Read from the process */
964
 
      ret = read(proc->fd, proc->buffer + proc->buffer_length,
965
 
                 BUFFER_SIZE);
966
 
      if(ret < 0){
 
1036
      sret = read(proc->fd, proc->buffer + proc->buffer_length,
 
1037
                  BUFFER_SIZE);
 
1038
      if(sret < 0){
967
1039
        /* Read error from this process; ignore the error */
 
1040
        proc = proc->next;
968
1041
        continue;
969
1042
      }
970
 
      if(ret == 0){
 
1043
      if(sret == 0){
971
1044
        /* got EOF */
972
1045
        proc->eof = true;
973
1046
      } else {
974
 
        proc->buffer_length += (size_t) ret;
 
1047
        proc->buffer_length += (size_t) sret;
975
1048
      }
976
1049
    }
977
1050
  }
985
1058
    bool bret;
986
1059
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
987
1060
    char *passwordbuffer = getpass("Password: ");
988
 
    bret = print_out_password(passwordbuffer, strlen(passwordbuffer));
 
1061
    size_t len = strlen(passwordbuffer);
 
1062
    /* Strip trailing newline */
 
1063
    if(len > 0 and passwordbuffer[len-1] == '\n'){
 
1064
      passwordbuffer[len-1] = '\0'; /* not strictly necessary */
 
1065
      len--;
 
1066
    }
 
1067
    bret = print_out_password(passwordbuffer, len);
989
1068
    if(not bret){
990
1069
      perror("print_out_password");
991
1070
      exitstatus = EXIT_FAILURE;
998
1077
    perror("sigaction");
999
1078
    exitstatus = EXIT_FAILURE;
1000
1079
  }
1001
 
 
 
1080
  
1002
1081
  if(custom_argv != NULL){
1003
1082
    for(char **arg = custom_argv+1; *arg != NULL; arg++){
1004
1083
      free(*arg);
1010
1089
    closedir(dir);
1011
1090
  }
1012
1091
  
1013
 
  /* Free the process list and kill the processes */
 
1092
  /* Kill the processes */
1014
1093
  for(plugin *p = plugin_list; p != NULL; p = p->next){
1015
1094
    if(p->pid != 0){
1016
1095
      close(p->fd);
1029
1108
  if(errno != ECHILD){
1030
1109
    perror("wait");
1031
1110
  }
1032
 
 
 
1111
  
1033
1112
  free_plugin_list();
1034
1113
  
1035
1114
  free(plugindir);