/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/plymouth.c

  • Committer: Teddy Hogeborn
  • Date: 2017-08-20 16:20:54 UTC
  • Revision ID: teddy@recompile.se-20170820162054-jwig602syxx2k4l0
Alter copyright notices slightly.  Actual license is unchanged!

This alters all copyright notices to use the Free Software
Foundation's recommendations for license notices; from
<https://www.gnu.org/licenses/gpl-howto.html>:

  For programs that are more than one file, it is better to replace
  “this program” with the name of the program, and begin the statement
  with a line saying “This file is part of NAME”.

* DBUS-API: Use program name "Mandos" explicitly in license notice.
* debian/copyright: - '' -
* initramfs-unpack: - '' -
* legalnotice.xml: - '' -
* mandos: - '' -
* mandos-ctl: - '' -
* mandos-keygen: - '' -
* mandos-monitor: - '' -
* plugin-helpers/mandos-client-iprouteadddel.c: - '' -
* plugin-runner.c: - '' -
* plugins.d/askpass-fifo.c: - '' -
* plugins.d/mandos-client.c: - '' -
* plugins.d/password-prompt.c: - '' -
* plugins.d/plymouth.c: - '' -
* plugins.d/splashy.c: - '' -
* plugins.d/usplash.c: - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  -*- coding: utf-8 -*- */
 
2
/*
 
3
 * Plymouth - Read a password from Plymouth and output it
 
4
 * 
 
5
 * Copyright © 2010-2017 Teddy Hogeborn
 
6
 * Copyright © 2010-2017 Björn Påhlsson
 
7
 * 
 
8
 * This file is part of Mandos.
 
9
 * 
 
10
 * Mandos is free software: you can redistribute it and/or modify it
 
11
 * under the terms of the GNU General Public License as published by
 
12
 * the Free Software Foundation, either version 3 of the License, or
 
13
 * (at your option) any later version.
 
14
 * 
 
15
 * Mandos is distributed in the hope that it will be useful, but
 
16
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
18
 * General Public License for more details.
 
19
 * 
 
20
 * You should have received a copy of the GNU General Public License
 
21
 * along with Mandos.  If not, see <http://www.gnu.org/licenses/>.
 
22
 * 
 
23
 * Contact the authors at <mandos@recompile.se>.
 
24
 */
 
25
 
1
26
#define _GNU_SOURCE             /* asprintf(), TEMP_FAILURE_RETRY() */
2
27
#include <signal.h>             /* sig_atomic_t, struct sigaction,
3
28
                                   sigemptyset(), sigaddset(), SIGINT,
6
31
#include <stdbool.h>            /* bool, false, true */
7
32
#include <fcntl.h>              /* open(), O_RDONLY */
8
33
#include <iso646.h>             /* and, or, not*/
9
 
#include <sys/types.h>          /* size_t, ssize_t, pid_t, struct dirent,
10
 
                                   waitpid() */
 
34
#include <sys/types.h>          /* size_t, ssize_t, pid_t, struct
 
35
                                   dirent, waitpid() */
11
36
#include <sys/wait.h>           /* waitpid() */
12
37
#include <stddef.h>             /* NULL */
13
38
#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()
 
39
#include <stdio.h>              /* asprintf(), perror(), fopen(),
 
40
                                   fscanf(), vasprintf(), fprintf(),
 
41
                                   vfprintf() */
 
42
#include <unistd.h>             /* close(), readlink(), read(),
 
43
                                   fork(), setsid(), chdir(), dup2(),
17
44
                                   STDERR_FILENO, execv(), access() */
18
45
#include <stdlib.h>             /* free(), EXIT_FAILURE, realloc(),
19
46
                                   EXIT_SUCCESS, malloc(), _exit(),
21
48
#include <dirent.h>             /* scandir(), alphasort() */
22
49
#include <inttypes.h>           /* intmax_t, strtoumax(), SCNuMAX */
23
50
#include <sys/stat.h>           /* struct stat, lstat() */
24
 
#include <sysexits.h>           /* EX_OSERR */
 
51
#include <sysexits.h>           /* EX_OSERR, EX_UNAVAILABLE */
25
52
#include <error.h>              /* error() */
26
53
#include <errno.h>              /* TEMP_FAILURE_RETRY */
27
 
