/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/usplash.c

  • Committer: Teddy Hogeborn
  • Date: 2009-09-16 23:28:39 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090916232839-3o7i8qmcdcz5j1ya
* init.d-mandos (Required-Start, Required-Stop): Bug fix: Added
                 "$syslog", thanks to Petter Reinholdtsen
                 <pere@hungry.com> (Debian bug #546928).

* initramfs-tools-script: Removed erroneous comment.

* plugins.d/askpass-fifo.c: Removed TEMP_FAILURE_RETRY since it is
                            not needed.

* plugins.d/mandos-client.c (main): Bug fix: Initialize
                                    "old_sigterm_action".

* plugins.d/splashy.c (main): Bug fix: really check return value from
                              "sigaddset".  Fix some warnings on
                              64-bit systems.

* plugins.d/usplash.c (termination_handler, main): Save received
                                                   signal and
                                                   re-raise it on
                                                   exit.
  (usplash_write): Do not close FIFO, instead, take an additional file
                   descriptor pointer to it and open only when needed
                   (all callers changed).  Abort immediately on EINTR.
                   Bug fix:  Add NUL byte on single-word commands.
                   Ignore "interrupted_by_signal".
  (makeprompt, find_usplash): New; broken out from "main()".
  (find_usplash): Bug fix: close /proc/<pid>/cmdline FD on error.
  (main): Reorganized to jump to a new "failure" label on any error.
          Bug fix: check return values from sigaddset.
          New variable "usplash_accessed" to flag if usplash(8) needs
          to be killed and restarted.  Removed the "an_error_occured"
          variable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
23
23
 */
24
24
 
25
 
#define _GNU_SOURCE             /* asprintf() */
 
25
#define _GNU_SOURCE             /* asprintf(), TEMP_FAILURE_RETRY() */
26
26
#include <signal.h>             /* sig_atomic_t, struct sigaction,
27
27
                                   sigemptyset(), sigaddset(), SIGINT,
28
28
                                   SIGHUP, SIGTERM, sigaction(),
49
49
#include <sys/stat.h>           /* struct stat, lstat(), S_ISLNK */
50
50
 
51
51
sig_atomic_t interrupted_by_signal = 0;
 
52
int signal_received;
 
53
const char usplash_name[] = "/sbin/usplash";
52
54
 
53
 
static void termination_handler(__attribute__((unused))int signum){
 
55
static void termination_handler(int signum){
 
56
  if(interrupted_by_signal){
 
57
    return;
 
58
  }
54
59
  interrupted_by_signal = 1;
 
60
  signal_received = signum;
55
61
}
56
62
 
57
 
static bool usplash_write(const char *cmd, const char *arg){
 
63
static bool usplash_write(int *fifo_fd_r,
 
64
                          const char *cmd, const char *arg){
58
65
  /* 
59
 
   * usplash_write("TIMEOUT", "15") will write "TIMEOUT 15\0"
60
 
   * usplash_write("PULSATE", NULL) will write "PULSATE\0"
 
66
   * usplash_write(&fd, "TIMEOUT", "15") will write "TIMEOUT 15\0"
 
67
   * usplash_write(&fd, "PULSATE", NULL) will write "PULSATE\0"
61
68
   * SEE ALSO
62
69
   *         usplash_write(8)
63
70
   */
64
71
  int ret;
65
 
  int fifo_fd;
66
 
  do {
67
 
    fifo_fd = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
68
 
    if(fifo_fd == -1 and (errno != EINTR or interrupted_by_signal)){
 
72
  if(*fifo_fd_r == -1){
 
73
    ret = open("/dev/.initramfs/usplash_fifo", O_WRONLY);
 
74
    if(ret == -1){
69
75
      return false;
70
76
    }
71
 
  } while(fifo_fd == -1);
 
77
    *fifo_fd_r = ret;
 
78
  }
72
79
  
73
80
  const char *cmd_line;
74
81
  size_t cmd_line_len;
75
82
  char *cmd_line_alloc = NULL;
76
83
  if(arg == NULL){
77
84
    cmd_line = cmd;
78
 
    cmd_line_len = strlen(cmd);
 
85
    cmd_line_len = strlen(cmd) + 1;
79
86
  } else {
80
87
    do {
81
88
      ret = asprintf(&cmd_line_alloc, "%s %s", cmd, arg);
82
 
      if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
 
89
      if(ret == -1){
83
90
        int e = errno;
84
 
        close(fifo_fd);
 
91
        TEMP_FAILURE_RETRY(close(*fifo_fd_r));
85
92
        errno = e;
86
93
        return false;
87
94
      }
92
99
  
93
100
  size_t written = 0;
94
101
  ssize_t sret = 0;
95
 
  while(not interrupted_by_signal and written < cmd_line_len){
96
 
    sret = write(fifo_fd, cmd_line + written,
 
102
  while(written < cmd_line_len){
 
103
    sret = write(*fifo_fd_r, cmd_line + written,
97
104
                 cmd_line_len - written);
98
105
    if(sret == -1){
99
 
      if(errno != EINTR or interrupted_by_signal){
100
 
        int e = errno;
101
 
        close(fifo_fd);
102
 
        free(cmd_line_alloc);
103
 
        errno = e;
104
 
        return false;
105
 
      } else {
106
 
        continue;
107
 
      }
 
106
      int e = errno;
 
107
      TEMP_FAILURE_RETRY(close(*fifo_fd_r));
 
108
      free(cmd_line_alloc);
 
109
      errno = e;
 
110
      return false;
108
111
    }
109
112
    written += (size_t)sret;
110
113
  }
111
114
  free(cmd_line_alloc);
112
 
  do {
113
 
    ret = close(fifo_fd);
114
 
    if(ret == -1 and (errno != EINTR or interrupted_by_signal)){
115
 
      return false;
116
 
    }
117
 
  } while(ret == -1);
118
 
  if(interrupted_by_signal){
119
 
    return false;
120
 
  }
 
115
  
121
116
  return true;
122
117
}
123
118
 
 
119
/* Create prompt string */
 
120
char *makeprompt(void){
 
121
  int ret = 0;
 
122
  char *prompt;
 
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";
 
126
  
 
127
  if(cryptsource == NULL){
 
128
    if(crypttarget == NULL){
 
129
      ret = asprintf(&prompt, "%s: ", prompt_start);
 
130
    } else {
 
131
      ret = asprintf(&prompt, "%s (%s): ", prompt_start,
 
132
                     crypttarget);
 
133
    }
 
134
  } else {
 
135
    if(crypttarget == NULL){
 
136
      ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
 
137
    } else {
 
138
      ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
 
139
                     cryptsource, crypttarget);
 
140
    }
 
141
  }
 
142
  if(ret == -1){
 
143
    return NULL;
 
144
  }
 
145
  return prompt;
 
146
}
 
147
 
 
148
pid_t find_usplash(char **cmdline_r, size_t *cmdline_len_r){
 
149
  int ret = 0;
 
150
  ssize_t sret = 0;
 
151
  char *cmdline = NULL;
 
152
  size_t cmdline_len = 0;
 
153
  DIR *proc_dir = opendir("/proc");
 
154
  if(proc_dir == NULL){
 
155
    perror("opendir");
 
156
    return -1;
 
157
  }
 
158
  errno = 0;
 
159
  for(struct dirent *proc_ent = readdir(proc_dir);
 
160
      proc_ent != NULL;
 
161
      proc_ent = readdir(proc_dir)){
 
162
    pid_t pid;
 
163
    {
 
164
      intmax_t tmpmax;
 
165
      char *tmp;
 
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){
 
169
        /* Not a process */
 
170
        errno = 0;
 
171
        continue;
 
172
      }
 
173
      pid = (pid_t)tmpmax;
 
174
    }
 
175
    /* Find the executable name by doing readlink() on the
 
176
       /proc/<pid>/exe link */
 
177
    char exe_target[sizeof(usplash_name)];
 
178
    {
 
179
      /* create file name string */
 
180
      char *exe_link;
 
181
      ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
 
182
      if(ret == -1){
 
183
        perror("asprintf");
 
184
        goto fail_find_usplash;
 
185
      }
 
186
      
 
187
      /* Check that it refers to a symlink owned by root:root */
 
188
      struct stat exe_stat;
 
189
      ret = lstat(exe_link, &exe_stat);
 
190
      if(ret == -1){
 
191
        if(errno == ENOENT){
 
192
          free(exe_link);
 
193
          continue;
 
194
        }
 
195
        perror("lstat");
 
196
        free(exe_link);
 
197
        goto fail_find_usplash;
 
198
      }
 
199
      if(not S_ISLNK(exe_stat.st_mode)
 
200
         or exe_stat.st_uid != 0
 
201
         or exe_stat.st_gid != 0){
 
202
        free(exe_link);
 
203
        continue;
 
204
      }
 
205
        
 
206
      sret = readlink(exe_link, exe_target, sizeof(exe_target));
 
207
      free(exe_link);
 
208
    }
 
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)){
 
213
      /* Not it */
 
214
      continue;
 
215
    }
 
216
    /* Found usplash */
 
217
    /* Read and save the command line of usplash in "cmdline" */
 
218
    {
 
219
      /* Open /proc/<pid>/cmdline  */
 
220
      int cl_fd;
 
221
      {
 
222
        char *cmdline_filename;
 
223
        ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
 
224
                       proc_ent->d_name);
 
225
        if(ret == -1){
 
226
          perror("asprintf");
 
227
          goto fail_find_usplash;
 
228
        }
 
229
        cl_fd = open(cmdline_filename, O_RDONLY);
 
230
        free(cmdline_filename);
 
231
        if(cl_fd == -1){
 
232
          perror("open");
 
233
          goto fail_find_usplash;
 
234
        }
 
235
      }
 
236
      size_t cmdline_allocated = 0;
 
237
      char *tmp;
 
238
      const size_t blocksize = 1024;
 
239
      do {
 
240
        /* Allocate more space? */
 
241
        if(cmdline_len + blocksize > cmdline_allocated){
 
242
          tmp = realloc(cmdline, cmdline_allocated + blocksize);
 
243
          if(tmp == NULL){
 
244
            perror("realloc");
 
245
            close(cl_fd);
 
246
            goto fail_find_usplash;
 
247
          }
 
248
          cmdline = tmp;
 
249
          cmdline_allocated += blocksize;
 
250
        }
 
251
        /* Read data */
 
252
        sret = read(cl_fd, cmdline + cmdline_len,
 
253
                    cmdline_allocated - cmdline_len);
 
254
        if(sret == -1){
 
255
          perror("read");
 
256
          close(cl_fd);
 
257
          goto fail_find_usplash;
 
258
        }
 
259
        cmdline_len += (size_t)sret;
 
260
      } while(sret != 0);
 
261
      ret = close(cl_fd);
 
262
      if(ret == -1){
 
263
        perror("close");
 
264
        goto fail_find_usplash;
 
265
      }
 
266
    }
 
267
    /* Close directory */
 
268
    ret = closedir(proc_dir);
 
269
    if(ret == -1){
 
270
      perror("closedir");
 
271
      goto fail_find_usplash;
 
272
    }
 
273
    /* Success */
 
274
    *cmdline_r = cmdline;
 
275
    *cmdline_len_r = cmdline_len;
 
276
    return pid;
 
277
  }
 
278
  
 
279
 fail_find_usplash:
 
280
  
 
281
  free(cmdline);
 
282
  if(proc_dir != NULL){
 
283
    int e = errno;
 
284
    closedir(proc_dir);
 
285
    errno = e;
 
286
  }
 
287
  return 0;
 
288
}
 
289
 
124
290
int main(__attribute__((unused))int argc,
125
291
         __attribute__((unused))char **argv){
126
292
  int ret = 0;
127
293
  ssize_t sret;
128
 
  bool an_error_occured = false;
 
294
  int fifo_fd = -1;
 
295
  int outfifo_fd = -1;
 
296
  char *buf = NULL;
 
297
  size_t buf_len = 0;
 
298
  pid_t usplash_pid = -1;
 
299
  bool usplash_accessed = false;
129
300
  
130
 
  /* Create prompt string */
131
 
  char *prompt = NULL;
132
 
  {
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";
136
 
    
137
 
    if(cryptsource == NULL){
138
 
      if(crypttarget == NULL){
139
 
        ret = asprintf(&prompt, "%s: ", prompt_start);
140
 
      } else {
141
 
        ret = asprintf(&prompt, "%s (%s): ", prompt_start,
142
 
                       crypttarget);
143
 
      }
144
 
    } else {
145
 
      if(crypttarget == NULL){
146
 
        ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
147
 
      } else {
148
 
        ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
149
 
                       cryptsource, crypttarget);
150
 
      }
151
 
    }
152
 
    if(ret == -1){
153
 
      return EXIT_FAILURE;
154
 
    }
 
301
  char *prompt = makeprompt();
 
302
  if(prompt == NULL){
 
303
    goto failure;
155
304
  }
156
305
  
157
306
  /* Find usplash process */
158
 
  pid_t usplash_pid = 0;
159
307
  char *cmdline = NULL;
160
308
  size_t cmdline_len = 0;
161
 
  const char usplash_name[] = "/sbin/usplash";
162
 
  {
163
 
    DIR *proc_dir = opendir("/proc");
164
 
    if(proc_dir == NULL){
165
 
      free(prompt);
166
 
      perror("opendir");
167
 
      return EXIT_FAILURE;
168
 
    }
169
 
    for(struct dirent *proc_ent = readdir(proc_dir);
170
 
        proc_ent != NULL;
171
 
        proc_ent = readdir(proc_dir)){
172
 
      pid_t pid;
173
 
      {
174
 
        intmax_t tmpmax;
175
 
        char *tmp;
176
 
        errno = 0;
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){
180
 
          /* Not a process */
181
 
          continue;
182
 
        }
183
 
        pid = (pid_t)tmpmax;
184
 
      }
185
 
      /* Find the executable name by doing readlink() on the
186
 
         /proc/<pid>/exe link */
187
 
      char exe_target[sizeof(usplash_name)];
188
 
      {
189
 
        /* create file name string */
190
 
        char *exe_link;
191
 
        ret = asprintf(&exe_link, "/proc/%s/exe", proc_ent->d_name);
192
 
        if(ret == -1){
193
 
          perror("asprintf");
194
 
          free(prompt);
195
 
          closedir(proc_dir);
196
 
          return EXIT_FAILURE;
197
 
        }
198
 
        
199
 
        /* Check that it refers to a symlink owned by root:root */
200
 
        struct stat exe_stat;
201
 
        ret = lstat(exe_link, &exe_stat);
202
 
        if(ret == -1){
203
 
          if(errno == ENOENT){
204
 
            free(exe_link);
205
 
            continue;
206
 
          }
207
 
          perror("lstat");
208
 
          free(exe_link);
209
 
          free(prompt);
210
 
          closedir(proc_dir);
211
 
          return EXIT_FAILURE;
212
 
        }
213
 
        if(not S_ISLNK(exe_stat.st_mode)
214
 
           or exe_stat.st_uid != 0
215
 
           or exe_stat.st_gid != 0){
216
 
          free(exe_link);
217
 
          continue;
218
 
        }
219
 
        
220
 
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
221
 
        free(exe_link);
222
 
      }
223
 
      if((sret == ((ssize_t)sizeof(exe_target)-1))
224
 
         and (memcmp(usplash_name, exe_target,
225
 
                     sizeof(exe_target)-1) == 0)){
226
 
        usplash_pid = pid;
227
 
        /* Read and save the command line of usplash in "cmdline" */
228
 
        {
229
 
          /* Open /proc/<pid>/cmdline  */
230
 
          int cl_fd;
231
 
          {
232
 
            char *cmdline_filename;
233
 
            ret = asprintf(&cmdline_filename, "/proc/%s/cmdline",
234
 
                           proc_ent->d_name);
235
 
            if(ret == -1){
236
 
              perror("asprintf");
237
 
              free(prompt);
238
 
              closedir(proc_dir);
239
 
              return EXIT_FAILURE;
240
 
            }
241
 
            cl_fd = open(cmdline_filename, O_RDONLY);
242
 
            if(cl_fd == -1){
243
 
              perror("open");
244
 
              free(cmdline_filename);
245
 
              free(prompt);
246
 
              closedir(proc_dir);
247
 
              return EXIT_FAILURE;
248
 
            }
249
 
            free(cmdline_filename);
250
 
          }
251
 
          size_t cmdline_allocated = 0;
252
 
          char *tmp;
253
 
          const size_t blocksize = 1024;
254
 
          do {
255
 
            if(cmdline_len + blocksize > cmdline_allocated){
256
 
              tmp = realloc(cmdline, cmdline_allocated + blocksize);
257
 
              if(tmp == NULL){
258
 
                perror("realloc");
259
 
                free(cmdline);
260
 
                free(prompt);
261
 
                closedir(proc_dir);
262
 
                return EXIT_FAILURE;
263
 
              }
264
 
              cmdline = tmp;
265
 
              cmdline_allocated += blocksize;
266
 
            }
267
 
            sret = read(cl_fd, cmdline + cmdline_len,
268
 
                        cmdline_allocated - cmdline_len);
269
 
            if(sret == -1){
270
 
              perror("read");
271
 
              free(cmdline);
272
 
              free(prompt);
273
 
              closedir(proc_dir);
274
 
              return EXIT_FAILURE;
275
 
            }
276
 
            cmdline_len += (size_t)sret;
277
 
          } while(sret != 0);
278
 
          close(cl_fd);
279
 
        }
280
 
        break;
281
 
      }
282
 
    }
283
 
    closedir(proc_dir);
284
 
  }
 
309
  usplash_pid = find_usplash(&cmdline, &cmdline_len);
285
310
  if(usplash_pid == 0){
286
 
    free(prompt);
287
 
    return EXIT_FAILURE;
 
311
    goto failure;
288
312
  }
289
313
  
290
314
  /* Set up the signal handler */
293
317
      new_action = { .sa_handler = termination_handler,
294
318
                     .sa_flags = 0 };
295
319
    sigemptyset(&new_action.sa_mask);
296
 
    sigaddset(&new_action.sa_mask, SIGINT);
297
 
    sigaddset(&new_action.sa_mask, SIGHUP);
298
 
    sigaddset(&new_action.sa_mask, SIGTERM);
 
320
    ret = sigaddset(&new_action.sa_mask, SIGINT);
 
321
    if(ret == -1){
 
322
      perror("sigaddset");
 
323
      goto failure;
 
324
    }
 
325
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
 
326
    if(ret == -1){
 
327
      perror("sigaddset");
 
328
      goto failure;
 
329
    }
 
330
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
 
331
    if(ret == -1){
 
332
      perror("sigaddset");
 
333
      goto failure;
 
334
    }
299
335
    ret = sigaction(SIGINT, NULL, &old_action);
300
336
    if(ret == -1){
301
 
      perror("sigaction");
302
 
      free(prompt);
303
 
      return EXIT_FAILURE;
 
337
      if(errno != EINTR){
 
338
        perror("sigaction");
 
339
      }
 
340
      goto failure;
304
341
    }
305
342
    if(old_action.sa_handler != SIG_IGN){
306
343
      ret = sigaction(SIGINT, &new_action, NULL);
307
344
      if(ret == -1){
308
 
        perror("sigaction");
309
 
        free(prompt);
310
 
        return EXIT_FAILURE;
 
345
        if(errno != EINTR){
 
346
          perror("sigaction");
 
347
        }
 
348
        goto failure;
311
349
      }
312
350
    }
313
351
    ret = sigaction(SIGHUP, NULL, &old_action);
314
352
    if(ret == -1){
315
 
      perror("sigaction");
316
 
      free(prompt);
317
 
      return EXIT_FAILURE;
 
353
      if(errno != EINTR){
 
354
        perror("sigaction");
 
355
      }
 
356
      goto failure;
318
357
    }
319
358
    if(old_action.sa_handler != SIG_IGN){
320
359
      ret = sigaction(SIGHUP, &new_action, NULL);
321
360
      if(ret == -1){
322
 
        perror("sigaction");
323
 
        free(prompt);
324
 
        return EXIT_FAILURE;
 
361
        if(errno != EINTR){
 
362
          perror("sigaction");
 
363
        }
 
364
        goto failure;
325
365
      }
326
366
    }
327
367
    ret = sigaction(SIGTERM, NULL, &old_action);
328
368
    if(ret == -1){
329
 
      perror("sigaction");
330
 
      free(prompt);
331
 
      return EXIT_FAILURE;
 
369
      if(errno != EINTR){
 
370
        perror("sigaction");
 
371
      }
 
372
      goto failure;
332
373
    }
333
374
    if(old_action.sa_handler != SIG_IGN){
334
375
      ret = sigaction(SIGTERM, &new_action, NULL);
335
376
      if(ret == -1){
336
 
        perror("sigaction");
337
 
        free(prompt);
338
 
        return EXIT_FAILURE;
 
377
        if(errno != EINTR){
 
378
          perror("sigaction");
 
379
        }
 
380
        goto failure;
339
381
      }
340
382
    }
341
383
  }
342
384
  
 
385
  usplash_accessed = true;
343
386
  /* Write command to FIFO */
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;
349
 
    }
350
 
  }
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;
356
 
    }
