1
1
#define _GNU_SOURCE /* asprintf() */
2
2
#include <signal.h> /* sig_atomic_t, struct sigaction,
3
sigemptyset(), sigaddset(),
4
sigaction, SIGINT, SIG_IGN, SIGHUP,
5
SIGTERM, kill(), SIGKILL */
3
sigemptyset(), sigaddset(), SIGINT,
4
SIGHUP, SIGTERM, sigaction,
5
SIG_IGN, kill(), SIGKILL */
6
6
#include <stddef.h> /* NULL */
7
7
#include <stdlib.h> /* getenv() */
8
8
#include <stdio.h> /* asprintf(), perror() */
9
#include <stdlib.h> /* EXIT_FAILURE, EXIT_SUCCESS,
9
#include <stdlib.h> /* EXIT_FAILURE, free(), strtoul(),
11
11
#include <sys/types.h> /* pid_t, DIR, struct dirent,
13
13
#include <dirent.h> /* opendir(), readdir(), closedir() */
14
#include <sys/stat.h> /* struct stat, lstat(), S_ISLNK */
15
#include <iso646.h> /* not, or, and */
14
16
#include <unistd.h> /* readlink(), fork(), execl(),
17
sleep(), dup2() STDERR_FILENO,
18
STDOUT_FILENO, _exit() */
16
19
#include <string.h> /* memcmp() */
17
#include <iso646.h> /* and */
18
20
#include <errno.h> /* errno */
19
21
#include <sys/wait.h> /* waitpid(), WIFEXITED(),
88
90
closedir(proc_dir);
89
91
return EXIT_FAILURE;
94
/* Check that it refers to a symlink owned by root:root */
96
ret = lstat(exe_link, &exe_stat);
104
if(not S_ISLNK(exe_stat.st_mode)
105
or exe_stat.st_uid != 0
106
or exe_stat.st_gid != 0){
91
111
sret = readlink(exe_link, exe_target, sizeof(exe_target));
173
193
const char splashy_command[] = "/sbin/splashy_update";
174
194
ret = execl(splashy_command, splashy_command, prompt,
176
if(not interrupted_by_signal and errno != ENOENT){
177
/* Don't report "File not found", since splashy might not be
196
if(not interrupted_by_signal){
189
207
/* Wait for command to complete */
191
while(not interrupted_by_signal){
192
waitpid(splashy_command_pid, &status, 0);
193
if(not interrupted_by_signal
194
and WIFEXITED(status) and WEXITSTATUS(status)==0){
208
if(not interrupted_by_signal and splashy_command_pid != 0){
210
ret = waitpid(splashy_command_pid, &status, 0);
216
splashy_command_pid = 0;
219
/* The child process has exited */
220
splashy_command_pid = 0;
221
if(not interrupted_by_signal and WIFEXITED(status)
222
and WEXITSTATUS(status)==0){
198
227
kill(splashy_pid, SIGTERM);
199
if(interrupted_by_signal){
228
if(interrupted_by_signal and splashy_command_pid != 0){
200
229
kill(splashy_command_pid, SIGTERM);
232
while(kill(splashy_pid, 0) == 0){
233
kill(splashy_pid, SIGKILL);
203
236
pid_t new_splashy_pid = fork();
204
237
if(new_splashy_pid == 0){
205
238
/* Child; will become new splashy process */
206
while(kill(splashy_pid, 0)){
208
kill(splashy_pid, SIGKILL);
240
/* Make the effective user ID (root) the only user ID instead of
241
the real user ID (mandos) */
242
ret = setuid(geteuid());
249
/* if(fork() != 0){ */
250
/* _exit(EXIT_SUCCESS); */
211
252
ret = dup2(STDERR_FILENO, STDOUT_FILENO); /* replace our stdout */
214
255
_exit(EXIT_FAILURE);
216
258
execl("/sbin/splashy", "/sbin/splashy", "boot", (char *)NULL);
259
if(not interrupted_by_signal){
219
265
return EXIT_FAILURE;