blob: ee28dc30d3d77dd22189a816f863917650cca2f2 [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 */
11
Pere Orga5bc8c002011-04-11 03:29:49 +020012//usage:#define watchdog_trivial_usage
13//usage: "[-t N[ms]] [-T N[ms]] [-F] DEV"
14//usage:#define watchdog_full_usage "\n\n"
15//usage: "Periodically write to watchdog device DEV\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020016//usage: "\n -T N Reboot after N seconds if not reset (default 60)"
17//usage: "\n -t N Reset every N seconds (default 30)"
18//usage: "\n -F Run in foreground"
19//usage: "\n"
20//usage: "\nUse 500ms to specify period in milliseconds"
21
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000022#include "libbb.h"
Denis Vlasenko005ff882008-12-14 14:49:06 +000023#include "linux/types.h" /* for __u32 */
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000024#include "linux/watchdog.h"
Eric Andersenffde8672001-01-25 23:40:32 +000025
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000026#define OPT_FOREGROUND (1 << 0)
27#define OPT_STIMER (1 << 1)
28#define OPT_HTIMER (1 << 2)
Mike Frysingercd68a2e2006-06-26 21:31:17 +000029
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000030static void watchdog_shutdown(int sig UNUSED_PARAM)
Eric Andersencde8f532003-07-22 07:39:18 +000031{
Denis Vlasenko3638cc42007-09-05 12:13:51 +000032 static const char V = 'V';
33
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +020034 write(3, &V, 1); /* Magic, see watchdog-api.txt in kernel */
Denis Vlasenkocfa2b3a2007-03-14 21:55:41 +000035 if (ENABLE_FEATURE_CLEAN_UP)
36 close(3);
Marek Polacek7b181072010-10-28 21:34:56 +020037 _exit(EXIT_SUCCESS);
Eric Andersencde8f532003-07-22 07:39:18 +000038}
39
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000040int watchdog_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landley1b751c82005-10-28 09:24:33 +000041int watchdog_main(int argc, char **argv)
Eric Andersenffde8672001-01-25 23:40:32 +000042{
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000043 static const struct suffix_mult suffixes[] = {
44 { "ms", 1 },
45 { "", 1000 },
Denys Vlasenko043b1e52009-09-06 12:47:55 +020046 { "", 0 }
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000047 };
48
Denis Vlasenko67b23e62006-10-03 21:00:06 +000049 unsigned opts;
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000050 unsigned stimer_duration; /* how often to restart */
51 unsigned htimer_duration = 60000; /* reboots after N ms if not restarted */
52 char *st_arg;
53 char *ht_arg;
Bernhard Reutner-Fischer5f6d67b2006-06-03 20:53:18 +000054
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000055 opt_complementary = "=1"; /* must have exactly 1 argument */
56 opts = getopt32(argv, "Ft:T:", &st_arg, &ht_arg);
Mike Frysingercd68a2e2006-06-26 21:31:17 +000057
Mike Frysinger6fb5f012009-04-25 06:16:37 +000058 /* We need to daemonize *before* opening the watchdog as many drivers
59 * will only allow one process at a time to do so. Since daemonizing
60 * is not perfect (child may run before parent finishes exiting), we
61 * can't rely on parent exiting before us (let alone *cleanly* releasing
62 * the watchdog fd -- something else that may not even be allowed).
63 */
64 if (!(opts & OPT_FOREGROUND))
65 bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
66
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000067 if (opts & OPT_HTIMER)
68 htimer_duration = xatou_sfx(ht_arg, suffixes);
69 stimer_duration = htimer_duration / 2;
70 if (opts & OPT_STIMER)
71 stimer_duration = xatou_sfx(st_arg, suffixes);
Eric Andersencde8f532003-07-22 07:39:18 +000072
Denis Vlasenkocf7cf622008-03-19 19:38:46 +000073 bb_signals(BB_FATAL_SIGS, watchdog_shutdown);
Eric Andersencde8f532003-07-22 07:39:18 +000074
Denis Vlasenkocfa2b3a2007-03-14 21:55:41 +000075 /* Use known fd # - avoid needing global 'int fd' */
Denis Vlasenko5a142022007-03-26 13:20:54 +000076 xmove_fd(xopen(argv[argc - 1], O_WRONLY), 3);
Eric Andersenffde8672001-01-25 23:40:32 +000077
Denis Vlasenko93d07762008-10-04 16:40:17 +000078 /* WDIOC_SETTIMEOUT takes seconds, not milliseconds */
79 htimer_duration = htimer_duration / 1000;
Denis Vlasenko005ff882008-12-14 14:49:06 +000080#ifndef WDIOC_SETTIMEOUT
Denis Vlasenkoe41fdbc2009-04-20 09:26:17 +000081# error WDIOC_SETTIMEOUT is not defined, cannot compile watchdog applet
Denis Vlasenko005ff882008-12-14 14:49:06 +000082#else
Denis Vlasenkoe41fdbc2009-04-20 09:26:17 +000083# if defined WDIOC_SETOPTIONS && defined WDIOS_ENABLECARD
84 {
85 static const int enable = WDIOS_ENABLECARD;
86 ioctl_or_warn(3, WDIOC_SETOPTIONS, (void*) &enable);
87 }
88# endif
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000089 ioctl_or_warn(3, WDIOC_SETTIMEOUT, &htimer_duration);
Denis Vlasenko005ff882008-12-14 14:49:06 +000090#endif
Denis Vlasenkoe41fdbc2009-04-20 09:26:17 +000091
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000092#if 0
93 ioctl_or_warn(3, WDIOC_GETTIMEOUT, &htimer_duration);
Denis Vlasenkoe41fdbc2009-04-20 09:26:17 +000094 printf("watchdog: SW timer is %dms, HW timer is %ds\n",
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000095 stimer_duration, htimer_duration * 1000);
96#endif
97
Eric Andersenffde8672001-01-25 23:40:32 +000098 while (1) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000099 /*
Denis Vlasenko005ff882008-12-14 14:49:06 +0000100 * Make sure we clear the counter before sleeping,
101 * as the counter value is undefined at this point -- PFM
Eric Andersencde8f532003-07-22 07:39:18 +0000102 */
Denis Vlasenko3638cc42007-09-05 12:13:51 +0000103 write(3, "", 1); /* write zero byte */
Denis Vlasenko8d89bed2008-09-07 23:22:08 +0000104 usleep(stimer_duration * 1000L);
Eric Andersenffde8672001-01-25 23:40:32 +0000105 }
Denis Vlasenko3638cc42007-09-05 12:13:51 +0000106 return EXIT_SUCCESS; /* - not reached, but gcc 4.2.1 is too dumb! */
Eric Andersenffde8672001-01-25 23:40:32 +0000107}