debug_core.c 25.3 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>
J
Jason Wessel 已提交
58 59 60

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

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

65
static int kgdb_break_asap;
66

67
struct debuggerinfo_struct kgdb_info[NR_CPUS];
J
Jason Wessel 已提交
68 69 70 71 72 73 74 75

/**
 * kgdb_connected - Is a host GDB connected to us?
 */
int				kgdb_connected;
EXPORT_SYMBOL_GPL(kgdb_connected);

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

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

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

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

/* Use kdb or gdbserver mode */
96
int dbg_kdb_mode = 1;
J
Jason Wessel 已提交
97 98 99 100 101 102 103 104 105 106

static int __init opt_kgdb_con(char *str)
{
	kgdb_use_con = 1;
	return 0;
}

early_param("kgdbcon", opt_kgdb_con);

module_param(kgdb_use_con, int, 0644);
107
module_param(kgdbreboot, int, 0644);
J
Jason Wessel 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120

/*
 * 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 已提交
121
EXPORT_SYMBOL_GPL(kgdb_active);
122 123
static DEFINE_RAW_SPINLOCK(dbg_master_lock);
static DEFINE_RAW_SPINLOCK(dbg_slave_lock);
J
Jason Wessel 已提交
124 125 126 127 128

/*
 * We use NR_CPUs not PERCPU, in case kgdb is used to debug early
 * bootup code (which might not have percpu set up yet):
 */
129 130
static atomic_t			masters_in_kgdb;
static atomic_t			slaves_in_kgdb;
131
static atomic_t			kgdb_break_tasklet_var;
J
Jason Wessel 已提交
132 133 134 135 136 137
atomic_t			kgdb_setting_breakpoint;

struct task_struct		*kgdb_usethread;
struct task_struct		*kgdb_contthread;

int				kgdb_single_step;
138
static pid_t			kgdb_sstep_pid;
J
Jason Wessel 已提交
139 140 141 142 143 144 145 146 147 148 149

/* 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:
 */
150
static int kgdb_do_roundup = 1;
J
Jason Wessel 已提交
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168

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,
 * can be overriden by architectures when needed:
 */
169
int __weak kgdb_arch_set_breakpoint(struct kgdb_bkpt *bpt)
J
Jason Wessel 已提交
170 171 172
{
	int err;

173 174
	err = probe_kernel_read(bpt->saved_instr, (char *)bpt->bpt_addr,
				BREAK_INSTR_SIZE);
J
Jason Wessel 已提交
175 176
	if (err)
		return err;
177 178 179
	err = probe_kernel_write((char *)bpt->bpt_addr,
				 arch_kgdb_ops.gdb_bpt_instr, BREAK_INSTR_SIZE);
	return err;
J
Jason Wessel 已提交
180 181
}

182
int __weak kgdb_arch_remove_breakpoint(struct kgdb_bkpt *bpt)
J
Jason Wessel 已提交
183
{
184 185
	return probe_kernel_write((char *)bpt->bpt_addr,
				  (char *)bpt->saved_instr, BREAK_INSTR_SIZE);
J
Jason Wessel 已提交
186 187
}

188 189
int __weak kgdb_validate_break_address(unsigned long addr)
{
190
	struct kgdb_bkpt tmp;
191
	int err;
192
	/* Validate setting the breakpoint and then removing it.  If the
193 194 195 196
	 * 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.
	 */
197 198
	tmp.bpt_addr = addr;
	err = kgdb_arch_set_breakpoint(&tmp);
199 200
	if (err)
		return err;
201
	err = kgdb_arch_remove_breakpoint(&tmp);
202
	if (err)
203 204
		pr_err("Critical breakpoint error, kernel memory destroyed at: %lx\n",
		       addr);
205 206 207
	return err;
}

J
Jason Wessel 已提交
208 209 210 211 212 213 214 215 216 217
unsigned long __weak kgdb_arch_pc(int exception, struct pt_regs *regs)
{
	return instruction_pointer(regs);
}

int __weak kgdb_arch_init(void)
{
	return 0;
}

218 219 220 221 222
int __weak kgdb_skipexception(int exception, struct pt_regs *regs)
{
	return 0;
}

