/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

merge

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,
60
 
                                   error_t */
 
59
                                   ARGP_KEY_END, ARGP_KEY_ARG, error_t */
61
60
#include <signal.h>             /* struct sigaction, sigemptyset(),
62
61
                                   sigaddset(), sigaction(),
63
62
                                   sigprocmask(), SIG_BLOCK, SIGCHLD,
79
78
  size_t buffer_size;
80
79
  size_t buffer_length;
81
80
  bool eof;
82
 
  volatile bool completed;
83
 
  volatile int status;
 
81
  bool completed;
 
82
  int status;
84
83
  struct process *next;
85
84
} process;
86
85
 
106
105
  if (new_plugin == NULL){
107
106
    return NULL;
108
107
  }
109
 
  char *copy_name = NULL;
110
 
  if(name != NULL){
111
 
    copy_name = strdup(name);
112
 
    if(copy_name == NULL){
113
 
      return NULL;
114
 
    }
 
108
  char *copy_name = strdup(name);
 
109
  if(copy_name == NULL){
 
110
    return NULL;
115
111
  }
116
112
  
117
113
  *new_plugin = (plugin) { .name = copy_name,
122
118
  
123
119
  new_plugin->argv = malloc(sizeof(char *) * 2);
124
120
  if (new_plugin->argv == NULL){
125
 
    free(copy_name);
126
121
    free(new_plugin);
127
122
    return NULL;
128
123
  }
131
126
 
132
127
  new_plugin->environ = malloc(sizeof(char *));
133
128
  if(new_plugin->environ == NULL){
134
 
    free(copy_name);
135
129
    free(new_plugin->argv);
136
130
    free(new_plugin);
137
131
    return NULL;
200
194
 
201
195
process *process_list = NULL;
202
196
 
203
 
/* Mark processes as completed when they exit, and save their exit
 
197
/* Mark a process as completed when it exits, and save its exit
204
198
   status. */
205
199
void handle_sigchld(__attribute__((unused)) int sig){
206
 
  while(true){
207
 
    process *proc = process_list;
208
 
    int status;
209
 
    pid_t pid = waitpid(-1, &status, WNOHANG);
210
 
    if(pid == 0){
211
 
      /* Only still running child processes */
212
 
      break;
213
 
    }
214
 
    if(pid == -1){
215
 
      if (errno != ECHILD){
216
 
        perror("waitpid");
217
 
      }
218
 
      /* No child processes */
219
 
      break;
220
 
    }
221
 
 
222
 
    /* A child exited, find it in process_list */
223
 
    while(proc != NULL and proc->pid != pid){
224
 
      proc = proc->next;
225
 
    }
226
 
    if(proc == NULL){
227
 
      /* Process not found in process list */
228
 
      continue;
229
 
    }
230
 
    proc->status = status;
231
 
    proc->completed = true;
232
 
  }
 
200
  process *proc = process_list;
 
201
  int status;
 
202
  pid_t pid = wait(&status);
 
203
  if(pid == -1){
 
204
    perror("wait");
 
205
    return;
 
206
  }
 
207
  while(proc != NULL and proc->pid != pid){
 
208
    proc = proc->next;
 
209
  }
 
210
  if(proc == NULL){
 
211
    /* Process not found in process list */
 
212
    return;
 
213
  }
 
214
  proc->status = status;
 
215
  proc->completed = true;
233
216
}
234
217
 
235
218
bool print_out_password(const char *buffer, size_t length){
247
230
  return true;
248
231
}
249
232
 
 
233
char **add_to_argv(char **argv, int *argc, char *arg){
 
234
  if (argv == NULL){
 
235
    *argc = 1;
 
236
    argv = malloc(sizeof(char*) * 2);
 
237
    if(argv == NULL){
 
238
      return NULL;
 
239
    }
 
240
    argv[0] = NULL;     /* Will be set to argv[0] in main before parsing */
 
241
    argv[1] = NULL;
 
242
  }
 
243
  *argc += 1;
 
244
  argv = realloc(argv, sizeof(char *)
 
245
                  * ((unsigned int) *argc + 1));
 
246
  if(argv == NULL){
 
247
    return NULL;
 
248
  }
 
249
  argv[*argc-1] = arg;
 
250
  argv[*argc] = NULL;   
 
251
  return argv;
 
252
}
 
253
 
250
254
static void free_plugin_list(plugin *plugin_list){
251
 
  for(plugin *next; plugin_list != NULL; plugin_list = next){
 
255
  for(plugin *next = plugin_list; plugin_list != NULL; plugin_list = next){
252
256
    next = plugin_list->next;
 
257
    free(plugin_list->name);
253
258
    for(char **arg = plugin_list->argv; *arg != NULL; arg++){
254
259
      free(*arg);
255
 
    }
 
260
    }    
256
261
    free(plugin_list->argv);
257
262
    for(char **env = plugin_list->environ; *env != NULL; env++){
258
263
      free(*env);
259
264
    }
260
265
    free(plugin_list->environ);
261
266
    free(plugin_list);
262
 
  }
 
267
  }  
263
268
}
264
269
 
265
270
int main(int argc, char *argv[]){
293
298
  ret = sigaction(SIGCHLD, &sigchld_action, &old_sigchld_action);
294
299
  if(ret == -1){
295
300
    perror("sigaction");
296
 
    exitstatus = EXIT_FAILURE;
 
301
    exitstatus = EXIT_FAILURE;    
297
302
    goto fallback;
298
303
  }
299
304
  
458
463
    const char whitespace_delims[] = " \r\t\f\v\n";
459
464
    const char comment_delim[] = "#";
460
465
 
461
 
    custom_argc = 1;
462
 
    custom_argv = malloc(sizeof(char*) * 2);
463
 
    if(custom_argv == NULL){
464
 
      perror("malloc");
465
 
      exitstatus = EXIT_FAILURE;
466
 
      goto fallback;
467
 
    }
468
 
    custom_argv[0] = argv[0];
469
 
    custom_argv[1] = NULL;
470
 
    
471
466
    while(true){
472
467
      sret = getline(&org_line, &size, conffp);
473
468
      if(sret == -1){
481
476
          continue;
482
477
        }
483
478
        new_arg = strdup(p);
484
 
 
485
 
        custom_argc += 1;
486
 
        custom_argv = realloc(custom_argv, sizeof(char *)
487
 
                              * ((unsigned int) custom_argc + 1));
488
 
        if(custom_argv == NULL){
489
 
          perror("realloc");
 
479
        custom_argv = add_to_argv(custom_argv, &custom_argc, new_arg);
 
480
        if (custom_argv == NULL){
 
481
          perror("add_to_argv");
490
482
          exitstatus = EXIT_FAILURE;
491
 
          free(org_line);
492
483
          goto fallback;
493
484
        }
494
 
        custom_argv[custom_argc-1] = new_arg;
495
 
        custom_argv[custom_argc] = NULL;        
496
485
      }
497
486
    }
498
487
    free(org_line);
507
496
  }
508
497
 
509
498
  if(custom_argv != NULL){
 
499
    custom_argv[0] = argv[0];
510
500
    ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, &plugin_list);
511
501
    if (ret == ARGP_ERR_UNKNOWN){
512
502
      fprintf(stderr, "Unknown error while parsing arguments\n");
690
680
      }
691
681
    }
692
682
    
693
 
    int pipefd[2];
 
683
    int pipefd[2]; 
694
684
    ret = pipe(pipefd);
695
685
    if (ret == -1){
696
686
      perror("pipe");
797
787
  }
798
788
  
799
789
  free_plugin_list(plugin_list);
800
 
  plugin_list = NULL;
801
790
  
802
791
  closedir(dir);
803
792
  dir = NULL;
841
830
          /* Remove the plugin */
842
831
          FD_CLR(proc->fd, &rfds_all);
843
832
          /* Block signal while modifying process_list */
844
 
          ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
833
          ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
845
834
          if(ret < 0){
846
835
            perror("sigprocmask");
847
836
            exitstatus = EXIT_FAILURE;
875
864
        }
876
865
        /* This process exited nicely, so print its buffer */
877
866
 
878
 
        bool bret = print_out_password(proc->buffer,
879
 
                                       proc->buffer_length);
 
867
        bool bret = print_out_password(proc->buffer, proc->buffer_length);
880
868
        if(not bret){
881
869
          perror("print_out_password");
882
870
          exitstatus = EXIT_FAILURE;
919
907
 fallback:
920
908
  
921
909
  if(process_list == NULL or exitstatus != EXIT_SUCCESS){
922
 
    /* Fallback if all plugins failed, none are found or an error
923
 
       occured */
 
910
    /* Fallback if all plugins failed, none are found or an error occured */
924
911
    bool bret;
925
912
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
926
913
    char *passwordbuffer = getpass("Password: ");
939
926
  }
940
927
 
941
928
  if(custom_argv != NULL){
942
 
    for(char **arg = custom_argv+1; *arg != NULL; arg++){
 
929
    for(char **arg = custom_argv; *arg != NULL; arg++){
943
930
      free(*arg);
944
931
    }
945
932
    free(custom_argv);