blob: b36c6b3fe1444ae7398a235e4f523edb30de627f [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
18/*
19 * x86_emulate_ops:
20 *
21 * These operations represent the instruction emulator's interface to memory.
22 * There are two categories of operation: those that act on ordinary memory
23 * regions (*_std), and those that act on memory regions known to require
24 * special treatment or emulation (*_emulated).
25 *
26 * The emulator assumes that an instruction accesses only one 'emulated memory'
27 * location, that this location is the given linear faulting address (cr2), and
28 * that this is one of the instruction's data operands. Instruction fetches and
29 * stack operations are assumed never to access emulated memory. The emulator
30 * automatically deduces which operand of a string-move operation is accessing
31 * emulated memory, and assumes that the other operand accesses normal memory.
32 *
33 * NOTES:
34 * 1. The emulator isn't very smart about emulated vs. standard memory.
35 * 'Emulated memory' access addresses should be checked for sanity.
36 * 'Normal memory' accesses may fault, and the caller must arrange to
37 * detect and handle reentrancy into the emulator via recursive faults.
38 * Accesses may be unaligned and may cross page boundaries.
39 * 2. If the access fails (cannot emulate, or a standard access faults) then
40 * it is up to the memop to propagate the fault to the guest VM via
41 * some out-of-band mechanism, unknown to the emulator. The memop signals
42 * failure by returning X86EMUL_PROPAGATE_FAULT to the emulator, which will
43 * then immediately bail.
44 * 3. Valid access sizes are 1, 2, 4 and 8 bytes. On x86/32 systems only
45 * cmpxchg8b_emulated need support 8-byte accesses.
46 * 4. The emulator cannot handle 64-bit mode emulation on an x86/32 system.
47 */
48/* Access completed successfully: continue emulation as normal. */
49#define X86EMUL_CONTINUE 0
50/* Access is unhandleable: bail from emulation and return error to caller. */
51#define X86EMUL_UNHANDLEABLE 1
52/* Terminate emulation but return success to the caller. */
53#define X86EMUL_PROPAGATE_FAULT 2 /* propagate a generated fault to guest */
Gleb Natapove6800802010-04-28 19:15:33 +030054#define X86EMUL_RETRY_INSTR 3 /* retry the instruction for some reason */
55#define X86EMUL_CMPXCHG_FAILED 4 /* cmpxchg did not see expected value */
Gleb Natapovc3cd7ff2010-04-28 19:15:35 +030056#define X86EMUL_IO_NEEDED 5 /* IO is needed to complete emulation */
Gleb Natapove6800802010-04-28 19:15:33 +030057
Avi Kivity6aa8b732006-12-10 02:21:36 -080058struct x86_emulate_ops {
59 /*
60 * read_std: Read bytes of standard (non-emulated/special) memory.
Gleb Natapov1871c602010-02-10 14:21:32 +020061 * Used for descriptor reading.
Avi Kivity6aa8b732006-12-10 02:21:36 -080062 * @addr: [IN ] Linear address from which to read.
63 * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
64 * @bytes: [IN ] Number of bytes to read from memory.
65 */
Avi Kivity4c690a12007-04-22 15:28:19 +030066 int (*read_std)(unsigned long addr, void *val,
Gleb Natapov1871c602010-02-10 14:21:32 +020067 unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);
68
69 /*
Gleb Natapov2dafc6c2010-03-18 15:20:16 +020070 * write_std: Write bytes of standard (non-emulated/special) memory.
71 * Used for descriptor writing.
72 * @addr: [IN ] Linear address to which to write.
73 * @val: [OUT] Value write to memory, zero-extended to 'u_long'.
74 * @bytes: [IN ] Number of bytes to write to memory.
75 */
76 int (*write_std)(unsigned long addr, void *val,
77 unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);
78 /*
Gleb Natapov1871c602010-02-10 14:21:32 +020079 * fetch: Read bytes of standard (non-emulated/special) memory.
80 * Used for instruction fetch.
81 * @addr: [IN ] Linear address from which to read.
82 * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
83 * @bytes: [IN ] Number of bytes to read from memory.
84 */
85 int (*fetch)(unsigned long addr, void *val,
86 unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);
Avi Kivity6aa8b732006-12-10 02:21:36 -080087
88 /*
Avi Kivity6aa8b732006-12-10 02:21:36 -080089 * read_emulated: Read bytes from emulated/special memory area.
90 * @addr: [IN ] Linear address from which to read.
91 * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
92 * @bytes: [IN ] Number of bytes to read from memory.
93 */
Joe Perches0c7825e2008-03-23 01:02:35 -070094 int (*read_emulated)(unsigned long addr,
95 void *val,
96 unsigned int bytes,
Gleb Natapov8fe681e2010-04-28 19:15:37 +030097 unsigned int *error,
Joe Perches0c7825e2008-03-23 01:02:35 -070098 struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -080099
100 /*
Takuya Yoshikawa0d178972010-01-06 17:55:23 +0900101 * write_emulated: Write bytes to emulated/special memory area.
Avi Kivity6aa8b732006-12-10 02:21:36 -0800102 * @addr: [IN ] Linear address to which to write.
103 * @val: [IN ] Value to write to memory (low-order bytes used as
104 * required).
105 * @bytes: [IN ] Number of bytes to write to memory.
106 */
Joe Perches0c7825e2008-03-23 01:02:35 -0700107 int (*write_emulated)(unsigned long addr,
108 const void *val,
109 unsigned int bytes,
Gleb Natapov8fe681e2010-04-28 19:15:37 +0300110 unsigned int *error,
Joe Perches0c7825e2008-03-23 01:02:35 -0700111 struct kvm_vcpu *vcpu);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800112
113 /*
114 * cmpxchg_emulated: Emulate an atomic (LOCKed) CMPXCHG operation on an
115 * emulated/special memory area.
116 * @addr: [IN ] Linear address to access.
117 * @old: [IN ] Value expected to be current at @addr.
118 * @new: [IN ] Value to write to @addr.
119 * @bytes: [IN ] Number of bytes to access using CMPXCHG.
120 */
Joe Perches0c7825e2008-03-23 01:02:35 -0700121 int (*cmpxchg_emulated)(unsigned long addr,
122 const void *old,
123 const void *new,
124 unsigned int bytes,
Gleb Natapov8fe681e2010-04-28 19:15:37 +0300125 unsigned int *error,
Joe Perches0c7825e2008-03-23 01:02:35 -0700126 struct kvm_vcpu *vcpu);
Gleb Natapovcf8f70b2010-03-18 15:20:23 +0200127
128 int (*pio_in_emulated)(int size, unsigned short port, void *val,
129 unsigned int count, struct kvm_vcpu *vcpu);
130
131 int (*pio_out_emulated)(int size, unsigned short port, const void *val,
132 unsigned int count, struct kvm_vcpu *vcpu);
133
Gleb Natapov2dafc6c2010-03-18 15:20:16 +0200134 bool (*get_cached_descriptor)(struct desc_struct *desc,
135 int seg, struct kvm_vcpu *vcpu);
136 void (*set_cached_descriptor)(struct desc_struct *desc,
137 int seg, struct kvm_vcpu *vcpu);
138 u16 (*get_segment_selector)(int seg, struct kvm_vcpu *vcpu);
139 void (*set_segment_selector)(u16 sel, int seg, struct kvm_vcpu *vcpu);
Gleb Natapov5951c442010-04-28 19:15:29 +0300140 unsigned long (*get_cached_segment_base)(int seg, struct kvm_vcpu *vcpu);
Gleb Natapov2dafc6c2010-03-18 15:20:16 +0200141 void (*get_gdt)(struct desc_ptr *dt, struct kvm_vcpu *vcpu);
Mohammed Gamal160ce1f2010-08-04 05:44:24 +0300142 void (*get_idt)(struct desc_ptr *dt, struct kvm_vcpu *vcpu);
Gleb Natapov52a46612010-03-18 15:20:03 +0200143 ulong (*get_cr)(int cr, struct kvm_vcpu *vcpu);
Gleb Natapov0f122442010-04-28 19:15:31 +0300144 int (*set_cr)(int cr, ulong val, struct kvm_vcpu *vcpu);
Gleb Natapov9c537242010-03-18 15:20:05 +0200145 int (*cpl)(struct kvm_vcpu *vcpu);
Gleb Natapov35aa5372010-04-28 19:15:27 +0300146 int (*get_dr)(int dr, unsigned long *dest, struct kvm_vcpu *vcpu);
147 int (*set_dr)(int dr, unsigned long value, struct kvm_vcpu *vcpu);
Gleb Natapov3fb1b5d2010-04-28 19:15:28 +0300148 int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
149 int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata);
Avi Kivity6aa8b732006-12-10 02:21:36 -0800150};
151
Laurent Viviere4e03de2007-09-18 11:52:50 +0200152/* Type, address-of, and value of an instruction's operand. */
153struct operand {
Laurent Viviera01af5e2007-09-24 11:10:56 +0200154 enum { OP_REG, OP_MEM, OP_IMM, OP_NONE } type;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200155 unsigned int bytes;
Avi Kivity16518d52010-08-26 14:31:30 +0300156 union {
157 unsigned long orig_val;
158 u64 orig_val64;
159 };
Avi Kivity1a6440aef2010-08-01 12:35:10 +0300160 union {
161 unsigned long *reg;
162 unsigned long mem;
163 } addr;
Gleb Natapov414e6272010-04-28 19:15:26 +0300164 union {
165 unsigned long val;
Avi Kivity16518d52010-08-26 14:31:30 +0300166 u64 val64;
Gleb Natapov414e6272010-04-28 19:15:26 +0300167 char valptr[sizeof(unsigned long) + 2];
168 };
Laurent Viviere4e03de2007-09-18 11:52:50 +0200169};
170
Avi Kivity62266862007-11-20 13:15:52 +0200171struct fetch_cache {
172 u8 data[15];
173 unsigned long start;
174 unsigned long end;
175};
176
Gleb Natapov7b262e92010-03-18 15:20:27 +0200177struct read_cache {
178 u8 data[1024];
179 unsigned long pos;
180 unsigned long end;
181};
182
Laurent Viviere4e03de2007-09-18 11:52:50 +0200183struct decode_cache {
184 u8 twobyte;
185 u8 b;
186 u8 lock_prefix;
187 u8 rep_prefix;
188 u8 op_bytes;
189 u8 ad_bytes;
Avi Kivity33615aa2007-10-31 11:15:56 +0200190 u8 rex_prefix;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200191 struct operand src;
Guillaume Thouvenin0dc8d102008-12-04 14:26:42 +0100192 struct operand src2;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200193 struct operand dst;
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300194 bool has_seg_override;
195 u8 seg_override;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200196 unsigned int d;
Avi Kivityef65c882010-07-29 15:11:51 +0300197 int (*execute)(struct x86_emulate_ctxt *ctxt);
Laurent Viviere4e03de2007-09-18 11:52:50 +0200198 unsigned long regs[NR_VCPU_REGS];
Gleb Natapov063db062010-03-18 15:20:06 +0200199 unsigned long eip;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200200 /* modrm */
201 u8 modrm;
202 u8 modrm_mod;
203 u8 modrm_reg;
204 u8 modrm_rm;
Avi Kivity09ee57c2010-08-01 12:07:29 +0300205 u8 modrm_seg;
Avi Kivityf5b4edc2008-06-15 22:09:11 -0700206 bool rip_relative;
Avi Kivity62266862007-11-20 13:15:52 +0200207 struct fetch_cache fetch;
Gleb Natapov7b262e92010-03-18 15:20:27 +0200208 struct read_cache io_read;
Gleb Natapov9de41572010-04-28 19:15:22 +0300209 struct read_cache mem_read;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200210};
211
Avi Kivity6aa8b732006-12-10 02:21:36 -0800212struct x86_emulate_ctxt {
Avi Kivity9aabc88f2010-07-29 15:11:50 +0300213 struct x86_emulate_ops *ops;
214
Avi Kivity6aa8b732006-12-10 02:21:36 -0800215 /* Register state before/after emulation. */
216 struct kvm_vcpu *vcpu;
217
Avi Kivity6aa8b732006-12-10 02:21:36 -0800218 unsigned long eflags;
Gleb Natapov063db062010-03-18 15:20:06 +0200219 unsigned long eip; /* eip before instruction emulation */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800220 /* Emulated execution mode, represented by an X86EMUL_MODE value. */
221 int mode;
Avi Kivity7a5b56d2008-06-22 16:22:51 +0300222 u32 cs_base;
Laurent Viviere4e03de2007-09-18 11:52:50 +0200223
Glauber Costa310b5d32009-05-12 16:21:06 -0400224 /* interruptibility state, as a result of execution of STI or MOV SS */
225 int interruptibility;
226
Gleb Natapov4fc40f02010-08-02 12:47:51 +0300227 bool perm_ok; /* do not check permissions if true */
Gleb Natapov54b84862010-04-28 19:15:44 +0300228
229 int exception; /* exception that happens during emulation or -1 */
230 u32 error_code; /* error code for exception */
231 bool error_code_valid;
Gleb Natapov54b84862010-04-28 19:15:44 +0300232
Laurent Viviere4e03de2007-09-18 11:52:50 +0200233 /* decode cache */
Laurent Viviere4e03de2007-09-18 11:52:50 +0200234 struct decode_cache decode;
Avi Kivity6aa8b732006-12-10 02:21:36 -0800235};
236
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100237/* Repeat String Operation Prefix */
Sheng Yangd73fa292008-10-14 15:59:10 +0800238#define REPE_PREFIX 1
239#define REPNE_PREFIX 2
Guillaume Thouvenin90e0a282007-11-22 11:32:09 +0100240
Avi Kivity6aa8b732006-12-10 02:21:36 -0800241/* Execution mode, passed to the emulator. */
242#define X86EMUL_MODE_REAL 0 /* Real mode. */
Gleb Natapova0044752010-02-10 14:21:31 +0200243#define X86EMUL_MODE_VM86 1 /* Virtual 8086 mode. */
Avi Kivity6aa8b732006-12-10 02:21:36 -0800244#define X86EMUL_MODE_PROT16 2 /* 16-bit protected mode. */
245#define X86EMUL_MODE_PROT32 4 /* 32-bit protected mode. */
246#define X86EMUL_MODE_PROT64 8 /* 64-bit (long) mode. */
247
248/* Host execution mode. */
Sheng Yangd73fa292008-10-14 15:59:10 +0800249#if defined(CONFIG_X86_32)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800250#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT32
Avi Kivity05b3e0c2006-12-13 00:33:45 -0800251#elif defined(CONFIG_X86_64)
Avi Kivity6aa8b732006-12-10 02:21:36 -0800252#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT64
253#endif
254
Avi Kivity9aabc88f2010-07-29 15:11:50 +0300255int x86_decode_insn(struct x86_emulate_ctxt *ctxt);
Gleb Natapovd2ddd1c2010-08-25 12:47:43 +0300256#define EMULATION_FAILED -1
257#define EMULATION_OK 0
258#define EMULATION_RESTART 1
Avi Kivity9aabc88f2010-07-29 15:11:50 +0300259int x86_emulate_insn(struct x86_emulate_ctxt *ctxt);
Gleb Natapov38ba30b2010-03-18 15:20:17 +0200260int emulator_task_switch(struct x86_emulate_ctxt *ctxt,
Jan Kiszkae269fb22010-04-14 15:51:09 +0200261 u16 tss_selector, int reason,
262 bool has_error_code, u32 error_code);
Mohammed Gamal4ab8e022010-09-19 14:34:05 +0200263int emulate_int_real(struct x86_emulate_ctxt *ctxt,
264 struct x86_emulate_ops *ops, int irq);
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700265#endif /* _ASM_X86_KVM_X86_EMULATE_H */