3
3
* Mandos plugin runner - Run Mandos plugins
5
* Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
5
* Copyright © 2008,2009 Teddy Hogeborn
6
* Copyright © 2008,2009 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 */
187
186
size_t namelen = (size_t)(strchrnul(def, '=') - def);
188
187
/* Search for this environment variable */
189
188
for(char **e = p->environ; *e != NULL; e++){
190
if(strncmp(*e, def, namelen+1) == 0){
189
if(strncmp(*e, def, namelen + 1) == 0){
191
190
/* It already exists */
193
char *new = realloc(*e, strlen(def));
192
char *new = realloc(*e, strlen(def) + 1);
208
207
* Descriptor Flags".
209
208
* *Note File Descriptor Flags:(libc)Descriptor Flags.
211
static int set_cloexec_flag(int fd)
210
static int set_cloexec_flag(int fd){
213
211
int ret = fcntl(fd, F_GETFD, 0);
214
212
/* If reading the flags failed, return error indication now. */
223
221
/* Mark processes as completed when they exit, and save their exit
225
void handle_sigchld(__attribute__((unused)) int sig){
223
static void handle_sigchld(__attribute__((unused)) int sig){
227
225
plugin *proc = plugin_list;
255
253
/* Prints out a password to stdout */
256
bool print_out_password(const char *buffer, size_t length){
254
static bool print_out_password(const char *buffer, size_t length){
258
if(length>0 and buffer[length-1] == '\n'){
261
256
for(size_t written = 0; written < length; written += (size_t)ret){
262
257
ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO, buffer + written,
263
258
length - written));
344
340
{ .name = "global-options", .key = 'g',
345
341
.arg = "OPTION[,OPTION[,...]]",
346
342
.doc = "Options passed to all plugins" },
347
{ .name = "global-env", .key = 'e',
343
{ .name = "global-env", .key = 'G',
348
344
.arg = "VAR=value",
349
345
.doc = "Environment variable passed to all plugins" },
350
346
{ .name = "options-for", .key = 'o',
351
347
.arg = "PLUGIN:OPTION[,OPTION[,...]]",
352
348
.doc = "Options passed only to specified plugin" },
353
{ .name = "env-for", .key = 'f',
349
{ .name = "env-for", .key = 'E',
354
350
.arg = "PLUGIN:ENV=value",
355
351
.doc = "Environment variable passed to specified plugin" },
356
352
{ .name = "disable", .key = 'd',
358
354
.doc = "Disable a specific plugin", .group = 1 },
355
{ .name = "enable", .key = 'e',
357
.doc = "Enable a specific plugin", .group = 1 },
359
358
{ .name = "plugin-dir", .key = 128,
360
359
.arg = "DIRECTORY",
361
360
.doc = "Specify a different plugin directory", .group = 2 },
393
case 'e': /* --global-env */
392
case 'G': /* --global-env */
398
char *envdef = strdup(arg);
402
if(not add_environment(getplugin(NULL), envdef, true)){
403
perror("add_environment");
396
if(not add_environment(getplugin(NULL), arg, true)){
397
perror("add_environment");
407
400
case 'o': /* --options-for */
408
401
if (arg != NULL){
409
402
char *p_name = strsep(&arg, ":");
410
if(p_name[0] == '\0'){
403
if(p_name[0] == '\0' or arg == NULL){
413
406
char *opt = strsep(&arg, ":");
407
if(opt[0] == '\0' or opt == NULL){
419
while((p = strsep(&opt, ",")) != NULL){
423
if(not add_argument(getplugin(p_name), p)){
424
perror("add_argument");
425
return ARGP_ERR_UNKNOWN;
411
while((p = strsep(&opt, ",")) != NULL){
415
if(not add_argument(getplugin(p_name), p)){
416
perror("add_argument");
417
return ARGP_ERR_UNKNOWN;
431
case 'f': /* --env-for */
422
case 'E': /* --env-for */
437
428
if(envdef == NULL){
440
char *p_name = strndup(arg, (size_t) (envdef-arg));
445
if(not add_environment(getplugin(p_name), envdef, true)){
432
if(not add_environment(getplugin(arg), envdef+1, true)){
446
433
perror("add_environment");
477
474
case ARGP_KEY_ARG:
478
fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
475
/* Cryptsetup always passes an argument, which is an empty
476
string if "none" was specified in /etc/crypttab. So if
477
argument was empty, we ignore it silently. */
479
fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
480
482
case ARGP_KEY_END:
492
494
struct argp_state *state) {
494
496
case 'g': /* --global-options */
495
case 'e': /* --global-env */
497
case 'G': /* --global-env */
496
498
case 'o': /* --options-for */
497
case 'f': /* --env-for */
499
case 'E': /* --env-for */
498
500
case 'd': /* --disable */
501
case 'e': /* --enable */
499
502
case 128: /* --plugin-dir */
501
504
case 129: /* --config-file */
502
506
argfile = strdup(arg);
503
507
if(argfile == NULL){
504
508
perror("strdup");
543
547
char *org_line = NULL;
544
548
char *p, *arg, *new_arg, *line;
547
550
const char whitespace_delims[] = " \r\t\f\v\n";
548
551
const char comment_delim[] = "#";
699
702
const char const *bad_suffixes[] = { "~", "#", ".dpkg-new",
701
705
".dpkg-divert", NULL };
702
706
for(const char **pre = bad_prefixes; *pre != NULL; pre++){
703
707
size_t pre_len = strlen(*pre);
737
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);
739
747
perror("asprintf");
840
848
perror("sigaction");
841
849
_exit(EXIT_FAILURE);
843
ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
851
ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
845
853
perror("sigprocmask");
846
854
_exit(EXIT_FAILURE);
849
857
ret = dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
930
937
/* OK, now either a process completed, or something can be read
931
938
from one of them */
932
for(plugin *proc = plugin_list; proc != NULL; proc = proc->next){
939
for(plugin *proc = plugin_list; proc != NULL;){
933
940
/* Is this process completely done? */
934
941
if(proc->eof and proc->completed){
935
942
/* Only accept the plugin output if it exited cleanly */
962
969
exitstatus = EXIT_FAILURE;
973
plugin *next_plugin = proc->next;
965
974
free_plugin(proc);
966
977
/* We are done modifying process list, so unblock signal */
967
978
ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
992
1004
/* This process has not completed. Does it have any output? */
993
1005
if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
994
1006
/* This process had nothing to say at this time */
997
1010
/* Before reading, make the process' data buffer large enough */
1006
1019
proc->buffer_size += BUFFER_SIZE;
1008
1021
/* Read from the process */
1009
ret = read(proc->fd, proc->buffer + proc->buffer_length,
1022
sret = read(proc->fd, proc->buffer + proc->buffer_length,
1012
1025
/* Read error from this process; ignore the error */
1017
1031
proc->eof = true;
1019
proc->buffer_length += (size_t) ret;
1033
proc->buffer_length += (size_t) sret;
1031
1045
fprintf(stderr, "Going to fallback mode using getpass(3)\n");
1032
1046
char *passwordbuffer = getpass("Password: ");
1033
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);
1035
1055
perror("print_out_password");
1036
1056
exitstatus = EXIT_FAILURE;