6
6
#include <stdbool.h> /* bool, false, true */
7
7
#include <fcntl.h> /* open(), O_RDONLY */
8
8
#include <iso646.h> /* and, or, not*/
9
#include <sys/types.h> /* size_t, ssize_t, pid_t, struct dirent,
9
#include <sys/types.h> /* size_t, ssize_t, pid_t, struct
11
11
#include <sys/wait.h> /* waitpid() */
12
12
#include <stddef.h> /* NULL */
13
13
#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()
14
#include <stdio.h> /* asprintf(), perror(), fopen(),
16
#include <unistd.h> /* close(), readlink(), read(),
17
fork(), setsid(), chdir(), dup2(),
17
18
STDERR_FILENO, execv(), access() */
18
19
#include <stdlib.h> /* free(), EXIT_FAILURE, realloc(),
19
20
EXIT_SUCCESS, malloc(), _exit(),
308
313
/* test -x /bin/plymouth */
309
314
ret = access(plymouth_path, X_OK);
316
/* Plymouth is probably not installed. Don't print an error
317
message, just exit. */
318
exit(EX_UNAVAILABLE);
314
321
{ /* Add signal handlers */
315
322
struct sigaction old_action,
316
323
new_action = { .sa_handler = termination_handler,
318
325
sigemptyset(&new_action.sa_mask);
319
for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 }; *sig != 0; sig++){
326
for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 };
320
328
ret = sigaddset(&new_action.sa_mask, *sig);
322
error(0, errno, "sigaddset");
330
error(EX_OSERR, errno, "sigaddset");
325
332
ret = sigaction(*sig, NULL, &old_action);
327
error(0, errno, "sigaction");
334
error(EX_OSERR, errno, "sigaction");
330
336
if(old_action.sa_handler != SIG_IGN){
331
337
ret = sigaction(*sig, &new_action, NULL);
333
error(0, errno, "sigaction");
339
error(EX_OSERR, errno, "sigaction");
340
345
/* plymouth --ping */
341
346
bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
342
(const char *[]){ (const char *)plymouth_path, (const char *)"--ping", (const char *)NULL},
348
{ plymouth_path, "--ping", NULL },
345
351
if(interrupted_by_signal){
346
352
kill_and_wait(plymouth_command_pid);
355
/* Plymouth is probably not running. Don't print an error
356
message, just exit. */
357
exit(EX_UNAVAILABLE);
351
360
prompt = makeprompt();
352
361
ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
355
error(0, errno, "asprintf");
364
error(EX_OSERR, errno, "asprintf");
359
367
/* plymouth ask-for-password --prompt="$prompt" */
360
bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
361
(const char *[]){plymouth_path, "ask-for-password", prompt_arg, NULL},
368
bret = exec_and_wait(&plymouth_command_pid,
369
plymouth_path, (const char *[])
370
{ plymouth_path, "ask-for-password",
363
373
free(prompt_arg);
365
if(interrupted_by_signal){
366
kill_and_wait(plymouth_command_pid);
373
375
exit(EXIT_SUCCESS);
377
if(not interrupted_by_signal){
378
/* exec_and_wait failed for some other reason */
381
kill_and_wait(plymouth_command_pid);
376
const char **plymouthd_argv = NULL;
383
const char **plymouthd_argv;
377
384
pid_t pid = get_pid();
379
386
error(0, 0, "plymouthd pid not found");
387
plymouthd_argv = plymouthd_default_argv;
381
389
plymouthd_argv = getargv(pid);
383
if(plymouthd_argv == NULL){
384
plymouthd_argv = plymouthd_default_argv;
387
bret = exec_and_wait(NULL, plymouth_path,
388
(const char *[]){plymouth_path, "quit", NULL}, false, false);
392
bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv, false, true);
396
exec_and_wait(NULL, plymouth_path,
397
(const char *[]){ plymouth_path, "show-splash", NULL }, false, false);
392
bret = exec_and_wait(NULL, plymouth_path, (const char *[])
393
{ plymouth_path, "quit", NULL },
398
bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv,
403
exec_and_wait(NULL, plymouth_path, (const char *[])
404
{ plymouth_path, "show-splash", NULL },
398
406
exit(EXIT_FAILURE);