/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

merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  -*- coding: utf-8 -*- */
 
2
/*
 
3
 * Usplash - Read a password from usplash and output it
 
4
 * 
 
5
 * Copyright © 2010 Teddy Hogeborn
 
6
 * Copyright © 2010 Björn Påhlsson
 
7
 * 
 
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.
 
12
 * 
 
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.
 
17
 * 
 
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/>.
 
21
 * 
 
22
 * Contact the authors at <mandos@fukt.bsnet.se>.
 
23
 */
 
24
 
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,
10
 
                                   waitpid() */
 
33
#include <sys/types.h>          /* size_t, ssize_t, pid_t, struct
 
34
                                   dirent, waitpid() */
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(),
 
39
                                   fscanf() */
 
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 */
27
52
#include <argz.h>               /* argz_count(), argz_extract() */
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",
 
59
                                        "--mode=boot",
34
60
                                        "--attach-to-session",
35
 
                                        "--pid-file=/dev/.initramfs/plymouth.pid",
 
61
                                        "--pid-file="
 
62
                                        "/dev/.initramfs/"
 
63
                                        "plymouth.pid",
36
64
                                        NULL };
37
65
 
38
66
static void termination_handler(__attribute__((unused))int signum){
123
151
      if (tmp == NULL){
124
152
        error(0, errno, "realloc");
125
153
        free(new_argv);
126
 
        _exit(EXIT_FAILURE);
 
154
        _exit(EX_OSERR);
127
155
      }
128
156
      new_argv = (char **)tmp;
129
157
      new_argv[i] = strdup(argv[i]);
149
177
    error(0, errno, "waitpid");
150
178
    return false;
151
179
  }
152
 
  if(WIFEXITED(status) and WEXITSTATUS(status) == 0){
 
180
  if(WIFEXITED(status) and (WEXITSTATUS(status) == 0)){
153
181
    return true;
154
182
  }
155
183
  return false;
163
191
    errno = 0;
164
192
    maxvalue = strtoumax(proc_entry->d_name, &tmp, 10);
165
193
 
166
 
    if(errno != 0 or *tmp != '\0' or maxvalue != (uintmax_t)((pid_t)maxvalue)){
 
194
    if(errno != 0 or *tmp != '\0'
 
195
       or maxvalue != (uintmax_t)((pid_t)maxvalue)){
167
196
      return 0;
168
197
    }
169
198
  }
174
203
    error(0, errno, "asprintf");
175
204
    return 0;
176
205
  }
177
 
 
 
206
  
178
207
  struct stat exe_stat;
179
208
  ret = lstat(exe_link, &exe_stat);
180
209
  if(ret == -1){
191
220
    free(exe_link);
192
221
    return 0;
193
222
  }
194
 
 
 
223
  
195
224
  ssize_t sret = readlink(exe_link, exe_target, sizeof(exe_target));
196
225
  free(exe_link);
197
226
  if((sret != (ssize_t)sizeof(plymouth_path)-1) or
308
337
  /* test -x /bin/plymouth */
309
338
  ret = access(plymouth_path, X_OK);
310
339
  if(ret == -1){
311
 
    exit(EXIT_FAILURE);
 
340
    /* Plymouth is probably not installed.  Don't print an error
 
341
       message, just exit. */
 
342
    exit(EX_UNAVAILABLE);
312
343
  }
313
 
 
 
344
  
314
345
  { /* Add signal handlers */
315
346
    struct sigaction old_action,
316
347
      new_action = { .sa_handler = termination_handler,
317
348
                     .sa_flags = 0 };
318
349
    sigemptyset(&new_action.sa_mask);
319
 
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 }; *sig != 0; sig++){
 
350
    for(int *sig = (int[]){ SIGINT, SIGHUP, SIGTERM, 0 };
 
351
        *sig != 0; sig++){
320
352
      ret = sigaddset(&new_action.sa_mask, *sig);
321
353
      if(ret == -1){
322
 
        error(0, errno, "sigaddset");
323
 
        exit(EX_OSERR);
 
354
        error(EX_OSERR, errno, "sigaddset");
324
355
      }
325
356
      ret = sigaction(*sig, NULL, &old_action);
326
357
      if(ret == -1){
327
 
        error(0, errno, "sigaction");
328
 
        exit(EX_OSERR);
 
358
        error(EX_OSERR, errno, "sigaction");
329
359
      }
330
360
      if(old_action.sa_handler != SIG_IGN){
331
361
        ret = sigaction(*sig, &new_action, NULL);
332
362
        if(ret == -1){
333
 
          error(0, errno, "sigaction");
334
 
          exit(EX_OSERR);
 
363
          error(EX_OSERR, errno, "sigaction");
335
364
        }
336
365
      }
337
366
    }
338
367
  }
