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,
80
69
signal_received = signum;
83
bool conflict_detection(void){
85
/* plymouth conflicts with password-prompt since both want to read
86
from the terminal. Password-prompt will exit if it detects
87
plymouth since plymouth performs the same functionality.
89
int is_plymouth(const struct dirent *proc_entry){
96
maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
98
if(errno != 0 or *tmp != '\0'
99
or maxvalue != (uintmax_t)((pid_t)maxvalue)){
104
char *cmdline_filename;
105
ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
108
error(0, errno, "asprintf");
112
/* Open /proc/<pid>/cmdline */
113
cl_fd = open(cmdline_filename, O_RDONLY);
114
free(cmdline_filename);
116
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)
171
and (strcmp(cmdline_base, plymouth_alt_name) != 0)){
173
fprintf(stderr, "\"%s\" is not \"%s\" or \"%s\"\n",
174
cmdline_base, plymouth_name, plymouth_alt_name);
179
fprintf(stderr, "\"%s\" equals \"%s\" or \"%s\"\n",
180
cmdline_base, plymouth_name, plymouth_alt_name);
185
struct dirent **direntries;
187
ret = scandir("/proc", &direntries, is_plymouth, alphasort);
189
error(1, errno, "scandir");
195
72
int main(int argc, char **argv){
199
75
struct termios t_new, t_old;
200
76
char *buffer = NULL;
274
150
fprintf(stderr, "Starting %s\n", argv[0]);
277
if (conflict_detection()){
279
fprintf(stderr, "Stopping %s because of conflict\n", argv[0]);
285
153
fprintf(stderr, "Storing current terminal attributes\n");
288
156
if(tcgetattr(STDIN_FILENO, &t_old) != 0){
290
error(0, errno, "tcgetattr");
300
168
sigemptyset(&new_action.sa_mask);
301
169
ret = sigaddset(&new_action.sa_mask, SIGINT);
303
error(0, errno, "sigaddset");
306
174
ret = sigaddset(&new_action.sa_mask, SIGHUP);
308
error(0, errno, "sigaddset");
311
179
ret = sigaddset(&new_action.sa_mask, SIGTERM);
313
error(0, errno, "sigaddset");
316
184
/* Need to check if the handler is SIG_IGN before handling:
320
188
ret = sigaction(SIGINT, NULL, &old_action);
322
error(0, errno, "sigaction");
325
193
if(old_action.sa_handler != SIG_IGN){
326
194
ret = sigaction(SIGINT, &new_action, NULL);
328
error(0, errno, "sigaction");
332
200
ret = sigaction(SIGHUP, NULL, &old_action);
334
error(0, errno, "sigaction");
337
205
if(old_action.sa_handler != SIG_IGN){
338
206
ret = sigaction(SIGHUP, &new_action, NULL);
340
error(0, errno, "sigaction");
344
212
ret = sigaction(SIGTERM, NULL, &old_action);
346
error(0, errno, "sigaction");
349
217
if(old_action.sa_handler != SIG_IGN){
350
218
ret = sigaction(SIGTERM, &new_action, NULL);
352
error(0, errno, "sigaction");
421
sret = getline(&buffer, &n, stdin);
289
ret = getline(&buffer, &n, stdin);
423
291
status = EXIT_SUCCESS;
424
292
/* Make n = data size instead of allocated buffer size */
426
294
/* Strip final newline */
427
295
if(n > 0 and buffer[n-1] == '\n'){
428
296
buffer[n-1] = '\0'; /* not strictly necessary */