blob: 971b777a3d5589016470e06d21e716f78bd54321 [file] [log] [blame]
Eric Andersenffde8672001-01-25 23:40:32 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini watchdog implementation for busybox
4 *
Eric Andersencde8f532003-07-22 07:39:18 +00005 * Copyright (C) 2003 Paul Mundt <lethal@linux-sh.org>
Bernhard Reutner-Fischer6c4dade2008-09-25 12:13:34 +00006 * Copyright (C) 2006 Bernhard Reutner-Fischer <busybox@busybox.net>
Denis Vlasenko8d89bed2008-09-07 23:22:08 +00007 * Copyright (C) 2008 Darius Augulis <augulis.darius@gmail.com>
Eric Andersenffde8672001-01-25 23:40:32 +00008 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02009 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersenffde8672001-01-25 23:40:32 +000010 */
Denys Vlasenkofb4da162016-11-22 23:14:24 +010011//config:config WATCHDOG
Denys Vlasenkob097a842018-12-28 03:20:17 +010012//config: bool "watchdog (5.3 kb)"
Denys Vlasenkofb4da162016-11-22 23:14:24 +010013//config: default y
Denys Vlasenkofb4da162016-11-22 23:14:24 +010014//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020015//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 Andersenffde8672001-01-25 23:40:32 +000021
Denys Vlasenkof88e3bf2016-11-22 23:54:17 +010022//applet:IF_WATCHDOG(APPLET(watchdog, BB_DIR_SBIN, BB_SUID_DROP))
23
24//kbuild:lib-$(CONFIG_WATCHDOG) += watchdog.o
25
Pere Orga5bc8c002011-04-11 03:29:49 +020026//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 Orga5bc8c002011-04-11 03:29:49 +020030//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 Vlasenkob6adbf12007-05-26 19:00:18 +000036#include "libbb.h"
Denys Vlasenko1572f522017-07-08 18:53:49 +020037#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 Andersenffde8672001-01-25 23:40:32 +000052
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000053#define OPT_FOREGROUND (1 << 0)
54#define OPT_STIMER (1 << 1)
55#define OPT_HTIMER (1 << 2)
Mike Frysingercd68a2e2006-06-26 21:31:17 +000056
Matt Spinler31c76502017-07-08 18:35:25 +020057static void shutdown_watchdog(void)
Eric Andersencde8f532003-07-22 07:39:18 +000058{
Denis Vlasenko3638cc42007-09-05 12:13:51 +000059 static const char V = 'V';
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +020060 write(3, &V, 1); /* Magic, see watchdog-api.txt in kernel */
Matt Spinler31c76502017-07-08 18:35:25 +020061 close(3);
62}
63
64static void shutdown_on_signal(int sig UNUSED_PARAM)
65{
Denys Vlasenko50596532019-03-17 19:47:52 +010066 remove_pidfile_std_path_and_ext("watchdog");
Matt Spinler31c76502017-07-08 18:35:25 +020067 shutdown_watchdog();
Marek Polacek7b181072010-10-28 21:34:56 +020068 _exit(EXIT_SUCCESS);
Eric Andersencde8f532003-07-22 07:39:18 +000069}
70
Matt Spinler31c76502017-07-08 18:35:25 +020071static 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 Vlasenko9b49a5e2007-10-11 10:05:36 +000087int watchdog_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko1572f522017-07-08 18:53:49 +020088int watchdog_main(int argc UNUSED_PARAM, char **argv)
Eric Andersenffde8672001-01-25 23:40:32 +000089{
Denys Vlasenko1572f522017-07-08 18:53:49 +020090 static const int enable = WDIOS_ENABLECARD;
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000091 static const struct suffix_mult suffixes[] = {
92 { "ms", 1 },
93 { "", 1000 },
Denys Vlasenko043b1e52009-09-06 12:47:55 +020094 { "", 0 }
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000095 };
96
Denis Vlasenko67b23e62006-10-03 21:00:06 +000097 unsigned opts;
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000098 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-Fischer5f6d67b2006-06-03 20:53:18 +0000102
Denys Vlasenko22542ec2017-08-08 21:55:02 +0200103 opts = getopt32(argv, "^" "Ft:T:" "\0" "=1"/*must have exactly 1 arg*/,
104 &st_arg, &ht_arg
105 );
Mike Frysingercd68a2e2006-06-26 21:31:17 +0000106
Mike Frysinger6fb5f012009-04-25 06:16:37 +0000107 /* 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 Vlasenko1572f522017-07-08 18:53:49 +0200116 /* maybe bb_logenv_override(); here for LOGGING=syslog to work? */
117
Denis Vlasenko8d89bed2008-09-07 23:22:08 +0000118 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 Andersencde8f532003-07-22 07:39:18 +0000123
Matt Spinler31c76502017-07-08 18:35:25 +0200124 bb_signals(BB_FATAL_SIGS, shutdown_on_signal);
Eric Andersencde8f532003-07-22 07:39:18 +0000125
Denys Vlasenko1572f522017-07-08 18:53:49 +0200126 watchdog_open(argv[optind]);
Eric Andersenffde8672001-01-25 23:40:32 +0000127
Denis Vlasenko93d07762008-10-04 16:40:17 +0000128 /* WDIOC_SETTIMEOUT takes seconds, not milliseconds */
129 htimer_duration = htimer_duration / 1000;
Denys Vlasenko1572f522017-07-08 18:53:49 +0200130 ioctl_or_warn(3, WDIOC_SETOPTIONS, (void*) &enable);
Denis Vlasenko8d89bed2008-09-07 23:22:08 +0000131 ioctl_or_warn(3, WDIOC_SETTIMEOUT, &htimer_duration);
132#if 0
133 ioctl_or_warn(3, WDIOC_GETTIMEOUT, &htimer_duration);
Denis Vlasenkoe41fdbc2009-04-20 09:26:17 +0000134 printf("watchdog: SW timer is %dms, HW timer is %ds\n",
Denis Vlasenko8d89bed2008-09-07 23:22:08 +0000135 stimer_duration, htimer_duration * 1000);
136#endif
137
Denys Vlasenko50596532019-03-17 19:47:52 +0100138 write_pidfile_std_path_and_ext("watchdog");
Anthony G. Basile12677ac2012-12-10 14:49:39 -0500139
Eric Andersenffde8672001-01-25 23:40:32 +0000140 while (1) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000141 /*
Denis Vlasenko005ff882008-12-14 14:49:06 +0000142 * Make sure we clear the counter before sleeping,
143 * as the counter value is undefined at this point -- PFM
Eric Andersencde8f532003-07-22 07:39:18 +0000144 */
Denis Vlasenko3638cc42007-09-05 12:13:51 +0000145 write(3, "", 1); /* write zero byte */
Denys Vlasenko6a55b4e2020-11-29 12:40:25 +0100146 msleep(stimer_duration);
Eric Andersenffde8672001-01-25 23:40:32 +0000147 }
Denis Vlasenko3638cc42007-09-05 12:13:51 +0000148 return EXIT_SUCCESS; /* - not reached, but gcc 4.2.1 is too dumb! */
Eric Andersenffde8672001-01-25 23:40:32 +0000149}