#include <stdarg.h>
 
54
#include <argz.h>               /* argz_count(), argz_extract() */
 
55
#include <stdarg.h>             /* va_list, va_start(), ... */
28
56
 
29
57
sig_atomic_t interrupted_by_signal = 0;
30
 
const char plymouth_pid[] = "/dev/.initramfs/plymouth.pid";
 
58
 
 
59
/* Used by Ubuntu 11.04 (Natty Narwahl) */
 
60
const char plymouth_old_pid[] = "/dev/.initramfs/plymouth.pid";
 
61
/* Used by Ubuntu 11.10 (Oneiric Ocelot) */
 
62
const char plymouth_pid[] = "/run/initramfs/plymouth.pid";
 
63
 
31
64
const char plymouth_path[] = "/bin/plymouth";
32
65
const char plymouthd_path[] = "/sbin/plymouthd";
33
 
const char *plymouthd_default_argv[] = {"/sbin/plymouthd", "--mode=boot",
 
66
const char *plymouthd_default_argv[] = {"/sbin/plymouthd",
 
67
                                        "--mode=boot",
34
68
                                        "--attach-to-session",
35
 
                                        "--pid-file=/dev/.initramfs/plymouth.pid",
36
69
                                        NULL };
37
70
 
38
71
static void termination_handler(__attribute__((unused))int signum){
42
75
  interrupted_by_signal = 1;
43
76
}
44
77
 
 
78
/* Function to use when printing errors */
 
79
__attribute__((format (gnu_printf, 3, 4)))
 
80
void error_plus(int status, int errnum, const char *formatstring,
 
81
                ...){
 
82
  va_list ap;
 
83
  char *text;
 
84
  int ret;
 
85
  
 
86
  va_start(ap, formatstring);
 
87
  ret = vasprintf(&text, formatstring, ap);
 
88
  if(ret == -1){
 
89
    fprintf(stderr, "Mandos plugin %s: ",
 
90
            program_invocation_short_name);
 
91
    vfprintf(stderr, formatstring, ap);
 
92
    fprintf(stderr, ": ");
 
93
    fprintf(stderr, "%s\n", strerror(errnum));
 
94
    error(status, errno, "vasprintf while printing error");
 
95
    return;
 
96
  }
 
97
  fprintf(stderr, "Mandos plugin ");
 
98
  error(status, errnum, "%s", text);
 
99
  free(text);
 
100
}
 
101
 
45
102
/* Create prompt string */
46
103
char *makeprompt(void){
47
104
  int ret = 0;
48
105
  char *prompt;
49
106
  const char *const cryptsource = getenv("cryptsource");
50
107
  const char *const crypttarget = getenv("crypttarget");
51
 
  const char prompt_start[] = "Enter passphrase to unlock the disk";
 
108
  const char prompt_start[] = "Unlocking the disk";
 
109
  const char prompt_end[] = "Enter passphrase";
52
110
  
53
111
  if(cryptsource == NULL){
54
112
    if(crypttarget == NULL){
55
 
      ret = asprintf(&prompt, "%s: ", prompt_start);
 
113
      ret = asprintf(&prompt, "%s\n%s", prompt_start, prompt_end);
56
114
    } else {
57
 
      ret = asprintf(&prompt, "%s (%s): ", prompt_start,
58
 
                     crypttarget);
 
115
      ret = asprintf(&prompt, "%s (%s)\n%s", prompt_start,
 
116
                     crypttarget, prompt_end);
59
117
    }
60
118
  } else {
61
119
    if(crypttarget == NULL){
62
 
      ret = asprintf(&prompt, "%s %s: ", prompt_start, cryptsource);
 
120
      ret = asprintf(&prompt, "%s %s\n%s", prompt_start, cryptsource,
 
121
                     prompt_end);
63
122
    } else {
64
 
      ret = asprintf(&prompt, "%s %s (%s): ", prompt_start,
65
 
                     cryptsource, crypttarget);
 
123
      ret = asprintf(&prompt, "%s %s (%s)\n%s", prompt_start,
 
124
                     cryptsource, crypttarget, prompt_end);
66
125
    }
67
126
  }
68
127
  if(ret == -1){
79
138
bool become_a_daemon(void){
80
139
  int ret = setuid(geteuid());
81
140
  if(ret == -1){
82
 
    error(0, errno, "setuid");
 
141
    error_plus(0, errno, "setuid");
83
142
  }
84
143
    
85
144
  setsid();
86
145
  ret = chdir("/");
87
146
  if(ret == -1){
88
 
    error(0, errno, "chdir");
 
147
    error_plus(0, errno, "chdir");
89
148
    return false;
90
149
  }
91
150
  ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
92
151
  if(ret == -1){
93
 
    error(0, errno, "dup2");
 
152
    error_plus(0, errno, "dup2");
94
153
    return false;
95
154
  }
96
155
  return true;
97
156
}
98
157
 
 
158
__attribute__((nonnull (2, 3)))
99
159
bool exec_and_wait(pid_t *pid_return, const char *path,
100
 
                   const char **argv, bool interruptable,
 
160
                   const char * const *argv, bool interruptable,
101
161
                   bool daemonize){
102
162
  int status;
103
163
  int ret;
104
164
  pid_t pid;
105
165
  pid = fork();
106
166
  if(pid == -1){
107
 
    error(0, errno, "fork");
 
167
    error_plus(0, errno, "fork");
108
168
    return false;
109
169
  }
110
170
  if(pid == 0){
114
174
        _exit(EX_OSERR);
115
175
      }
116
176
    }
117
 
 
118
 
    char **new_argv = NULL;
119
 
    char *tmp;
 
177
    
 
178
    char **new_argv = malloc(sizeof(const char *));
 
179
    if(new_argv == NULL){
 
180
      error_plus(0, errno, "malloc");
 
181
      _exit(EX_OSERR);
 
182
    }
 
183
    char **tmp;
120
184
    int i = 0;
121
 
    for (; argv[i]!=(char *)NULL; i++){
122
 
      tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 1));
123
 
      if (tmp == NULL){
124
 
        error(0, errno, "realloc");
 
185
    for (; argv[i] != NULL; i++){
 
186
      tmp = realloc(new_argv, sizeof(const char *) * ((size_t)i + 2));
 
187
      if(tmp == NULL){
 
188
        error_plus(0, errno, "realloc");
125
189
        free(new_argv);
126
 
        _exit(EXIT_FAILURE);
 
190
        _exit(EX_OSERR);
127
191
      }
128
 
      new_argv = (char **)tmp;
 
192
      new_argv = tmp;
129
193
      new_argv[i] = strdup(argv[i]);
130
194
    }
131
 
    new_argv[i] = (char *) NULL;
 
195
    new_argv[i] = NULL;
132
196
    
133
197
    execv(path, (char *const *)new_argv);
134
 
    error(0, errno, "execv");
 
198
    error_plus(0, errno, "execv");
135
199
    _exit(EXIT_FAILURE);
136
200
  }
137
201
  if(pid_return != NULL){
146
210
    return false;
147
211
  }
148
212
  if(ret == -1){
149
 
    error(0, errno, "waitpid");
 
213
    error_plus(0, errno, "waitpid");
150
214
    return false;
151
215
  }
152
 
  if(WIFEXITED(status) and WEXITSTATUS(status) == 0){
 
216
  if(WIFEXITED(status) and (WEXITSTATUS(status) == 0)){
153
217
    return true;
154
218
  }
155
219
  return false;
156
220
}
157
221
 
 
222
__attribute__((nonnull))
158
223
int is_plymouth(const struct dirent *proc_entry){
159
224
  int ret;
160
225
  {
161
 
    uintmax_t maxvalue;
 
226
    uintmax_t proc_id;
162
227
    char *tmp;
163
228
    errno = 0;
164
 
    maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
 
229
    proc_id = strtoumax(proc_entry->d_name, &tmp, 10);
165
230
 
166
 
    if(errno != 0 or *tmp != '\0' or maxvalue != (uintmax_t)((pid_t)maxvalue)){
 
231
    if(errno != 0 or *tmp != '\0'
 
232
       or proc_id != (uintmax_t)((pid_t)proc_id)){
167
233
      return 0;
168
234
    }
169
235
  }
170
 
  char exe_target[sizeof(plymouth_path)];
 
236
  char exe_target[sizeof(plymouthd_path)];
171
237
  char *exe_link;
172
238
  ret = asprintf(&exe_link, "/proc/%s/exe", proc_entry->d_name);
173
239
  if(ret == -1){
174
 
    error(0, errno, "asprintf");
 
240
    error_plus(0, errno, "asprintf");
175
241
    return 0;
176
242
  }
177
 
 
 
243
  
178
244
  struct stat exe_stat;
179
245
  ret = lstat(exe_link, &exe_stat);
180
246
  if(ret == -1){
181
247
    free(exe_link);
182
248
    if(errno != ENOENT){
183
 
      error(0, errno, "lstat");
 
249
      error_plus(0, errno, "lstat");
184
250
    }
185
251
    return 0;
186
252
  }
191
257
    free(exe_link);
192
258
    return 0;
193
259
  }
194
 
 
 
260
  
195
261
  ssize_t sret = readlink(exe_link, exe_target, sizeof(exe_target));
196
262
  free(exe_link);
197
 
  if((sret != (ssize_t)sizeof(plymouth_path)-1) or
198
 
      (memcmp(plymouth_path, exe_target,
199
 
              sizeof(plymouth_path)-1) != 0)){
 
263
  if((sret != (ssize_t)sizeof(plymouthd_path)-1) or
 
264
      (memcmp(plymouthd_path, exe_target,
 
265
              sizeof(plymouthd_path)-1) != 0)){
200
266
    return 0;
201
267
  }
202
268
  return 1;
204
270
 
205
271
pid_t get_pid(void){
206
272
  int ret;
 
273
  uintmax_t proc_id = 0;
207
274
  FILE *pidfile = fopen(plymouth_pid, "r");
208
 
  uintmax_t maxvalue = 0;
 
275
  /* Try the new pid file location */
209
276
  if(pidfile != NULL){
210
 
    ret = fscanf(pidfile, "%" SCNuMAX, &maxvalue);
 
277
    ret = fscanf(pidfile, "%" SCNuMAX, &proc_id);
211
278
    if(ret != 1){
212
 
      maxvalue = 0;
 
279
      proc_id = 0;
213
280
    }
214
281
    fclose(pidfile);
215
282
  }
216
 
  if(maxvalue == 0){
217
 
    struct dirent **direntries;
 
283
  /* Try the old pid file location */
 
284
  if(proc_id == 0){
 
285
    pidfile = fopen(plymouth_pid, "r");
 
286
    if(pidfile != NULL){
 
287
      ret = fscanf(pidfile, "%" SCNuMAX, &proc_id);
 
288
      if(ret != 1){
 
289
        proc_id = 0;
 
290
      }
 
291
      fclose(pidfile);
 
292
    }
 
293
  }
 
294
  /* Look for a plymouth process */
 
295
  if(proc_id == 0){
 
296
    struct dirent **direntries = NULL;
218
297
    ret = scandir("/proc", &direntries, is_plymouth, alphasort);
219
 
    sscanf(direntries[0]->d_name, "%" SCNuMAX, &maxvalue);
 
298
    if(ret == -1){
 
299
      error_plus(0, errno, "scandir");
 
300
    }
 
301
    if(ret > 0){
 
302
      ret = sscanf(direntries[0]->d_name, "%" SCNuMAX, &proc_id);
 
303
      if(ret < 0){
 
304
        error_plus(0, errno, "sscanf");
 
305
      }
 
306
    }
 
307
    /* scandir might preallocate for this variable (man page unclear).
 
308
       even if ret == 0, therefore we need to free it. */
 
309
    free(direntries);
220
310
  }
221
311
  pid_t pid;
222
 
  pid = (pid_t)maxvalue;
223
 
  if((uintmax_t)pid == maxvalue){
 
312
  pid = (pid_t)proc_id;
 
313
  if((uintmax_t)pid == proc_id){
224
314
    return pid;
225
315
  }
226
316
  
227
317
  return 0;
228
318
}
229
319
 
230
 
const char **getargv(pid_t pid){
 
320
const char * const * getargv(pid_t pid){
231
321
  int cl_fd;
232
322
  char *cmdline_filename;
233
323
  ssize_t sret;
236
326
  ret = asprintf(&cmdline_filename, "/proc/%" PRIuMAX "/cmdline",
237
327
                 (uintmax_t)pid);
238
328
  if(ret == -1){
239
 
    error(0, errno, "asprintf");
 
329
    error_plus(0, errno, "asprintf");
240
330
    return NULL;
241
331
  }
242
332
  
244
334
  cl_fd = open(cmdline_filename, O_RDONLY);
245
335
  free(cmdline_filename);
246
336
  if(cl_fd == -1){
247
 
    error(0, errno, "open");
 
337
    error_plus(0, errno, "open");
248
338
    return NULL;
249
339
  }
250
340
  
258
348
    if(cmdline_len + blocksize > cmdline_allocated){
259
349
      tmp = realloc(cmdline, cmdline_allocated + blocksize);
260
350
      if(tmp == NULL){
261
 
        error(0, errno, "realloc");
 
351
        error_plus(0, errno, "realloc");
262
352
        free(cmdline);
263
353
        close(cl_fd);
264
354
        return NULL;
271
361
    sret = read(cl_fd, cmdline + cmdline_len,
272
362
                cmdline_allocated - cmdline_len);
273
363
    if(sret == -1){
274
 
      error(0, errno, "read");
 
364
      error_plus(0, errno, "read");
275
365
      free(cmdline);
276
366
      close(cl_fd);
277
367
      return NULL;
280
370
  } while(sret != 0);
281
371
  ret = close(cl_fd);
282
372
  if(ret == -1){
283
 
    error(0, errno, "close");
 
373
    error_plus(0, errno, "close");
284
374
    free(cmdline);
285
375
    return NULL;
286
376
  }
287
377
  
288
378
  /* 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 *));
294
 
    if(tmp == NULL){
295
 
      error(0, errno, "realloc");
296
 
      free(argv);
297
 
      return NULL;
298
 
    }
299
 
    argv = (const char **)tmp;
300
 
    argv[argv_size-1] = arg;
 
379
  char **argv = malloc((argz_count(cmdline, cmdline_len) + 1)
 
380
                       * sizeof(char *)); /* Get number of args */
 
381
  if(argv == NULL){
 
382
    error_plus(0, errno, "argv = malloc()");
 
383
    free(cmdline);
 
384
    return NULL;
301
385
  }
302
 
  argv[argv_size] = NULL;
303
 
  return argv;
 
386
  argz_extract(cmdline, cmdline_len, argv); /* Create argv */
 
387
  return (const char * const *)argv;
304
388
}
305
389
 
306
390
int main(__attribute__((unused))int argc,
314
398
  /* test -x /bin/plymouth */
315
399
  ret = access(plymouth_path, X_OK);
316
400
  if(ret == -1){
317
 
    exit(EXIT_FAILURE);
 
401
    /* Plymouth is probably not installed.  Don't print an error
 
402
       message, just exit. */
 
403
    exit(EX_UNAVAILABLE);
318
404
  }
319
 
 
 
405
  
320
406
  { /* Add signal handlers */
321
407
    struct sigaction old_action,
322
408
      new_action = { .sa_handler = termination_handler,
323
409
                     .sa_flags = 0 };
324
410
    sigemptyset(&new_action.sa_mask);
325
 
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 }; *sig != 0; sig++){
 
411
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 };
 
412
        *sig != 0; sig++){
326
413
      ret = sigaddset(&new_action.sa_mask, *sig);
327
414
      if(ret == -1){
328
 
        error(0, errno, "sigaddset");
329
 
        exit(EX_OSERR);
 
415
        error_plus(EX_OSERR, errno, "sigaddset");
330
416
      }
331
417
      ret = sigaction(*sig, NULL, &old_action);
332
418
      if(ret == -1){
333
 
        error(0, errno, "sigaction");
334
 
        exit(EX_OSERR);
 
419
        error_plus(EX_OSERR, errno, "sigaction");
335
420
      }
336
421
      if(old_action.sa_handler != SIG_IGN){
337
422
        ret = sigaction(*sig, &new_action, NULL);
338
423
        if(ret == -1){
339
 
          error(0, errno, "sigaction");
340
 
          exit(EX_OSERR);
 
424
          error_plus(EX_OSERR, errno, "sigaction");
341
425
        }
342
426
      }
343
427
    }
344
428
  }
345
 
    
 
429
  
346
430
  /* plymouth --ping */
347
431
  bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
348
 
                       (const char *[]){ (const char *)plymouth_path, (const char *)"--ping", (const char *)NULL},
 
432
                       (const char *[])
 
433
                       { plymouth_path, "--ping", NULL },
349
434
                       true, false);
350
435
  if(not bret){
351
436
    if(interrupted_by_signal){
352
437
      kill_and_wait(plymouth_command_pid);
 
438
      exit(EXIT_FAILURE);
353
439
    }
354
 
    exit(EXIT_FAILURE);
 
440
    /* Plymouth is probably not running.  Don't print an error
 
441
       message, just exit. */
 
442
    exit(EX_UNAVAILABLE);
355
443
  }
356
444
  
357
445
  prompt = makeprompt();
358
446
  ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
359
447
  free(prompt);
360
448
  if(ret == -1){
361
 
    error(0, errno, "asprintf");
362
 
    exit(EXIT_FAILURE);
 
449
    error_plus(EX_OSERR, errno, "asprintf");
363
450
  }
364
451
  
365
452
  /* 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},
 
453
  bret = exec_and_wait(&plymouth_command_pid,
 
454
                       plymouth_path, (const char *[])
 
455
                       { plymouth_path, "ask-for-password",
 
456
                           prompt_arg, NULL },
368
457
                       true, false);
369
458
  free(prompt_arg);
370
 
  if(not bret){
371
 
    if(interrupted_by_signal){
372
 
      kill_and_wait(plymouth_command_pid);
373
 
    } else {
374
 
      exit(EXIT_FAILURE);
375
 
    }
376
 
  }
377
 
  
378
459
  if(bret){
379
460
    exit(EXIT_SUCCESS);
380
461
  }
 
462
  if(not interrupted_by_signal){
 
463
    /* exec_and_wait failed for some other reason */
 
464
    exit(EXIT_FAILURE);
 
465
  }
 
466
  kill_and_wait(plymouth_command_pid);
381
467
  
382
 
  const char **plymouthd_argv = NULL;
 
468
  const char * const *plymouthd_argv;
383
469
  pid_t pid = get_pid();
384
470
  if(pid == 0){
385
 
    error(0, 0, "plymouthd pid not found");
 
471
    error_plus(0, 0, "plymouthd pid not found");
 
472
    plymouthd_argv = plymouthd_default_argv;
386
473
  } else {
387
474
    plymouthd_argv = getargv(pid);
388
475
  }
389
 
  if(plymouthd_argv == NULL){
390
 
    plymouthd_argv = plymouthd_default_argv;
391
 
  }
392
476
  
393
 
  bret = exec_and_wait(NULL, plymouth_path,
394
 
                       (const char *[]){plymouth_path, "quit", NULL}, false, false);
395
 
  if(not bret){
396
 
    exit(EXIT_FAILURE);
397
 
  }
398
 
  bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv, false, true);
399
 
  if(not bret){
400
 
    exit(EXIT_FAILURE);
401
 
  }
402
 
  exec_and_wait(NULL, plymouth_path,
403
 
                (const char *[]){ plymouth_path, "show-splash", NULL }, false, false);
 
477
  bret = exec_and_wait(NULL, plymouth_path, (const char *[])
 
478
                       { plymouth_path, "quit", NULL },
 
479
                       false, false);
 
480
  if(not bret){
 
481
    exit(EXIT_FAILURE);
 
482
  }
 
483
  bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv,
 
484
                       false, true);
 
485
  if(not bret){
 
486
    exit(EXIT_FAILURE);
 
487
  }
 
488
  exec_and_wait(NULL, plymouth_path, (const char *[])
 
489
                { plymouth_path, "show-splash", NULL },
 
490
                false, false);
404
491
  exit(EXIT_FAILURE);
405
492
}