/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-01 08:29:23 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080901082923-i2liq6t7warmu9xe
* mandos.xml: Enclose "RAM" with <acronym>.
* overview.xml: - '' -

* plugin-runner.xml (DESCRIPTION): Improved wording.
  (PURPOSE): New section.
  (OPTIONS): Improved wording.
  (OVERVIEW, PLUGINS): New section.
  (FALLBACK): New empty placeholder section.

* plugins.d/password-prompt.xml: Enclose "RAM" with <acronym>.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
const char *argp_program_version = "plugin-runner 1.0";
73
73
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
74
74
 
 
75
struct plugin;
 
76
 
75
77
typedef struct plugin{
76
78
  char *name;                   /* can be NULL or any plugin name */
77
79
  char **argv;
94
96
 
95
97
static plugin *plugin_list = NULL;
96
98
 
97
 
/* Gets an existing plugin based on name,
 
99
/* Gets a existing plugin based on name,
98
100
   or if none is found, creates a new one */
99
101
static plugin *getplugin(char *name){
100
102
  /* Check for exiting plugin with that name */
116
118
      return NULL;
117
119
    }
118
120
  }
119
 
  
 
121
 
120
122
  *new_plugin = (plugin) { .name = copy_name,
121
123
                           .argc = 1,
122
124
                           .disabled = false,
130
132
  }
131
133
  new_plugin->argv[0] = copy_name;
132
134
  new_plugin->argv[1] = NULL;
133
 
  
 
135
 
134
136
  new_plugin->environ = malloc(sizeof(char *));
135
137
  if(new_plugin->environ == NULL){
136
138
    free(copy_name);
139
141
    return NULL;
140
142
  }
141
143
  new_plugin->environ[0] = NULL;
142
 
  
 
144
 
143
145
  /* Append the new plugin to the list */
144
146
  plugin_list = new_plugin;
145
147
  return new_plugin;
177
179
}
178
180
 
179
181
/* Add to a plugin's environment */
180
 
