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 | |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 13 | #define OPT_FOREGROUND 0x01 |
| 14 | #define OPT_TIMER 0x02 |
| 15 | |
Denis Vlasenko | cfa2b3a | 2007-03-14 21:55:41 +0000 | [diff] [blame] | 16 | static void watchdog_shutdown(int ATTRIBUTE_UNUSED sig) ATTRIBUTE_NORETURN; |
| 17 | static void watchdog_shutdown(int ATTRIBUTE_UNUSED sig) |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 18 | { |
Denis Vlasenko | cfa2b3a | 2007-03-14 21:55:41 +0000 | [diff] [blame] | 19 | write(3, "V", 1); /* Magic, see watchdog-api.txt in kernel */ |
| 20 | if (ENABLE_FEATURE_CLEAN_UP) |
| 21 | close(3); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 22 | exit(0); |
| 23 | } |
| 24 | |
Denis Vlasenko | 06af216 | 2007-02-03 17:28:39 +0000 | [diff] [blame] | 25 | int watchdog_main(int argc, char **argv); |
Rob Landley | 1b751c8 | 2005-10-28 09:24:33 +0000 | [diff] [blame] | 26 | int watchdog_main(int argc, char **argv) |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 27 | { |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 28 | unsigned opts; |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 29 | unsigned timer_duration = 30; /* Userspace timer duration, in seconds */ |
Rob Landley | 1b751c8 | 2005-10-28 09:24:33 +0000 | [diff] [blame] | 30 | char *t_arg; |
Bernhard Reutner-Fischer | 5f6d67b | 2006-06-03 20:53:18 +0000 | [diff] [blame] | 31 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 32 | opts = getopt32(argc, argv, "Ft:", &t_arg); |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 33 | |
| 34 | if (opts & OPT_TIMER) |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 35 | timer_duration = xatou(t_arg); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 36 | |
| 37 | /* We're only interested in the watchdog device .. */ |
| 38 | if (optind < argc - 1 || argc == 1) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 39 | bb_show_usage(); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 40 | |
Mike Frysinger | 9be7435 | 2006-06-07 21:48:43 +0000 | [diff] [blame] | 41 | #ifdef BB_NOMMU |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 42 | if (!(opts & OPT_FOREGROUND)) |
| 43 | vfork_daemon_rexec(0, 1, argc, argv, "-F"); |
Mike Frysinger | 9be7435 | 2006-06-07 21:48:43 +0000 | [diff] [blame] | 44 | #else |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 45 | xdaemon(0, 1); |
Mike Frysinger | 9be7435 | 2006-06-07 21:48:43 +0000 | [diff] [blame] | 46 | #endif |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 47 | |
| 48 | signal(SIGHUP, watchdog_shutdown); |
| 49 | signal(SIGINT, watchdog_shutdown); |
| 50 | |
Denis Vlasenko | cfa2b3a | 2007-03-14 21:55:41 +0000 | [diff] [blame] | 51 | /* Use known fd # - avoid needing global 'int fd' */ |
| 52 | dup2(xopen(argv[argc - 1], O_WRONLY), 3); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 53 | |
| 54 | while (1) { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 55 | /* |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 56 | * Make sure we clear the counter before sleeping, as the counter value |
| 57 | * is undefined at this point -- PFM |
| 58 | */ |
Denis Vlasenko | cfa2b3a | 2007-03-14 21:55:41 +0000 | [diff] [blame] | 59 | write(3, "", 1); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 60 | sleep(timer_duration); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 61 | } |
| 62 | |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 63 | watchdog_shutdown(0); |
| 64 | |
Denis Vlasenko | cfa2b3a | 2007-03-14 21:55:41 +0000 | [diff] [blame] | 65 | /* return EXIT_SUCCESS; */ |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 66 | } |