3
3
 * Usplash - Read a password from usplash and output it
 
5
 
 * Copyright © 2008-2012 Teddy Hogeborn
 
6
 
 * Copyright © 2008-2012 Björn Påhlsson
 
 
5
 * Copyright © 2008,2009 Teddy Hogeborn
 
 
6
 * Copyright © 2008,2009 Björn Påhlsson
 
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
 
 
19
19
 * along with this program.  If not, see
 
20
20
 * <http://www.gnu.org/licenses/>.
 
22
 
 * Contact the authors at <mandos@recompile.se>.
 
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
25
25
#define _GNU_SOURCE             /* asprintf(), TEMP_FAILURE_RETRY() */
 
 
35
35
#include <sys/types.h>          /* size_t, ssize_t, pid_t, DIR, struct
 
37
37
#include <stddef.h>             /* NULL */
 
38
 
#include <string.h>             /* strlen(), memcmp(), strerror() */
 
39
 
#include <stdio.h>              /* asprintf(), vasprintf(), vprintf(),
 
 
38
#include <string.h>             /* strlen(), memcmp() */
 
 
39
#include <stdio.h>              /* asprintf()*/
 
41
40
#include <unistd.h>             /* close(), write(), readlink(),
 
42
41
                                   read(), STDOUT_FILENO, sleep(),
 
43
42
                                   fork(), setuid(), geteuid(),
 
 
50
49
#include <inttypes.h>           /* intmax_t, strtoimax() */
 
51
50
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
 
52
51
#include <sysexits.h>           /* EX_OSERR, EX_UNAVAILABLE */
 
53
 
#include <argz.h>               /* argz_count(), argz_extract() */
 
54
 
#include <stdarg.h>             /* va_list, va_start(), ... */
 
56
53
sig_atomic_t interrupted_by_signal = 0;
 
57
54
int signal_received;
 
58
55
const char usplash_name[] = "/sbin/usplash";
 
60
 
/* Function to use when printing errors */
 
61
 
__attribute__((format (gnu_printf, 3, 4)))
 
62
 
void error_plus(int status, int errnum, const char *formatstring,
 
68
 
  va_start(ap, formatstring);
 
69
 
  ret = vasprintf(&text, formatstring, ap);
 
71
 
    fprintf(stderr, "Mandos plugin %s: ",
 
72
 
            program_invocation_short_name);
 
73
 
    vfprintf(stderr, formatstring, ap);
 
74
 
    fprintf(stderr, ": ");
 
75
 
    fprintf(stderr, "%s\n", strerror(errnum));
 
76
 
    error(status, errno, "vasprintf while printing error");
 
79
 
  fprintf(stderr, "Mandos plugin ");
 
80
 
  error(status, errnum, "%s", text);
 
84
57
static void termination_handler(int signum){
 
85
58
  if(interrupted_by_signal){
 
 
181
154
  size_t cmdline_len = 0;
 
182
155
  DIR *proc_dir = opendir("/proc");
 
183
156
  if(proc_dir == NULL){
 
184
 
    error_plus(0, errno, "opendir");
 
 
157
    error(0, errno, "opendir");
 
 
210
183
      ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
 
212
 
        error_plus(0, errno, "asprintf");
 
 
185
        error(0, errno, "asprintf");
 
213
186
        goto fail_find_usplash;
 
 
252
225
        ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
 
253
226
                       proc_ent->d_name);
 
255
 
          error_plus(0, errno, "asprintf");
 
 
228
          error(0, errno, "asprintf");
 
256
229
          goto fail_find_usplash;
 
258
231
        cl_fd = open(cmdline_filename, O_RDONLY);
 
259
232
        free(cmdline_filename);
 
261
 
          error_plus(0, errno, "open");
 
 
234
          error(0, errno, "open");
 
262
235
          goto fail_find_usplash;
 
 
270
243
        if(cmdline_len + blocksize > cmdline_allocated){
 
271
244
          tmp = realloc(cmdline, cmdline_allocated + blocksize);
 
273
 
            error_plus(0, errno, "realloc");
 
 
246
            error(0, errno, "realloc");
 
275
248
            goto fail_find_usplash;
 
 
281
254
        sret = read(cl_fd, cmdline + cmdline_len,
 
282
255
                    cmdline_allocated - cmdline_len);
 
284
 
          error_plus(0, errno, "read");
 
 
257
          error(0, errno, "read");
 
286
259
          goto fail_find_usplash;
 
 
289
262
      } while(sret != 0);
 
290
263
      ret = close(cl_fd);
 
292
 
        error_plus(0, errno, "close");
 
 
265
        error(0, errno, "close");
 
293
266
        goto fail_find_usplash;
 
296
269
    /* Close directory */
 
297
270
    ret = closedir(proc_dir);
 
299
 
      error_plus(0, errno, "closedir");
 
 
272
      error(0, errno, "closedir");
 
300
273
      goto fail_find_usplash;
 
 
351
324
    sigemptyset(&new_action.sa_mask);
 
352
325
    ret = sigaddset(&new_action.sa_mask, SIGINT);
 
354
 
      error_plus(0, errno, "sigaddset");
 
 
327
      error(0, errno, "sigaddset");
 
355
328
      status = EX_OSERR;
 
358
331
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
 
360
 
      error_plus(0, errno, "sigaddset");
 
 
333
      error(0, errno, "sigaddset");
 
361
334
      status = EX_OSERR;
 
364
337
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
 
366
 
      error_plus(0, errno, "sigaddset");
 
 
339
      error(0, errno, "sigaddset");
 
367
340
      status = EX_OSERR;
 
370
343
    ret = sigaction(SIGINT, NULL, &old_action);
 
372
345
      if(errno != EINTR){
 
373
 
        error_plus(0, errno, "sigaction");
 
 
346
        error(0, errno, "sigaction");
 
374
347
        status = EX_OSERR;
 
 
379
352
      ret = sigaction(SIGINT, &new_action, NULL);
 
381
354
        if(errno != EINTR){
 
382
 
          error_plus(0, errno, "sigaction");
 
 
355
          error(0, errno, "sigaction");
 
383
356
          status = EX_OSERR;
 
 
388
361
    ret = sigaction(SIGHUP, NULL, &old_action);
 
390
363
      if(errno != EINTR){
 
391
 
        error_plus(0, errno, "sigaction");
 
 
364
        error(0, errno, "sigaction");
 
392
365
        status = EX_OSERR;
 
 
397
370
      ret = sigaction(SIGHUP, &new_action, NULL);
 
399
372
        if(errno != EINTR){
 
400
 
          error_plus(0, errno, "sigaction");
 
 
373
          error(0, errno, "sigaction");
 
401
374
          status = EX_OSERR;
 
 
406
379
    ret = sigaction(SIGTERM, NULL, &old_action);
 
408
381
      if(errno != EINTR){
 
409
 
        error_plus(0, errno, "sigaction");
 
 
382
        error(0, errno, "sigaction");
 
410
383
        status = EX_OSERR;
 
 
415
388
      ret = sigaction(SIGTERM, &new_action, NULL);
 
417
390
        if(errno != EINTR){
 
418
 
          error_plus(0, errno, "sigaction");
 
 
391
          error(0, errno, "sigaction");
 
419
392
          status = EX_OSERR;
 
 
427
400
  /* Write command to FIFO */
 
428
401
  if(not usplash_write(&fifo_fd, "TIMEOUT", "0")){
 
429
402
    if(errno != EINTR){
 
430
 
      error_plus(0, errno, "usplash_write");
 
 
403
      error(0, errno, "usplash_write");
 
431
404
      status = EX_OSERR;
 
 
440
413
  if(not usplash_write(&fifo_fd, "INPUTQUIET", prompt)){
 
441
414
    if(errno != EINTR){
 
442
 
      error_plus(0, errno, "usplash_write");
 
 
415
      error(0, errno, "usplash_write");
 
443
416
      status = EX_OSERR;
 
 
476
449
      char *tmp = realloc(buf, buf_allocated + blocksize);
 
478
451
        if(errno != EINTR){
 
479
 
          error_plus(0, errno, "realloc");
 
 
452
          error(0, errno, "realloc");
 
480
453
          status = EX_OSERR;
 
 
517
490
  if(not usplash_write(&fifo_fd, "TIMEOUT", "15")){
 
518
491
    if(errno != EINTR){
 
519
 
      error_plus(0, errno, "usplash_write");
 
 
492
      error(0, errno, "usplash_write");
 
520
493
      status = EX_OSERR;
 
 
543
516
      sret = write(STDOUT_FILENO, buf + written, buf_len - written);
 
545
518
        if(errno != EINTR){
 
546
 
          error_plus(0, errno, "write");
 
 
519
          error(0, errno, "write");
 
547
520
          status = EX_OSERR;
 
 
580
553
  if(fifo_fd != -1){
 
581
554
    ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
 
582
555
    if(ret == -1 and errno != EINTR){
 
583
 
      error_plus(0, errno, "close");
 
 
556
      error(0, errno, "close");
 
 
589
562
  if(outfifo_fd != -1){
 
590
563
    ret = (int)TEMP_FAILURE_RETRY(close(outfifo_fd));
 
592
 
      error_plus(0, errno, "close");
 
596
 
  /* Create argv for new usplash*/
 
597
 
  char **cmdline_argv = malloc((argz_count(cmdline, cmdline_len) + 1)
 
598
 
                               * sizeof(char *)); /* Count args */
 
599
 
  if(cmdline_argv == NULL){
 
600
 
    error_plus(0, errno, "malloc");
 
603
 
  argz_extract(cmdline, cmdline_len, cmdline_argv); /* Create argv */
 
 
565
      error(0, errno, "close");
 
 
569
  /* Create argc and argv for new usplash*/
 
 
570
  int cmdline_argc = 0;
 
 
571
  char **cmdline_argv = malloc(sizeof(char *));
 
 
574
    while(position < cmdline_len){
 
 
575
      char **tmp = realloc(cmdline_argv,
 
 
577
                            * (size_t)(cmdline_argc + 2)));
 
 
579
        error(0, errno, "realloc");
 
 
584
      cmdline_argv[cmdline_argc] = cmdline + position;
 
 
586
      position += strlen(cmdline + position) + 1;
 
 
588
    cmdline_argv[cmdline_argc] = NULL;
 
605
590
  /* Kill old usplash */
 
606
591
  kill(usplash_pid, SIGTERM);
 
 
618
603
       the real user ID (_mandos) */
 
619
604
    ret = setuid(geteuid());
 
621
 
      error_plus(0, errno, "setuid");
 
 
606
      error(0, errno, "setuid");
 
625
610
    ret = chdir("/");
 
627
 
      error_plus(0, errno, "chdir");
 
 
612
      error(0, errno, "chdir");
 
630
615
/*     if(fork() != 0){ */
 
 
633
618
    ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
 
635
 
      error_plus(0, errno, "dup2");
 
 
620
      error(0, errno, "dup2");
 
639
624
    execv(usplash_name, cmdline_argv);
 
640
625
    if(not interrupted_by_signal){
 
641
 
      error_plus(0, errno, "execv");
 
 
626
      error(0, errno, "execv");
 
644
629
    free(cmdline_argv);
 
 
650
635
  if(not usplash_write(&fifo_fd, "PULSATE", NULL)){
 
651
636
    if(errno != EINTR){
 
652
 
      error_plus(0, errno, "usplash_write");
 
 
637
      error(0, errno, "usplash_write");
 
 
657
642
  if(fifo_fd != -1){
 
658
643
    ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
 
659
644
    if(ret == -1 and errno != EINTR){
 
660
 
      error_plus(0, errno, "close");
 
 
645
      error(0, errno, "close");
 
 
668
653
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
 
669
654
                                            &signal_action, NULL));
 
671
 
      error_plus(0, errno, "sigaction");
 
 
656
      error(0, errno, "sigaction");
 
674
659
      ret = raise(signal_received);
 
675
660
    } while(ret != 0 and errno == EINTR);
 
677
 
      error_plus(0, errno, "raise");
 
 
662
      error(0, errno, "raise");
 
680
665
    TEMP_FAILURE_RETRY(pause());