Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/tests/dev Add test cases to check that sysmon/swwdog will pa...
details: https://anonhg.NetBSD.org/src/rev/6ff4f485bfeb
branches: trunk
changeset: 756868:6ff4f485bfeb
user: pooka <pooka%NetBSD.org@localhost>
date: Fri Aug 06 16:13:26 2010 +0000
description:
Add test cases to check that sysmon/swwdog will panic and reboot
the kernel if left untickled.
Thanks to jmmv for the tip that doing this is possible in atf via
means of fork/wait.
diffstat:
tests/dev/Makefile | 4 +-
tests/dev/sysmon/Makefile | 16 ++++
tests/dev/sysmon/t_swwdog.c | 166 ++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 184 insertions(+), 2 deletions(-)
diffs (206 lines):
diff -r b838a071a852 -r 6ff4f485bfeb tests/dev/Makefile
--- a/tests/dev/Makefile Fri Aug 06 16:02:56 2010 +0000
+++ b/tests/dev/Makefile Fri Aug 06 16:13:26 2010 +0000
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile,v 1.1 2010/08/04 13:15:15 pooka Exp $
+# $NetBSD: Makefile,v 1.2 2010/08/06 16:13:26 pooka Exp $
#
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/dev
-TESTS_SUBDIRS+= audio
+TESTS_SUBDIRS+= audio sysmon
.include <bsd.test.mk>
diff -r b838a071a852 -r 6ff4f485bfeb tests/dev/sysmon/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/dev/sysmon/Makefile Fri Aug 06 16:13:26 2010 +0000
@@ -0,0 +1,16 @@
+# $NetBSD: Makefile,v 1.1 2010/08/06 16:13:26 pooka Exp $
+#
+
+.include <bsd.own.mk>
+
+TESTSDIR= ${TESTSBASE}/dev/sysmon
+
+TESTS_C= t_swwdog
+
+LDADD+= -lrumpdev_sysmon -lrumpdev -lrumpvfs
+LDADD+= -lrump
+LDADD+= -lrumpuser -lpthread
+
+WARNS= 4
+
+.include <bsd.test.mk>
diff -r b838a071a852 -r 6ff4f485bfeb tests/dev/sysmon/t_swwdog.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/dev/sysmon/t_swwdog.c Fri Aug 06 16:13:26 2010 +0000
@@ -0,0 +1,166 @@
+/* $NetBSD: t_swwdog.c,v 1.1 2010/08/06 16:13:26 pooka Exp $ */
+
+/*
+ * Copyright (c) 2010 Antti Kantee. All Rights Reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
+ * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ */
+
+#include <sys/types.h>
+#include <sys/wait.h>
+#include <sys/wdog.h>
+
+#include <assert.h>
+#include <atf-c.h>
+#include <err.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+
+#include <rump/rump.h>
+#include <rump/rump_syscalls.h>
+
+#include "../../h_macros.h"
+
+static sig_atomic_t tcount;
+
+static void
+sigcount(int sig)
+{
+
+ assert(sig == SIGUSR1);
+ tcount++;
+}
+
+/*
+ * Since we are testing for swwdog's ability to reboot/panic, we need
+ * to fork and monitor the exit status from the parent and report
+ * something sensible back to atf.
+ */
+static int
+testbody(void)
+{
+ char wname[WDOG_NAMESIZE];
+ struct wdog_conf wc;
+ struct wdog_mode wm;
+ pid_t p1, p2;
+ int status;
+ int fd;
+
+ signal(SIGUSR1, sigcount);
+
+ switch ((p1 = fork())) {
+ case 0:
+ break;
+ case -1:
+ atf_tc_fail_errno("fork");
+ break;
+ default:
+ p2 = wait(&status);
+ ATF_REQUIRE_EQ(p1, p2);
+ ATF_REQUIRE_EQ(tcount, 1);
+ return status;
+ }
+
+ rump_init();
+
+ fd = rump_sys_open("/dev/watchdog", O_RDWR);
+ if (fd == -1)
+ err(1, "open watchdog");
+
+ wc.wc_count = 1;
+ wc.wc_names = wname;
+
+ if (rump_sys_ioctl(fd, WDOGIOC_GWDOGS, &wc) == -1)
+ err(1, "can't fetch watchdog names");
+
+ if (wc.wc_count) {
+ assert(wc.wc_count == 1);
+
+ strlcpy(wm.wm_name, wc.wc_names, sizeof(wm.wm_name));
+ wm.wm_mode = WDOG_MODE_ETICKLE;
+ wm.wm_period = 1;
+ if (rump_sys_ioctl(fd, WDOGIOC_SMODE, &wm) == -1)
+ atf_tc_fail_errno("failed to set tickle");
+
+ usleep(500000);
+ rump_sys_ioctl(fd, WDOGIOC_TICKLE);
+ kill(getppid(), SIGUSR1);
+
+ sleep(2);
+ printf("staying alive\n");
+ }
+ /* fail */
+ _exit(1);
+}
+
+ATF_TC(reboot);
+ATF_TC_HEAD(reboot, tc)
+{
+
+ atf_tc_set_md_var(tc, "descr", "check swwdog reboot capability");
+}
+
+ATF_TC_BODY(reboot, tc)
+{
+ extern bool rumpns_swwdog_reboot;
+ int status;
+
+ /* XXX: should use sysctl */
+ rumpns_swwdog_reboot = true;
+ status = testbody();
+
+ ATF_REQUIRE(WIFEXITED(status));
+ ATF_REQUIRE_EQ(WEXITSTATUS(status), 0);
+}
+
+ATF_TC(panic);
+ATF_TC_HEAD(panic, tc)
+{
+
+ atf_tc_set_md_var(tc, "descr", "check swwdog panic capability");
+}
+
+ATF_TC_BODY(panic, tc)
+{
+ extern bool rumpns_swwdog_reboot;
+ int status;
+
+ /* XXX: should use sysctl */
+ rumpns_swwdog_reboot = false;
+ status = testbody();
+
+ ATF_REQUIRE(WIFSIGNALED(status));
+ ATF_REQUIRE_EQ(WTERMSIG(status), SIGABRT);
+}
+
+ATF_TP_ADD_TCS(tp)
+{
+
+ ATF_TP_ADD_TC(tp, panic);
+ ATF_TP_ADD_TC(tp, reboot);
+
+ return atf_no_error();
+}
Home |
Main Index |
Thread Index |
Old Index