J
Jason Wessel 已提交
223 224 225 226 227 228 229 230 231
/*
 * 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 已提交
232 233 234 235
	if (current->mm) {
		int i;

		for (i = 0; i < VMACACHE_SIZE; i++) {
236
			if (!current->vmacache.vmas[i])
D
Davidlohr Bueso 已提交
237
				continue;
238
			flush_cache_range(current->vmacache.vmas[i],
D
Davidlohr Bueso 已提交
239 240
					  addr, addr + BREAK_INSTR_SIZE);
		}
J
Jason Wessel 已提交
241
	}
D
Davidlohr Bueso 已提交
242

243 244
	/* Force flush instruction cache if it was outside the mm */
	flush_icache_range(addr, addr + BREAK_INSTR_SIZE);
J
Jason Wessel 已提交
245 246 247 248 249
}

/*
 * SW breakpoint management:
 */
250
int dbg_activate_sw_breakpoints(void)
J
Jason Wessel 已提交
251
{
252 253
	int error;
	int ret = 0;
J
Jason Wessel 已提交
254 255 256 257 258 259
	int i;

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

260
		error = kgdb_arch_set_breakpoint(&kgdb_break[i]);
261 262
		if (error) {
			ret = error;
263 264
			pr_info("BP install failed: %lx\n",
				kgdb_break[i].bpt_addr);
265 266
			continue;
		}
J
Jason Wessel 已提交
267

268
		kgdb_flush_swbreak_addr(kgdb_break[i].bpt_addr);
J
Jason Wessel 已提交
269 270
		kgdb_break[i].state = BP_ACTIVE;
	}
271
	return ret;
J
Jason Wessel 已提交
272 273
}

274
int dbg_set_sw_break(unsigned long addr)
J
Jason Wessel 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
{
	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 已提交
315
int dbg_deactivate_sw_breakpoints(void)
J
Jason Wessel 已提交
316
{
317 318
	int error;
	int ret = 0;
J
Jason Wessel 已提交
319 320 321 322 323
	int i;

	for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) {
		if (kgdb_break[i].state != BP_ACTIVE)
			continue;
324
		error = kgdb_arch_remove_breakpoint(&kgdb_break[i]);
325
		if (error) {
326 327
			pr_info("BP remove failed: %lx\n",
				kgdb_break[i].bpt_addr);
328 329
			ret = error;
		}
J
Jason Wessel 已提交
330

331
		kgdb_flush_swbreak_addr(kgdb_break[i].bpt_addr);
J
Jason Wessel 已提交
332 333
		kgdb_break[i].state = BP_SET;
	}
334
	return ret;
J
Jason Wessel 已提交
335 336
}

337
int dbg_remove_sw_break(unsigned long addr)
J
Jason Wessel 已提交
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
{
	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;
}

363
int dbg_remove_all_break(void)
J
Jason Wessel 已提交
364 365 366 367 368 369
{
	int error;
	int i;

	/* Clear memory breakpoints. */
	for (i = 0; i < KGDB_MAX_BREAKPOINTS; i++) {
370 371
		if (kgdb_break[i].state != BP_ACTIVE)
			goto setundefined;
372
		error = kgdb_arch_remove_breakpoint(&kgdb_break[i]);
J
Jason Wessel 已提交
373
		if (error)
374
			pr_err("breakpoint remove failed: %lx\n",
375
			       kgdb_break[i].bpt_addr);
376 377
setundefined:
		kgdb_break[i].state = BP_UNDEFINED;
J
Jason Wessel 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
	}

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

	return 0;
}

/*
 * 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)
{
398
	if (!dbg_io_ops)
J
Jason Wessel 已提交
399 400 401 402 403
		return 0;
	if (kgdb_connected)
		return 1;
	if (atomic_read(&kgdb_setting_breakpoint))
		return 1;
J
Jason Wessel 已提交
404 405 406
	if (print_wait) {
#ifdef CONFIG_KGDB_KDB
		if (!dbg_kdb_mode)
407
			pr_crit("waiting... or $3#33 for KDB\n");
J
Jason Wessel 已提交
408
#else
409
		pr_crit("Waiting for remote debugger\n");
J
Jason Wessel 已提交
410 411
#endif
	}
J
Jason Wessel 已提交
412 413 414 415 416 417 418 419 420 421 422 423 424
	return 1;
}

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 已提交
425
	dbg_deactivate_sw_breakpoints();
J
Jason Wessel 已提交
426 427 428 429 430 431 432

	/*
	 * 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.
	 */
