65
65
#include <errno.h> /* errno, EBADF */
67
67
#define BUFFER_SIZE 256
69
#define PDIR "/lib/mandos/plugins.d"
70
#define AFILE "/conf/conf.d/mandos/plugin-runner.conf"
68
#define ARGFILE "/conf/conf.d/mandos/plugin-runner.conf"
72
70
const char *argp_program_version = "plugin-runner 1.0";
73
71
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
77
typedef struct plugin{
78
char *name; /* can be NULL or any plugin name */
85
/* Variables used for running processes*/
75
typedef struct process{
92
82
volatile bool completed;
93
83
volatile int status;
87
typedef struct plugin{
88
char *name; /* can be NULL or any plugin name */
94
94
struct plugin *next;
97
static plugin *plugin_list = NULL;
99
/* Gets a 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){
97
static plugin *getplugin(char *name, plugin **plugin_list){
98
for (plugin *p = *plugin_list; p != NULL; p = p->next){
104
99
if ((p->name == name)
105
100
or (p->name and name and (strcmp(p->name, name) == 0))){
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
/* Refuse to add an existing variable */
195
181
return add_to_char_array(def, &(p->environ), &(p->envc));
199
186
* Based on the example in the GNU LibC manual chapter 13.13 "File
200
187
* Descriptor Flags".
211
198
return fcntl(fd, F_SETFD, ret | FD_CLOEXEC);
201
process *process_list = NULL;
215
203
/* Mark processes as completed when they exit, and save their exit
217
205
void handle_sigchld(__attribute__((unused)) int sig){
219
plugin *proc = plugin_list;
207
process *proc = process_list;
221
209
pid_t pid = waitpid(-1, &status, WNOHANG);
263
/* Removes and free a plugin from the plugin list */
264
static void free_plugin(plugin *plugin_node){
266
for(char **arg = plugin_node->argv; *arg != NULL; arg++){
269
free(plugin_node->argv);
270
for(char **env = plugin_node->environ; *env != NULL; env++){
273
free(plugin_node->environ);
274
free(plugin_node->buffer);
276
/* Removes the plugin from the singly-linked list */
277
if(plugin_node == plugin_list){
278
/* First one - simple */
279
plugin_list = plugin_list->next;
281
/* Second one or later */
282
for(plugin *p = plugin_list; p != NULL; p = p->next){
283
if(p->next == plugin_node){
284
p->next = plugin_node->next;
293
static void free_plugin_list(void){
294
while(plugin_list != NULL){
295
free_plugin(plugin_list);
250
static void free_plugin_list(plugin *plugin_list){
251
for(plugin *next; plugin_list != NULL; plugin_list = next){
252
next = plugin_list->next;
253
for(char **arg = plugin_list->argv; *arg != NULL; arg++){
256
free(plugin_list->argv);
257
for(char **env = plugin_list->environ; *env != NULL; env++){
260
free(plugin_list->environ);
299
265
int main(int argc, char *argv[]){
300
char *plugindir = NULL;
301
char *argfile = NULL;
266
const char *plugindir = "/lib/mandos/plugins.d";
267
const char *argfile = ARGFILE;
303
269
size_t d_name_len;
336
302
{ .name = "global-options", .key = 'g',
337
303
.arg = "OPTION[,OPTION[,...]]",
338
304
.doc = "Options passed to all plugins" },
339
{ .name = "global-env", .key = 'e',
305
{ .name = "global-envs", .key = 'e',
340
306
.arg = "VAR=value",
341
307
.doc = "Environment variable passed to all plugins" },
342
308
{ .name = "options-for", .key = 'o',
343
309
.arg = "PLUGIN:OPTION[,OPTION[,...]]",
344
310
.doc = "Options passed only to specified plugin" },
345
{ .name = "env-for", .key = 'f',
311
{ .name = "envs-for", .key = 'f',
346
312
.arg = "PLUGIN:ENV=value",
347
313
.doc = "Environment variable passed to specified plugin" },
348
314
{ .name = "disable", .key = 'd',
351
317
{ .name = "plugin-dir", .key = 128,
352
318
.arg = "DIRECTORY",
353
319
.doc = "Specify a different plugin directory", .group = 2 },
354
{ .name = "config-file", .key = 129,
356
.doc = "Specify a different configuration file", .group = 2 },
357
{ .name = "userid", .key = 130,
358
.arg = "ID", .flags = 0,
359
.doc = "User ID the plugins will run as", .group = 3 },
360
{ .name = "groupid", .key = 131,
361
.arg = "ID", .flags = 0,
362
.doc = "Group ID the plugins will run as", .group = 3 },
363
{ .name = "debug", .key = 132,
364
.doc = "Debug mode", .group = 4 },
320
{ .name = "userid", .key = 129,
321
.arg = "ID", .flags = 0,
322
.doc = "User ID the plugins will run as", .group = 2 },
323
{ .name = "groupid", .key = 130,
324
.arg = "ID", .flags = 0,
325
.doc = "Group ID the plugins will run as", .group = 2 },
326
{ .name = "debug", .key = 131,
327
.doc = "Debug mode", .group = 3 },
368
error_t parse_opt (int key, char *arg, __attribute__((unused))
369
struct argp_state *state) {
331
error_t parse_opt (int key, char *arg, struct argp_state *state) {
370
332
/* Get the INPUT argument from `argp_parse', which we know is a
371
333
pointer to our plugin list pointer. */
334
plugin **plugins = state->input;
373
case 'g': /* --global-options */
374
337
if (arg != NULL){
376
339
while((p = strsep(&arg, ",")) != NULL){
377
340
if(p[0] == '\0'){
380
if(not add_argument(getplugin(NULL), p)){
343
if(not add_argument(getplugin(NULL, plugins), p)){
381
344
perror("add_argument");
382
345
return ARGP_ERR_UNKNOWN;
387
case 'e': /* --global-env */
393
356
if(envdef == NULL){
396
if(not add_environment(getplugin(NULL), envdef)){
359
if(not add_environment(getplugin(NULL, plugins), envdef)){
397
360
perror("add_environment");
401
case 'o': /* --options-for */
402
365
if (arg != NULL){
403
366
char *p_name = strsep(&arg, ":");
404
367
if(p_name[0] == '\0'){
439
if(not add_environment(getplugin(p_name), envdef)){
402
if(not add_environment(getplugin(p_name, plugins), envdef)){
440
403
perror("add_environment");
444
case 'd': /* --disable */
445
408
if (arg != NULL){
446
plugin *p = getplugin(arg);
409
plugin *p = getplugin(arg, plugins);
448
411
return ARGP_ERR_UNKNOWN;
450
413
p->disabled = true;
453
case 128: /* --plugin-dir */
454
plugindir = strdup(arg);
455
if(plugindir == NULL){
459
case 129: /* --config-file */
460
argfile = strdup(arg);
465
case 130: /* --userid */
466
420
uid = (uid_t)strtol(arg, NULL, 10);
468
case 131: /* --groupid */
469
423
gid = (gid_t)strtol(arg, NULL, 10);
471
case 132: /* --debug */
474
428
case ARGP_KEY_ARG:
439
plugin *plugin_list = NULL;
485
441
struct argp argp = { .options = options, .parser = parse_opt,
486
442
.args_doc = "[+PLUS_SEPARATED_OPTIONS]",
487
443
.doc = "Mandos plugin runner -- Run plugins" };
489
ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
445
ret = argp_parse (&argp, argc, argv, 0, 0, &plugin_list);
490
446
if (ret == ARGP_ERR_UNKNOWN){
491
447
fprintf(stderr, "Unknown error while parsing arguments\n");
492
448
exitstatus = EXIT_FAILURE;
496
/* Opens the configfile if aviable */
497
if (argfile == NULL){
498
conffp = fopen(AFILE, "r");
500
conffp = fopen(argfile, "r");
452
conffp = fopen(argfile, "r");
502
453
if(conffp != NULL){
503
454
char *org_line = NULL;
504
455
char *p, *arg, *new_arg, *line;
565
/* If there was any arguments from configuration file,
566
pass them to parser as command arguments */
567
509
if(custom_argv != NULL){
568
ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, NULL);
510
ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, &plugin_list);
569
511
if (ret == ARGP_ERR_UNKNOWN){
570
512
fprintf(stderr, "Unknown error while parsing arguments\n");
571
513
exitstatus = EXIT_FAILURE;
725
661
/* Add global arguments to argument list for this plugin */
726
plugin *g = getplugin(NULL);
662
plugin *g = getplugin(NULL, &plugin_list);
728
664
for(char **a = g->argv + 1; *a != NULL; a++){
729
665
if(not add_argument(p, *a)){
829
close(pipefd[1]); /* Close unused write end of pipe */
831
plugin *new_plugin = getplugin(dirst->d_name);
832
if (new_plugin == NULL){
765
close(pipefd[1]); /* close unused write end of pipe */
766
process *new_process = malloc(sizeof(process));
767
if (new_process == NULL){
834
769
ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
836
perror("sigprocmask");
771
perror("sigprocmask");
838
773
exitstatus = EXIT_FAILURE;
842
new_plugin->pid = pid;
843
new_plugin->fd = pipefd[0];
777
*new_process = (struct process){ .pid = pid,
779
.next = process_list };
781
process_list = new_process;
845
782
/* Unblock SIGCHLD so signal handler can be run if this process
846
783
has already completed */
847
784
ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
854
FD_SET(new_plugin->fd, &rfds_all);
791
FD_SET(new_process->fd, &rfds_all);
856
if (maxfd < new_plugin->fd){
857
maxfd = new_plugin->fd;
793
if (maxfd < new_process->fd){
794
maxfd = new_process->fd;
799
free_plugin_list(plugin_list);
865
for(plugin *p = plugin_list; p != NULL; p = p->next){
870
fprintf(stderr, "No plugin processes started. Incorrect plugin"
805
if (process_list == NULL){
806
fprintf(stderr, "No plugin processes started. Incorrect plugin"
876
/* Main loop while running plugins exist */
878
811
fd_set rfds = rfds_all;
879
812
int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
880
813
if (select_ret == -1){
885
818
/* OK, now either a process completed, or something can be read
886
819
from one of them */
887
for(plugin *proc = plugin_list; proc != NULL; proc = proc->next){
820
for(process *proc = process_list; proc ; proc = proc->next){
888
821
/* Is this process completely done? */
889
822
if(proc->eof and proc->completed){
890
823
/* Only accept the plugin output if it exited cleanly */
891
824
if(not WIFEXITED(proc->status)
892
825
or WEXITSTATUS(proc->status) != 0){
893
826
/* Bad exit by plugin */
896
828
if(WIFEXITED(proc->status)){
897
829
fprintf(stderr, "Plugin %u exited with status %d\n",
917
847
exitstatus = EXIT_FAILURE;
850
/* Delete this process entry from the list */
851
if(process_list == proc){
852
/* First one - simple */
853
process_list = proc->next;
855
/* Second one or later */
856
for(process *p = process_list; p != NULL; p = p->next){
858
p->next = proc->next;
921
863
/* We are done modifying process list, so unblock signal */
922
864
ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
925
867
perror("sigprocmask");
926
exitstatus = EXIT_FAILURE;
930
if(plugin_list == NULL){
871
/* We deleted this process from the list, so we can't go
872
proc->next. Therefore, start over from the beginning of
936
876
/* This process exited nicely, so print its buffer */
938
878
bool bret = print_out_password(proc->buffer,
1006
945
free(custom_argv);
947
free_plugin_list(plugin_list);
1009
949
if(dir != NULL){
1013
953
/* Free the process list and kill the processes */
1014
for(plugin *p = plugin_list; p != NULL; p = p->next){
1017
ret = kill(p->pid, SIGTERM);
1018
if(ret == -1 and errno != ESRCH){
1019
/* Set-uid proccesses might not get closed */
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 */
962
free(process_list->buffer);
1025
966
/* Wait for any remaining child processes to terminate */