blob: 7a6f54fa13ba426d4cca30862cc38e5e8e4a53cc [file] [log] [blame]
Avi Kivity6aa8b732006-12-10 02:21:36 -08001/******************************************************************************
2 * x86_emulate.h
3 *
4 * Generic x86 (32-bit and 64-bit) instruction decoder and emulator.
5 *
6 * Copyright (c) 2005 Keir Fraser
7 *
8 * From: xen-unstable 10676:af9809f51f81a3c43f276f00c81a52ef558afda4
9 */
10
H. Peter Anvin1965aae2008-10-22 22:26:29 -070011#ifndef _ASM_X86_KVM_X86_EMULATE_H
12#define _ASM_X86_KVM_X86_EMULATE_H
Avi Kivity6aa8b732006-12-10 02:21:36 -080013
14struct x86_emulate_ctxt;
15
16/*
17 * x86_emulate_ops:
18 *
19 * These operations represent the instruction emulator's interface to memory.
20 * There are two categories of operation: those that act on ordinary memory
21 * regions (*_std), and those that act on memory regions known to require
22 * special treatment or emulation (*_emulated).
23 *
24 * The emulator assumes that an instruction accesses only one 'emulated memory'
25 * location, that this location is the given linear faulting address (cr2), and
26 * that this is one of the instruction's data operands. Instruction fetches and
27 * stack operations are assumed never to access emulated memory. The emulator
28 * automatically deduces which operand of a string-move operation is accessing
29 * emulated memory, and assumes that the other operand accesses normal memory.
30 *
31 * NOTES:
32 * 1. The emulator isn't very smart about emulated vs. standard memory.
33 * 'Emulated memory' access addresses should be checked for sanity.
34 * 'Normal memory' accesses may fault, and the caller must arrange to
35 * detect and handle reentrancy into the emulator via recursive faults.
36 * Accesses may be unaligned and may cross page boundaries.
37 * 2. If the access fails (cannot emulate, or a standard access faults) then
38 * it is up to the memop to propagate the fault to the guest VM via
39 * some out-of-band mechanism, unknown to the emulator. The memop signals
40 * failure by returning X86EMUL_PROPAGATE_FAULT to the emulator, which will
41 * then immediately bail.
42 * 3. Valid access sizes are 1, 2, 4 and 8 bytes. On x86/32 systems only
43 * cmpxchg8b_emulated need support 8-byte accesses.
44 * 4. The emulator cannot handle 64-bit mode emulation on an x86/32 system.
45 */
46/* Access completed successfully: continue emulation as normal. */
47#define X86EMUL_CONTINUE 0
48/* Access is unhandleable: bail from emulation and return error to caller. */
49#define X86EMUL_UNHANDLEABLE 1
50/* Terminate emulation but return success to the caller. */
51#define X86EMUL_PROPAGATE_FAULT 2 /* propagate a generated fault to guest */
52#define X86EMUL_RETRY_INSTR 2 /* retry the instruction for some reason */
53#define X86EMUL_CMPXCHG_FAILED 2 /* cmpxchg did not see expected value */
54struct x86_emulate_ops {
55 /*
56 * read_std: Read bytes of standard (non-emulated/special) memory.
Gleb Natapov1871c602010-02-10 14:21:32 +020057 * Used for descriptor reading.
Avi Kivity6aa8b732006-12-10 02:21:36 -080058 * @addr: [IN ] Linear address from which to read.
59 * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
60 * @bytes: [IN ] Number of bytes to read from memory.
61 */
Avi Kivity4c690a12007-04-22 15:28:19 +030062 int (*read_std)(unsigned long addr, void *val,
Gleb Natapov1871c602010-02-10 14:21:32 +020063 unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);
64
65 /*
66 * fetch: Read bytes of standard (non-emulated/special) memory.
67 * Used for instruction fetch.
68 * @addr: [IN ] Linear address from which to read.
69 * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
70 * @bytes: [IN ] Number of bytes to read from memory.
71 */
72 int (*fetch)(unsigned long addr, void *val,
73 unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);
Avi Kivity6aa8b732006-12-10 02:21:36 -080074
75 /*
Avi Kivity6aa8b732006-12-10 02:21:36 -080076 * read_emulated: Read bytes from emulated/special memory area.
77 * @addr: [IN ] Linear address from which to read.
78 * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
79 * @bytes: [IN ] Number of bytes to read from memory.
80 */
Joe Perches0c7825e2008-03-23 01:02:35 -070081 int (*read_emulated)(unsigned long addr,
82 void *val,
83 unsigned int bytes,
84 struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -080085
86 /*
Takuya Yoshikawa0d178972010-01-06 17:55:23 +090087 * write_emulated: Write bytes to emulated/special memory area.
Avi Kivity6aa8b732006-12-10 02:21:36 -080088 * @addr: [IN ] Linear address to which to write.
89 * @val: [IN ] Value to write to memory (low-order bytes used as
90 * required).
91 * @bytes: [IN ] Number of bytes to write to memory.
92 */
Joe Perches0c7825e2008-03-23 01:02:35 -070093 int (*write_emulated)(unsigned long addr,
94 const void *val,
95 unsigned int bytes,
96 struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -080097
98 /*
99 * cmpxchg_emulated: Emulate an atomic (LOCKed) CMPXCHG operation on an
100 * emulated/special memory area.
101 * @addr: [IN ] Linear address to access.
102 * @old: [IN ] Value expected to be current at @addr.
103 * @new: [IN ] Value to write to @addr.
104 * @bytes: [IN ] Number of bytes to access using CMPXCHG.
105 */
Joe Perches0c7825e2008-03-23 01:02:35 -0700106 int (*cmpxchg_emulated)(unsigned long addr,
107 const void *old,
108 const void *new,
109 unsigned int bytes,
110 struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800111
Avi Kivity6aa8b732006-12-10 02:21:36 -0800112};
113
Laurent Viviere4e03de2007-09-18 11:52:50 +0200114/* Type, address-of, and value of an instruction's operand. */
115struct operand {
Laurent Viviera01af5e2007-09-24 11:10:56 +0200116 enum { OP_REG, OP_MEM, OP_IMM, OP_NONE } type;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200117 unsigned int bytes;
118 unsigned long val, orig_val, *ptr;
119};
120
Avi Kivity62266862007-11-20 13:15:52 +0200121struct fetch_cache {
122 u8 data[15];
123 unsigned long start;
124 unsigned long end;
125};
126
Laurent Viviere4e03de2007-09-18 11:52:50 +0200127struct decode_cache {
128 u8 twobyte;
129 u8 b;
130 u8 lock_prefix;
131 u8 rep_prefix;
132 u8 op_bytes;
133 u8 ad_bytes;
Avi Kivity33615aa2007-10-31 11:15:56 +0200134 u8 rex_prefix;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200135 struct operand src;
Guillaume Thouvenin0dc8d102008-12-04 14:26:42 +0100136 struct operand src2;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200137 struct operand dst;
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300138 bool has_seg_override;
139 u8 seg_override;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200140 unsigned int d;
141 unsigned long regs[NR_VCPU_REGS];
Avi Kivityeb3c79e2009-11-24 15:20:15 +0200142 unsigned long eip, eip_orig;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200143 /* modrm */
144 u8 modrm;
145 u8 modrm_mod;
146 u8 modrm_reg;
147 u8 modrm_rm;
148 u8 use_modrm_ea;
Avi Kivityf5b4edc2008-06-15 22:09:11 -0700149 bool rip_relative;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200150 unsigned long modrm_ea;
Avi Kivity107d6d22008-05-05 14:58:26 +0300151 void *modrm_ptr;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200152 unsigned long modrm_val;
Avi Kivity62266862007-11-20 13:15:52 +0200153 struct fetch_cache fetch;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200154};
155
Glauber Costa2809f5d2009-05-12 16:21:05 -0400156#define X86_SHADOW_INT_MOV_SS 1
157#define X86_SHADOW_INT_STI 2
158
Avi Kivity6aa8b732006-12-10 02:21:36 -0800159struct x86_emulate_ctxt {
160 /* Register state before/after emulation. */
161 struct kvm_vcpu *vcpu;
162
Avi Kivity6aa8b732006-12-10 02:21:36 -0800163 unsigned long eflags;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800164 /* Emulated execution mode, represented by an X86EMUL_MODE value. */
165 int mode;
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300166 u32 cs_base;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200167
Glauber Costa310b5d32009-05-12 16:21:06 -0400168 /* interruptibility state, as a result of execution of STI or MOV SS */
169 int interruptibility;
170
Laurent Viviere4e03de2007-09-18 11:52:50 +0200171 /* decode cache */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200172 struct decode_cache decode;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800173};
174
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100175/* Repeat String Operation Prefix */
Sheng Yangd73fa292008-10-14 15:59:10 +0800176#define REPE_PREFIX 1
177#define REPNE_PREFIX 2
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100178
Avi Kivity6aa8b732006-12-10 02:21:36 -0800179/* Execution mode, passed to the emulator. */
180#define X86EMUL_MODE_REAL 0 /* Real mode. */
Gleb Natapova0044752010-02-10 14:21:31 +0200181#define X86EMUL_MODE_VM86 1 /* Virtual 8086 mode. */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800182#define X86EMUL_MODE_PROT16 2 /* 16-bit protected mode. */
183#define X86EMUL_MODE_PROT32 4 /* 32-bit protected mode. */
184#define X86EMUL_MODE_PROT64 8 /* 64-bit (long) mode. */
185
186/* Host execution mode. */
Sheng Yangd73fa292008-10-14 15:59:10 +0800187#if defined(CONFIG_X86_32)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800188#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT32
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800189#elif defined(CONFIG_X86_64)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800190#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT64
191#endif
192
Laurent Vivier1be3aa42007-09-18 11:27:27 +0200193int x86_decode_insn(struct x86_emulate_ctxt *ctxt,
194 struct x86_emulate_ops *ops);
195int x86_emulate_insn(struct x86_emulate_ctxt *ctxt,
196 struct x86_emulate_ops *ops);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800197
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700198#endif /* _ASM_X86_KVM_X86_EMULATE_H */