433
	if (dbg_remove_sw_break(addr) == 0) {
J
Jason Wessel 已提交
434 435
		exception_level = 0;
		kgdb_skipexception(ks->ex_vector, ks->linux_regs);
436
		dbg_activate_sw_breakpoints();
437
		pr_crit("re-enter error: breakpoint removed %lx\n", addr);
J
Jason Wessel 已提交
438 439 440 441
		WARN_ON_ONCE(1);

		return 1;
	}
442
	dbg_remove_all_break();
J
Jason Wessel 已提交
443 444 445 446 447 448 449
	kgdb_skipexception(ks->ex_vector, ks->linux_regs);

	if (exception_level > 1) {
		dump_stack();
		panic("Recursive entry to debugger");
	}

450
	pr_crit("re-enter exception: ALL breakpoints killed\n");
451 452 453 454
#ifdef CONFIG_KGDB_KDB
	/* Allow kdb to debug itself one level */
	return 0;
#endif
J
Jason Wessel 已提交
455 456 457 458 459 460
	dump_stack();
	panic("Recursive entry to debugger");

	return 1;
}

461 462 463 464
static void dbg_touch_watchdogs(void)
{
	touch_softlockup_watchdog_sync();
	clocksource_touch_watchdog();
465
	rcu_cpu_stall_reset();
466 467
}

468 469
static int kgdb_cpu_enter(struct kgdb_state *ks, struct pt_regs *regs,
		int exception_state)
J
Jason Wessel 已提交
470 471
{
	unsigned long flags;
472
	int sstep_tries = 100;
J
Jason Wessel 已提交
473
	int error;
474
	int cpu;
475
	int trace_on = 0;
476
	int online_cpus = num_online_cpus();
477
	u64 time_left;
478

479 480 481 482 483 484 485
	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);
486 487 488

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

J
Jason Wessel 已提交
490 491 492 493 494 495 496
acquirelock:
	/*
	 * Interrupts will be restored by the 'trap return' code, except when
	 * single stepping.
	 */
	local_irq_save(flags);

497 498 499
	cpu = ks->cpu;
	kgdb_info[cpu].debuggerinfo = regs;
	kgdb_info[cpu].task = current;
J
Jason Wessel 已提交
500 501
	kgdb_info[cpu].ret_state = 0;
	kgdb_info[cpu].irq_depth = hardirq_count() >> HARDIRQ_SHIFT;
J
Jason Wessel 已提交
502

503 504 505 506 507 508
	/* 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);
509
		goto cpu_master_loop;
510
	}
511

J
Jason Wessel 已提交
512
	/*
513 514
	 * 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 已提交
515
	 */
516
	while (1) {
J
Jason Wessel 已提交
517 518 519 520 521
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) {
522 523
			if (raw_spin_trylock(&dbg_master_lock)) {
				atomic_xchg(&kgdb_active, cpu);
524
				break;
525
			}
526
		} else if (kgdb_info[cpu].exception_state & DCPU_IS_SLAVE) {
527
			if (!raw_spin_is_locked(&dbg_slave_lock))
528 529 530 531 532 533 534 535
				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();
536 537
			if (trace_on)
				tracing_on();
538 539 540
			kgdb_info[cpu].exception_state &=
				~(DCPU_WANT_MASTER | DCPU_IS_SLAVE);
			kgdb_info[cpu].enter_kgdb--;
541
			smp_mb__before_atomic();
542
			atomic_dec(&slaves_in_kgdb);
543
			dbg_touch_watchdogs();
544 545 546
			local_irq_restore(flags);
			return 0;
		}
J
Jason Wessel 已提交
547
		cpu_relax();
548
	}
J
Jason Wessel 已提交
549 550

	/*
551
	 * For single stepping, try to only enter on the processor
L
Lucas De Marchi 已提交
552
	 * that was single stepping.  To guard against a deadlock, the
553 554
	 * kernel will only try for the value of sstep_tries before
	 * giving up and continuing on.
J
Jason Wessel 已提交
555 556
	 */
	if (atomic_read(&kgdb_cpu_doing_single_step) != -1 &&
557 558
	    (kgdb_info[cpu].task &&
	     kgdb_info[cpu].task->pid != kgdb_sstep_pid) && --sstep_tries) {
J
Jason Wessel 已提交
559
		atomic_set(&kgdb_active, -1);
560
		raw_spin_unlock(&dbg_master_lock);
561
		dbg_touch_watchdogs();
J
Jason Wessel 已提交
562 563 564 565 566 567
		local_irq_restore(flags);

		goto acquirelock;
	}

	if (!kgdb_io_ready(1)) {
J
Jason Wessel 已提交
568
		kgdb_info[cpu].ret_state = 1;
569
		goto kgdb_restore; /* No I/O connection, resume the system */
J
Jason Wessel 已提交
570 571 572 573 574 575 576 577 578
	}

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

	/* Call the I/O driver's pre_exception routine */
579 580
	if (dbg_io_ops->pre_exception)
		dbg_io_ops->pre_exception();
J
Jason Wessel 已提交
581 582 583 584 585

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

589
#ifdef CONFIG_SMP
590 591 592 593
	/* If send_ready set, slaves are already waiting */
	if (ks->send_ready)
		atomic_set(ks->send_ready, 1);

594
	/* Signal the other CPUs to enter kgdb_wait() */
595
	else if ((!kgdb_single_step) && kgdb_do_roundup)
596 597 598
		kgdb_roundup_cpus(flags);
#endif

J
Jason Wessel 已提交
599 600 601
	/*
	 * Wait for the other CPUs to be notified and be waiting for us:
	 */
602
	time_left = MSEC_PER_SEC;
603 604 605
	while (kgdb_do_roundup && --time_left &&
	       (atomic_read(&masters_in_kgdb) + atomic_read(&slaves_in_kgdb)) !=
		   online_cpus)
606
		udelay(1000);
607
	if (!time_left)
608
		pr_crit("Timed out waiting for secondary CPUs.\n");
J
Jason Wessel 已提交
609 610 611 612 613

	/*
	 * At this point the primary processor is completely
	 * in the debugger and all secondary CPUs are quiescent
	 */
J
Jason Wessel 已提交
614
	dbg_deactivate_sw_breakpoints();
J
Jason Wessel 已提交
615
	kgdb_single_step = 0;
616
	kgdb_contthread = current;
J
Jason Wessel 已提交
617
	exception_level = 0;
618 619 620
	trace_on = tracing_is_on();
	if (trace_on)
		tracing_off();
J
Jason Wessel 已提交
621

J
Jason Wessel 已提交
622 623 624 625 626
	while (1) {
cpu_master_loop:
		if (dbg_kdb_mode) {
			kgdb_connected = 1;
			error = kdb_stub(ks);
627 628
			if (error == -1)
				continue;
629
			kgdb_connected = 0;
J
Jason Wessel 已提交
630 631 632 633 634 635 636
		} else {
			error = gdb_serial_stub(ks);
		}

		if (error == DBG_PASS_EVENT) {
			dbg_kdb_mode = !dbg_kdb_mode;
		} else if (error == DBG_SWITCH_CPU_EVENT) {
637 638
			kgdb_info[dbg_switch_cpu].exception_state |=
				DCPU_NEXT_MASTER;
J
Jason Wessel 已提交
639 640 641 642 643 644
			goto cpu_loop;
		} else {
			kgdb_info[cpu].ret_state = error;
			break;
		}
	}
J
Jason Wessel 已提交
645 646

	/* Call the I/O driver's post_exception routine */
647 648
	if (dbg_io_ops->post_exception)
		dbg_io_ops->post_exception();
J
Jason Wessel 已提交
649

650
	if (!kgdb_single_step) {
651 652 653 654
		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 已提交
655 656 657
	}

kgdb_restore:
658 659 660 661 662 663 664
	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;
	}
665 666
	if (arch_kgdb_ops.correct_hw_break)
		arch_kgdb_ops.correct_hw_break();
667 668
	if (trace_on)
		tracing_on();
669 670 671 672

	kgdb_info[cpu].exception_state &=
		~(DCPU_WANT_MASTER | DCPU_IS_SLAVE);
	kgdb_info[cpu].enter_kgdb--;
673
	smp_mb__before_atomic();