339
 
    
 
368
  
340
369
  /* plymouth --ping */
341
370
  bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
342
 
                       (const char *[]){ (const char *)plymouth_path, (const char *)"--ping", (const char *)NULL},
 
371
                       (const char *[])
 
372
                       { plymouth_path, "--ping", NULL },
343
373
                       true, false);
344
374
  if(not bret){
345
375
    if(interrupted_by_signal){
346
376
      kill_and_wait(plymouth_command_pid);
 
377
      exit(EXIT_FAILURE);
347
378
    }
348
 
    exit(EXIT_FAILURE);
 
379
    /* Plymouth is probably not running.  Don't print an error
 
380
       message, just exit. */
 
381
    exit(EX_UNAVAILABLE);
349
382
  }
350
383
  
351
384
  prompt = makeprompt();
352
385
  ret = asprintf(&prompt_arg, "--prompt=%s", prompt);
353
386
  free(prompt);
354
387
  if(ret == -1){
355
 
    error(0, errno, "asprintf");
356
 
    exit(EXIT_FAILURE);
 
388
    error(EX_OSERR, errno, "asprintf");
357
389
  }
358
390
  
359
391
  /* plymouth ask-for-password --prompt="$prompt" */
360
 
  bret = exec_and_wait(&plymouth_command_pid, plymouth_path,
361
 
                       (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",
 
395
                           prompt_arg, NULL },
362
396
                       true, false);
363
397
  free(prompt_arg);
364
 
  if(not bret){
365
 
    if(interrupted_by_signal){
366
 
      kill_and_wait(plymouth_command_pid);
367
 
    } else {
368
 
      exit(EXIT_FAILURE);
369
 
    }
370
 
  }
371
 
  
372
398
  if(bret){
373
399
    exit(EXIT_SUCCESS);
374
400
  }
 
401
  if(not interrupted_by_signal){
 
402
    /* exec_and_wait failed for some other reason */
 
403
    exit(EXIT_FAILURE);
 
404
  }
 
405
  kill_and_wait(plymouth_command_pid);
375
406
  
376
 
  const char **plymouthd_argv = NULL;
 
407
  const char **plymouthd_argv;
377
408
  pid_t pid = get_pid();
378
409
  if(pid == 0){
379
410
    error(0, 0, "plymouthd pid not found");
 
411
    plymouthd_argv = plymouthd_default_argv;
380
412
  } else {
381
413
    plymouthd_argv = getargv(pid);
382
414
  }
383
 
  if(plymouthd_argv == NULL){
384
 
    plymouthd_argv = plymouthd_default_argv;
385
 
  }
386
415
  
387
 
  bret = exec_and_wait(NULL, plymouth_path,
388
 
                       (const char *[]){plymouth_path, "quit", NULL}, false, false);
389
 
  if(not bret){
390
 
    exit(EXIT_FAILURE);
391
 
  }
392
 
  bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv, false, true);
393
 
  if(not bret){
394
 
    exit(EXIT_FAILURE);
395
 
  }
396
 
  exec_and_wait(NULL, plymouth_path,
397
 
                (const char *[]){ plymouth_path, "show-splash", NULL }, false, false);
 
416
  bret = exec_and_wait(NULL, plymouth_path, (const char *[])
 
417
                       { plymouth_path, "quit", NULL },
 
418
                       false, false);
 
419
  if(not bret){
 
420
    exit(EXIT_FAILURE);
 
421
  }
 
422
  bret = exec_and_wait(NULL, plymouthd_path, plymouthd_argv,
 
423
                       false, true);
 
424
  if(not bret){
 
425
    exit(EXIT_FAILURE);
 
426
  }
 
427
  exec_and_wait(NULL, plymouth_path, (const char *[])
 
428
                { plymouth_path, "show-splash", NULL },
 
429
                false, false);
398
430
  exit(EXIT_FAILURE);
399
431
}