3
3
* Password-prompt - Read a password from the terminal and print it
5
* Copyright © 2008-2010 Teddy Hogeborn
6
* Copyright © 2008-2010 Björn Påhlsson
5
* Copyright © 2008-2013 Teddy Hogeborn
6
* Copyright © 2008-2013 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 /* getline(), asprintf() */
67
67
int signal_received;
68
68
bool debug = false;
69
69
const char *argp_program_version = "password-prompt " VERSION;
70
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
70
const char *argp_program_bug_address = "<mandos@recompile.se>";
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 (int)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");
211
struct dirent **direntries;
222
struct dirent **direntries = NULL;
213
224
ret = scandir("/proc", &direntries, is_plymouth, alphasort);
215
error(1, errno, "scandir");
226
error_plus(1, errno, "scandir");
314
327
if(tcgetattr(STDIN_FILENO, &t_old) != 0){
316
error(0, errno, "tcgetattr");
329
error_plus(0, errno, "tcgetattr");
326
339
sigemptyset(&new_action.sa_mask);
327
340
ret = sigaddset(&new_action.sa_mask, SIGINT);
329
error(0, errno, "sigaddset");
342
error_plus(0, errno, "sigaddset");
332
345
ret = sigaddset(&new_action.sa_mask, SIGHUP);
334
error(0, errno, "sigaddset");
347
error_plus(0, errno, "sigaddset");
337
350
ret = sigaddset(&new_action.sa_mask, SIGTERM);
339
error(0, errno, "sigaddset");
352
error_plus(0, errno, "sigaddset");
342
355
/* Need to check if the handler is SIG_IGN before handling:
346
359
ret = sigaction(SIGINT, NULL, &old_action);
348
error(0, errno, "sigaction");
361
error_plus(0, errno, "sigaction");
351
364
if(old_action.sa_handler != SIG_IGN){
352
365
ret = sigaction(SIGINT, &new_action, NULL);
354
error(0, errno, "sigaction");
367
error_plus(0, errno, "sigaction");
358
371
ret = sigaction(SIGHUP, NULL, &old_action);
360
error(0, errno, "sigaction");
373
error_plus(0, errno, "sigaction");
363
376
if(old_action.sa_handler != SIG_IGN){
364
377
ret = sigaction(SIGHUP, &new_action, NULL);
366
error(0, errno, "sigaction");
379
error_plus(0, errno, "sigaction");
370
383
ret = sigaction(SIGTERM, NULL, &old_action);
372
error(0, errno, "sigaction");
385
error_plus(0, errno, "sigaction");
375
388
if(old_action.sa_handler != SIG_IGN){
376
389
ret = sigaction(SIGTERM, &new_action, NULL);
378
error(0, errno, "sigaction");
391
error_plus(0, errno, "sigaction");
389
402
t_new.c_lflag &= ~(tcflag_t)ECHO;
390
403
if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
392
error(0, errno, "tcsetattr-echo");
405
error_plus(0, errno, "tcsetattr-echo");
459
472
sret = write(STDOUT_FILENO, buffer + written, n - written);
462
error(0, errno, "write");
475
error_plus(0, errno, "write");
481
494
sret = close(STDOUT_FILENO);
484
error(0, errno, "close");
497
error_plus(0, errno, "close");
487
500
status = EX_OSFILE;
499
512
if(errno != EINTR and not feof(stdin)){
500
error(0, errno, "getline");
513
error_plus(0, errno, "getline");
503
516
status = EX_UNAVAILABLE;
526
540
fprintf(stderr, "Restoring terminal attributes\n");
528
542
if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
529
error(0, errno, "tcsetattr+echo");
543
error_plus(0, errno, "tcsetattr+echo");
534
548
old_action.sa_handler = SIG_DFL;
535
549
ret = sigaction(signal_received, &old_action, NULL);
537
error(0, errno, "sigaction");
551
error_plus(0, errno, "sigaction");
539
553
raise(signal_received);