1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/init.h>
3 #include <linux/kernel.h>
4 #include <linux/module.h>
6 typedef void(*test_ubsan_fp)(void);
8 #define UBSAN_TEST(config, ...) do { \
9 pr_info("%s " __VA_ARGS__ "%s(%s=%s)\n", __func__, \
10 sizeof(" " __VA_ARGS__) > 2 ? " " : "", \
11 #config, IS_ENABLED(config) ? "y" : "n"); \
14 static void test_ubsan_add_overflow(void)
16 volatile int val = INT_MAX;
18 UBSAN_TEST(CONFIG_UBSAN_SIGNED_WRAP);
22 static void test_ubsan_sub_overflow(void)
24 volatile int val = INT_MIN;
25 volatile int val2 = 2;
27 UBSAN_TEST(CONFIG_UBSAN_SIGNED_WRAP);
31 static void test_ubsan_mul_overflow(void)
33 volatile int val = INT_MAX / 2;
35 UBSAN_TEST(CONFIG_UBSAN_SIGNED_WRAP);
39 static void test_ubsan_negate_overflow(void)
41 volatile int val = INT_MIN;
43 UBSAN_TEST(CONFIG_UBSAN_SIGNED_WRAP);
47 static void test_ubsan_divrem_overflow(void)
49 volatile int val = 16;
50 volatile int val2 = 0;
52 UBSAN_TEST(CONFIG_UBSAN_DIV_ZERO);
56 static void test_ubsan_shift_out_of_bounds(void)
58 volatile int neg = -1, wrap = 4;
59 volatile int val1 = 10;
60 volatile int val2 = INT_MAX;
62 UBSAN_TEST(CONFIG_UBSAN_SHIFT, "negative exponent");
65 UBSAN_TEST(CONFIG_UBSAN_SHIFT, "left overflow");
69 static void test_ubsan_out_of_bounds(void)
71 volatile int i = 4, j = 5, k = -1;
72 volatile char above[4] = { }; /* Protect surrounding memory. */
74 volatile char below[4] = { }; /* Protect surrounding memory. */
78 UBSAN_TEST(CONFIG_UBSAN_BOUNDS, "above");
81 UBSAN_TEST(CONFIG_UBSAN_BOUNDS, "below");
85 enum ubsan_test_enum {
91 static void test_ubsan_load_invalid_value(void)
93 volatile char *dst, *src;
95 enum ubsan_test_enum eval, eval2, *eptr;
96 unsigned char c = 0xff;
98 UBSAN_TEST(CONFIG_UBSAN_BOOL, "bool");
106 UBSAN_TEST(CONFIG_UBSAN_ENUM, "enum");
115 static void test_ubsan_misaligned_access(void)
117 volatile char arr[5] __aligned(4) = {1, 2, 3, 4, 5};
118 volatile int *ptr, val = 6;
120 UBSAN_TEST(CONFIG_UBSAN_ALIGNMENT);
121 ptr = (int *)(arr + 1);
125 static const test_ubsan_fp test_ubsan_array[] = {
126 test_ubsan_add_overflow,
127 test_ubsan_sub_overflow,
128 test_ubsan_mul_overflow,
129 test_ubsan_negate_overflow,
130 test_ubsan_shift_out_of_bounds,
131 test_ubsan_out_of_bounds,
132 test_ubsan_load_invalid_value,
133 test_ubsan_misaligned_access,
136 /* Excluded because they Oops the module. */
137 static __used const test_ubsan_fp skip_ubsan_array[] = {
138 test_ubsan_divrem_overflow,
141 static int __init test_ubsan_init(void)
145 for (i = 0; i < ARRAY_SIZE(test_ubsan_array); i++)
146 test_ubsan_array[i]();
150 module_init(test_ubsan_init);
152 static void __exit test_ubsan_exit(void)
156 module_exit(test_ubsan_exit);
159 MODULE_DESCRIPTION("UBSAN unit test");
160 MODULE_LICENSE("GPL v2");