2020-08-28 22:29:58 +03:00
|
|
|
/* $NetBSD: t_kern.c,v 1.6 2020/08/28 19:29:58 martin Exp $ */
|
2011-01-06 16:12:52 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2011 The NetBSD Foundation, Inc.
|
|
|
|
* 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 NETBSD FOUNDATION, INC. AND
|
|
|
|
* CONTRIBUTORS ``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 FOUNDATION 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/signal.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
|
|
|
#include <rump/rump.h>
|
|
|
|
|
|
|
|
#include <atf-c.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2017-05-03 15:09:41 +03:00
|
|
|
#include <regex.h>
|
2011-01-06 16:12:52 +03:00
|
|
|
|
2017-01-14 00:30:39 +03:00
|
|
|
#include "h_macros.h"
|
2011-01-06 16:12:52 +03:00
|
|
|
#include "../kernspace/kernspace.h"
|
|
|
|
|
2011-01-06 16:42:45 +03:00
|
|
|
#define LOCKFUN(_name_, _descr_,_needld_, _expect_) \
|
2011-01-06 16:12:52 +03:00
|
|
|
ATF_TC(lockme_##_name_); \
|
|
|
|
ATF_TC_HEAD(lockme_##_name_, tc) { \
|
|
|
|
atf_tc_set_md_var(tc, "descr", _descr_); \
|
|
|
|
} \
|
|
|
|
ATF_TC_BODY(lockme_##_name_, tc) { \
|
2011-01-06 16:42:45 +03:00
|
|
|
locktest(tc, LOCKME_##_name_, _needld_, _expect_); \
|
2011-01-06 16:12:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-01-06 16:42:45 +03:00
|
|
|
locktest(const atf_tc_t *tc, enum locktest lt, int needld, const char *expect)
|
2011-01-06 16:12:52 +03:00
|
|
|
{
|
|
|
|
extern const int rump_lockdebug;
|
2011-01-06 16:42:45 +03:00
|
|
|
int pipetti[2];
|
2011-01-06 16:12:52 +03:00
|
|
|
int status;
|
2017-05-03 15:09:41 +03:00
|
|
|
ssize_t len;
|
|
|
|
regex_t preg;
|
2011-01-06 16:12:52 +03:00
|
|
|
|
|
|
|
if (needld && !rump_lockdebug)
|
|
|
|
atf_tc_skip("test requires LOCKDEBUG kernel");
|
2011-01-06 16:42:45 +03:00
|
|
|
RL(pipe(pipetti));
|
2011-01-06 16:12:52 +03:00
|
|
|
|
|
|
|
switch (fork()) {
|
|
|
|
case 0:
|
2011-01-06 16:42:45 +03:00
|
|
|
RL(dup2(pipetti[1], STDOUT_FILENO));
|
|
|
|
RL(dup2(pipetti[1], STDOUT_FILENO));
|
2011-01-06 16:12:52 +03:00
|
|
|
rump_init();
|
|
|
|
rump_schedule();
|
|
|
|
rumptest_lockme(lt);
|
|
|
|
rump_unschedule();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
RL(wait(&status));
|
|
|
|
ATF_REQUIRE(WIFSIGNALED(status) && WTERMSIG(status) == SIGABRT);
|
2011-01-06 16:42:45 +03:00
|
|
|
if (rump_lockdebug) {
|
|
|
|
char buf[8192];
|
|
|
|
|
2017-05-03 15:09:41 +03:00
|
|
|
len = read(pipetti[0], buf, sizeof(buf) - 1);
|
|
|
|
ATF_REQUIRE(len > 0);
|
|
|
|
buf[len] = '\0';
|
|
|
|
/*
|
|
|
|
* We use regex matching here, since the rump
|
|
|
|
* kernel messages include routine names and line
|
|
|
|
* numbers which may not remain constant.
|
|
|
|
*/
|
|
|
|
if ((status = regcomp(&preg, expect, REG_BASIC)) != 0) {
|
|
|
|
regerror(status, &preg, buf, sizeof(buf));
|
|
|
|
printf("regcomp error: %s\n", buf);
|
|
|
|
atf_tc_fail("regcomp failed");
|
|
|
|
}
|
|
|
|
if ((status = regexec(&preg, buf, 0, NULL, 0)) != 0) {
|
|
|
|
printf("expected: \"%s\"\n", expect);
|
|
|
|
printf("received: \"%s\"\n", buf);
|
|
|
|
regerror(status, &preg, buf, sizeof(buf));
|
|
|
|
printf("regexec error: %s\n", buf);
|
2011-01-06 16:42:45 +03:00
|
|
|
atf_tc_fail("unexpected output");
|
2017-05-03 15:09:41 +03:00
|
|
|
}
|
|
|
|
regfree(&preg);
|
2011-01-06 16:42:45 +03:00
|
|
|
}
|
2011-01-06 16:12:52 +03:00
|
|
|
break;
|
|
|
|
case -1:
|
|
|
|
atf_tc_fail("fork");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-06 16:42:45 +03:00
|
|
|
LOCKFUN(DESTROYHELD, "destroy lock while held", 0,
|
2017-05-03 15:09:41 +03:00
|
|
|
"mutex error: mutex_destroy,.*: is locked or in use");
|
2011-01-06 16:42:45 +03:00
|
|
|
LOCKFUN(DOUBLEFREE, "free lock twice", 0,
|
2017-05-03 15:09:41 +03:00
|
|
|
"panic: mutex_destroy,.*: uninitialized lock");
|
2011-01-06 16:42:45 +03:00
|
|
|
LOCKFUN(DOUBLEINIT, "init lock twice", 1,
|
2020-08-28 22:29:58 +03:00
|
|
|
"mutex error: .*mutex_init,.*: already initialized");
|
2011-01-06 16:42:45 +03:00
|
|
|
LOCKFUN(MEMFREE, "free memory active lock is in", 1,
|
2017-05-03 15:09:41 +03:00
|
|
|
"mutex error: kmem_intr_free,.*: allocation contains active lock");
|
2011-01-06 16:42:45 +03:00
|
|
|
LOCKFUN(MTX, "locking-against-self mutex", 0,
|
2017-05-03 15:09:41 +03:00
|
|
|
"mutex error: mutex_enter,.*: locking against myself");
|
2011-01-06 16:42:45 +03:00
|
|
|
LOCKFUN(RWDOUBLEX, "locking-against-self exclusive rwlock", 0,
|
2017-05-03 15:09:41 +03:00
|
|
|
"rwlock error: rw_enter,.*: locking against myself");
|
2011-01-06 16:42:45 +03:00
|
|
|
LOCKFUN(RWRX, "rw: first shared, then exclusive", 1,
|
2017-05-03 15:09:41 +03:00
|
|
|
"rwlock error: rw_enter,.*: locking against myself");
|
2011-01-06 16:42:45 +03:00
|
|
|
LOCKFUN(RWXR, "rw: first execusive, then shared", 0,
|
2017-05-03 15:09:41 +03:00
|
|
|
"rwlock error: rw_enter,.*: locking against myself");
|
2011-01-06 16:12:52 +03:00
|
|
|
|
|
|
|
ATF_TP_ADD_TCS(tp)
|
|
|
|
{
|
|
|
|
|
|
|
|
ATF_TP_ADD_TC(tp, lockme_MTX);
|
|
|
|
ATF_TP_ADD_TC(tp, lockme_RWDOUBLEX);
|
|
|
|
ATF_TP_ADD_TC(tp, lockme_RWRX);
|
|
|
|
ATF_TP_ADD_TC(tp, lockme_RWXR);
|
|
|
|
ATF_TP_ADD_TC(tp, lockme_DOUBLEINIT);
|
|
|
|
ATF_TP_ADD_TC(tp, lockme_DOUBLEFREE);
|
|
|
|
ATF_TP_ADD_TC(tp, lockme_DESTROYHELD);
|
|
|
|
ATF_TP_ADD_TC(tp, lockme_MEMFREE);
|
|
|
|
|
|
|
|
return atf_no_error();
|
|
|
|
}
|