1
/* -*- coding: utf-8 -*- */
3
* Plymouth - Read a password from Plymouth and output it
5
* Copyright © 2010 Teddy Hogeborn
6
* Copyright © 2010 Björn Påhlsson
8
* This program is free software: you can redistribute it and/or
9
* modify it under the terms of the GNU General Public License as
10
* published by the Free Software Foundation, either version 3 of the
11
* License, or (at your option) any later version.
13
* This program is distributed in the hope that it will be useful, but
14
* WITHOUT ANY WARRANTY; without even the implied warranty of
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
* General Public License for more details.
18
* You should have received a copy of the GNU General Public License
19
* along with this program. If not, see
20
* <http://www.gnu.org/licenses/>.
22
* Contact the authors at <mandos@fukt.bsnet.se>.
25
#define _GNU_SOURCE /* asprintf(), TEMP_FAILURE_RETRY() */
26
#include <signal.h> /* sig_atomic_t, struct sigaction,
27
sigemptyset(), sigaddset(), SIGINT,
28
SIGHUP, SIGTERM, sigaction(),
30
#include <stdbool.h> /* bool, false, true */
31
#include <fcntl.h> /* open(), O_RDONLY */
32
#include <iso646.h> /* and, or, not*/
33
#include <sys/types.h> /* size_t, ssize_t, pid_t, struct
35
#include <sys/wait.h> /* waitpid() */
36
#include <stddef.h> /* NULL */
37
#include <string.h> /* strchr(), memcmp() */
38
#include <stdio.h> /* asprintf(), perror(), fopen(),
40
#include <unistd.h> /* close(), readlink(), read(),
41
fork(), setsid(), chdir(), dup2(),
42
STDERR_FILENO, execv(), access() */
43
#include <stdlib.h> /* free(), EXIT_FAILURE, realloc(),
44
EXIT_SUCCESS, malloc(), _exit(),
46
#include <dirent.h> /* scandir(), alphasort() */
47
#include <inttypes.h> /* intmax_t, strtoumax(), SCNuMAX */
48
#include <sys/stat.h> /* struct stat, lstat() */
49
#include <sysexits.h> /* EX_OSERR, EX_UNAVAILABLE */
50
#include <error.h> /* error() */
51
#include <errno.h> /* TEMP_FAILURE_RETRY */
52
#include <argz.h> /* argz_count(), argz_extract() */
54
sig_atomic_t interrupted_by_signal = 0;
55
const char plymouth_pid[] = "/dev/.initramfs/plymouth.pid";
56
const char plymouth_path[] = "/bin/plymouth";
57
const char plymouthd_path[] = "/sbin/plymouthd";
58
const char *plymouthd_default_argv[] = {"/sbin/plymouthd",
60
"--attach-to-session",
66
static void termination_handler(__attribute__((unused))int signum){
67
if(interrupted_by_signal){
70
interrupted_by_signal = 1;
73
/* Create prompt string */
74
char *makeprompt(void){
77
const char *const cryptsource = getenv("cryptsource");
78
const char *const crypttarget = getenv("crypttarget");
79
const char prompt_start[] = "Unlocking the disk";
80
const char prompt_end[] = "Enter passphrase";
82
if(cryptsource == NULL){
83
if(crypttarget == NULL){
84
ret = asprintf(&prompt, "%s\n%s", prompt_start, prompt_end);
86
ret = asprintf(&prompt, "%s (%s)\n%s", prompt_start,
87
crypttarget, prompt_end);
90
if(crypttarget == NULL){
91
ret = asprintf(&prompt, "%s %s\n%s", prompt_start, cryptsource,
94
ret = asprintf(&prompt, "%s %s (%s)\n%s", prompt_start,
95
cryptsource, crypttarget, prompt_end);
104
void kill_and_wait(pid_t pid){
105
TEMP_FAILURE_RETRY(kill(pid, SIGTERM));
106
TEMP_FAILURE_RETRY(waitpid(pid, NULL, 0));
109
bool become_a_daemon(void){
110
int ret = setuid(geteuid());
112
error(0, errno, "setuid");
118
error(0, errno, "chdir");
121
ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
123
error(0, errno, "dup2");
129
bool exec_and_wait(pid_t *pid_return, const char *path,
130
const char **argv, bool interruptable,
137
error(0, errno, "fork");
143
if(not become_a_daemon()){
148
char **new_argv = NULL;
151
for (; argv[i]!=NULL; i++){
152
tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 1));
154
error(0, errno, "realloc");
159
new_argv[i] = strdup(argv[i]);
163
execv(path, (char *const *)new_argv);
164
error(0, errno, "execv");
167
if(pid_return != NULL){
171
ret = waitpid(pid, &status, 0);
172
} while(ret == -1 and errno == EINTR
173
and ((not interrupted_by_signal)
174
or (not interruptable)));
175
if(interrupted_by_signal and interruptable){
179
error(0, errno, "waitpid");
182
if(WIFEXITED(status) and (WEXITSTATUS(status) == 0)){
188
int is_plymouth(const struct dirent *proc_entry){
194
maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
196
if(errno != 0 or *tmp != '\0'
197
or maxvalue != (uintmax_t)((pid_t)maxvalue)){
201
char exe_target[sizeof(plymouth_path)];
203
ret = asprintf(&exe_link, "/proc/%s/exe", proc_entry->d_name);
205
error(0, errno, "asprintf");
209
struct stat exe_stat;
210
ret = lstat(exe_link, &exe_stat);
214
error(0, errno, "lstat");
219
if(not S_ISLNK(exe_stat.st_mode)
220
or exe_stat.st_uid != 0
221
or exe_stat.st_gid != 0){
226
ssize_t sret = readlink(exe_link, exe_target, sizeof(exe_target));
228
if((sret != (ssize_t)sizeof(plymouth_path)-1) or
229
(memcmp(plymouth_path, exe_target,
230
sizeof(plymouth_path)-1) != 0)){
238
FILE *pidfile = fopen(plymouth_pid, "r");
239
uintmax_t maxvalue = 0;
241
ret = fscanf(pidfile, "%" SCNuMAX, &maxvalue);
248
struct dirent **direntries;
249
ret = scandir("/proc", &direntries, is_plymouth, alphasort);
250
sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
253
pid = (pid_t)maxvalue;
254
if((uintmax_t)pid == maxvalue){
261
const char **getargv(pid_t pid){
263
char *cmdline_filename;
267
ret = asprintf(&cmdline_filename, "/proc/%" PRIuMAX "/cmdline",
270
error(0, errno, "asprintf");
274
/* Open /proc/<pid>/cmdline */
275
cl_fd = open(cmdline_filename, O_RDONLY);
276
free(cmdline_filename);
278
error(0, errno, "open");
282
size_t cmdline_allocated = 0;
283
size_t cmdline_len = 0;
284
char *cmdline = NULL;
286
const size_t blocksize = 1024;
288
/* Allocate more space? */
289
if(cmdline_len + blocksize > cmdline_allocated){
290
tmp = realloc(cmdline, cmdline_allocated + blocksize);
292
error(0, errno, "realloc");
298
cmdline_allocated += blocksize;
302
sret = read(cl_fd, cmdline + cmdline_len,
303
cmdline_allocated - cmdline_len);
305
error(0, errno, "read");
310
cmdline_len += (size_t)sret;
314
error(0, errno, "close");
319
/* we got cmdline and cmdline_len, ignore rest... */
320
char **argv = malloc((argz_count(cmdline, cmdline_len) + 1)
321
* sizeof(char *)); /* Get number of args */
323
error(0, errno, "argv = malloc()");
327
argz_extract(cmdline, cmdline_len, argv); /* Create argv */
328
return (const char **)argv;
331
int main(__attribute__((unused))int argc,
332
__attribute__((unused))char **argv){
335
pid_t plymouth_command_pid;
339
/* test -x /bin/plymouth */
340
ret = access(plymouth_path, X_OK);
342
/* Plymouth is probably not installed. Don't print an error
343
message, just exit. */
344
exit(EX_UNAVAILABLE);
347
{ /* Add signal handlers */
348
struct sigaction old_action,
349
new_action = { .sa_handler = termination_handler,
351
sigemptyset(&new_action.sa_mask);
352
for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 };
354
ret = sigaddset(&new_action.sa_mask, *sig);
356
error(EX_OSERR, errno, "sigaddset");
358
ret = sigaction(*sig, NULL, &old_action);
360
error(EX_OSERR, errno, "sigaction");
362
if(old_action.sa_handler != SIG_IGN){
363
ret = sigaction(*sig, &new_action, NULL);
365
error(EX_OSERR, errno, "sigaction");
371
/* plymouth --ping */
372
bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
374
{ plymouth_path, "--ping", NULL },
377
if(interrupted_by_signal){
378
kill_and_wait(plymouth_command_pid);
381
/* Plymouth is probably not running. Don't print an error
382
message, just exit. */
383
exit(EX_UNAVAILABLE);
386
prompt = makeprompt();
387
ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
390
error(EX_OSERR, errno, "asprintf");
393
/* plymouth ask-for-password --prompt="$prompt" */
394
bret = exec_and_wait(&plymouth_command_pid,
395
plymouth_path, (const char *[])
396
{ plymouth_path, "ask-for-password",
403
if(not interrupted_by_signal){
404
/* exec_and_wait failed for some other reason */
407
kill_and_wait(plymouth_command_pid);
409
const char **plymouthd_argv;
410
pid_t pid = get_pid();
412
error(0, 0, "plymouthd pid not found");
413
plymouthd_argv = plymouthd_default_argv;
415
plymouthd_argv = getargv(pid);
418
bret = exec_and_wait(NULL, plymouth_path, (const char *[])
419
{ plymouth_path, "quit", NULL },
424
bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv,
429
exec_and_wait(NULL, plymouth_path, (const char *[])
430
{ plymouth_path, "show-splash", NULL },