2007-03-13 05:04:52 +05:30
|
|
|
/*
|
|
|
|
Copyright (c) 2001-2006, Gerrit Pape
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
3. The name of the author may not be used to endorse or promote products
|
|
|
|
derived from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2008-03-02 18:23:15 +05:30
|
|
|
/* Busyboxed by Denys Vlasenko <vda.linux@googlemail.com> */
|
2006-11-18 00:28:49 +05:30
|
|
|
/* TODO: depends on runit_lib.c - review and reduce/eliminate */
|
|
|
|
|
|
|
|
#include <sys/poll.h>
|
|
|
|
#include <sys/file.h>
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2006-11-18 00:28:49 +05:30
|
|
|
#include "runit_lib.h"
|
|
|
|
|
|
|
|
#define MAXSERVICES 1000
|
|
|
|
|
2008-09-23 03:04:24 +05:30
|
|
|
/* Should be not needed - all dirs are on same FS, right? */
|
|
|
|
#define CHECK_DEVNO_TOO 0
|
|
|
|
|
2007-08-20 22:57:40 +05:30
|
|
|
struct service {
|
2008-09-23 03:04:24 +05:30
|
|
|
#if CHECK_DEVNO_TOO
|
2007-08-20 22:57:40 +05:30
|
|
|
dev_t dev;
|
2008-09-23 03:04:24 +05:30
|
|
|
#endif
|
2007-08-20 22:57:40 +05:30
|
|
|
ino_t ino;
|
|
|
|
pid_t pid;
|
|
|
|
smallint isgone;
|
|
|
|
};
|
|
|
|
|
2008-03-17 15:03:45 +05:30
|
|
|
struct globals {
|
|
|
|
struct service *sv;
|
|
|
|
char *svdir;
|
|
|
|
int svnum;
|
2008-09-23 03:04:24 +05:30
|
|
|
#if ENABLE_FEATURE_RUNSVDIR_LOG
|
|
|
|
char *rplog;
|
2008-03-17 15:03:45 +05:30
|
|
|
int rploglen;
|
|
|
|
struct fd_pair logpipe;
|
|
|
|
struct pollfd pfd[1];
|
|
|
|
unsigned stamplog;
|
2008-09-23 03:04:24 +05:30
|
|
|
#endif
|
2008-03-17 15:03:45 +05:30
|
|
|
};
|
|
|
|
#define G (*(struct globals*)&bb_common_bufsiz1)
|
2008-09-23 03:04:24 +05:30
|
|
|
#define sv (G.sv )
|
|
|
|
#define svdir (G.svdir )
|
|
|
|
#define svnum (G.svnum )
|
|
|
|
#define rplog (G.rplog )
|
|
|
|
#define rploglen (G.rploglen )
|
|
|
|
#define logpipe (G.logpipe )
|
|
|
|
#define pfd (G.pfd )
|
|
|
|
#define stamplog (G.stamplog )
|
2008-03-17 15:03:45 +05:30
|
|
|
#define INIT_G() do { \
|
|
|
|
} while (0)
|
2006-11-18 00:28:49 +05:30
|
|
|
|
2007-01-30 04:21:58 +05:30
|
|
|
static void fatal2_cannot(const char *m1, const char *m2)
|
2006-11-18 00:28:49 +05:30
|
|
|
{
|
|
|
|
bb_perror_msg_and_die("%s: fatal: cannot %s%s", svdir, m1, m2);
|
|
|
|
/* was exiting 100 */
|
|
|
|
}
|
2007-01-30 04:21:58 +05:30
|
|
|
static void warn3x(const char *m1, const char *m2, const char *m3)
|
2006-11-18 00:28:49 +05:30
|
|
|
{
|
|
|
|
bb_error_msg("%s: warning: %s%s%s", svdir, m1, m2, m3);
|
2007-01-11 22:50:00 +05:30
|
|
|
}
|
2007-01-30 04:21:58 +05:30
|
|
|
static void warn2_cannot(const char *m1, const char *m2)
|
2006-11-18 00:28:49 +05:30
|
|
|
{
|
|
|
|
warn3x("cannot ", m1, m2);
|
|
|
|
}
|
2008-09-23 03:04:24 +05:30
|
|
|
#if ENABLE_FEATURE_RUNSVDIR_LOG
|
2007-01-30 04:21:58 +05:30
|
|
|
static void warnx(const char *m1)
|
2006-11-18 00:28:49 +05:30
|
|
|
{
|
|
|
|
warn3x(m1, "", "");
|
2007-01-11 22:50:00 +05:30
|
|
|
}
|
2008-09-23 03:04:24 +05:30
|
|
|
#endif
|
2006-11-18 00:28:49 +05:30
|
|
|
|
2008-10-29 17:34:45 +05:30
|
|
|
/* inlining + vfork -> bigger code */
|
|
|
|
static NOINLINE pid_t runsv(const char *name)
|
2006-11-18 00:28:49 +05:30
|
|
|
{
|
2008-10-29 17:34:45 +05:30
|
|
|
pid_t pid;
|
|
|
|
|
|
|
|
/* If we got signaled, stop spawning children at once! */
|
|
|
|
if (bb_got_signal)
|
|
|
|
return 0;
|
2006-11-18 00:28:49 +05:30
|
|
|
|
2008-10-29 17:34:45 +05:30
|
|
|
pid = vfork();
|
2006-11-18 00:28:49 +05:30
|
|
|
if (pid == -1) {
|
2007-08-20 22:57:40 +05:30
|
|
|
warn2_cannot("vfork", "");
|
2008-10-29 17:34:45 +05:30
|
|
|
return 0;
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
|
|
|
if (pid == 0) {
|
|
|
|
/* child */
|
2008-11-07 04:09:57 +05:30
|
|
|
if (option_mask32 & 1) /* -P option? */
|
2007-04-01 06:48:20 +05:30
|
|
|
setsid();
|
2008-10-29 09:12:44 +05:30
|
|
|
/* man execv:
|
2008-10-29 17:34:45 +05:30
|
|
|
* "Signals set to be caught by the calling process image
|
|
|
|
* shall be set to the default action in the new process image."
|
2008-10-29 09:12:44 +05:30
|
|
|
* Therefore, we do not need this: */
|
|
|
|
#if 0
|
2008-02-17 04:28:56 +05:30
|
|
|
bb_signals(0
|
2008-10-29 09:12:44 +05:30
|
|
|
| (1 << SIGHUP)
|
|
|
|
| (1 << SIGTERM)
|
2008-02-17 04:28:56 +05:30
|
|
|
, SIG_DFL);
|
2008-10-29 09:12:44 +05:30
|
|
|
#endif
|
2009-02-26 17:59:59 +05:30
|
|
|
execlp("runsv", "runsv", name, (char *) NULL);
|
2006-11-18 00:28:49 +05:30
|
|
|
fatal2_cannot("start runsv ", name);
|
|
|
|
}
|
2008-10-29 17:34:45 +05:30
|
|
|
return pid;
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
|
|
|
|
2008-10-29 17:34:45 +05:30
|
|
|
/* gcc 4.3.0 does better with NOINLINE */
|
|
|
|
static NOINLINE int do_rescan(void)
|
2006-11-18 00:28:49 +05:30
|
|
|
{
|
|
|
|
DIR *dir;
|
2009-08-02 04:25:49 +05:30
|
|
|
struct dirent *d;
|
2006-11-18 00:28:49 +05:30
|
|
|
int i;
|
|
|
|
struct stat s;
|
2008-10-29 17:34:45 +05:30
|
|
|
int need_rescan = 0;
|
2006-11-18 00:28:49 +05:30
|
|
|
|
|
|
|
dir = opendir(".");
|
|
|
|
if (!dir) {
|
|
|
|
warn2_cannot("open directory ", svdir);
|
2008-10-29 17:34:45 +05:30
|
|
|
return 1; /* need to rescan again soon */
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
|
|
|
for (i = 0; i < svnum; i++)
|
|
|
|
sv[i].isgone = 1;
|
2008-05-31 12:30:33 +05:30
|
|
|
|
|
|
|
while (1) {
|
|
|
|
errno = 0;
|
|
|
|
d = readdir(dir);
|
|
|
|
if (!d)
|
|
|
|
break;
|
2007-08-20 22:57:40 +05:30
|
|
|
if (d->d_name[0] == '.')
|
|
|
|
continue;
|
2006-11-18 00:28:49 +05:30
|
|
|
if (stat(d->d_name, &s) == -1) {
|
|
|
|
warn2_cannot("stat ", d->d_name);
|
|
|
|
continue;
|
|
|
|
}
|
2007-08-20 22:57:40 +05:30
|
|
|
if (!S_ISDIR(s.st_mode))
|
|
|
|
continue;
|
2008-10-29 17:34:45 +05:30
|
|
|
/* Do we have this service listed already? */
|
2006-11-18 00:28:49 +05:30
|
|
|
for (i = 0; i < svnum; i++) {
|
2008-09-23 03:04:24 +05:30
|
|
|
if ((sv[i].ino == s.st_ino)
|
|
|
|
#if CHECK_DEVNO_TOO
|
|
|
|
&& (sv[i].dev == s.st_dev)
|
|
|
|
#endif
|
|
|
|
) {
|
2008-10-29 17:34:45 +05:30
|
|
|
if (sv[i].pid == 0) /* restart if it has died */
|
|
|
|
goto run_ith_sv;
|
|
|
|
sv[i].isgone = 0; /* "we still see you" */
|
|
|
|
goto next_dentry;
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
|
|
|
}
|
2008-10-29 17:34:45 +05:30
|
|
|
{ /* Not found, make new service */
|
2006-11-18 00:28:49 +05:30
|
|
|
struct service *svnew = realloc(sv, (i+1) * sizeof(*sv));
|
|
|
|
if (!svnew) {
|
2008-09-23 03:04:24 +05:30
|
|
|
warn2_cannot("start runsv ", d->d_name);
|
2008-10-29 17:34:45 +05:30
|
|
|
need_rescan = 1;
|
2006-11-18 00:28:49 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
sv = svnew;
|
|
|
|
svnum++;
|
2008-09-23 03:04:24 +05:30
|
|
|
#if CHECK_DEVNO_TOO
|
2006-11-18 00:28:49 +05:30
|
|
|
sv[i].dev = s.st_dev;
|
2008-09-23 03:04:24 +05:30
|
|
|
#endif
|
2008-10-29 17:34:45 +05:30
|
|
|
sv[i].ino = s.st_ino;
|
|
|
|
run_ith_sv:
|
|
|
|
sv[i].pid = runsv(d->d_name);
|
|
|
|
sv[i].isgone = 0;
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
2008-10-29 17:34:45 +05:30
|
|
|
next_dentry: ;
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
2008-09-23 03:04:24 +05:30
|
|
|
i = errno;
|
|
|
|
closedir(dir);
|
2008-10-29 17:34:45 +05:30
|
|
|
if (i) { /* readdir failed */
|
2006-11-18 00:28:49 +05:30
|
|
|
warn2_cannot("read directory ", svdir);
|
2008-10-29 17:34:45 +05:30
|
|
|
return 1; /* need to rescan again soon */
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
|
|
|
|
2008-10-29 17:34:45 +05:30
|
|
|
/* Send SIGTERM to runsv whose directories
|
|
|
|
* were no longer found (-> must have been removed) */
|
2006-11-18 00:28:49 +05:30
|
|
|
for (i = 0; i < svnum; i++) {
|
|
|
|
if (!sv[i].isgone)
|
|
|
|
continue;
|
|
|
|
if (sv[i].pid)
|
|
|
|
kill(sv[i].pid, SIGTERM);
|
2008-09-23 03:04:24 +05:30
|
|
|
svnum--;
|
|
|
|
sv[i] = sv[svnum];
|
|
|
|
i--; /* so that we don't skip new sv[i] (bug was here!) */
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
2008-10-29 17:34:45 +05:30
|
|
|
return need_rescan;
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int runsvdir_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int runsvdir_main(int argc UNUSED_PARAM, char **argv)
|
2006-11-18 00:28:49 +05:30
|
|
|
{
|
|
|
|
struct stat s;
|
2007-08-20 22:57:40 +05:30
|
|
|
dev_t last_dev = last_dev; /* for gcc */
|
|
|
|
ino_t last_ino = last_ino; /* for gcc */
|
|
|
|
time_t last_mtime = 0;
|
2006-11-18 00:28:49 +05:30
|
|
|
int wstat;
|
|
|
|
int curdir;
|
2008-11-07 04:09:57 +05:30
|
|
|
pid_t pid;
|
2007-08-20 22:57:40 +05:30
|
|
|
unsigned deadline;
|
|
|
|
unsigned now;
|
|
|
|
unsigned stampcheck;
|
2006-11-18 00:28:49 +05:30
|
|
|
int i;
|
2008-10-29 17:34:45 +05:30
|
|
|
int need_rescan = 1;
|
2008-11-07 04:09:57 +05:30
|
|
|
char *opt_s_argv[3];
|
2006-11-18 00:28:49 +05:30
|
|
|
|
2008-03-17 15:03:45 +05:30
|
|
|
INIT_G();
|
|
|
|
|
2008-09-12 01:21:11 +05:30
|
|
|
opt_complementary = "-1";
|
2008-11-07 04:09:57 +05:30
|
|
|
opt_s_argv[0] = NULL;
|
|
|
|
opt_s_argv[2] = NULL;
|
|
|
|
getopt32(argv, "Ps:", &opt_s_argv[0]);
|
2008-09-12 01:21:11 +05:30
|
|
|
argv += optind;
|
2006-11-18 00:28:49 +05:30
|
|
|
|
2008-10-29 09:12:44 +05:30
|
|
|
bb_signals(0
|
|
|
|
| (1 << SIGTERM)
|
|
|
|
| (1 << SIGHUP)
|
|
|
|
/* For busybox's init, SIGTERM == reboot,
|
|
|
|
* SIGUSR1 == halt
|
|
|
|
* SIGUSR2 == poweroff
|
|
|
|
* so we need to intercept SIGUSRn too.
|
|
|
|
* Note that we do not implement actual reboot
|
|
|
|
* (killall(TERM) + umount, etc), we just pause
|
|
|
|
* respawing and avoid exiting (-> making kernel oops).
|
|
|
|
* The user is responsible for the rest. */
|
|
|
|
| (getpid() == 1 ? ((1 << SIGUSR1) | (1 << SIGUSR2)) : 0)
|
|
|
|
, record_signo);
|
2006-11-18 00:28:49 +05:30
|
|
|
svdir = *argv++;
|
2008-09-23 03:04:24 +05:30
|
|
|
|
|
|
|
#if ENABLE_FEATURE_RUNSVDIR_LOG
|
|
|
|
/* setup log */
|
|
|
|
if (*argv) {
|
2006-11-18 00:28:49 +05:30
|
|
|
rplog = *argv;
|
2008-09-23 03:04:24 +05:30
|
|
|
rploglen = strlen(rplog);
|
|
|
|
if (rploglen < 7) {
|
|
|
|
warnx("log must have at least seven characters");
|
|
|
|
} else if (piped_pair(logpipe)) {
|
|
|
|
warnx("cannot create pipe for log");
|
|
|
|
} else {
|
|
|
|
close_on_exec_on(logpipe.rd);
|
|
|
|
close_on_exec_on(logpipe.wr);
|
|
|
|
ndelay_on(logpipe.rd);
|
|
|
|
ndelay_on(logpipe.wr);
|
|
|
|
if (dup2(logpipe.wr, 2) == -1) {
|
|
|
|
warnx("cannot set filedescriptor for log");
|
|
|
|
} else {
|
|
|
|
pfd[0].fd = logpipe.rd;
|
|
|
|
pfd[0].events = POLLIN;
|
|
|
|
stamplog = monotonic_sec();
|
|
|
|
goto run;
|
|
|
|
}
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
2008-09-23 03:04:24 +05:30
|
|
|
rplog = NULL;
|
|
|
|
warnx("log service disabled");
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
2008-10-29 09:12:44 +05:30
|
|
|
run:
|
2008-09-23 03:04:24 +05:30
|
|
|
#endif
|
2006-11-18 00:28:49 +05:30
|
|
|
curdir = open_read(".");
|
2007-01-11 22:50:00 +05:30
|
|
|
if (curdir == -1)
|
2006-11-18 00:28:49 +05:30
|
|
|
fatal2_cannot("open current directory", "");
|
2007-10-01 05:20:48 +05:30
|
|
|
close_on_exec_on(curdir);
|
2006-11-18 00:28:49 +05:30
|
|
|
|
2007-08-20 22:57:40 +05:30
|
|
|
stampcheck = monotonic_sec();
|
2006-11-18 00:28:49 +05:30
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
/* collect children */
|
|
|
|
for (;;) {
|
2008-01-03 01:25:04 +05:30
|
|
|
pid = wait_any_nohang(&wstat);
|
2007-08-20 22:57:40 +05:30
|
|
|
if (pid <= 0)
|
|
|
|
break;
|
2006-11-18 00:28:49 +05:30
|
|
|
for (i = 0; i < svnum; i++) {
|
|
|
|
if (pid == sv[i].pid) {
|
2008-10-29 17:34:45 +05:30
|
|
|
/* runsv has died */
|
2006-11-18 00:28:49 +05:30
|
|
|
sv[i].pid = 0;
|
2008-09-23 03:04:24 +05:30
|
|
|
need_rescan = 1;
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-20 22:57:40 +05:30
|
|
|
now = monotonic_sec();
|
|
|
|
if ((int)(now - stampcheck) >= 0) {
|
2006-11-18 00:28:49 +05:30
|
|
|
/* wait at least a second */
|
2007-08-20 22:57:40 +05:30
|
|
|
stampcheck = now + 1;
|
2007-01-11 22:50:00 +05:30
|
|
|
|
2006-11-18 00:28:49 +05:30
|
|
|
if (stat(svdir, &s) != -1) {
|
2008-09-23 03:04:24 +05:30
|
|
|
if (need_rescan || s.st_mtime != last_mtime
|
2007-08-20 22:57:40 +05:30
|
|
|
|| s.st_ino != last_ino || s.st_dev != last_dev
|
2006-11-18 00:28:49 +05:30
|
|
|
) {
|
|
|
|
/* svdir modified */
|
|
|
|
if (chdir(svdir) != -1) {
|
2007-08-20 22:57:40 +05:30
|
|
|
last_mtime = s.st_mtime;
|
|
|
|
last_dev = s.st_dev;
|
|
|
|
last_ino = s.st_ino;
|
|
|
|
//if (now <= mtime)
|
|
|
|
// sleep(1);
|
2008-10-29 17:34:45 +05:30
|
|
|
need_rescan = do_rescan();
|
2006-11-18 00:28:49 +05:30
|
|
|
while (fchdir(curdir) == -1) {
|
|
|
|
warn2_cannot("change directory, pausing", "");
|
|
|
|
sleep(5);
|
|
|
|
}
|
2008-10-29 17:34:45 +05:30
|
|
|
} else {
|
2006-11-18 00:28:49 +05:30
|
|
|
warn2_cannot("change directory to ", svdir);
|
2008-10-29 17:34:45 +05:30
|
|
|
}
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
2008-10-29 17:34:45 +05:30
|
|
|
} else {
|
2006-11-18 00:28:49 +05:30
|
|
|
warn2_cannot("stat ", svdir);
|
2008-10-29 17:34:45 +05:30
|
|
|
}
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
|
|
|
|
2008-09-23 03:04:24 +05:30
|
|
|
#if ENABLE_FEATURE_RUNSVDIR_LOG
|
2006-11-18 00:28:49 +05:30
|
|
|
if (rplog) {
|
2007-08-20 22:57:40 +05:30
|
|
|
if ((int)(now - stamplog) >= 0) {
|
2008-02-16 18:50:56 +05:30
|
|
|
write(logpipe.wr, ".", 1);
|
2007-08-20 22:57:40 +05:30
|
|
|
stamplog = now + 900;
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|
|
|
|
}
|
2007-08-20 22:57:40 +05:30
|
|
|
pfd[0].revents = 0;
|
2008-09-23 03:04:24 +05:30
|
|
|
#endif
|
|
|
|
deadline = (need_rescan ? 1 : 5);
|
2008-10-29 09:12:44 +05:30
|
|
|
sig_block(SIGCHLD);
|
2008-09-23 03:04:24 +05:30
|
|
|
#if ENABLE_FEATURE_RUNSVDIR_LOG
|
2006-11-18 00:28:49 +05:30
|
|
|
if (rplog)
|
2007-08-20 22:57:40 +05:30
|
|
|
poll(pfd, 1, deadline*1000);
|
2006-11-18 00:28:49 +05:30
|
|
|
else
|
2008-09-23 03:04:24 +05:30
|
|
|
#endif
|
2007-08-20 22:57:40 +05:30
|
|
|
sleep(deadline);
|
2007-01-28 03:51:52 +05:30
|
|
|
sig_unblock(SIGCHLD);
|
2006-11-18 00:28:49 +05:30
|
|
|
|
2008-09-23 03:04:24 +05:30
|
|
|
#if ENABLE_FEATURE_RUNSVDIR_LOG
|
2007-08-20 22:57:40 +05:30
|
|
|
if (pfd[0].revents & POLLIN) {
|
2008-09-23 03:04:24 +05:30
|
|
|
char ch;
|
2008-02-16 18:50:56 +05:30
|
|
|
while (read(logpipe.rd, &ch, 1) > 0) {
|
2008-10-29 09:12:44 +05:30
|
|
|
if (ch < ' ')
|
|
|
|
ch = ' ';
|
|
|
|
for (i = 6; i < rploglen; i++)
|
|
|
|
rplog[i-1] = rplog[i];
|
|
|
|
rplog[rploglen-1] = ch;
|
2007-08-20 22:57:40 +05:30
|
|
|
}
|
|
|
|
}
|
2008-09-23 03:04:24 +05:30
|
|
|
#endif
|
2008-11-07 04:09:57 +05:30
|
|
|
if (!bb_got_signal)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* -s SCRIPT: useful if we are init.
|
|
|
|
* In this case typically script never returns,
|
|
|
|
* it halts/powers off/reboots the system. */
|
|
|
|
if (opt_s_argv[0]) {
|
|
|
|
/* Single parameter: signal# */
|
|
|
|
opt_s_argv[1] = utoa(bb_got_signal);
|
|
|
|
pid = spawn(opt_s_argv);
|
|
|
|
if (pid > 0) {
|
2009-02-15 02:28:13 +05:30
|
|
|
/* Remembering to wait for _any_ children,
|
2008-11-07 04:09:57 +05:30
|
|
|
* not just pid */
|
|
|
|
while (wait(NULL) != pid)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-11 15:03:24 +05:30
|
|
|
if (bb_got_signal == SIGHUP) {
|
2006-11-18 00:28:49 +05:30
|
|
|
for (i = 0; i < svnum; i++)
|
|
|
|
if (sv[i].pid)
|
|
|
|
kill(sv[i].pid, SIGTERM);
|
|
|
|
}
|
2008-11-11 15:03:24 +05:30
|
|
|
/* SIGHUP or SIGTERM (or SIGUSRn if we are init) */
|
|
|
|
/* Exit unless we are init */
|
|
|
|
if (getpid() != 1)
|
|
|
|
return (SIGHUP == bb_got_signal) ? 111 : EXIT_SUCCESS;
|
2008-11-07 04:09:57 +05:30
|
|
|
|
2008-11-11 15:03:24 +05:30
|
|
|
/* init continues to monitor services forever */
|
2008-11-07 04:09:57 +05:30
|
|
|
bb_got_signal = 0;
|
|
|
|
} /* for (;;) */
|
2006-11-18 00:28:49 +05:30
|
|
|
}
|