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>
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
30 static noinline
void __init
kmalloc_oob_right(void)
35 pr_info("out-of-bounds to right\n");
36 ptr
= kmalloc(size
, GFP_KERNEL
);
38 pr_err("Allocation failed\n");
46 static noinline
void __init
kmalloc_oob_left(void)
51 pr_info("out-of-bounds to left\n");
52 ptr
= kmalloc(size
, GFP_KERNEL
);
54 pr_err("Allocation failed\n");
62 static noinline
void __init
kmalloc_node_oob_right(void)
67 pr_info("kmalloc_node(): out-of-bounds to right\n");
68 ptr
= kmalloc_node(size
, GFP_KERNEL
, 0);
70 pr_err("Allocation failed\n");
79 static noinline
void __init
kmalloc_pagealloc_oob_right(void)
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
);
90 pr_err("Allocation failed\n");
99 static noinline
void __init
kmalloc_large_oob_right(void)
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
);
109 pr_err("Allocation failed\n");
117 static noinline
void __init
kmalloc_oob_krealloc_more(void)
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");
136 static noinline
void __init
kmalloc_oob_krealloc_less(void)
142 pr_info("out-of-bounds after krealloc less\n");
143 ptr1
= kmalloc(size1
, GFP_KERNEL
);
144 ptr2
= krealloc(ptr1
, size2
, GFP_KERNEL
);
145 if (!ptr1
|| !ptr2
) {
146 pr_err("Allocation failed\n");
154 static noinline
void __init
kmalloc_oob_16(void)
160 pr_info("kmalloc out-of-bounds for 16-bytes access\n");
161 ptr1
= kmalloc(sizeof(*ptr1
) - 3, GFP_KERNEL
);
162 ptr2
= kmalloc(sizeof(*ptr2
), GFP_KERNEL
);
163 if (!ptr1
|| !ptr2
) {
164 pr_err("Allocation failed\n");
174 static noinline
void __init
kmalloc_oob_memset_2(void)
179 pr_info("out-of-bounds in memset2\n");
180 ptr
= kmalloc(size
, GFP_KERNEL
);
182 pr_err("Allocation failed\n");
190 static noinline
void __init
kmalloc_oob_memset_4(void)
195 pr_info("out-of-bounds in memset4\n");
196 ptr
= kmalloc(size
, GFP_KERNEL
);
198 pr_err("Allocation failed\n");
207 static noinline
void __init
kmalloc_oob_memset_8(void)
212 pr_info("out-of-bounds in memset8\n");
213 ptr
= kmalloc(size
, GFP_KERNEL
);
215 pr_err("Allocation failed\n");
223 static noinline
void __init
kmalloc_oob_memset_16(void)
228 pr_info("out-of-bounds in memset16\n");
229 ptr
= kmalloc(size
, GFP_KERNEL
);
231 pr_err("Allocation failed\n");
235 memset(ptr
+1, 0, 16);
239 static noinline
void __init
kmalloc_oob_in_memset(void)
244 pr_info("out-of-bounds in memset\n");
245 ptr
= kmalloc(size
, GFP_KERNEL
);
247 pr_err("Allocation failed\n");
251 memset(ptr
, 0, size
+5);
255 static noinline
void __init
kmalloc_uaf(void)
260 pr_info("use-after-free\n");
261 ptr
= kmalloc(size
, GFP_KERNEL
);
263 pr_err("Allocation failed\n");
271 static noinline
void __init
kmalloc_uaf_memset(void)
276 pr_info("use-after-free in memset\n");
277 ptr
= kmalloc(size
, GFP_KERNEL
);
279 pr_err("Allocation failed\n");
284 memset(ptr
, 0, size
);
287 static noinline
void __init
kmalloc_uaf2(void)
292 pr_info("use-after-free after another kmalloc\n");
293 ptr1
= kmalloc(size
, GFP_KERNEL
);
295 pr_err("Allocation failed\n");
300 ptr2
= kmalloc(size
, GFP_KERNEL
);
302 pr_err("Allocation failed\n");
308 pr_err("Could not detect use-after-free: ptr1 == ptr2\n");
312 static noinline
void __init
kmem_cache_oob(void)
316 struct kmem_cache
*cache
= kmem_cache_create("test_cache",
320 pr_err("Cache allocation failed\n");
323 pr_info("out-of-bounds in kmem_cache_alloc\n");
324 p
= kmem_cache_alloc(cache
, GFP_KERNEL
);
326 pr_err("Allocation failed\n");
327 kmem_cache_destroy(cache
);
332 kmem_cache_free(cache
, p
);
333 kmem_cache_destroy(cache
);
336 static noinline
void __init
memcg_accounted_kmem_cache(void)
341 struct kmem_cache
*cache
;
343 cache
= kmem_cache_create("test_cache", size
, 0, SLAB_ACCOUNT
, NULL
);
345 pr_err("Cache allocation failed\n");
349 pr_info("allocate memcg accounted object\n");
351 * Several allocations with a delay to allow for lazy per memcg kmem
354 for (i
= 0; i
< 5; i
++) {
355 p
= kmem_cache_alloc(cache
, GFP_KERNEL
);
357 pr_err("Allocation failed\n");
360 kmem_cache_free(cache
, p
);
365 kmem_cache_destroy(cache
);
368 static char global_array
[10];
370 static noinline
void __init
kasan_global_oob(void)
373 char *p
= &global_array
[ARRAY_SIZE(global_array
) + i
];
375 pr_info("out-of-bounds global variable\n");
379 static noinline
void __init
kasan_stack_oob(void)
381 char stack_array
[10];
383 char *p
= &stack_array
[ARRAY_SIZE(stack_array
) + i
];
385 pr_info("out-of-bounds on stack\n");
389 static noinline
void __init
ksize_unpoisons_memory(void)
392 size_t size
= 123, real_size
= size
;
394 pr_info("ksize() unpoisons the whole allocated chunk\n");
395 ptr
= kmalloc(size
, GFP_KERNEL
);
397 pr_err("Allocation failed\n");
400 real_size
= ksize(ptr
);
401 /* This access doesn't trigger an error. */
404 ptr
[real_size
] = 'y';
408 static noinline
void __init
copy_user_test(void)
411 char __user
*usermem
;
415 kmem
= kmalloc(size
, GFP_KERNEL
);
419 usermem
= (char __user
*)vm_mmap(NULL
, 0, PAGE_SIZE
,
420 PROT_READ
| PROT_WRITE
| PROT_EXEC
,
421 MAP_ANONYMOUS
| MAP_PRIVATE
, 0);
422 if (IS_ERR(usermem
)) {
423 pr_err("Failed to allocate user memory\n");
428 pr_info("out-of-bounds in copy_from_user()\n");
429 unused
= copy_from_user(kmem
, usermem
, size
+ 1);
431 pr_info("out-of-bounds in copy_to_user()\n");
432 unused
= copy_to_user(usermem
, kmem
, size
+ 1);
434 pr_info("out-of-bounds in __copy_from_user()\n");
435 unused
= __copy_from_user(kmem
, usermem
, size
+ 1);
437 pr_info("out-of-bounds in __copy_to_user()\n");
438 unused
= __copy_to_user(usermem
, kmem
, size
+ 1);
440 pr_info("out-of-bounds in __copy_from_user_inatomic()\n");
441 unused
= __copy_from_user_inatomic(kmem
, usermem
, size
+ 1);
443 pr_info("out-of-bounds in __copy_to_user_inatomic()\n");
444 unused
= __copy_to_user_inatomic(usermem
, kmem
, size
+ 1);
446 pr_info("out-of-bounds in strncpy_from_user()\n");
447 unused
= strncpy_from_user(kmem
, usermem
, size
+ 1);
449 vm_munmap((unsigned long)usermem
, PAGE_SIZE
);
453 static noinline
void __init
use_after_scope_test(void)
455 volatile char *volatile p
;
457 pr_info("use-after-scope on int\n");
466 pr_info("use-after-scope on array\n");
468 char local
[1024] = {0};
476 static int __init
kmalloc_tests_init(void)
479 * Temporarily enable multi-shot mode. Otherwise, we'd only get a
480 * report for the first case.
482 bool multishot
= kasan_save_enable_multi_shot();
486 kmalloc_node_oob_right();
488 kmalloc_pagealloc_oob_right();
490 kmalloc_large_oob_right();
491 kmalloc_oob_krealloc_more();
492 kmalloc_oob_krealloc_less();
494 kmalloc_oob_in_memset();
495 kmalloc_oob_memset_2();
496 kmalloc_oob_memset_4();
497 kmalloc_oob_memset_8();
498 kmalloc_oob_memset_16();
500 kmalloc_uaf_memset();
503 memcg_accounted_kmem_cache();
506 ksize_unpoisons_memory();
508 use_after_scope_test();
510 kasan_restore_multi_shot(multishot
);
515 module_init(kmalloc_tests_init
);
516 MODULE_LICENSE("GPL");