1
/*  -*- coding: utf-8 -*- */
 
 
3
 * Usplash - Read a password from usplash 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>.
 
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(),
 
 
40
#include <unistd.h>             /* close(), readlink(), read(),
 
 
41
                                   fork(), setsid(), chdir(), dup2(),
 
17
42
                                   STDERR_FILENO, execv(), access() */
 
18
43
#include <stdlib.h>             /* free(), EXIT_FAILURE, realloc(),
 
19
44
                                   EXIT_SUCCESS, malloc(), _exit(),
 
 
21
46
#include <dirent.h>             /* scandir(), alphasort() */
 
22
47
#include <inttypes.h>           /* intmax_t, strtoumax(), SCNuMAX */
 
23
48
#include <sys/stat.h>           /* struct stat, lstat() */
 
24
 
#include <sysexits.h>           /* EX_OSERR */
 
 
49
#include <sysexits.h>           /* EX_OSERR, EX_UNAVAILABLE */
 
25
50
#include <error.h>              /* error() */
 
26
51
#include <errno.h>              /* TEMP_FAILURE_RETRY */
 
 
52
#include <argz.h>               /* argz_count(), argz_extract() */
 
29
54
sig_atomic_t interrupted_by_signal = 0;
 
30
55
const char plymouth_pid[] = "/dev/.initramfs/plymouth.pid";
 
31
56
const char plymouth_path[] = "/bin/plymouth";
 
32
57
const char plymouthd_path[] = "/sbin/plymouthd";
 
33
 
const char *plymouthd_default_argv[] = {"/sbin/plymouthd", "--mode=boot",
 
 
58
const char *plymouthd_default_argv[] = {"/sbin/plymouthd",
 
34
60
                                        "--attach-to-session",
 
35
 
                                        "--pid-file=/dev/.initramfs/plymouth.pid",
 
38
66
static void termination_handler(__attribute__((unused))int signum){
 
 
288
317
  /* 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;
 
 
318
  char **argv = malloc((argz_count(cmdline, cmdline_len) + 1)
 
 
319
                       * sizeof(char *)); /* Get number of args */
 
 
321
    error(0, errno, "argv = malloc()");
 
302
 
  argv[argv_size] = NULL;
 
 
325
  argz_extract(cmdline, cmdline_len, argv); /* Create argv */
 
 
326
  return (const char **)argv;
 
306
329
int main(__attribute__((unused))int argc,
 
 
314
337
  /* test -x /bin/plymouth */
 
315
338
  ret = access(plymouth_path, X_OK);
 
 
340
    /* Plymouth is probably not installed.  Don't print an error
 
 
341
       message, just exit. */
 
 
342
    exit(EX_UNAVAILABLE);
 
320
345
  { /* Add signal handlers */
 
321
346
    struct sigaction old_action,
 
322
347
      new_action = { .sa_handler = termination_handler,
 
324
349
    sigemptyset(&new_action.sa_mask);
 
325
 
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 }; *sig != 0; sig++){
 
 
350
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 };
 
326
352
      ret = sigaddset(&new_action.sa_mask, *sig);
 
328
 
        error(0, errno, "sigaddset");
 
 
354
        error(EX_OSERR, errno, "sigaddset");
 
331
356
      ret = sigaction(*sig, NULL, &old_action);
 
333
 
        error(0, errno, "sigaction");
 
 
358
        error(EX_OSERR, errno, "sigaction");
 
336
360
      if(old_action.sa_handler != SIG_IGN){
 
337
361
        ret = sigaction(*sig, &new_action, NULL);
 
339
 
          error(0, errno, "sigaction");
 
 
363
          error(EX_OSERR, errno, "sigaction");
 
346
369
  /* plymouth --ping */
 
347
370
  bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
 
348
 
                       (const char *[]){ (const char *)plymouth_path, (const char *)"--ping", (const char *)NULL},
 
 
372
                       { plymouth_path, "--ping", NULL },
 
351
375
    if(interrupted_by_signal){
 
352
376
      kill_and_wait(plymouth_command_pid);
 
 
379
    /* Plymouth is probably not running.  Don't print an error
 
 
380
       message, just exit. */
 
 
381
    exit(EX_UNAVAILABLE);
 
357
384
  prompt = makeprompt();
 
358
385
  ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
 
361
 
    error(0, errno, "asprintf");
 
 
388
    error(EX_OSERR, errno, "asprintf");
 
365
391
  /* 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},
 
 
392
  bret = exec_and_wait(&plymouth_command_pid,
 
 
393
                       plymouth_path, (const char *[])
 
 
394
                       { plymouth_path, "ask-for-password",
 
369
397
  free(prompt_arg);
 
371
 
    if(interrupted_by_signal){
 
372
 
      kill_and_wait(plymouth_command_pid);
 
379
399
    exit(EXIT_SUCCESS);
 
 
401
  if(not interrupted_by_signal){
 
 
402
    /* exec_and_wait failed for some other reason */
 
 
405
  kill_and_wait(plymouth_command_pid);
 
382
 
  const char **plymouthd_argv = NULL;
 
 
407
  const char **plymouthd_argv;
 
383
408
  pid_t pid = get_pid();
 
385
410
    error(0, 0, "plymouthd pid not found");
 
 
411
    plymouthd_argv = plymouthd_default_argv;
 
387
413
    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);
 
 
416
  bret = exec_and_wait(NULL, plymouth_path, (const char *[])
 
 
417
                       { plymouth_path, "quit", NULL },
 
 
422
  bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv,
 
 
427
  exec_and_wait(NULL, plymouth_path, (const char *[])
 
 
428
                { plymouth_path, "show-splash", NULL },
 
404
430
  exit(EXIT_FAILURE);