/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:
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 parsing */
 
258
    argv[1] = NULL;
 
259
  }
 
260
  *argc += 1;
 
261
  argv = realloc(argv, sizeof(char *)
 
262
                  * ((unsigned int) *argc + 1));
 
263
  if(argv == NULL){
 
264
    return NULL;
 
265
  }
 
266
  argv[*argc-1] = arg;
 
267
  argv[*argc] = NULL;
 
268
  return argv;
 
269
}
 
270
 
252
271
static void free_plugin_list(plugin *plugin_list){
253
272
  for(plugin *next; plugin_list != NULL; plugin_list = next){
254
273
    next = plugin_list->next;
265
284
}
266
285
 
267
286
int main(int argc, char *argv[]){
268
 
  char *plugindir = NULL;
269
 
  char *argfile = NULL;
 
287
  const char *plugindir = "/lib/mandos/plugins.d";
 
288
  const char *argfile = ARGFILE;
270
289
  FILE *conffp;
271
290
  size_t d_name_len;
272
291
  DIR *dir = NULL;
319
338
    { .name = "plugin-dir", .key = 128,
320
339
      .arg = "DIRECTORY",
321
340
      .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 },
 
341
    { .name = "userid", .key = 129,
 
342
      .arg = "ID", .flags = 0,
 
343
      .doc = "User ID the plugins will run as", .group = 2 },
 
344
    { .name = "groupid", .key = 130,
 
345
      .arg = "ID", .flags = 0,
 
346
      .doc = "Group ID the plugins will run as", .group = 2 },
 
347
    { .name = "debug", .key = 131,
 
348
      .doc = "Debug mode", .group = 3 },
333
349
    { .name = NULL }
334
350
  };
335
351
  
419
435
      }
420
436
      break;
421
437
    case 128:
422
 
      plugindir = strdup(arg);
423
 
      if(plugindir == NULL){
424
 
        perror("strdup");
425
 
      }      
 
438
      plugindir = arg;
426
439
      break;
427
440
    case 129:
428
 
      argfile = strdup(arg);
429
 
      if(argfile == NULL){
430
 
        perror("strdup");
431
 
      }
432
 
      break;      
 
441
      uid = (uid_t)strtol(arg, NULL, 10);
 
442
      break;
433
443
    case 130:
434
 
      uid = (uid_t)strtol(arg, NULL, 10);
 
444
      gid = (gid_t)strtol(arg, NULL, 10);
435
445
      break;
436
446
    case 131:
437
 
      gid = (gid_t)strtol(arg, NULL, 10);
438
 
      break;
439
 
    case 132:
440
447
      debug = true;
441
448
      break;
442
449
    case ARGP_KEY_ARG:
463
470
    goto fallback;
464
471
  }
465
472
 
466
 
  if (argfile == NULL){
467
 
    conffp = fopen(AFILE, "r");
468
 
  } else {
469
 
    conffp = fopen(argfile, "r");
470
 
  }
471
 
  
 
473
  conffp = fopen(argfile, "r");
472
474
  if(conffp != NULL){
473
475
    char *org_line = NULL;
474
476
    char *p, *arg, *new_arg, *line;
477
479
    const char whitespace_delims[] = " \r\t\f\v\n";
478
480
    const char comment_delim[] = "#";
479
481
 
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
482
    while(true){
491
483
      sret = getline(&org_line, &size, conffp);
492
484
      if(sret == -1){
500
492
          continue;
501
493
        }
502
494
        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;        
 
495
        custom_argv = add_to_argv(custom_argv, &custom_argc, new_arg);
 
496
        if (custom_argv == NULL){
 
497
          perror("add_to_argv");
 
498
          exitstatus = EXIT_FAILURE;
 
499
          goto fallback;
 
500
        }
521
501
      }
522
502
    }
523
503
    free(org_line);
532
512
  }
533
513
 
534
514
  if(custom_argv != NULL){
 
515
    custom_argv[0] = argv[0];
535
516
    ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, &plugin_list);
536
517
    if (ret == ARGP_ERR_UNKNOWN){
537
518
      fprintf(stderr, "Unknown error while parsing arguments\n");
563
544
  if (ret == -1){
564
545
    perror("setgid");
565
546
  }
566
 
 
567
 
  if (plugindir == NULL){
568
 
    dir = opendir(PDIR);
569
 
  } else {
570
 
    dir = opendir(plugindir);
571
 
  }
572
547
  
 
548
  dir = opendir(plugindir);
573
549
  if(dir == NULL){
574
550
    perror("Could not open plugin dir");
575
551
    exitstatus = EXIT_FAILURE;
825
801
    }
826
802
    
827
803
  }
828
 
 
 
804
  
829
805
  free_plugin_list(plugin_list);
830
806
  plugin_list = NULL;
831
807
  
969
945
  }
970
946
 
971
947
  if(custom_argv != NULL){
972
 
    for(char **arg = custom_argv+1; *arg != NULL; arg++){
 
948
    for(char **arg = custom_argv; *arg != NULL; arg++){
973
949
      free(*arg);
974
950
    }
975
951
    free(custom_argv);
1000
976
  if(errno != ECHILD){
1001
977
    perror("wait");
1002
978
  }
1003
 
 
1004
 
  free(plugindir);
1005
 
  free(argfile);
1006
979
  
1007
980
  return exitstatus;
1008
981
}