/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: 2008-09-01 16:19:32 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080901161932-ostp7tulh9aijulh
* plugin-runner.c (add_environment): Never insert existing environment
                                     variables.
  (main): Rename "--global-envs" to "--global-env" and "--envs-for" to
          "--env-for".

* plugin-runner.xml (SYNOPSIS): Rename "--global-envs" to
                                "--global-env" and "--envs-for" to
                                "--env-for".
  (OPTIONS): Added "--global-env" and "--env-for".
  (FALLBACK): Add id attribute.
  (EXIT STATUS): Add text.
  (ENVIRONMENT): New section.
  (FILES): Document configuration file.

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