/mandos/release

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/release

« back to all changes in this revision

Viewing changes to plugin-runner.c

  • Committer: Teddy Hogeborn
  • Date: 2008-09-06 17:24:58 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080906172458-2x5wlfkn7oqckt1y
* legalnotice.xml: Copy DocBook 4.4-formatted text from
                   <http://www.gnu.org/licenses/gpl-3.0.dbk>.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
#include <argp.h>               /* struct argp_option, struct
57
57
                                   argp_state, struct argp,
58
58
                                   argp_parse(), ARGP_ERR_UNKNOWN,
59
 
                                   ARGP_KEY_END, ARGP_KEY_ARG, error_t */
 
59
                                   ARGP_KEY_END, ARGP_KEY_ARG,
 
60
                                   error_t */
60
61
#include <signal.h>             /* struct sigaction, sigemptyset(),
61
62
                                   sigaddset(), sigaction(),
62
63
                                   sigprocmask(), SIG_BLOCK, SIGCHLD,
64
65
#include <errno.h>              /* errno, EBADF */
65
66
 
66
67
#define BUFFER_SIZE 256
67
 
#define ARGFILE "/conf/conf.d/mandos/plugin-runner.conf"
 
68
 
 
69
#define PDIR "/lib/mandos/plugins.d"
 
70
#define AFILE "/conf/conf.d/mandos/plugin-runner.conf"
68
71
 
69
72
const char *argp_program_version = "plugin-runner 1.0";
70
73
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
71
74
 
72
 
struct process;
73
 
 
74
 
typedef struct process{
75
 
  pid_t pid;
76
 
  int fd;
77
 
  char *buffer;
78
 
  size_t buffer_size;
79
 
  size_t buffer_length;
80
 
  bool eof;
81
 
  bool completed;
82
 
  int status;
83
 
  struct process *next;
84
 
} process;
 
75
struct plugin;
85
76
 
86
77
typedef struct plugin{
87
78
  char *name;                   /* can be NULL or any plugin name */
90
81
  char **environ;
91
82
  int envc;
92
83
  bool disabled;
 
84
 
 
85
  /* Variables used for running processes*/
 
86
  pid_t pid;
 
87
  int fd;
 
88
  char *buffer;
 
89
  size_t buffer_size;
 
90
  size_t buffer_length;
 
91
  bool eof;
 
92
  volatile bool completed;
 
93
  volatile int status;
93
94
  struct plugin *next;
94
95
} plugin;
95
96
 
96
 