357
 
  }
 
387
  if(not usplash_write(&fifo_fd, "TIMEOUT", "0")){
 
388
    if(errno != EINTR){
 
389
      perror("usplash_write");
 
390
    }
 
391
    goto failure;
 
392
  }
 
393
  
 
394
  if(interrupted_by_signal){
 
395
    goto failure;
 
396
  }
 
397
  
 
398
  if(not usplash_write(&fifo_fd, "INPUTQUIET", prompt)){
 
399
    if(errno != EINTR){
 
400
      perror("usplash_write");
 
401
    }
 
402
    goto failure;
 
403
  }
 
404
  
 
405
  if(interrupted_by_signal){
 
406
    goto failure;
 
407
  }
 
408
  
358
409
  free(prompt);
359
 
  
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){
363
 
    char *buf = NULL;
364
 
    size_t buf_len = 0;
365
 
    
366
 
    /* Open FIFO */
367
 
    int fifo_fd;
368
 
    do {
369
 
      fifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
370
 
      if(fifo_fd == -1){
 
410
  prompt = NULL;
 
411
  
 
412
  /* Read reply from usplash */
 
413
  /* Open FIFO */
 
414
  outfifo_fd = open("/dev/.initramfs/usplash_outfifo", O_RDONLY);
 
415
  if(outfifo_fd == -1){
 
416
    if(errno != EINTR){
 
417
      perror("open");
 
418
    }
 
419
    goto failure;
 
420
  }
 
421
  
 
422
  if(interrupted_by_signal){
 
423
    goto failure;
 
424
  }
 
425
  
 
426
  /* Read from FIFO */
 
427
  size_t buf_allocated = 0;
 
428
  const size_t blocksize = 1024;
 
429
  do {
 
430
    /* Allocate more space */
 
431
    if(buf_len + blocksize > buf_allocated){
 
432
      char *tmp = realloc(buf, buf_allocated + blocksize);
 
433
      if(tmp == NULL){
371
434
        if(errno != EINTR){
372
 
          perror("open");
373
 
          an_error_occured = true;
374
 
          break;
375
 
        }
376
 
        if(interrupted_by_signal){
377
 
          break;
378
 
        }
379
 
      }
380
 
    } while(fifo_fd == -1);
381
 
    if(interrupted_by_signal or an_error_occured){
382
 
      break;                    /* Big */
383
 
    }
384
 
    
385
 
    /* Read from FIFO */
386
 
    size_t buf_allocated = 0;
387
 
    const size_t blocksize = 1024;
388
 
    do {
389
 
      if(buf_len + blocksize > buf_allocated){
390
 
        char *tmp = realloc(buf, buf_allocated + blocksize);
391
 
        if(tmp == NULL){
392
435
          perror("realloc");
393
 
          an_error_occured = true;
394
 
          break;
395
 
        }
396
 
        buf = tmp;
397
 
        buf_allocated += blocksize;
398
 
      }
399
 
      do {
400
 
        sret = read(fifo_fd, buf + buf_len, buf_allocated - buf_len);
401
 
        if(sret == -1){
402
 
          if(errno != EINTR){
403
 
            perror("read");
404
 
            an_error_occured = true;
405
 
            break;
406
 
          }
407
 
          if(interrupted_by_signal){
408
 
            break;
409
 
          }
410
 
        }
411
 
      } while(sret == -1);
412
 
      if(interrupted_by_signal or an_error_occured){
413
 
        break;
414
 
      }
415
 
      
416
 
      buf_len += (size_t)sret;
417
 
    } while(sret != 0);
418
 
    close(fifo_fd);
419
 
    if(interrupted_by_signal or an_error_occured){
420
 
      break;                    /* Big */
421
 
    }
422
 
    
423
 
    if(not usplash_write("TIMEOUT", "15")
424
 
       and (errno != EINTR)){
425
 
        perror("usplash_write");
426
 
        an_error_occured = true;
427
 
    }
428
 
    if(interrupted_by_signal or an_error_occured){
429
 
      break;                    /* Big */
430
 
    }
431
 
    
432
 
    /* Print password to stdout */
433
 
    size_t written = 0;
434
 
    while(written < buf_len){
435
 
      do {
436
 
        sret = write(STDOUT_FILENO, buf + written, buf_len - written);
437
 
        if(sret == -1){
438
 
          if(errno != EINTR){
439
 
            perror("write");
440
 
            an_error_occured = true;
441
 
            break;
442
 
          }
443
 
          if(interrupted_by_signal){
444
 
            break;
445
 
          }
446
 
        }
447
 
      } while(sret == -1);
448
 
      if(interrupted_by_signal or an_error_occured){
449
 
        break;
450
 
      }
451
 
      written += (size_t)sret;
452
 
    }
453
 
    free(buf);
454
 
    if(not interrupted_by_signal and not an_error_occured){
455
 
      free(cmdline);
456
 
      return EXIT_SUCCESS;
457
 
    }
458
 
    break;                      /* Big */
459
 
  }                             /* end of non-loop while() */
460
 
  
461
 
  /* If we got here, an error or interrupt must have happened */
 
436
        }
 
437
        goto failure;
 
438
      }
 
439
      buf = tmp;
 
440
      buf_allocated += blocksize;
 
441
    }
 
