3
3
* Usplash - Read a password from usplash and output it
5
* Copyright © 2008,2009 Teddy Hogeborn
6
* Copyright © 2008,2009 Björn Påhlsson
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.
13
* This program is distributed in the hope that it will be useful, but
5
* Copyright © 2008-2018 Teddy Hogeborn
6
* Copyright © 2008-2018 Björn Påhlsson
8
* This file is part of Mandos.
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.
15
* Mandos is distributed in the hope that it will be useful, but
14
16
* WITHOUT ANY WARRANTY; without even the implied warranty of
15
17
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
18
* General Public License for more details.
18
20
* You should have received a copy of the GNU General Public License
19
* along with this program. If not, see
20
* <http://www.gnu.org/licenses/>.
21
* along with Mandos. If not, see <http://www.gnu.org/licenses/>.
22
* Contact the authors at <mandos@fukt.bsnet.se>.
23
* Contact the authors at <mandos@recompile.se>.
25
26
#define _GNU_SOURCE /* asprintf(), TEMP_FAILURE_RETRY() */
31
32
#include <fcntl.h> /* open(), O_WRONLY, O_RDONLY */
32
33
#include <iso646.h> /* and, or, not*/
33
34
#include <errno.h> /* errno, EINTR */
34
36
#include <sys/types.h> /* size_t, ssize_t, pid_t, DIR, struct
36
38
#include <stddef.h> /* NULL */
37
#include <string.h> /* strlen(), memcmp() */
38
#include <stdio.h> /* asprintf(), perror() */
39
#include <string.h> /* strlen(), memcmp(), strerror() */
40
#include <stdio.h> /* asprintf(), vasprintf(), vprintf(),
39
42
#include <unistd.h> /* close(), write(), readlink(),
40
43
read(), STDOUT_FILENO, sleep(),
41
44
fork(), setuid(), geteuid(),
42
45
setsid(), chdir(), dup2(),
43
46
STDERR_FILENO, execv() */
44
47
#include <stdlib.h> /* free(), EXIT_FAILURE, realloc(),
45
EXIT_SUCCESS, malloc(), _exit() */
46
#include <stdlib.h> /* getenv() */
48
EXIT_SUCCESS, malloc(), _exit(),
47
50
#include <dirent.h> /* opendir(), readdir(), closedir() */
48
51
#include <inttypes.h> /* intmax_t, strtoimax() */
49
52
#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(), ... */
51
57
sig_atomic_t interrupted_by_signal = 0;
52
58
int signal_received;
53
59
const char usplash_name[] = "/sbin/usplash";
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,
69
va_start(ap, formatstring);
70
ret = vasprintf(&text, formatstring, ap);
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");
80
fprintf(stderr, "Mandos plugin ");
81
error(status, errnum, "%s", text);
55
85
static void termination_handler(int signum){
56
86
if(interrupted_by_signal){
319
352
sigemptyset(&new_action.sa_mask);
320
353
ret = sigaddset(&new_action.sa_mask, SIGINT);
355
error_plus(0, errno, "sigaddset");
325
359
ret = sigaddset(&new_action.sa_mask, SIGHUP);
361
error_plus(0, errno, "sigaddset");
330
365
ret = sigaddset(&new_action.sa_mask, SIGTERM);
367
error_plus(0, errno, "sigaddset");
335
371
ret = sigaction(SIGINT, NULL, &old_action);
337
373
if(errno != EINTR){
374
error_plus(0, errno, "sigaction");
524
575
/* If usplash was never accessed, we can stop now */
525
576
if(not usplash_accessed){
530
581
if(fifo_fd != -1){
531
ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
582
ret = close(fifo_fd);
532
583
if(ret == -1 and errno != EINTR){
584
error_plus(0, errno, "close");
538
589
/* Close output FIFO */
539
590
if(outfifo_fd != -1){
540
ret = (int)TEMP_FAILURE_RETRY(close(outfifo_fd));
591
ret = close(outfifo_fd);
546
/* Create argc and argv for new usplash*/
547
int cmdline_argc = 0;
548
char **cmdline_argv = malloc(sizeof(char *));
551
while(position < cmdline_len){
552
char **tmp = realloc(cmdline_argv,
554
* (size_t)(cmdline_argc + 2)));
561
cmdline_argv[cmdline_argc] = cmdline + position;
563
position += strlen(cmdline + position) + 1;
565
cmdline_argv[cmdline_argc] = NULL;
593
error_plus(0, errno, "close");
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");
604
argz_extract(cmdline, cmdline_len, cmdline_argv); /* Create argv */
567
606
/* Kill old usplash */
568
607
kill(usplash_pid, SIGTERM);
580
619
the real user ID (_mandos) */
581
620
ret = setuid(geteuid());
622
error_plus(0, errno, "setuid");
587
626
ret = chdir("/");
628
error_plus(0, errno, "chdir");
588
631
/* if(fork() != 0){ */
589
632
/* _exit(EXIT_SUCCESS); */
591
634
ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
636
error_plus(0, errno, "dup2");
597
640
execv(usplash_name, cmdline_argv);
598
641
if(not interrupted_by_signal){
642
error_plus(0, errno, "execv");
602
645
free(cmdline_argv);
606
649
free(cmdline_argv);
608
651
if(not usplash_write(&fifo_fd, "PULSATE", NULL)){
609
652
if(errno != EINTR){
610
perror("usplash_write");
653
error_plus(0, errno, "usplash_write");
614
657
/* Close FIFO (again) */
615
658
if(fifo_fd != -1){
616
ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
659
ret = close(fifo_fd);
617
660
if(ret == -1 and errno != EINTR){
661
error_plus(0, errno, "close");