3
3
* Splashy - Read a password from splashy and output it
5
* Copyright © 2008-2011 Teddy Hogeborn
6
* Copyright © 2008-2011 Björn Påhlsson
5
* Copyright © 2008,2009 Teddy Hogeborn
6
* Copyright © 2008,2009 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
19
19
* along with this program. If not, see
20
20
* <http://www.gnu.org/licenses/>.
22
* Contact the authors at <mandos@recompile.se>.
22
* Contact the authors at <mandos@fukt.bsnet.se>.
25
25
#define _GNU_SOURCE /* TEMP_FAILURE_RETRY(), asprintf() */
29
29
SIG_IGN, kill(), SIGKILL */
30
30
#include <stddef.h> /* NULL */
31
31
#include <stdlib.h> /* getenv() */
32
#include <stdio.h> /* asprintf(), vasprintf(), vprintf(),
32
#include <stdio.h> /* asprintf(), perror() */
34
33
#include <stdlib.h> /* EXIT_FAILURE, free(),
36
35
#include <sys/types.h> /* pid_t, DIR, struct dirent,
43
42
sleep(), dup2() STDERR_FILENO,
44
43
STDOUT_FILENO, _exit(),
46
#include <string.h> /* memcmp(), strerror() */
45
#include <string.h> /* memcmp() */
47
46
#include <errno.h> /* errno, EACCES, ENOTDIR, ELOOP,
48
47
ENOENT, ENAMETOOLONG, EMFILE,
49
48
ENFILE, ENOMEM, ENOEXEC, EINVAL,
50
49
E2BIG, EFAULT, EIO, ETXTBSY,
51
50
EISDIR, ELIBBAD, EPERM, EINTR,
53
#include <error.h> /* error() */
54
52
#include <sys/wait.h> /* waitpid(), WIFEXITED(),
56
54
#include <sysexits.h> /* EX_OSERR, EX_OSFILE,
58
#include <stdarg.h> /* va_list, va_start(), ... */
60
57
sig_atomic_t interrupted_by_signal = 0;
61
58
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);
87
60
static void termination_handler(int signum){
88
61
if(interrupted_by_signal){
240
213
sigemptyset(&new_action.sa_mask);
241
214
ret = sigaddset(&new_action.sa_mask, SIGINT);
243
error_plus(0, errno, "sigaddset");
244
217
exitstatus = EX_OSERR;
247
220
ret = sigaddset(&new_action.sa_mask, SIGHUP);
249
error_plus(0, errno, "sigaddset");
250
223
exitstatus = EX_OSERR;
253
226
ret = sigaddset(&new_action.sa_mask, SIGTERM);
255
error_plus(0, errno, "sigaddset");
256
229
exitstatus = EX_OSERR;
259
232
ret = sigaction(SIGINT, NULL, &old_action);
261
error_plus(0, errno, "sigaction");
262
235
exitstatus = EX_OSERR;
265
238
if(old_action.sa_handler != SIG_IGN){
266
239
ret = sigaction(SIGINT, &new_action, NULL);
268
error_plus(0, errno, "sigaction");
269
242
exitstatus = EX_OSERR;
273
246
ret = sigaction(SIGHUP, NULL, &old_action);
275
error_plus(0, errno, "sigaction");
276
249
exitstatus = EX_OSERR;
279
252
if(old_action.sa_handler != SIG_IGN){
280
253
ret = sigaction(SIGHUP, &new_action, NULL);
282
error_plus(0, errno, "sigaction");
283
256
exitstatus = EX_OSERR;
287
260
ret = sigaction(SIGTERM, NULL, &old_action);
289
error_plus(0, errno, "sigaction");
290
263
exitstatus = EX_OSERR;
293
266
if(old_action.sa_handler != SIG_IGN){
294
267
ret = sigaction(SIGTERM, &new_action, NULL);
296
error_plus(0, errno, "sigaction");
297
270
exitstatus = EX_OSERR;
408
379
the real user ID (_mandos) */
409
380
ret = setuid(geteuid());
411
error_plus(0, errno, "setuid");
415
386
ret = chdir("/");
417
error_plus(0, errno, "chdir");
419
390
/* if(fork() != 0){ */
420
391
/* _exit(EXIT_SUCCESS); */
422
393
ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
424
error_plus(0, errno, "dup2");
428
399
execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
431
error_plus(0, errno, "execl");
454
425
ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
455
426
&signal_action, NULL));
457
error_plus(0, errno, "sigaction");
460
431
ret = raise(signal_received);
461
432
} while(ret != 0 and errno == EINTR);
463
error_plus(0, errno, "raise");
466
437
TEMP_FAILURE_RETRY(pause());