442
    sret = read(outfifo_fd, buf + buf_len,
 
443
                buf_allocated - buf_len);
 
444
    if(sret == -1){
 
445
      if(errno != EINTR){
 
446
        perror("read");
 
447
      }
 
448
      TEMP_FAILURE_RETRY(close(outfifo_fd));
 
449
      goto failure;
 
450
    }
 
451
    if(interrupted_by_signal){
 
452
      break;
 
453
    }
 
454
    
 
455
    buf_len += (size_t)sret;
 
456
  } while(sret != 0);
 
457
  ret = close(outfifo_fd);
 
458
  if(ret == -1){
 
459
    if(errno != EINTR){
 
460
      perror("close");
 
461
    }
 
462
    goto failure;
 
463
  }
 
464
  outfifo_fd = -1;
 
465
  
 
466
  if(interrupted_by_signal){
 
467
    goto failure;
 
468
  }
 
469
  
 
470
  if(not usplash_write(&fifo_fd, "TIMEOUT", "15")){
 
471
    if(errno != EINTR){
 
472
      perror("usplash_write");
 
473
    }
 
474
    goto failure;
 
475
  }
 
476
  
 
477
  if(interrupted_by_signal){
 
478
    goto failure;
 
479
  }
 
480
  
 
481
  ret = close(fifo_fd);
 
