debug_core.c 28.6 KB
Newer Older
J
Jason Wessel 已提交
1
/*
2
 * Kernel Debug Core
J
Jason Wessel 已提交
3 4 5 6 7 8
 *
 * Maintainer: Jason Wessel <jason.wessel@windriver.com>
 *
 * Copyright (C) 2000-2001 VERITAS Software Corporation.
 * Copyright (C) 2002-2004 Timesys Corporation
 * Copyright (C) 2003-2004 Amit S. Kale <amitkale@linsyssoft.com>
P
Pavel Machek 已提交
9
 * Copyright (C) 2004 Pavel Machek <pavel@ucw.cz>
J
Jason Wessel 已提交
10 11
 * Copyright (C) 2004-2006 Tom Rini <trini@kernel.crashing.org>
 * Copyright (C) 2004-2006 LinSysSoft Technologies Pvt. Ltd.
12
 * Copyright (C) 2005-2009 Wind River Systems, Inc.
J
Jason Wessel 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
 * Copyright (C) 2007 MontaVista Software, Inc.
 * Copyright (C) 2008 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
 *
 * Contributors at various stages not listed above:
 *  Jason Wessel ( jason.wessel@windriver.com )
 *  George Anzinger <george@mvista.com>
 *  Anurekh Saxena (anurekh.saxena@timesys.com)
 *  Lake Stevens Instrument Division (Glenn Engel)
 *  Jim Kingdon, Cygnus Support.
 *
 * Original KGDB stub: David Grothe <dave@gcom.com>,
 * Tigran Aivazian <tigran@sco.com>
 *
 * This file is licensed under the terms of the GNU General Public License
 * version 2. This program is licensed "as is" without any warranty of any
 * kind, whether express or implied.
 */
30 31 32

#define pr_fmt(fmt) "KGDB: " fmt

J
Jason Wessel 已提交
33
#include <linux/pid_namespace.h>
J
Jason Wessel 已提交
34
#include <linux/clocksource.h>
35
#include <linux/serial_core.h>
J
Jason Wessel 已提交
36 37 38 39 40 41 42 43 44 45 46 47
#include <linux/interrupt.h>
#include <linux/spinlock.h>
#include <linux/console.h>
#include <linux/threads.h>
#include <linux/uaccess.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/ptrace.h>
#include <linux/string.h>
#include <linux/delay.h>
#include <linux/sched.h>
#include <linux/sysrq.h>
48
#include <linux/reboot.h>
J
Jason Wessel 已提交
49 50
#include <linux/init.h>
#include <linux/kgdb.h>
J
Jason Wessel 已提交
51
#include <linux/kdb.h>
52
#include <linux/nmi.h>
J
Jason Wessel 已提交
53 54 55
#include <linux/pid.h>
#include <linux/smp.h>
#include <linux/mm.h>
D
Davidlohr Bueso 已提交
56
#include <linux/vmacache.h>
57
#include <linux/rcupdate.h>
58
#include <linux/irq.h>
J
Jason Wessel 已提交
59 60 61

#include <asm/cacheflush.h>
#include <asm/byteorder.h>
A
Arun Sharma 已提交
62
#include <linux/atomic.h>
J
Jason Wessel 已提交
63

64
#include "debug_core.h"
J
Jason Wessel 已提交
65

66
static int kgdb_break_asap;
67

68
struct debuggerinfo_struct kgdb_info[NR_CPUS];
J
Jason Wessel 已提交
69

70
/* kgdb_connected - Is a host GDB connected to us? */
J
Jason Wessel 已提交
71 72 73 74
int				kgdb_connected;
EXPORT_SYMBOL_GPL(kgdb_connected);

/* All the KGDB handlers are installed */
75
int			kgdb_io_module_registered;
J
Jason Wessel 已提交
76 77 78 79

/* Guard for recursive entry */
static int			exception_level;

80
struct kgdb_io		*dbg_io_ops;
J
Jason Wessel 已提交
81 82
static DEFINE_SPINLOCK(kgdb_registration_lock);

83
/* Action for the reboot notifier, a global allow kdb to change it */
84
static int kgdbreboot;
J
Jason Wessel 已提交
85 86 87 88
/* kgdb console driver is loaded */
static int kgdb_con_registered;
/* determine if kgdb console output should be used */
static int kgdb_use_con;
89 90
/* Flag for alternate operations for early debugging */
bool dbg_is_early = true;
J
Jason Wessel 已提交
91 92 93 94
/* Next cpu to become the master debug core */
int dbg_switch_cpu;

/* Use kdb or gdbserver mode */
95
int dbg_kdb_mode = 1;
J
Jason Wessel 已提交
96 97

module_param(kgdb_use_con, int, 0644);
98
module_param(kgdbreboot, int, 0644);
J
Jason Wessel 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111

/*
 * Holds information about breakpoints in a kernel. These breakpoints are
 * added and removed by gdb.
 */
static struct kgdb_bkpt		kgdb_break[KGDB_MAX_BREAKPOINTS] = {
	[0 ... KGDB_MAX_BREAKPOINTS-1] = { .state = BP_UNDEFINED }
};

/*
 * The CPU# of the active CPU, or -1 if none:
 */
atomic_t			kgdb_active = ATOMIC_INIT(-1);
J
Jason Wessel 已提交
112
EXPORT_SYMBOL_GPL(kgdb_active);
113 114
static DEFINE_RAW_SPINLOCK(dbg_master_lock);
static DEFINE_RAW_SPINLOCK(dbg_slave_lock);
J
Jason Wessel 已提交
115 116 117 118 119

/*
 * We use NR_CPUs not PERCPU, in case kgdb is used to debug early
 * bootup code (which might not have percpu set up yet):
 */
120 121
static atomic_t			masters_in_kgdb;
static atomic_t			slaves_in_kgdb;
J
Jason Wessel 已提交
122 123 124 125 126 127
atomic_t			kgdb_setting_breakpoint;

struct task_struct		*kgdb_usethread;
struct task_struct		*kgdb_contthread;

int				kgdb_single_step;
128
static pid_t			kgdb_sstep_pid;
J
Jason Wessel 已提交
129 130 131 132 133 134 135 136 137 138 139

