/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: 2009-01-08 03:54:06 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090108035406-01uqkv9xqgxlnw7c
Change the default value of the "checker" option command to make the
checker command be run-time dependent on the "host" client attribute
instead of reading it only once on startup:

* clients.conf (checker): Changed default commented-out value to
                          "fping -q -- %%(host)s".
* mandos (main): Changed default value for the "checker" config option
                 to "fping -q -- %%(host)s".
* mandos-clients.conf.xml (OPTIONS): Document changed default value.
  (EXAMPLE): Changed value of "checker".

* plugins.d/password-prompt.c: Whitespace changes only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*
3
3
 * Mandos plugin runner - Run Mandos plugins
4
4
 *
5
 
 * Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
 
5
 * Copyright © 2008,2009 Teddy Hogeborn
 
6
 * Copyright © 2008,2009 Björn Påhlsson
6
7
 * 
7
8
 * This program is free software: you can redistribute it and/or
8
9
 * modify it under the terms of the GNU General Public License as
27
28
#include <stdlib.h>             /* malloc(), exit(), EXIT_FAILURE,
28
29
                                   EXIT_SUCCESS, realloc() */
29
30
#include <stdbool.h>            /* bool, true, false */
30
 
#include <stdio.h>              /* perror, popen(), fileno(),
31
 
                                   fprintf(), stderr, STDOUT_FILENO */
 
31
#include <stdio.h>              /* perror, fileno(), fprintf(),
 
32
                                   stderr, STDOUT_FILENO */
32
33
#include <sys/types.h>          /* DIR, opendir(), stat(), struct
33
34
                                   stat, waitpid(), WIFEXITED(),
34
35
                                   WEXITSTATUS(), wait(), pid_t,
46
47
                                   fcntl(), setuid(), setgid(),
47
48
                                   F_GETFD, F_SETFD, FD_CLOEXEC,
48
49
                                   access(), pipe(), fork(), close()
49
 
                                   dup2, STDOUT_FILENO, _exit(),
 
50
                                   dup2(), STDOUT_FILENO, _exit(),
50
51
                                   execv(), write(), read(),
51
52
                                   close() */
52
53
#include <fcntl.h>              /* fcntl(), F_GETFD, F_SETFD,
69
70
#define PDIR "/lib/mandos/plugins.d"
70
71
#define AFILE "/conf/conf.d/mandos/plugin-runner.conf"
71
72
 
72
 
const char *argp_program_version = "plugin-runner 1.0";
 
73
const char *argp_program_version = "plugin-runner " VERSION;
73
74
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
74
75
 
75
 
struct plugin;
76
 
 
77
76
typedef struct plugin{
78
77
  char *name;                   /* can be NULL or any plugin name */
79
78
  char **argv;
96
95
 
97
96
static plugin *plugin_list = NULL;
98
97
 
99
 
/* Gets a existing plugin based on name,
 
98
/* Gets an existing plugin based on name,
100
99
   or if none is found, creates a new one */
101
100
static plugin *getplugin(char *name){
102
101
  /* Check for exiting plugin with that name */
118
117
      return NULL;
119
118
    }
120
119
  }
121
 
 
 
120
  
