37
37
#include <stddef.h> /* NULL, size_t, ssize_t */
38
38
#include <sys/types.h> /* ssize_t */
39
39
#include <stdlib.h> /* EXIT_SUCCESS, EXIT_FAILURE,
40
getopt_long, getenv() */
41
41
#include <stdio.h> /* fprintf(), stderr, getline(),
42
stdin, feof(), perror(), fputc()
42
stdin, feof(), perror(), fputc(),
44
44
#include <errno.h> /* errno, EBADF, ENOTTY, EINVAL,
45
45
EFAULT, EFBIG, EIO, ENOSPC, EINTR
47
47
#include <iso646.h> /* or, not */
48
48
#include <stdbool.h> /* bool, false, true */
49
#include <string.h> /* strlen, rindex */
49
#include <string.h> /* strlen, rindex, strncmp, strcmp */
50
50
#include <argp.h> /* struct argp_option, struct
51
51
argp_state, struct argp,
52
52
argp_parse(), error_t,
86
86
.doc = "Prefix shown before the prompt", .group = 2 },
87
87
{ .name = "debug", .key = 128,
88
88
.doc = "Debug mode", .group = 3 },
90
* These reproduce what we would get without ARGP_NO_HELP
92
{ .name = "help", .key = '?',
93
.doc = "Give this help list", .group = -1 },
94
{ .name = "usage", .key = -3,
95
.doc = "Give a short usage message", .group = -1 },
96
{ .name = "version", .key = 'V',
97
.doc = "Print program version", .group = -1 },
101
92
error_t parse_opt (int key, char *arg, struct argp_state *state){
111
* These reproduce what we would get without ARGP_NO_HELP
113
case '?': /* --help */
114
argp_state_help(state, state->out_stream,
115
(ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
116
& ~(unsigned int)ARGP_HELP_EXIT_OK);
117
case -3: /* --usage */
118
argp_state_help(state, state->out_stream,
119
ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
120
case 'V': /* --version */
121
fprintf(state->out_stream, "%s\n", argp_program_version);
122
exit(argp_err_exit_status);
125
106
return ARGP_ERR_UNKNOWN;
130
111
struct argp argp = { .options = options, .parser = parse_opt,
132
113
.doc = "Mandos password-prompt -- Read and"
133
114
" output a password" };
134
ret = argp_parse(&argp, argc, argv,
135
ARGP_IN_ORDER | ARGP_NO_HELP, NULL, NULL);
142
perror("argp_parse");
115
ret = argp_parse(&argp, argc, argv, 0, 0, NULL);
116
if(ret == ARGP_ERR_UNKNOWN){
117
fprintf(stderr, "Unknown error while parsing arguments\n");
258
231
fprintf(stderr, "%s ", prefix);
261
const char *cryptsource = getenv("CRYPTTAB_SOURCE");
262
const char *crypttarget = getenv("CRYPTTAB_NAME");
263
/* Before cryptsetup 1.1.0~rc2 */
264
if(cryptsource == NULL){
265
cryptsource = getenv("cryptsource");
267
if(crypttarget == NULL){
268
crypttarget = getenv("crypttarget");
270
const char *const prompt1 = "Unlocking the disk";
271
const char *const prompt2 = "Enter passphrase";
234
const char *cryptsource = getenv("cryptsource");
235
const char *crypttarget = getenv("crypttarget");
236
const char *const prompt
237
= "Enter passphrase to unlock the disk";
272
238
if(cryptsource == NULL){
273
239
if(crypttarget == NULL){
274
fprintf(stderr, "%s to unlock the disk: ", prompt2);
240
fprintf(stderr, "%s: ", prompt);
276
fprintf(stderr, "%s (%s)\n%s: ", prompt1, crypttarget,
242
fprintf(stderr, "%s (%s): ", prompt, crypttarget);
280
245
if(crypttarget == NULL){
281
fprintf(stderr, "%s %s\n%s: ", prompt1, cryptsource,
246
fprintf(stderr, "%s %s: ", prompt, cryptsource);
284
fprintf(stderr, "%s %s (%s)\n%s: ", prompt1, cryptsource,
285
crypttarget, prompt2);
248
fprintf(stderr, "%s %s (%s): ", prompt, cryptsource,