Thomas Gleixner | 3e0a4e8 | 2019-05-23 11:14:55 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 2 | /* |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 3 | */ |
| 4 | |
| 5 | /* |
| 6 | * Copyright (C) 2004 Amit S. Kale <amitkale@linsyssoft.com> |
| 7 | * Copyright (C) 2000-2001 VERITAS Software Corporation. |
| 8 | * Copyright (C) 2002 Andi Kleen, SuSE Labs |
| 9 | * Copyright (C) 2004 LinSysSoft Technologies Pvt. Ltd. |
| 10 | * Copyright (C) 2007 MontaVista Software, Inc. |
| 11 | * Copyright (C) 2007-2008 Jason Wessel, Wind River Systems, Inc. |
| 12 | */ |
| 13 | /**************************************************************************** |
| 14 | * Contributor: Lake Stevens Instrument Division$ |
| 15 | * Written by: Glenn Engel $ |
| 16 | * Updated by: Amit Kale<akale@veritas.com> |
| 17 | * Updated by: Tom Rini <trini@kernel.crashing.org> |
| 18 | * Updated by: Jason Wessel <jason.wessel@windriver.com> |
| 19 | * Modified for 386 by Jim Kingdon, Cygnus Support. |
| 20 | * Origianl kgdb, compatibility with 2.1.xx kernel by |
| 21 | * David Grothe <dave@gcom.com> |
| 22 | * Integrated into 2.2.5 kernel by Tigran Aivazian <tigran@sco.com> |
| 23 | * X86_64 changes from Andi Kleen's patch merged by Jim Houston |
| 24 | */ |
| 25 | #include <linux/spinlock.h> |
| 26 | #include <linux/kdebug.h> |
| 27 | #include <linux/string.h> |
| 28 | #include <linux/kernel.h> |
| 29 | #include <linux/ptrace.h> |
| 30 | #include <linux/sched.h> |
| 31 | #include <linux/delay.h> |
| 32 | #include <linux/kgdb.h> |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 33 | #include <linux/smp.h> |
Jason Wessel | d359752 | 2008-02-15 14:55:53 -0600 | [diff] [blame] | 34 | #include <linux/nmi.h> |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 35 | #include <linux/hw_breakpoint.h> |
Jason Wessel | 3751d3e | 2012-03-23 09:35:05 -0500 | [diff] [blame] | 36 | #include <linux/uaccess.h> |
| 37 | #include <linux/memory.h> |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 38 | |
Andy Lutomirski | 35de5b0 | 2016-04-26 12:23:24 -0700 | [diff] [blame] | 39 | #include <asm/text-patching.h> |
K.Prasad | 62edab9 | 2009-06-01 23:47:06 +0530 | [diff] [blame] | 40 | #include <asm/debugreg.h> |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 41 | #include <asm/apicdef.h> |
Ingo Molnar | 7b6aa33 | 2009-02-17 13:58:15 +0100 | [diff] [blame] | 42 | #include <asm/apic.h> |
Don Zickus | 166d751 | 2011-01-06 16:18:49 -0500 | [diff] [blame] | 43 | #include <asm/nmi.h> |
Brian Gerst | 7b32aea | 2016-08-13 12:38:18 -0400 | [diff] [blame] | 44 | #include <asm/switch_to.h> |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 45 | |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 46 | struct dbg_reg_def_t dbg_reg_def[DBG_MAX_REG_NUM] = |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 47 | { |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 48 | #ifdef CONFIG_X86_32 |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 49 | { "ax", 4, offsetof(struct pt_regs, ax) }, |
| 50 | { "cx", 4, offsetof(struct pt_regs, cx) }, |
| 51 | { "dx", 4, offsetof(struct pt_regs, dx) }, |
| 52 | { "bx", 4, offsetof(struct pt_regs, bx) }, |
| 53 | { "sp", 4, offsetof(struct pt_regs, sp) }, |
| 54 | { "bp", 4, offsetof(struct pt_regs, bp) }, |
| 55 | { "si", 4, offsetof(struct pt_regs, si) }, |
| 56 | { "di", 4, offsetof(struct pt_regs, di) }, |
| 57 | { "ip", 4, offsetof(struct pt_regs, ip) }, |
| 58 | { "flags", 4, offsetof(struct pt_regs, flags) }, |
| 59 | { "cs", 4, offsetof(struct pt_regs, cs) }, |
| 60 | { "ss", 4, offsetof(struct pt_regs, ss) }, |
| 61 | { "ds", 4, offsetof(struct pt_regs, ds) }, |
| 62 | { "es", 4, offsetof(struct pt_regs, es) }, |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 63 | #else |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 64 | { "ax", 8, offsetof(struct pt_regs, ax) }, |
| 65 | { "bx", 8, offsetof(struct pt_regs, bx) }, |
| 66 | { "cx", 8, offsetof(struct pt_regs, cx) }, |
| 67 | { "dx", 8, offsetof(struct pt_regs, dx) }, |
Steffen Liebergeld | f59df35 | 2015-04-02 11:01:59 +0200 | [diff] [blame] | 68 | { "si", 8, offsetof(struct pt_regs, si) }, |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 69 | { "di", 8, offsetof(struct pt_regs, di) }, |
| 70 | { "bp", 8, offsetof(struct pt_regs, bp) }, |
| 71 | { "sp", 8, offsetof(struct pt_regs, sp) }, |
| 72 | { "r8", 8, offsetof(struct pt_regs, r8) }, |
| 73 | { "r9", 8, offsetof(struct pt_regs, r9) }, |
| 74 | { "r10", 8, offsetof(struct pt_regs, r10) }, |
| 75 | { "r11", 8, offsetof(struct pt_regs, r11) }, |
| 76 | { "r12", 8, offsetof(struct pt_regs, r12) }, |
| 77 | { "r13", 8, offsetof(struct pt_regs, r13) }, |
| 78 | { "r14", 8, offsetof(struct pt_regs, r14) }, |
| 79 | { "r15", 8, offsetof(struct pt_regs, r15) }, |
| 80 | { "ip", 8, offsetof(struct pt_regs, ip) }, |
| 81 | { "flags", 4, offsetof(struct pt_regs, flags) }, |
| 82 | { "cs", 4, offsetof(struct pt_regs, cs) }, |
| 83 | { "ss", 4, offsetof(struct pt_regs, ss) }, |
Jan Kiszka | 639077f | 2012-03-19 15:16:48 -0500 | [diff] [blame] | 84 | { "ds", 4, -1 }, |
| 85 | { "es", 4, -1 }, |
Jason Wessel | cf6f196 | 2009-12-11 08:43:16 -0600 | [diff] [blame] | 86 | #endif |
Jan Kiszka | 639077f | 2012-03-19 15:16:48 -0500 | [diff] [blame] | 87 | { "fs", 4, -1 }, |
| 88 | { "gs", 4, -1 }, |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 89 | }; |
| 90 | |
| 91 | int dbg_set_reg(int regno, void *mem, struct pt_regs *regs) |
| 92 | { |
| 93 | if ( |
| 94 | #ifdef CONFIG_X86_32 |
| 95 | regno == GDB_SS || regno == GDB_FS || regno == GDB_GS || |
| 96 | #endif |
| 97 | regno == GDB_SP || regno == GDB_ORIG_AX) |
| 98 | return 0; |
| 99 | |
| 100 | if (dbg_reg_def[regno].offset != -1) |
| 101 | memcpy((void *)regs + dbg_reg_def[regno].offset, mem, |
| 102 | dbg_reg_def[regno].size); |
| 103 | return 0; |
| 104 | } |
| 105 | |
| 106 | char *dbg_get_reg(int regno, void *mem, struct pt_regs *regs) |
| 107 | { |
| 108 | if (regno == GDB_ORIG_AX) { |
| 109 | memcpy(mem, ®s->orig_ax, sizeof(regs->orig_ax)); |
| 110 | return "orig_ax"; |
| 111 | } |
| 112 | if (regno >= DBG_MAX_REG_NUM || regno < 0) |
| 113 | return NULL; |
| 114 | |
| 115 | if (dbg_reg_def[regno].offset != -1) |
| 116 | memcpy(mem, (void *)regs + dbg_reg_def[regno].offset, |
| 117 | dbg_reg_def[regno].size); |
| 118 | |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 119 | #ifdef CONFIG_X86_32 |
Jason Wessel | 21431c2 | 2010-03-15 07:28:00 -0500 | [diff] [blame] | 120 | switch (regno) { |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 121 | case GDB_GS: |
| 122 | case GDB_FS: |
| 123 | *(unsigned long *)mem = 0xFFFF; |
| 124 | break; |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 125 | } |
Jason Wessel | 21431c2 | 2010-03-15 07:28:00 -0500 | [diff] [blame] | 126 | #endif |
Jason Wessel | 12bfa3d | 2010-08-05 09:22:20 -0500 | [diff] [blame] | 127 | return dbg_reg_def[regno].name; |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | /** |
| 131 | * sleeping_thread_to_gdb_regs - Convert ptrace regs to GDB regs |
| 132 | * @gdb_regs: A pointer to hold the registers in the order GDB wants. |
| 133 | * @p: The &struct task_struct of the desired process. |
| 134 | * |
| 135 | * Convert the register values of the sleeping process in @p to |
| 136 | * the format that GDB expects. |
| 137 | * This function is called when kgdb does not have access to the |
| 138 | * &struct pt_regs and therefore it should fill the gdb registers |
| 139 | * @gdb_regs with what has been saved in &struct thread_struct |
| 140 | * thread field during switch_to. |
| 141 | */ |
| 142 | void sleeping_thread_to_gdb_regs(unsigned long *gdb_regs, struct task_struct *p) |
| 143 | { |
Jason Wessel | 703a1ed | 2008-09-26 10:36:42 -0500 | [diff] [blame] | 144 | #ifndef CONFIG_X86_32 |
| 145 | u32 *gdb_regs32 = (u32 *)gdb_regs; |
| 146 | #endif |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 147 | gdb_regs[GDB_AX] = 0; |
| 148 | gdb_regs[GDB_BX] = 0; |
| 149 | gdb_regs[GDB_CX] = 0; |
| 150 | gdb_regs[GDB_DX] = 0; |
| 151 | gdb_regs[GDB_SI] = 0; |
| 152 | gdb_regs[GDB_DI] = 0; |
Brian Gerst | 7b32aea | 2016-08-13 12:38:18 -0400 | [diff] [blame] | 153 | gdb_regs[GDB_BP] = ((struct inactive_task_frame *)p->thread.sp)->bp; |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 154 | #ifdef CONFIG_X86_32 |
| 155 | gdb_regs[GDB_DS] = __KERNEL_DS; |
| 156 | gdb_regs[GDB_ES] = __KERNEL_DS; |
| 157 | gdb_regs[GDB_PS] = 0; |
| 158 | gdb_regs[GDB_CS] = __KERNEL_CS; |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 159 | gdb_regs[GDB_SS] = __KERNEL_DS; |
| 160 | gdb_regs[GDB_FS] = 0xFFFF; |
| 161 | gdb_regs[GDB_GS] = 0xFFFF; |
| 162 | #else |
Brian Gerst | 1636301 | 2016-08-13 12:38:17 -0400 | [diff] [blame] | 163 | gdb_regs32[GDB_PS] = 0; |
Jason Wessel | 703a1ed | 2008-09-26 10:36:42 -0500 | [diff] [blame] | 164 | gdb_regs32[GDB_CS] = __KERNEL_CS; |
| 165 | gdb_regs32[GDB_SS] = __KERNEL_DS; |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 166 | gdb_regs[GDB_R8] = 0; |
| 167 | gdb_regs[GDB_R9] = 0; |
| 168 | gdb_regs[GDB_R10] = 0; |
| 169 | gdb_regs[GDB_R11] = 0; |
| 170 | gdb_regs[GDB_R12] = 0; |
| 171 | gdb_regs[GDB_R13] = 0; |
| 172 | gdb_regs[GDB_R14] = 0; |
| 173 | gdb_regs[GDB_R15] = 0; |
| 174 | #endif |
Brian Gerst | 4e047aa | 2016-08-13 12:38:16 -0400 | [diff] [blame] | 175 | gdb_regs[GDB_PC] = 0; |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 176 | gdb_regs[GDB_SP] = p->thread.sp; |
| 177 | } |
| 178 | |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 179 | static struct hw_breakpoint { |
| 180 | unsigned enabled; |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 181 | unsigned long addr; |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 182 | int len; |
| 183 | int type; |
Namhyung Kim | 8c8aefc | 2010-08-07 11:00:59 -0700 | [diff] [blame] | 184 | struct perf_event * __percpu *pev; |
Dongdong Deng | df49393 | 2010-08-05 09:22:25 -0500 | [diff] [blame] | 185 | } breakinfo[HBP_NUM]; |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 186 | |
Jason Wessel | 031acd8 | 2010-05-20 21:04:30 -0500 | [diff] [blame] | 187 | static unsigned long early_dr7; |
| 188 | |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 189 | static void kgdb_correct_hw_break(void) |
| 190 | { |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 191 | int breakno; |
| 192 | |
Dongdong Deng | df49393 | 2010-08-05 09:22:25 -0500 | [diff] [blame] | 193 | for (breakno = 0; breakno < HBP_NUM; breakno++) { |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 194 | struct perf_event *bp; |
| 195 | struct arch_hw_breakpoint *info; |
| 196 | int val; |
| 197 | int cpu = raw_smp_processor_id(); |
| 198 | if (!breakinfo[breakno].enabled) |
| 199 | continue; |
Jason Wessel | 031acd8 | 2010-05-20 21:04:30 -0500 | [diff] [blame] | 200 | if (dbg_is_early) { |
| 201 | set_debugreg(breakinfo[breakno].addr, breakno); |
| 202 | early_dr7 |= encode_dr7(breakno, |
| 203 | breakinfo[breakno].len, |
| 204 | breakinfo[breakno].type); |
| 205 | set_debugreg(early_dr7, 7); |
| 206 | continue; |
| 207 | } |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 208 | bp = *per_cpu_ptr(breakinfo[breakno].pev, cpu); |
| 209 | info = counter_arch_bp(bp); |
| 210 | if (bp->attr.disabled != 1) |
| 211 | continue; |
| 212 | bp->attr.bp_addr = breakinfo[breakno].addr; |
| 213 | bp->attr.bp_len = breakinfo[breakno].len; |
| 214 | bp->attr.bp_type = breakinfo[breakno].type; |
| 215 | info->address = breakinfo[breakno].addr; |
| 216 | info->len = breakinfo[breakno].len; |
| 217 | info->type = breakinfo[breakno].type; |
| 218 | val = arch_install_hw_breakpoint(bp); |
| 219 | if (!val) |
| 220 | bp->attr.disabled = 0; |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 221 | } |
Jason Wessel | 031acd8 | 2010-05-20 21:04:30 -0500 | [diff] [blame] | 222 | if (!dbg_is_early) |
| 223 | hw_breakpoint_restore(); |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 224 | } |
| 225 | |
Jason Wessel | 5352ae63 | 2010-01-28 17:04:43 -0600 | [diff] [blame] | 226 | static int hw_break_reserve_slot(int breakno) |
| 227 | { |
| 228 | int cpu; |
| 229 | int cnt = 0; |
| 230 | struct perf_event **pevent; |
| 231 | |
Jason Wessel | 031acd8 | 2010-05-20 21:04:30 -0500 | [diff] [blame] | 232 | if (dbg_is_early) |
| 233 | return 0; |
| 234 | |
Jason Wessel | 5352ae63 | 2010-01-28 17:04:43 -0600 | [diff] [blame] | 235 | for_each_online_cpu(cpu) { |
| 236 | cnt++; |
| 237 | pevent = per_cpu_ptr(breakinfo[breakno].pev, cpu); |
| 238 | if (dbg_reserve_bp_slot(*pevent)) |
| 239 | goto fail; |
| 240 | } |
| 241 | |
| 242 | return 0; |
| 243 | |
| 244 | fail: |
| 245 | for_each_online_cpu(cpu) { |
| 246 | cnt--; |
| 247 | if (!cnt) |
| 248 | break; |
| 249 | pevent = per_cpu_ptr(breakinfo[breakno].pev, cpu); |
| 250 | dbg_release_bp_slot(*pevent); |
| 251 | } |
| 252 | return -1; |
| 253 | } |
| 254 | |
| 255 | static int hw_break_release_slot(int breakno) |
| 256 | { |
| 257 | struct perf_event **pevent; |
| 258 | int cpu; |
| 259 | |
Jason Wessel | 031acd8 | 2010-05-20 21:04:30 -0500 | [diff] [blame] | 260 | if (dbg_is_early) |
| 261 | return 0; |
| 262 | |
Jason Wessel | 5352ae63 | 2010-01-28 17:04:43 -0600 | [diff] [blame] | 263 | for_each_online_cpu(cpu) { |
| 264 | pevent = per_cpu_ptr(breakinfo[breakno].pev, cpu); |
| 265 | if (dbg_release_bp_slot(*pevent)) |
| 266 | /* |
Lucas De Marchi | 0d2eb44 | 2011-03-17 16:24:16 -0300 | [diff] [blame] | 267 | * The debugger is responsible for handing the retry on |
Jason Wessel | 5352ae63 | 2010-01-28 17:04:43 -0600 | [diff] [blame] | 268 | * remove failure. |
| 269 | */ |
| 270 | return -1; |
| 271 | } |
| 272 | return 0; |
| 273 | } |
| 274 | |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 275 | static int |
| 276 | kgdb_remove_hw_break(unsigned long addr, int len, enum kgdb_bptype bptype) |
| 277 | { |
| 278 | int i; |
| 279 | |
Dongdong Deng | df49393 | 2010-08-05 09:22:25 -0500 | [diff] [blame] | 280 | for (i = 0; i < HBP_NUM; i++) |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 281 | if (breakinfo[i].addr == addr && breakinfo[i].enabled) |
| 282 | break; |
Dongdong Deng | df49393 | 2010-08-05 09:22:25 -0500 | [diff] [blame] | 283 | if (i == HBP_NUM) |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 284 | return -1; |
| 285 | |
Jason Wessel | 5352ae63 | 2010-01-28 17:04:43 -0600 | [diff] [blame] | 286 | if (hw_break_release_slot(i)) { |
| 287 | printk(KERN_ERR "Cannot remove hw breakpoint at %lx\n", addr); |
| 288 | return -1; |
| 289 | } |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 290 | breakinfo[i].enabled = 0; |
| 291 | |
| 292 | return 0; |
| 293 | } |
| 294 | |
| 295 | static void kgdb_remove_all_hw_break(void) |
| 296 | { |
| 297 | int i; |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 298 | int cpu = raw_smp_processor_id(); |
| 299 | struct perf_event *bp; |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 300 | |
Dongdong Deng | df49393 | 2010-08-05 09:22:25 -0500 | [diff] [blame] | 301 | for (i = 0; i < HBP_NUM; i++) { |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 302 | if (!breakinfo[i].enabled) |
| 303 | continue; |
| 304 | bp = *per_cpu_ptr(breakinfo[i].pev, cpu); |
Jason Wessel | 10a6e67 | 2010-11-15 08:07:35 -0600 | [diff] [blame] | 305 | if (!bp->attr.disabled) { |
| 306 | arch_uninstall_hw_breakpoint(bp); |
| 307 | bp->attr.disabled = 1; |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 308 | continue; |
Jason Wessel | 10a6e67 | 2010-11-15 08:07:35 -0600 | [diff] [blame] | 309 | } |
Jason Wessel | 031acd8 | 2010-05-20 21:04:30 -0500 | [diff] [blame] | 310 | if (dbg_is_early) |
| 311 | early_dr7 &= ~encode_dr7(i, breakinfo[i].len, |
| 312 | breakinfo[i].type); |
Jason Wessel | 10a6e67 | 2010-11-15 08:07:35 -0600 | [diff] [blame] | 313 | else if (hw_break_release_slot(i)) |
| 314 | printk(KERN_ERR "KGDB: hw bpt remove failed %lx\n", |
| 315 | breakinfo[i].addr); |
| 316 | breakinfo[i].enabled = 0; |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 317 | } |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | static int |
| 321 | kgdb_set_hw_break(unsigned long addr, int len, enum kgdb_bptype bptype) |
| 322 | { |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 323 | int i; |
| 324 | |
Dongdong Deng | df49393 | 2010-08-05 09:22:25 -0500 | [diff] [blame] | 325 | for (i = 0; i < HBP_NUM; i++) |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 326 | if (!breakinfo[i].enabled) |
| 327 | break; |
Dongdong Deng | df49393 | 2010-08-05 09:22:25 -0500 | [diff] [blame] | 328 | if (i == HBP_NUM) |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 329 | return -1; |
| 330 | |
| 331 | switch (bptype) { |
| 332 | case BP_HARDWARE_BREAKPOINT: |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 333 | len = 1; |
| 334 | breakinfo[i].type = X86_BREAKPOINT_EXECUTE; |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 335 | break; |
| 336 | case BP_WRITE_WATCHPOINT: |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 337 | breakinfo[i].type = X86_BREAKPOINT_WRITE; |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 338 | break; |
| 339 | case BP_ACCESS_WATCHPOINT: |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 340 | breakinfo[i].type = X86_BREAKPOINT_RW; |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 341 | break; |
| 342 | default: |
| 343 | return -1; |
| 344 | } |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 345 | switch (len) { |
| 346 | case 1: |
| 347 | breakinfo[i].len = X86_BREAKPOINT_LEN_1; |
| 348 | break; |
| 349 | case 2: |
| 350 | breakinfo[i].len = X86_BREAKPOINT_LEN_2; |
| 351 | break; |
| 352 | case 4: |
| 353 | breakinfo[i].len = X86_BREAKPOINT_LEN_4; |
| 354 | break; |
| 355 | #ifdef CONFIG_X86_64 |
| 356 | case 8: |
| 357 | breakinfo[i].len = X86_BREAKPOINT_LEN_8; |
| 358 | break; |
| 359 | #endif |
| 360 | default: |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 361 | return -1; |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 362 | } |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 363 | breakinfo[i].addr = addr; |
Jason Wessel | 5352ae63 | 2010-01-28 17:04:43 -0600 | [diff] [blame] | 364 | if (hw_break_reserve_slot(i)) { |
| 365 | breakinfo[i].addr = 0; |
| 366 | return -1; |
| 367 | } |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 368 | breakinfo[i].enabled = 1; |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 369 | |
| 370 | return 0; |
| 371 | } |
| 372 | |
| 373 | /** |
| 374 | * kgdb_disable_hw_debug - Disable hardware debugging while we in kgdb. |
| 375 | * @regs: Current &struct pt_regs. |
| 376 | * |
| 377 | * This function will be called if the particular architecture must |
| 378 | * disable hardware debugging while it is processing gdb packets or |
| 379 | * handling exception. |
| 380 | */ |
Dongdong Deng | d7ba979d | 2010-08-18 06:02:00 -0500 | [diff] [blame] | 381 | static void kgdb_disable_hw_debug(struct pt_regs *regs) |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 382 | { |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 383 | int i; |
| 384 | int cpu = raw_smp_processor_id(); |
| 385 | struct perf_event *bp; |
| 386 | |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 387 | /* Disable hardware debugging while we are in kgdb: */ |
| 388 | set_debugreg(0UL, 7); |
Dongdong Deng | df49393 | 2010-08-05 09:22:25 -0500 | [diff] [blame] | 389 | for (i = 0; i < HBP_NUM; i++) { |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 390 | if (!breakinfo[i].enabled) |
| 391 | continue; |
Jason Wessel | 031acd8 | 2010-05-20 21:04:30 -0500 | [diff] [blame] | 392 | if (dbg_is_early) { |
| 393 | early_dr7 &= ~encode_dr7(i, breakinfo[i].len, |
| 394 | breakinfo[i].type); |
| 395 | continue; |
| 396 | } |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 397 | bp = *per_cpu_ptr(breakinfo[i].pev, cpu); |
| 398 | if (bp->attr.disabled == 1) |
| 399 | continue; |
| 400 | arch_uninstall_hw_breakpoint(bp); |
| 401 | bp->attr.disabled = 1; |
| 402 | } |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 403 | } |
| 404 | |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 405 | #ifdef CONFIG_SMP |
| 406 | /** |
| 407 | * kgdb_roundup_cpus - Get other CPUs into a holding pattern |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 408 | * |
| 409 | * On SMP systems, we need to get the attention of the other CPUs |
| 410 | * and get them be in a known state. This should do what is needed |
| 411 | * to get the other CPUs to call kgdb_wait(). Note that on some arches, |
| 412 | * the NMI approach is not used for rounding up all the CPUs. For example, |
Douglas Anderson | 9ef7fa5 | 2018-12-04 19:38:25 -0800 | [diff] [blame] | 413 | * in case of MIPS, smp_call_function() is used to roundup CPUs. |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 414 | * |
| 415 | * On non-SMP systems, this is not called. |
| 416 | */ |
Douglas Anderson | 9ef7fa5 | 2018-12-04 19:38:25 -0800 | [diff] [blame] | 417 | void kgdb_roundup_cpus(void) |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 418 | { |
Thomas Gleixner | 22ca7ee | 2019-07-22 20:47:23 +0200 | [diff] [blame] | 419 | apic_send_IPI_allbutself(NMI_VECTOR); |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 420 | } |
| 421 | #endif |
| 422 | |
| 423 | /** |
| 424 | * kgdb_arch_handle_exception - Handle architecture specific GDB packets. |
Wanpeng Li | c15acff | 2012-06-12 12:53:21 +0800 | [diff] [blame] | 425 | * @e_vector: The error vector of the exception that happened. |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 426 | * @signo: The signal number of the exception that happened. |
| 427 | * @err_code: The error code of the exception that happened. |
Wanpeng Li | c15acff | 2012-06-12 12:53:21 +0800 | [diff] [blame] | 428 | * @remcomInBuffer: The buffer of the packet we have read. |
| 429 | * @remcomOutBuffer: The buffer of %BUFMAX bytes to write a packet into. |
| 430 | * @linux_regs: The &struct pt_regs of the current process. |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 431 | * |
| 432 | * This function MUST handle the 'c' and 's' command packets, |
| 433 | * as well packets to set / remove a hardware breakpoint, if used. |
| 434 | * If there are additional packets which the hardware needs to handle, |
| 435 | * they are handled here. The code should return -1 if it wants to |
| 436 | * process more packets, and a %0 or %1 if it wants to exit from the |
| 437 | * kgdb callback. |
| 438 | */ |
| 439 | int kgdb_arch_handle_exception(int e_vector, int signo, int err_code, |
| 440 | char *remcomInBuffer, char *remcomOutBuffer, |
| 441 | struct pt_regs *linux_regs) |
| 442 | { |
| 443 | unsigned long addr; |
| 444 | char *ptr; |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 445 | |
| 446 | switch (remcomInBuffer[0]) { |
| 447 | case 'c': |
| 448 | case 's': |
| 449 | /* try to read optional parameter, pc unchanged if no parm */ |
| 450 | ptr = &remcomInBuffer[1]; |
| 451 | if (kgdb_hex2long(&ptr, &addr)) |
| 452 | linux_regs->ip = addr; |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 453 | fallthrough; |
Jason Wessel | 737a460 | 2008-03-07 16:34:16 -0600 | [diff] [blame] | 454 | case 'D': |
| 455 | case 'k': |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 456 | /* clear the trace bit */ |
Harvey Harrison | fda31d7 | 2008-04-18 09:54:38 -0700 | [diff] [blame] | 457 | linux_regs->flags &= ~X86_EFLAGS_TF; |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 458 | atomic_set(&kgdb_cpu_doing_single_step, -1); |
| 459 | |
| 460 | /* set the trace bit if we're stepping */ |
| 461 | if (remcomInBuffer[0] == 's') { |
Harvey Harrison | fda31d7 | 2008-04-18 09:54:38 -0700 | [diff] [blame] | 462 | linux_regs->flags |= X86_EFLAGS_TF; |
Jason Wessel | d7161a6 | 2008-09-26 10:36:41 -0500 | [diff] [blame] | 463 | atomic_set(&kgdb_cpu_doing_single_step, |
| 464 | raw_smp_processor_id()); |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | return 0; |
| 468 | } |
| 469 | |
| 470 | /* this means that we do not want to exit from the handler: */ |
| 471 | return -1; |
| 472 | } |
| 473 | |
| 474 | static inline int |
| 475 | single_step_cont(struct pt_regs *regs, struct die_args *args) |
| 476 | { |
| 477 | /* |
| 478 | * Single step exception from kernel space to user space so |
| 479 | * eat the exception and continue the process: |
| 480 | */ |
| 481 | printk(KERN_ERR "KGDB: trap/step from kernel to user space, " |
| 482 | "resuming...\n"); |
| 483 | kgdb_arch_handle_exception(args->trapnr, args->signr, |
| 484 | args->err, "c", "", regs); |
K.Prasad | 62edab9 | 2009-06-01 23:47:06 +0530 | [diff] [blame] | 485 | /* |
| 486 | * Reset the BS bit in dr6 (pointed by args->err) to |
| 487 | * denote completion of processing |
| 488 | */ |
| 489 | (*(unsigned long *)ERR_PTR(args->err)) &= ~DR_STEP; |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 490 | |
| 491 | return NOTIFY_STOP; |
| 492 | } |
| 493 | |
Denys Vlasenko | 0d44975 | 2015-09-26 14:47:17 +0200 | [diff] [blame] | 494 | static DECLARE_BITMAP(was_in_debug_nmi, NR_CPUS); |
Jason Wessel | d359752 | 2008-02-15 14:55:53 -0600 | [diff] [blame] | 495 | |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 496 | static int kgdb_nmi_handler(unsigned int cmd, struct pt_regs *regs) |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 497 | { |
Denys Vlasenko | 0d44975 | 2015-09-26 14:47:17 +0200 | [diff] [blame] | 498 | int cpu; |
| 499 | |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 500 | switch (cmd) { |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 501 | case NMI_LOCAL: |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 502 | if (atomic_read(&kgdb_active) != -1) { |
| 503 | /* KGDB CPU roundup */ |
Denys Vlasenko | 0d44975 | 2015-09-26 14:47:17 +0200 | [diff] [blame] | 504 | cpu = raw_smp_processor_id(); |
| 505 | kgdb_nmicallback(cpu, regs); |
| 506 | set_bit(cpu, was_in_debug_nmi); |
Jason Wessel | d359752 | 2008-02-15 14:55:53 -0600 | [diff] [blame] | 507 | touch_nmi_watchdog(); |
Denys Vlasenko | 0d44975 | 2015-09-26 14:47:17 +0200 | [diff] [blame] | 508 | |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 509 | return NMI_HANDLED; |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 510 | } |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 511 | break; |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 512 | |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 513 | case NMI_UNKNOWN: |
Denys Vlasenko | 0d44975 | 2015-09-26 14:47:17 +0200 | [diff] [blame] | 514 | cpu = raw_smp_processor_id(); |
| 515 | |
| 516 | if (__test_and_clear_bit(cpu, was_in_debug_nmi)) |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 517 | return NMI_HANDLED; |
Denys Vlasenko | 0d44975 | 2015-09-26 14:47:17 +0200 | [diff] [blame] | 518 | |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 519 | break; |
| 520 | default: |
| 521 | /* do nothing */ |
| 522 | break; |
| 523 | } |
| 524 | return NMI_DONE; |
| 525 | } |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 526 | |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 527 | static int __kgdb_notify(struct die_args *args, unsigned long cmd) |
| 528 | { |
| 529 | struct pt_regs *regs = args->regs; |
| 530 | |
| 531 | switch (cmd) { |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 532 | case DIE_DEBUG: |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 533 | if (atomic_read(&kgdb_cpu_doing_single_step) != -1) { |
Jason Wessel | d7161a6 | 2008-09-26 10:36:41 -0500 | [diff] [blame] | 534 | if (user_mode(regs)) |
| 535 | return single_step_cont(regs, args); |
| 536 | break; |
| 537 | } else if (test_thread_flag(TIF_SINGLESTEP)) |
| 538 | /* This means a user thread is single stepping |
| 539 | * a system call which should be ignored |
| 540 | */ |
| 541 | return NOTIFY_DONE; |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 542 | fallthrough; |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 543 | default: |
| 544 | if (user_mode(regs)) |
| 545 | return NOTIFY_DONE; |
| 546 | } |
| 547 | |
Jason Wessel | f503b5a | 2010-05-20 21:04:25 -0500 | [diff] [blame] | 548 | if (kgdb_handle_exception(args->trapnr, args->signr, cmd, regs)) |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 549 | return NOTIFY_DONE; |
| 550 | |
Jason Wessel | 737a460 | 2008-03-07 16:34:16 -0600 | [diff] [blame] | 551 | /* Must touch watchdog before return to normal operation */ |
| 552 | touch_nmi_watchdog(); |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 553 | return NOTIFY_STOP; |
| 554 | } |
| 555 | |
Jason Wessel | f503b5a | 2010-05-20 21:04:25 -0500 | [diff] [blame] | 556 | int kgdb_ll_trap(int cmd, const char *str, |
| 557 | struct pt_regs *regs, long err, int trap, int sig) |
| 558 | { |
| 559 | struct die_args args = { |
| 560 | .regs = regs, |
| 561 | .str = str, |
| 562 | .err = err, |
| 563 | .trapnr = trap, |
| 564 | .signr = sig, |
| 565 | |
| 566 | }; |
| 567 | |
| 568 | if (!kgdb_io_module_registered) |
| 569 | return NOTIFY_DONE; |
| 570 | |
| 571 | return __kgdb_notify(&args, cmd); |
| 572 | } |
Jason Wessel | f503b5a | 2010-05-20 21:04:25 -0500 | [diff] [blame] | 573 | |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 574 | static int |
| 575 | kgdb_notify(struct notifier_block *self, unsigned long cmd, void *ptr) |
| 576 | { |
| 577 | unsigned long flags; |
| 578 | int ret; |
| 579 | |
| 580 | local_irq_save(flags); |
| 581 | ret = __kgdb_notify(ptr, cmd); |
| 582 | local_irq_restore(flags); |
| 583 | |
| 584 | return ret; |
| 585 | } |
| 586 | |
| 587 | static struct notifier_block kgdb_notifier = { |
| 588 | .notifier_call = kgdb_notify, |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 589 | }; |
| 590 | |
| 591 | /** |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame] | 592 | * kgdb_arch_init - Perform any architecture specific initialization. |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 593 | * |
Adam Buchbinder | 6a6256f | 2016-02-23 15:34:30 -0800 | [diff] [blame] | 594 | * This function will handle the initialization of any architecture |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 595 | * specific callbacks. |
| 596 | */ |
| 597 | int kgdb_arch_init(void) |
| 598 | { |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 599 | int retval; |
| 600 | |
| 601 | retval = register_die_notifier(&kgdb_notifier); |
| 602 | if (retval) |
| 603 | goto out; |
| 604 | |
| 605 | retval = register_nmi_handler(NMI_LOCAL, kgdb_nmi_handler, |
| 606 | 0, "kgdb"); |
| 607 | if (retval) |
| 608 | goto out1; |
| 609 | |
| 610 | retval = register_nmi_handler(NMI_UNKNOWN, kgdb_nmi_handler, |
| 611 | 0, "kgdb"); |
| 612 | |
| 613 | if (retval) |
| 614 | goto out2; |
| 615 | |
| 616 | return retval; |
| 617 | |
| 618 | out2: |
| 619 | unregister_nmi_handler(NMI_LOCAL, "kgdb"); |
| 620 | out1: |
| 621 | unregister_die_notifier(&kgdb_notifier); |
| 622 | out: |
| 623 | return retval; |
Jason Wessel | 0b4b382 | 2010-05-20 21:04:29 -0500 | [diff] [blame] | 624 | } |
| 625 | |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 626 | static void kgdb_hw_overflow_handler(struct perf_event *event, |
Jason Wessel | ba773f7 | 2010-07-28 19:10:30 -0500 | [diff] [blame] | 627 | struct perf_sample_data *data, struct pt_regs *regs) |
| 628 | { |
Jason Wessel | fad99fa | 2010-10-20 08:20:00 -0500 | [diff] [blame] | 629 | struct task_struct *tsk = current; |
| 630 | int i; |
| 631 | |
Peter Zijlstra | d53d9bc0 | 2020-09-02 15:26:02 +0200 | [diff] [blame] | 632 | for (i = 0; i < 4; i++) { |
Jason Wessel | fad99fa | 2010-10-20 08:20:00 -0500 | [diff] [blame] | 633 | if (breakinfo[i].enabled) |
Peter Zijlstra | d53d9bc0 | 2020-09-02 15:26:02 +0200 | [diff] [blame] | 634 | tsk->thread.virtual_dr6 |= (DR_TRAP0 << i); |
| 635 | } |
Jason Wessel | ba773f7 | 2010-07-28 19:10:30 -0500 | [diff] [blame] | 636 | } |
| 637 | |
Jason Wessel | 0b4b382 | 2010-05-20 21:04:29 -0500 | [diff] [blame] | 638 | void kgdb_arch_late(void) |
| 639 | { |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 640 | int i, cpu; |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 641 | struct perf_event_attr attr; |
| 642 | struct perf_event **pevent; |
| 643 | |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 644 | /* |
| 645 | * Pre-allocate the hw breakpoint structions in the non-atomic |
| 646 | * portion of kgdb because this operation requires mutexs to |
| 647 | * complete. |
| 648 | */ |
Jason Wessel | ab310b5 | 2010-03-30 14:05:07 -0500 | [diff] [blame] | 649 | hw_breakpoint_init(&attr); |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 650 | attr.bp_addr = (unsigned long)kgdb_arch_init; |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 651 | attr.bp_len = HW_BREAKPOINT_LEN_1; |
| 652 | attr.bp_type = HW_BREAKPOINT_W; |
| 653 | attr.disabled = 1; |
Dongdong Deng | df49393 | 2010-08-05 09:22:25 -0500 | [diff] [blame] | 654 | for (i = 0; i < HBP_NUM; i++) { |
Jason Wessel | 0b4b382 | 2010-05-20 21:04:29 -0500 | [diff] [blame] | 655 | if (breakinfo[i].pev) |
| 656 | continue; |
Avi Kivity | 4dc0da8 | 2011-06-29 18:42:35 +0300 | [diff] [blame] | 657 | breakinfo[i].pev = register_wide_hw_breakpoint(&attr, NULL, NULL); |
Jason Wessel | 91b152a | 2010-08-23 09:20:14 -0500 | [diff] [blame] | 658 | if (IS_ERR((void * __force)breakinfo[i].pev)) { |
Jason Wessel | 0b4b382 | 2010-05-20 21:04:29 -0500 | [diff] [blame] | 659 | printk(KERN_ERR "kgdb: Could not allocate hw" |
| 660 | "breakpoints\nDisabling the kernel debugger\n"); |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 661 | breakinfo[i].pev = NULL; |
| 662 | kgdb_arch_exit(); |
Jason Wessel | 0b4b382 | 2010-05-20 21:04:29 -0500 | [diff] [blame] | 663 | return; |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 664 | } |
| 665 | for_each_online_cpu(cpu) { |
| 666 | pevent = per_cpu_ptr(breakinfo[i].pev, cpu); |
| 667 | pevent[0]->hw.sample_period = 1; |
Jason Wessel | ba773f7 | 2010-07-28 19:10:30 -0500 | [diff] [blame] | 668 | pevent[0]->overflow_handler = kgdb_hw_overflow_handler; |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 669 | if (pevent[0]->destroy != NULL) { |
| 670 | pevent[0]->destroy = NULL; |
| 671 | release_bp_slot(*pevent); |
| 672 | } |
| 673 | } |
| 674 | } |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 675 | } |
| 676 | |
| 677 | /** |
| 678 | * kgdb_arch_exit - Perform any architecture specific uninitalization. |
| 679 | * |
| 680 | * This function will handle the uninitalization of any architecture |
| 681 | * specific callbacks, for dynamic registration and unregistration. |
| 682 | */ |
| 683 | void kgdb_arch_exit(void) |
| 684 | { |
Jason Wessel | cc09674 | 2010-01-28 17:04:42 -0600 | [diff] [blame] | 685 | int i; |
| 686 | for (i = 0; i < 4; i++) { |
| 687 | if (breakinfo[i].pev) { |
| 688 | unregister_wide_hw_breakpoint(breakinfo[i].pev); |
| 689 | breakinfo[i].pev = NULL; |
| 690 | } |
| 691 | } |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 692 | unregister_nmi_handler(NMI_UNKNOWN, "kgdb"); |
| 693 | unregister_nmi_handler(NMI_LOCAL, "kgdb"); |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 694 | unregister_die_notifier(&kgdb_notifier); |
| 695 | } |
| 696 | |
| 697 | /** |
| 698 | * |
| 699 | * kgdb_skipexception - Bail out of KGDB when we've been triggered. |
| 700 | * @exception: Exception vector number |
| 701 | * @regs: Current &struct pt_regs. |
| 702 | * |
| 703 | * On some architectures we need to skip a breakpoint exception when |
| 704 | * it occurs after a breakpoint has been removed. |
| 705 | * |
| 706 | * Skip an int3 exception when it occurs after a breakpoint has been |
| 707 | * removed. Backtrack eip by 1 since the int3 would have caused it to |
| 708 | * increment by 1. |
| 709 | */ |
| 710 | int kgdb_skipexception(int exception, struct pt_regs *regs) |
| 711 | { |
| 712 | if (exception == 3 && kgdb_isremovedbreak(regs->ip - 1)) { |
| 713 | regs->ip -= 1; |
| 714 | return 1; |
| 715 | } |
| 716 | return 0; |
| 717 | } |
| 718 | |
| 719 | unsigned long kgdb_arch_pc(int exception, struct pt_regs *regs) |
| 720 | { |
| 721 | if (exception == 3) |
| 722 | return instruction_pointer(regs) - 1; |
| 723 | return instruction_pointer(regs); |
| 724 | } |
| 725 | |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 726 | void kgdb_arch_set_pc(struct pt_regs *regs, unsigned long ip) |
| 727 | { |
| 728 | regs->ip = ip; |
| 729 | } |
| 730 | |
Jason Wessel | 3751d3e | 2012-03-23 09:35:05 -0500 | [diff] [blame] | 731 | int kgdb_arch_set_breakpoint(struct kgdb_bkpt *bpt) |
| 732 | { |
| 733 | int err; |
Jason Wessel | 3751d3e | 2012-03-23 09:35:05 -0500 | [diff] [blame] | 734 | |
| 735 | bpt->type = BP_BREAKPOINT; |
Christoph Hellwig | fe55731 | 2020-06-17 09:37:53 +0200 | [diff] [blame] | 736 | err = copy_from_kernel_nofault(bpt->saved_instr, (char *)bpt->bpt_addr, |
Jason Wessel | 3751d3e | 2012-03-23 09:35:05 -0500 | [diff] [blame] | 737 | BREAK_INSTR_SIZE); |
| 738 | if (err) |
| 739 | return err; |
Christoph Hellwig | fe55731 | 2020-06-17 09:37:53 +0200 | [diff] [blame] | 740 | err = copy_to_kernel_nofault((char *)bpt->bpt_addr, |
Jason Wessel | 3751d3e | 2012-03-23 09:35:05 -0500 | [diff] [blame] | 741 | arch_kgdb_ops.gdb_bpt_instr, BREAK_INSTR_SIZE); |
Jason Wessel | 3751d3e | 2012-03-23 09:35:05 -0500 | [diff] [blame] | 742 | if (!err) |
| 743 | return err; |
| 744 | /* |
Nadav Amit | e836673 | 2019-04-25 17:11:21 -0700 | [diff] [blame] | 745 | * It is safe to call text_poke_kgdb() because normal kernel execution |
Jason Wessel | 3751d3e | 2012-03-23 09:35:05 -0500 | [diff] [blame] | 746 | * is stopped on all cores, so long as the text_mutex is not locked. |
| 747 | */ |
| 748 | if (mutex_is_locked(&text_mutex)) |
| 749 | return -EBUSY; |
Nadav Amit | e836673 | 2019-04-25 17:11:21 -0700 | [diff] [blame] | 750 | text_poke_kgdb((void *)bpt->bpt_addr, arch_kgdb_ops.gdb_bpt_instr, |
| 751 | BREAK_INSTR_SIZE); |
Jason Wessel | 3751d3e | 2012-03-23 09:35:05 -0500 | [diff] [blame] | 752 | bpt->type = BP_POKE_BREAKPOINT; |
Kees Cook | 9ccaf77 | 2016-02-17 14:41:14 -0800 | [diff] [blame] | 753 | |
Matt Mullins | 71ab832 | 2019-05-31 12:47:54 -0700 | [diff] [blame] | 754 | return 0; |
Jason Wessel | 3751d3e | 2012-03-23 09:35:05 -0500 | [diff] [blame] | 755 | } |
| 756 | |
| 757 | int kgdb_arch_remove_breakpoint(struct kgdb_bkpt *bpt) |
| 758 | { |
Jason Wessel | 3751d3e | 2012-03-23 09:35:05 -0500 | [diff] [blame] | 759 | if (bpt->type != BP_POKE_BREAKPOINT) |
| 760 | goto knl_write; |
| 761 | /* |
Nadav Amit | e836673 | 2019-04-25 17:11:21 -0700 | [diff] [blame] | 762 | * It is safe to call text_poke_kgdb() because normal kernel execution |
Jason Wessel | 3751d3e | 2012-03-23 09:35:05 -0500 | [diff] [blame] | 763 | * is stopped on all cores, so long as the text_mutex is not locked. |
| 764 | */ |
| 765 | if (mutex_is_locked(&text_mutex)) |
| 766 | goto knl_write; |
Nadav Amit | e836673 | 2019-04-25 17:11:21 -0700 | [diff] [blame] | 767 | text_poke_kgdb((void *)bpt->bpt_addr, bpt->saved_instr, |
| 768 | BREAK_INSTR_SIZE); |
Nadav Amit | 86a2205 | 2019-04-25 17:11:28 -0700 | [diff] [blame] | 769 | return 0; |
Kees Cook | 9ccaf77 | 2016-02-17 14:41:14 -0800 | [diff] [blame] | 770 | |
Jason Wessel | 3751d3e | 2012-03-23 09:35:05 -0500 | [diff] [blame] | 771 | knl_write: |
Christoph Hellwig | fe55731 | 2020-06-17 09:37:53 +0200 | [diff] [blame] | 772 | return copy_to_kernel_nofault((char *)bpt->bpt_addr, |
Jason Wessel | 3751d3e | 2012-03-23 09:35:05 -0500 | [diff] [blame] | 773 | (char *)bpt->saved_instr, BREAK_INSTR_SIZE); |
| 774 | } |
| 775 | |
Christophe Leroy | cc02829 | 2018-12-06 20:07:40 +0000 | [diff] [blame] | 776 | const struct kgdb_arch arch_kgdb_ops = { |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 777 | /* Breakpoint instruction: */ |
| 778 | .gdb_bpt_instr = { 0xcc }, |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 779 | .flags = KGDB_HW_BREAKPOINT, |
| 780 | .set_hw_breakpoint = kgdb_set_hw_break, |
| 781 | .remove_hw_breakpoint = kgdb_remove_hw_break, |
Dongdong Deng | d7ba979d | 2010-08-18 06:02:00 -0500 | [diff] [blame] | 782 | .disable_hw_break = kgdb_disable_hw_debug, |
Jason Wessel | 64e9ee3 | 2008-02-15 14:55:56 -0600 | [diff] [blame] | 783 | .remove_all_hw_break = kgdb_remove_all_hw_break, |
| 784 | .correct_hw_break = kgdb_correct_hw_break, |
Ingo Molnar | 82da3ff | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 785 | }; |