blob: 48693f0d38424217f35de70f734e33205cced957 [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
Gleb Natapov38ba30b2010-03-18 15:20:17 +020014#include <asm/desc_defs.h>
15
Avi Kivity6aa8b732006-12-10 02:21:36 -080016struct x86_emulate_ctxt;
17
Avi Kivityda9cb572010-11-22 17:53:21 +020018struct x86_exception {
19 u8 vector;
20 bool error_code_valid;
21 u16 error_code;
Avi Kivity6389ee92010-11-29 16:12:30 +020022 bool nested_page_fault;
23 u64 address; /* cr2 or nested page fault gpa */
Avi Kivityda9cb572010-11-22 17:53:21 +020024};
25
Avi Kivity6aa8b732006-12-10 02:21:36 -080026/*
27 * x86_emulate_ops:
28 *
29 * These operations represent the instruction emulator's interface to memory.
30 * There are two categories of operation: those that act on ordinary memory
31 * regions (*_std), and those that act on memory regions known to require
32 * special treatment or emulation (*_emulated).
33 *
34 * The emulator assumes that an instruction accesses only one 'emulated memory'
35 * location, that this location is the given linear faulting address (cr2), and
36 * that this is one of the instruction's data operands. Instruction fetches and
37 * stack operations are assumed never to access emulated memory. The emulator
38 * automatically deduces which operand of a string-move operation is accessing
39 * emulated memory, and assumes that the other operand accesses normal memory.
40 *
41 * NOTES:
42 * 1. The emulator isn't very smart about emulated vs. standard memory.
43 * 'Emulated memory' access addresses should be checked for sanity.
44 * 'Normal memory' accesses may fault, and the caller must arrange to
45 * detect and handle reentrancy into the emulator via recursive faults.
46 * Accesses may be unaligned and may cross page boundaries.
47 * 2. If the access fails (cannot emulate, or a standard access faults) then
48 * it is up to the memop to propagate the fault to the guest VM via
49 * some out-of-band mechanism, unknown to the emulator. The memop signals
50 * failure by returning X86EMUL_PROPAGATE_FAULT to the emulator, which will
51 * then immediately bail.
52 * 3. Valid access sizes are 1, 2, 4 and 8 bytes. On x86/32 systems only
53 * cmpxchg8b_emulated need support 8-byte accesses.
54 * 4. The emulator cannot handle 64-bit mode emulation on an x86/32 system.
55 */
56/* Access completed successfully: continue emulation as normal. */
57#define X86EMUL_CONTINUE 0
58/* Access is unhandleable: bail from emulation and return error to caller. */
59#define X86EMUL_UNHANDLEABLE 1
60/* Terminate emulation but return success to the caller. */
61#define X86EMUL_PROPAGATE_FAULT 2 /* propagate a generated fault to guest */
Gleb Natapove6800802010-04-28 19:15:33 +030062#define X86EMUL_RETRY_INSTR 3 /* retry the instruction for some reason */
63#define X86EMUL_CMPXCHG_FAILED 4 /* cmpxchg did not see expected value */
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +030064#define X86EMUL_IO_NEEDED 5 /* IO is needed to complete emulation */
Gleb Natapove6800802010-04-28 19:15:33 +030065
Avi Kivity6aa8b732006-12-10 02:21:36 -080066struct x86_emulate_ops {
67 /*
68 * read_std: Read bytes of standard (non-emulated/special) memory.
Gleb Natapov1871c602010-02-10 14:21:32 +020069 * Used for descriptor reading.
Avi Kivity6aa8b732006-12-10 02:21:36 -080070 * @addr: [IN ] Linear address from which to read.
71 * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
72 * @bytes: [IN ] Number of bytes to read from memory.
73 */
Avi Kivity4c690a12007-04-22 15:28:19 +030074 int (*read_std)(unsigned long addr, void *val,
Avi Kivitybcc55cb2010-11-22 17:53:22 +020075 unsigned int bytes, struct kvm_vcpu *vcpu,
76 struct x86_exception *fault);
Gleb Natapov1871c602010-02-10 14:21:32 +020077
78 /*
Gleb Natapov2dafc6c2010-03-18 15:20:16 +020079 * write_std: Write bytes of standard (non-emulated/special) memory.
80 * Used for descriptor writing.
81 * @addr: [IN ] Linear address to which to write.
82 * @val: [OUT] Value write to memory, zero-extended to 'u_long'.
83 * @bytes: [IN ] Number of bytes to write to memory.
84 */
85 int (*write_std)(unsigned long addr, void *val,
Avi Kivitybcc55cb2010-11-22 17:53:22 +020086 unsigned int bytes, struct kvm_vcpu *vcpu,
87 struct x86_exception *fault);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +020088 /*
Gleb Natapov1871c602010-02-10 14:21:32 +020089 * fetch: Read bytes of standard (non-emulated/special) memory.
90 * Used for instruction fetch.
91 * @addr: [IN ] Linear address from which to read.
92 * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
93 * @bytes: [IN ] Number of bytes to read from memory.
94 */
95 int (*fetch)(unsigned long addr, void *val,
Avi Kivitybcc55cb2010-11-22 17:53:22 +020096 unsigned int bytes, struct kvm_vcpu *vcpu,
97 struct x86_exception *fault);
Avi Kivity6aa8b732006-12-10 02:21:36 -080098
99 /*
Avi Kivity6aa8b732006-12-10 02:21:36 -0800100 * read_emulated: Read bytes from emulated/special memory area.
101 * @addr: [IN ] Linear address from which to read.
102 * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
103 * @bytes: [IN ] Number of bytes to read from memory.
104 */
Joe Perches0c7825e2008-03-23 01:02:35 -0700105 int (*read_emulated)(unsigned long addr,
106 void *val,
107 unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +0200108 struct x86_exception *fault,
Joe Perches0c7825e2008-03-23 01:02:35 -0700109 struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800110
111 /*
Takuya Yoshikawa0d178972010-01-06 17:55:23 +0900112 * write_emulated: Write bytes to emulated/special memory area.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800113 * @addr: [IN ] Linear address to which to write.
114 * @val: [IN ] Value to write to memory (low-order bytes used as
115 * required).
116 * @bytes: [IN ] Number of bytes to write to memory.
117 */
Joe Perches0c7825e2008-03-23 01:02:35 -0700118 int (*write_emulated)(unsigned long addr,
119 const void *val,
120 unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +0200121 struct x86_exception *fault,
Joe Perches0c7825e2008-03-23 01:02:35 -0700122 struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800123
124 /*
125 * cmpxchg_emulated: Emulate an atomic (LOCKed) CMPXCHG operation on an
126 * emulated/special memory area.
127 * @addr: [IN ] Linear address to access.
128 * @old: [IN ] Value expected to be current at @addr.
129 * @new: [IN ] Value to write to @addr.
130 * @bytes: [IN ] Number of bytes to access using CMPXCHG.
131 */
Joe Perches0c7825e2008-03-23 01:02:35 -0700132 int (*cmpxchg_emulated)(unsigned long addr,
133 const void *old,
134 const void *new,
135 unsigned int bytes,
Avi Kivitybcc55cb2010-11-22 17:53:22 +0200136 struct x86_exception *fault,
Joe Perches0c7825e2008-03-23 01:02:35 -0700137 struct kvm_vcpu *vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +0200138
139 int (*pio_in_emulated)(int size, unsigned short port, void *val,
140 unsigned int count, struct kvm_vcpu *vcpu);
141
142 int (*pio_out_emulated)(int size, unsigned short port, const void *val,
143 unsigned int count, struct kvm_vcpu *vcpu);
144
Gleb Natapov5601d052011-03-07 14:55:06 +0200145 bool (*get_cached_descriptor)(struct desc_struct *desc, u32 *base3,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +0200146 int seg, struct kvm_vcpu *vcpu);
Gleb Natapov5601d052011-03-07 14:55:06 +0200147 void (*set_cached_descriptor)(struct desc_struct *desc, u32 base3,
Gleb Natapov2dafc6c2010-03-18 15:20:16 +0200148 int seg, struct kvm_vcpu *vcpu);
149 u16 (*get_segment_selector)(int seg, struct kvm_vcpu *vcpu);
150 void (*set_segment_selector)(u16 sel, int seg, struct kvm_vcpu *vcpu);
Gleb Natapov5951c442010-04-28 19:15:29 +0300151 unsigned long (*get_cached_segment_base)(int seg, struct kvm_vcpu *vcpu);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +0200152 void (*get_gdt)(struct desc_ptr *dt, struct kvm_vcpu *vcpu);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +0300153 void (*get_idt)(struct desc_ptr *dt, struct kvm_vcpu *vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +0200154 ulong (*get_cr)(int cr, struct kvm_vcpu *vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300155 int (*set_cr)(int cr, ulong val, struct kvm_vcpu *vcpu);
Gleb Natapov9c537242010-03-18 15:20:05 +0200156 int (*cpl)(struct kvm_vcpu *vcpu);
Gleb Natapov35aa5372010-04-28 19:15:27 +0300157 int (*get_dr)(int dr, unsigned long *dest, struct kvm_vcpu *vcpu);
158 int (*set_dr)(int dr, unsigned long value, struct kvm_vcpu *vcpu);
Gleb Natapov3fb1b5d2010-04-28 19:15:28 +0300159 int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
160 int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata);
Avi Kivity5037f6f2011-03-28 16:53:59 +0200161 void (*get_fpu)(struct x86_emulate_ctxt *ctxt); /* disables preempt */
162 void (*put_fpu)(struct x86_emulate_ctxt *ctxt); /* reenables preempt */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800163};
164
Avi Kivity12537912011-03-29 11:41:27 +0200165typedef u32 __attribute__((vector_size(16))) sse128_t;
166
Laurent Viviere4e03de2007-09-18 11:52:50 +0200167/* Type, address-of, and value of an instruction's operand. */
168struct operand {
Avi Kivity12537912011-03-29 11:41:27 +0200169 enum { OP_REG, OP_MEM, OP_IMM, OP_XMM, OP_NONE } type;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200170 unsigned int bytes;
Avi Kivity16518d52010-08-26 14:31:30 +0300171 union {
172 unsigned long orig_val;
173 u64 orig_val64;
174 };
Avi Kivity1a6440aef2010-08-01 12:35:10 +0300175 union {
176 unsigned long *reg;
Avi Kivity90de84f2010-11-17 15:28:21 +0200177 struct segmented_address {
178 ulong ea;
179 unsigned seg;
180 } mem;
Avi Kivity12537912011-03-29 11:41:27 +0200181 unsigned xmm;
Avi Kivity1a6440aef2010-08-01 12:35:10 +0300182 } addr;
Gleb Natapov414e6272010-04-28 19:15:26 +0300183 union {
184 unsigned long val;
Avi Kivity16518d52010-08-26 14:31:30 +0300185 u64 val64;
Gleb Natapov414e6272010-04-28 19:15:26 +0300186 char valptr[sizeof(unsigned long) + 2];
Avi Kivity12537912011-03-29 11:41:27 +0200187 sse128_t vec_val;
Gleb Natapov414e6272010-04-28 19:15:26 +0300188 };
Laurent Viviere4e03de2007-09-18 11:52:50 +0200189};
190
Avi Kivity62266862007-11-20 13:15:52 +0200191struct fetch_cache {
192 u8 data[15];
193 unsigned long start;
194 unsigned long end;
195};
196
Gleb Natapov7b262e92010-03-18 15:20:27 +0200197struct read_cache {
198 u8 data[1024];
199 unsigned long pos;
200 unsigned long end;
201};
202
Laurent Viviere4e03de2007-09-18 11:52:50 +0200203struct decode_cache {
204 u8 twobyte;
205 u8 b;
206 u8 lock_prefix;
207 u8 rep_prefix;
208 u8 op_bytes;
209 u8 ad_bytes;
Avi Kivity33615aa2007-10-31 11:15:56 +0200210 u8 rex_prefix;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200211 struct operand src;
Guillaume Thouvenin0dc8d102008-12-04 14:26:42 +0100212 struct operand src2;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200213 struct operand dst;
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300214 bool has_seg_override;
215 u8 seg_override;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200216 unsigned int d;
Avi Kivityef65c882010-07-29 15:11:51 +0300217 int (*execute)(struct x86_emulate_ctxt *ctxt);
Laurent Viviere4e03de2007-09-18 11:52:50 +0200218 unsigned long regs[NR_VCPU_REGS];
Gleb Natapov063db062010-03-18 15:20:06 +0200219 unsigned long eip;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200220 /* modrm */
221 u8 modrm;
222 u8 modrm_mod;
223 u8 modrm_reg;
224 u8 modrm_rm;
Avi Kivity09ee57c2010-08-01 12:07:29 +0300225 u8 modrm_seg;
Avi Kivityf5b4edc2008-06-15 22:09:11 -0700226 bool rip_relative;
Avi Kivity62266862007-11-20 13:15:52 +0200227 struct fetch_cache fetch;
Gleb Natapov7b262e92010-03-18 15:20:27 +0200228 struct read_cache io_read;
Gleb Natapov9de41572010-04-28 19:15:22 +0300229 struct read_cache mem_read;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200230};
231
Avi Kivity6aa8b732006-12-10 02:21:36 -0800232struct x86_emulate_ctxt {
Avi Kivity9aabc88f2010-07-29 15:11:50 +0300233 struct x86_emulate_ops *ops;
234
Avi Kivity6aa8b732006-12-10 02:21:36 -0800235 /* Register state before/after emulation. */
236 struct kvm_vcpu *vcpu;
237
Avi Kivity6aa8b732006-12-10 02:21:36 -0800238 unsigned long eflags;
Gleb Natapov063db062010-03-18 15:20:06 +0200239 unsigned long eip; /* eip before instruction emulation */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800240 /* Emulated execution mode, represented by an X86EMUL_MODE value. */
241 int mode;
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300242 u32 cs_base;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200243
Glauber Costa310b5d32009-05-12 16:21:06 -0400244 /* interruptibility state, as a result of execution of STI or MOV SS */
245 int interruptibility;
246
Gleb Natapov4fc40f02010-08-02 12:47:51 +0300247 bool perm_ok; /* do not check permissions if true */
Avi Kivityd8671622011-02-01 16:32:03 +0200248 bool only_vendor_specific_insn;
Gleb Natapov54b84862010-04-28 19:15:44 +0300249
Avi Kivityda9cb572010-11-22 17:53:21 +0200250 bool have_exception;
251 struct x86_exception exception;
Gleb Natapov54b84862010-04-28 19:15:44 +0300252
Laurent Viviere4e03de2007-09-18 11:52:50 +0200253 /* decode cache */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200254 struct decode_cache decode;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800255};
256
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100257/* Repeat String Operation Prefix */
Avi Kivity1d6b1142010-01-20 16:00:35 +0200258#define REPE_PREFIX 0xf3
259#define REPNE_PREFIX 0xf2
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100260
Avi Kivity6aa8b732006-12-10 02:21:36 -0800261/* Execution mode, passed to the emulator. */
262#define X86EMUL_MODE_REAL 0 /* Real mode. */
Gleb Natapova0044752010-02-10 14:21:31 +0200263#define X86EMUL_MODE_VM86 1 /* Virtual 8086 mode. */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800264#define X86EMUL_MODE_PROT16 2 /* 16-bit protected mode. */
265#define X86EMUL_MODE_PROT32 4 /* 32-bit protected mode. */
266#define X86EMUL_MODE_PROT64 8 /* 64-bit (long) mode. */
267
268/* Host execution mode. */
Sheng Yangd73fa292008-10-14 15:59:10 +0800269#if defined(CONFIG_X86_32)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800270#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT32
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800271#elif defined(CONFIG_X86_64)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800272#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT64
273#endif
274
Andre Przywaradc25e892010-12-21 11:12:07 +0100275int x86_decode_insn(struct x86_emulate_ctxt *ctxt, void *insn, int insn_len);
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +0300276#define EMULATION_FAILED -1
277#define EMULATION_OK 0
278#define EMULATION_RESTART 1
Avi Kivity9aabc88f2010-07-29 15:11:50 +0300279int x86_emulate_insn(struct x86_emulate_ctxt *ctxt);
Gleb Natapov38ba30b2010-03-18 15:20:17 +0200280int emulator_task_switch(struct x86_emulate_ctxt *ctxt,
Jan Kiszkae269fb22010-04-14 15:51:09 +0200281 u16 tss_selector, int reason,
282 bool has_error_code, u32 error_code);
Mohammed Gamal4ab8e022010-09-19 14:34:05 +0200283int emulate_int_real(struct x86_emulate_ctxt *ctxt,
284 struct x86_emulate_ops *ops, int irq);
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700285#endif /* _ASM_X86_KVM_X86_EMULATE_H */