Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Mini watchdog implementation for busybox |
| 4 | * |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 5 | * Copyright (C) 2003 Paul Mundt <lethal@linux-sh.org> |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 6 | * |
Rob Landley | 1b751c8 | 2005-10-28 09:24:33 +0000 | [diff] [blame] | 7 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 10 | #include <stdio.h> |
| 11 | #include <fcntl.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 12 | #include <unistd.h> |
| 13 | #include <stdlib.h> |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 14 | #include <signal.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 15 | #include "busybox.h" |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 16 | |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 17 | /* Userspace timer duration, in seconds */ |
| 18 | static unsigned int timer_duration = 30; |
| 19 | |
| 20 | /* Watchdog file descriptor */ |
| 21 | static int fd; |
| 22 | |
| 23 | static void watchdog_shutdown(int unused) |
| 24 | { |
| 25 | write(fd, "V", 1); /* Magic */ |
| 26 | close(fd); |
| 27 | exit(0); |
| 28 | } |
| 29 | |
Rob Landley | 1b751c8 | 2005-10-28 09:24:33 +0000 | [diff] [blame] | 30 | int watchdog_main(int argc, char **argv) |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 31 | { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame^] | 32 | |
Rob Landley | 1b751c8 | 2005-10-28 09:24:33 +0000 | [diff] [blame] | 33 | char *t_arg; |
| 34 | unsigned long flags; |
| 35 | flags = bb_getopt_ulflags(argc, argv, "t:", &t_arg); |
| 36 | if (flags & 1) |
| 37 | timer_duration = bb_xgetlarg(t_arg, 10, 0, INT_MAX); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 38 | |
| 39 | /* We're only interested in the watchdog device .. */ |
| 40 | if (optind < argc - 1 || argc == 1) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 41 | bb_show_usage(); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 42 | |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 43 | if (daemon(0, 1) < 0) |
| 44 | bb_perror_msg_and_die("Failed forking watchdog daemon"); |
| 45 | |
| 46 | signal(SIGHUP, watchdog_shutdown); |
| 47 | signal(SIGINT, watchdog_shutdown); |
| 48 | |
| 49 | fd = bb_xopen(argv[argc - 1], O_WRONLY); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 50 | |
| 51 | while (1) { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 52 | /* |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 53 | * Make sure we clear the counter before sleeping, as the counter value |
| 54 | * is undefined at this point -- PFM |
| 55 | */ |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 56 | write(fd, "\0", 1); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 57 | sleep(timer_duration); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 58 | } |
| 59 | |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 60 | watchdog_shutdown(0); |
| 61 | |
| 62 | return EXIT_SUCCESS; |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 63 | } |