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
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
80
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");
72
188
int main(int argc, char **argv){
75
192
struct termios t_new, t_old;
76
193
char *buffer = NULL;
150
267
fprintf(stderr, "Starting %s\n", argv[0]);
270
if (conflict_detection()){
272
fprintf(stderr, "Stopping %s because of conflict", argv[0]);
153
278
fprintf(stderr, "Storing current terminal attributes\n");
156
281
if(tcgetattr(STDIN_FILENO, &t_old) != 0){
283
error(0, errno, "tcgetattr");
168
293
sigemptyset(&new_action.sa_mask);
169
294
ret = sigaddset(&new_action.sa_mask, SIGINT);
296
error(0, errno, "sigaddset");
174
299
ret = sigaddset(&new_action.sa_mask, SIGHUP);
301
error(0, errno, "sigaddset");
179
304
ret = sigaddset(&new_action.sa_mask, SIGTERM);
306
error(0, errno, "sigaddset");
184
309
/* Need to check if the handler is SIG_IGN before handling:
188
313
ret = sigaction(SIGINT, NULL, &old_action);
315
error(0, errno, "sigaction");
193
318
if(old_action.sa_handler != SIG_IGN){
194
319
ret = sigaction(SIGINT, &new_action, NULL);
321
error(0, errno, "sigaction");
200
325
ret = sigaction(SIGHUP, NULL, &old_action);
327
error(0, errno, "sigaction");
205
330
if(old_action.sa_handler != SIG_IGN){
206
331
ret = sigaction(SIGHUP, &new_action, NULL);
333
error(0, errno, "sigaction");
212
337
ret = sigaction(SIGTERM, NULL, &old_action);
339
error(0, errno, "sigaction");
217
342
if(old_action.sa_handler != SIG_IGN){
218
343
ret = sigaction(SIGTERM, &new_action, NULL);
345
error(0, errno, "sigaction");
289
ret = getline(&buffer, &n, stdin);
414
sret = getline(&buffer, &n, stdin);
291
416
status = EXIT_SUCCESS;
292
417
/* Make n = data size instead of allocated buffer size */
294
419
/* Strip final newline */
295
420
if(n > 0 and buffer[n-1] == '\n'){
296
421
buffer[n-1] = '\0'; /* not strictly necessary */