3
3
* Mandos plugin runner - Run Mandos plugins
5
* Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
5
* Copyright © 2008 Teddy Hogeborn
6
* Copyright © 2008 Björn Påhlsson
7
8
* This program is free software: you can redistribute it and/or
8
9
* modify it under the terms of the GNU General Public License as
27
28
#include <stdlib.h> /* malloc(), exit(), EXIT_FAILURE,
28
29
EXIT_SUCCESS, realloc() */
29
30
#include <stdbool.h> /* bool, true, false */
30
#include <stdio.h> /* perror, popen(), fileno(),
31
fprintf(), stderr, STDOUT_FILENO */
31
#include <stdio.h> /* perror, fileno(), fprintf(),
32
stderr, STDOUT_FILENO */
32
33
#include <sys/types.h> /* DIR, opendir(), stat(), struct
33
34
stat, waitpid(), WIFEXITED(),
34
35
WEXITSTATUS(), wait(), pid_t,
46
47
fcntl(), setuid(), setgid(),
47
48
F_GETFD, F_SETFD, FD_CLOEXEC,
48
49
access(), pipe(), fork(), close()
49
dup2, STDOUT_FILENO, _exit(),
50
dup2(), STDOUT_FILENO, _exit(),
50
51
execv(), write(), read(),
52
53
#include <fcntl.h> /* fcntl(), F_GETFD, F_SETFD,
69
70
#define PDIR "/lib/mandos/plugins.d"
70
71
#define AFILE "/conf/conf.d/mandos/plugin-runner.conf"
72
const char *argp_program_version = "plugin-runner 1.0";
73
const char *argp_program_version = "plugin-runner " VERSION;
73
74
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
77
76
typedef struct plugin{
78
77
char *name; /* can be NULL or any plugin name */
97
96
static plugin *plugin_list = NULL;
99
/* Gets a existing plugin based on name,
98
/* Gets an existing plugin based on name,
100
99
or if none is found, creates a new one */
101
100
static plugin *getplugin(char *name){
102
101
/* Check for exiting plugin with that name */
181
180
/* Add to a plugin's environment */
182
static bool add_environment(plugin *p, const char *def){
181
static bool add_environment(plugin *p, const char *def, bool replace){
185
/* namelen = length of name of environment variable */
186
size_t namelen = (size_t)(strchrnul(def, '=') - def);
187
/* Search for this environment variable */
188
for(char **e = p->environ; *e != NULL; e++){
189
if(strncmp(*e, def, namelen + 1) == 0){
190
/* It already exists */
192
char *new = realloc(*e, strlen(def) + 1);
186
202
return add_to_char_array(def, &(p->environ), &(p->envc));
191
207
* Descriptor Flags".
192
208
* *Note File Descriptor Flags:(libc)Descriptor Flags.
194
static int set_cloexec_flag(int fd)
210
static int set_cloexec_flag(int fd){
196
211
int ret = fcntl(fd, F_GETFD, 0);
197
212
/* If reading the flags failed, return error indication now. */
206
221
/* Mark processes as completed when they exit, and save their exit
208
void handle_sigchld(__attribute__((unused)) int sig){
223
static void handle_sigchld(__attribute__((unused)) int sig){
210
225
plugin *proc = plugin_list;
238
253
/* Prints out a password to stdout */
239
bool print_out_password(const char *buffer, size_t length){
254
static bool print_out_password(const char *buffer, size_t length){
241
if(length>0 and buffer[length-1] == '\n'){
244
256
for(size_t written = 0; written < length; written += (size_t)ret){
245
257
ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO, buffer + written,
246
258
length - written));
327
339
{ .name = "global-options", .key = 'g',
328
340
.arg = "OPTION[,OPTION[,...]]",
329
341
.doc = "Options passed to all plugins" },
330
{ .name = "global-envs", .key = 'e',
342
{ .name = "global-env", .key = 'G',
331
343
.arg = "VAR=value",
332
344
.doc = "Environment variable passed to all plugins" },
333
345
{ .name = "options-for", .key = 'o',
334
346
.arg = "PLUGIN:OPTION[,OPTION[,...]]",
335
347
.doc = "Options passed only to specified plugin" },
336
{ .name = "envs-for", .key = 'f',
348
{ .name = "env-for", .key = 'E',
337
349
.arg = "PLUGIN:ENV=value",
338
350
.doc = "Environment variable passed to specified plugin" },
339
351
{ .name = "disable", .key = 'd',
341
353
.doc = "Disable a specific plugin", .group = 1 },
354
{ .name = "enable", .key = 'e',
356
.doc = "Enable a specific plugin", .group = 1 },
342
357
{ .name = "plugin-dir", .key = 128,
343
358
.arg = "DIRECTORY",
344
359
.doc = "Specify a different plugin directory", .group = 2 },
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. */
374
error_t parse_opt (int key, char *arg, __attribute__((unused))
375
struct argp_state *state) {
363
377
case 'g': /* --global-options */
364
378
if (arg != NULL){
377
case 'e': /* --global-envs */
391
case 'G': /* --global-env */
382
char *envdef = strdup(arg);
386
if(not add_environment(getplugin(NULL), envdef)){
387
perror("add_environment");
395
if(not add_environment(getplugin(NULL), arg, true)){
396
perror("add_environment");
391
399
case 'o': /* --options-for */
392
400
if (arg != NULL){
393
401
char *p_name = strsep(&arg, ":");
394
if(p_name[0] == '\0'){
402
if(p_name[0] == '\0' or arg == NULL){
397
405
char *opt = strsep(&arg, ":");
406
if(opt[0] == '\0' or opt == NULL){
403
while((p = strsep(&opt, ",")) != NULL){
407
if(not add_argument(getplugin(p_name), p)){
408
perror("add_argument");
409
return ARGP_ERR_UNKNOWN;
410
while((p = strsep(&opt, ",")) != NULL){
414
if(not add_argument(getplugin(p_name), p)){
415
perror("add_argument");
416
return ARGP_ERR_UNKNOWN;
415
case 'f': /* --envs-for */
421
case 'E': /* --env-for */
421
427
if(envdef == NULL){
424
char *p_name = strndup(arg, (size_t) (envdef-arg));
429
if(not add_environment(getplugin(p_name), envdef)){
431
if(not add_environment(getplugin(arg), envdef+1, true)){
430
432
perror("add_environment");
440
442
p->disabled = true;
445
case 'e': /* --enable */
447
plugin *p = getplugin(arg);
449
return ARGP_ERR_UNKNOWN;
443
454
case 128: /* --plugin-dir */
444
456
plugindir = strdup(arg);
445
457
if(plugindir == NULL){
446
458
perror("strdup");
449
461
case 129: /* --config-file */
462
/* This is already done by parse_opt_config_file() */
464
case 130: /* --userid */
465
uid = (uid_t)strtol(arg, NULL, 10);
467
case 131: /* --groupid */
468
gid = (gid_t)strtol(arg, NULL, 10);
470
case 132: /* --debug */
474
/* Cryptsetup always passes an argument, which is an empty
475
string if "none" was specified in /etc/crypttab. So if
476
argument was empty, we ignore it silently. */
478
fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
484
return ARGP_ERR_UNKNOWN;
489
/* This option parser is the same as parse_opt() above, except it
490
ignores everything but the --config-file option. */
491
error_t parse_opt_config_file (int key, char *arg,
492
__attribute__((unused))
493
struct argp_state *state) {
495
case 'g': /* --global-options */
496
case 'G': /* --global-env */
497
case 'o': /* --options-for */
498
case 'E': /* --env-for */
499
case 'd': /* --disable */
500
case 'e': /* --enable */
501
case 128: /* --plugin-dir */
503
case 129: /* --config-file */
450
505
argfile = strdup(arg);
451
506
if(argfile == NULL){
452
507
perror("strdup");
455
510
case 130: /* --userid */
456
uid = (uid_t)strtol(arg, NULL, 10);
458
511
case 131: /* --groupid */
459
gid = (gid_t)strtol(arg, NULL, 10);
461
512
case 132: /* --debug */
464
513
case ARGP_KEY_ARG:
465
fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
467
514
case ARGP_KEY_END:
475
struct argp argp = { .options = options, .parser = parse_opt,
476
.args_doc = "[+PLUS_SEPARATED_OPTIONS]",
522
struct argp argp = { .options = options,
523
.parser = parse_opt_config_file,
477
525
.doc = "Mandos plugin runner -- Run plugins" };
479
ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
527
/* Parse using the parse_opt_config_file in order to get the custom
528
config file location, if any. */
529
ret = argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
480
530
if (ret == ARGP_ERR_UNKNOWN){
481
531
fprintf(stderr, "Unknown error while parsing arguments\n");
482
532
exitstatus = EXIT_FAILURE;
486
/* Opens the configfile if aviable */
536
/* Reset to the normal argument parser */
537
argp.parser = parse_opt;
539
/* Open the configfile if available */
487
540
if (argfile == NULL){
488
541
conffp = fopen(AFILE, "r");
507
560
custom_argv[0] = argv[0];
508
561
custom_argv[1] = NULL;
510
/* for each line in the config file, strip whitespace and ignore commented text */
563
/* for each line in the config file, strip whitespace and ignore
512
566
sret = getline(&org_line, &size, conffp);
554
608
/* If there was any arguments from configuration file,
555
609
pass them to parser as command arguments */
556
610
if(custom_argv != NULL){
557
ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, NULL);
611
ret = argp_parse (&argp, custom_argc, custom_argv, ARGP_IN_ORDER,
558
613
if (ret == ARGP_ERR_UNKNOWN){
559
614
fprintf(stderr, "Unknown error while parsing arguments\n");
560
615
exitstatus = EXIT_FAILURE;
620
/* Parse actual command line arguments, to let them override the
622
ret = argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
623
if (ret == ARGP_ERR_UNKNOWN){
624
fprintf(stderr, "Unknown error while parsing arguments\n");
625
exitstatus = EXIT_FAILURE;
566
630
for(plugin *p = plugin_list; p != NULL; p=p->next){
567
631
fprintf(stderr, "Plugin: %s has %d arguments\n",
638
702
const char const *bad_suffixes[] = { "~", "#", ".dpkg-new",
640
705
".dpkg-divert", NULL };
641
706
for(const char **pre = bad_prefixes; *pre != NULL; pre++){
642
707
size_t pre_len = strlen(*pre);
676
ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
741
if(plugindir == NULL){
742
ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
744
ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
678
747
perror("asprintf");
722
791
/* Add global environment variables */
723
792
for(char **e = g->environ; *e != NULL; e++){
724
if(not add_environment(p, *e)){
793
if(not add_environment(p, *e, false)){
725
794
perror("add_environment");
733
802
if(p->environ[0] != NULL){
734
803
for(char **e = environ; *e != NULL; e++){
735
char *copy = strdup(*e);
740
if(not add_environment(p, copy)){
804
if(not add_environment(p, *e, false)){
741
805
perror("add_environment");
784
848
perror("sigaction");
785
849
_exit(EXIT_FAILURE);
787
ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
851
ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
789
853
perror("sigprocmask");
790
854
_exit(EXIT_FAILURE);
793
857
ret = dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
874
937
/* OK, now either a process completed, or something can be read
875
938
from one of them */
876
for(plugin *proc = plugin_list; proc != NULL; proc = proc->next){
939
for(plugin *proc = plugin_list; proc != NULL;){
877
940
/* Is this process completely done? */
878
941
if(proc->eof and proc->completed){
879
942
/* Only accept the plugin output if it exited cleanly */
906
969
exitstatus = EXIT_FAILURE;
973
plugin *next_plugin = proc->next;
909
974
free_plugin(proc);
910
977
/* We are done modifying process list, so unblock signal */
911
978
ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
936
1004
/* This process has not completed. Does it have any output? */
937
1005
if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
938
1006
/* This process had nothing to say at this time */
941
1010
/* Before reading, make the process' data buffer large enough */
975
1045
fprintf(stderr, "Going to fallback mode using getpass(3)\n");
976
1046
char *passwordbuffer = getpass("Password: ");
977
bret = print_out_password(passwordbuffer, strlen(passwordbuffer));
1047
size_t len = strlen(passwordbuffer);
1048
/* Strip trailing newline */
1049
if(len > 0 and passwordbuffer[len-1] == '\n'){
1050
passwordbuffer[len-1] = '\0'; /* not strictly necessary */
1053
bret = print_out_password(passwordbuffer, len);
979
1055
perror("print_out_password");
980
1056
exitstatus = EXIT_FAILURE;