1
/* -*- coding: utf-8 -*- */
3
* Passprompt - Read a password from the terminal and print it
5
* Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
7
* This program is free software: you can redistribute it and/or
8
* modify it under the terms of the GNU General Public License as
9
* published by the Free Software Foundation, either version 3 of the
10
* License, or (at your option) any later version.
12
* This program is distributed in the hope that it will be useful, but
13
* WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
* General Public License for more details.
17
* You should have received a copy of the GNU General Public License
18
* along with this program. If not, see
19
* <http://www.gnu.org/licenses/>.
21
* Contact the authors at <https://www.fukt.bsnet.se/~belorn/> and
22
* <https://www.fukt.bsnet.se/~teddy/>.
25
#define _GNU_SOURCE /* getline() */
27
#include <termios.h> /* struct termios, tcsetattr(),
28
TCSAFLUSH, tcgetattr(), ECHO */
29
#include <unistd.h> /* struct termios, tcsetattr(),
30
STDIN_FILENO, TCSAFLUSH,
32
#include <signal.h> /* sig_atomic_t, raise(), struct
33
sigaction, sigemptyset(),
34
sigaction(), sigaddset(), SIGINT,
35
SIGQUIT, SIGHUP, SIGTERM */
36
#include <stddef.h> /* NULL, size_t, ssize_t */
37
#include <sys/types.h> /* ssize_t */
38
#include <stdlib.h> /* EXIT_SUCCESS, EXIT_FAILURE,
39
getopt_long, getenv() */
40
#include <stdio.h> /* fprintf(), stderr, getline(),
41
stdin, feof(), perror(), fputc(),
42
stdout, getopt_long */
43
#include <errno.h> /* errno, EINVAL */
44
#include <iso646.h> /* or, not */
45
#include <stdbool.h> /* bool, false, true */
46
#include <string.h> /* strlen, rindex, strncmp, strcmp */
47
#include <argp.h> /* struct argp_option, struct
48
argp_state, struct argp,
49
argp_parse(), error_t,
50
ARGP_KEY_ARG, ARGP_KEY_END,
53
volatile bool quit_now = false;
55
const char *argp_program_version = "password-prompt 1.0";
56
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
58
static void termination_handler(__attribute__((unused))int signum){
62
int main(int argc, char **argv){
65
struct termios t_new, t_old;
68
int status = EXIT_SUCCESS;
69
struct sigaction old_action,
70
new_action = { .sa_handler = termination_handler,
73
struct argp_option options[] = {
74
{ .name = "prefix", .key = 'p',
75
.arg = "PREFIX", .flags = 0,
76
.doc = "Prefix shown before the prompt", .group = 2 },
77
{ .name = "debug", .key = 128,
78
.doc = "Debug mode", .group = 3 },
82
error_t parse_opt (int key, char *arg, struct argp_state *state) {
83
/* Get the INPUT argument from `argp_parse', which we know is a
84
pointer to our plugin list pointer. */
98
return ARGP_ERR_UNKNOWN;
103
struct argp argp = { .options = options, .parser = parse_opt,
105
.doc = "Mandos password-prompt -- Read and"
106
" output a password" };
107
ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
108
if (ret == ARGP_ERR_UNKNOWN){
109
fprintf(stderr, "Unknown error while parsing arguments\n");
115
fprintf(stderr, "Starting %s\n", argv[0]);
118
fprintf(stderr, "Storing current terminal attributes\n");
121
if (tcgetattr(STDIN_FILENO, &t_old) != 0){
126
sigemptyset(&new_action.sa_mask);
127
sigaddset(&new_action.sa_mask, SIGINT);
128
sigaddset(&new_action.sa_mask, SIGHUP);
129
sigaddset(&new_action.sa_mask, SIGTERM);
130
ret = sigaction(SIGINT, NULL, &old_action);
135
if (old_action.sa_handler != SIG_IGN){
136
ret = sigaction(SIGINT, &new_action, NULL);
142
ret = sigaction(SIGHUP, NULL, &old_action);
147
if (old_action.sa_handler != SIG_IGN){
148
ret = sigaction(SIGHUP, &new_action, NULL);
154
ret = sigaction(SIGTERM, NULL, &old_action);
159
if (old_action.sa_handler != SIG_IGN){
160
ret = sigaction(SIGTERM, &new_action, NULL);
169
fprintf(stderr, "Removing echo flag from terminal attributes\n");
173
t_new.c_lflag &= ~ECHO;
174
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
175
perror("tcsetattr-echo");
180
fprintf(stderr, "Waiting for input from stdin \n");
185
fprintf(stderr, "Interrupted by signal, exiting.\n");
187
status = EXIT_FAILURE;
192
fprintf(stderr, "%s ", prefix);
195
const char *cryptsource = getenv("cryptsource");
196
const char *crypttarget = getenv("crypttarget");
197
const char *const prompt
198
= "Enter passphrase to unlock the disk";
199
if(cryptsource == NULL){
200
if(crypttarget == NULL){
201
fprintf(stderr, "%s: ", prompt);
203
fprintf(stderr, "%s (%s): ", prompt, crypttarget);
206
if(crypttarget == NULL){
207
fprintf(stderr, "%s %s: ", prompt, cryptsource);
209
fprintf(stderr, "%s %s (%s): ", prompt, cryptsource,
214
ret = getline(&buffer, &n, stdin);
216
status = EXIT_SUCCESS;
217
/* Make n = data size instead of allocated buffer size */
219
/* Strip final newline */
220
if(n>0 and buffer[n-1] == '\n'){
221
buffer[n-1] = '\0'; /* not strictly necessary */
226
ret = write(STDOUT_FILENO, buffer + written, n - written);
229
status = EXIT_FAILURE;
232
written += (size_t)ret;
237
if (errno != EINTR and not feof(stdin)){
239
status = EXIT_FAILURE;
243
/* if(ret == 0), then the only sensible thing to do is to retry to
246
if(debug and not quit_now){
247
/* If quit_now is true, we were interrupted by a signal, and
248
will print that later, so no need to show this too. */
249
fprintf(stderr, "getline() returned 0, retrying.\n");
256
fprintf(stderr, "Restoring terminal attributes\n");
258
if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
259
perror("tcsetattr+echo");
263
fprintf(stderr, "%s is exiting with status %d\n", argv[0],
266
if(status == EXIT_SUCCESS){