Merge tag 'block-5.11-2021-01-16' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / lib / test_ubsan.c
blob5e5d9355ef499d44221308ac28380ab7b7745afe
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"); \
12 } while (0)
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);
20 val += 2;
22 UBSAN_TEST(CONFIG_UBSAN_UNSIGNED_OVERFLOW);
23 uval += 2;
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);
33 val -= val2;
35 UBSAN_TEST(CONFIG_UBSAN_UNSIGNED_OVERFLOW);
36 uval -= val2;
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);
45 val *= 3;
47 UBSAN_TEST(CONFIG_UBSAN_UNSIGNED_OVERFLOW);
48 uval *= 3;
51 static void test_ubsan_negate_overflow(void)
53 volatile int val = INT_MIN;
55 UBSAN_TEST(CONFIG_UBSAN_SIGNED_OVERFLOW);
56 val = -val;
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);
65 val /= val2;
68 static void test_ubsan_shift_out_of_bounds(void)
70 volatile int neg = -1, wrap = 4;
71 int val1 = 10;
72 int val2 = INT_MAX;
74 UBSAN_TEST(CONFIG_UBSAN_SHIFT, "negative exponent");
75 val1 <<= neg;
77 UBSAN_TEST(CONFIG_UBSAN_SHIFT, "left overflow");
78 val2 <<= wrap;
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. */
85 volatile int arr[4];
86 volatile char below[4] = { }; /* Protect surrounding memory. */
88 above[0] = below[0];
90 UBSAN_TEST(CONFIG_UBSAN_BOUNDS, "above");
91 arr[j] = i;
93 UBSAN_TEST(CONFIG_UBSAN_BOUNDS, "below");
94 arr[k] = i;
97 enum ubsan_test_enum {
98 UBSAN_TEST_ZERO = 0,
99 UBSAN_TEST_ONE,
100 UBSAN_TEST_MAX,
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");
111 dst = (char *)&val;
112 src = &c;
113 *dst = *src;
115 ptr = &val2;
116 val2 = val;
118 UBSAN_TEST(CONFIG_UBSAN_ENUM, "enum");
119 dst = (char *)&eval;
120 src = &c;
121 *dst = *src;
123 eptr = &eval2;
124 eval2 = eval;
127 static void test_ubsan_null_ptr_deref(void)
129 volatile int *ptr = NULL;
130 int val;
132 UBSAN_TEST(CONFIG_UBSAN_OBJECT_SIZE);
133 val = *ptr;
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);
143 *ptr = val;
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;
154 val2 = *ptr;
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)
177 unsigned int i;
179 for (i = 0; i < ARRAY_SIZE(test_ubsan_array); i++)
180 test_ubsan_array[i]();
182 return 0;
184 module_init(test_ubsan_init);
186 static void __exit test_ubsan_exit(void)
188 /* do nothing */
190 module_exit(test_ubsan_exit);
192 MODULE_AUTHOR("Jinbum Park <jinb.park7@gmail.com>");
193 MODULE_LICENSE("GPL v2");