/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-08-25 06:44:13 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080825064413-smqg5qwxfvhkeop4
* Makefile (DOCBOOKTOMAN): Only cd to one directory.

* mandos-options.xml (interface): Removed mention of a specific
                                  replaceable.
  (debug): Reworded slightly.

* mandos.conf.xml (OPTIONS): Renamed some replaceable names.

* mandos.xml (SYNOPSIS, OPTIONS): Renamed replaceable of "interface"
                                  from "IF" to "NAME".

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
#include <errno.h>              /* errno, EBADF */
66
66
 
67
67
#define BUFFER_SIZE 256
68
 
 
69
 
#define PDIR "/lib/mandos/plugins.d"
70
 
#define AFILE "/conf/conf.d/mandos/plugin-runner.conf"
 
68
#define ARGFILE "/conf/conf.d/mandos/plugin-runner.conf"
71
69
 
72
70
const char *argp_program_version = "plugin-runner 1.0";
73
71
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
249
247
  return true;
250
248
}
251
249
 
 
250
char **add_to_argv(char **argv, int *argc, char *arg){
 
251
  if (argv == NULL){
 
252
    *argc = 1;
 
253
    argv = malloc(sizeof(char*) * 2);
 
254
    if(argv == NULL){
 
255
      return NULL;
 
256
    }
 
257
    argv[0] = NULL;     /* Will be set to argv[0] in main before
 
258
                           parsing */
 
259
    argv[1] = NULL;
 
260
  }
 
261
  *argc += 1;
 
262
  argv = realloc(argv, sizeof(char *)
 
263
                  * ((unsigned int) *argc + 1));
 
264
  if(argv == NULL){
 
265
    return NULL;
 
266
  }
 
267
  argv[*argc-1] = arg;
 
268
  argv[*argc] = NULL;
 
269
  return argv;
 
270
}
 
271
 
252
272
static void free_plugin_list(plugin *plugin_list){
253
273
  for(plugin *next; plugin_list != NULL; plugin_list = next){
254
274
    next = plugin_list->next;
265
285
}
266
286
 
267
287
int main(int argc, char *argv[]){
268
 
  char *plugindir = NULL;
269
 
  char *argfile = NULL;
 
288
  const char *plugindir = "/lib/mandos/plugins.d";
 
289
  const char *argfile = ARGFILE;
270
290
  FILE *conffp;
271
291
  size_t d_name_len;
272
292
  DIR *dir = NULL;
319
339
    { .name = "plugin-dir", .key = 128,
320
340
      .arg = "DIRECTORY",
321
341
      .doc = "Specify a different plugin directory", .group = 2 },
322
 
    { .name = "config-file", .key = 129,
323
 
      .arg = "FILE",
324
 
      .doc = "Specify a different configuration file", .group = 2 },
325
 
    { .name = "userid", .key = 130,
326
 
      .arg = "ID", .flags = 0,
327
 
      .doc = "User ID the plugins will run as", .group = 3 },
328
 
    { .name = "groupid", .key = 131,
329
 
      .arg = "ID", .flags = 0,
330
 
      .doc = "Group ID the plugins will run as", .group = 3 },
331
 
    { .name = "debug", .key = 132,
332
 
      .doc = "Debug mode", .group = 4 },
 
342
    { .name = "userid", .key = 129,
 
343
      .arg = "ID", .flags = 0,
 
344
      .doc = "User ID the plugins will run as", .group = 2 },
 
345
    { .name = "groupid", .key = 130,
 
346
      .arg = "ID", .flags = 0,
 
347
      .doc = "Group ID the plugins will run as", .group = 2 },
 
348
    { .name = "debug", .key = 131,
 
349
      .doc = "Debug mode", .group = 3 },
333
350
    { .name = NULL }
334
351
  };
335
352
  
419
436
      }
420
437
      break;
421
438
    case 128:
422
 
      plugindir = strdup(arg);
423
 
      if(plugindir == NULL){
424
 
        perror("strdup");
425
 
      }      
 
439
      plugindir = arg;
426
440
      break;
427
441
    case 129:
428
 
      argfile = strdup(arg);
429
 
      if(argfile == NULL){
430
 
        perror("strdup");
431
 
      }
432
 
      break;      
 
442
      uid = (uid_t)strtol(arg, NULL, 10);
 
443
      break;
433
444
    case 130:
