/mandos/release

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

« back to all changes in this revision

Viewing changes to plugin-runner.c

  • Committer: Teddy Hogeborn
  • Date: 2008-09-01 08:29:23 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080901082923-i2liq6t7warmu9xe
* mandos.xml: Enclose "RAM" with <acronym>.
* overview.xml: - '' -

* plugin-runner.xml (DESCRIPTION): Improved wording.
  (PURPOSE): New section.
  (OPTIONS): Improved wording.
  (OVERVIEW, PLUGINS): New section.
  (FALLBACK): New empty placeholder section.

* plugins.d/password-prompt.xml: Enclose "RAM" with <acronym>.

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
  }
133
133
  new_plugin->argv[0] = copy_name;
134
134
  new_plugin->argv[1] = NULL;
135
 
  
 
135
 
136
136
  new_plugin->environ = malloc(sizeof(char *));
137
137
  if(new_plugin->environ == NULL){
138
138
    free(copy_name);
141
141
    return NULL;
142
142
  }
143
143
  new_plugin->environ[0] = NULL;
144
 
  
 
144
 
145
145
  /* Append the new plugin to the list */
146
146
  plugin_list = new_plugin;
147
147
  return new_plugin;
179
179
}
180
180
 
181
181
/* Add to a plugin's environment */
182
 
static bool add_environment(plugin *p, const char *def, bool replace){
 
182
static bool add_environment(plugin *p, const char *def){
183
183
  if(p == NULL){
184
184
    return false;
185
185
  }
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 */
192
 
      if(replace){
193
 
        char *new = realloc(*e, strlen(def));
194
 
        if(new == NULL){
195
 
          return false;
196
 
        }
197
 
        *e = new;
198
 
        strcpy(*e, def);
199
 
      }
200
 
      return true;
201
 
    }
202
 
  }
203
186
  return add_to_char_array(def, &(p->environ), &(p->envc));
204
187
}
205
188
 
344
327
    { .name = "global-options", .key = 'g',
345
328
      .arg = "OPTION[,OPTION[,...]]",
346
329
      .doc = "Options passed to all plugins" },
347
 
    { .name = "global-env", .key = 'e',
 
330
    { .name = "global-envs", .key = 'e',
348
331
      .arg = "VAR=value",
349
332
      .doc = "Environment variable passed to all plugins" },
350
333
    { .name = "options-for", .key = 'o',
351
334
      .arg = "PLUGIN:OPTION[,OPTION[,...]]",
352
335
      .doc = "Options passed only to specified plugin" },
353
 
    { .name = "env-for", .key = 'f',
 
336
    { .name = "envs-for", .key = 'f',
354
337
      .arg = "PLUGIN:ENV=value",
355
338
      .doc = "Environment variable passed to specified plugin" },
356
339
    { .name = "disable", .key = 'd',
392
375
        }
393
376
      }
394
377
      break;
395
 
    case 'e':                   /* --global-env */
 
378
    case 'e':                   /* --global-envs */
396
379
      if(arg == NULL){
397
380
        break;
398
381
      }
401
384
        if(envdef == NULL){
402
385
          break;
403
386
        }
404
 
        if(not add_environment(getplugin(NULL), envdef, true)){
 
387
        if(not add_environment(getplugin(NULL), envdef)){
405
388
          perror("add_environment");
406
389
        }
407
390
      }
430
413
        }
431
414
      }
432
415
      break;
433
 
    case 'f':                   /* --env-for */
 
416
    case 'f':                   /* --envs-for */
434
417
      if(arg == NULL){
435
418
        break;
436
419
      }
444
427
          break;
445
428
        }
446
429
        envdef++;
447
 
        if(not add_environment(getplugin(p_name), envdef, true)){
 
430
        if(not add_environment(getplugin(p_name), envdef)){
448
431
          perror("add_environment");
449
432
        }
450
433
      }
491
474
  }
492
475
  
493
476
  struct argp argp = { .options = options, .parser = parse_opt,
494
 
                       .args_doc = "",
 
477
                       .args_doc = "[+PLUS_SEPARATED_OPTIONS]",
495
478
                       .doc = "Mandos plugin runner -- Run plugins" };
496
479
  
