1 // SPDX-License-Identifier: GPL-2.0
2 #include <kunit/test.h>
4 #include <linux/slab.h>
5 #include <linux/module.h>
6 #include <linux/kernel.h>
7 #include "../mm/slab.h"
9 static struct kunit_resource resource;
10 static int slab_errors;
12 static void test_clobber_zone(struct kunit *test)
14 struct kmem_cache *s = kmem_cache_create("TestSlub_RZ_alloc", 64, 0,
16 u8 *p = kmem_cache_alloc(s, GFP_KERNEL);
18 kasan_disable_current();
21 validate_slab_cache(s);
22 KUNIT_EXPECT_EQ(test, 2, slab_errors);
24 kasan_enable_current();
25 kmem_cache_free(s, p);
26 kmem_cache_destroy(s);
30 static void test_next_pointer(struct kunit *test)
32 struct kmem_cache *s = kmem_cache_create("TestSlub_next_ptr_free", 64, 0,
34 u8 *p = kmem_cache_alloc(s, GFP_KERNEL);
36 unsigned long *ptr_addr;
38 kmem_cache_free(s, p);
40 ptr_addr = (unsigned long *)(p + s->offset);
45 * Expecting three errors.
46 * One for the corrupted freechain and the other one for the wrong
47 * count of objects in use. The third error is fixing broken cache.
49 validate_slab_cache(s);
50 KUNIT_EXPECT_EQ(test, 3, slab_errors);
53 * Try to repair corrupted freepointer.
54 * Still expecting two errors. The first for the wrong count
56 * The second error is for fixing broken cache.
61 validate_slab_cache(s);
62 KUNIT_EXPECT_EQ(test, 2, slab_errors);
65 * Previous validation repaired the count of objects in use.
66 * Now expecting no error.
69 validate_slab_cache(s);
70 KUNIT_EXPECT_EQ(test, 0, slab_errors);
72 kmem_cache_destroy(s);
75 static void test_first_word(struct kunit *test)
77 struct kmem_cache *s = kmem_cache_create("TestSlub_1th_word_free", 64, 0,
79 u8 *p = kmem_cache_alloc(s, GFP_KERNEL);
81 kmem_cache_free(s, p);
84 validate_slab_cache(s);
85 KUNIT_EXPECT_EQ(test, 2, slab_errors);
87 kmem_cache_destroy(s);
90 static void test_clobber_50th_byte(struct kunit *test)
92 struct kmem_cache *s = kmem_cache_create("TestSlub_50th_word_free", 64, 0,
94 u8 *p = kmem_cache_alloc(s, GFP_KERNEL);
96 kmem_cache_free(s, p);
99 validate_slab_cache(s);
100 KUNIT_EXPECT_EQ(test, 2, slab_errors);
102 kmem_cache_destroy(s);
106 static void test_clobber_redzone_free(struct kunit *test)
108 struct kmem_cache *s = kmem_cache_create("TestSlub_RZ_free", 64, 0,
109 SLAB_RED_ZONE, NULL);
110 u8 *p = kmem_cache_alloc(s, GFP_KERNEL);
112 kasan_disable_current();
113 kmem_cache_free(s, p);
116 validate_slab_cache(s);
117 KUNIT_EXPECT_EQ(test, 2, slab_errors);
119 kasan_enable_current();
120 kmem_cache_destroy(s);
123 static int test_init(struct kunit *test)
127 kunit_add_named_resource(test, NULL, NULL, &resource,
128 "slab_errors", &slab_errors);
132 static struct kunit_case test_cases[] = {
133 KUNIT_CASE(test_clobber_zone),
136 KUNIT_CASE(test_next_pointer),
137 KUNIT_CASE(test_first_word),
138 KUNIT_CASE(test_clobber_50th_byte),
141 KUNIT_CASE(test_clobber_redzone_free),
145 static struct kunit_suite test_suite = {
148 .test_cases = test_cases,
150 kunit_test_suite(test_suite);
152 MODULE_LICENSE("GPL");