2 * Copyright (c) 2003-2004 Sean M. Kelly <smkelly@FreeBSD.org>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * Software watchdog daemon.
31 #include <sys/types.h>
32 __FBSDID("$FreeBSD$");
34 #include <sys/param.h>
35 #include <sys/rtprio.h>
38 #include <sys/watchdog.h>
53 static void parseargs(int, char *[]);
54 static void sighandler(int);
55 static void watchdog_loop(void);
56 static int watchdog_init(void);
57 static int watchdog_onoff(int onoff
);
58 static int watchdog_patpat(u_int timeout
);
59 static void usage(void);
63 const char *pidfile
= _PATH_VARRUN
"watchdogd.pid";
65 size_t reset_miblen
= 3;
66 u_int timeout
= WD_TO_16SEC
;
71 char *test_cmd
= NULL
;
74 * Periodically pat the watchdog, preventing it from firing.
77 main(int argc
, char *argv
[])
84 errx(EX_SOFTWARE
, "not super user");
86 parseargs(argc
, argv
);
88 rtp
.type
= RTP_PRIO_REALTIME
;
90 if (rtprio(RTP_SET
, 0, &rtp
) == -1)
91 err(EX_OSERR
, "rtprio");
93 if (watchdog_init() == -1)
94 errx(EX_SOFTWARE
, "unable to initialize watchdog");
97 if (watchdog_onoff(1) == -1)
100 pfh
= pidfile_open(pidfile
, 0600, &otherpid
);
102 if (errno
== EEXIST
) {
103 errx(EX_SOFTWARE
, "%s already running, pid: %d",
104 getprogname(), otherpid
);
106 warn("Cannot open or create pidfile");
109 if (debugging
== 0 && daemon(0, 0) == -1) {
112 err(EX_OSERR
, "daemon");
115 signal(SIGHUP
, SIG_IGN
);
116 signal(SIGINT
, sighandler
);
117 signal(SIGTERM
, sighandler
);
128 timeout
|= WD_PASSIVE
;
130 timeout
|= WD_ACTIVE
;
131 if (watchdog_patpat(timeout
) < 0)
132 err(EX_OSERR
, "patting the dog");
138 * Catch signals and begin shutdown process.
141 sighandler(int signum
)
144 if (signum
== SIGINT
|| signum
== SIGTERM
)
149 * Open the watchdog device.
155 fd
= open("/dev/" _PATH_WATCHDOG
, O_RDWR
);
158 warn("Could not open watchdog device");
163 * Main program loop which is iterated every second.
171 while (end_program
!= 2) {
174 if (test_cmd
!= NULL
)
175 failed
= system(test_cmd
);
177 failed
= stat("/etc", &sb
);
180 watchdog_patpat(timeout
|WD_ACTIVE
);
183 if (end_program
!= 0) {
184 if (watchdog_onoff(0) == 0) {
187 warnx("Could not stop the watchdog, not exitting");
195 * Reset the watchdog timer. This function must be called periodically
196 * to keep the watchdog from firing.
199 watchdog_patpat(u_int t
)
202 return ioctl(fd
, WDIOCPATPAT
, &t
);
206 * Toggle the kernel's watchdog. This routine is used to enable and
207 * disable the watchdog.
210 watchdog_onoff(int onoff
)
214 return watchdog_patpat((timeout
|WD_ACTIVE
));
216 return watchdog_patpat(0);
220 * Tell user how to use the program.
226 fprintf(stderr
, "usage: watchdogd [-d] [-e cmd] [-I file] [-s sleep] [-t timeout]\n");
228 fprintf(stderr
, "usage: watchdog [-d] [-t timeout]\n");
233 * Handle the few command line arguments supported.
236 parseargs(int argc
, char *argv
[])
243 if (argv
[0][c
- 1] == 'd')
245 while ((c
= getopt(argc
, argv
,
246 is_daemon
? "I:de:s:t:?" : "dt:?")) != -1) {
255 test_cmd
= strdup(optarg
);
265 nap
= strtol(optarg
, &p
, 0);
266 if ((p
!= NULL
&& *p
!= '\0') || errno
!= 0)
267 errx(EX_USAGE
, "-s argument is not a number");
272 a
= strtod(optarg
, &p
);
273 if ((p
!= NULL
&& *p
!= '\0') || errno
!= 0)
274 errx(EX_USAGE
, "-t argument is not a number");
276 errx(EX_USAGE
, "-t argument must be positive");
278 timeout
= WD_TO_NEVER
;
280 timeout
= 1.0 + log(a
* 1e9
) / log(2.0);
282 printf("Timeout is 2^%d nanoseconds\n",
292 errx(EX_USAGE
, "extra arguments.");
293 if (is_daemon
&& timeout
< WD_TO_1SEC
)
294 errx(EX_USAGE
, "-t argument is less than one second.");