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));
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
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. */
379
error_t parse_opt (int key, char *arg, __attribute__((unused))
380
struct argp_state *state) {
363
382
case 'g': /* --global-options */
364
383
if (arg != NULL){
383
402
if(envdef == NULL){
386
if(not add_environment(getplugin(NULL), envdef)){
405
if(not add_environment(getplugin(NULL), envdef, true)){
387
406
perror("add_environment");
429
if(not add_environment(getplugin(p_name), envdef)){
448
if(not add_environment(getplugin(p_name), envdef, true)){
430
449
perror("add_environment");
475
struct argp argp = { .options = options, .parser = parse_opt,
476
.args_doc = "[+PLUS_SEPARATED_OPTIONS]",
500
/* This option parser is the same as parse_opt() above, except it
501
ignores everything but the --config-file option. */
502
error_t parse_opt_config_file (int key, char *arg,
503
__attribute__((unused))
504
struct argp_state *state) {
506
case 'g': /* --global-options */
507
case 'G': /* --global-env */
508
case 'o': /* --options-for */
509
case 'E': /* --env-for */
510
case 'd': /* --disable */
511
case 'e': /* --enable */
512
case 128: /* --plugin-dir */
514
case 129: /* --config-file */
515
argfile = strdup(arg);
520
case 130: /* --userid */
521
case 131: /* --groupid */
522
case 132: /* --debug */
527
return ARGP_ERR_UNKNOWN;
532
struct argp argp = { .options = options,
533
.parser = parse_opt_config_file,
477
535
.doc = "Mandos plugin runner -- Run plugins" };
479
ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
537
/* Parse using the parse_opt_config_file in order to get the custom
538
config file location, if any. */
539
ret = argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
480
540
if (ret == ARGP_ERR_UNKNOWN){
481
541
fprintf(stderr, "Unknown error while parsing arguments\n");
482
542
exitstatus = EXIT_FAILURE;
486
/* Opens the configfile if aviable */
546
/* Reset to the normal argument parser */
547
argp.parser = parse_opt;
549
/* Open the configfile if available */
487
550
if (argfile == NULL){
488
551
conffp = fopen(AFILE, "r");
507
570
custom_argv[0] = argv[0];
508
571
custom_argv[1] = NULL;
510
/* for each line in the config file, strip whitespace and ignore commented text */
573
/* for each line in the config file, strip whitespace and ignore
512
576
sret = getline(&org_line, &size, conffp);
554
618
/* If there was any arguments from configuration file,
555
619
pass them to parser as command arguments */
556
620
if(custom_argv != NULL){
557
ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, NULL);
621
ret = argp_parse (&argp, custom_argc, custom_argv, ARGP_IN_ORDER,
558
623
if (ret == ARGP_ERR_UNKNOWN){
559
624
fprintf(stderr, "Unknown error while parsing arguments\n");
560
625
exitstatus = EXIT_FAILURE;
630
/* Parse actual command line arguments, to let them override the
632
ret = argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
633
if (ret == ARGP_ERR_UNKNOWN){
634
fprintf(stderr, "Unknown error while parsing arguments\n");
635
exitstatus = EXIT_FAILURE;
566
640
for(plugin *p = plugin_list; p != NULL; p=p->next){
567
641
fprintf(stderr, "Plugin: %s has %d arguments\n",
722
796
/* Add global environment variables */
723
797
for(char **e = g->environ; *e != NULL; e++){
724
if(not add_environment(p, *e)){
798
if(not add_environment(p, *e, false)){
725
799
perror("add_environment");
733
807
if(p->environ[0] != NULL){
734
808
for(char **e = environ; *e != NULL; e++){
735
char *copy = strdup(*e);
740
if(not add_environment(p, copy)){
809
if(not add_environment(p, *e, false)){
741
810
perror("add_environment");