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 |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 12 | //config: bool "watchdog (5.3 kb)" |
Denys Vlasenko | fb4da16 | 2016-11-22 23:14:24 +0100 | [diff] [blame] | 13 | //config: default y |
Denys Vlasenko | fb4da16 | 2016-11-22 23:14:24 +0100 | [diff] [blame] | 14 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 15 | //config: The watchdog utility is used with hardware or software watchdog |
| 16 | //config: device drivers. It opens the specified watchdog device special file |
| 17 | //config: and periodically writes a magic character to the device. If the |
| 18 | //config: watchdog applet ever fails to write the magic character within a |
| 19 | //config: certain amount of time, the watchdog device assumes the system has |
| 20 | //config: hung, and will cause the hardware to reboot. |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 21 | |
Denys Vlasenko | f88e3bf | 2016-11-22 23:54:17 +0100 | [diff] [blame] | 22 | //applet:IF_WATCHDOG(APPLET(watchdog, BB_DIR_SBIN, BB_SUID_DROP)) |
| 23 | |
| 24 | //kbuild:lib-$(CONFIG_WATCHDOG) += watchdog.o |
| 25 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 26 | //usage:#define watchdog_trivial_usage |
| 27 | //usage: "[-t N[ms]] [-T N[ms]] [-F] DEV" |
| 28 | //usage:#define watchdog_full_usage "\n\n" |
| 29 | //usage: "Periodically write to watchdog device DEV\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 30 | //usage: "\n -T N Reboot after N seconds if not reset (default 60)" |
| 31 | //usage: "\n -t N Reset every N seconds (default 30)" |
| 32 | //usage: "\n -F Run in foreground" |
| 33 | //usage: "\n" |
| 34 | //usage: "\nUse 500ms to specify period in milliseconds" |
| 35 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 36 | #include "libbb.h" |
Denys Vlasenko | 1572f52 | 2017-07-08 18:53:49 +0200 | [diff] [blame] | 37 | #include <linux/types.h> /* for __u32 */ |
| 38 | #include <linux/watchdog.h> |
| 39 | |
| 40 | #ifndef WDIOC_SETOPTIONS |
| 41 | # define WDIOC_SETOPTIONS 0x5704 |
| 42 | #endif |
| 43 | #ifndef WDIOC_SETTIMEOUT |
| 44 | # define WDIOC_SETTIMEOUT 0x5706 |
| 45 | #endif |
| 46 | #ifndef WDIOC_GETTIMEOUT |
| 47 | # define WDIOC_GETTIMEOUT 0x5707 |
| 48 | #endif |
| 49 | #ifndef WDIOS_ENABLECARD |
| 50 | # define WDIOS_ENABLECARD 2 |
| 51 | #endif |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 52 | |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 53 | #define OPT_FOREGROUND (1 << 0) |
| 54 | #define OPT_STIMER (1 << 1) |
| 55 | #define OPT_HTIMER (1 << 2) |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 56 | |
Matt Spinler | 31c7650 | 2017-07-08 18:35:25 +0200 | [diff] [blame] | 57 | static void shutdown_watchdog(void) |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 58 | { |
Denis Vlasenko | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 59 | static const char V = 'V'; |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 60 | write(3, &V, 1); /* Magic, see watchdog-api.txt in kernel */ |
Matt Spinler | 31c7650 | 2017-07-08 18:35:25 +0200 | [diff] [blame] | 61 | close(3); |
| 62 | } |
| 63 | |
| 64 | static void shutdown_on_signal(int sig UNUSED_PARAM) |
| 65 | { |
Denys Vlasenko | 5059653 | 2019-03-17 19:47:52 +0100 | [diff] [blame] | 66 | remove_pidfile_std_path_and_ext("watchdog"); |
Matt Spinler | 31c7650 | 2017-07-08 18:35:25 +0200 | [diff] [blame] | 67 | shutdown_watchdog(); |
Marek Polacek | 7b18107 | 2010-10-28 21:34:56 +0200 | [diff] [blame] | 68 | _exit(EXIT_SUCCESS); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 69 | } |
| 70 | |
Matt Spinler | 31c7650 | 2017-07-08 18:35:25 +0200 | [diff] [blame] | 71 | static void watchdog_open(const char* device) |
| 72 | { |
| 73 | /* Use known fd # - avoid needing global 'int fd' */ |
| 74 | xmove_fd(xopen(device, O_WRONLY), 3); |
| 75 | |
| 76 | /* If the watchdog driver can do something other than cause a reboot |
| 77 | * on a timeout, then it's possible this program may be starting from |
| 78 | * a state when the watchdog hadn't been previously stopped with |
| 79 | * the magic write followed by a close. In this case the driver may |
| 80 | * not start properly, so always do the proper stop first just in case. |
| 81 | */ |
| 82 | shutdown_watchdog(); |
| 83 | |
| 84 | xmove_fd(xopen(device, O_WRONLY), 3); |
| 85 | } |
| 86 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 87 | int watchdog_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | 1572f52 | 2017-07-08 18:53:49 +0200 | [diff] [blame] | 88 | int watchdog_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 89 | { |
Denys Vlasenko | 1572f52 | 2017-07-08 18:53:49 +0200 | [diff] [blame] | 90 | static const int enable = WDIOS_ENABLECARD; |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 91 | static const struct suffix_mult suffixes[] = { |
| 92 | { "ms", 1 }, |
| 93 | { "", 1000 }, |
Denys Vlasenko | 043b1e5 | 2009-09-06 12:47:55 +0200 | [diff] [blame] | 94 | { "", 0 } |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 95 | }; |
| 96 | |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 97 | unsigned opts; |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 98 | unsigned stimer_duration; /* how often to restart */ |
| 99 | unsigned htimer_duration = 60000; /* reboots after N ms if not restarted */ |
| 100 | char *st_arg; |
| 101 | char *ht_arg; |
Bernhard Reutner-Fischer | 5f6d67b | 2006-06-03 20:53:18 +0000 | [diff] [blame] | 102 | |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 103 | opts = getopt32(argv, "^" "Ft:T:" "\0" "=1"/*must have exactly 1 arg*/, |
| 104 | &st_arg, &ht_arg |
| 105 | ); |
Mike Frysinger | cd68a2e | 2006-06-26 21:31:17 +0000 | [diff] [blame] | 106 | |
Mike Frysinger | 6fb5f01 | 2009-04-25 06:16:37 +0000 | [diff] [blame] | 107 | /* We need to daemonize *before* opening the watchdog as many drivers |
| 108 | * will only allow one process at a time to do so. Since daemonizing |
| 109 | * is not perfect (child may run before parent finishes exiting), we |
| 110 | * can't rely on parent exiting before us (let alone *cleanly* releasing |
| 111 | * the watchdog fd -- something else that may not even be allowed). |
| 112 | */ |
| 113 | if (!(opts & OPT_FOREGROUND)) |
| 114 | bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv); |
| 115 | |
Denys Vlasenko | 1572f52 | 2017-07-08 18:53:49 +0200 | [diff] [blame] | 116 | /* maybe bb_logenv_override(); here for LOGGING=syslog to work? */ |
| 117 | |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 118 | if (opts & OPT_HTIMER) |
| 119 | htimer_duration = xatou_sfx(ht_arg, suffixes); |
| 120 | stimer_duration = htimer_duration / 2; |
| 121 | if (opts & OPT_STIMER) |
| 122 | stimer_duration = xatou_sfx(st_arg, suffixes); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 123 | |
Matt Spinler | 31c7650 | 2017-07-08 18:35:25 +0200 | [diff] [blame] | 124 | bb_signals(BB_FATAL_SIGS, shutdown_on_signal); |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 125 | |
Denys Vlasenko | 1572f52 | 2017-07-08 18:53:49 +0200 | [diff] [blame] | 126 | watchdog_open(argv[optind]); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 127 | |
Denis Vlasenko | 93d0776 | 2008-10-04 16:40:17 +0000 | [diff] [blame] | 128 | /* WDIOC_SETTIMEOUT takes seconds, not milliseconds */ |
| 129 | htimer_duration = htimer_duration / 1000; |
Denys Vlasenko | 1572f52 | 2017-07-08 18:53:49 +0200 | [diff] [blame] | 130 | ioctl_or_warn(3, WDIOC_SETOPTIONS, (void*) &enable); |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 131 | ioctl_or_warn(3, WDIOC_SETTIMEOUT, &htimer_duration); |
| 132 | #if 0 |
| 133 | ioctl_or_warn(3, WDIOC_GETTIMEOUT, &htimer_duration); |
Denis Vlasenko | e41fdbc | 2009-04-20 09:26:17 +0000 | [diff] [blame] | 134 | printf("watchdog: SW timer is %dms, HW timer is %ds\n", |
Denis Vlasenko | 8d89bed | 2008-09-07 23:22:08 +0000 | [diff] [blame] | 135 | stimer_duration, htimer_duration * 1000); |
| 136 | #endif |
| 137 | |
Denys Vlasenko | 5059653 | 2019-03-17 19:47:52 +0100 | [diff] [blame] | 138 | write_pidfile_std_path_and_ext("watchdog"); |
Anthony G. Basile | 12677ac | 2012-12-10 14:49:39 -0500 | [diff] [blame] | 139 | |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 140 | while (1) { |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 141 | /* |
Denis Vlasenko | 005ff88 | 2008-12-14 14:49:06 +0000 | [diff] [blame] | 142 | * Make sure we clear the counter before sleeping, |
| 143 | * as the counter value is undefined at this point -- PFM |
Eric Andersen | cde8f53 | 2003-07-22 07:39:18 +0000 | [diff] [blame] | 144 | */ |
Denis Vlasenko | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 145 | write(3, "", 1); /* write zero byte */ |
Denys Vlasenko | 6a55b4e | 2020-11-29 12:40:25 +0100 | [diff] [blame^] | 146 | msleep(stimer_duration); |
Eric Andersen | ffde867 | 2001-01-25 23:40:32 +0000 | [diff] [blame] | 147 | } |
Denis Vlasenko | 3638cc4 | 2007-09-05 12:13:51 +0000 | [diff] [blame] | 148 | 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] | 149 | } |