/* to keep track of the CPU which is doing the single stepping*/
atomic_t			kgdb_cpu_doing_single_step = ATOMIC_INIT(-1);

/*
 * If you are debugging a problem where roundup (the collection of
 * all other CPUs) is a problem [this should be extremely rare],
 * then use the nokgdbroundup option to avoid roundup. In that case
 * the other CPUs might interfere with your debugging context, so
 * use this with care:
 */
140
static int kgdb_do_roundup = 1;
J
Jason Wessel 已提交
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156

static int __init opt_nokgdbroundup(char *str)
{
	kgdb_do_roundup = 0;

	return 0;
}

early_param("nokgdbroundup", opt_nokgdbroundup);

/*
 * Finally, some KGDB code :-)
 */

/*
 * Weak aliases for breakpoint management,
157
 * can be overridden by architectures when needed:
J
Jason Wessel 已提交
158
 */
159
int __weak kgdb_arch_set_breakpoint(struct kgdb_bkpt *bpt)
J
Jason Wessel 已提交
160 161 162
{
	int err;

163
	err = copy_from_kernel_nofault(bpt->saved_instr, (char *)bpt->bpt_addr,
164
				BREAK_INSTR_SIZE);
J
Jason Wessel 已提交
165 166
	if (err)
		return err;
167
	err = copy_to_kernel_nofault((char *)bpt->bpt_addr,
168 169
				 arch_kgdb_ops.gdb_bpt_instr, BREAK_INSTR_SIZE);
	return err;
J
Jason Wessel 已提交
170
}
171
NOKPROBE_SYMBOL(kgdb_arch_set_breakpoint);
J
Jason Wessel 已提交
172

173
int __weak kgdb_arch_remove_breakpoint(struct kgdb_bkpt *bpt)
J
Jason Wessel 已提交
174
{
175
	return copy_to_kernel_nofault((char *)bpt->bpt_addr,
176
				  (char *)bpt->saved_instr, BREAK_INSTR_SIZE);
J
Jason Wessel 已提交
177
}
178
NOKPROBE_SYMBOL(kgdb_arch_remove_breakpoint);
J
Jason Wessel 已提交
179

180 181
int __weak kgdb_validate_break_address(unsigned long addr)
{
182
	struct kgdb_bkpt tmp;
183
	int err;
184 185 186 187

	if (kgdb_within_blocklist(addr))
		return -EINVAL;

188
	/* Validate setting the breakpoint and then removing it.  If the
189 190 191 192
	 * remove fails, the kernel needs to emit a bad message because we
	 * are deep trouble not being able to put things back the way we
	 * found them.
	 */
193 194
	tmp.bpt_addr = addr;
	err = kgdb_arch_set_breakpoint(&tmp);
195 196
	if (err)
		return err;
197
	err = kgdb_arch_remove_breakpoint(&tmp);
198
	if (err)
199 200
		pr_err("Critical breakpoint error, kernel memory destroyed at: %lx\n",
		       addr);
201 202 203
	return err;
}

J
Jason Wessel 已提交
204 205 206 207
unsigned long __weak kgdb_arch_pc(int exception, struct pt_regs *regs)
{
	return instruction_pointer(regs);
}
208
NOKPROBE_SYMBOL(kgdb_arch_pc);
J
Jason Wessel 已提交
209 210 211 212 213 214

int __weak kgdb_arch_init(void)
{
	return 0;
}

215 216 217 218
int __weak kgdb_skipexception(int exception, struct pt_regs *regs)
{
	return 0;
}
219
NOKPROBE_SYMBOL(kgdb_skipexception);
220

221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
#ifdef CONFIG_SMP

/*
 * Default (weak) implementation for kgdb_roundup_cpus
 */

void __weak kgdb_call_nmi_hook(void *ignored)
{
	/*
	 * NOTE: get_irq_regs() is supposed to get the registers from
	 * before the IPI interrupt happened and so is supposed to
	 * show where the processor was.  In some situations it's
	 * possible we might be called without an IPI, so it might be
	 * safer to figure out how to make kgdb_breakpoint() work
	 * properly here.
	 */
	kgdb_nmicallback(raw_smp_processor_id(), get_irq_regs());
}
239
NOKPROBE_SYMBOL(kgdb_call_nmi_hook);
240

P
Peter Zijlstra 已提交
241 242 243
static DEFINE_PER_CPU(call_single_data_t, kgdb_roundup_csd) =
	CSD_INIT(kgdb_call_nmi_hook, NULL);

244 245 246 247 248
void __weak kgdb_roundup_cpus(void)
{
	call_single_data_t *csd;
	int this_cpu = raw_smp_processor_id();
	int cpu;
249
	int ret;
250 251 252 253 254 255 256

	for_each_online_cpu(cpu) {
		/* No need to roundup ourselves */
		if (cpu == this_cpu)
			continue;

		csd = &per_cpu(kgdb_roundup_csd, cpu);
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272

		/*
		 * If it didn't round up last time, don't try again
		 * since smp_call_function_single_async() will block.
		 *
		 * If rounding_up is false then we know that the
		 * previous call must have at least started and that
		 * means smp_call_function_single_async() won't block.
		 */
		if (kgdb_info[cpu].rounding_up)
			continue;
		kgdb_info[cpu].rounding_up = true;

		ret = smp_call_function_single_async(cpu, csd);
		if (ret)
			kgdb_info[cpu].rounding_up = false;
273 274
	}
}
275
NOKPROBE_SYMBOL(kgdb_roundup_cpus);
276 277 278

#endif

J
Jason Wessel 已提交
279 280 281 282 283 284 285 286 287
/*
 * Some architectures need cache flushes when we set/clear a
 * breakpoint:
 */
static void kgdb_flush_swbreak_addr(unsigned long addr)
{
	if (!CACHE_FLUSH_IS_SAFE)
		return;

D
Davidlohr Bueso 已提交
288 289 290 291
	if (current->mm) {
		int i;

		for (i = 0; i < VMACACHE_SIZE; i++) {
292
			if (!current->vmacache.vmas[i])
D
Davidlohr Bueso 已提交
293
				continue;
294
			flush_cache_range(current->vmacache.vmas[i],
D
Davidlohr Bueso 已提交
295 296
					  addr, addr + BREAK_INSTR_SIZE);
		}
J
Jason Wessel 已提交
297
	}
D
Davidlohr Bueso 已提交
298

299 300
	/* Force flush instruction cache if it was outside the mm */
	flush_icache_range(addr, addr + BREAK_INSTR_SIZE);
J
Jason Wessel 已提交
301
}
302
NOKPROBE_SYMBOL(kgdb_flush_swbreak_addr);
J
Jason Wessel 已提交
303 304 305 306