434
 
      uid = (uid_t)strtol(arg, NULL, 10);
 
445
      gid = (gid_t)strtol(arg, NULL, 10);
435
446
      break;
436
447
    case 131:
437
 
      gid = (gid_t)strtol(arg, NULL, 10);
438
 
      break;
439
 
    case 132:
440
448
      debug = true;
441
449
      break;
442
450
    case ARGP_KEY_ARG:
463
471
    goto fallback;
464
472
  }
465
473
 
466
 
  if (argfile == NULL){
467
 
    conffp = fopen(AFILE, "r");
468
 
  } else {
469
 
    conffp = fopen(argfile, "r");
470
 
  }
471
 
  
 
474
  conffp = fopen(argfile, "r");
472
475
  if(conffp != NULL){
473
476
    char *org_line = NULL;
474
477
    char *p, *arg, *new_arg, *line;
477
480
    const char whitespace_delims[] = " \r\t\f\v\n";
478
481
    const char comment_delim[] = "#";
479
482
 
480
 
    custom_argc = 1;
481
 
    custom_argv = malloc(sizeof(char*) * 2);
482
 
    if(custom_argv == NULL){
483
 
      perror("malloc");
484
 
      exitstatus = EXIT_FAILURE;
485
 
      goto fallback;
486
 
    }
487
 
    custom_argv[0] = argv[0];
488
 
    custom_argv[1] = NULL;
489
 
    
490
483
    while(true){
491
484
      sret = getline(&org_line, &size, conffp);
492
485
      if(sret == -1){
500
493
          continue;
501
494
        }
502
495
        new_arg = strdup(p);
503
 
        if(new_arg == NULL){
504
 
          perror("strdup");
505
 
          exitstatus = EXIT_FAILURE;
506
 
          free(org_line);
507
 
          goto fallback;
508
 
        }
509
 
        
510
 
        custom_argc += 1;
511
 
        custom_argv = realloc(custom_argv, sizeof(char *)
512
 
                              * ((unsigned int) custom_argc + 1));
513
 
        if(custom_argv == NULL){
514
 
          perror("realloc");
515
 
          exitstatus = EXIT_FAILURE;
516
 
          free(org_line);
517
 
          goto fallback;
518
 
        }
519
 
        custom_argv[custom_argc-1] = new_arg;
520
 
        custom_argv[custom_argc] = NULL;        
 
496
        custom_argv = add_to_argv(custom_argv, &custom_argc, new_arg);
 
497
        if (custom_argv == NULL){
 
498
          perror("add_to_argv");
 
499
          exitstatus = EXIT_FAILURE;
 
500
          goto fallback;
 
501
        }
521
502
      }
522
503
    }
523
504
    free(org_line);
532
513
  }
533
514
 
534
515
  if(custom_argv != NULL){
535
 
    ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, &plugin_list);
 
516
    custom_argv[0] = argv[0];
 
517
    ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0,
 
518
                      &plugin_list);
536
519
    if (ret == ARGP_ERR_UNKNOWN){
537
520
      fprintf(stderr, "Unknown error while parsing arguments\n");
538
521
      exitstatus = EXIT_FAILURE;
563
546
  if (ret == -1){
564
547
    perror("setgid");
565
548
  }
566
 
 
567
 
  if (plugindir == NULL){
568
 
    dir = opendir(PDIR);
569
 
  } else {
570
 
    dir = opendir(plugindir);
571
 
  }
572
549
  
 
550
  dir = opendir(plugindir);
573
551
  if(dir == NULL){
574
552
    perror("Could not open plugin dir");
575
553
    exitstatus = EXIT_FAILURE;
825
803
    }
826
804
    
827
805
  }
828
 
 
 
806
  
829
807
  free_plugin_list(plugin_list);
830
808
  plugin_list = NULL;
831
809
  
969
947
  }
970
948
 
971
949
  if(custom_argv != NULL){
972
 
    for(char **arg = custom_argv+1; *arg != NULL; arg++){
 
950
    for(char **arg = custom_argv; *arg != NULL; arg++){
973
951
      free(*arg);
974
952
    }
975
953
    free(custom_argv);
1000
978
  if(errno != ECHILD){
1001
979
    perror("wait");
1002
980
  }
1003
 
 
1004
 
  free(plugindir);
1005
 
  free(argfile);
1006
981
  
1007
982
  return exitstatus;
1008
983
}