2001-01-26 05:10:32 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini watchdog implementation for busybox
|
|
|
|
*
|
2003-07-22 13:09:18 +05:30
|
|
|
* Copyright (C) 2003 Paul Mundt <lethal@linux-sh.org>
|
2006-06-04 02:23:18 +05:30
|
|
|
* Copyright (C) 2006 Bernhard Fischer <busybox@busybox.net>
|
2001-01-26 05:10:32 +05:30
|
|
|
*
|
2005-10-28 14:54:33 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2001-01-26 05:10:32 +05:30
|
|
|
*/
|
|
|
|
|
2006-06-04 01:19:21 +05:30
|
|
|
#include "busybox.h"
|
2001-01-26 05:10:32 +05:30
|
|
|
|
2006-06-27 03:01:17 +05:30
|
|
|
#define OPT_FOREGROUND 0x01
|
|
|
|
#define OPT_TIMER 0x02
|
|
|
|
|
2003-07-22 13:09:18 +05:30
|
|
|
/* Watchdog file descriptor */
|
|
|
|
static int fd;
|
|
|
|
|
2006-01-30 22:47:14 +05:30
|
|
|
static void watchdog_shutdown(int ATTRIBUTE_UNUSED unused)
|
2003-07-22 13:09:18 +05:30
|
|
|
{
|
2006-06-08 03:07:49 +05:30
|
|
|
write(fd, "V", 1); /* Magic, see watchdog-api.txt in kernel */
|
2003-07-22 13:09:18 +05:30
|
|
|
close(fd);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2005-10-28 14:54:33 +05:30
|
|
|
int watchdog_main(int argc, char **argv)
|
2001-01-26 05:10:32 +05:30
|
|
|
{
|
2006-10-04 02:30:06 +05:30
|
|
|
unsigned opts;
|
2006-10-08 18:19:22 +05:30
|
|
|
unsigned timer_duration = 30; /* Userspace timer duration, in seconds */
|
2005-10-28 14:54:33 +05:30
|
|
|
char *t_arg;
|
2006-06-04 02:23:18 +05:30
|
|
|
|
2006-10-04 02:30:06 +05:30
|
|
|
opts = getopt32(argc, argv, "Ft:", &t_arg);
|
2006-06-27 03:01:17 +05:30
|
|
|
|
|
|
|
if (opts & OPT_TIMER)
|
2006-10-08 18:19:22 +05:30
|
|
|
timer_duration = xatou(t_arg);
|
2001-01-26 05:10:32 +05:30
|
|
|
|
2003-07-22 13:09:18 +05:30
|
|
|
/* We're only interested in the watchdog device .. */
|
|
|
|
if (optind < argc - 1 || argc == 1)
|
|
|
|
bb_show_usage();
|
|
|
|
|
2006-06-08 03:18:43 +05:30
|
|
|
#ifdef BB_NOMMU
|
2006-06-27 03:01:17 +05:30
|
|
|
if (!(opts & OPT_FOREGROUND))
|
|
|
|
vfork_daemon_rexec(0, 1, argc, argv, "-F");
|
2006-06-08 03:18:43 +05:30
|
|
|
#else
|
2006-08-03 21:11:12 +05:30
|
|
|
xdaemon(0, 1);
|
2006-06-08 03:18:43 +05:30
|
|
|
#endif
|
2003-07-22 13:09:18 +05:30
|
|
|
|
|
|
|
signal(SIGHUP, watchdog_shutdown);
|
|
|
|
signal(SIGINT, watchdog_shutdown);
|
|
|
|
|
2006-08-03 21:11:12 +05:30
|
|
|
fd = xopen(argv[argc - 1], O_WRONLY);
|
2001-01-26 05:10:32 +05:30
|
|
|
|
|
|
|
while (1) {
|
2004-03-15 13:59:22 +05:30
|
|
|
/*
|
2003-07-22 13:09:18 +05:30
|
|
|
* Make sure we clear the counter before sleeping, as the counter value
|
|
|
|
* is undefined at this point -- PFM
|
|
|
|
*/
|
2001-01-26 05:10:32 +05:30
|
|
|
write(fd, "\0", 1);
|
2003-07-22 13:09:18 +05:30
|
|
|
sleep(timer_duration);
|
2001-01-26 05:10:32 +05:30
|
|
|
}
|
|
|
|
|
2003-07-22 13:09:18 +05:30
|
|
|
watchdog_shutdown(0);
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
2001-01-26 05:10:32 +05:30
|
|
|
}
|