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() */
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() */
45
#include <string.h> /* memcmp() */
46
#include <errno.h> /* errno */
54
47
#include <sys/wait.h> /* waitpid(), WIFEXITED(),
56
#include <sysexits.h> /* EX_OSERR, EX_OSFILE,
58
#include <stdarg.h> /* va_list, va_start(), ... */
60
50
sig_atomic_t interrupted_by_signal = 0;
61
51
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
53
static void termination_handler(int signum){
88
54
if(interrupted_by_signal){
240
174
sigemptyset(&new_action.sa_mask);
241
175
ret = sigaddset(&new_action.sa_mask, SIGINT);
243
error_plus(0, errno, "sigaddset");
244
exitstatus = EX_OSERR;
247
180
ret = sigaddset(&new_action.sa_mask, SIGHUP);
249
error_plus(0, errno, "sigaddset");
250
exitstatus = EX_OSERR;
253
185
ret = sigaddset(&new_action.sa_mask, SIGTERM);
255
error_plus(0, errno, "sigaddset");
256
exitstatus = EX_OSERR;
259
190
ret = sigaction(SIGINT, NULL, &old_action);
261
error_plus(0, errno, "sigaction");
262
exitstatus = EX_OSERR;
265
195
if(old_action.sa_handler != SIG_IGN){
266
196
ret = sigaction(SIGINT, &new_action, NULL);
268
error_plus(0, errno, "sigaction");
269
exitstatus = EX_OSERR;
273
202
ret = sigaction(SIGHUP, NULL, &old_action);
275
error_plus(0, errno, "sigaction");
276
exitstatus = EX_OSERR;
279
207
if(old_action.sa_handler != SIG_IGN){
280
208
ret = sigaction(SIGHUP, &new_action, NULL);
282
error_plus(0, errno, "sigaction");
283
exitstatus = EX_OSERR;
287
214
ret = sigaction(SIGTERM, NULL, &old_action);
289
error_plus(0, errno, "sigaction");
290
exitstatus = EX_OSERR;
293
219
if(old_action.sa_handler != SIG_IGN){
294
220
ret = sigaction(SIGTERM, &new_action, NULL);
296
error_plus(0, errno, "sigaction");
297
exitstatus = EX_OSERR;
319
243
if(not interrupted_by_signal){
320
244
const char splashy_command[] = "/sbin/splashy_update";
321
245
execl(splashy_command, splashy_command, prompt, (char *)NULL);
323
error_plus(0, errno, "execl");
329
_exit(EX_UNAVAILABLE);
344
case ELIBBAD: /* Linux only */
351
249
_exit(EXIT_FAILURE);
408
306
the real user ID (_mandos) */
409
307
ret = setuid(geteuid());
411
error_plus(0, errno, "setuid");
415
313
ret = chdir("/");
417
error_plus(0, errno, "chdir");
419
317
/* if(fork() != 0){ */
420
318
/* _exit(EXIT_SUCCESS); */
422
320
ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
424
error_plus(0, errno, "dup2");
428
326
execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
431
error_plus(0, errno, "execl");
437
_exit(EX_UNAVAILABLE);
454
336
ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
455
337
&signal_action, NULL));
457
error_plus(0, errno, "sigaction");
460
342
ret = raise(signal_received);
461
343
} while(ret != 0 and errno == EINTR);
463
error_plus(0, errno, "raise");
466
348
TEMP_FAILURE_RETRY(pause());