/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-08-31 16:04:47 UTC
  • mfrom: (24.1.77 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20080831160447-2xte5k90onspphki
Merge.

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,
62
61
#include <signal.h>             /* struct sigaction, sigemptyset(),
63
62
                                   sigaddset(), sigaction(),
64
63
                                   sigprocmask(), SIG_BLOCK, SIGCHLD,
65
 
                                   SIG_UNBLOCK, kill(), sig_atomic_t
66
 
                                */
 
64
                                   SIG_UNBLOCK, kill() */
67
65
#include <errno.h>              /* errno, EBADF */
68
 
#include <inttypes.h>           /* intmax_t, PRIdMAX, strtoimax() */
69
66
 
70
67
#define BUFFER_SIZE 256
71
68
 
72
69
#define PDIR "/lib/mandos/plugins.d"
73
70
#define AFILE "/conf/conf.d/mandos/plugin-runner.conf"
74
71
 
75
 
const char *argp_program_version = "plugin-runner " VERSION;
 
72
const char *argp_program_version = "plugin-runner 1.0";
76
73
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
77
74
 
 
75
struct plugin;
 
76
 
78
77
typedef struct plugin{
79
78
  char *name;                   /* can be NULL or any plugin name */
80
79
  char **argv;
82
81
  char **environ;
83
82
  int envc;
84
83
  bool disabled;
85
 
  
 
84
 
86
85
  /* Variables used for running processes*/
87
86
  pid_t pid;
88
87
  int fd;
90
89
  size_t buffer_size;
91
90
  size_t buffer_length;
92
91
  bool eof;
93
 
  volatile sig_atomic_t completed;
94
 
  int status;
 
92
  volatile bool completed;
 
93
  volatile int status;
95
94
  struct plugin *next;
96
95
} plugin;
97
96
 
98
97
static plugin *plugin_list = NULL;
99
98
 
100
 
/* Gets an existing plugin based on name,
 
99
/* Gets a existing plugin based on name,
101
100
   or if none is found, creates a new one */
102
101
static plugin *getplugin(char *name){
103
102
  /* Check for exiting plugin with that name */
104
 
  for(plugin *p = plugin_list; p != NULL; p = p->next){
105
 
    if((p->name == name)
106
 
       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))){
107
106
      return p;
108
107
    }
109
108
  }
110
109
  /* Create a new plugin */
111
110
  plugin *new_plugin = malloc(sizeof(plugin));
