/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 plugins.d/usplash.c

  • Committer: Björn Påhlsson
  • Date: 2011-06-23 22:27:15 UTC
  • mto: (237.7.33 trunk)
  • mto: This revision was merged to the branch mainline in revision 284.
  • Revision ID: belorn@fukt.bsnet.se-20110623222715-q5wro9ma9iyjl367
* Makefile (CFLAGS): Added "-lrt" to include real time library.
* plugins.d/mandos-client.c: use scandir(3) instead of readdir(3)
                             Prefix all debug output with "Mandos plugin " + program_invocation_short_name
                             Retry servers that failed to provide password.
                             New option --retry SECONDS that sets the interval between rechecking.
                             --retry also controls how often it retries a server when using --connect.
* plugins.d/splashy.c:  Prefix all debug output with "Mandos plugin " + program_invocation_short_name
* plugins.d/usplash.c: --||--
* plugins.d/askpass-fifo.c: --||--
* plugins.d/password-prompt.c: --||--
* plugins.d/plymouth.c: --||--
* mandos: Lower logger level from warning to info on failed client requests because client was disabled or unknown fingerprint.
* plugins.d/plymouth.c (get_pid): bug fix. Was not calling free on direntries. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/*
3
3
 * Usplash - Read a password from usplash and output it
4
4
 * 
5
 
 * Copyright © 2008,2009 Teddy Hogeborn
6
 
 * Copyright © 2008,2009 Björn Påhlsson
 
5
 * Copyright © 2008-2011 Teddy Hogeborn
 
6
 * Copyright © 2008-2011 Björn Påhlsson
7
7
 * 
8
8
 * This program is free software: you can redistribute it and/or
9
9
 * modify it under the terms of the GNU General Public License as
35
35
#include <sys/types.h>          /* size_t, ssize_t, pid_t, DIR, struct
36
36
                                   dirent */
37
37
#include <stddef.h>             /* NULL */
38
 
#include <string.h>             /* strlen(), memcmp() */
39
 
#include <stdio.h>              /* asprintf()*/
 
38
#include <string.h>             /* strlen(), memcmp(), strerror() */
 
39
#include <stdio.h>              /* asprintf(), vasprintf(), vprintf(), fprintf() */
40
40
#include <unistd.h>             /* close(), write(), readlink(),
41
41
                                   read(), STDOUT_FILENO, sleep(),
42
42
                                   fork(), setuid(), geteuid(),
49
49
#include <inttypes.h>           /* intmax_t, strtoimax() */
50
50
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
51
51
#include <sysexits.h>           /* EX_OSERR, EX_UNAVAILABLE */
 
52
#include <argz.h>               /* argz_count(), argz_extract() */
 
53
#include <stdarg.h>             /* va_list, va_start(), ... */
52
54
 
53
55
sig_atomic_t interrupted_by_signal = 0;
54
56
int signal_received;
55
57
const char usplash_name[] = "/sbin/usplash";
56
58
 
 
59
/* Function to use when printing errors */
 
60
void error_plus(int status, int errnum, const char *formatstring, ...){
 
61
  va_list ap;
 
62
  char *text;
 
63
  int ret;
 
64
  
 
65
  va_start(ap, formatstring);
 
66
  ret = vasprintf(&text, formatstring, ap);
 
67
  if (ret == -1){
 
68
    fprintf(stderr, "Mandos plugin %s: ", program_invocation_short_name);
 
69
    vfprintf(stderr, formatstring, ap);
 
70
    fprintf(stderr, ": ");
 
71
    fprintf(stderr, "%s\n", strerror(errnum));
 
72
    error(status, errno, "vasprintf while printing error");
 
73
    return;
 
74
  }
 
75
  fprintf(stderr, "Mandos plugin ");
 
76
  error(status, errnum, "%s", text);
 
77
  free(text);
 
78
}
 
79
 
