2001-01-25 23:40:32 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini watchdog implementation for busybox
|
|
|
|
*
|
2003-07-22 07:39:18 +00:00
|
|
|
* Copyright (C) 2003 Paul Mundt <lethal@linux-sh.org>
|
2006-06-03 20:53:18 +00:00
|
|
|
* Copyright (C) 2006 Bernhard Fischer <busybox@busybox.net>
|
2001-01-25 23:40:32 +00:00
|
|
|
*
|
2005-10-28 09:24:33 +00:00
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2001-01-25 23:40:32 +00:00
|
|
|
*/
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2001-01-25 23:40:32 +00:00
|
|
|
|
2006-06-26 21:31:17 +00:00
|
|
|
#define OPT_FOREGROUND 0x01
|
|
|
|
#define OPT_TIMER 0x02
|
|
|
|
|
2007-03-14 21:55:41 +00:00
|
|
|
static void watchdog_shutdown(int ATTRIBUTE_UNUSED sig) ATTRIBUTE_NORETURN;
|
|
|
|
static void watchdog_shutdown(int ATTRIBUTE_UNUSED sig)
|
2003-07-22 07:39:18 +00:00
|
|
|
{
|
2007-09-05 12:13:51 +00:00
|
|
|
static const char V = 'V';
|
|
|
|
|
|
|
|
write(3, &V, 1); /* Magic, see watchdog-api.txt in kernel */
|
2007-03-14 21:55:41 +00:00
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
close(3);
|
2003-07-22 07:39:18 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int watchdog_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2005-10-28 09:24:33 +00:00
|
|
|
int watchdog_main(int argc, char **argv)
|
2001-01-25 23:40:32 +00:00
|
|
|
{
|
2006-10-03 21:00:06 +00:00
|
|
|
unsigned opts;
|
2007-09-05 12:13:51 +00:00
|
|
|
unsigned timer_duration = 30000; /* Userspace timer duration, in milliseconds */
|
2005-10-28 09:24:33 +00:00
|
|
|
char *t_arg;
|
2006-06-03 20:53:18 +00:00
|
|
|
|
2007-03-26 13:20:54 +00:00
|
|
|
opt_complementary = "=1"; /* must have 1 argument */
|
2007-08-18 15:32:12 +00:00
|
|
|
opts = getopt32(argv, "Ft:", &t_arg);
|
2006-06-26 21:31:17 +00:00
|
|
|
|
2007-09-05 12:13:51 +00:00
|
|
|
if (opts & OPT_TIMER) {
|
|
|
|
static const struct suffix_mult suffixes[] = {
|
|
|
|
{ "ms", 1 },
|
|
|
|
{ "", 1000 },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
timer_duration = xatou_sfx(t_arg, suffixes);
|
|
|
|
}
|
2001-01-25 23:40:32 +00:00
|
|
|
|
2007-03-24 12:11:17 +00:00
|
|
|
if (!(opts & OPT_FOREGROUND)) {
|
2007-03-26 13:20:54 +00:00
|
|
|
bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
|
2007-03-24 12:11:17 +00:00
|
|
|
}
|
2003-07-22 07:39:18 +00:00
|
|
|
|
|
|
|
signal(SIGHUP, watchdog_shutdown);
|
|
|
|
signal(SIGINT, watchdog_shutdown);
|
|
|
|
|
2007-03-14 21:55:41 +00:00
|
|
|
/* Use known fd # - avoid needing global 'int fd' */
|
2007-03-26 13:20:54 +00:00
|
|
|
xmove_fd(xopen(argv[argc - 1], O_WRONLY), 3);
|
2001-01-25 23:40:32 +00:00
|
|
|
|
|
|
|
while (1) {
|
2004-03-15 08:29:22 +00:00
|
|
|
/*
|
2003-07-22 07:39:18 +00:00
|
|
|
* Make sure we clear the counter before sleeping, as the counter value
|
|
|
|
* is undefined at this point -- PFM
|
|
|
|
*/
|
2007-09-05 12:13:51 +00:00
|
|
|
write(3, "", 1); /* write zero byte */
|
|
|
|
usleep(timer_duration * 1000L);
|
2001-01-25 23:40:32 +00:00
|
|
|
}
|
2007-09-05 12:13:51 +00:00
|
|
|
return EXIT_SUCCESS; /* - not reached, but gcc 4.2.1 is too dumb! */
|
2001-01-25 23:40:32 +00:00
|
|
|
}
|