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
|
|
|
*/
|
|
|
|
|
2006-06-03 19:49:21 +00:00
|
|
|
#include "busybox.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
|
|
|
|
|
2003-07-22 07:39:18 +00:00
|
|
|
/* Watchdog file descriptor */
|
|
|
|
static int fd;
|
|
|
|
|
2006-01-30 17:17:14 +00:00
|
|
|
static void watchdog_shutdown(int ATTRIBUTE_UNUSED unused)
|
2003-07-22 07:39:18 +00:00
|
|
|
{
|
2006-06-07 21:37:49 +00:00
|
|
|
write(fd, "V", 1); /* Magic, see watchdog-api.txt in kernel */
|
2003-07-22 07:39:18 +00:00
|
|
|
close(fd);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2005-10-28 09:24:33 +00:00
|
|
|
int watchdog_main(int argc, char **argv)
|
2001-01-25 23:40:32 +00:00
|
|
|
{
|
2006-06-26 21:31:17 +00:00
|
|
|
unsigned long opts;
|
2006-06-03 20:53:18 +00:00
|
|
|
unsigned long timer_duration = 30; /* Userspace timer duration, in seconds */
|
2005-10-28 09:24:33 +00:00
|
|
|
char *t_arg;
|
2006-06-03 20:53:18 +00:00
|
|
|
|
2006-06-26 21:31:17 +00:00
|
|
|
opts = bb_getopt_ulflags(argc, argv, "Ft:", &t_arg);
|
|
|
|
|
|
|
|
if (opts & OPT_TIMER)
|
2005-10-28 09:24:33 +00:00
|
|
|
timer_duration = bb_xgetlarg(t_arg, 10, 0, INT_MAX);
|
2001-01-25 23:40:32 +00:00
|
|
|
|
2003-07-22 07:39:18 +00:00
|
|
|
/* We're only interested in the watchdog device .. */
|
|
|
|
if (optind < argc - 1 || argc == 1)
|
|
|
|
bb_show_usage();
|
|
|
|
|
2006-06-07 21:48:43 +00:00
|
|
|
#ifdef BB_NOMMU
|
2006-06-26 21:31:17 +00:00
|
|
|
if (!(opts & OPT_FOREGROUND))
|
|
|
|
vfork_daemon_rexec(0, 1, argc, argv, "-F");
|
2006-06-07 21:48:43 +00:00
|
|
|
#else
|
2006-08-03 15:41:12 +00:00
|
|
|
xdaemon(0, 1);
|
2006-06-07 21:48:43 +00:00
|
|
|
#endif
|
2003-07-22 07:39:18 +00:00
|
|
|
|
|
|
|
signal(SIGHUP, watchdog_shutdown);
|
|
|
|
signal(SIGINT, watchdog_shutdown);
|
|
|
|
|
2006-08-03 15:41:12 +00:00
|
|
|
fd = xopen(argv[argc - 1], O_WRONLY);
|
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
|
|
|
|
*/
|
2001-01-25 23:40:32 +00:00
|
|
|
write(fd, "\0", 1);
|
2003-07-22 07:39:18 +00:00
|
|
|
sleep(timer_duration);
|
2001-01-25 23:40:32 +00:00
|
|
|
}
|
|
|
|
|
2003-07-22 07:39:18 +00:00
|
|
|
watchdog_shutdown(0);
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
2001-01-25 23:40:32 +00:00
|
|
|
}
|