/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

  • Committer: Teddy Hogeborn
  • Date: 2008-08-10 20:35:01 UTC
  • mfrom: (24.1.42 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20080810203501-euh3qcf1nopilksm
Merge.

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>             /* strsep, strlen(), strcpy(),
 
54
#include <string.h>             /* strtok, 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"
69
68
 
70
69
const char *argp_program_version = "mandos-client 1.0";
71
70
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
172
171
}
173
172
 
174
173
bool print_out_password(const char *buffer, size_t length){
175
 
  ssize_t ret;
176
 
  if(length>0 and buffer[length-1] == '\n'){
177
 
    length--;
178
 
  }
179
 
  for(size_t written = 0; written < length; written += (size_t)ret){
 
174
  size_t ret;
 
175
  for(size_t written = 0; written < length; written += ret){
180
176
    ret = TEMP_FAILURE_RETRY(write(STDOUT_FILENO, buffer + written,
181
177
                                   length - written));
182
178
    if(ret < 0){
186
182
  return true;
187
183
}
188
184
 
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
 
 
211
185
int main(int argc, char *argv[]){
212
186
  const char *plugindir = "/conf/conf.d/mandos/plugins.d";
213
 
  const char *conffile = CONFFILE;
214
 
  FILE *conffp;
215
187
  size_t d_name_len;
216
188
  DIR *dir = NULL;
217
189
  struct dirent *dirst;
225
197
  struct sigaction old_sigchld_action;
226
198
  struct sigaction sigchld_action = { .sa_handler = handle_sigchld,
227
199
                                      .sa_flags = SA_NOCLDSTOP };
228
 
  char **custom_argv = NULL;
229
 
  int custom_argc = 0;
 
200
  char *plus_options = NULL;
 
201
  char **plus_argv = NULL;
230
202
  
231
203
  /* Establish a signal handler */
232
204
  sigemptyset(&sigchld_action.sa_mask);
273
245
    switch (key) {
274
246
    case 'g':
275
247
      if (arg != NULL){
276
 
        char *p;
277
 
        while((p = strsep(&arg, ",")) != NULL){
278
 
          if(p[0] == '\0'){
279
 
            continue;
280
 
          }
 
248
        char *p = strtok(arg, ",");
 
249
        do{
281
250
          addargument(getplugin(NULL, plugins), p);
282
 
        }
 
251
          p = strtok(NULL, ",");
 
252
        } while (p != NULL);
283
253
      }
284
254
      break;
285
255
    case 'o':
286
256
      if (arg != NULL){
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
 
            }
 
257
        char *name = strtok(arg, ":");
 
258
        char *p = strtok(NULL, ":");
 
259
        if(p != NULL){
 
260
          p = strtok(p, ",");
 
261
          do{
301
262
            addargument(getplugin(name, plugins), p);
302
 
          }
 
263
            p = strtok(NULL, ",");
 
264
          } while (p != NULL);
303
265
        }
304
266
      }
305
267
      break;
321
283
      debug = true;
322
284
      break;
323
285
    case ARGP_KEY_ARG:
324
 
      fprintf(stderr, "Ignoring unknown argument \"%s\"\n", arg); 
 
286
      if(plus_options != NULL or arg == NULL or arg[0] != '+'){
 
287
        argp_usage (state);
 
288
      }
 
289
      plus_options = arg;
325
290
      break;
326
291
    case ARGP_KEY_END:
327
292
      break;
339
304
  
340
305
  ret = argp_parse (&argp, argc, argv, 0, 0, &plugin_list);
341
306
  if (ret == ARGP_ERR_UNKNOWN){
342
 
    fprintf(stderr, "Unknown error while parsing arguments\n");
 
307
    fprintf(stderr, "Unkown error while parsing arguments\n");
343
308
    exitstatus = EXIT_FAILURE;
344
309
    goto end;
345
310
  }
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");
 
