/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

  • Committer: Teddy Hogeborn
  • Date: 2008-08-31 14:00:36 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080831140036-5bruinjq267s5f8p
* mandos-clients.conf.xml: Changed all single quotes to double quotes
                           for consistency.
* mandos.conf.xml: - '' -
* plugin-runner.xml: - '' -
* plugins.d/password-request.xml: - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
#include <argp.h>               /* struct argp_option, struct
57
57
                                   argp_state, struct argp,
58
58
                                   argp_parse(), ARGP_ERR_UNKNOWN,
59
 
                                   ARGP_KEY_END, ARGP_KEY_ARG, error_t */
 
59
                                   ARGP_KEY_END, ARGP_KEY_ARG,
 
60
                                   error_t */
60
61
#include <signal.h>             /* struct sigaction, sigemptyset(),
61
62
                                   sigaddset(), sigaction(),
62
63
                                   sigprocmask(), SIG_BLOCK, SIGCHLD,
64
65
#include <errno.h>              /* errno, EBADF */
65
66
 
66
67
#define BUFFER_SIZE 256
67
 
#define ARGFILE "/conf/conf.d/mandos/plugin-runner.conf"
 
68
 
 
69
#define PDIR "/lib/mandos/plugins.d"
 
70
#define AFILE "/conf/conf.d/mandos/plugin-runner.conf"
68
71
 
69
72
const char *argp_program_version = "plugin-runner 1.0";
70
73
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
78
81
  size_t buffer_size;
79
82
  size_t buffer_length;
80
83
  bool eof;
81
 
  bool completed;
82
 
  int status;
 
84
  volatile bool completed;
 
85
  volatile int status;
83
86
  struct process *next;
84
87
} process;
85
88
 
199
202
 
200
203
process *process_list = NULL;
201
204
 
202
 
/* Mark processes as completed when it exits, and save its exit
 
205
/* Mark processes as completed when they exit, and save their exit
203
206
   status. */
204
207
void handle_sigchld(__attribute__((unused)) int sig){
205
 
  process *proc = process_list;
206
208
  while(true){
 
209
    process *proc = process_list;
207
210
    int status;
208
211
    pid_t pid = waitpid(-1, &status, WNOHANG);
209
212
    if(pid == 0){
 
213
      /* Only still running child processes */
210
214
      break;
211
215
    }
212
216
    if(pid == -1){
213
217
      if (errno != ECHILD){
214
218
        perror("waitpid");
215
219
      }
216
 
      return;
 
220
      /* No child processes */
 
221
      break;
217
222
    }
218
223
 
 
224
    /* A child exited, find it in process_list */
219
225
    while(proc != NULL and proc->pid != pid){
220
226
      proc = proc->next;
221
227
    }
243
249
  return true;
244
250
}
245
251
 
246
 
char **add_to_argv(char **argv, int *argc, char *arg){
247
 
  if (argv == NULL){
248
 
    *argc = 1;
249
 
    argv = malloc(sizeof(char*) * 2);
250
 
    if(argv == NULL){
251
 
      return NULL;
252
 
    }
253
 
    argv[0] = NULL;     /* Will be set to argv[0] in main before parsing */
254
 
    argv[1] = NULL;
255
 
  }
256
 
  *argc += 1;
257
 
  argv = realloc(argv, sizeof(char *)
258
 
                  * ((unsigned int) *argc + 1));
259
 
  if(argv == NULL){
260
 
    return NULL;
261
 
  }
262
 
  argv[*argc-1] = arg;
263
 
  argv[*argc] = NULL;
264
 
  return argv;
265
 
}
266
 
 
267
252
static void free_plugin_list(plugin *plugin_list){
268
253
  for(plugin *next; plugin_list != NULL; plugin_list = next){
269
254
    next = plugin_list->next;
280
265
}
281
266
 
282
267
int main(int argc, char *argv[]){
283
 
  const char *plugindir = "/lib/mandos/plugins.d";
284
 
  const char *argfile = ARGFILE;
 
268
  char *plugindir = NULL;
 
269
  char *argfile = NULL;
285
270
  FILE *conffp;
286
271
  size_t d_name_len;
287
272
  DIR *dir = NULL;
334
319
    { .name = "plugin-dir", .key = 128,
335
320
      .arg = "DIRECTORY",
336
321
      .doc = "Specify a different plugin directory", .group = 2 },
337
 
    { .name = "userid", .key = 129,
338
 
      .arg = "ID", .flags = 0,
339
 
      .doc = "User ID the plugins will run as", .group = 2 },
340
 
    { .name = "groupid", .key = 130,
341
 
      .arg = "ID", .flags = 0,
342
 
      .doc = "Group ID the plugins will run as", .group = 2 },
343
 
    { .name = "debug", .key = 131,
344
 
      .doc = "Debug mode", .group = 3 },
 
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 },
345
333
    { .name = NULL }
346
334
  };
347
335
  
431
419
      }