122
121
  *new_plugin = (plugin) { .name = copy_name,
123
122
                           .argc = 1,
124
123
                           .disabled = false,
187
186
  size_t namelen = (size_t)(strchrnul(def, '=') - def);
188
187
  /* Search for this environment variable */
189
188
  for(char **e = p->environ; *e != NULL; e++){
190
 
    if(strncmp(*e, def, namelen+1) == 0){
 
189
    if(strncmp(*e, def, namelen + 1) == 0){
191
190
      /* It already exists */
192
191
      if(replace){
193
 
        char *new = realloc(*e, strlen(def));
 
192
        char *new = realloc(*e, strlen(def) + 1);
194
193
        if(new == NULL){
195
194
          return false;
196
195
        }
208
207
 * Descriptor Flags".
209
208
 * *Note File Descriptor Flags:(libc)Descriptor Flags.
210
209
 */
211
 
static int set_cloexec_flag(int fd)
212
 
{
 
210
static int set_cloexec_flag(int fd){
213
211
  int ret = fcntl(fd, F_GETFD, 0);
214
212
  /* If reading the flags failed, return error indication now. */
215
213
  if(ret < 0){
222
220
 
223
221
/* Mark processes as completed when they exit, and save their exit
224
222
   status. */
225
 
void handle_sigchld(__attribute__((unused)) int sig){
 
223
static void handle_sigchld(__attribute__((unused)) int sig){
226
224
  while(true){
227
225
    plugin *proc = plugin_list;
228
226
    int status;
238
236
      /* No child processes */
239
237
      break;
240
238
    }
241
 
 
 
239
    
242
240
    /* A child exited, find it in process_list */
243
241
    while(proc != NULL and proc->pid != pid){
244
242
      proc = proc->next;
253
251
}
254
252
 
255
253
/* Prints out a password to stdout */
256
 
bool print_out_password(const char *buffer, size_t length){
 
254
static bool print_out_password(const char *buffer, size_t length){
257
255
  ssize_t ret;
258
 
  if(length>0 and buffer[length-1] == '\n'){
259
 
    length--;
260
 
  }
261
256
  for(size_t written = 0; written < length; written += (size_t)ret){
262
257
    ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO, buffer + written,
263
258
                                   length - written));
314
309
  struct stat st;
315
310
  fd_set rfds_all;
316
311
  int ret, maxfd = 0;
 
312
  ssize_t sret;
317
313
  uid_t uid = 65534;
318
314
  gid_t gid = 65534;
319
315
  bool debug = false;
344
340
    { .name = "global-options", .key = 'g',
345
341
      .arg = "OPTION[,OPTION[,...]]",
346
342
      .doc = "Options passed to all plugins" },
347
 
    { .name = "global-env", .key = 'e',
 
343
    { .name = "global-env", .key = 'G',
348
344
      .arg = "VAR=value",
349
345
      .doc = "Environment variable passed to all plugins" },
350
346
    { .name = "options-for", .key = 'o',
351
347
      .arg = "PLUGIN:OPTION[,OPTION[,...]]",
352
348
      .doc = "Options passed only to specified plugin" },
353
 
    { .name = "env-for", .key = 'f',
 
349
    { .name = "env-for", .key = 'E',
354
350
      .arg = "PLUGIN:ENV=value",
355
351
      .doc = "Environment variable passed to specified plugin" },
356
352
    { .name = "disable", .key = 'd',
357
353
      .arg = "PLUGIN",
358
354
      .doc = "Disable a specific plugin", .group = 1 },
 
355
    { .name = "enable", .key = 'e',
 
356
      .arg = "PLUGIN",
 
357
      .doc = "Enable a specific plugin", .group = 1 },
359
358
    { .name = "plugin-dir", .key = 128,
360
359
      .arg = "DIRECTORY",
361
360
      .doc = "Specify a different plugin directory", .group = 2 },
375
374
  
376
375
  error_t parse_opt (int key, char *arg, __attribute__((unused))
377
376
                     struct argp_state *state) {
378
 
    /* Get the INPUT argument from `argp_parse', which we know is a
379
 
       pointer to our plugin list pointer. */
380
377
    switch (key) {
381
378
    case 'g':                   /* --global-options */
382
379
      if (arg != NULL){
392
389
        }
393
390
      }
394
391
      break;
395
 
    case 'e':                   /* --global-env */
 
392
    case 'G':                   /* --global-env */
396
393
      if(arg == NULL){
397
394
        break;
398
395
      }
399
 
      {
400
 
        char *envdef = strdup(arg);
401
 
        if(envdef == NULL){
402
 
          break;
403
 
        }
404
 
        if(not add_environment(getplugin(NULL), envdef, true)){
405
 
          perror("add_environment");
406
 
        }
 
396
      if(not add_environment(getplugin(NULL), arg, true)){
 
397
        perror("add_environment");
407
398
      }
408
399
      break;
409
400
    case 'o':                   /* --options-for */
410
401
      if (arg != NULL){
411
402
        char *p_name = strsep(&arg, ":");
412
 
        if(p_name[0] == '\0'){
 
403
        if(p_name[0] == '\0' or arg == NULL){
413
404
          break;
414
405
        }
415
406
        char *opt = strsep(&arg, ":");
416
 
        if(opt[0] == '\0'){
 
407
        if(opt[0] == '\0' or opt == NULL){
417
408
          break;
418
409
        }
419
 
        if(opt != NULL){
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;
428
 
            }
 
410
        char *p;
 
411
        while((p = strsep(&opt, ",")) != NULL){
 
412
          if(p[0] == '\0'){
 
413
            continue;
 
414
          }
 
415
          if(not add_argument(getplugin(p_name), p)){
 
416
            perror("add_argument");
 
417
            return ARGP_ERR_UNKNOWN;
429
418
          }
430
419
        }
431
420
      }
432
421
      break;
433
 
    case 'f':                   /* --env-for */
 
422
    case 'E':                   /* --env-for */
434
423
      if(arg == NULL){
435
424
        break;
436
425
      }
439
428
        if(envdef == NULL){
440
429
          break;
441
430
        }
442
 
        char *p_name = strndup(arg, (size_t) (envdef-arg));
443
 
        if(p_name == NULL){
444
 
          break;
445
 
        }
446
 
        envdef++;
447
 
        if(not add_environment(getplugin(p_name), envdef, true)){
 
431
        *envdef = '\0';
 
432
        if(not add_environment(getplugin(arg), envdef+1, true)){
448
433
          perror("add_environment");
449
434
        }
450
435
      }
458
443
        p->disabled = true;
459
444
      }
460
445
      break;
 
446
    case 'e':                   /* --enable */
 
447
      if (arg != NULL){
 
448
        plugin *p = getplugin(arg);
 
449
        if(p == NULL){
 
450
          return ARGP_ERR_UNKNOWN;
 
451
        }
 
452
        p->disabled = false;
 
453
      }
 
454
      break;
461
455
    case 128:                   /* --plugin-dir */
 
456
      free(plugindir);
462
457
      plugindir = strdup(arg);
463
458
      if(plugindir == NULL){
464
459
        perror("strdup");
465
460
      }      
466
461
      break;
467
462
    case 129:                   /* --config-file */
 
463
      /* This is already done by parse_opt_config_file() */
 
464
      break;
 
465
    case 130:                   /* --userid */
 
466
      uid = (uid_t)strtol(arg, NULL, 10);
 
467
      break;
 
468
    case 131:                   /* --groupid */
 
469
      gid = (gid_t)strtol(arg, NULL, 10);
 
470
      break;
 
471
    case 132:                   /* --debug */
 
472
      debug = true;
 
473
      break;
 
474
    case ARGP_KEY_ARG:
 
475
      /* Cryptsetup always passes an argument, which is an empty
 
476
         string if "none" was specified in /etc/crypttab.  So if
 
477
         argument was empty, we ignore it silently. */
 
478
      if(arg[0] != '\0'){
 
479
        fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
 
480
      }
 
481
      break;
 
482
    case ARGP_KEY_END:
 
483
      break;
 
484
    default:
 
485
      return ARGP_ERR_UNKNOWN;
 
486
    }
 
487
    return 0;
 
488
  }
 
489
  
 
490
  /* This option parser is the same as parse_opt() above, except it
 
491
     ignores everything but the --config-file option. */
 
492
  error_t parse_opt_config_file (int key, char *arg,
 
493
                                 __attribute__((unused))
 
494
                                 struct argp_state *state) {
 
495
    switch (key) {
 
496
    case 'g':                   /* --global-options */
 
497
    case 'G':                   /* --global-env */
 
498
    case 'o':                   /* --options-for */
 
499
    case 'E':                   /* --env-for */
 
500
    case 'd':                   /* --disable */
 
501
    case 'e':                   /* --enable */
 
502
    case 128:                   /* --plugin-dir */
 
503
      break;
 
504
    case 129:                   /* --config-file */
 
505
      free(argfile);
468
506
      argfile = strdup(arg);
469
507
      if(argfile == NULL){
470
508
        perror("strdup");
471
509
      }
472
510
      break;      
473
511
    case 130:                   /* --userid */
474
 
      uid = (uid_t)strtol(arg, NULL, 10);
475
 
      break;
476
512
    case 131:                   /* --groupid */
477
 
      gid = (gid_t)strtol(arg, NULL, 10);
478
 
      break;
479
513
    case 132:                   /* --debug */
480
 
      debug = true;
481
 
      break;
482
514
    case ARGP_KEY_ARG:
483
 
      fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
484
 
      break;
485
515
    case ARGP_KEY_END:
486
516
      break;
487
517
    default:
490
520
    return 0;
491
521
  }
492
522
  
493
 
  struct argp argp = { .options = options, .parser = parse_opt,
 
523
  struct argp argp = { .options = options,
 
524
                       .parser = parse_opt_config_file,
494
525
                       .args_doc = "",
495
526
                       .doc = "Mandos plugin runner -- Run plugins" };
496
527
  
 
528
  /* Parse using the parse_opt_config_file in order to get the custom
 
529
     config file location, if any. */
 
530
  ret = argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
 
531
  if (ret == ARGP_ERR_UNKNOWN){
 
532
    fprintf(stderr, "Unknown error while parsing arguments\n");
 
533
    exitstatus = EXIT_FAILURE;
 
534
    goto fallback;
 
535
  }
 
536
  
 
537
  /* Reset to the normal argument parser */
 
538
  argp.parser = parse_opt;
 
539
  
497
540
  /* Open the configfile if available */
498
541
  if (argfile == NULL){
499
542
    conffp = fopen(AFILE, "r");
504
547
    char *org_line = NULL;
505
548
    char *p, *arg, *new_arg, *line;
506
549
    size_t size = 0;
507
 
    ssize_t sret;
508
550
    const char whitespace_delims[] = " \r\t\f\v\n";
509
551
    const char comment_delim[] = "#";
510
552
 
659
701
      
660
702
      const char const *bad_suffixes[] = { "~", "#", ".dpkg-new",
661
703
                                           ".dpkg-old",
 
704
                                           ".dpkg-bak",
662
705
                                           ".dpkg-divert", NULL };
663
706
      for(const char **pre = bad_prefixes; *pre != NULL; pre++){
664
707
        size_t pre_len = strlen(*pre);
695
738
    }
696
739
 
697
740
    char *filename;
698
 
    ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
741
    if(plugindir == NULL){
 
742
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
 
743
    } else {
 
744
      ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
745
    }
699
746
    if(ret < 0){
700
747
      perror("asprintf");
701
748
      continue;
801
848
        perror("sigaction");
802
849
        _exit(EXIT_FAILURE);
803
850
      }
804
 
      ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
851
      ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
805
852
      if(ret < 0){
806
853
        perror("sigprocmask");
807
854
        _exit(EXIT_FAILURE);
808
855
      }
809
 
 
 
856
      
810
857
      ret = dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
811
858
      if(ret == -1){
812
859
        perror("dup2");
862
909
    if (maxfd < new_plugin->fd){
863
910
      maxfd = new_plugin->fd;
864
911
    }
865
 
    
866
912
  }
867
913
  
868
914
  closedir(dir);
869
915
  dir = NULL;
870
 
 
 
916
  
871
917
  for(plugin *p = plugin_list; p != NULL; p = p->next){
872
918
    if(p->pid != 0){
873
919
      break;
878
924
      free_plugin_list();
879
925
    }
880
926
  }
881
 
 
 
927
  
882
928
  /* Main loop while running plugins exist */
883
929
  while(plugin_list){
884
930
    fd_set rfds = rfds_all;
890
936
    }
891
937
    /* OK, now either a process completed, or something can be read
892
938
       from one of them */
893
 
    for(plugin *proc = plugin_list; proc != NULL; proc = proc->next){
 
939
    for(plugin *proc = plugin_list; proc != NULL;){
894
940
      /* Is this process completely done? */
895
941
      if(proc->eof and proc->completed){
896
942
        /* Only accept the plugin output if it exited cleanly */
923
969
            exitstatus = EXIT_FAILURE;
924
970
            goto fallback;
925
971
          }
 
972
          
 
973
          plugin *next_plugin = proc->next;
926
974
          free_plugin(proc);
 
975
          proc = next_plugin;
 
976
          
927
977
          /* We are done modifying process list, so unblock signal */
928
978
          ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
929
979
                             NULL);
936
986
          if(plugin_list == NULL){
937
987
            break;
938
988
          }
 
989
          
939
990
          continue;
940
991
        }
941
992
        
942
993
        /* This process exited nicely, so print its buffer */
943
 
 
 
994
        
944
995
        bool bret = print_out_password(proc->buffer,
945
996
                                       proc->buffer_length);
946
997
        if(not bret){
953
1004
      /* This process has not completed.  Does it have any output? */
954
1005
      if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
955
1006
        /* This process had nothing to say at this time */
 
1007
        proc = proc->next;
956
1008
        continue;
957
1009
      }
958
1010
      /* Before reading, make the process' data buffer large enough */
967
1019
        proc->buffer_size += BUFFER_SIZE;
968
1020
      }
969
1021
      /* Read from the process */
970
 
      ret = read(proc->fd, proc->buffer + proc->buffer_length,
971
 
                 BUFFER_SIZE);
972
 
      if(ret < 0){
 
1022
      sret = read(proc->fd, proc->buffer + proc->buffer_length,
 
1023
                  BUFFER_SIZE);
 
1024
      if(sret < 0){
973
1025
        /* Read error from this process; ignore the error */
 
1026
        proc = proc->next;
974
1027
        continue;
975
1028
      }
976
 
      if(ret == 0){
 
1029
      if(sret == 0){
977
1030
        /* got EOF */
978
1031
        proc->eof = true;
979
1032
      } else {
980
 
        proc->buffer_length += (size_t) ret;
 
1033
        proc->buffer_length += (size_t) sret;
981
1034
      }
982
1035
    }
983
1036
  }
991
1044
    bool bret;
992
1045
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
993
1046
    char *passwordbuffer = getpass("Password: ");
994
 
    bret = print_out_password(passwordbuffer, strlen(passwordbuffer));
 
1047
    size_t len = strlen(passwordbuffer);
 
1048
    /* Strip trailing newline */
 
1049
    if(len > 0 and passwordbuffer[len-1] == '\n'){
 
1050
      passwordbuffer[len-1] = '\0'; /* not strictly necessary */
 
1051
      len--;
 
1052
    }
 
1053
    bret = print_out_password(passwordbuffer, len);
995
1054
    if(not bret){
996
1055
      perror("print_out_password");
997
1056
      exitstatus = EXIT_FAILURE;
1004
1063
    perror("sigaction");
1005
1064
    exitstatus = EXIT_FAILURE;
1006
1065
  }
1007
 
 
 
1066
  
1008
1067
  if(custom_argv != NULL){
1009
1068
    for(char **arg = custom_argv+1; *arg != NULL; arg++){
1010
1069
      free(*arg);
1016
1075
    closedir(dir);
1017
1076
  }
1018
1077
  
1019
 
  /* Free the process list and kill the processes */
 
1078
  /* Kill the processes */
1020
1079
  for(plugin *p = plugin_list; p != NULL; p = p->next){
1021
1080
    if(p->pid != 0){
1022
1081
      close(p->fd);
1035
1094
  if(errno != ECHILD){
1036
1095
    perror("wait");
1037
1096
  }
1038
 
 
 
1097
  
1039
1098
  free_plugin_list();
1040
1099
  
1041
1100
  free(plugindir);