/*
 * SW breakpoint management:
 */
307
int dbg_activate_sw_breakpoints(void)
J
Jason Wessel 已提交
308
{
309 310
	int error;
	int ret = 0;
J
Jason Wessel 已提交
311 312 313 314 315 316
	int i;

	for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) {
		if (kgdb_break[i].state != BP_SET)
			continue;

317
		error = kgdb_arch_set_breakpoint(&kgdb_break[i]);
318 319
		if (error) {
			ret = error;
320 321
			pr_info("BP install failed: %lx\n",
				kgdb_break[i].bpt_addr);
322 323
			continue;
		}
J
Jason Wessel 已提交
324

325
		kgdb_flush_swbreak_addr(kgdb_break[i].bpt_addr);
J
Jason Wessel 已提交
326 327
		kgdb_break[i].state = BP_ACTIVE;
	}
328
	return ret;
J
Jason Wessel 已提交
329
}
330
NOKPROBE_SYMBOL(dbg_activate_sw_breakpoints);
J
Jason Wessel 已提交
331

332
int dbg_set_sw_break(unsigned long addr)
J
Jason Wessel 已提交
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
{
	int err = kgdb_validate_break_address(addr);
	int breakno = -1;
	int i;

	if (err)
		return err;

	for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) {
		if ((kgdb_break[i].state == BP_SET) &&
					(kgdb_break[i].bpt_addr == addr))
			return -EEXIST;
	}
	for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) {
		if (kgdb_break[i].state == BP_REMOVED &&
					kgdb_break[i].bpt_addr == addr) {
			breakno = i;
			break;
		}
	}

	if (breakno == -1) {
		for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) {
			if (kgdb_break[i].state == BP_UNDEFINED) {
				breakno = i;
				break;
			}
		}
	}

	if (breakno == -1)
		return -E2BIG;

	kgdb_break[breakno].state = BP_SET;
	kgdb_break[breakno].type = BP_BREAKPOINT;
	kgdb_break[breakno].bpt_addr = addr;

	return 0;
}

J
Jason Wessel 已提交
373
int dbg_deactivate_sw_breakpoints(void)
J
Jason Wessel 已提交
374
{
375 376
	int error;
	int ret = 0;
J
Jason Wessel 已提交
377 378 379 380 381
	int i;

	for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) {
		if (kgdb_break[i].state != BP_ACTIVE)
			continue;
382
		error = kgdb_arch_remove_breakpoint(&kgdb_break[i]);
383
		if (error) {
384 385
			pr_info("BP remove failed: %lx\n",
				kgdb_break[i].bpt_addr);
386 387
			ret = error;
		}
J
Jason Wessel 已提交
388

389
		kgdb_flush_swbreak_addr(kgdb_break[i].bpt_addr);
J
Jason Wessel 已提交
390 391
		kgdb_break[i].state = BP_SET;
	}
392
	return ret;
J
Jason Wessel 已提交
393
}
394
NOKPROBE_SYMBOL(dbg_deactivate_sw_breakpoints);
J
Jason Wessel 已提交
395

396
int dbg_remove_sw_break(unsigned long addr)
J
Jason Wessel 已提交
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
{
	int i;

	for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) {
		if ((kgdb_break[i].state == BP_SET) &&
				(kgdb_break[i].bpt_addr == addr)) {
			kgdb_break[i].state = BP_REMOVED;
			return 0;
		}
	}
	return -ENOENT;
}

int kgdb_isremovedbreak(unsigned long addr)
{
	int i;

	for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) {
		if ((kgdb_break[i].state == BP_REMOVED) &&
					(kgdb_break[i].bpt_addr == addr))
			return 1;
	}
	return 0;
}

422 423 424 425 426 427 428 429 430 431 432 433
int kgdb_has_hit_break(unsigned long addr)
{
	int i;

	for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) {
		if (kgdb_break[i].state == BP_ACTIVE &&
		    kgdb_break[i].bpt_addr == addr)
			return 1;
	}
	return 0;
}

434
int dbg_remove_all_break(void)
J
Jason Wessel 已提交
435 436 437 438 439 440
{
	int error;
	int i;

	/* Clear memory breakpoints. */
	for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) {
441 442
		if (kgdb_break[i].state != BP_ACTIVE)
			goto setundefined;
443
		error = kgdb_arch_remove_breakpoint(&kgdb_break[i]);
J
Jason Wessel 已提交
444
		if (error)
445
			pr_err("breakpoint remove failed: %lx\n",
446
			       kgdb_break[i].bpt_addr);
447 448
setundefined:
		kgdb_break[i].state = BP_UNDEFINED;
J
Jason Wessel 已提交
449 450 451 452 453 454 455 456 457
	}

	/* Clear hardware breakpoints. */
	if (arch_kgdb_ops.remove_all_hw_break)
		arch_kgdb_ops.remove_all_hw_break();

	return 0;
}

458 459 460 461 462 463 464 465 466 467 468
void kgdb_free_init_mem(void)
{
	int i;

	/* Clear init memory breakpoints. */
	for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) {
		if (init_section_contains((void *)kgdb_break[i].bpt_addr, 0))
			kgdb_break[i].state = BP_UNDEFINED;
	}
}

469 470 471
#ifdef CONFIG_KGDB_KDB
void kdb_dump_stack_on_cpu(int cpu)
{
472
	if (cpu == raw_smp_processor_id() || !IS_ENABLED(CONFIG_SMP)) {
473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
		dump_stack();
		return;
	}

	if (!(kgdb_info[cpu].exception_state & DCPU_IS_SLAVE)) {
		kdb_printf("ERROR: Task on cpu %d didn't stop in the debugger\n",
			   cpu);
		return;
	}

	/*
	 * In general, architectures don't support dumping the stack of a
	 * "running" process that's not the current one.  From the point of
	 * view of the Linux, kernel processes that are looping in the kgdb
	 * slave loop are still "running".  There's also no API (that actually
	 * works across all architectures) that can do a stack crawl based
	 * on registers passed as a parameter.
	 *
	 * Solve this conundrum by asking slave CPUs to do the backtrace
	 * themselves.
	 */
	kgdb_info[cpu].exception_state |= DCPU_WANT_BT;
	while (kgdb_info[cpu].exception_state & DCPU_WANT_BT)
		cpu_relax();
}
#endif

