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

  • Committer: Teddy Hogeborn
  • Date: 2009-10-02 00:34:19 UTC
  • Revision ID: teddy@fukt.bsnet.se-20091002003419-28cmxz7ls9h60l1m
* mandos (ClientDBus.ReceivedSecret): Renamed to "GotSecret".  All
                                      emitters changed.
  (DBusObjectWithProperties.Introspect): Catch any XML parsing errors.

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-2018 Teddy Hogeborn
6
 
 * Copyright © 2008-2018 Björn Påhlsson
7
 
 * 
8
 
 * This file is part of Mandos.
9
 
 * 
10
 
 * Mandos is free software: you can redistribute it and/or modify it
11
 
 * under the terms of the GNU General Public License as published by
12
 
 * the Free Software Foundation, either version 3 of the License, or
13
 
 * (at your option) any later version.
14
 
 * 
15
 
 * Mandos is distributed in the hope that it will be useful, but
 
5
 * Copyright © 2008,2009 Teddy Hogeborn
 
6
 * Copyright © 2008,2009 Björn Påhlsson
 
7
 * 
 
8
 * This program is free software: you can redistribute it and/or
 
9
 * modify it under the terms of the GNU General Public License as
 
10
 * published by the Free Software Foundation, either version 3 of the
 
11
 * License, or (at your option) any later version.
 
12
 * 
 
13
 * This program is distributed in the hope that it will be useful, but
16
14
 * WITHOUT ANY WARRANTY; without even the implied warranty of
17
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18
16
 * General Public License for more details.
19
17
 * 
20
18
 * You should have received a copy of the GNU General Public License
21
 
 * along with Mandos.  If not, see <http://www.gnu.org/licenses/>.
 
19
 * along with this program.  If not, see
 
20
 * <http://www.gnu.org/licenses/>.
22
21
 * 
23
 
 * Contact the authors at <mandos@recompile.se>.
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
24
23
 */
25
24
 
26
25
#define _GNU_SOURCE             /* asprintf(), TEMP_FAILURE_RETRY() */
32
31
#include <fcntl.h>              /* open(), O_WRONLY, O_RDONLY */
33
32
#include <iso646.h>             /* and, or, not*/
34
33
#include <errno.h>              /* errno, EINTR */
35
 
#include <error.h>
36
34
#include <sys/types.h>          /* size_t, ssize_t, pid_t, DIR, struct
37
35
                                   dirent */
38
36
#include <stddef.h>             /* NULL */
39
 
#include <string.h>             /* strlen(), memcmp(), strerror() */
40
 
#include <stdio.h>              /* asprintf(), vasprintf(), vprintf(),
41
 
                                   fprintf() */
 
37
#include <string.h>             /* strlen(), memcmp() */
 
38
#include <stdio.h>              /* asprintf(), perror() */
42
39
#include <unistd.h>             /* close(), write(), readlink(),
43
40
                                   read(), STDOUT_FILENO, sleep(),
44
41
                                   fork(), setuid(), geteuid(),
45
42
                                   setsid(), chdir(), dup2(),
46
43
                                   STDERR_FILENO, execv() */
47
44
#include <stdlib.h>             /* free(), EXIT_FAILURE, realloc(),
48
 
                                   EXIT_SUCCESS, malloc(), _exit(),
49
 
                                   getenv() */
 
45
                                   EXIT_SUCCESS, malloc(), _exit() */
 
46
#include <stdlib.h>             /* getenv() */
50
47
#include <dirent.h>             /* opendir(), readdir(), closedir() */
51
48
#include <inttypes.h>           /* intmax_t, strtoimax() */
52
49
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
53
 
#include <sysexits.h>           /* EX_OSERR, EX_UNAVAILABLE */
54
 
#include <argz.h>               /* argz_count(), argz_extract() */
55
 
#include <stdarg.h>             /* va_list, va_start(), ... */
56
50
 
57
51
sig_atomic_t interrupted_by_signal = 0;
58
52
int signal_received;
59
53
const char usplash_name[] = "/sbin/usplash";
60
54
 
61
 
/* Function to use when printing errors */
62
 
__attribute__((format (gnu_printf, 3, 4)))
63
 
void error_plus(int status, int errnum, const char *formatstring,
64
 
                ...){
65
 
  va_list ap;
66
 
  char *text;
67
 
  int ret;
68
 
  
69
 
  va_start(ap, formatstring);
70
 
  ret = vasprintf(&text, formatstring, ap);
71
 
  if(ret == -1){
72
 
    fprintf(stderr, "Mandos plugin %s: ",
73
 
            program_invocation_short_name);
74
 
    vfprintf(stderr, formatstring, ap);
75
 
    fprintf(stderr, ": ");
76
 
    fprintf(stderr, "%s\n", strerror(errnum));
77
 
    error(status, errno, "vasprintf while printing error");
78
 
    return;
79
 
  }
80
 
  fprintf(stderr, "Mandos plugin ");
81
 
  error(status, errnum, "%s", text);
82
 
  free(text);
83
 
}
84
 
 
85
55
static void termination_handler(int signum){
86
56
  if(interrupted_by_signal){
87
57
    return;
118
88
      ret = asprintf(&cmd_line_alloc, "%s %s", cmd, arg);
119
89
      if(ret == -1){
120
90
        int e = errno;
121
 
        close(*fifo_fd_r);
 
91
        TEMP_FAILURE_RETRY(close(*fifo_fd_r));
122
92
        errno = e;
123
93
        return false;
124
94
      }
134
104
                 cmd_line_len - written);
135
105
    if(sret == -1){
136
106
      int e = errno;
137
 
      close(*fifo_fd_r);
 
107
      TEMP_FAILURE_RETRY(close(*fifo_fd_r));
138
108
      free(cmd_line_alloc);
139
109
      errno = e;
140
110
      return false;
182
152
  size_t cmdline_len = 0;
183
153
  DIR *proc_dir = opendir("/proc");
184
154
  if(proc_dir == NULL){
185
 
    error_plus(0, errno, "opendir");
 
155
    perror("opendir");
186
156
    return -1;
187
157
  }
188
158
  errno = 0;
210
180
      char *exe_link;
211
181
      ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
212
182
      if(ret == -1){
213
 
        error_plus(0, errno, "asprintf");
 
183
        perror("asprintf");
214
184
        goto fail_find_usplash;
215
185
      }
216
186
      
222
192
          free(exe_link);
223
193
          continue;
224
194
        }
225
 
        error_plus(0, errno, "lstat");
 
195
        perror("lstat");
226
196
        free(exe_link);
227
197
        goto fail_find_usplash;
228
198
      }
253
223
        ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
254
224
                       proc_ent->d_name);
255
225
        if(ret == -1){
256
 
          error_plus(0, errno, "asprintf");
 
226
          perror("asprintf");
257
227
          goto fail_find_usplash;
258
228
        }
259
229
        cl_fd = open(cmdline_filename, O_RDONLY);
260
230
        free(cmdline_filename);
261
231
        if(cl_fd == -1){
262
 
          error_plus(0, errno, "open");
 
232
          perror("open");
263
233
          goto fail_find_usplash;
264
234
        }
265
235
      }
271
241
        if(cmdline_len + blocksize > cmdline_allocated){
272
242
          tmp = realloc(cmdline, cmdline_allocated + blocksize);
273
243
          if(tmp == NULL){
274
 
            error_plus(0, errno, "realloc");
 
244
            perror("realloc");
275
245
            close(cl_fd);
276
246
            goto fail_find_usplash;
277
247
          }
282
252
        sret = read(cl_fd, cmdline + cmdline_len,
283
253
                    cmdline_allocated - cmdline_len);
284
254
        if(sret == -1){
285
 
          error_plus(0, errno, "read");
 
255
          perror("read");
286
256
          close(cl_fd);
287
257
          goto fail_find_usplash;
288
258
        }
290
260
      } while(sret != 0);
291
261
      ret = close(cl_fd);
292
262
      if(ret == -1){
293
 
        error_plus(0, errno, "close");
 
263
        perror("close");
294
264
        goto fail_find_usplash;
295
265
      }
296
266
    }
297
267
    /* Close directory */
298
268
    ret = closedir(proc_dir);
299
269
    if(ret == -1){
300
 
      error_plus(0, errno, "closedir");
 
270
      perror("closedir");
301
271
      goto fail_find_usplash;
302
272
    }
303
273
    /* Success */
327
297
  size_t buf_len = 0;
328
298
  pid_t usplash_pid = -1;
329
299
  bool usplash_accessed = false;
330
 
  int status = EXIT_FAILURE;    /* Default failure exit status */
331
300
  
332
301
  char *prompt = makeprompt();
333
302
  if(prompt == NULL){
334
 
    status = EX_OSERR;
335
303
    goto failure;
336
304
  }
337
305
  
340
308
  size_t cmdline_len = 0;
341
309
  usplash_pid = find_usplash(&cmdline, &cmdline_len);
342
310
  if(usplash_pid == 0){
343
 
    status = EX_UNAVAILABLE;
344
311
    goto failure;
345
312
  }
346
313
  
352
319
    sigemptyset(&new_action.sa_mask);
353
320
    ret = sigaddset(&new_action.sa_mask, SIGINT);
354
321
    if(ret == -1){
355
 
      error_plus(0, errno, "sigaddset");
356
 
      status = EX_OSERR;
 
322
      perror("sigaddset");
357
323
      goto failure;
358
324
    }
359
325
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
360
326
    if(ret == -1){
361
 
      error_plus(0, errno, "sigaddset");
362
 
      status = EX_OSERR;
 
327
      perror("sigaddset");
363
328
      goto failure;
364
329
    }
365
330
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
366
331
    if(ret == -1){
367
 
      error_plus(0, errno, "sigaddset");
368
 
      status = EX_OSERR;
 
332
      perror("sigaddset");
369
333
      goto failure;
370
334
    }
371
335
    ret = sigaction(SIGINT, NULL, &old_action);
372
336
    if(ret == -1){
373
337
      if(errno != EINTR){
374
 
        error_plus(0, errno, "sigaction");
375
 
        status = EX_OSERR;
 
338
        perror("sigaction");
376
339
      }
377
340
      goto failure;
378
341
    }
380
343
      ret = sigaction(SIGINT, &new_action, NULL);
381
344
      if(ret == -1){
382
345
        if(errno != EINTR){
383
 
          error_plus(0, errno, "sigaction");
384
 
          status = EX_OSERR;
 
346
          perror("sigaction");
385
347
        }
386
348
        goto failure;
387
349
      }
389
351
    ret = sigaction(SIGHUP, NULL, &old_action);
390
352
    if(ret == -1){
391
353
      if(errno != EINTR){
392
 
        error_plus(0, errno, "sigaction");
393
 
        status = EX_OSERR;
 
354
        perror("sigaction");
394
355
      }
395
356
      goto failure;
396
357
    }
398
359
      ret = sigaction(SIGHUP, &new_action, NULL);
399
360
      if(ret == -1){
400
361
        if(errno != EINTR){
401
 
          error_plus(0, errno, "sigaction");
402
 
          status = EX_OSERR;
 
362
          perror("sigaction");
403
363
        }
404
364
        goto failure;
405
365
      }
407
367
    ret = sigaction(SIGTERM, NULL, &old_action);
408
368
    if(ret == -1){
409
369
      if(errno != EINTR){
410
 
        error_plus(0, errno, "sigaction");
411
 
        status = EX_OSERR;
 
370
        perror("sigaction");
412
371
      }
413
372
      goto failure;
414
373
    }
416
375
      ret = sigaction(SIGTERM, &new_action, NULL);
417
376
      if(ret == -1){
418
377
        if(errno != EINTR){
419
 
          error_plus(0, errno, "sigaction");
420
 
          status = EX_OSERR;
 
378
          perror("sigaction");
421
379
        }
422
380
        goto failure;
423
381
      }
428
386
  /* Write command to FIFO */
429
387
  if(not usplash_write(&fifo_fd, "TIMEOUT", "0")){
430
388
    if(errno != EINTR){
431
 
      error_plus(0, errno, "usplash_write");
432
 
      status = EX_OSERR;
 
389
      perror("usplash_write");
433
390
    }
434
391
    goto failure;
435
392
  }
440
397
  
441
398
  if(not usplash_write(&fifo_fd, "INPUTQUIET", prompt)){
442
399
    if(errno != EINTR){
443
 
      error_plus(0, errno, "usplash_write");
444
 
      status = EX_OSERR;
 
400
      perror("usplash_write");
445
401
    }
446
402
    goto failure;
447
403
  }
458
414
  outfifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
459
415
  if(outfifo_fd == -1){
460
416
    if(errno != EINTR){
461
 
      error_plus(0, errno, "open");
462
 
      status = EX_OSERR;
 
417
      perror("open");
463
418
    }
464
419
    goto failure;
465
420
  }
477
432
      char *tmp = realloc(buf, buf_allocated + blocksize);
478
433
      if(tmp == NULL){
479
434
        if(errno != EINTR){
480
 
          error_plus(0, errno, "realloc");
481
 
          status = EX_OSERR;
 
435
          perror("realloc");
482
436
        }
483
437
        goto failure;
484
438
      }
489
443
                buf_allocated - buf_len);
490
444
    if(sret == -1){
491
445
      if(errno != EINTR){
492
 
        error_plus(0, errno, "read");
493
 
        status = EX_OSERR;
 
446
        perror("read");
494
447
      }
495
 
      close(outfifo_fd);
 
448
      TEMP_FAILURE_RETRY(close(outfifo_fd));
496
449
      goto failure;
497
450
    }
498
451
    if(interrupted_by_signal){
504
457
  ret = close(outfifo_fd);
505
458
  if(ret == -1){
506
459
    if(errno != EINTR){
507
 
      error_plus(0, errno, "close");
508
 
      status = EX_OSERR;
 
460
      perror("close");
509
461
    }
510
462
    goto failure;
511
463
  }
517
469
  
518
470
  if(not usplash_write(&fifo_fd, "TIMEOUT", "15")){
519
471
    if(errno != EINTR){
520
 
      error_plus(0, errno, "usplash_write");
521
 
      status = EX_OSERR;
 
472
      perror("usplash_write");
522
473
    }
523
474
    goto failure;
524
475
  }
530
481
  ret = close(fifo_fd);
531
482
  if(ret == -1){
532
483
    if(errno != EINTR){
533
 
      error_plus(0, errno, "close");
534
 
      status = EX_OSERR;
 
484
      perror("close");
535
485
    }
536
486
    goto failure;
537
487
  }
544
494
      sret = write(STDOUT_FILENO, buf + written, buf_len - written);
545
495
      if(sret == -1){
546
496
        if(errno != EINTR){
547
 
          error_plus(0, errno, "write");
548
 
          status = EX_OSERR;
 
497
          perror("write");
549
498
        }
550
499
        goto failure;
551
500
      }
574
523
  
575
524
  /* If usplash was never accessed, we can stop now */
576
525
  if(not usplash_accessed){
577
 
    return status;
 
526
    return EXIT_FAILURE;
578
527
  }
579
528
  
580
529
  /* Close FIFO */
581
530
  if(fifo_fd != -1){
582
 
    ret = close(fifo_fd);
 
531
    ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
583
532
    if(ret == -1 and errno != EINTR){
584
 
      error_plus(0, errno, "close");
 
533
      perror("close");
585
534
    }
586
535
    fifo_fd = -1;
587
536
  }
588
537
  
589
538
  /* Close output FIFO */
590
539
  if(outfifo_fd != -1){
591
 
    ret = close(outfifo_fd);
 
540
    ret = (int)TEMP_FAILURE_RETRY(close(outfifo_fd));
592
541
    if(ret == -1){
593
 
      error_plus(0, errno, "close");
594
 
    }
595
 
  }
596
 
  
597
 
  /* Create argv for new usplash*/
598
 
  char **cmdline_argv = malloc((argz_count(cmdline, cmdline_len) + 1)
599
 
                               * sizeof(char *)); /* Count args */
600
 
  if(cmdline_argv == NULL){
601
 
    error_plus(0, errno, "malloc");
602
 
    return status;
603
 
  }
604
 
  argz_extract(cmdline, cmdline_len, cmdline_argv); /* Create argv */
605
 
  
 
542
      perror("close");
 
543
    }
 
544
  }
 
545
  
 
546
  /* Create argc and argv for new usplash*/
 
547
  int cmdline_argc = 0;
 
548
  char **cmdline_argv = malloc(sizeof(char *));
 
549
  {
 
550
    size_t position = 0;
 
551
    while(position < cmdline_len){
 
552
      char **tmp = realloc(cmdline_argv,
 
553
                           (sizeof(char *)
 
554
                            * (size_t)(cmdline_argc + 2)));
 
555
      if(tmp == NULL){
 
556
        perror("realloc");
 
557
        free(cmdline_argv);
 
558
        return EXIT_FAILURE;
 
559
      }
 
560
      cmdline_argv = tmp;
 
561
      cmdline_argv[cmdline_argc] = cmdline + position;
 
562
      cmdline_argc++;
 
563
      position += strlen(cmdline + position) + 1;
 
564
    }
 
565
    cmdline_argv[cmdline_argc] = NULL;
 
566
  }
606
567
  /* Kill old usplash */
607
568
  kill(usplash_pid, SIGTERM);
608
569
  sleep(2);
619
580
       the real user ID (_mandos) */
620
581
    ret = setuid(geteuid());
621
582
    if(ret == -1){
622
 
      error_plus(0, errno, "setuid");
 
583
      perror("setuid");
623
584
    }
624
585
    
625
586
    setsid();
626
587
    ret = chdir("/");
627
 
    if(ret == -1){
628
 
      error_plus(0, errno, "chdir");
629
 
      _exit(EX_OSERR);
630
 
    }
631
588
/*     if(fork() != 0){ */
632
589
/*       _exit(EXIT_SUCCESS); */
633
590
/*     } */
634
591
    ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
635
592
    if(ret == -1){
636
 
      error_plus(0, errno, "dup2");
637
 
      _exit(EX_OSERR);
 
593
      perror("dup2");
 
594
      _exit(EXIT_FAILURE);
638
595
    }
639
596
    
640
597
    execv(usplash_name, cmdline_argv);
641
598
    if(not interrupted_by_signal){
642
 
      error_plus(0, errno, "execv");
 
599
      perror("execv");
643
600
    }
644
601
    free(cmdline);
645
602
    free(cmdline_argv);
646
 
    _exit(EX_OSERR);
 
603
    _exit(EXIT_FAILURE);
647
604
  }
648
605
  free(cmdline);
649
606
  free(cmdline_argv);
650
607
  sleep(2);
651
608
  if(not usplash_write(&fifo_fd, "PULSATE", NULL)){
652
609
    if(errno != EINTR){
653
 
      error_plus(0, errno, "usplash_write");
 
610
      perror("usplash_write");
654
611
    }
655
612
  }
656
613
  
657
614
  /* Close FIFO (again) */
658
615
  if(fifo_fd != -1){
659
 
    ret = close(fifo_fd);
 
616
    ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
660
617
    if(ret == -1 and errno != EINTR){
661
 
      error_plus(0, errno, "close");
 
618
      perror("close");
662
619
    }
663
620
    fifo_fd = -1;
664
621
  }
669
626
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
670
627
                                            &signal_action, NULL));
671
628
    if(ret == -1){
672
 
      error_plus(0, errno, "sigaction");
 
629
      perror("sigaction");
673
630
    }
674
631
    do {
675
632
      ret = raise(signal_received);
676
633
    } while(ret != 0 and errno == EINTR);
677
634
    if(ret != 0){
678
 
      error_plus(0, errno, "raise");
 
635
      perror("raise");
679
636
      abort();
680
637
    }
681
638
    TEMP_FAILURE_RETRY(pause());
682
639
  }
683
640
  
684
 
  return status;
 
641
  return EXIT_FAILURE;
685
642
}