3
3
 * Password-prompt - Read a password from the terminal and print it
 
5
 
 * Copyright © 2008,2009 Teddy Hogeborn
 
6
 
 * Copyright © 2008,2009 Björn Påhlsson
 
 
5
 * Copyright © 2008-2010 Teddy Hogeborn
 
 
6
 * Copyright © 2008-2010 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
 
 
22
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
25
 
#define _GNU_SOURCE             /* getline() */
 
 
25
#define _GNU_SOURCE             /* getline(), asprintf() */
 
27
 
#include <termios.h>            /* struct termios, tcsetattr(),
 
 
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
35
                                   SIGQUIT, SIGHUP, SIGTERM,
 
37
37
#include <stddef.h>             /* NULL, size_t, ssize_t */
 
38
 
#include <sys/types.h>          /* ssize_t */
 
 
38
#include <sys/types.h>          /* ssize_t, struct dirent, pid_t,
 
39
40
#include <stdlib.h>             /* EXIT_SUCCESS, EXIT_FAILURE,
 
 
42
#include <dirent.h>             /* scandir(), alphasort() */
 
41
43
#include <stdio.h>              /* fprintf(), stderr, getline(),
 
42
 
                                   stdin, feof(), perror(), fputc()
 
 
44
                                   stdin, feof(), fputc()
 
44
46
#include <errno.h>              /* errno, EBADF, ENOTTY, EINVAL,
 
45
47
                                   EFAULT, EFBIG, EIO, ENOSPC, EINTR
 
 
49
#include <error.h>              /* error() */
 
47
50
#include <iso646.h>             /* or, not */
 
48
51
#include <stdbool.h>            /* bool, false, true */
 
49
 
#include <string.h>             /* strlen, rindex, strncmp, strcmp */
 
 
52
#include <inttypes.h>           /* strtoumax() */
 
 
53
#include <sys/stat.h>           /* struct stat, lstat(), open() */
 
 
54
#include <string.h>             /* strlen, rindex, memcmp */
 
50
55
#include <argp.h>               /* struct argp_option, struct
 
51
56
                                   argp_state, struct argp,
 
52
57
                                   argp_parse(), error_t,
 
 
69
78
  signal_received = signum;
 
 