J
Jason Wessel 已提交
500 501 502 503 504 505 506 507 508 509 510
/*
 * Return true if there is a valid kgdb I/O module.  Also if no
 * debugger is attached a message can be printed to the console about
 * waiting for the debugger to attach.
 *
 * The print_wait argument is only to be true when called from inside
 * the core kgdb_handle_exception, because it will wait for the
 * debugger to attach.
 */
static int kgdb_io_ready(int print_wait)
{
511
	if (!dbg_io_ops)
J
Jason Wessel 已提交
512 513 514 515 516
		return 0;
	if (kgdb_connected)
		return 1;
	if (atomic_read(&kgdb_setting_breakpoint))
		return 1;
J
Jason Wessel 已提交
517 518 519
	if (print_wait) {
#ifdef CONFIG_KGDB_KDB
		if (!dbg_kdb_mode)
520
			pr_crit("waiting... or $3#33 for KDB\n");
J
Jason Wessel 已提交
521
#else
522
		pr_crit("Waiting for remote debugger\n");
J
Jason Wessel 已提交
523 524
#endif
	}
J
Jason Wessel 已提交
525 526
	return 1;
}
527
NOKPROBE_SYMBOL(kgdb_io_ready);
J
Jason Wessel 已提交
528 529 530 531 532 533 534 535 536 537 538

static int kgdb_reenter_check(struct kgdb_state *ks)
{
	unsigned long addr;

	if (atomic_read(&kgdb_active) != raw_smp_processor_id())
		return 0;

	/* Panic on recursive debugger calls: */
	exception_level++;
	addr = kgdb_arch_pc(ks->ex_vector, ks->linux_regs);
J
Jason Wessel 已提交
539
	dbg_deactivate_sw_breakpoints();
J
Jason Wessel 已提交
540 541 542 543 544 545 546

	/*
	 * If the break point removed ok at the place exception
	 * occurred, try to recover and print a warning to the end
	 * user because the user planted a breakpoint in a place that
	 * KGDB needs in order to function.
	 */
547
	if (dbg_remove_sw_break(addr) == 0) {
J
Jason Wessel 已提交
548 549
		exception_level = 0;
		kgdb_skipexception(ks->ex_vector, ks->linux_regs);
550
		dbg_activate_sw_breakpoints();
551
		pr_crit("re-enter error: breakpoint removed %lx\n", addr);
J
Jason Wessel 已提交
552 553 554 555
		WARN_ON_ONCE(1);

		return 1;
	}
556
	dbg_remove_all_break();
J
Jason Wessel 已提交
557 558 559 560
	kgdb_skipexception(ks->ex_vector, ks->linux_regs);

	if (exception_level > 1) {
		dump_stack();
561
		kgdb_io_module_registered = false;
J
Jason Wessel 已提交
562 563 564
		panic("Recursive entry to debugger");
	}

565
	pr_crit("re-enter exception: ALL breakpoints killed\n");
566 567 568 569
#ifdef CONFIG_KGDB_KDB
	/* Allow kdb to debug itself one level */
	return 0;
#endif
J
Jason Wessel 已提交
570 571 572 573 574
	dump_stack();
	panic("Recursive entry to debugger");

	return 1;
}
575
NOKPROBE_SYMBOL(kgdb_reenter_check);
J
Jason Wessel 已提交
576

577 578 579 580
static void dbg_touch_watchdogs(void)
{
	touch_softlockup_watchdog_sync();
	clocksource_touch_watchdog();
581
	rcu_cpu_stall_reset();
582
}
583
NOKPROBE_SYMBOL(dbg_touch_watchdogs);
584

585 586
static int kgdb_cpu_enter(struct kgdb_state *ks, struct pt_regs *regs,
		int exception_state)
