]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - lib/test_kasan.c
x86/speculation/mmio: Reuse SRBDS mitigation for SBDS
[mirror_ubuntu-jammy-kernel.git] / lib / test_kasan.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
3f15801c
AR
2/*
3 *
4 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
5 * Author: Andrey Ryabinin <a.ryabinin@samsung.com>
3f15801c
AR
6 */
7
19a33ca6 8#include <linux/bitops.h>
0386bf38 9#include <linux/delay.h>
19a33ca6 10#include <linux/kasan.h>
3f15801c 11#include <linux/kernel.h>
eae08dca 12#include <linux/mm.h>
19a33ca6
ME
13#include <linux/mman.h>
14#include <linux/module.h>
3f15801c 15#include <linux/printk.h>
573a4809 16#include <linux/random.h>
3f15801c
AR
17#include <linux/slab.h>
18#include <linux/string.h>
eae08dca 19#include <linux/uaccess.h>
b92a953c 20#include <linux/io.h>
06513916 21#include <linux/vmalloc.h>
b92a953c
MR
22
23#include <asm/page.h>
3f15801c 24
83c4e7a0
PA
25#include <kunit/test.h>
26
f33a0149
WW
27#include "../mm/kasan/kasan.h"
28
1f600626 29#define OOB_TAG_OFF (IS_ENABLED(CONFIG_KASAN_GENERIC) ? 0 : KASAN_GRANULE_SIZE)
f33a0149 30
adb72ae1 31/*
0fd37925
AK
32 * Some tests use these global variables to store return values from function
33 * calls that could otherwise be eliminated by the compiler as dead code.
adb72ae1 34 */
adb72ae1 35void *kasan_ptr_result;
83c4e7a0
PA
36int kasan_int_result;
37
38static struct kunit_resource resource;
39static struct kunit_kasan_expectation fail_data;
40static bool multishot;
41
0fd37925
AK
42/*
43 * Temporarily enable multi-shot mode. Otherwise, KASAN would only report the
f05842cf
AK
44 * first detected bug and panic the kernel if panic_on_warn is enabled. For
45 * hardware tag-based KASAN also allow tag checking to be reenabled for each
46 * test, see the comment for KUNIT_EXPECT_KASAN_FAIL().
0fd37925 47 */
83c4e7a0
PA
48static int kasan_test_init(struct kunit *test)
49{
d82dc3a4
AK
50 if (!kasan_enabled()) {
51 kunit_err(test, "can't run KASAN tests with KASAN disabled");
52 return -1;
53 }
54
83c4e7a0 55 multishot = kasan_save_enable_multi_shot();
99734b53 56 fail_data.report_found = false;
99734b53
AK
57 kunit_add_named_resource(test, NULL, NULL, &resource,
58 "kasan_data", &fail_data);
83c4e7a0
PA
59 return 0;
60}
61
62static void kasan_test_exit(struct kunit *test)
63{
64 kasan_restore_multi_shot(multishot);
99734b53 65 KUNIT_EXPECT_FALSE(test, fail_data.report_found);
83c4e7a0
PA
66}
67
68/**
0fd37925
AK
69 * KUNIT_EXPECT_KASAN_FAIL() - check that the executed expression produces a
70 * KASAN report; causes a test failure otherwise. This relies on a KUnit
71 * resource named "kasan_data". Do not use this name for KUnit resources
72 * outside of KASAN tests.
f05842cf 73 *
e80a76aa
AK
74 * For hardware tag-based KASAN in sync mode, when a tag fault happens, tag
75 * checking is auto-disabled. When this happens, this test handler reenables
76 * tag checking. As tag checking can be only disabled or enabled per CPU,
77 * this handler disables migration (preemption).
2e4bde6a
AK
78 *
79 * Since the compiler doesn't see that the expression can change the fail_data
80 * fields, it can reorder or optimize away the accesses to those fields.
81 * Use READ/WRITE_ONCE() for the accesses and compiler barriers around the
82 * expression to prevent that.
99734b53
AK
83 *
84 * In between KUNIT_EXPECT_KASAN_FAIL checks, fail_data.report_found is kept as
85 * false. This allows detecting KASAN reports that happen outside of the checks
86 * by asserting !fail_data.report_found at the start of KUNIT_EXPECT_KASAN_FAIL
87 * and in kasan_test_exit.
83c4e7a0 88 */
99734b53
AK
89#define KUNIT_EXPECT_KASAN_FAIL(test, expression) do { \
90 if (IS_ENABLED(CONFIG_KASAN_HW_TAGS) && \
91 !kasan_async_mode_enabled()) \
92 migrate_disable(); \
93 KUNIT_EXPECT_FALSE(test, READ_ONCE(fail_data.report_found)); \
99734b53
AK
94 barrier(); \
95 expression; \
96 barrier(); \
3ff16d30
DG
97 if (!READ_ONCE(fail_data.report_found)) { \
98 KUNIT_FAIL(test, KUNIT_SUBTEST_INDENT "KASAN failure " \
99 "expected in \"" #expression \
100 "\", but none occurred"); \
101 } \
99734b53
AK
102 if (IS_ENABLED(CONFIG_KASAN_HW_TAGS)) { \
103 if (READ_ONCE(fail_data.report_found)) \
104 kasan_enable_tagging_sync(); \
105 migrate_enable(); \
106 } \
107 WRITE_ONCE(fail_data.report_found, false); \
83c4e7a0
PA
108} while (0)
109
da17e377 110#define KASAN_TEST_NEEDS_CONFIG_ON(test, config) do { \
40eb5cf4
ME
111 if (!IS_ENABLED(config)) \
112 kunit_skip((test), "Test requires " #config "=y"); \
da17e377
AK
113} while (0)
114
115#define KASAN_TEST_NEEDS_CONFIG_OFF(test, config) do { \
40eb5cf4
ME
116 if (IS_ENABLED(config)) \
117 kunit_skip((test), "Test requires " #config "=n"); \
da17e377
AK
118} while (0)
119
73228c7e 120static void kmalloc_oob_right(struct kunit *test)
3f15801c
AR
121{
122 char *ptr;
ab512805 123 size_t size = 128 - KASAN_GRANULE_SIZE - 5;
3f15801c 124
3f15801c 125 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 126 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
f33a0149 127
ab512805
AK
128 /*
129 * An unaligned access past the requested kmalloc size.
130 * Only generic KASAN can precisely detect these.
131 */
132 if (IS_ENABLED(CONFIG_KASAN_GENERIC))
133 KUNIT_EXPECT_KASAN_FAIL(test, ptr[size] = 'x');
134
135 /*
136 * An aligned access into the first out-of-bounds granule that falls
137 * within the aligned kmalloc object.
138 */
139 KUNIT_EXPECT_KASAN_FAIL(test, ptr[size + 5] = 'y');
140
141 /* Out-of-bounds access past the aligned kmalloc object. */
142 KUNIT_EXPECT_KASAN_FAIL(test, ptr[0] =
143 ptr[size + KASAN_GRANULE_SIZE + 5]);
144
3f15801c
AR
145 kfree(ptr);
146}
147
73228c7e 148static void kmalloc_oob_left(struct kunit *test)
3f15801c
AR
149{
150 char *ptr;
151 size_t size = 15;
152
3f15801c 153 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 154 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
3f15801c 155
73228c7e 156 KUNIT_EXPECT_KASAN_FAIL(test, *ptr = *(ptr - 1));
3f15801c
AR
157 kfree(ptr);
158}
159
73228c7e 160static void kmalloc_node_oob_right(struct kunit *test)
3f15801c
AR
161{
162 char *ptr;
163 size_t size = 4096;
164
3f15801c 165 ptr = kmalloc_node(size, GFP_KERNEL, 0);
73228c7e 166 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
3f15801c 167
8fbad19b 168 KUNIT_EXPECT_KASAN_FAIL(test, ptr[0] = ptr[size]);
3f15801c
AR
169 kfree(ptr);
170}
171
858bdeb0
AK
172/*
173 * These kmalloc_pagealloc_* tests try allocating a memory chunk that doesn't
174 * fit into a slab cache and therefore is allocated via the page allocator
175 * fallback. Since this kind of fallback is only implemented for SLUB, these
176 * tests are limited to that allocator.
177 */
73228c7e 178static void kmalloc_pagealloc_oob_right(struct kunit *test)
3f15801c
AR
179{
180 char *ptr;
181 size_t size = KMALLOC_MAX_CACHE_SIZE + 10;
182
da17e377 183 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_SLUB);
73228c7e 184
e6e8379c 185 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 186 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
f33a0149 187
73228c7e 188 KUNIT_EXPECT_KASAN_FAIL(test, ptr[size + OOB_TAG_OFF] = 0);
858bdeb0 189
e6e8379c
AP
190 kfree(ptr);
191}
47adccce 192
73228c7e 193static void kmalloc_pagealloc_uaf(struct kunit *test)
47adccce
DV
194{
195 char *ptr;
196 size_t size = KMALLOC_MAX_CACHE_SIZE + 10;
197
da17e377 198 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_SLUB);
47adccce 199
73228c7e
PA
200 ptr = kmalloc(size, GFP_KERNEL);
201 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
47adccce 202 kfree(ptr);
858bdeb0 203
8fbad19b 204 KUNIT_EXPECT_KASAN_FAIL(test, ((volatile char *)ptr)[0]);
47adccce
DV
205}
206
73228c7e 207static void kmalloc_pagealloc_invalid_free(struct kunit *test)
47adccce
DV
208{
209 char *ptr;
210 size_t size = KMALLOC_MAX_CACHE_SIZE + 10;
211
da17e377 212 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_SLUB);
47adccce 213
73228c7e
PA
214 ptr = kmalloc(size, GFP_KERNEL);
215 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
216
217 KUNIT_EXPECT_KASAN_FAIL(test, kfree(ptr + 1));
47adccce 218}
e6e8379c 219
858bdeb0
AK
220static void pagealloc_oob_right(struct kunit *test)
221{
222 char *ptr;
223 struct page *pages;
224 size_t order = 4;
225 size_t size = (1UL << (PAGE_SHIFT + order));
226
227 /*
228 * With generic KASAN page allocations have no redzones, thus
229 * out-of-bounds detection is not guaranteed.
230 * See https://bugzilla.kernel.org/show_bug.cgi?id=210503.
231 */
232 KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_KASAN_GENERIC);
233
234 pages = alloc_pages(GFP_KERNEL, order);
235 ptr = page_address(pages);
236 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
237
8fbad19b 238 KUNIT_EXPECT_KASAN_FAIL(test, ptr[0] = ptr[size]);
858bdeb0
AK
239 free_pages((unsigned long)ptr, order);
240}
241
242static void pagealloc_uaf(struct kunit *test)
243{
244 char *ptr;
245 struct page *pages;
246 size_t order = 4;
247
248 pages = alloc_pages(GFP_KERNEL, order);
249 ptr = page_address(pages);
250 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
251 free_pages((unsigned long)ptr, order);
252
8fbad19b 253 KUNIT_EXPECT_KASAN_FAIL(test, ((volatile char *)ptr)[0]);
858bdeb0
AK
254}
255
73228c7e 256static void kmalloc_large_oob_right(struct kunit *test)
e6e8379c
AP
257{
258 char *ptr;
259 size_t size = KMALLOC_MAX_CACHE_SIZE - 256;
0fd37925
AK
260
261 /*
262 * Allocate a chunk that is large enough, but still fits into a slab
e6e8379c
AP
263 * and does not trigger the page allocator fallback in SLUB.
264 */
3f15801c 265 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 266 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
3f15801c 267
73228c7e 268 KUNIT_EXPECT_KASAN_FAIL(test, ptr[size] = 0);
3f15801c
AR
269 kfree(ptr);
270}
271
b87c28b9
AK
272static void krealloc_more_oob_helper(struct kunit *test,
273 size_t size1, size_t size2)
3f15801c
AR
274{
275 char *ptr1, *ptr2;
b87c28b9
AK
276 size_t middle;
277
278 KUNIT_ASSERT_LT(test, size1, size2);
279 middle = size1 + (size2 - size1) / 2;
3f15801c 280
3f15801c 281 ptr1 = kmalloc(size1, GFP_KERNEL);
73228c7e 282 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr1);
3f15801c 283
73228c7e
PA
284 ptr2 = krealloc(ptr1, size2, GFP_KERNEL);
285 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr2);
f33a0149 286
b87c28b9
AK
287 /* All offsets up to size2 must be accessible. */
288 ptr2[size1 - 1] = 'x';
289 ptr2[size1] = 'x';
290 ptr2[middle] = 'x';
291 ptr2[size2 - 1] = 'x';
292
293 /* Generic mode is precise, so unaligned size2 must be inaccessible. */
294 if (IS_ENABLED(CONFIG_KASAN_GENERIC))
295 KUNIT_EXPECT_KASAN_FAIL(test, ptr2[size2] = 'x');
296
297 /* For all modes first aligned offset after size2 must be inaccessible. */
298 KUNIT_EXPECT_KASAN_FAIL(test,
299 ptr2[round_up(size2, KASAN_GRANULE_SIZE)] = 'x');
300
3f15801c
AR
301 kfree(ptr2);
302}
303
b87c28b9
AK
304static void krealloc_less_oob_helper(struct kunit *test,
305 size_t size1, size_t size2)
3f15801c
AR
306{
307 char *ptr1, *ptr2;
b87c28b9
AK
308 size_t middle;
309
310 KUNIT_ASSERT_LT(test, size2, size1);
311 middle = size2 + (size1 - size2) / 2;
3f15801c 312
3f15801c 313 ptr1 = kmalloc(size1, GFP_KERNEL);
73228c7e 314 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr1);
f33a0149 315
73228c7e
PA
316 ptr2 = krealloc(ptr1, size2, GFP_KERNEL);
317 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr2);
f33a0149 318
b87c28b9
AK
319 /* Must be accessible for all modes. */
320 ptr2[size2 - 1] = 'x';
321
322 /* Generic mode is precise, so unaligned size2 must be inaccessible. */
323 if (IS_ENABLED(CONFIG_KASAN_GENERIC))
324 KUNIT_EXPECT_KASAN_FAIL(test, ptr2[size2] = 'x');
325
326 /* For all modes first aligned offset after size2 must be inaccessible. */
327 KUNIT_EXPECT_KASAN_FAIL(test,
328 ptr2[round_up(size2, KASAN_GRANULE_SIZE)] = 'x');
329
330 /*
331 * For all modes all size2, middle, and size1 should land in separate
332 * granules and thus the latter two offsets should be inaccessible.
333 */
334 KUNIT_EXPECT_LE(test, round_up(size2, KASAN_GRANULE_SIZE),
335 round_down(middle, KASAN_GRANULE_SIZE));
336 KUNIT_EXPECT_LE(test, round_up(middle, KASAN_GRANULE_SIZE),
337 round_down(size1, KASAN_GRANULE_SIZE));
338 KUNIT_EXPECT_KASAN_FAIL(test, ptr2[middle] = 'x');
339 KUNIT_EXPECT_KASAN_FAIL(test, ptr2[size1 - 1] = 'x');
340 KUNIT_EXPECT_KASAN_FAIL(test, ptr2[size1] = 'x');
341
3f15801c
AR
342 kfree(ptr2);
343}
344
b87c28b9
AK
345static void krealloc_more_oob(struct kunit *test)
346{
347 krealloc_more_oob_helper(test, 201, 235);
348}
349
350static void krealloc_less_oob(struct kunit *test)
351{
352 krealloc_less_oob_helper(test, 235, 201);
353}
354
355static void krealloc_pagealloc_more_oob(struct kunit *test)
356{
357 /* page_alloc fallback in only implemented for SLUB. */
358 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_SLUB);
359
360 krealloc_more_oob_helper(test, KMALLOC_MAX_CACHE_SIZE + 201,
361 KMALLOC_MAX_CACHE_SIZE + 235);
362}
363
364static void krealloc_pagealloc_less_oob(struct kunit *test)
365{
366 /* page_alloc fallback in only implemented for SLUB. */
367 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_SLUB);
368
369 krealloc_less_oob_helper(test, KMALLOC_MAX_CACHE_SIZE + 235,
370 KMALLOC_MAX_CACHE_SIZE + 201);
371}
372
26a5ca7a
AK
373/*
374 * Check that krealloc() detects a use-after-free, returns NULL,
375 * and doesn't unpoison the freed object.
376 */
377static void krealloc_uaf(struct kunit *test)
378{
379 char *ptr1, *ptr2;
380 int size1 = 201;
381 int size2 = 235;
382
383 ptr1 = kmalloc(size1, GFP_KERNEL);
384 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr1);
385 kfree(ptr1);
386
387 KUNIT_EXPECT_KASAN_FAIL(test, ptr2 = krealloc(ptr1, size2, GFP_KERNEL));
388 KUNIT_ASSERT_PTR_EQ(test, (void *)ptr2, NULL);
389 KUNIT_EXPECT_KASAN_FAIL(test, *(volatile char *)ptr1);
390}
391
73228c7e 392static void kmalloc_oob_16(struct kunit *test)
3f15801c
AR
393{
394 struct {
395 u64 words[2];
396 } *ptr1, *ptr2;
397
58b999d7 398 /* This test is specifically crafted for the generic mode. */
da17e377 399 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_GENERIC);
58b999d7 400
3f15801c 401 ptr1 = kmalloc(sizeof(*ptr1) - 3, GFP_KERNEL);
73228c7e
PA
402 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr1);
403
3f15801c 404 ptr2 = kmalloc(sizeof(*ptr2), GFP_KERNEL);
73228c7e
PA
405 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr2);
406
407 KUNIT_EXPECT_KASAN_FAIL(test, *ptr1 = *ptr2);
3f15801c
AR
408 kfree(ptr1);
409 kfree(ptr2);
410}
411
58b999d7
AK
412static void kmalloc_uaf_16(struct kunit *test)
413{
414 struct {
415 u64 words[2];
416 } *ptr1, *ptr2;
417
418 ptr1 = kmalloc(sizeof(*ptr1), GFP_KERNEL);
419 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr1);
420
421 ptr2 = kmalloc(sizeof(*ptr2), GFP_KERNEL);
422 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr2);
423 kfree(ptr2);
424
425 KUNIT_EXPECT_KASAN_FAIL(test, *ptr1 = *ptr2);
426 kfree(ptr1);
427}
428
555999a0
AK
429/*
430 * Note: in the memset tests below, the written range touches both valid and
431 * invalid memory. This makes sure that the instrumentation does not only check
432 * the starting address but the whole range.
433 */
434
73228c7e 435static void kmalloc_oob_memset_2(struct kunit *test)
f523e737
WL
436{
437 char *ptr;
555999a0 438 size_t size = 128 - KASAN_GRANULE_SIZE;
f523e737 439
f523e737 440 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 441 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
f33a0149 442
555999a0 443 KUNIT_EXPECT_KASAN_FAIL(test, memset(ptr + size - 1, 0, 2));
f523e737
WL
444 kfree(ptr);
445}
446
73228c7e 447static void kmalloc_oob_memset_4(struct kunit *test)
f523e737
WL
448{
449 char *ptr;
555999a0 450 size_t size = 128 - KASAN_GRANULE_SIZE;
f523e737 451
f523e737 452 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 453 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
f33a0149 454
555999a0 455 KUNIT_EXPECT_KASAN_FAIL(test, memset(ptr + size - 3, 0, 4));
f523e737
WL
456 kfree(ptr);
457}
458
73228c7e 459static void kmalloc_oob_memset_8(struct kunit *test)
f523e737
WL
460{
461 char *ptr;
555999a0 462 size_t size = 128 - KASAN_GRANULE_SIZE;
f523e737 463
f523e737 464 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 465 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
f33a0149 466
555999a0 467 KUNIT_EXPECT_KASAN_FAIL(test, memset(ptr + size - 7, 0, 8));
f523e737
WL
468 kfree(ptr);
469}
470
73228c7e 471static void kmalloc_oob_memset_16(struct kunit *test)
f523e737
WL
472{
473 char *ptr;
555999a0 474 size_t size = 128 - KASAN_GRANULE_SIZE;
f523e737 475
f523e737 476 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 477 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
f33a0149 478
555999a0 479 KUNIT_EXPECT_KASAN_FAIL(test, memset(ptr + size - 15, 0, 16));
f523e737
WL
480 kfree(ptr);
481}
482
73228c7e 483static void kmalloc_oob_in_memset(struct kunit *test)
3f15801c
AR
484{
485 char *ptr;
555999a0 486 size_t size = 128 - KASAN_GRANULE_SIZE;
3f15801c 487
3f15801c 488 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 489 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
f33a0149 490
555999a0
AK
491 KUNIT_EXPECT_KASAN_FAIL(test,
492 memset(ptr, 0, size + KASAN_GRANULE_SIZE));
3f15801c
AR
493 kfree(ptr);
494}
495
73228c7e 496static void kmalloc_memmove_invalid_size(struct kunit *test)
98f3b56f
WW
497{
498 char *ptr;
499 size_t size = 64;
500 volatile size_t invalid_size = -2;
501
1b0668be
AK
502 /*
503 * Hardware tag-based mode doesn't check memmove for negative size.
504 * As a result, this test introduces a side-effect memory corruption,
505 * which can result in a crash.
506 */
507 KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_KASAN_HW_TAGS);
508
98f3b56f 509 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 510 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
98f3b56f
WW
511
512 memset((char *)ptr, 0, 64);
73228c7e
PA
513 KUNIT_EXPECT_KASAN_FAIL(test,
514 memmove((char *)ptr, (char *)ptr + 4, invalid_size));
98f3b56f
WW
515 kfree(ptr);
516}
517
73228c7e 518static void kmalloc_uaf(struct kunit *test)
3f15801c
AR
519{
520 char *ptr;
521 size_t size = 10;
522
3f15801c 523 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 524 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
3f15801c
AR
525
526 kfree(ptr);
8fbad19b 527 KUNIT_EXPECT_KASAN_FAIL(test, ((volatile char *)ptr)[8]);
3f15801c
AR
528}
529
73228c7e 530static void kmalloc_uaf_memset(struct kunit *test)
3f15801c
AR
531{
532 char *ptr;
533 size_t size = 33;
534
25b12a58
AK
535 /*
536 * Only generic KASAN uses quarantine, which is required to avoid a
537 * kernel memory corruption this test causes.
538 */
539 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_GENERIC);
540
3f15801c 541 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 542 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
3f15801c
AR
543
544 kfree(ptr);
73228c7e 545 KUNIT_EXPECT_KASAN_FAIL(test, memset(ptr, 0, size));
3f15801c
AR
546}
547
73228c7e 548static void kmalloc_uaf2(struct kunit *test)
3f15801c
AR
549{
550 char *ptr1, *ptr2;
551 size_t size = 43;
1b1df4c4 552 int counter = 0;
3f15801c 553
1b1df4c4 554again:
3f15801c 555 ptr1 = kmalloc(size, GFP_KERNEL);
73228c7e 556 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr1);
3f15801c
AR
557
558 kfree(ptr1);
73228c7e 559
3f15801c 560 ptr2 = kmalloc(size, GFP_KERNEL);
73228c7e
PA
561 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr2);
562
1b1df4c4
AK
563 /*
564 * For tag-based KASAN ptr1 and ptr2 tags might happen to be the same.
565 * Allow up to 16 attempts at generating different tags.
566 */
567 if (!IS_ENABLED(CONFIG_KASAN_GENERIC) && ptr1 == ptr2 && counter++ < 16) {
568 kfree(ptr2);
569 goto again;
570 }
571
8fbad19b 572 KUNIT_EXPECT_KASAN_FAIL(test, ((volatile char *)ptr1)[40]);
73228c7e 573 KUNIT_EXPECT_PTR_NE(test, ptr1, ptr2);
3f15801c 574
3f15801c
AR
575 kfree(ptr2);
576}
577
73228c7e 578static void kfree_via_page(struct kunit *test)
b92a953c
MR
579{
580 char *ptr;
581 size_t size = 8;
582 struct page *page;
583 unsigned long offset;
584
b92a953c 585 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 586 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
b92a953c
MR
587
588 page = virt_to_page(ptr);
589 offset = offset_in_page(ptr);
590 kfree(page_address(page) + offset);
591}
592
73228c7e 593static void kfree_via_phys(struct kunit *test)
b92a953c
MR
594{
595 char *ptr;
596 size_t size = 8;
597 phys_addr_t phys;
598
b92a953c 599 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 600 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
b92a953c
MR
601
602 phys = virt_to_phys(ptr);
603 kfree(phys_to_virt(phys));
604}
605
73228c7e 606static void kmem_cache_oob(struct kunit *test)
3f15801c
AR
607{
608 char *p;
609 size_t size = 200;
11516135
AK
610 struct kmem_cache *cache;
611
612 cache = kmem_cache_create("test_cache", size, 0, 0, NULL);
73228c7e 613 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, cache);
11516135 614
3f15801c
AR
615 p = kmem_cache_alloc(cache, GFP_KERNEL);
616 if (!p) {
73228c7e 617 kunit_err(test, "Allocation failed: %s\n", __func__);
3f15801c
AR
618 kmem_cache_destroy(cache);
619 return;
620 }
621
73228c7e 622 KUNIT_EXPECT_KASAN_FAIL(test, *p = p[size + OOB_TAG_OFF]);
11516135 623
3f15801c
AR
624 kmem_cache_free(cache, p);
625 kmem_cache_destroy(cache);
626}
627
11516135 628static void kmem_cache_accounted(struct kunit *test)
0386bf38
GT
629{
630 int i;
631 char *p;
632 size_t size = 200;
633 struct kmem_cache *cache;
634
635 cache = kmem_cache_create("test_cache", size, 0, SLAB_ACCOUNT, NULL);
73228c7e 636 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, cache);
0386bf38 637
0386bf38
GT
638 /*
639 * Several allocations with a delay to allow for lazy per memcg kmem
640 * cache creation.
641 */
642 for (i = 0; i < 5; i++) {
643 p = kmem_cache_alloc(cache, GFP_KERNEL);
dc2bf000 644 if (!p)
0386bf38 645 goto free_cache;
dc2bf000 646
0386bf38
GT
647 kmem_cache_free(cache, p);
648 msleep(100);
649 }
650
651free_cache:
652 kmem_cache_destroy(cache);
653}
654
11516135
AK
655static void kmem_cache_bulk(struct kunit *test)
656{
657 struct kmem_cache *cache;
658 size_t size = 200;
659 char *p[10];
660 bool ret;
661 int i;
662
663 cache = kmem_cache_create("test_cache", size, 0, 0, NULL);
664 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, cache);
665
666 ret = kmem_cache_alloc_bulk(cache, GFP_KERNEL, ARRAY_SIZE(p), (void **)&p);
667 if (!ret) {
668 kunit_err(test, "Allocation failed: %s\n", __func__);
669 kmem_cache_destroy(cache);
670 return;
671 }
672
673 for (i = 0; i < ARRAY_SIZE(p); i++)
674 p[i][0] = p[i][size - 1] = 42;
675
676 kmem_cache_free_bulk(cache, ARRAY_SIZE(p), (void **)&p);
677 kmem_cache_destroy(cache);
678}
679
3f15801c
AR
680static char global_array[10];
681
73228c7e 682static void kasan_global_oob(struct kunit *test)
3f15801c 683{
f649dc0e
PC
684 /*
685 * Deliberate out-of-bounds access. To prevent CONFIG_UBSAN_LOCAL_BOUNDS
53b0fe36 686 * from failing here and panicking the kernel, access the array via a
f649dc0e
PC
687 * volatile pointer, which will prevent the compiler from being able to
688 * determine the array bounds.
689 *
690 * This access uses a volatile pointer to char (char *volatile) rather
691 * than the more conventional pointer to volatile char (volatile char *)
692 * because we want to prevent the compiler from making inferences about
693 * the pointer itself (i.e. its array bounds), not the data that it
694 * refers to.
695 */
696 char *volatile array = global_array;
697 char *p = &array[ARRAY_SIZE(global_array) + 3];
3f15801c 698
58b999d7 699 /* Only generic mode instruments globals. */
da17e377 700 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_GENERIC);
58b999d7 701
73228c7e 702 KUNIT_EXPECT_KASAN_FAIL(test, *(volatile char *)p);
3f15801c
AR
703}
704
611806b4 705/* Check that ksize() makes the whole object accessible. */
73228c7e 706static void ksize_unpoisons_memory(struct kunit *test)
96fe805f
AP
707{
708 char *ptr;
48c23239 709 size_t size = 123, real_size;
96fe805f 710
96fe805f 711 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 712 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
96fe805f 713 real_size = ksize(ptr);
0fd37925
AK
714
715 /* This access shouldn't trigger a KASAN report. */
96fe805f 716 ptr[size] = 'x';
0fd37925
AK
717
718 /* This one must. */
8fbad19b 719 KUNIT_EXPECT_KASAN_FAIL(test, ((volatile char *)ptr)[real_size]);
0fd37925 720
96fe805f
AP
721 kfree(ptr);
722}
723
611806b4
AK
724/*
725 * Check that a use-after-free is detected by ksize() and via normal accesses
726 * after it.
727 */
728static void ksize_uaf(struct kunit *test)
729{
730 char *ptr;
731 int size = 128 - KASAN_GRANULE_SIZE;
732
733 ptr = kmalloc(size, GFP_KERNEL);
734 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
735 kfree(ptr);
736
737 KUNIT_EXPECT_KASAN_FAIL(test, ksize(ptr));
b38fcca3
AK
738 KUNIT_EXPECT_KASAN_FAIL(test, ((volatile char *)ptr)[0]);
739 KUNIT_EXPECT_KASAN_FAIL(test, ((volatile char *)ptr)[size]);
611806b4
AK
740}
741
73228c7e 742static void kasan_stack_oob(struct kunit *test)
eae08dca 743{
73228c7e 744 char stack_array[10];
f649dc0e
PC
745 /* See comment in kasan_global_oob. */
746 char *volatile array = stack_array;
747 char *p = &array[ARRAY_SIZE(stack_array) + OOB_TAG_OFF];
eae08dca 748
da17e377 749 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_STACK);
eae08dca 750
73228c7e 751 KUNIT_EXPECT_KASAN_FAIL(test, *(volatile char *)p);
eae08dca
AR
752}
753
73228c7e 754static void kasan_alloca_oob_left(struct kunit *test)
00a14294
PL
755{
756 volatile int i = 10;
757 char alloca_array[i];
f649dc0e
PC
758 /* See comment in kasan_global_oob. */
759 char *volatile array = alloca_array;
760 char *p = array - 1;
00a14294 761
58b999d7 762 /* Only generic mode instruments dynamic allocas. */
da17e377
AK
763 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_GENERIC);
764 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_STACK);
73228c7e
PA
765
766 KUNIT_EXPECT_KASAN_FAIL(test, *(volatile char *)p);
00a14294
PL
767}
768
73228c7e 769static void kasan_alloca_oob_right(struct kunit *test)
00a14294
PL
770{
771 volatile int i = 10;
772 char alloca_array[i];
f649dc0e
PC
773 /* See comment in kasan_global_oob. */
774 char *volatile array = alloca_array;
775 char *p = array + i;
00a14294 776
58b999d7 777 /* Only generic mode instruments dynamic allocas. */
da17e377
AK
778 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_GENERIC);
779 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_STACK);
73228c7e
PA
780
781 KUNIT_EXPECT_KASAN_FAIL(test, *(volatile char *)p);
00a14294
PL
782}
783
73228c7e 784static void kmem_cache_double_free(struct kunit *test)
b1d57289
DV
785{
786 char *p;
787 size_t size = 200;
788 struct kmem_cache *cache;
789
790 cache = kmem_cache_create("test_cache", size, 0, 0, NULL);
73228c7e
PA
791 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, cache);
792
b1d57289
DV
793 p = kmem_cache_alloc(cache, GFP_KERNEL);
794 if (!p) {
73228c7e 795 kunit_err(test, "Allocation failed: %s\n", __func__);
b1d57289
DV
796 kmem_cache_destroy(cache);
797 return;
798 }
799
800 kmem_cache_free(cache, p);
73228c7e 801 KUNIT_EXPECT_KASAN_FAIL(test, kmem_cache_free(cache, p));
b1d57289
DV
802 kmem_cache_destroy(cache);
803}
804
73228c7e 805static void kmem_cache_invalid_free(struct kunit *test)
b1d57289
DV
806{
807 char *p;
808 size_t size = 200;
809 struct kmem_cache *cache;
810
811 cache = kmem_cache_create("test_cache", size, 0, SLAB_TYPESAFE_BY_RCU,
812 NULL);
73228c7e
PA
813 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, cache);
814
b1d57289
DV
815 p = kmem_cache_alloc(cache, GFP_KERNEL);
816 if (!p) {
73228c7e 817 kunit_err(test, "Allocation failed: %s\n", __func__);
b1d57289
DV
818 kmem_cache_destroy(cache);
819 return;
820 }
821
0fd37925 822 /* Trigger invalid free, the object doesn't get freed. */
73228c7e 823 KUNIT_EXPECT_KASAN_FAIL(test, kmem_cache_free(cache, p + 1));
91c93ed0
AK
824
825 /*
826 * Properly free the object to prevent the "Objects remaining in
827 * test_cache on __kmem_cache_shutdown" BUG failure.
828 */
829 kmem_cache_free(cache, p);
830
b1d57289
DV
831 kmem_cache_destroy(cache);
832}
833
73228c7e 834static void kasan_memchr(struct kunit *test)
0c96350a
AR
835{
836 char *ptr;
837 size_t size = 24;
838
0fd37925
AK
839 /*
840 * str* functions are not instrumented with CONFIG_AMD_MEM_ENCRYPT.
841 * See https://bugzilla.kernel.org/show_bug.cgi?id=206337 for details.
842 */
da17e377 843 KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_AMD_MEM_ENCRYPT);
73228c7e 844
58b999d7
AK
845 if (OOB_TAG_OFF)
846 size = round_up(size, OOB_TAG_OFF);
847
73228c7e
PA
848 ptr = kmalloc(size, GFP_KERNEL | __GFP_ZERO);
849 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
850
851 KUNIT_EXPECT_KASAN_FAIL(test,
852 kasan_ptr_result = memchr(ptr, '1', size + 1));
0c96350a 853
0c96350a
AR
854 kfree(ptr);
855}
856
73228c7e 857static void kasan_memcmp(struct kunit *test)
0c96350a
AR
858{
859 char *ptr;
860 size_t size = 24;
861 int arr[9];
862
0fd37925
AK
863 /*
864 * str* functions are not instrumented with CONFIG_AMD_MEM_ENCRYPT.
865 * See https://bugzilla.kernel.org/show_bug.cgi?id=206337 for details.
866 */
da17e377 867 KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_AMD_MEM_ENCRYPT);
0c96350a 868
58b999d7
AK
869 if (OOB_TAG_OFF)
870 size = round_up(size, OOB_TAG_OFF);
871
73228c7e
PA
872 ptr = kmalloc(size, GFP_KERNEL | __GFP_ZERO);
873 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
0c96350a 874 memset(arr, 0, sizeof(arr));
73228c7e
PA
875
876 KUNIT_EXPECT_KASAN_FAIL(test,
877 kasan_int_result = memcmp(ptr, arr, size+1));
0c96350a
AR
878 kfree(ptr);
879}
880
73228c7e 881static void kasan_strings(struct kunit *test)
0c96350a
AR
882{
883 char *ptr;
884 size_t size = 24;
885
0fd37925
AK
886 /*
887 * str* functions are not instrumented with CONFIG_AMD_MEM_ENCRYPT.
888 * See https://bugzilla.kernel.org/show_bug.cgi?id=206337 for details.
889 */
da17e377 890 KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_AMD_MEM_ENCRYPT);
73228c7e
PA
891
892 ptr = kmalloc(size, GFP_KERNEL | __GFP_ZERO);
893 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
0c96350a
AR
894
895 kfree(ptr);
896
897 /*
898 * Try to cause only 1 invalid access (less spam in dmesg).
899 * For that we need ptr to point to zeroed byte.
900 * Skip metadata that could be stored in freed object so ptr
901 * will likely point to zeroed byte.
902 */
903 ptr += 16;
73228c7e 904 KUNIT_EXPECT_KASAN_FAIL(test, kasan_ptr_result = strchr(ptr, '1'));
0c96350a 905
73228c7e 906 KUNIT_EXPECT_KASAN_FAIL(test, kasan_ptr_result = strrchr(ptr, '1'));
0c96350a 907
73228c7e 908 KUNIT_EXPECT_KASAN_FAIL(test, kasan_int_result = strcmp(ptr, "2"));
0c96350a 909
73228c7e 910 KUNIT_EXPECT_KASAN_FAIL(test, kasan_int_result = strncmp(ptr, "2", 1));
0c96350a 911
73228c7e 912 KUNIT_EXPECT_KASAN_FAIL(test, kasan_int_result = strlen(ptr));
0c96350a 913
73228c7e 914 KUNIT_EXPECT_KASAN_FAIL(test, kasan_int_result = strnlen(ptr, 1));
0c96350a
AR
915}
916
58b999d7
AK
917static void kasan_bitops_modify(struct kunit *test, int nr, void *addr)
918{
919 KUNIT_EXPECT_KASAN_FAIL(test, set_bit(nr, addr));
920 KUNIT_EXPECT_KASAN_FAIL(test, __set_bit(nr, addr));
921 KUNIT_EXPECT_KASAN_FAIL(test, clear_bit(nr, addr));
922 KUNIT_EXPECT_KASAN_FAIL(test, __clear_bit(nr, addr));
923 KUNIT_EXPECT_KASAN_FAIL(test, clear_bit_unlock(nr, addr));
924 KUNIT_EXPECT_KASAN_FAIL(test, __clear_bit_unlock(nr, addr));
925 KUNIT_EXPECT_KASAN_FAIL(test, change_bit(nr, addr));
926 KUNIT_EXPECT_KASAN_FAIL(test, __change_bit(nr, addr));
927}
928
929static void kasan_bitops_test_and_modify(struct kunit *test, int nr, void *addr)
930{
931 KUNIT_EXPECT_KASAN_FAIL(test, test_and_set_bit(nr, addr));
932 KUNIT_EXPECT_KASAN_FAIL(test, __test_and_set_bit(nr, addr));
933 KUNIT_EXPECT_KASAN_FAIL(test, test_and_set_bit_lock(nr, addr));
934 KUNIT_EXPECT_KASAN_FAIL(test, test_and_clear_bit(nr, addr));
935 KUNIT_EXPECT_KASAN_FAIL(test, __test_and_clear_bit(nr, addr));
936 KUNIT_EXPECT_KASAN_FAIL(test, test_and_change_bit(nr, addr));
937 KUNIT_EXPECT_KASAN_FAIL(test, __test_and_change_bit(nr, addr));
938 KUNIT_EXPECT_KASAN_FAIL(test, kasan_int_result = test_bit(nr, addr));
939
940#if defined(clear_bit_unlock_is_negative_byte)
941 KUNIT_EXPECT_KASAN_FAIL(test, kasan_int_result =
942 clear_bit_unlock_is_negative_byte(nr, addr));
943#endif
944}
945
946static void kasan_bitops_generic(struct kunit *test)
19a33ca6 947{
58b999d7
AK
948 long *bits;
949
950 /* This test is specifically crafted for the generic mode. */
da17e377 951 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_GENERIC);
58b999d7 952
19a33ca6 953 /*
0fd37925 954 * Allocate 1 more byte, which causes kzalloc to round up to 16 bytes;
19a33ca6
ME
955 * this way we do not actually corrupt other memory.
956 */
58b999d7 957 bits = kzalloc(sizeof(*bits) + 1, GFP_KERNEL);
73228c7e 958 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, bits);
19a33ca6
ME
959
960 /*
961 * Below calls try to access bit within allocated memory; however, the
962 * below accesses are still out-of-bounds, since bitops are defined to
963 * operate on the whole long the bit is in.
964 */
58b999d7 965 kasan_bitops_modify(test, BITS_PER_LONG, bits);
19a33ca6
ME
966
967 /*
968 * Below calls try to access bit beyond allocated memory.
969 */
58b999d7 970 kasan_bitops_test_and_modify(test, BITS_PER_LONG + BITS_PER_BYTE, bits);
19a33ca6 971
58b999d7
AK
972 kfree(bits);
973}
19a33ca6 974
58b999d7
AK
975static void kasan_bitops_tags(struct kunit *test)
976{
977 long *bits;
19a33ca6 978
da17e377
AK
979 /* This test is specifically crafted for tag-based modes. */
980 KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_KASAN_GENERIC);
19a33ca6 981
e66e1799
AK
982 /* kmalloc-64 cache will be used and the last 16 bytes will be the redzone. */
983 bits = kzalloc(48, GFP_KERNEL);
58b999d7 984 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, bits);
19a33ca6 985
e66e1799
AK
986 /* Do the accesses past the 48 allocated bytes, but within the redone. */
987 kasan_bitops_modify(test, BITS_PER_LONG, (void *)bits + 48);
988 kasan_bitops_test_and_modify(test, BITS_PER_LONG + BITS_PER_BYTE, (void *)bits + 48);
19a33ca6 989
19a33ca6
ME
990 kfree(bits);
991}
992
73228c7e 993static void kmalloc_double_kzfree(struct kunit *test)
bb104ed7
ME
994{
995 char *ptr;
996 size_t size = 16;
997
bb104ed7 998 ptr = kmalloc(size, GFP_KERNEL);
73228c7e 999 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
bb104ed7 1000
453431a5 1001 kfree_sensitive(ptr);
73228c7e 1002 KUNIT_EXPECT_KASAN_FAIL(test, kfree_sensitive(ptr));
bb104ed7
ME
1003}
1004
73228c7e 1005static void vmalloc_oob(struct kunit *test)
06513916
DA
1006{
1007 void *area;
1008
da17e377 1009 KASAN_TEST_NEEDS_CONFIG_ON(test, CONFIG_KASAN_VMALLOC);
06513916
DA
1010
1011 /*
1012 * We have to be careful not to hit the guard page.
1013 * The MMU will catch that and crash us.
1014 */
1015 area = vmalloc(3000);
73228c7e 1016 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, area);
06513916 1017
73228c7e 1018 KUNIT_EXPECT_KASAN_FAIL(test, ((volatile char *)area)[3100]);
06513916
DA
1019 vfree(area);
1020}
387d6e46 1021
573a4809
AK
1022/*
1023 * Check that the assigned pointer tag falls within the [KASAN_TAG_MIN,
1024 * KASAN_TAG_KERNEL) range (note: excluding the match-all tag) for tag-based
1025 * modes.
1026 */
1027static void match_all_not_assigned(struct kunit *test)
1028{
1029 char *ptr;
1030 struct page *pages;
1031 int i, size, order;
1032
1033 KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_KASAN_GENERIC);
1034
1035 for (i = 0; i < 256; i++) {
1036 size = (get_random_int() % 1024) + 1;
1037 ptr = kmalloc(size, GFP_KERNEL);
1038 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
1039 KUNIT_EXPECT_GE(test, (u8)get_tag(ptr), (u8)KASAN_TAG_MIN);
1040 KUNIT_EXPECT_LT(test, (u8)get_tag(ptr), (u8)KASAN_TAG_KERNEL);
1041 kfree(ptr);
1042 }
1043
1044 for (i = 0; i < 256; i++) {
1045 order = (get_random_int() % 4) + 1;
1046 pages = alloc_pages(GFP_KERNEL, order);
1047 ptr = page_address(pages);
1048 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
1049 KUNIT_EXPECT_GE(test, (u8)get_tag(ptr), (u8)KASAN_TAG_MIN);
1050 KUNIT_EXPECT_LT(test, (u8)get_tag(ptr), (u8)KASAN_TAG_KERNEL);
1051 free_pages((unsigned long)ptr, order);
1052 }
1053}
1054
1055/* Check that 0xff works as a match-all pointer tag for tag-based modes. */
1056static void match_all_ptr_tag(struct kunit *test)
1057{
1058 char *ptr;
1059 u8 tag;
1060
1061 KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_KASAN_GENERIC);
1062
1063 ptr = kmalloc(128, GFP_KERNEL);
1064 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
1065
1066 /* Backup the assigned tag. */
1067 tag = get_tag(ptr);
1068 KUNIT_EXPECT_NE(test, tag, (u8)KASAN_TAG_KERNEL);
1069
1070 /* Reset the tag to 0xff.*/
1071 ptr = set_tag(ptr, KASAN_TAG_KERNEL);
1072
1073 /* This access shouldn't trigger a KASAN report. */
1074 *ptr = 0;
1075
1076 /* Recover the pointer tag and free. */
1077 ptr = set_tag(ptr, tag);
1078 kfree(ptr);
1079}
1080
1081/* Check that there are no match-all memory tags for tag-based modes. */
1082static void match_all_mem_tag(struct kunit *test)
1083{
1084 char *ptr;
1085 int tag;
1086
1087 KASAN_TEST_NEEDS_CONFIG_OFF(test, CONFIG_KASAN_GENERIC);
1088
1089 ptr = kmalloc(128, GFP_KERNEL);
1090 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
1091 KUNIT_EXPECT_NE(test, (u8)get_tag(ptr), (u8)KASAN_TAG_KERNEL);
1092
1093 /* For each possible tag value not matching the pointer tag. */
1094 for (tag = KASAN_TAG_MIN; tag <= KASAN_TAG_KERNEL; tag++) {
1095 if (tag == get_tag(ptr))
1096 continue;
1097
1098 /* Mark the first memory granule with the chosen memory tag. */
aa5c219c 1099 kasan_poison(ptr, KASAN_GRANULE_SIZE, (u8)tag, false);
573a4809
AK
1100
1101 /* This access must cause a KASAN report. */
1102 KUNIT_EXPECT_KASAN_FAIL(test, *ptr = 0);
1103 }
1104
1105 /* Recover the memory tag and free. */
aa5c219c 1106 kasan_poison(ptr, KASAN_GRANULE_SIZE, get_tag(ptr), false);
573a4809
AK
1107 kfree(ptr);
1108}
1109
73228c7e
PA
1110static struct kunit_case kasan_kunit_test_cases[] = {
1111 KUNIT_CASE(kmalloc_oob_right),
1112 KUNIT_CASE(kmalloc_oob_left),
1113 KUNIT_CASE(kmalloc_node_oob_right),
1114 KUNIT_CASE(kmalloc_pagealloc_oob_right),
1115 KUNIT_CASE(kmalloc_pagealloc_uaf),
1116 KUNIT_CASE(kmalloc_pagealloc_invalid_free),
858bdeb0
AK
1117 KUNIT_CASE(pagealloc_oob_right),
1118 KUNIT_CASE(pagealloc_uaf),
73228c7e 1119 KUNIT_CASE(kmalloc_large_oob_right),
b87c28b9
AK
1120 KUNIT_CASE(krealloc_more_oob),
1121 KUNIT_CASE(krealloc_less_oob),
1122 KUNIT_CASE(krealloc_pagealloc_more_oob),
1123 KUNIT_CASE(krealloc_pagealloc_less_oob),
26a5ca7a 1124 KUNIT_CASE(krealloc_uaf),
73228c7e 1125 KUNIT_CASE(kmalloc_oob_16),
58b999d7 1126 KUNIT_CASE(kmalloc_uaf_16),
73228c7e
PA
1127 KUNIT_CASE(kmalloc_oob_in_memset),
1128 KUNIT_CASE(kmalloc_oob_memset_2),
1129 KUNIT_CASE(kmalloc_oob_memset_4),
1130 KUNIT_CASE(kmalloc_oob_memset_8),
1131 KUNIT_CASE(kmalloc_oob_memset_16),
1132 KUNIT_CASE(kmalloc_memmove_invalid_size),
1133 KUNIT_CASE(kmalloc_uaf),
1134 KUNIT_CASE(kmalloc_uaf_memset),
1135 KUNIT_CASE(kmalloc_uaf2),
1136 KUNIT_CASE(kfree_via_page),
1137 KUNIT_CASE(kfree_via_phys),
1138 KUNIT_CASE(kmem_cache_oob),
11516135
AK
1139 KUNIT_CASE(kmem_cache_accounted),
1140 KUNIT_CASE(kmem_cache_bulk),
73228c7e
PA
1141 KUNIT_CASE(kasan_global_oob),
1142 KUNIT_CASE(kasan_stack_oob),
1143 KUNIT_CASE(kasan_alloca_oob_left),
1144 KUNIT_CASE(kasan_alloca_oob_right),
1145 KUNIT_CASE(ksize_unpoisons_memory),
611806b4 1146 KUNIT_CASE(ksize_uaf),
73228c7e
PA
1147 KUNIT_CASE(kmem_cache_double_free),
1148 KUNIT_CASE(kmem_cache_invalid_free),
1149 KUNIT_CASE(kasan_memchr),
1150 KUNIT_CASE(kasan_memcmp),
1151 KUNIT_CASE(kasan_strings),
58b999d7
AK
1152 KUNIT_CASE(kasan_bitops_generic),
1153 KUNIT_CASE(kasan_bitops_tags),
73228c7e
PA
1154 KUNIT_CASE(kmalloc_double_kzfree),
1155 KUNIT_CASE(vmalloc_oob),
573a4809
AK
1156 KUNIT_CASE(match_all_not_assigned),
1157 KUNIT_CASE(match_all_ptr_tag),
1158 KUNIT_CASE(match_all_mem_tag),
73228c7e
PA
1159 {}
1160};
1161
1162static struct kunit_suite kasan_kunit_test_suite = {
1163 .name = "kasan",
1164 .init = kasan_test_init,
1165 .test_cases = kasan_kunit_test_cases,
1166 .exit = kasan_test_exit,
1167};
1168
1169kunit_test_suite(kasan_kunit_test_suite);
3f15801c 1170
3f15801c 1171MODULE_LICENSE("GPL");