kvm_emulate.h 6.6 KB
Newer Older
A
Avi Kivity 已提交
1 2 3 4 5 6 7 8 9 10
/******************************************************************************
 * x86_emulate.h
 *
 * Generic x86 (32-bit and 64-bit) instruction decoder and emulator.
 *
 * Copyright (c) 2005 Keir Fraser
 *
 * From: xen-unstable 10676:af9809f51f81a3c43f276f00c81a52ef558afda4
 */

H
H. Peter Anvin 已提交
11 12
#ifndef _ASM_X86_KVM_X86_EMULATE_H
#define _ASM_X86_KVM_X86_EMULATE_H
A
Avi Kivity 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56

struct x86_emulate_ctxt;

/*
 * x86_emulate_ops:
 *
 * These operations represent the instruction emulator's interface to memory.
 * There are two categories of operation: those that act on ordinary memory
 * regions (*_std), and those that act on memory regions known to require
 * special treatment or emulation (*_emulated).
 *
 * The emulator assumes that an instruction accesses only one 'emulated memory'
 * location, that this location is the given linear faulting address (cr2), and
 * that this is one of the instruction's data operands. Instruction fetches and
 * stack operations are assumed never to access emulated memory. The emulator
 * automatically deduces which operand of a string-move operation is accessing
 * emulated memory, and assumes that the other operand accesses normal memory.
 *
 * NOTES:
 *  1. The emulator isn't very smart about emulated vs. standard memory.
 *     'Emulated memory' access addresses should be checked for sanity.
 *     'Normal memory' accesses may fault, and the caller must arrange to
 *     detect and handle reentrancy into the emulator via recursive faults.
 *     Accesses may be unaligned and may cross page boundaries.
 *  2. If the access fails (cannot emulate, or a standard access faults) then
 *     it is up to the memop to propagate the fault to the guest VM via
 *     some out-of-band mechanism, unknown to the emulator. The memop signals
 *     failure by returning X86EMUL_PROPAGATE_FAULT to the emulator, which will
 *     then immediately bail.
 *  3. Valid access sizes are 1, 2, 4 and 8 bytes. On x86/32 systems only
 *     cmpxchg8b_emulated need support 8-byte accesses.
 *  4. The emulator cannot handle 64-bit mode emulation on an x86/32 system.
 */
/* Access completed successfully: continue emulation as normal. */
#define X86EMUL_CONTINUE        0
/* Access is unhandleable: bail from emulation and return error to caller. */
#define X86EMUL_UNHANDLEABLE    1
/* Terminate emulation but return success to the caller. */
#define X86EMUL_PROPAGATE_FAULT 2 /* propagate a generated fault to guest */
#define X86EMUL_RETRY_INSTR     2 /* retry the instruction for some reason */
#define X86EMUL_CMPXCHG_FAILED  2 /* cmpxchg did not see expected value */
struct x86_emulate_ops {
	/*
	 * read_std: Read bytes of standard (non-emulated/special) memory.
57
	 *           Used for descriptor reading.
A
Avi Kivity 已提交
58 59 60 61
	 *  @addr:  [IN ] Linear address from which to read.
	 *  @val:   [OUT] Value read from memory, zero-extended to 'u_long'.
	 *  @bytes: [IN ] Number of bytes to read from memory.
	 */
62
	int (*read_std)(unsigned long addr, void *val,
63 64 65 66 67 68 69 70 71 72 73
			unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);

	/*
	 * fetch: Read bytes of standard (non-emulated/special) memory.
	 *        Used for instruction fetch.
	 *  @addr:  [IN ] Linear address from which to read.
	 *  @val:   [OUT] Value read from memory, zero-extended to 'u_long'.
	 *  @bytes: [IN ] Number of bytes to read from memory.
	 */
	int (*fetch)(unsigned long addr, void *val,
			unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);
A
Avi Kivity 已提交
74 75 76 77 78 79 80

	/*
	 * read_emulated: Read bytes from emulated/special memory area.
	 *  @addr:  [IN ] Linear address from which to read.
	 *  @val:   [OUT] Value read from memory, zero-extended to 'u_long'.
	 *  @bytes: [IN ] Number of bytes to read from memory.
	 */
81 82 83 84
	int (*read_emulated)(unsigned long addr,
			     void *val,
			     unsigned int bytes,
			     struct kvm_vcpu *vcpu);
A
Avi Kivity 已提交
85 86