482
  if(ret == -1){
 
483
    if(errno != EINTR){
 
484
      perror("close");
 
485
    }
 
486
    goto failure;
 
487
  }
 
488
  fifo_fd = -1;
 
489
  
 
490
  /* Print password to stdout */
 
491
  size_t written = 0;
 
492
  while(written < buf_len){
 
493
    do {
 
494
      sret = write(STDOUT_FILENO, buf + written, buf_len - written);
 
495
      if(sret == -1){
 
496
        if(errno != EINTR){
 
497
          perror("write");
 
498
        }
 
499
        goto failure;
 
500
      }
 
501
    } while(sret == -1);
 
502
    
 
503
    if(interrupted_by_signal){
 
504
      goto failure;
 
505
    }
 
506
    written += (size_t)sret;
 
507
  }
 
508
  free(buf);
 
509
  buf = NULL;
 
510
  
 
511
  if(interrupted_by_signal){
 
512
    goto failure;
 
513
  }
 
514
  
 
515
  free(cmdline);
 
516
  return EXIT_SUCCESS;
 
517
  
 
518
 failure:
 
519
  
 
520
  free(buf);
 
521
  
 
522
  free(prompt);
 
523
  
 
524
  /* If usplash was never accessed, we can stop now */
 
525
  if(not usplash_accessed){
 
526
    return EXIT_FAILURE;
 
527
  }
 
