blob: 276fadebdad9cb96c941da055441deea01c7d6c2 [file] [log] [blame]
Eric Andersenffde8672001-01-25 23:40:32 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini watchdog implementation for busybox
4 *
Eric Andersencde8f532003-07-22 07:39:18 +00005 * Copyright (C) 2003 Paul Mundt <lethal@linux-sh.org>
Eric Andersenffde8672001-01-25 23:40:32 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Eric Andersenffde8672001-01-25 23:40:32 +000023#include <stdio.h>
24#include <fcntl.h>
Eric Andersened3ef502001-01-27 08:24:39 +000025#include <unistd.h>
26#include <stdlib.h>
Eric Andersencde8f532003-07-22 07:39:18 +000027#include <signal.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000028#include "busybox.h"
Eric Andersenffde8672001-01-25 23:40:32 +000029
Eric Andersencde8f532003-07-22 07:39:18 +000030/* Userspace timer duration, in seconds */
31static unsigned int timer_duration = 30;
32
33/* Watchdog file descriptor */
34static int fd;
35
36static void watchdog_shutdown(int unused)
37{
38 write(fd, "V", 1); /* Magic */
39 close(fd);
40 exit(0);
41}
42
Eric Andersenffde8672001-01-25 23:40:32 +000043extern int watchdog_main(int argc, char **argv)
44{
Eric Andersencde8f532003-07-22 07:39:18 +000045 int opt;
Eric Andersenffde8672001-01-25 23:40:32 +000046
Eric Andersencde8f532003-07-22 07:39:18 +000047 while ((opt = getopt(argc, argv, "t:")) > 0) {
48 switch (opt) {
49 case 't':
50 timer_duration = bb_xgetlarg(optarg, 10, 0, INT_MAX);
51 break;
52 default:
53 bb_show_usage();
54 }
55 }
56
57 /* We're only interested in the watchdog device .. */
58 if (optind < argc - 1 || argc == 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +000059 bb_show_usage();
Eric Andersenffde8672001-01-25 23:40:32 +000060
Eric Andersencde8f532003-07-22 07:39:18 +000061 if (daemon(0, 1) < 0)
62 bb_perror_msg_and_die("Failed forking watchdog daemon");
63
64 signal(SIGHUP, watchdog_shutdown);
65 signal(SIGINT, watchdog_shutdown);
66
67 fd = bb_xopen(argv[argc - 1], O_WRONLY);
Eric Andersenffde8672001-01-25 23:40:32 +000068
69 while (1) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000070 /*
Eric Andersencde8f532003-07-22 07:39:18 +000071 * Make sure we clear the counter before sleeping, as the counter value
72 * is undefined at this point -- PFM
73 */
Eric Andersenffde8672001-01-25 23:40:32 +000074 write(fd, "\0", 1);
Eric Andersencde8f532003-07-22 07:39:18 +000075 sleep(timer_duration);
Eric Andersenffde8672001-01-25 23:40:32 +000076 }
77
Eric Andersencde8f532003-07-22 07:39:18 +000078 watchdog_shutdown(0);
79
80 return EXIT_SUCCESS;
Eric Andersenffde8672001-01-25 23:40:32 +000081}