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 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 11 | #include "libbb.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 | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 19 | static const char V = 'V'; |
| 20 | |
| 21 | write(3, &V, 1); /* Magic, see watchdog-api.txt in kernel */ |
Denis Vlasenko | cfa2b3a | 2007-03-14 21:55:41 +0000 | [diff] [blame] | 22 | if (ENABLE_FEATURE_CLEAN_UP) |
| 23 | close(3); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 24 | exit(0); |
| 25 | } |
| 26 | |
Denis Vlasenko | 06af216 | 2007-02-03 17:28:39 +0000 | [diff] [blame] | 27 | int watchdog_main(int argc, char **argv); |
Rob Landley | 1b751c8 | 2005-10-28 09:24:33 +0000 | [diff] [blame] | 28 | int watchdog_main(int argc, char **argv) |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 29 | { |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 30 | unsigned opts; |
Denis Vlasenko | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 31 | unsigned timer_duration = 30000; /* Userspace timer duration, in milliseconds */ |
Rob Landley | 1b751c8 | 2005-10-28 09:24:33 +0000 | [diff] [blame] | 32 | char *t_arg; |
Bernhard Reutner-Fischer | 5f6d67b | 2006-06-03 20:53:18 +0000 | [diff] [blame] | 33 | |
Denis Vlasenko | 5a14202 | 2007-03-26 13:20:54 +0000 | [diff] [blame] | 34 | opt_complementary = "=1"; /* must have 1 argument */ |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 35 | opts = getopt32(argv, "Ft:", &t_arg); |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 36 | |
Denis Vlasenko | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 37 | if (opts & OPT_TIMER) { |
| 38 | static const struct suffix_mult suffixes[] = { |
| 39 | { "ms", 1 }, |
| 40 | { "", 1000 }, |
| 41 | { } |
| 42 | }; |
| 43 | timer_duration = xatou_sfx(t_arg, suffixes); |
| 44 | } |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 45 | |
Denis Vlasenko | 9067f13 | 2007-03-24 12:11:17 +0000 | [diff] [blame] | 46 | if (!(opts & OPT_FOREGROUND)) { |
Denis Vlasenko | 5a14202 | 2007-03-26 13:20:54 +0000 | [diff] [blame] | 47 | bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv); |
Denis Vlasenko | 9067f13 | 2007-03-24 12:11:17 +0000 | [diff] [blame] | 48 | } |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 49 | |
| 50 | signal(SIGHUP, watchdog_shutdown); |
| 51 | signal(SIGINT, watchdog_shutdown); |
| 52 | |
Denis Vlasenko | cfa2b3a | 2007-03-14 21:55:41 +0000 | [diff] [blame] | 53 | /* Use known fd # - avoid needing global 'int fd' */ |
Denis Vlasenko | 5a14202 | 2007-03-26 13:20:54 +0000 | [diff] [blame] | 54 | xmove_fd(xopen(argv[argc - 1], O_WRONLY), 3); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 55 | |
| 56 | while (1) { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 57 | /* |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 58 | * Make sure we clear the counter before sleeping, as the counter value |
| 59 | * is undefined at this point -- PFM |
| 60 | */ |
Denis Vlasenko | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 61 | write(3, "", 1); /* write zero byte */ |
| 62 | usleep(timer_duration * 1000L); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 63 | } |
Denis Vlasenko | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 64 | return EXIT_SUCCESS; /* - not reached, but gcc 4.2.1 is too dumb! */ |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 65 | } |