528
  
 
529
  /* Close FIFO */
 
530
  if(fifo_fd != -1){
 
531
    ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
 
532
    if(ret == -1 and errno != EINTR){
 
533
      perror("close");
 
534
    }
 
535
    fifo_fd = -1;
 
536
  }
 
537
  
 
538
  /* Close output FIFO */
 
539
  if(outfifo_fd != -1){
 
540
    ret = (int)TEMP_FAILURE_RETRY(close(outfifo_fd));
 
541
    if(ret == -1){
 
542
      perror("close");
 
543
    }
 
544
  }
462
545
  
463
546
  /* Create argc and argv for new usplash*/
464
547
  int cmdline_argc = 0;
488
571
    kill(usplash_pid, SIGKILL);
489
572
    sleep(1);
490
573
  }
 
574
  
491
575
  pid_t new_usplash_pid = fork();
492
576
  if(new_usplash_pid == 0){
493
577
    /* Child; will become new usplash process */
521
605
  free(cmdline);
522
606
  free(cmdline_argv);
523
607
  sleep(2);
524
 
  if(not usplash_write("PULSATE", NULL)
525
 
     and (errno != EINTR)){
526
 
    perror("usplash_write");
 
608
  if(not usplash_write(&fifo_fd, "PULSATE", NULL)){
 
609
    if(errno != EINTR){
 
610
      perror("usplash_write");
 
611
    }
 
612
  }
 
613
  
 
614
  /* Close FIFO (again) */
 
615
  ret = (int)TEMP_FAILURE_RETRY(close(fifo_fd));
 
616
  if(ret == -1 and errno != EINTR){
 
617
    perror("close");
 
618
  }
 
619
  fifo_fd = -1;
 
620
  
 
621
  if(interrupted_by_signal){
 
622
    struct sigaction signal_action = { .sa_handler = SIG_DFL };
 
623
    sigemptyset(&signal_action.sa_mask);
 
624
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
 
625
                                            &signal_action, NULL));
 
626
    if(ret == -1){
 
627
      perror("sigaction");
 
628
    }
 
629
    do {
 
630
      ret = raise(signal_received);
 
631
    } while(ret != 0 and errno == EINTR);
 
632
    if(ret != 0){
 
633
      perror("raise");
 
634
      abort();
 
635
    }
 
636
    TEMP_FAILURE_RETRY(pause());
527
637
  }
528
638
  
529
639
  return EXIT_FAILURE;