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-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
86
86
fprintf(stderr, "Mandos plugin %s: ",
87
87
program_invocation_short_name);
88
88
vfprintf(stderr, formatstring, ap);
89
fprintf(stderr, ": ");
90
fprintf(stderr, "%s\n", strerror(errnum));
89
fprintf(stderr, ": %s\n", strerror(errnum));
91
90
error(status, errno, "vasprintf while printing error");
110
109
from the terminal. Password-prompt will exit if it detects
111
110
plymouth since plymouth performs the same functionality.
112
__attribute__((nonnull))
113
113
int is_plymouth(const struct dirent *proc_entry){
120
maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
120
proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
122
122
if(errno != 0 or *tmp != '\0'
123
or maxvalue != (uintmax_t)((pid_t)maxvalue)){
123
or proc_id != (uintmax_t)((pid_t)proc_id)){
129
129
ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
130
130
proc_entry->d_name);
132
error(0, errno, "asprintf");
132
error_plus(0, errno, "asprintf");
155
155
if(cmdline_len + blocksize + 1 > cmdline_allocated){
156
156
tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
158
error(0, errno, "realloc");
158
error_plus(0, errno, "realloc");
168
168
sret = read(cl_fd, cmdline + cmdline_len,
169
169
cmdline_allocated - cmdline_len);
171
error(0, errno, "read");
171
error_plus(0, errno, "read");
214
214
ret = scandir("/proc", &direntries, is_plymouth, alphasort);
216
error(1, errno, "scandir");
216
error_plus(1, errno, "scandir");
218
218
free(direntries);
316
317
if(tcgetattr(STDIN_FILENO, &t_old) != 0){
318
error(0, errno, "tcgetattr");
319
error_plus(0, errno, "tcgetattr");
328
329
sigemptyset(&new_action.sa_mask);
329
330
ret = sigaddset(&new_action.sa_mask, SIGINT);
331
error(0, errno, "sigaddset");
332
error_plus(0, errno, "sigaddset");
334
335
ret = sigaddset(&new_action.sa_mask, SIGHUP);
336
error(0, errno, "sigaddset");
337
error_plus(0, errno, "sigaddset");
339
340
ret = sigaddset(&new_action.sa_mask, SIGTERM);
341
error(0, errno, "sigaddset");
342
error_plus(0, errno, "sigaddset");
344
345
/* Need to check if the handler is SIG_IGN before handling:
348
349
ret = sigaction(SIGINT, NULL, &old_action);
350
error(0, errno, "sigaction");
351
error_plus(0, errno, "sigaction");
353
354
if(old_action.sa_handler != SIG_IGN){
354
355
ret = sigaction(SIGINT, &new_action, NULL);
356
error(0, errno, "sigaction");
357
error_plus(0, errno, "sigaction");
360
361
ret = sigaction(SIGHUP, NULL, &old_action);
362
error(0, errno, "sigaction");
363
error_plus(0, errno, "sigaction");
365
366
if(old_action.sa_handler != SIG_IGN){
366
367
ret = sigaction(SIGHUP, &new_action, NULL);
368
error(0, errno, "sigaction");
369
error_plus(0, errno, "sigaction");
372
373
ret = sigaction(SIGTERM, NULL, &old_action);
374
error(0, errno, "sigaction");
375
error_plus(0, errno, "sigaction");
377
378
if(old_action.sa_handler != SIG_IGN){
378
379
ret = sigaction(SIGTERM, &new_action, NULL);
380
error(0, errno, "sigaction");
381
error_plus(0, errno, "sigaction");
391
392
t_new.c_lflag &= ~(tcflag_t)ECHO;
392
393
if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
394
error(0, errno, "tcsetattr-echo");
395
error_plus(0, errno, "tcsetattr-echo");
461
462
sret = write(STDOUT_FILENO, buffer + written, n - written);
464
error(0, errno, "write");
465
error_plus(0, errno, "write");
483
484
sret = close(STDOUT_FILENO);
486
error(0, errno, "close");
487
error_plus(0, errno, "close");
489
490
status = EX_OSFILE;
501
502
if(errno != EINTR and not feof(stdin)){
502
error(0, errno, "getline");
503
error_plus(0, errno, "getline");
505
506
status = EX_UNAVAILABLE;
528
530
fprintf(stderr, "Restoring terminal attributes\n");
530
532
if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
531
error(0, errno, "tcsetattr+echo");
533
error_plus(0, errno, "tcsetattr+echo");
536
538
old_action.sa_handler = SIG_DFL;
537
539
ret = sigaction(signal_received, &old_action, NULL);
539
error(0, errno, "sigaction");
541
error_plus(0, errno, "sigaction");
541
543
raise(signal_received);