1 // SPDX-License-Identifier: GPL-2.0
3 * This is for all the tests related to logic bugs (e.g. bad dereferences,
4 * bad alignment, bad loops, bad locking, bad scheduling, deep stacks, and
5 * lockups) along with other things that don't fit well into existing LKDTM
9 #include <linux/list.h>
10 #include <linux/sched.h>
11 #include <linux/sched/signal.h>
12 #include <linux/sched/task_stack.h>
13 #include <linux/uaccess.h>
16 struct list_head node
;
20 * Make sure our attempts to over run the kernel stack doesn't trigger
21 * a compiler warning when CONFIG_FRAME_WARN is set. Then make sure we
22 * recurse past the end of THREAD_SIZE by default.
24 #if defined(CONFIG_FRAME_WARN) && (CONFIG_FRAME_WARN > 0)
25 #define REC_STACK_SIZE (CONFIG_FRAME_WARN / 2)
27 #define REC_STACK_SIZE (THREAD_SIZE / 8)
29 #define REC_NUM_DEFAULT ((THREAD_SIZE / REC_STACK_SIZE) * 2)
31 static int recur_count
= REC_NUM_DEFAULT
;
33 static DEFINE_SPINLOCK(lock_me_up
);
35 static int recursive_loop(int remaining
)
37 char buf
[REC_STACK_SIZE
];
39 /* Make sure compiler does not optimize this away. */
40 memset(buf
, (remaining
& 0xff) | 0x1, REC_STACK_SIZE
);
44 return recursive_loop(remaining
- 1);
47 /* If the depth is negative, use the default, otherwise keep parameter. */
48 void __init
lkdtm_bugs_init(int *recur_param
)
51 *recur_param
= recur_count
;
53 recur_count
= *recur_param
;
56 void lkdtm_PANIC(void)
66 static int warn_counter
;
68 void lkdtm_WARNING(void)
70 WARN(1, "Warning message trigger count: %d\n", warn_counter
++);
73 void lkdtm_EXCEPTION(void)
75 *((volatile int *) 0) = 0;
84 void lkdtm_OVERFLOW(void)
86 (void) recursive_loop(recur_count
);
89 static noinline
void __lkdtm_CORRUPT_STACK(void *stack
)
91 memset(stack
, '\xff', 64);
94 /* This should trip the stack canary, not corrupt the return address. */
95 noinline
void lkdtm_CORRUPT_STACK(void)
97 /* Use default char array length that triggers stack protection. */
98 char data
[8] __aligned(sizeof(void *));
100 __lkdtm_CORRUPT_STACK(&data
);
102 pr_info("Corrupted stack containing char array ...\n");
105 /* Same as above but will only get a canary with -fstack-protector-strong */
106 noinline
void lkdtm_CORRUPT_STACK_STRONG(void)
109 unsigned short shorts
[4];
111 } data
__aligned(sizeof(void *));
113 __lkdtm_CORRUPT_STACK(&data
);
115 pr_info("Corrupted stack containing union ...\n");
118 void lkdtm_UNALIGNED_LOAD_STORE_WRITE(void)
120 static u8 data
[5] __attribute__((aligned(4))) = {1, 2, 3, 4, 5};
122 u32 val
= 0x12345678;
124 p
= (u32
*)(data
+ 1);
130 void lkdtm_SOFTLOCKUP(void)
137 void lkdtm_HARDLOCKUP(void)
144 void lkdtm_SPINLOCKUP(void)
146 /* Must be called twice to trigger. */
147 spin_lock(&lock_me_up
);
148 /* Let sparse know we intended to exit holding the lock. */
149 __release(&lock_me_up
);
152 void lkdtm_HUNG_TASK(void)
154 set_current_state(TASK_UNINTERRUPTIBLE
);
158 void lkdtm_CORRUPT_LIST_ADD(void)
161 * Initially, an empty list via LIST_HEAD:
162 * test_head.next = &test_head
163 * test_head.prev = &test_head
165 LIST_HEAD(test_head
);
166 struct lkdtm_list good
, bad
;
167 void *target
[2] = { };
168 void *redirection
= &target
;
170 pr_info("attempting good list addition\n");
173 * Adding to the list performs these actions:
174 * test_head.next->prev = &good.node
175 * good.node.next = test_head.next
176 * good.node.prev = test_head
177 * test_head.next = good.node
179 list_add(&good
.node
, &test_head
);
181 pr_info("attempting corrupted list addition\n");
183 * In simulating this "write what where" primitive, the "what" is
184 * the address of &bad.node, and the "where" is the address held
187 test_head
.next
= redirection
;
188 list_add(&bad
.node
, &test_head
);
190 if (target
[0] == NULL
&& target
[1] == NULL
)
191 pr_err("Overwrite did not happen, but no BUG?!\n");
193 pr_err("list_add() corruption not detected!\n");
196 void lkdtm_CORRUPT_LIST_DEL(void)
198 LIST_HEAD(test_head
);
199 struct lkdtm_list item
;
200 void *target
[2] = { };
201 void *redirection
= &target
;
203 list_add(&item
.node
, &test_head
);
205 pr_info("attempting good list removal\n");
206 list_del(&item
.node
);
208 pr_info("attempting corrupted list removal\n");
209 list_add(&item
.node
, &test_head
);
211 /* As with the list_add() test above, this corrupts "next". */
212 item
.node
.next
= redirection
;
213 list_del(&item
.node
);
215 if (target
[0] == NULL
&& target
[1] == NULL
)
216 pr_err("Overwrite did not happen, but no BUG?!\n");
218 pr_err("list_del() corruption not detected!\n");
221 /* Test if unbalanced set_fs(KERNEL_DS)/set_fs(USER_DS) check exists. */
222 void lkdtm_CORRUPT_USER_DS(void)
224 pr_info("setting bad task size limit\n");
227 /* Make sure we do not keep running with a KERNEL_DS! */
228 force_sig(SIGKILL
, current
);
231 /* Test that VMAP_STACK is actually allocating with a leading guard page */
232 void lkdtm_STACK_GUARD_PAGE_LEADING(void)
234 const unsigned char *stack
= task_stack_page(current
);
235 const unsigned char *ptr
= stack
- 1;
236 volatile unsigned char byte
;
238 pr_info("attempting bad read from page below current stack\n");
242 pr_err("FAIL: accessed page before stack!\n");
245 /* Test that VMAP_STACK is actually allocating with a trailing guard page */
246 void lkdtm_STACK_GUARD_PAGE_TRAILING(void)
248 const unsigned char *stack
= task_stack_page(current
);
249 const unsigned char *ptr
= stack
+ THREAD_SIZE
;
250 volatile unsigned char byte
;
252 pr_info("attempting bad read from page above current stack\n");
256 pr_err("FAIL: accessed page after stack!\n");