/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

Rearranged so plugins and processes is the same thing

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,
64
63
                                   sigprocmask(), SIG_BLOCK, SIGCHLD,
65
64
                                   SIG_UNBLOCK, kill() */
66
65
#include <errno.h>              /* errno, EBADF */
67
 
#include <inttypes.h>           /* intmax_t, SCNdMAX, PRIdMAX,  */
68
66
 
69
67
#define BUFFER_SIZE 256
70
68
 
71
69
#define PDIR "/lib/mandos/plugins.d"
72
70
#define AFILE "/conf/conf.d/mandos/plugin-runner.conf"
73
71
 
74
 
const char *argp_program_version = "plugin-runner " VERSION;
 
72
const char *argp_program_version = "plugin-runner 1.0";
75
73
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
76
74
 
 
75
struct plugin;
 
76
 
77
77
typedef struct plugin{
78
78
  char *name;                   /* can be NULL or any plugin name */
79
79
  char **argv;
96
96
 
97
97
static plugin *plugin_list = NULL;
98
98
 
99
 
/* Gets an existing plugin based on name,
 
99
/* Gets a existing plugin based on name,
100
100
   or if none is found, creates a new one */
101
101
static plugin *getplugin(char *name){
102
102
  /* 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))){
 
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))){
106
106
      return p;
107
107
    }
108
108
  }
109
109
  /* Create a new plugin */
110
110
  plugin *new_plugin = malloc(sizeof(plugin));
111
 
  if(new_plugin == NULL){
 
111
  if (new_plugin == NULL){
112
112
    return NULL;
113
113
  }
114
114
  char *copy_name = NULL;
118
118
      return NULL;
119
119
    }
120
120
  }
121
 
  
 
121
 
122
122
  *new_plugin = (plugin) { .name = copy_name,
123
123
                           .argc = 1,
124
124
                           .disabled = false,
125
125
                           .next = plugin_list };
126
126
  
127
127
  new_plugin->argv = malloc(sizeof(char *) * 2);
128
 
  if(new_plugin->argv == NULL){
 
128
  if (new_plugin->argv == NULL){
129
129
    free(copy_name);
130
130
    free(new_plugin);
131
131
    return NULL;
132
132
  }
133
133
  new_plugin->argv[0] = copy_name;
134
134
  new_plugin->argv[1] = NULL;
135
 
  
 
135
 
136
136
  new_plugin->environ = malloc(sizeof(char *));
137
137
  if(new_plugin->environ == NULL){
138
138
    free(copy_name);
141
141
    return NULL;
142
142
  }
143
143
  new_plugin->environ[0] = NULL;
144
 
  
 
144
 
145
145
  /* Append the new plugin to the list */
146
146
  plugin_list = new_plugin;
147
147
  return new_plugin;
179
179
}
180
180
 
181
181
/* Add to a plugin's environment */
182
 
static bool add_environment(plugin *p, const char *def, bool replace){
 
182
static bool add_environment(plugin *p, const char *def){
183
183
  if(p == NULL){
184
184
    return false;
185
185
  }
186
 
  /* namelen = length of name of environment variable */
187
 
  size_t namelen = (size_t)(strchrnul(def, '=') - def);
188
 
  /* Search for this environment variable */
189
 
  for(char **e = p->environ; *e != NULL; e++){
190
 
    if(strncmp(*e, def, namelen + 1) == 0){
191
 
      /* It already exists */
192
 
      if(replace){
193
 
        char *new = realloc(*e, strlen(def) + 1);
194
 
        if(new == NULL){
195
 
          return false;
196
 
        }
197
 
        *e = new;
198
 
        strcpy(*e, def);
199
 
      }
200
 
      return true;
201
 
    }
202
 
  }
203
186
  return add_to_char_array(def, &(p->environ), &(p->envc));
204
187
}
205
188
 
208
191
 * Descriptor Flags".
209
192
 * *Note File Descriptor Flags:(libc)Descriptor Flags.
210
193
 */
211
 
static int set_cloexec_flag(int fd){
 
194
static int set_cloexec_flag(int fd)
 
195
{
212
196
  int ret = fcntl(fd, F_GETFD, 0);
213
197
  /* If reading the flags failed, return error indication now. */
214
198
  if(ret < 0){
221
205
 
222
206
/* Mark processes as completed when they exit, and save their exit
223
207
   status. */
224
 
static void handle_sigchld(__attribute__((unused)) int sig){
 
208
void handle_sigchld(__attribute__((unused)) int sig){
225
209
  while(true){
226
210
    plugin *proc = plugin_list;
227
211
    int status;
231
215
      break;
232
216
    }
233
217
    if(pid == -1){
234
 
      if(errno != ECHILD){
 
218
      if (errno != ECHILD){
235
219
        perror("waitpid");
236
220
      }
237
221
      /* No child processes */
238
222
      break;
239
223
    }
240
 
    
 
224
 
241
225
    /* A child exited, find it in process_list */
242
226
    while(proc != NULL and proc->pid != pid){
243
227
      proc = proc->next;
252
236
}
253
237
 
254
238
/* Prints out a password to stdout */
255
 
static bool print_out_password(const char *buffer, size_t length){
 
239
bool print_out_password(const char *buffer, size_t length){
256
240
  ssize_t ret;
 
241
  if(length>0 and buffer[length-1] == '\n'){
 
242
    length--;
 
243
  }
257
244
  for(size_t written = 0; written < length; written += (size_t)ret){
258
245
    ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO, buffer + written,
259
246
                                   length - written));
309
296
  struct dirent *dirst;
310
297
  struct stat st;
311
298
  fd_set rfds_all;
312
 
  int ret, numchars, maxfd = 0;
313
 
  ssize_t sret;
314
 
  intmax_t tmpmax;
 
299
  int ret, maxfd = 0;
315
300
  uid_t uid = 65534;
316
301
  gid_t gid = 65534;
317
302
  bool debug = false;
342
327
    { .name = "global-options", .key = 'g',
343
328
      .arg = "OPTION[,OPTION[,...]]",
344
329
      .doc = "Options passed to all plugins" },
345
 
    { .name = "global-env", .key = 'G',
 
330
    { .name = "global-envs", .key = 'e',
346
331
      .arg = "VAR=value",
347
332
      .doc = "Environment variable passed to all plugins" },
348
333
    { .name = "options-for", .key = 'o',
349
334
      .arg = "PLUGIN:OPTION[,OPTION[,...]]",
350
335
      .doc = "Options passed only to specified plugin" },
351
 
    { .name = "env-for", .key = 'E',
 
336
    { .name = "envs-for", .key = 'f',
352
337
      .arg = "PLUGIN:ENV=value",
353
338
      .doc = "Environment variable passed to specified plugin" },
354
339
    { .name = "disable", .key = 'd',
355
340
      .arg = "PLUGIN",
356
341
      .doc = "Disable a specific plugin", .group = 1 },
357
 
    { .name = "enable", .key = 'e',
358
 
      .arg = "PLUGIN",
359
 
      .doc = "Enable a specific plugin", .group = 1 },
360
342
    { .name = "plugin-dir", .key = 128,
361
343
      .arg = "DIRECTORY",
362
344
      .doc = "Specify a different plugin directory", .group = 2 },
374
356
    { .name = NULL }
375
357
  };
376
358
  
377
 
  error_t parse_opt(int key, char *arg, __attribute__((unused))
378
 
                    struct argp_state *state) {
379
 
    switch(key) {
 
359
  error_t parse_opt (int key, char *arg, __attribute__((unused)) struct argp_state *state) {
 
360
    /* Get the INPUT argument from `argp_parse', which we know is a
 
361
       pointer to our plugin list pointer. */
 
362
    switch (key) {
380
363
    case 'g':                   /* --global-options */
381
 
      if(arg != NULL){
 
364
      if (arg != NULL){
382
365
        char *p;
383
366
        while((p = strsep(&arg, ",")) != NULL){
384
367
          if(p[0] == '\0'){
391
374
        }
392
375
      }
393
376
      break;
394
 
    case 'G':                   /* --global-env */
 
377
    case 'e':                   /* --global-envs */
395
378
      if(arg == NULL){
396
379
        break;
397
380
      }
398
 
      if(not add_environment(getplugin(NULL), arg, true)){
399
 
        perror("add_environment");
 
381
      {
 
382
        char *envdef = strdup(arg);
 
383
        if(envdef == NULL){
 
384
          break;
 
385
        }
 
386
        if(not add_environment(getplugin(NULL), envdef)){
 
387
          perror("add_environment");
 
388
        }
400
389
      }
401
390
      break;
402
391
    case 'o':                   /* --options-for */
403
 
      if(arg != NULL){
 
392
      if (arg != NULL){
404
393
        char *p_name = strsep(&arg, ":");
405
 
        if(p_name[0] == '\0' or arg == NULL){
 
394
        if(p_name[0] == '\0'){
406
395
          break;
407
396
        }
408
397
        char *opt = strsep(&arg, ":");
409
 
        if(opt[0] == '\0' or opt == NULL){
 
398
        if(opt[0] == '\0'){
410
399
          break;
411
400
        }
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;
 
401
        if(opt != NULL){
 
402
          char *p;
 
403
          while((p = strsep(&opt, ",")) != NULL){
 
404
            if(p[0] == '\0'){
 
405
              continue;
 
406
            }
 
407
            if(not add_argument(getplugin(p_name), p)){
 
408
              perror("add_argument");
 
409
              return ARGP_ERR_UNKNOWN;
 
410
            }
420
411
          }
421
412
        }
422
413
      }
423
414
      break;
424
 
    case 'E':                   /* --env-for */
 
415
    case 'f':                   /* --envs-for */
425
416
      if(arg == NULL){
426
417
        break;
427
418
      }
430
421
        if(envdef == NULL){
431
422
          break;
432
423
        }
433
 
        *envdef = '\0';
434
 
        if(not add_environment(getplugin(arg), envdef+1, true)){
 
424
        char *p_name = strndup(arg, (size_t) (envdef-arg));
 
425
        if(p_name == NULL){
 
426
          break;
 
427
        }
 
428
        envdef++;
 
429
        if(not add_environment(getplugin(p_name), envdef)){
435
430
          perror("add_environment");
436
431
        }
437
432
      }
438
433
      break;
439
434
    case 'd':                   /* --disable */
440
 
      if(arg != NULL){
 
435
      if (arg != NULL){
441
436
        plugin *p = getplugin(arg);
442
437
        if(p == NULL){
443
438
          return ARGP_ERR_UNKNOWN;
445
440
        p->disabled = true;
446
441
      }
447
442
      break;
448
 
    case 'e':                   /* --enable */
449
 
      if(arg != NULL){
450
 
        plugin *p = getplugin(arg);
451
 
        if(p == NULL){
452
 
          return ARGP_ERR_UNKNOWN;
453
 
        }
454
 
        p->disabled = false;
455
 
      }
456
 
      break;
457
443
    case 128:                   /* --plugin-dir */
458
 
      free(plugindir);
459
444
      plugindir = strdup(arg);
460
445
      if(plugindir == NULL){
461
446
        perror("strdup");
462
447
      }      
463
448
      break;
464
449
    case 129:                   /* --config-file */
465
 
      /* This is already done by parse_opt_config_file() */
466
 
      break;
467
 
    case 130:                   /* --userid */
468
 
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
469
 
      if(ret < 1 or tmpmax != (uid_t)tmpmax
470
 
         or arg[numchars] != '\0'){
471
 
        fprintf(stderr, "Bad user ID number: \"%s\", using %"
472
 
                PRIdMAX "\n", arg, (intmax_t)uid);
473
 
      } else {
474
 
        uid = (uid_t)tmpmax;
475
 
      }
476
 
      break;
477
 
    case 131:                   /* --groupid */
478
 
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
479
 
      if(ret < 1 or tmpmax != (gid_t)tmpmax
480
 
         or arg[numchars] != '\0'){
481
 
        fprintf(stderr, "Bad group ID number: \"%s\", using %"
482
 
                PRIdMAX "\n", arg, (intmax_t)gid);
483
 
      } else {
484
 
        gid = (gid_t)tmpmax;
485
 
      }
486
 
      break;
487
 
    case 132:                   /* --debug */
488
 
      debug = true;
489
 
      break;
490
 
/*
491
 
 * When adding more options before this line, remember to also add a
492
 
 * "case" to the "parse_opt_config_file" function below.
493
 
 */
494
 
    case ARGP_KEY_ARG:
495
 
      /* Cryptsetup always passes an argument, which is an empty
496
 
         string if "none" was specified in /etc/crypttab.  So if
497
 
         argument was empty, we ignore it silently. */
498
 
      if(arg[0] != '\0'){
499
 
        fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
500
 
      }
501
 
      break;
502
 
    case ARGP_KEY_END:
503
 
      break;
504
 
    default:
505
 
      return ARGP_ERR_UNKNOWN;
506
 
    }
507
 
    return 0;
508
 
  }
509
 
  
510
 
  /* This option parser is the same as parse_opt() above, except it
511
 
     ignores everything but the --config-file option. */
512
 
  error_t parse_opt_config_file(int key, char *arg,
513
 
                                __attribute__((unused))
514
 
                                struct argp_state *state) {
515
 
    switch(key) {
516
 
    case 'g':                   /* --global-options */
517
 
    case 'G':                   /* --global-env */
518
 
    case 'o':                   /* --options-for */
519
 
    case 'E':                   /* --env-for */
520
 
    case 'd':                   /* --disable */
521
 
    case 'e':                   /* --enable */
522
 
    case 128:                   /* --plugin-dir */
523
 
      break;
524
 
    case 129:                   /* --config-file */
525
 
      free(argfile);
526
450
      argfile = strdup(arg);
527
451
      if(argfile == NULL){
528
452
        perror("strdup");
529
453
      }
530
454
      break;      
531
455
    case 130:                   /* --userid */
 
456
      uid = (uid_t)strtol(arg, NULL, 10);
 
457
      break;
532
458
    case 131:                   /* --groupid */
 
459
      gid = (gid_t)strtol(arg, NULL, 10);
 
460
      break;
533
461
    case 132:                   /* --debug */
 
462
      debug = true;
 
463
      break;
534
464
    case ARGP_KEY_ARG:
 
465
      fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
 
466
      break;
535
467
    case ARGP_KEY_END:
536
468
      break;
537
469
    default:
540
472
    return 0;
541
473
  }
542
474
  
543
 
  struct argp argp = { .options = options,
544
 
                       .parser = parse_opt_config_file,
545
 
                       .args_doc = "",
 
475
  struct argp argp = { .options = options, .parser = parse_opt,
 
476
                       .args_doc = "[+PLUS_SEPARATED_OPTIONS]",
546
477
                       .doc = "Mandos plugin runner -- Run plugins" };
547
478
  
548
 
  /* Parse using parse_opt_config_file() in order to get the custom
549
 
     config file location, if any. */
550
 
  ret = argp_parse(&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
551
 
  if(ret == ARGP_ERR_UNKNOWN){
 
479
  ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
 
480
  if (ret == ARGP_ERR_UNKNOWN){
552
481
    fprintf(stderr, "Unknown error while parsing arguments\n");
553
482
    exitstatus = EXIT_FAILURE;
554
483
    goto fallback;
555
484
  }
556
 
  
557
 
  /* Reset to the normal argument parser */
558
 
  argp.parser = parse_opt;
559
 
  
560
 
  /* Open the configfile if available */
561
 
  if(argfile == NULL){
 
485
 
 
486
  /* Opens the configfile if aviable */
 
487
  if (argfile == NULL){
562
488
    conffp = fopen(AFILE, "r");
563
489
  } else {
564
490
    conffp = fopen(argfile, "r");
567
493
    char *org_line = NULL;
568
494
    char *p, *arg, *new_arg, *line;
569
495
    size_t size = 0;
 
496
    ssize_t sret;
570
497
    const char whitespace_delims[] = " \r\t\f\v\n";
571
498
    const char comment_delim[] = "#";
572
499
 
580
507
    custom_argv[0] = argv[0];
581
508
    custom_argv[1] = NULL;
582
509
 
583
 
    /* for each line in the config file, strip whitespace and ignore
584
 
       commented text */
 
510
    /* for each line in the config file, strip whitespace and ignore commented text */
585
511
    while(true){
586
512
      sret = getline(&org_line, &size, conffp);
587
513
      if(sret == -1){
616
542
      }
617
543
    }
618
544
    free(org_line);
619
 
  } else {
 
545
  } else{
620
546
    /* Check for harmful errors and go to fallback. Other errors might
621
547
       not affect opening plugins */
622
 
    if(errno == EMFILE or errno == ENFILE or errno == ENOMEM){
 
548
    if (errno == EMFILE or errno == ENFILE or errno == ENOMEM){
623
549
      perror("fopen");
624
550
      exitstatus = EXIT_FAILURE;
625
551
      goto fallback;
628
554
  /* If there was any arguments from configuration file,
629
555
     pass them to parser as command arguments */
630
556
  if(custom_argv != NULL){
631
 
    ret = argp_parse(&argp, custom_argc, custom_argv, ARGP_IN_ORDER,
632
 
                     0, NULL);
633
 
    if(ret == ARGP_ERR_UNKNOWN){
 
557
    ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, NULL);
 
558
    if (ret == ARGP_ERR_UNKNOWN){
634
559
      fprintf(stderr, "Unknown error while parsing arguments\n");
635
560
      exitstatus = EXIT_FAILURE;
636
561
      goto fallback;
637
562
    }
638
563
  }
639
564
  
640
 
  /* Parse actual command line arguments, to let them override the
641
 
     config file */
642
 
  ret = argp_parse(&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
643
 
  if(ret == ARGP_ERR_UNKNOWN){
644
 
    fprintf(stderr, "Unknown error while parsing arguments\n");
645
 
    exitstatus = EXIT_FAILURE;
646
 
    goto fallback;
647
 
  }
648
 
  
649
565
  if(debug){
650
566
    for(plugin *p = plugin_list; p != NULL; p=p->next){
651
567
      fprintf(stderr, "Plugin: %s has %d arguments\n",
653
569
      for(char **a = p->argv; *a != NULL; a++){
654
570
        fprintf(stderr, "\tArg: %s\n", *a);
655
571
      }
656
 
      fprintf(stderr, "...and %d environment variables\n", p->envc);
 
572
      fprintf(stderr, "...and %u environment variables\n", p->envc);
657
573
      for(char **a = p->environ; *a != NULL; a++){
658
574
        fprintf(stderr, "\t%s\n", *a);
659
575
      }
660
576
    }
661
577
  }
662
 
  
 
578
 
663
579
  /* Strip permissions down to nobody */
664
580
  ret = setuid(uid);
665
 
  if(ret == -1){
 
581
  if (ret == -1){
666
582
    perror("setuid");
667
583
  }  
668
584
  setgid(gid);
669
 
  if(ret == -1){
 
585
  if (ret == -1){
670
586
    perror("setgid");
671
587
  }
672
 
  
673
 
  if(plugindir == NULL){
 
588
 
 
589
  if (plugindir == NULL){
674
590
    dir = opendir(PDIR);
675
591
  } else {
676
592
    dir = opendir(plugindir);
696
612
  }
697
613
  
698
614
  FD_ZERO(&rfds_all);
699
 
  
 
615
 
700
616
  /* Read and execute any executable in the plugin directory*/
701
617
  while(true){
702
618
    dirst = readdir(dir);
703
619
    
704
 
    /* All directory entries have been processed */
 
620
    // All directory entries have been processed
705
621
    if(dirst == NULL){
706
 
      if(errno == EBADF){
 
622
      if (errno == EBADF){
707
623
        perror("readdir");
708
624
        exitstatus = EXIT_FAILURE;
709
625
        goto fallback;
713
629
    
714
630
    d_name_len = strlen(dirst->d_name);
715
631
    
716
 
    /* Ignore dotfiles, backup files and other junk */
 
632
    // Ignore dotfiles, backup files and other junk
717
633
    {
718
634
      bool bad_name = false;
719
635
      
721
637
      
722
638
      const char const *bad_suffixes[] = { "~", "#", ".dpkg-new",
723
639
                                           ".dpkg-old",
724
 
                                           ".dpkg-bak",
725
640
                                           ".dpkg-divert", NULL };
726
641
      for(const char **pre = bad_prefixes; *pre != NULL; pre++){
727
642
        size_t pre_len = strlen(*pre);
758
673
    }
759
674
 
760
675
    char *filename;
761
 
    if(plugindir == NULL){
762
 
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
763
 
    } else {
764
 
      ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
765
 
    }
 
676
    ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
766
677
    if(ret < 0){
767
678
      perror("asprintf");
768
679
      continue;
769
680
    }
770
681
    
771
682
    ret = stat(filename, &st);
772
 
    if(ret == -1){
 
683
    if (ret == -1){
773
684
      perror("stat");
774
685
      free(filename);
775
686
      continue;
776
687
    }
777
688
 
778
689
    /* Ignore non-executable files */
779
 
    if(not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
 
690
    if (not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
780
691
      if(debug){
781
692
        fprintf(stderr, "Ignoring plugin dir entry \"%s\""
782
693
                " with bad type or mode\n", filename);
810
721
        }
811
722
        /* Add global environment variables */
812
723
        for(char **e = g->environ; *e != NULL; e++){
813
 
          if(not add_environment(p, *e, false)){
 
724
          if(not add_environment(p, *e)){
814
725
            perror("add_environment");
815
726
          }
816
727
        }
821
732
       process, too. */
822
733
    if(p->environ[0] != NULL){
823
734
      for(char **e = environ; *e != NULL; e++){
824
 
        if(not add_environment(p, *e, false)){
 
735
        char *copy = strdup(*e);
 
736
        if(copy == NULL){
 
737
          perror("strdup");
 
738
          continue;
 
739
        }
 
740
        if(not add_environment(p, copy)){
825
741
          perror("add_environment");
826
742
        }
827
743
      }
829
745
    
830
746
    int pipefd[2];
831
747
    ret = pipe(pipefd);
832
 
    if(ret == -1){
 
748
    if (ret == -1){
833
749
      perror("pipe");
834
750
      exitstatus = EXIT_FAILURE;
835
751
      goto fallback;
848
764
      goto fallback;
849
765
    }
850
766
    /* Block SIGCHLD until process is safely in process list */
851
 
    ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
767
    ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
852
768
    if(ret < 0){
853
769
      perror("sigprocmask");
854
770
      exitstatus = EXIT_FAILURE;
855
771
      goto fallback;
856
772
    }
857
 
    /* Starting a new process to be watched */
 
773
    // Starting a new process to be watched
858
774
    pid_t pid = fork();
859
775
    if(pid == -1){
860
776
      perror("fork");
868
784
        perror("sigaction");
869
785
        _exit(EXIT_FAILURE);
870
786
      }
871
 
      ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
787
      ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
872
788
      if(ret < 0){
873
789
        perror("sigprocmask");
874
790
        _exit(EXIT_FAILURE);
875
791
      }
876
 
      
 
792
 
877
793
      ret = dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
878
794
      if(ret == -1){
879
795
        perror("dup2");
902
818
    close(pipefd[1]);           /* Close unused write end of pipe */
903
819
    free(filename);
904
820
    plugin *new_plugin = getplugin(dirst->d_name);
905
 
    if(new_plugin == NULL){
 
821
    if (new_plugin == NULL){
906
822
      perror("getplugin");
907
 
      ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
823
      ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
908
824
      if(ret < 0){
909
825
        perror("sigprocmask");
910
826
      }
917
833
    
918
834
    /* Unblock SIGCHLD so signal handler can be run if this process
919
835
       has already completed */
920
 
    ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
836
    ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
921
837
    if(ret < 0){
922
838
      perror("sigprocmask");
923
839
      exitstatus = EXIT_FAILURE;
926
842
    
927
843
    FD_SET(new_plugin->fd, &rfds_all);
928
844
    
929
 
    if(maxfd < new_plugin->fd){
 
845
    if (maxfd < new_plugin->fd){
930
846
      maxfd = new_plugin->fd;
931
847
    }
 
848
    
932
849
  }
933
850
  
934
851
  closedir(dir);
935
852
  dir = NULL;
936
 
  
 
853
 
937
854
  for(plugin *p = plugin_list; p != NULL; p = p->next){
938
855
    if(p->pid != 0){
939
856
      break;
944
861
      free_plugin_list();
945
862
    }
946
863
  }
947
 
  
 
864
 
948
865
  /* Main loop while running plugins exist */
949
866
  while(plugin_list){
950
867
    fd_set rfds = rfds_all;
951
868
    int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
952
 
    if(select_ret == -1){
 
869
    if (select_ret == -1){
953
870
      perror("select");
954
871
      exitstatus = EXIT_FAILURE;
955
872
      goto fallback;
956
873
    }
957
874
    /* OK, now either a process completed, or something can be read
958
875
       from one of them */
959
 
    for(plugin *proc = plugin_list; proc != NULL;){
 
876
    for(plugin *proc = plugin_list; proc != NULL; proc = proc->next){
960
877
      /* Is this process completely done? */
961
878
      if(proc->eof and proc->completed){
962
879
        /* Only accept the plugin output if it exited cleanly */
966
883
 
967
884
          if(debug){
968
885
            if(WIFEXITED(proc->status)){
969
 
              fprintf(stderr, "Plugin %" PRIdMAX " exited with status"
970
 
                      " %d\n", (intmax_t) (proc->pid),
 
886
              fprintf(stderr, "Plugin %u exited with status %d\n",
 
887
                      (unsigned int) (proc->pid),
971
888
                      WEXITSTATUS(proc->status));
972
889
            } else if(WIFSIGNALED(proc->status)) {
973
 
              fprintf(stderr, "Plugin %" PRIdMAX " killed by signal"
974
 
                      " %d\n", (intmax_t) (proc->pid),
 
890
              fprintf(stderr, "Plugin %u killed by signal %d\n",
 
891
                      (unsigned int) (proc->pid),
975
892
                      WTERMSIG(proc->status));
976
893
            } else if(WCOREDUMP(proc->status)){
977
 
              fprintf(stderr, "Plugin %" PRIdMAX " dumped core\n",
978
 
                      (intmax_t) (proc->pid));
 
894
              fprintf(stderr, "Plugin %d dumped core\n",
 
895
                      (unsigned int) (proc->pid));
979
896
            }
980
897
          }
981
898
          
989
906
            exitstatus = EXIT_FAILURE;
990
907
            goto fallback;
991
908
          }
992
 
          
993
 
          plugin *next_plugin = proc->next;
994
909
          free_plugin(proc);
995
 
          proc = next_plugin;
996
 
          
997
910
          /* We are done modifying process list, so unblock signal */
998
 
          ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask,
999
 
                            NULL);
 
911
          ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
 
912
                             NULL);
1000
913
          if(ret < 0){
1001
914
            perror("sigprocmask");
1002
915
            exitstatus = EXIT_FAILURE;
1006
919
          if(plugin_list == NULL){
1007
920
            break;
1008
921
          }
1009
 
          
1010
922
          continue;
1011
923
        }
1012
924
        
1013
925
        /* This process exited nicely, so print its buffer */
1014
 
        
 
926
 
1015
927
        bool bret = print_out_password(proc->buffer,
1016
928
                                       proc->buffer_length);
1017
929
        if(not bret){
1024
936
      /* This process has not completed.  Does it have any output? */
1025
937
      if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
1026
938
        /* This process had nothing to say at this time */
1027
 
        proc = proc->next;
1028
939
        continue;
1029
940
      }
1030
941
      /* Before reading, make the process' data buffer large enough */
1031
942
      if(proc->buffer_length + BUFFER_SIZE > proc->buffer_size){
1032
943
        proc->buffer = realloc(proc->buffer, proc->buffer_size
1033
944
                               + (size_t) BUFFER_SIZE);
1034
 
        if(proc->buffer == NULL){
 
945
        if (proc->buffer == NULL){
1035
946
          perror("malloc");
1036
947
          exitstatus = EXIT_FAILURE;
1037
948
          goto fallback;
1039
950
        proc->buffer_size += BUFFER_SIZE;
1040
951
      }
1041
952
      /* Read from the process */
1042
 
      sret = read(proc->fd, proc->buffer + proc->buffer_length,
1043
 
                  BUFFER_SIZE);
1044
 
      if(sret < 0){
 
953
      ret = read(proc->fd, proc->buffer + proc->buffer_length,
 
954
                 BUFFER_SIZE);
 
955
      if(ret < 0){
1045
956
        /* Read error from this process; ignore the error */
1046
 
        proc = proc->next;
1047
957
        continue;
1048
958
      }
1049
 
      if(sret == 0){
 
959
      if(ret == 0){
1050
960
        /* got EOF */
1051
961
        proc->eof = true;
1052
962
      } else {
1053
 
        proc->buffer_length += (size_t) sret;
 
963
        proc->buffer_length += (size_t) ret;
1054
964
      }
1055
965
    }
1056
966
  }
1064
974
    bool bret;
1065
975
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
1066
976
    char *passwordbuffer = getpass("Password: ");
1067
 
    size_t len = strlen(passwordbuffer);
1068
 
    /* Strip trailing newline */
1069
 
    if(len > 0 and passwordbuffer[len-1] == '\n'){
1070
 
      passwordbuffer[len-1] = '\0'; /* not strictly necessary */
1071
 
      len--;
1072
 
    }
1073
 
    bret = print_out_password(passwordbuffer, len);
 
977
    bret = print_out_password(passwordbuffer, strlen(passwordbuffer));
1074
978
    if(not bret){
1075
979
      perror("print_out_password");
1076
980
      exitstatus = EXIT_FAILURE;
1083
987
    perror("sigaction");
1084
988
    exitstatus = EXIT_FAILURE;
1085
989
  }
1086
 
  
 
990
 
1087
991
  if(custom_argv != NULL){
1088
992
    for(char **arg = custom_argv+1; *arg != NULL; arg++){
1089
993
      free(*arg);
1095
999
    closedir(dir);
1096
1000
  }
1097
1001
  
1098
 
  /* Kill the processes */
 
1002
  /* Free the process list and kill the processes */
1099
1003
  for(plugin *p = plugin_list; p != NULL; p = p->next){
1100
1004
    if(p->pid != 0){
1101
1005
      close(p->fd);
1114
1018
  if(errno != ECHILD){
1115
1019
    perror("wait");
1116
1020
  }
1117
 
  
 
1021
 
1118
1022
  free_plugin_list();
1119
1023
  
1120
1024
  free(plugindir);