112
 
  if(new_plugin == NULL){
 
111
  if (new_plugin == NULL){
113
112
    return NULL;
114
113
  }
115
114
  char *copy_name = NULL;
116
115
  if(name != NULL){
117
116
    copy_name = strdup(name);
118
117
    if(copy_name == NULL){
119
 
      free(new_plugin);
120
118
      return NULL;
121
119
    }
122
120
  }
123
 
  
124
 
  *new_plugin = (plugin){ .name = copy_name,
125
 
                          .argc = 1,
126
 
                          .disabled = false,
127
 
                          .next = plugin_list };
 
121
 
 
122
  *new_plugin = (plugin) { .name = copy_name,
 
123
                           .argc = 1,
 
124
                           .disabled = false,
 
125
                           .next = plugin_list };
128
126
  
129
127
  new_plugin->argv = malloc(sizeof(char *) * 2);
130
 
  if(new_plugin->argv == NULL){
 
128
  if (new_plugin->argv == NULL){
131
129
    free(copy_name);
132
130
    free(new_plugin);
133
131
    return NULL;
134
132
  }
135
133
  new_plugin->argv[0] = copy_name;
136
134
  new_plugin->argv[1] = NULL;
137
 
  
 
135
 
138
136
  new_plugin->environ = malloc(sizeof(char *));
139
137
  if(new_plugin->environ == NULL){
140
138
    free(copy_name);
143
141
    return NULL;
144
142
  }
145
143
  new_plugin->environ[0] = NULL;
146
 
  
 
144
 
147
145
  /* Append the new plugin to the list */
148
146
  plugin_list = new_plugin;
149
147
  return new_plugin;
181
179
}
182
180
 
183
181
/* Add to a plugin's environment */
184
 
static bool add_environment(plugin *p, const char *def, bool replace){
 
182
static bool add_environment(plugin *p, const char *def){
185
183
  if(p == NULL){
186
184
    return false;
187
185
  }
188
 
  /* namelen = length of name of environment variable */
189
 
  size_t namelen = (size_t)(strchrnul(def, '=') - def);
190
 
  /* Search for this environment variable */
191
 
  for(char **e = p->environ; *e != NULL; e++){
192
 
    if(strncmp(*e, def, namelen + 1) == 0){
193
 
      /* It already exists */
194
 
      if(replace){
195
 
        char *new = realloc(*e, strlen(def) + 1);
196
 
        if(new == NULL){
197
 
          return false;
198
 
        }
199
 
        *e = new;
200
 
        strcpy(*e, def);
201
 
      }
202
 
      return true;
203
 
    }
204
 
  }
205
186
  return add_to_char_array(def, &(p->environ), &(p->envc));
206
187
}
207
188
 
210
191
 * Descriptor Flags".
211
192
 * *Note File Descriptor Flags:(libc)Descriptor Flags.
212
193
 */
213
 
static int set_cloexec_flag(int fd){
 
194
static int set_cloexec_flag(int fd)
 
195
{
214
196
  int ret = fcntl(fd, F_GETFD, 0);
215
197
  /* If reading the flags failed, return error indication now. */
216
198
  if(ret < 0){
223
205
 
224
206
/* Mark processes as completed when they exit, and save their exit
225
207
   status. */
226
 
static void handle_sigchld(__attribute__((unused)) int sig){
227
 
  int old_errno = errno;
 
208
void handle_sigchld(__attribute__((unused)) int sig){
228
209
  while(true){
229
210
    plugin *proc = plugin_list;
230
211
    int status;
234
215
      break;
235
216
    }
236
217
    if(pid == -1){
237
 
      if(errno == ECHILD){
238
 
        /* No child processes */
239
 
        break;
 
218
      if (errno != ECHILD){
 
219
        perror("waitpid");
240
220
      }
241
 
      perror("waitpid");
 
221
      /* No child processes */
 
222
      break;
242
223
    }
243
 
    
 
224
 
244
225
    /* A child exited, find it in process_list */
245
226
    while(proc != NULL and proc->pid != pid){
246
227
      proc = proc->next;
250
231
      continue;
251
232
    }
252
233
    proc->status = status;
253
 
    proc->completed = 1;
 
234
    proc->completed = true;
254
235
  }
255
 
  errno = old_errno;
256
236
}
257
237
 
258
238
/* Prints out a password to stdout */
259
 
static bool print_out_password(const char *buffer, size_t length){
 
239
bool print_out_password(const char *buffer, size_t length){
260
240
  ssize_t ret;
 
241
  if(length>0 and buffer[length-1] == '\n'){
 
242
    length--;
 
243
  }
261
244
  for(size_t written = 0; written < length; written += (size_t)ret){
262
245
    ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO, buffer + written,
263
246
                                   length - written));
280
263
  }
281
264
  free(plugin_node->environ);
282
265
  free(plugin_node->buffer);
283
 
  
 
266
 
284
267
  /* Removes the plugin from the singly-linked list */
285
268
  if(plugin_node == plugin_list){
286
269
    /* First one - simple */
314
297
  struct stat st;
315
298
  fd_set rfds_all;
316
299
  int ret, maxfd = 0;
317
 
  ssize_t sret;
318
 
  intmax_t tmpmax;
319
300
  uid_t uid = 65534;
320
301
  gid_t gid = 65534;
321
302
  bool debug = false;
346
327
    { .name = "global-options", .key = 'g',
347
328
      .arg = "OPTION[,OPTION[,...]]",
348
329
      .doc = "Options passed to all plugins" },
349
 
    { .name = "global-env", .key = 'G',
 
330
    { .name = "global-envs", .key = 'e',
350
331
      .arg = "VAR=value",
351
332
      .doc = "Environment variable passed to all plugins" },
352
333
    { .name = "options-for", .key = 'o',
353
334
      .arg = "PLUGIN:OPTION[,OPTION[,...]]",
354
335
      .doc = "Options passed only to specified plugin" },
355
 
    { .name = "env-for", .key = 'E',
 
336
    { .name = "envs-for", .key = 'f',
356
337
      .arg = "PLUGIN:ENV=value",
357
338
      .doc = "Environment variable passed to specified plugin" },
358
339
    { .name = "disable", .key = 'd',
359
340
      .arg = "PLUGIN",
360
341
      .doc = "Disable a specific plugin", .group = 1 },
361
 
    { .name = "enable", .key = 'e',
362
 
      .arg = "PLUGIN",
363
 
      .doc = "Enable a specific plugin", .group = 1 },
364
342
    { .name = "plugin-dir", .key = 128,
365
343
      .arg = "DIRECTORY",
366
344
      .doc = "Specify a different plugin directory", .group = 2 },
378
356
    { .name = NULL }
379
357
  };
380
358
  
381
 
  error_t parse_opt(int key, char *arg, __attribute__((unused))
382
 
                    struct argp_state *state){
383
 
    char *tmp;
384
 
    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) {
385
363
    case 'g':                   /* --global-options */
386
 
      if(arg != NULL){
387
 
        char *plugin_option;
388
 
        while((plugin_option = strsep(&arg, ",")) != NULL){
389
 
          if(plugin_option[0] == '\0'){
 
364
      if (arg != NULL){
 
365
        char *p;
 
366
        while((p = strsep(&arg, ",")) != NULL){
 
367
          if(p[0] == '\0'){
390
368
            continue;
391
369
          }
392
 
          if(not add_argument(getplugin(NULL), plugin_option)){
 
370
          if(not add_argument(getplugin(NULL), p)){
393
371
            perror("add_argument");
394
372
            return ARGP_ERR_UNKNOWN;
395
373
          }
396
374
        }
397
375
      }
398
376
      break;
399
 
    case 'G':                   /* --global-env */
 
377
    case 'e':                   /* --global-envs */
400
378
      if(arg == NULL){
401
379
        break;
402
380
      }
403
 
      if(not add_environment(getplugin(NULL), arg, true)){
404
 
        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
        }
405
389
      }
406
390
      break;
407
391
    case 'o':                   /* --options-for */
408
 
      if(arg != NULL){
409
 
        char *plugin_name = strsep(&arg, ":");
410
 
        if(plugin_name[0] == '\0'){
411
 
          break;
412
 
        }
413
 
        char *plugin_option;
414
 
        while((plugin_option = strsep(&arg, ",")) != NULL){
415
 
          if(not add_argument(getplugin(plugin_name), plugin_option)){
416
 
            perror("add_argument");
417
 
            return ARGP_ERR_UNKNOWN;
 
392
      if (arg != NULL){
 
393
        char *p_name = strsep(&arg, ":");
 
394
        if(p_name[0] == '\0'){
 
395
          break;
 
396
        }
 
397
        char *opt = strsep(&arg, ":");
 
398
        if(opt[0] == '\0'){
 
399
          break;
 
400
        }
 
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
            }
418
411
          }
419
412
        }
420
413
      }
421
414
      break;
422
 
    case 'E':                   /* --env-for */
 
415
    case 'f':                   /* --envs-for */
423
416
      if(arg == NULL){
424
417
        break;
425
418
      }
428
421
        if(envdef == NULL){
429
422
          break;
430
423
        }
431
 
        *envdef = '\0';
432
 
        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)){
433
430
          perror("add_environment");
434
431
        }
435
432
      }
436
433
      break;
437
434
    case 'd':                   /* --disable */
438
 
      if(arg != NULL){
 
435
      if (arg != NULL){
439
436
        plugin *p = getplugin(arg);
440
437
        if(p == NULL){
441
438
          return ARGP_ERR_UNKNOWN;
443
440
        p->disabled = true;
444
441
      }
445
442
      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
443
    case 128:                   /* --plugin-dir */
456
 
      free(plugindir);
457
444
      plugindir = strdup(arg);
458
445
      if(plugindir == NULL){
459
446
        perror("strdup");
460
447
      }      
461
448
      break;
462
449
    case 129:                   /* --config-file */
463
 
      /* This is already done by parse_opt_config_file() */
464
 
      break;
465
 
    case 130:                   /* --userid */
466
 
      errno = 0;
467
 
      tmpmax = strtoimax(arg, &tmp, 10);
468
 
      if(errno != 0 or tmp == arg or *tmp != '\0'
469
 
         or tmpmax != (uid_t)tmpmax){
470
 
        fprintf(stderr, "Bad user ID number: \"%s\", using %"
471
 
                PRIdMAX "\n", arg, (intmax_t)uid);
472
 
      } else {
473
 
        uid = (uid_t)tmpmax;
474
 
      }
475
 
      break;
476
 
    case 131:                   /* --groupid */
477
 
      errno = 0;
478
 
      tmpmax = strtoimax(arg, &tmp, 10);
479
 
      if(errno != 0 or tmp == arg or *tmp != '\0'
480
 
         or tmpmax != (gid_t)tmpmax){
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
 
573
500
    custom_argc = 1;
574
501
    custom_argv = malloc(sizeof(char*) * 2);
575
502
    if(custom_argv == NULL){
579
506
    }
580
507
    custom_argv[0] = argv[0];
581
508
    custom_argv[1] = NULL;
582
 
    
583
 
    /* for each line in the config file, strip whitespace and ignore
584
 
       commented text */
 
509
 
 
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){
588
514
        break;
589
515
      }
590
 
      
 
516
 
591
517
      line = org_line;
592
518
      arg = strsep(&line, comment_delim);
593
519
      while((p = strsep(&arg, whitespace_delims)) != NULL){
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 */
 
580
  ret = setuid(uid);
 
581
  if (ret == -1){
 
582
    perror("setuid");
 
583
  }  
664
584
  setgid(gid);
665
 
  if(ret == -1){
 
585
  if (ret == -1){
666
586
    perror("setgid");
667
587
  }
668
 
  ret = setuid(uid);
669
 
  if(ret == -1){
670
 
    perror("setuid");
671
 
  }
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);
756
671
        continue;
757
672
      }
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
 
  free_plugin(getplugin(NULL));
937
 
  
 
853
 
938
854
  for(plugin *p = plugin_list; p != NULL; p = p->next){
939
855
    if(p->pid != 0){
940
856
      break;
945
861
      free_plugin_list();
946
862
    }
947
863
  }
948
 
  
 
864
 
949
865
  /* Main loop while running plugins exist */
950
866
  while(plugin_list){
951
867
    fd_set rfds = rfds_all;
952
868
    int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
953
 
    if(select_ret == -1){
 
869
    if (select_ret == -1){
954
870
      perror("select");
955
871
      exitstatus = EXIT_FAILURE;
956
872
      goto fallback;
957
873
    }
958
874
    /* OK, now either a process completed, or something can be read
959
875
       from one of them */
960
 
    for(plugin *proc = plugin_list; proc != NULL;){
 
876
    for(plugin *proc = plugin_list; proc != NULL; proc = proc->next){
961
877
      /* Is this process completely done? */
962
 
      if(proc->completed and proc->eof){
 
878
      if(proc->eof and proc->completed){
963
879
        /* Only accept the plugin output if it exited cleanly */
964
880
        if(not WIFEXITED(proc->status)
965
881
           or WEXITSTATUS(proc->status) != 0){
966
882
          /* Bad exit by plugin */
967
 
          
 
883
 
968
884
          if(debug){
969
885
            if(WIFEXITED(proc->status)){
970
 
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] exited with"
971
 
                      " status %d\n", proc->name,
972
 
                      (intmax_t) (proc->pid),
 
886
              fprintf(stderr, "Plugin %u exited with status %d\n",
 
887
                      (unsigned int) (proc->pid),
973
888
                      WEXITSTATUS(proc->status));
974
 
            } else if(WIFSIGNALED(proc->status)){
975
 
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] killed by"
976
 
                      " signal %d\n", proc->name,
977
 
                      (intmax_t) (proc->pid),
 
889
            } else if(WIFSIGNALED(proc->status)) {
 
890
              fprintf(stderr, "Plugin %u killed by signal %d\n",
 
891
                      (unsigned int) (proc->pid),
978
892
                      WTERMSIG(proc->status));
979
893
            } else if(WCOREDUMP(proc->status)){
980
 
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] dumped"
981
 
                      " core\n", proc->name, (intmax_t) (proc->pid));
 
894
              fprintf(stderr, "Plugin %d dumped core\n",
 
895
                      (unsigned int) (proc->pid));
982
896
            }
983
897
          }
984
898
          
985
899
          /* Remove the plugin */
986
900
          FD_CLR(proc->fd, &rfds_all);
987
 
          
 
901
 
988
902
          /* Block signal while modifying process_list */
989
903
          ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
990
904
          if(ret < 0){
992
906
            exitstatus = EXIT_FAILURE;
993
907
            goto fallback;
994
908
          }
995
 
          
996
 
          plugin *next_plugin = proc->next;
997
909
          free_plugin(proc);
998
 
          proc = next_plugin;
999
 
          
1000
910
          /* We are done modifying process list, so unblock signal */
1001
 
          ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask,
1002
 
                            NULL);
 
911
          ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
 
912
                             NULL);
1003
913
          if(ret < 0){
1004
914
            perror("sigprocmask");
1005
915
            exitstatus = EXIT_FAILURE;
1009
919
          if(plugin_list == NULL){
1010
920
            break;
1011
921
          }
1012
 
          
1013
922
          continue;
1014
923
        }
1015
924
        
1016
925
        /* This process exited nicely, so print its buffer */
1017
 
        
 
926
 
1018
927
        bool bret = print_out_password(proc->buffer,
1019
928
                                       proc->buffer_length);
1020
929
        if(not bret){
1027
936
      /* This process has not completed.  Does it have any output? */
1028
937
      if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
1029
938
        /* This process had nothing to say at this time */
1030
 
        proc = proc->next;
1031
939
        continue;
1032
940
      }
1033
941
      /* Before reading, make the process' data buffer large enough */
1034
942
      if(proc->buffer_length + BUFFER_SIZE > proc->buffer_size){
1035
943
        proc->buffer = realloc(proc->buffer, proc->buffer_size
1036
944
                               + (size_t) BUFFER_SIZE);
1037
 
        if(proc->buffer == NULL){
 
945
        if (proc->buffer == NULL){
1038
946
          perror("malloc");
1039
947
          exitstatus = EXIT_FAILURE;
1040
948
          goto fallback;
1042
950
        proc->buffer_size += BUFFER_SIZE;
1043
951
      }
1044
952
      /* Read from the process */
1045
 
      sret = read(proc->fd, proc->buffer + proc->buffer_length,
1046
 
                  BUFFER_SIZE);
1047
 
      if(sret < 0){
 
953
      ret = read(proc->fd, proc->buffer + proc->buffer_length,
 
954
                 BUFFER_SIZE);
 
955
      if(ret < 0){
1048
956
        /* Read error from this process; ignore the error */
1049
 
        proc = proc->next;
1050
957
        continue;
1051
958
      }
1052
 
      if(sret == 0){
 
959
      if(ret == 0){
1053
960
        /* got EOF */
1054
961
        proc->eof = true;
1055
962
      } else {
1056
 
        proc->buffer_length += (size_t) sret;
 
963
        proc->buffer_length += (size_t) ret;
1057
964
      }
1058
965
    }
1059
966
  }
1060
 
  
1061
 
  
 
967
 
 
968
 
1062
969
 fallback:
1063
970
  
1064
971
  if(plugin_list == NULL or exitstatus != EXIT_SUCCESS){
1067
974
    bool bret;
1068
975
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
1069
976
    char *passwordbuffer = getpass("Password: ");
1070
 
    size_t len = strlen(passwordbuffer);
1071
 
    /* Strip trailing newline */
1072
 
    if(len > 0 and passwordbuffer[len-1] == '\n'){
1073
 
      passwordbuffer[len-1] = '\0'; /* not strictly necessary */
1074
 
      len--;
1075
 
    }
1076
 
    bret = print_out_password(passwordbuffer, len);
 
977
    bret = print_out_password(passwordbuffer, strlen(passwordbuffer));
1077
978
    if(not bret){
1078
979
      perror("print_out_password");
1079
980
      exitstatus = EXIT_FAILURE;
1086
987
    perror("sigaction");
1087
988
    exitstatus = EXIT_FAILURE;
1088
989
  }
1089
 
  
 
990
 
1090
991
  if(custom_argv != NULL){
1091
992
    for(char **arg = custom_argv+1; *arg != NULL; arg++){
1092
993
      free(*arg);
1098
999
    closedir(dir);
1099
1000
  }
1100
1001
  
1101
 
  /* Kill the processes */
 
1002
  /* Free the process list and kill the processes */
1102
1003
  for(plugin *p = plugin_list; p != NULL; p = p->next){
1103
1004
    if(p->pid != 0){
1104
1005
      close(p->fd);
1117
1018
  if(errno != ECHILD){
1118
1019
    perror("wait");
1119
1020
  }
1120
 
  
 
1021
 
1121
1022
  free_plugin_list();
1122
1023
  
1123
1024
  free(plugindir);