/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

merge

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