19
18
 * along with this program.  If not, see
 
20
19
 * <http://www.gnu.org/licenses/>.
 
22
 
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
 
21
 * Contact the authors at <https://www.fukt.bsnet.se/~belorn/> and
 
 
22
 * <https://www.fukt.bsnet.se/~teddy/>.
 
25
 
#define _GNU_SOURCE             /* getline(), asprintf() */
 
 
25
#define _GNU_SOURCE             /* getline() */
 
27
27
#include <termios.h>            /* struct termios, tcsetattr(),
 
28
28
                                   TCSAFLUSH, tcgetattr(), ECHO */
 
29
29
#include <unistd.h>             /* struct termios, tcsetattr(),
 
30
30
                                   STDIN_FILENO, TCSAFLUSH,
 
31
 
                                   tcgetattr(), ECHO, readlink() */
 
32
32
#include <signal.h>             /* sig_atomic_t, raise(), struct
 
33
33
                                   sigaction, sigemptyset(),
 
34
34
                                   sigaction(), sigaddset(), SIGINT,
 
35
 
                                   SIGQUIT, SIGHUP, SIGTERM,
 
 
35
                                   SIGQUIT, SIGHUP, SIGTERM */
 
37
36
#include <stddef.h>             /* NULL, size_t, ssize_t */
 
38
 
#include <sys/types.h>          /* ssize_t, struct dirent, pid_t, ssize_t */
 
 
37
#include <sys/types.h>          /* ssize_t */
 
39
38
#include <stdlib.h>             /* EXIT_SUCCESS, EXIT_FAILURE,
 
41
 
#include <dirent.h>             /* scandir(), alphasort() */
 
42
40
#include <stdio.h>              /* fprintf(), stderr, getline(),
 
43
 
                                   stdin, feof(), fputc()
 
45
 
#include <errno.h>              /* errno, EBADF, ENOTTY, EINVAL,
 
46
 
                                   EFAULT, EFBIG, EIO, ENOSPC, EINTR
 
48
 
#include <error.h>              /* error() */
 
 
41
                                   stdin, feof(), perror(), fputc(),
 
 
42
                                   stdout, getopt_long */
 
 
43
#include <errno.h>              /* errno, EINVAL */
 
49
44
#include <iso646.h>             /* or, not */
 
50
45
#include <stdbool.h>            /* bool, false, true */
 
51
 
#include <inttypes.h>           /* strtoumax() */
 
52
 
#include <sys/stat.h>           /* struct stat, lstat() */
 
53
 
#include <string.h>             /* strlen, rindex, memcmp */
 
 
46
#include <string.h>             /* strlen, rindex, strncmp, strcmp */
 
54
47
#include <argp.h>               /* struct argp_option, struct
 
55
48
                                   argp_state, struct argp,
 
56
49
                                   argp_parse(), error_t,
 
57
50
                                   ARGP_KEY_ARG, ARGP_KEY_END,
 
58
51
                                   ARGP_ERR_UNKNOWN */
 
59
 
#include <sysexits.h>           /* EX_SOFTWARE, EX_OSERR,
 
60
 
                                   EX_UNAVAILABLE, EX_IOERR, EX_OK */
 
62
 
volatile sig_atomic_t quit_now = 0;
 
 
53
volatile bool quit_now = false;
 
64
54
bool debug = false;
 
65
 
const char *argp_program_version = "password-prompt " VERSION;
 
 
55
const char *argp_program_version = "password-prompt 1.0";
 
66
56
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
 
68
 
/* Needed for conflic resolution */
 
69
 
const char plymouthd_path[] = "/sbin/plymouth";
 
72
 
