/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

* plugin-runner.c (main): If debugging, print name of failed plugins.

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,
63
64
                                   sigprocmask(), SIG_BLOCK, SIGCHLD,
64
65
                                   SIG_UNBLOCK, kill() */
65
66
#include <errno.h>              /* errno, EBADF */
 
67
#include <inttypes.h>           /* intmax_t, SCNdMAX, PRIdMAX,  */
66
68
 
67
69
#define BUFFER_SIZE 256
68
 
#define ARGFILE "/conf/conf.d/mandos/plugin-runner.conf"
69
 
 
70
 
const char *argp_program_version = "plugin-runner 1.0";
 
70
 
 
71
#define PDIR "/lib/mandos/plugins.d"
 
72
#define AFILE "/conf/conf.d/mandos/plugin-runner.conf"
 
73
 
 
74
const char *argp_program_version = "plugin-runner " VERSION;
71
75
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
72
76
 
73
 
struct process;
74
 
 
75
 
typedef struct process{
76
 
  pid_t pid;
77
 
  int fd;
78
 
  char *buffer;
79
 
  size_t buffer_size;
80
 
  size_t buffer_length;
81
 
  bool eof;
82
 
  volatile bool completed;
83
 
  volatile int status;
84
 
  struct process *next;
85
 
} process;
86
 
 
87
77
typedef struct plugin{
88
78
  char *name;                   /* can be NULL or any plugin name */
89
79
  char **argv;
91
81
  char **environ;
92
82
  int envc;
93
83
  bool disabled;
 
84
 
 
85
  /* Variables used for running processes*/
 
86
  pid_t pid;
 
87
  int fd;
 
88
  char *buffer;
 
89
  size_t buffer_size;
 
90
  size_t buffer_length;
 
91
  bool eof;
 
92
  volatile sig_atomic_t completed;
 
93
  int status;
94
94
  struct plugin *next;
95
95
} plugin;
96
96
 
97
 
