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