static void termination_handler(int signum){
 
77
 
  signal_received = signum;
 
80
 
bool conflict_detection(void){
 
82
 
  /* plymouth conflicts with password-promt since both want to control the
 
83
 
     associated terminal. Password-prompt exit since plymouth perferms the same
 
86
 
  int is_plymouth(const struct dirent *proc_entry){
 
92
 
      maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
 
94
 
      if(errno != 0 or *tmp != '\0'
 
95
 
         or maxvalue != (uintmax_t)((pid_t)maxvalue)){
 
99
 
    char exe_target[sizeof(plymouthd_path)];
 
101
 
    ret = asprintf(&exe_link, "/proc/%s/exe", proc_entry->d_name);
 
103
 
      error(0, errno, "asprintf");
 
107
 
    struct stat exe_stat;
 
108
 
    ret = lstat(exe_link, &exe_stat);
 
112
 
        error(0, errno, "lstat");
 
117
 
    if(not S_ISLNK(exe_stat.st_mode)
 
118
 
       or exe_stat.st_uid != 0
 
119
 
       or exe_stat.st_gid != 0){
 
124
 
    ssize_t sret = readlink(exe_link, exe_target, sizeof(exe_target));
 
126
 
    if((sret != (ssize_t)sizeof(plymouthd_path)-1) or
 
127
 
       (memcmp(plymouthd_path, exe_target,
 
128
 
               sizeof(plymouthd_path)-1) != 0)){
 
134
 
  struct dirent **direntries;
 
136
 
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
 
138
 
    error(1, errno, "scandir");
 
 
58
static void termination_handler(__attribute__((unused))int signum){
 
148
62
int main(int argc, char **argv){
 
152
65
  struct termios t_new, t_old;
 
153
66
  char *buffer = NULL;
 
 
160
73
    struct argp_option options[] = {
 
161
74
      { .name = "prefix", .key = 'p',
 
162
75
        .arg = "PREFIX", .flags = 0,
 
163
 
        .doc = "Prefix shown before the prompt", .group = 2 },
 
 
76
        .doc = "Prefix used before the passprompt", .group = 2 },
 
164
77
      { .name = "debug", .key = 128,
 
165
78
        .doc = "Debug mode", .group = 3 },
 
167
 
       * These reproduce what we would get without ARGP_NO_HELP
 
169
 
      { .name = "help", .key = '?',
 
170
 
        .doc = "Give this help list", .group = -1 },
 
171
 
      { .name = "usage", .key = -3,
 
172
 
        .doc = "Give a short usage message", .group = -1 },
 
173
 
      { .name = "version", .key = 'V',
 
174
 
        .doc = "Print program version", .group = -1 },
 
178
 
    error_t parse_opt (int key, char *arg, struct argp_state *state){
 
 
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. */
 
188
 
         * These reproduce what we would get without ARGP_NO_HELP
 
190
 
      case '?':                 /* --help */
 
191
 
        argp_state_help(state, state->out_stream,
 
192
 
                        (ARGP_HELP_STD_HELP | ARGP_HELP_EXIT_ERR)
 
193
 
                        & ~(unsigned int)ARGP_HELP_EXIT_OK);
 
194
 
      case -3:                  /* --usage */
 
195
 
        argp_state_help(state, state->out_stream,
 
196
 
                        ARGP_HELP_USAGE | ARGP_HELP_EXIT_ERR);
 
197
 
      case 'V':                 /* --version */
 
198
 
        fprintf(state->out_stream, "%s\n", argp_program_version);
 
199
 
        exit(argp_err_exit_status);
 
202
98
        return ARGP_ERR_UNKNOWN;
 
207
103
    struct argp argp = { .options = options, .parser = parse_opt,
 
209
 
                         .doc = "Mandos password-prompt -- Read and"
 
210
 
                         " output a password" };
 
211
 
    ret = argp_parse(&argp, argc, argv,
 
212
 
                     ARGP_IN_ORDER | ARGP_NO_HELP, NULL, NULL);
 
219
 
      error(0, errno, "argp_parse");
 
 
105
                         .doc = "Mandos Passprompt -- Provides a passprompt" };
 
 
106
    ret = argp_parse (&argp, argc, argv, 0, 0, NULL);
 
 
107
    if (ret == ARGP_ERR_UNKNOWN){
 
 
108
      fprintf(stderr, "Unknown error while parsing arguments\n");
 
227
114
    fprintf(stderr, "Starting %s\n", argv[0]);
 
230
 
  if (conflict_detection()){
 
232
 
      fprintf(stderr, "Stopping %s because of conflict", argv[0]);
 
238
117
    fprintf(stderr, "Storing current terminal attributes\n");
 
241
 
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
 
243
 
    error(0, errno, "tcgetattr");
 
247
 
      return EX_UNAVAILABLE;
 
 
120
  if (tcgetattr(STDIN_FILENO, &t_old) != 0){
 
253
124
  sigemptyset(&new_action.sa_mask);
 
254
 
  ret = sigaddset(&new_action.sa_mask, SIGINT);
 
256
 
    error(0, errno, "sigaddset");
 
259
 
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
 
261
 
    error(0, errno, "sigaddset");
 
264
 
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
 
266
 
    error(0, errno, "sigaddset");
 
269
 
  /* Need to check if the handler is SIG_IGN before handling:
 
270
 
     | [[info:libc:Initial Signal Actions]] |
 
271
 
     | [[info:libc:Basic Signal Handling]]  |
 
 
125
  sigaddset(&new_action.sa_mask, SIGINT);
 
 
126
  sigaddset(&new_action.sa_mask, SIGHUP);
 
 
127
  sigaddset(&new_action.sa_mask, SIGTERM);
 
273
128
  ret = sigaction(SIGINT, NULL, &old_action);
 
275
 
    error(0, errno, "sigaction");
 
278
 
  if(old_action.sa_handler != SIG_IGN){
 
 
133
  if (old_action.sa_handler != SIG_IGN){
 
279
134
    ret = sigaction(SIGINT, &new_action, NULL);
 
281
 
      error(0, errno, "sigaction");
 
285
140
  ret = sigaction(SIGHUP, NULL, &old_action);
 
287
 
    error(0, errno, "sigaction");
 
290
 
  if(old_action.sa_handler != SIG_IGN){
 
 
145
  if (old_action.sa_handler != SIG_IGN){
 
291
146
    ret = sigaction(SIGHUP, &new_action, NULL);
 
293
 
      error(0, errno, "sigaction");
 
297
152
  ret = sigaction(SIGTERM, NULL, &old_action);
 
299
 
    error(0, errno, "sigaction");
 
302
 
  if(old_action.sa_handler != SIG_IGN){
 
 
157
  if (old_action.sa_handler != SIG_IGN){
 
303
158
    ret = sigaction(SIGTERM, &new_action, NULL);
 
305
 
      error(0, errno, "sigaction");
 
312
167
    fprintf(stderr, "Removing echo flag from terminal attributes\n");
 
316
 
  t_new.c_lflag &= ~(tcflag_t)ECHO;
 
317
 
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
 
319
 
    error(0, errno, "tcsetattr-echo");
 
323
 
      return EX_UNAVAILABLE;
 
 
171
  t_new.c_lflag &= ~ECHO;
 
 
172
  if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_new) != 0){
 
 
173
    perror("tcsetattr-echo");
 
331
178
    fprintf(stderr, "Waiting for input from stdin \n");
 
336
 
        fprintf(stderr, "Interrupted by signal, exiting.\n");
 
338
182
      status = EXIT_FAILURE;
 
343
 
      fprintf(stderr, "%s ", prefix);
 
346
 
      const char *cryptsource = getenv("CRYPTTAB_SOURCE");
 
347
 
      const char *crypttarget = getenv("CRYPTTAB_NAME");
 
348
 
      /* Before cryptsetup 1.1.0~rc2 */
 
349
 
      if(cryptsource == NULL){
 
350
 
        cryptsource = getenv("cryptsource");
 
352
 
      if(crypttarget == NULL){
 
353
 
        crypttarget = getenv("crypttarget");
 
355
 
      const char *const prompt1 = "Unlocking the disk";
 
356
 
      const char *const prompt2 = "Enter passphrase";
 
357
 
      if(cryptsource == NULL){
 
358
 
        if(crypttarget == NULL){
 
359
 
          fprintf(stderr, "%s to unlock the disk: ", prompt2);
 
361
 
          fprintf(stderr, "%s (%s)\n%s: ", prompt1, crypttarget,
 
365
 
        if(crypttarget == NULL){
 
366
 
          fprintf(stderr, "%s %s\n%s: ", prompt1, cryptsource,
 
369
 
          fprintf(stderr, "%s %s (%s)\n%s: ", prompt1, cryptsource,
 
370
 
                  crypttarget, prompt2);
 
374
 
    sret = getline(&buffer, &n, stdin);
 
 
187
      fprintf(stderr, "%s Password: ", prefix);
 
 
189
      fprintf(stderr, "Password: ");
 
 
191
    ret = getline(&buffer, &n, stdin);
 
 
193
      fprintf(stdout, "%s", buffer);
 
376
194
      status = EXIT_SUCCESS;
 
377
 
      /* Make n = data size instead of allocated buffer size */
 
379
 
      /* Strip final newline */
 
380
 
      if(n > 0 and buffer[n-1] == '\n'){
 
381
 
        buffer[n-1] = '\0';     /* not strictly necessary */
 
386
 
        sret = write(STDOUT_FILENO, buffer + written, n - written);
 
389
 
          error(0, errno, "write");
 
401
 
            status = EXIT_FAILURE;
 
406
 
        written += (size_t)sret;
 
408
 
      sret = close(STDOUT_FILENO);
 
411
 
        error(0, errno, "close");
 
426
 
      if(errno != EINTR and not feof(stdin)){
 
427
 
        error(0, errno, "getline");
 
430
 
          status = EX_UNAVAILABLE;
 
 
198
      if (errno != EINTR and not feof(stdin)){
 
 
200
        status = EXIT_FAILURE;
 
440
 
    /* if(sret == 0), then the only sensible thing to do is to retry to
 
 
204
    /* if(ret == 0), then the only sensible thing to do is to retry to
 
441
205
       read from stdin */
 
442
206
    fputc('\n', stderr);
 
443
 
    if(debug and not quit_now){
 
444
 
      /* If quit_now is nonzero, we were interrupted by a signal, and
 
445
 
         will print that later, so no need to show this too. */
 
446
 
      fprintf(stderr, "getline() returned 0, retrying.\n");
 
453
210
    fprintf(stderr, "Restoring terminal attributes\n");
 
455
 
  if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
 
456
 
    error(0, errno, "tcsetattr+echo");
 
460
 
    sigemptyset(&old_action.sa_mask);
 
461
 
    old_action.sa_handler = SIG_DFL;
 
462
 
    ret = sigaction(signal_received, &old_action, NULL);
 
464
 
      error(0, errno, "sigaction");
 
466
 
    raise(signal_received);
 
470
 
    fprintf(stderr, "%s is exiting with status %d\n", argv[0],
 
473
 
  if(status == EXIT_SUCCESS or status == EX_OK){
 
 
212
  if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &t_old) != 0){
 
 
213
    perror("tcsetattr+echo");
 
 
217
    fprintf(stderr, "%s is exiting\n", argv[0]);