static plugin *getplugin(char *name, plugin **plugin_list){
98
 
  for (plugin *p = *plugin_list; p != NULL; p = p->next){
99
 
    if ((p->name == name)
100
 
        or (p->name and name and (strcmp(p->name, name) == 0))){
 
97
static plugin *plugin_list = NULL;
 
98
 
 
99
/* Gets an existing plugin based on name,
 
100
   or if none is found, creates a new one */
 
101
static plugin *getplugin(char *name){
 
102
  /* Check for exiting plugin with that name */
 
103
  for(plugin *p = plugin_list; p != NULL; p = p->next){
 
104
    if((p->name == name)
 
105
       or (p->name and name and (strcmp(p->name, name) == 0))){
101
106
      return p;
102
107
    }
103
108
  }
104
109
  /* Create a new plugin */
105
110
  plugin *new_plugin = malloc(sizeof(plugin));
106
 
  if (new_plugin == NULL){
 
111
  if(new_plugin == NULL){
107
112
    return NULL;
108
113
  }
109
114
  char *copy_name = NULL;
110
115
  if(name != NULL){
111
116
    copy_name = strdup(name);
112
117
    if(copy_name == NULL){
 
118
      free(new_plugin);
113
119
      return NULL;
114
120
    }
115
121
  }
116
122
  
117
 
  *new_plugin = (plugin) { .name = copy_name,
118
 
                           .argc = 1,
119
 
                           .envc = 0,
120
 
                           .disabled = false,
121
 
                           .next = *plugin_list };
 
123
  *new_plugin = (plugin){ .name = copy_name,
 
124
                          .argc = 1,
 
125
                          .disabled = false,
 
126
                          .next = plugin_list };
122
127
  
123
128
  new_plugin->argv = malloc(sizeof(char *) * 2);
124
 
  if (new_plugin->argv == NULL){
 
129
  if(new_plugin->argv == NULL){
125
130
    free(copy_name);
126
131
    free(new_plugin);
127
132
    return NULL;
128
133
  }
129
134
  new_plugin->argv[0] = copy_name;
130
135
  new_plugin->argv[1] = NULL;
131
 
 
 
136
  
132
137
  new_plugin->environ = malloc(sizeof(char *));
133
138
  if(new_plugin->environ == NULL){
134
139
    free(copy_name);
137
142
    return NULL;
138
143
  }
139
144
  new_plugin->environ[0] = NULL;
 
145
  
140
146
  /* Append the new plugin to the list */
141
 
  *plugin_list = new_plugin;
 
147
  plugin_list = new_plugin;
142
148
  return new_plugin;
143
149
}
144
150
 
174
180
}
175
181
 
176
182
/* Add to a plugin's environment */
177
 
static bool add_environment(plugin *p, const char *def){
 
183
static bool add_environment(plugin *p, const char *def, bool replace){
178
184
  if(p == NULL){
179
185
    return false;
180
186
  }
 
187
  /* namelen = length of name of environment variable */
 
188
  size_t namelen = (size_t)(strchrnul(def, '=') - def);
 
189
  /* Search for this environment variable */
 
190
  for(char **e = p->environ; *e != NULL; e++){
 
191
    if(strncmp(*e, def, namelen + 1) == 0){
 
192
      /* It already exists */
 
193
      if(replace){
 
194
        char *new = realloc(*e, strlen(def) + 1);
 
195
        if(new == NULL){
 
196
          return false;
 
197
        }
 
198
        *e = new;
 
199
        strcpy(*e, def);
 
200
      }
 
201
      return true;
 
202
    }
 
203
  }
181
204
  return add_to_char_array(def, &(p->environ), &(p->envc));
182
205
}
183
206
 
184
 
 
185
207
/*
186
208
 * Based on the example in the GNU LibC manual chapter 13.13 "File
187
209
 * Descriptor Flags".
188
210
 * *Note File Descriptor Flags:(libc)Descriptor Flags.
189
211
 */
190
 
static int set_cloexec_flag(int fd)
191
 
{
 
212
static int set_cloexec_flag(int fd){
192
213
  int ret = fcntl(fd, F_GETFD, 0);
193
214
  /* If reading the flags failed, return error indication now. */
194
215
  if(ret < 0){
198
219
  return fcntl(fd, F_SETFD, ret | FD_CLOEXEC);
199
220
}
200
221
 
201
 
process *process_list = NULL;
202
222
 
203
223
/* Mark processes as completed when they exit, and save their exit
204
224
   status. */
205
 
void handle_sigchld(__attribute__((unused)) int sig){
 
225
static void handle_sigchld(__attribute__((unused)) int sig){
 
226
  int old_errno = errno;
206
227
  while(true){
207
 
    process *proc = process_list;
 
228
    plugin *proc = plugin_list;
208
229
    int status;
209
230
    pid_t pid = waitpid(-1, &status, WNOHANG);
210
231
    if(pid == 0){
212
233
      break;
213
234
    }
214
235
    if(pid == -1){
215
 
      if (errno != ECHILD){
216
 
        perror("waitpid");
 
236
      if(errno == ECHILD){
 
237
        /* No child processes */
 
238
        break;
217
239
      }
218
 
      /* No child processes */
219
 
      break;
 
240
      perror("waitpid");
220
241
    }
221
 
 
 
242
    
222
243
    /* A child exited, find it in process_list */
223
244
    while(proc != NULL and proc->pid != pid){
224
245
      proc = proc->next;
228
249
      continue;
229
250
    }
230
251
    proc->status = status;
231
 
    proc->completed = true;
 
252
    proc->completed = 1;
232
253
  }
 
254
  errno = old_errno;
233
255
}
234
256
 
235
 
bool print_out_password(const char *buffer, size_t length){
 
257
/* Prints out a password to stdout */
 
258
static bool print_out_password(const char *buffer, size_t length){
236
259
  ssize_t ret;
237
 
  if(length>0 and buffer[length-1] == '\n'){
238
 
    length--;
239
 
  }
240
260
  for(size_t written = 0; written < length; written += (size_t)ret){
241
261
    ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO, buffer + written,
242
262
                                   length - written));
247
267
  return true;
248
268
}
249
269
 
250
 
char **add_to_argv(char **argv, int *argc, char *arg){
251
 
  if (argv == NULL){
252
 
    *argc = 1;
253
 
    argv = malloc(sizeof(char*) * 2);
254
 
    if(argv == NULL){
255
 
      return NULL;
 
270
/* Removes and free a plugin from the plugin list */
 
271
static void free_plugin(plugin *plugin_node){
 
272
  
 
273
  for(char **arg = plugin_node->argv; *arg != NULL; arg++){
 
274
    free(*arg);
 
275
  }
 
276
  free(plugin_node->argv);
 
277
  for(char **env = plugin_node->environ; *env != NULL; env++){
 
278
    free(*env);
 
279
  }
 
280
  free(plugin_node->environ);
 
281
  free(plugin_node->buffer);
 
282
 
 
283
  /* Removes the plugin from the singly-linked list */
 
284
  if(plugin_node == plugin_list){
 
285
    /* First one - simple */
 
286
    plugin_list = plugin_list->next;
 
287
  } else {
 
288
    /* Second one or later */
 
289
    for(plugin *p = plugin_list; p != NULL; p = p->next){
 
290
      if(p->next == plugin_node){
 
291
        p->next = plugin_node->next;
 
292
        break;
 
293
      }
256
294
    }
257
 
    argv[0] = NULL;     /* Will be set to argv[0] in main before parsing */
258
 
    argv[1] = NULL;
259
 
  }
260
 
  *argc += 1;
261
 
  argv = realloc(argv, sizeof(char *)
262
 
                  * ((unsigned int) *argc + 1));
263
 
  if(argv == NULL){
264
 
    return NULL;
265
 
  }
266
 
  argv[*argc-1] = arg;
267
 
  argv[*argc] = NULL;
268
 
  return argv;
 
295
  }
 
296
  
 
297
  free(plugin_node);
269
298
}
270
299
 
271
 
static void free_plugin_list(plugin *plugin_list){
272
 
  for(plugin *next; plugin_list != NULL; plugin_list = next){
273
 
    next = plugin_list->next;
274
 
    for(char **arg = plugin_list->argv; *arg != NULL; arg++){
275
 
      free(*arg);
276
 
    }
277
 
    free(plugin_list->argv);
278
 
    for(char **env = plugin_list->environ; *env != NULL; env++){
279
 
      free(*env);
280
 
    }
281
 
    free(plugin_list->environ);
282
 
    free(plugin_list);
 
300
static void free_plugin_list(void){
 
301
  while(plugin_list != NULL){
 
302
    free_plugin(plugin_list);
283
303
  }
284
304
}
285
305
 
286
306
int main(int argc, char *argv[]){
287
 
  const char *plugindir = "/lib/mandos/plugins.d";
288
 
  const char *argfile = ARGFILE;
 
307
  char *plugindir = NULL;
 
308
  char *argfile = NULL;
289
309
  FILE *conffp;
290
310
  size_t d_name_len;
291
311
  DIR *dir = NULL;
292
312
  struct dirent *dirst;
293
313
  struct stat st;
294
314
  fd_set rfds_all;
295
 
  int ret, maxfd = 0;
 
315
  int ret, numchars, maxfd = 0;
 
316
  ssize_t sret;
 
317
  intmax_t tmpmax;
296
318
  uid_t uid = 65534;
297
319
  gid_t gid = 65534;
298
320
  bool debug = false;
323
345
    { .name = "global-options", .key = 'g',
324
346
      .arg = "OPTION[,OPTION[,...]]",
325
347
      .doc = "Options passed to all plugins" },
326
 
    { .name = "global-envs", .key = 'e',
 
348
    { .name = "global-env", .key = 'G',
327
349
      .arg = "VAR=value",
328
350
      .doc = "Environment variable passed to all plugins" },
329
351
    { .name = "options-for", .key = 'o',
330
352
      .arg = "PLUGIN:OPTION[,OPTION[,...]]",
331
353
      .doc = "Options passed only to specified plugin" },
332
 
    { .name = "envs-for", .key = 'f',
 
354
    { .name = "env-for", .key = 'E',
333
355
      .arg = "PLUGIN:ENV=value",
334
356
      .doc = "Environment variable passed to specified plugin" },
335
357
    { .name = "disable", .key = 'd',
336
358
      .arg = "PLUGIN",
337
359
      .doc = "Disable a specific plugin", .group = 1 },
 
360
    { .name = "enable", .key = 'e',
 
361
      .arg = "PLUGIN",
 
362
      .doc = "Enable a specific plugin", .group = 1 },
338
363
    { .name = "plugin-dir", .key = 128,
339
364
      .arg = "DIRECTORY",
340
365
      .doc = "Specify a different plugin directory", .group = 2 },
341
 
    { .name = "userid", .key = 129,
342
 
      .arg = "ID", .flags = 0,
343
 
      .doc = "User ID the plugins will run as", .group = 2 },
344
 
    { .name = "groupid", .key = 130,
345
 
      .arg = "ID", .flags = 0,
346
 
      .doc = "Group ID the plugins will run as", .group = 2 },
347
 
    { .name = "debug", .key = 131,
348
 
      .doc = "Debug mode", .group = 3 },
 
366
    { .name = "config-file", .key = 129,
 
367
      .arg = "FILE",
 
368
      .doc = "Specify a different configuration file", .group = 2 },
 
369
    { .name = "userid", .key = 130,
 
370
      .arg = "ID", .flags = 0,
 
371
      .doc = "User ID the plugins will run as", .group = 3 },
 
372
    { .name = "groupid", .key = 131,
 
373
      .arg = "ID", .flags = 0,
 
374
      .doc = "Group ID the plugins will run as", .group = 3 },
 
375
    { .name = "debug", .key = 132,
 
376
      .doc = "Debug mode", .group = 4 },
349
377
    { .name = NULL }
350
378
  };
351
379
  
352
 
  error_t parse_opt (int key, char *arg, struct argp_state *state) {
353
 
    /* Get the INPUT argument from `argp_parse', which we know is a
354
 
       pointer to our plugin list pointer. */
355
 
    plugin **plugins = state->input;
356
 
    switch (key) {
357
 
    case 'g':
358
 
      if (arg != NULL){
 
380
  error_t parse_opt(int key, char *arg, __attribute__((unused))
 
381
                    struct argp_state *state){
 
382
    switch(key){
 
383
    case 'g':                   /* --global-options */
 
384
      if(arg != NULL){
359
385
        char *p;
360
386
        while((p = strsep(&arg, ",")) != NULL){
361
387
          if(p[0] == '\0'){
362
388
            continue;
363
389
          }
364
 
          if(not add_argument(getplugin(NULL, plugins), p)){
 
390
          if(not add_argument(getplugin(NULL), p)){
365
391
            perror("add_argument");
366
392
            return ARGP_ERR_UNKNOWN;
367
393
          }
368
394
        }
369
395
      }
370
396
      break;
371
 
    case 'e':
 
397
    case 'G':                   /* --global-env */
372
398
      if(arg == NULL){
373
399
        break;
374
400
      }
375
 
      {
376
 
        char *envdef = strdup(arg);
377
 
        if(envdef == NULL){
378
 
          break;
379
 
        }
380
 
        if(not add_environment(getplugin(NULL, plugins), envdef)){
381
 
          perror("add_environment");
382
 
        }
 
401
      if(not add_environment(getplugin(NULL), arg, true)){
 
402
        perror("add_environment");
383
403
      }
384
404
      break;
385
 
    case 'o':
386
 
      if (arg != NULL){
 
405
    case 'o':                   /* --options-for */
 
406
      if(arg != NULL){
387
407
        char *p_name = strsep(&arg, ":");
388
 
        if(p_name[0] == '\0'){
 
408
        if(p_name[0] == '\0' or arg == NULL){
389
409
          break;
390
410
        }
391
411
        char *opt = strsep(&arg, ":");
392
 
        if(opt[0] == '\0'){
 
412
        if(opt[0] == '\0' or opt == NULL){
393
413
          break;
394
414
        }
395
 
        if(opt != NULL){
396
 
          char *p;
397
 
          while((p = strsep(&opt, ",")) != NULL){
398
 
            if(p[0] == '\0'){
399
 
              continue;
400
 
            }
401
 
            if(not add_argument(getplugin(p_name, plugins), p)){
402
 
              perror("add_argument");
403
 
              return ARGP_ERR_UNKNOWN;
404
 
            }
 
415
        char *p;
 
416
        while((p = strsep(&opt, ",")) != NULL){
 
417
          if(p[0] == '\0'){
 
418
            continue;
 
419
          }
 
420
          if(not add_argument(getplugin(p_name), p)){
 
421
            perror("add_argument");
 
422
            return ARGP_ERR_UNKNOWN;
405
423
          }
406
424
        }
407
425
      }
408
426
      break;
409
 
    case 'f':
 
427
    case 'E':                   /* --env-for */
410
428
      if(arg == NULL){
411
429
        break;
412
430
      }
415
433
        if(envdef == NULL){
416
434
          break;
417
435
        }
418
 
        char *p_name = strndup(arg, (size_t) (envdef-arg));
419
 
        if(p_name == NULL){
420
 
          break;
421
 
        }
422
 
        envdef++;
423
 
        if(not add_environment(getplugin(p_name, plugins), envdef)){
 
436
        *envdef = '\0';
 
437
        if(not add_environment(getplugin(arg), envdef+1, true)){
424
438
          perror("add_environment");
425
439
        }
426
440
      }
427
441
      break;
428
 
    case 'd':
429
 
      if (arg != NULL){
430
 
        plugin *p = getplugin(arg, plugins);
 
442
    case 'd':                   /* --disable */
 
443
      if(arg != NULL){
 
444
        plugin *p = getplugin(arg);
431
445
        if(p == NULL){
432
446
          return ARGP_ERR_UNKNOWN;
433
447
        }
434
448
        p->disabled = true;
435
449
      }
436
450
      break;
437
 
    case 128:
438
 
      plugindir = arg;
439
 
      break;
440
 
    case 129:
441
 
      uid = (uid_t)strtol(arg, NULL, 10);
442
 
      break;
443
 
    case 130:
444
 
      gid = (gid_t)strtol(arg, NULL, 10);
445
 
      break;
446
 
    case 131:
 
451
    case 'e':                   /* --enable */
 
452
      if(arg != NULL){
 
453
        plugin *p = getplugin(arg);
 
454
        if(p == NULL){
 
455
          return ARGP_ERR_UNKNOWN;
 
456
        }
 
457
        p->disabled = false;
 
458
      }
 
459
      break;
 
460
    case 128:                   /* --plugin-dir */
 
461
      free(plugindir);
 
462
      plugindir = strdup(arg);
 
463
      if(plugindir == NULL){
 
464
        perror("strdup");
 
465
      }      
 
466
      break;
 
467
    case 129:                   /* --config-file */
 
468
      /* This is already done by parse_opt_config_file() */
 
469
      break;
 
470
    case 130:                   /* --userid */
 
471
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
472
      if(ret < 1 or tmpmax != (uid_t)tmpmax
 
473
         or arg[numchars] != '\0'){
 
474
        fprintf(stderr, "Bad user ID number: \"%s\", using %"
 
475
                PRIdMAX "\n", arg, (intmax_t)uid);
 
476
      } else {
 
477
        uid = (uid_t)tmpmax;
 
478
      }
 
479
      break;
 
480
    case 131:                   /* --groupid */
 
481
      ret = sscanf(arg, "%" SCNdMAX "%n", &tmpmax, &numchars);
 
482
      if(ret < 1 or tmpmax != (gid_t)tmpmax
 
483
         or arg[numchars] != '\0'){
 
484
        fprintf(stderr, "Bad group ID number: \"%s\", using %"
 
485
                PRIdMAX "\n", arg, (intmax_t)gid);
 
486
      } else {
 
487
        gid = (gid_t)tmpmax;
 
488
      }
 
489
      break;
 
490
    case 132:                   /* --debug */
447
491
      debug = true;
448
492
      break;
449
 
    case ARGP_KEY_ARG:
450
 
      fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
451
 
      break;
452
 
    case ARGP_KEY_END:
453
 
      break;
454
 
    default:
455
 
      return ARGP_ERR_UNKNOWN;
456
 
    }
457
 
    return 0;
458
 
  }
459
 
  
460
 
  plugin *plugin_list = NULL;
461
 
  
462
 
  struct argp argp = { .options = options, .parser = parse_opt,
463
 
                       .args_doc = "[+PLUS_SEPARATED_OPTIONS]",
 
493
/*
 
494
 * When adding more options before this line, remember to also add a
 
495
 * "case" to the "parse_opt_config_file" function below.
 
496
 */
 
497
    case ARGP_KEY_ARG:
 
498
      /* Cryptsetup always passes an argument, which is an empty
 
499
         string if "none" was specified in /etc/crypttab.  So if
 
500
         argument was empty, we ignore it silently. */
 
501
      if(arg[0] != '\0'){
 
502
        fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg);
 
503
      }
 
504
      break;
 
505
    case ARGP_KEY_END:
 
506
      break;
 
507
    default:
 
508
      return ARGP_ERR_UNKNOWN;
 
509
    }
 
510
    return 0;
 
511
  }
 
512
  
 
513
  /* This option parser is the same as parse_opt() above, except it
 
514
     ignores everything but the --config-file option. */
 
515
  error_t parse_opt_config_file(int key, char *arg,
 
516
                                __attribute__((unused))
 
517
                                struct argp_state *state){
 
518
    switch(key){
 
519
    case 'g':                   /* --global-options */
 
520
    case 'G':                   /* --global-env */
 
521
    case 'o':                   /* --options-for */
 
522
    case 'E':                   /* --env-for */
 
523
    case 'd':                   /* --disable */
 
524
    case 'e':                   /* --enable */
 
525
    case 128:                   /* --plugin-dir */
 
526
      break;
 
527
    case 129:                   /* --config-file */
 
528
      free(argfile);
 
529
      argfile = strdup(arg);
 
530
      if(argfile == NULL){
 
531
        perror("strdup");
 
532
      }
 
533
      break;      
 
534
    case 130:                   /* --userid */
 
535
    case 131:                   /* --groupid */
 
536
    case 132:                   /* --debug */
 
537
    case ARGP_KEY_ARG:
 
538
    case ARGP_KEY_END:
 
539
      break;
 
540
    default:
 
541
      return ARGP_ERR_UNKNOWN;
 
542
    }
 
543
    return 0;
 
544
  }
 
545
  
 
546
  struct argp argp = { .options = options,
 
547
                       .parser = parse_opt_config_file,
 
548
                       .args_doc = "",
464
549
                       .doc = "Mandos plugin runner -- Run plugins" };
465
550
  
466
 
  ret = argp_parse (&argp, argc, argv, 0, 0, &plugin_list);
467
 
  if (ret == ARGP_ERR_UNKNOWN){
 
551
  /* Parse using parse_opt_config_file() in order to get the custom
 
552
     config file location, if any. */
 
553
  ret = argp_parse(&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
 
554
  if(ret == ARGP_ERR_UNKNOWN){
468
555
    fprintf(stderr, "Unknown error while parsing arguments\n");
469
556
    exitstatus = EXIT_FAILURE;
470
557
    goto fallback;
471
558
  }
472
 
 
473
 
  conffp = fopen(argfile, "r");
 
559
  
 
560
  /* Reset to the normal argument parser */
 
561
  argp.parser = parse_opt;
 
562
  
 
563
  /* Open the configfile if available */
 
564
  if(argfile == NULL){
 
565
    conffp = fopen(AFILE, "r");
 
566
  } else {
 
567
    conffp = fopen(argfile, "r");
 
568
  }  
474
569
  if(conffp != NULL){
475
570
    char *org_line = NULL;
476
571
    char *p, *arg, *new_arg, *line;
477
572
    size_t size = 0;
478
 
    ssize_t sret;
479
573
    const char whitespace_delims[] = " \r\t\f\v\n";
480
574
    const char comment_delim[] = "#";
481
575
 
 
576
    custom_argc = 1;
 
577
    custom_argv = malloc(sizeof(char*) * 2);
 
578
    if(custom_argv == NULL){
 
579
      perror("malloc");
 
580
      exitstatus = EXIT_FAILURE;
 
581
      goto fallback;
 
582
    }
 
583
    custom_argv[0] = argv[0];
 
584
    custom_argv[1] = NULL;
 
585
 
 
586
    /* for each line in the config file, strip whitespace and ignore
 
587
       commented text */
482
588
    while(true){
483
589
      sret = getline(&org_line, &size, conffp);
484
590
      if(sret == -1){
492
598
          continue;
493
599
        }
494
600
        new_arg = strdup(p);
495
 
        custom_argv = add_to_argv(custom_argv, &custom_argc, new_arg);
496
 
        if (custom_argv == NULL){
497
 
          perror("add_to_argv");
498
 
          exitstatus = EXIT_FAILURE;
499
 
          goto fallback;
500
 
        }
 
601
        if(new_arg == NULL){
 
602
          perror("strdup");
 
603
          exitstatus = EXIT_FAILURE;
 
604
          free(org_line);
 
605
          goto fallback;
 
606
        }
 
607
        
 
608
        custom_argc += 1;
 
609
        custom_argv = realloc(custom_argv, sizeof(char *)
 
610
                              * ((unsigned int) custom_argc + 1));
 
611
        if(custom_argv == NULL){
 
612
          perror("realloc");
 
613
          exitstatus = EXIT_FAILURE;
 
614
          free(org_line);
 
615
          goto fallback;
 
616
        }
 
617
        custom_argv[custom_argc-1] = new_arg;
 
618
        custom_argv[custom_argc] = NULL;        
501
619
      }
502
620
    }
503
621
    free(org_line);
504
 
  } else{
 
622
  } else {
505
623
    /* Check for harmful errors and go to fallback. Other errors might
506
624
       not affect opening plugins */
507
 
    if (errno == EMFILE or errno == ENFILE or errno == ENOMEM){
 
625
    if(errno == EMFILE or errno == ENFILE or errno == ENOMEM){
508
626
      perror("fopen");
509
627
      exitstatus = EXIT_FAILURE;
510
628
      goto fallback;
511
629
    }
512
630
  }
513
 
 
 
631
  /* If there was any arguments from configuration file,
 
632
     pass them to parser as command arguments */
514
633
  if(custom_argv != NULL){
515
 
    custom_argv[0] = argv[0];
516
 
    ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, &plugin_list);
517
 
    if (ret == ARGP_ERR_UNKNOWN){
 
634
    ret = argp_parse(&argp, custom_argc, custom_argv, ARGP_IN_ORDER,
 
635
                     0, NULL);
 
636
    if(ret == ARGP_ERR_UNKNOWN){
518
637
      fprintf(stderr, "Unknown error while parsing arguments\n");
519
638
      exitstatus = EXIT_FAILURE;
520
639
      goto fallback;
521
640
    }
522
641
  }
523
642
  
 
643
  /* Parse actual command line arguments, to let them override the
 
644
     config file */
 
645
  ret = argp_parse(&argp, argc, argv, ARGP_IN_ORDER, 0, NULL);
 
646
  if(ret == ARGP_ERR_UNKNOWN){
 
647
    fprintf(stderr, "Unknown error while parsing arguments\n");
 
648
    exitstatus = EXIT_FAILURE;
 
649
    goto fallback;
 
650
  }
 
651
  
524
652
  if(debug){
525
653
    for(plugin *p = plugin_list; p != NULL; p=p->next){
526
654
      fprintf(stderr, "Plugin: %s has %d arguments\n",
528
656
      for(char **a = p->argv; *a != NULL; a++){
529
657
        fprintf(stderr, "\tArg: %s\n", *a);
530
658
      }
531
 
      fprintf(stderr, "...and %u environment variables\n", p->envc);
 
659
      fprintf(stderr, "...and %d environment variables\n", p->envc);
532
660
      for(char **a = p->environ; *a != NULL; a++){
533
661
        fprintf(stderr, "\t%s\n", *a);
534
662
      }
535
663
    }
536
664
  }
537
665
  
 
666
  /* Strip permissions down to nobody */
 
667
  setgid(gid);
 
668
  if(ret == -1){
 
669
    perror("setgid");
 
670
  }
538
671
  ret = setuid(uid);
539
 
  if (ret == -1){
 
672
  if(ret == -1){
540
673
    perror("setuid");
541
674
  }
542
675
  
543
 
  setgid(gid);
544
 
  if (ret == -1){
545
 
    perror("setgid");
 
676
  if(plugindir == NULL){
 
677
    dir = opendir(PDIR);
 
678
  } else {
 
679
    dir = opendir(plugindir);
546
680
  }
547
681
  
548
 
  dir = opendir(plugindir);
549
682
  if(dir == NULL){
550
683
    perror("Could not open plugin dir");
551
684
    exitstatus = EXIT_FAILURE;
567
700
  
568
701
  FD_ZERO(&rfds_all);
569
702
  
 
703
  /* Read and execute any executable in the plugin directory*/
570
704
  while(true){
571
705
    dirst = readdir(dir);
572
706
    
573
 
    // All directory entries have been processed
 
707
    /* All directory entries have been processed */
574
708
    if(dirst == NULL){
575
 
      if (errno == EBADF){
 
709
      if(errno == EBADF){
576
710
        perror("readdir");
577
711
        exitstatus = EXIT_FAILURE;
578
712
        goto fallback;
582
716
    
583
717
    d_name_len = strlen(dirst->d_name);
584
718
    
585
 
    // Ignore dotfiles, backup files and other junk
 
719
    /* Ignore dotfiles, backup files and other junk */
586
720
    {
587
721
      bool bad_name = false;
588
722
      
590
724
      
591
725
      const char const *bad_suffixes[] = { "~", "#", ".dpkg-new",
592
726
                                           ".dpkg-old",
 
727
                                           ".dpkg-bak",
593
728
                                           ".dpkg-divert", NULL };
594
729
      for(const char **pre = bad_prefixes; *pre != NULL; pre++){
595
730
        size_t pre_len = strlen(*pre);
603
738
          break;
604
739
        }
605
740
      }
606
 
      
607
741
      if(bad_name){
608
742
        continue;
609
743
      }
610
 
      
611
744
      for(const char **suf = bad_suffixes; *suf != NULL; suf++){
612
745
        size_t suf_len = strlen(*suf);
613
746
        if((d_name_len >= suf_len)
628
761
    }
629
762
 
630
763
    char *filename;
631
 
    ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
764
    if(plugindir == NULL){
 
765
      ret = asprintf(&filename, PDIR "/%s", dirst->d_name);
 
766
    } else {
 
767
      ret = asprintf(&filename, "%s/%s", plugindir, dirst->d_name);
 
768
    }
632
769
    if(ret < 0){
633
770
      perror("asprintf");
634
771
      continue;
635
772
    }
636
773
    
637
774
    ret = stat(filename, &st);
638
 
    if (ret == -1){
 
775
    if(ret == -1){
639
776
      perror("stat");
640
777
      free(filename);
641
778
      continue;
642
779
    }
643
 
    
644
 
    if (not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
 
780
 
 
781
    /* Ignore non-executable files */
 
782
    if(not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
645
783
      if(debug){
646
784
        fprintf(stderr, "Ignoring plugin dir entry \"%s\""
647
785
                " with bad type or mode\n", filename);
649
787
      free(filename);
650
788
      continue;
651
789
    }
652
 
    plugin *p = getplugin(dirst->d_name, &plugin_list);
 
790
    
 
791
    plugin *p = getplugin(dirst->d_name);
653
792
    if(p == NULL){
654
793
      perror("getplugin");
655
794
      free(filename);
665
804
    }
666
805
    {
667
806
      /* Add global arguments to argument list for this plugin */
668
 
      plugin *g = getplugin(NULL, &plugin_list);
 
807
      plugin *g = getplugin(NULL);
669
808
      if(g != NULL){
670
809
        for(char **a = g->argv + 1; *a != NULL; a++){
671
810
          if(not add_argument(p, *a)){
674
813
        }
675
814
        /* Add global environment variables */
676
815
        for(char **e = g->environ; *e != NULL; e++){
677
 
          if(not add_environment(p, *e)){
 
816
          if(not add_environment(p, *e, false)){
678
817
            perror("add_environment");
679
818
          }
680
819
        }
685
824
       process, too. */
686
825
    if(p->environ[0] != NULL){
687
826
      for(char **e = environ; *e != NULL; e++){
688
 
        char *copy = strdup(*e);
689
 
        if(copy == NULL){
690
 
          perror("strdup");
691
 
          continue;
692
 
        }
693
 
        if(not add_environment(p, copy)){
 
827
        if(not add_environment(p, *e, false)){
694
828
          perror("add_environment");
695
829
        }
696
830
      }
698
832
    
699
833
    int pipefd[2];
700
834
    ret = pipe(pipefd);
701
 
    if (ret == -1){
 
835
    if(ret == -1){
702
836
      perror("pipe");
703
837
      exitstatus = EXIT_FAILURE;
704
838
      goto fallback;
705
839
    }
 
840
    /* Ask OS to automatic close the pipe on exec */
706
841
    ret = set_cloexec_flag(pipefd[0]);
707
842
    if(ret < 0){
708
843
      perror("set_cloexec_flag");
716
851
      goto fallback;
717
852
    }
718
853
    /* Block SIGCHLD until process is safely in process list */
719
 
    ret = sigprocmask (SIG_BLOCK, &sigchld_action.sa_mask, NULL);
 
854
    ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
720
855
    if(ret < 0){
721
856
      perror("sigprocmask");
722
857
      exitstatus = EXIT_FAILURE;
723
858
      goto fallback;
724
859
    }
725
 
    // Starting a new process to be watched
 
860
    /* Starting a new process to be watched */
726
861
    pid_t pid = fork();
727
862
    if(pid == -1){
728
863
      perror("fork");
736
871
        perror("sigaction");
737
872
        _exit(EXIT_FAILURE);
738
873
      }
739
 
      ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
874
      ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
740
875
      if(ret < 0){
741
876
        perror("sigprocmask");
742
877
        _exit(EXIT_FAILURE);
743
878
      }
744
 
 
 
879
      
745
880
      ret = dup2(pipefd[1], STDOUT_FILENO); /* replace our stdout */
746
881
      if(ret == -1){
747
882
        perror("dup2");
766
901
      }
767
902
      /* no return */
768
903
    }
769
 
    /* parent process */
 
904
    /* Parent process */
 
905
    close(pipefd[1]);           /* Close unused write end of pipe */
770
906
    free(filename);
771
 
    close(pipefd[1]);           /* close unused write end of pipe */
772
 
    process *new_process = malloc(sizeof(process));
773
 
    if (new_process == NULL){
774
 
      perror("malloc");
775
 
      ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
907
    plugin *new_plugin = getplugin(dirst->d_name);
 
908
    if(new_plugin == NULL){
 
909
      perror("getplugin");
 
910
      ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
776
911
      if(ret < 0){
777
 
        perror("sigprocmask");
 
912
        perror("sigprocmask");
778
913
      }
779
914
      exitstatus = EXIT_FAILURE;
780
915
      goto fallback;
781
916
    }
782
917
    
783
 
    *new_process = (struct process){ .pid = pid,
784
 
                                     .fd = pipefd[0],
785
 
                                     .next = process_list };
786
 
    // List handling
787
 
    process_list = new_process;
 
918
    new_plugin->pid = pid;
 
919
    new_plugin->fd = pipefd[0];
 
920
    
788
921
    /* Unblock SIGCHLD so signal handler can be run if this process
789
922
       has already completed */
790
 
    ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
 
923
    ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask, NULL);
791
924
    if(ret < 0){
792
925
      perror("sigprocmask");
793
926
      exitstatus = EXIT_FAILURE;
794
927
      goto fallback;
795
928
    }
796
929
    
797
 
    FD_SET(new_process->fd, &rfds_all);
 
930
    FD_SET(new_plugin->fd, &rfds_all);
798
931
    
799
 
    if (maxfd < new_process->fd){
800
 
      maxfd = new_process->fd;
 
932
    if(maxfd < new_plugin->fd){
 
933
      maxfd = new_plugin->fd;
801
934
    }
802
 
    
803
935
  }
804
936
  
805
 
  free_plugin_list(plugin_list);
806
 
  plugin_list = NULL;
807
 
  
808
937
  closedir(dir);
809
938
  dir = NULL;
810
 
    
811
 
  if (process_list == NULL){
812
 
    fprintf(stderr, "No plugin processes started. Incorrect plugin"
813
 
            " directory?\n");
814
 
    process_list = NULL;
 
939
  
 
940
  for(plugin *p = plugin_list; p != NULL; p = p->next){
 
941
    if(p->pid != 0){
 
942
      break;
 
943
    }
 
944
    if(p->next == NULL){
 
945
      fprintf(stderr, "No plugin processes started. Incorrect plugin"
 
946
              " directory?\n");
 
947
      free_plugin_list();
 
948
    }
815
949
  }
816
 
  while(process_list){
 
950
  
 
951
  /* Main loop while running plugins exist */
 
952
  while(plugin_list){
817
953
    fd_set rfds = rfds_all;
818
954
    int select_ret = select(maxfd+1, &rfds, NULL, NULL, NULL);
819
 
    if (select_ret == -1){
 
955
    if(select_ret == -1){
820
956
      perror("select");
821
957
      exitstatus = EXIT_FAILURE;
822
958
      goto fallback;
823
959
    }
824
960
    /* OK, now either a process completed, or something can be read
825
961
       from one of them */
826
 
    for(process *proc = process_list; proc ; proc = proc->next){
 
962
    for(plugin *proc = plugin_list; proc != NULL;){
827
963
      /* Is this process completely done? */
828
 
      if(proc->eof and proc->completed){
 
964
      if(proc->completed and proc->eof){
829
965
        /* Only accept the plugin output if it exited cleanly */
830
966
        if(not WIFEXITED(proc->status)
831
967
           or WEXITSTATUS(proc->status) != 0){
832
968
          /* Bad exit by plugin */
 
969
 
833
970
          if(debug){
834
971
            if(WIFEXITED(proc->status)){
835
 
              fprintf(stderr, "Plugin %u exited with status %d\n",
836
 
                      (unsigned int) (proc->pid),
 
972
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] exited with"
 
973
                      " status %d\n", proc->name,
 
974
                      (intmax_t) (proc->pid),
837
975
                      WEXITSTATUS(proc->status));
838
 
            } else if(WIFSIGNALED(proc->status)) {
839
 
              fprintf(stderr, "Plugin %u killed by signal %d\n",
840
 
                      (unsigned int) (proc->pid),
 
976
            } else if(WIFSIGNALED(proc->status)){
 
977
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] killed by"
 
978
                      " signal %d\n", proc->name,
 
979
                      (intmax_t) (proc->pid),
841
980
                      WTERMSIG(proc->status));
842
981
            } else if(WCOREDUMP(proc->status)){
843
 
              fprintf(stderr, "Plugin %d dumped core\n",
844
 
                      (unsigned int) (proc->pid));
 
982
              fprintf(stderr, "Plugin %s [%" PRIdMAX "] dumped"
 
983
                      " core\n", proc->name, (intmax_t) (proc->pid));
845
984
            }
846
985
          }
 
986
          
847
987
          /* Remove the plugin */
848
988
          FD_CLR(proc->fd, &rfds_all);
 
989
 
849
990
          /* Block signal while modifying process_list */
850
991
          ret = sigprocmask(SIG_BLOCK, &sigchld_action.sa_mask, NULL);
851
992
          if(ret < 0){
853
994
            exitstatus = EXIT_FAILURE;
854
995
            goto fallback;
855
996
          }
856
 
          /* Delete this process entry from the list */
857
 
          if(process_list == proc){
858
 
            /* First one - simple */
859
 
            process_list = proc->next;
860
 
          } else {
861
 
            /* Second one or later */
862
 
            for(process *p = process_list; p != NULL; p = p->next){
863
 
              if(p->next == proc){
864
 
                p->next = proc->next;
865
 
                break;
866
 
              }
867
 
            }
868
 
          }
 
997
          
 
998
          plugin *next_plugin = proc->next;
 
999
          free_plugin(proc);
 
1000
          proc = next_plugin;
 
1001
          
869
1002
          /* We are done modifying process list, so unblock signal */
870
 
          ret = sigprocmask (SIG_UNBLOCK, &sigchld_action.sa_mask,
871
 
                             NULL);
 
1003
          ret = sigprocmask(SIG_UNBLOCK, &sigchld_action.sa_mask,
 
1004
                            NULL);
872
1005
          if(ret < 0){
873
1006
            perror("sigprocmask");
874
 
          }
875
 
          free(proc->buffer);
876
 
          free(proc);
877
 
          /* We deleted this process from the list, so we can't go
878
 
             proc->next.  Therefore, start over from the beginning of
879
 
             the process list */
880
 
          break;
 
1007
            exitstatus = EXIT_FAILURE;
 
1008
            goto fallback;
 
1009
          }
 
1010
          
 
1011
          if(plugin_list == NULL){
 
1012
            break;
 
1013
          }
 
1014
          
 
1015
          continue;
881
1016
        }
 
1017
        
882
1018
        /* This process exited nicely, so print its buffer */
883
 
 
 
1019
        
884
1020
        bool bret = print_out_password(proc->buffer,
885
1021
                                       proc->buffer_length);
886
1022
        if(not bret){
889
1025
        }
890
1026
        goto fallback;
891
1027
      }
 
1028
      
892
1029
      /* This process has not completed.  Does it have any output? */
893
1030
      if(proc->eof or not FD_ISSET(proc->fd, &rfds)){
894
1031
        /* This process had nothing to say at this time */
 
1032
        proc = proc->next;
895
1033
        continue;
896
1034
      }
897
1035
      /* Before reading, make the process' data buffer large enough */
898
1036
      if(proc->buffer_length + BUFFER_SIZE > proc->buffer_size){
899
1037
        proc->buffer = realloc(proc->buffer, proc->buffer_size
900
1038
                               + (size_t) BUFFER_SIZE);
901
 
        if (proc->buffer == NULL){
 
1039
        if(proc->buffer == NULL){
902
1040
          perror("malloc");
903
1041
          exitstatus = EXIT_FAILURE;
904
1042
          goto fallback;
906
1044
        proc->buffer_size += BUFFER_SIZE;
907
1045
      }
908
1046
      /* Read from the process */
909
 
      ret = read(proc->fd, proc->buffer + proc->buffer_length,
910
 
                 BUFFER_SIZE);
911
 
      if(ret < 0){
 
1047
      sret = read(proc->fd, proc->buffer + proc->buffer_length,
 
1048
                  BUFFER_SIZE);
 
1049
      if(sret < 0){
912
1050
        /* Read error from this process; ignore the error */
 
1051
        proc = proc->next;
913
1052
        continue;
914
1053
      }
915
 
      if(ret == 0){
 
1054
      if(sret == 0){
916
1055
        /* got EOF */
917
1056
        proc->eof = true;
918
1057
      } else {
919
 
        proc->buffer_length += (size_t) ret;
 
1058
        proc->buffer_length += (size_t) sret;
920
1059
      }
921
1060
    }
922
1061
  }
924
1063
 
925
1064
 fallback:
926
1065
  
927
 
  if(process_list == NULL or exitstatus != EXIT_SUCCESS){
 
1066
  if(plugin_list == NULL or exitstatus != EXIT_SUCCESS){
928
1067
    /* Fallback if all plugins failed, none are found or an error
929
1068
       occured */
930
1069
    bool bret;
931
1070
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
932
1071
    char *passwordbuffer = getpass("Password: ");
933
 
    bret = print_out_password(passwordbuffer, strlen(passwordbuffer));
 
1072
    size_t len = strlen(passwordbuffer);
 
1073
    /* Strip trailing newline */
 
1074
    if(len > 0 and passwordbuffer[len-1] == '\n'){
 
1075
      passwordbuffer[len-1] = '\0'; /* not strictly necessary */
 
1076
      len--;
 
1077
    }
 
1078
    bret = print_out_password(passwordbuffer, len);
934
1079
    if(not bret){
935
1080
      perror("print_out_password");
936
1081
      exitstatus = EXIT_FAILURE;
943
1088
    perror("sigaction");
944
1089
    exitstatus = EXIT_FAILURE;
945
1090
  }
946
 
 
 
1091
  
947
1092
  if(custom_argv != NULL){
948
 
    for(char **arg = custom_argv; *arg != NULL; arg++){
 
1093
    for(char **arg = custom_argv+1; *arg != NULL; arg++){
949
1094
      free(*arg);
950
1095
    }
951
1096
    free(custom_argv);
952
1097
  }
953
 
  free_plugin_list(plugin_list);
954
1098
  
955
1099
  if(dir != NULL){
956
1100
    closedir(dir);
957
1101
  }
958
1102
  
959
 
  /* Free the process list and kill the processes */
960
 
  for(process *next; process_list != NULL; process_list = next){
961
 
    next = process_list->next;
962
 
    close(process_list->fd);
963
 
    ret = kill(process_list->pid, SIGTERM);
964
 
    if(ret == -1 and errno != ESRCH){
965
 
      /* set-uid proccesses migth not get closed */
966
 
      perror("kill");
 
1103
  /* Kill the processes */
 
1104
  for(plugin *p = plugin_list; p != NULL; p = p->next){
 
1105
    if(p->pid != 0){
 
1106
      close(p->fd);
 
1107
      ret = kill(p->pid, SIGTERM);
 
1108
      if(ret == -1 and errno != ESRCH){
 
1109
        /* Set-uid proccesses might not get closed */
 
1110
        perror("kill");
 
1111
      }
967
1112
    }
968
 
    free(process_list->buffer);
969
 
    free(process_list);
970
1113
  }
971
1114
  
972
1115
  /* Wait for any remaining child processes to terminate */
977
1120
    perror("wait");
978
1121
  }
979
1122
  
 
1123
  free_plugin_list();
 
1124
  
 
1125
  free(plugindir);
 
1126
  free(argfile);
 
1127
  
980
1128
  return exitstatus;
981
1129
}