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
;
17 volatile unsigned int uval
= UINT_MAX
;
19 UBSAN_TEST(CONFIG_UBSAN_SIGNED_OVERFLOW
);
22 UBSAN_TEST(CONFIG_UBSAN_UNSIGNED_OVERFLOW
);
26 static void test_ubsan_sub_overflow(void)
28 volatile int val
= INT_MIN
;
29 volatile unsigned int uval
= 0;
30 volatile int val2
= 2;
32 UBSAN_TEST(CONFIG_UBSAN_SIGNED_OVERFLOW
);
35 UBSAN_TEST(CONFIG_UBSAN_UNSIGNED_OVERFLOW
);
39 static void test_ubsan_mul_overflow(void)
41 volatile int val
= INT_MAX
/ 2;
42 volatile unsigned int uval
= UINT_MAX
/ 2;
44 UBSAN_TEST(CONFIG_UBSAN_SIGNED_OVERFLOW
);
47 UBSAN_TEST(CONFIG_UBSAN_UNSIGNED_OVERFLOW
);
51 static void test_ubsan_negate_overflow(void)
53 volatile int val
= INT_MIN
;
55 UBSAN_TEST(CONFIG_UBSAN_SIGNED_OVERFLOW
);
59 static void test_ubsan_divrem_overflow(void)
61 volatile int val
= 16;
62 volatile int val2
= 0;
64 UBSAN_TEST(CONFIG_UBSAN_DIV_ZERO
);
68 static void test_ubsan_shift_out_of_bounds(void)
70 volatile int neg
= -1, wrap
= 4;
74 UBSAN_TEST(CONFIG_UBSAN_SHIFT
, "negative exponent");
77 UBSAN_TEST(CONFIG_UBSAN_SHIFT
, "left overflow");
81 static void test_ubsan_out_of_bounds(void)
83 volatile int i
= 4, j
= 5, k
= -1;
84 volatile char above
[4] = { }; /* Protect surrounding memory. */
86 volatile char below
[4] = { }; /* Protect surrounding memory. */
90 UBSAN_TEST(CONFIG_UBSAN_BOUNDS
, "above");
93 UBSAN_TEST(CONFIG_UBSAN_BOUNDS
, "below");
97 enum ubsan_test_enum
{
103 static void test_ubsan_load_invalid_value(void)
105 volatile char *dst
, *src
;
106 bool val
, val2
, *ptr
;
107 enum ubsan_test_enum eval
, eval2
, *eptr
;
108 unsigned char c
= 0xff;
110 UBSAN_TEST(CONFIG_UBSAN_BOOL
, "bool");
118 UBSAN_TEST(CONFIG_UBSAN_ENUM
, "enum");
127 static void test_ubsan_null_ptr_deref(void)
129 volatile int *ptr
= NULL
;
132 UBSAN_TEST(CONFIG_UBSAN_OBJECT_SIZE
);
136 static void test_ubsan_misaligned_access(void)
138 volatile char arr
[5] __aligned(4) = {1, 2, 3, 4, 5};
139 volatile int *ptr
, val
= 6;
141 UBSAN_TEST(CONFIG_UBSAN_ALIGNMENT
);
142 ptr
= (int *)(arr
+ 1);
146 static void test_ubsan_object_size_mismatch(void)
148 /* "((aligned(8)))" helps this not into be misaligned for ptr-access. */
149 volatile int val
__aligned(8) = 4;
150 volatile long long *ptr
, val2
;
152 UBSAN_TEST(CONFIG_UBSAN_OBJECT_SIZE
);
153 ptr
= (long long *)&val
;
157 static const test_ubsan_fp test_ubsan_array
[] = {
158 test_ubsan_add_overflow
,
159 test_ubsan_sub_overflow
,
160 test_ubsan_mul_overflow
,
161 test_ubsan_negate_overflow
,
162 test_ubsan_shift_out_of_bounds
,
163 test_ubsan_out_of_bounds
,
164 test_ubsan_load_invalid_value
,
165 test_ubsan_misaligned_access
,
166 test_ubsan_object_size_mismatch
,
169 /* Excluded because they Oops the module. */
170 static const test_ubsan_fp skip_ubsan_array
[] = {
171 test_ubsan_divrem_overflow
,
172 test_ubsan_null_ptr_deref
,
175 static int __init
test_ubsan_init(void)
179 for (i
= 0; i
< ARRAY_SIZE(test_ubsan_array
); i
++)
180 test_ubsan_array
[i
]();
184 module_init(test_ubsan_init
);
186 static void __exit
test_ubsan_exit(void)
190 module_exit(test_ubsan_exit
);
192 MODULE_AUTHOR("Jinbum Park <jinb.park7@gmail.com>");
193 MODULE_LICENSE("GPL v2");