49
49
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
 
51
51
sig_atomic_t interrupted_by_signal = 0;
 
53
 
const char usplash_name[] = "/sbin/usplash";
 
55
 
static void termination_handler(int signum){
 
56
 
  if(interrupted_by_signal){
 
 
53
static void termination_handler(__attribute__((unused))int signum){
 
59
54
  interrupted_by_signal = 1;
 
60
 
  signal_received = signum;
 
63
 
static bool usplash_write(int *fifo_fd_r,
 
64
 
                          const char *cmd, const char *arg){
 
 
57
static bool usplash_write(const char *cmd, const char *arg){
 
66
 
   * usplash_write(&fd, "TIMEOUT", "15") will write "TIMEOUT 15\0"
 
67
 
   * usplash_write(&fd, "PULSATE", NULL) will write "PULSATE\0"
 
 
59
   * usplash_write("TIMEOUT", "15") will write "TIMEOUT 15\0"
 
 
60
   * usplash_write("PULSATE", NULL) will write "PULSATE\0"
 
73
 
    ret = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
 
 
67
    fifo_fd = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
 
 
68
    if(fifo_fd == -1 and (errno != EINTR or interrupted_by_signal)){
 
 
71
  } while(fifo_fd == -1);
 
80
73
  const char *cmd_line;
 
81
74
  size_t cmd_line_len;
 
82
75
  char *cmd_line_alloc = NULL;
 
85
 
    cmd_line_len = strlen(cmd) + 1;
 
 
78
    cmd_line_len = strlen(cmd);
 
88
81
      ret = asprintf(&cmd_line_alloc, "%s %s", cmd, arg);
 
 
82
      if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
 
91
 
        TEMP_FAILURE_RETRY(close(*fifo_fd_r));
 
 
100
93
  size_t written = 0;
 
102
 
  while(written < cmd_line_len){
 
103
 
    sret = write(*fifo_fd_r, cmd_line + written,
 
 
95
  while(not interrupted_by_signal and written < cmd_line_len){
 
 
96
    sret = write(fifo_fd, cmd_line + written,
 
104
97
                 cmd_line_len - written);
 
107
 
      TEMP_FAILURE_RETRY(close(*fifo_fd_r));
 
108
 
      free(cmd_line_alloc);
 
 
99
      if(errno != EINTR or interrupted_by_signal){
 
 
102
        free(cmd_line_alloc);
 
112
109
    written += (size_t)sret;
 
114
111
  free(cmd_line_alloc);
 
 
113
    ret = close(fifo_fd);
 
 
114
    if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
 
 
118
  if(interrupted_by_signal){
 
119
 
/* Create prompt string */
 
120
 
char *makeprompt(void){
 
123
 
  const char *const cryptsource = getenv("cryptsource");
 
124
 
  const char *const crypttarget = getenv("crypttarget");
 
125
 
  const char prompt_start[] = "Enter passphrase to unlock the disk";
 
127
 
  if(cryptsource == NULL){
 
128
 
    if(crypttarget == NULL){
 
129
 
      ret = asprintf(&prompt, "%s: ", prompt_start);
 
131
 
      ret = asprintf(&prompt, "%s (%s): ", prompt_start,
 
135
 
    if(crypttarget == NULL){
 
136
 
      ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
 
138
 
      ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
 
139
 
                     cryptsource, crypttarget);
 
148
 
pid_t find_usplash(char **cmdline_r, size_t *cmdline_len_r){
 
 
124
int main(__attribute__((unused))int argc,
 
 
125
         __attribute__((unused))char **argv){
 
 
128
  bool an_error_occured = false;
 
 
130
  /* Create prompt string */
 
 
133
    const char *const cryptsource = getenv("cryptsource");
 
 
134
    const char *const crypttarget = getenv("crypttarget");
 
 
135
    const char prompt_start[] = "Enter passphrase to unlock the disk";
 
 
137
    if(cryptsource == NULL){
 
 
138
      if(crypttarget == NULL){
 
 
139
        ret = asprintf(&prompt, "%s: ", prompt_start);
 
 
141
        ret = asprintf(&prompt, "%s (%s): ", prompt_start,
 
 
145
      if(crypttarget == NULL){
 
 
146
        ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
 
 
148
        ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
 
 
149
                       cryptsource, crypttarget);
 
 
157
  /* Find usplash process */
 
 
158
  pid_t usplash_pid = 0;
 
151
159
  char *cmdline = NULL;
 
152
160
  size_t cmdline_len = 0;
 
153
 
  DIR *proc_dir = opendir("/proc");
 
154
 
  if(proc_dir == NULL){
 
159
 
  for(struct dirent *proc_ent = readdir(proc_dir);
 
161
 
      proc_ent = readdir(proc_dir)){
 
166
 
      tmpmax = strtoimax(proc_ent->d_name, &tmp, 10);
 
167
 
      if(errno != 0 or tmp == proc_ent->d_name or *tmp != '\0'
 
168
 
         or tmpmax != (pid_t)tmpmax){
 
 
161
  const char usplash_name[] = "/sbin/usplash";
 
 
163
    DIR *proc_dir = opendir("/proc");
 
 
164
    if(proc_dir == NULL){
 
 
169
    for(struct dirent *proc_ent = readdir(proc_dir);
 
 
171
        proc_ent = readdir(proc_dir)){
 
175
 
    /* Find the executable name by doing readlink() on the
 
176
 
       /proc/<pid>/exe link */
 
177
 
    char exe_target[sizeof(usplash_name)];
 
179
 
      /* create file name string */
 
181
 
      ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
 
184
 
        goto fail_find_usplash;
 
187
 
      /* Check that it refers to a symlink owned by root:root */
 
188
 
      struct stat exe_stat;
 
189
 
      ret = lstat(exe_link, &exe_stat);
 
 
177
        tmpmax = strtoimax(proc_ent->d_name, &tmp, 10);
 
 
178
        if(errno != 0 or tmp == proc_ent->d_name or *tmp != '\0'
 
 
179
           or tmpmax != (pid_t)tmpmax){
 
197
 
        goto fail_find_usplash;
 
199
 
      if(not S_ISLNK(exe_stat.st_mode)
 
200
 
         or exe_stat.st_uid != 0
 
201
 
         or exe_stat.st_gid != 0){
 
206
 
      sret = readlink(exe_link, exe_target, sizeof(exe_target));
 
209
 
    /* Compare executable name */
 
210
 
    if((sret != ((ssize_t)sizeof(exe_target)-1))
 
211
 
       or (memcmp(usplash_name, exe_target,
 
212
 
                  sizeof(exe_target)-1) != 0)){
 
217
 
    /* Read and save the command line of usplash in "cmdline" */
 
219
 
      /* Open /proc/<pid>/cmdline  */
 
 
185
      /* Find the executable name by doing readlink() on the
 
 
186
         /proc/<pid>/exe link */
 
 
187
      char exe_target[sizeof(usplash_name)];
 
222
 
        char *cmdline_filename;
 
223
 
        ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
 
 
189
        /* create file name string */
 
 
191
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
 
226
193
          perror("asprintf");
 
227
 
          goto fail_find_usplash;
 
229
 
        cl_fd = open(cmdline_filename, O_RDONLY);
 
230
 
        free(cmdline_filename);
 
233
 
          goto fail_find_usplash;
 
 
199
        /* Check that it refers to a symlink owned by root:root */
 
 
200
        struct stat exe_stat;
 
 
201
        ret = lstat(exe_link, &exe_stat);
 
 
213
        if(not S_ISLNK(exe_stat.st_mode)
 
 
214
           or exe_stat.st_uid != 0
 
 
215
           or exe_stat.st_gid != 0){
 
 
220
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
 
236
 
      size_t cmdline_allocated = 0;
 
238
 
      const size_t blocksize = 1024;
 
240
 
        /* Allocate more space? */
 
241
 
        if(cmdline_len + blocksize > cmdline_allocated){
 
242
 
          tmp = realloc(cmdline, cmdline_allocated + blocksize);
 
246
 
            goto fail_find_usplash;
 
 
223
      if((sret == ((ssize_t)sizeof(exe_target)-1))
 
 
224
         and (memcmp(usplash_name, exe_target,
 
 
225
                     sizeof(exe_target)-1) == 0)){
 
 
227
        /* Read and save the command line of usplash in "cmdline" */
 
 
229
          /* Open /proc/<pid>/cmdline  */
 
 
232
            char *cmdline_filename;
 
 
233
            ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
 
 
241
            cl_fd = open(cmdline_filename, O_RDONLY);
 
 
244
              free(cmdline_filename);
 
 
249
            free(cmdline_filename);
 
249
 
          cmdline_allocated += blocksize;
 
252
 
        sret = read(cl_fd, cmdline + cmdline_len,
 
253
 
                    cmdline_allocated - cmdline_len);
 
 
251
          size_t cmdline_allocated = 0;
 
 
253
          const size_t blocksize = 1024;
 
 
255
            if(cmdline_len + blocksize > cmdline_allocated){
 
 
256
              tmp = realloc(cmdline, cmdline_allocated + blocksize);
 
 
265
              cmdline_allocated += blocksize;
 
 
267
            sret = read(cl_fd, cmdline + cmdline_len,
 
 
268
                        cmdline_allocated - cmdline_len);
 
 
276
            cmdline_len += (size_t)sret;
 
257
 
          goto fail_find_usplash;
 
259
 
        cmdline_len += (size_t)sret;
 
264
 
        goto fail_find_usplash;
 
267
 
    /* Close directory */
 
268
 
    ret = closedir(proc_dir);
 
271
 
      goto fail_find_usplash;
 
274
 
    *cmdline_r = cmdline;
 
275
 
    *cmdline_len_r = cmdline_len;
 
282
 
  if(proc_dir != NULL){
 
284
283
    closedir(proc_dir);
 
290
 
int main(__attribute__((unused))int argc,
 
291
 
         __attribute__((unused))char **argv){
 
298
 
  pid_t usplash_pid = -1;
 
299
 
  bool usplash_accessed = false;
 
301
 
  char *prompt = makeprompt();
 
306
 
  /* Find usplash process */
 
307
 
  char *cmdline = NULL;
 
308
 
  size_t cmdline_len = 0;
 
309
 
  usplash_pid = find_usplash(&cmdline, &cmdline_len);
 
310
285
  if(usplash_pid == 0){
 
314
290
  /* Set up the signal handler */
 
 
317
293
      new_action = { .sa_handler = termination_handler,
 
319
295
    sigemptyset(&new_action.sa_mask);
 
320
 
    ret = sigaddset(&new_action.sa_mask, SIGINT);
 
325
 
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
 
330
 
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
 
 
296
    sigaddset(&new_action.sa_mask, SIGINT);
 
 
297
    sigaddset(&new_action.sa_mask, SIGHUP);
 
 
298
    sigaddset(&new_action.sa_mask, SIGTERM);
 
335
299
    ret = sigaction(SIGINT, NULL, &old_action);
 
342
305
    if(old_action.sa_handler != SIG_IGN){
 
343
306
      ret = sigaction(SIGINT, &new_action, NULL);
 
351
313
    ret = sigaction(SIGHUP, NULL, &old_action);
 
358
319
    if(old_action.sa_handler != SIG_IGN){
 
359
320
      ret = sigaction(SIGHUP, &new_action, NULL);
 
367
327
    ret = sigaction(SIGTERM, NULL, &old_action);
 
374
333
    if(old_action.sa_handler != SIG_IGN){
 
375
334
      ret = sigaction(SIGTERM, &new_action, NULL);
 
385
 
  usplash_accessed = true;
 
386
343
  /* Write command to FIFO */
 
387
 
  if(not usplash_write(&fifo_fd, "TIMEOUT", "0")){
 
389
 
      perror("usplash_write");
 
394
 
  if(interrupted_by_signal){
 
398
 
  if(not usplash_write(&fifo_fd, "INPUTQUIET", prompt)){
 
400
 
      perror("usplash_write");
 
405
 
  if(interrupted_by_signal){
 
 
344
  if(not interrupted_by_signal){
 
 
345
    if(not usplash_write("TIMEOUT", "0")
 
 
346
       and (errno != EINTR)){
 
 
347
      perror("usplash_write");
 
 
348
      an_error_occured = true;
 
 
351
  if(not interrupted_by_signal and not an_error_occured){
 
 
352
    if(not usplash_write("INPUTQUIET", prompt)
 
 
353
       and (errno != EINTR)){
 
 
354
      perror("usplash_write");
 
 
355
      an_error_occured = true;
 
412
 
  /* Read reply from usplash */
 
414
 
  outfifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
 
415
 
  if(outfifo_fd == -1){
 
422
 
  if(interrupted_by_signal){
 
427
 
  size_t buf_allocated = 0;
 
428
 
  const size_t blocksize = 1024;
 
430
 
    /* Allocate more space */
 
431
 
    if(buf_len + blocksize > buf_allocated){
 
432
 
      char *tmp = realloc(buf, buf_allocated + blocksize);
 
 
360
  /* This is not really a loop; while() is used to be able to "break"
 
 
361
     out of it; those breaks are marked "Big" */
 
 
362
  while(not interrupted_by_signal and not an_error_occured){
 
 
369
      fifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
 
434
371
        if(errno != EINTR){
 
 
373
          an_error_occured = true;
 
 
376
        if(interrupted_by_signal){
 
 
380
    } while(fifo_fd == -1);
 
 
381
    if(interrupted_by_signal or an_error_occured){
 
 
386
    size_t buf_allocated = 0;
 
 
387
    const size_t blocksize = 1024;
 
 
389
      if(buf_len + blocksize > buf_allocated){
 
 
390
        char *tmp = realloc(buf, buf_allocated + blocksize);
 
435
392
          perror("realloc");
 
440
 
      buf_allocated += blocksize;
 
442
 
    sret = read(outfifo_fd, buf + buf_len,
 
443
 
                buf_allocated - buf_len);
 
448
 
      TEMP_FAILURE_RETRY(close(outfifo_fd));
 
451
 
    if(interrupted_by_signal){
 
455
 
    buf_len += (size_t)sret;
 
457
 
  ret = close(outfifo_fd);
 
466
 
  if(interrupted_by_signal){
 
470
 
  if(not usplash_write(&fifo_fd, "TIMEOUT", "15")){
 
472
 
      perror("usplash_write");
 
477
 
  if(interrupted_by_signal){
 
481
 
  ret = close(fifo_fd);
 
490
 
  /* Print password to stdout */
 
492
 
  while(written < buf_len){
 
494
 
      sret = write(STDOUT_FILENO, buf + written, buf_len - written);
 
503
 
    if(interrupted_by_signal){
 
506
 
    written += (size_t)sret;
 
511
 
  if(interrupted_by_signal){
 
524
 
  /* If usplash was never accessed, we can stop now */
 
525
 
  if(not usplash_accessed){
 
531
 
    ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
 
532
 
    if(ret == -1 and errno != EINTR){
 
538
 
  /* Close output FIFO */
 
539
 
  if(outfifo_fd != -1){
 
540
 
    ret = (int)TEMP_FAILURE_RETRY(close(outfifo_fd));
 
 
393
          an_error_occured = true;
 
 
397
        buf_allocated += blocksize;
 
 
400
        sret = read(fifo_fd, buf + buf_len, buf_allocated - buf_len);
 
 
404
            an_error_occured = true;
 
 
407
          if(interrupted_by_signal){
 
 
412
      if(interrupted_by_signal or an_error_occured){
 
 
416
      buf_len += (size_t)sret;
 
 
419
    if(interrupted_by_signal or an_error_occured){
 
 
423
    if(not usplash_write("TIMEOUT", "15")
 
 
424
       and (errno != EINTR)){
 
 
425
        perror("usplash_write");
 
 
426
        an_error_occured = true;
 
 
428
    if(interrupted_by_signal or an_error_occured){
 
 
432
    /* Print password to stdout */
 
 
434
    while(written < buf_len){
 
 
436
        sret = write(STDOUT_FILENO, buf + written, buf_len - written);
 
 
440
            an_error_occured = true;
 
 
443
          if(interrupted_by_signal){
 
 
448
      if(interrupted_by_signal or an_error_occured){
 
 
451
      written += (size_t)sret;
 
 
454
    if(not interrupted_by_signal and not an_error_occured){
 
 
459
  }                             /* end of non-loop while() */
 
 
461
  /* If we got here, an error or interrupt must have happened */
 
546
463
  /* Create argc and argv for new usplash*/
 
547
464
  int cmdline_argc = 0;