97
97
static plugin *plugin_list = NULL;
99
/* Gets a existing plugin based on name,
99
/* Gets an existing plugin based on name,
100
100
or if none is found, creates a new one */
101
101
static plugin *getplugin(char *name){
102
102
/* Check for exiting plugin with that name */
181
181
/* Add to a plugin's environment */
182
static bool add_environment(plugin *p, const char *def){
182
static bool add_environment(plugin *p, const char *def, bool replace){
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 */
193
char *new = realloc(*e, strlen(def) + 1);
186
203
return add_to_char_array(def, &(p->environ), &(p->envc));
327
344
{ .name = "global-options", .key = 'g',
328
345
.arg = "OPTION[,OPTION[,...]]",
329
346
.doc = "Options passed to all plugins" },
330
{ .name = "global-envs", .key = 'e',
347
{ .name = "global-env", .key = 'G',
331
348
.arg = "VAR=value",
332
349
.doc = "Environment variable passed to all plugins" },
333
350
{ .name = "options-for", .key = 'o',
334
351
.arg = "PLUGIN:OPTION[,OPTION[,...]]",
335
352
.doc = "Options passed only to specified plugin" },
336
{ .name = "envs-for", .key = 'f',
353
{ .name = "env-for", .key = 'E',
337
354
.arg = "PLUGIN:ENV=value",
338
355
.doc = "Environment variable passed to specified plugin" },
339
356
{ .name = "disable", .key = 'd',
341
358
.doc = "Disable a specific plugin", .group = 1 },
359
{ .name = "enable", .key = 'e',
361
.doc = "Enable a specific plugin", .group = 1 },
342
362
{ .name = "plugin-dir", .key = 128,
343
363
.arg = "DIRECTORY",
344
364
.doc = "Specify a different plugin directory", .group = 2 },
359
379
error_t parse_opt (int key, char *arg, __attribute__((unused))
360
380
struct argp_state *state) {
361
/* Get the INPUT argument from `argp_parse', which we know is a
362
pointer to our plugin list pointer. */
364
382
case 'g': /* --global-options */
365
383
if (arg != NULL){
378
case 'e': /* --global-envs */
396
case 'G': /* --global-env */
383
char *envdef = strdup(arg);
387
if(not add_environment(getplugin(NULL), envdef)){
388
perror("add_environment");
400
if(not add_environment(getplugin(NULL), arg, true)){
401
perror("add_environment");
392
404
case 'o': /* --options-for */
393
405
if (arg != NULL){
394
406
char *p_name = strsep(&arg, ":");
395
if(p_name[0] == '\0'){
407
if(p_name[0] == '\0' or arg == NULL){
398
410
char *opt = strsep(&arg, ":");
411
if(opt[0] == '\0' or opt == NULL){
404
while((p = strsep(&opt, ",")) != NULL){
408
if(not add_argument(getplugin(p_name), p)){
409
perror("add_argument");
410
return ARGP_ERR_UNKNOWN;
415
while((p = strsep(&opt, ",")) != NULL){
419
if(not add_argument(getplugin(p_name), p)){
420
perror("add_argument");
421
return ARGP_ERR_UNKNOWN;
416
case 'f': /* --envs-for */
426
case 'E': /* --env-for */
422
432
if(envdef == NULL){
425
char *p_name = strndup(arg, (size_t) (envdef-arg));
430
if(not add_environment(getplugin(p_name), envdef)){
436
if(not add_environment(getplugin(arg), envdef+1, true)){
431
437
perror("add_environment");
441
447
p->disabled = true;
450
case 'e': /* --enable */
452
plugin *p = getplugin(arg);
454
return ARGP_ERR_UNKNOWN;
444
459
case 128: /* --plugin-dir */
445
461
plugindir = strdup(arg);
446
462
if(plugindir == NULL){
447
463
perror("strdup");
450
466
case 129: /* --config-file */
451
argfile = strdup(arg);
467
/* This is already done by parse_opt_config_file() */
456
469
case 130: /* --userid */
457
470
uid = (uid_t)strtol(arg, NULL, 10);
476
struct argp argp = { .options = options, .parser = parse_opt,
477
.args_doc = "[+PLUS_SEPARATED_OPTIONS]",
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 */
505
argfile = strdup(arg);
510
case 130: /* --userid */
511
case 131: /* --groupid */
512
case 132: /* --debug */
517
return ARGP_ERR_UNKNOWN;
522
struct argp argp = { .options = options,
523
.parser = parse_opt_config_file,
478
525
.doc = "Mandos plugin runner -- Run plugins" };
480
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);
481
530
if (ret == ARGP_ERR_UNKNOWN){
482
531
fprintf(stderr, "Unknown error while parsing arguments\n");
483
532
exitstatus = EXIT_FAILURE;
487
/* Opens the configfile if aviable */
536
/* Reset to the normal argument parser */
537
argp.parser = parse_opt;
539
/* Open the configfile if available */
488
540
if (argfile == NULL){
489
541
conffp = fopen(AFILE, "r");
556
608
/* If there was any arguments from configuration file,
557
609
pass them to parser as command arguments */
558
610
if(custom_argv != NULL){
559
ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, NULL);
611
ret = argp_parse (&argp, custom_argc, custom_argv, ARGP_IN_ORDER,
560
613
if (ret == ARGP_ERR_UNKNOWN){
561
614
fprintf(stderr, "Unknown error while parsing arguments\n");
562
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;
568
630
for(plugin *p = plugin_list; p != NULL; p=p->next){
569
631
fprintf(stderr, "Plugin: %s has %d arguments\n",
724
786
/* Add global environment variables */
725
787
for(char **e = g->environ; *e != NULL; e++){
726
if(not add_environment(p, *e)){
788
if(not add_environment(p, *e, false)){
727
789
perror("add_environment");
735
797
if(p->environ[0] != NULL){
736
798
for(char **e = environ; *e != NULL; e++){
737
char *copy = strdup(*e);
742
if(not add_environment(p, copy)){
799
if(not add_environment(p, *e, false)){
743
800
perror("add_environment");
876
933
/* OK, now either a process completed, or something can be read
877
934
from one of them */
878
for(plugin *proc = plugin_list; proc != NULL; proc = proc->next){
935
for(plugin *proc = plugin_list; proc != NULL;){
879
936
/* Is this process completely done? */
880
937
if(proc->eof and proc->completed){
881
938
/* Only accept the plugin output if it exited cleanly */
908
965
exitstatus = EXIT_FAILURE;
912
969
/* We are done modifying process list, so unblock signal */
913
970
ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
938
999
/* This process has not completed. Does it have any output? */
939
1000
if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
940
1001
/* This process had nothing to say at this time */
943
1005
/* Before reading, make the process' data buffer large enough */