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> |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame^] | 7 | * Copyright (C) 2008 Darius Augulis <augulis.darius@gmail.com> |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 8 | * |
Rob Landley | 1b751c8 | 2005-10-28 09:24:33 +0000 | [diff] [blame] | 9 | * 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] | 10 | */ |
| 11 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 12 | #include "libbb.h" |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame^] | 13 | #include "linux/watchdog.h" |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 14 | |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame^] | 15 | #define OPT_FOREGROUND (1 << 0) |
| 16 | #define OPT_STIMER (1 << 1) |
| 17 | #define OPT_HTIMER (1 << 2) |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 18 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 19 | static void watchdog_shutdown(int sig UNUSED_PARAM) |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 20 | { |
Denis Vlasenko | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 21 | static const char V = 'V'; |
| 22 | |
| 23 | write(3, &V, 1); /* Magic, see watchdog-api.txt in kernel */ |
Denis Vlasenko | cfa2b3a | 2007-03-14 21:55:41 +0000 | [diff] [blame] | 24 | if (ENABLE_FEATURE_CLEAN_UP) |
| 25 | close(3); |
Bernhard Reutner-Fischer | 636a1f8 | 2008-05-19 09:29:47 +0000 | [diff] [blame] | 26 | exit(EXIT_SUCCESS); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 27 | } |
| 28 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 29 | int watchdog_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
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 | { |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame^] | 32 | static const struct suffix_mult suffixes[] = { |
| 33 | { "ms", 1 }, |
| 34 | { "", 1000 }, |
| 35 | { } |
| 36 | }; |
| 37 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 38 | unsigned opts; |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame^] | 39 | unsigned stimer_duration; /* how often to restart */ |
| 40 | unsigned htimer_duration = 60000; /* reboots after N ms if not restarted */ |
| 41 | char *st_arg; |
| 42 | char *ht_arg; |
Bernhard Reutner-Fischer | 5f6d67b | 2006-06-03 20:53:18 +0000 | [diff] [blame] | 43 | |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame^] | 44 | opt_complementary = "=1"; /* must have exactly 1 argument */ |
| 45 | opts = getopt32(argv, "Ft:T:", &st_arg, &ht_arg); |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 46 | |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame^] | 47 | if (opts & OPT_HTIMER) |
| 48 | htimer_duration = xatou_sfx(ht_arg, suffixes); |
| 49 | stimer_duration = htimer_duration / 2; |
| 50 | if (opts & OPT_STIMER) |
| 51 | stimer_duration = xatou_sfx(st_arg, suffixes); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 52 | |
Denis Vlasenko | cf7cf62 | 2008-03-19 19:38:46 +0000 | [diff] [blame] | 53 | bb_signals(BB_FATAL_SIGS, watchdog_shutdown); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 54 | |
Denis Vlasenko | cfa2b3a | 2007-03-14 21:55:41 +0000 | [diff] [blame] | 55 | /* Use known fd # - avoid needing global 'int fd' */ |
Denis Vlasenko | 5a14202 | 2007-03-26 13:20:54 +0000 | [diff] [blame] | 56 | xmove_fd(xopen(argv[argc - 1], O_WRONLY), 3); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 57 | |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame^] | 58 | ioctl_or_warn(3, WDIOC_SETTIMEOUT, &htimer_duration); |
| 59 | #if 0 |
| 60 | ioctl_or_warn(3, WDIOC_GETTIMEOUT, &htimer_duration); |
| 61 | printf("watchdog: SW timer is %dms, HW timer is %dms\n", |
| 62 | stimer_duration, htimer_duration * 1000); |
| 63 | #endif |
| 64 | |
| 65 | if (!(opts & OPT_FOREGROUND)) { |
| 66 | bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv); |
| 67 | } |
Denis Vlasenko | b44c790 | 2008-03-17 09:29:43 +0000 | [diff] [blame] | 68 | |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 69 | while (1) { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 70 | /* |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 71 | * Make sure we clear the counter before sleeping, as the counter value |
| 72 | * is undefined at this point -- PFM |
| 73 | */ |
Denis Vlasenko | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 74 | write(3, "", 1); /* write zero byte */ |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame^] | 75 | usleep(stimer_duration * 1000L); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 76 | } |
Denis Vlasenko | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 77 | 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] | 78 | } |