J
Jason Wessel 已提交
587 588
{
	unsigned long flags;
589
	int sstep_tries = 100;
J
Jason Wessel 已提交
590
	int error;
591
	int cpu;
592
	int trace_on = 0;
593
	int online_cpus = num_online_cpus();
594
	u64 time_left;
595

596 597 598 599 600 601 602
	kgdb_info[ks->cpu].enter_kgdb++;
	kgdb_info[ks->cpu].exception_state |= exception_state;

	if (exception_state == DCPU_WANT_MASTER)
		atomic_inc(&masters_in_kgdb);
	else
		atomic_inc(&slaves_in_kgdb);
603 604 605

	if (arch_kgdb_ops.disable_hw_break)
		arch_kgdb_ops.disable_hw_break(regs);
606

J
Jason Wessel 已提交
607
acquirelock:
608
	rcu_read_lock();
J
Jason Wessel 已提交
609 610 611 612 613 614
	/*
	 * Interrupts will be restored by the 'trap return' code, except when
	 * single stepping.
	 */
	local_irq_save(flags);

615 616 617
	cpu = ks->cpu;
	kgdb_info[cpu].debuggerinfo = regs;
	kgdb_info[cpu].task = current;
J
Jason Wessel 已提交
618 619
	kgdb_info[cpu].ret_state = 0;
	kgdb_info[cpu].irq_depth = hardirq_count() >> HARDIRQ_SHIFT;
J
Jason Wessel 已提交
620

621 622 623 624 625 626
	/* Make sure the above info reaches the primary CPU */
	smp_mb();

	if (exception_level == 1) {
		if (raw_spin_trylock(&dbg_master_lock))
			atomic_xchg(&kgdb_active, cpu);
627
		goto cpu_master_loop;
628
	}
629

J
Jason Wessel 已提交
630
	/*
631 632
	 * CPU will loop if it is a slave or request to become a kgdb
	 * master cpu and acquire the kgdb_active lock:
J
Jason Wessel 已提交
633
	 */
634
	while (1) {
J
Jason Wessel 已提交
635 636 637 638 639
cpu_loop:
		if (kgdb_info[cpu].exception_state & DCPU_NEXT_MASTER) {
			kgdb_info[cpu].exception_state &= ~DCPU_NEXT_MASTER;
			goto cpu_master_loop;
		} else if (kgdb_info[cpu].exception_state & DCPU_WANT_MASTER) {
640 641
			if (raw_spin_trylock(&dbg_master_lock)) {
				atomic_xchg(&kgdb_active, cpu);
642
				break;
643
			}
644 645 646
		} else if (kgdb_info[cpu].exception_state & DCPU_WANT_BT) {
			dump_stack();
			kgdb_info[cpu].exception_state &= ~DCPU_WANT_BT;
647
		} else if (kgdb_info[cpu].exception_state & DCPU_IS_SLAVE) {
648
			if (!raw_spin_is_locked(&dbg_slave_lock))
649 650 651 652 653 654 655 656
				goto return_normal;
		} else {
return_normal:
			/* Return to normal operation by executing any
			 * hw breakpoint fixup.
			 */
			if (arch_kgdb_ops.correct_hw_break)
				arch_kgdb_ops.correct_hw_break();
657 658
			if (trace_on)
				tracing_on();
659 660
			kgdb_info[cpu].debuggerinfo = NULL;
			kgdb_info[cpu].task = NULL;
661 662 663
			kgdb_info[cpu].exception_state &=
				~(DCPU_WANT_MASTER | DCPU_IS_SLAVE);
			kgdb_info[cpu].enter_kgdb--;
664
			smp_mb__before_atomic();
665
			atomic_dec(&slaves_in_kgdb);
666
			dbg_touch_watchdogs();
667
			local_irq_restore(flags);
668
			rcu_read_unlock();
669 670
			return 0;
		}
J
Jason Wessel 已提交
671
		cpu_relax();
672
	}
J
Jason Wessel 已提交
673 674

	/*
675
	 * For single stepping, try to only enter on the processor
L
Lucas De Marchi 已提交
676
	 * that was single stepping.  To guard against a deadlock, the
677 678
	 * kernel will only try for the value of sstep_tries before
	 * giving up and continuing on.
J
Jason Wessel 已提交
679 680
	 */
	if (atomic_read(&kgdb_cpu_doing_single_step) != -1 &&
681 682
	    (kgdb_info[cpu].task &&
	     kgdb_info[cpu].task->pid != kgdb_sstep_pid) && --sstep_tries) {
J
Jason Wessel 已提交
683
		atomic_set(&kgdb_active, -1);
684
		raw_spin_unlock(&dbg_master_lock);
685
		dbg_touch_watchdogs();
J
Jason Wessel 已提交
686
		local_irq_restore(flags);
687
		rcu_read_unlock();
J
Jason Wessel 已提交
688 689 690 691 692

		goto acquirelock;
	}

	if (!kgdb_io_ready(1)) {
J
Jason Wessel 已提交
693
		kgdb_info[cpu].ret_state = 1;
694
		goto kgdb_restore; /* No I/O connection, resume the system */
J
Jason Wessel 已提交
695 696 697 698 699 700 701 702
	}

	/*
	 * Don't enter if we have hit a removed breakpoint.
	 */
	if (kgdb_skipexception(ks->ex_vector, ks->linux_regs))
		goto kgdb_restore;

703 704
	atomic_inc(&ignore_console_lock_warning);

J
Jason Wessel 已提交
705
	/* Call the I/O driver's pre_exception routine */
706 707
	if (dbg_io_ops->pre_exception)
		dbg_io_ops->pre_exception();
J
Jason Wessel 已提交
708 709 710 711 712

	/*
	 * Get the passive CPU lock which will hold all the non-primary
	 * CPU in a spin state while the debugger is active
	 */
713 714
	if (!kgdb_single_step)
		raw_spin_lock(&dbg_slave_lock);
J
Jason Wessel 已提交
715

716
#ifdef CONFIG_SMP
717 718 719 720
	/* If send_ready set, slaves are already waiting */
	if (ks->send_ready)
		atomic_set(ks->send_ready, 1);

721
	/* Signal the other CPUs to enter kgdb_wait() */
722
	else if ((!kgdb_single_step) && kgdb_do_roundup)
723
		kgdb_roundup_cpus();
724 725
#endif

J
Jason Wessel 已提交
726 727 728
	/*
	 * Wait for the other CPUs to be notified and be waiting for us:
	 */
729
	time_left = MSEC_PER_SEC;
730 731 732
	while (kgdb_do_roundup && --time_left &&
	       (atomic_read(&masters_in_kgdb) + atomic_read(&slaves_in_kgdb)) !=
		   online_cpus)
733
		udelay(1000);
734
	if (!time_left)
735
		pr_crit("Timed out waiting for secondary CPUs.\n");
J
Jason Wessel 已提交
736 737 738 739 740

	/*
	 * At this point the primary processor is completely
	 * in the debugger and all secondary CPUs are quiescent
	 */
J
Jason Wessel 已提交
741
	dbg_deactivate_sw_breakpoints();
J
Jason Wessel 已提交
742
	kgdb_single_step = 0;
743
	kgdb_contthread = current;
J
Jason Wessel 已提交
744
	exception_level = 0;
745 746 747
	trace_on = tracing_is_on();
	if (trace_on)
		tracing_off();
J
Jason Wessel 已提交
748

J
Jason Wessel 已提交
749 750 751 752 753
	while (1) {
cpu_master_loop:
		if (dbg_kdb_mode) {
			kgdb_connected = 1;
			error = kdb_stub(ks);
754 755
			if (error == -1)
				continue;
756
			kgdb_connected = 0;
J
Jason Wessel 已提交
757 758 759 760 761 762 763
		} else {
			error = gdb_serial_stub(ks);
		}

		if (error == DBG_PASS_EVENT) {
			dbg_kdb_mode = !dbg_kdb_mode;
		} else if (error == DBG_SWITCH_CPU_EVENT) {
764 765
			kgdb_info[dbg_switch_cpu].exception_state |=
				DCPU_NEXT_MASTER;
J
Jason Wessel 已提交
766 767 768 769 770 771
			goto cpu_loop;
		} else {
			kgdb_info[cpu].ret_state = error;
			break;
		}
	}
J
Jason Wessel 已提交
772

773 774
	dbg_activate_sw_breakpoints();

J
Jason Wessel 已提交
775
	/* Call the I/O driver's post_exception routine */
776 777
	if (dbg_io_ops->post_exception)
		dbg_io_ops->post_exception();
J
Jason Wessel 已提交
778

779 780
	atomic_dec(&ignore_console_lock_warning);

781
	if (!kgdb_single_step) {
782 783 784 785
		raw_spin_unlock(&dbg_slave_lock);
		/* Wait till all the CPUs have quit from the debugger. */
		while (kgdb_do_roundup && atomic_read(&slaves_in_kgdb))
			cpu_relax();
J
Jason Wessel 已提交
786 787 788
	}

kgdb_restore:
789 790 791 792 793 794 795
	if (atomic_read(&kgdb_cpu_doing_single_step) != -1) {
		int sstep_cpu = atomic_read(&kgdb_cpu_doing_single_step);
		if (kgdb_info[sstep_cpu].task)
			kgdb_sstep_pid = kgdb_info[sstep_cpu].task->pid;
		else
			kgdb_sstep_pid = 0;
	}
796 797
	if (arch_kgdb_ops.correct_hw_break)
		arch_kgdb_ops.correct_hw_break();
798 799
	if (trace_on)
		tracing_on();
800

801 802
	kgdb_info[cpu].debuggerinfo = NULL;
	kgdb_info[cpu].task = NULL;
803 804 805
	kgdb_info[cpu].exception_state &=
		~(DCPU_WANT_MASTER | DCPU_IS_SLAVE);
	kgdb_info[cpu].enter_kgdb--;
806
	smp_mb__before_atomic();
807
	atomic_dec(&masters_in_kgdb);
J
Jason Wessel 已提交
808 809
	/* Free kgdb_active */
	atomic_set(&kgdb_active, -1);
810
	raw_spin_unlock(&dbg_master_lock);
811
	dbg_touch_watchdogs();
J
Jason Wessel 已提交
812
	local_irq_restore(flags);
813
	rcu_read_unlock();
J
Jason Wessel 已提交
814

J
Jason Wessel 已提交
815
	return kgdb_info[cpu].ret_state;
J
Jason Wessel 已提交
816
}
817
NOKPROBE_SYMBOL(kgdb_cpu_enter);
J
Jason Wessel 已提交
818

