3
3
* Password-prompt - Read a password from the terminal and print it
5
* Copyright © 2008-2011 Teddy Hogeborn
6
* Copyright © 2008-2011 Björn Påhlsson
5
* Copyright © 2008-2012 Teddy Hogeborn
6
* Copyright © 2008-2012 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
72
72
/* Needed for conflict resolution */
73
73
const char plymouth_name[] = "plymouthd";
75
__attribute__((format (gnu_printf, 2, 3), nonnull(1)))
76
int fprintf_plus(FILE *stream, const char *format, ...){
78
va_start (ap, format);
80
TEMP_FAILURE_RETRY(fprintf(stream, "Mandos plugin %s: ",
81
program_invocation_short_name));
82
return TEMP_FAILURE_RETRY(vfprintf(stream, format, ap));
75
85
/* Function to use when printing errors */
86
__attribute__((format (gnu_printf, 3, 4)))
76
87
void error_plus(int status, int errnum, const char *formatstring,
85
96
fprintf(stderr, "Mandos plugin %s: ",
86
97
program_invocation_short_name);
87
98
vfprintf(stderr, formatstring, ap);
88
fprintf(stderr, ": ");
89
fprintf(stderr, "%s\n", strerror(errnum));
99
fprintf(stderr, ": %s\n", strerror(errnum));
90
100
error(status, errno, "vasprintf while printing error");
109
119
from the terminal. Password-prompt will exit if it detects
110
120
plymouth since plymouth performs the same functionality.
122
__attribute__((nonnull))
112
123
int is_plymouth(const struct dirent *proc_entry){
119
maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
130
proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
121
132
if(errno != 0 or *tmp != '\0'
122
or maxvalue != (uintmax_t)((pid_t)maxvalue)){
133
or proc_id != (uintmax_t)((pid_t)proc_id)){
128
139
ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
129
140
proc_entry->d_name);
131
error(0, errno, "asprintf");
142
error_plus(0, errno, "asprintf");
154
165
if(cmdline_len + blocksize + 1 > cmdline_allocated){
155
166
tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
157
error(0, errno, "realloc");
168
error_plus(0, errno, "realloc");
167
178
sret = read(cl_fd, cmdline + cmdline_len,
168
179
cmdline_allocated - cmdline_len);
170
error(0, errno, "read");
181
error_plus(0, errno, "read");
213
224
ret = scandir("/proc", &direntries, is_plymouth, alphasort);
215
error(1, errno, "scandir");
226
error_plus(1, errno, "scandir");
217
228
free(direntries);
315
327
if(tcgetattr(STDIN_FILENO, &t_old) != 0){
317
error(0, errno, "tcgetattr");
329
error_plus(0, errno, "tcgetattr");
327
339
sigemptyset(&new_action.sa_mask);
328
340
ret = sigaddset(&new_action.sa_mask, SIGINT);
330
error(0, errno, "sigaddset");
342
error_plus(0, errno, "sigaddset");
333
345
ret = sigaddset(&new_action.sa_mask, SIGHUP);
335
error(0, errno, "sigaddset");
347
error_plus(0, errno, "sigaddset");
338
350
ret = sigaddset(&new_action.sa_mask, SIGTERM);
340
error(0, errno, "sigaddset");
352
error_plus(0, errno, "sigaddset");
343
355
/* Need to check if the handler is SIG_IGN before handling:
347
359
ret = sigaction(SIGINT, NULL, &old_action);
349
error(0, errno, "sigaction");
361
error_plus(0, errno, "sigaction");
352
364
if(old_action.sa_handler != SIG_IGN){
353
365
ret = sigaction(SIGINT, &new_action, NULL);
355
error(0, errno, "sigaction");
367
error_plus(0, errno, "sigaction");
359
371
ret = sigaction(SIGHUP, NULL, &old_action);
361
error(0, errno, "sigaction");
373
error_plus(0, errno, "sigaction");
364
376
if(old_action.sa_handler != SIG_IGN){
365
377
ret = sigaction(SIGHUP, &new_action, NULL);
367
error(0, errno, "sigaction");
379
error_plus(0, errno, "sigaction");
371
383
ret = sigaction(SIGTERM, NULL, &old_action);
373
error(0, errno, "sigaction");
385
error_plus(0, errno, "sigaction");
376
388
if(old_action.sa_handler != SIG_IGN){
377
389
ret = sigaction(SIGTERM, &new_action, NULL);
379
error(0, errno, "sigaction");
391
error_plus(0, errno, "sigaction");
390
402
t_new.c_lflag &= ~(tcflag_t)ECHO;
391
403
if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
393
error(0, errno, "tcsetattr-echo");
405
error_plus(0, errno, "tcsetattr-echo");
460
472
sret = write(STDOUT_FILENO, buffer + written, n - written);
463
error(0, errno, "write");
475
error_plus(0, errno, "write");
482
494
sret = close(STDOUT_FILENO);
485
error(0, errno, "close");
497
error_plus(0, errno, "close");
488
500
status = EX_OSFILE;
500
512
if(errno != EINTR and not feof(stdin)){
501
error(0, errno, "getline");
513
error_plus(0, errno, "getline");
504
516
status = EX_UNAVAILABLE;
527
540
fprintf(stderr, "Restoring terminal attributes\n");
529
542
if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
530
error(0, errno, "tcsetattr+echo");
543
error_plus(0, errno, "tcsetattr+echo");
535
548
old_action.sa_handler = SIG_DFL;
536
549
ret = sigaction(signal_received, &old_action, NULL);
538
error(0, errno, "sigaction");
551
error_plus(0, errno, "sigaction");
540
553
raise(signal_received);