#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: db_interface.c,v 1.42 2023/07/31 02:38:16 mrg Exp $");
#include "opt_ddb.h"
#include "opt_multiprocessor.h"
#include "lapic.h"
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/reboot.h>
#include <sys/systm.h>
#include <sys/atomic.h>
#include <sys/cpu.h>
#include <dev/cons.h>
#include <machine/cpufunc.h>
#include <machine/db_machdep.h>
#include <machine/cpuvar.h>
#if NIOAPIC > 0
#include <machine/i82093var.h>
#endif
#if NLAPIC > 0
#include <machine/i82489reg.h>
#include <machine/i82489var.h>
#endif
#include <ddb/db_active.h>
#include <ddb/db_sym.h>
#include <ddb/db_command.h>
#include <ddb/db_extern.h>
#include <ddb/db_access.h>
#include <ddb/db_output.h>
#include <ddb/ddbvar.h>
extern const char *const trap_type[];
extern int trap_types;
int db_active = 0;
#ifdef MULTIPROCESSOR
db_regs_t *ddb_regp = NULL;
#else
db_regs_t ddb_regs;
#endif
void db_mach_cpu (db_expr_t, bool, db_expr_t, const char *);
const struct db_command db_machine_command_table[] = {
#ifdef MULTIPROCESSOR
{ DDB_ADD_CMD("cpu", db_mach_cpu, 0,
"switch to another cpu", "cpu-no", NULL) },
#endif
{ DDB_END_CMD },
};
void kdbprinttrap(int, int);
#ifdef MULTIPROCESSOR
extern void ddb_ipi(struct trapframe);
static void ddb_suspend(struct trapframe *);
#ifndef XENPV
int ddb_vec;
#endif
static bool ddb_mp_online;
#endif
#define NOCPU -1
int ddb_cpu = NOCPU;
typedef void (vector)(void);
extern vector Xintr_ddbipi, Xintr_x2apic_ddbipi;
void
db_machine_init(void)
{
#ifdef MULTIPROCESSOR
#ifndef XENPV
struct idt_vec *iv = &(cpu_info_primary.ci_idtvec);
vector *handler = &Xintr_ddbipi;
idt_descriptor_t *idt = iv->iv_idt;
#if NLAPIC > 0
if (lapic_is_x2apic())
handler = &Xintr_x2apic_ddbipi;
#endif
ddb_vec = idt_vec_alloc(iv, 0xf0, 0xff);
KASSERT(ddb_vec > 0);
set_idtgate(&idt[ddb_vec], handler, 1, SDT_SYS386IGT, SEL_KPL,
GSEL(GCODE_SEL, SEL_KPL));
#else
#endif
#endif
}
#ifdef MULTIPROCESSOR
__cpu_simple_lock_t db_lock;
static int
db_suspend_others(void)
{
int cpu_me = cpu_number();
int win;
#ifndef XENPV
if (ddb_vec == 0)
return 1;
#endif
__cpu_simple_lock(&db_lock);
if (ddb_cpu == NOCPU)
ddb_cpu = cpu_me;
win = (ddb_cpu == cpu_me);
__cpu_simple_unlock(&db_lock);
if (win) {
#ifdef XENPV
xen_broadcast_ipi(XEN_IPI_DDB);
#else
#if NLAPIC > 0
if (ddb_vec != 0)
x86_ipi(ddb_vec, LAPIC_DEST_ALLEXCL,
LAPIC_DLMODE_FIXED);
#endif
#endif
}
ddb_mp_online = x86_mp_online;
x86_mp_online = false;
return win;
}
static void
db_resume_others(void)
{
CPU_INFO_ITERATOR cii;
struct cpu_info *ci;
x86_mp_online = ddb_mp_online;
__cpu_simple_lock(&db_lock);
ddb_cpu = NOCPU;
__cpu_simple_unlock(&db_lock);
for (CPU_INFO_FOREACH(cii, ci)) {
if (ci->ci_flags & CPUF_PAUSE)
atomic_and_32(&ci->ci_flags, ~CPUF_PAUSE);
}
}
#endif
void
kdbprinttrap(int type, int code)
{
db_printf("kernel: ");
if (type >= trap_types || type < 0)
db_printf("type %d", type);
else
db_printf("%s", trap_type[type]);
db_printf(" trap, code=%x\n", code);
}
int
kdb_trap(int type, int code, db_regs_t *regs)
{
int s;
#ifdef MULTIPROCESSOR
db_regs_t dbreg;
#endif
switch (type) {
case T_NMI:
printf("NMI ... going to debugger\n");
case T_BPTFLT:
case T_TRCTRAP:
case -1:
break;
default:
if (!db_onpanic && db_recover == 0)
return (0);
kdbprinttrap(type, code);
if (db_recover != 0) {
db_error("Faulted in DDB; continuing...\n");
}
}
#ifdef MULTIPROCESSOR
if (!db_suspend_others()) {
ddb_suspend(regs);
} else {
curcpu()->ci_ddb_regs = &dbreg;
ddb_regp = &dbreg;
#endif
ddb_regs = *regs;
ddb_regs.tf_cs &= 0xffff;
ddb_regs.tf_ds &= 0xffff;
ddb_regs.tf_es &= 0xffff;
ddb_regs.tf_fs &= 0xffff;
ddb_regs.tf_gs &= 0xffff;
ddb_regs.tf_ss &= 0xffff;
s = splhigh();
db_active++;
cnpollc(true);
db_trap(type, code);
cnpollc(false);
db_active--;
splx(s);
#ifdef MULTIPROCESSOR
db_resume_others();
}
ddb_regp = &dbreg;
#endif
*regs = ddb_regs;
#ifdef MULTIPROCESSOR
ddb_regp = NULL;
#endif
return (1);
}
void
cpu_Debugger(void)
{
breakpoint();
}
#ifdef MULTIPROCESSOR
void
ddb_ipi(struct trapframe frame)
{
ddb_suspend(&frame);
}
static void
ddb_suspend(struct trapframe *frame)
{
volatile struct cpu_info *ci = curcpu();
db_regs_t regs;
regs = *frame;
ci->ci_ddb_regs = ®s;
atomic_or_32(&ci->ci_flags, CPUF_PAUSE);
while (ci->ci_flags & CPUF_PAUSE)
x86_pause();
ci->ci_ddb_regs = 0;
tlbflushg();
}
extern void cpu_debug_dump(void);
void
db_mach_cpu(db_expr_t addr, bool have_addr, db_expr_t count, const char *modif)
{
struct cpu_info *ci;
if (!have_addr) {
cpu_debug_dump();
return;
}
if (addr < 0) {
db_printf("%ld: CPU out of range\n", addr);
return;
}
ci = cpu_lookup(addr);
if (ci == NULL) {
db_printf("CPU %ld not configured\n", addr);
return;
}
if (ci != curcpu()) {
if (!(ci->ci_flags & CPUF_PAUSE)) {
db_printf("CPU %ld not paused\n", addr);
return;
}
}
if (ci->ci_ddb_regs == 0) {
db_printf("CPU %ld has no saved regs\n", addr);
return;
}
db_printf("using CPU %ld", addr);
ddb_regp = ci->ci_ddb_regs;
}
#endif