From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L26vI-0003WQ-4Q for qemu-devel@nongnu.org; Mon, 17 Nov 2008 11:26:00 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L26v8-0003RF-VX for qemu-devel@nongnu.org; Mon, 17 Nov 2008 11:25:54 -0500 Received: from [199.232.76.173] (port=49643 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L26v8-0003R7-SH for qemu-devel@nongnu.org; Mon, 17 Nov 2008 11:25:50 -0500 Received: from gecko.sbs.de ([194.138.37.40]:16722) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1L26v7-00047i-Uz for qemu-devel@nongnu.org; Mon, 17 Nov 2008 11:25:50 -0500 Received: from mail2.sbs.de (localhost [127.0.0.1]) by gecko.sbs.de (8.12.11.20060308/8.12.11) with ESMTP id mAHGPkYp020315 for ; Mon, 17 Nov 2008 17:25:46 +0100 Received: from [139.25.109.167] (mchn012c.mchp.siemens.de [139.25.109.167] (may be forged)) by mail2.sbs.de (8.12.11.20060308/8.12.11) with ESMTP id mAHGPjQn000760 for ; Mon, 17 Nov 2008 17:25:45 +0100 Resent-To: qemu-devel@nongnu.org Resent-Message-Id: <49219ADE.2040504@siemens.com> From: Jan Kiszka Date: Mon, 17 Nov 2008 17:18:59 +0100 Message-ID: <20081117161859.26880.26254.stgit@mchn012c.ww002.siemens.net> In-Reply-To: <20081117161857.26880.45423.stgit@mchn012c.ww002.siemens.net> References: <20081117161857.26880.45423.stgit@mchn012c.ww002.siemens.net> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH v5 17/18] gdbstub: x86: Support for setting segment registers Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This allows to set segment registers via gdb also in system emulation mode. Basic sanity checks are applied and nothing is changed if they fail. But screwing up the target via this interface will never be complicated, so I avoided being too paranoid here. Signed-off-by: Jan Kiszka --- gdbstub.c | 60 ++++++++++++++++++++++++++++++++++------------- target-i386/cpu.h | 14 +++++++++++ target-i386/op_helper.c | 14 ----------- 3 files changed, 57 insertions(+), 31 deletions(-) diff --git a/gdbstub.c b/gdbstub.c index fd4d5db..c83b76a 100644 --- a/gdbstub.c +++ b/gdbstub.c @@ -358,6 +358,43 @@ static int cpu_gdb_read_register(CPUState *env, uint8_t *mem_buf, int n) return 0; } +static int cpu_x86_gdb_load_seg(CPUState *env, int sreg, uint8_t *mem_buf) +{ + uint16_t selector = ldl_p(mem_buf); + + if (selector != env->segs[sreg].selector) { +#if defined(CONFIG_USER_ONLY) + cpu_x86_load_seg(env, sreg, selector); +#else + SegmentCache *dt; + target_ulong ptr; + uint32_t e1, e2; + int index; + + if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) { + cpu_x86_load_seg_cache(env, sreg, selector, selector << 4, + 0xffff, 0); + } else { + if (selector & 0x4) + dt = &env->ldt; + else + dt = &env->gdt; + index = selector & ~7; + ptr = dt->base + index; + if ((index + 7) <= dt->limit && + cpu_memory_rw_debug(env, ptr, (uint8_t *)&e1, + sizeof(e1), 0) == 0 && + cpu_memory_rw_debug(env, ptr + 4, (uint8_t *)&e2, + sizeof(e2), 0) == 0) + cpu_x86_load_seg_cache(env, sreg, selector, + get_seg_base(e1, e2), + get_seg_limit(e1, e2), e2); + } +#endif + } + return 4; +} + static int cpu_gdb_write_register(CPUState *env, uint8_t *mem_buf, int n) { uint32_t tmp; @@ -385,23 +422,12 @@ static int cpu_gdb_write_register(CPUState *env, uint8_t *mem_buf, int n) env->eflags = ldl_p(mem_buf); return 4; -#if defined(CONFIG_USER_ONLY) -#define LOAD_SEG(index, sreg)\ - tmp = ldl_p(mem_buf);\ - if (tmp != env->segs[sreg].selector)\ - cpu_x86_load_seg(env, sreg, tmp);\ - return 4 -#else -/* FIXME: Honor segment registers. Needs to avoid raising an exception - when the selector is invalid. */ -#define LOAD_SEG(index, sreg) return 4 -#endif - case IDX_SEG_REGS: LOAD_SEG(10, R_CS); - case IDX_SEG_REGS + 1: LOAD_SEG(11, R_SS); - case IDX_SEG_REGS + 2: LOAD_SEG(12, R_DS); - case IDX_SEG_REGS + 3: LOAD_SEG(13, R_ES); - case IDX_SEG_REGS + 4: LOAD_SEG(14, R_FS); - case IDX_SEG_REGS + 5: LOAD_SEG(15, R_GS); + case IDX_SEG_REGS: return cpu_x86_gdb_load_seg(env, R_CS, mem_buf); + case IDX_SEG_REGS + 1: return cpu_x86_gdb_load_seg(env, R_SS, mem_buf); + case IDX_SEG_REGS + 2: return cpu_x86_gdb_load_seg(env, R_DS, mem_buf); + case IDX_SEG_REGS + 3: return cpu_x86_gdb_load_seg(env, R_ES, mem_buf); + case IDX_SEG_REGS + 4: return cpu_x86_gdb_load_seg(env, R_FS, mem_buf); + case IDX_SEG_REGS + 5: return cpu_x86_gdb_load_seg(env, R_GS, mem_buf); case IDX_FP_REGS + 8: env->fpuc = ldl_p(mem_buf); diff --git a/target-i386/cpu.h b/target-i386/cpu.h index eed1f62..b7c8a2f 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -651,6 +651,20 @@ int cpu_get_pic_interrupt(CPUX86State *s); /* MSDOS compatibility mode FPU exception support */ void cpu_set_ferr(CPUX86State *s); +static inline unsigned int get_seg_limit(uint32_t e1, uint32_t e2) +{ + unsigned int limit; + limit = (e1 & 0xffff) | (e2 & 0x000f0000); + if (e2 & DESC_G_MASK) + limit = (limit << 12) | 0xfff; + return limit; +} + +static inline uint32_t get_seg_base(uint32_t e1, uint32_t e2) +{ + return ((e1 >> 16) | ((e2 & 0xff) << 16) | (e2 & 0xff000000)); +} + /* this function must always be used to load data in the segment cache: it synchronizes the hflags with the segment cache values */ static inline void cpu_x86_load_seg_cache(CPUX86State *env, diff --git a/target-i386/op_helper.c b/target-i386/op_helper.c index 6dc0802..091dc97 100644 --- a/target-i386/op_helper.c +++ b/target-i386/op_helper.c @@ -143,20 +143,6 @@ static inline int load_segment(uint32_t *e1_ptr, uint32_t *e2_ptr, return 0; } -static inline unsigned int get_seg_limit(uint32_t e1, uint32_t e2) -{ - unsigned int limit; - limit = (e1 & 0xffff) | (e2 & 0x000f0000); - if (e2 & DESC_G_MASK) - limit = (limit << 12) | 0xfff; - return limit; -} - -static inline uint32_t get_seg_base(uint32_t e1, uint32_t e2) -{ - return ((e1 >> 16) | ((e2 & 0xff) << 16) | (e2 & 0xff000000)); -} - static inline void load_seg_cache_raw_dt(SegmentCache *sc, uint32_t e1, uint32_t e2) { sc->base = get_seg_base(e1, e2);