497
 
  /* Open the configfile if available */
 
480
  ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
 
481
  if (ret == ARGP_ERR_UNKNOWN){
 
482
    fprintf(stderr, "Unknown error while parsing arguments\n");
 
483
    exitstatus = EXIT_FAILURE;
 
484
    goto fallback;
 
485
  }
 
486
 
 
487
  /* Opens the configfile if aviable */
498
488
  if (argfile == NULL){
499
489
    conffp = fopen(AFILE, "r");
500
490
  } else {
554
544
      }
555
545
    }
556
546
    free(org_line);
557
 
  } else {
 
547
  } else{
558
548
    /* Check for harmful errors and go to fallback. Other errors might
559
549
       not affect opening plugins */
560
550
    if (errno == EMFILE or errno == ENFILE or errno == ENOMEM){
566
556
  /* If there was any arguments from configuration file,
567
557
     pass them to parser as command arguments */
568
558
  if(custom_argv != NULL){
569
 
    ret = argp_parse (&argp, custom_argc, custom_argv, ARGP_IN_ORDER,
570
 
                      0, NULL);
 
559
    ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, NULL);
571
560
    if (ret == ARGP_ERR_UNKNOWN){
572
561
      fprintf(stderr, "Unknown error while parsing arguments\n");
573
562
      exitstatus = EXIT_FAILURE;
575
564
    }
576
565
  }
577
566
  
578
 
  /* Parse actual command line arguments, to let them override the
579
 
     config file */
580
 
  ret = argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
581
 
  if (ret == ARGP_ERR_UNKNOWN){
582
 
    fprintf(stderr, "Unknown error while parsing arguments\n");
583
 
    exitstatus = EXIT_FAILURE;
584
 
    goto fallback;
585
 
  }
586
 
  
587
567
  if(debug){
588
568
    for(plugin *p = plugin_list; p != NULL; p=p->next){
589
569
      fprintf(stderr, "Plugin: %s has %d arguments\n",
597
577
      }
598
578
    }
599
579
  }
600
 
  
 
580
 
601
581
  /* Strip permissions down to nobody */
602
582
  ret = setuid(uid);
603
583
  if (ret == -1){
607
587
  if (ret == -1){
608
588
    perror("setgid");
609
589
  }
610
 
  
 
590
 
611
591
  if (plugindir == NULL){
612
592
    dir = opendir(PDIR);
613
593
  } else {
634
614
  }
635
615
  
636
616
  FD_ZERO(&rfds_all);
637
 
  
 
617
 
638
618
  /* Read and execute any executable in the plugin directory*/
639
619
  while(true){
640
620
    dirst = readdir(dir);
641
621
    
642
 
    /* All directory entries have been processed */
 
622
    // All directory entries have been processed
643
623
    if(dirst == NULL){
644
624
      if (errno == EBADF){
645
625
        perror("readdir");
651
631
    
652
632
    d_name_len = strlen(dirst->d_name);
653
633
    
654
 
    /* Ignore dotfiles, backup files and other junk */
 
634
    // Ignore dotfiles, backup files and other junk
655
635
    {
656
636
      bool bad_name = false;
657
637
      
743
723
        }
744
724
        /* Add global environment variables */
745
725
        for(char **e = g->environ; *e != NULL; e++){
746
 
          if(not add_environment(p, *e, false)){
 
726
          if(not add_environment(p, *e)){
747
727
            perror("add_environment");
748
728
          }
749
729
        }
754
734
       process, too. */
755
735
    if(p->environ[0] != NULL){
756
736
      for(char **e = environ; *e != NULL; e++){
757
 
        if(not add_environment(p, *e, false)){
 
737
        char *copy = strdup(*e);
 
738
        if(copy == NULL){
 
739
          perror("strdup");
 
740
          continue;
 
741
        }
 
742
        if(not add_environment(p, copy)){
758
743
          perror("add_environment");
759
744
        }
760
745
      }
787
772
      exitstatus = EXIT_FAILURE;
788
773
      goto fallback;
789
774
    }
790
 
    /* Starting a new process to be watched */
 
775
    // Starting a new process to be watched
791
776
    pid_t pid = fork();
792
777
    if(pid == -1){
793
778
      perror("fork");