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