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
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 */
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", proc_entry->d_name);
107
error(0, errno, "asprintf");
111
/* Open /proc/<pid>/cmdline */
112
cl_fd = open(cmdline_filename, O_RDONLY);
113
free(cmdline_filename);
115
error(0, errno, "open");
119
char *cmdline = NULL;
121
size_t cmdline_len = 0;
122
size_t cmdline_allocated = 0;
124
const size_t blocksize = 1024;
127
/* Allocate more space? */
128
if(cmdline_len + blocksize + 1 > cmdline_allocated){
129
tmp = realloc(cmdline, cmdline_allocated + blocksize + 1);
131
error(0, errno, "realloc");
137
cmdline_allocated += blocksize;
141
sret = read(cl_fd, cmdline + cmdline_len,
142
cmdline_allocated - cmdline_len);
144
error(0, errno, "read");
149
cmdline_len += (size_t)sret;
153
error(0, errno, "close");
157
cmdline[cmdline_len] = '\0'; /* Make sure it is terminated */
159
/* we now have cmdline */
162
char *cmdline_base = strrchr(cmdline, '/');
163
if(cmdline_base != NULL){
164
cmdline_base += 1; /* skip the slash */
166
cmdline_base = cmdline;
169
if((strcmp(cmdline_base, plymouth_name) != 0)
170
and (strcmp(cmdline_base, plymouth_alt_name) != 0)){
178
struct dirent **direntries;
180
ret = scandir("/proc", &direntries, is_plymouth, alphasort);
182
error(1, errno, "scandir");
188
72
int main(int argc, char **argv){
192
75
struct termios t_new, t_old;
193
76
char *buffer = NULL;
267
150
fprintf(stderr, "Starting %s\n", argv[0]);
270
if (conflict_detection()){
272
fprintf(stderr, "Stopping %s because of conflict", argv[0]);
278
153
fprintf(stderr, "Storing current terminal attributes\n");
281
156
if(tcgetattr(STDIN_FILENO, &t_old) != 0){
283
error(0, errno, "tcgetattr");
293
168
sigemptyset(&new_action.sa_mask);
294
169
ret = sigaddset(&new_action.sa_mask, SIGINT);
296
error(0, errno, "sigaddset");
299
174
ret = sigaddset(&new_action.sa_mask, SIGHUP);
301
error(0, errno, "sigaddset");
304
179
ret = sigaddset(&new_action.sa_mask, SIGTERM);
306
error(0, errno, "sigaddset");
309
184
/* Need to check if the handler is SIG_IGN before handling:
313
188
ret = sigaction(SIGINT, NULL, &old_action);
315
error(0, errno, "sigaction");
318
193
if(old_action.sa_handler != SIG_IGN){
319
194
ret = sigaction(SIGINT, &new_action, NULL);
321
error(0, errno, "sigaction");
325
200
ret = sigaction(SIGHUP, NULL, &old_action);
327
error(0, errno, "sigaction");
330
205
if(old_action.sa_handler != SIG_IGN){
331
206
ret = sigaction(SIGHUP, &new_action, NULL);
333
error(0, errno, "sigaction");
337
212
ret = sigaction(SIGTERM, NULL, &old_action);
339
error(0, errno, "sigaction");
342
217
if(old_action.sa_handler != SIG_IGN){
343
218
ret = sigaction(SIGTERM, &new_action, NULL);
345
error(0, errno, "sigaction");
414
sret = getline(&buffer, &n, stdin);
289
ret = getline(&buffer, &n, stdin);
416
291
status = EXIT_SUCCESS;
417
292
/* Make n = data size instead of allocated buffer size */
419
294
/* Strip final newline */
420
295
if(n > 0 and buffer[n-1] == '\n'){
421
296
buffer[n-1] = '\0'; /* not strictly necessary */