674
	atomic_dec(&masters_in_kgdb);
J
Jason Wessel 已提交
675 676
	/* Free kgdb_active */
	atomic_set(&kgdb_active, -1);
677
	raw_spin_unlock(&dbg_master_lock);
678
	dbg_touch_watchdogs();
J
Jason Wessel 已提交
679 680
	local_irq_restore(flags);

J
Jason Wessel 已提交
681
	return kgdb_info[cpu].ret_state;
J
Jason Wessel 已提交
682 683
}

684 685 686 687 688 689 690 691 692 693 694 695
/*
 * 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;
696 697 698 699
	int ret = 0;

	if (arch_kgdb_ops.enable_nmi)
		arch_kgdb_ops.enable_nmi(0);
700 701 702 703 704 705 706 707
	/*
	 * 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;
708

709
	memset(ks, 0, sizeof(struct kgdb_state));
710 711 712 713 714 715 716
	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))
717
		goto out; /* Ouch, double exception ! */
718
	if (kgdb_info[ks->cpu].enter_kgdb != 0)
719
		goto out;
720

721 722 723 724 725
	ret = kgdb_cpu_enter(ks, regs, DCPU_WANT_MASTER);
out:
	if (arch_kgdb_ops.enable_nmi)
		arch_kgdb_ops.enable_nmi(1);
	return ret;
726 727
}

J
Jason Wessel 已提交
728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
/*
 * GDB places a breakpoint at this function to know dynamically
 * loaded objects. It's not defined static so that only one instance with this
 * name exists in the kernel.
 */

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 已提交
744 745 746
int kgdb_nmicallback(int cpu, void *regs)
{
#ifdef CONFIG_SMP
747 748 749 750 751 752 753
	struct kgdb_state kgdb_var;
	struct kgdb_state *ks = &kgdb_var;

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

754 755 756
	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 已提交
757 758 759 760 761 762
		return 0;
	}
#endif
	return 1;
}

763 764
int kgdb_nmicallin(int cpu, int trapnr, void *regs, int err_code,
							atomic_t *send_ready)
765 766 767 768 769 770 771 772 773 774 775 776 777
{
#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;
778
		ks->err_code		= err_code;
779 780 781 782 783 784 785 786 787
		ks->linux_regs		= regs;
		ks->send_ready		= send_ready;
		kgdb_cpu_enter(ks, regs, DCPU_WANT_MASTER);
		return 0;
	}
#endif
	return 1;
}

J
Jason Wessel 已提交
788 789
static void kgdb_console_write(struct console *co, const char *s,
   unsigned count)
J
Jason Wessel 已提交
790 791 792 793 794
{
	unsigned long flags;

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

	local_irq_save(flags);
799
	gdbstub_msg_write(s, count);
J
Jason Wessel 已提交
800 801 802 803 804 805 806 807 808 809 810
	local_irq_restore(flags);
}

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

#ifdef CONFIG_MAGIC_SYSRQ
811
static void sysrq_handle_dbg(int key)
J
Jason Wessel 已提交
812
{
813
	if (!dbg_io_ops) {
814
		pr_crit("ERROR: No KGDB I/O module available\n");
J
Jason Wessel 已提交
815 816
		return;
	}
J
Jason Wessel 已提交
817 818 819
	if (!kgdb_connected) {
#ifdef CONFIG_KGDB_KDB
		if (!dbg_kdb_mode)
820
			pr_crit("KGDB or $3#33 for KDB\n");
J
Jason Wessel 已提交
821
#else
822
		pr_crit("Entering KGDB\n");
J
Jason Wessel 已提交
823 824
#endif
	}
J
Jason Wessel 已提交
825 826 827 828

	kgdb_breakpoint();
}

829 830
static struct sysrq_key_op sysrq_dbg_op = {
	.handler	= sysrq_handle_dbg,
831
	.help_msg	= "debug(g)",
832
	.action_msg	= "DEBUG",
J
Jason Wessel 已提交
833 834 835
};
#endif

