blob: 8e00e2e992d1f571c7f7b693a0939d6c02a19049 [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 <[email protected]>
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 <[email protected]>
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,
Laura Abbottbc0b8cc2016-02-25 16:36:42 -080095 CT_READ_AFTER_FREE,
Laura Abbott920d4512016-02-25 16:36:44 -080096 CT_WRITE_BUDDY_AFTER_FREE,
97 CT_READ_BUDDY_AFTER_FREE,
Namhyung Kim93e2f582010-10-26 14:22:40 -070098 CT_SOFTLOCKUP,
99 CT_HARDLOCKUP,
Kees Cook274a5852013-07-08 10:01:32 -0700100 CT_SPINLOCKUP,
Namhyung Kim93e2f582010-10-26 14:22:40 -0700101 CT_HUNG_TASK,
Kees Cookcc33c5372013-07-08 10:01:33 -0700102 CT_EXEC_DATA,
103 CT_EXEC_STACK,
104 CT_EXEC_KMALLOC,
105 CT_EXEC_VMALLOC,
Kees Cook9ae113c2013-10-24 09:25:57 -0700106 CT_EXEC_USERSPACE,
107 CT_ACCESS_USERSPACE,
108 CT_WRITE_RO,
Kees Cookdc2b9e92014-02-09 13:48:48 -0800109 CT_WRITE_KERN,
Ankita Garg8bb31b92006-10-02 02:17:36 -0700110};
111
112static char* cp_name[] = {
113 "INT_HARDWARE_ENTRY",
114 "INT_HW_IRQ_EN",
115 "INT_TASKLET_ENTRY",
116 "FS_DEVRW",
117 "MEM_SWAPOUT",
118 "TIMERADD",
119 "SCSI_DISPATCH_CMD",
Simon Kagstrom0347af42010-03-05 13:42:49 -0800120 "IDE_CORE_CP",
121 "DIRECT",
Ankita Garg8bb31b92006-10-02 02:17:36 -0700122};
123
124static char* cp_type[] = {
125 "PANIC",
126 "BUG",
Kees Cook65892722013-07-08 10:01:31 -0700127 "WARNING",
Ankita Garg8bb31b92006-10-02 02:17:36 -0700128 "EXCEPTION",
129 "LOOP",
Simon Kagstrom0347af42010-03-05 13:42:49 -0800130 "OVERFLOW",
131 "CORRUPT_STACK",
132 "UNALIGNED_LOAD_STORE_WRITE",
133 "OVERWRITE_ALLOCATION",
134 "WRITE_AFTER_FREE",
Laura Abbottbc0b8cc2016-02-25 16:36:42 -0800135 "READ_AFTER_FREE",
Laura Abbott920d4512016-02-25 16:36:44 -0800136 "WRITE_BUDDY_AFTER_FREE",
137 "READ_BUDDY_AFTER_FREE",
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700138 "SOFTLOCKUP",
139 "HARDLOCKUP",
Kees Cook274a5852013-07-08 10:01:32 -0700140 "SPINLOCKUP",
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700141 "HUNG_TASK",
Kees Cookcc33c5372013-07-08 10:01:33 -0700142 "EXEC_DATA",
143 "EXEC_STACK",
144 "EXEC_KMALLOC",
145 "EXEC_VMALLOC",
Kees Cook9ae113c2013-10-24 09:25:57 -0700146 "EXEC_USERSPACE",
147 "ACCESS_USERSPACE",
148 "WRITE_RO",
Kees Cookdc2b9e92014-02-09 13:48:48 -0800149 "WRITE_KERN",
Ankita Garg8bb31b92006-10-02 02:17:36 -0700150};
151
152static struct jprobe lkdtm;
153
154static int lkdtm_parse_commandline(void);
155static void lkdtm_handler(void);
156
Al Viroec1c6202007-02-09 16:05:17 +0000157static char* cpoint_name;
158static char* cpoint_type;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700159static int cpoint_count = DEFAULT_COUNT;
160static int recur_count = REC_NUM_DEFAULT;
161
Namhyung Kim93e2f582010-10-26 14:22:40 -0700162static enum cname cpoint = CN_INVALID;
163static enum ctype cptype = CT_NONE;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700164static int count = DEFAULT_COUNT;
Josh Huntaa2c96d2011-06-27 16:18:08 -0700165static DEFINE_SPINLOCK(count_lock);
Kees Cook274a5852013-07-08 10:01:32 -0700166static DEFINE_SPINLOCK(lock_me_up);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700167
Kees Cookcc33c5372013-07-08 10:01:33 -0700168static u8 data_area[EXEC_SIZE];
169
Kees Cook9ae113c2013-10-24 09:25:57 -0700170static const unsigned long rodata = 0xAA55AA55;
171
Ankita Garg8bb31b92006-10-02 02:17:36 -0700172module_param(recur_count, int, 0644);
Kees Cook7d196ac2013-10-24 09:25:39 -0700173MODULE_PARM_DESC(recur_count, " Recursion level for the stack overflow test");
Rusty Russelldca41302010-08-11 23:04:21 -0600174module_param(cpoint_name, charp, 0444);
Randy Dunlap5d861d92006-11-02 22:07:06 -0800175MODULE_PARM_DESC(cpoint_name, " Crash Point, where kernel is to be crashed");
Rusty Russelldca41302010-08-11 23:04:21 -0600176module_param(cpoint_type, charp, 0444);
Randy Dunlap5d861d92006-11-02 22:07:06 -0800177MODULE_PARM_DESC(cpoint_type, " Crash Point Type, action to be taken on "\
178 "hitting the crash point");
179module_param(cpoint_count, int, 0644);
180MODULE_PARM_DESC(cpoint_count, " Crash Point Count, number of times the "\
181 "crash point is to be hit to trigger action");
Ankita Garg8bb31b92006-10-02 02:17:36 -0700182
Adrian Bunk21181162008-02-06 01:36:50 -0800183static unsigned int jp_do_irq(unsigned int irq)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700184{
185 lkdtm_handler();
186 jprobe_return();
187 return 0;
188}
189
Adrian Bunk21181162008-02-06 01:36:50 -0800190static irqreturn_t jp_handle_irq_event(unsigned int irq,
191 struct irqaction *action)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700192{
193 lkdtm_handler();
194 jprobe_return();
195 return 0;
196}
197
Adrian Bunk21181162008-02-06 01:36:50 -0800198static void jp_tasklet_action(struct softirq_action *a)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700199{
200 lkdtm_handler();
201 jprobe_return();
202}
203
Adrian Bunk21181162008-02-06 01:36:50 -0800204static void jp_ll_rw_block(int rw, int nr, struct buffer_head *bhs[])
Ankita Garg8bb31b92006-10-02 02:17:36 -0700205{
206 lkdtm_handler();
207 jprobe_return();
208}
209
210struct scan_control;
211
Adrian Bunk21181162008-02-06 01:36:50 -0800212static unsigned long jp_shrink_inactive_list(unsigned long max_scan,
213 struct zone *zone,
214 struct scan_control *sc)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700215{
216 lkdtm_handler();
217 jprobe_return();
218 return 0;
219}
220
Adrian Bunk21181162008-02-06 01:36:50 -0800221static int jp_hrtimer_start(struct hrtimer *timer, ktime_t tim,
222 const enum hrtimer_mode mode)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700223{
224 lkdtm_handler();
225 jprobe_return();
226 return 0;
227}
228
Adrian Bunk21181162008-02-06 01:36:50 -0800229static int jp_scsi_dispatch_cmd(struct scsi_cmnd *cmd)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700230{
231 lkdtm_handler();
232 jprobe_return();
233 return 0;
234}
235
236#ifdef CONFIG_IDE
Rashika Kheria44629432013-12-13 12:29:42 +0530237static int jp_generic_ide_ioctl(ide_drive_t *drive, struct file *file,
Ankita Garg8bb31b92006-10-02 02:17:36 -0700238 struct block_device *bdev, unsigned int cmd,
239 unsigned long arg)
240{
241 lkdtm_handler();
242 jprobe_return();
243 return 0;
244}
245#endif
246
Simon Kagstrom0347af42010-03-05 13:42:49 -0800247/* Return the crashpoint number or NONE if the name is invalid */
248static enum ctype parse_cp_type(const char *what, size_t count)
249{
250 int i;
251
252 for (i = 0; i < ARRAY_SIZE(cp_type); i++) {
253 if (!strcmp(what, cp_type[i]))
254 return i + 1;
255 }
256
Namhyung Kim93e2f582010-10-26 14:22:40 -0700257 return CT_NONE;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800258}
259
260static const char *cp_type_to_str(enum ctype type)
261{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700262 if (type == CT_NONE || type < 0 || type > ARRAY_SIZE(cp_type))
Simon Kagstrom0347af42010-03-05 13:42:49 -0800263 return "None";
264
265 return cp_type[type - 1];
266}
267
268static const char *cp_name_to_str(enum cname name)
269{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700270 if (name == CN_INVALID || name < 0 || name > ARRAY_SIZE(cp_name))
Simon Kagstrom0347af42010-03-05 13:42:49 -0800271 return "INVALID";
272
273 return cp_name[name - 1];
274}
275
276
Ankita Garg8bb31b92006-10-02 02:17:36 -0700277static int lkdtm_parse_commandline(void)
278{
279 int i;
Josh Huntaa2c96d2011-06-27 16:18:08 -0700280 unsigned long flags;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700281
Simon Kagstrom0347af42010-03-05 13:42:49 -0800282 if (cpoint_count < 1 || recur_count < 1)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700283 return -EINVAL;
284
Josh Huntaa2c96d2011-06-27 16:18:08 -0700285 spin_lock_irqsave(&count_lock, flags);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700286 count = cpoint_count;
Josh Huntaa2c96d2011-06-27 16:18:08 -0700287 spin_unlock_irqrestore(&count_lock, flags);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700288
Simon Kagstrom0347af42010-03-05 13:42:49 -0800289 /* No special parameters */
290 if (!cpoint_type && !cpoint_name)
291 return 0;
292
293 /* Neither or both of these need to be set */
294 if (!cpoint_type || !cpoint_name)
295 return -EINVAL;
296
297 cptype = parse_cp_type(cpoint_type, strlen(cpoint_type));
Namhyung Kim93e2f582010-10-26 14:22:40 -0700298 if (cptype == CT_NONE)
Simon Kagstrom0347af42010-03-05 13:42:49 -0800299 return -EINVAL;
300
301 for (i = 0; i < ARRAY_SIZE(cp_name); i++) {
302 if (!strcmp(cpoint_name, cp_name[i])) {
303 cpoint = i + 1;
304 return 0;
305 }
306 }
307
308 /* Could not find a valid crash point */
309 return -EINVAL;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700310}
311
Kees Cook7d196ac2013-10-24 09:25:39 -0700312static int recursive_loop(int remaining)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700313{
Kees Cook7d196ac2013-10-24 09:25:39 -0700314 char buf[REC_STACK_SIZE];
Ankita Garg8bb31b92006-10-02 02:17:36 -0700315
Kees Cook7d196ac2013-10-24 09:25:39 -0700316 /* Make sure compiler does not optimize this away. */
317 memset(buf, (remaining & 0xff) | 0x1, REC_STACK_SIZE);
318 if (!remaining)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700319 return 0;
320 else
Kees Cook7d196ac2013-10-24 09:25:39 -0700321 return recursive_loop(remaining - 1);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700322}
323
Kees Cookcc33c5372013-07-08 10:01:33 -0700324static void do_nothing(void)
325{
326 return;
327}
328
Kees Cookdc2b9e92014-02-09 13:48:48 -0800329/* Must immediately follow do_nothing for size calculuations to work out. */
330static void do_overwritten(void)
331{
332 pr_info("do_overwritten wasn't overwritten!\n");
333 return;
334}
335
Kees Cook629c66a2013-10-24 18:05:42 -0700336static noinline void corrupt_stack(void)
337{
338 /* Use default char array length that triggers stack protection. */
339 char data[8];
340
341 memset((void *)data, 0, 64);
342}
343
Kees Cookcc33c5372013-07-08 10:01:33 -0700344static void execute_location(void *dst)
345{
346 void (*func)(void) = dst;
347
Kees Cookaac416f2014-02-09 13:48:47 -0800348 pr_info("attempting ok execution at %p\n", do_nothing);
349 do_nothing();
350
Kees Cookcc33c5372013-07-08 10:01:33 -0700351 memcpy(dst, do_nothing, EXEC_SIZE);
Kees Cookaac416f2014-02-09 13:48:47 -0800352 flush_icache_range((unsigned long)dst, (unsigned long)dst + EXEC_SIZE);
353 pr_info("attempting bad execution at %p\n", func);
Kees Cookcc33c5372013-07-08 10:01:33 -0700354 func();
355}
356
Kees Cook9ae113c2013-10-24 09:25:57 -0700357static void execute_user_location(void *dst)
358{
Kees Cook51236622013-11-11 11:23:49 -0800359 /* Intentionally crossing kernel/user memory boundary. */
Kees Cook9ae113c2013-10-24 09:25:57 -0700360 void (*func)(void) = dst;
361
Kees Cookaac416f2014-02-09 13:48:47 -0800362 pr_info("attempting ok execution at %p\n", do_nothing);
363 do_nothing();
364
Kees Cook51236622013-11-11 11:23:49 -0800365 if (copy_to_user((void __user *)dst, do_nothing, EXEC_SIZE))
Kees Cook9ae113c2013-10-24 09:25:57 -0700366 return;
Kees Cookaac416f2014-02-09 13:48:47 -0800367 flush_icache_range((unsigned long)dst, (unsigned long)dst + EXEC_SIZE);
368 pr_info("attempting bad execution at %p\n", func);
Kees Cook9ae113c2013-10-24 09:25:57 -0700369 func();
370}
371
Simon Kagstrom0347af42010-03-05 13:42:49 -0800372static void lkdtm_do_action(enum ctype which)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700373{
Simon Kagstrom0347af42010-03-05 13:42:49 -0800374 switch (which) {
Namhyung Kim93e2f582010-10-26 14:22:40 -0700375 case CT_PANIC:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800376 panic("dumptest");
377 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700378 case CT_BUG:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800379 BUG();
380 break;
Kees Cook65892722013-07-08 10:01:31 -0700381 case CT_WARNING:
382 WARN_ON(1);
383 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700384 case CT_EXCEPTION:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800385 *((int *) 0) = 0;
386 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700387 case CT_LOOP:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800388 for (;;)
389 ;
390 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700391 case CT_OVERFLOW:
Kees Cook7d196ac2013-10-24 09:25:39 -0700392 (void) recursive_loop(recur_count);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800393 break;
Kees Cook629c66a2013-10-24 18:05:42 -0700394 case CT_CORRUPT_STACK:
395 corrupt_stack();
Simon Kagstrom0347af42010-03-05 13:42:49 -0800396 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700397 case CT_UNALIGNED_LOAD_STORE_WRITE: {
Simon Kagstrom0347af42010-03-05 13:42:49 -0800398 static u8 data[5] __attribute__((aligned(4))) = {1, 2,
399 3, 4, 5};
400 u32 *p;
401 u32 val = 0x12345678;
402
403 p = (u32 *)(data + 1);
404 if (*p == 0)
405 val = 0x87654321;
406 *p = val;
407 break;
408 }
Namhyung Kim93e2f582010-10-26 14:22:40 -0700409 case CT_OVERWRITE_ALLOCATION: {
Simon Kagstrom0347af42010-03-05 13:42:49 -0800410 size_t len = 1020;
411 u32 *data = kmalloc(len, GFP_KERNEL);
412
413 data[1024 / sizeof(u32)] = 0x12345678;
414 kfree(data);
415 break;
416 }
Namhyung Kim93e2f582010-10-26 14:22:40 -0700417 case CT_WRITE_AFTER_FREE: {
Laura Abbott250a8982016-02-25 16:36:43 -0800418 int *base;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800419 size_t len = 1024;
Laura Abbott250a8982016-02-25 16:36:43 -0800420 /*
421 * The slub allocator uses the first word to store the free
422 * pointer in some configurations. Use the middle of the
423 * allocation to avoid running into the freelist
424 */
425 size_t offset = (len / sizeof(*base)) / 2;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800426
Laura Abbott250a8982016-02-25 16:36:43 -0800427 base = kmalloc(len, GFP_KERNEL);
428 pr_info("Allocated memory %p-%p\n", base, &base[offset * 2]);
429 kfree(base);
430 pr_info("Attempting bad write to freed memory at %p\n",
431 &base[offset]);
432 base[offset] = 0x0abcdef0;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800433 break;
434 }
Laura Abbottbc0b8cc2016-02-25 16:36:42 -0800435 case CT_READ_AFTER_FREE: {
436 int *base, *val, saw;
437 size_t len = 1024;
438 /*
439 * The slub allocator uses the first word to store the free
440 * pointer in some configurations. Use the middle of the
441 * allocation to avoid running into the freelist
442 */
443 size_t offset = (len / sizeof(*base)) / 2;
444
445 base = kmalloc(len, GFP_KERNEL);
446 if (!base)
447 break;
448
449 val = kmalloc(len, GFP_KERNEL);
450 if (!val)
451 break;
452
453 *val = 0x12345678;
454 base[offset] = *val;
455 pr_info("Value in memory before free: %x\n", base[offset]);
456
457 kfree(base);
458
459 pr_info("Attempting bad read from freed memory\n");
460 saw = base[offset];
461 if (saw != *val) {
462 /* Good! Poisoning happened, so declare a win. */
463 pr_info("Memory correctly poisoned, calling BUG\n");
464 BUG();
465 }
466 pr_info("Memory was not poisoned\n");
467
468 kfree(val);
469 break;
470 }
Laura Abbott920d4512016-02-25 16:36:44 -0800471 case CT_WRITE_BUDDY_AFTER_FREE: {
472 unsigned long p = __get_free_page(GFP_KERNEL);
473 if (!p)
474 break;
475 pr_info("Writing to the buddy page before free\n");
476 memset((void *)p, 0x3, PAGE_SIZE);
477 free_page(p);
478 schedule();
479 pr_info("Attempting bad write to the buddy page after free\n");
480 memset((void *)p, 0x78, PAGE_SIZE);
481 break;
482 }
483 case CT_READ_BUDDY_AFTER_FREE: {
484 unsigned long p = __get_free_page(GFP_KERNEL);
485 int saw, *val = kmalloc(1024, GFP_KERNEL);
486 int *base;
487
488 if (!p)
489 break;
490
491 if (!val)
492 break;
493
494 base = (int *)p;
495
496 *val = 0x12345678;
497 base[0] = *val;
498 pr_info("Value in memory before free: %x\n", base[0]);
499 free_page(p);
500 pr_info("Attempting to read from freed memory\n");
501 saw = base[0];
502 if (saw != *val) {
503 /* Good! Poisoning happened, so declare a win. */
504 pr_info("Buddy page correctly poisoned, calling BUG\n");
505 BUG();
506 }
507 pr_info("Buddy page was not poisoned\n");
508
509 kfree(val);
510 break;
511 }
Namhyung Kim93e2f582010-10-26 14:22:40 -0700512 case CT_SOFTLOCKUP:
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700513 preempt_disable();
514 for (;;)
515 cpu_relax();
516 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700517 case CT_HARDLOCKUP:
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700518 local_irq_disable();
519 for (;;)
520 cpu_relax();
521 break;
Kees Cook274a5852013-07-08 10:01:32 -0700522 case CT_SPINLOCKUP:
523 /* Must be called twice to trigger. */
524 spin_lock(&lock_me_up);
Kees Cook51236622013-11-11 11:23:49 -0800525 /* Let sparse know we intended to exit holding the lock. */
526 __release(&lock_me_up);
Kees Cook274a5852013-07-08 10:01:32 -0700527 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700528 case CT_HUNG_TASK:
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700529 set_current_state(TASK_UNINTERRUPTIBLE);
530 schedule();
531 break;
Kees Cookcc33c5372013-07-08 10:01:33 -0700532 case CT_EXEC_DATA:
533 execute_location(data_area);
534 break;
535 case CT_EXEC_STACK: {
536 u8 stack_area[EXEC_SIZE];
537 execute_location(stack_area);
538 break;
539 }
540 case CT_EXEC_KMALLOC: {
541 u32 *kmalloc_area = kmalloc(EXEC_SIZE, GFP_KERNEL);
542 execute_location(kmalloc_area);
543 kfree(kmalloc_area);
544 break;
545 }
546 case CT_EXEC_VMALLOC: {
547 u32 *vmalloc_area = vmalloc(EXEC_SIZE);
548 execute_location(vmalloc_area);
549 vfree(vmalloc_area);
550 break;
551 }
Kees Cook9ae113c2013-10-24 09:25:57 -0700552 case CT_EXEC_USERSPACE: {
553 unsigned long user_addr;
554
555 user_addr = vm_mmap(NULL, 0, PAGE_SIZE,
556 PROT_READ | PROT_WRITE | PROT_EXEC,
557 MAP_ANONYMOUS | MAP_PRIVATE, 0);
558 if (user_addr >= TASK_SIZE) {
559 pr_warn("Failed to allocate user memory\n");
560 return;
561 }
562 execute_user_location((void *)user_addr);
563 vm_munmap(user_addr, PAGE_SIZE);
564 break;
565 }
566 case CT_ACCESS_USERSPACE: {
Stephen Smalley2cb202c2015-10-27 16:47:53 -0400567 unsigned long user_addr, tmp = 0;
Kees Cook9ae113c2013-10-24 09:25:57 -0700568 unsigned long *ptr;
569
570 user_addr = vm_mmap(NULL, 0, PAGE_SIZE,
571 PROT_READ | PROT_WRITE | PROT_EXEC,
572 MAP_ANONYMOUS | MAP_PRIVATE, 0);
573 if (user_addr >= TASK_SIZE) {
574 pr_warn("Failed to allocate user memory\n");
575 return;
576 }
577
Stephen Smalley2cb202c2015-10-27 16:47:53 -0400578 if (copy_to_user((void __user *)user_addr, &tmp, sizeof(tmp))) {
579 pr_warn("copy_to_user failed\n");
580 vm_munmap(user_addr, PAGE_SIZE);
581 return;
582 }
583
Kees Cook9ae113c2013-10-24 09:25:57 -0700584 ptr = (unsigned long *)user_addr;
Kees Cookaac416f2014-02-09 13:48:47 -0800585
586 pr_info("attempting bad read at %p\n", ptr);
Kees Cook9ae113c2013-10-24 09:25:57 -0700587 tmp = *ptr;
588 tmp += 0xc0dec0de;
Kees Cookaac416f2014-02-09 13:48:47 -0800589
590 pr_info("attempting bad write at %p\n", ptr);
Kees Cook9ae113c2013-10-24 09:25:57 -0700591 *ptr = tmp;
592
593 vm_munmap(user_addr, PAGE_SIZE);
594
595 break;
596 }
597 case CT_WRITE_RO: {
598 unsigned long *ptr;
599
600 ptr = (unsigned long *)&rodata;
Kees Cookaac416f2014-02-09 13:48:47 -0800601
602 pr_info("attempting bad write at %p\n", ptr);
Kees Cook9ae113c2013-10-24 09:25:57 -0700603 *ptr ^= 0xabcd1234;
604
605 break;
606 }
Kees Cookdc2b9e92014-02-09 13:48:48 -0800607 case CT_WRITE_KERN: {
608 size_t size;
609 unsigned char *ptr;
610
611 size = (unsigned long)do_overwritten -
612 (unsigned long)do_nothing;
613 ptr = (unsigned char *)do_overwritten;
614
615 pr_info("attempting bad %zu byte write at %p\n", size, ptr);
616 memcpy(ptr, (unsigned char *)do_nothing, size);
617 flush_icache_range((unsigned long)ptr,
618 (unsigned long)(ptr + size));
619
620 do_overwritten();
621 break;
622 }
Namhyung Kim93e2f582010-10-26 14:22:40 -0700623 case CT_NONE:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800624 default:
625 break;
626 }
627
628}
629
630static void lkdtm_handler(void)
631{
Josh Huntaa2c96d2011-06-27 16:18:08 -0700632 unsigned long flags;
Cong Wang92618182012-02-03 15:37:15 -0800633 bool do_it = false;
Josh Huntaa2c96d2011-06-27 16:18:08 -0700634
635 spin_lock_irqsave(&count_lock, flags);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800636 count--;
Kees Cookfeac6e22014-02-09 13:48:46 -0800637 pr_info("Crash point %s of type %s hit, trigger in %d rounds\n",
638 cp_name_to_str(cpoint), cp_type_to_str(cptype), count);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700639
640 if (count == 0) {
Cong Wang92618182012-02-03 15:37:15 -0800641 do_it = true;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700642 count = cpoint_count;
643 }
Josh Huntaa2c96d2011-06-27 16:18:08 -0700644 spin_unlock_irqrestore(&count_lock, flags);
Cong Wang92618182012-02-03 15:37:15 -0800645
646 if (do_it)
647 lkdtm_do_action(cptype);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700648}
649
Simon Kagstrom0347af42010-03-05 13:42:49 -0800650static int lkdtm_register_cpoint(enum cname which)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700651{
652 int ret;
653
Namhyung Kim93e2f582010-10-26 14:22:40 -0700654 cpoint = CN_INVALID;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800655 if (lkdtm.entry != NULL)
656 unregister_jprobe(&lkdtm);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700657
Simon Kagstrom0347af42010-03-05 13:42:49 -0800658 switch (which) {
Namhyung Kim93e2f582010-10-26 14:22:40 -0700659 case CN_DIRECT:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800660 lkdtm_do_action(cptype);
661 return 0;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700662 case CN_INT_HARDWARE_ENTRY:
M. Mohan Kumarf58f2fa2009-09-22 16:43:29 -0700663 lkdtm.kp.symbol_name = "do_IRQ";
Ankita Garg8bb31b92006-10-02 02:17:36 -0700664 lkdtm.entry = (kprobe_opcode_t*) jp_do_irq;
665 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700666 case CN_INT_HW_IRQ_EN:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700667 lkdtm.kp.symbol_name = "handle_IRQ_event";
668 lkdtm.entry = (kprobe_opcode_t*) jp_handle_irq_event;
669 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700670 case CN_INT_TASKLET_ENTRY:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700671 lkdtm.kp.symbol_name = "tasklet_action";
672 lkdtm.entry = (kprobe_opcode_t*) jp_tasklet_action;
673 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700674 case CN_FS_DEVRW:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700675 lkdtm.kp.symbol_name = "ll_rw_block";
676 lkdtm.entry = (kprobe_opcode_t*) jp_ll_rw_block;
677 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700678 case CN_MEM_SWAPOUT:
Ankita Garg18a61e42006-11-05 23:52:07 -0800679 lkdtm.kp.symbol_name = "shrink_inactive_list";
680 lkdtm.entry = (kprobe_opcode_t*) jp_shrink_inactive_list;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700681 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700682 case CN_TIMERADD:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700683 lkdtm.kp.symbol_name = "hrtimer_start";
684 lkdtm.entry = (kprobe_opcode_t*) jp_hrtimer_start;
685 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700686 case CN_SCSI_DISPATCH_CMD:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700687 lkdtm.kp.symbol_name = "scsi_dispatch_cmd";
688 lkdtm.entry = (kprobe_opcode_t*) jp_scsi_dispatch_cmd;
689 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700690 case CN_IDE_CORE_CP:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700691#ifdef CONFIG_IDE
692 lkdtm.kp.symbol_name = "generic_ide_ioctl";
693 lkdtm.entry = (kprobe_opcode_t*) jp_generic_ide_ioctl;
694#else
Kees Cookfeac6e22014-02-09 13:48:46 -0800695 pr_info("Crash point not available\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800696 return -EINVAL;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700697#endif
698 break;
699 default:
Kees Cookfeac6e22014-02-09 13:48:46 -0800700 pr_info("Invalid Crash Point\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800701 return -EINVAL;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700702 }
703
Simon Kagstrom0347af42010-03-05 13:42:49 -0800704 cpoint = which;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700705 if ((ret = register_jprobe(&lkdtm)) < 0) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800706 pr_info("Couldn't register jprobe\n");
Namhyung Kim93e2f582010-10-26 14:22:40 -0700707 cpoint = CN_INVALID;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700708 }
709
Simon Kagstrom0347af42010-03-05 13:42:49 -0800710 return ret;
711}
712
713static ssize_t do_register_entry(enum cname which, struct file *f,
714 const char __user *user_buf, size_t count, loff_t *off)
715{
716 char *buf;
717 int err;
718
719 if (count >= PAGE_SIZE)
720 return -EINVAL;
721
722 buf = (char *)__get_free_page(GFP_KERNEL);
723 if (!buf)
724 return -ENOMEM;
725 if (copy_from_user(buf, user_buf, count)) {
726 free_page((unsigned long) buf);
727 return -EFAULT;
728 }
729 /* NULL-terminate and remove enter */
730 buf[count] = '\0';
731 strim(buf);
732
733 cptype = parse_cp_type(buf, count);
734 free_page((unsigned long) buf);
735
Namhyung Kim93e2f582010-10-26 14:22:40 -0700736 if (cptype == CT_NONE)
Simon Kagstrom0347af42010-03-05 13:42:49 -0800737 return -EINVAL;
738
739 err = lkdtm_register_cpoint(which);
740 if (err < 0)
741 return err;
742
743 *off += count;
744
745 return count;
746}
747
748/* Generic read callback that just prints out the available crash types */
749static ssize_t lkdtm_debugfs_read(struct file *f, char __user *user_buf,
750 size_t count, loff_t *off)
751{
752 char *buf;
753 int i, n, out;
754
755 buf = (char *)__get_free_page(GFP_KERNEL);
Alan Cox086ff4b2012-07-30 14:43:24 -0700756 if (buf == NULL)
757 return -ENOMEM;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800758
759 n = snprintf(buf, PAGE_SIZE, "Available crash types:\n");
760 for (i = 0; i < ARRAY_SIZE(cp_type); i++)
761 n += snprintf(buf + n, PAGE_SIZE - n, "%s\n", cp_type[i]);
762 buf[n] = '\0';
763
764 out = simple_read_from_buffer(user_buf, count, off,
765 buf, n);
766 free_page((unsigned long) buf);
767
768 return out;
769}
770
771static int lkdtm_debugfs_open(struct inode *inode, struct file *file)
772{
Ankita Garg8bb31b92006-10-02 02:17:36 -0700773 return 0;
774}
775
Simon Kagstrom0347af42010-03-05 13:42:49 -0800776
777static ssize_t int_hardware_entry(struct file *f, const char __user *buf,
778 size_t count, loff_t *off)
779{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700780 return do_register_entry(CN_INT_HARDWARE_ENTRY, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800781}
782
783static ssize_t int_hw_irq_en(struct file *f, const char __user *buf,
784 size_t count, loff_t *off)
785{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700786 return do_register_entry(CN_INT_HW_IRQ_EN, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800787}
788
789static ssize_t int_tasklet_entry(struct file *f, const char __user *buf,
790 size_t count, loff_t *off)
791{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700792 return do_register_entry(CN_INT_TASKLET_ENTRY, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800793}
794
795static ssize_t fs_devrw_entry(struct file *f, const char __user *buf,
796 size_t count, loff_t *off)
797{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700798 return do_register_entry(CN_FS_DEVRW, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800799}
800
801static ssize_t mem_swapout_entry(struct file *f, const char __user *buf,
802 size_t count, loff_t *off)
803{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700804 return do_register_entry(CN_MEM_SWAPOUT, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800805}
806
807static ssize_t timeradd_entry(struct file *f, const char __user *buf,
808 size_t count, loff_t *off)
809{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700810 return do_register_entry(CN_TIMERADD, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800811}
812
813static ssize_t scsi_dispatch_cmd_entry(struct file *f,
814 const char __user *buf, size_t count, loff_t *off)
815{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700816 return do_register_entry(CN_SCSI_DISPATCH_CMD, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800817}
818
819static ssize_t ide_core_cp_entry(struct file *f, const char __user *buf,
820 size_t count, loff_t *off)
821{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700822 return do_register_entry(CN_IDE_CORE_CP, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800823}
824
825/* Special entry to just crash directly. Available without KPROBEs */
826static ssize_t direct_entry(struct file *f, const char __user *user_buf,
827 size_t count, loff_t *off)
828{
829 enum ctype type;
830 char *buf;
831
832 if (count >= PAGE_SIZE)
833 return -EINVAL;
834 if (count < 1)
835 return -EINVAL;
836
837 buf = (char *)__get_free_page(GFP_KERNEL);
838 if (!buf)
839 return -ENOMEM;
840 if (copy_from_user(buf, user_buf, count)) {
841 free_page((unsigned long) buf);
842 return -EFAULT;
843 }
844 /* NULL-terminate and remove enter */
845 buf[count] = '\0';
846 strim(buf);
847
848 type = parse_cp_type(buf, count);
849 free_page((unsigned long) buf);
Namhyung Kim93e2f582010-10-26 14:22:40 -0700850 if (type == CT_NONE)
Simon Kagstrom0347af42010-03-05 13:42:49 -0800851 return -EINVAL;
852
Kees Cookfeac6e22014-02-09 13:48:46 -0800853 pr_info("Performing direct entry %s\n", cp_type_to_str(type));
Simon Kagstrom0347af42010-03-05 13:42:49 -0800854 lkdtm_do_action(type);
855 *off += count;
856
857 return count;
858}
859
860struct crash_entry {
861 const char *name;
862 const struct file_operations fops;
863};
864
865static const struct crash_entry crash_entries[] = {
866 {"DIRECT", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200867 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800868 .open = lkdtm_debugfs_open,
869 .write = direct_entry} },
870 {"INT_HARDWARE_ENTRY", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200871 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800872 .open = lkdtm_debugfs_open,
873 .write = int_hardware_entry} },
874 {"INT_HW_IRQ_EN", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200875 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800876 .open = lkdtm_debugfs_open,
877 .write = int_hw_irq_en} },
878 {"INT_TASKLET_ENTRY", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200879 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800880 .open = lkdtm_debugfs_open,
881 .write = int_tasklet_entry} },
882 {"FS_DEVRW", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200883 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800884 .open = lkdtm_debugfs_open,
885 .write = fs_devrw_entry} },
886 {"MEM_SWAPOUT", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200887 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800888 .open = lkdtm_debugfs_open,
889 .write = mem_swapout_entry} },
890 {"TIMERADD", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200891 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800892 .open = lkdtm_debugfs_open,
893 .write = timeradd_entry} },
894 {"SCSI_DISPATCH_CMD", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200895 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800896 .open = lkdtm_debugfs_open,
897 .write = scsi_dispatch_cmd_entry} },
898 {"IDE_CORE_CP", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200899 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800900 .open = lkdtm_debugfs_open,
901 .write = ide_core_cp_entry} },
902};
903
904static struct dentry *lkdtm_debugfs_root;
905
906static int __init lkdtm_module_init(void)
907{
908 int ret = -EINVAL;
909 int n_debugfs_entries = 1; /* Assume only the direct entry */
910 int i;
911
912 /* Register debugfs interface */
913 lkdtm_debugfs_root = debugfs_create_dir("provoke-crash", NULL);
914 if (!lkdtm_debugfs_root) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800915 pr_err("creating root dir failed\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800916 return -ENODEV;
917 }
918
919#ifdef CONFIG_KPROBES
920 n_debugfs_entries = ARRAY_SIZE(crash_entries);
921#endif
922
923 for (i = 0; i < n_debugfs_entries; i++) {
924 const struct crash_entry *cur = &crash_entries[i];
925 struct dentry *de;
926
927 de = debugfs_create_file(cur->name, 0644, lkdtm_debugfs_root,
928 NULL, &cur->fops);
929 if (de == NULL) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800930 pr_err("could not create %s\n", cur->name);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800931 goto out_err;
932 }
933 }
934
935 if (lkdtm_parse_commandline() == -EINVAL) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800936 pr_info("Invalid command\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800937 goto out_err;
938 }
939
Namhyung Kim93e2f582010-10-26 14:22:40 -0700940 if (cpoint != CN_INVALID && cptype != CT_NONE) {
Simon Kagstrom0347af42010-03-05 13:42:49 -0800941 ret = lkdtm_register_cpoint(cpoint);
942 if (ret < 0) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800943 pr_info("Invalid crash point %d\n", cpoint);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800944 goto out_err;
945 }
Kees Cookfeac6e22014-02-09 13:48:46 -0800946 pr_info("Crash point %s of type %s registered\n",
947 cpoint_name, cpoint_type);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800948 } else {
Kees Cookfeac6e22014-02-09 13:48:46 -0800949 pr_info("No crash points registered, enable through debugfs\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800950 }
951
952 return 0;
953
954out_err:
955 debugfs_remove_recursive(lkdtm_debugfs_root);
956 return ret;
957}
958
Adrian Bunk21181162008-02-06 01:36:50 -0800959static void __exit lkdtm_module_exit(void)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700960{
Simon Kagstrom0347af42010-03-05 13:42:49 -0800961 debugfs_remove_recursive(lkdtm_debugfs_root);
962
963 unregister_jprobe(&lkdtm);
Kees Cookfeac6e22014-02-09 13:48:46 -0800964 pr_info("Crash point unregistered\n");
Ankita Garg8bb31b92006-10-02 02:17:36 -0700965}
966
967module_init(lkdtm_module_init);
968module_exit(lkdtm_module_exit);
969
970MODULE_LICENSE("GPL");
Terry Chiada869202014-07-02 21:02:25 +0800971MODULE_DESCRIPTION("Kprobe module for testing crash dumps");