	/*
87
	 * write_emulated: Write bytes to emulated/special memory area.
A
Avi Kivity 已提交
88 89 90 91 92
	 *  @addr:  [IN ] Linear address to which to write.
	 *  @val:   [IN ] Value to write to memory (low-order bytes used as
	 *                required).
	 *  @bytes: [IN ] Number of bytes to write to memory.
	 */
93 94 95 96
	int (*write_emulated)(unsigned long addr,
			      const void *val,
			      unsigned int bytes,
			      struct kvm_vcpu *vcpu);
A
Avi Kivity 已提交
97 98 99 100 101 102 103 104 105

	/*
	 * cmpxchg_emulated: Emulate an atomic (LOCKed) CMPXCHG operation on an
	 *                   emulated/special memory area.
	 *  @addr:  [IN ] Linear address to access.
	 *  @old:   [IN ] Value expected to be current at @addr.
	 *  @new:   [IN ] Value to write to @addr.
	 *  @bytes: [IN ] Number of bytes to access using CMPXCHG.
	 */
106 107 108 109 110
	int (*cmpxchg_emulated)(unsigned long addr,
				const void *old,
				const void *new,
				unsigned int bytes,
				struct kvm_vcpu *vcpu);
A
Avi Kivity 已提交
111 112 113

};

114 115
/* Type, address-of, and value of an instruction's operand. */
struct operand {
116
	enum { OP_REG, OP_MEM, OP_IMM, OP_NONE } type;
117 118 119 120
	unsigned int bytes;
	unsigned long val, orig_val, *ptr;
};

121 122 123 124 125 126
struct fetch_cache {
	u8 data[15];
	unsigned long start;
	unsigned long end;
};

127 128 129 130 131 132 133
struct decode_cache {
	u8 twobyte;
	u8 b;
	u8 lock_prefix;
	u8 rep_prefix;
	u8 op_bytes;
	u8 ad_bytes;
134
	u8 rex_prefix;
135
	struct operand src;
136
	struct operand src2;
137
	struct operand dst;
138 139
	bool has_seg_override;
	u8 seg_override;
140 141
	unsigned int d;
	unsigned long regs[NR_VCPU_REGS];
142
	unsigned long eip, eip_orig;
143 144 145 146 147 148
	/* modrm */
	u8 modrm;
	u8 modrm_mod;
	u8 modrm_reg;
	u8 modrm_rm;
	u8 use_modrm_ea;
149
	bool rip_relative;
150
	unsigned long modrm_ea;
151
	void *modrm_ptr;
152
	unsigned long modrm_val;
153
	struct fetch_cache fetch;
154 155
};

156 157 158
#define X86_SHADOW_INT_MOV_SS  1
#define X86_SHADOW_INT_STI     2

A
Avi Kivity 已提交
159 160 161 162 163 164 165
struct x86_emulate_ctxt {
	/* Register state before/after emulation. */
	struct kvm_vcpu *vcpu;

	unsigned long eflags;
	/* Emulated execution mode, represented by an X86EMUL_MODE value. */
	int mode;
166
	u32 cs_base;
167

168 169 170
	/* interruptibility state, as a result of execution of STI or MOV SS */
	int interruptibility;

171 172
	/* decode cache */
	struct decode_cache decode;
A
Avi Kivity 已提交
173 174
};

175
/* Repeat String Operation Prefix */
S
Sheng Yang 已提交
176 177
#define REPE_PREFIX	1
#define REPNE_PREFIX	2
178

A
Avi Kivity 已提交
179 180
/* Execution mode, passed to the emulator. */
#define X86EMUL_MODE_REAL     0	/* Real mode.             */
181
#define X86EMUL_MODE_VM86     1	/* Virtual 8086 mode.     */
A
Avi Kivity 已提交
182 183 184 185 186
#define X86EMUL_MODE_PROT16   2	/* 16-bit protected mode. */
#define X86EMUL_MODE_PROT32   4	/* 32-bit protected mode. */
#define X86EMUL_MODE_PROT64   8	/* 64-bit (long) mode.    */

/* Host execution mode. */
S
Sheng Yang 已提交
187
#if defined(CONFIG_X86_32)
A
Avi Kivity 已提交
188
#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT32
189
#elif defined(CONFIG_X86_64)
A
Avi Kivity 已提交
190 191 192
#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT64
#endif

193 194 195 196
int x86_decode_insn(struct x86_emulate_ctxt *ctxt,
		    struct x86_emulate_ops *ops);
int x86_emulate_insn(struct x86_emulate_ctxt *ctxt,
		     struct x86_emulate_ops *ops);
A
Avi Kivity 已提交
197

H
H. Peter Anvin 已提交
198
#endif /* _ASM_X86_KVM_X86_EMULATE_H */