sh_eth: fix EESIPR values for SH77{34|63}
[linux/fpc-iii.git] / drivers / misc / lkdtm_bugs.c
blob91edd0b55e5ce99e955708d7c5425515fd7740bd
1 /*
2 * This is for all the tests related to logic bugs (e.g. bad dereferences,
3 * bad alignment, bad loops, bad locking, bad scheduling, deep stacks, and
4 * lockups) along with other things that don't fit well into existing LKDTM
5 * test source files.
6 */
7 #include "lkdtm.h"
8 #include <linux/list.h>
9 #include <linux/sched.h>
11 struct lkdtm_list {
12 struct list_head node;
16 * Make sure our attempts to over run the kernel stack doesn't trigger
17 * a compiler warning when CONFIG_FRAME_WARN is set. Then make sure we
18 * recurse past the end of THREAD_SIZE by default.
20 #if defined(CONFIG_FRAME_WARN) && (CONFIG_FRAME_WARN > 0)
21 #define REC_STACK_SIZE (CONFIG_FRAME_WARN / 2)
22 #else
23 #define REC_STACK_SIZE (THREAD_SIZE / 8)
24 #endif
25 #define REC_NUM_DEFAULT ((THREAD_SIZE / REC_STACK_SIZE) * 2)
27 static int recur_count = REC_NUM_DEFAULT;
29 static DEFINE_SPINLOCK(lock_me_up);
31 static int recursive_loop(int remaining)
33 char buf[REC_STACK_SIZE];
35 /* Make sure compiler does not optimize this away. */
36 memset(buf, (remaining & 0xff) | 0x1, REC_STACK_SIZE);
37 if (!remaining)
38 return 0;
39 else
40 return recursive_loop(remaining - 1);
43 /* If the depth is negative, use the default, otherwise keep parameter. */
44 void __init lkdtm_bugs_init(int *recur_param)
46 if (*recur_param < 0)
47 *recur_param = recur_count;
48 else
49 recur_count = *recur_param;
52 void lkdtm_PANIC(void)
54 panic("dumptest");
57 void lkdtm_BUG(void)
59 BUG();
62 void lkdtm_WARNING(void)
64 WARN_ON(1);
67 void lkdtm_EXCEPTION(void)
69 *((int *) 0) = 0;
72 void lkdtm_LOOP(void)
74 for (;;)
78 void lkdtm_OVERFLOW(void)
80 (void) recursive_loop(recur_count);
83 noinline void lkdtm_CORRUPT_STACK(void)
85 /* Use default char array length that triggers stack protection. */
86 char data[8];
88 memset((void *)data, 'a', 64);
89 pr_info("Corrupted stack with '%16s'...\n", data);
92 void lkdtm_UNALIGNED_LOAD_STORE_WRITE(void)
94 static u8 data[5] __attribute__((aligned(4))) = {1, 2, 3, 4, 5};
95 u32 *p;
96 u32 val = 0x12345678;
98 p = (u32 *)(data + 1);
99 if (*p == 0)
100 val = 0x87654321;
101 *p = val;
104 void lkdtm_SOFTLOCKUP(void)
106 preempt_disable();
107 for (;;)
108 cpu_relax();
111 void lkdtm_HARDLOCKUP(void)
113 local_irq_disable();
114 for (;;)
115 cpu_relax();
118 void lkdtm_SPINLOCKUP(void)
120 /* Must be called twice to trigger. */
121 spin_lock(&lock_me_up);
122 /* Let sparse know we intended to exit holding the lock. */
123 __release(&lock_me_up);
126 void lkdtm_HUNG_TASK(void)
128 set_current_state(TASK_UNINTERRUPTIBLE);
129 schedule();
132 void lkdtm_ATOMIC_UNDERFLOW(void)
134 atomic_t under = ATOMIC_INIT(INT_MIN);
136 pr_info("attempting good atomic increment\n");
137 atomic_inc(&under);
138 atomic_dec(&under);
140 pr_info("attempting bad atomic underflow\n");
141 atomic_dec(&under);
144 void lkdtm_ATOMIC_OVERFLOW(void)
146 atomic_t over = ATOMIC_INIT(INT_MAX);
148 pr_info("attempting good atomic decrement\n");
149 atomic_dec(&over);
150 atomic_inc(&over);
152 pr_info("attempting bad atomic overflow\n");
153 atomic_inc(&over);
156 void lkdtm_CORRUPT_LIST_ADD(void)
159 * Initially, an empty list via LIST_HEAD:
160 * test_head.next = &test_head
161 * test_head.prev = &test_head
163 LIST_HEAD(test_head);
164 struct lkdtm_list good, bad;
165 void *target[2] = { };
166 void *redirection = &target;
168 pr_info("attempting good list addition\n");
171 * Adding to the list performs these actions:
172 * test_head.next->prev = &good.node
173 * good.node.next = test_head.next
174 * good.node.prev = test_head
175 * test_head.next = good.node
177 list_add(&good.node, &test_head);
179 pr_info("attempting corrupted list addition\n");
181 * In simulating this "write what where" primitive, the "what" is
182 * the address of &bad.node, and the "where" is the address held
183 * by "redirection".
185 test_head.next = redirection;
186 list_add(&bad.node, &test_head);
188 if (target[0] == NULL && target[1] == NULL)
189 pr_err("Overwrite did not happen, but no BUG?!\n");
190 else
191 pr_err("list_add() corruption not detected!\n");
194 void lkdtm_CORRUPT_LIST_DEL(void)
196 LIST_HEAD(test_head);
197 struct lkdtm_list item;
198 void *target[2] = { };
199 void *redirection = &target;
201 list_add(&item.node, &test_head);
203 pr_info("attempting good list removal\n");
204 list_del(&item.node);
206 pr_info("attempting corrupted list removal\n");
207 list_add(&item.node, &test_head);
209 /* As with the list_add() test above, this corrupts "next". */
210 item.node.next = redirection;
211 list_del(&item.node);
213 if (target[0] == NULL && target[1] == NULL)
214 pr_err("Overwrite did not happen, but no BUG?!\n");
215 else
216 pr_err("list_del() corruption not detected!\n");