Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 1 | /* |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 2 | * Kernel Debug Core |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 3 | * |
| 4 | * Maintainer: Jason Wessel <jason.wessel@windriver.com> |
| 5 | * |
| 6 | * Copyright (C) 2000-2001 VERITAS Software Corporation. |
| 7 | * Copyright (C) 2002-2004 Timesys Corporation |
| 8 | * Copyright (C) 2003-2004 Amit S. Kale <amitkale@linsyssoft.com> |
| 9 | * Copyright (C) 2004 Pavel Machek <pavel@suse.cz> |
| 10 | * Copyright (C) 2004-2006 Tom Rini <trini@kernel.crashing.org> |
| 11 | * Copyright (C) 2004-2006 LinSysSoft Technologies Pvt. Ltd. |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 12 | * Copyright (C) 2005-2009 Wind River Systems, Inc. |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 13 | * Copyright (C) 2007 MontaVista Software, Inc. |
| 14 | * Copyright (C) 2008 Red Hat, Inc., Ingo Molnar <mingo@redhat.com> |
| 15 | * |
| 16 | * Contributors at various stages not listed above: |
| 17 | * Jason Wessel ( jason.wessel@windriver.com ) |
| 18 | * George Anzinger <george@mvista.com> |
| 19 | * Anurekh Saxena (anurekh.saxena@timesys.com) |
| 20 | * Lake Stevens Instrument Division (Glenn Engel) |
| 21 | * Jim Kingdon, Cygnus Support. |
| 22 | * |
| 23 | * Original KGDB stub: David Grothe <dave@gcom.com>, |
| 24 | * Tigran Aivazian <tigran@sco.com> |
| 25 | * |
| 26 | * This file is licensed under the terms of the GNU General Public License |
| 27 | * version 2. This program is licensed "as is" without any warranty of any |
| 28 | * kind, whether express or implied. |
| 29 | */ |
| 30 | #include <linux/pid_namespace.h> |
Jason Wessel | 7c3078b | 2008-02-15 14:55:54 -0600 | [diff] [blame] | 31 | #include <linux/clocksource.h> |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 32 | #include <linux/interrupt.h> |
| 33 | #include <linux/spinlock.h> |
| 34 | #include <linux/console.h> |
| 35 | #include <linux/threads.h> |
| 36 | #include <linux/uaccess.h> |
| 37 | #include <linux/kernel.h> |
| 38 | #include <linux/module.h> |
| 39 | #include <linux/ptrace.h> |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 40 | #include <linux/string.h> |
| 41 | #include <linux/delay.h> |
| 42 | #include <linux/sched.h> |
| 43 | #include <linux/sysrq.h> |
| 44 | #include <linux/init.h> |
| 45 | #include <linux/kgdb.h> |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 46 | #include <linux/kdb.h> |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 47 | #include <linux/pid.h> |
| 48 | #include <linux/smp.h> |
| 49 | #include <linux/mm.h> |
| 50 | |
| 51 | #include <asm/cacheflush.h> |
| 52 | #include <asm/byteorder.h> |
| 53 | #include <asm/atomic.h> |
| 54 | #include <asm/system.h> |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 55 | |
| 56 | #include "debug_core.h" |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 57 | |
| 58 | static int kgdb_break_asap; |
| 59 | |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 60 | struct debuggerinfo_struct kgdb_info[NR_CPUS]; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 61 | |
| 62 | /** |
| 63 | * kgdb_connected - Is a host GDB connected to us? |
| 64 | */ |
| 65 | int kgdb_connected; |
| 66 | EXPORT_SYMBOL_GPL(kgdb_connected); |
| 67 | |
| 68 | /* All the KGDB handlers are installed */ |
Jason Wessel | f503b5a | 2010-05-20 21:04:25 -0500 | [diff] [blame] | 69 | int kgdb_io_module_registered; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 70 | |
| 71 | /* Guard for recursive entry */ |
| 72 | static int exception_level; |
| 73 | |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 74 | struct kgdb_io *dbg_io_ops; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 75 | static DEFINE_SPINLOCK(kgdb_registration_lock); |
| 76 | |
| 77 | /* kgdb console driver is loaded */ |
| 78 | static int kgdb_con_registered; |
| 79 | /* determine if kgdb console output should be used */ |
| 80 | static int kgdb_use_con; |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 81 | /* Next cpu to become the master debug core */ |
| 82 | int dbg_switch_cpu; |
| 83 | |
| 84 | /* Use kdb or gdbserver mode */ |
Jason Wessel | a0de055 | 2010-05-20 21:04:24 -0500 | [diff] [blame] | 85 | int dbg_kdb_mode = 1; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 86 | |
| 87 | static int __init opt_kgdb_con(char *str) |
| 88 | { |
| 89 | kgdb_use_con = 1; |
| 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | early_param("kgdbcon", opt_kgdb_con); |
| 94 | |
| 95 | module_param(kgdb_use_con, int, 0644); |
| 96 | |
| 97 | /* |
| 98 | * Holds information about breakpoints in a kernel. These breakpoints are |
| 99 | * added and removed by gdb. |
| 100 | */ |
| 101 | static struct kgdb_bkpt kgdb_break[KGDB_MAX_BREAKPOINTS] = { |
| 102 | [0 ... KGDB_MAX_BREAKPOINTS-1] = { .state = BP_UNDEFINED } |
| 103 | }; |
| 104 | |
| 105 | /* |
| 106 | * The CPU# of the active CPU, or -1 if none: |
| 107 | */ |
| 108 | atomic_t kgdb_active = ATOMIC_INIT(-1); |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 109 | EXPORT_SYMBOL_GPL(kgdb_active); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 110 | |
| 111 | /* |
| 112 | * We use NR_CPUs not PERCPU, in case kgdb is used to debug early |
| 113 | * bootup code (which might not have percpu set up yet): |
| 114 | */ |
| 115 | static atomic_t passive_cpu_wait[NR_CPUS]; |
| 116 | static atomic_t cpu_in_kgdb[NR_CPUS]; |
Jason Wessel | 1cee5e3 | 2009-06-03 14:06:57 -0500 | [diff] [blame] | 117 | static atomic_t kgdb_break_tasklet_var; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 118 | atomic_t kgdb_setting_breakpoint; |
| 119 | |
| 120 | struct task_struct *kgdb_usethread; |
| 121 | struct task_struct *kgdb_contthread; |
| 122 | |
| 123 | int kgdb_single_step; |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 124 | static pid_t kgdb_sstep_pid; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 125 | |
| 126 | /* to keep track of the CPU which is doing the single stepping*/ |
| 127 | atomic_t kgdb_cpu_doing_single_step = ATOMIC_INIT(-1); |
| 128 | |
| 129 | /* |
| 130 | * If you are debugging a problem where roundup (the collection of |
| 131 | * all other CPUs) is a problem [this should be extremely rare], |
| 132 | * then use the nokgdbroundup option to avoid roundup. In that case |
| 133 | * the other CPUs might interfere with your debugging context, so |
| 134 | * use this with care: |
| 135 | */ |
Harvey Harrison | 688b744 | 2008-04-24 16:57:23 -0500 | [diff] [blame] | 136 | static int kgdb_do_roundup = 1; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 137 | |
| 138 | static int __init opt_nokgdbroundup(char *str) |
| 139 | { |
| 140 | kgdb_do_roundup = 0; |
| 141 | |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | early_param("nokgdbroundup", opt_nokgdbroundup); |
| 146 | |
| 147 | /* |
| 148 | * Finally, some KGDB code :-) |
| 149 | */ |
| 150 | |
| 151 | /* |
| 152 | * Weak aliases for breakpoint management, |
| 153 | * can be overriden by architectures when needed: |
| 154 | */ |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 155 | int __weak kgdb_arch_set_breakpoint(unsigned long addr, char *saved_instr) |
| 156 | { |
| 157 | int err; |
| 158 | |
| 159 | err = probe_kernel_read(saved_instr, (char *)addr, BREAK_INSTR_SIZE); |
| 160 | if (err) |
| 161 | return err; |
| 162 | |
| 163 | return probe_kernel_write((char *)addr, arch_kgdb_ops.gdb_bpt_instr, |
| 164 | BREAK_INSTR_SIZE); |
| 165 | } |
| 166 | |
| 167 | int __weak kgdb_arch_remove_breakpoint(unsigned long addr, char *bundle) |
| 168 | { |
| 169 | return probe_kernel_write((char *)addr, |
| 170 | (char *)bundle, BREAK_INSTR_SIZE); |
| 171 | } |
| 172 | |
Jason Wessel | a9b60bf | 2008-08-01 08:39:34 -0500 | [diff] [blame] | 173 | int __weak kgdb_validate_break_address(unsigned long addr) |
| 174 | { |
| 175 | char tmp_variable[BREAK_INSTR_SIZE]; |
| 176 | int err; |
| 177 | /* Validate setting the breakpoint and then removing it. In the |
| 178 | * remove fails, the kernel needs to emit a bad message because we |
| 179 | * are deep trouble not being able to put things back the way we |
| 180 | * found them. |
| 181 | */ |
| 182 | err = kgdb_arch_set_breakpoint(addr, tmp_variable); |
| 183 | if (err) |
| 184 | return err; |
| 185 | err = kgdb_arch_remove_breakpoint(addr, tmp_variable); |
| 186 | if (err) |
| 187 | printk(KERN_ERR "KGDB: Critical breakpoint error, kernel " |
| 188 | "memory destroyed at: %lx", addr); |
| 189 | return err; |
| 190 | } |
| 191 | |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 192 | unsigned long __weak kgdb_arch_pc(int exception, struct pt_regs *regs) |
| 193 | { |
| 194 | return instruction_pointer(regs); |
| 195 | } |
| 196 | |
| 197 | int __weak kgdb_arch_init(void) |
| 198 | { |
| 199 | return 0; |
| 200 | } |
| 201 | |
Jason Wessel | b4b8ac5 | 2008-02-20 13:33:38 -0600 | [diff] [blame] | 202 | int __weak kgdb_skipexception(int exception, struct pt_regs *regs) |
| 203 | { |
| 204 | return 0; |
| 205 | } |
| 206 | |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 207 | /** |
| 208 | * kgdb_disable_hw_debug - Disable hardware debugging while we in kgdb. |
| 209 | * @regs: Current &struct pt_regs. |
| 210 | * |
| 211 | * This function will be called if the particular architecture must |
| 212 | * disable hardware debugging while it is processing gdb packets or |
| 213 | * handling exception. |
| 214 | */ |
| 215 | void __weak kgdb_disable_hw_debug(struct pt_regs *regs) |
| 216 | { |
| 217 | } |
| 218 | |
| 219 | /* |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 220 | * Some architectures need cache flushes when we set/clear a |
| 221 | * breakpoint: |
| 222 | */ |
| 223 | static void kgdb_flush_swbreak_addr(unsigned long addr) |
| 224 | { |
| 225 | if (!CACHE_FLUSH_IS_SAFE) |
| 226 | return; |
| 227 | |
Jason Wessel | 737a460 | 2008-03-07 16:34:16 -0600 | [diff] [blame] | 228 | if (current->mm && current->mm->mmap_cache) { |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 229 | flush_cache_range(current->mm->mmap_cache, |
| 230 | addr, addr + BREAK_INSTR_SIZE); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 231 | } |
Jason Wessel | 1a9a3e7 | 2008-04-01 16:55:28 -0500 | [diff] [blame] | 232 | /* Force flush instruction cache if it was outside the mm */ |
| 233 | flush_icache_range(addr, addr + BREAK_INSTR_SIZE); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | /* |
| 237 | * SW breakpoint management: |
| 238 | */ |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 239 | int dbg_activate_sw_breakpoints(void) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 240 | { |
| 241 | unsigned long addr; |
Jason Wessel | 7f8b7ed6 | 2009-12-11 08:43:20 -0600 | [diff] [blame] | 242 | int error; |
| 243 | int ret = 0; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 244 | int i; |
| 245 | |
| 246 | for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) { |
| 247 | if (kgdb_break[i].state != BP_SET) |
| 248 | continue; |
| 249 | |
| 250 | addr = kgdb_break[i].bpt_addr; |
| 251 | error = kgdb_arch_set_breakpoint(addr, |
| 252 | kgdb_break[i].saved_instr); |
Jason Wessel | 7f8b7ed6 | 2009-12-11 08:43:20 -0600 | [diff] [blame] | 253 | if (error) { |
| 254 | ret = error; |
| 255 | printk(KERN_INFO "KGDB: BP install failed: %lx", addr); |
| 256 | continue; |
| 257 | } |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 258 | |
| 259 | kgdb_flush_swbreak_addr(addr); |
| 260 | kgdb_break[i].state = BP_ACTIVE; |
| 261 | } |
Jason Wessel | 7f8b7ed6 | 2009-12-11 08:43:20 -0600 | [diff] [blame] | 262 | return ret; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 263 | } |
| 264 | |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 265 | int dbg_set_sw_break(unsigned long addr) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 266 | { |
| 267 | int err = kgdb_validate_break_address(addr); |
| 268 | int breakno = -1; |
| 269 | int i; |
| 270 | |
| 271 | if (err) |
| 272 | return err; |
| 273 | |
| 274 | for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) { |
| 275 | if ((kgdb_break[i].state == BP_SET) && |
| 276 | (kgdb_break[i].bpt_addr == addr)) |
| 277 | return -EEXIST; |
| 278 | } |
| 279 | for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) { |
| 280 | if (kgdb_break[i].state == BP_REMOVED && |
| 281 | kgdb_break[i].bpt_addr == addr) { |
| 282 | breakno = i; |
| 283 | break; |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | if (breakno == -1) { |
| 288 | for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) { |
| 289 | if (kgdb_break[i].state == BP_UNDEFINED) { |
| 290 | breakno = i; |
| 291 | break; |
| 292 | } |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | if (breakno == -1) |
| 297 | return -E2BIG; |
| 298 | |
| 299 | kgdb_break[breakno].state = BP_SET; |
| 300 | kgdb_break[breakno].type = BP_BREAKPOINT; |
| 301 | kgdb_break[breakno].bpt_addr = addr; |
| 302 | |
| 303 | return 0; |
| 304 | } |
| 305 | |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 306 | int dbg_deactivate_sw_breakpoints(void) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 307 | { |
| 308 | unsigned long addr; |
Jason Wessel | 7f8b7ed6 | 2009-12-11 08:43:20 -0600 | [diff] [blame] | 309 | int error; |
| 310 | int ret = 0; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 311 | int i; |
| 312 | |
| 313 | for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) { |
| 314 | if (kgdb_break[i].state != BP_ACTIVE) |
| 315 | continue; |
| 316 | addr = kgdb_break[i].bpt_addr; |
| 317 | error = kgdb_arch_remove_breakpoint(addr, |
| 318 | kgdb_break[i].saved_instr); |
Jason Wessel | 7f8b7ed6 | 2009-12-11 08:43:20 -0600 | [diff] [blame] | 319 | if (error) { |
| 320 | printk(KERN_INFO "KGDB: BP remove failed: %lx\n", addr); |
| 321 | ret = error; |
| 322 | } |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 323 | |
| 324 | kgdb_flush_swbreak_addr(addr); |
| 325 | kgdb_break[i].state = BP_SET; |
| 326 | } |
Jason Wessel | 7f8b7ed6 | 2009-12-11 08:43:20 -0600 | [diff] [blame] | 327 | return ret; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 328 | } |
| 329 | |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 330 | int dbg_remove_sw_break(unsigned long addr) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 331 | { |
| 332 | int i; |
| 333 | |
| 334 | for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) { |
| 335 | if ((kgdb_break[i].state == BP_SET) && |
| 336 | (kgdb_break[i].bpt_addr == addr)) { |
| 337 | kgdb_break[i].state = BP_REMOVED; |
| 338 | return 0; |
| 339 | } |
| 340 | } |
| 341 | return -ENOENT; |
| 342 | } |
| 343 | |
| 344 | int kgdb_isremovedbreak(unsigned long addr) |
| 345 | { |
| 346 | int i; |
| 347 | |
| 348 | for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) { |
| 349 | if ((kgdb_break[i].state == BP_REMOVED) && |
| 350 | (kgdb_break[i].bpt_addr == addr)) |
| 351 | return 1; |
| 352 | } |
| 353 | return 0; |
| 354 | } |
| 355 | |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 356 | int dbg_remove_all_break(void) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 357 | { |
| 358 | unsigned long addr; |
| 359 | int error; |
| 360 | int i; |
| 361 | |
| 362 | /* Clear memory breakpoints. */ |
| 363 | for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) { |
Jason Wessel | 737a460 | 2008-03-07 16:34:16 -0600 | [diff] [blame] | 364 | if (kgdb_break[i].state != BP_ACTIVE) |
| 365 | goto setundefined; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 366 | addr = kgdb_break[i].bpt_addr; |
| 367 | error = kgdb_arch_remove_breakpoint(addr, |
| 368 | kgdb_break[i].saved_instr); |
| 369 | if (error) |
Jason Wessel | 737a460 | 2008-03-07 16:34:16 -0600 | [diff] [blame] | 370 | printk(KERN_ERR "KGDB: breakpoint remove failed: %lx\n", |
| 371 | addr); |
| 372 | setundefined: |
| 373 | kgdb_break[i].state = BP_UNDEFINED; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | /* Clear hardware breakpoints. */ |
| 377 | if (arch_kgdb_ops.remove_all_hw_break) |
| 378 | arch_kgdb_ops.remove_all_hw_break(); |
| 379 | |
| 380 | return 0; |
| 381 | } |
| 382 | |
| 383 | /* |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 384 | * Return true if there is a valid kgdb I/O module. Also if no |
| 385 | * debugger is attached a message can be printed to the console about |
| 386 | * waiting for the debugger to attach. |
| 387 | * |
| 388 | * The print_wait argument is only to be true when called from inside |
| 389 | * the core kgdb_handle_exception, because it will wait for the |
| 390 | * debugger to attach. |
| 391 | */ |
| 392 | static int kgdb_io_ready(int print_wait) |
| 393 | { |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 394 | if (!dbg_io_ops) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 395 | return 0; |
| 396 | if (kgdb_connected) |
| 397 | return 1; |
| 398 | if (atomic_read(&kgdb_setting_breakpoint)) |
| 399 | return 1; |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 400 | if (print_wait) { |
| 401 | #ifdef CONFIG_KGDB_KDB |
| 402 | if (!dbg_kdb_mode) |
| 403 | printk(KERN_CRIT "KGDB: waiting... or $3#33 for KDB\n"); |
| 404 | #else |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 405 | printk(KERN_CRIT "KGDB: Waiting for remote debugger\n"); |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 406 | #endif |
| 407 | } |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 408 | return 1; |
| 409 | } |
| 410 | |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 411 | static int kgdb_reenter_check(struct kgdb_state *ks) |
| 412 | { |
| 413 | unsigned long addr; |
| 414 | |
| 415 | if (atomic_read(&kgdb_active) != raw_smp_processor_id()) |
| 416 | return 0; |
| 417 | |
| 418 | /* Panic on recursive debugger calls: */ |
| 419 | exception_level++; |
| 420 | addr = kgdb_arch_pc(ks->ex_vector, ks->linux_regs); |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 421 | dbg_deactivate_sw_breakpoints(); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 422 | |
| 423 | /* |
| 424 | * If the break point removed ok at the place exception |
| 425 | * occurred, try to recover and print a warning to the end |
| 426 | * user because the user planted a breakpoint in a place that |
| 427 | * KGDB needs in order to function. |
| 428 | */ |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 429 | if (dbg_remove_sw_break(addr) == 0) { |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 430 | exception_level = 0; |
| 431 | kgdb_skipexception(ks->ex_vector, ks->linux_regs); |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 432 | dbg_activate_sw_breakpoints(); |
Jason Wessel | 67baf94 | 2008-02-15 14:55:55 -0600 | [diff] [blame] | 433 | printk(KERN_CRIT "KGDB: re-enter error: breakpoint removed %lx\n", |
| 434 | addr); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 435 | WARN_ON_ONCE(1); |
| 436 | |
| 437 | return 1; |
| 438 | } |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 439 | dbg_remove_all_break(); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 440 | kgdb_skipexception(ks->ex_vector, ks->linux_regs); |
| 441 | |
| 442 | if (exception_level > 1) { |
| 443 | dump_stack(); |
| 444 | panic("Recursive entry to debugger"); |
| 445 | } |
| 446 | |
| 447 | printk(KERN_CRIT "KGDB: re-enter exception: ALL breakpoints killed\n"); |
Jason Wessel | 6d90634 | 2010-05-20 21:04:27 -0500 | [diff] [blame^] | 448 | #ifdef CONFIG_KGDB_KDB |
| 449 | /* Allow kdb to debug itself one level */ |
| 450 | return 0; |
| 451 | #endif |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 452 | dump_stack(); |
| 453 | panic("Recursive entry to debugger"); |
| 454 | |
| 455 | return 1; |
| 456 | } |
| 457 | |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 458 | static void dbg_cpu_switch(int cpu, int next_cpu) |
| 459 | { |
| 460 | /* Mark the cpu we are switching away from as a slave when it |
| 461 | * holds the kgdb_active token. This must be done so that the |
| 462 | * that all the cpus wait in for the debug core will not enter |
| 463 | * again as the master. */ |
| 464 | if (cpu == atomic_read(&kgdb_active)) { |
| 465 | kgdb_info[cpu].exception_state |= DCPU_IS_SLAVE; |
| 466 | kgdb_info[cpu].exception_state &= ~DCPU_WANT_MASTER; |
| 467 | } |
| 468 | kgdb_info[next_cpu].exception_state |= DCPU_NEXT_MASTER; |
| 469 | } |
| 470 | |
Jason Wessel | 62fae31 | 2010-04-02 11:47:02 -0500 | [diff] [blame] | 471 | static int kgdb_cpu_enter(struct kgdb_state *ks, struct pt_regs *regs) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 472 | { |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 473 | unsigned long flags; |
Jason Wessel | 028e7b1 | 2009-12-11 08:43:17 -0600 | [diff] [blame] | 474 | int sstep_tries = 100; |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 475 | int error; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 476 | int i, cpu; |
Jason Wessel | 4da75b9 | 2010-04-02 11:57:18 -0500 | [diff] [blame] | 477 | int trace_on = 0; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 478 | acquirelock: |
| 479 | /* |
| 480 | * Interrupts will be restored by the 'trap return' code, except when |
| 481 | * single stepping. |
| 482 | */ |
| 483 | local_irq_save(flags); |
| 484 | |
Jason Wessel | 62fae31 | 2010-04-02 11:47:02 -0500 | [diff] [blame] | 485 | cpu = ks->cpu; |
| 486 | kgdb_info[cpu].debuggerinfo = regs; |
| 487 | kgdb_info[cpu].task = current; |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 488 | kgdb_info[cpu].ret_state = 0; |
| 489 | kgdb_info[cpu].irq_depth = hardirq_count() >> HARDIRQ_SHIFT; |
Jason Wessel | 62fae31 | 2010-04-02 11:47:02 -0500 | [diff] [blame] | 490 | /* |
| 491 | * Make sure the above info reaches the primary CPU before |
| 492 | * our cpu_in_kgdb[] flag setting does: |
| 493 | */ |
Jason Wessel | ae6bf53 | 2010-04-02 14:58:18 -0500 | [diff] [blame] | 494 | atomic_inc(&cpu_in_kgdb[cpu]); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 495 | |
Jason Wessel | 6d90634 | 2010-05-20 21:04:27 -0500 | [diff] [blame^] | 496 | if (exception_level == 1) |
| 497 | goto cpu_master_loop; |
| 498 | |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 499 | /* |
Jason Wessel | 62fae31 | 2010-04-02 11:47:02 -0500 | [diff] [blame] | 500 | * CPU will loop if it is a slave or request to become a kgdb |
| 501 | * master cpu and acquire the kgdb_active lock: |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 502 | */ |
Jason Wessel | 62fae31 | 2010-04-02 11:47:02 -0500 | [diff] [blame] | 503 | while (1) { |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 504 | cpu_loop: |
| 505 | if (kgdb_info[cpu].exception_state & DCPU_NEXT_MASTER) { |
| 506 | kgdb_info[cpu].exception_state &= ~DCPU_NEXT_MASTER; |
| 507 | goto cpu_master_loop; |
| 508 | } else if (kgdb_info[cpu].exception_state & DCPU_WANT_MASTER) { |
Jason Wessel | 62fae31 | 2010-04-02 11:47:02 -0500 | [diff] [blame] | 509 | if (atomic_cmpxchg(&kgdb_active, -1, cpu) == cpu) |
| 510 | break; |
| 511 | } else if (kgdb_info[cpu].exception_state & DCPU_IS_SLAVE) { |
| 512 | if (!atomic_read(&passive_cpu_wait[cpu])) |
| 513 | goto return_normal; |
| 514 | } else { |
| 515 | return_normal: |
| 516 | /* Return to normal operation by executing any |
| 517 | * hw breakpoint fixup. |
| 518 | */ |
| 519 | if (arch_kgdb_ops.correct_hw_break) |
| 520 | arch_kgdb_ops.correct_hw_break(); |
Jason Wessel | 4da75b9 | 2010-04-02 11:57:18 -0500 | [diff] [blame] | 521 | if (trace_on) |
| 522 | tracing_on(); |
Jason Wessel | ae6bf53 | 2010-04-02 14:58:18 -0500 | [diff] [blame] | 523 | atomic_dec(&cpu_in_kgdb[cpu]); |
Jason Wessel | 62fae31 | 2010-04-02 11:47:02 -0500 | [diff] [blame] | 524 | touch_softlockup_watchdog_sync(); |
| 525 | clocksource_touch_watchdog(); |
| 526 | local_irq_restore(flags); |
| 527 | return 0; |
| 528 | } |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 529 | cpu_relax(); |
Jason Wessel | 62fae31 | 2010-04-02 11:47:02 -0500 | [diff] [blame] | 530 | } |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 531 | |
| 532 | /* |
Jason Wessel | 028e7b1 | 2009-12-11 08:43:17 -0600 | [diff] [blame] | 533 | * For single stepping, try to only enter on the processor |
| 534 | * that was single stepping. To gaurd against a deadlock, the |
| 535 | * kernel will only try for the value of sstep_tries before |
| 536 | * giving up and continuing on. |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 537 | */ |
| 538 | if (atomic_read(&kgdb_cpu_doing_single_step) != -1 && |
Jason Wessel | 028e7b1 | 2009-12-11 08:43:17 -0600 | [diff] [blame] | 539 | (kgdb_info[cpu].task && |
| 540 | kgdb_info[cpu].task->pid != kgdb_sstep_pid) && --sstep_tries) { |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 541 | atomic_set(&kgdb_active, -1); |
Jason Wessel | d6ad3e2 | 2010-01-27 16:25:22 -0600 | [diff] [blame] | 542 | touch_softlockup_watchdog_sync(); |
Jason Wessel | 7c3078b | 2008-02-15 14:55:54 -0600 | [diff] [blame] | 543 | clocksource_touch_watchdog(); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 544 | local_irq_restore(flags); |
| 545 | |
| 546 | goto acquirelock; |
| 547 | } |
| 548 | |
| 549 | if (!kgdb_io_ready(1)) { |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 550 | kgdb_info[cpu].ret_state = 1; |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 551 | goto kgdb_restore; /* No I/O connection, resume the system */ |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 552 | } |
| 553 | |
| 554 | /* |
| 555 | * Don't enter if we have hit a removed breakpoint. |
| 556 | */ |
| 557 | if (kgdb_skipexception(ks->ex_vector, ks->linux_regs)) |
| 558 | goto kgdb_restore; |
| 559 | |
| 560 | /* Call the I/O driver's pre_exception routine */ |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 561 | if (dbg_io_ops->pre_exception) |
| 562 | dbg_io_ops->pre_exception(); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 563 | |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 564 | kgdb_disable_hw_debug(ks->linux_regs); |
| 565 | |
| 566 | /* |
| 567 | * Get the passive CPU lock which will hold all the non-primary |
| 568 | * CPU in a spin state while the debugger is active |
| 569 | */ |
Jason Wessel | d7161a6 | 2008-09-26 10:36:41 -0500 | [diff] [blame] | 570 | if (!kgdb_single_step) { |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 571 | for (i = 0; i < NR_CPUS; i++) |
Jason Wessel | ae6bf53 | 2010-04-02 14:58:18 -0500 | [diff] [blame] | 572 | atomic_inc(&passive_cpu_wait[i]); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 573 | } |
| 574 | |
Jason Wessel | 56fb709 | 2008-04-01 16:55:27 -0500 | [diff] [blame] | 575 | #ifdef CONFIG_SMP |
| 576 | /* Signal the other CPUs to enter kgdb_wait() */ |
Jason Wessel | d7161a6 | 2008-09-26 10:36:41 -0500 | [diff] [blame] | 577 | if ((!kgdb_single_step) && kgdb_do_roundup) |
Jason Wessel | 56fb709 | 2008-04-01 16:55:27 -0500 | [diff] [blame] | 578 | kgdb_roundup_cpus(flags); |
| 579 | #endif |
| 580 | |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 581 | /* |
| 582 | * Wait for the other CPUs to be notified and be waiting for us: |
| 583 | */ |
| 584 | for_each_online_cpu(i) { |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 585 | while (kgdb_do_roundup && !atomic_read(&cpu_in_kgdb[i])) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 586 | cpu_relax(); |
| 587 | } |
| 588 | |
| 589 | /* |
| 590 | * At this point the primary processor is completely |
| 591 | * in the debugger and all secondary CPUs are quiescent |
| 592 | */ |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 593 | dbg_deactivate_sw_breakpoints(); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 594 | kgdb_single_step = 0; |
Jason Wessel | d7161a6 | 2008-09-26 10:36:41 -0500 | [diff] [blame] | 595 | kgdb_contthread = current; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 596 | exception_level = 0; |
Jason Wessel | 4da75b9 | 2010-04-02 11:57:18 -0500 | [diff] [blame] | 597 | trace_on = tracing_is_on(); |
| 598 | if (trace_on) |
| 599 | tracing_off(); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 600 | |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 601 | while (1) { |
| 602 | cpu_master_loop: |
| 603 | if (dbg_kdb_mode) { |
| 604 | kgdb_connected = 1; |
| 605 | error = kdb_stub(ks); |
| 606 | } else { |
| 607 | error = gdb_serial_stub(ks); |
| 608 | } |
| 609 | |
| 610 | if (error == DBG_PASS_EVENT) { |
| 611 | dbg_kdb_mode = !dbg_kdb_mode; |
| 612 | kgdb_connected = 0; |
| 613 | } else if (error == DBG_SWITCH_CPU_EVENT) { |
| 614 | dbg_cpu_switch(cpu, dbg_switch_cpu); |
| 615 | goto cpu_loop; |
| 616 | } else { |
| 617 | kgdb_info[cpu].ret_state = error; |
| 618 | break; |
| 619 | } |
| 620 | } |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 621 | |
| 622 | /* Call the I/O driver's post_exception routine */ |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 623 | if (dbg_io_ops->post_exception) |
| 624 | dbg_io_ops->post_exception(); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 625 | |
Jason Wessel | ae6bf53 | 2010-04-02 14:58:18 -0500 | [diff] [blame] | 626 | atomic_dec(&cpu_in_kgdb[ks->cpu]); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 627 | |
Jason Wessel | d7161a6 | 2008-09-26 10:36:41 -0500 | [diff] [blame] | 628 | if (!kgdb_single_step) { |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 629 | for (i = NR_CPUS-1; i >= 0; i--) |
Jason Wessel | ae6bf53 | 2010-04-02 14:58:18 -0500 | [diff] [blame] | 630 | atomic_dec(&passive_cpu_wait[i]); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 631 | /* |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 632 | * Wait till all the CPUs have quit from the debugger, |
| 633 | * but allow a CPU that hit an exception and is |
| 634 | * waiting to become the master to remain in the debug |
| 635 | * core. |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 636 | */ |
| 637 | for_each_online_cpu(i) { |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 638 | while (kgdb_do_roundup && |
| 639 | atomic_read(&cpu_in_kgdb[i]) && |
| 640 | !(kgdb_info[i].exception_state & |
| 641 | DCPU_WANT_MASTER)) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 642 | cpu_relax(); |
| 643 | } |
| 644 | } |
| 645 | |
| 646 | kgdb_restore: |
Jason Wessel | 028e7b1 | 2009-12-11 08:43:17 -0600 | [diff] [blame] | 647 | if (atomic_read(&kgdb_cpu_doing_single_step) != -1) { |
| 648 | int sstep_cpu = atomic_read(&kgdb_cpu_doing_single_step); |
| 649 | if (kgdb_info[sstep_cpu].task) |
| 650 | kgdb_sstep_pid = kgdb_info[sstep_cpu].task->pid; |
| 651 | else |
| 652 | kgdb_sstep_pid = 0; |
| 653 | } |
Jason Wessel | 4da75b9 | 2010-04-02 11:57:18 -0500 | [diff] [blame] | 654 | if (trace_on) |
| 655 | tracing_on(); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 656 | /* Free kgdb_active */ |
| 657 | atomic_set(&kgdb_active, -1); |
Jason Wessel | d6ad3e2 | 2010-01-27 16:25:22 -0600 | [diff] [blame] | 658 | touch_softlockup_watchdog_sync(); |
Jason Wessel | 7c3078b | 2008-02-15 14:55:54 -0600 | [diff] [blame] | 659 | clocksource_touch_watchdog(); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 660 | local_irq_restore(flags); |
| 661 | |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 662 | return kgdb_info[cpu].ret_state; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 663 | } |
| 664 | |
Jason Wessel | 62fae31 | 2010-04-02 11:47:02 -0500 | [diff] [blame] | 665 | /* |
| 666 | * kgdb_handle_exception() - main entry point from a kernel exception |
| 667 | * |
| 668 | * Locking hierarchy: |
| 669 | * interface locks, if any (begin_session) |
| 670 | * kgdb lock (kgdb_active) |
| 671 | */ |
| 672 | int |
| 673 | kgdb_handle_exception(int evector, int signo, int ecode, struct pt_regs *regs) |
| 674 | { |
| 675 | struct kgdb_state kgdb_var; |
| 676 | struct kgdb_state *ks = &kgdb_var; |
| 677 | int ret; |
| 678 | |
| 679 | ks->cpu = raw_smp_processor_id(); |
| 680 | ks->ex_vector = evector; |
| 681 | ks->signo = signo; |
Jason Wessel | 62fae31 | 2010-04-02 11:47:02 -0500 | [diff] [blame] | 682 | ks->err_code = ecode; |
| 683 | ks->kgdb_usethreadid = 0; |
| 684 | ks->linux_regs = regs; |
| 685 | |
| 686 | if (kgdb_reenter_check(ks)) |
| 687 | return 0; /* Ouch, double exception ! */ |
| 688 | kgdb_info[ks->cpu].exception_state |= DCPU_WANT_MASTER; |
| 689 | ret = kgdb_cpu_enter(ks, regs); |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 690 | kgdb_info[ks->cpu].exception_state &= ~(DCPU_WANT_MASTER | |
| 691 | DCPU_IS_SLAVE); |
Jason Wessel | 62fae31 | 2010-04-02 11:47:02 -0500 | [diff] [blame] | 692 | return ret; |
| 693 | } |
| 694 | |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 695 | int kgdb_nmicallback(int cpu, void *regs) |
| 696 | { |
| 697 | #ifdef CONFIG_SMP |
Jason Wessel | 62fae31 | 2010-04-02 11:47:02 -0500 | [diff] [blame] | 698 | struct kgdb_state kgdb_var; |
| 699 | struct kgdb_state *ks = &kgdb_var; |
| 700 | |
| 701 | memset(ks, 0, sizeof(struct kgdb_state)); |
| 702 | ks->cpu = cpu; |
| 703 | ks->linux_regs = regs; |
| 704 | |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 705 | if (!atomic_read(&cpu_in_kgdb[cpu]) && |
Jason Wessel | 62fae31 | 2010-04-02 11:47:02 -0500 | [diff] [blame] | 706 | atomic_read(&kgdb_active) != -1 && |
| 707 | atomic_read(&kgdb_active) != cpu) { |
| 708 | kgdb_info[cpu].exception_state |= DCPU_IS_SLAVE; |
| 709 | kgdb_cpu_enter(ks, regs); |
| 710 | kgdb_info[cpu].exception_state &= ~DCPU_IS_SLAVE; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 711 | return 0; |
| 712 | } |
| 713 | #endif |
| 714 | return 1; |
| 715 | } |
| 716 | |
Jason Wessel | aabdc3b | 2008-06-24 10:52:55 -0500 | [diff] [blame] | 717 | static void kgdb_console_write(struct console *co, const char *s, |
| 718 | unsigned count) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 719 | { |
| 720 | unsigned long flags; |
| 721 | |
| 722 | /* If we're debugging, or KGDB has not connected, don't try |
| 723 | * and print. */ |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 724 | if (!kgdb_connected || atomic_read(&kgdb_active) != -1 || dbg_kdb_mode) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 725 | return; |
| 726 | |
| 727 | local_irq_save(flags); |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 728 | gdbstub_msg_write(s, count); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 729 | local_irq_restore(flags); |
| 730 | } |
| 731 | |
| 732 | static struct console kgdbcons = { |
| 733 | .name = "kgdb", |
| 734 | .write = kgdb_console_write, |
| 735 | .flags = CON_PRINTBUFFER | CON_ENABLED, |
| 736 | .index = -1, |
| 737 | }; |
| 738 | |
| 739 | #ifdef CONFIG_MAGIC_SYSRQ |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 740 | static void sysrq_handle_dbg(int key, struct tty_struct *tty) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 741 | { |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 742 | if (!dbg_io_ops) { |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 743 | printk(KERN_CRIT "ERROR: No KGDB I/O module available\n"); |
| 744 | return; |
| 745 | } |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 746 | if (!kgdb_connected) { |
| 747 | #ifdef CONFIG_KGDB_KDB |
| 748 | if (!dbg_kdb_mode) |
| 749 | printk(KERN_CRIT "KGDB or $3#33 for KDB\n"); |
| 750 | #else |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 751 | printk(KERN_CRIT "Entering KGDB\n"); |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 752 | #endif |
| 753 | } |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 754 | |
| 755 | kgdb_breakpoint(); |
| 756 | } |
| 757 | |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 758 | static struct sysrq_key_op sysrq_dbg_op = { |
| 759 | .handler = sysrq_handle_dbg, |
Jason Wessel | 364b5b7 | 2009-05-13 21:56:59 -0500 | [diff] [blame] | 760 | .help_msg = "debug(G)", |
| 761 | .action_msg = "DEBUG", |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 762 | }; |
| 763 | #endif |
| 764 | |
| 765 | static void kgdb_register_callbacks(void) |
| 766 | { |
| 767 | if (!kgdb_io_module_registered) { |
| 768 | kgdb_io_module_registered = 1; |
| 769 | kgdb_arch_init(); |
| 770 | #ifdef CONFIG_MAGIC_SYSRQ |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 771 | register_sysrq_key('g', &sysrq_dbg_op); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 772 | #endif |
| 773 | if (kgdb_use_con && !kgdb_con_registered) { |
| 774 | register_console(&kgdbcons); |
| 775 | kgdb_con_registered = 1; |
| 776 | } |
| 777 | } |
| 778 | } |
| 779 | |
| 780 | static void kgdb_unregister_callbacks(void) |
| 781 | { |
| 782 | /* |
| 783 | * When this routine is called KGDB should unregister from the |
| 784 | * panic handler and clean up, making sure it is not handling any |
| 785 | * break exceptions at the time. |
| 786 | */ |
| 787 | if (kgdb_io_module_registered) { |
| 788 | kgdb_io_module_registered = 0; |
| 789 | kgdb_arch_exit(); |
| 790 | #ifdef CONFIG_MAGIC_SYSRQ |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 791 | unregister_sysrq_key('g', &sysrq_dbg_op); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 792 | #endif |
| 793 | if (kgdb_con_registered) { |
| 794 | unregister_console(&kgdbcons); |
| 795 | kgdb_con_registered = 0; |
| 796 | } |
| 797 | } |
| 798 | } |
| 799 | |
Jason Wessel | 1cee5e3 | 2009-06-03 14:06:57 -0500 | [diff] [blame] | 800 | /* |
| 801 | * There are times a tasklet needs to be used vs a compiled in |
| 802 | * break point so as to cause an exception outside a kgdb I/O module, |
| 803 | * such as is the case with kgdboe, where calling a breakpoint in the |
| 804 | * I/O driver itself would be fatal. |
| 805 | */ |
| 806 | static void kgdb_tasklet_bpt(unsigned long ing) |
| 807 | { |
| 808 | kgdb_breakpoint(); |
| 809 | atomic_set(&kgdb_break_tasklet_var, 0); |
| 810 | } |
| 811 | |
| 812 | static DECLARE_TASKLET(kgdb_tasklet_breakpoint, kgdb_tasklet_bpt, 0); |
| 813 | |
| 814 | void kgdb_schedule_breakpoint(void) |
| 815 | { |
| 816 | if (atomic_read(&kgdb_break_tasklet_var) || |
| 817 | atomic_read(&kgdb_active) != -1 || |
| 818 | atomic_read(&kgdb_setting_breakpoint)) |
| 819 | return; |
| 820 | atomic_inc(&kgdb_break_tasklet_var); |
| 821 | tasklet_schedule(&kgdb_tasklet_breakpoint); |
| 822 | } |
| 823 | EXPORT_SYMBOL_GPL(kgdb_schedule_breakpoint); |
| 824 | |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 825 | static void kgdb_initial_breakpoint(void) |
| 826 | { |
| 827 | kgdb_break_asap = 0; |
| 828 | |
| 829 | printk(KERN_CRIT "kgdb: Waiting for connection from remote gdb...\n"); |
| 830 | kgdb_breakpoint(); |
| 831 | } |
| 832 | |
| 833 | /** |
Jason Wessel | 737a460 | 2008-03-07 16:34:16 -0600 | [diff] [blame] | 834 | * kgdb_register_io_module - register KGDB IO module |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 835 | * @new_dbg_io_ops: the io ops vector |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 836 | * |
| 837 | * Register it with the KGDB core. |
| 838 | */ |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 839 | int kgdb_register_io_module(struct kgdb_io *new_dbg_io_ops) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 840 | { |
| 841 | int err; |
| 842 | |
| 843 | spin_lock(&kgdb_registration_lock); |
| 844 | |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 845 | if (dbg_io_ops) { |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 846 | spin_unlock(&kgdb_registration_lock); |
| 847 | |
| 848 | printk(KERN_ERR "kgdb: Another I/O driver is already " |
| 849 | "registered with KGDB.\n"); |
| 850 | return -EBUSY; |
| 851 | } |
| 852 | |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 853 | if (new_dbg_io_ops->init) { |
| 854 | err = new_dbg_io_ops->init(); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 855 | if (err) { |
| 856 | spin_unlock(&kgdb_registration_lock); |
| 857 | return err; |
| 858 | } |
| 859 | } |
| 860 | |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 861 | dbg_io_ops = new_dbg_io_ops; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 862 | |
| 863 | spin_unlock(&kgdb_registration_lock); |
| 864 | |
| 865 | printk(KERN_INFO "kgdb: Registered I/O driver %s.\n", |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 866 | new_dbg_io_ops->name); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 867 | |
| 868 | /* Arm KGDB now. */ |
| 869 | kgdb_register_callbacks(); |
| 870 | |
| 871 | if (kgdb_break_asap) |
| 872 | kgdb_initial_breakpoint(); |
| 873 | |
| 874 | return 0; |
| 875 | } |
| 876 | EXPORT_SYMBOL_GPL(kgdb_register_io_module); |
| 877 | |
| 878 | /** |
| 879 | * kkgdb_unregister_io_module - unregister KGDB IO module |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 880 | * @old_dbg_io_ops: the io ops vector |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 881 | * |
| 882 | * Unregister it with the KGDB core. |
| 883 | */ |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 884 | void kgdb_unregister_io_module(struct kgdb_io *old_dbg_io_ops) |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 885 | { |
| 886 | BUG_ON(kgdb_connected); |
| 887 | |
| 888 | /* |
| 889 | * KGDB is no longer able to communicate out, so |
| 890 | * unregister our callbacks and reset state. |
| 891 | */ |
| 892 | kgdb_unregister_callbacks(); |
| 893 | |
| 894 | spin_lock(&kgdb_registration_lock); |
| 895 | |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 896 | WARN_ON_ONCE(dbg_io_ops != old_dbg_io_ops); |
| 897 | dbg_io_ops = NULL; |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 898 | |
| 899 | spin_unlock(&kgdb_registration_lock); |
| 900 | |
| 901 | printk(KERN_INFO |
| 902 | "kgdb: Unregistered I/O driver %s, debugger disabled.\n", |
Jason Wessel | 53197fc | 2010-04-02 11:48:03 -0500 | [diff] [blame] | 903 | old_dbg_io_ops->name); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 904 | } |
| 905 | EXPORT_SYMBOL_GPL(kgdb_unregister_io_module); |
| 906 | |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 907 | int dbg_io_get_char(void) |
| 908 | { |
| 909 | int ret = dbg_io_ops->read_char(); |
Jason Wessel | f5316b4 | 2010-05-20 21:04:22 -0500 | [diff] [blame] | 910 | if (ret == NO_POLL_CHAR) |
| 911 | return -1; |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 912 | if (!dbg_kdb_mode) |
| 913 | return ret; |
| 914 | if (ret == 127) |
| 915 | return 8; |
| 916 | return ret; |
| 917 | } |
| 918 | |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 919 | /** |
| 920 | * kgdb_breakpoint - generate breakpoint exception |
| 921 | * |
| 922 | * This function will generate a breakpoint exception. It is used at the |
| 923 | * beginning of a program to sync up with a debugger and can be used |
| 924 | * otherwise as a quick means to stop program execution and "break" into |
| 925 | * the debugger. |
| 926 | */ |
| 927 | void kgdb_breakpoint(void) |
| 928 | { |
Jason Wessel | ae6bf53 | 2010-04-02 14:58:18 -0500 | [diff] [blame] | 929 | atomic_inc(&kgdb_setting_breakpoint); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 930 | wmb(); /* Sync point before breakpoint */ |
| 931 | arch_kgdb_breakpoint(); |
| 932 | wmb(); /* Sync point after breakpoint */ |
Jason Wessel | ae6bf53 | 2010-04-02 14:58:18 -0500 | [diff] [blame] | 933 | atomic_dec(&kgdb_setting_breakpoint); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 934 | } |
| 935 | EXPORT_SYMBOL_GPL(kgdb_breakpoint); |
| 936 | |
| 937 | static int __init opt_kgdb_wait(char *str) |
| 938 | { |
| 939 | kgdb_break_asap = 1; |
| 940 | |
Jason Wessel | dcc7871 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 941 | kdb_init(KDB_INIT_EARLY); |
Jason Wessel | dc7d552 | 2008-04-17 20:05:37 +0200 | [diff] [blame] | 942 | if (kgdb_io_module_registered) |
| 943 | kgdb_initial_breakpoint(); |
| 944 | |
| 945 | return 0; |
| 946 | } |
| 947 | |
| 948 | early_param("kgdbwait", opt_kgdb_wait); |