blob: 85a559f9b4632f1fd89557e7578220543900c549 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/* vi: set sw=4 ts=4: */
2/*
3 * Mini watchdog implementation for busybox
4 *
5 * Copyright (C) 2003 Paul Mundt <lethal@linux-sh.org>
6 * Copyright (C) 2006 Bernhard Reutner-Fischer <busybox@busybox.net>
7 * Copyright (C) 2008 Darius Augulis <augulis.darius@gmail.com>
8 *
9 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
10 */
11
12//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"
16//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
22#include "libbb.h"
23#include "linux/types.h" /* for __u32 */
24#include "linux/watchdog.h"
25
26#define OPT_FOREGROUND (1 << 0)
27#define OPT_STIMER (1 << 1)
28#define OPT_HTIMER (1 << 2)
29
30static void watchdog_shutdown(int sig UNUSED_PARAM)
31{
32 static const char V = 'V';
33
34 remove_pidfile(CONFIG_PID_FILE_PATH "/watchdog.pid");
35 write(3, &V, 1); /* Magic, see watchdog-api.txt in kernel */
36 if (ENABLE_FEATURE_CLEAN_UP)
37 close(3);
38 _exit(EXIT_SUCCESS);
39}
40
41static void watchdog_safe_terminate(int unused UNUSED_PARAM) NORETURN;
42static void watchdog_safe_terminate(int unused UNUSED_PARAM)
43{
44 write(3, "T", 1); /* Magic safe terminate (ie, a longer timeout) */
45 close(3);
46 exit(0);
47}
48
49int watchdog_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
50int watchdog_main(int argc, char **argv)
51{
52 static const struct suffix_mult suffixes[] = {
53 { "ms", 1 },
54 { "", 1000 },
55 { "", 0 }
56 };
57
58 unsigned opts;
59 unsigned stimer_duration; /* how often to restart */
60 unsigned htimer_duration = 60000; /* reboots after N ms if not restarted */
61 char *st_arg;
62 char *ht_arg;
63 int fd;
64
65 opt_complementary = "=1"; /* must have exactly 1 argument */
66 opts = getopt32(argv, "Ft:T:", &st_arg, &ht_arg);
67
68 /* We need to daemonize *before* opening the watchdog as many drivers
69 * will only allow one process at a time to do so. Since daemonizing
70 * is not perfect (child may run before parent finishes exiting), we
71 * can't rely on parent exiting before us (let alone *cleanly* releasing
72 * the watchdog fd -- something else that may not even be allowed).
73 */
74 if (!(opts & OPT_FOREGROUND))
75 bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
76
77 if (opts & OPT_HTIMER)
78 htimer_duration = xatou_sfx(ht_arg, suffixes);
79 stimer_duration = htimer_duration / 2;
80 if (opts & OPT_STIMER)
81 stimer_duration = xatou_sfx(st_arg, suffixes);
82
83 fd = open("/proc/self/oom_score_adj", O_WRONLY);
84 if (fd >= 0) {
85 write(fd, "-1000", 5);
86 close(fd);
87 } else {
88 fd = open("/proc/self/oom_adj", O_WRONLY);
89 if (fd >= 0) {
90 write(fd, "-17", 3);
91 close(fd);
92 }
93 }
94
95 signal(SIGHUP, watchdog_shutdown);
96 signal(SIGINT, watchdog_shutdown);
97 signal(SIGTERM, watchdog_safe_terminate);
98 //bb_signals(BB_FATAL_SIGS, watchdog_shutdown);
99
100 /* Use known fd # - avoid needing global 'int fd' */
101 xmove_fd(xopen(argv[argc - 1], O_WRONLY), 3);
102
103 /* WDIOC_SETTIMEOUT takes seconds, not milliseconds */
104 htimer_duration = htimer_duration / 1000;
105#ifndef WDIOC_SETTIMEOUT
106# error WDIOC_SETTIMEOUT is not defined, cannot compile watchdog applet
107#else
108# if defined WDIOC_SETOPTIONS && defined WDIOS_ENABLECARD
109 {
110 static const int enable = WDIOS_ENABLECARD;
111 ioctl_or_warn(3, WDIOC_SETOPTIONS, (void*) &enable);
112 }
113# endif
114 ioctl_or_warn(3, WDIOC_SETTIMEOUT, &htimer_duration);
115#endif
116
117#if 0
118 ioctl_or_warn(3, WDIOC_GETTIMEOUT, &htimer_duration);
119 printf("watchdog: SW timer is %dms, HW timer is %ds\n",
120 stimer_duration, htimer_duration * 1000);
121#endif
122
123 write_pidfile(CONFIG_PID_FILE_PATH "/watchdog.pid");
124
125 while (1) {
126 /*
127 * Make sure we clear the counter before sleeping,
128 * as the counter value is undefined at this point -- PFM
129 */
130 write(3, "", 1); /* write zero byte */
131 usleep(stimer_duration * 1000L);
132 }
133 return EXIT_SUCCESS; /* - not reached, but gcc 4.2.1 is too dumb! */
134}