static bool add_environment(plugin *p, const char *def, bool replace){
 
182
static bool add_environment(plugin *p, const char *def){
181
183
  if(p == NULL){
182
184
    return false;
183
185
  }
184
 
  /* namelen = length of name of environment variable */
185
 
  size_t namelen = (size_t)(strchrnul(def, '=') - def);
186
 
  /* Search for this environment variable */
187
 
  for(char **e = p->environ; *e != NULL; e++){
188
 
    if(strncmp(*e, def, namelen + 1) == 0){
189
 
      /* It already exists */
190
 
      if(replace){
191
 
        char *new = realloc(*e, strlen(def) + 1);
192
 
        if(new == NULL){
193
 
          return false;
194
 
        }
195
 
        *e = new;
196
 
        strcpy(*e, def);
197
 
      }
198
 
      return true;
199
 
    }
200
 
  }
201
186
  return add_to_char_array(def, &(p->environ), &(p->envc));
202
187
}
203
188
 
206
191
 * Descriptor Flags".
207
192
 * *Note File Descriptor Flags:(libc)Descriptor Flags.
208
193
 */
209
 
static int set_cloexec_flag(int fd){
 
194
static int set_cloexec_flag(int fd)
 
195
{
210
196
  int ret = fcntl(fd, F_GETFD, 0);
211
197
  /* If reading the flags failed, return error indication now. */
212
198
  if(ret < 0){
219
205
 
220
206
/* Mark processes as completed when they exit, and save their exit
221
207
   status. */
222
 
static void handle_sigchld(__attribute__((unused)) int sig){
 
208
void handle_sigchld(__attribute__((unused)) int sig){
223
209
  while(true){
224
210
    plugin *proc = plugin_list;
225
211
    int status;
235
221
      /* No child processes */
236
222
      break;
237
223
    }
238
 
    
 
224
 
239
225
    /* A child exited, find it in process_list */
240
226
    while(proc != NULL and proc->pid != pid){
241
227
      proc = proc->next;
250
236
}
251
237
 
252
238
/* Prints out a password to stdout */
253
 
static bool print_out_password(const char *buffer, size_t length){
 
239
bool print_out_password(const char *buffer, size_t length){
254
240
  ssize_t ret;
 
241
  if(length>0 and buffer[length-1] == '\n'){
 
242
    length--;
 
243
  }
255
244
  for(size_t written = 0; written < length; written += (size_t)ret){
256
245
    ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO, buffer + written,
257
246
                                   length - written));
338
327
    { .name = "global-options", .key = 'g',
339
328
      .arg = "OPTION[,OPTION[,...]]",
340
329
      .doc = "Options passed to all plugins" },
341
 
    { .name = "global-env", .key = 'G',
 
330
    { .name = "global-envs", .key = 'e',
342
331
      .arg = "VAR=value",
343
332
      .doc = "Environment variable passed to all plugins" },
344
333
    { .name = "options-for", .key = 'o',
345
334
      .arg = "PLUGIN:OPTION[,OPTION[,...]]",
346
335
      .doc = "Options passed only to specified plugin" },
347
 
    { .name = "env-for", .key = 'E',
 
336
    { .name = "envs-for", .key = 'f',
348
337
      .arg = "PLUGIN:ENV=value",
349
338
      .doc = "Environment variable passed to specified plugin" },
350
339
    { .name = "disable", .key = 'd',
351
340
      .arg = "PLUGIN",
352
341
      .doc = "Disable a specific plugin", .group = 1 },
353
 
    { .name = "enable", .key = 'e',
354
 
      .arg = "PLUGIN",
355
 
      .doc = "Enable a specific plugin", .group = 1 },
356
342
    { .name = "plugin-dir", .key = 128,
357
343
      .arg = "DIRECTORY",
358
344
      .doc = "Specify a different plugin directory", .group = 2 },
372
358
  
373
359
  error_t parse_opt (int key, char *arg, __attribute__((unused))
374
360
                     struct argp_state *state) {
 
361
    /* Get the INPUT argument from `argp_parse', which we know is a
 
362
       pointer to our plugin list pointer. */
375
363
    switch (key) {
376
364
    case 'g':                   /* --global-options */
377
365
      if (arg != NULL){
387
375
        }
388
376
      }
389
377
      break;
390
 
    case 'G':                   /* --global-env */
 
378
    case 'e':                   /* --global-envs */
391
379
      if(arg == NULL){
392
380
        break;
393
381
      }
394
 
      if(not add_environment(getplugin(NULL), arg, true)){
395
 
        perror("add_environment");
 
382
      {
 
383
        char *envdef = strdup(arg);
 
384
        if(envdef == NULL){
 
385
          break;
 
386
        }
 
387
        if(not add_environment(getplugin(NULL), envdef)){
 
388
          perror("add_environment");
 
389
        }
396
390
      }
397
391
      break;
398
392
    case 'o':                   /* --options-for */
399
393
      if (arg != NULL){
400
394
        char *p_name = strsep(&arg, ":");
401
 
        if(p_name[0] == '\0' or arg == NULL){
 
395
        if(p_name[0] == '\0'){
402
396
          break;
403
397
        }
404
398
        char *opt = strsep(&arg, ":");
405
 
        if(opt[0] == '\0' or opt == NULL){
 
399
        if(opt[0] == '\0'){
406
400
          break;
407
401
        }
408
 
        char *p;
409
 
        while((p = strsep(&opt, ",")) != NULL){
410
 
          if(p[0] == '\0'){
411
 
            continue;
412
 
          }
413
 
          if(not add_argument(getplugin(p_name), p)){
414
 
            perror("add_argument");
415
 
            return ARGP_ERR_UNKNOWN;
 
402
        if(opt != NULL){
 
403
          char *p;
 
404
          while((p = strsep(&opt, ",")) != NULL){
 
405
            if(p[0] == '\0'){
 
406
              continue;
 
407
            }
 
408
            if(not add_argument(getplugin(p_name), p)){
 
409
              perror("add_argument");
 
410
              return ARGP_ERR_UNKNOWN;
 
411
            }
416
412
          }
417
413
        }
418
414
      }
419
415
      break;
420
 
    case 'E':                   /* --env-for */
 
416
    case 'f':                   /* --envs-for */
421
417
      if(arg == NULL){
422
418
        break;
423
419
      }
426
422
        if(envdef == NULL){
427
423
          break;
428
424
        }
429
 
        *envdef = '\0';
430
 
        if(not add_environment(getplugin(arg), envdef+1, true)){
 
425
        char *p_name = strndup(arg, (size_t) (envdef-arg));
 
426
        if(p_name == NULL){
 
427
          break;
 
428
        }
 
429
        envdef++;
 
430
        if(not add_environment(getplugin(p_name), envdef)){
431
431
          perror("add_environment");
432
432
        }
433
433
      }
441
441
        p->disabled = true;
442
442
      }
443
443
      break;
444
 
    case 'e':                   /* --enable */
445
 
      if (arg != NULL){
446
 
        plugin *p = getplugin(arg);
447
 
        if(p == NULL){
448
 
          return ARGP_ERR_UNKNOWN;
449
 
        }
450
 
        p->disabled = false;
451
 
      }
452
 
      break;
453
444
    case 128:                   /* --plugin-dir */
454
 
      free(plugindir);
455
445
      plugindir = strdup(arg);
456
446
      if(plugindir == NULL){
457
447
        perror("strdup");
458
448
      }      
459
449
      break;
460
450
    case 129:                   /* --config-file */
461
 
      /* This is already done by parse_opt_config_file() */
462
 
      break;
 
451
      argfile = strdup(arg);
 
452
      if(argfile == NULL){
 
453
        perror("strdup");
 
454
      }
 
455
      break;      
463
456
    case 130:                   /* --userid */
464
457
      uid = (uid_t)strtol(arg, NULL, 10);
465
458
      break;
470
463
      debug = true;
471
464
      break;
472
465
    case ARGP_KEY_ARG:
473
 
      /* Cryptsetup always passes an argument, which is an empty
474
 
         string if "none" was specified in /etc/crypttab.  So if
475
 
         argument was empty, we ignore it silently. */
476
 
      if(arg[0] != '\0'){
477
 
        fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
478
 
      }
479
 
      break;
480
 
    case ARGP_KEY_END:
481
 
      break;
482
 
    default:
483
 
      return ARGP_ERR_UNKNOWN;
484
 
    }
485
 
    return 0;
486
 
  }
487
 
  
488
 
  /* This option parser is the same as parse_opt() above, except it
489
 
     ignores everything but the --config-file option. */
490
 
  error_t parse_opt_config_file (int key, char *arg,
491
 
                                 __attribute__((unused))
492
 
                                 struct argp_state *state) {
493
 
    switch (key) {
494
 
    case 'g':                   /* --global-options */
495
 
    case 'G':                   /* --global-env */
496
 
    case 'o':                   /* --options-for */
497
 
    case 'E':                   /* --env-for */
498
 
    case 'd':                   /* --disable */
499
 
    case 'e':                   /* --enable */
500
 
    case 128:                   /* --plugin-dir */
501
 
      break;
502
 
    case 129:                   /* --config-file */
503
 
      free(argfile);
504
 
      argfile = strdup(arg);
505
 
      if(argfile == NULL){
506
 
        perror("strdup");
507
 
      }
508
 
      break;      
509
 
    case 130:                   /* --userid */
510
 
    case 131:                   /* --groupid */
511
 
    case 132:                   /* --debug */
512
 
    case ARGP_KEY_ARG:
513
 
    case ARGP_KEY_END:
514
 
      break;
515
 
    default:
516
 
      return ARGP_ERR_UNKNOWN;
517
 
    }
518
 
    return 0;
519
 
  }
520
 
  
521
 
  struct argp argp = { .options = options,
522
 
                       .parser = parse_opt_config_file,
523
 
                       .args_doc = "",
 
466
      fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
 
467
      break;
 
468
    case ARGP_KEY_END:
 
469
      break;
 
470
    default:
 
471
      return ARGP_ERR_UNKNOWN;
 
472
    }
 
473
    return 0;
 
474
  }
 
475
  
 
476
  struct argp argp = { .options = options, .parser = parse_opt,
 
477
                       .args_doc = "[+PLUS_SEPARATED_OPTIONS]",
524
478
                       .doc = "Mandos plugin runner -- Run plugins" };
525
479
  
526
 
  /* Parse using the parse_opt_config_file in order to get the custom
527
 
     config file location, if any. */
528
 
  ret = argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
 
480
  ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
529
481
  if (ret == ARGP_ERR_UNKNOWN){
530
482
    fprintf(stderr, "Unknown error while parsing arguments\n");
531
483
    exitstatus = EXIT_FAILURE;
532
484
    goto fallback;
533
485
  }
534
 
  
535
 
  /* Reset to the normal argument parser */
536
 
  argp.parser = parse_opt;
537
 
  
538
 
  /* Open the configfile if available */
 
486
 
 
487
  /* Opens the configfile if aviable */
539
488
  if (argfile == NULL){
540
489
    conffp = fopen(AFILE, "r");
541
490
  } else {
595
544
      }
596
545
    }
597
546
    free(org_line);
598
 
  } else {
 
547
  } else{
599
548
    /* Check for harmful errors and go to fallback. Other errors might
600
549
       not affect opening plugins */
601
550
    if (errno == EMFILE or errno == ENFILE or errno == ENOMEM){
607
556
  /* If there was any arguments from configuration file,
608
557
     pass them to parser as command arguments */
609
558
  if(custom_argv != NULL){
610
 
    ret = argp_parse (&argp, custom_argc, custom_argv, ARGP_IN_ORDER,
611
 
                      0, NULL);
 
559
    ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, NULL);
612
560
    if (ret == ARGP_ERR_UNKNOWN){
613
561
      fprintf(stderr, "Unknown error while parsing arguments\n");
614
562
      exitstatus = EXIT_FAILURE;
616
564
    }
617
565
  }
618
566
  
619
 
  /* Parse actual command line arguments, to let them override the
620
 
     config file */
621
 
  ret = argp_parse (&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
622
 
  if (ret == ARGP_ERR_UNKNOWN){
623
 
    fprintf(stderr, "Unknown error while parsing arguments\n");
624
 
    exitstatus = EXIT_FAILURE;
625
 
    goto fallback;
626
 
  }
627
 
  
628
567
  if(debug){
629
568
    for(plugin *p = plugin_list; p != NULL; p=p->next){
630
569
      fprintf(stderr, "Plugin: %s has %d arguments\n",
638
577
      }
639
578
    }
640
579
  }
641
 
  
 
580
 
642
581
  /* Strip permissions down to nobody */
643
582
  ret = setuid(uid);
644
583
  if (ret == -1){
648
587
  if (ret == -1){
649
588
    perror("setgid");
650
589
  }
651
 
  
 
590
 
652
591
  if (plugindir == NULL){
653
592
    dir = opendir(PDIR);
654
593
  } else {
675
614
  }
676
615
  
677
616
  FD_ZERO(&rfds_all);
678
 
  
 
617
 
679
618
  /* Read and execute any executable in the plugin directory*/
680
619
  while(true){
681
620
    dirst = readdir(dir);
682
621
    
683
 
    /* All directory entries have been processed */
 
622
    // All directory entries have been processed
684
623
    if(dirst == NULL){
685
624
      if (errno == EBADF){
686
625
        perror("readdir");
692
631
    
693
632
    d_name_len = strlen(dirst->d_name);
694
633
    
695
 
    /* Ignore dotfiles, backup files and other junk */
 
634
    // Ignore dotfiles, backup files and other junk
696
635
    {
697
636
      bool bad_name = false;
698
637
      
736
675
    }
737
676
 
738
677
    char *filename;
739
 
    if(plugindir == NULL){
740
 
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
741
 
    } else {
742
 
      ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
743
 
    }
 
678
    ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
744
679
    if(ret < 0){
745
680
      perror("asprintf");
746
681
      continue;
788
723
        }
789
724
        /* Add global environment variables */
790
725
        for(char **e = g->environ; *e != NULL; e++){
791
 
          if(not add_environment(p, *e, false)){
 
726
          if(not add_environment(p, *e)){
792
727
            perror("add_environment");
793
728
          }
794
729
        }
799
734
       process, too. */
800
735
    if(p->environ[0] != NULL){
801
736
      for(char **e = environ; *e != NULL; e++){
802
 
        if(not add_environment(p, *e, false)){
 
737
        char *copy = strdup(*e);
 
738
        if(copy == NULL){
 
739
          perror("strdup");
 
740
          continue;
 
741
        }
 
742
        if(not add_environment(p, copy)){
803
743
          perror("add_environment");
804
744
        }
805
745
      }
832
772
      exitstatus = EXIT_FAILURE;
833
773
      goto fallback;
834
774
    }
835
 
    /* Starting a new process to be watched */
 
775
    // Starting a new process to be watched
836
776
    pid_t pid = fork();
837
777
    if(pid == -1){
838
778
      perror("fork");
935
875
    }
936
876
    /* OK, now either a process completed, or something can be read
937
877
       from one of them */
938
 
    for(plugin *proc = plugin_list; proc != NULL;){
 
878
    for(plugin *proc = plugin_list; proc != NULL; proc = proc->next){
939
879
      /* Is this process completely done? */
940
880
      if(proc->eof and proc->completed){
941
881
        /* Only accept the plugin output if it exited cleanly */
968
908
            exitstatus = EXIT_FAILURE;
969
909
            goto fallback;
970
910
          }
971
 
          
 
911
          free_plugin(proc);
972
912
          /* We are done modifying process list, so unblock signal */
973
913
          ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
974
914
                             NULL);
981
921
          if(plugin_list == NULL){
982
922
            break;
983
923
          }
984
 
          
985
 
          plugin *next_plugin = proc->next;
986
 
          free_plugin(proc);
987
 
          proc = next_plugin;
988
924
          continue;
989
925
        }
990
926
        
1002
938
      /* This process has not completed.  Does it have any output? */
1003
939
      if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
1004
940
        /* This process had nothing to say at this time */
1005
 
        proc = proc->next;
1006
941
        continue;
1007
942
      }
1008
943
      /* Before reading, make the process' data buffer large enough */
1021
956
                 BUFFER_SIZE);
1022
957
      if(ret < 0){
1023
958
        /* Read error from this process; ignore the error */
1024
 
        proc = proc->next;
1025
959
        continue;
1026
960
      }
1027
961
      if(ret == 0){
1042
976
    bool bret;
1043
977
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
1044
978
    char *passwordbuffer = getpass("Password: ");
1045
 
    size_t len = strlen(passwordbuffer);
1046
 
    /* Strip trailing newline */
1047
 
    if(len > 0 and passwordbuffer[len-1] == '\n'){
1048
 
      passwordbuffer[len-1] = '\0'; /* not strictly necessary */
1049
 
      len--;
1050
 
    }
1051
 
    bret = print_out_password(passwordbuffer, len);
 
979
    bret = print_out_password(passwordbuffer, strlen(passwordbuffer));
1052
980
    if(not bret){
1053
981
      perror("print_out_password");
1054
982
      exitstatus = EXIT_FAILURE;