836 837 838 839
static int kgdb_panic_event(struct notifier_block *self,
			    unsigned long val,
			    void *data)
{
840 841 842 843 844 845 846 847 848
	/*
	 * Avoid entering the debugger if we were triggered due to a panic
	 * We don't want to get stuck waiting for input from user in such case.
	 * panic_timeout indicates the system should automatically
	 * reboot on panic.
	 */
	if (panic_timeout)
		return NOTIFY_DONE;

849 850 851 852 853 854 855 856 857 858 859
	if (dbg_kdb_mode)
		kdb_printf("PANIC: %s\n", (char *)data);
	kgdb_breakpoint();
	return NOTIFY_DONE;
}

static struct notifier_block kgdb_panic_event_nb = {
       .notifier_call	= kgdb_panic_event,
       .priority	= INT_MAX,
};

860 861 862 863 864 865 866 867 868 869 870 871
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);
}

872 873 874
static int
dbg_notify_reboot(struct notifier_block *this, unsigned long code, void *x)
{
875 876 877 878 879 880 881 882 883 884 885 886
	/*
	 * Take the following action on reboot notify depending on value:
	 *    1 == Enter debugger
	 *    0 == [the default] detatch debug client
	 *   -1 == Do nothing... and use this until the board resets
	 */
	switch (kgdbreboot) {
	case 1:
		kgdb_breakpoint();
	case -1:
		goto done;
	}
887 888
	if (!dbg_kdb_mode)
		gdbstub_exit(code);
889
done:
890 891 892 893 894 895 896 897 898
	return NOTIFY_DONE;
}

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

J
Jason Wessel 已提交
899 900 901 902 903
static void kgdb_register_callbacks(void)
{
	if (!kgdb_io_module_registered) {
		kgdb_io_module_registered = 1;
		kgdb_arch_init();
904 905
		if (!dbg_is_early)
			kgdb_arch_late();
J
Jason Wessel 已提交
906
		register_module_notifier(&dbg_module_load_nb);
907
		register_reboot_notifier(&dbg_reboot_notifier);
908 909
		atomic_notifier_chain_register(&panic_notifier_list,
					       &kgdb_panic_event_nb);
J
Jason Wessel 已提交
910
#ifdef CONFIG_MAGIC_SYSRQ
911
		register_sysrq_key('g', &sysrq_dbg_op);
J
Jason Wessel 已提交
912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
#endif
		if (kgdb_use_con && !kgdb_con_registered) {
			register_console(&kgdbcons);
			kgdb_con_registered = 1;
		}
	}
}

static void kgdb_unregister_callbacks(void)
{
	/*
	 * When this routine is called KGDB should unregister from the
	 * panic handler and clean up, making sure it is not handling any
	 * break exceptions at the time.
	 */
	if (kgdb_io_module_registered) {
		kgdb_io_module_registered = 0;
929
		unregister_reboot_notifier(&dbg_reboot_notifier);
J
Jason Wessel 已提交
930
		unregister_module_notifier(&dbg_module_load_nb);
931 932
		atomic_notifier_chain_unregister(&panic_notifier_list,
					       &kgdb_panic_event_nb);
J
Jason Wessel 已提交
933 934
		kgdb_arch_exit();
#ifdef CONFIG_MAGIC_SYSRQ
935
		unregister_sysrq_key('g', &sysrq_dbg_op);
J
Jason Wessel 已提交
936 937 938 939 940 941 942 943
#endif
		if (kgdb_con_registered) {
			unregister_console(&kgdbcons);
			kgdb_con_registered = 0;
		}
	}
}

944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968
/*
 * There are times a tasklet needs to be used vs a compiled in
 * break point so as to cause an exception outside a kgdb I/O module,
 * such as is the case with kgdboe, where calling a breakpoint in the
 * I/O driver itself would be fatal.
 */
static void kgdb_tasklet_bpt(unsigned long ing)
{
	kgdb_breakpoint();
	atomic_set(&kgdb_break_tasklet_var, 0);
}

static DECLARE_TASKLET(kgdb_tasklet_breakpoint, kgdb_tasklet_bpt, 0);

void kgdb_schedule_breakpoint(void)
{
	if (atomic_read(&kgdb_break_tasklet_var) ||
		atomic_read(&kgdb_active) != -1 ||
		atomic_read(&kgdb_setting_breakpoint))
		return;
	atomic_inc(&kgdb_break_tasklet_var);
	tasklet_schedule(&kgdb_tasklet_breakpoint);
}
EXPORT_SYMBOL_GPL(kgdb_schedule_breakpoint);

