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(),
 
40
 
#include <unistd.h>             /* close(), readlink(), read(),
 
41
 
                                   fork(), setsid(), chdir(), dup2(),
 
 
14
#include <stdio.h>              /* asprintf(), perror(), fopen(), fscanf() */
 
 
15
#include <unistd.h>             /* close(), readlink(), read(), fork()
 
 
16
                                   setsid(), chdir(), dup2()
 
42
17
                                   STDERR_FILENO, execv(), access() */
 
43
18
#include <stdlib.h>             /* free(), EXIT_FAILURE, realloc(),
 
44
19
                                   EXIT_SUCCESS, malloc(), _exit(),
 
 
77
49
  const char *const cryptsource = getenv("cryptsource");
 
78
50
  const char *const crypttarget = getenv("crypttarget");
 
79
 
  const char prompt_start[] = "Unlocking the disk";
 
80
 
  const char prompt_end[] = "Enter passphrase";
 
 
51
  const char prompt_start[] = "Enter passphrase to unlock the disk";
 
82
53
  if(cryptsource == NULL){
 
83
54
    if(crypttarget == NULL){
 
84
 
      ret = asprintf(&prompt, "%s\n%s", prompt_start, prompt_end);
 
 
55
      ret = asprintf(&prompt, "%s: ", prompt_start);
 
86
 
      ret = asprintf(&prompt, "%s (%s)\n%s", prompt_start,
 
87
 
                     crypttarget, prompt_end);
 
 
57
      ret = asprintf(&prompt, "%s (%s): ", prompt_start,
 
90
61
    if(crypttarget == NULL){
 
91
 
      ret = asprintf(&prompt, "%s %s\n%s", prompt_start, cryptsource,
 
 
62
      ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
 
94
 
      ret = asprintf(&prompt, "%s %s (%s)\n%s", prompt_start,
 
95
 
                     cryptsource, crypttarget, prompt_end);
 
 
64
      ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
 
 
65
                     cryptsource, crypttarget);
 
 
347
308
  /* test -x /bin/plymouth */
 
348
309
  ret = access(plymouth_path, X_OK);
 
350
 
    /* Plymouth is probably not installed.  Don't print an error
 
351
 
       message, just exit. */
 
352
 
    exit(EX_UNAVAILABLE);
 
355
314
  { /* Add signal handlers */
 
356
315
    struct sigaction old_action,
 
357
316
      new_action = { .sa_handler = termination_handler,
 
359
318
    sigemptyset(&new_action.sa_mask);
 
360
 
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 };
 
 
319
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 }; *sig != 0; sig++){
 
362
320
      ret = sigaddset(&new_action.sa_mask, *sig);
 
364
 
        error(EX_OSERR, errno, "sigaddset");
 
 
322
        error(0, errno, "sigaddset");
 
366
325
      ret = sigaction(*sig, NULL, &old_action);
 
368
 
        error(EX_OSERR, errno, "sigaction");
 
 
327
        error(0, errno, "sigaction");
 
370
330
      if(old_action.sa_handler != SIG_IGN){
 
371
331
        ret = sigaction(*sig, &new_action, NULL);
 
373
 
          error(EX_OSERR, errno, "sigaction");
 
 
333
          error(0, errno, "sigaction");
 
379
340
  /* plymouth --ping */
 
380
341
  bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
 
382
 
                       { plymouth_path, "--ping", NULL },
 
 
342
                       (const char *[]){ (const char *)plymouth_path, (const char *)"--ping", (const char *)NULL},
 
385
345
    if(interrupted_by_signal){
 
386
346
      kill_and_wait(plymouth_command_pid);
 
389
 
    /* Plymouth is probably not running.  Don't print an error
 
390
 
       message, just exit. */
 
391
 
    exit(EX_UNAVAILABLE);
 
394
351
  prompt = makeprompt();
 
395
352
  ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
 
398
 
    error(EX_OSERR, errno, "asprintf");
 
 
355
    error(0, errno, "asprintf");
 
401
359
  /* plymouth ask-for-password --prompt="$prompt" */
 
402
 
  bret = exec_and_wait(&plymouth_command_pid,
 
403
 
                       plymouth_path, (const char *[])
 
404
 
                       { plymouth_path, "ask-for-password",
 
 
360
  bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
 
 
361
                       (const char *[]){plymouth_path, "ask-for-password", prompt_arg, NULL},
 
407
363
  free(prompt_arg);
 
 
365
    if(interrupted_by_signal){
 
 
366
      kill_and_wait(plymouth_command_pid);
 
409
373
    exit(EXIT_SUCCESS);
 
411
 
  if(not interrupted_by_signal){
 
412
 
    /* exec_and_wait failed for some other reason */
 
415
 
  kill_and_wait(plymouth_command_pid);
 
417
 
  const char **plymouthd_argv;
 
 
376
  const char **plymouthd_argv = NULL;
 
418
377
  pid_t pid = get_pid();
 
420
379
    error(0, 0, "plymouthd pid not found");
 
 
381
    plymouthd_argv = getargv(pid);
 
 
383
  if(plymouthd_argv == NULL){
 
421
384
    plymouthd_argv = plymouthd_default_argv;
 
423
 
    plymouthd_argv = getargv(pid);
 
426
 
  bret = exec_and_wait(NULL, plymouth_path, (const char *[])
 
427
 
                       { plymouth_path, "quit", NULL },
 
432
 
  bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv,
 
437
 
  exec_and_wait(NULL, plymouth_path, (const char *[])
 
438
 
                { plymouth_path, "show-splash", NULL },
 
 
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);
 
440
398
  exit(EXIT_FAILURE);