1
/* -*- coding: utf-8 -*- */
3
* Plymouth - Read a password from Plymouth and output it
5
* Copyright © 2010-2011 Teddy Hogeborn
6
* Copyright © 2010-2011 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@recompile.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(),
39
fscanf(), vasprintf(), fprintf(),
41
#include <unistd.h> /* close(), readlink(), read(),
42
fork(), setsid(), chdir(), dup2(),
43
STDERR_FILENO, execv(), access() */
44
#include <stdlib.h> /* free(), EXIT_FAILURE, realloc(),
45
EXIT_SUCCESS, malloc(), _exit(),
47
#include <dirent.h> /* scandir(), alphasort() */
48
#include <inttypes.h> /* intmax_t, strtoumax(), SCNuMAX */
49
#include <sys/stat.h> /* struct stat, lstat() */
50
#include <sysexits.h> /* EX_OSERR, EX_UNAVAILABLE */
51
#include <error.h> /* error() */
52
#include <errno.h> /* TEMP_FAILURE_RETRY */
53
#include <argz.h> /* argz_count(), argz_extract() */
54
#include <stdarg.h> /* va_list, va_start(), ... */
56
sig_atomic_t interrupted_by_signal = 0;
58
/* Used by Ubuntu 11.04 (Natty Narwahl) */
59
const char plymouth_old_pid[] = "/dev/.initramfs/plymouth.pid";
60
/* Used by Ubuntu 11.10 (Oneiric Ocelot) */
61
const char plymouth_pid[] = "/run/initramfs/plymouth.pid";
63
const char plymouth_path[] = "/bin/plymouth";
64
const char plymouthd_path[] = "/sbin/plymouthd";
65
const char *plymouthd_default_argv[] = {"/sbin/plymouthd",
67
"--attach-to-session",
70
static void termination_handler(__attribute__((unused))int signum){
71
if(interrupted_by_signal){
74
interrupted_by_signal = 1;
77
/* Function to use when printing errors */
78
void error_plus(int status, int errnum, const char *formatstring,
84
va_start(ap, formatstring);
85
ret = vasprintf(&text, formatstring, ap);
87
fprintf(stderr, "Mandos plugin %s: ",
88
program_invocation_short_name);
89
vfprintf(stderr, formatstring, ap);
90
fprintf(stderr, ": ");
91
fprintf(stderr, "%s\n", strerror(errnum));
92
error(status, errno, "vasprintf while printing error");
95
fprintf(stderr, "Mandos plugin ");
96
error(status, errnum, "%s", text);
100
/* Create prompt string */
101
char *makeprompt(void){
104
const char *const cryptsource = getenv("cryptsource");
105
const char *const crypttarget = getenv("crypttarget");
106
const char prompt_start[] = "Unlocking the disk";
107
const char prompt_end[] = "Enter passphrase";
109
if(cryptsource == NULL){
110
if(crypttarget == NULL){
111
ret = asprintf(&prompt, "%s\n%s", prompt_start, prompt_end);
113
ret = asprintf(&prompt, "%s (%s)\n%s", prompt_start,
114
crypttarget, prompt_end);
117
if(crypttarget == NULL){
118
ret = asprintf(&prompt, "%s %s\n%s", prompt_start, cryptsource,
121
ret = asprintf(&prompt, "%s %s (%s)\n%s", prompt_start,
122
cryptsource, crypttarget, prompt_end);
131
void kill_and_wait(pid_t pid){
132
TEMP_FAILURE_RETRY(kill(pid, SIGTERM));
133
TEMP_FAILURE_RETRY(waitpid(pid, NULL, 0));
136
bool become_a_daemon(void){
137
int ret = setuid(geteuid());
139
error_plus(0, errno, "setuid");
145
error_plus(0, errno, "chdir");
148
ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
150
error_plus(0, errno, "dup2");
156
bool exec_and_wait(pid_t *pid_return, const char *path,
157
const char **argv, bool interruptable,
164
error_plus(0, errno, "fork");
170
if(not become_a_daemon()){
175
char **new_argv = NULL;
178
for (; argv[i]!=NULL; i++){
179
tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 1));
181
error_plus(0, errno, "realloc");
186
new_argv[i] = strdup(argv[i]);
190
execv(path, (char *const *)new_argv);
191
error_plus(0, errno, "execv");
194
if(pid_return != NULL){
198
ret = waitpid(pid, &status, 0);
199
} while(ret == -1 and errno == EINTR
200
and ((not interrupted_by_signal)
201
or (not interruptable)));
202
if(interrupted_by_signal and interruptable){
206
error_plus(0, errno, "waitpid");
209
if(WIFEXITED(status) and (WEXITSTATUS(status) == 0)){
215
int is_plymouth(const struct dirent *proc_entry){
221
maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
223
if(errno != 0 or *tmp != '\0'
224
or maxvalue != (uintmax_t)((pid_t)maxvalue)){
228
char exe_target[sizeof(plymouthd_path)];
230
ret = asprintf(&exe_link, "/proc/%s/exe", proc_entry->d_name);
232
error_plus(0, errno, "asprintf");
236
struct stat exe_stat;
237
ret = lstat(exe_link, &exe_stat);
241
error_plus(0, errno, "lstat");
246
if(not S_ISLNK(exe_stat.st_mode)
247
or exe_stat.st_uid != 0
248
or exe_stat.st_gid != 0){
253
ssize_t sret = readlink(exe_link, exe_target, sizeof(exe_target));
255
if((sret != (ssize_t)sizeof(plymouthd_path)-1) or
256
(memcmp(plymouthd_path, exe_target,
257
sizeof(plymouthd_path)-1) != 0)){
265
uintmax_t maxvalue = 0;
266
FILE *pidfile = fopen(plymouth_pid, "r");
267
/* Try the new pid file location */
269
ret = fscanf(pidfile, "%" SCNuMAX, &maxvalue);
275
/* Try the old pid file location */
277
pidfile = fopen(plymouth_pid, "r");
279
ret = fscanf(pidfile, "%" SCNuMAX, &maxvalue);
286
/* Look for a plymouth process */
288
struct dirent **direntries = NULL;
289
ret = scandir("/proc", &direntries, is_plymouth, alphasort);
291
error_plus(0, errno, "scandir");
294
ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
296
error_plus(0, errno, "sscanf");
299
/* scandir might preallocate for this variable (man page unclear).
300
even if ret == 0, therefore we need to free it. */
304
pid = (pid_t)maxvalue;
305
if((uintmax_t)pid == maxvalue){
312
const char **getargv(pid_t pid){
314
char *cmdline_filename;
318
ret = asprintf(&cmdline_filename, "/proc/%" PRIuMAX "/cmdline",
321
error_plus(0, errno, "asprintf");
325
/* Open /proc/<pid>/cmdline */
326
cl_fd = open(cmdline_filename, O_RDONLY);
327
free(cmdline_filename);
329
error_plus(0, errno, "open");
333
size_t cmdline_allocated = 0;
334
size_t cmdline_len = 0;
335
char *cmdline = NULL;
337
const size_t blocksize = 1024;
339
/* Allocate more space? */
340
if(cmdline_len + blocksize > cmdline_allocated){
341
tmp = realloc(cmdline, cmdline_allocated + blocksize);
343
error_plus(0, errno, "realloc");
349
cmdline_allocated += blocksize;
353
sret = read(cl_fd, cmdline + cmdline_len,
354
cmdline_allocated - cmdline_len);
356
error_plus(0, errno, "read");
361
cmdline_len += (size_t)sret;
365
error_plus(0, errno, "close");
370
/* we got cmdline and cmdline_len, ignore rest... */
371
char **argv = malloc((argz_count(cmdline, cmdline_len) + 1)
372
* sizeof(char *)); /* Get number of args */
374
error_plus(0, errno, "argv = malloc()");
378
argz_extract(cmdline, cmdline_len, argv); /* Create argv */
379
return (const char **)argv;
382
int main(__attribute__((unused))int argc,
383
__attribute__((unused))char **argv){
386
pid_t plymouth_command_pid;
390
/* test -x /bin/plymouth */
391
ret = access(plymouth_path, X_OK);
393
/* Plymouth is probably not installed. Don't print an error
394
message, just exit. */
395
exit(EX_UNAVAILABLE);
398
{ /* Add signal handlers */
399
struct sigaction old_action,
400
new_action = { .sa_handler = termination_handler,
402
sigemptyset(&new_action.sa_mask);
403
for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 };
405
ret = sigaddset(&new_action.sa_mask, *sig);
407
error_plus(EX_OSERR, errno, "sigaddset");
409
ret = sigaction(*sig, NULL, &old_action);
411
error_plus(EX_OSERR, errno, "sigaction");
413
if(old_action.sa_handler != SIG_IGN){
414
ret = sigaction(*sig, &new_action, NULL);
416
error_plus(EX_OSERR, errno, "sigaction");
422
/* plymouth --ping */
423
bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
425
{ plymouth_path, "--ping", NULL },
428
if(interrupted_by_signal){
429
kill_and_wait(plymouth_command_pid);
432
/* Plymouth is probably not running. Don't print an error
433
message, just exit. */
434
exit(EX_UNAVAILABLE);
437
prompt = makeprompt();
438
ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
441
error_plus(EX_OSERR, errno, "asprintf");
444
/* plymouth ask-for-password --prompt="$prompt" */
445
bret = exec_and_wait(&plymouth_command_pid,
446
plymouth_path, (const char *[])
447
{ plymouth_path, "ask-for-password",
454
if(not interrupted_by_signal){
455
/* exec_and_wait failed for some other reason */
458
kill_and_wait(plymouth_command_pid);
460
const char **plymouthd_argv;
461
pid_t pid = get_pid();
463
error_plus(0, 0, "plymouthd pid not found");
464
plymouthd_argv = plymouthd_default_argv;
466
plymouthd_argv = getargv(pid);
469
bret = exec_and_wait(NULL, plymouth_path, (const char *[])
470
{ plymouth_path, "quit", NULL },
475
bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv,
480
exec_and_wait(NULL, plymouth_path, (const char *[])
481
{ plymouth_path, "show-splash", NULL },