Linux 4.14.199
[linux/fpc-iii.git] / lib / test_kasan.c
blob1399d100013027f197ec40be68249b70879446ce
1 /*
3 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
4 * Author: Andrey Ryabinin <a.ryabinin@samsung.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
12 #define pr_fmt(fmt) "kasan test: %s " fmt, __func__
14 #include <linux/delay.h>
15 #include <linux/kernel.h>
16 #include <linux/mman.h>
17 #include <linux/mm.h>
18 #include <linux/printk.h>
19 #include <linux/slab.h>
20 #include <linux/string.h>
21 #include <linux/uaccess.h>
22 #include <linux/module.h>
23 #include <linux/kasan.h>
26 * Note: test functions are marked noinline so that their names appear in
27 * reports.
30 static noinline void __init kmalloc_oob_right(void)
32 char *ptr;
33 size_t size = 123;
35 pr_info("out-of-bounds to right\n");
36 ptr = kmalloc(size, GFP_KERNEL);
37 if (!ptr) {
38 pr_err("Allocation failed\n");
39 return;
42 ptr[size] = 'x';
43 kfree(ptr);
46 static noinline void __init kmalloc_oob_left(void)
48 char *ptr;
49 size_t size = 15;
51 pr_info("out-of-bounds to left\n");
52 ptr = kmalloc(size, GFP_KERNEL);
53 if (!ptr) {
54 pr_err("Allocation failed\n");
55 return;
58 *ptr = *(ptr - 1);
59 kfree(ptr);
62 static noinline void __init kmalloc_node_oob_right(void)
64 char *ptr;
65 size_t size = 4096;
67 pr_info("kmalloc_node(): out-of-bounds to right\n");
68 ptr = kmalloc_node(size, GFP_KERNEL, 0);
69 if (!ptr) {
70 pr_err("Allocation failed\n");
71 return;
74 ptr[size] = 0;
75 kfree(ptr);
78 #ifdef CONFIG_SLUB
79 static noinline void __init kmalloc_pagealloc_oob_right(void)
81 char *ptr;
82 size_t size = KMALLOC_MAX_CACHE_SIZE + 10;
84 /* Allocate a chunk that does not fit into a SLUB cache to trigger
85 * the page allocator fallback.
87 pr_info("kmalloc pagealloc allocation: out-of-bounds to right\n");
88 ptr = kmalloc(size, GFP_KERNEL);
89 if (!ptr) {
90 pr_err("Allocation failed\n");
91 return;
94 ptr[size] = 0;
95 kfree(ptr);
97 #endif
99 static noinline void __init kmalloc_large_oob_right(void)
101 char *ptr;
102 size_t size = KMALLOC_MAX_CACHE_SIZE - 256;
103 /* Allocate a chunk that is large enough, but still fits into a slab
104 * and does not trigger the page allocator fallback in SLUB.
106 pr_info("kmalloc large allocation: out-of-bounds to right\n");
107 ptr = kmalloc(size, GFP_KERNEL);
108 if (!ptr) {
109 pr_err("Allocation failed\n");
110 return;
113 ptr[size] = 0;
114 kfree(ptr);
117 static noinline void __init kmalloc_oob_krealloc_more(void)
119 char *ptr1, *ptr2;
120 size_t size1 = 17;
121 size_t size2 = 19;
123 pr_info("out-of-bounds after krealloc more\n");
124 ptr1 = kmalloc(size1, GFP_KERNEL);
125 ptr2 = krealloc(ptr1, size2, GFP_KERNEL);
126 if (!ptr1 || !ptr2) {
127 pr_err("Allocation failed\n");
128 kfree(ptr1);
129 kfree(ptr2);
130 return;
133 ptr2[size2] = 'x';
134 kfree(ptr2);
137 static noinline void __init kmalloc_oob_krealloc_less(void)
139 char *ptr1, *ptr2;
140 size_t size1 = 17;
141 size_t size2 = 15;
143 pr_info("out-of-bounds after krealloc less\n");
144 ptr1 = kmalloc(size1, GFP_KERNEL);
145 ptr2 = krealloc(ptr1, size2, GFP_KERNEL);
146 if (!ptr1 || !ptr2) {
147 pr_err("Allocation failed\n");
148 kfree(ptr1);
149 return;
151 ptr2[size2] = 'x';
152 kfree(ptr2);
155 static noinline void __init kmalloc_oob_16(void)
157 struct {
158 u64 words[2];
159 } *ptr1, *ptr2;
161 pr_info("kmalloc out-of-bounds for 16-bytes access\n");
162 ptr1 = kmalloc(sizeof(*ptr1) - 3, GFP_KERNEL);
163 ptr2 = kmalloc(sizeof(*ptr2), GFP_KERNEL);
164 if (!ptr1 || !ptr2) {
165 pr_err("Allocation failed\n");
166 kfree(ptr1);
167 kfree(ptr2);
168 return;
170 *ptr1 = *ptr2;
171 kfree(ptr1);
172 kfree(ptr2);
175 static noinline void __init kmalloc_oob_memset_2(void)
177 char *ptr;
178 size_t size = 8;
180 pr_info("out-of-bounds in memset2\n");
181 ptr = kmalloc(size, GFP_KERNEL);
182 if (!ptr) {
183 pr_err("Allocation failed\n");
184 return;
187 memset(ptr+7, 0, 2);
188 kfree(ptr);
191 static noinline void __init kmalloc_oob_memset_4(void)
193 char *ptr;
194 size_t size = 8;
196 pr_info("out-of-bounds in memset4\n");
197 ptr = kmalloc(size, GFP_KERNEL);
198 if (!ptr) {
199 pr_err("Allocation failed\n");
200 return;
203 memset(ptr+5, 0, 4);
204 kfree(ptr);
208 static noinline void __init kmalloc_oob_memset_8(void)
210 char *ptr;
211 size_t size = 8;
213 pr_info("out-of-bounds in memset8\n");
214 ptr = kmalloc(size, GFP_KERNEL);
215 if (!ptr) {
216 pr_err("Allocation failed\n");
217 return;
220 memset(ptr+1, 0, 8);
221 kfree(ptr);
224 static noinline void __init kmalloc_oob_memset_16(void)
226 char *ptr;
227 size_t size = 16;
229 pr_info("out-of-bounds in memset16\n");
230 ptr = kmalloc(size, GFP_KERNEL);
231 if (!ptr) {
232 pr_err("Allocation failed\n");
233 return;
236 memset(ptr+1, 0, 16);
237 kfree(ptr);
240 static noinline void __init kmalloc_oob_in_memset(void)
242 char *ptr;
243 size_t size = 666;
245 pr_info("out-of-bounds in memset\n");
246 ptr = kmalloc(size, GFP_KERNEL);
247 if (!ptr) {
248 pr_err("Allocation failed\n");
249 return;
252 memset(ptr, 0, size+5);
253 kfree(ptr);
256 static noinline void __init kmalloc_uaf(void)
258 char *ptr;
259 size_t size = 10;
261 pr_info("use-after-free\n");
262 ptr = kmalloc(size, GFP_KERNEL);
263 if (!ptr) {
264 pr_err("Allocation failed\n");
265 return;
268 kfree(ptr);
269 *(ptr + 8) = 'x';
272 static noinline void __init kmalloc_uaf_memset(void)
274 char *ptr;
275 size_t size = 33;
277 pr_info("use-after-free in memset\n");
278 ptr = kmalloc(size, GFP_KERNEL);
279 if (!ptr) {
280 pr_err("Allocation failed\n");
281 return;
284 kfree(ptr);
285 memset(ptr, 0, size);
288 static noinline void __init kmalloc_uaf2(void)
290 char *ptr1, *ptr2;
291 size_t size = 43;
293 pr_info("use-after-free after another kmalloc\n");
294 ptr1 = kmalloc(size, GFP_KERNEL);
295 if (!ptr1) {
296 pr_err("Allocation failed\n");
297 return;
300 kfree(ptr1);
301 ptr2 = kmalloc(size, GFP_KERNEL);
302 if (!ptr2) {
303 pr_err("Allocation failed\n");
304 return;
307 ptr1[40] = 'x';
308 if (ptr1 == ptr2)
309 pr_err("Could not detect use-after-free: ptr1 == ptr2\n");
310 kfree(ptr2);
313 static noinline void __init kmem_cache_oob(void)
315 char *p;
316 size_t size = 200;
317 struct kmem_cache *cache = kmem_cache_create("test_cache",
318 size, 0,
319 0, NULL);
320 if (!cache) {
321 pr_err("Cache allocation failed\n");
322 return;
324 pr_info("out-of-bounds in kmem_cache_alloc\n");
325 p = kmem_cache_alloc(cache, GFP_KERNEL);
326 if (!p) {
327 pr_err("Allocation failed\n");
328 kmem_cache_destroy(cache);
329 return;
332 *p = p[size];
333 kmem_cache_free(cache, p);
334 kmem_cache_destroy(cache);
337 static noinline void __init memcg_accounted_kmem_cache(void)
339 int i;
340 char *p;
341 size_t size = 200;
342 struct kmem_cache *cache;
344 cache = kmem_cache_create("test_cache", size, 0, SLAB_ACCOUNT, NULL);
345 if (!cache) {
346 pr_err("Cache allocation failed\n");
347 return;
350 pr_info("allocate memcg accounted object\n");
352 * Several allocations with a delay to allow for lazy per memcg kmem
353 * cache creation.
355 for (i = 0; i < 5; i++) {
356 p = kmem_cache_alloc(cache, GFP_KERNEL);
357 if (!p) {
358 pr_err("Allocation failed\n");
359 goto free_cache;
361 kmem_cache_free(cache, p);
362 msleep(100);
365 free_cache:
366 kmem_cache_destroy(cache);
369 static char global_array[10];
371 static noinline void __init kasan_global_oob(void)
373 volatile int i = 3;
374 char *p = &global_array[ARRAY_SIZE(global_array) + i];
376 pr_info("out-of-bounds global variable\n");
377 *(volatile char *)p;
380 static noinline void __init kasan_stack_oob(void)
382 char stack_array[10];
383 volatile int i = 0;
384 char *p = &stack_array[ARRAY_SIZE(stack_array) + i];
386 pr_info("out-of-bounds on stack\n");
387 *(volatile char *)p;
390 static noinline void __init ksize_unpoisons_memory(void)
392 char *ptr;
393 size_t size = 123, real_size;
395 pr_info("ksize() unpoisons the whole allocated chunk\n");
396 ptr = kmalloc(size, GFP_KERNEL);
397 if (!ptr) {
398 pr_err("Allocation failed\n");
399 return;
401 real_size = ksize(ptr);
402 /* This access doesn't trigger an error. */
403 ptr[size] = 'x';
404 /* This one does. */
405 ptr[real_size] = 'y';
406 kfree(ptr);
409 static noinline void __init copy_user_test(void)
411 char *kmem;
412 char __user *usermem;
413 size_t size = 10;
414 int unused;
416 kmem = kmalloc(size, GFP_KERNEL);
417 if (!kmem)
418 return;
420 usermem = (char __user *)vm_mmap(NULL, 0, PAGE_SIZE,
421 PROT_READ | PROT_WRITE | PROT_EXEC,
422 MAP_ANONYMOUS | MAP_PRIVATE, 0);
423 if (IS_ERR(usermem)) {
424 pr_err("Failed to allocate user memory\n");
425 kfree(kmem);
426 return;
429 pr_info("out-of-bounds in copy_from_user()\n");
430 unused = copy_from_user(kmem, usermem, size + 1);
432 pr_info("out-of-bounds in copy_to_user()\n");
433 unused = copy_to_user(usermem, kmem, size + 1);
435 pr_info("out-of-bounds in __copy_from_user()\n");
436 unused = __copy_from_user(kmem, usermem, size + 1);
438 pr_info("out-of-bounds in __copy_to_user()\n");
439 unused = __copy_to_user(usermem, kmem, size + 1);
441 pr_info("out-of-bounds in __copy_from_user_inatomic()\n");
442 unused = __copy_from_user_inatomic(kmem, usermem, size + 1);
444 pr_info("out-of-bounds in __copy_to_user_inatomic()\n");
445 unused = __copy_to_user_inatomic(usermem, kmem, size + 1);
447 pr_info("out-of-bounds in strncpy_from_user()\n");
448 unused = strncpy_from_user(kmem, usermem, size + 1);
450 vm_munmap((unsigned long)usermem, PAGE_SIZE);
451 kfree(kmem);
454 static noinline void __init use_after_scope_test(void)
456 volatile char *volatile p;
458 pr_info("use-after-scope on int\n");
460 int local = 0;
462 p = (char *)&local;
464 p[0] = 1;
465 p[3] = 1;
467 pr_info("use-after-scope on array\n");
469 char local[1024] = {0};
471 p = local;
473 p[0] = 1;
474 p[1023] = 1;
477 static int __init kmalloc_tests_init(void)
480 * Temporarily enable multi-shot mode. Otherwise, we'd only get a
481 * report for the first case.
483 bool multishot = kasan_save_enable_multi_shot();
485 kmalloc_oob_right();
486 kmalloc_oob_left();
487 kmalloc_node_oob_right();
488 #ifdef CONFIG_SLUB
489 kmalloc_pagealloc_oob_right();
490 #endif
491 kmalloc_large_oob_right();
492 kmalloc_oob_krealloc_more();
493 kmalloc_oob_krealloc_less();
494 kmalloc_oob_16();
495 kmalloc_oob_in_memset();
496 kmalloc_oob_memset_2();
497 kmalloc_oob_memset_4();
498 kmalloc_oob_memset_8();
499 kmalloc_oob_memset_16();
500 kmalloc_uaf();
501 kmalloc_uaf_memset();
502 kmalloc_uaf2();
503 kmem_cache_oob();
504 memcg_accounted_kmem_cache();
505 kasan_stack_oob();
506 kasan_global_oob();
507 ksize_unpoisons_memory();
508 copy_user_test();
509 use_after_scope_test();
511 kasan_restore_multi_shot(multishot);
513 return -EAGAIN;
516 module_init(kmalloc_tests_init);
517 MODULE_LICENSE("GPL");