/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugin-runner.c

merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 = 'e',
 
347
    { .name = "global-env", .key = 'G',
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 = 'f',
 
353
    { .name = "env-for", .key = 'E',
354
354
      .arg = "PLUGIN:ENV=value",
355
355
      .doc = "Environment variable passed to specified plugin" },
356
356
    { .name = "disable", .key = 'd',
357
357
      .arg = "PLUGIN",
358
358
      .doc = "Disable a specific plugin", .group = 1 },
 
359
    { .name = "enable", .key = 'e',
 
360
      .arg = "PLUGIN",
 
361
      .doc = "Enable a specific plugin", .group = 1 },
359
362
    { .name = "plugin-dir", .key = 128,
360
363
      .arg = "DIRECTORY",
361
364
      .doc = "Specify a different plugin directory", .group = 2 },
375
378
  
376
379
  error_t parse_opt (int key, char *arg, __attribute__((unused))
377
380
                     struct argp_state *state) {
378
 
    /* Get the INPUT argument from `argp_parse', which we know is a
379
 
       pointer to our plugin list pointer. */
380
381
    switch (key) {
381
382
    case 'g':                   /* --global-options */
382
383
      if (arg != NULL){
392
393
        }
393
394
      }
394
395
      break;
395
 
    case 'e':                   /* --global-env */
 
396
    case 'G':                   /* --global-env */
396
397
      if(arg == NULL){
397
398
        break;
398
399
      }
430
431
        }
431
432
      }
432
433
      break;
433
 
    case 'f':                   /* --env-for */
 
434
    case 'E':                   /* --env-for */
434
435
      if(arg == NULL){
435
436
        break;
436
437
      }
458
459
        p->disabled = true;
459
460
      }
460
461
      break;
 
462
    case 'e':                   /* --enable */
 
463
      if (arg != NULL){
 
464
        plugin *p = getplugin(arg);
 
465
        if(p == NULL){
 
466
          return ARGP_ERR_UNKNOWN;
 
467
        }
 
468
        p->disabled = false;
 
469
      }
 
470
      break;
461
471
    case 128:                   /* --plugin-dir */
462
472
      plugindir = strdup(arg);
463
473
      if(plugindir == NULL){
465
475
      }      
466
476
      break;
467
477
    case 129:                   /* --config-file */
468
 
      argfile = strdup(arg);
469
 
      if(argfile == NULL){
470
 
        perror("strdup");
471
 
      }
472
 
      break;      
 
478
      /* This is already done by parse_opt_config_file() */
 
479
      break;
473
480
    case 130:                   /* --userid */
474
481
      uid = (uid_t)strtol(arg, NULL, 10);
475
482
      break;
490
497
    return 0;
491
498
  }
492
499
  
493
 
  struct argp argp = { .options = options, .parser = parse_opt,
 
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) {
 
505
    switch (key) {
 
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 */
 
513
      break;
 
514
    case 129:                   /* --config-file */
 
515
      argfile = strdup(arg);
 
516
      if(argfile == NULL){
 
517
        perror("strdup");
 
518
      }
 
519
      break;      
 
520
    case 130:                   /* --userid */
 
521
    case 131:                   /* --groupid */
 
522
    case 132:                   /* --debug */
 
523
    case ARGP_KEY_ARG:
 
524
    case ARGP_KEY_END:
 
525
      break;
 
526
    default:
 
527
      return ARGP_ERR_UNKNOWN;
 
528
    }
 
529
    return 0;
 
530
  }
 
531
  
 
532
  struct argp argp = { .options = options,
 
533
                       .parser = parse_opt_config_file,
494
534
                       .args_doc = "",
495
535
                       .doc = "Mandos plugin runner -- Run plugins" };
496
536
  
 
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;
 
543
    goto fallback;
 
544
  }
 
545
  
 
546
  /* Reset to the normal argument parser */
 
547
  argp.parser = parse_opt;
 
548
  
497
549
  /* Open the configfile if available */
498
550
  if (argfile == NULL){
499
551
    conffp = fopen(AFILE, "r");