blob: 8e961f0c19a9e31dfcc05ada4d7c62abc6956cdc [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 *
Rob Landley1b751c82005-10-28 09:24:33 +00009 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersenffde8672001-01-25 23:40:32 +000010 */
11
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000012#include "libbb.h"
Denis Vlasenko005ff882008-12-14 14:49:06 +000013#include "linux/types.h" /* for __u32 */
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000014#include "linux/watchdog.h"
Eric Andersenffde8672001-01-25 23:40:32 +000015
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000016#define OPT_FOREGROUND (1 << 0)
17#define OPT_STIMER (1 << 1)
18#define OPT_HTIMER (1 << 2)
Mike Frysingercd68a2e2006-06-26 21:31:17 +000019
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000020static void watchdog_shutdown(int sig UNUSED_PARAM)
Eric Andersencde8f532003-07-22 07:39:18 +000021{
Denis Vlasenko3638cc42007-09-05 12:13:51 +000022 static const char V = 'V';
23
24 write(3, &V, 1); /* Magic, see watchdog-api.txt in kernel */
Denis Vlasenkocfa2b3a2007-03-14 21:55:41 +000025 if (ENABLE_FEATURE_CLEAN_UP)
26 close(3);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +000027 exit(EXIT_SUCCESS);
Eric Andersencde8f532003-07-22 07:39:18 +000028}
29
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000030int watchdog_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landley1b751c82005-10-28 09:24:33 +000031int watchdog_main(int argc, char **argv)
Eric Andersenffde8672001-01-25 23:40:32 +000032{
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000033 static const struct suffix_mult suffixes[] = {
34 { "ms", 1 },
35 { "", 1000 },
Denys Vlasenko043b1e52009-09-06 12:47:55 +020036 { "", 0 }
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000037 };
38
Denis Vlasenko67b23e62006-10-03 21:00:06 +000039 unsigned opts;
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000040 unsigned stimer_duration; /* how often to restart */
41 unsigned htimer_duration = 60000; /* reboots after N ms if not restarted */
42 char *st_arg;
43 char *ht_arg;
Bernhard Reutner-Fischer5f6d67b2006-06-03 20:53:18 +000044
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000045 opt_complementary = "=1"; /* must have exactly 1 argument */
46 opts = getopt32(argv, "Ft:T:", &st_arg, &ht_arg);
Mike Frysingercd68a2e2006-06-26 21:31:17 +000047
Mike Frysinger6fb5f012009-04-25 06:16:37 +000048 /* We need to daemonize *before* opening the watchdog as many drivers
49 * will only allow one process at a time to do so. Since daemonizing
50 * is not perfect (child may run before parent finishes exiting), we
51 * can't rely on parent exiting before us (let alone *cleanly* releasing
52 * the watchdog fd -- something else that may not even be allowed).
53 */
54 if (!(opts & OPT_FOREGROUND))
55 bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
56
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000057 if (opts & OPT_HTIMER)
58 htimer_duration = xatou_sfx(ht_arg, suffixes);
59 stimer_duration = htimer_duration / 2;
60 if (opts & OPT_STIMER)
61 stimer_duration = xatou_sfx(st_arg, suffixes);
Eric Andersencde8f532003-07-22 07:39:18 +000062
Denis Vlasenkocf7cf622008-03-19 19:38:46 +000063 bb_signals(BB_FATAL_SIGS, watchdog_shutdown);
Eric Andersencde8f532003-07-22 07:39:18 +000064
Denis Vlasenkocfa2b3a2007-03-14 21:55:41 +000065 /* Use known fd # - avoid needing global 'int fd' */
Denis Vlasenko5a142022007-03-26 13:20:54 +000066 xmove_fd(xopen(argv[argc - 1], O_WRONLY), 3);
Eric Andersenffde8672001-01-25 23:40:32 +000067
Denis Vlasenko93d07762008-10-04 16:40:17 +000068 /* WDIOC_SETTIMEOUT takes seconds, not milliseconds */
69 htimer_duration = htimer_duration / 1000;
Denis Vlasenko005ff882008-12-14 14:49:06 +000070#ifndef WDIOC_SETTIMEOUT
Denis Vlasenkoe41fdbc2009-04-20 09:26:17 +000071# error WDIOC_SETTIMEOUT is not defined, cannot compile watchdog applet
Denis Vlasenko005ff882008-12-14 14:49:06 +000072#else
Denis Vlasenkoe41fdbc2009-04-20 09:26:17 +000073# if defined WDIOC_SETOPTIONS && defined WDIOS_ENABLECARD
74 {
75 static const int enable = WDIOS_ENABLECARD;
76 ioctl_or_warn(3, WDIOC_SETOPTIONS, (void*) &enable);
77 }
78# endif
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000079 ioctl_or_warn(3, WDIOC_SETTIMEOUT, &htimer_duration);
Denis Vlasenko005ff882008-12-14 14:49:06 +000080#endif
Denis Vlasenkoe41fdbc2009-04-20 09:26:17 +000081
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000082#if 0
83 ioctl_or_warn(3, WDIOC_GETTIMEOUT, &htimer_duration);
Denis Vlasenkoe41fdbc2009-04-20 09:26:17 +000084 printf("watchdog: SW timer is %dms, HW timer is %ds\n",
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000085 stimer_duration, htimer_duration * 1000);
86#endif
87
Eric Andersenffde8672001-01-25 23:40:32 +000088 while (1) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +000089 /*
Denis Vlasenko005ff882008-12-14 14:49:06 +000090 * Make sure we clear the counter before sleeping,
91 * as the counter value is undefined at this point -- PFM
Eric Andersencde8f532003-07-22 07:39:18 +000092 */
Denis Vlasenko3638cc42007-09-05 12:13:51 +000093 write(3, "", 1); /* write zero byte */
Denis Vlasenko8d89bed2008-09-07 23:22:08 +000094 usleep(stimer_duration * 1000L);
Eric Andersenffde8672001-01-25 23:40:32 +000095 }
Denis Vlasenko3638cc42007-09-05 12:13:51 +000096 return EXIT_SUCCESS; /* - not reached, but gcc 4.2.1 is too dumb! */
Eric Andersenffde8672001-01-25 23:40:32 +000097}