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-2017 Teddy Hogeborn
6
* Copyright © 2008-2017 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 <string.h> /* memcmp(), strerror() */
46
47
#include <errno.h> /* errno, EACCES, ENOTDIR, ELOOP,
47
48
ENOENT, ENAMETOOLONG, EMFILE,
48
49
ENFILE, ENOMEM, ENOEXEC, EINVAL,
49
50
E2BIG, EFAULT, EIO, ETXTBSY,
50
51
EISDIR, ELIBBAD, EPERM, EINTR,
53
#include <error.h> /* error() */
52
54
#include <sys/wait.h> /* waitpid(), WIFEXITED(),
54
56
#include <sysexits.h> /* EX_OSERR, EX_OSFILE,
58
#include <stdarg.h> /* va_list, va_start(), ... */
57
60
sig_atomic_t interrupted_by_signal = 0;
58
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);
60
88
static void termination_handler(int signum){
61
89
if(interrupted_by_signal){
213
241
sigemptyset(&new_action.sa_mask);
214
242
ret = sigaddset(&new_action.sa_mask, SIGINT);
244
error_plus(0, errno, "sigaddset");
217
245
exitstatus = EX_OSERR;
220
248
ret = sigaddset(&new_action.sa_mask, SIGHUP);
250
error_plus(0, errno, "sigaddset");
223
251
exitstatus = EX_OSERR;
226
254
ret = sigaddset(&new_action.sa_mask, SIGTERM);
256
error_plus(0, errno, "sigaddset");
229
257
exitstatus = EX_OSERR;
232
260
ret = sigaction(SIGINT, NULL, &old_action);
262
error_plus(0, errno, "sigaction");
235
263
exitstatus = EX_OSERR;
238
266
if(old_action.sa_handler != SIG_IGN){
239
267
ret = sigaction(SIGINT, &new_action, NULL);
269
error_plus(0, errno, "sigaction");
242
270
exitstatus = EX_OSERR;
246
274
ret = sigaction(SIGHUP, NULL, &old_action);
276
error_plus(0, errno, "sigaction");
249
277
exitstatus = EX_OSERR;
252
280
if(old_action.sa_handler != SIG_IGN){
253
281
ret = sigaction(SIGHUP, &new_action, NULL);
283
error_plus(0, errno, "sigaction");
256
284
exitstatus = EX_OSERR;
260
288
ret = sigaction(SIGTERM, NULL, &old_action);
290
error_plus(0, errno, "sigaction");
263
291
exitstatus = EX_OSERR;
266
294
if(old_action.sa_handler != SIG_IGN){
267
295
ret = sigaction(SIGTERM, &new_action, NULL);
297
error_plus(0, errno, "sigaction");
270
298
exitstatus = EX_OSERR;
379
409
the real user ID (_mandos) */
380
410
ret = setuid(geteuid());
412
error_plus(0, errno, "setuid");
386
416
ret = chdir("/");
418
error_plus(0, errno, "chdir");
390
420
/* if(fork() != 0){ */
391
421
/* _exit(EXIT_SUCCESS); */
393
423
ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
425
error_plus(0, errno, "dup2");
399
429
execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
432
error_plus(0, errno, "execl");
425
455
ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
426
456
&signal_action, NULL));
458
error_plus(0, errno, "sigaction");
431
461
ret = raise(signal_received);
432
462
} while(ret != 0 and errno == EINTR);
464
error_plus(0, errno, "raise");
437
467
TEMP_FAILURE_RETRY(pause());