3
3
* Usplash - Read a password from usplash and output it
5
* Copyright © 2008-2011 Teddy Hogeborn
6
* Copyright © 2008-2011 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
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);
83
57
static void termination_handler(int signum){
84
58
if(interrupted_by_signal){
180
154
size_t cmdline_len = 0;
181
155
DIR *proc_dir = opendir("/proc");
182
156
if(proc_dir == NULL){
183
error_plus(0, errno, "opendir");
157
error(0, errno, "opendir");
209
183
ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
211
error_plus(0, errno, "asprintf");
185
error(0, errno, "asprintf");
212
186
goto fail_find_usplash;
251
225
ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
252
226
proc_ent->d_name);
254
error_plus(0, errno, "asprintf");
228
error(0, errno, "asprintf");
255
229
goto fail_find_usplash;
257
231
cl_fd = open(cmdline_filename, O_RDONLY);
258
232
free(cmdline_filename);
260
error_plus(0, errno, "open");
234
error(0, errno, "open");
261
235
goto fail_find_usplash;
269
243
if(cmdline_len + blocksize > cmdline_allocated){
270
244
tmp = realloc(cmdline, cmdline_allocated + blocksize);
272
error_plus(0, errno, "realloc");
246
error(0, errno, "realloc");
274
248
goto fail_find_usplash;
280
254
sret = read(cl_fd, cmdline + cmdline_len,
281
255
cmdline_allocated - cmdline_len);
283
error_plus(0, errno, "read");
257
error(0, errno, "read");
285
259
goto fail_find_usplash;
288
262
} while(sret != 0);
289
263
ret = close(cl_fd);
291
error_plus(0, errno, "close");
265
error(0, errno, "close");
292
266
goto fail_find_usplash;
295
269
/* Close directory */
296
270
ret = closedir(proc_dir);
298
error_plus(0, errno, "closedir");
272
error(0, errno, "closedir");
299
273
goto fail_find_usplash;
350
324
sigemptyset(&new_action.sa_mask);
351
325
ret = sigaddset(&new_action.sa_mask, SIGINT);
353
error_plus(0, errno, "sigaddset");
327
error(0, errno, "sigaddset");
354
328
status = EX_OSERR;
357
331
ret = sigaddset(&new_action.sa_mask, SIGHUP);
359
error_plus(0, errno, "sigaddset");
333
error(0, errno, "sigaddset");
360
334
status = EX_OSERR;
363
337
ret = sigaddset(&new_action.sa_mask, SIGTERM);
365
error_plus(0, errno, "sigaddset");
339
error(0, errno, "sigaddset");
366
340
status = EX_OSERR;
369
343
ret = sigaction(SIGINT, NULL, &old_action);
371
345
if(errno != EINTR){
372
error_plus(0, errno, "sigaction");
346
error(0, errno, "sigaction");
373
347
status = EX_OSERR;
378
352
ret = sigaction(SIGINT, &new_action, NULL);
380
354
if(errno != EINTR){
381
error_plus(0, errno, "sigaction");
355
error(0, errno, "sigaction");
382
356
status = EX_OSERR;
387
361
ret = sigaction(SIGHUP, NULL, &old_action);
389
363
if(errno != EINTR){
390
error_plus(0, errno, "sigaction");
364
error(0, errno, "sigaction");
391
365
status = EX_OSERR;
396
370
ret = sigaction(SIGHUP, &new_action, NULL);
398
372
if(errno != EINTR){
399
error_plus(0, errno, "sigaction");
373
error(0, errno, "sigaction");
400
374
status = EX_OSERR;
405
379
ret = sigaction(SIGTERM, NULL, &old_action);
407
381
if(errno != EINTR){
408
error_plus(0, errno, "sigaction");
382
error(0, errno, "sigaction");
409
383
status = EX_OSERR;
414
388
ret = sigaction(SIGTERM, &new_action, NULL);
416
390
if(errno != EINTR){
417
error_plus(0, errno, "sigaction");
391
error(0, errno, "sigaction");
418
392
status = EX_OSERR;
426
400
/* Write command to FIFO */
427
401
if(not usplash_write(&fifo_fd, "TIMEOUT", "0")){
428
402
if(errno != EINTR){
429
error_plus(0, errno, "usplash_write");
403
error(0, errno, "usplash_write");
430
404
status = EX_OSERR;
439
413
if(not usplash_write(&fifo_fd, "INPUTQUIET", prompt)){
440
414
if(errno != EINTR){
441
error_plus(0, errno, "usplash_write");
415
error(0, errno, "usplash_write");
442
416
status = EX_OSERR;
475
449
char *tmp = realloc(buf, buf_allocated + blocksize);
477
451
if(errno != EINTR){
478
error_plus(0, errno, "realloc");
452
error(0, errno, "realloc");
479
453
status = EX_OSERR;
516
490
if(not usplash_write(&fifo_fd, "TIMEOUT", "15")){
517
491
if(errno != EINTR){
518
error_plus(0, errno, "usplash_write");
492
error(0, errno, "usplash_write");
519
493
status = EX_OSERR;
542
516
sret = write(STDOUT_FILENO, buf + written, buf_len - written);
544
518
if(errno != EINTR){
545
error_plus(0, errno, "write");
519
error(0, errno, "write");
546
520
status = EX_OSERR;
579
553
if(fifo_fd != -1){
580
554
ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
581
555
if(ret == -1 and errno != EINTR){
582
error_plus(0, errno, "close");
556
error(0, errno, "close");
588
562
if(outfifo_fd != -1){
589
563
ret = (int)TEMP_FAILURE_RETRY(close(outfifo_fd));
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 */
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;
604
590
/* Kill old usplash */
605
591
kill(usplash_pid, SIGTERM);
617
603
the real user ID (_mandos) */
618
604
ret = setuid(geteuid());
620
error_plus(0, errno, "setuid");
606
error(0, errno, "setuid");
624
610
ret = chdir("/");
626
error_plus(0, errno, "chdir");
612
error(0, errno, "chdir");
629
615
/* if(fork() != 0){ */
632
618
ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
634
error_plus(0, errno, "dup2");
620
error(0, errno, "dup2");
638
624
execv(usplash_name, cmdline_argv);
639
625
if(not interrupted_by_signal){
640
error_plus(0, errno, "execv");
626
error(0, errno, "execv");
643
629
free(cmdline_argv);
649
635
if(not usplash_write(&fifo_fd, "PULSATE", NULL)){
650
636
if(errno != EINTR){
651
error_plus(0, errno, "usplash_write");
637
error(0, errno, "usplash_write");
656
642
if(fifo_fd != -1){
657
643
ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
658
644
if(ret == -1 and errno != EINTR){
659
error_plus(0, errno, "close");
645
error(0, errno, "close");
667
653
ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
668
654
&signal_action, NULL));
670
error_plus(0, errno, "sigaction");
656
error(0, errno, "sigaction");
673
659
ret = raise(signal_received);
674
660
} while(ret != 0 and errno == EINTR);
676
error_plus(0, errno, "raise");
662
error(0, errno, "raise");
679
665
TEMP_FAILURE_RETRY(pause());