Home | History | Annotate | Line # | Download | only in kern
kgdb_stub.c revision 1.24
      1  1.24    dyoung /*	$NetBSD: kgdb_stub.c,v 1.24 2011/04/03 22:29:28 dyoung Exp $	*/
      2   1.1       gwr 
      3   1.1       gwr /*
      4   1.1       gwr  * Copyright (c) 1990, 1993
      5   1.1       gwr  *	The Regents of the University of California.  All rights reserved.
      6   1.1       gwr  *
      7   1.1       gwr  * This software was developed by the Computer Systems Engineering group
      8   1.1       gwr  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
      9   1.1       gwr  * contributed to Berkeley.
     10   1.1       gwr  *
     11   1.1       gwr  * All advertising materials mentioning features or use of this software
     12   1.1       gwr  * must display the following acknowledgement:
     13   1.1       gwr  *	This product includes software developed by the University of
     14   1.1       gwr  *	California, Lawrence Berkeley Laboratories.
     15   1.1       gwr  *
     16   1.1       gwr  * Redistribution and use in source and binary forms, with or without
     17   1.1       gwr  * modification, are permitted provided that the following conditions
     18   1.1       gwr  * are met:
     19   1.1       gwr  * 1. Redistributions of source code must retain the above copyright
     20   1.1       gwr  *    notice, this list of conditions and the following disclaimer.
     21   1.1       gwr  * 2. Redistributions in binary form must reproduce the above copyright
     22   1.1       gwr  *    notice, this list of conditions and the following disclaimer in the
     23   1.1       gwr  *    documentation and/or other materials provided with the distribution.
     24  1.15       agc  * 3. Neither the name of the University nor the names of its contributors
     25   1.1       gwr  *    may be used to endorse or promote products derived from this software
     26   1.1       gwr  *    without specific prior written permission.
     27   1.1       gwr  *
     28   1.1       gwr  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29   1.1       gwr  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30   1.1       gwr  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31   1.1       gwr  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32   1.1       gwr  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33   1.1       gwr  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34   1.1       gwr  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35   1.1       gwr  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36   1.1       gwr  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37   1.1       gwr  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38   1.1       gwr  * SUCH DAMAGE.
     39   1.1       gwr  *
     40   1.1       gwr  *	@(#)kgdb_stub.c	8.4 (Berkeley) 1/12/94
     41   1.1       gwr  */
     42   1.1       gwr 
     43   1.1       gwr /*
     44  1.16       wiz  * "Stub" to allow remote CPU to debug over a serial line using gdb.
     45   1.1       gwr  */
     46  1.10     lukem 
     47  1.10     lukem #include <sys/cdefs.h>
     48  1.24    dyoung __KERNEL_RCSID(0, "$NetBSD: kgdb_stub.c,v 1.24 2011/04/03 22:29:28 dyoung Exp $");
     49  1.11     lukem 
     50  1.11     lukem #include "opt_kgdb.h"
     51   1.1       gwr 
     52   1.1       gwr #include <sys/param.h>
     53   1.1       gwr #include <sys/systm.h>
     54   1.1       gwr #include <sys/kgdb.h>
     55   1.1       gwr 
     56  1.13   thorpej #undef	DEBUG_KGDB
     57  1.13   thorpej 
     58  1.13   thorpej #ifdef DEBUG_KGDB
     59  1.13   thorpej #define DPRINTF(x)	printf x
     60  1.13   thorpej #else
     61  1.13   thorpej #define DPRINTF(x)
     62  1.13   thorpej #endif
     63   1.1       gwr 
     64   1.1       gwr /* XXX: Maybe these should be in the MD files? */
     65  1.11     lukem #ifndef KGDB_DEV
     66  1.11     lukem #define KGDB_DEV NODEV
     67   1.1       gwr #endif
     68  1.11     lukem #ifndef KGDB_DEVRATE
     69  1.11     lukem #define KGDB_DEVRATE 19200
     70   1.1       gwr #endif
     71   1.1       gwr 
     72  1.23    cegger dev_t kgdb_dev = KGDB_DEV;	/* remote debugging device (NODEV if none) */
     73  1.11     lukem int kgdb_rate = KGDB_DEVRATE;	/* remote debugging baud rate */
     74   1.1       gwr int kgdb_active = 0;		/* remote debugging active if != 0 */
     75   1.1       gwr int kgdb_debug_init = 0;	/* != 0 waits for remote at system init */
     76   1.1       gwr int kgdb_debug_panic = 0;	/* != 0 waits for remote on panic */
     77   1.1       gwr label_t *kgdb_recover = 0;
     78   1.1       gwr 
     79  1.17  junyoung static int (*kgdb_getc)(void *);
     80  1.17  junyoung static void (*kgdb_putc)(void *, int);
     81   1.1       gwr static void *kgdb_ioarg;
     82   1.1       gwr 
     83  1.12       dbj /* KGDB_BUFLEN must be at least (2*KGDB_NUMREGS*sizeof(kgdb_reg_t)+1) */
     84   1.1       gwr static u_char buffer[KGDB_BUFLEN];
     85   1.1       gwr static kgdb_reg_t gdb_regs[KGDB_NUMREGS];
     86   1.1       gwr 
     87   1.1       gwr #define GETC()	((*kgdb_getc)(kgdb_ioarg))
     88   1.1       gwr #define PUTC(c)	((*kgdb_putc)(kgdb_ioarg, c))
     89   1.1       gwr 
     90   1.1       gwr /*
     91   1.7     jeffs  * db_trap_callback can be hooked by MD port code to handle special
     92   1.7     jeffs  * cases such as disabling hardware watchdogs while in kgdb.  Name
     93   1.7     jeffs  * is shared with DDB.
     94   1.7     jeffs  */
     95   1.7     jeffs void (*db_trap_callback)(int);
     96   1.7     jeffs 
     97  1.24    dyoung void kgdb_voidop(void);
     98  1.24    dyoung 
     99  1.24    dyoung __weak_alias(kgdb_entry_notice, kgdb_voidop);
    100  1.24    dyoung 
    101  1.24    dyoung void
    102  1.24    dyoung kgdb_voidop(void)
    103  1.24    dyoung {
    104  1.24    dyoung 	return;
    105  1.24    dyoung }
    106  1.24    dyoung 
    107   1.7     jeffs /*
    108   1.1       gwr  * This little routine exists simply so that bcopy() can be debugged.
    109   1.1       gwr  */
    110   1.1       gwr static void
    111  1.22   thorpej kgdb_copy(void *vsrc, void *vdst, int len)
    112   1.1       gwr {
    113   1.1       gwr 	char *src = vsrc;
    114   1.1       gwr 	char *dst = vdst;
    115   1.1       gwr 
    116   1.1       gwr 	while (--len >= 0)
    117   1.1       gwr 		*dst++ = *src++;
    118   1.1       gwr }
    119   1.1       gwr 
    120   1.1       gwr #if 0
    121   1.1       gwr /* ditto for bzero */
    122   1.1       gwr static void
    123  1.22   thorpej kgdb_zero(void *vptr, int len)
    124   1.1       gwr {
    125   1.1       gwr 	char *ptr = vptr;
    126   1.1       gwr 
    127   1.1       gwr 	while (--len >= 0)
    128   1.1       gwr 		*ptr++ = (char) 0;
    129   1.1       gwr }
    130   1.1       gwr #endif
    131   1.1       gwr 
    132   1.1       gwr /*
    133   1.1       gwr  * Convert a hex digit into an integer.
    134   1.1       gwr  * This returns -1 if the argument passed is no
    135   1.1       gwr  * valid hex digit.
    136   1.1       gwr  */
    137   1.1       gwr static int
    138  1.22   thorpej digit2i(u_char c)
    139   1.1       gwr {
    140   1.1       gwr 	if (c >= '0' && c <= '9')
    141   1.6    scottr 		return (c - '0');
    142   1.1       gwr 	else if (c >= 'a' && c <= 'f')
    143  1.19     perry 		return (c - 'a' + 10);
    144   1.1       gwr 	else if (c >= 'A' && c <= 'F')
    145   1.1       gwr 
    146  1.19     perry 		return (c - 'A' + 10);
    147   1.1       gwr 	else
    148   1.6    scottr 		return (-1);
    149   1.1       gwr }
    150   1.1       gwr 
    151   1.1       gwr /*
    152   1.1       gwr  * Convert the low 4 bits of an integer into
    153   1.1       gwr  * an hex digit.
    154   1.1       gwr  */
    155   1.1       gwr static u_char
    156  1.22   thorpej i2digit(int n)
    157   1.1       gwr {
    158  1.20  christos 	return (hexdigits[n & 0x0f]);
    159   1.1       gwr }
    160   1.1       gwr 
    161   1.1       gwr /*
    162   1.1       gwr  * Convert a byte array into an hex string.
    163   1.1       gwr  */
    164   1.1       gwr static void
    165  1.22   thorpej mem2hex(void *vdst, void *vsrc, int len)
    166   1.1       gwr {
    167   1.1       gwr 	u_char *dst = vdst;
    168   1.1       gwr 	u_char *src = vsrc;
    169   1.1       gwr 
    170   1.1       gwr 	while (len--) {
    171   1.1       gwr 		*dst++ = i2digit(*src >> 4);
    172   1.1       gwr 		*dst++ = i2digit(*src++);
    173   1.1       gwr 	}
    174   1.1       gwr 	*dst = '\0';
    175   1.1       gwr }
    176   1.1       gwr 
    177   1.1       gwr /*
    178   1.1       gwr  * Convert an hex string into a byte array.
    179   1.1       gwr  * This returns a pointer to the character following
    180   1.1       gwr  * the last valid hex digit. If the string ends in
    181   1.1       gwr  * the middle of a byte, NULL is returned.
    182   1.1       gwr  */
    183   1.1       gwr static u_char *
    184  1.22   thorpej hex2mem(void *vdst, u_char *src, int maxlen)
    185   1.1       gwr {
    186   1.1       gwr 	u_char *dst = vdst;
    187   1.1       gwr 	int msb, lsb;
    188   1.1       gwr 
    189   1.1       gwr 	while (*src && maxlen--) {
    190   1.1       gwr 		msb = digit2i(*src++);
    191   1.1       gwr 		if (msb < 0)
    192   1.6    scottr 			return (src - 1);
    193   1.1       gwr 		lsb = digit2i(*src++);
    194   1.1       gwr 		if (lsb < 0)
    195   1.6    scottr 			return (NULL);
    196   1.1       gwr 		*dst++ = (msb << 4) | lsb;
    197   1.1       gwr 	}
    198   1.6    scottr 	return (src);
    199   1.1       gwr }
    200   1.1       gwr 
    201   1.1       gwr /*
    202   1.1       gwr  * Convert an hex string into an integer.
    203   1.1       gwr  * This returns a pointer to the character following
    204   1.1       gwr  * the last valid hex digit.
    205  1.19     perry  */
    206   1.5       eeh static vaddr_t
    207  1.22   thorpej hex2i(u_char **srcp)
    208   1.1       gwr {
    209   1.1       gwr 	char *src = *srcp;
    210   1.5       eeh 	vaddr_t r = 0;
    211   1.1       gwr 	int nibble;
    212   1.1       gwr 
    213   1.1       gwr 	while ((nibble = digit2i(*src)) >= 0) {
    214   1.1       gwr 		r *= 16;
    215   1.1       gwr 		r += nibble;
    216   1.1       gwr 		src++;
    217   1.1       gwr 	}
    218   1.1       gwr 	*srcp = src;
    219   1.6    scottr 	return (r);
    220   1.1       gwr }
    221   1.1       gwr 
    222   1.1       gwr /*
    223   1.1       gwr  * Send a packet.
    224   1.1       gwr  */
    225   1.1       gwr static void
    226  1.22   thorpej kgdb_send(const u_char *bp)
    227   1.1       gwr {
    228  1.21  christos 	const u_char *p;
    229   1.1       gwr 	u_char csum, c;
    230   1.1       gwr 
    231  1.13   thorpej 	DPRINTF(("kgdb_send: %s\n", bp));
    232   1.1       gwr 	do {
    233   1.1       gwr 		p = bp;
    234   1.1       gwr 		PUTC(KGDB_START);
    235   1.1       gwr 		for (csum = 0; (c = *p); p++) {
    236   1.1       gwr 			PUTC(c);
    237   1.1       gwr 			csum += c;
    238   1.1       gwr 		}
    239   1.1       gwr 		PUTC(KGDB_END);
    240   1.1       gwr 		PUTC(i2digit(csum >> 4));
    241   1.1       gwr 		PUTC(i2digit(csum));
    242   1.1       gwr 	} while ((c = GETC() & 0x7f) == KGDB_BADP);
    243   1.1       gwr }
    244   1.1       gwr 
    245   1.1       gwr /*
    246   1.1       gwr  * Receive a packet.
    247   1.1       gwr  */
    248   1.1       gwr static int
    249  1.22   thorpej kgdb_recv(u_char *bp, int maxlen)
    250   1.1       gwr {
    251   1.1       gwr 	u_char *p;
    252  1.13   thorpej 	int c, csum, tmpcsum;
    253   1.1       gwr 	int len;
    254   1.1       gwr 
    255  1.13   thorpej 	DPRINTF(("kgdb_recv:  "));
    256   1.1       gwr 	do {
    257   1.1       gwr 		p = bp;
    258   1.1       gwr 		csum = len = 0;
    259   1.1       gwr 		while ((c = GETC()) != KGDB_START)
    260  1.13   thorpej 			DPRINTF(("%c",c));
    261  1.13   thorpej 		DPRINTF(("%c Start ",c));
    262   1.1       gwr 
    263   1.1       gwr 		while ((c = GETC()) != KGDB_END && len < maxlen) {
    264  1.13   thorpej 			DPRINTF(("%c",c));
    265   1.1       gwr 			c &= 0x7f;
    266   1.1       gwr 			csum += c;
    267   1.1       gwr 			*p++ = c;
    268   1.1       gwr 			len++;
    269   1.1       gwr 		}
    270   1.1       gwr 		csum &= 0xff;
    271   1.1       gwr 		*p = '\0';
    272  1.13   thorpej 		DPRINTF(("%c End ", c));
    273   1.1       gwr 
    274   1.1       gwr 		if (len >= maxlen) {
    275  1.13   thorpej 			DPRINTF(("Long- "));
    276   1.1       gwr 			PUTC(KGDB_BADP);
    277   1.1       gwr 			continue;
    278   1.1       gwr 		}
    279  1.13   thorpej 		tmpcsum = csum;
    280   1.1       gwr 
    281  1.13   thorpej 		c = GETC();
    282  1.13   thorpej 		DPRINTF(("%c",c));
    283  1.13   thorpej 		csum -= digit2i(c) * 16;
    284  1.13   thorpej 		c = GETC();
    285  1.13   thorpej 		DPRINTF(("%c",c));
    286  1.13   thorpej 		csum -= digit2i(c);
    287   1.1       gwr 
    288   1.1       gwr 		if (csum == 0) {
    289  1.13   thorpej 			DPRINTF(("Good+ "));
    290   1.1       gwr 			PUTC(KGDB_GOODP);
    291   1.1       gwr 			/* Sequence present? */
    292   1.1       gwr 			if (bp[2] == ':') {
    293  1.13   thorpej 				DPRINTF(("Seq %c%c ", bp[0], bp[1]));
    294   1.1       gwr 				PUTC(bp[0]);
    295   1.1       gwr 				PUTC(bp[1]);
    296   1.1       gwr 				len -= 3;
    297   1.1       gwr 				kgdb_copy(bp + 3, bp, len);
    298   1.1       gwr 			}
    299   1.1       gwr 			break;
    300   1.1       gwr 		}
    301  1.13   thorpej 		DPRINTF((" Bad(wanted %x, off by %d)- ", tmpcsum, csum));
    302   1.1       gwr 		PUTC(KGDB_BADP);
    303   1.1       gwr 	} while (1);
    304  1.13   thorpej 	DPRINTF(("kgdb_recv: %s\n", bp));
    305   1.6    scottr 	return (len);
    306   1.1       gwr }
    307   1.1       gwr 
    308   1.1       gwr /*
    309   1.6    scottr  * This is called by the appropriate tty driver.
    310   1.1       gwr  */
    311   1.1       gwr void
    312  1.22   thorpej kgdb_attach(int (*getfn)(void *), void (*putfn)(void *, int), void *ioarg)
    313   1.1       gwr {
    314   1.1       gwr 	kgdb_getc = getfn;
    315   1.1       gwr 	kgdb_putc = putfn;
    316   1.1       gwr 	kgdb_ioarg = ioarg;
    317   1.1       gwr }
    318   1.1       gwr 
    319   1.1       gwr /*
    320   1.6    scottr  * This function does all command processing for interfacing to
    321   1.1       gwr  * a remote gdb.  Note that the error codes are ignored by gdb
    322   1.1       gwr  * at present, but might eventually become meaningful. (XXX)
    323   1.1       gwr  * It might makes sense to use POSIX errno values, because
    324   1.1       gwr  * that is what the gdb/remote.c functions want to return.
    325   1.1       gwr  */
    326   1.1       gwr int
    327  1.22   thorpej kgdb_trap(int type, db_regs_t *regs)
    328   1.1       gwr {
    329   1.1       gwr 	label_t jmpbuf;
    330   1.5       eeh 	vaddr_t addr;
    331   1.1       gwr 	size_t len;
    332   1.1       gwr 	u_char *p;
    333   1.1       gwr 
    334  1.24    dyoung 	kgdb_entry_notice(type, regs);
    335  1.24    dyoung 
    336  1.23    cegger 	if (kgdb_dev == NODEV || kgdb_getc == NULL) {
    337   1.1       gwr 		/* not debugging */
    338   1.1       gwr 		return (0);
    339   1.1       gwr 	}
    340   1.8       wdk 
    341   1.8       wdk 	db_clear_single_step(regs);
    342   1.1       gwr 
    343   1.7     jeffs 	if (db_trap_callback) db_trap_callback(1);
    344   1.7     jeffs 
    345   1.1       gwr 	/* Detect and recover from unexpected traps. */
    346   1.1       gwr 	if (kgdb_recover != 0) {
    347   1.1       gwr 		printf("kgdb: caught trap 0x%x at %p\n",
    348   1.1       gwr 			   type, (void*)PC_REGS(regs));
    349   1.1       gwr 		kgdb_send("E0E"); /* 14==EFAULT */
    350   1.1       gwr 		longjmp(kgdb_recover);
    351   1.1       gwr 	}
    352   1.1       gwr 
    353   1.1       gwr 	/*
    354   1.2       gwr 	 * The first entry to this function is normally through
    355   1.2       gwr 	 * a breakpoint trap in kgdb_connect(), in which case we
    356   1.2       gwr 	 * must advance past the breakpoint because gdb will not.
    357   1.2       gwr 	 *
    358   1.2       gwr 	 * Machines vary as to where they leave the PC after a
    359   1.2       gwr 	 * breakpoint trap.  Those that leave the PC set to the
    360   1.2       gwr 	 * address of the trap instruction (i.e. pc532) will not
    361   1.2       gwr 	 * define FIXUP_PC_AFTER_BREAK(), and therefore will just
    362   1.2       gwr 	 * advance the PC.  On machines that leave the PC set to
    363   1.2       gwr 	 * the instruction after the trap, FIXUP_PC_AFTER_BREAK
    364   1.2       gwr 	 * will be defined to back-up the PC, so that after the
    365   1.2       gwr 	 * "first-time" part of the if statement below has run,
    366   1.2       gwr 	 * the PC will be the same as it was on entry.
    367   1.2       gwr 	 *
    368   1.1       gwr 	 * On the first entry here, we expect that gdb is not yet
    369   1.1       gwr 	 * listening to us, so just enter the interaction loop.
    370   1.2       gwr 	 * After the debugger is "active" (connected) it will be
    371   1.1       gwr 	 * waiting for a "signaled" message from us.
    372   1.1       gwr 	 */
    373   1.1       gwr 	if (kgdb_active == 0) {
    374   1.1       gwr 		if (!IS_BREAKPOINT_TRAP(type, 0)) {
    375   1.1       gwr 			/* No debugger active -- let trap handle this. */
    376   1.7     jeffs 			if (db_trap_callback) db_trap_callback(0);
    377   1.1       gwr 			return (0);
    378   1.1       gwr 		}
    379   1.2       gwr 		/* Make the PC point at the breakpoint... */
    380   1.2       gwr #ifdef	FIXUP_PC_AFTER_BREAK
    381   1.2       gwr 		FIXUP_PC_AFTER_BREAK(regs);
    382   1.2       gwr #endif
    383   1.2       gwr 		/* ... and then advance past it. */
    384   1.4        pk #ifdef	PC_ADVANCE
    385   1.4        pk 		PC_ADVANCE(regs);
    386   1.4        pk #else
    387   1.2       gwr 		PC_REGS(regs) += BKPT_SIZE;
    388   1.4        pk #endif
    389   1.1       gwr 		kgdb_active = 1;
    390   1.1       gwr 	} else {
    391   1.9       wiz 		/* Tell remote host that an exception has occurred. */
    392  1.18    itojun 		snprintf(buffer, sizeof(buffer), "S%02x", kgdb_signal(type));
    393   1.1       gwr 		kgdb_send(buffer);
    394   1.1       gwr 	}
    395   1.1       gwr 
    396   1.1       gwr 	/* Stick frame regs into our reg cache. */
    397   1.1       gwr 	kgdb_getregs(regs, gdb_regs);
    398   1.1       gwr 
    399   1.1       gwr 	/*
    400   1.1       gwr 	 * Interact with gdb until it lets us go.
    401   1.1       gwr 	 * If we cause a trap, resume here.
    402   1.1       gwr 	 */
    403   1.6    scottr 	(void)setjmp((kgdb_recover = &jmpbuf));
    404   1.1       gwr 	for (;;) {
    405   1.1       gwr 		kgdb_recv(buffer, sizeof(buffer));
    406   1.1       gwr 		switch (buffer[0]) {
    407   1.1       gwr 
    408   1.1       gwr 		default:
    409   1.1       gwr 			/* Unknown command. */
    410   1.1       gwr 			kgdb_send("");
    411   1.1       gwr 			continue;
    412   1.1       gwr 
    413   1.1       gwr 		case KGDB_SIGNAL:
    414   1.1       gwr 			/*
    415   1.1       gwr 			 * if this command came from a running gdb,
    416   1.1       gwr 			 * answer it -- the other guy has no way of
    417   1.1       gwr 			 * knowing if we're in or out of this loop
    418   1.1       gwr 			 * when he issues a "remote-signal".
    419   1.1       gwr 			 */
    420  1.18    itojun 			snprintf(buffer, sizeof(buffer), "S%02x",
    421  1.18    itojun 			    kgdb_signal(type));
    422   1.1       gwr 			kgdb_send(buffer);
    423   1.1       gwr 			continue;
    424   1.1       gwr 
    425   1.1       gwr 		case KGDB_REG_R:
    426   1.1       gwr 			mem2hex(buffer, gdb_regs, sizeof(gdb_regs));
    427   1.1       gwr 			kgdb_send(buffer);
    428   1.1       gwr 			continue;
    429   1.1       gwr 
    430   1.1       gwr 		case KGDB_REG_W:
    431   1.1       gwr 			p = hex2mem(gdb_regs, buffer + 1, sizeof(gdb_regs));
    432   1.1       gwr 			if (p == NULL || *p != '\0')
    433   1.1       gwr 				kgdb_send("E01");
    434   1.1       gwr 			else {
    435   1.1       gwr 				kgdb_setregs(regs, gdb_regs);
    436   1.1       gwr 				kgdb_send("OK");
    437   1.1       gwr 			}
    438   1.1       gwr 			continue;
    439   1.1       gwr 
    440   1.1       gwr 		case KGDB_MEM_R:
    441   1.1       gwr 			p = buffer + 1;
    442   1.1       gwr 			addr = hex2i(&p);
    443   1.1       gwr 			if (*p++ != ',') {
    444   1.1       gwr 				kgdb_send("E02");
    445   1.1       gwr 				continue;
    446   1.1       gwr 			}
    447   1.1       gwr 			len = hex2i(&p);
    448   1.1       gwr 			if (*p != '\0') {
    449   1.1       gwr 				kgdb_send("E03");
    450   1.1       gwr 				continue;
    451   1.1       gwr 			}
    452   1.1       gwr 			if (len > sizeof(buffer) / 2) {
    453   1.1       gwr 				kgdb_send("E04");
    454   1.1       gwr 				continue;
    455   1.1       gwr 			}
    456   1.1       gwr 			if (kgdb_acc(addr, len) == 0) {
    457   1.1       gwr 				kgdb_send("E05");
    458   1.1       gwr 				continue;
    459   1.1       gwr 			}
    460   1.1       gwr 			db_read_bytes(addr, (size_t)len,
    461   1.1       gwr 					(char *)buffer + sizeof(buffer) / 2);
    462   1.1       gwr 			mem2hex(buffer, buffer + sizeof(buffer) / 2, len);
    463   1.1       gwr 			kgdb_send(buffer);
    464   1.1       gwr 			continue;
    465   1.1       gwr 
    466   1.1       gwr 		case KGDB_MEM_W:
    467   1.1       gwr 			p = buffer + 1;
    468   1.1       gwr 			addr = hex2i(&p);
    469   1.1       gwr 			if (*p++ != ',') {
    470   1.1       gwr 				kgdb_send("E06");
    471   1.1       gwr 				continue;
    472   1.1       gwr 			}
    473   1.1       gwr 			len = hex2i(&p);
    474   1.1       gwr 			if (*p++ != ':') {
    475   1.1       gwr 				kgdb_send("E07");
    476   1.1       gwr 				continue;
    477   1.1       gwr 			}
    478   1.1       gwr 			if (len > (sizeof(buffer) - (p - buffer))) {
    479   1.1       gwr 				kgdb_send("E08");
    480   1.1       gwr 				continue;
    481   1.1       gwr 			}
    482   1.1       gwr 			p = hex2mem(buffer, p, sizeof(buffer));
    483   1.1       gwr 			if (p == NULL) {
    484   1.1       gwr 				kgdb_send("E09");
    485   1.1       gwr 				continue;
    486   1.1       gwr 			}
    487   1.1       gwr 			if (kgdb_acc(addr, len) == 0) {
    488   1.1       gwr 				kgdb_send("E0A");
    489   1.1       gwr 				continue;
    490   1.1       gwr 			}
    491   1.1       gwr 			db_write_bytes(addr, (size_t)len, (char *)buffer);
    492   1.1       gwr 			kgdb_send("OK");
    493   1.1       gwr 			continue;
    494   1.1       gwr 
    495  1.12       dbj 		case KGDB_DETACH:
    496   1.1       gwr 		case KGDB_KILL:
    497   1.1       gwr 			kgdb_active = 0;
    498   1.1       gwr 			printf("kgdb detached\n");
    499   1.1       gwr 			db_clear_single_step(regs);
    500  1.12       dbj 			kgdb_send("OK");
    501   1.1       gwr 			goto out;
    502   1.1       gwr 
    503   1.1       gwr 		case KGDB_CONT:
    504   1.1       gwr 			if (buffer[1]) {
    505   1.1       gwr 				p = buffer + 1;
    506   1.1       gwr 				addr = hex2i(&p);
    507   1.1       gwr 				if (*p) {
    508   1.1       gwr 					kgdb_send("E0B");
    509   1.1       gwr 					continue;
    510   1.1       gwr 				}
    511   1.1       gwr 				PC_REGS(regs) = addr;
    512  1.14       dbj 				DPRINTF(("kgdb: continuing at %08lx\n", addr));
    513  1.13   thorpej 
    514  1.13   thorpej 			} else {
    515  1.13   thorpej 				DPRINTF((
    516  1.13   thorpej 				  "kgdb: continuing at old address %08lx\n",
    517  1.14       dbj 				  (vaddr_t)PC_REGS(regs)));
    518   1.1       gwr 			}
    519  1.13   thorpej 
    520   1.1       gwr 			db_clear_single_step(regs);
    521   1.1       gwr 			goto out;
    522   1.1       gwr 
    523   1.1       gwr 		case KGDB_STEP:
    524   1.1       gwr 			if (buffer[1]) {
    525   1.1       gwr 				p = buffer + 1;
    526   1.1       gwr 				addr = hex2i(&p);
    527   1.1       gwr 				if (*p) {
    528   1.1       gwr 					kgdb_send("E0B");
    529   1.1       gwr 					continue;
    530   1.1       gwr 				}
    531   1.1       gwr 				PC_REGS(regs) = addr;
    532   1.1       gwr 			}
    533   1.1       gwr 			db_set_single_step(regs);
    534   1.1       gwr 			goto out;
    535   1.1       gwr 		}
    536   1.1       gwr 	}
    537   1.1       gwr  out:
    538   1.7     jeffs 	if (db_trap_callback) db_trap_callback(0);
    539   1.1       gwr 	kgdb_recover = 0;
    540   1.1       gwr 	return (1);
    541   1.1       gwr }
    542  1.24    dyoung 
    543  1.24    dyoung int
    544  1.24    dyoung kgdb_disconnected(void)
    545  1.24    dyoung {
    546  1.24    dyoung 	return 1;
    547  1.24    dyoung }
    548