kvm_emulate.h 8.98 KB
Newer Older
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
 */

11 12
#ifndef _ASM_X86_KVM_X86_EMULATE_H
#define _ASM_X86_KVM_X86_EMULATE_H
13

14 15
#include <asm/desc_defs.h>

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
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 */
54 55
#define X86EMUL_RETRY_INSTR     3 /* retry the instruction for some reason */
#define X86EMUL_CMPXCHG_FAILED  4 /* cmpxchg did not see expected value */
56
#define X86EMUL_IO_NEEDED       5 /* IO is needed to complete emulation */
57

58 59 60
struct x86_emulate_ops {
	/*
	 * read_std: Read bytes of standard (non-emulated/special) memory.
61
	 *           Used for descriptor reading.
62 63 64 65
	 *  @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.
	 */
66
	int (*read_std)(unsigned long addr, void *val,
67 68
			unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);

69 70 71 72 73 74 75 76 77
	/*
	 * write_std: Write bytes of standard (non-emulated/special) memory.
	 *            Used for descriptor writing.
	 *  @addr:  [IN ] Linear address to which to write.
	 *  @val:   [OUT] Value write to memory, zero-extended to 'u_long'.
	 *  @bytes: [IN ] Number of bytes to write to memory.
	 */
	int (*write_std)(unsigned long addr, void *val,
			 unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);
78 79 80 81 82 83 84 85 86
	/*
	 * 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);
87 88 89 90 91 92 93

	/*
	 * 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.
	 */
94 95 96
	int (*read_emulated)(unsigned long addr,
			     void *val,
			     unsigned int bytes,
97
			     unsigned int *error,
98
			     struct kvm_vcpu *vcpu);
99 100

	/*
101
	 * write_emulated: Write bytes to emulated/special memory area.
102 103 104 105 106
	 *  @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.
	 */
107 108 109
	int (*write_emulated)(unsigned long addr,
			      const void *val,
			      unsigned int bytes,
110
			      unsigned int *error,
111
			      struct kvm_vcpu *vcpu);
112 113 114 115 116 117 118 119 120

	/*
	 * 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.
	 */
121 122 123 124
	int (*cmpxchg_emulated)(unsigned long addr,
				const void *old,
				const void *new,
				unsigned int bytes,
125
				unsigned int *error,
126
				struct kvm_vcpu *vcpu);
127 128 129 130 131 132 133

	int (*pio_in_emulated)(int size, unsigned short port, void *val,
			       unsigned int count, struct kvm_vcpu *vcpu);

	int (*pio_out_emulated)(int size, unsigned short port, const void *val,
				unsigned int count, struct kvm_vcpu *vcpu);

134 135 136 137 138 139
	bool (*get_cached_descriptor)(struct desc_struct *desc,
				      int seg, struct kvm_vcpu *vcpu);
	void (*set_cached_descriptor)(struct desc_struct *desc,
				      int seg, struct kvm_vcpu *vcpu);
	u16 (*get_segment_selector)(int seg, struct kvm_vcpu *vcpu);
	void (*set_segment_selector)(u16 sel, int seg, struct kvm_vcpu *vcpu);
140
	unsigned long (*get_cached_segment_base)(int seg, struct kvm_vcpu *vcpu);
141
	void (*get_gdt)(struct desc_ptr *dt, struct kvm_vcpu *vcpu);
142
	void (*get_idt)(struct desc_ptr *dt, struct kvm_vcpu *vcpu);
143
	ulong (*get_cr)(int cr, struct kvm_vcpu *vcpu);
144
	int (*set_cr)(int cr, ulong val, struct kvm_vcpu *vcpu);
145
	int (*cpl)(struct kvm_vcpu *vcpu);
146 147
	int (*get_dr)(int dr, unsigned long *dest, struct kvm_vcpu *vcpu);
	int (*set_dr)(int dr, unsigned long value, struct kvm_vcpu *vcpu);
148 149
	int (*set_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
	int (*get_msr)(struct kvm_vcpu *vcpu, u32 msr_index, u64 *pdata);
150 151
};

152 153
/* Type, address-of, and value of an instruction's operand. */
struct operand {
154
	enum { OP_REG, OP_MEM, OP_IMM, OP_NONE } type;
155
	unsigned int bytes;
156 157 158 159
	union {
		unsigned long orig_val;
		u64 orig_val64;
	};
160 161 162 163
	union {
		unsigned long *reg;
		unsigned long mem;
	} addr;
164 165
	union {
		unsigned long val;
166
		u64 val64;
167 168
		char valptr[sizeof(unsigned long) + 2];
	};
169 170
};

171 172 173 174 175 176
struct fetch_cache {
	u8 data[15];
	unsigned long start;
	unsigned long end;
};

177 178 179 180 181 182
struct read_cache {
	u8 data[1024];
	unsigned long pos;
	unsigned long end;
};

183 184 185 186 187 188 189
struct decode_cache {
	u8 twobyte;
	u8 b;
	u8 lock_prefix;
	u8 rep_prefix;
	u8 op_bytes;
	u8 ad_bytes;
190
	u8 rex_prefix;
191
	struct operand src;
192
	struct operand src2;
193
	struct operand dst;
194 195
	bool has_seg_override;
	u8 seg_override;
196
	unsigned int d;
197
	int (*execute)(struct x86_emulate_ctxt *ctxt);
198
	unsigned long regs[NR_VCPU_REGS];
199
	unsigned long eip;
200 201 202 203 204
	/* modrm */
	u8 modrm;
	u8 modrm_mod;
	u8 modrm_reg;
	u8 modrm_rm;
205
	u8 modrm_seg;
206
	bool rip_relative;
207
	struct fetch_cache fetch;
208
	struct read_cache io_read;
209
	struct read_cache mem_read;
210 211
};

212
struct x86_emulate_ctxt {
213 214
	struct x86_emulate_ops *ops;

215 216 217 218
	/* Register state before/after emulation. */
	struct kvm_vcpu *vcpu;

	unsigned long eflags;
219
	unsigned long eip; /* eip before instruction emulation */
220 221
	/* Emulated execution mode, represented by an X86EMUL_MODE value. */
	int mode;
222
	u32 cs_base;
223

224 225 226
	/* interruptibility state, as a result of execution of STI or MOV SS */
	int interruptibility;

227
	bool restart; /* restart string instruction after writeback */
228
	bool perm_ok; /* do not check permissions if true */
229 230 231 232 233 234

	int exception; /* exception that happens during emulation or -1 */
	u32 error_code; /* error code for exception */
	bool error_code_valid;
	unsigned long cr2; /* faulted address in case of #PF */

235 236
	/* decode cache */
	struct decode_cache decode;
237 238
};

239
/* Repeat String Operation Prefix */
Sheng Yang's avatar
Sheng Yang committed
240 241
#define REPE_PREFIX	1
#define REPNE_PREFIX	2
242

243 244
/* Execution mode, passed to the emulator. */
#define X86EMUL_MODE_REAL     0	/* Real mode.             */
245
#define X86EMUL_MODE_VM86     1	/* Virtual 8086 mode.     */
246 247 248 249 250
#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. */
Sheng Yang's avatar
Sheng Yang committed
251
#if defined(CONFIG_X86_32)
252
#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT32
253
#elif defined(CONFIG_X86_64)
254 255 256
#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT64
#endif

257 258
int x86_decode_insn(struct x86_emulate_ctxt *ctxt);
int x86_emulate_insn(struct x86_emulate_ctxt *ctxt);
259
int emulator_task_switch(struct x86_emulate_ctxt *ctxt,
260 261
			 u16 tss_selector, int reason,
			 bool has_error_code, u32 error_code);
262

263
#endif /* _ASM_X86_KVM_X86_EMULATE_H */