/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 mandos-client.c

Added configuration files support for mandos-client
Removed plus argument support for mandos-client

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
                                   close() */
52
52
#include <fcntl.h>              /* fcntl(), F_GETFD, F_SETFD,
53
53
                                   FD_CLOEXEC */
54
 
#include <string.h>             /* strtok, strlen(), strcpy(),
 
54
#include <string.h>             /* strsep, strlen(), strcpy(),
55
55
                                   strcat() */
56
56
#include <errno.h>              /* errno */
57
57
#include <argp.h>               /* struct argp_option, struct
65
65
#include <errno.h>              /* errno, EBADF */
66
66
 
67
67
#define BUFFER_SIZE 256
 
68
#define CONFFILE "/conf/conf.d/mandos/client.conf"
68
69
 
69
70
const char *argp_program_version = "mandos-client 1.0";
70
71
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
185
186
  return true;
186
187
}
187
188
 
 
189
char ** addcustomargument(char **argv, int *argc, char *arg){
 
190
 
 
191
  if (argv == NULL){
 
192
    *argc = 1;
 
193
    argv = malloc(sizeof(char*) * 2);
 
194
    if(argv == NULL){
 
195
      return NULL;
 
196
    }
 
197
    argv[0] = NULL;     /* Will be set to argv[0] in main before parsing */
 
198
    argv[1] = NULL;
 
199
  }
 
200
  *argc += 1;
 
201
  argv = realloc(argv, sizeof(char *)
 
202
                  * ((unsigned int) *argc + 1));
 
203
  if(argv == NULL){
 
204
    return NULL;
 
205
  }
 
206
  argv[*argc-1] = arg;
 
207
  argv[*argc] = NULL;   
 
208
  return argv;
 
209
}
 
210
 