819 820 821 822 823 824 825 826 827 828 829 830
/*
 * kgdb_handle_exception() - main entry point from a kernel exception
 *
 * Locking hierarchy:
 *	interface locks, if any (begin_session)
 *	kgdb lock (kgdb_active)
 */
int
kgdb_handle_exception(int evector, int signo, int ecode, struct pt_regs *regs)
{
	struct kgdb_state kgdb_var;
	struct kgdb_state *ks = &kgdb_var;
831 832 833 834
	int ret = 0;

	if (arch_kgdb_ops.enable_nmi)
		arch_kgdb_ops.enable_nmi(0);
835 836 837 838 839 840 841 842
	/*
	 * Avoid entering the debugger if we were triggered due to an oops
	 * but panic_timeout indicates the system should automatically
	 * reboot on panic. We don't want to get stuck waiting for input
	 * on such systems, especially if its "just" an oops.
	 */
	if (signo != SIGTRAP && panic_timeout)
		return 1;
843

844
	memset(ks, 0, sizeof(struct kgdb_state));
845 846 847 848 849 850 851
	ks->cpu			= raw_smp_processor_id();
	ks->ex_vector		= evector;
	ks->signo		= signo;
	ks->err_code		= ecode;
	ks->linux_regs		= regs;

	if (kgdb_reenter_check(ks))
852
		goto out; /* Ouch, double exception ! */
853
	if (kgdb_info[ks->cpu].enter_kgdb != 0)
854
		goto out;
855

856 857 858 859 860
	ret = kgdb_cpu_enter(ks, regs, DCPU_WANT_MASTER);
out:
	if (arch_kgdb_ops.enable_nmi)
		arch_kgdb_ops.enable_nmi(1);
	return ret;
861
}
862
NOKPROBE_SYMBOL(kgdb_handle_exception);
863

J
Jason Wessel 已提交
864
/*
865
 * GDB places a breakpoint at this function to know dynamically loaded objects.
J
Jason Wessel 已提交
866 867 868 869 870 871 872 873 874 875 876
 */
static int module_event(struct notifier_block *self, unsigned long val,
	void *data)
{
	return 0;
}

static struct notifier_block dbg_module_load_nb = {
	.notifier_call	= module_event,
};

J
Jason Wessel 已提交
877 878 879
int kgdb_nmicallback(int cpu, void *regs)
{
#ifdef CONFIG_SMP
880 881 882
	struct kgdb_state kgdb_var;
	struct kgdb_state *ks = &kgdb_var;

883 884
	kgdb_info[cpu].rounding_up = false;

885 886 887 888
	memset(ks, 0, sizeof(struct kgdb_state));
	ks->cpu			= cpu;
	ks->linux_regs		= regs;

889 890 891
	if (kgdb_info[ks->cpu].enter_kgdb == 0 &&
			raw_spin_is_locked(&dbg_master_lock)) {
		kgdb_cpu_enter(ks, regs, DCPU_IS_SLAVE);
J
Jason Wessel 已提交
892 893 894 895 896
		return 0;
	}
#endif
	return 1;
}
897
NOKPROBE_SYMBOL(kgdb_nmicallback);
J
Jason Wessel 已提交
898

899 900
int kgdb_nmicallin(int cpu, int trapnr, void *regs, int err_code,
							atomic_t *send_ready)
901 902 903 904 905 906 907 908 909 910 911 912 913
{
#ifdef CONFIG_SMP
	if (!kgdb_io_ready(0) || !send_ready)
		return 1;

	if (kgdb_info[cpu].enter_kgdb == 0) {
		struct kgdb_state kgdb_var;
		struct kgdb_state *ks = &kgdb_var;

		memset(ks, 0, sizeof(struct kgdb_state));
		ks->cpu			= cpu;
		ks->ex_vector		= trapnr;
		ks->signo		= SIGTRAP;
914
		ks->err_code		= err_code;
915 916 917 918 919 920 921 922
		ks->linux_regs		= regs;
		ks->send_ready		= send_ready;
		kgdb_cpu_enter(ks, regs, DCPU_WANT_MASTER);
		return 0;
	}
#endif
	return 1;
}
923
NOKPROBE_SYMBOL(kgdb_nmicallin);
924

