Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 29 | * Debugfs support added by Simon Kagstrom <simon.kagstrom@netinsight.net> |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 30 | * |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 31 | * See Documentation/fault-injection/provoke-crashes.txt for instructions |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 32 | */ |
Kees Cook | feac6e2 | 2014-02-09 13:48:46 -0800 | [diff] [blame] | 33 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 34 | |
| 35 | #include <linux/kernel.h> |
Randy Dunlap | 5d861d9 | 2006-11-02 22:07:06 -0800 | [diff] [blame] | 36 | #include <linux/fs.h> |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 37 | #include <linux/module.h> |
Randy Dunlap | 5d861d9 | 2006-11-02 22:07:06 -0800 | [diff] [blame] | 38 | #include <linux/buffer_head.h> |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 39 | #include <linux/kprobes.h> |
Randy Dunlap | 5d861d9 | 2006-11-02 22:07:06 -0800 | [diff] [blame] | 40 | #include <linux/list.h> |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 41 | #include <linux/init.h> |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 42 | #include <linux/interrupt.h> |
Randy Dunlap | 5d861d9 | 2006-11-02 22:07:06 -0800 | [diff] [blame] | 43 | #include <linux/hrtimer.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 44 | #include <linux/slab.h> |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 45 | #include <scsi/scsi_cmnd.h> |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 46 | #include <linux/debugfs.h> |
Kees Cook | cc33c537 | 2013-07-08 10:01:33 -0700 | [diff] [blame] | 47 | #include <linux/vmalloc.h> |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 48 | #include <linux/mman.h> |
Kees Cook | 1bc9fac | 2014-02-14 15:58:50 -0800 | [diff] [blame] | 49 | #include <asm/cacheflush.h> |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 50 | |
| 51 | #ifdef CONFIG_IDE |
| 52 | #include <linux/ide.h> |
| 53 | #endif |
| 54 | |
Kees Cook | 7d196ac | 2013-10-24 09:25:39 -0700 | [diff] [blame] | 55 | /* |
| 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 Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 67 | #define DEFAULT_COUNT 10 |
Kees Cook | cc33c537 | 2013-07-08 10:01:33 -0700 | [diff] [blame] | 68 | #define EXEC_SIZE 64 |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 69 | |
| 70 | enum cname { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 71 | 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 Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 81 | }; |
| 82 | |
| 83 | enum ctype { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 84 | CT_NONE, |
| 85 | CT_PANIC, |
| 86 | CT_BUG, |
Kees Cook | 6589272 | 2013-07-08 10:01:31 -0700 | [diff] [blame] | 87 | CT_WARNING, |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 88 | 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 Abbott | bc0b8cc | 2016-02-25 16:36:42 -0800 | [diff] [blame] | 95 | CT_READ_AFTER_FREE, |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 96 | CT_SOFTLOCKUP, |
| 97 | CT_HARDLOCKUP, |
Kees Cook | 274a585 | 2013-07-08 10:01:32 -0700 | [diff] [blame] | 98 | CT_SPINLOCKUP, |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 99 | CT_HUNG_TASK, |
Kees Cook | cc33c537 | 2013-07-08 10:01:33 -0700 | [diff] [blame] | 100 | CT_EXEC_DATA, |
| 101 | CT_EXEC_STACK, |
| 102 | CT_EXEC_KMALLOC, |
| 103 | CT_EXEC_VMALLOC, |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 104 | CT_EXEC_USERSPACE, |
| 105 | CT_ACCESS_USERSPACE, |
| 106 | CT_WRITE_RO, |
Kees Cook | dc2b9e9 | 2014-02-09 13:48:48 -0800 | [diff] [blame] | 107 | CT_WRITE_KERN, |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | static 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 Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 118 | "IDE_CORE_CP", |
| 119 | "DIRECT", |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 120 | }; |
| 121 | |
| 122 | static char* cp_type[] = { |
| 123 | "PANIC", |
| 124 | "BUG", |
Kees Cook | 6589272 | 2013-07-08 10:01:31 -0700 | [diff] [blame] | 125 | "WARNING", |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 126 | "EXCEPTION", |
| 127 | "LOOP", |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 128 | "OVERFLOW", |
| 129 | "CORRUPT_STACK", |
| 130 | "UNALIGNED_LOAD_STORE_WRITE", |
| 131 | "OVERWRITE_ALLOCATION", |
| 132 | "WRITE_AFTER_FREE", |
Laura Abbott | bc0b8cc | 2016-02-25 16:36:42 -0800 | [diff] [blame] | 133 | "READ_AFTER_FREE", |
Frederic Weisbecker | a48223f | 2010-05-26 14:44:29 -0700 | [diff] [blame] | 134 | "SOFTLOCKUP", |
| 135 | "HARDLOCKUP", |
Kees Cook | 274a585 | 2013-07-08 10:01:32 -0700 | [diff] [blame] | 136 | "SPINLOCKUP", |
Frederic Weisbecker | a48223f | 2010-05-26 14:44:29 -0700 | [diff] [blame] | 137 | "HUNG_TASK", |
Kees Cook | cc33c537 | 2013-07-08 10:01:33 -0700 | [diff] [blame] | 138 | "EXEC_DATA", |
| 139 | "EXEC_STACK", |
| 140 | "EXEC_KMALLOC", |
| 141 | "EXEC_VMALLOC", |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 142 | "EXEC_USERSPACE", |
| 143 | "ACCESS_USERSPACE", |
| 144 | "WRITE_RO", |
Kees Cook | dc2b9e9 | 2014-02-09 13:48:48 -0800 | [diff] [blame] | 145 | "WRITE_KERN", |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 146 | }; |
| 147 | |
| 148 | static struct jprobe lkdtm; |
| 149 | |
| 150 | static int lkdtm_parse_commandline(void); |
| 151 | static void lkdtm_handler(void); |
| 152 | |
Al Viro | ec1c620 | 2007-02-09 16:05:17 +0000 | [diff] [blame] | 153 | static char* cpoint_name; |
| 154 | static char* cpoint_type; |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 155 | static int cpoint_count = DEFAULT_COUNT; |
| 156 | static int recur_count = REC_NUM_DEFAULT; |
| 157 | |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 158 | static enum cname cpoint = CN_INVALID; |
| 159 | static enum ctype cptype = CT_NONE; |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 160 | static int count = DEFAULT_COUNT; |
Josh Hunt | aa2c96d | 2011-06-27 16:18:08 -0700 | [diff] [blame] | 161 | static DEFINE_SPINLOCK(count_lock); |
Kees Cook | 274a585 | 2013-07-08 10:01:32 -0700 | [diff] [blame] | 162 | static DEFINE_SPINLOCK(lock_me_up); |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 163 | |
Kees Cook | cc33c537 | 2013-07-08 10:01:33 -0700 | [diff] [blame] | 164 | static u8 data_area[EXEC_SIZE]; |
| 165 | |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 166 | static const unsigned long rodata = 0xAA55AA55; |
| 167 | |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 168 | module_param(recur_count, int, 0644); |
Kees Cook | 7d196ac | 2013-10-24 09:25:39 -0700 | [diff] [blame] | 169 | MODULE_PARM_DESC(recur_count, " Recursion level for the stack overflow test"); |
Rusty Russell | dca4130 | 2010-08-11 23:04:21 -0600 | [diff] [blame] | 170 | module_param(cpoint_name, charp, 0444); |
Randy Dunlap | 5d861d9 | 2006-11-02 22:07:06 -0800 | [diff] [blame] | 171 | MODULE_PARM_DESC(cpoint_name, " Crash Point, where kernel is to be crashed"); |
Rusty Russell | dca4130 | 2010-08-11 23:04:21 -0600 | [diff] [blame] | 172 | module_param(cpoint_type, charp, 0444); |
Randy Dunlap | 5d861d9 | 2006-11-02 22:07:06 -0800 | [diff] [blame] | 173 | MODULE_PARM_DESC(cpoint_type, " Crash Point Type, action to be taken on "\ |
| 174 | "hitting the crash point"); |
| 175 | module_param(cpoint_count, int, 0644); |
| 176 | MODULE_PARM_DESC(cpoint_count, " Crash Point Count, number of times the "\ |
| 177 | "crash point is to be hit to trigger action"); |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 178 | |
Adrian Bunk | 2118116 | 2008-02-06 01:36:50 -0800 | [diff] [blame] | 179 | static unsigned int jp_do_irq(unsigned int irq) |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 180 | { |
| 181 | lkdtm_handler(); |
| 182 | jprobe_return(); |
| 183 | return 0; |
| 184 | } |
| 185 | |
Adrian Bunk | 2118116 | 2008-02-06 01:36:50 -0800 | [diff] [blame] | 186 | static irqreturn_t jp_handle_irq_event(unsigned int irq, |
| 187 | struct irqaction *action) |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 188 | { |
| 189 | lkdtm_handler(); |
| 190 | jprobe_return(); |
| 191 | return 0; |
| 192 | } |
| 193 | |
Adrian Bunk | 2118116 | 2008-02-06 01:36:50 -0800 | [diff] [blame] | 194 | static void jp_tasklet_action(struct softirq_action *a) |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 195 | { |
| 196 | lkdtm_handler(); |
| 197 | jprobe_return(); |
| 198 | } |
| 199 | |
Adrian Bunk | 2118116 | 2008-02-06 01:36:50 -0800 | [diff] [blame] | 200 | static void jp_ll_rw_block(int rw, int nr, struct buffer_head *bhs[]) |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 201 | { |
| 202 | lkdtm_handler(); |
| 203 | jprobe_return(); |
| 204 | } |
| 205 | |
| 206 | struct scan_control; |
| 207 | |
Adrian Bunk | 2118116 | 2008-02-06 01:36:50 -0800 | [diff] [blame] | 208 | static unsigned long jp_shrink_inactive_list(unsigned long max_scan, |
| 209 | struct zone *zone, |
| 210 | struct scan_control *sc) |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 211 | { |
| 212 | lkdtm_handler(); |
| 213 | jprobe_return(); |
| 214 | return 0; |
| 215 | } |
| 216 | |
Adrian Bunk | 2118116 | 2008-02-06 01:36:50 -0800 | [diff] [blame] | 217 | static int jp_hrtimer_start(struct hrtimer *timer, ktime_t tim, |
| 218 | const enum hrtimer_mode mode) |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 219 | { |
| 220 | lkdtm_handler(); |
| 221 | jprobe_return(); |
| 222 | return 0; |
| 223 | } |
| 224 | |
Adrian Bunk | 2118116 | 2008-02-06 01:36:50 -0800 | [diff] [blame] | 225 | static int jp_scsi_dispatch_cmd(struct scsi_cmnd *cmd) |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 226 | { |
| 227 | lkdtm_handler(); |
| 228 | jprobe_return(); |
| 229 | return 0; |
| 230 | } |
| 231 | |
| 232 | #ifdef CONFIG_IDE |
Rashika Kheria | 4462943 | 2013-12-13 12:29:42 +0530 | [diff] [blame] | 233 | static int jp_generic_ide_ioctl(ide_drive_t *drive, struct file *file, |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 234 | struct block_device *bdev, unsigned int cmd, |
| 235 | unsigned long arg) |
| 236 | { |
| 237 | lkdtm_handler(); |
| 238 | jprobe_return(); |
| 239 | return 0; |
| 240 | } |
| 241 | #endif |
| 242 | |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 243 | /* Return the crashpoint number or NONE if the name is invalid */ |
| 244 | static enum ctype parse_cp_type(const char *what, size_t count) |
| 245 | { |
| 246 | int i; |
| 247 | |
| 248 | for (i = 0; i < ARRAY_SIZE(cp_type); i++) { |
| 249 | if (!strcmp(what, cp_type[i])) |
| 250 | return i + 1; |
| 251 | } |
| 252 | |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 253 | return CT_NONE; |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | static const char *cp_type_to_str(enum ctype type) |
| 257 | { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 258 | if (type == CT_NONE || type < 0 || type > ARRAY_SIZE(cp_type)) |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 259 | return "None"; |
| 260 | |
| 261 | return cp_type[type - 1]; |
| 262 | } |
| 263 | |
| 264 | static const char *cp_name_to_str(enum cname name) |
| 265 | { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 266 | if (name == CN_INVALID || name < 0 || name > ARRAY_SIZE(cp_name)) |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 267 | return "INVALID"; |
| 268 | |
| 269 | return cp_name[name - 1]; |
| 270 | } |
| 271 | |
| 272 | |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 273 | static int lkdtm_parse_commandline(void) |
| 274 | { |
| 275 | int i; |
Josh Hunt | aa2c96d | 2011-06-27 16:18:08 -0700 | [diff] [blame] | 276 | unsigned long flags; |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 277 | |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 278 | if (cpoint_count < 1 || recur_count < 1) |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 279 | return -EINVAL; |
| 280 | |
Josh Hunt | aa2c96d | 2011-06-27 16:18:08 -0700 | [diff] [blame] | 281 | spin_lock_irqsave(&count_lock, flags); |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 282 | count = cpoint_count; |
Josh Hunt | aa2c96d | 2011-06-27 16:18:08 -0700 | [diff] [blame] | 283 | spin_unlock_irqrestore(&count_lock, flags); |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 284 | |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 285 | /* No special parameters */ |
| 286 | if (!cpoint_type && !cpoint_name) |
| 287 | return 0; |
| 288 | |
| 289 | /* Neither or both of these need to be set */ |
| 290 | if (!cpoint_type || !cpoint_name) |
| 291 | return -EINVAL; |
| 292 | |
| 293 | cptype = parse_cp_type(cpoint_type, strlen(cpoint_type)); |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 294 | if (cptype == CT_NONE) |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 295 | return -EINVAL; |
| 296 | |
| 297 | for (i = 0; i < ARRAY_SIZE(cp_name); i++) { |
| 298 | if (!strcmp(cpoint_name, cp_name[i])) { |
| 299 | cpoint = i + 1; |
| 300 | return 0; |
| 301 | } |
| 302 | } |
| 303 | |
| 304 | /* Could not find a valid crash point */ |
| 305 | return -EINVAL; |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 306 | } |
| 307 | |
Kees Cook | 7d196ac | 2013-10-24 09:25:39 -0700 | [diff] [blame] | 308 | static int recursive_loop(int remaining) |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 309 | { |
Kees Cook | 7d196ac | 2013-10-24 09:25:39 -0700 | [diff] [blame] | 310 | char buf[REC_STACK_SIZE]; |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 311 | |
Kees Cook | 7d196ac | 2013-10-24 09:25:39 -0700 | [diff] [blame] | 312 | /* Make sure compiler does not optimize this away. */ |
| 313 | memset(buf, (remaining & 0xff) | 0x1, REC_STACK_SIZE); |
| 314 | if (!remaining) |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 315 | return 0; |
| 316 | else |
Kees Cook | 7d196ac | 2013-10-24 09:25:39 -0700 | [diff] [blame] | 317 | return recursive_loop(remaining - 1); |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 318 | } |
| 319 | |
Kees Cook | cc33c537 | 2013-07-08 10:01:33 -0700 | [diff] [blame] | 320 | static void do_nothing(void) |
| 321 | { |
| 322 | return; |
| 323 | } |
| 324 | |
Kees Cook | dc2b9e9 | 2014-02-09 13:48:48 -0800 | [diff] [blame] | 325 | /* Must immediately follow do_nothing for size calculuations to work out. */ |
| 326 | static void do_overwritten(void) |
| 327 | { |
| 328 | pr_info("do_overwritten wasn't overwritten!\n"); |
| 329 | return; |
| 330 | } |
| 331 | |
Kees Cook | 629c66a | 2013-10-24 18:05:42 -0700 | [diff] [blame] | 332 | static noinline void corrupt_stack(void) |
| 333 | { |
| 334 | /* Use default char array length that triggers stack protection. */ |
| 335 | char data[8]; |
| 336 | |
| 337 | memset((void *)data, 0, 64); |
| 338 | } |
| 339 | |
Kees Cook | cc33c537 | 2013-07-08 10:01:33 -0700 | [diff] [blame] | 340 | static void execute_location(void *dst) |
| 341 | { |
| 342 | void (*func)(void) = dst; |
| 343 | |
Kees Cook | aac416f | 2014-02-09 13:48:47 -0800 | [diff] [blame] | 344 | pr_info("attempting ok execution at %p\n", do_nothing); |
| 345 | do_nothing(); |
| 346 | |
Kees Cook | cc33c537 | 2013-07-08 10:01:33 -0700 | [diff] [blame] | 347 | memcpy(dst, do_nothing, EXEC_SIZE); |
Kees Cook | aac416f | 2014-02-09 13:48:47 -0800 | [diff] [blame] | 348 | flush_icache_range((unsigned long)dst, (unsigned long)dst + EXEC_SIZE); |
| 349 | pr_info("attempting bad execution at %p\n", func); |
Kees Cook | cc33c537 | 2013-07-08 10:01:33 -0700 | [diff] [blame] | 350 | func(); |
| 351 | } |
| 352 | |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 353 | static void execute_user_location(void *dst) |
| 354 | { |
Kees Cook | 5123662 | 2013-11-11 11:23:49 -0800 | [diff] [blame] | 355 | /* Intentionally crossing kernel/user memory boundary. */ |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 356 | void (*func)(void) = dst; |
| 357 | |
Kees Cook | aac416f | 2014-02-09 13:48:47 -0800 | [diff] [blame] | 358 | pr_info("attempting ok execution at %p\n", do_nothing); |
| 359 | do_nothing(); |
| 360 | |
Kees Cook | 5123662 | 2013-11-11 11:23:49 -0800 | [diff] [blame] | 361 | if (copy_to_user((void __user *)dst, do_nothing, EXEC_SIZE)) |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 362 | return; |
Kees Cook | aac416f | 2014-02-09 13:48:47 -0800 | [diff] [blame] | 363 | flush_icache_range((unsigned long)dst, (unsigned long)dst + EXEC_SIZE); |
| 364 | pr_info("attempting bad execution at %p\n", func); |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 365 | func(); |
| 366 | } |
| 367 | |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 368 | static void lkdtm_do_action(enum ctype which) |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 369 | { |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 370 | switch (which) { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 371 | case CT_PANIC: |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 372 | panic("dumptest"); |
| 373 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 374 | case CT_BUG: |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 375 | BUG(); |
| 376 | break; |
Kees Cook | 6589272 | 2013-07-08 10:01:31 -0700 | [diff] [blame] | 377 | case CT_WARNING: |
| 378 | WARN_ON(1); |
| 379 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 380 | case CT_EXCEPTION: |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 381 | *((int *) 0) = 0; |
| 382 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 383 | case CT_LOOP: |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 384 | for (;;) |
| 385 | ; |
| 386 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 387 | case CT_OVERFLOW: |
Kees Cook | 7d196ac | 2013-10-24 09:25:39 -0700 | [diff] [blame] | 388 | (void) recursive_loop(recur_count); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 389 | break; |
Kees Cook | 629c66a | 2013-10-24 18:05:42 -0700 | [diff] [blame] | 390 | case CT_CORRUPT_STACK: |
| 391 | corrupt_stack(); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 392 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 393 | case CT_UNALIGNED_LOAD_STORE_WRITE: { |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 394 | static u8 data[5] __attribute__((aligned(4))) = {1, 2, |
| 395 | 3, 4, 5}; |
| 396 | u32 *p; |
| 397 | u32 val = 0x12345678; |
| 398 | |
| 399 | p = (u32 *)(data + 1); |
| 400 | if (*p == 0) |
| 401 | val = 0x87654321; |
| 402 | *p = val; |
| 403 | break; |
| 404 | } |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 405 | case CT_OVERWRITE_ALLOCATION: { |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 406 | size_t len = 1020; |
| 407 | u32 *data = kmalloc(len, GFP_KERNEL); |
| 408 | |
| 409 | data[1024 / sizeof(u32)] = 0x12345678; |
| 410 | kfree(data); |
| 411 | break; |
| 412 | } |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 413 | case CT_WRITE_AFTER_FREE: { |
Laura Abbott | 250a898 | 2016-02-25 16:36:43 -0800 | [diff] [blame^] | 414 | int *base; |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 415 | size_t len = 1024; |
Laura Abbott | 250a898 | 2016-02-25 16:36:43 -0800 | [diff] [blame^] | 416 | /* |
| 417 | * The slub allocator uses the first word to store the free |
| 418 | * pointer in some configurations. Use the middle of the |
| 419 | * allocation to avoid running into the freelist |
| 420 | */ |
| 421 | size_t offset = (len / sizeof(*base)) / 2; |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 422 | |
Laura Abbott | 250a898 | 2016-02-25 16:36:43 -0800 | [diff] [blame^] | 423 | base = kmalloc(len, GFP_KERNEL); |
| 424 | pr_info("Allocated memory %p-%p\n", base, &base[offset * 2]); |
| 425 | kfree(base); |
| 426 | pr_info("Attempting bad write to freed memory at %p\n", |
| 427 | &base[offset]); |
| 428 | base[offset] = 0x0abcdef0; |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 429 | break; |
| 430 | } |
Laura Abbott | bc0b8cc | 2016-02-25 16:36:42 -0800 | [diff] [blame] | 431 | case CT_READ_AFTER_FREE: { |
| 432 | int *base, *val, saw; |
| 433 | size_t len = 1024; |
| 434 | /* |
| 435 | * The slub allocator uses the first word to store the free |
| 436 | * pointer in some configurations. Use the middle of the |
| 437 | * allocation to avoid running into the freelist |
| 438 | */ |
| 439 | size_t offset = (len / sizeof(*base)) / 2; |
| 440 | |
| 441 | base = kmalloc(len, GFP_KERNEL); |
| 442 | if (!base) |
| 443 | break; |
| 444 | |
| 445 | val = kmalloc(len, GFP_KERNEL); |
| 446 | if (!val) |
| 447 | break; |
| 448 | |
| 449 | *val = 0x12345678; |
| 450 | base[offset] = *val; |
| 451 | pr_info("Value in memory before free: %x\n", base[offset]); |
| 452 | |
| 453 | kfree(base); |
| 454 | |
| 455 | pr_info("Attempting bad read from freed memory\n"); |
| 456 | saw = base[offset]; |
| 457 | if (saw != *val) { |
| 458 | /* Good! Poisoning happened, so declare a win. */ |
| 459 | pr_info("Memory correctly poisoned, calling BUG\n"); |
| 460 | BUG(); |
| 461 | } |
| 462 | pr_info("Memory was not poisoned\n"); |
| 463 | |
| 464 | kfree(val); |
| 465 | break; |
| 466 | } |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 467 | case CT_SOFTLOCKUP: |
Frederic Weisbecker | a48223f | 2010-05-26 14:44:29 -0700 | [diff] [blame] | 468 | preempt_disable(); |
| 469 | for (;;) |
| 470 | cpu_relax(); |
| 471 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 472 | case CT_HARDLOCKUP: |
Frederic Weisbecker | a48223f | 2010-05-26 14:44:29 -0700 | [diff] [blame] | 473 | local_irq_disable(); |
| 474 | for (;;) |
| 475 | cpu_relax(); |
| 476 | break; |
Kees Cook | 274a585 | 2013-07-08 10:01:32 -0700 | [diff] [blame] | 477 | case CT_SPINLOCKUP: |
| 478 | /* Must be called twice to trigger. */ |
| 479 | spin_lock(&lock_me_up); |
Kees Cook | 5123662 | 2013-11-11 11:23:49 -0800 | [diff] [blame] | 480 | /* Let sparse know we intended to exit holding the lock. */ |
| 481 | __release(&lock_me_up); |
Kees Cook | 274a585 | 2013-07-08 10:01:32 -0700 | [diff] [blame] | 482 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 483 | case CT_HUNG_TASK: |
Frederic Weisbecker | a48223f | 2010-05-26 14:44:29 -0700 | [diff] [blame] | 484 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 485 | schedule(); |
| 486 | break; |
Kees Cook | cc33c537 | 2013-07-08 10:01:33 -0700 | [diff] [blame] | 487 | case CT_EXEC_DATA: |
| 488 | execute_location(data_area); |
| 489 | break; |
| 490 | case CT_EXEC_STACK: { |
| 491 | u8 stack_area[EXEC_SIZE]; |
| 492 | execute_location(stack_area); |
| 493 | break; |
| 494 | } |
| 495 | case CT_EXEC_KMALLOC: { |
| 496 | u32 *kmalloc_area = kmalloc(EXEC_SIZE, GFP_KERNEL); |
| 497 | execute_location(kmalloc_area); |
| 498 | kfree(kmalloc_area); |
| 499 | break; |
| 500 | } |
| 501 | case CT_EXEC_VMALLOC: { |
| 502 | u32 *vmalloc_area = vmalloc(EXEC_SIZE); |
| 503 | execute_location(vmalloc_area); |
| 504 | vfree(vmalloc_area); |
| 505 | break; |
| 506 | } |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 507 | case CT_EXEC_USERSPACE: { |
| 508 | unsigned long user_addr; |
| 509 | |
| 510 | user_addr = vm_mmap(NULL, 0, PAGE_SIZE, |
| 511 | PROT_READ | PROT_WRITE | PROT_EXEC, |
| 512 | MAP_ANONYMOUS | MAP_PRIVATE, 0); |
| 513 | if (user_addr >= TASK_SIZE) { |
| 514 | pr_warn("Failed to allocate user memory\n"); |
| 515 | return; |
| 516 | } |
| 517 | execute_user_location((void *)user_addr); |
| 518 | vm_munmap(user_addr, PAGE_SIZE); |
| 519 | break; |
| 520 | } |
| 521 | case CT_ACCESS_USERSPACE: { |
Stephen Smalley | 2cb202c | 2015-10-27 16:47:53 -0400 | [diff] [blame] | 522 | unsigned long user_addr, tmp = 0; |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 523 | unsigned long *ptr; |
| 524 | |
| 525 | user_addr = vm_mmap(NULL, 0, PAGE_SIZE, |
| 526 | PROT_READ | PROT_WRITE | PROT_EXEC, |
| 527 | MAP_ANONYMOUS | MAP_PRIVATE, 0); |
| 528 | if (user_addr >= TASK_SIZE) { |
| 529 | pr_warn("Failed to allocate user memory\n"); |
| 530 | return; |
| 531 | } |
| 532 | |
Stephen Smalley | 2cb202c | 2015-10-27 16:47:53 -0400 | [diff] [blame] | 533 | if (copy_to_user((void __user *)user_addr, &tmp, sizeof(tmp))) { |
| 534 | pr_warn("copy_to_user failed\n"); |
| 535 | vm_munmap(user_addr, PAGE_SIZE); |
| 536 | return; |
| 537 | } |
| 538 | |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 539 | ptr = (unsigned long *)user_addr; |
Kees Cook | aac416f | 2014-02-09 13:48:47 -0800 | [diff] [blame] | 540 | |
| 541 | pr_info("attempting bad read at %p\n", ptr); |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 542 | tmp = *ptr; |
| 543 | tmp += 0xc0dec0de; |
Kees Cook | aac416f | 2014-02-09 13:48:47 -0800 | [diff] [blame] | 544 | |
| 545 | pr_info("attempting bad write at %p\n", ptr); |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 546 | *ptr = tmp; |
| 547 | |
| 548 | vm_munmap(user_addr, PAGE_SIZE); |
| 549 | |
| 550 | break; |
| 551 | } |
| 552 | case CT_WRITE_RO: { |
| 553 | unsigned long *ptr; |
| 554 | |
| 555 | ptr = (unsigned long *)&rodata; |
Kees Cook | aac416f | 2014-02-09 13:48:47 -0800 | [diff] [blame] | 556 | |
| 557 | pr_info("attempting bad write at %p\n", ptr); |
Kees Cook | 9ae113c | 2013-10-24 09:25:57 -0700 | [diff] [blame] | 558 | *ptr ^= 0xabcd1234; |
| 559 | |
| 560 | break; |
| 561 | } |
Kees Cook | dc2b9e9 | 2014-02-09 13:48:48 -0800 | [diff] [blame] | 562 | case CT_WRITE_KERN: { |
| 563 | size_t size; |
| 564 | unsigned char *ptr; |
| 565 | |
| 566 | size = (unsigned long)do_overwritten - |
| 567 | (unsigned long)do_nothing; |
| 568 | ptr = (unsigned char *)do_overwritten; |
| 569 | |
| 570 | pr_info("attempting bad %zu byte write at %p\n", size, ptr); |
| 571 | memcpy(ptr, (unsigned char *)do_nothing, size); |
| 572 | flush_icache_range((unsigned long)ptr, |
| 573 | (unsigned long)(ptr + size)); |
| 574 | |
| 575 | do_overwritten(); |
| 576 | break; |
| 577 | } |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 578 | case CT_NONE: |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 579 | default: |
| 580 | break; |
| 581 | } |
| 582 | |
| 583 | } |
| 584 | |
| 585 | static void lkdtm_handler(void) |
| 586 | { |
Josh Hunt | aa2c96d | 2011-06-27 16:18:08 -0700 | [diff] [blame] | 587 | unsigned long flags; |
Cong Wang | 9261818 | 2012-02-03 15:37:15 -0800 | [diff] [blame] | 588 | bool do_it = false; |
Josh Hunt | aa2c96d | 2011-06-27 16:18:08 -0700 | [diff] [blame] | 589 | |
| 590 | spin_lock_irqsave(&count_lock, flags); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 591 | count--; |
Kees Cook | feac6e2 | 2014-02-09 13:48:46 -0800 | [diff] [blame] | 592 | pr_info("Crash point %s of type %s hit, trigger in %d rounds\n", |
| 593 | cp_name_to_str(cpoint), cp_type_to_str(cptype), count); |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 594 | |
| 595 | if (count == 0) { |
Cong Wang | 9261818 | 2012-02-03 15:37:15 -0800 | [diff] [blame] | 596 | do_it = true; |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 597 | count = cpoint_count; |
| 598 | } |
Josh Hunt | aa2c96d | 2011-06-27 16:18:08 -0700 | [diff] [blame] | 599 | spin_unlock_irqrestore(&count_lock, flags); |
Cong Wang | 9261818 | 2012-02-03 15:37:15 -0800 | [diff] [blame] | 600 | |
| 601 | if (do_it) |
| 602 | lkdtm_do_action(cptype); |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 603 | } |
| 604 | |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 605 | static int lkdtm_register_cpoint(enum cname which) |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 606 | { |
| 607 | int ret; |
| 608 | |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 609 | cpoint = CN_INVALID; |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 610 | if (lkdtm.entry != NULL) |
| 611 | unregister_jprobe(&lkdtm); |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 612 | |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 613 | switch (which) { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 614 | case CN_DIRECT: |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 615 | lkdtm_do_action(cptype); |
| 616 | return 0; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 617 | case CN_INT_HARDWARE_ENTRY: |
M. Mohan Kumar | f58f2fa | 2009-09-22 16:43:29 -0700 | [diff] [blame] | 618 | lkdtm.kp.symbol_name = "do_IRQ"; |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 619 | lkdtm.entry = (kprobe_opcode_t*) jp_do_irq; |
| 620 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 621 | case CN_INT_HW_IRQ_EN: |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 622 | lkdtm.kp.symbol_name = "handle_IRQ_event"; |
| 623 | lkdtm.entry = (kprobe_opcode_t*) jp_handle_irq_event; |
| 624 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 625 | case CN_INT_TASKLET_ENTRY: |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 626 | lkdtm.kp.symbol_name = "tasklet_action"; |
| 627 | lkdtm.entry = (kprobe_opcode_t*) jp_tasklet_action; |
| 628 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 629 | case CN_FS_DEVRW: |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 630 | lkdtm.kp.symbol_name = "ll_rw_block"; |
| 631 | lkdtm.entry = (kprobe_opcode_t*) jp_ll_rw_block; |
| 632 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 633 | case CN_MEM_SWAPOUT: |
Ankita Garg | 18a61e4 | 2006-11-05 23:52:07 -0800 | [diff] [blame] | 634 | lkdtm.kp.symbol_name = "shrink_inactive_list"; |
| 635 | lkdtm.entry = (kprobe_opcode_t*) jp_shrink_inactive_list; |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 636 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 637 | case CN_TIMERADD: |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 638 | lkdtm.kp.symbol_name = "hrtimer_start"; |
| 639 | lkdtm.entry = (kprobe_opcode_t*) jp_hrtimer_start; |
| 640 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 641 | case CN_SCSI_DISPATCH_CMD: |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 642 | lkdtm.kp.symbol_name = "scsi_dispatch_cmd"; |
| 643 | lkdtm.entry = (kprobe_opcode_t*) jp_scsi_dispatch_cmd; |
| 644 | break; |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 645 | case CN_IDE_CORE_CP: |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 646 | #ifdef CONFIG_IDE |
| 647 | lkdtm.kp.symbol_name = "generic_ide_ioctl"; |
| 648 | lkdtm.entry = (kprobe_opcode_t*) jp_generic_ide_ioctl; |
| 649 | #else |
Kees Cook | feac6e2 | 2014-02-09 13:48:46 -0800 | [diff] [blame] | 650 | pr_info("Crash point not available\n"); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 651 | return -EINVAL; |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 652 | #endif |
| 653 | break; |
| 654 | default: |
Kees Cook | feac6e2 | 2014-02-09 13:48:46 -0800 | [diff] [blame] | 655 | pr_info("Invalid Crash Point\n"); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 656 | return -EINVAL; |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 657 | } |
| 658 | |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 659 | cpoint = which; |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 660 | if ((ret = register_jprobe(&lkdtm)) < 0) { |
Kees Cook | feac6e2 | 2014-02-09 13:48:46 -0800 | [diff] [blame] | 661 | pr_info("Couldn't register jprobe\n"); |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 662 | cpoint = CN_INVALID; |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 663 | } |
| 664 | |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 665 | return ret; |
| 666 | } |
| 667 | |
| 668 | static ssize_t do_register_entry(enum cname which, struct file *f, |
| 669 | const char __user *user_buf, size_t count, loff_t *off) |
| 670 | { |
| 671 | char *buf; |
| 672 | int err; |
| 673 | |
| 674 | if (count >= PAGE_SIZE) |
| 675 | return -EINVAL; |
| 676 | |
| 677 | buf = (char *)__get_free_page(GFP_KERNEL); |
| 678 | if (!buf) |
| 679 | return -ENOMEM; |
| 680 | if (copy_from_user(buf, user_buf, count)) { |
| 681 | free_page((unsigned long) buf); |
| 682 | return -EFAULT; |
| 683 | } |
| 684 | /* NULL-terminate and remove enter */ |
| 685 | buf[count] = '\0'; |
| 686 | strim(buf); |
| 687 | |
| 688 | cptype = parse_cp_type(buf, count); |
| 689 | free_page((unsigned long) buf); |
| 690 | |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 691 | if (cptype == CT_NONE) |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 692 | return -EINVAL; |
| 693 | |
| 694 | err = lkdtm_register_cpoint(which); |
| 695 | if (err < 0) |
| 696 | return err; |
| 697 | |
| 698 | *off += count; |
| 699 | |
| 700 | return count; |
| 701 | } |
| 702 | |
| 703 | /* Generic read callback that just prints out the available crash types */ |
| 704 | static ssize_t lkdtm_debugfs_read(struct file *f, char __user *user_buf, |
| 705 | size_t count, loff_t *off) |
| 706 | { |
| 707 | char *buf; |
| 708 | int i, n, out; |
| 709 | |
| 710 | buf = (char *)__get_free_page(GFP_KERNEL); |
Alan Cox | 086ff4b | 2012-07-30 14:43:24 -0700 | [diff] [blame] | 711 | if (buf == NULL) |
| 712 | return -ENOMEM; |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 713 | |
| 714 | n = snprintf(buf, PAGE_SIZE, "Available crash types:\n"); |
| 715 | for (i = 0; i < ARRAY_SIZE(cp_type); i++) |
| 716 | n += snprintf(buf + n, PAGE_SIZE - n, "%s\n", cp_type[i]); |
| 717 | buf[n] = '\0'; |
| 718 | |
| 719 | out = simple_read_from_buffer(user_buf, count, off, |
| 720 | buf, n); |
| 721 | free_page((unsigned long) buf); |
| 722 | |
| 723 | return out; |
| 724 | } |
| 725 | |
| 726 | static int lkdtm_debugfs_open(struct inode *inode, struct file *file) |
| 727 | { |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 728 | return 0; |
| 729 | } |
| 730 | |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 731 | |
| 732 | static ssize_t int_hardware_entry(struct file *f, const char __user *buf, |
| 733 | size_t count, loff_t *off) |
| 734 | { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 735 | return do_register_entry(CN_INT_HARDWARE_ENTRY, f, buf, count, off); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 736 | } |
| 737 | |
| 738 | static ssize_t int_hw_irq_en(struct file *f, const char __user *buf, |
| 739 | size_t count, loff_t *off) |
| 740 | { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 741 | return do_register_entry(CN_INT_HW_IRQ_EN, f, buf, count, off); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | static ssize_t int_tasklet_entry(struct file *f, const char __user *buf, |
| 745 | size_t count, loff_t *off) |
| 746 | { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 747 | return do_register_entry(CN_INT_TASKLET_ENTRY, f, buf, count, off); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 748 | } |
| 749 | |
| 750 | static ssize_t fs_devrw_entry(struct file *f, const char __user *buf, |
| 751 | size_t count, loff_t *off) |
| 752 | { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 753 | return do_register_entry(CN_FS_DEVRW, f, buf, count, off); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | static ssize_t mem_swapout_entry(struct file *f, const char __user *buf, |
| 757 | size_t count, loff_t *off) |
| 758 | { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 759 | return do_register_entry(CN_MEM_SWAPOUT, f, buf, count, off); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 760 | } |
| 761 | |
| 762 | static ssize_t timeradd_entry(struct file *f, const char __user *buf, |
| 763 | size_t count, loff_t *off) |
| 764 | { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 765 | return do_register_entry(CN_TIMERADD, f, buf, count, off); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 766 | } |
| 767 | |
| 768 | static ssize_t scsi_dispatch_cmd_entry(struct file *f, |
| 769 | const char __user *buf, size_t count, loff_t *off) |
| 770 | { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 771 | return do_register_entry(CN_SCSI_DISPATCH_CMD, f, buf, count, off); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 772 | } |
| 773 | |
| 774 | static ssize_t ide_core_cp_entry(struct file *f, const char __user *buf, |
| 775 | size_t count, loff_t *off) |
| 776 | { |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 777 | return do_register_entry(CN_IDE_CORE_CP, f, buf, count, off); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | /* Special entry to just crash directly. Available without KPROBEs */ |
| 781 | static ssize_t direct_entry(struct file *f, const char __user *user_buf, |
| 782 | size_t count, loff_t *off) |
| 783 | { |
| 784 | enum ctype type; |
| 785 | char *buf; |
| 786 | |
| 787 | if (count >= PAGE_SIZE) |
| 788 | return -EINVAL; |
| 789 | if (count < 1) |
| 790 | return -EINVAL; |
| 791 | |
| 792 | buf = (char *)__get_free_page(GFP_KERNEL); |
| 793 | if (!buf) |
| 794 | return -ENOMEM; |
| 795 | if (copy_from_user(buf, user_buf, count)) { |
| 796 | free_page((unsigned long) buf); |
| 797 | return -EFAULT; |
| 798 | } |
| 799 | /* NULL-terminate and remove enter */ |
| 800 | buf[count] = '\0'; |
| 801 | strim(buf); |
| 802 | |
| 803 | type = parse_cp_type(buf, count); |
| 804 | free_page((unsigned long) buf); |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 805 | if (type == CT_NONE) |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 806 | return -EINVAL; |
| 807 | |
Kees Cook | feac6e2 | 2014-02-09 13:48:46 -0800 | [diff] [blame] | 808 | pr_info("Performing direct entry %s\n", cp_type_to_str(type)); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 809 | lkdtm_do_action(type); |
| 810 | *off += count; |
| 811 | |
| 812 | return count; |
| 813 | } |
| 814 | |
| 815 | struct crash_entry { |
| 816 | const char *name; |
| 817 | const struct file_operations fops; |
| 818 | }; |
| 819 | |
| 820 | static const struct crash_entry crash_entries[] = { |
| 821 | {"DIRECT", {.read = lkdtm_debugfs_read, |
Arnd Bergmann | 05271ec | 2010-07-06 19:10:26 +0200 | [diff] [blame] | 822 | .llseek = generic_file_llseek, |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 823 | .open = lkdtm_debugfs_open, |
| 824 | .write = direct_entry} }, |
| 825 | {"INT_HARDWARE_ENTRY", {.read = lkdtm_debugfs_read, |
Arnd Bergmann | 05271ec | 2010-07-06 19:10:26 +0200 | [diff] [blame] | 826 | .llseek = generic_file_llseek, |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 827 | .open = lkdtm_debugfs_open, |
| 828 | .write = int_hardware_entry} }, |
| 829 | {"INT_HW_IRQ_EN", {.read = lkdtm_debugfs_read, |
Arnd Bergmann | 05271ec | 2010-07-06 19:10:26 +0200 | [diff] [blame] | 830 | .llseek = generic_file_llseek, |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 831 | .open = lkdtm_debugfs_open, |
| 832 | .write = int_hw_irq_en} }, |
| 833 | {"INT_TASKLET_ENTRY", {.read = lkdtm_debugfs_read, |
Arnd Bergmann | 05271ec | 2010-07-06 19:10:26 +0200 | [diff] [blame] | 834 | .llseek = generic_file_llseek, |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 835 | .open = lkdtm_debugfs_open, |
| 836 | .write = int_tasklet_entry} }, |
| 837 | {"FS_DEVRW", {.read = lkdtm_debugfs_read, |
Arnd Bergmann | 05271ec | 2010-07-06 19:10:26 +0200 | [diff] [blame] | 838 | .llseek = generic_file_llseek, |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 839 | .open = lkdtm_debugfs_open, |
| 840 | .write = fs_devrw_entry} }, |
| 841 | {"MEM_SWAPOUT", {.read = lkdtm_debugfs_read, |
Arnd Bergmann | 05271ec | 2010-07-06 19:10:26 +0200 | [diff] [blame] | 842 | .llseek = generic_file_llseek, |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 843 | .open = lkdtm_debugfs_open, |
| 844 | .write = mem_swapout_entry} }, |
| 845 | {"TIMERADD", {.read = lkdtm_debugfs_read, |
Arnd Bergmann | 05271ec | 2010-07-06 19:10:26 +0200 | [diff] [blame] | 846 | .llseek = generic_file_llseek, |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 847 | .open = lkdtm_debugfs_open, |
| 848 | .write = timeradd_entry} }, |
| 849 | {"SCSI_DISPATCH_CMD", {.read = lkdtm_debugfs_read, |
Arnd Bergmann | 05271ec | 2010-07-06 19:10:26 +0200 | [diff] [blame] | 850 | .llseek = generic_file_llseek, |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 851 | .open = lkdtm_debugfs_open, |
| 852 | .write = scsi_dispatch_cmd_entry} }, |
| 853 | {"IDE_CORE_CP", {.read = lkdtm_debugfs_read, |
Arnd Bergmann | 05271ec | 2010-07-06 19:10:26 +0200 | [diff] [blame] | 854 | .llseek = generic_file_llseek, |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 855 | .open = lkdtm_debugfs_open, |
| 856 | .write = ide_core_cp_entry} }, |
| 857 | }; |
| 858 | |
| 859 | static struct dentry *lkdtm_debugfs_root; |
| 860 | |
| 861 | static int __init lkdtm_module_init(void) |
| 862 | { |
| 863 | int ret = -EINVAL; |
| 864 | int n_debugfs_entries = 1; /* Assume only the direct entry */ |
| 865 | int i; |
| 866 | |
| 867 | /* Register debugfs interface */ |
| 868 | lkdtm_debugfs_root = debugfs_create_dir("provoke-crash", NULL); |
| 869 | if (!lkdtm_debugfs_root) { |
Kees Cook | feac6e2 | 2014-02-09 13:48:46 -0800 | [diff] [blame] | 870 | pr_err("creating root dir failed\n"); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 871 | return -ENODEV; |
| 872 | } |
| 873 | |
| 874 | #ifdef CONFIG_KPROBES |
| 875 | n_debugfs_entries = ARRAY_SIZE(crash_entries); |
| 876 | #endif |
| 877 | |
| 878 | for (i = 0; i < n_debugfs_entries; i++) { |
| 879 | const struct crash_entry *cur = &crash_entries[i]; |
| 880 | struct dentry *de; |
| 881 | |
| 882 | de = debugfs_create_file(cur->name, 0644, lkdtm_debugfs_root, |
| 883 | NULL, &cur->fops); |
| 884 | if (de == NULL) { |
Kees Cook | feac6e2 | 2014-02-09 13:48:46 -0800 | [diff] [blame] | 885 | pr_err("could not create %s\n", cur->name); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 886 | goto out_err; |
| 887 | } |
| 888 | } |
| 889 | |
| 890 | if (lkdtm_parse_commandline() == -EINVAL) { |
Kees Cook | feac6e2 | 2014-02-09 13:48:46 -0800 | [diff] [blame] | 891 | pr_info("Invalid command\n"); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 892 | goto out_err; |
| 893 | } |
| 894 | |
Namhyung Kim | 93e2f58 | 2010-10-26 14:22:40 -0700 | [diff] [blame] | 895 | if (cpoint != CN_INVALID && cptype != CT_NONE) { |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 896 | ret = lkdtm_register_cpoint(cpoint); |
| 897 | if (ret < 0) { |
Kees Cook | feac6e2 | 2014-02-09 13:48:46 -0800 | [diff] [blame] | 898 | pr_info("Invalid crash point %d\n", cpoint); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 899 | goto out_err; |
| 900 | } |
Kees Cook | feac6e2 | 2014-02-09 13:48:46 -0800 | [diff] [blame] | 901 | pr_info("Crash point %s of type %s registered\n", |
| 902 | cpoint_name, cpoint_type); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 903 | } else { |
Kees Cook | feac6e2 | 2014-02-09 13:48:46 -0800 | [diff] [blame] | 904 | pr_info("No crash points registered, enable through debugfs\n"); |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | return 0; |
| 908 | |
| 909 | out_err: |
| 910 | debugfs_remove_recursive(lkdtm_debugfs_root); |
| 911 | return ret; |
| 912 | } |
| 913 | |
Adrian Bunk | 2118116 | 2008-02-06 01:36:50 -0800 | [diff] [blame] | 914 | static void __exit lkdtm_module_exit(void) |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 915 | { |
Simon Kagstrom | 0347af4 | 2010-03-05 13:42:49 -0800 | [diff] [blame] | 916 | debugfs_remove_recursive(lkdtm_debugfs_root); |
| 917 | |
| 918 | unregister_jprobe(&lkdtm); |
Kees Cook | feac6e2 | 2014-02-09 13:48:46 -0800 | [diff] [blame] | 919 | pr_info("Crash point unregistered\n"); |
Ankita Garg | 8bb31b9 | 2006-10-02 02:17:36 -0700 | [diff] [blame] | 920 | } |
| 921 | |
| 922 | module_init(lkdtm_module_init); |
| 923 | module_exit(lkdtm_module_exit); |
| 924 | |
| 925 | MODULE_LICENSE("GPL"); |
Terry Chia | da86920 | 2014-07-02 21:02:25 +0800 | [diff] [blame] | 926 | MODULE_DESCRIPTION("Kprobe module for testing crash dumps"); |