blob: 28c7c123a185715f34c3858d9baa200683cc9513 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Andrey Ryabinin3f158012015-02-13 14:39:53 -08002/*
3 *
4 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
5 * Author: Andrey Ryabinin <a.ryabinin@samsung.com>
Andrey Ryabinin3f158012015-02-13 14:39:53 -08006 */
7
Marco Elver19a33ca2019-07-11 20:53:52 -07008#include <linux/bitops.h>
Greg Thelen0386bf32017-02-24 15:00:08 -08009#include <linux/delay.h>
Marco Elver19a33ca2019-07-11 20:53:52 -070010#include <linux/kasan.h>
Andrey Ryabinin3f158012015-02-13 14:39:53 -080011#include <linux/kernel.h>
Andrey Ryabinineae08dc2016-05-20 16:59:34 -070012#include <linux/mm.h>
Marco Elver19a33ca2019-07-11 20:53:52 -070013#include <linux/mman.h>
14#include <linux/module.h>
Andrey Ryabinin3f158012015-02-13 14:39:53 -080015#include <linux/printk.h>
16#include <linux/slab.h>
17#include <linux/string.h>
Andrey Ryabinineae08dc2016-05-20 16:59:34 -070018#include <linux/uaccess.h>
Mark Rutlandb92a9532019-09-23 15:34:16 -070019#include <linux/io.h>
Daniel Axtens06513912019-11-30 17:54:53 -080020#include <linux/vmalloc.h>
Mark Rutlandb92a9532019-09-23 15:34:16 -070021
22#include <asm/page.h>
Andrey Ryabinin3f158012015-02-13 14:39:53 -080023
Patricia Alfonso83c4e7a2020-10-13 16:55:02 -070024#include <kunit/test.h>
25
Walter Wuf33a0142020-08-06 23:24:54 -070026#include "../mm/kasan/kasan.h"
27
28#define OOB_TAG_OFF (IS_ENABLED(CONFIG_KASAN_GENERIC) ? 0 : KASAN_SHADOW_SCALE_SIZE)
29
Dmitry Vyukov828347f2016-11-30 15:54:16 -080030/*
Daniel Axtensadb72ae2020-06-03 15:56:43 -070031 * We assign some test results to these globals to make sure the tests
32 * are not eliminated as dead code.
33 */
34
Daniel Axtensadb72ae2020-06-03 15:56:43 -070035void *kasan_ptr_result;
Patricia Alfonso83c4e7a2020-10-13 16:55:02 -070036int kasan_int_result;
37
38static struct kunit_resource resource;
39static struct kunit_kasan_expectation fail_data;
40static bool multishot;
41
42static int kasan_test_init(struct kunit *test)
43{
44 /*
45 * Temporarily enable multi-shot mode and set panic_on_warn=0.
46 * Otherwise, we'd only get a report for the first case.
47 */
48 multishot = kasan_save_enable_multi_shot();
49
50 return 0;
51}
52
53static void kasan_test_exit(struct kunit *test)
54{
55 kasan_restore_multi_shot(multishot);
56}
57
58/**
59 * KUNIT_EXPECT_KASAN_FAIL() - Causes a test failure when the expression does
60 * not cause a KASAN error. This uses a KUnit resource named "kasan_data." Do
61 * Do not use this name for a KUnit resource outside here.
62 *
63 */
64#define KUNIT_EXPECT_KASAN_FAIL(test, condition) do { \
65 fail_data.report_expected = true; \
66 fail_data.report_found = false; \
67 kunit_add_named_resource(test, \
68 NULL, \
69 NULL, \
70 &resource, \
71 "kasan_data", &fail_data); \
72 condition; \
73 KUNIT_EXPECT_EQ(test, \
74 fail_data.report_expected, \
75 fail_data.report_found); \
76} while (0)
77
Patricia Alfonso73228c72020-10-13 16:55:06 -070078static void kmalloc_oob_right(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -080079{
80 char *ptr;
81 size_t size = 123;
82
Andrey Ryabinin3f158012015-02-13 14:39:53 -080083 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -070084 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Andrey Ryabinin3f158012015-02-13 14:39:53 -080085
Patricia Alfonso73228c72020-10-13 16:55:06 -070086 KUNIT_EXPECT_KASAN_FAIL(test, ptr[size + OOB_TAG_OFF] = 'x');
Andrey Ryabinin3f158012015-02-13 14:39:53 -080087 kfree(ptr);
88}
89
Patricia Alfonso73228c72020-10-13 16:55:06 -070090static void kmalloc_oob_left(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -080091{
92 char *ptr;
93 size_t size = 15;
94
Andrey Ryabinin3f158012015-02-13 14:39:53 -080095 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -070096 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Andrey Ryabinin3f158012015-02-13 14:39:53 -080097
Patricia Alfonso73228c72020-10-13 16:55:06 -070098 KUNIT_EXPECT_KASAN_FAIL(test, *ptr = *(ptr - 1));
Andrey Ryabinin3f158012015-02-13 14:39:53 -080099 kfree(ptr);
100}
101
Patricia Alfonso73228c72020-10-13 16:55:06 -0700102static void kmalloc_node_oob_right(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800103{
104 char *ptr;
105 size_t size = 4096;
106
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800107 ptr = kmalloc_node(size, GFP_KERNEL, 0);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700108 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800109
Patricia Alfonso73228c72020-10-13 16:55:06 -0700110 KUNIT_EXPECT_KASAN_FAIL(test, ptr[size] = 0);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800111 kfree(ptr);
112}
113
Patricia Alfonso73228c72020-10-13 16:55:06 -0700114static void kmalloc_pagealloc_oob_right(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800115{
116 char *ptr;
117 size_t size = KMALLOC_MAX_CACHE_SIZE + 10;
118
Patricia Alfonso73228c72020-10-13 16:55:06 -0700119 if (!IS_ENABLED(CONFIG_SLUB)) {
120 kunit_info(test, "CONFIG_SLUB is not enabled.");
121 return;
122 }
123
Alexander Potapenkoe6e83792016-03-25 14:21:56 -0700124 /* Allocate a chunk that does not fit into a SLUB cache to trigger
125 * the page allocator fallback.
126 */
Alexander Potapenkoe6e83792016-03-25 14:21:56 -0700127 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700128 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Alexander Potapenkoe6e83792016-03-25 14:21:56 -0700129
Patricia Alfonso73228c72020-10-13 16:55:06 -0700130 KUNIT_EXPECT_KASAN_FAIL(test, ptr[size + OOB_TAG_OFF] = 0);
Alexander Potapenkoe6e83792016-03-25 14:21:56 -0700131 kfree(ptr);
132}
Dmitry Vyukov47adccc2018-02-06 15:36:23 -0800133
Patricia Alfonso73228c72020-10-13 16:55:06 -0700134static void kmalloc_pagealloc_uaf(struct kunit *test)
Dmitry Vyukov47adccc2018-02-06 15:36:23 -0800135{
136 char *ptr;
137 size_t size = KMALLOC_MAX_CACHE_SIZE + 10;
138
Patricia Alfonso73228c72020-10-13 16:55:06 -0700139 if (!IS_ENABLED(CONFIG_SLUB)) {
140 kunit_info(test, "CONFIG_SLUB is not enabled.");
Dmitry Vyukov47adccc2018-02-06 15:36:23 -0800141 return;
142 }
143
Patricia Alfonso73228c72020-10-13 16:55:06 -0700144 ptr = kmalloc(size, GFP_KERNEL);
145 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
146
Dmitry Vyukov47adccc2018-02-06 15:36:23 -0800147 kfree(ptr);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700148 KUNIT_EXPECT_KASAN_FAIL(test, ptr[0] = 0);
Dmitry Vyukov47adccc2018-02-06 15:36:23 -0800149}
150
Patricia Alfonso73228c72020-10-13 16:55:06 -0700151static void kmalloc_pagealloc_invalid_free(struct kunit *test)
Dmitry Vyukov47adccc2018-02-06 15:36:23 -0800152{
153 char *ptr;
154 size_t size = KMALLOC_MAX_CACHE_SIZE + 10;
155
Patricia Alfonso73228c72020-10-13 16:55:06 -0700156 if (!IS_ENABLED(CONFIG_SLUB)) {
157 kunit_info(test, "CONFIG_SLUB is not enabled.");
Dmitry Vyukov47adccc2018-02-06 15:36:23 -0800158 return;
159 }
160
Patricia Alfonso73228c72020-10-13 16:55:06 -0700161 ptr = kmalloc(size, GFP_KERNEL);
162 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Alexander Potapenkoe6e83792016-03-25 14:21:56 -0700163
Patricia Alfonso73228c72020-10-13 16:55:06 -0700164 KUNIT_EXPECT_KASAN_FAIL(test, kfree(ptr + 1));
165}
166
167static void kmalloc_large_oob_right(struct kunit *test)
Alexander Potapenkoe6e83792016-03-25 14:21:56 -0700168{
169 char *ptr;
170 size_t size = KMALLOC_MAX_CACHE_SIZE - 256;
171 /* Allocate a chunk that is large enough, but still fits into a slab
172 * and does not trigger the page allocator fallback in SLUB.
173 */
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800174 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700175 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800176
Patricia Alfonso73228c72020-10-13 16:55:06 -0700177 KUNIT_EXPECT_KASAN_FAIL(test, ptr[size] = 0);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800178 kfree(ptr);
179}
180
Patricia Alfonso73228c72020-10-13 16:55:06 -0700181static void kmalloc_oob_krealloc_more(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800182{
183 char *ptr1, *ptr2;
184 size_t size1 = 17;
185 size_t size2 = 19;
186
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800187 ptr1 = kmalloc(size1, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700188 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr1);
189
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800190 ptr2 = krealloc(ptr1, size2, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700191 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr2);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800192
Patricia Alfonso73228c72020-10-13 16:55:06 -0700193 KUNIT_EXPECT_KASAN_FAIL(test, ptr2[size2 + OOB_TAG_OFF] = 'x');
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800194 kfree(ptr2);
195}
196
Patricia Alfonso73228c72020-10-13 16:55:06 -0700197static void kmalloc_oob_krealloc_less(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800198{
199 char *ptr1, *ptr2;
200 size_t size1 = 17;
201 size_t size2 = 15;
202
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800203 ptr1 = kmalloc(size1, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700204 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr1);
205
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800206 ptr2 = krealloc(ptr1, size2, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700207 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr2);
Walter Wuf33a0142020-08-06 23:24:54 -0700208
Patricia Alfonso73228c72020-10-13 16:55:06 -0700209 KUNIT_EXPECT_KASAN_FAIL(test, ptr2[size2 + OOB_TAG_OFF] = 'x');
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800210 kfree(ptr2);
211}
212
Patricia Alfonso73228c72020-10-13 16:55:06 -0700213static void kmalloc_oob_16(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800214{
215 struct {
216 u64 words[2];
217 } *ptr1, *ptr2;
218
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800219 /* This test is specifically crafted for the generic mode. */
220 if (!IS_ENABLED(CONFIG_KASAN_GENERIC)) {
221 kunit_info(test, "CONFIG_KASAN_GENERIC required\n");
222 return;
223 }
224
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800225 ptr1 = kmalloc(sizeof(*ptr1) - 3, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700226 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr1);
227
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800228 ptr2 = kmalloc(sizeof(*ptr2), GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700229 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr2);
230
231 KUNIT_EXPECT_KASAN_FAIL(test, *ptr1 = *ptr2);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800232 kfree(ptr1);
233 kfree(ptr2);
234}
235
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800236static void kmalloc_uaf_16(struct kunit *test)
237{
238 struct {
239 u64 words[2];
240 } *ptr1, *ptr2;
241
242 ptr1 = kmalloc(sizeof(*ptr1), GFP_KERNEL);
243 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr1);
244
245 ptr2 = kmalloc(sizeof(*ptr2), GFP_KERNEL);
246 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr2);
247 kfree(ptr2);
248
249 KUNIT_EXPECT_KASAN_FAIL(test, *ptr1 = *ptr2);
250 kfree(ptr1);
251}
252
Patricia Alfonso73228c72020-10-13 16:55:06 -0700253static void kmalloc_oob_memset_2(struct kunit *test)
Wang Longf523e732015-11-05 18:51:15 -0800254{
255 char *ptr;
256 size_t size = 8;
257
Wang Longf523e732015-11-05 18:51:15 -0800258 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700259 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Wang Longf523e732015-11-05 18:51:15 -0800260
Patricia Alfonso73228c72020-10-13 16:55:06 -0700261 KUNIT_EXPECT_KASAN_FAIL(test, memset(ptr + 7 + OOB_TAG_OFF, 0, 2));
Wang Longf523e732015-11-05 18:51:15 -0800262 kfree(ptr);
263}
264
Patricia Alfonso73228c72020-10-13 16:55:06 -0700265static void kmalloc_oob_memset_4(struct kunit *test)
Wang Longf523e732015-11-05 18:51:15 -0800266{
267 char *ptr;
268 size_t size = 8;
269
Wang Longf523e732015-11-05 18:51:15 -0800270 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700271 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Wang Longf523e732015-11-05 18:51:15 -0800272
Patricia Alfonso73228c72020-10-13 16:55:06 -0700273 KUNIT_EXPECT_KASAN_FAIL(test, memset(ptr + 5 + OOB_TAG_OFF, 0, 4));
Wang Longf523e732015-11-05 18:51:15 -0800274 kfree(ptr);
275}
276
277
Patricia Alfonso73228c72020-10-13 16:55:06 -0700278static void kmalloc_oob_memset_8(struct kunit *test)
Wang Longf523e732015-11-05 18:51:15 -0800279{
280 char *ptr;
281 size_t size = 8;
282
Wang Longf523e732015-11-05 18:51:15 -0800283 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700284 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Wang Longf523e732015-11-05 18:51:15 -0800285
Patricia Alfonso73228c72020-10-13 16:55:06 -0700286 KUNIT_EXPECT_KASAN_FAIL(test, memset(ptr + 1 + OOB_TAG_OFF, 0, 8));
Wang Longf523e732015-11-05 18:51:15 -0800287 kfree(ptr);
288}
289
Patricia Alfonso73228c72020-10-13 16:55:06 -0700290static void kmalloc_oob_memset_16(struct kunit *test)
Wang Longf523e732015-11-05 18:51:15 -0800291{
292 char *ptr;
293 size_t size = 16;
294
Wang Longf523e732015-11-05 18:51:15 -0800295 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700296 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Wang Longf523e732015-11-05 18:51:15 -0800297
Patricia Alfonso73228c72020-10-13 16:55:06 -0700298 KUNIT_EXPECT_KASAN_FAIL(test, memset(ptr + 1 + OOB_TAG_OFF, 0, 16));
Wang Longf523e732015-11-05 18:51:15 -0800299 kfree(ptr);
300}
301
Patricia Alfonso73228c72020-10-13 16:55:06 -0700302static void kmalloc_oob_in_memset(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800303{
304 char *ptr;
305 size_t size = 666;
306
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800307 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700308 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800309
Patricia Alfonso73228c72020-10-13 16:55:06 -0700310 KUNIT_EXPECT_KASAN_FAIL(test, memset(ptr, 0, size + 5 + OOB_TAG_OFF));
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800311 kfree(ptr);
312}
313
Patricia Alfonso73228c72020-10-13 16:55:06 -0700314static void kmalloc_memmove_invalid_size(struct kunit *test)
Walter Wu98f3b562020-04-01 21:09:40 -0700315{
316 char *ptr;
317 size_t size = 64;
318 volatile size_t invalid_size = -2;
319
Walter Wu98f3b562020-04-01 21:09:40 -0700320 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700321 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Walter Wu98f3b562020-04-01 21:09:40 -0700322
323 memset((char *)ptr, 0, 64);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700324
325 KUNIT_EXPECT_KASAN_FAIL(test,
326 memmove((char *)ptr, (char *)ptr + 4, invalid_size));
Walter Wu98f3b562020-04-01 21:09:40 -0700327 kfree(ptr);
328}
329
Patricia Alfonso73228c72020-10-13 16:55:06 -0700330static void kmalloc_uaf(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800331{
332 char *ptr;
333 size_t size = 10;
334
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800335 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700336 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800337
338 kfree(ptr);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700339 KUNIT_EXPECT_KASAN_FAIL(test, *(ptr + 8) = 'x');
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800340}
341
Patricia Alfonso73228c72020-10-13 16:55:06 -0700342static void kmalloc_uaf_memset(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800343{
344 char *ptr;
345 size_t size = 33;
346
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800347 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700348 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800349
350 kfree(ptr);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700351 KUNIT_EXPECT_KASAN_FAIL(test, memset(ptr, 0, size));
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800352}
353
Patricia Alfonso73228c72020-10-13 16:55:06 -0700354static void kmalloc_uaf2(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800355{
356 char *ptr1, *ptr2;
357 size_t size = 43;
358
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800359 ptr1 = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700360 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr1);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800361
362 kfree(ptr1);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800363
Patricia Alfonso73228c72020-10-13 16:55:06 -0700364 ptr2 = kmalloc(size, GFP_KERNEL);
365 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr2);
366
367 KUNIT_EXPECT_KASAN_FAIL(test, ptr1[40] = 'x');
368 KUNIT_EXPECT_PTR_NE(test, ptr1, ptr2);
369
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800370 kfree(ptr2);
371}
372
Patricia Alfonso73228c72020-10-13 16:55:06 -0700373static void kfree_via_page(struct kunit *test)
Mark Rutlandb92a9532019-09-23 15:34:16 -0700374{
375 char *ptr;
376 size_t size = 8;
377 struct page *page;
378 unsigned long offset;
379
Mark Rutlandb92a9532019-09-23 15:34:16 -0700380 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700381 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Mark Rutlandb92a9532019-09-23 15:34:16 -0700382
383 page = virt_to_page(ptr);
384 offset = offset_in_page(ptr);
385 kfree(page_address(page) + offset);
386}
387
Patricia Alfonso73228c72020-10-13 16:55:06 -0700388static void kfree_via_phys(struct kunit *test)
Mark Rutlandb92a9532019-09-23 15:34:16 -0700389{
390 char *ptr;
391 size_t size = 8;
392 phys_addr_t phys;
393
Mark Rutlandb92a9532019-09-23 15:34:16 -0700394 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700395 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Mark Rutlandb92a9532019-09-23 15:34:16 -0700396
397 phys = virt_to_phys(ptr);
398 kfree(phys_to_virt(phys));
399}
400
Patricia Alfonso73228c72020-10-13 16:55:06 -0700401static void kmem_cache_oob(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800402{
403 char *p;
404 size_t size = 200;
405 struct kmem_cache *cache = kmem_cache_create("test_cache",
406 size, 0,
407 0, NULL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700408 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, cache);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800409 p = kmem_cache_alloc(cache, GFP_KERNEL);
410 if (!p) {
Patricia Alfonso73228c72020-10-13 16:55:06 -0700411 kunit_err(test, "Allocation failed: %s\n", __func__);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800412 kmem_cache_destroy(cache);
413 return;
414 }
415
Patricia Alfonso73228c72020-10-13 16:55:06 -0700416 KUNIT_EXPECT_KASAN_FAIL(test, *p = p[size + OOB_TAG_OFF]);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800417 kmem_cache_free(cache, p);
418 kmem_cache_destroy(cache);
419}
420
Patricia Alfonso73228c72020-10-13 16:55:06 -0700421static void memcg_accounted_kmem_cache(struct kunit *test)
Greg Thelen0386bf32017-02-24 15:00:08 -0800422{
423 int i;
424 char *p;
425 size_t size = 200;
426 struct kmem_cache *cache;
427
428 cache = kmem_cache_create("test_cache", size, 0, SLAB_ACCOUNT, NULL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700429 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, cache);
Greg Thelen0386bf32017-02-24 15:00:08 -0800430
Greg Thelen0386bf32017-02-24 15:00:08 -0800431 /*
432 * Several allocations with a delay to allow for lazy per memcg kmem
433 * cache creation.
434 */
435 for (i = 0; i < 5; i++) {
436 p = kmem_cache_alloc(cache, GFP_KERNEL);
Markus Elfringdc2bf0002017-11-17 15:28:00 -0800437 if (!p)
Greg Thelen0386bf32017-02-24 15:00:08 -0800438 goto free_cache;
Markus Elfringdc2bf0002017-11-17 15:28:00 -0800439
Greg Thelen0386bf32017-02-24 15:00:08 -0800440 kmem_cache_free(cache, p);
441 msleep(100);
442 }
443
444free_cache:
445 kmem_cache_destroy(cache);
446}
447
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800448static char global_array[10];
449
Patricia Alfonso73228c72020-10-13 16:55:06 -0700450static void kasan_global_oob(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800451{
Peter Collingbournefe5c0a62021-05-14 17:27:27 -0700452 /*
453 * Deliberate out-of-bounds access. To prevent CONFIG_UBSAN_LOCAL_BOUNDS
454 * from failing here and panicing the kernel, access the array via a
455 * volatile pointer, which will prevent the compiler from being able to
456 * determine the array bounds.
457 *
458 * This access uses a volatile pointer to char (char *volatile) rather
459 * than the more conventional pointer to volatile char (volatile char *)
460 * because we want to prevent the compiler from making inferences about
461 * the pointer itself (i.e. its array bounds), not the data that it
462 * refers to.
463 */
464 char *volatile array = global_array;
465 char *p = &array[ARRAY_SIZE(global_array) + 3];
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800466
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800467 /* Only generic mode instruments globals. */
468 if (!IS_ENABLED(CONFIG_KASAN_GENERIC)) {
469 kunit_info(test, "CONFIG_KASAN_GENERIC required");
470 return;
471 }
472
Patricia Alfonso73228c72020-10-13 16:55:06 -0700473 KUNIT_EXPECT_KASAN_FAIL(test, *(volatile char *)p);
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800474}
475
Patricia Alfonso73228c72020-10-13 16:55:06 -0700476static void ksize_unpoisons_memory(struct kunit *test)
477{
478 char *ptr;
479 size_t size = 123, real_size;
480
481 ptr = kmalloc(size, GFP_KERNEL);
482 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
483 real_size = ksize(ptr);
484 /* This access doesn't trigger an error. */
485 ptr[size] = 'x';
486 /* This one does. */
487 KUNIT_EXPECT_KASAN_FAIL(test, ptr[real_size] = 'y');
488 kfree(ptr);
489}
490
491static void kasan_stack_oob(struct kunit *test)
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800492{
493 char stack_array[10];
Peter Collingbournefe5c0a62021-05-14 17:27:27 -0700494 /* See comment in kasan_global_oob. */
495 char *volatile array = stack_array;
496 char *p = &array[ARRAY_SIZE(stack_array) + OOB_TAG_OFF];
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800497
Patricia Alfonso73228c72020-10-13 16:55:06 -0700498 if (!IS_ENABLED(CONFIG_KASAN_STACK)) {
499 kunit_info(test, "CONFIG_KASAN_STACK is not enabled");
Andrey Ryabinineae08dc2016-05-20 16:59:34 -0700500 return;
501 }
502
Patricia Alfonso73228c72020-10-13 16:55:06 -0700503 KUNIT_EXPECT_KASAN_FAIL(test, *(volatile char *)p);
Andrey Ryabinineae08dc2016-05-20 16:59:34 -0700504}
505
Patricia Alfonso73228c72020-10-13 16:55:06 -0700506static void kasan_alloca_oob_left(struct kunit *test)
Paul Lawrence00a14292018-02-06 15:36:16 -0800507{
508 volatile int i = 10;
509 char alloca_array[i];
Peter Collingbournefe5c0a62021-05-14 17:27:27 -0700510 /* See comment in kasan_global_oob. */
511 char *volatile array = alloca_array;
512 char *p = array - 1;
Paul Lawrence00a14292018-02-06 15:36:16 -0800513
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800514 /* Only generic mode instruments dynamic allocas. */
515 if (!IS_ENABLED(CONFIG_KASAN_GENERIC)) {
516 kunit_info(test, "CONFIG_KASAN_GENERIC required");
517 return;
518 }
519
Patricia Alfonso73228c72020-10-13 16:55:06 -0700520 if (!IS_ENABLED(CONFIG_KASAN_STACK)) {
521 kunit_info(test, "CONFIG_KASAN_STACK is not enabled");
522 return;
523 }
524
525 KUNIT_EXPECT_KASAN_FAIL(test, *(volatile char *)p);
Paul Lawrence00a14292018-02-06 15:36:16 -0800526}
527
Patricia Alfonso73228c72020-10-13 16:55:06 -0700528static void kasan_alloca_oob_right(struct kunit *test)
Paul Lawrence00a14292018-02-06 15:36:16 -0800529{
530 volatile int i = 10;
531 char alloca_array[i];
Peter Collingbournefe5c0a62021-05-14 17:27:27 -0700532 /* See comment in kasan_global_oob. */
533 char *volatile array = alloca_array;
534 char *p = array + i;
Paul Lawrence00a14292018-02-06 15:36:16 -0800535
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800536 /* Only generic mode instruments dynamic allocas. */
537 if (!IS_ENABLED(CONFIG_KASAN_GENERIC)) {
538 kunit_info(test, "CONFIG_KASAN_GENERIC required");
539 return;
540 }
541
Patricia Alfonso73228c72020-10-13 16:55:06 -0700542 if (!IS_ENABLED(CONFIG_KASAN_STACK)) {
543 kunit_info(test, "CONFIG_KASAN_STACK is not enabled");
544 return;
545 }
546
547 KUNIT_EXPECT_KASAN_FAIL(test, *(volatile char *)p);
Paul Lawrence00a14292018-02-06 15:36:16 -0800548}
549
Patricia Alfonso73228c72020-10-13 16:55:06 -0700550static void kmem_cache_double_free(struct kunit *test)
Dmitry Vyukovb1d57282018-02-06 15:36:37 -0800551{
552 char *p;
553 size_t size = 200;
554 struct kmem_cache *cache;
555
556 cache = kmem_cache_create("test_cache", size, 0, 0, NULL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700557 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, cache);
558
Dmitry Vyukovb1d57282018-02-06 15:36:37 -0800559 p = kmem_cache_alloc(cache, GFP_KERNEL);
560 if (!p) {
Patricia Alfonso73228c72020-10-13 16:55:06 -0700561 kunit_err(test, "Allocation failed: %s\n", __func__);
Dmitry Vyukovb1d57282018-02-06 15:36:37 -0800562 kmem_cache_destroy(cache);
563 return;
564 }
565
566 kmem_cache_free(cache, p);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700567 KUNIT_EXPECT_KASAN_FAIL(test, kmem_cache_free(cache, p));
Dmitry Vyukovb1d57282018-02-06 15:36:37 -0800568 kmem_cache_destroy(cache);
569}
570
Patricia Alfonso73228c72020-10-13 16:55:06 -0700571static void kmem_cache_invalid_free(struct kunit *test)
Dmitry Vyukovb1d57282018-02-06 15:36:37 -0800572{
573 char *p;
574 size_t size = 200;
575 struct kmem_cache *cache;
576
577 cache = kmem_cache_create("test_cache", size, 0, SLAB_TYPESAFE_BY_RCU,
578 NULL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700579 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, cache);
580
Dmitry Vyukovb1d57282018-02-06 15:36:37 -0800581 p = kmem_cache_alloc(cache, GFP_KERNEL);
582 if (!p) {
Patricia Alfonso73228c72020-10-13 16:55:06 -0700583 kunit_err(test, "Allocation failed: %s\n", __func__);
Dmitry Vyukovb1d57282018-02-06 15:36:37 -0800584 kmem_cache_destroy(cache);
585 return;
586 }
587
Andrey Konovalov91c93ed2018-04-10 16:30:35 -0700588 /* Trigger invalid free, the object doesn't get freed */
Patricia Alfonso73228c72020-10-13 16:55:06 -0700589 KUNIT_EXPECT_KASAN_FAIL(test, kmem_cache_free(cache, p + 1));
Andrey Konovalov91c93ed2018-04-10 16:30:35 -0700590
591 /*
592 * Properly free the object to prevent the "Objects remaining in
593 * test_cache on __kmem_cache_shutdown" BUG failure.
594 */
595 kmem_cache_free(cache, p);
596
Dmitry Vyukovb1d57282018-02-06 15:36:37 -0800597 kmem_cache_destroy(cache);
598}
599
Patricia Alfonso73228c72020-10-13 16:55:06 -0700600static void kasan_memchr(struct kunit *test)
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700601{
602 char *ptr;
603 size_t size = 24;
604
Patricia Alfonso73228c72020-10-13 16:55:06 -0700605 /* See https://bugzilla.kernel.org/show_bug.cgi?id=206337 */
606 if (IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT)) {
607 kunit_info(test,
608 "str* functions are not instrumented with CONFIG_AMD_MEM_ENCRYPT");
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700609 return;
Patricia Alfonso73228c72020-10-13 16:55:06 -0700610 }
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700611
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800612 if (OOB_TAG_OFF)
613 size = round_up(size, OOB_TAG_OFF);
614
Patricia Alfonso73228c72020-10-13 16:55:06 -0700615 ptr = kmalloc(size, GFP_KERNEL | __GFP_ZERO);
616 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
617
618 KUNIT_EXPECT_KASAN_FAIL(test,
619 kasan_ptr_result = memchr(ptr, '1', size + 1));
620
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700621 kfree(ptr);
622}
623
Patricia Alfonso73228c72020-10-13 16:55:06 -0700624static void kasan_memcmp(struct kunit *test)
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700625{
626 char *ptr;
627 size_t size = 24;
628 int arr[9];
629
Patricia Alfonso73228c72020-10-13 16:55:06 -0700630 /* See https://bugzilla.kernel.org/show_bug.cgi?id=206337 */
631 if (IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT)) {
632 kunit_info(test,
633 "str* functions are not instrumented with CONFIG_AMD_MEM_ENCRYPT");
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700634 return;
Patricia Alfonso73228c72020-10-13 16:55:06 -0700635 }
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700636
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800637 if (OOB_TAG_OFF)
638 size = round_up(size, OOB_TAG_OFF);
639
Patricia Alfonso73228c72020-10-13 16:55:06 -0700640 ptr = kmalloc(size, GFP_KERNEL | __GFP_ZERO);
641 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700642 memset(arr, 0, sizeof(arr));
Patricia Alfonso73228c72020-10-13 16:55:06 -0700643
644 KUNIT_EXPECT_KASAN_FAIL(test,
645 kasan_int_result = memcmp(ptr, arr, size+1));
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700646 kfree(ptr);
647}
648
Patricia Alfonso73228c72020-10-13 16:55:06 -0700649static void kasan_strings(struct kunit *test)
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700650{
651 char *ptr;
652 size_t size = 24;
653
Patricia Alfonso73228c72020-10-13 16:55:06 -0700654 /* See https://bugzilla.kernel.org/show_bug.cgi?id=206337 */
655 if (IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT)) {
656 kunit_info(test,
657 "str* functions are not instrumented with CONFIG_AMD_MEM_ENCRYPT");
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700658 return;
Patricia Alfonso73228c72020-10-13 16:55:06 -0700659 }
660
661 ptr = kmalloc(size, GFP_KERNEL | __GFP_ZERO);
662 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700663
664 kfree(ptr);
665
666 /*
667 * Try to cause only 1 invalid access (less spam in dmesg).
668 * For that we need ptr to point to zeroed byte.
669 * Skip metadata that could be stored in freed object so ptr
670 * will likely point to zeroed byte.
671 */
672 ptr += 16;
Patricia Alfonso73228c72020-10-13 16:55:06 -0700673 KUNIT_EXPECT_KASAN_FAIL(test, kasan_ptr_result = strchr(ptr, '1'));
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700674
Patricia Alfonso73228c72020-10-13 16:55:06 -0700675 KUNIT_EXPECT_KASAN_FAIL(test, kasan_ptr_result = strrchr(ptr, '1'));
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700676
Patricia Alfonso73228c72020-10-13 16:55:06 -0700677 KUNIT_EXPECT_KASAN_FAIL(test, kasan_int_result = strcmp(ptr, "2"));
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700678
Patricia Alfonso73228c72020-10-13 16:55:06 -0700679 KUNIT_EXPECT_KASAN_FAIL(test, kasan_int_result = strncmp(ptr, "2", 1));
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700680
Patricia Alfonso73228c72020-10-13 16:55:06 -0700681 KUNIT_EXPECT_KASAN_FAIL(test, kasan_int_result = strlen(ptr));
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700682
Patricia Alfonso73228c72020-10-13 16:55:06 -0700683 KUNIT_EXPECT_KASAN_FAIL(test, kasan_int_result = strnlen(ptr, 1));
Andrey Ryabinin0c963502018-10-26 15:02:34 -0700684}
685
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800686static void kasan_bitops_modify(struct kunit *test, int nr, void *addr)
Marco Elver19a33ca2019-07-11 20:53:52 -0700687{
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800688 KUNIT_EXPECT_KASAN_FAIL(test, set_bit(nr, addr));
689 KUNIT_EXPECT_KASAN_FAIL(test, __set_bit(nr, addr));
690 KUNIT_EXPECT_KASAN_FAIL(test, clear_bit(nr, addr));
691 KUNIT_EXPECT_KASAN_FAIL(test, __clear_bit(nr, addr));
692 KUNIT_EXPECT_KASAN_FAIL(test, clear_bit_unlock(nr, addr));
693 KUNIT_EXPECT_KASAN_FAIL(test, __clear_bit_unlock(nr, addr));
694 KUNIT_EXPECT_KASAN_FAIL(test, change_bit(nr, addr));
695 KUNIT_EXPECT_KASAN_FAIL(test, __change_bit(nr, addr));
696}
697
698static void kasan_bitops_test_and_modify(struct kunit *test, int nr, void *addr)
699{
700 KUNIT_EXPECT_KASAN_FAIL(test, test_and_set_bit(nr, addr));
701 KUNIT_EXPECT_KASAN_FAIL(test, __test_and_set_bit(nr, addr));
702 KUNIT_EXPECT_KASAN_FAIL(test, test_and_set_bit_lock(nr, addr));
703 KUNIT_EXPECT_KASAN_FAIL(test, test_and_clear_bit(nr, addr));
704 KUNIT_EXPECT_KASAN_FAIL(test, __test_and_clear_bit(nr, addr));
705 KUNIT_EXPECT_KASAN_FAIL(test, test_and_change_bit(nr, addr));
706 KUNIT_EXPECT_KASAN_FAIL(test, __test_and_change_bit(nr, addr));
707 KUNIT_EXPECT_KASAN_FAIL(test, kasan_int_result = test_bit(nr, addr));
708
709#if defined(clear_bit_unlock_is_negative_byte)
710 KUNIT_EXPECT_KASAN_FAIL(test, kasan_int_result =
711 clear_bit_unlock_is_negative_byte(nr, addr));
712#endif
713}
714
715static void kasan_bitops_generic(struct kunit *test)
716{
717 long *bits;
718
719 /* This test is specifically crafted for the generic mode. */
720 if (!IS_ENABLED(CONFIG_KASAN_GENERIC)) {
721 kunit_info(test, "CONFIG_KASAN_GENERIC required\n");
722 return;
723 }
724
Marco Elver19a33ca2019-07-11 20:53:52 -0700725 /*
726 * Allocate 1 more byte, which causes kzalloc to round up to 16-bytes;
727 * this way we do not actually corrupt other memory.
728 */
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800729 bits = kzalloc(sizeof(*bits) + 1, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700730 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, bits);
Marco Elver19a33ca2019-07-11 20:53:52 -0700731
732 /*
733 * Below calls try to access bit within allocated memory; however, the
734 * below accesses are still out-of-bounds, since bitops are defined to
735 * operate on the whole long the bit is in.
736 */
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800737 kasan_bitops_modify(test, BITS_PER_LONG, bits);
Marco Elver19a33ca2019-07-11 20:53:52 -0700738
739 /*
740 * Below calls try to access bit beyond allocated memory.
741 */
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800742 kasan_bitops_test_and_modify(test, BITS_PER_LONG + BITS_PER_BYTE, bits);
Marco Elver19a33ca2019-07-11 20:53:52 -0700743
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800744 kfree(bits);
745}
Marco Elver19a33ca2019-07-11 20:53:52 -0700746
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800747static void kasan_bitops_tags(struct kunit *test)
748{
749 long *bits;
Marco Elver19a33ca2019-07-11 20:53:52 -0700750
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800751 /* This test is specifically crafted for the tag-based mode. */
752 if (IS_ENABLED(CONFIG_KASAN_GENERIC)) {
753 kunit_info(test, "CONFIG_KASAN_SW_TAGS required\n");
754 return;
755 }
Marco Elver19a33ca2019-07-11 20:53:52 -0700756
Andrey Konovalov219fc4b2021-02-24 12:05:42 -0800757 /* kmalloc-64 cache will be used and the last 16 bytes will be the redzone. */
758 bits = kzalloc(48, GFP_KERNEL);
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800759 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, bits);
Marco Elver19a33ca2019-07-11 20:53:52 -0700760
Andrey Konovalov219fc4b2021-02-24 12:05:42 -0800761 /* Do the accesses past the 48 allocated bytes, but within the redone. */
762 kasan_bitops_modify(test, BITS_PER_LONG, (void *)bits + 48);
763 kasan_bitops_test_and_modify(test, BITS_PER_LONG + BITS_PER_BYTE, (void *)bits + 48);
Marco Elver19a33ca2019-07-11 20:53:52 -0700764
Marco Elver19a33ca2019-07-11 20:53:52 -0700765 kfree(bits);
766}
767
Patricia Alfonso73228c72020-10-13 16:55:06 -0700768static void kmalloc_double_kzfree(struct kunit *test)
Marco Elverbb104ed2019-07-11 20:54:11 -0700769{
770 char *ptr;
771 size_t size = 16;
772
Marco Elverbb104ed2019-07-11 20:54:11 -0700773 ptr = kmalloc(size, GFP_KERNEL);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700774 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr);
Marco Elverbb104ed2019-07-11 20:54:11 -0700775
Waiman Long453431a2020-08-06 23:18:13 -0700776 kfree_sensitive(ptr);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700777 KUNIT_EXPECT_KASAN_FAIL(test, kfree_sensitive(ptr));
Marco Elverbb104ed2019-07-11 20:54:11 -0700778}
779
Patricia Alfonso73228c72020-10-13 16:55:06 -0700780static void vmalloc_oob(struct kunit *test)
Daniel Axtens06513912019-11-30 17:54:53 -0800781{
782 void *area;
783
Patricia Alfonso73228c72020-10-13 16:55:06 -0700784 if (!IS_ENABLED(CONFIG_KASAN_VMALLOC)) {
785 kunit_info(test, "CONFIG_KASAN_VMALLOC is not enabled.");
786 return;
787 }
Daniel Axtens06513912019-11-30 17:54:53 -0800788
789 /*
790 * We have to be careful not to hit the guard page.
791 * The MMU will catch that and crash us.
792 */
793 area = vmalloc(3000);
Patricia Alfonso73228c72020-10-13 16:55:06 -0700794 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, area);
Daniel Axtens06513912019-11-30 17:54:53 -0800795
Patricia Alfonso73228c72020-10-13 16:55:06 -0700796 KUNIT_EXPECT_KASAN_FAIL(test, ((volatile char *)area)[3100]);
Daniel Axtens06513912019-11-30 17:54:53 -0800797 vfree(area);
798}
Daniel Axtens06513912019-11-30 17:54:53 -0800799
Patricia Alfonso73228c72020-10-13 16:55:06 -0700800static struct kunit_case kasan_kunit_test_cases[] = {
801 KUNIT_CASE(kmalloc_oob_right),
802 KUNIT_CASE(kmalloc_oob_left),
803 KUNIT_CASE(kmalloc_node_oob_right),
804 KUNIT_CASE(kmalloc_pagealloc_oob_right),
805 KUNIT_CASE(kmalloc_pagealloc_uaf),
806 KUNIT_CASE(kmalloc_pagealloc_invalid_free),
807 KUNIT_CASE(kmalloc_large_oob_right),
808 KUNIT_CASE(kmalloc_oob_krealloc_more),
809 KUNIT_CASE(kmalloc_oob_krealloc_less),
810 KUNIT_CASE(kmalloc_oob_16),
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800811 KUNIT_CASE(kmalloc_uaf_16),
Patricia Alfonso73228c72020-10-13 16:55:06 -0700812 KUNIT_CASE(kmalloc_oob_in_memset),
813 KUNIT_CASE(kmalloc_oob_memset_2),
814 KUNIT_CASE(kmalloc_oob_memset_4),
815 KUNIT_CASE(kmalloc_oob_memset_8),
816 KUNIT_CASE(kmalloc_oob_memset_16),
817 KUNIT_CASE(kmalloc_memmove_invalid_size),
818 KUNIT_CASE(kmalloc_uaf),
819 KUNIT_CASE(kmalloc_uaf_memset),
820 KUNIT_CASE(kmalloc_uaf2),
821 KUNIT_CASE(kfree_via_page),
822 KUNIT_CASE(kfree_via_phys),
823 KUNIT_CASE(kmem_cache_oob),
824 KUNIT_CASE(memcg_accounted_kmem_cache),
825 KUNIT_CASE(kasan_global_oob),
826 KUNIT_CASE(kasan_stack_oob),
827 KUNIT_CASE(kasan_alloca_oob_left),
828 KUNIT_CASE(kasan_alloca_oob_right),
829 KUNIT_CASE(ksize_unpoisons_memory),
830 KUNIT_CASE(kmem_cache_double_free),
831 KUNIT_CASE(kmem_cache_invalid_free),
832 KUNIT_CASE(kasan_memchr),
833 KUNIT_CASE(kasan_memcmp),
834 KUNIT_CASE(kasan_strings),
Andrey Konovalov58b999d2020-11-01 17:07:37 -0800835 KUNIT_CASE(kasan_bitops_generic),
836 KUNIT_CASE(kasan_bitops_tags),
Patricia Alfonso73228c72020-10-13 16:55:06 -0700837 KUNIT_CASE(kmalloc_double_kzfree),
838 KUNIT_CASE(vmalloc_oob),
839 {}
840};
Walter Wu387d6e42020-08-06 23:24:42 -0700841
Patricia Alfonso73228c72020-10-13 16:55:06 -0700842static struct kunit_suite kasan_kunit_test_suite = {
843 .name = "kasan",
844 .init = kasan_test_init,
845 .test_cases = kasan_kunit_test_cases,
846 .exit = kasan_test_exit,
847};
Walter Wu387d6e42020-08-06 23:24:42 -0700848
Patricia Alfonso73228c72020-10-13 16:55:06 -0700849kunit_test_suite(kasan_kunit_test_suite);
Walter Wu387d6e42020-08-06 23:24:42 -0700850
Andrey Ryabinin3f158012015-02-13 14:39:53 -0800851MODULE_LICENSE("GPL");