blob: c333e813ed342f2e684b7905eb84e8f53fae8625 [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,
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,
David Windsor5fd9e482015-12-17 00:56:36 -0500110 CT_WRAP_ATOMIC
Ankita Garg8bb31b92006-10-02 02:17:36 -0700111};
112
113static char* cp_name[] = {
114 "INT_HARDWARE_ENTRY",
115 "INT_HW_IRQ_EN",
116 "INT_TASKLET_ENTRY",
117 "FS_DEVRW",
118 "MEM_SWAPOUT",
119 "TIMERADD",
120 "SCSI_DISPATCH_CMD",
Simon Kagstrom0347af42010-03-05 13:42:49 -0800121 "IDE_CORE_CP",
122 "DIRECT",
Ankita Garg8bb31b92006-10-02 02:17:36 -0700123};
124
125static char* cp_type[] = {
126 "PANIC",
127 "BUG",
Kees Cook65892722013-07-08 10:01:31 -0700128 "WARNING",
Ankita Garg8bb31b92006-10-02 02:17:36 -0700129 "EXCEPTION",
130 "LOOP",
Simon Kagstrom0347af42010-03-05 13:42:49 -0800131 "OVERFLOW",
132 "CORRUPT_STACK",
133 "UNALIGNED_LOAD_STORE_WRITE",
134 "OVERWRITE_ALLOCATION",
135 "WRITE_AFTER_FREE",
Laura Abbottbc0b8cc2016-02-25 16:36:42 -0800136 "READ_AFTER_FREE",
Laura Abbott920d4512016-02-25 16:36:44 -0800137 "WRITE_BUDDY_AFTER_FREE",
138 "READ_BUDDY_AFTER_FREE",
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700139 "SOFTLOCKUP",
140 "HARDLOCKUP",
Kees Cook274a5852013-07-08 10:01:32 -0700141 "SPINLOCKUP",
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700142 "HUNG_TASK",
Kees Cookcc33c5372013-07-08 10:01:33 -0700143 "EXEC_DATA",
144 "EXEC_STACK",
145 "EXEC_KMALLOC",
146 "EXEC_VMALLOC",
Kees Cook9ae113c2013-10-24 09:25:57 -0700147 "EXEC_USERSPACE",
148 "ACCESS_USERSPACE",
149 "WRITE_RO",
Kees Cookdc2b9e92014-02-09 13:48:48 -0800150 "WRITE_KERN",
David Windsor5fd9e482015-12-17 00:56:36 -0500151 "WRAP_ATOMIC"
Ankita Garg8bb31b92006-10-02 02:17:36 -0700152};
153
154static struct jprobe lkdtm;
155
156static int lkdtm_parse_commandline(void);
157static void lkdtm_handler(void);
158
Al Viroec1c6202007-02-09 16:05:17 +0000159static char* cpoint_name;
160static char* cpoint_type;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700161static int cpoint_count = DEFAULT_COUNT;
162static int recur_count = REC_NUM_DEFAULT;
163
Namhyung Kim93e2f582010-10-26 14:22:40 -0700164static enum cname cpoint = CN_INVALID;
165static enum ctype cptype = CT_NONE;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700166static int count = DEFAULT_COUNT;
Josh Huntaa2c96d2011-06-27 16:18:08 -0700167static DEFINE_SPINLOCK(count_lock);
Kees Cook274a5852013-07-08 10:01:32 -0700168static DEFINE_SPINLOCK(lock_me_up);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700169
Kees Cookcc33c5372013-07-08 10:01:33 -0700170static u8 data_area[EXEC_SIZE];
171
Kees Cook9ae113c2013-10-24 09:25:57 -0700172static const unsigned long rodata = 0xAA55AA55;
173
Ankita Garg8bb31b92006-10-02 02:17:36 -0700174module_param(recur_count, int, 0644);
Kees Cook7d196ac2013-10-24 09:25:39 -0700175MODULE_PARM_DESC(recur_count, " Recursion level for the stack overflow test");
Rusty Russelldca41302010-08-11 23:04:21 -0600176module_param(cpoint_name, charp, 0444);
Randy Dunlap5d861d92006-11-02 22:07:06 -0800177MODULE_PARM_DESC(cpoint_name, " Crash Point, where kernel is to be crashed");
Rusty Russelldca41302010-08-11 23:04:21 -0600178module_param(cpoint_type, charp, 0444);
Randy Dunlap5d861d92006-11-02 22:07:06 -0800179MODULE_PARM_DESC(cpoint_type, " Crash Point Type, action to be taken on "\
180 "hitting the crash point");
181module_param(cpoint_count, int, 0644);
182MODULE_PARM_DESC(cpoint_count, " Crash Point Count, number of times the "\
183 "crash point is to be hit to trigger action");
Ankita Garg8bb31b92006-10-02 02:17:36 -0700184
Adrian Bunk21181162008-02-06 01:36:50 -0800185static unsigned int jp_do_irq(unsigned int irq)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700186{
187 lkdtm_handler();
188 jprobe_return();
189 return 0;
190}
191
Adrian Bunk21181162008-02-06 01:36:50 -0800192static irqreturn_t jp_handle_irq_event(unsigned int irq,
193 struct irqaction *action)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700194{
195 lkdtm_handler();
196 jprobe_return();
197 return 0;
198}
199
Adrian Bunk21181162008-02-06 01:36:50 -0800200static void jp_tasklet_action(struct softirq_action *a)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700201{
202 lkdtm_handler();
203 jprobe_return();
204}
205
Adrian Bunk21181162008-02-06 01:36:50 -0800206static void jp_ll_rw_block(int rw, int nr, struct buffer_head *bhs[])
Ankita Garg8bb31b92006-10-02 02:17:36 -0700207{
208 lkdtm_handler();
209 jprobe_return();
210}
211
212struct scan_control;
213
Adrian Bunk21181162008-02-06 01:36:50 -0800214static unsigned long jp_shrink_inactive_list(unsigned long max_scan,
215 struct zone *zone,
216 struct scan_control *sc)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700217{
218 lkdtm_handler();
219 jprobe_return();
220 return 0;
221}
222
Adrian Bunk21181162008-02-06 01:36:50 -0800223static int jp_hrtimer_start(struct hrtimer *timer, ktime_t tim,
224 const enum hrtimer_mode mode)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700225{
226 lkdtm_handler();
227 jprobe_return();
228 return 0;
229}
230
Adrian Bunk21181162008-02-06 01:36:50 -0800231static int jp_scsi_dispatch_cmd(struct scsi_cmnd *cmd)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700232{
233 lkdtm_handler();
234 jprobe_return();
235 return 0;
236}
237
238#ifdef CONFIG_IDE
Rashika Kheria44629432013-12-13 12:29:42 +0530239static int jp_generic_ide_ioctl(ide_drive_t *drive, struct file *file,
Ankita Garg8bb31b92006-10-02 02:17:36 -0700240 struct block_device *bdev, unsigned int cmd,
241 unsigned long arg)
242{
243 lkdtm_handler();
244 jprobe_return();
245 return 0;
246}
247#endif
248
Simon Kagstrom0347af42010-03-05 13:42:49 -0800249/* Return the crashpoint number or NONE if the name is invalid */
250static enum ctype parse_cp_type(const char *what, size_t count)
251{
252 int i;
253
254 for (i = 0; i < ARRAY_SIZE(cp_type); i++) {
255 if (!strcmp(what, cp_type[i]))
256 return i + 1;
257 }
258
Namhyung Kim93e2f582010-10-26 14:22:40 -0700259 return CT_NONE;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800260}
261
262static const char *cp_type_to_str(enum ctype type)
263{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700264 if (type == CT_NONE || type < 0 || type > ARRAY_SIZE(cp_type))
Simon Kagstrom0347af42010-03-05 13:42:49 -0800265 return "None";
266
267 return cp_type[type - 1];
268}
269
270static const char *cp_name_to_str(enum cname name)
271{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700272 if (name == CN_INVALID || name < 0 || name > ARRAY_SIZE(cp_name))
Simon Kagstrom0347af42010-03-05 13:42:49 -0800273 return "INVALID";
274
275 return cp_name[name - 1];
276}
277
278
Ankita Garg8bb31b92006-10-02 02:17:36 -0700279static int lkdtm_parse_commandline(void)
280{
281 int i;
Josh Huntaa2c96d2011-06-27 16:18:08 -0700282 unsigned long flags;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700283
Simon Kagstrom0347af42010-03-05 13:42:49 -0800284 if (cpoint_count < 1 || recur_count < 1)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700285 return -EINVAL;
286
Josh Huntaa2c96d2011-06-27 16:18:08 -0700287 spin_lock_irqsave(&count_lock, flags);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700288 count = cpoint_count;
Josh Huntaa2c96d2011-06-27 16:18:08 -0700289 spin_unlock_irqrestore(&count_lock, flags);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700290
Simon Kagstrom0347af42010-03-05 13:42:49 -0800291 /* No special parameters */
292 if (!cpoint_type && !cpoint_name)
293 return 0;
294
295 /* Neither or both of these need to be set */
296 if (!cpoint_type || !cpoint_name)
297 return -EINVAL;
298
299 cptype = parse_cp_type(cpoint_type, strlen(cpoint_type));
Namhyung Kim93e2f582010-10-26 14:22:40 -0700300 if (cptype == CT_NONE)
Simon Kagstrom0347af42010-03-05 13:42:49 -0800301 return -EINVAL;
302
303 for (i = 0; i < ARRAY_SIZE(cp_name); i++) {
304 if (!strcmp(cpoint_name, cp_name[i])) {
305 cpoint = i + 1;
306 return 0;
307 }
308 }
309
310 /* Could not find a valid crash point */
311 return -EINVAL;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700312}
313
Kees Cook7d196ac2013-10-24 09:25:39 -0700314static int recursive_loop(int remaining)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700315{
Kees Cook7d196ac2013-10-24 09:25:39 -0700316 char buf[REC_STACK_SIZE];
Ankita Garg8bb31b92006-10-02 02:17:36 -0700317
Kees Cook7d196ac2013-10-24 09:25:39 -0700318 /* Make sure compiler does not optimize this away. */
319 memset(buf, (remaining & 0xff) | 0x1, REC_STACK_SIZE);
320 if (!remaining)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700321 return 0;
322 else
Kees Cook7d196ac2013-10-24 09:25:39 -0700323 return recursive_loop(remaining - 1);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700324}
325
Kees Cookcc33c5372013-07-08 10:01:33 -0700326static void do_nothing(void)
327{
328 return;
329}
330
Kees Cookdc2b9e92014-02-09 13:48:48 -0800331/* Must immediately follow do_nothing for size calculuations to work out. */
332static void do_overwritten(void)
333{
334 pr_info("do_overwritten wasn't overwritten!\n");
335 return;
336}
337
Kees Cook629c66a2013-10-24 18:05:42 -0700338static noinline void corrupt_stack(void)
339{
340 /* Use default char array length that triggers stack protection. */
341 char data[8];
342
343 memset((void *)data, 0, 64);
344}
345
Kees Cookcc33c5372013-07-08 10:01:33 -0700346static void execute_location(void *dst)
347{
348 void (*func)(void) = dst;
349
Kees Cookaac416f2014-02-09 13:48:47 -0800350 pr_info("attempting ok execution at %p\n", do_nothing);
351 do_nothing();
352
Kees Cookcc33c5372013-07-08 10:01:33 -0700353 memcpy(dst, do_nothing, EXEC_SIZE);
Kees Cookaac416f2014-02-09 13:48:47 -0800354 flush_icache_range((unsigned long)dst, (unsigned long)dst + EXEC_SIZE);
355 pr_info("attempting bad execution at %p\n", func);
Kees Cookcc33c5372013-07-08 10:01:33 -0700356 func();
357}
358
Kees Cook9ae113c2013-10-24 09:25:57 -0700359static void execute_user_location(void *dst)
360{
Kees Cook51236622013-11-11 11:23:49 -0800361 /* Intentionally crossing kernel/user memory boundary. */
Kees Cook9ae113c2013-10-24 09:25:57 -0700362 void (*func)(void) = dst;
363
Kees Cookaac416f2014-02-09 13:48:47 -0800364 pr_info("attempting ok execution at %p\n", do_nothing);
365 do_nothing();
366
Kees Cook51236622013-11-11 11:23:49 -0800367 if (copy_to_user((void __user *)dst, do_nothing, EXEC_SIZE))
Kees Cook9ae113c2013-10-24 09:25:57 -0700368 return;
Kees Cookaac416f2014-02-09 13:48:47 -0800369 flush_icache_range((unsigned long)dst, (unsigned long)dst + EXEC_SIZE);
370 pr_info("attempting bad execution at %p\n", func);
Kees Cook9ae113c2013-10-24 09:25:57 -0700371 func();
372}
373
Simon Kagstrom0347af42010-03-05 13:42:49 -0800374static void lkdtm_do_action(enum ctype which)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700375{
Simon Kagstrom0347af42010-03-05 13:42:49 -0800376 switch (which) {
Namhyung Kim93e2f582010-10-26 14:22:40 -0700377 case CT_PANIC:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800378 panic("dumptest");
379 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700380 case CT_BUG:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800381 BUG();
382 break;
Kees Cook65892722013-07-08 10:01:31 -0700383 case CT_WARNING:
384 WARN_ON(1);
385 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700386 case CT_EXCEPTION:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800387 *((int *) 0) = 0;
388 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700389 case CT_LOOP:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800390 for (;;)
391 ;
392 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700393 case CT_OVERFLOW:
Kees Cook7d196ac2013-10-24 09:25:39 -0700394 (void) recursive_loop(recur_count);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800395 break;
Kees Cook629c66a2013-10-24 18:05:42 -0700396 case CT_CORRUPT_STACK:
397 corrupt_stack();
Simon Kagstrom0347af42010-03-05 13:42:49 -0800398 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700399 case CT_UNALIGNED_LOAD_STORE_WRITE: {
Simon Kagstrom0347af42010-03-05 13:42:49 -0800400 static u8 data[5] __attribute__((aligned(4))) = {1, 2,
401 3, 4, 5};
402 u32 *p;
403 u32 val = 0x12345678;
404
405 p = (u32 *)(data + 1);
406 if (*p == 0)
407 val = 0x87654321;
408 *p = val;
409 break;
410 }
Namhyung Kim93e2f582010-10-26 14:22:40 -0700411 case CT_OVERWRITE_ALLOCATION: {
Simon Kagstrom0347af42010-03-05 13:42:49 -0800412 size_t len = 1020;
413 u32 *data = kmalloc(len, GFP_KERNEL);
414
415 data[1024 / sizeof(u32)] = 0x12345678;
416 kfree(data);
417 break;
418 }
Namhyung Kim93e2f582010-10-26 14:22:40 -0700419 case CT_WRITE_AFTER_FREE: {
Laura Abbott250a8982016-02-25 16:36:43 -0800420 int *base;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800421 size_t len = 1024;
Laura Abbott250a8982016-02-25 16:36:43 -0800422 /*
423 * The slub allocator uses the first word to store the free
424 * pointer in some configurations. Use the middle of the
425 * allocation to avoid running into the freelist
426 */
427 size_t offset = (len / sizeof(*base)) / 2;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800428
Laura Abbott250a8982016-02-25 16:36:43 -0800429 base = kmalloc(len, GFP_KERNEL);
430 pr_info("Allocated memory %p-%p\n", base, &base[offset * 2]);
431 kfree(base);
432 pr_info("Attempting bad write to freed memory at %p\n",
433 &base[offset]);
434 base[offset] = 0x0abcdef0;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800435 break;
436 }
Laura Abbottbc0b8cc2016-02-25 16:36:42 -0800437 case CT_READ_AFTER_FREE: {
438 int *base, *val, saw;
439 size_t len = 1024;
440 /*
441 * The slub allocator uses the first word to store the free
442 * pointer in some configurations. Use the middle of the
443 * allocation to avoid running into the freelist
444 */
445 size_t offset = (len / sizeof(*base)) / 2;
446
447 base = kmalloc(len, GFP_KERNEL);
448 if (!base)
449 break;
450
451 val = kmalloc(len, GFP_KERNEL);
452 if (!val)
453 break;
454
455 *val = 0x12345678;
456 base[offset] = *val;
457 pr_info("Value in memory before free: %x\n", base[offset]);
458
459 kfree(base);
460
461 pr_info("Attempting bad read from freed memory\n");
462 saw = base[offset];
463 if (saw != *val) {
464 /* Good! Poisoning happened, so declare a win. */
465 pr_info("Memory correctly poisoned, calling BUG\n");
466 BUG();
467 }
468 pr_info("Memory was not poisoned\n");
469
470 kfree(val);
471 break;
472 }
Laura Abbott920d4512016-02-25 16:36:44 -0800473 case CT_WRITE_BUDDY_AFTER_FREE: {
474 unsigned long p = __get_free_page(GFP_KERNEL);
475 if (!p)
476 break;
477 pr_info("Writing to the buddy page before free\n");
478 memset((void *)p, 0x3, PAGE_SIZE);
479 free_page(p);
480 schedule();
481 pr_info("Attempting bad write to the buddy page after free\n");
482 memset((void *)p, 0x78, PAGE_SIZE);
483 break;
484 }
485 case CT_READ_BUDDY_AFTER_FREE: {
486 unsigned long p = __get_free_page(GFP_KERNEL);
487 int saw, *val = kmalloc(1024, GFP_KERNEL);
488 int *base;
489
490 if (!p)
491 break;
492
493 if (!val)
494 break;
495
496 base = (int *)p;
497
498 *val = 0x12345678;
499 base[0] = *val;
500 pr_info("Value in memory before free: %x\n", base[0]);
501 free_page(p);
502 pr_info("Attempting to read from freed memory\n");
503 saw = base[0];
504 if (saw != *val) {
505 /* Good! Poisoning happened, so declare a win. */
506 pr_info("Buddy page correctly poisoned, calling BUG\n");
507 BUG();
508 }
509 pr_info("Buddy page was not poisoned\n");
510
511 kfree(val);
512 break;
513 }
Namhyung Kim93e2f582010-10-26 14:22:40 -0700514 case CT_SOFTLOCKUP:
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700515 preempt_disable();
516 for (;;)
517 cpu_relax();
518 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700519 case CT_HARDLOCKUP:
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700520 local_irq_disable();
521 for (;;)
522 cpu_relax();
523 break;
Kees Cook274a5852013-07-08 10:01:32 -0700524 case CT_SPINLOCKUP:
525 /* Must be called twice to trigger. */
526 spin_lock(&lock_me_up);
Kees Cook51236622013-11-11 11:23:49 -0800527 /* Let sparse know we intended to exit holding the lock. */
528 __release(&lock_me_up);
Kees Cook274a5852013-07-08 10:01:32 -0700529 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700530 case CT_HUNG_TASK:
Frederic Weisbeckera48223f2010-05-26 14:44:29 -0700531 set_current_state(TASK_UNINTERRUPTIBLE);
532 schedule();
533 break;
Kees Cookcc33c5372013-07-08 10:01:33 -0700534 case CT_EXEC_DATA:
535 execute_location(data_area);
536 break;
537 case CT_EXEC_STACK: {
538 u8 stack_area[EXEC_SIZE];
539 execute_location(stack_area);
540 break;
541 }
542 case CT_EXEC_KMALLOC: {
543 u32 *kmalloc_area = kmalloc(EXEC_SIZE, GFP_KERNEL);
544 execute_location(kmalloc_area);
545 kfree(kmalloc_area);
546 break;
547 }
548 case CT_EXEC_VMALLOC: {
549 u32 *vmalloc_area = vmalloc(EXEC_SIZE);
550 execute_location(vmalloc_area);
551 vfree(vmalloc_area);
552 break;
553 }
Kees Cook9ae113c2013-10-24 09:25:57 -0700554 case CT_EXEC_USERSPACE: {
555 unsigned long user_addr;
556
557 user_addr = vm_mmap(NULL, 0, PAGE_SIZE,
558 PROT_READ | PROT_WRITE | PROT_EXEC,
559 MAP_ANONYMOUS | MAP_PRIVATE, 0);
560 if (user_addr >= TASK_SIZE) {
561 pr_warn("Failed to allocate user memory\n");
562 return;
563 }
564 execute_user_location((void *)user_addr);
565 vm_munmap(user_addr, PAGE_SIZE);
566 break;
567 }
568 case CT_ACCESS_USERSPACE: {
Stephen Smalley2cb202c2015-10-27 16:47:53 -0400569 unsigned long user_addr, tmp = 0;
Kees Cook9ae113c2013-10-24 09:25:57 -0700570 unsigned long *ptr;
571
572 user_addr = vm_mmap(NULL, 0, PAGE_SIZE,
573 PROT_READ | PROT_WRITE | PROT_EXEC,
574 MAP_ANONYMOUS | MAP_PRIVATE, 0);
575 if (user_addr >= TASK_SIZE) {
576 pr_warn("Failed to allocate user memory\n");
577 return;
578 }
579
Stephen Smalley2cb202c2015-10-27 16:47:53 -0400580 if (copy_to_user((void __user *)user_addr, &tmp, sizeof(tmp))) {
581 pr_warn("copy_to_user failed\n");
582 vm_munmap(user_addr, PAGE_SIZE);
583 return;
584 }
585
Kees Cook9ae113c2013-10-24 09:25:57 -0700586 ptr = (unsigned long *)user_addr;
Kees Cookaac416f2014-02-09 13:48:47 -0800587
588 pr_info("attempting bad read at %p\n", ptr);
Kees Cook9ae113c2013-10-24 09:25:57 -0700589 tmp = *ptr;
590 tmp += 0xc0dec0de;
Kees Cookaac416f2014-02-09 13:48:47 -0800591
592 pr_info("attempting bad write at %p\n", ptr);
Kees Cook9ae113c2013-10-24 09:25:57 -0700593 *ptr = tmp;
594
595 vm_munmap(user_addr, PAGE_SIZE);
596
597 break;
598 }
599 case CT_WRITE_RO: {
600 unsigned long *ptr;
601
602 ptr = (unsigned long *)&rodata;
Kees Cookaac416f2014-02-09 13:48:47 -0800603
604 pr_info("attempting bad write at %p\n", ptr);
Kees Cook9ae113c2013-10-24 09:25:57 -0700605 *ptr ^= 0xabcd1234;
606
607 break;
608 }
Kees Cookdc2b9e92014-02-09 13:48:48 -0800609 case CT_WRITE_KERN: {
610 size_t size;
611 unsigned char *ptr;
612
613 size = (unsigned long)do_overwritten -
614 (unsigned long)do_nothing;
615 ptr = (unsigned char *)do_overwritten;
616
617 pr_info("attempting bad %zu byte write at %p\n", size, ptr);
618 memcpy(ptr, (unsigned char *)do_nothing, size);
619 flush_icache_range((unsigned long)ptr,
620 (unsigned long)(ptr + size));
621
622 do_overwritten();
623 break;
624 }
David Windsor5fd9e482015-12-17 00:56:36 -0500625 case CT_WRAP_ATOMIC: {
626 atomic_t under = ATOMIC_INIT(INT_MIN);
627 atomic_t over = ATOMIC_INIT(INT_MAX);
628
629 pr_info("attempting atomic underflow\n");
630 atomic_dec(&under);
631 pr_info("attempting atomic overflow\n");
632 atomic_inc(&over);
633
634 return;
635 }
Namhyung Kim93e2f582010-10-26 14:22:40 -0700636 case CT_NONE:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800637 default:
638 break;
639 }
640
641}
642
643static void lkdtm_handler(void)
644{
Josh Huntaa2c96d2011-06-27 16:18:08 -0700645 unsigned long flags;
Cong Wang92618182012-02-03 15:37:15 -0800646 bool do_it = false;
Josh Huntaa2c96d2011-06-27 16:18:08 -0700647
648 spin_lock_irqsave(&count_lock, flags);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800649 count--;
Kees Cookfeac6e22014-02-09 13:48:46 -0800650 pr_info("Crash point %s of type %s hit, trigger in %d rounds\n",
651 cp_name_to_str(cpoint), cp_type_to_str(cptype), count);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700652
653 if (count == 0) {
Cong Wang92618182012-02-03 15:37:15 -0800654 do_it = true;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700655 count = cpoint_count;
656 }
Josh Huntaa2c96d2011-06-27 16:18:08 -0700657 spin_unlock_irqrestore(&count_lock, flags);
Cong Wang92618182012-02-03 15:37:15 -0800658
659 if (do_it)
660 lkdtm_do_action(cptype);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700661}
662
Simon Kagstrom0347af42010-03-05 13:42:49 -0800663static int lkdtm_register_cpoint(enum cname which)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700664{
665 int ret;
666
Namhyung Kim93e2f582010-10-26 14:22:40 -0700667 cpoint = CN_INVALID;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800668 if (lkdtm.entry != NULL)
669 unregister_jprobe(&lkdtm);
Ankita Garg8bb31b92006-10-02 02:17:36 -0700670
Simon Kagstrom0347af42010-03-05 13:42:49 -0800671 switch (which) {
Namhyung Kim93e2f582010-10-26 14:22:40 -0700672 case CN_DIRECT:
Simon Kagstrom0347af42010-03-05 13:42:49 -0800673 lkdtm_do_action(cptype);
674 return 0;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700675 case CN_INT_HARDWARE_ENTRY:
M. Mohan Kumarf58f2fa2009-09-22 16:43:29 -0700676 lkdtm.kp.symbol_name = "do_IRQ";
Ankita Garg8bb31b92006-10-02 02:17:36 -0700677 lkdtm.entry = (kprobe_opcode_t*) jp_do_irq;
678 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700679 case CN_INT_HW_IRQ_EN:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700680 lkdtm.kp.symbol_name = "handle_IRQ_event";
681 lkdtm.entry = (kprobe_opcode_t*) jp_handle_irq_event;
682 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700683 case CN_INT_TASKLET_ENTRY:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700684 lkdtm.kp.symbol_name = "tasklet_action";
685 lkdtm.entry = (kprobe_opcode_t*) jp_tasklet_action;
686 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700687 case CN_FS_DEVRW:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700688 lkdtm.kp.symbol_name = "ll_rw_block";
689 lkdtm.entry = (kprobe_opcode_t*) jp_ll_rw_block;
690 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700691 case CN_MEM_SWAPOUT:
Ankita Garg18a61e42006-11-05 23:52:07 -0800692 lkdtm.kp.symbol_name = "shrink_inactive_list";
693 lkdtm.entry = (kprobe_opcode_t*) jp_shrink_inactive_list;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700694 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700695 case CN_TIMERADD:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700696 lkdtm.kp.symbol_name = "hrtimer_start";
697 lkdtm.entry = (kprobe_opcode_t*) jp_hrtimer_start;
698 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700699 case CN_SCSI_DISPATCH_CMD:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700700 lkdtm.kp.symbol_name = "scsi_dispatch_cmd";
701 lkdtm.entry = (kprobe_opcode_t*) jp_scsi_dispatch_cmd;
702 break;
Namhyung Kim93e2f582010-10-26 14:22:40 -0700703 case CN_IDE_CORE_CP:
Ankita Garg8bb31b92006-10-02 02:17:36 -0700704#ifdef CONFIG_IDE
705 lkdtm.kp.symbol_name = "generic_ide_ioctl";
706 lkdtm.entry = (kprobe_opcode_t*) jp_generic_ide_ioctl;
707#else
Kees Cookfeac6e22014-02-09 13:48:46 -0800708 pr_info("Crash point not available\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800709 return -EINVAL;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700710#endif
711 break;
712 default:
Kees Cookfeac6e22014-02-09 13:48:46 -0800713 pr_info("Invalid Crash Point\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800714 return -EINVAL;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700715 }
716
Simon Kagstrom0347af42010-03-05 13:42:49 -0800717 cpoint = which;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700718 if ((ret = register_jprobe(&lkdtm)) < 0) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800719 pr_info("Couldn't register jprobe\n");
Namhyung Kim93e2f582010-10-26 14:22:40 -0700720 cpoint = CN_INVALID;
Ankita Garg8bb31b92006-10-02 02:17:36 -0700721 }
722
Simon Kagstrom0347af42010-03-05 13:42:49 -0800723 return ret;
724}
725
726static ssize_t do_register_entry(enum cname which, struct file *f,
727 const char __user *user_buf, size_t count, loff_t *off)
728{
729 char *buf;
730 int err;
731
732 if (count >= PAGE_SIZE)
733 return -EINVAL;
734
735 buf = (char *)__get_free_page(GFP_KERNEL);
736 if (!buf)
737 return -ENOMEM;
738 if (copy_from_user(buf, user_buf, count)) {
739 free_page((unsigned long) buf);
740 return -EFAULT;
741 }
742 /* NULL-terminate and remove enter */
743 buf[count] = '\0';
744 strim(buf);
745
746 cptype = parse_cp_type(buf, count);
747 free_page((unsigned long) buf);
748
Namhyung Kim93e2f582010-10-26 14:22:40 -0700749 if (cptype == CT_NONE)
Simon Kagstrom0347af42010-03-05 13:42:49 -0800750 return -EINVAL;
751
752 err = lkdtm_register_cpoint(which);
753 if (err < 0)
754 return err;
755
756 *off += count;
757
758 return count;
759}
760
761/* Generic read callback that just prints out the available crash types */
762static ssize_t lkdtm_debugfs_read(struct file *f, char __user *user_buf,
763 size_t count, loff_t *off)
764{
765 char *buf;
766 int i, n, out;
767
768 buf = (char *)__get_free_page(GFP_KERNEL);
Alan Cox086ff4b2012-07-30 14:43:24 -0700769 if (buf == NULL)
770 return -ENOMEM;
Simon Kagstrom0347af42010-03-05 13:42:49 -0800771
772 n = snprintf(buf, PAGE_SIZE, "Available crash types:\n");
773 for (i = 0; i < ARRAY_SIZE(cp_type); i++)
774 n += snprintf(buf + n, PAGE_SIZE - n, "%s\n", cp_type[i]);
775 buf[n] = '\0';
776
777 out = simple_read_from_buffer(user_buf, count, off,
778 buf, n);
779 free_page((unsigned long) buf);
780
781 return out;
782}
783
784static int lkdtm_debugfs_open(struct inode *inode, struct file *file)
785{
Ankita Garg8bb31b92006-10-02 02:17:36 -0700786 return 0;
787}
788
Simon Kagstrom0347af42010-03-05 13:42:49 -0800789
790static ssize_t int_hardware_entry(struct file *f, const char __user *buf,
791 size_t count, loff_t *off)
792{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700793 return do_register_entry(CN_INT_HARDWARE_ENTRY, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800794}
795
796static ssize_t int_hw_irq_en(struct file *f, const char __user *buf,
797 size_t count, loff_t *off)
798{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700799 return do_register_entry(CN_INT_HW_IRQ_EN, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800800}
801
802static ssize_t int_tasklet_entry(struct file *f, const char __user *buf,
803 size_t count, loff_t *off)
804{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700805 return do_register_entry(CN_INT_TASKLET_ENTRY, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800806}
807
808static ssize_t fs_devrw_entry(struct file *f, const char __user *buf,
809 size_t count, loff_t *off)
810{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700811 return do_register_entry(CN_FS_DEVRW, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800812}
813
814static ssize_t mem_swapout_entry(struct file *f, const char __user *buf,
815 size_t count, loff_t *off)
816{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700817 return do_register_entry(CN_MEM_SWAPOUT, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800818}
819
820static ssize_t timeradd_entry(struct file *f, const char __user *buf,
821 size_t count, loff_t *off)
822{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700823 return do_register_entry(CN_TIMERADD, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800824}
825
826static ssize_t scsi_dispatch_cmd_entry(struct file *f,
827 const char __user *buf, size_t count, loff_t *off)
828{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700829 return do_register_entry(CN_SCSI_DISPATCH_CMD, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800830}
831
832static ssize_t ide_core_cp_entry(struct file *f, const char __user *buf,
833 size_t count, loff_t *off)
834{
Namhyung Kim93e2f582010-10-26 14:22:40 -0700835 return do_register_entry(CN_IDE_CORE_CP, f, buf, count, off);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800836}
837
838/* Special entry to just crash directly. Available without KPROBEs */
839static ssize_t direct_entry(struct file *f, const char __user *user_buf,
840 size_t count, loff_t *off)
841{
842 enum ctype type;
843 char *buf;
844
845 if (count >= PAGE_SIZE)
846 return -EINVAL;
847 if (count < 1)
848 return -EINVAL;
849
850 buf = (char *)__get_free_page(GFP_KERNEL);
851 if (!buf)
852 return -ENOMEM;
853 if (copy_from_user(buf, user_buf, count)) {
854 free_page((unsigned long) buf);
855 return -EFAULT;
856 }
857 /* NULL-terminate and remove enter */
858 buf[count] = '\0';
859 strim(buf);
860
861 type = parse_cp_type(buf, count);
862 free_page((unsigned long) buf);
Namhyung Kim93e2f582010-10-26 14:22:40 -0700863 if (type == CT_NONE)
Simon Kagstrom0347af42010-03-05 13:42:49 -0800864 return -EINVAL;
865
Kees Cookfeac6e22014-02-09 13:48:46 -0800866 pr_info("Performing direct entry %s\n", cp_type_to_str(type));
Simon Kagstrom0347af42010-03-05 13:42:49 -0800867 lkdtm_do_action(type);
868 *off += count;
869
870 return count;
871}
872
873struct crash_entry {
874 const char *name;
875 const struct file_operations fops;
876};
877
878static const struct crash_entry crash_entries[] = {
879 {"DIRECT", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200880 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800881 .open = lkdtm_debugfs_open,
882 .write = direct_entry} },
883 {"INT_HARDWARE_ENTRY", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200884 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800885 .open = lkdtm_debugfs_open,
886 .write = int_hardware_entry} },
887 {"INT_HW_IRQ_EN", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200888 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800889 .open = lkdtm_debugfs_open,
890 .write = int_hw_irq_en} },
891 {"INT_TASKLET_ENTRY", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200892 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800893 .open = lkdtm_debugfs_open,
894 .write = int_tasklet_entry} },
895 {"FS_DEVRW", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200896 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800897 .open = lkdtm_debugfs_open,
898 .write = fs_devrw_entry} },
899 {"MEM_SWAPOUT", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200900 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800901 .open = lkdtm_debugfs_open,
902 .write = mem_swapout_entry} },
903 {"TIMERADD", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200904 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800905 .open = lkdtm_debugfs_open,
906 .write = timeradd_entry} },
907 {"SCSI_DISPATCH_CMD", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200908 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800909 .open = lkdtm_debugfs_open,
910 .write = scsi_dispatch_cmd_entry} },
911 {"IDE_CORE_CP", {.read = lkdtm_debugfs_read,
Arnd Bergmann05271ec2010-07-06 19:10:26 +0200912 .llseek = generic_file_llseek,
Simon Kagstrom0347af42010-03-05 13:42:49 -0800913 .open = lkdtm_debugfs_open,
914 .write = ide_core_cp_entry} },
915};
916
917static struct dentry *lkdtm_debugfs_root;
918
919static int __init lkdtm_module_init(void)
920{
921 int ret = -EINVAL;
922 int n_debugfs_entries = 1; /* Assume only the direct entry */
923 int i;
924
925 /* Register debugfs interface */
926 lkdtm_debugfs_root = debugfs_create_dir("provoke-crash", NULL);
927 if (!lkdtm_debugfs_root) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800928 pr_err("creating root dir failed\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800929 return -ENODEV;
930 }
931
932#ifdef CONFIG_KPROBES
933 n_debugfs_entries = ARRAY_SIZE(crash_entries);
934#endif
935
936 for (i = 0; i < n_debugfs_entries; i++) {
937 const struct crash_entry *cur = &crash_entries[i];
938 struct dentry *de;
939
940 de = debugfs_create_file(cur->name, 0644, lkdtm_debugfs_root,
941 NULL, &cur->fops);
942 if (de == NULL) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800943 pr_err("could not create %s\n", cur->name);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800944 goto out_err;
945 }
946 }
947
948 if (lkdtm_parse_commandline() == -EINVAL) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800949 pr_info("Invalid command\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800950 goto out_err;
951 }
952
Namhyung Kim93e2f582010-10-26 14:22:40 -0700953 if (cpoint != CN_INVALID && cptype != CT_NONE) {
Simon Kagstrom0347af42010-03-05 13:42:49 -0800954 ret = lkdtm_register_cpoint(cpoint);
955 if (ret < 0) {
Kees Cookfeac6e22014-02-09 13:48:46 -0800956 pr_info("Invalid crash point %d\n", cpoint);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800957 goto out_err;
958 }
Kees Cookfeac6e22014-02-09 13:48:46 -0800959 pr_info("Crash point %s of type %s registered\n",
960 cpoint_name, cpoint_type);
Simon Kagstrom0347af42010-03-05 13:42:49 -0800961 } else {
Kees Cookfeac6e22014-02-09 13:48:46 -0800962 pr_info("No crash points registered, enable through debugfs\n");
Simon Kagstrom0347af42010-03-05 13:42:49 -0800963 }
964
965 return 0;
966
967out_err:
968 debugfs_remove_recursive(lkdtm_debugfs_root);
969 return ret;
970}
971
Adrian Bunk21181162008-02-06 01:36:50 -0800972static void __exit lkdtm_module_exit(void)
Ankita Garg8bb31b92006-10-02 02:17:36 -0700973{
Simon Kagstrom0347af42010-03-05 13:42:49 -0800974 debugfs_remove_recursive(lkdtm_debugfs_root);
975
976 unregister_jprobe(&lkdtm);
Kees Cookfeac6e22014-02-09 13:48:46 -0800977 pr_info("Crash point unregistered\n");
Ankita Garg8bb31b92006-10-02 02:17:36 -0700978}
979
980module_init(lkdtm_module_init);
981module_exit(lkdtm_module_exit);
982
983MODULE_LICENSE("GPL");
Terry Chiada869202014-07-02 21:02:25 +0800984MODULE_DESCRIPTION("Kprobe module for testing crash dumps");