57
80
static void termination_handler(int signum){
58
81
  if(interrupted_by_signal){
59
82
    return;
154
177
  size_t cmdline_len = 0;
155
178
  DIR *proc_dir = opendir("/proc");
156
179
  if(proc_dir == NULL){
157
 
    error(0, errno, "opendir");
 
180
    error_plus(0, errno, "opendir");
158
181
    return -1;
159
182
  }
160
183
  errno = 0;
182
205
      char *exe_link;
183
206
      ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
184
207
      if(ret == -1){
185
 
        error(0, errno, "asprintf");
 
208
        error_plus(0, errno, "asprintf");
186
209
        goto fail_find_usplash;
187
210
      }
188
211
      
194
217
          free(exe_link);
195
218
          continue;
196
219
        }
197
 
        error(0, errno, "lstat");
 
220
        error_plus(0, errno, "lstat");
198
221
        free(exe_link);
199
222
        goto fail_find_usplash;
200
223
      }
225
248
        ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
226
249
                       proc_ent->d_name);
227
250
        if(ret == -1){
228
 
          error(0, errno, "asprintf");
 
251
          error_plus(0, errno, "asprintf");
229
252
          goto fail_find_usplash;
230
253
        }
231
254
        cl_fd = open(cmdline_filename, O_RDONLY);
232
255
        free(cmdline_filename);
233
256
        if(cl_fd == -1){
234
 
          error(0, errno, "open");
 
257
          error_plus(0, errno, "open");
235
258
          goto fail_find_usplash;
236
259
        }
237
260
      }
243
266
        if(cmdline_len + blocksize > cmdline_allocated){
244
267
          tmp = realloc(cmdline, cmdline_allocated + blocksize);
245
268
          if(tmp == NULL){
246
 
            error(0, errno, "realloc");
 
269
            error_plus(0, errno, "realloc");
247
270
            close(cl_fd);
248
271
            goto fail_find_usplash;
249
272
          }
254
277
        sret = read(cl_fd, cmdline + cmdline_len,
255
278
                    cmdline_allocated - cmdline_len);
256
279
        if(sret == -1){
257
 
          error(0, errno, "read");
 
280
          error_plus(0, errno, "read");
258
281
          close(cl_fd);
259
282
          goto fail_find_usplash;
260
283
        }
262
285
      } while(sret != 0);
263
286
      ret = close(cl_fd);
264
287
      if(ret == -1){
265
 
        error(0, errno, "close");
 
288
        error_plus(0, errno, "close");
266
289
        goto fail_find_usplash;
267
290
      }
268
291
    }
269
292
    /* Close directory */
270
293
    ret = closedir(proc_dir);
271
294
    if(ret == -1){
272
 
      error(0, errno, "closedir");
 
295
      error_plus(0, errno, "closedir");
273
296
      goto fail_find_usplash;
274
297
    }
275
298
    /* Success */
324
347
    sigemptyset(&new_action.sa_mask);
325
348
    ret = sigaddset(&new_action.sa_mask, SIGINT);
326
349
    if(ret == -1){
327
 
      error(0, errno, "sigaddset");
 
350
      error_plus(0, errno, "sigaddset");
328
351
      status = EX_OSERR;
329
352
      goto failure;
330
353
    }
331
354
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
332
355
    if(ret == -1){
333
 
      error(0, errno, "sigaddset");
 
356
      error_plus(0, errno, "sigaddset");
334
357
      status = EX_OSERR;
335
358
      goto failure;
336
359
    }
337
360
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
338
361
    if(ret == -1){
339
 
      error(0, errno, "sigaddset");
 
362
      error_plus(0, errno, "sigaddset");
340
363
      status = EX_OSERR;
341
364
      goto failure;
342
365
    }
343
366
    ret = sigaction(SIGINT, NULL, &old_action);