81
bool conflict_detection(void){
 
 
83
  /* plymouth conflicts with password-prompt since both want to read
 
 
84
     from the terminal.  Password-prompt will exit if it detects
 
 
85
     plymouth since plymouth performs the same functionality.
 
 
87
  int is_plymouth(const struct dirent *proc_entry){
 
 
94
      maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
 
 
96
      if(errno != 0 or *tmp != '\0'
 
 
97
         or maxvalue != (uintmax_t)((pid_t)maxvalue)){
 
 
102
    char *cmdline_filename;
 
 
103
    ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
 
 
106
      error(0, errno, "asprintf");
 
 
110
    /* Open /proc/<pid>/cmdline */
 
 
111
    cl_fd = open(cmdline_filename, O_RDONLY);
 
 
112
    free(cmdline_filename);
 
 
115
        error(0, errno, "open");
 
 
120
    char *cmdline = NULL;
 
 
122
      size_t cmdline_len = 0;
 
 
123
      size_t cmdline_allocated = 0;
 
 
125
      const size_t blocksize = 1024;
 
 
128
        /* Allocate more space? */
 
 
129
        if(cmdline_len + blocksize + 1 > cmdline_allocated){
 
 
130
          tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
 
 
132
            error(0, errno, "realloc");
 
 
138
          cmdline_allocated += blocksize;
 
 
142
        sret = read(cl_fd, cmdline + cmdline_len,
 
 
143
                    cmdline_allocated - cmdline_len);
 
 
145
          error(0, errno, "read");
 
 
150
        cmdline_len += (size_t)sret;
 
 
154
        error(0, errno, "close");
 
 
158
      cmdline[cmdline_len] = '\0'; /* Make sure it is terminated */
 
 
160
    /* we now have cmdline */
 
 
163
    char *cmdline_base = strrchr(cmdline, '/');
 
 
164
    if(cmdline_base != NULL){
 
 
165
      cmdline_base += 1;                /* skip the slash */
 
 
167
      cmdline_base = cmdline;
 
 
170
    if(strcmp(cmdline_base, plymouth_name) != 0){
 
 
172
        fprintf(stderr, "\"%s\" is not \"%s\"\n", cmdline_base,
 
 
179
      fprintf(stderr, "\"%s\" equals \"%s\"\n", cmdline_base,
 
 
186
  struct dirent **direntries;
 
 
188
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
 
 
190
    error(1, errno, "scandir");
 
72
196
int main(int argc, char **argv){
 
75
200
  struct termios t_new, t_old;
 
76
201
  char *buffer = NULL;
 
 
150
275
    fprintf(stderr, "Starting %s\n", argv[0]);
 
 
278
  if (conflict_detection()){
 
 
280
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
 
153
286
    fprintf(stderr, "Storing current terminal attributes\n");
 
156
289
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
 
 
291
    error(0, errno, "tcgetattr");
 
 
168
301
  sigemptyset(&new_action.sa_mask);
 
169
302
  ret = sigaddset(&new_action.sa_mask, SIGINT);
 
 
304
    error(0, errno, "sigaddset");
 
174
307
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
 
 
309
    error(0, errno, "sigaddset");
 
179
312
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
 
 
314
    error(0, errno, "sigaddset");
 
184
317
  /* Need to check if the handler is SIG_IGN before handling:
 
 
188
321
  ret = sigaction(SIGINT, NULL, &old_action);
 
 
323
    error(0, errno, "sigaction");
 
193
326
  if(old_action.sa_handler != SIG_IGN){
 
194
327
    ret = sigaction(SIGINT, &new_action, NULL);
 
 
329
      error(0, errno, "sigaction");
 
200
333
  ret = sigaction(SIGHUP, NULL, &old_action);
 
 
335
    error(0, errno, "sigaction");
 
205
338
  if(old_action.sa_handler != SIG_IGN){
 
206
339
    ret = sigaction(SIGHUP, &new_action, NULL);
 
 
341
      error(0, errno, "sigaction");
 
212
345
  ret = sigaction(SIGTERM, NULL, &old_action);
 
 
347
    error(0, errno, "sigaction");
 
217
350
  if(old_action.sa_handler != SIG_IGN){
 
218
351
    ret = sigaction(SIGTERM, &new_action, NULL);
 
 
353
      error(0, errno, "sigaction");
 
 
258
391
      fprintf(stderr, "%s ", prefix);
 
261
 
      const char *cryptsource = getenv("cryptsource");
 
262
 
      const char *crypttarget = getenv("crypttarget");
 
263
 
      const char *const prompt
 
264
 
        = "Enter passphrase to unlock the disk";
 
 
394
      const char *cryptsource = getenv("CRYPTTAB_SOURCE");
 
 
395
      const char *crypttarget = getenv("CRYPTTAB_NAME");
 
 
396
      /* Before cryptsetup 1.1.0~rc2 */
 
 
397
      if(cryptsource == NULL){
 
 
398
        cryptsource = getenv("cryptsource");
 
 
400
      if(crypttarget == NULL){
 
 
401
        crypttarget = getenv("crypttarget");
 
 
403
      const char *const prompt1 = "Unlocking the disk";
 
 
404
      const char *const prompt2 = "Enter passphrase";
 
265
405
      if(cryptsource == NULL){
 
266
406
        if(crypttarget == NULL){
 
267
 
          fprintf(stderr, "%s: ", prompt);
 
 
407
          fprintf(stderr, "%s to unlock the disk: ", prompt2);
 
269
 
          fprintf(stderr, "%s (%s): ", prompt, crypttarget);
 
 
409
          fprintf(stderr, "%s (%s)\n%s: ", prompt1, crypttarget,
 
272
413
        if(crypttarget == NULL){
 
273
 
          fprintf(stderr, "%s %s: ", prompt, cryptsource);
 
 
414
          fprintf(stderr, "%s %s\n%s: ", prompt1, cryptsource,
 
275
 
          fprintf(stderr, "%s %s (%s): ", prompt, cryptsource,
 
 
417
          fprintf(stderr, "%s %s (%s)\n%s: ", prompt1, cryptsource,
 
 
418
                  crypttarget, prompt2);
 
280
 
    ret = getline(&buffer, &n, stdin);
 
 
422
    sret = getline(&buffer, &n, stdin);
 
282
424
      status = EXIT_SUCCESS;
 
283
425
      /* Make n = data size instead of allocated buffer size */
 
285
427
      /* Strip final newline */
 
286
428
      if(n > 0 and buffer[n-1] == '\n'){
 
287
429
        buffer[n-1] = '\0';     /* not strictly necessary */