static plugin *getplugin(char *name, plugin **plugin_list){
97
 
  for (plugin *p = *plugin_list; p != NULL; p = p->next){
 
97
static plugin *plugin_list = NULL;
 
98
 
 
99
/* Gets an existing plugin based on name,
 
100
   or if none is found, creates a new one */
 
101
static plugin *getplugin(char *name){
 
102
  /* Check for exiting plugin with that name */
 
103
  for (plugin *p = plugin_list; p != NULL; p = p->next){
98
104
    if ((p->name == name)
99
105
        or (p->name and name and (strcmp(p->name, name) == 0))){
100
106
      return p;
115
121
  
116
122
  *new_plugin = (plugin) { .name = copy_name,
117
123
                           .argc = 1,
118
 
                           .envc = 0,
119
124
                           .disabled = false,
120
 
                           .next = *plugin_list };
 
125
                           .next = plugin_list };
121
126
  
122
127
  new_plugin->argv = malloc(sizeof(char *) * 2);
123
128
  if (new_plugin->argv == NULL){
127
132
  }
128
133
  new_plugin->argv[0] = copy_name;
129
134
  new_plugin->argv[1] = NULL;
130
 
 
 
135
  
131
136
  new_plugin->environ = malloc(sizeof(char *));
132
137
  if(new_plugin->environ == NULL){
133
138
    free(copy_name);
136
141
    return NULL;
137
142
  }
138
143
  new_plugin->environ[0] = NULL;
 
144
  
139
145
  /* Append the new plugin to the list */
140
 
  *plugin_list = new_plugin;
 
146
  plugin_list = new_plugin;
141
147
  return new_plugin;
142
148
}
143
149
 
173
179
}
174
180
 
175
181
/* Add to a plugin's environment */
176
 
static bool add_environment(plugin *p, const char *def){
 
182
static bool add_environment(plugin *p, const char *def, bool replace){
177
183
  if(p == NULL){
178
184
    return false;
179
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
  }
180
203
  return add_to_char_array(def, &(p->environ), &(p->envc));
181
204
}
182
205
 
183
 
 
184
206
/*
185
207
 * Based on the example in the GNU LibC manual chapter 13.13 "File
186
208
 * Descriptor Flags".
197
219
  return fcntl(fd, F_SETFD, ret | FD_CLOEXEC);
198
220
}
199
221
 
200
 
process *process_list = NULL;
201
222
 
202
 
/* Mark processes as completed when it exits, and save its exit
 
223
/* Mark processes as completed when they exit, and save their exit
203
224
   status. */
204
225
void handle_sigchld(__attribute__((unused)) int sig){
205
 
  process *proc = process_list;
206
226
  while(true){
 
227
    plugin *proc = plugin_list;
207
228
    int status;
208
229
    pid_t pid = waitpid(-1, &status, WNOHANG);
209
230
    if(pid == 0){
 
231
      /* Only still running child processes */
210
232
      break;
211
233
    }
212
234
    if(pid == -1){
213
235
      if (errno != ECHILD){
214
236
        perror("waitpid");
215
237
      }
216
 
      return;
 
238
      /* No child processes */
 
239
      break;
217
240
    }
218
 
 
 
241
    
 
242
    /* A child exited, find it in process_list */
219
243
    while(proc != NULL and proc->pid != pid){
220
244
      proc = proc->next;
221
245
    }
228
252
  }
229
253
}
230
254
 
 
255
/* Prints out a password to stdout */
231
256
bool print_out_password(const char *buffer, size_t length){
232
257
  ssize_t ret;
233
 
  if(length>0 and buffer[length-1] == '\n'){
234
 
    length--;
235
 
  }
236
258
  for(size_t written = 0; written < length; written += (size_t)ret){
237
259
    ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO, buffer + written,
238
260
                                   length - written));
243
265
  return true;
244
266
}
245
267
 
246
 
char **add_to_argv(char **argv, int *argc, char *arg){
247
 
  if (argv == NULL){
248
 
    *argc = 1;
249
 
    argv = malloc(sizeof(char*) * 2);
250
 
    if(argv == NULL){
251
 
      return NULL;
 
268
/* Removes and free a plugin from the plugin list */
 
269
static void free_plugin(plugin *plugin_node){
 
270
  
 
271
  for(char **arg = plugin_node->argv; *arg != NULL; arg++){
 
272
    free(*arg);
 
273
  }
 
274
  free(plugin_node->argv);
 
275
  for(char **env = plugin_node->environ; *env != NULL; env++){
 
276
    free(*env);
 
277
  }
 
278
  free(plugin_node->environ);
 
279
  free(plugin_node->buffer);
 
280
 
 
281
  /* Removes the plugin from the singly-linked list */
 
282
  if(plugin_node == plugin_list){
 
283
    /* First one - simple */
 
284
    plugin_list = plugin_list->next;
 
285
  } else {
 
286
    /* Second one or later */
 
287
    for(plugin *p = plugin_list; p != NULL; p = p->next){
 
288
      if(p->next == plugin_node){
 
289
        p->next = plugin_node->next;
 
290
        break;
 
291
      }
252
292
    }
253
 
    argv[0] = NULL;     /* Will be set to argv[0] in main before parsing */
254
 
    argv[1] = NULL;
255
 
  }
256
 
  *argc += 1;
257
 
  argv = realloc(argv, sizeof(char *)
258
 
                  * ((unsigned int) *argc + 1));
259
 
  if(argv == NULL){
260
 
    return NULL;
261
 
  }
262
 
  argv[*argc-1] = arg;
263
 
  argv[*argc] = NULL;
264
 
  return argv;
 
293
  }
 
294
  
 
295
  free(plugin_node);
265
296
}
266
297
 
267
 
static void free_plugin_list(plugin *plugin_list){
268
 
  for(plugin *next; plugin_list != NULL; plugin_list = next){
269
 
    next = plugin_list->next;
270
 
    for(char **arg = plugin_list->argv; *arg != NULL; arg++){
271
 
      free(*arg);
272
 
    }
273
 
    free(plugin_list->argv);
274
 
    for(char **env = plugin_list->environ; *env != NULL; env++){
275
 
      free(*env);
276
 
    }
277
 
    free(plugin_list->environ);
278
 
    free(plugin_list);
 
298
static void free_plugin_list(void){
 
299
  while(plugin_list != NULL){
 
300
    free_plugin(plugin_list);
279
301
  }
280
302
}
281
303
 
282
304
int main(int argc, char *argv[]){
283
 
  const char *plugindir = "/lib/mandos/plugins.d";
284
 
  const char *argfile = ARGFILE;
 
305
  char *plugindir = NULL;
 
306
  char *argfile = NULL;
285
307
  FILE *conffp;
286
308
  size_t d_name_len;
287
309
  DIR *dir = NULL;
319
341
    { .name = "global-options", .key = 'g',
320
342
      .arg = "OPTION[,OPTION[,...]]",
321
343
      .doc = "Options passed to all plugins" },
322
 
    { .name = "global-envs", .key = 'e',
 
344
    { .name = "global-env", .key = 'G',
323
345
      .arg = "VAR=value",
324
346
      .doc = "Environment variable passed to all plugins" },
325
347
    { .name = "options-for", .key = 'o',
326
348
      .arg = "PLUGIN:OPTION[,OPTION[,...]]",
327
349
      .doc = "Options passed only to specified plugin" },
328
 
    { .name = "envs-for", .key = 'f',
 
350
    { .name = "env-for", .key = 'E',
329
351
      .arg = "PLUGIN:ENV=value",
330
352
      .doc = "Environment variable passed to specified plugin" },
331
353
    { .name = "disable", .key = 'd',
332
354
      .arg = "PLUGIN",
333
355
      .doc = "Disable a specific plugin", .group = 1 },
 
356
    { .name = "enable", .key = 'e',
 
357
      .arg = "PLUGIN",
 
358
      .doc = "Enable a specific plugin", .group = 1 },
334
359
    { .name = "plugin-dir", .key = 128,
335
360
      .arg = "DIRECTORY",
336
361
      .doc = "Specify a different plugin directory", .group = 2 },
337
 
    { .name = "userid", .key = 129,
338
 
      .arg = "ID", .flags = 0,
339
 
      .doc = "User ID the plugins will run as", .group = 2 },
340
 
    { .name = "groupid", .key = 130,
341
 
      .arg = "ID", .flags = 0,
342
 
      .doc = "Group ID the plugins will run as", .group = 2 },
343
 
    { .name = "debug", .key = 131,
344
 
      .doc = "Debug mode", .group = 3 },
 
362
    { .name = "config-file", .key = 129,
 
363
      .arg = "FILE",
 
364
      .doc = "Specify a different configuration file", .group = 2 },
 
365
    { .name = "userid", .key = 130,
 
366
      .arg = "ID", .flags = 0,
 
367
      .doc = "User ID the plugins will run as", .group = 3 },
 
368
    { .name = "groupid", .key = 131,
 
369
      .arg = "ID", .flags = 0,
 
370
      .doc = "Group ID the plugins will run as", .group = 3 },
 
371
    { .name = "debug", .key = 132,
 
372
      .doc = "Debug mode", .group = 4 },
345
373
    { .name = NULL }
346
374
  };
347
375
  
348
 
  error_t parse_opt (int key, char *arg, struct argp_state *state) {
349
 
    /* Get the INPUT argument from `argp_parse', which we know is a
350
 
       pointer to our plugin list pointer. */
351
 
    plugin **plugins = state->input;
 
376
  error_t parse_opt (int key, char *arg, __attribute__((unused))
 
377
                     struct argp_state *state) {
352
378
    switch (key) {
353
 
    case 'g':
 
379
    case 'g':                   /* --global-options */
354
380
      if (arg != NULL){
355
381
        char *p;
356
382
        while((p = strsep(&arg, ",")) != NULL){
357
383
          if(p[0] == '\0'){
358
384
            continue;
359
385
          }
360
 
          if(not add_argument(getplugin(NULL, plugins), p)){
 
386
          if(not add_argument(getplugin(NULL), p)){
361
387
            perror("add_argument");
362
388
            return ARGP_ERR_UNKNOWN;
363
389
          }
364
390
        }
365
391
      }
366
392
      break;
367
 
    case 'e':
 
393
    case 'G':                   /* --global-env */
368
394
      if(arg == NULL){
369
395
        break;
370
396
      }
373
399
        if(envdef == NULL){
374
400
          break;
375
401
        }
376
 
        if(not add_environment(getplugin(NULL, plugins), envdef)){
 
402
        if(not add_environment(getplugin(NULL), envdef, true)){
377
403
          perror("add_environment");
378
404
        }
379
405
      }
380
406
      break;
381
 
    case 'o':
 
407
    case 'o':                   /* --options-for */
382
408
      if (arg != NULL){
383
409
        char *p_name = strsep(&arg, ":");
384
 
        if(p_name[0] == '\0'){
 
410
        if(p_name[0] == '\0' or arg == NULL){
385
411
          break;
386
412
        }
387
413
        char *opt = strsep(&arg, ":");
388
 
        if(opt[0] == '\0'){
 
414
        if(opt[0] == '\0' or opt == NULL){
389
415
          break;
390
416
        }
391
 
        if(opt != NULL){
392
 
          char *p;
393
 
          while((p = strsep(&opt, ",")) != NULL){
394
 
            if(p[0] == '\0'){
395
 
              continue;
396
 
            }
397
 
            if(not add_argument(getplugin(p_name, plugins), p)){
398
 
              perror("add_argument");
399
 
              return ARGP_ERR_UNKNOWN;
400
 
            }
 
417
        char *p;
 
418
        while((p = strsep(&opt, ",")) != NULL){
 
419
          if(p[0] == '\0'){
 
420
            continue;
 
421
          }
 
422
          if(not add_argument(getplugin(p_name), p)){
 
423
            perror("add_argument");
 
424
            return ARGP_ERR_UNKNOWN;
401
425
          }
402
426
        }
403
427
      }
404
428
      break;
405
 
    case 'f':
 
429
    case 'E':                   /* --env-for */
406
430
      if(arg == NULL){
407
431
        break;
408
432
      }
416
440
          break;
417
441
        }
418
442
        envdef++;
419
 
        if(not add_environment(getplugin(p_name, plugins), envdef)){
 
443
        if(not add_environment(getplugin(p_name), envdef, true)){
420
444
          perror("add_environment");
421
445
        }
422
446
      }
423
447
      break;
424
 
    case 'd':
 
448
    case 'd':                   /* --disable */
425
449
      if (arg != NULL){
426
 
        plugin *p = getplugin(arg, plugins);
 
450
        plugin *p = getplugin(arg);
427
451
        if(p == NULL){
428
452
          return ARGP_ERR_UNKNOWN;
429
453
        }
430
454
        p->disabled = true;
431
455
      }
432
456
      break;
433
 
    case 128:
434
 
      plugindir = arg;
435
 
      break;
436
 
    case 129:
 
457
    case 'e':                   /* --enable */
 
458
      if (arg != NULL){
 
459
        plugin *p = getplugin(arg);
 
460
        if(p == NULL){
 
461
          return ARGP_ERR_UNKNOWN;
 
462
        }
 
463
        p->disabled = false;
 
464
      }
 
465
      break;
 
466
    case 128:                   /* --plugin-dir */
 
467
      plugindir = strdup(arg);
 
468
      if(plugindir == NULL){
 
469
        perror("strdup");
 
470
      }      
 
471
      break;
 
472
    case 129:                   /* --config-file */
 
473
      /* This is already done by parse_opt_config_file() */
 
474
      break;
 
475
    case 130:                   /* --userid */
437
476
      uid = (uid_t)strtol(arg, NULL, 10);
438
477
      break;
439
 
    case 130:
 
478
    case 131:                   /* --groupid */
440
479
      gid = (gid_t)strtol(arg, NULL, 10);
441
480
      break;
442
 
    case 131:
 
481
    case 132:                   /* --debug */
443
482
      debug = true;
444
483
      break;
445
484
    case ARGP_KEY_ARG:
453
492
    return 0;
454
493
  }
455
494
  
456
 
  plugin *plugin_list = NULL;
 
495
  /* This option parser is the same as parse_opt() above, except it
 
496
     ignores everything but the --config-file option. */
 
497
  error_t parse_opt_config_file (int key, char *arg,
 
498
                                 __attribute__((unused))
 
499
                                 struct argp_state *state) {
 
500
    switch (key) {
 
501
    case 'g':                   /* --global-options */
 
502
    case 'G':                   /* --global-env */
 
503
    case 'o':                   /* --options-for */
 
504
    case 'E':                   /* --env-for */
 
505
    case 'd':                   /* --disable */
 
506
    case 'e':                   /* --enable */
 
507
    case 128:                   /* --plugin-dir */
 
508
      break;
 
509
    case 129:                   /* --config-file */
 
510
      argfile = strdup(arg);
 
511
      if(argfile == NULL){
 
512
        perror("strdup");
 
513
      }
 
514
      break;      
 
515
    case 130:                   /* --userid */
 
516
    case 131:                   /* --groupid */
 
517
    case 132:                   /* --debug */
 
518
    case ARGP_KEY_ARG:
 
519
    case ARGP_KEY_END:
 
520
      break;
 
521
    default:
 
522
      return ARGP_ERR_UNKNOWN;
 
523
    }
 
524
    return 0;
 
525
  }
457
526
  
458
 
  struct argp argp = { .options = options, .parser = parse_opt,
459
 
                       .args_doc = "[+PLUS_SEPARATED_OPTIONS]",
 
527
  struct argp argp = { .options = options,
 
528
                       .parser = parse_opt_config_file,
 
529
                       .args_doc = "",
460
530
                       .doc = "Mandos plugin runner -- Run plugins" };
461
531
  
462
 
  ret = argp_parse (&argp, argc, argv, 0, 0, &plugin_list);
 
532
  /* Parse using the parse_opt_config_file in order to get the custom
 
533
     config file location, if any. */
 
534
  ret = argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
463
535
  if (ret == ARGP_ERR_UNKNOWN){
464
536
    fprintf(stderr, "Unknown error while parsing arguments\n");
465
537
    exitstatus = EXIT_FAILURE;
466
538
    goto fallback;
467
539
  }
468
 
 
469
 
  conffp = fopen(argfile, "r");
 
540
  
 
541
  /* Reset to the normal argument parser */
 
542
  argp.parser = parse_opt;
 
543
  
 
544
  /* Open the configfile if available */
 
545
  if (argfile == NULL){
 
546
    conffp = fopen(AFILE, "r");
 
547
  } else {
 
548
    conffp = fopen(argfile, "r");
 
549
  }  
470
550
  if(conffp != NULL){
471
551
    char *org_line = NULL;
472
552
    char *p, *arg, *new_arg, *line;
475
555
    const char whitespace_delims[] = " \r\t\f\v\n";
476
556
    const char comment_delim[] = "#";
477
557
 
 
558
    custom_argc = 1;
 
559
    custom_argv = malloc(sizeof(char*) * 2);
 
560
    if(custom_argv == NULL){
 
561
      perror("malloc");
 
562
      exitstatus = EXIT_FAILURE;
 
563
      goto fallback;
 
564
    }
 
565
    custom_argv[0] = argv[0];
 
566
    custom_argv[1] = NULL;
 
567
 
 
568
    /* for each line in the config file, strip whitespace and ignore
 
569
       commented text */
478
570
    while(true){
479
571
      sret = getline(&org_line, &size, conffp);
480
572
      if(sret == -1){
488
580
          continue;
489
581
        }
490
582
        new_arg = strdup(p);
491
 
        custom_argv = add_to_argv(custom_argv, &custom_argc, new_arg);
492
 
        if (custom_argv == NULL){
493
 
          perror("add_to_argv");
494
 
          exitstatus = EXIT_FAILURE;
495
 
          goto fallback;
496
 
        }
 
583
        if(new_arg == NULL){
 
584
          perror("strdup");
 
585
          exitstatus = EXIT_FAILURE;
 
586
          free(org_line);
 
587
          goto fallback;
 
588
        }
 
589
        
 
590
        custom_argc += 1;
 
591
        custom_argv = realloc(custom_argv, sizeof(char *)
 
592
                              * ((unsigned int) custom_argc + 1));
 
593
        if(custom_argv == NULL){
 
594
          perror("realloc");
 
595
          exitstatus = EXIT_FAILURE;
 
596
          free(org_line);
 
597
          goto fallback;
 
598
        }
 
599
        custom_argv[custom_argc-1] = new_arg;
 
600
        custom_argv[custom_argc] = NULL;        
497
601
      }
498
602
    }
499
603
    free(org_line);
500
 
  } else{
 
604
  } else {
501
605
    /* Check for harmful errors and go to fallback. Other errors might
502
606
       not affect opening plugins */
503
607
    if (errno == EMFILE or errno == ENFILE or errno == ENOMEM){
506
610
      goto fallback;
507
611
    }
508
612
  }
509
 
 
 
613
  /* If there was any arguments from configuration file,
 
614
     pass them to parser as command arguments */
510
615
  if(custom_argv != NULL){
511
 
    custom_argv[0] = argv[0];
512
 
    ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, &plugin_list);
 
616
    ret = argp_parse (&argp, custom_argc, custom_argv, ARGP_IN_ORDER,
 
617
                      0, NULL);
513
618
    if (ret == ARGP_ERR_UNKNOWN){
514
619
      fprintf(stderr, "Unknown error while parsing arguments\n");
515
620
      exitstatus = EXIT_FAILURE;
517
622
    }
518
623
  }
519
624
  
 
625
  /* Parse actual command line arguments, to let them override the
 
626
     config file */
 
627
  ret = argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
 
628
  if (ret == ARGP_ERR_UNKNOWN){
 
629
    fprintf(stderr, "Unknown error while parsing arguments\n");
 
630
    exitstatus = EXIT_FAILURE;
 
631
    goto fallback;
 
632
  }
 
633
  
520
634
  if(debug){
521
635
    for(plugin *p = plugin_list; p != NULL; p=p->next){
522
636
      fprintf(stderr, "Plugin: %s has %d arguments\n",
531
645
    }
532
646
  }
533
647
  
 
648
  /* Strip permissions down to nobody */
534
649
  ret = setuid(uid);
535
650
  if (ret == -1){
536
651
    perror("setuid");
537
 
  }
538
 
  
 
652
  }  
539
653
  setgid(gid);
540
654
  if (ret == -1){
541
655
    perror("setgid");
542
656
  }
543
657
  
544
 
  dir = opendir(plugindir);
 
658
  if (plugindir == NULL){
 
659
    dir = opendir(PDIR);
 
660
  } else {
 
661
    dir = opendir(plugindir);
 
662
  }
 
663
  
545
664
  if(dir == NULL){
546
665
    perror("Could not open plugin dir");
547
666
    exitstatus = EXIT_FAILURE;
563
682
  
564
683
  FD_ZERO(&rfds_all);
565
684
  
 
685
  /* Read and execute any executable in the plugin directory*/
566
686
  while(true){
567
687
    dirst = readdir(dir);
568
688
    
569
 
    // All directory entries have been processed
 
689
    /* All directory entries have been processed */
570
690
    if(dirst == NULL){
571
691
      if (errno == EBADF){
572
692
        perror("readdir");
578
698
    
579
699
    d_name_len = strlen(dirst->d_name);
580
700
    
581
 
    // Ignore dotfiles, backup files and other junk
 
701
    /* Ignore dotfiles, backup files and other junk */
582
702
    {
583
703
      bool bad_name = false;
584
704
      
599
719
          break;
600
720
        }
601
721
      }
602
 
      
603
722
      if(bad_name){
604
723
        continue;
605
724
      }
606
 
      
607
725
      for(const char **suf = bad_suffixes; *suf != NULL; suf++){
608
726
        size_t suf_len = strlen(*suf);
609
727
        if((d_name_len >= suf_len)
624
742
    }
625
743
 
626
744
    char *filename;
627
 
    ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
745
    if(plugindir == NULL){
 
746
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
 
747
    } else {
 
748
      ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
749
    }
628
750
    if(ret < 0){
629
751
      perror("asprintf");
630
752
      continue;
636
758
      free(filename);
637
759
      continue;
638
760
    }
639
 
    
 
761
 
 
762
    /* Ignore non-executable files */
640
763
    if (not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
641
764
      if(debug){
642
765
        fprintf(stderr, "Ignoring plugin dir entry \"%s\""
645
768
      free(filename);
646
769
      continue;
647
770
    }
648
 
    plugin *p = getplugin(dirst->d_name, &plugin_list);
 
771
    
 
772
    plugin *p = getplugin(dirst->d_name);
649
773
    if(p == NULL){
650
774
      perror("getplugin");
651
775
      free(filename);
661
785
    }
662
786
    {
663
787
      /* Add global arguments to argument list for this plugin */
664
 
      plugin *g = getplugin(NULL, &plugin_list);
 
788
      plugin *g = getplugin(NULL);
665
789
      if(g != NULL){
666
790
        for(char **a = g->argv + 1; *a != NULL; a++){
667
791
          if(not add_argument(p, *a)){
670
794
        }
671
795
        /* Add global environment variables */
672
796
        for(char **e = g->environ; *e != NULL; e++){
673
 
          if(not add_environment(p, *e)){
 
797
          if(not add_environment(p, *e, false)){
674
798
            perror("add_environment");
675
799
          }
676
800
        }
681
805
       process, too. */
682
806
    if(p->environ[0] != NULL){
683
807
      for(char **e = environ; *e != NULL; e++){
684
 
        char *copy = strdup(*e);
685
 
        if(copy == NULL){
686
 
          perror("strdup");
687
 
          continue;
688
 
        }
689
 
        if(not add_environment(p, copy)){
 
808
        if(not add_environment(p, *e, false)){
690
809
          perror("add_environment");
691
810
        }
692
811
      }
699
818
      exitstatus = EXIT_FAILURE;
700
819
      goto fallback;
701
820
    }
 
821
    /* Ask OS to automatic close the pipe on exec */
702
822
    ret = set_cloexec_flag(pipefd[0]);
703
823
    if(ret < 0){
704
824
      perror("set_cloexec_flag");
718
838
      exitstatus = EXIT_FAILURE;
719
839
      goto fallback;
720
840
    }
721
 
    // Starting a new process to be watched
 
841
    /* Starting a new process to be watched */
722
842
    pid_t pid = fork();
723
843
    if(pid == -1){
724
844
      perror("fork");
762
882
      }
763
883
      /* no return */
764
884
    }
765
 
    /* parent process */
 
885
    /* Parent process */
 
886
    close(pipefd[1]);           /* Close unused write end of pipe */
766
887
    free(filename);
767
 
    close(pipefd[1]);           /* close unused write end of pipe */
768
 
    process *new_process = malloc(sizeof(process));
769
 
    if (new_process == NULL){
770
 
      perror("malloc");
 
888
    plugin *new_plugin = getplugin(dirst->d_name);
 
889
    if (new_plugin == NULL){
 
890
      perror("getplugin");
771
891
      ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
772
892
      if(ret < 0){
773
 
        perror("sigprocmask");
 
893
        perror("sigprocmask");
774
894
      }
775
895
      exitstatus = EXIT_FAILURE;
776
896
      goto fallback;
777
897
    }
778
898
    
779
 
    *new_process = (struct process){ .pid = pid,
780
 
                                     .fd = pipefd[0],
781
 
                                     .next = process_list };
782
 
    // List handling
783
 
    process_list = new_process;
 
899
    new_plugin->pid = pid;
 
900
    new_plugin->fd = pipefd[0];
 
901
    
784
902
    /* Unblock SIGCHLD so signal handler can be run if this process
785
903
       has already completed */
786
904
    ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
790
908
      goto fallback;
791
909
    }
792
910
    
793
 
    FD_SET(new_process->fd, &rfds_all);
 
911
    FD_SET(new_plugin->fd, &rfds_all);
794
912
    
795
 
    if (maxfd < new_process->fd){
796
 
      maxfd = new_process->fd;
 
913
    if (maxfd < new_plugin->fd){
 
914
      maxfd = new_plugin->fd;
797
915
    }
798
916
    
799
917
  }
800
918
  
801
 
  free_plugin_list(plugin_list);
802
 
  plugin_list = NULL;
803
 
  
804
919
  closedir(dir);
805
920
  dir = NULL;
806
 
    
807
 
  if (process_list == NULL){
808
 
    fprintf(stderr, "No plugin processes started. Incorrect plugin"
809
 
            " directory?\n");
810
 
    process_list = NULL;
 
921
 
 
922
  for(plugin *p = plugin_list; p != NULL; p = p->next){
 
923
    if(p->pid != 0){
 
924
      break;
 
925
    }
 
926
    if(p->next == NULL){
 
927
      fprintf(stderr, "No plugin processes started. Incorrect plugin"
 
928
              " directory?\n");
 
929
      free_plugin_list();
 
930
    }
811
931
  }
812
 
  while(process_list){
 
932
 
 
933
  /* Main loop while running plugins exist */
 
934
  while(plugin_list){
813
935
    fd_set rfds = rfds_all;
814
936
    int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
815
937
    if (select_ret == -1){
819
941
    }
820
942
    /* OK, now either a process completed, or something can be read
821
943
       from one of them */
822
 
    for(process *proc = process_list; proc ; proc = proc->next){
 
944
    for(plugin *proc = plugin_list; proc != NULL; proc = proc->next){
823
945
      /* Is this process completely done? */
824
946
      if(proc->eof and proc->completed){
825
947
        /* Only accept the plugin output if it exited cleanly */
826
948
        if(not WIFEXITED(proc->status)
827
949
           or WEXITSTATUS(proc->status) != 0){
828
950
          /* Bad exit by plugin */
 
951
 
829
952
          if(debug){
830
953
            if(WIFEXITED(proc->status)){
831
954
              fprintf(stderr, "Plugin %u exited with status %d\n",
840
963
                      (unsigned int) (proc->pid));
841
964
            }
842
965
          }
 
966
          
843
967
          /* Remove the plugin */
844
968
          FD_CLR(proc->fd, &rfds_all);
 
969
 
845
970
          /* Block signal while modifying process_list */
846
 
          ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
971
          ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
847
972
          if(ret < 0){
848
973
            perror("sigprocmask");
849
974
            exitstatus = EXIT_FAILURE;
850
975
            goto fallback;
851
976
          }
852
 
          /* Delete this process entry from the list */
853
 
          if(process_list == proc){
854
 
            /* First one - simple */
855
 
            process_list = proc->next;
856
 
          } else {
857
 
            /* Second one or later */
858
 
            for(process *p = process_list; p != NULL; p = p->next){
859
 
              if(p->next == proc){
860
 
                p->next = proc->next;
861
 
                break;
862
 
              }
863
 
            }
864
 
          }
 
977
          free_plugin(proc);
865
978
          /* We are done modifying process list, so unblock signal */
866
979
          ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
867
980
                             NULL);
868
981
          if(ret < 0){
869
982
            perror("sigprocmask");
870
 
          }
871
 
          free(proc->buffer);
872
 
          free(proc);
873
 
          /* We deleted this process from the list, so we can't go
874
 
             proc->next.  Therefore, start over from the beginning of
875
 
             the process list */
876
 
          break;
 
983
            exitstatus = EXIT_FAILURE;
 
984
            goto fallback;
 
985
          }
 
986
          
 
987
          if(plugin_list == NULL){
 
988
            break;
 
989
          }
 
990
          continue;
877
991
        }
 
992
        
878
993
        /* This process exited nicely, so print its buffer */
879
994
 
880
 
        bool bret = print_out_password(proc->buffer, proc->buffer_length);
 
995
        bool bret = print_out_password(proc->buffer,
 
996
                                       proc->buffer_length);
881
997
        if(not bret){
882
998
          perror("print_out_password");
883
999
          exitstatus = EXIT_FAILURE;
884
1000
        }
885
1001
        goto fallback;
886
1002
      }
 
1003
      
887
1004
      /* This process has not completed.  Does it have any output? */
888
1005
      if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
889
1006
        /* This process had nothing to say at this time */
919
1036
 
920
1037
 fallback:
921
1038
  
922
 
  if(process_list == NULL or exitstatus != EXIT_SUCCESS){
923
 
    /* Fallback if all plugins failed, none are found or an error occured */
 
1039
  if(plugin_list == NULL or exitstatus != EXIT_SUCCESS){
 
1040
    /* Fallback if all plugins failed, none are found or an error
 
1041
       occured */
924
1042
    bool bret;
925
1043
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
926
1044
    char *passwordbuffer = getpass("Password: ");
927
 
    bret = print_out_password(passwordbuffer, strlen(passwordbuffer));
 
1045
    size_t len = strlen(passwordbuffer);
 
1046
    /* Strip trailing newline */
 
1047
    if(len > 0 and passwordbuffer[len-1] == '\n'){
 
1048
      passwordbuffer[len-1] = '\0'; /* not strictly necessary */
 
1049
      len--;
 
1050
    }
 
1051
    bret = print_out_password(passwordbuffer, len);
928
1052
    if(not bret){
929
1053
      perror("print_out_password");
930
1054
      exitstatus = EXIT_FAILURE;
939
1063
  }
940
1064
 
941
1065
  if(custom_argv != NULL){
942
 
    for(char **arg = custom_argv; *arg != NULL; arg++){
 
1066
    for(char **arg = custom_argv+1; *arg != NULL; arg++){
943
1067
      free(*arg);
944
1068
    }
945
1069
    free(custom_argv);
946
1070
  }
947
 
  free_plugin_list(plugin_list);
948
1071
  
949
1072
  if(dir != NULL){
950
1073
    closedir(dir);
951
1074
  }
952
1075
  
953
1076
  /* Free the process list and kill the processes */
954
 
  for(process *next; process_list != NULL; process_list = next){
955
 
    next = process_list->next;
956
 
    close(process_list->fd);
957
 
    ret = kill(process_list->pid, SIGTERM);
958
 
    if(ret == -1 and errno != ESRCH){
959
 
      /* set-uid proccesses migth not get closed */
960
 
      perror("kill");
 
1077
  for(plugin *p = plugin_list; p != NULL; p = p->next){
 
1078
    if(p->pid != 0){
 
1079
      close(p->fd);
 
1080
      ret = kill(p->pid, SIGTERM);
 
1081
      if(ret == -1 and errno != ESRCH){
 
1082
        /* Set-uid proccesses might not get closed */
 
1083
        perror("kill");
 
1084
      }
961
1085
    }
962
 
    free(process_list->buffer);
963
 
    free(process_list);
964
1086
  }
965
1087
  
966
1088
  /* Wait for any remaining child processes to terminate */
970
1092
  if(errno != ECHILD){
971
1093
    perror("wait");
972
1094
  }
 
1095
 
 
1096
  free_plugin_list();
 
1097
  
 
1098
  free(plugindir);
 
1099
  free(argfile);
973
1100
  
974
1101
  return exitstatus;
975
1102
}