1
#include <stdio.h> /* popen, fileno */
2
#include <iso646.h> /* and, or, not */
3
#include <sys/types.h> /* DIR, opendir, stat, struct stat, waitpid,
4
WIFEXITED, WEXITSTATUS, wait */
5
#include <sys/wait.h> /* wait */
6
#include <dirent.h> /* DIR, opendir */
7
#include <sys/stat.h> /* stat, struct stat */
8
#include <unistd.h> /* stat, struct stat, chdir */
9
#include <stdlib.h> /* EXIT_FAILURE */
10
#include <sys/select.h> /* fd_set, select, FD_ZERO, FD_SET, FD_ISSET */
11
#include <string.h> /* strlen, strcpy, strcat */
12
#include <stdbool.h> /* true */
13
#include <sys/wait.h> /* waitpid, WIFEXITED, WEXITSTATUS */
14
#include <errno.h> /* errno */
1
/* -*- coding: utf-8 -*- */
3
* Mandos plugin runner - Run Mandos plugins
5
* Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
7
* This program is free software: you can redistribute it and/or
8
* modify it under the terms of the GNU General Public License as
9
* published by the Free Software Foundation, either version 3 of the
10
* License, or (at your option) any later version.
12
* This program is distributed in the hope that it will be useful, but
13
* WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
* General Public License for more details.
17
* You should have received a copy of the GNU General Public License
18
* along with this program. If not, see
19
* <http://www.gnu.org/licenses/>.
21
* Contact the authors at <mandos@fukt.bsnet.se>.
24
#define _GNU_SOURCE /* TEMP_FAILURE_RETRY(), getline(),
26
#include <stddef.h> /* size_t, NULL */
27
#include <stdlib.h> /* malloc(), exit(), EXIT_FAILURE,
28
EXIT_SUCCESS, realloc() */
29
#include <stdbool.h> /* bool, true, false */
30
#include <stdio.h> /* perror, popen(), fileno(),
31
fprintf(), stderr, STDOUT_FILENO */
32
#include <sys/types.h> /* DIR, opendir(), stat(), struct
33
stat, waitpid(), WIFEXITED(),
34
WEXITSTATUS(), wait(), pid_t,
35
uid_t, gid_t, getuid(), getgid(),
37
#include <sys/select.h> /* fd_set, select(), FD_ZERO(),
38
FD_SET(), FD_ISSET(), FD_CLR */
39
#include <sys/wait.h> /* wait(), waitpid(), WIFEXITED(),
41
#include <sys/stat.h> /* struct stat, stat(), S_ISREG() */
42
#include <iso646.h> /* and, or, not */
43
#include <dirent.h> /* DIR, struct dirent, opendir(),
44
readdir(), closedir(), dirfd() */
45
#include <unistd.h> /* struct stat, stat(), S_ISREG(),
46
fcntl(), setuid(), setgid(),
47
F_GETFD, F_SETFD, FD_CLOEXEC,
48
access(), pipe(), fork(), close()
49
dup2, STDOUT_FILENO, _exit(),
50
execv(), write(), read(),
52
#include <fcntl.h> /* fcntl(), F_GETFD, F_SETFD,
54
#include <string.h> /* strsep, strlen(), asprintf() */
55
#include <errno.h> /* errno */
56
#include <argp.h> /* struct argp_option, struct
57
argp_state, struct argp,
58
argp_parse(), ARGP_ERR_UNKNOWN,
59
ARGP_KEY_END, ARGP_KEY_ARG, error_t */
60
#include <signal.h> /* struct sigaction, sigemptyset(),
61
sigaddset(), sigaction(),
62
sigprocmask(), SIG_BLOCK, SIGCHLD,
63
SIG_UNBLOCK, kill() */
64
#include <errno.h> /* errno, EBADF */
66
#define BUFFER_SIZE 256
67
#define ARGFILE "/conf/conf.d/mandos/plugin-runner.conf"
69
const char *argp_program_version = "plugin-runner 1.0";
70
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
24
83
struct process *next;
27
#define BUFFER_SIZE 256
86
typedef struct plugin{
87
char *name; /* can be NULL or any plugin name */
96
static plugin *getplugin(char *name, plugin **plugin_list){
97
for (plugin *p = *plugin_list; p != NULL; p = p->next){
99
or (p->name and name and (strcmp(p->name, name) == 0))){
103
/* Create a new plugin */
104
plugin *new_plugin = malloc(sizeof(plugin));
105
if (new_plugin == NULL){
108
char *copy_name = strdup(name);
109
if(copy_name == NULL){
113
*new_plugin = (plugin) { .name = copy_name,
117
.next = *plugin_list };
119
new_plugin->argv = malloc(sizeof(char *) * 2);
120
if (new_plugin->argv == NULL){
124
new_plugin->argv[0] = copy_name;
125
new_plugin->argv[1] = NULL;
127
new_plugin->environ = malloc(sizeof(char *));
128
if(new_plugin->environ == NULL){
129
free(new_plugin->argv);
133
new_plugin->environ[0] = NULL;
134
/* Append the new plugin to the list */
135
*plugin_list = new_plugin;
139
/* Helper function for add_argument and add_environment */
140
static bool add_to_char_array(const char *new, char ***array,
142
/* Resize the pointed-to array to hold one more pointer */
143
*array = realloc(*array, sizeof(char *)
144
* (size_t) ((*len) + 2));
149
/* Make a copy of the new string */
150
char *copy = strdup(new);
154
/* Insert the copy */
155
(*array)[*len] = copy;
157
/* Add a new terminating NULL pointer to the last element */
158
(*array)[*len] = NULL;
162
/* Add to a plugin's argument vector */
163
static bool add_argument(plugin *p, const char *arg){
167
return add_to_char_array(arg, &(p->argv), &(p->argc));
170
/* Add to a plugin's environment */
171
static bool add_environment(plugin *p, const char *def){
175
return add_to_char_array(def, &(p->environ), &(p->envc));
180
* Based on the example in the GNU LibC manual chapter 13.13 "File
182
* *Note File Descriptor Flags:(libc)Descriptor Flags.
184
static int set_cloexec_flag(int fd)
186
int ret = fcntl(fd, F_GETFD, 0);
187
/* If reading the flags failed, return error indication now. */
191
/* Store modified flag word in the descriptor. */
192
return fcntl(fd, F_SETFD, ret | FD_CLOEXEC);
195
process *process_list = NULL;
197
/* Mark a process as completed when it exits, and save its exit
199
void handle_sigchld(__attribute__((unused)) int sig){
200
process *proc = process_list;
202
pid_t pid = wait(&status);
207
while(proc != NULL and proc->pid != pid){
211
/* Process not found in process list */
214
proc->status = status;
215
proc->completed = true;
218
bool print_out_password(const char *buffer, size_t length){
220
if(length>0 and buffer[length-1] == '\n'){
223
for(size_t written = 0; written < length; written += (size_t)ret){
224
ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO, buffer + written,
233
char **add_to_argv(char **argv, int *argc, char *arg){
236
argv = malloc(sizeof(char*) * 2);
240
argv[0] = NULL; /* Will be set to argv[0] in main before parsing */
244
argv = realloc(argv, sizeof(char *)
245
* ((unsigned int) *argc + 1));
254
static void free_plugin_list(plugin *plugin_list){
255
for(plugin *next = plugin_list; plugin_list != NULL; plugin_list = next){
256
next = plugin_list->next;
257
free(plugin_list->name);
258
for(char **arg = plugin_list->argv; *arg != NULL; arg++){
261
free(plugin_list->argv);
262
for(char **env = plugin_list->environ; *env != NULL; env++){
265
free(plugin_list->environ);
29
270
int main(int argc, char *argv[]){
30
char plugindir[] = "plugins.d";
31
size_t d_name_len, plugindir_len = sizeof(plugindir)-1;
271
const char *plugindir = "/lib/mandos/plugins.d";
272
const char *argfile = ARGFILE;
33
276
struct dirent *dirst;
36
279
int ret, maxfd = 0;
37
process *process_list = NULL;
283
int exitstatus = EXIT_SUCCESS;
284
struct sigaction old_sigchld_action;
285
struct sigaction sigchld_action = { .sa_handler = handle_sigchld,
286
.sa_flags = SA_NOCLDSTOP };
287
char **custom_argv = NULL;
290
/* Establish a signal handler */
291
sigemptyset(&sigchld_action.sa_mask);
292
ret = sigaddset(&sigchld_action.sa_mask, SIGCHLD);
295
exitstatus = EXIT_FAILURE;
298
ret = sigaction(SIGCHLD, &sigchld_action, &old_sigchld_action);
301
exitstatus = EXIT_FAILURE;
305
/* The options we understand. */
306
struct argp_option options[] = {
307
{ .name = "global-options", .key = 'g',
308
.arg = "OPTION[,OPTION[,...]]",
309
.doc = "Options passed to all plugins" },
310
{ .name = "global-envs", .key = 'e',
312
.doc = "Environment variable passed to all plugins" },
313
{ .name = "options-for", .key = 'o',
314
.arg = "PLUGIN:OPTION[,OPTION[,...]]",
315
.doc = "Options passed only to specified plugin" },
316
{ .name = "envs-for", .key = 'f',
317
.arg = "PLUGIN:ENV=value",
318
.doc = "Environment variable passed to specified plugin" },
319
{ .name = "disable", .key = 'd',
321
.doc = "Disable a specific plugin", .group = 1 },
322
{ .name = "plugin-dir", .key = 128,
324
.doc = "Specify a different plugin directory", .group = 2 },
325
{ .name = "userid", .key = 129,
326
.arg = "ID", .flags = 0,
327
.doc = "User ID the plugins will run as", .group = 2 },
328
{ .name = "groupid", .key = 130,
329
.arg = "ID", .flags = 0,
330
.doc = "Group ID the plugins will run as", .group = 2 },
331
{ .name = "debug", .key = 131,
332
.doc = "Debug mode", .group = 3 },
336
error_t parse_opt (int key, char *arg, struct argp_state *state) {
337
/* Get the INPUT argument from `argp_parse', which we know is a
338
pointer to our plugin list pointer. */
339
plugin **plugins = state->input;
344
while((p = strsep(&arg, ",")) != NULL){
348
if(not add_argument(getplugin(NULL, plugins), p)){
349
perror("add_argument");
350
return ARGP_ERR_UNKNOWN;
360
char *envdef = strdup(arg);
364
if(not add_environment(getplugin(NULL, plugins), envdef)){
365
perror("add_environment");
371
char *p_name = strsep(&arg, ":");
372
if(p_name[0] == '\0'){
375
char *opt = strsep(&arg, ":");
381
while((p = strsep(&opt, ",")) != NULL){
385
if(not add_argument(getplugin(p_name, plugins), p)){
386
perror("add_argument");
387
return ARGP_ERR_UNKNOWN;
398
char *envdef = strchr(arg, ':');
402
char *p_name = strndup(arg, (size_t) (envdef-arg));
407
if(not add_environment(getplugin(p_name, plugins), envdef)){
408
perror("add_environment");
414
plugin *p = getplugin(arg, plugins);
416
return ARGP_ERR_UNKNOWN;
425
uid = (uid_t)strtol(arg, NULL, 10);
428
gid = (gid_t)strtol(arg, NULL, 10);
434
fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
439
return ARGP_ERR_UNKNOWN;
444
plugin *plugin_list = NULL;
446
struct argp argp = { .options = options, .parser = parse_opt,
447
.args_doc = "[+PLUS_SEPARATED_OPTIONS]",
448
.doc = "Mandos plugin runner -- Run plugins" };
450
ret = argp_parse (&argp, argc, argv, 0, 0, &plugin_list);
451
if (ret == ARGP_ERR_UNKNOWN){
452
fprintf(stderr, "Unknown error while parsing arguments\n");
453
exitstatus = EXIT_FAILURE;
457
conffp = fopen(argfile, "r");
459
char *org_line = NULL;
460
char *p, *arg, *new_arg, *line;
463
const char whitespace_delims[] = " \r\t\f\v\n";
464
const char comment_delim[] = "#";
467
sret = getline(&org_line, &size, conffp);
473
arg = strsep(&line, comment_delim);
474
while((p = strsep(&arg, whitespace_delims)) != NULL){
479
custom_argv = add_to_argv(custom_argv, &custom_argc, new_arg);
480
if (custom_argv == NULL){
481
perror("add_to_argv");
482
exitstatus = EXIT_FAILURE;
489
/* Check for harmful errors and go to fallback. Other errors might
490
not affect opening plugins */
491
if (errno == EMFILE or errno == ENFILE or errno == ENOMEM){
493
exitstatus = EXIT_FAILURE;
498
if(custom_argv != NULL){
499
custom_argv[0] = argv[0];
500
ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, &plugin_list);
501
if (ret == ARGP_ERR_UNKNOWN){
502
fprintf(stderr, "Unknown error while parsing arguments\n");
503
exitstatus = EXIT_FAILURE;
509
for(plugin *p = plugin_list; p != NULL; p=p->next){
510
fprintf(stderr, "Plugin: %s has %d arguments\n",
511
p->name ? p->name : "Global", p->argc - 1);
512
for(char **a = p->argv; *a != NULL; a++){
513
fprintf(stderr, "\tArg: %s\n", *a);
515
fprintf(stderr, "...and %u environment variables\n", p->envc);
516
for(char **a = p->environ; *a != NULL; a++){
517
fprintf(stderr, "\t%s\n", *a);
39
532
dir = opendir(plugindir);
42
fprintf(stderr, "Can not open directory\n");
534
perror("Could not open plugin dir");
535
exitstatus = EXIT_FAILURE;
539
/* Set the FD_CLOEXEC flag on the directory, if possible */
541
int dir_fd = dirfd(dir);
543
ret = set_cloexec_flag(dir_fd);
545
perror("set_cloexec_flag");
546
exitstatus = EXIT_FAILURE;
49
555
dirst = readdir(dir);
51
557
// All directory entries have been processed
52
558
if(dirst == NULL){
561
exitstatus = EXIT_FAILURE;
56
567
d_name_len = strlen(dirst->d_name);
58
// Ignore dotfiles and backup files
59
if (dirst->d_name[0] == '.'
60
or dirst->d_name[d_name_len - 1] == '~'){
64
char *filename = malloc(d_name_len + plugindir_len + 1);
65
strcpy(filename, plugindir);
66
strcat(filename, "/");
67
strcat(filename, dirst->d_name);
71
if (S_ISREG(st.st_mode) and (access(filename, X_OK) == 0)){
72
// Starting a new process to be watched
73
process *new_process = malloc(sizeof(process));
76
new_process->pid = fork();
77
if(new_process->pid == 0){
78
/* this is the child process */
569
// Ignore dotfiles, backup files and other junk
571
bool bad_name = false;
573
const char const *bad_prefixes[] = { ".", "#", NULL };
575
const char const *bad_suffixes[] = { "~", "#", ".dpkg-new",
577
".dpkg-divert", NULL };
578
for(const char **pre = bad_prefixes; *pre != NULL; pre++){
579
size_t pre_len = strlen(*pre);
580
if((d_name_len >= pre_len)
581
and strncmp((dirst->d_name), *pre, pre_len) == 0){
583
fprintf(stderr, "Ignoring plugin dir entry \"%s\""
584
" with bad prefix %s\n", dirst->d_name, *pre);
595
for(const char **suf = bad_suffixes; *suf != NULL; suf++){
596
size_t suf_len = strlen(*suf);
597
if((d_name_len >= suf_len)
598
and (strcmp((dirst->d_name)+d_name_len-suf_len, *suf)
601
fprintf(stderr, "Ignoring plugin dir entry \"%s\""
602
" with bad suffix %s\n", dirst->d_name, *suf);
615
ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
621
ret = stat(filename, &st);
628
if (not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
630
fprintf(stderr, "Ignoring plugin dir entry \"%s\""
631
" with bad type or mode\n", filename);
636
plugin *p = getplugin(dirst->d_name, &plugin_list);
644
fprintf(stderr, "Ignoring disabled plugin \"%s\"\n",
651
/* Add global arguments to argument list for this plugin */
652
plugin *g = getplugin(NULL, &plugin_list);
654
for(char **a = g->argv + 1; *a != NULL; a++){
655
if(not add_argument(p, *a)){
656
perror("add_argument");
659
/* Add global environment variables */
660
for(char **e = g->environ; *e != NULL; e++){
661
if(not add_environment(p, *e)){
662
perror("add_environment");
667
/* If this plugin has any environment variables, we will call
668
using execve and need to duplicate the environment from this
670
if(p->environ[0] != NULL){
671
for(char **e = environ; *e != NULL; e++){
672
char *copy = strdup(*e);
677
if(not add_environment(p, copy)){
678
perror("add_environment");
687
exitstatus = EXIT_FAILURE;
690
ret = set_cloexec_flag(pipefd[0]);
692
perror("set_cloexec_flag");
693
exitstatus = EXIT_FAILURE;
696
ret = set_cloexec_flag(pipefd[1]);
698
perror("set_cloexec_flag");
699
exitstatus = EXIT_FAILURE;
702
/* Block SIGCHLD until process is safely in process list */
703
ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
705
perror("sigprocmask");
706
exitstatus = EXIT_FAILURE;
709
// Starting a new process to be watched
713
exitstatus = EXIT_FAILURE;
717
/* this is the child process */
718
ret = sigaction(SIGCHLD, &old_sigchld_action, NULL);
723
ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
725
perror("sigprocmask");
729
ret = dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
736
/* If dir has no file descriptor, we could not set FD_CLOEXEC
737
above and must now close it manually here. */
80
close(pipefd[0]); /* close unused read end of pipe */
81
dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
82
/* create a new modified argument list */
83
char **new_argv = malloc(sizeof(char *) * argc + 1);
84
new_argv[0] = filename;
85
for(int i = 1; i < argc; i++){
86
new_argv[i] = argv[i];
88
new_argv[argc] = NULL;
89
if(execv(filename, new_argv) < 0){
96
close(pipefd[1]); /* close unused write end of pipe */
97
new_process->fd = pipefd[0];
98
new_process->buffer = malloc(BUFFER_SIZE);
99
if (new_process->buffer == NULL){
103
new_process->buffer_size = BUFFER_SIZE;
104
new_process->buffer_length = 0;
105
FD_SET(new_process->fd, &rfds_orig);
107
if (maxfd < new_process->fd){
108
maxfd = new_process->fd;
112
new_process->next = process_list;
113
process_list = new_process;
740
if(p->environ[0] == NULL){
741
if(execv(filename, p->argv) < 0){
746
if(execve(filename, p->argv, p->environ) < 0){
755
close(pipefd[1]); /* close unused write end of pipe */
756
process *new_process = malloc(sizeof(process));
757
if (new_process == NULL){
759
ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
761
perror("sigprocmask");
763
exitstatus = EXIT_FAILURE;
767
*new_process = (struct process){ .pid = pid,
769
.next = process_list };
771
process_list = new_process;
772
/* Unblock SIGCHLD so signal handler can be run if this process
773
has already completed */
774
ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
776
perror("sigprocmask");
777
exitstatus = EXIT_FAILURE;
781
FD_SET(new_process->fd, &rfds_all);
783
if (maxfd < new_process->fd){
784
maxfd = new_process->fd;
789
free_plugin_list(plugin_list);
119
if (process_list != NULL){
121
fd_set rfds = rfds_orig;
122
int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
123
if (select_ret == -1){
127
for(process *process_itr = process_list; process_itr != NULL;
128
process_itr = process_itr->next){
129
if(FD_ISSET(process_itr->fd, &rfds)){
130
if(process_itr->buffer_length + BUFFER_SIZE
131
> process_itr->buffer_size){
132
process_itr->buffer = realloc(process_itr->buffer,
133
process_itr->buffer_size
135
if (process_itr->buffer == NULL){
139
process_itr->buffer_size += BUFFER_SIZE;
794
if (process_list == NULL){
795
fprintf(stderr, "No plugin processes started. Incorrect plugin"
800
fd_set rfds = rfds_all;
801
int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
802
if (select_ret == -1){
804
exitstatus = EXIT_FAILURE;
807
/* OK, now either a process completed, or something can be read
809
for(process *proc = process_list; proc ; proc = proc->next){
810
/* Is this process completely done? */
811
if(proc->eof and proc->completed){
812
/* Only accept the plugin output if it exited cleanly */
813
if(not WIFEXITED(proc->status)
814
or WEXITSTATUS(proc->status) != 0){
815
/* Bad exit by plugin */
817
if(WIFEXITED(proc->status)){
818
fprintf(stderr, "Plugin %u exited with status %d\n",
819
(unsigned int) (proc->pid),
820
WEXITSTATUS(proc->status));
821
} else if(WIFSIGNALED(proc->status)) {
822
fprintf(stderr, "Plugin %u killed by signal %d\n",
823
(unsigned int) (proc->pid),
824
WTERMSIG(proc->status));
825
} else if(WCOREDUMP(proc->status)){
826
fprintf(stderr, "Plugin %d dumped core\n",
827
(unsigned int) (proc->pid));
141
ret = read(process_itr->fd, process_itr->buffer
142
+ process_itr->buffer_length, BUFFER_SIZE);
143
process_itr->buffer_length+=ret;
146
/* wait for process exit */
148
waitpid(process_itr->pid, &status, 0);
149
if(WIFEXITED(status) and WEXITSTATUS(status) == 0){
150
write(STDOUT_FILENO, process_itr->buffer,
151
process_itr->buffer_length);
154
FD_CLR(process_itr->fd, &rfds_orig);
830
/* Remove the plugin */
831
FD_CLR(proc->fd, &rfds_all);
832
/* Block signal while modifying process_list */
833
ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
835
perror("sigprocmask");
836
exitstatus = EXIT_FAILURE;
839
/* Delete this process entry from the list */
840
if(process_list == proc){
841
/* First one - simple */
842
process_list = proc->next;
844
/* Second one or later */
845
for(process *p = process_list; p != NULL; p = p->next){
847
p->next = proc->next;
164
for(process *process_itr = process_list; process_itr != NULL;
165
process_itr = process_itr->next){
166
close(process_itr->fd);
167
kill(process_itr->pid, SIGTERM);
168
free(process_itr->buffer);
852
/* We are done modifying process list, so unblock signal */
853
ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
856
perror("sigprocmask");
860
/* We deleted this process from the list, so we can't go
861
proc->next. Therefore, start over from the beginning of
865
/* This process exited nicely, so print its buffer */
867
bool bret = print_out_password(proc->buffer, proc->buffer_length);
869
perror("print_out_password");
870
exitstatus = EXIT_FAILURE;
874
/* This process has not completed. Does it have any output? */
875
if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
876
/* This process had nothing to say at this time */
879
/* Before reading, make the process' data buffer large enough */
880
if(proc->buffer_length + BUFFER_SIZE > proc->buffer_size){
881
proc->buffer = realloc(proc->buffer, proc->buffer_size
882
+ (size_t) BUFFER_SIZE);
883
if (proc->buffer == NULL){
885
exitstatus = EXIT_FAILURE;
888
proc->buffer_size += BUFFER_SIZE;
890
/* Read from the process */
891
ret = read(proc->fd, proc->buffer + proc->buffer_length,
894
/* Read error from this process; ignore the error */
901
proc->buffer_length += (size_t) ret;
909
if(process_list == NULL or exitstatus != EXIT_SUCCESS){
910
/* Fallback if all plugins failed, none are found or an error occured */
912
fprintf(stderr, "Going to fallback mode using getpass(3)\n");
913
char *passwordbuffer = getpass("Password: ");
914
bret = print_out_password(passwordbuffer, strlen(passwordbuffer));
916
perror("print_out_password");
917
exitstatus = EXIT_FAILURE;
921
/* Restore old signal handler */
922
ret = sigaction(SIGCHLD, &old_sigchld_action, NULL);
925
exitstatus = EXIT_FAILURE;
928
if(custom_argv != NULL){
929
for(char **arg = custom_argv; *arg != NULL; arg++){
934
free_plugin_list(plugin_list);
940
/* Free the process list and kill the processes */
941
for(process *next; process_list != NULL; process_list = next){
942
next = process_list->next;
943
close(process_list->fd);
944
ret = kill(process_list->pid, SIGTERM);
945
if(ret == -1 and errno != ESRCH){
946
/* set-uid proccesses migth not get closed */
949
free(process_list->buffer);
953
/* Wait for any remaining child processes to terminate */