J
Jason Wessel 已提交
969 970 971 972
static void kgdb_initial_breakpoint(void)
{
	kgdb_break_asap = 0;

973
	pr_crit("Waiting for connection from remote gdb...\n");
J
Jason Wessel 已提交
974 975 976 977
	kgdb_breakpoint();
}

/**
978
 *	kgdb_register_io_module - register KGDB IO module
979
 *	@new_dbg_io_ops: the io ops vector
J
Jason Wessel 已提交
980 981 982
 *
 *	Register it with the KGDB core.
 */
983
int kgdb_register_io_module(struct kgdb_io *new_dbg_io_ops)
J
Jason Wessel 已提交
984 985 986 987 988
{
	int err;

	spin_lock(&kgdb_registration_lock);

989
	if (dbg_io_ops) {
J
Jason Wessel 已提交
990 991
		spin_unlock(&kgdb_registration_lock);

992
		pr_err("Another I/O driver is already registered with KGDB\n");
J
Jason Wessel 已提交
993 994 995
		return -EBUSY;
	}

996 997
	if (new_dbg_io_ops->init) {
		err = new_dbg_io_ops->init();
J
Jason Wessel 已提交
998 999 1000 1001 1002 1003
		if (err) {
			spin_unlock(&kgdb_registration_lock);
			return err;
		}
	}

1004
	dbg_io_ops = new_dbg_io_ops;
J
Jason Wessel 已提交
1005 1006 1007

	spin_unlock(&kgdb_registration_lock);

1008
	pr_info("Registered I/O driver %s\n", new_dbg_io_ops->name);
J
Jason Wessel 已提交
1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021

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

	if (kgdb_break_asap)
		kgdb_initial_breakpoint();

	return 0;
}
EXPORT_SYMBOL_GPL(kgdb_register_io_module);

/**
 *	kkgdb_unregister_io_module - unregister KGDB IO module
1022
 *	@old_dbg_io_ops: the io ops vector
J
Jason Wessel 已提交
1023 1024 1025
 *
 *	Unregister it with the KGDB core.
 */
1026
void kgdb_unregister_io_module(struct kgdb_io *old_dbg_io_ops)
J
Jason Wessel 已提交
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037
{
	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);

1038 1039
	WARN_ON_ONCE(dbg_io_ops != old_dbg_io_ops);
	dbg_io_ops = NULL;
J
Jason Wessel 已提交
1040 1041 1042

	spin_unlock(&kgdb_registration_lock);

1043
	pr_info("Unregistered I/O driver %s, debugger disabled\n",
1044
		old_dbg_io_ops->name);
J
Jason Wessel 已提交
1045 1046 1047
}
EXPORT_SYMBOL_GPL(kgdb_unregister_io_module);

J
Jason Wessel 已提交
1048 1049 1050
int dbg_io_get_char(void)
{
	int ret = dbg_io_ops->read_char();
1051 1052
	if (ret == NO_POLL_CHAR)
		return -1;
J
Jason Wessel 已提交
1053 1054 1055 1056 1057 1058 1059
	if (!dbg_kdb_mode)
		return ret;
	if (ret == 127)
		return 8;
	return ret;
}

J
Jason Wessel 已提交
1060 1061 1062 1063 1064 1065 1066 1067
/**
 * 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.
 */
1068
noinline void kgdb_breakpoint(void)
J
Jason Wessel 已提交
1069
{
1070
	atomic_inc(&kgdb_setting_breakpoint);
J
Jason Wessel 已提交
1071 1072 1073
	wmb(); /* Sync point before breakpoint */
	arch_kgdb_breakpoint();
	wmb(); /* Sync point after breakpoint */
1074
	atomic_dec(&kgdb_setting_breakpoint);
J
Jason Wessel 已提交
1075 1076 1077 1078 1079 1080 1081
}
EXPORT_SYMBOL_GPL(kgdb_breakpoint);

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

J
Jason Wessel 已提交
1082
	kdb_init(KDB_INIT_EARLY);
J
Jason Wessel 已提交
1083 1084 1085 1086 1087 1088 1089
	if (kgdb_io_module_registered)
		kgdb_initial_breakpoint();

	return 0;
}

early_param("kgdbwait", opt_kgdb_wait);