J
Jason Wessel 已提交
925 926
static void kgdb_console_write(struct console *co, const char *s,
   unsigned count)
J
Jason Wessel 已提交
927 928 929 930 931
{
	unsigned long flags;

	/* If we're debugging, or KGDB has not connected, don't try
	 * and print. */
J
Jason Wessel 已提交
932
	if (!kgdb_connected || atomic_read(&kgdb_active) != -1 || dbg_kdb_mode)
J
Jason Wessel 已提交
933 934 935
		return;

	local_irq_save(flags);
936
	gdbstub_msg_write(s, count);
J
Jason Wessel 已提交
937 938 939 940 941 942 943 944 945 946
	local_irq_restore(flags);
}

static struct console kgdbcons = {
	.name		= "kgdb",
	.write		= kgdb_console_write,
	.flags		= CON_PRINTBUFFER | CON_ENABLED,
	.index		= -1,
};

947 948 949 950 951 952 953 954 955 956 957 958 959 960
static int __init opt_kgdb_con(char *str)
{
	kgdb_use_con = 1;

	if (kgdb_io_module_registered && !kgdb_con_registered) {
		register_console(&kgdbcons);
		kgdb_con_registered = 1;
	}

	return 0;
}

early_param("kgdbcon", opt_kgdb_con);

J
Jason Wessel 已提交
961
#ifdef CONFIG_MAGIC_SYSRQ
962
static void sysrq_handle_dbg(int key)
J
Jason Wessel 已提交
963
{
964
	if (!dbg_io_ops) {
965
		pr_crit("ERROR: No KGDB I/O module available\n");
J
Jason Wessel 已提交
966 967
		return;
	}
J
Jason Wessel 已提交
968 969 970
	if (!kgdb_connected) {
#ifdef CONFIG_KGDB_KDB
		if (!dbg_kdb_mode)
971
			pr_crit("KGDB or $3#33 for KDB\n");
J
Jason Wessel 已提交
972
#else
973
		pr_crit("Entering KGDB\n");
J
Jason Wessel 已提交
974 975
#endif
	}
J
Jason Wessel 已提交
976 977 978 979

	kgdb_breakpoint();
}

E
Emil Velikov 已提交
980
static const struct sysrq_key_op sysrq_dbg_op = {
981
	.handler	= sysrq_handle_dbg,
982
	.help_msg	= "debug(g)",
983
	.action_msg	= "DEBUG",
J
Jason Wessel 已提交
984 985 986
};
#endif

987
void kgdb_panic(const char *msg)
988
{
989 990 991
	if (!kgdb_io_module_registered)
		return;

992
	/*
993 994
	 * We don't want to get stuck waiting for input from user if
	 * "panic_timeout" indicates the system should automatically
995 996 997
	 * reboot on panic.
	 */
	if (panic_timeout)
998
		return;
999

1000
	if (dbg_kdb_mode)
1001 1002
		kdb_printf("PANIC: %s\n", msg);

1003 1004 1005
	kgdb_breakpoint();
}

1006 1007 1008 1009 1010 1011 1012 1013
static void kgdb_initial_breakpoint(void)
{
	kgdb_break_asap = 0;

	pr_crit("Waiting for connection from remote gdb...\n");
	kgdb_breakpoint();
}

1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
void __weak kgdb_arch_late(void)
{
}

void __init dbg_late_init(void)
{
	dbg_is_early = false;
	if (kgdb_io_module_registered)
		kgdb_arch_late();
	kdb_init(KDB_INIT_FULL);
1024 1025 1026

	if (kgdb_io_module_registered && kgdb_break_asap)
		kgdb_initial_breakpoint();
1027 1028
}

1029 1030 1031
static int
dbg_notify_reboot(struct notifier_block *this, unsigned long code, void *x)
{
1032 1033 1034
	/*
	 * Take the following action on reboot notify depending on value:
	 *    1 == Enter debugger
Z
Zhen Lei 已提交
1035
	 *    0 == [the default] detach debug client
1036 1037 1038 1039 1040
	 *   -1 == Do nothing... and use this until the board resets
	 */
	switch (kgdbreboot) {
	case 1:
		kgdb_breakpoint();
1041
		goto done;
1042 1043 1044
	case -1:
		goto done;
	}
1045 1046
	if (!dbg_kdb_mode)
		gdbstub_exit(code);
1047
done:
1048 1049 1050 1051 1052 1053 1054 1055 1056
	return NOTIFY_DONE;
}

static struct notifier_block dbg_reboot_notifier = {
	.notifier_call		= dbg_notify_reboot,
	.next			= NULL,
	.priority		= INT_MAX,
};

J
Jason Wessel 已提交
1057 1058 1059 1060 1061
static void kgdb_register_callbacks(void)
{
	if (!kgdb_io_module_registered) {
		kgdb_io_module_registered = 1;
		kgdb_arch_init();
1062 1063
		if (!dbg_is_early)
			kgdb_arch_late();
J
Jason Wessel 已提交
1064
		register_module_notifier(&dbg_module_load_nb);
1065
		register_reboot_notifier(&dbg_reboot_notifier);
J
Jason Wessel 已提交
1066
#ifdef CONFIG_MAGIC_SYSRQ
1067
		register_sysrq_key('g', &sysrq_dbg_op);
J
Jason Wessel 已提交
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
#endif
		if (kgdb_use_con && !kgdb_con_registered) {
			register_console(&kgdbcons);
			kgdb_con_registered = 1;
		}
	}
}

