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