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@fukt.bsnet.se>.
1
25
#define _GNU_SOURCE /* asprintf(), TEMP_FAILURE_RETRY() */
2
26
#include <signal.h> /* sig_atomic_t, struct sigaction,
3
27
sigemptyset(), sigaddset(), SIGINT,
6
30
#include <stdbool.h> /* bool, false, true */
7
31
#include <fcntl.h> /* open(), O_RDONLY */
8
32
#include <iso646.h> /* and, or, not*/
9
#include <sys/types.h> /* size_t, ssize_t, pid_t, struct dirent,
33
#include <sys/types.h> /* size_t, ssize_t, pid_t, struct
11
35
#include <sys/wait.h> /* waitpid() */
12
36
#include <stddef.h> /* NULL */
13
37
#include <string.h> /* strchr(), memcmp() */
14
#include <stdio.h> /* asprintf(), perror(), fopen(), fscanf() */
15
#include <unistd.h> /* close(), readlink(), read(), fork()
16
setsid(), chdir(), dup2()
38
#include <stdio.h> /* asprintf(), perror(), fopen(),
39
fscanf(), vasprintf(), fprintf(),
41
#include <unistd.h> /* close(), readlink(), read(),
42
fork(), setsid(), chdir(), dup2(),
17
43
STDERR_FILENO, execv(), access() */
18
44
#include <stdlib.h> /* free(), EXIT_FAILURE, realloc(),
19
45
EXIT_SUCCESS, malloc(), _exit(),
21
47
#include <dirent.h> /* scandir(), alphasort() */
22
48
#include <inttypes.h> /* intmax_t, strtoumax(), SCNuMAX */
23
49
#include <sys/stat.h> /* struct stat, lstat() */
24
#include <sysexits.h> /* EX_OSERR */
50
#include <sysexits.h> /* EX_OSERR, EX_UNAVAILABLE */
25
51
#include <error.h> /* error() */
26
52
#include <errno.h> /* TEMP_FAILURE_RETRY */
53
#include <argz.h> /* argz_count(), argz_extract() */
54
#include <stdarg.h> /* va_list, va_start(), ... */
29
56
sig_atomic_t interrupted_by_signal = 0;
30
57
const char plymouth_pid[] = "/dev/.initramfs/plymouth.pid";
31
58
const char plymouth_path[] = "/bin/plymouth";
32
59
const char plymouthd_path[] = "/sbin/plymouthd";
33
const char *plymouthd_default_argv[] = {"/sbin/plymouthd", "--mode=boot",
60
const char *plymouthd_default_argv[] = {"/sbin/plymouthd",
34
62
"--attach-to-session",
35
"--pid-file=/dev/.initramfs/plymouth.pid",
38
68
static void termination_handler(__attribute__((unused))int signum){
42
72
interrupted_by_signal = 1;
75
/* Function to use when printing errors */
76
void error_plus(int status, int errnum, const char *formatstring,
82
va_start(ap, formatstring);
83
ret = vasprintf(&text, formatstring, ap);
85
fprintf(stderr, "Mandos plugin %s: ",
86
program_invocation_short_name);
87
vfprintf(stderr, formatstring, ap);
88
fprintf(stderr, ": ");
89
fprintf(stderr, "%s\n", strerror(errnum));
90
error(status, errno, "vasprintf while printing error");
93
fprintf(stderr, "Mandos plugin ");
94
error(status, errnum, "%s", text);
45
98
/* Create prompt string */
46
99
char *makeprompt(void){
49
102
const char *const cryptsource = getenv("cryptsource");
50
103
const char *const crypttarget = getenv("crypttarget");
51
const char prompt_start[] = "Enter passphrase to unlock the disk";
104
const char prompt_start[] = "Unlocking the disk";
105
const char prompt_end[] = "Enter passphrase";
53
107
if(cryptsource == NULL){
54
108
if(crypttarget == NULL){
55
ret = asprintf(&prompt, "%s: ", prompt_start);
109
ret = asprintf(&prompt, "%s\n%s", prompt_start, prompt_end);
57
ret = asprintf(&prompt, "%s (%s): ", prompt_start,
111
ret = asprintf(&prompt, "%s (%s)\n%s", prompt_start,
112
crypttarget, prompt_end);
61
115
if(crypttarget == NULL){
62
ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
116
ret = asprintf(&prompt, "%s %s\n%s", prompt_start, cryptsource,
64
ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
65
cryptsource, crypttarget);
119
ret = asprintf(&prompt, "%s %s (%s)\n%s", prompt_start,
120
cryptsource, crypttarget, prompt_end);
164
219
maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
166
if(errno != 0 or *tmp != '\0' or maxvalue != (uintmax_t)((pid_t)maxvalue)){
221
if(errno != 0 or *tmp != '\0'
222
or maxvalue != (uintmax_t)((pid_t)maxvalue)){
170
char exe_target[sizeof(plymouth_path)];
226
char exe_target[sizeof(plymouthd_path)];
172
228
ret = asprintf(&exe_link, "/proc/%s/exe", proc_entry->d_name);
174
error(0, errno, "asprintf");
230
error_plus(0, errno, "asprintf");
178
234
struct stat exe_stat;
179
235
ret = lstat(exe_link, &exe_stat);
182
238
if(errno != ENOENT){
183
error(0, errno, "lstat");
239
error_plus(0, errno, "lstat");
280
347
} while(sret != 0);
281
348
ret = close(cl_fd);
283
error(0, errno, "close");
350
error_plus(0, errno, "close");
288
355
/* we got cmdline and cmdline_len, ignore rest... */
289
const char **argv = NULL;
290
size_t argv_size = 0;
291
for(char *arg = cmdline; arg-cmdline < (ssize_t)cmdline_len;
292
arg = strchr(arg, '\0')+1){
293
tmp = realloc(argv, ((++argv_size)+1)*sizeof(char *));
295
error(0, errno, "realloc");
299
argv = (const char **)tmp;
300
argv[argv_size-1] = arg;
356
char **argv = malloc((argz_count(cmdline, cmdline_len) + 1)
357
* sizeof(char *)); /* Get number of args */
359
error_plus(0, errno, "argv = malloc()");
302
argv[argv_size] = NULL;
363
argz_extract(cmdline, cmdline_len, argv); /* Create argv */
364
return (const char **)argv;
306
367
int main(__attribute__((unused))int argc,
314
375
/* test -x /bin/plymouth */
315
376
ret = access(plymouth_path, X_OK);
378
/* Plymouth is probably not installed. Don't print an error
379
message, just exit. */
380
exit(EX_UNAVAILABLE);
320
383
{ /* Add signal handlers */
321
384
struct sigaction old_action,
322
385
new_action = { .sa_handler = termination_handler,
324
387
sigemptyset(&new_action.sa_mask);
325
for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 }; *sig != 0; sig++){
388
for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 };
326
390
ret = sigaddset(&new_action.sa_mask, *sig);
328
error(0, errno, "sigaddset");
392
error_plus(EX_OSERR, errno, "sigaddset");
331
394
ret = sigaction(*sig, NULL, &old_action);
333
error(0, errno, "sigaction");
396
error_plus(EX_OSERR, errno, "sigaction");
336
398
if(old_action.sa_handler != SIG_IGN){
337
399
ret = sigaction(*sig, &new_action, NULL);
339
error(0, errno, "sigaction");
401
error_plus(EX_OSERR, errno, "sigaction");
346
407
/* plymouth --ping */
347
408
bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
348
(const char *[]){ (const char *)plymouth_path, (const char *)"--ping", (const char *)NULL},
410
{ plymouth_path, "--ping", NULL },
351
413
if(interrupted_by_signal){
352
414
kill_and_wait(plymouth_command_pid);
417
/* Plymouth is probably not running. Don't print an error
418
message, just exit. */
419
exit(EX_UNAVAILABLE);
357
422
prompt = makeprompt();
358
423
ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
361
error(0, errno, "asprintf");
426
error_plus(EX_OSERR, errno, "asprintf");
365
429
/* plymouth ask-for-password --prompt="$prompt" */
366
bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
367
(const char *[]){plymouth_path, "ask-for-password", prompt_arg, NULL},
430
bret = exec_and_wait(&plymouth_command_pid,
431
plymouth_path, (const char *[])
432
{ plymouth_path, "ask-for-password",
369
435
free(prompt_arg);
371
if(interrupted_by_signal){
372
kill_and_wait(plymouth_command_pid);
379
437
exit(EXIT_SUCCESS);
439
if(not interrupted_by_signal){
440
/* exec_and_wait failed for some other reason */
443
kill_and_wait(plymouth_command_pid);
382
const char **plymouthd_argv = NULL;
445
const char **plymouthd_argv;
383
446
pid_t pid = get_pid();
385
error(0, 0, "plymouthd pid not found");
448
error_plus(0, 0, "plymouthd pid not found");
449
plymouthd_argv = plymouthd_default_argv;
387
451
plymouthd_argv = getargv(pid);
389
if(plymouthd_argv == NULL){
390
plymouthd_argv = plymouthd_default_argv;
393
bret = exec_and_wait(NULL, plymouth_path,
394
(const char *[]){plymouth_path, "quit", NULL}, false, false);
398
bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv, false, true);
402
exec_and_wait(NULL, plymouth_path,
403
(const char *[]){ plymouth_path, "show-splash", NULL }, false, false);
454
bret = exec_and_wait(NULL, plymouth_path, (const char *[])
455
{ plymouth_path, "quit", NULL },
460
bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv,
465
exec_and_wait(NULL, plymouth_path, (const char *[])
466
{ plymouth_path, "show-splash", NULL },
404
468
exit(EXIT_FAILURE);