432
420
      break;
433
421
    case 128:
434
 
      plugindir = arg;
 
422
      plugindir = strdup(arg);
 
423
      if(plugindir == NULL){
 
424
        perror("strdup");
 
425
      }      
435
426
      break;
436
427
    case 129:
 
428
      argfile = strdup(arg);
 
429
      if(argfile == NULL){
 
430
        perror("strdup");
 
431
      }
 
432
      break;      
 
433
    case 130:
437
434
      uid = (uid_t)strtol(arg, NULL, 10);
438
435
      break;
439
 
    case 130:
 
436
    case 131:
440
437
      gid = (gid_t)strtol(arg, NULL, 10);
441
438
      break;
442
 
    case 131:
 
439
    case 132:
443
440
      debug = true;
444
441
      break;
445
442
    case ARGP_KEY_ARG:
466
463
    goto fallback;
467
464
  }
468
465
 
469
 
  conffp = fopen(argfile, "r");
 
466
  if (argfile == NULL){
 
467
    conffp = fopen(AFILE, "r");
 
468
  } else {
 
469
    conffp = fopen(argfile, "r");
 
470
  }
 
471
  
470
472
  if(conffp != NULL){
471
473
    char *org_line = NULL;
472
474
    char *p, *arg, *new_arg, *line;
475
477
    const char whitespace_delims[] = " \r\t\f\v\n";
476
478
    const char comment_delim[] = "#";
477
479
 
 
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
    
478
490
    while(true){
479
491
      sret = getline(&org_line, &size, conffp);
480
492
      if(sret == -1){
488
500
          continue;
489
501
        }
490
502
        new_arg = strdup(p);
491
 
        custom_argv = add_to_argv(custom_argv, &custom_argc, new_arg);
492
 
        if (custom_argv == NULL){
493
 
          perror("add_to_argv");
494
 
          exitstatus = EXIT_FAILURE;
495
 
          goto fallback;
496
 
        }
 
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;        
497
521
      }
498
522
    }
499
523
    free(org_line);
508
532
  }
509
533
 
510
534
  if(custom_argv != NULL){
511
 
    custom_argv[0] = argv[0];
512
535
    ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, &plugin_list);
513
536
    if (ret == ARGP_ERR_UNKNOWN){
514
537
      fprintf(stderr, "Unknown error while parsing arguments\n");
540
563
  if (ret == -1){
541
564
    perror("setgid");
542
565
  }
 
566
 
 
567
  if (plugindir == NULL){
 
568
    dir = opendir(PDIR);
 
569
  } else {
 
570
    dir = opendir(plugindir);
 
571
  }
543
572
  
544
 
  dir = opendir(plugindir);
545
573
  if(dir == NULL){
546
574
    perror("Could not open plugin dir");
547
575
    exitstatus = EXIT_FAILURE;
797
825
    }
798
826
    
799
827
  }
800
 
  
 
828
 
801
829
  free_plugin_list(plugin_list);
802
830
  plugin_list = NULL;
803
831
  
843
871
          /* Remove the plugin */
844
872
          FD_CLR(proc->fd, &rfds_all);
845
873
          /* Block signal while modifying process_list */
846
 
          ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
874
          ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
847
875
          if(ret < 0){
848
876
            perror("sigprocmask");
849
877
            exitstatus = EXIT_FAILURE;
877
905
        }
878
906
        /* This process exited nicely, so print its buffer */
879
907
 
880
 
        bool bret = print_out_password(proc->buffer, proc->buffer_length);
 
908
        bool bret = print_out_password(proc->buffer,
 
909
                                       proc->buffer_length);
881
910
        if(not bret){
882
911
          perror("print_out_password");
883
912
          exitstatus = EXIT_FAILURE;
920
949
 fallback:
921
950
  
922
951
  if(process_list == NULL or exitstatus != EXIT_SUCCESS){
923
 
    /* Fallback if all plugins failed, none are found or an error occured */
 
952
    /* Fallback if all plugins failed, none are found or an error
 
953
       occured */
924
954
    bool bret;
925
955
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
926
956
    char *passwordbuffer = getpass("Password: ");
939
969
  }
940
970
 
941
971
  if(custom_argv != NULL){
942
 
    for(char **arg = custom_argv; *arg != NULL; arg++){
 
972
    for(char **arg = custom_argv+1; *arg != NULL; arg++){
943
973
      free(*arg);
944
974
    }
945
975
    free(custom_argv);
970
1000
  if(errno != ECHILD){
971
1001
    perror("wait");
972
1002
  }
 
1003
 
 
1004
  free(plugindir);
 
1005
  free(argfile);
973
1006
  
974
1007
  return exitstatus;
975
1008
}