📄 gdb_stub.c
字号:
/*- * Copyright (c) 2005, Kohsuke Ohtani * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the author nor the names of any co-contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. *//**************************************************************************** THIS SOFTWARE IS NOT COPYRIGHTED HP offers the following for use in the public domain. HP makes no warranty with regard to the software or it's performance and the user accepts the software "AS IS" with all faults. HP DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO THIS SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.****************************************************************************//**************************************************************************** * Header: remcom.c,v 1.34 91/03/09 12:29:49 glenne Exp $ * * Module name: remcom.c $ * Revision: 1.34 $ * Date: 91/03/09 12:29:49 $ * Contributor: Lake Stevens Instrument Division$ * * Description: low level support for gdb debugger. $ * * Considerations: only works on target hardware $ * * Written by: Glenn Engel $ * ModuleState: Experimental $ * * NOTES: See Below $ * * Modified for 386 by Jim Kingdon, Cygnus Support. * * To enable debugger support, two things need to happen. One, a * call to set_debug_traps() is necessary in order to allow any breakpoints * or error conditions to be properly intercepted and reported to gdb. * Two, a breakpoint needs to be generated to begin communication. This * is most easily accomplished by a call to breakpoint(). Breakpoint() * simulates a breakpoint by executing a trap #1. * * The external function exceptionHandler() is * used to attach a specific handler to a specific 386 vector number. * It should use the same privilege level it runs at. It should * install it as an interrupt gate so that interrupts are masked * while the handler runs. * * Because gdb will sometimes write to the stack area to execute function * calls, this program cannot rely on using the supervisor stack so it * uses it's own stack area reserved in the int array remcomStack. * ************* * * The following gdb commands are supported: * * command function Return value * * g return the value of the CPU registers hex data or ENN * G set the value of the CPU registers OK or ENN * * mAA..AA,LLLL Read LLLL bytes at address AA..AA hex data or ENN * MAA..AA,LLLL: Write LLLL bytes at address AA.AA OK or ENN * * c Resume at current address SNN ( signal NN) * cAA..AA Continue at address AA..AA SNN * * s Step one instruction SNN * sAA..AA Step one instruction from AA..AA SNN * * k kill * * ? What was the last sigval ? SNN (signal NN) * * All commands and responses are sent with a packet which includes a * checksum. A packet consists of * * $<packet info>#<checksum>. * * where * <packet info> :: <characters representing the command or response> * <checksum> :: < two hex digits computed as modulo 256 sum of <packetinfo>> * * When a packet is received, it is first acknowledged with either '+' or '-'. * '+' indicates a successful transfer. '-' indicates a failed transfer. * * Example: * * Host: Reply: * $m0,10#2a +$00010203040506070809101112131415#42 * ****************************************************************************//* @PREX #include <stdio.h> *//* @PREX #include <string.h> *//************************************************************************//* Prex modified */#include <kernel.h>#ifdef CONFIG_GDB#define printf(fmt, ...)#define fprintf(fmt, ...)#define strcpy(str1, str2) strlcpy(str1, str2, BUFMAX)#undef BREAKPOINT#undef breakpoint/************************************************************************//************************************************************************ * * external low-level support routines *//* @PREX extern void putDebugChar(); */ /* write a single character *//* @PREX extern int getDebugChar(); */ /* read and return a single char *//* @PREX extern void exceptionHandler(); */ /* assign an exception handler */extern int serial_getchar(void);extern void serial_putchar(int);extern int serial_init(void);extern void trap_set(int, void *);#define putDebugChar(ch) serial_set(ch)#define getDebugChar() serial_get()#define exceptionHandler(exec, func) trap_set(exec, func)/************************************************************************//* BUFMAX defines the maximum number of characters in inbound/outbound buffers*//* at least NUMREGBYTES*2 are needed for register packets */#define BUFMAX 400static char initialized; /* boolean flag. != 0 means we've been initialized */int remote_debug;/* debug > 0 prints ill-formed commands in valid packets & checksum errors */static const char hexchars[]="0123456789abcdef";/* Number of registers. */#define NUMREGS 16/* Number of bytes of registers. */#define NUMREGBYTES (NUMREGS * 4)enum regnames {EAX, ECX, EDX, EBX, ESP, EBP, ESI, EDI, PC /* also known as eip */, PS /* also known as eflags */, CS, SS, DS, ES, FS, GS};/* * these should not be static cuz they can be used outside this module */int registers[NUMREGS];#define STACKSIZE 10000int remcomStack[STACKSIZE/sizeof(int)];static int* stackPtr = &remcomStack[STACKSIZE/sizeof(int) - 1];/*************************** ASSEMBLY CODE MACROS *************************//* */extern voidreturn_to_prog ();/* Restore the program's registers (including the stack pointer, which means we get the right stack and don't have to worry about popping our return address and any stack frames and so on) and return. */asm(".text");asm(".globl return_to_prog");asm("return_to_prog:");asm(" movw registers+44, %ss");asm(" movl registers+16, %esp");asm(" movl registers+4, %ecx");asm(" movl registers+8, %edx");asm(" movl registers+12, %ebx");asm(" movl registers+20, %ebp");asm(" movl registers+24, %esi");asm(" movl registers+28, %edi");asm(" movw registers+48, %ds");asm(" movw registers+52, %es");asm(" movw registers+56, %fs");asm(" movw registers+60, %gs");asm(" movl registers+36, %eax");asm(" pushl %eax"); /* saved eflags */asm(" movl registers+40, %eax");asm(" pushl %eax"); /* saved cs */asm(" movl registers+32, %eax");asm(" pushl %eax"); /* saved eip */asm(" movl registers, %eax");/* use iret to restore pc and flags together so that trace flag works right. */asm(" iret");#define BREAKPOINT() asm(" int $3");/* Put the error code here just in case the user cares. */int gdb_i386errcode;/* Likewise, the vector number here (since GDB only gets the signal number through the usual means, and that's not very specific). */int gdb_i386vector = -1;/* GDB stores segment registers in 32-bit words (that's just the way m-i386v.h is written). So zero the appropriate areas in registers. */#define SAVE_REGISTERS1() \ asm ("movl %eax, registers"); \ asm ("movl %ecx, registers+4"); \ asm ("movl %edx, registers+8"); \ asm ("movl %ebx, registers+12"); \ asm ("movl %ebp, registers+20"); \ asm ("movl %esi, registers+24"); \ asm ("movl %edi, registers+28"); \ asm ("movw $0, %ax"); \ asm ("movw %ds, registers+48"); \ asm ("movw %ax, registers+50"); \ asm ("movw %es, registers+52"); \ asm ("movw %ax, registers+54"); \ asm ("movw %fs, registers+56"); \ asm ("movw %ax, registers+58"); \ asm ("movw %gs, registers+60"); \ asm ("movw %ax, registers+62");#define SAVE_ERRCODE() \ asm ("popl %ebx"); \ asm ("movl %ebx, gdb_i386errcode");#define SAVE_REGISTERS2() \ asm ("popl %ebx"); /* old eip */ \ asm ("movl %ebx, registers+32"); \ asm ("popl %ebx"); /* old cs */ \ asm ("movl %ebx, registers+40"); \ asm ("movw %ax, registers+42"); \ asm ("popl %ebx"); /* old eflags */ \ asm ("movl %ebx, registers+36"); \ /* Now that we've done the pops, we can save the stack pointer."); */ \ asm ("movw %ss, registers+44"); \ asm ("movw %ax, registers+46"); \ asm ("movl %esp, registers+16");/* See if mem_fault_routine is set, if so just IRET to that address. */#define CHECK_FAULT() \ asm ("cmpl $0, mem_fault_routine"); \ asm ("jne mem_fault");asm (".text");asm ("mem_fault:");/* OK to clobber temp registers; we're just going to end up in set_mem_err. *//* Pop error code from the stack and save it. */asm (" popl %eax");asm (" movl %eax, gdb_i386errcode");asm (" popl %eax"); /* eip *//* We don't want to return there, we want to return to the function pointed to by mem_fault_routine instead. */asm (" movl mem_fault_routine, %eax");asm (" popl %ecx"); /* cs (low 16 bits; junk in hi 16 bits). */asm (" popl %edx"); /* eflags *//* Remove this stack frame; when we do the iret, we will be going to the start of a function, so we want the stack to look just like it would after a "call" instruction. */asm (" leave");/* Push the stuff that iret wants. */asm (" pushl %edx"); /* eflags */asm (" pushl %ecx"); /* cs */asm (" pushl %eax"); /* eip *//* Zero mem_fault_routine. */asm (" movl $0, %eax");asm (" movl %eax, mem_fault_routine");asm ("iret");#define CALL_HOOK() asm("call _remcomHandler");/* This function is called when a i386 exception occurs. It saves * all the cpu regs in the _registers array, munges the stack a bit, * and invokes an exception handler (remcom_handler). * * stack on entry: stack on exit: * old eflags vector number * old cs (zero-filled to 32 bits) * old eip * */extern void _catchException3();asm(".text");asm(".globl _catchException3");asm("_catchException3:");SAVE_REGISTERS1();SAVE_REGISTERS2();asm ("pushl $3");CALL_HOOK();/* Same thing for exception 1. */extern void _catchException1();asm(".text");asm(".globl _catchException1");asm("_catchException1:");SAVE_REGISTERS1();SAVE_REGISTERS2();asm ("pushl $1");CALL_HOOK();/* Same thing for exception 0. */extern void _catchException0();asm(".text");asm(".globl _catchException0");asm("_catchException0:");SAVE_REGISTERS1();SAVE_REGISTERS2();asm ("pushl $0");CALL_HOOK();/* Same thing for exception 4. */extern void _catchException4();asm(".text");asm(".globl _catchException4");asm("_catchException4:");SAVE_REGISTERS1();SAVE_REGISTERS2();asm ("pushl $4");CALL_HOOK();/* Same thing for exception 5. */extern void _catchException5();asm(".text");asm(".globl _catchException5");asm("_catchException5:");SAVE_REGISTERS1();SAVE_REGISTERS2();asm ("pushl $5");CALL_HOOK();/* Same thing for exception 6. */extern void _catchException6();asm(".text");asm(".globl _catchException6");asm("_catchException6:");SAVE_REGISTERS1();SAVE_REGISTERS2();asm ("pushl $6");CALL_HOOK();/* Same thing for exception 7. */extern void _catchException7();asm(".text");asm(".globl _catchException7");asm("_catchException7:");SAVE_REGISTERS1();SAVE_REGISTERS2();asm ("pushl $7");CALL_HOOK();/* Same thing for exception 8. */extern void _catchException8();asm(".text");asm(".globl _catchException8");asm("_catchException8:");SAVE_REGISTERS1();SAVE_ERRCODE();SAVE_REGISTERS2();asm ("pushl $8");CALL_HOOK();/* Same thing for exception 9. */extern void _catchException9();asm(".text");asm(".globl _catchException9");asm("_catchException9:");SAVE_REGISTERS1();SAVE_REGISTERS2();asm ("pushl $9");CALL_HOOK();/* Same thing for exception 10. */extern void _catchException10();asm(".text");asm(".globl _catchException10");asm("_catchException10:");SAVE_REGISTERS1();SAVE_ERRCODE();SAVE_REGISTERS2();asm ("pushl $10");CALL_HOOK();/* Same thing for exception 12. */extern void _catchException12();asm(".text");asm(".globl _catchException12");asm("_catchException12:");SAVE_REGISTERS1();SAVE_ERRCODE();SAVE_REGISTERS2();asm ("pushl $12");CALL_HOOK();/* Same thing for exception 16. */extern void _catchException16();asm(".text");asm(".globl _catchException16");asm("_catchException16:");SAVE_REGISTERS1();SAVE_REGISTERS2();asm ("pushl $16");CALL_HOOK();/* For 13, 11, and 14 we have to deal with the CHECK_FAULT stuff. *//* Same thing for exception 13. */extern void _catchException13 ();asm (".text");asm (".globl _catchException13");asm ("_catchException13:");CHECK_FAULT();SAVE_REGISTERS1();SAVE_ERRCODE();SAVE_REGISTERS2();asm ("pushl $13");CALL_HOOK();/* Same thing for exception 11. */extern void _catchException11 ();asm (".text");asm (".globl _catchException11");asm ("_catchException11:");CHECK_FAULT();SAVE_REGISTERS1();SAVE_ERRCODE();SAVE_REGISTERS2();asm ("pushl $11");CALL_HOOK();/* Same thing for exception 14. */extern void _catchException14 ();asm (".text");asm (".globl _catchException14");asm ("_catchException14:");CHECK_FAULT();SAVE_REGISTERS1();SAVE_ERRCODE();SAVE_REGISTERS2();asm ("pushl $14");CALL_HOOK();/* * remcomHandler is a front end for handle_exception. It moves the * stack pointer into an area reserved for debugger use. */asm("_remcomHandler:");asm(" popl %eax"); /* pop off return address */asm(" popl %eax"); /* get the exception number */asm(" movl stackPtr, %esp"); /* move to remcom stack area */asm(" pushl %eax"); /* push exception onto stack */asm(" call handle_exception"); /* this never returns */void_returnFromException (){ return_to_prog ();}inthex (ch) char ch;{ if ((ch >= 'a') && (ch <= 'f')) return (ch - 'a' + 10); if ((ch >= '0') && (ch <= '9')) return (ch - '0'); if ((ch >= 'A') && (ch <= 'F')) return (ch - 'A' + 10); return (-1);}static char remcomInBuffer[BUFMAX];static char remcomOutBuffer[BUFMAX];/* scan for the sequence $<data>#<checksum> */unsigned char *getpacket (void){
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -