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 | 6c4dade | 2008-09-25 12:13:34 +0000 | [diff] [blame] | 6 | * Copyright (C) 2006 Bernhard Reutner-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 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 9 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 10 | */ |
Denys Vlasenko | fb4da16 | 2016-11-22 23:14:24 +0100 | [diff] [blame] | 11 | //config:config WATCHDOG |
| 12 | //config: bool "watchdog" |
| 13 | //config: default y |
| 14 | //config: select PLATFORM_LINUX |
| 15 | //config: help |
| 16 | //config: The watchdog utility is used with hardware or software watchdog |
| 17 | //config: device drivers. It opens the specified watchdog device special file |
| 18 | //config: and periodically writes a magic character to the device. If the |
| 19 | //config: watchdog applet ever fails to write the magic character within a |
| 20 | //config: certain amount of time, the watchdog device assumes the system has |
| 21 | //config: hung, and will cause the hardware to reboot. |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 22 | |
Denys Vlasenko | f88e3bf | 2016-11-22 23:54:17 +0100 | [diff] [blame] | 23 | //applet:IF_WATCHDOG(APPLET(watchdog, BB_DIR_SBIN, BB_SUID_DROP)) |
| 24 | |
| 25 | //kbuild:lib-$(CONFIG_WATCHDOG) += watchdog.o |
| 26 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 27 | //usage:#define watchdog_trivial_usage |
| 28 | //usage: "[-t N[ms]] [-T N[ms]] [-F] DEV" |
| 29 | //usage:#define watchdog_full_usage "\n\n" |
| 30 | //usage: "Periodically write to watchdog device DEV\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 31 | //usage: "\n -T N Reboot after N seconds if not reset (default 60)" |
| 32 | //usage: "\n -t N Reset every N seconds (default 30)" |
| 33 | //usage: "\n -F Run in foreground" |
| 34 | //usage: "\n" |
| 35 | //usage: "\nUse 500ms to specify period in milliseconds" |
| 36 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 37 | #include "libbb.h" |
Denis Vlasenko | 005ff88 | 2008-12-14 14:49:06 +0000 | [diff] [blame] | 38 | #include "linux/types.h" /* for __u32 */ |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 39 | #include "linux/watchdog.h" |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 40 | |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 41 | #define OPT_FOREGROUND (1 << 0) |
| 42 | #define OPT_STIMER (1 << 1) |
| 43 | #define OPT_HTIMER (1 << 2) |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 44 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 45 | static void watchdog_shutdown(int sig UNUSED_PARAM) |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 46 | { |
Denis Vlasenko | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 47 | static const char V = 'V'; |
| 48 | |
Anthony G. Basile | 12677ac | 2012-12-10 14:49:39 -0500 | [diff] [blame] | 49 | remove_pidfile(CONFIG_PID_FILE_PATH "/watchdog.pid"); |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 50 | write(3, &V, 1); /* Magic, see watchdog-api.txt in kernel */ |
Denis Vlasenko | cfa2b3a | 2007-03-14 21:55:41 +0000 | [diff] [blame] | 51 | if (ENABLE_FEATURE_CLEAN_UP) |
| 52 | close(3); |
Marek Polacek | 7b18107 | 2010-10-28 21:34:56 +0200 | [diff] [blame] | 53 | _exit(EXIT_SUCCESS); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 54 | } |
| 55 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 56 | int watchdog_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Rob Landley | 1b751c8 | 2005-10-28 09:24:33 +0000 | [diff] [blame] | 57 | int watchdog_main(int argc, char **argv) |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 58 | { |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 59 | static const struct suffix_mult suffixes[] = { |
| 60 | { "ms", 1 }, |
| 61 | { "", 1000 }, |
Denys Vlasenko | 043b1e5 | 2009-09-06 12:47:55 +0200 | [diff] [blame] | 62 | { "", 0 } |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 63 | }; |
| 64 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 65 | unsigned opts; |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 66 | unsigned stimer_duration; /* how often to restart */ |
| 67 | unsigned htimer_duration = 60000; /* reboots after N ms if not restarted */ |
| 68 | char *st_arg; |
| 69 | char *ht_arg; |
Bernhard Reutner-Fischer | 5f6d67b | 2006-06-03 20:53:18 +0000 | [diff] [blame] | 70 | |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 71 | opt_complementary = "=1"; /* must have exactly 1 argument */ |
| 72 | opts = getopt32(argv, "Ft:T:", &st_arg, &ht_arg); |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 73 | |
Mike Frysinger | 6fb5f01 | 2009-04-25 06:16:37 +0000 | [diff] [blame] | 74 | /* We need to daemonize *before* opening the watchdog as many drivers |
| 75 | * will only allow one process at a time to do so. Since daemonizing |
| 76 | * is not perfect (child may run before parent finishes exiting), we |
| 77 | * can't rely on parent exiting before us (let alone *cleanly* releasing |
| 78 | * the watchdog fd -- something else that may not even be allowed). |
| 79 | */ |
| 80 | if (!(opts & OPT_FOREGROUND)) |
| 81 | bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv); |
| 82 | |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 83 | if (opts & OPT_HTIMER) |
| 84 | htimer_duration = xatou_sfx(ht_arg, suffixes); |
| 85 | stimer_duration = htimer_duration / 2; |
| 86 | if (opts & OPT_STIMER) |
| 87 | stimer_duration = xatou_sfx(st_arg, suffixes); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 88 | |
Denis Vlasenko | cf7cf62 | 2008-03-19 19:38:46 +0000 | [diff] [blame] | 89 | bb_signals(BB_FATAL_SIGS, watchdog_shutdown); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 90 | |
Denis Vlasenko | cfa2b3a | 2007-03-14 21:55:41 +0000 | [diff] [blame] | 91 | /* Use known fd # - avoid needing global 'int fd' */ |
Denis Vlasenko | 5a14202 | 2007-03-26 13:20:54 +0000 | [diff] [blame] | 92 | xmove_fd(xopen(argv[argc - 1], O_WRONLY), 3); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 93 | |
Denis Vlasenko | 93d0776 | 2008-10-04 16:40:17 +0000 | [diff] [blame] | 94 | /* WDIOC_SETTIMEOUT takes seconds, not milliseconds */ |
| 95 | htimer_duration = htimer_duration / 1000; |
Denis Vlasenko | 005ff88 | 2008-12-14 14:49:06 +0000 | [diff] [blame] | 96 | #ifndef WDIOC_SETTIMEOUT |
Denis Vlasenko | e41fdbc | 2009-04-20 09:26:17 +0000 | [diff] [blame] | 97 | # error WDIOC_SETTIMEOUT is not defined, cannot compile watchdog applet |
Denis Vlasenko | 005ff88 | 2008-12-14 14:49:06 +0000 | [diff] [blame] | 98 | #else |
Denis Vlasenko | e41fdbc | 2009-04-20 09:26:17 +0000 | [diff] [blame] | 99 | # if defined WDIOC_SETOPTIONS && defined WDIOS_ENABLECARD |
| 100 | { |
| 101 | static const int enable = WDIOS_ENABLECARD; |
| 102 | ioctl_or_warn(3, WDIOC_SETOPTIONS, (void*) &enable); |
| 103 | } |
| 104 | # endif |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 105 | ioctl_or_warn(3, WDIOC_SETTIMEOUT, &htimer_duration); |
Denis Vlasenko | 005ff88 | 2008-12-14 14:49:06 +0000 | [diff] [blame] | 106 | #endif |
Denis Vlasenko | e41fdbc | 2009-04-20 09:26:17 +0000 | [diff] [blame] | 107 | |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 108 | #if 0 |
| 109 | ioctl_or_warn(3, WDIOC_GETTIMEOUT, &htimer_duration); |
Denis Vlasenko | e41fdbc | 2009-04-20 09:26:17 +0000 | [diff] [blame] | 110 | printf("watchdog: SW timer is %dms, HW timer is %ds\n", |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 111 | stimer_duration, htimer_duration * 1000); |
| 112 | #endif |
| 113 | |
Anthony G. Basile | 12677ac | 2012-12-10 14:49:39 -0500 | [diff] [blame] | 114 | write_pidfile(CONFIG_PID_FILE_PATH "/watchdog.pid"); |
| 115 | |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 116 | while (1) { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 117 | /* |
Denis Vlasenko | 005ff88 | 2008-12-14 14:49:06 +0000 | [diff] [blame] | 118 | * Make sure we clear the counter before sleeping, |
| 119 | * as the counter value is undefined at this point -- PFM |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 120 | */ |
Denis Vlasenko | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 121 | write(3, "", 1); /* write zero byte */ |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 122 | usleep(stimer_duration * 1000L); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 123 | } |
Denis Vlasenko | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 124 | 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] | 125 | } |