blob: 2a6eaf1122b4e9b742eb3777fb4b6b317c07b201 [file] [log] [blame]
Ankita Garg8bb31b92006-10-02 02:17:36 -07001/*
2 * Kprobe module for testing crash dumps
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * Copyright (C) IBM Corporation, 2006
19 *
20 * Author: Ankita Garg <ankita@in.ibm.com>
21 *
22 * This module induces system failures at predefined crashpoints to
23 * evaluate the reliability of crash dumps obtained using different dumping
24 * solutions.
25 *
26 * It is adapted from the Linux Kernel Dump Test Tool by
27 * Fernando Luis Vazquez Cao <http://lkdtt.sourceforge.net>
28 *
Simon Kagstrom0347af42010-03-05 13:42:49 -080029 * Debugfs support added by Simon Kagstrom <simon.kagstrom@netinsight.net>
Ankita Garg8bb31b92006-10-02 02:17:36 -070030 *
Simon Kagstrom0347af42010-03-05 13:42:49 -080031 * See Documentation/fault-injection/provoke-crashes.txt for instructions
Ankita Garg8bb31b92006-10-02 02:17:36 -070032 */
Kees Cookfeac6e22014-02-09 13:48:46 -080033#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Ankita Garg8bb31b92006-10-02 02:17:36 -070034
35#include <linux/kernel.h>
Randy Dunlap5d861d92006-11-02 22:07:06 -080036#include <linux/fs.h>
Ankita Garg8bb31b92006-10-02 02:17:36 -070037#include <linux/module.h>
Randy Dunlap5d861d92006-11-02 22:07:06 -080038#include <linux/buffer_head.h>
Ankita Garg8bb31b92006-10-02 02:17:36 -070039#include <linux/kprobes.h>
Randy Dunlap5d861d92006-11-02 22:07:06 -080040#include <linux/list.h>
Ankita Garg8bb31b92006-10-02 02:17:36 -070041#include <linux/init.h>
Ankita Garg8bb31b92006-10-02 02:17:36 -070042#include <linux/interrupt.h>
Randy Dunlap5d861d92006-11-02 22:07:06 -080043#include <linux/hrtimer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Ankita Garg8bb31b92006-10-02 02:17:36 -070045#include <scsi/scsi_cmnd.h>
Simon Kagstrom0347af42010-03-05 13:42:49 -080046#include <linux/debugfs.h>
Kees Cookcc33c5372013-07-08 10:01:33 -070047#include <linux/vmalloc.h>
Kees Cook9ae113c2013-10-24 09:25:57 -070048#include <linux/mman.h>
Kees Cook1bc9fac2014-02-14 15:58:50 -080049#include <asm/cacheflush.h>
Ankita Garg8bb31b92006-10-02 02:17:36 -070050
51#ifdef CONFIG_IDE
52#include <linux/ide.h>
53#endif
54
Kees Cook7d196ac2013-10-24 09:25:39 -070055/*
56 * Make sure our attempts to over run the kernel stack doesn't trigger
57 * a compiler warning when CONFIG_FRAME_WARN is set. Then make sure we
58 * recurse past the end of THREAD_SIZE by default.
59 */
60#if defined(CONFIG_FRAME_WARN) && (CONFIG_FRAME_WARN > 0)
61#define REC_STACK_SIZE (CONFIG_FRAME_WARN / 2)
62#else
63#define REC_STACK_SIZE (THREAD_SIZE / 8)
64#endif
65#define REC_NUM_DEFAULT ((THREAD_SIZE / REC_STACK_SIZE) * 2)
66
Ankita Garg8bb31b92006-10-02 02:17:36 -070067#define DEFAULT_COUNT 10
Kees Cookcc33c5372013-07-08 10:01:33 -070068#define EXEC_SIZE 64
Ankita Garg8bb31b92006-10-02 02:17:36 -070069
70enum cname {
Namhyung Kim93e2f582010-10-26 14:22:40 -070071 CN_INVALID,
72 CN_INT_HARDWARE_ENTRY,
73 CN_INT_HW_IRQ_EN,
74 CN_INT_TASKLET_ENTRY,
75 CN_FS_DEVRW,
76 CN_MEM_SWAPOUT,
77 CN_TIMERADD,
78 CN_SCSI_DISPATCH_CMD,
79 CN_IDE_CORE_CP,
80 CN_DIRECT,
Ankita Garg8bb31b92006-10-02 02:17:36 -070081};
82
83enum ctype {
Namhyung Kim93e2f582010-10-26 14:22:40 -070084 CT_NONE,
85 CT_PANIC,
86 CT_BUG,
Kees Cook65892722013-07-08 10:01:31 -070087 CT_WARNING,
Namhyung Kim93e2f582010-10-26 14:22:40 -070088 CT_EXCEPTION,
89 CT_LOOP,
90 CT_OVERFLOW,
91 CT_CORRUPT_STACK,
92 CT_UNALIGNED_LOAD_STORE_WRITE,
93 CT_OVERWRITE_ALLOCATION,
94 CT_WRITE_AFTER_FREE,
95 CT_SOFTLOCKUP,
96 CT_HARDLOCKUP,
Kees Cook274a5852013-07-08 10:01:32 -070097 CT_SPINLOCKUP,
Namhyung Kim93e2f582010-10-26 14:22:40 -070098 CT_HUNG_TASK,
Kees Cookcc33c5372013-07-08 10:01:33 -070099 CT_EXEC_DATA,
100 CT_EXEC_STACK,
101 CT_EXEC_KMALLOC,
102 CT_EXEC_VMALLOC,
Kees Cook9ae113c2013-10-24 09:25:57 -0700103 CT_EXEC_USERSPACE,
104 CT_ACCESS_USERSPACE,
105 CT_WRITE_RO,
Kees Cook7cca0712016-02-17 14:41:16 -0800106 CT_WRITE_RO_AFTER_INIT,
Kees Cookdc2b9e92014-02-09 13:48:48 -0800107 CT_WRITE_KERN,
Ankita Garg8bb31b92006-10-02 02:17:36 -0700108};
109
110static char* cp_name[] = {
111 "INT_HARDWARE_ENTRY",
112 "INT_HW_IRQ_EN",
113 "INT_TASKLET_ENTRY",
114 "FS_DEVRW",
115 "MEM_SWAPOUT",
116 "TIMERADD",
117 "SCSI_DISPATCH_CMD",
Simon Kagstrom0347af42010-03-05 13:42:49 -0800118 "IDE_CORE_CP",
119 "DIRECT",
Ankita Garg8bb31b92006-10-02 02:17:36 -0700120};
121
122static char* cp_type[] = {
123 "PANIC",
124 "BUG",
Kees Cook65892722013-07-08 10:01:31 -0700125 "WARNING",
Ankita Garg8bb31b92006-10-02 02:17:36 -0700126 "EXCEPTION",
127 "LOOP",
Simon Kagstrom0347af42010-03-05 13:42:49 -0800128 "OVERFLOW",
129 "CORRUPT_STACK",
130 "UNALIGNED_LOAD_STORE_WRITE",
131 "OVERWRITE_ALLOCATION",
132 "WRITE_AFTER_FREE",
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700133 "SOFTLOCKUP",
134 "HARDLOCKUP",
Kees Cook274a5852013-07-08 10:01:32 -0700135 "SPINLOCKUP",
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700136 "HUNG_TASK",
Kees Cookcc33c5372013-07-08 10:01:33 -0700137 "EXEC_DATA",
138 "EXEC_STACK",
139 "EXEC_KMALLOC",
140 "EXEC_VMALLOC",
Kees Cook9ae113c2013-10-24 09:25:57 -0700141 "EXEC_USERSPACE",
142 "ACCESS_USERSPACE",
143 "WRITE_RO",
Kees Cook7cca0712016-02-17 14:41:16 -0800144 "WRITE_RO_AFTER_INIT",
Kees Cookdc2b9e92014-02-09 13:48:48 -0800145 "WRITE_KERN",
Ankita Garg8bb31b92006-10-02 02:17:36 -0700146};
147
148static struct jprobe lkdtm;
149
150static int lkdtm_parse_commandline(void);
151static void lkdtm_handler(void);
152
Al Viroec1c6202007-02-09 16:05:17 +0000153static char* cpoint_name;
154static char* cpoint_type;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700155static int cpoint_count = DEFAULT_COUNT;
156static int recur_count = REC_NUM_DEFAULT;
157
Namhyung Kim93e2f582010-10-26 14:22:40 -0700158static enum cname cpoint = CN_INVALID;
159static enum ctype cptype = CT_NONE;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700160static int count = DEFAULT_COUNT;
Josh Huntaa2c96d2011-06-27 16:18:08 -0700161static DEFINE_SPINLOCK(count_lock);
Kees Cook274a5852013-07-08 10:01:32 -0700162static DEFINE_SPINLOCK(lock_me_up);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700163
Kees Cookcc33c5372013-07-08 10:01:33 -0700164static u8 data_area[EXEC_SIZE];
165
Kees Cook9ae113c2013-10-24 09:25:57 -0700166static const unsigned long rodata = 0xAA55AA55;
Kees Cook7cca0712016-02-17 14:41:16 -0800167static unsigned long ro_after_init __ro_after_init = 0x55AA5500;
Kees Cook9ae113c2013-10-24 09:25:57 -0700168
Ankita Garg8bb31b92006-10-02 02:17:36 -0700169module_param(recur_count, int, 0644);
Kees Cook7d196ac2013-10-24 09:25:39 -0700170MODULE_PARM_DESC(recur_count, " Recursion level for the stack overflow test");
Rusty Russelldca41302010-08-11 23:04:21 -0600171module_param(cpoint_name, charp, 0444);
Randy Dunlap5d861d92006-11-02 22:07:06 -0800172MODULE_PARM_DESC(cpoint_name, " Crash Point, where kernel is to be crashed");
Rusty Russelldca41302010-08-11 23:04:21 -0600173module_param(cpoint_type, charp, 0444);
Randy Dunlap5d861d92006-11-02 22:07:06 -0800174MODULE_PARM_DESC(cpoint_type, " Crash Point Type, action to be taken on "\
175 "hitting the crash point");
176module_param(cpoint_count, int, 0644);
177MODULE_PARM_DESC(cpoint_count, " Crash Point Count, number of times the "\
178 "crash point is to be hit to trigger action");
Ankita Garg8bb31b92006-10-02 02:17:36 -0700179
Adrian Bunk21181162008-02-06 01:36:50 -0800180static unsigned int jp_do_irq(unsigned int irq)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700181{
182 lkdtm_handler();
183 jprobe_return();
184 return 0;
185}
186
Adrian Bunk21181162008-02-06 01:36:50 -0800187static irqreturn_t jp_handle_irq_event(unsigned int irq,
188 struct irqaction *action)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700189{
190 lkdtm_handler();
191 jprobe_return();
192 return 0;
193}
194
Adrian Bunk21181162008-02-06 01:36:50 -0800195static void jp_tasklet_action(struct softirq_action *a)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700196{
197 lkdtm_handler();
198 jprobe_return();
199}
200
Adrian Bunk21181162008-02-06 01:36:50 -0800201static void jp_ll_rw_block(int rw, int nr, struct buffer_head *bhs[])
Ankita Garg8bb31b92006-10-02 02:17:36 -0700202{
203 lkdtm_handler();
204 jprobe_return();
205}
206
207struct scan_control;
208
Adrian Bunk21181162008-02-06 01:36:50 -0800209static unsigned long jp_shrink_inactive_list(unsigned long max_scan,
210 struct zone *zone,
211 struct scan_control *sc)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700212{
213 lkdtm_handler();
214 jprobe_return();
215 return 0;
216}
217
Adrian Bunk21181162008-02-06 01:36:50 -0800218static int jp_hrtimer_start(struct hrtimer *timer, ktime_t tim,
219 const enum hrtimer_mode mode)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700220{
221 lkdtm_handler();
222 jprobe_return();
223 return 0;
224}
225
Adrian Bunk21181162008-02-06 01:36:50 -0800226static int jp_scsi_dispatch_cmd(struct scsi_cmnd *cmd)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700227{
228 lkdtm_handler();
229 jprobe_return();
230 return 0;
231}
232
233#ifdef CONFIG_IDE
Rashika Kheria44629432013-12-13 12:29:42 +0530234static int jp_generic_ide_ioctl(ide_drive_t *drive, struct file *file,
Ankita Garg8bb31b92006-10-02 02:17:36 -0700235 struct block_device *bdev, unsigned int cmd,
236 unsigned long arg)
237{
238 lkdtm_handler();
239 jprobe_return();
240 return 0;
241}
242#endif
243
Simon Kagstrom0347af42010-03-05 13:42:49 -0800244/* Return the crashpoint number or NONE if the name is invalid */
245static enum ctype parse_cp_type(const char *what, size_t count)
246{
247 int i;
248
249 for (i = 0; i < ARRAY_SIZE(cp_type); i++) {
250 if (!strcmp(what, cp_type[i]))
251 return i + 1;
252 }
253
Namhyung Kim93e2f582010-10-26 14:22:40 -0700254 return CT_NONE;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800255}
256
257static const char *cp_type_to_str(enum ctype type)
258{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700259 if (type == CT_NONE || type < 0 || type > ARRAY_SIZE(cp_type))
Simon Kagstrom0347af42010-03-05 13:42:49 -0800260 return "None";
261
262 return cp_type[type - 1];
263}
264
265static const char *cp_name_to_str(enum cname name)
266{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700267 if (name == CN_INVALID || name < 0 || name > ARRAY_SIZE(cp_name))
Simon Kagstrom0347af42010-03-05 13:42:49 -0800268 return "INVALID";
269
270 return cp_name[name - 1];
271}
272
273
Ankita Garg8bb31b92006-10-02 02:17:36 -0700274static int lkdtm_parse_commandline(void)
275{
276 int i;
Josh Huntaa2c96d2011-06-27 16:18:08 -0700277 unsigned long flags;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700278
Simon Kagstrom0347af42010-03-05 13:42:49 -0800279 if (cpoint_count < 1 || recur_count < 1)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700280 return -EINVAL;
281
Josh Huntaa2c96d2011-06-27 16:18:08 -0700282 spin_lock_irqsave(&count_lock, flags);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700283 count = cpoint_count;
Josh Huntaa2c96d2011-06-27 16:18:08 -0700284 spin_unlock_irqrestore(&count_lock, flags);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700285
Simon Kagstrom0347af42010-03-05 13:42:49 -0800286 /* No special parameters */
287 if (!cpoint_type && !cpoint_name)
288 return 0;
289
290 /* Neither or both of these need to be set */
291 if (!cpoint_type || !cpoint_name)
292 return -EINVAL;
293
294 cptype = parse_cp_type(cpoint_type, strlen(cpoint_type));
Namhyung Kim93e2f582010-10-26 14:22:40 -0700295 if (cptype == CT_NONE)
Simon Kagstrom0347af42010-03-05 13:42:49 -0800296 return -EINVAL;
297
298 for (i = 0; i < ARRAY_SIZE(cp_name); i++) {
299 if (!strcmp(cpoint_name, cp_name[i])) {
300 cpoint = i + 1;
301 return 0;
302 }
303 }
304
305 /* Could not find a valid crash point */
306 return -EINVAL;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700307}
308
Kees Cook7d196ac2013-10-24 09:25:39 -0700309static int recursive_loop(int remaining)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700310{
Kees Cook7d196ac2013-10-24 09:25:39 -0700311 char buf[REC_STACK_SIZE];
Ankita Garg8bb31b92006-10-02 02:17:36 -0700312
Kees Cook7d196ac2013-10-24 09:25:39 -0700313 /* Make sure compiler does not optimize this away. */
314 memset(buf, (remaining & 0xff) | 0x1, REC_STACK_SIZE);
315 if (!remaining)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700316 return 0;
317 else
Kees Cook7d196ac2013-10-24 09:25:39 -0700318 return recursive_loop(remaining - 1);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700319}
320
Kees Cookcc33c5372013-07-08 10:01:33 -0700321static void do_nothing(void)
322{
323 return;
324}
325
Kees Cookdc2b9e92014-02-09 13:48:48 -0800326/* Must immediately follow do_nothing for size calculuations to work out. */
327static void do_overwritten(void)
328{
329 pr_info("do_overwritten wasn't overwritten!\n");
330 return;
331}
332
Kees Cook629c66a2013-10-24 18:05:42 -0700333static noinline void corrupt_stack(void)
334{
335 /* Use default char array length that triggers stack protection. */
336 char data[8];
337
338 memset((void *)data, 0, 64);
339}
340
Kees Cookcc33c5372013-07-08 10:01:33 -0700341static void execute_location(void *dst)
342{
343 void (*func)(void) = dst;
344
Kees Cookaac416f2014-02-09 13:48:47 -0800345 pr_info("attempting ok execution at %p\n", do_nothing);
346 do_nothing();
347
Kees Cookcc33c5372013-07-08 10:01:33 -0700348 memcpy(dst, do_nothing, EXEC_SIZE);
Kees Cookaac416f2014-02-09 13:48:47 -0800349 flush_icache_range((unsigned long)dst, (unsigned long)dst + EXEC_SIZE);
350 pr_info("attempting bad execution at %p\n", func);
Kees Cookcc33c5372013-07-08 10:01:33 -0700351 func();
352}
353
Kees Cook9ae113c2013-10-24 09:25:57 -0700354static void execute_user_location(void *dst)
355{
Kees Cook51236622013-11-11 11:23:49 -0800356 /* Intentionally crossing kernel/user memory boundary. */
Kees Cook9ae113c2013-10-24 09:25:57 -0700357 void (*func)(void) = dst;
358
Kees Cookaac416f2014-02-09 13:48:47 -0800359 pr_info("attempting ok execution at %p\n", do_nothing);
360 do_nothing();
361
Kees Cook51236622013-11-11 11:23:49 -0800362 if (copy_to_user((void __user *)dst, do_nothing, EXEC_SIZE))
Kees Cook9ae113c2013-10-24 09:25:57 -0700363 return;
Kees Cookaac416f2014-02-09 13:48:47 -0800364 flush_icache_range((unsigned long)dst, (unsigned long)dst + EXEC_SIZE);
365 pr_info("attempting bad execution at %p\n", func);
Kees Cook9ae113c2013-10-24 09:25:57 -0700366 func();
367}
368
Simon Kagstrom0347af42010-03-05 13:42:49 -0800369static void lkdtm_do_action(enum ctype which)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700370{
Simon Kagstrom0347af42010-03-05 13:42:49 -0800371 switch (which) {
Namhyung Kim93e2f582010-10-26 14:22:40 -0700372 case CT_PANIC:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800373 panic("dumptest");
374 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700375 case CT_BUG:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800376 BUG();
377 break;
Kees Cook65892722013-07-08 10:01:31 -0700378 case CT_WARNING:
379 WARN_ON(1);
380 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700381 case CT_EXCEPTION:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800382 *((int *) 0) = 0;
383 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700384 case CT_LOOP:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800385 for (;;)
386 ;
387 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700388 case CT_OVERFLOW:
Kees Cook7d196ac2013-10-24 09:25:39 -0700389 (void) recursive_loop(recur_count);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800390 break;
Kees Cook629c66a2013-10-24 18:05:42 -0700391 case CT_CORRUPT_STACK:
392 corrupt_stack();
Simon Kagstrom0347af42010-03-05 13:42:49 -0800393 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700394 case CT_UNALIGNED_LOAD_STORE_WRITE: {
Simon Kagstrom0347af42010-03-05 13:42:49 -0800395 static u8 data[5] __attribute__((aligned(4))) = {1, 2,
396 3, 4, 5};
397 u32 *p;
398 u32 val = 0x12345678;
399
400 p = (u32 *)(data + 1);
401 if (*p == 0)
402 val = 0x87654321;
403 *p = val;
404 break;
405 }
Namhyung Kim93e2f582010-10-26 14:22:40 -0700406 case CT_OVERWRITE_ALLOCATION: {
Simon Kagstrom0347af42010-03-05 13:42:49 -0800407 size_t len = 1020;
408 u32 *data = kmalloc(len, GFP_KERNEL);
409
410 data[1024 / sizeof(u32)] = 0x12345678;
411 kfree(data);
412 break;
413 }
Namhyung Kim93e2f582010-10-26 14:22:40 -0700414 case CT_WRITE_AFTER_FREE: {
Simon Kagstrom0347af42010-03-05 13:42:49 -0800415 size_t len = 1024;
416 u32 *data = kmalloc(len, GFP_KERNEL);
417
418 kfree(data);
419 schedule();
420 memset(data, 0x78, len);
421 break;
422 }
Namhyung Kim93e2f582010-10-26 14:22:40 -0700423 case CT_SOFTLOCKUP:
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700424 preempt_disable();
425 for (;;)
426 cpu_relax();
427 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700428 case CT_HARDLOCKUP:
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700429 local_irq_disable();
430 for (;;)
431 cpu_relax();
432 break;
Kees Cook274a5852013-07-08 10:01:32 -0700433 case CT_SPINLOCKUP:
434 /* Must be called twice to trigger. */
435 spin_lock(&lock_me_up);
Kees Cook51236622013-11-11 11:23:49 -0800436 /* Let sparse know we intended to exit holding the lock. */
437 __release(&lock_me_up);
Kees Cook274a5852013-07-08 10:01:32 -0700438 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700439 case CT_HUNG_TASK:
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700440 set_current_state(TASK_UNINTERRUPTIBLE);
441 schedule();
442 break;
Kees Cookcc33c5372013-07-08 10:01:33 -0700443 case CT_EXEC_DATA:
444 execute_location(data_area);
445 break;
446 case CT_EXEC_STACK: {
447 u8 stack_area[EXEC_SIZE];
448 execute_location(stack_area);
449 break;
450 }
451 case CT_EXEC_KMALLOC: {
452 u32 *kmalloc_area = kmalloc(EXEC_SIZE, GFP_KERNEL);
453 execute_location(kmalloc_area);
454 kfree(kmalloc_area);
455 break;
456 }
457 case CT_EXEC_VMALLOC: {
458 u32 *vmalloc_area = vmalloc(EXEC_SIZE);
459 execute_location(vmalloc_area);
460 vfree(vmalloc_area);
461 break;
462 }
Kees Cook9ae113c2013-10-24 09:25:57 -0700463 case CT_EXEC_USERSPACE: {
464 unsigned long user_addr;
465
466 user_addr = vm_mmap(NULL, 0, PAGE_SIZE,
467 PROT_READ | PROT_WRITE | PROT_EXEC,
468 MAP_ANONYMOUS | MAP_PRIVATE, 0);
469 if (user_addr >= TASK_SIZE) {
470 pr_warn("Failed to allocate user memory\n");
471 return;
472 }
473 execute_user_location((void *)user_addr);
474 vm_munmap(user_addr, PAGE_SIZE);
475 break;
476 }
477 case CT_ACCESS_USERSPACE: {
Stephen Smalley2cb202c2015-10-27 16:47:53 -0400478 unsigned long user_addr, tmp = 0;
Kees Cook9ae113c2013-10-24 09:25:57 -0700479 unsigned long *ptr;
480
481 user_addr = vm_mmap(NULL, 0, PAGE_SIZE,
482 PROT_READ | PROT_WRITE | PROT_EXEC,
483 MAP_ANONYMOUS | MAP_PRIVATE, 0);
484 if (user_addr >= TASK_SIZE) {
485 pr_warn("Failed to allocate user memory\n");
486 return;
487 }
488
Stephen Smalley2cb202c2015-10-27 16:47:53 -0400489 if (copy_to_user((void __user *)user_addr, &tmp, sizeof(tmp))) {
490 pr_warn("copy_to_user failed\n");
491 vm_munmap(user_addr, PAGE_SIZE);
492 return;
493 }
494
Kees Cook9ae113c2013-10-24 09:25:57 -0700495 ptr = (unsigned long *)user_addr;
Kees Cookaac416f2014-02-09 13:48:47 -0800496
497 pr_info("attempting bad read at %p\n", ptr);
Kees Cook9ae113c2013-10-24 09:25:57 -0700498 tmp = *ptr;
499 tmp += 0xc0dec0de;
Kees Cookaac416f2014-02-09 13:48:47 -0800500
501 pr_info("attempting bad write at %p\n", ptr);
Kees Cook9ae113c2013-10-24 09:25:57 -0700502 *ptr = tmp;
503
504 vm_munmap(user_addr, PAGE_SIZE);
505
506 break;
507 }
508 case CT_WRITE_RO: {
Kees Cook7cca0712016-02-17 14:41:16 -0800509 /* Explicitly cast away "const" for the test. */
510 unsigned long *ptr = (unsigned long *)&rodata;
Kees Cook9ae113c2013-10-24 09:25:57 -0700511
Kees Cook7cca0712016-02-17 14:41:16 -0800512 pr_info("attempting bad rodata write at %p\n", ptr);
513 *ptr ^= 0xabcd1234;
Kees Cookaac416f2014-02-09 13:48:47 -0800514
Kees Cook7cca0712016-02-17 14:41:16 -0800515 break;
516 }
517 case CT_WRITE_RO_AFTER_INIT: {
518 unsigned long *ptr = &ro_after_init;
519
520 /*
521 * Verify we were written to during init. Since an Oops
522 * is considered a "success", a failure is to just skip the
523 * real test.
524 */
525 if ((*ptr & 0xAA) != 0xAA) {
526 pr_info("%p was NOT written during init!?\n", ptr);
527 break;
528 }
529
530 pr_info("attempting bad ro_after_init write at %p\n", ptr);
Kees Cook9ae113c2013-10-24 09:25:57 -0700531 *ptr ^= 0xabcd1234;
532
533 break;
534 }
Kees Cookdc2b9e92014-02-09 13:48:48 -0800535 case CT_WRITE_KERN: {
536 size_t size;
537 unsigned char *ptr;
538
539 size = (unsigned long)do_overwritten -
540 (unsigned long)do_nothing;
541 ptr = (unsigned char *)do_overwritten;
542
543 pr_info("attempting bad %zu byte write at %p\n", size, ptr);
544 memcpy(ptr, (unsigned char *)do_nothing, size);
545 flush_icache_range((unsigned long)ptr,
546 (unsigned long)(ptr + size));
547
548 do_overwritten();
549 break;
550 }
Namhyung Kim93e2f582010-10-26 14:22:40 -0700551 case CT_NONE:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800552 default:
553 break;
554 }
555
556}
557
558static void lkdtm_handler(void)
559{
Josh Huntaa2c96d2011-06-27 16:18:08 -0700560 unsigned long flags;
Cong Wang92618182012-02-03 15:37:15 -0800561 bool do_it = false;
Josh Huntaa2c96d2011-06-27 16:18:08 -0700562
563 spin_lock_irqsave(&count_lock, flags);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800564 count--;
Kees Cookfeac6e22014-02-09 13:48:46 -0800565 pr_info("Crash point %s of type %s hit, trigger in %d rounds\n",
566 cp_name_to_str(cpoint), cp_type_to_str(cptype), count);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700567
568 if (count == 0) {
Cong Wang92618182012-02-03 15:37:15 -0800569 do_it = true;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700570 count = cpoint_count;
571 }
Josh Huntaa2c96d2011-06-27 16:18:08 -0700572 spin_unlock_irqrestore(&count_lock, flags);
Cong Wang92618182012-02-03 15:37:15 -0800573
574 if (do_it)
575 lkdtm_do_action(cptype);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700576}
577
Simon Kagstrom0347af42010-03-05 13:42:49 -0800578static int lkdtm_register_cpoint(enum cname which)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700579{
580 int ret;
581
Namhyung Kim93e2f582010-10-26 14:22:40 -0700582 cpoint = CN_INVALID;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800583 if (lkdtm.entry != NULL)
584 unregister_jprobe(&lkdtm);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700585
Simon Kagstrom0347af42010-03-05 13:42:49 -0800586 switch (which) {
Namhyung Kim93e2f582010-10-26 14:22:40 -0700587 case CN_DIRECT:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800588 lkdtm_do_action(cptype);
589 return 0;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700590 case CN_INT_HARDWARE_ENTRY:
M. Mohan Kumarf58f2fa2009-09-22 16:43:29 -0700591 lkdtm.kp.symbol_name = "do_IRQ";
Ankita Garg8bb31b92006-10-02 02:17:36 -0700592 lkdtm.entry = (kprobe_opcode_t*) jp_do_irq;
593 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700594 case CN_INT_HW_IRQ_EN:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700595 lkdtm.kp.symbol_name = "handle_IRQ_event";
596 lkdtm.entry = (kprobe_opcode_t*) jp_handle_irq_event;
597 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700598 case CN_INT_TASKLET_ENTRY:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700599 lkdtm.kp.symbol_name = "tasklet_action";
600 lkdtm.entry = (kprobe_opcode_t*) jp_tasklet_action;
601 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700602 case CN_FS_DEVRW:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700603 lkdtm.kp.symbol_name = "ll_rw_block";
604 lkdtm.entry = (kprobe_opcode_t*) jp_ll_rw_block;
605 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700606 case CN_MEM_SWAPOUT:
Ankita Garg18a61e42006-11-05 23:52:07 -0800607 lkdtm.kp.symbol_name = "shrink_inactive_list";
608 lkdtm.entry = (kprobe_opcode_t*) jp_shrink_inactive_list;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700609 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700610 case CN_TIMERADD:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700611 lkdtm.kp.symbol_name = "hrtimer_start";
612 lkdtm.entry = (kprobe_opcode_t*) jp_hrtimer_start;
613 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700614 case CN_SCSI_DISPATCH_CMD:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700615 lkdtm.kp.symbol_name = "scsi_dispatch_cmd";
616 lkdtm.entry = (kprobe_opcode_t*) jp_scsi_dispatch_cmd;
617 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700618 case CN_IDE_CORE_CP:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700619#ifdef CONFIG_IDE
620 lkdtm.kp.symbol_name = "generic_ide_ioctl";
621 lkdtm.entry = (kprobe_opcode_t*) jp_generic_ide_ioctl;
622#else
Kees Cookfeac6e22014-02-09 13:48:46 -0800623 pr_info("Crash point not available\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800624 return -EINVAL;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700625#endif
626 break;
627 default:
Kees Cookfeac6e22014-02-09 13:48:46 -0800628 pr_info("Invalid Crash Point\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800629 return -EINVAL;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700630 }
631
Simon Kagstrom0347af42010-03-05 13:42:49 -0800632 cpoint = which;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700633 if ((ret = register_jprobe(&lkdtm)) < 0) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800634 pr_info("Couldn't register jprobe\n");
Namhyung Kim93e2f582010-10-26 14:22:40 -0700635 cpoint = CN_INVALID;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700636 }
637
Simon Kagstrom0347af42010-03-05 13:42:49 -0800638 return ret;
639}
640
641static ssize_t do_register_entry(enum cname which, struct file *f,
642 const char __user *user_buf, size_t count, loff_t *off)
643{
644 char *buf;
645 int err;
646
647 if (count >= PAGE_SIZE)
648 return -EINVAL;
649
650 buf = (char *)__get_free_page(GFP_KERNEL);
651 if (!buf)
652 return -ENOMEM;
653 if (copy_from_user(buf, user_buf, count)) {
654 free_page((unsigned long) buf);
655 return -EFAULT;
656 }
657 /* NULL-terminate and remove enter */
658 buf[count] = '\0';
659 strim(buf);
660
661 cptype = parse_cp_type(buf, count);
662 free_page((unsigned long) buf);
663
Namhyung Kim93e2f582010-10-26 14:22:40 -0700664 if (cptype == CT_NONE)
Simon Kagstrom0347af42010-03-05 13:42:49 -0800665 return -EINVAL;
666
667 err = lkdtm_register_cpoint(which);
668 if (err < 0)
669 return err;
670
671 *off += count;
672
673 return count;
674}
675
676/* Generic read callback that just prints out the available crash types */
677static ssize_t lkdtm_debugfs_read(struct file *f, char __user *user_buf,
678 size_t count, loff_t *off)
679{
680 char *buf;
681 int i, n, out;
682
683 buf = (char *)__get_free_page(GFP_KERNEL);
Alan Cox086ff4b2012-07-30 14:43:24 -0700684 if (buf == NULL)
685 return -ENOMEM;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800686
687 n = snprintf(buf, PAGE_SIZE, "Available crash types:\n");
688 for (i = 0; i < ARRAY_SIZE(cp_type); i++)
689 n += snprintf(buf + n, PAGE_SIZE - n, "%s\n", cp_type[i]);
690 buf[n] = '\0';
691
692 out = simple_read_from_buffer(user_buf, count, off,
693 buf, n);
694 free_page((unsigned long) buf);
695
696 return out;
697}
698
699static int lkdtm_debugfs_open(struct inode *inode, struct file *file)
700{
Ankita Garg8bb31b92006-10-02 02:17:36 -0700701 return 0;
702}
703
Simon Kagstrom0347af42010-03-05 13:42:49 -0800704
705static ssize_t int_hardware_entry(struct file *f, const char __user *buf,
706 size_t count, loff_t *off)
707{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700708 return do_register_entry(CN_INT_HARDWARE_ENTRY, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800709}
710
711static ssize_t int_hw_irq_en(struct file *f, const char __user *buf,
712 size_t count, loff_t *off)
713{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700714 return do_register_entry(CN_INT_HW_IRQ_EN, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800715}
716
717static ssize_t int_tasklet_entry(struct file *f, const char __user *buf,
718 size_t count, loff_t *off)
719{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700720 return do_register_entry(CN_INT_TASKLET_ENTRY, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800721}
722
723static ssize_t fs_devrw_entry(struct file *f, const char __user *buf,
724 size_t count, loff_t *off)
725{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700726 return do_register_entry(CN_FS_DEVRW, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800727}
728
729static ssize_t mem_swapout_entry(struct file *f, const char __user *buf,
730 size_t count, loff_t *off)
731{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700732 return do_register_entry(CN_MEM_SWAPOUT, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800733}
734
735static ssize_t timeradd_entry(struct file *f, const char __user *buf,
736 size_t count, loff_t *off)
737{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700738 return do_register_entry(CN_TIMERADD, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800739}
740
741static ssize_t scsi_dispatch_cmd_entry(struct file *f,
742 const char __user *buf, size_t count, loff_t *off)
743{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700744 return do_register_entry(CN_SCSI_DISPATCH_CMD, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800745}
746
747static ssize_t ide_core_cp_entry(struct file *f, const char __user *buf,
748 size_t count, loff_t *off)
749{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700750 return do_register_entry(CN_IDE_CORE_CP, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800751}
752
753/* Special entry to just crash directly. Available without KPROBEs */
754static ssize_t direct_entry(struct file *f, const char __user *user_buf,
755 size_t count, loff_t *off)
756{
757 enum ctype type;
758 char *buf;
759
760 if (count >= PAGE_SIZE)
761 return -EINVAL;
762 if (count < 1)
763 return -EINVAL;
764
765 buf = (char *)__get_free_page(GFP_KERNEL);
766 if (!buf)
767 return -ENOMEM;
768 if (copy_from_user(buf, user_buf, count)) {
769 free_page((unsigned long) buf);
770 return -EFAULT;
771 }
772 /* NULL-terminate and remove enter */
773 buf[count] = '\0';
774 strim(buf);
775
776 type = parse_cp_type(buf, count);
777 free_page((unsigned long) buf);
Namhyung Kim93e2f582010-10-26 14:22:40 -0700778 if (type == CT_NONE)
Simon Kagstrom0347af42010-03-05 13:42:49 -0800779 return -EINVAL;
780
Kees Cookfeac6e22014-02-09 13:48:46 -0800781 pr_info("Performing direct entry %s\n", cp_type_to_str(type));
Simon Kagstrom0347af42010-03-05 13:42:49 -0800782 lkdtm_do_action(type);
783 *off += count;
784
785 return count;
786}
787
788struct crash_entry {
789 const char *name;
790 const struct file_operations fops;
791};
792
793static const struct crash_entry crash_entries[] = {
794 {"DIRECT", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200795 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800796 .open = lkdtm_debugfs_open,
797 .write = direct_entry} },
798 {"INT_HARDWARE_ENTRY", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200799 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800800 .open = lkdtm_debugfs_open,
801 .write = int_hardware_entry} },
802 {"INT_HW_IRQ_EN", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200803 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800804 .open = lkdtm_debugfs_open,
805 .write = int_hw_irq_en} },
806 {"INT_TASKLET_ENTRY", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200807 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800808 .open = lkdtm_debugfs_open,
809 .write = int_tasklet_entry} },
810 {"FS_DEVRW", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200811 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800812 .open = lkdtm_debugfs_open,
813 .write = fs_devrw_entry} },
814 {"MEM_SWAPOUT", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200815 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800816 .open = lkdtm_debugfs_open,
817 .write = mem_swapout_entry} },
818 {"TIMERADD", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200819 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800820 .open = lkdtm_debugfs_open,
821 .write = timeradd_entry} },
822 {"SCSI_DISPATCH_CMD", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200823 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800824 .open = lkdtm_debugfs_open,
825 .write = scsi_dispatch_cmd_entry} },
826 {"IDE_CORE_CP", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200827 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800828 .open = lkdtm_debugfs_open,
829 .write = ide_core_cp_entry} },
830};
831
832static struct dentry *lkdtm_debugfs_root;
833
834static int __init lkdtm_module_init(void)
835{
836 int ret = -EINVAL;
837 int n_debugfs_entries = 1; /* Assume only the direct entry */
838 int i;
839
Kees Cook7cca0712016-02-17 14:41:16 -0800840 /* Make sure we can write to __ro_after_init values during __init */
841 ro_after_init |= 0xAA;
842
Simon Kagstrom0347af42010-03-05 13:42:49 -0800843 /* Register debugfs interface */
844 lkdtm_debugfs_root = debugfs_create_dir("provoke-crash", NULL);
845 if (!lkdtm_debugfs_root) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800846 pr_err("creating root dir failed\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800847 return -ENODEV;
848 }
849
850#ifdef CONFIG_KPROBES
851 n_debugfs_entries = ARRAY_SIZE(crash_entries);
852#endif
853
854 for (i = 0; i < n_debugfs_entries; i++) {
855 const struct crash_entry *cur = &crash_entries[i];
856 struct dentry *de;
857
858 de = debugfs_create_file(cur->name, 0644, lkdtm_debugfs_root,
859 NULL, &cur->fops);
860 if (de == NULL) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800861 pr_err("could not create %s\n", cur->name);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800862 goto out_err;
863 }
864 }
865
866 if (lkdtm_parse_commandline() == -EINVAL) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800867 pr_info("Invalid command\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800868 goto out_err;
869 }
870
Namhyung Kim93e2f582010-10-26 14:22:40 -0700871 if (cpoint != CN_INVALID && cptype != CT_NONE) {
Simon Kagstrom0347af42010-03-05 13:42:49 -0800872 ret = lkdtm_register_cpoint(cpoint);
873 if (ret < 0) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800874 pr_info("Invalid crash point %d\n", cpoint);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800875 goto out_err;
876 }
Kees Cookfeac6e22014-02-09 13:48:46 -0800877 pr_info("Crash point %s of type %s registered\n",
878 cpoint_name, cpoint_type);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800879 } else {
Kees Cookfeac6e22014-02-09 13:48:46 -0800880 pr_info("No crash points registered, enable through debugfs\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800881 }
882
883 return 0;
884
885out_err:
886 debugfs_remove_recursive(lkdtm_debugfs_root);
887 return ret;
888}
889
Adrian Bunk21181162008-02-06 01:36:50 -0800890static void __exit lkdtm_module_exit(void)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700891{
Simon Kagstrom0347af42010-03-05 13:42:49 -0800892 debugfs_remove_recursive(lkdtm_debugfs_root);
893
894 unregister_jprobe(&lkdtm);
Kees Cookfeac6e22014-02-09 13:48:46 -0800895 pr_info("Crash point unregistered\n");
Ankita Garg8bb31b92006-10-02 02:17:36 -0700896}
897
898module_init(lkdtm_module_init);
899module_exit(lkdtm_module_exit);
900
901MODULE_LICENSE("GPL");
Terry Chiada869202014-07-02 21:02:25 +0800902MODULE_DESCRIPTION("Kprobe module for testing crash dumps");