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 <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
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);
60
87
static void termination_handler(int signum){
61
88
if(interrupted_by_signal){
213
240
sigemptyset(&new_action.sa_mask);
214
241
ret = sigaddset(&new_action.sa_mask, SIGINT);
243
error_plus(0, errno, "sigaddset");
217
244
exitstatus = EX_OSERR;
220
247
ret = sigaddset(&new_action.sa_mask, SIGHUP);
249
error_plus(0, errno, "sigaddset");
223
250
exitstatus = EX_OSERR;
226
253
ret = sigaddset(&new_action.sa_mask, SIGTERM);
255
error_plus(0, errno, "sigaddset");
229
256
exitstatus = EX_OSERR;
232
259
ret = sigaction(SIGINT, NULL, &old_action);
261
error_plus(0, errno, "sigaction");
235
262
exitstatus = EX_OSERR;
238
265
if(old_action.sa_handler != SIG_IGN){
239
266
ret = sigaction(SIGINT, &new_action, NULL);
268
error_plus(0, errno, "sigaction");
242
269
exitstatus = EX_OSERR;
246
273
ret = sigaction(SIGHUP, NULL, &old_action);
275
error_plus(0, errno, "sigaction");
249
276
exitstatus = EX_OSERR;
252
279
if(old_action.sa_handler != SIG_IGN){
253
280
ret = sigaction(SIGHUP, &new_action, NULL);
282
error_plus(0, errno, "sigaction");
256
283
exitstatus = EX_OSERR;
260
287
ret = sigaction(SIGTERM, NULL, &old_action);
289
error_plus(0, errno, "sigaction");
263
290
exitstatus = EX_OSERR;
266
293
if(old_action.sa_handler != SIG_IGN){
267
294
ret = sigaction(SIGTERM, &new_action, NULL);
296
error_plus(0, errno, "sigaction");
270
297
exitstatus = EX_OSERR;
379
408
the real user ID (_mandos) */
380
409
ret = setuid(geteuid());
411
error_plus(0, errno, "setuid");
386
415
ret = chdir("/");
417
error_plus(0, errno, "chdir");
390
419
/* if(fork() != 0){ */
391
420
/* _exit(EXIT_SUCCESS); */
393
422
ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace stdout */
424
error_plus(0, errno, "dup2");
399
428
execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
431
error_plus(0, errno, "execl");
425
454
ret = (int)TEMP_FAILURE_RETRY(sigaction(signal_received,
426
455
&signal_action, NULL));
457
error_plus(0, errno, "sigaction");
431
460
ret = raise(signal_received);
432
461
} while(ret != 0 and errno == EINTR);
463
error_plus(0, errno, "raise");
437
466
TEMP_FAILURE_RETRY(pause());