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
42
stdin, feof(), fputc()
49
47
#include <error.h> /* error() */
50
48
#include <iso646.h> /* or, not */
51
49
#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 */
50
#include <string.h> /* strlen, rindex */
55
51
#include <argp.h> /* struct argp_option, struct
56
52
argp_state, struct argp,
57
53
argp_parse(), error_t,
59
55
ARGP_ERR_UNKNOWN */
60
56
#include <sysexits.h> /* EX_SOFTWARE, EX_OSERR,
61
57
EX_UNAVAILABLE, EX_IOERR, EX_OK */
62
#include <fcntl.h> /* open() */
64
59
volatile sig_atomic_t quit_now = 0;
65
60
int signal_received;
67
62
const char *argp_program_version = "password-prompt " VERSION;
68
63
const char *argp_program_bug_address = "<mandos@fukt.bsnet.se>";
70
/* Needed for conflict resolution */
71
const char plymouth_name[] = "plymouthd";
72
const char plymouth_alt_name[] = "plymouthd";
75
65
static void termination_handler(int signum){
80
70
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
73
int main(int argc, char **argv){
267
152
fprintf(stderr, "Starting %s\n", argv[0]);
270
if (conflict_detection()){
272
fprintf(stderr, "Stopping %s because of conflict", argv[0]);
278
155
fprintf(stderr, "Storing current terminal attributes\n");