/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

  • Committer: Teddy Hogeborn
  • Date: 2008-09-02 06:03:08 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080902060308-8uhgsfjiwixuvz6j
* plugin-runner.c (main/parse_opt): Removed code for "--config-file".
  (main/parse_opt_config_file): New function only for "--config-file".
  (main): Parse options first using "parse_opt_config_file", then from
          the config file, and lastly from the command line.

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
 
97
97
static plugin *plugin_list = NULL;
98
98
 
99
 
/* Gets an existing plugin based on name,
 
99
/* Gets a 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 */
118
118
      return NULL;
119
119
    }
120
120
  }
121
 
  
 
121
 
122
122
  *new_plugin = (plugin) { .name = copy_name,
123
123
                           .argc = 1,
124
124
                           .disabled = false,
187
187
  size_t namelen = (size_t)(strchrnul(def, '=') - def);
188
188
  /* Search for this environment variable */
189
189
  for(char **e = p->environ; *e != NULL; e++){
190
 
    if(strncmp(*e, def, namelen + 1) == 0){
 
190
    if(strncmp(*e, def, namelen+1) == 0){
191
191
      /* It already exists */
192
192
      if(replace){
193
 
        char *new = realloc(*e, strlen(def) + 1);
 
193
        char *new = realloc(*e, strlen(def));
194
194
        if(new == NULL){
195
195
          return false;
196
196
        }
238
238
      /* No child processes */
239
239
      break;
240
240
    }
241
 
    
 
241
 
242
242
    /* A child exited, find it in process_list */
243
243
    while(proc != NULL and proc->pid != pid){
244
244
      proc = proc->next;
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',
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 },
362
359
    { .name = "plugin-dir", .key = 128,
363
360
      .arg = "DIRECTORY",
364
361
      .doc = "Specify a different plugin directory", .group = 2 },
393
390
        }
394
391
      }
395
392
      break;
396
 
    case 'G':                   /* --global-env */
 
393
    case 'e':                   /* --global-env */
397
394
      if(arg == NULL){
398
395
        break;
399
396
      }
410
407
    case 'o':                   /* --options-for */
411
408
      if (arg != NULL){
412
409
        char *p_name = strsep(&arg, ":");
413
 
        if(p_name[0] == '\0' or arg == NULL){
 
410
        if(p_name[0] == '\0'){
414
411
          break;
415
412
        }
416
413
        char *opt = strsep(&arg, ":");
417
 
        if(opt[0] == '\0' or opt == NULL){
 
414
        if(opt[0] == '\0'){
418
415
          break;
419
416
        }
420
 
        char *p;
421
 
        while((p = strsep(&opt, ",")) != NULL){
422
 
          if(p[0] == '\0'){
423
 
            continue;
424
 
          }
425
 
          if(not add_argument(getplugin(p_name), p)){
426
 
            perror("add_argument");
427
 
            return ARGP_ERR_UNKNOWN;
 
417
        if(opt != NULL){
 
418
          char *p;
 
419
          while((p = strsep(&opt, ",")) != NULL){
 
420
            if(p[0] == '\0'){
 
421
              continue;
 
422
            }
 
423
            if(not add_argument(getplugin(p_name), p)){
 
424
              perror("add_argument");
 
425
              return ARGP_ERR_UNKNOWN;
 
426
            }
428
427
          }
429
428
        }
430
429
      }
431
430
      break;
432
 
    case 'E':                   /* --env-for */
 
431
    case 'f':                   /* --env-for */
433
432
      if(arg == NULL){
434
433
        break;
435
434
      }
457
456
        p->disabled = true;
458
457
      }
459
458
      break;
460
 
    case 'e':                   /* --enable */
461
 
      if (arg != NULL){
462
 
        plugin *p = getplugin(arg);
463
 
        if(p == NULL){
464
 
          return ARGP_ERR_UNKNOWN;
465
 
        }
466
 
        p->disabled = false;
467
 
      }
468
 
      break;
469
459
    case 128:                   /* --plugin-dir */
470
460
      plugindir = strdup(arg);
471
461
      if(plugindir == NULL){
502
492
                                 struct argp_state *state) {
503
493
    switch (key) {
504
494
    case 'g':                   /* --global-options */
505
 
    case 'G':                   /* --global-env */
 
495
    case 'e':                   /* --global-env */
506
496
    case 'o':                   /* --options-for */
507
 
    case 'E':                   /* --env-for */
 
497
    case 'f':                   /* --env-for */
508
498
    case 'd':                   /* --disable */
509
 
    case 'e':                   /* --enable */
510
499
    case 128:                   /* --plugin-dir */
511
500
      break;
512
501
    case 129:                   /* --config-file */