188
211
int main(int argc, char *argv[]){
189
212
  const char *plugindir = "/conf/conf.d/mandos/plugins.d";
 
213
  const char *conffile = CONFFILE;
 
214
  FILE *conffp;
190
215
  size_t d_name_len;
191
216
  DIR *dir = NULL;
192
217
  struct dirent *dirst;
200
225
  struct sigaction old_sigchld_action;
201
226
  struct sigaction sigchld_action = { .sa_handler = handle_sigchld,
202
227
                                      .sa_flags = SA_NOCLDSTOP };
203
 
  char *plus_options = NULL;
204
 
  char **plus_argv = NULL;
205
 
 
 
228
  char **custom_argv = NULL;
 
229
  int custom_argc = 0;
 
230
  
206
231
  /* Establish a signal handler */
207
232
  sigemptyset(&sigchld_action.sa_mask);
208
233
  ret = sigaddset(&sigchld_action.sa_mask, SIGCHLD);
248
273
    switch (key) {
249
274
    case 'g':
250
275
      if (arg != NULL){
251
 
        char *p = strtok(arg, ",");
252
 
        do{
 
276
        char *p;
 
277
        while((p = strsep(&arg, ",")) != NULL){
 
278
          if(p[0] == '\0'){
 
279
            continue;
 
280
          }
253
281
          addargument(getplugin(NULL, plugins), p);
254
 
          p = strtok(NULL, ",");
255
 
        } while (p != NULL);
 
282
        }
256
283
      }
257
284
      break;
258
285
    case 'o':
259
286
      if (arg != NULL){
260
 
        char *name = strtok(arg, ":");
261
 
        char *p = strtok(NULL, ":");
262
 
        if(p != NULL){
263
 
          p = strtok(p, ",");
264
 
          do{
 
287
        char *name = strsep(&arg, ":");
 
288
        if(name[0] == '\0'){
 
289
          break;
 
290
        }
 
291
        char *opt = strsep(&arg, ":");
 
292
        if(opt[0] == '\0'){
 
293
          break;
 
294
        }
 
295
        if(opt != NULL){
 
296
          char *p;
 
297
          while((p = strsep(&opt, ",")) != NULL){
 
298
            if(p[0] == '\0'){
 
299
              continue;
 
300
            }
265
301
            addargument(getplugin(name, plugins), p);
266
 
            p = strtok(NULL, ",");
267
 
          } while (p != NULL);
 
302
          }
268
303
        }
269
304
      }
270
305
      break;
286
321
      debug = true;
287
322
      break;
288
323
    case ARGP_KEY_ARG:
289
 
      if(plus_options != NULL or arg == NULL or arg[0] != '+'){
290
 
        argp_usage (state);
291
 
      }
292
 
      plus_options = arg;
 
324
      fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg); 
293
325
      break;
294
326
    case ARGP_KEY_END:
295
327
      break;
311
343
    exitstatus = EXIT_FAILURE;
312
344
    goto end;
313
345
  }
314
 
  
315
 
  if(plus_options){
316
 
    /* This is a mangled argument in the form of
317
 
     "+--option+--other-option=parameter+--yet-another-option", etc */
318
 
    /* Make new argc and argv vars, and call argp_parse() again. */
319
 
    plus_options++;             /* skip the first '+' character */
320
 
    const char delims[] = "+";
321
 
    char *arg;
322
 
    int new_argc = 1;
323
 
    plus_argv = malloc(sizeof(char*) * 2);
324
 
    if(plus_argv == NULL){
325
 
      perror("malloc");
 
346
 
 
347
  conffp = fopen(conffile, "r");
 
348
  if(conffp != NULL){
 
349
    char *org_line = NULL;
 
350
    size_t size = 0;
 
351
    ssize_t sret;
 
352
    char *p, *arg, *new_arg, *line;
 
353
    const char whitespace_delims[] = " \r\t\f\v\n";
 
354
    const char comment_delim[] = "#";
 
355
 
 
356
    while(true){
 
357
      sret = getline(&org_line, &size, conffp);
 
358
      if(sret == -1){
 
359
        break;
 
360
      }
 
361
 
 
362
      line = org_line;
 
363
      arg = strsep(&line, comment_delim);
 
364
      while((p = strsep(&arg, whitespace_delims)) != NULL){
 
365
        if(p[0] == '\0'){
 
366
          continue;
 
367
        }
 
368
        new_arg = strdup(p);
 
369
        custom_argv = addcustomargument(custom_argv, &custom_argc, new_arg);
 
370
        if (custom_argv == NULL){
 
371
          perror("addcustomargument");
 
372
          exitstatus = EXIT_FAILURE;
 
373
          goto end;
 
374
        }
 
375
      }
 
376
    }
 
377
    free(org_line);
 
378
  } else{
 
379
    /* check for harmfull errors */
 
380
    if (errno == EMFILE or errno == ENFILE or errno == ENOMEM){
 
381
      perror("fopen");
326
382
      exitstatus = EXIT_FAILURE;
327
383
      goto end;
328
384
    }
329
 
    plus_argv[0] = argv[0];
330
 
    plus_argv[1] = NULL;
331
 
    arg = strtok(plus_options, delims); /* Get first argument */
332
 
    while(arg != NULL){
333
 
      new_argc++;
334
 
      plus_argv = realloc(plus_argv, sizeof(char *)
335
 
                         * ((unsigned int) new_argc + 1));
336
 
      if(plus_argv == NULL){
337
 
        perror("realloc");
338
 
        exitstatus = EXIT_FAILURE;
339
 
        goto end;
340
 
      }
341
 
      plus_argv[new_argc-1] = arg;
342
 
      plus_argv[new_argc] = NULL;
343
 
      arg = strtok(NULL, delims); /* Get next argument */
344
 
    }
345
 
    ret = argp_parse (&argp, new_argc, plus_argv, 0, 0, &plugin_list);
 
385
  }
 
386
 
 
387
  if(custom_argv != NULL){
 
388
    custom_argv[0] = argv[0];
 
389
    ret = argp_parse (&argp, custom_argc, custom_argv, 0, 0, &plugin_list);
346
390
    if (ret == ARGP_ERR_UNKNOWN){
347
391
      fprintf(stderr, "Unknown error while parsing arguments\n");
348
392
      exitstatus = EXIT_FAILURE;
455
499
    char *filename = malloc(d_name_len + strlen(plugindir) + 2);
456
500
    if (filename == NULL){
457
501
      perror("malloc");
458
 
      exitstatus = EXIT_FAILURE;
459
 
      goto end;
 
502
      continue;
460
503
    }
461
504
    strcpy(filename, plugindir); /* Spurious warning */
462
505
    strcat(filename, "/");      /* Spurious warning */
465
508
    ret = stat(filename, &st);
466
509
    if (ret == -1){
467
510
      perror("stat");
468
 
      exitstatus = EXIT_FAILURE;
469
 
      goto end;
 
511
      free(filename);
 
512
      continue;
470
513
    }
471
514
    
472
515
    if (not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
521
564
    }
522
565
    // Starting a new process to be watched
523
566
    pid_t pid = fork();
 
567
    if(pid == -1){
 
568
      perror("fork");
 
569
      exitstatus = EXIT_FAILURE;
 
570
      goto end;
 
571
    }
524
572
    if(pid == 0){
525
573
      /* this is the child process */
526
574
      ret = sigaction(SIGCHLD, &old_sigchld_action, NULL);
713
761
 end:
714
762
  
715
763
  if(process_list == NULL or exitstatus != EXIT_SUCCESS){
716
 
    /* Fallback if all plugins failed or an error occured */
 
764
    /* Fallback if all plugins failed, none are found or an error occured */
717
765
    bool bret;
718
766
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
719
767
    char *passwordbuffer = getpass("Password: ");
728
776
  /* Restore old signal handler */
729
777
  sigaction(SIGCHLD, &old_sigchld_action, NULL);
730
778
  
731
 
  free(plus_argv);
 
779
  free(custom_argv);
732
780
  
733
781
  /* Free the plugin list */
734
782
  for(plugin *next; plugin_list != NULL; plugin_list = next){