3
3
 * Splashy - Read a password from splashy and output it
 
5
 
 * Copyright © 2008,2009 Teddy Hogeborn
 
6
 
 * Copyright © 2008,2009 Björn Påhlsson
 
 
5
 * Copyright © 2008-2014 Teddy Hogeborn
 
 
6
 * Copyright © 2008-2014 Björn Påhlsson
 
8
8
 * This program is free software: you can redistribute it and/or
 
9
9
 * modify it under the terms of the GNU General Public License as
 
 
29
29
                                   SIG_IGN, kill(), SIGKILL */
 
30
30
#include <stddef.h>             /* NULL */
 
31
31
#include <stdlib.h>             /* getenv() */
 
32
 
#include <stdio.h>              /* asprintf(), perror() */
 
 
32
#include <stdio.h>              /* asprintf(), vasprintf(), vprintf(),
 
33
34
#include <stdlib.h>             /* EXIT_FAILURE, free(),
 
35
36
#include <sys/types.h>          /* pid_t, DIR, struct dirent,
 
 
42
43
                                   sleep(), dup2() STDERR_FILENO,
 
43
44
                                   STDOUT_FILENO, _exit(),
 
45
 
#include <string.h>             /* memcmp() */
 
46
 
#include <errno.h>              /* errno */
 
 
46
#include <string.h>             /* memcmp(), strerror() */
 
 
47
#include <errno.h>              /* errno, EACCES, ENOTDIR, ELOOP,
 
 
48
                                   ENOENT, ENAMETOOLONG, EMFILE,
 
 
49
                                   ENFILE, ENOMEM, ENOEXEC, EINVAL,
 
 
50
                                   E2BIG, EFAULT, EIO, ETXTBSY,
 
 
51
                                   EISDIR, ELIBBAD, EPERM, EINTR,
 
 
53
#include <error.h>              /* error() */
 
47
54
#include <sys/wait.h>           /* waitpid(), WIFEXITED(),
 
50
56
#include <sysexits.h>           /* EX_OSERR, EX_OSFILE,
 
 
58
#include <stdarg.h>             /* va_list, va_start(), ... */
 
53
60
sig_atomic_t interrupted_by_signal = 0;
 
54
61
int signal_received;
 
 
63
/* Function to use when printing errors */
 
 
64
__attribute__((format (gnu_printf, 3, 4)))
 
 
65
void error_plus(int status, int errnum, const char *formatstring,
 
 
71
  va_start(ap, formatstring);
 
 
72
  ret = vasprintf(&text, formatstring, ap);
 
 
74
    fprintf(stderr, "Mandos plugin %s: ",
 
 
75
            program_invocation_short_name);
 
 
76
    vfprintf(stderr, formatstring, ap);
 
 
77
    fprintf(stderr, ": ");
 
 
78
    fprintf(stderr, "%s\n", strerror(errnum));
 
 
79
    error(status, errno, "vasprintf while printing error");
 
 
82
  fprintf(stderr, "Mandos plugin ");
 
 
83
  error(status, errnum, "%s", text);
 
56
88
static void termination_handler(int signum){
 
57
89
  if(interrupted_by_signal){
 
 
209
241
    sigemptyset(&new_action.sa_mask);
 
210
242
    ret = sigaddset(&new_action.sa_mask, SIGINT);
 
 
244
      error_plus(0, errno, "sigaddset");
 
213
245
      exitstatus = EX_OSERR;
 
216
248
    ret = sigaddset(&new_action.sa_mask, SIGHUP);
 
 
250
      error_plus(0, errno, "sigaddset");
 
219
251
      exitstatus = EX_OSERR;
 
222
254
    ret = sigaddset(&new_action.sa_mask, SIGTERM);
 
 
256
      error_plus(0, errno, "sigaddset");
 
225
257
      exitstatus = EX_OSERR;
 
228
260
    ret = sigaction(SIGINT, NULL, &old_action);
 
 
262
      error_plus(0, errno, "sigaction");
 
231
263
      exitstatus = EX_OSERR;
 
234
266
    if(old_action.sa_handler != SIG_IGN){
 
235
267
      ret = sigaction(SIGINT, &new_action, NULL);
 
 
269
        error_plus(0, errno, "sigaction");
 
238
270
        exitstatus = EX_OSERR;
 
242
274
    ret = sigaction(SIGHUP, NULL, &old_action);
 
 
276
      error_plus(0, errno, "sigaction");
 
245
277
      exitstatus = EX_OSERR;
 
248
280
    if(old_action.sa_handler != SIG_IGN){
 
249
281
      ret = sigaction(SIGHUP, &new_action, NULL);
 
 
283
        error_plus(0, errno, "sigaction");
 
252
284
        exitstatus = EX_OSERR;
 
256
288
    ret = sigaction(SIGTERM, NULL, &old_action);
 
 
290
      error_plus(0, errno, "sigaction");
 
259
291
      exitstatus = EX_OSERR;
 
262
294
    if(old_action.sa_handler != SIG_IGN){
 
263
295
      ret = sigaction(SIGTERM, &new_action, NULL);
 
 
297
        error_plus(0, errno, "sigaction");
 
266
298
        exitstatus = EX_OSERR;
 
 
288
320
    if(not interrupted_by_signal){
 
289
321
      const char splashy_command[] = "/sbin/splashy_update";
 
290
322
      execl(splashy_command, splashy_command, prompt, (char *)NULL);
 
 
324
      error_plus(0, errno, "execl");
 
 
330
        _exit(EX_UNAVAILABLE);
 
 
345
      case ELIBBAD:             /* Linux only */
 
294
352
    _exit(EXIT_FAILURE);
 
 
351
409
         the real user ID (_mandos) */
 
352
410
      ret = setuid(geteuid());
 
 
412
        error_plus(0, errno, "setuid");
 
358
416
      ret = chdir("/");
 
 
418
        error_plus(0, errno, "chdir");
 
362
420
/*       if(fork() != 0){ */
 
363
421
/*      _exit(EXIT_SUCCESS); */
 
365
423
      ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
 
 
425
        error_plus(0, errno, "dup2");
 
371
429
      execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
 
 
432
        error_plus(0, errno, "execl");
 
 
397
455
    ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
 
398
456
                                            &signal_action, NULL));
 
 
458
      error_plus(0, errno, "sigaction");
 
403
461
      ret = raise(signal_received);
 
404
462
    } while(ret != 0 and errno == EINTR);
 
 
464
      error_plus(0, errno, "raise");
 
409
467
    TEMP_FAILURE_RETRY(pause());