311
  
 
312
  if(plus_options){
 
313
    /* This is a mangled argument in the form of
 
314
     "+--option+--other-option=parameter+--yet-another-option", etc */
 
315
    /* Make new argc and argv vars, and call argp_parse() again. */
 
316
    plus_options++;             /* skip the first '+' character */
 
317
    const char delims[] = "+";
 
318
    char *arg;
 
319
    int new_argc = 1;
 
320
    plus_argv = malloc(sizeof(char*) * 2);
 
321
    if(plus_argv == NULL){
 
322
      perror("malloc");
382
323
      exitstatus = EXIT_FAILURE;
383
324
      goto end;
384
325
    }
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);
 
326
    plus_argv[0] = argv[0];
 
327
    plus_argv[1] = NULL;
 
328
    arg = strtok(plus_options, delims); /* Get first argument */
 
329
    while(arg != NULL){
 
330
      new_argc++;
 
331
      plus_argv = realloc(plus_argv, sizeof(char *)
 
332
                         * ((unsigned int) new_argc + 1));
 
333
      if(plus_argv == NULL){
 
334
        perror("realloc");
 
335
        exitstatus = EXIT_FAILURE;
 
336
        goto end;
 
337
      }
 
338
      plus_argv[new_argc-1] = arg;
 
339
      plus_argv[new_argc] = NULL;
 
340
      arg = strtok(NULL, delims); /* Get next argument */
 
341
    }
 
342
    ret = argp_parse (&argp, new_argc, plus_argv, 0, 0, &plugin_list);
390
343
    if (ret == ARGP_ERR_UNKNOWN){
391
 
      fprintf(stderr, "Unknown error while parsing arguments\n");
 
344
      fprintf(stderr, "Unkown error while parsing arguments\n");
392
345
      exitstatus = EXIT_FAILURE;
393
346
      goto end;
394
347
    }
499
452
    char *filename = malloc(d_name_len + strlen(plugindir) + 2);
500
453
    if (filename == NULL){
501
454
      perror("malloc");
502
 
      continue;
 
455
      exitstatus = EXIT_FAILURE;
 
456
      goto end;
503
457
    }
504
458
    strcpy(filename, plugindir); /* Spurious warning */
505
459
    strcat(filename, "/");      /* Spurious warning */
508
462
    ret = stat(filename, &st);
509
463
    if (ret == -1){
510
464
      perror("stat");
511
 
      free(filename);
512
 
      continue;
 
465
      exitstatus = EXIT_FAILURE;
 
466
      goto end;
513
467
    }
514
468
    
515
469
    if (not S_ISREG(st.st_mode) or (access(filename, X_OK) != 0)){
564
518
    }
565
519
    // Starting a new process to be watched
566
520
    pid_t pid = fork();
567
 
    if(pid == -1){
568
 
      perror("fork");
569
 
      exitstatus = EXIT_FAILURE;
570
 
      goto end;
571
 
    }
572
521
    if(pid == 0){
573
522
      /* this is the child process */
574
523
      ret = sigaction(SIGCHLD, &old_sigchld_action, NULL);
756
705
      }
757
706
    }
758
707
  }
759
 
 
760
 
 
761
 
 end:
762
708
  
763
 
  if(process_list == NULL or exitstatus != EXIT_SUCCESS){
764
 
    /* Fallback if all plugins failed, none are found or an error occured */
 
709
  if(process_list == NULL){
765
710
    bool bret;
766
711
    fprintf(stderr, "Going to fallback mode using getpass(3)\n");
767
712
    char *passwordbuffer = getpass("Password: ");
771
716
      exitstatus = EXIT_FAILURE;
772
717
      goto end;
773
718
    }
 
719
    bret = print_out_password("\n", 1);
 
720
    if(not bret){
 
721
      perror("print_out_password");
 
722
      exitstatus = EXIT_FAILURE;
 
723
    }
774
724
  }
 
725
 
 
726
 end:
775
727
  
776
728
  /* Restore old signal handler */
777
729
  sigaction(SIGCHLD, &old_sigchld_action, NULL);
778
730
  
779
 
  free(custom_argv);
 
731
  free(plus_argv);
780
732
  
781
733
  /* Free the plugin list */
782
734
  for(plugin *next; plugin_list != NULL; plugin_list = next){