3
3
 * Password-prompt - Read a password from the terminal and print it
 
5
 
 * Copyright © 2008-2010 Teddy Hogeborn
 
6
 
 * Copyright © 2008-2010 Björn Påhlsson
 
 
5
 * Copyright © 2008,2009 Teddy Hogeborn
 
 
6
 * Copyright © 2008,2009 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(), asprintf() */
 
 
25
#define _GNU_SOURCE             /* getline() */
 
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, struct dirent, pid_t,
 
 
38
#include <sys/types.h>          /* ssize_t */
 
40
39
#include <stdlib.h>             /* EXIT_SUCCESS, EXIT_FAILURE,
 
42
 
#include <dirent.h>             /* scandir(), alphasort() */
 
43
41
#include <stdio.h>              /* fprintf(), stderr, getline(),
 
44
 
                                   stdin, feof(), fputc()
 
 
42
                                   stdin, feof(), perror(), fputc()
 
46
44
#include <errno.h>              /* errno, EBADF, ENOTTY, EINVAL,
 
47
45
                                   EFAULT, EFBIG, EIO, ENOSPC, EINTR
 
49
 
#include <error.h>              /* error() */
 
50
47
#include <iso646.h>             /* or, not */
 
51
48
#include <stdbool.h>            /* bool, false, true */
 
52
 
#include <inttypes.h>           /* strtoumax() */
 
53
 
#include <sys/stat.h>           /* struct stat, lstat(), open() */
 
54
 
#include <string.h>             /* strlen, rindex, memcmp */
 
 
49
#include <string.h>             /* strlen, rindex, strncmp, strcmp */
 
55
50
#include <argp.h>               /* struct argp_option, struct
 
56
51
                                   argp_state, struct argp,
 
57
52
                                   argp_parse(), error_t,
 
 
78
69
  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);
 
114
 
      error(0, errno, "open");
 
118
 
    char *cmdline = NULL;
 
120
 
      size_t cmdline_len = 0;
 
121
 
      size_t cmdline_allocated = 0;
 
123
 
      const size_t blocksize = 1024;
 
126
 
        /* Allocate more space? */
 
127
 
        if(cmdline_len + blocksize + 1 > cmdline_allocated){
 
128
 
          tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
 
130
 
            error(0, errno, "realloc");
 
136
 
          cmdline_allocated += blocksize;
 
140
 
        sret = read(cl_fd, cmdline + cmdline_len,
 
141
 
                    cmdline_allocated - cmdline_len);
 
143
 
          error(0, errno, "read");
 
148
 
        cmdline_len += (size_t)sret;
 
152
 
        error(0, errno, "close");
 
156
 
      cmdline[cmdline_len] = '\0'; /* Make sure it is terminated */
 
158
 
    /* we now have cmdline */
 
161
 
    char *cmdline_base = strrchr(cmdline, '/');
 
162
 
    if(cmdline_base != NULL){
 
163
 
      cmdline_base += 1;                /* skip the slash */
 
165
 
      cmdline_base = cmdline;
 
168
 
    if(strcmp(cmdline_base, plymouth_name) != 0){
 
170
 
        fprintf(stderr, "\"%s\" is not \"%s\"\n", cmdline_base,
 
177
 
      fprintf(stderr, "\"%s\" equals \"%s\"\n", cmdline_base,
 
184
 
  struct dirent **direntries;
 
186
 
  ret = scandir("/proc", &direntries, is_plymouth, alphasort);
 
188
 
    error(1, errno, "scandir");
 
194
72
int main(int argc, char **argv){
 
198
75
  struct termios t_new, t_old;
 
199
76
  char *buffer = NULL;
 
 
273
150
    fprintf(stderr, "Starting %s\n", argv[0]);
 
276
 
  if (conflict_detection()){
 
278
 
      fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
 
284
153
    fprintf(stderr, "Storing current terminal attributes\n");
 
287
156
  if(tcgetattr(STDIN_FILENO, &t_old) != 0){
 
289
 
    error(0, errno, "tcgetattr");
 
 
299
168
  sigemptyset(&new_action.sa_mask);
 
300
169
  ret = sigaddset(&new_action.sa_mask, SIGINT);
 
302
 
    error(0, errno, "sigaddset");
 
305
174
  ret = sigaddset(&new_action.sa_mask, SIGHUP);
 
307
 
    error(0, errno, "sigaddset");
 
310
179
  ret = sigaddset(&new_action.sa_mask, SIGTERM);
 
312
 
    error(0, errno, "sigaddset");
 
315
184
  /* Need to check if the handler is SIG_IGN before handling:
 
 
319
188
  ret = sigaction(SIGINT, NULL, &old_action);
 
321
 
    error(0, errno, "sigaction");
 
324
193
  if(old_action.sa_handler != SIG_IGN){
 
325
194
    ret = sigaction(SIGINT, &new_action, NULL);
 
327
 
      error(0, errno, "sigaction");
 
331
200
  ret = sigaction(SIGHUP, NULL, &old_action);
 
333
 
    error(0, errno, "sigaction");
 
336
205
  if(old_action.sa_handler != SIG_IGN){
 
337
206
    ret = sigaction(SIGHUP, &new_action, NULL);
 
339
 
      error(0, errno, "sigaction");
 
343
212
  ret = sigaction(SIGTERM, NULL, &old_action);
 
345
 
    error(0, errno, "sigaction");
 
348
217
  if(old_action.sa_handler != SIG_IGN){
 
349
218
    ret = sigaction(SIGTERM, &new_action, NULL);
 
351
 
      error(0, errno, "sigaction");
 
 
420
 
    sret = getline(&buffer, &n, stdin);
 
 
289
    ret = getline(&buffer, &n, stdin);
 
422
291
      status = EXIT_SUCCESS;
 
423
292
      /* Make n = data size instead of allocated buffer size */
 
425
294
      /* Strip final newline */
 
426
295
      if(n > 0 and buffer[n-1] == '\n'){
 
427
296
        buffer[n-1] = '\0';     /* not strictly necessary */