344
367
    if(ret == -1){
345
368
      if(errno != EINTR){
346
 
        error(0, errno, "sigaction");
 
369
        error_plus(0, errno, "sigaction");
347
370
        status = EX_OSERR;
348
371
      }
349
372
      goto failure;
352
375
      ret = sigaction(SIGINT, &new_action, NULL);
353
376
      if(ret == -1){
354
377
        if(errno != EINTR){
355
 
          error(0, errno, "sigaction");
 
378
          error_plus(0, errno, "sigaction");
356
379
          status = EX_OSERR;
357
380
        }
358
381
        goto failure;
361
384
    ret = sigaction(SIGHUP, NULL, &old_action);
362
385
    if(ret == -1){
363
386
      if(errno != EINTR){
364
 
        error(0, errno, "sigaction");
 
387
        error_plus(0, errno, "sigaction");
365
388
        status = EX_OSERR;
366
389
      }
367
390
      goto failure;
370
393
      ret = sigaction(SIGHUP, &new_action, NULL);
371
394
      if(ret == -1){
372
395
        if(errno != EINTR){
373
 
          error(0, errno, "sigaction");
 
396
          error_plus(0, errno, "sigaction");
374
397
          status = EX_OSERR;
375
398
        }
376
399
        goto failure;
379
402
    ret = sigaction(SIGTERM, NULL, &old_action);
380
403
    if(ret == -1){
381
404
      if(errno != EINTR){
382
 
        error(0, errno, "sigaction");
 
405
        error_plus(0, errno, "sigaction");
383
406
        status = EX_OSERR;
384
407
      }
385
408
      goto failure;
388
411
      ret = sigaction(SIGTERM, &new_action, NULL);
389
412
      if(ret == -1){
390
413
        if(errno != EINTR){
391
 
          error(0, errno, "sigaction");
 
414
          error_plus(0, errno, "sigaction");
392
415
          status = EX_OSERR;
393
416
        }
394
417
        goto failure;
400
423
  /* Write command to FIFO */
401
424
  if(not usplash_write(&fifo_fd, "TIMEOUT", "0")){
402
425
    if(errno != EINTR){
403
 
      error(0, errno, "usplash_write");
 
426
      error_plus(0, errno, "usplash_write");
404
427
      status = EX_OSERR;
405
428
    }
406
429
    goto failure;
412
435
  
413
436
  if(not usplash_write(&fifo_fd, "INPUTQUIET", prompt)){
414
437
    if(errno != EINTR){
415
 
      error(0, errno, "usplash_write");
 
438
      error_plus(0, errno, "usplash_write");
416
439
      status = EX_OSERR;
417
440
    }
418
441
    goto failure;
430
453
  outfifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
431
454
  if(outfifo_fd == -1){
432
455
    if(errno != EINTR){
433
 
      error(0, errno, "open");
 
456
      error_plus(0, errno, "open");
434
457
      status = EX_OSERR;
435
458
    }
436
459
    goto failure;
449
472
      char *tmp = realloc(buf, buf_allocated + blocksize);
450
473
      if(tmp == NULL){
451
474
        if(errno != EINTR){
452
 
          error(0, errno, "realloc");
 
475
          error_plus(0, errno, "realloc");
453
476
          status = EX_OSERR;
454
477
        }
455
478
        goto failure;
461
484
                buf_allocated - buf_len);
462
485
    if(sret == -1){
463
486
      if(errno != EINTR){
464
 
        error(0, errno, "read");
 
487
        error_plus(0, errno, "read");
465
488
        status = EX_OSERR;
466
489
      }
467
490
      TEMP_FAILURE_RETRY(close(outfifo_fd));
476
499
  ret = close(outfifo_fd);
477
500
  if(ret == -1){
478
501
    if(errno != EINTR){
479
 
      error(0, errno, "close");
 
502
      error_plus(0, errno, "close");
480
503
      status = EX_OSERR;
481
504
    }
482
505
    goto failure;
489
512
  
490
513
  if(not usplash_write(&fifo_fd, "TIMEOUT", "15")){
491
514
    if(errno != EINTR){
492
 
      error(0, errno, "usplash_write");
 
515
      error_plus(0, errno, "usplash_write");
493
516
      status = EX_OSERR;
494
517
    }
495
518
    goto failure;
502
525
  ret = close(fifo_fd);
503
526
  if(ret == -1){
504
527
    if(errno != EINTR){
505
 
      error(0, errno, "close");
 
528
      error_plus(0, errno, "close");
506
529
      status = EX_OSERR;
507
530
    }
508
531
    goto failure;
516
539
      sret = write(STDOUT_FILENO, buf + written, buf_len - written);
517
540
      if(sret == -1){
518
541
        if(errno != EINTR){
519
 
          error(0, errno, "write");
 
542
          error_plus(0, errno, "write");
520
543
          status = EX_OSERR;
521
544
        }
522
545
        goto failure;
553
576
  if(fifo_fd != -1){
554
577
    ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
555
578
    if(ret == -1 and errno != EINTR){
556
 
      error(0, errno, "close");
 
579
      error_plus(0, errno, "close");
557
580
    }
558
581
    fifo_fd = -1;
559
582
  }
562
585
  if(outfifo_fd != -1){
563
586
    ret = (int)TEMP_FAILURE_RETRY(close(outfifo_fd));
564
587
    if(ret == -1){
565
 
      error(0, errno, "close");
566
 
    }
567
 
  }
568
 
  
569
 
  /* Create argc and argv for new usplash*/
570
 
  int cmdline_argc = 0;
571
 
  char **cmdline_argv = malloc(sizeof(char *));
572
 
  {
573
 
    size_t position = 0;
574
 
    while(position < cmdline_len){
575
 
      char **tmp = realloc(cmdline_argv,
576
 
                           (sizeof(char *)
577
 
                            * (size_t)(cmdline_argc + 2)));
578
 
      if(tmp == NULL){
579
 
        error(0, errno, "realloc");
580
 
        free(cmdline_argv);
581
 
        return status;
582
 
      }
583
 
      cmdline_argv = tmp;
584
 
      cmdline_argv[cmdline_argc] = cmdline + position;
585
 
      cmdline_argc++;
586
 
      position += strlen(cmdline + position) + 1;
587
 
    }
588
 
    cmdline_argv[cmdline_argc] = NULL;
589
 
  }
 
588
      error_plus(0, errno, "close");
 
589
    }
 
590
  }
 
591
  
 
592
  /* Create argv for new usplash*/
 
593
  char **cmdline_argv = malloc((argz_count(cmdline, cmdline_len) + 1)
 
594
                               * sizeof(char *)); /* Count args */
 
595
  if(cmdline_argv == NULL){
 
596
    error_plus(0, errno, "malloc");
 
597
    return status;
 
598
  }
 
599
  argz_extract(cmdline, cmdline_len, cmdline_argv); /* Create argv */
 
600
  
590
601
  /* Kill old usplash */
591
602
  kill(usplash_pid, SIGTERM);
592
603
  sleep(2);
603
614
       the real user ID (_mandos) */
604
615
    ret = setuid(geteuid());
605
616
    if(ret == -1){
606
 
      error(0, errno, "setuid");
 
617
      error_plus(0, errno, "setuid");
607
618
    }
608
619
    
609
620
    setsid();
610
621
    ret = chdir("/");
611
622
    if(ret == -1){
612
 
      error(0, errno, "chdir");
 
623
      error_plus(0, errno, "chdir");
613
624
      _exit(EX_OSERR);
614
625
    }
615
626
/*     if(fork() != 0){ */
617
628
/*     } */
618
629
    ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
619
630
    if(ret == -1){
620
 
      error(0, errno, "dup2");
 
631
      error_plus(0, errno, "dup2");
621
632
      _exit(EX_OSERR);
622
633
    }
623
634
    
624
635
    execv(usplash_name, cmdline_argv);
625
636
    if(not interrupted_by_signal){
626
 
      error(0, errno, "execv");
 
637
      error_plus(0, errno, "execv");
627
638
    }
628
639
    free(cmdline);
629
640
    free(cmdline_argv);
634
645
  sleep(2);
635
646
  if(not usplash_write(&fifo_fd, "PULSATE", NULL)){
636
647
    if(errno != EINTR){
637
 
      error(0, errno, "usplash_write");
 
648
      error_plus(0, errno, "usplash_write");
638
649
    }
639
650
  }
640
651
  
642
653
  if(fifo_fd != -1){
643
654
    ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
644
655
    if(ret == -1 and errno != EINTR){
645
 
      error(0, errno, "close");
 
656
      error_plus(0, errno, "close");
646
657
    }
647
658
    fifo_fd = -1;
648
659
  }
653
664
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
654
665
                                            &signal_action, NULL));
655
666
    if(ret == -1){
656
 
      error(0, errno, "sigaction");
 
667
      error_plus(0, errno, "sigaction");
657
668
    }
658
669
    do {
659
670
      ret = raise(signal_received);
660
671
    } while(ret != 0 and errno == EINTR);
661
672
    if(ret != 0){
662
 
      error(0, errno, "raise");
 
673
      error_plus(0, errno, "raise");
663
674
      abort();
664
675
    }
665
676
    TEMP_FAILURE_RETRY(pause());