blob: c354200d5834c94ff6207ce63b2c14f3b7f7b656 [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
11#ifndef __X86_EMULATE_H__
12#define __X86_EMULATE_H__
13
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.
57 * Used for instruction fetch, stack operations, and others.
58 * @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,
Laurent Viviercebff022007-07-30 13:35:24 +030063 unsigned int bytes, struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -080064
65 /*
66 * write_std: Write bytes of standard (non-emulated/special) memory.
67 * Used for stack operations, and others.
68 * @addr: [IN ] Linear address to which to write.
69 * @val: [IN ] Value to write to memory (low-order bytes used as
70 * required).
71 * @bytes: [IN ] Number of bytes to write to memory.
72 */
Avi Kivity4c690a12007-04-22 15:28:19 +030073 int (*write_std)(unsigned long addr, const void *val,
Laurent Viviercebff022007-07-30 13:35:24 +030074 unsigned int bytes, struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -080075
76 /*
77 * read_emulated: Read bytes from emulated/special memory area.
78 * @addr: [IN ] Linear address from which to read.
79 * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
80 * @bytes: [IN ] Number of bytes to read from memory.
81 */
82 int (*read_emulated) (unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +030083 void *val,
Avi Kivity6aa8b732006-12-10 02:21:36 -080084 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +030085 struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -080086
87 /*
88 * write_emulated: Read bytes from emulated/special memory area.
89 * @addr: [IN ] Linear address to which to write.
90 * @val: [IN ] Value to write to memory (low-order bytes used as
91 * required).
92 * @bytes: [IN ] Number of bytes to write to memory.
93 */
94 int (*write_emulated) (unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +030095 const void *val,
Avi Kivity6aa8b732006-12-10 02:21:36 -080096 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +030097 struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -080098
99 /*
100 * cmpxchg_emulated: Emulate an atomic (LOCKed) CMPXCHG operation on an
101 * emulated/special memory area.
102 * @addr: [IN ] Linear address to access.
103 * @old: [IN ] Value expected to be current at @addr.
104 * @new: [IN ] Value to write to @addr.
105 * @bytes: [IN ] Number of bytes to access using CMPXCHG.
106 */
107 int (*cmpxchg_emulated) (unsigned long addr,
Avi Kivity4c690a12007-04-22 15:28:19 +0300108 const void *old,
109 const void *new,
Avi Kivity6aa8b732006-12-10 02:21:36 -0800110 unsigned int bytes,
Laurent Viviercebff022007-07-30 13:35:24 +0300111 struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800112
Avi Kivity6aa8b732006-12-10 02:21:36 -0800113};
114
Laurent Viviere4e03de2007-09-18 11:52:50 +0200115/* Type, address-of, and value of an instruction's operand. */
116struct operand {
117 enum { OP_REG, OP_MEM, OP_IMM } type;
118 unsigned int bytes;
119 unsigned long val, orig_val, *ptr;
120};
121
122struct decode_cache {
123 u8 twobyte;
124 u8 b;
125 u8 lock_prefix;
126 u8 rep_prefix;
127 u8 op_bytes;
128 u8 ad_bytes;
129 struct operand src;
130 struct operand dst;
131 unsigned long *override_base;
132 unsigned int d;
133 unsigned long regs[NR_VCPU_REGS];
134 unsigned long eip;
135 /* modrm */
136 u8 modrm;
137 u8 modrm_mod;
138 u8 modrm_reg;
139 u8 modrm_rm;
140 u8 use_modrm_ea;
141 unsigned long modrm_ea;
142 unsigned long modrm_val;
143};
144
Avi Kivity6aa8b732006-12-10 02:21:36 -0800145struct x86_emulate_ctxt {
146 /* Register state before/after emulation. */
147 struct kvm_vcpu *vcpu;
148
149 /* Linear faulting address (if emulating a page-faulting instruction). */
150 unsigned long eflags;
151 unsigned long cr2;
152
153 /* Emulated execution mode, represented by an X86EMUL_MODE value. */
154 int mode;
155
156 unsigned long cs_base;
157 unsigned long ds_base;
158 unsigned long es_base;
159 unsigned long ss_base;
160 unsigned long gs_base;
161 unsigned long fs_base;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200162
163 /* decode cache */
164
165 struct decode_cache decode;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800166};
167
168/* Execution mode, passed to the emulator. */
169#define X86EMUL_MODE_REAL 0 /* Real mode. */
170#define X86EMUL_MODE_PROT16 2 /* 16-bit protected mode. */
171#define X86EMUL_MODE_PROT32 4 /* 32-bit protected mode. */
172#define X86EMUL_MODE_PROT64 8 /* 64-bit (long) mode. */
173
174/* Host execution mode. */
175#if defined(__i386__)
176#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT32
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800177#elif defined(CONFIG_X86_64)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800178#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT64
179#endif
180
181/*
182 * x86_emulate_memop: Emulate an instruction that faulted attempting to
183 * read/write a 'special' memory area.
184 * Returns -1 on failure, 0 on success.
185 */
186int x86_emulate_memop(struct x86_emulate_ctxt *ctxt,
187 struct x86_emulate_ops *ops);
188
Avi Kivity6aa8b732006-12-10 02:21:36 -0800189#endif /* __X86_EMULATE_H__ */