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> |
Bernhard Reutner-Fischer | 5f6d67b | 2006-06-03 20:53:18 +0000 | [diff] [blame] | 6 | * Copyright (C) 2006 Bernhard Fischer <busybox@busybox.net> |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 7 | * |
Rob Landley | 1b751c8 | 2005-10-28 09:24:33 +0000 | [diff] [blame] | 8 | * 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] | 9 | */ |
| 10 | |
Bernhard Reutner-Fischer | c89982d | 2006-06-03 19:49:21 +0000 | [diff] [blame] | 11 | #include "busybox.h" |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 12 | #include <stdio.h> |
| 13 | #include <fcntl.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 14 | #include <unistd.h> |
| 15 | #include <stdlib.h> |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 16 | #include <signal.h> |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 17 | |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 18 | #define OPT_FOREGROUND 0x01 |
| 19 | #define OPT_TIMER 0x02 |
| 20 | |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 21 | /* Watchdog file descriptor */ |
| 22 | static int fd; |
| 23 | |
Bernhard Reutner-Fischer | 20f4000 | 2006-01-30 17:17:14 +0000 | [diff] [blame] | 24 | static void watchdog_shutdown(int ATTRIBUTE_UNUSED unused) |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 25 | { |
Mike Frysinger | 2fc534f | 2006-06-07 21:37:49 +0000 | [diff] [blame] | 26 | write(fd, "V", 1); /* Magic, see watchdog-api.txt in kernel */ |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 27 | close(fd); |
| 28 | exit(0); |
| 29 | } |
| 30 | |
Rob Landley | 1b751c8 | 2005-10-28 09:24:33 +0000 | [diff] [blame] | 31 | int watchdog_main(int argc, char **argv) |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 32 | { |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 33 | unsigned long opts; |
Bernhard Reutner-Fischer | 5f6d67b | 2006-06-03 20:53:18 +0000 | [diff] [blame] | 34 | unsigned long timer_duration = 30; /* Userspace timer duration, in seconds */ |
Rob Landley | 1b751c8 | 2005-10-28 09:24:33 +0000 | [diff] [blame] | 35 | char *t_arg; |
Bernhard Reutner-Fischer | 5f6d67b | 2006-06-03 20:53:18 +0000 | [diff] [blame] | 36 | |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 37 | opts = bb_getopt_ulflags(argc, argv, "Ft:", &t_arg); |
| 38 | |
| 39 | if (opts & OPT_TIMER) |
Rob Landley | 1b751c8 | 2005-10-28 09:24:33 +0000 | [diff] [blame] | 40 | timer_duration = bb_xgetlarg(t_arg, 10, 0, INT_MAX); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 41 | |
| 42 | /* We're only interested in the watchdog device .. */ |
| 43 | if (optind < argc - 1 || argc == 1) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 44 | bb_show_usage(); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 45 | |
Mike Frysinger | 9be7435 | 2006-06-07 21:48:43 +0000 | [diff] [blame] | 46 | #ifdef BB_NOMMU |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 47 | if (!(opts & OPT_FOREGROUND)) |
| 48 | vfork_daemon_rexec(0, 1, argc, argv, "-F"); |
Mike Frysinger | 9be7435 | 2006-06-07 21:48:43 +0000 | [diff] [blame] | 49 | #else |
Bernhard Reutner-Fischer | 2c99851 | 2006-04-12 18:09:26 +0000 | [diff] [blame] | 50 | bb_xdaemon(0, 1); |
Mike Frysinger | 9be7435 | 2006-06-07 21:48:43 +0000 | [diff] [blame] | 51 | #endif |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 52 | |
| 53 | signal(SIGHUP, watchdog_shutdown); |
| 54 | signal(SIGINT, watchdog_shutdown); |
| 55 | |
| 56 | fd = bb_xopen(argv[argc - 1], O_WRONLY); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 57 | |
| 58 | while (1) { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 59 | /* |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 60 | * Make sure we clear the counter before sleeping, as the counter value |
| 61 | * is undefined at this point -- PFM |
| 62 | */ |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 63 | write(fd, "\0", 1); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 64 | sleep(timer_duration); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 67 | watchdog_shutdown(0); |
| 68 | |
| 69 | return EXIT_SUCCESS; |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 70 | } |