static void kgdb_unregister_callbacks(void)
{
	/*
1079 1080
	 * When this routine is called KGDB should unregister from
	 * handlers and clean up, making sure it is not handling any
J
Jason Wessel 已提交
1081 1082 1083 1084
	 * break exceptions at the time.
	 */
	if (kgdb_io_module_registered) {
		kgdb_io_module_registered = 0;
1085
		unregister_reboot_notifier(&dbg_reboot_notifier);
J
Jason Wessel 已提交
1086
		unregister_module_notifier(&dbg_module_load_nb);
J
Jason Wessel 已提交
1087 1088
		kgdb_arch_exit();
#ifdef CONFIG_MAGIC_SYSRQ
1089
		unregister_sysrq_key('g', &sysrq_dbg_op);
J
Jason Wessel 已提交
1090 1091 1092 1093 1094 1095 1096 1097 1098
#endif
		if (kgdb_con_registered) {
			unregister_console(&kgdbcons);
			kgdb_con_registered = 0;
		}
	}
}

/**
1099
 *	kgdb_register_io_module - register KGDB IO module
1100
 *	@new_dbg_io_ops: the io ops vector
J
Jason Wessel 已提交
1101 1102 1103
 *
 *	Register it with the KGDB core.
 */
1104
int kgdb_register_io_module(struct kgdb_io *new_dbg_io_ops)
J
Jason Wessel 已提交
1105
{
1106
	struct kgdb_io *old_dbg_io_ops;
J
Jason Wessel 已提交
1107 1108 1109 1110
	int err;

	spin_lock(&kgdb_registration_lock);

1111 1112 1113 1114
	old_dbg_io_ops = dbg_io_ops;
	if (old_dbg_io_ops) {
		if (!old_dbg_io_ops->deinit) {
			spin_unlock(&kgdb_registration_lock);
J
Jason Wessel 已提交
1115

1116 1117 1118 1119 1120 1121
			pr_err("KGDB I/O driver %s can't replace %s.\n",
				new_dbg_io_ops->name, old_dbg_io_ops->name);
			return -EBUSY;
		}
		pr_info("Replacing I/O driver %s with %s\n",
			old_dbg_io_ops->name, new_dbg_io_ops->name);
J
Jason Wessel 已提交
1122 1123
	}

1124 1125
	if (new_dbg_io_ops->init) {
		err = new_dbg_io_ops->init();
J
Jason Wessel 已提交
1126 1127 1128 1129 1130 1131
		if (err) {
			spin_unlock(&kgdb_registration_lock);
			return err;
		}
	}

1132
	dbg_io_ops = new_dbg_io_ops;
J
Jason Wessel 已提交
1133 1134 1135

	spin_unlock(&kgdb_registration_lock);

1136 1137
	if (old_dbg_io_ops) {
		old_dbg_io_ops->deinit();
1138
		return 0;
1139
	}
1140

1141
	pr_info("Registered I/O driver %s\n", new_dbg_io_ops->name);
J
Jason Wessel 已提交
1142 1143 1144 1145

	/* Arm KGDB now. */
	kgdb_register_callbacks();

1146 1147
	if (kgdb_break_asap &&
	    (!dbg_is_early || IS_ENABLED(CONFIG_ARCH_HAS_EARLY_DEBUG)))
J
Jason Wessel 已提交
1148 1149 1150 1151 1152 1153 1154
		kgdb_initial_breakpoint();

	return 0;
}
EXPORT_SYMBOL_GPL(kgdb_register_io_module);

/**
1155
 *	kgdb_unregister_io_module - unregister KGDB IO module
1156
 *	@old_dbg_io_ops: the io ops vector
J
Jason Wessel 已提交
1157 1158 1159
 *
 *	Unregister it with the KGDB core.
 */
1160
void kgdb_unregister_io_module(struct kgdb_io *old_dbg_io_ops)
J
Jason Wessel 已提交
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
{
	BUG_ON(kgdb_connected);

	/*
	 * KGDB is no longer able to communicate out, so
	 * unregister our callbacks and reset state.
	 */
	kgdb_unregister_callbacks();

	spin_lock(&kgdb_registration_lock);

1172 1173
	WARN_ON_ONCE(dbg_io_ops != old_dbg_io_ops);
	dbg_io_ops = NULL;
J
Jason Wessel 已提交
1174 1175 1176

	spin_unlock(&kgdb_registration_lock);

1177 1178 1179
	if (old_dbg_io_ops->deinit)
		old_dbg_io_ops->deinit();

1180
	pr_info("Unregistered I/O driver %s, debugger disabled\n",
1181
		old_dbg_io_ops->name);
J
Jason Wessel 已提交
1182 1183 1184
}
EXPORT_SYMBOL_GPL(kgdb_unregister_io_module);

J
Jason Wessel 已提交
1185 1186 1187
int dbg_io_get_char(void)
{
	int ret = dbg_io_ops->read_char();
1188 1189
	if (ret == NO_POLL_CHAR)
		return -1;
J
Jason Wessel 已提交
1190 1191 1192 1193 1194 1195 1196
	if (!dbg_kdb_mode)
		return ret;
	if (ret == 127)
		return 8;
	return ret;
}

J
Jason Wessel 已提交
1197 1198 1199 1200 1201 1202 1203 1204
/**
 * kgdb_breakpoint - generate breakpoint exception
 *
 * This function will generate a breakpoint exception.  It is used at the
 * beginning of a program to sync up with a debugger and can be used
 * otherwise as a quick means to stop program execution and "break" into
 * the debugger.
 */
1205
noinline void kgdb_breakpoint(void)
J
Jason Wessel 已提交
1206
{
1207
	atomic_inc(&kgdb_setting_breakpoint);
J
Jason Wessel 已提交
1208 1209 1210
	wmb(); /* Sync point before breakpoint */
	arch_kgdb_breakpoint();
	wmb(); /* Sync point after breakpoint */
1211
	atomic_dec(&kgdb_setting_breakpoint);
J
Jason Wessel 已提交
1212 1213 1214 1215 1216 1217 1218
}
EXPORT_SYMBOL_GPL(kgdb_breakpoint);

static int __init opt_kgdb_wait(char *str)
{
	kgdb_break_asap = 1;

J
Jason Wessel 已提交
1219
	kdb_init(KDB_INIT_EARLY);
1220 1221
	if (kgdb_io_module_registered &&
	    IS_ENABLED(CONFIG_ARCH_HAS_EARLY_DEBUG))
J
Jason Wessel 已提交
1222 1223 1224 1225 1226 1227
		kgdb_initial_breakpoint();

	return 0;
}

early_param("kgdbwait", opt_kgdb_wait);