/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-05 23:39:07 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080905233907-3rz7kuwyjwma0pjx
* Makefile (confdir/clients.conf): Tighten permissions to "u=rw".
  (install-server): Set mode of "/etc/mandos/clients.conf" to
                             "u=rw".
  (install-client): Set mode of "/etc/mandos/plugins.d" to "u=rwx".
  (uninstall-client): Also remove "/usr/lib/mandos/plugins.d/usplash",
                "/usr/share/initramfs-tools/scripts/local-top/mandos",
                      and "/etc/keys/mandos".
  (purge-server): Also remove "/var/run/mandos.pid".

* initramfs-tools-hook: Use "install" instead of "mkdir".  Change
                        owner of "/lib/mandos/plugins.d" and key
                        files.  Bug fix: do not repair permissions of
                        "/lib/mandos/plugins.d".  Bug fix: Really
                        avoid deliberately unreadable files and/or
                        directories.

* mandos-keygen (umask): Changed to "077".

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 a existing plugin based on name,
 
99
/* Gets an 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));
 
193
        char *new = realloc(*e, strlen(def) + 1);
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 = 'e',
 
347
    { .name = "global-env", .key = 'G',
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 = 'f',
 
353
    { .name = "env-for", .key = 'E',
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 },
359
362
    { .name = "plugin-dir", .key = 128,
360
363
      .arg = "DIRECTORY",
361
364
      .doc = "Specify a different plugin directory", .group = 2 },
390
393
        }
391
394
      }
392
395
      break;
393
 
    case 'e':                   /* --global-env */
 
396
    case 'G':                   /* --global-env */
394
397
      if(arg == NULL){
395
398
        break;
396
399
      }
407
410
    case 'o':                   /* --options-for */
408
411
      if (arg != NULL){
409
412
        char *p_name = strsep(&arg, ":");
410
 
        if(p_name[0] == '\0'){
 
413
        if(p_name[0] == '\0' or arg == NULL){
411
414
          break;
412
415
        }
413
416
        char *opt = strsep(&arg, ":");
414
 
        if(opt[0] == '\0'){
 
417
        if(opt[0] == '\0' or opt == NULL){
415
418
          break;
416
419
        }
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
 
            }
 
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;
427
428
          }
428
429
        }
429
430
      }
430
431
      break;
431
 
    case 'f':                   /* --env-for */
 
432
    case 'E':                   /* --env-for */
432
433
      if(arg == NULL){
433
434
        break;
434
435
      }
456
457
        p->disabled = true;
457
458
      }
458
459
      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;
459
469
    case 128:                   /* --plugin-dir */
460
470
      plugindir = strdup(arg);
461
471
      if(plugindir == NULL){
492
502
                                 struct argp_state *state) {
493
503
    switch (key) {
494
504
    case 'g':                   /* --global-options */
495
 
    case 'e':                   /* --global-env */
 
505
    case 'G':                   /* --global-env */
496
506
    case 'o':                   /* --options-for */
497
 
    case 'f':                   /* --env-for */
 
507
    case 'E':                   /* --env-for */
498
508
    case 'd':                   /* --disable */
 
509
    case 'e':                   /* --enable */
499
510
    case 128:                   /* --plugin-dir */
500
511
      break;
501
512
    case 129:                   /* --config-file */