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-2011 Teddy Hogeborn
6
* Copyright © 2008-2011 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() */
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,
55
56
#include <sysexits.h> /* EX_OSERR, EX_OSFILE,
58
#include <stdarg.h> /* va_list, va_start(), ... */
58
60
sig_atomic_t interrupted_by_signal = 0;
59
61
int signal_received;
63
/* Function to use when printing errors */
64
void error_plus(int status, int errnum, const char *formatstring,
70
va_start(ap, formatstring);
71
ret = vasprintf(&text, formatstring, ap);
73
fprintf(stderr, "Mandos plugin %s: ",
74
program_invocation_short_name);
75
vfprintf(stderr, formatstring, ap);
76
fprintf(stderr, ": ");
77
fprintf(stderr, "%s\n", strerror(errnum));
78
error(status, errno, "vasprintf while printing error");
81
fprintf(stderr, "Mandos plugin ");
82
error(status, errnum, "%s", text);
61
87
static void termination_handler(int signum){
62
88
if(interrupted_by_signal){
214
240
sigemptyset(&new_action.sa_mask);
215
241
ret = sigaddset(&new_action.sa_mask, SIGINT);
217
error(0, errno, "sigaddset");
243
error_plus(0, errno, "sigaddset");
218
244
exitstatus = EX_OSERR;
221
247
ret = sigaddset(&new_action.sa_mask, SIGHUP);
223
error(0, errno, "sigaddset");
249
error_plus(0, errno, "sigaddset");
224
250
exitstatus = EX_OSERR;
227
253
ret = sigaddset(&new_action.sa_mask, SIGTERM);
229
error(0, errno, "sigaddset");
255
error_plus(0, errno, "sigaddset");
230
256
exitstatus = EX_OSERR;
233
259
ret = sigaction(SIGINT, NULL, &old_action);
235
error(0, errno, "sigaction");
261
error_plus(0, errno, "sigaction");
236
262
exitstatus = EX_OSERR;
239
265
if(old_action.sa_handler != SIG_IGN){
240
266
ret = sigaction(SIGINT, &new_action, NULL);
242
error(0, errno, "sigaction");
268
error_plus(0, errno, "sigaction");
243
269
exitstatus = EX_OSERR;
247
273
ret = sigaction(SIGHUP, NULL, &old_action);
249
error(0, errno, "sigaction");
275
error_plus(0, errno, "sigaction");
250
276
exitstatus = EX_OSERR;
253
279
if(old_action.sa_handler != SIG_IGN){
254
280
ret = sigaction(SIGHUP, &new_action, NULL);
256
error(0, errno, "sigaction");
282
error_plus(0, errno, "sigaction");
257
283
exitstatus = EX_OSERR;
261
287
ret = sigaction(SIGTERM, NULL, &old_action);
263
error(0, errno, "sigaction");
289
error_plus(0, errno, "sigaction");
264
290
exitstatus = EX_OSERR;
267
293
if(old_action.sa_handler != SIG_IGN){
268
294
ret = sigaction(SIGTERM, &new_action, NULL);
270
error(0, errno, "sigaction");
296
error_plus(0, errno, "sigaction");
271
297
exitstatus = EX_OSERR;
380
408
the real user ID (_mandos) */
381
409
ret = setuid(geteuid());
383
error(0, errno, "setuid");
411
error_plus(0, errno, "setuid");
387
415
ret = chdir("/");
389
error(0, errno, "chdir");
417
error_plus(0, errno, "chdir");
391
419
/* if(fork() != 0){ */
392
420
/* _exit(EXIT_SUCCESS); */
394
422
ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
396
error(0, errno, "dup2");
424
error_plus(0, errno, "dup2");
400
428
execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
403
error(0, errno, "execl");
431
error_plus(0, errno, "execl");
426
454
ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
427
455
&signal_action, NULL));
429
error(0, errno, "sigaction");
457
error_plus(0, errno, "sigaction");
432
460
ret = raise(signal_received);
433
461
} while(ret != 0 and errno == EINTR);
435
error(0, errno, "raise");
463
error_plus(0, errno, "raise");
438
466
TEMP_FAILURE_RETRY(pause());