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
5
* Copyright © 2008-2011 Teddy Hogeborn
6
* Copyright © 2008-2011 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@fukt.bsnet.se>.
22
* Contact the authors at <mandos@recompile.se>.
25
25
#define _GNU_SOURCE /* asprintf(), TEMP_FAILURE_RETRY() */
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
35
#include <sys/types.h> /* size_t, ssize_t, pid_t, DIR, struct
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(),
39
41
#include <unistd.h> /* close(), write(), readlink(),
40
42
read(), STDOUT_FILENO, sleep(),
41
43
fork(), setuid(), geteuid(),
48
50
#include <inttypes.h> /* intmax_t, strtoimax() */
49
51
#include <sys/stat.h> /* struct stat, lstat(), S_ISLNK */
50
52
#include <sysexits.h> /* EX_OSERR, EX_UNAVAILABLE */
53
#include <argz.h> /* argz_count(), argz_extract() */
54
#include <stdarg.h> /* va_list, va_start(), ... */
52
56
sig_atomic_t interrupted_by_signal = 0;
53
57
int signal_received;
54
58
const char usplash_name[] = "/sbin/usplash";
60
/* Function to use when printing errors */
61
void error_plus(int status, int errnum, const char *formatstring,
67
va_start(ap, formatstring);
68
ret = vasprintf(&text, formatstring, ap);
70
fprintf(stderr, "Mandos plugin %s: ",
71
program_invocation_short_name);
72
vfprintf(stderr, formatstring, ap);
73
fprintf(stderr, ": ");
74
fprintf(stderr, "%s\n", strerror(errnum));
75
error(status, errno, "vasprintf while printing error");
78
fprintf(stderr, "Mandos plugin ");
79
error(status, errnum, "%s", text);
56
83
static void termination_handler(int signum){
57
84
if(interrupted_by_signal){
224
251
ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
225
252
proc_ent->d_name);
254
error_plus(0, errno, "asprintf");
228
255
goto fail_find_usplash;
230
257
cl_fd = open(cmdline_filename, O_RDONLY);
231
258
free(cmdline_filename);
260
error_plus(0, errno, "open");
234
261
goto fail_find_usplash;
242
269
if(cmdline_len + blocksize > cmdline_allocated){
243
270
tmp = realloc(cmdline, cmdline_allocated + blocksize);
272
error_plus(0, errno, "realloc");
247
274
goto fail_find_usplash;
253
280
sret = read(cl_fd, cmdline + cmdline_len,
254
281
cmdline_allocated - cmdline_len);
283
error_plus(0, errno, "read");
258
285
goto fail_find_usplash;
261
288
} while(sret != 0);
262
289
ret = close(cl_fd);
291
error_plus(0, errno, "close");
265
292
goto fail_find_usplash;
268
295
/* Close directory */
269
296
ret = closedir(proc_dir);
298
error_plus(0, errno, "closedir");
272
299
goto fail_find_usplash;
323
350
sigemptyset(&new_action.sa_mask);
324
351
ret = sigaddset(&new_action.sa_mask, SIGINT);
353
error_plus(0, errno, "sigaddset");
327
354
status = EX_OSERR;
330
357
ret = sigaddset(&new_action.sa_mask, SIGHUP);
359
error_plus(0, errno, "sigaddset");
333
360
status = EX_OSERR;
336
363
ret = sigaddset(&new_action.sa_mask, SIGTERM);
365
error_plus(0, errno, "sigaddset");
339
366
status = EX_OSERR;
342
369
ret = sigaction(SIGINT, NULL, &old_action);
344
371
if(errno != EINTR){
372
error_plus(0, errno, "sigaction");
346
373
status = EX_OSERR;
399
426
/* Write command to FIFO */
400
427
if(not usplash_write(&fifo_fd, "TIMEOUT", "0")){
401
428
if(errno != EINTR){
402
perror("usplash_write");
429
error_plus(0, errno, "usplash_write");
403
430
status = EX_OSERR;
561
588
if(outfifo_fd != -1){
562
589
ret = (int)TEMP_FAILURE_RETRY(close(outfifo_fd));
568
/* Create argc and argv for new usplash*/
569
int cmdline_argc = 0;
570
char **cmdline_argv = malloc(sizeof(char *));
573
while(position < cmdline_len){
574
char **tmp = realloc(cmdline_argv,
576
* (size_t)(cmdline_argc + 2)));
583
cmdline_argv[cmdline_argc] = cmdline + position;
585
position += strlen(cmdline + position) + 1;
587
cmdline_argv[cmdline_argc] = NULL;
591
error_plus(0, errno, "close");
595
/* Create argv for new usplash*/
596
char **cmdline_argv = malloc((argz_count(cmdline, cmdline_len) + 1)
597
* sizeof(char *)); /* Count args */
598
if(cmdline_argv == NULL){
599
error_plus(0, errno, "malloc");
602
argz_extract(cmdline, cmdline_len, cmdline_argv); /* Create argv */
589
604
/* Kill old usplash */
590
605
kill(usplash_pid, SIGTERM);
602
617
the real user ID (_mandos) */
603
618
ret = setuid(geteuid());
620
error_plus(0, errno, "setuid");
609
624
ret = chdir("/");
626
error_plus(0, errno, "chdir");
614
629
/* if(fork() != 0){ */
617
632
ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
634
error_plus(0, errno, "dup2");
623
638
execv(usplash_name, cmdline_argv);
624
639
if(not interrupted_by_signal){
640
error_plus(0, errno, "execv");
628
643
free(cmdline_argv);
652
667
ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
653
668
&signal_action, NULL));
670
error_plus(0, errno, "sigaction");
658
673
ret = raise(signal_received);
659
674
} while(ret != 0 and errno == EINTR);
676
error_plus(0, errno, "raise");
664
679
TEMP_FAILURE_RETRY(pause());