]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
KVM: selftests: Add wrapper macro to handle and assert on expected SIGBUS
authorSean Christopherson <seanjc@google.com>
Fri, 3 Oct 2025 23:26:04 +0000 (16:26 -0700)
committerSean Christopherson <seanjc@google.com>
Fri, 10 Oct 2025 21:25:29 +0000 (14:25 -0700)
Extract the guest_memfd test's SIGBUS handling functionality into a common
TEST_EXPECT_SIGBUS() macro in anticipation of adding more SIGBUS testcases.
Eating a SIGBUS isn't terrible difficult, but it requires a non-trivial
amount of boilerplate code, and using a macro allows selftests to print
out the exact action that failed to generate a SIGBUS without the developer
needing to remember to add a useful error message.

Explicitly mark the SIGBUS handler as "used", as gcc-14 at least likes to
discard the function before linking.

Opportunistically use TEST_FAIL(...) instead of TEST_ASSERT(false, ...),
and fix the write path of the guest_memfd test to use the local "val"
instead of hardcoding the literal value a second time.

Suggested-by: Ackerley Tng <ackerleytng@google.com>
Reviewed-by: Ackerley Tng <ackerleytng@google.com>
Tested-by: Ackerley Tng <ackerleytng@google.com>
Reviewed-by: Lisa Wang <wyihan@google.com>
Tested-by: Lisa Wang <wyihan@google.com>
Link: https://lore.kernel.org/r/20251003232606.4070510-12-seanjc@google.com
Signed-off-by: Sean Christopherson <seanjc@google.com>
tools/testing/selftests/kvm/guest_memfd_test.c
tools/testing/selftests/kvm/include/test_util.h
tools/testing/selftests/kvm/lib/test_util.c

index 640636c76eb93eaaad4701edc4aeeeac0057f67d..73c2e54e7297a7d2895e2d05bc87ef5873ff0c0e 100644 (file)
@@ -14,8 +14,6 @@
 #include <linux/bitmap.h>
 #include <linux/falloc.h>
 #include <linux/sizes.h>
-#include <setjmp.h>
-#include <signal.h>
 #include <sys/mman.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -77,17 +75,8 @@ static void test_mmap_supported(int fd, size_t total_size)
        kvm_munmap(mem, total_size);
 }
 
-static sigjmp_buf jmpbuf;
-void fault_sigbus_handler(int signum)
-{
-       siglongjmp(jmpbuf, 1);
-}
-
 static void test_fault_overflow(int fd, size_t total_size)
 {
-       struct sigaction sa_old, sa_new = {
-               .sa_handler = fault_sigbus_handler,
-       };
        size_t map_size = total_size * 4;
        const char val = 0xaa;
        char *mem;
@@ -95,12 +84,7 @@ static void test_fault_overflow(int fd, size_t total_size)
 
        mem = kvm_mmap(map_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd);
 
-       sigaction(SIGBUS, &sa_new, &sa_old);
-       if (sigsetjmp(jmpbuf, 1) == 0) {
-               memset(mem, 0xaa, map_size);
-               TEST_ASSERT(false, "memset() should have triggered SIGBUS.");
-       }
-       sigaction(SIGBUS, &sa_old, NULL);
+       TEST_EXPECT_SIGBUS(memset(mem, val, map_size));
 
        for (i = 0; i < total_size; i++)
                TEST_ASSERT_EQ(READ_ONCE(mem[i]), val);
index c6ef895fbd9abed1859b30a8a0386fe376dba2dc..b4872ba8ed1245cfb02e5f6eb29578d72e2ed78c 100644 (file)
@@ -8,6 +8,8 @@
 #ifndef SELFTEST_KVM_TEST_UTIL_H
 #define SELFTEST_KVM_TEST_UTIL_H
 
+#include <setjmp.h>
+#include <signal.h>
 #include <stdlib.h>
 #include <stdarg.h>
 #include <stdbool.h>
@@ -78,6 +80,23 @@ do {                                                                 \
        __builtin_unreachable(); \
 } while (0)
 
+extern sigjmp_buf expect_sigbus_jmpbuf;
+void expect_sigbus_handler(int signum);
+
+#define TEST_EXPECT_SIGBUS(action)                                             \
+do {                                                                           \
+       struct sigaction sa_old, sa_new = {                                     \
+               .sa_handler = expect_sigbus_handler,                            \
+       };                                                                      \
+                                                                               \
+       sigaction(SIGBUS, &sa_new, &sa_old);                                    \
+       if (sigsetjmp(expect_sigbus_jmpbuf, 1) == 0) {                          \
+               action;                                                         \
+               TEST_FAIL("'%s' should have triggered SIGBUS", #action);        \
+       }                                                                       \
+       sigaction(SIGBUS, &sa_old, NULL);                                       \
+} while (0)
+
 size_t parse_size(const char *size);
 
 int64_t timespec_to_ns(struct timespec ts);
index 03eb99af9b8debe8bb6fe32ba54de75efba52aab..8a1848586a857031c7ef2ddf60b8e731e8c3705a 100644 (file)
 
 #include "test_util.h"
 
+sigjmp_buf expect_sigbus_jmpbuf;
+
+void __attribute__((used)) expect_sigbus_handler(int signum)
+{
+       siglongjmp(expect_sigbus_jmpbuf, 1);
+}
+
 /*
  * Random number generator that is usable from guest code. This is the
  * Park-Miller LCG using standard constants.