344
344
    { .name = "global-options", .key = 'g',
 
345
345
      .arg = "OPTION[,OPTION[,...]]",
 
346
346
      .doc = "Options passed to all plugins" },
 
347
 
    { .name = "global-env", .key = 'G',
 
 
347
    { .name = "global-env", .key = 'e',
 
348
348
      .arg = "VAR=value",
 
349
349
      .doc = "Environment variable passed to all plugins" },
 
350
350
    { .name = "options-for", .key = 'o',
 
351
351
      .arg = "PLUGIN:OPTION[,OPTION[,...]]",
 
352
352
      .doc = "Options passed only to specified plugin" },
 
353
 
    { .name = "env-for", .key = 'E',
 
 
353
    { .name = "env-for", .key = 'f',
 
354
354
      .arg = "PLUGIN:ENV=value",
 
355
355
      .doc = "Environment variable passed to specified plugin" },
 
356
356
    { .name = "disable", .key = 'd',
 
358
358
      .doc = "Disable a specific plugin", .group = 1 },
 
359
 
    { .name = "enable", .key = 'e',
 
361
 
      .doc = "Enable a specific plugin", .group = 1 },
 
362
359
    { .name = "plugin-dir", .key = 128,
 
363
360
      .arg = "DIRECTORY",
 
364
361
      .doc = "Specify a different plugin directory", .group = 2 },
 
 
379
376
  error_t parse_opt (int key, char *arg, __attribute__((unused))
 
380
377
                     struct argp_state *state) {
 
 
378
    /* Get the INPUT argument from `argp_parse', which we know is a
 
 
379
       pointer to our plugin list pointer. */
 
382
381
    case 'g':                   /* --global-options */
 
383
382
      if (arg != NULL){
 
 
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,
 
 
493
  struct argp argp = { .options = options, .parser = parse_opt,
 
535
495
                       .doc = "Mandos plugin runner -- Run plugins" };
 
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);
 
540
 
  if (ret == ARGP_ERR_UNKNOWN){
 
541
 
    fprintf(stderr, "Unknown error while parsing arguments\n");
 
542
 
    exitstatus = EXIT_FAILURE;
 
546
 
  /* Reset to the normal argument parser */
 
547
 
  argp.parser = parse_opt;
 
549
497
  /* Open the configfile if available */
 
550
498
  if (argfile == NULL){
 
551
499
    conffp = fopen(AFILE, "r");