kvm_emulate.h 15.1 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
#include <asm/desc_defs.h>

A
Avi Kivity 已提交
16
struct x86_emulate_ctxt;
17 18
enum x86_intercept;
enum x86_intercept_stage;
A
Avi Kivity 已提交
19

20 21 22 23
struct x86_exception {
	u8 vector;
	bool error_code_valid;
	u16 error_code;
24 25
	bool nested_page_fault;
	u64 address; /* cr2 or nested page fault gpa */
26 27
};

28 29 30 31 32 33 34 35 36 37 38 39
/*
 * This struct is used to carry enough information from the instruction
 * decoder to main KVM so that a decision can be made whether the
 * instruction needs to be intercepted or not.
 */
struct x86_instruction_info {
	u8  intercept;          /* which intercept                      */
	u8  rep_prefix;         /* rep prefix?                          */
	u8  modrm_mod;		/* mod part of modrm			*/
	u8  modrm_reg;          /* index of register used               */
	u8  modrm_rm;		/* rm part of modrm			*/
	u64 src_val;            /* value of source operand              */
40
	u64 dst_val;            /* value of destination operand         */
41 42 43 44 45 46
	u8  src_bytes;          /* size of source operand               */
	u8  dst_bytes;          /* size of destination operand          */
	u8  ad_bytes;           /* size of src/dst address              */
	u64 next_rip;           /* rip following the instruction        */
};

A
Avi Kivity 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
/*
 * 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 */
83 84
#define X86EMUL_RETRY_INSTR     3 /* retry the instruction for some reason */
#define X86EMUL_CMPXCHG_FAILED  4 /* cmpxchg did not see expected value */
85
#define X86EMUL_IO_NEEDED       5 /* IO is needed to complete emulation */
86
#define X86EMUL_INTERCEPTED     6 /* Intercepted by nested VMCB/VMCS */
87

A
Avi Kivity 已提交
88
struct x86_emulate_ops {
89 90 91 92 93 94 95 96 97 98 99 100 101
	/*
	 * read_gpr: read a general purpose register (rax - r15)
	 *
	 * @reg: gpr number.
	 */
	ulong (*read_gpr)(struct x86_emulate_ctxt *ctxt, unsigned reg);
	/*
	 * write_gpr: write a general purpose register (rax - r15)
	 *
	 * @reg: gpr number.
	 * @val: value to write.
	 */
	void (*write_gpr)(struct x86_emulate_ctxt *ctxt, unsigned reg, ulong val);
A
Avi Kivity 已提交
102 103
	/*
	 * read_std: Read bytes of standard (non-emulated/special) memory.
104
	 *           Used for descriptor reading.
A
Avi Kivity 已提交
105 106 107 108
	 *  @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.
	 */
109 110 111
	int (*read_std)(struct x86_emulate_ctxt *ctxt,
			unsigned long addr, void *val,
			unsigned int bytes,
112
			struct x86_exception *fault);
113

114 115 116 117 118 119 120 121 122 123
	/*
	 * read_phys: Read bytes of standard (non-emulated/special) memory.
	 *            Used for descriptor reading.
	 *  @addr:  [IN ] Physical address from which to read.
	 *  @val:   [OUT] Value read from memory.
	 *  @bytes: [IN ] Number of bytes to read from memory.
	 */
	int (*read_phys)(struct x86_emulate_ctxt *ctxt, unsigned long addr,
			void *val, unsigned int bytes);

124 125 126 127 128 129 130
	/*
	 * 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.
	 */
131 132
	int (*write_std)(struct x86_emulate_ctxt *ctxt,
			 unsigned long addr, void *val, unsigned int bytes,
133
			 struct x86_exception *fault);
134 135 136 137 138 139 140
	/*
	 * 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.
	 */
141 142
	int (*fetch)(struct x86_emulate_ctxt *ctxt,
		     unsigned long addr, void *val, unsigned int bytes,
143
		     struct x86_exception *fault);
A
Avi Kivity 已提交
144 145 146 147 148 149 150

	/*
	 * 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.
	 */
151 152 153
	int (*read_emulated)(struct x86_emulate_ctxt *ctxt,
			     unsigned long addr, void *val, unsigned int bytes,
			     struct x86_exception *fault);
A
Avi Kivity 已提交
154 155

	/*
156
	 * write_emulated: Write bytes to emulated/special memory area.
A
Avi Kivity 已提交
157 158 159 160 161
	 *  @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.
	 */
162 163
	int (*write_emulated)(struct x86_emulate_ctxt *ctxt,
			      unsigned long addr, const void *val,
164
			      unsigned int bytes,
165
			      struct x86_exception *fault);
A
Avi Kivity 已提交
166 167 168 169 170 171 172 173 174

	/*
	 * 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.
	 */
175 176
	int (*cmpxchg_emulated)(struct x86_emulate_ctxt *ctxt,
				unsigned long addr,
177 178 179
				const void *old,
				const void *new,
				unsigned int bytes,
180
				struct x86_exception *fault);
181
	void (*invlpg)(struct x86_emulate_ctxt *ctxt, ulong addr);
182

183 184 185
	int (*pio_in_emulated)(struct x86_emulate_ctxt *ctxt,
			       int size, unsigned short port, void *val,
			       unsigned int count);
186

187 188 189
	int (*pio_out_emulated)(struct x86_emulate_ctxt *ctxt,
				int size, unsigned short port, const void *val,
				unsigned int count);
190

191 192 193 194
	bool (*get_segment)(struct x86_emulate_ctxt *ctxt, u16 *selector,
			    struct desc_struct *desc, u32 *base3, int seg);
	void (*set_segment)(struct x86_emulate_ctxt *ctxt, u16 selector,
			    struct desc_struct *desc, u32 base3, int seg);
195 196 197 198
	unsigned long (*get_cached_segment_base)(struct x86_emulate_ctxt *ctxt,
						 int seg);
	void (*get_gdt)(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt);
	void (*get_idt)(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt);
199 200
	void (*set_gdt)(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt);
	void (*set_idt)(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt);
201 202 203 204 205
	ulong (*get_cr)(struct x86_emulate_ctxt *ctxt, int cr);
	int (*set_cr)(struct x86_emulate_ctxt *ctxt, int cr, ulong val);
	int (*cpl)(struct x86_emulate_ctxt *ctxt);
	int (*get_dr)(struct x86_emulate_ctxt *ctxt, int dr, ulong *dest);
	int (*set_dr)(struct x86_emulate_ctxt *ctxt, int dr, ulong value);
P
Paolo Bonzini 已提交
206 207
	u64 (*get_smbase)(struct x86_emulate_ctxt *ctxt);
	void (*set_smbase)(struct x86_emulate_ctxt *ctxt, u64 smbase);
208 209
	int (*set_msr)(struct x86_emulate_ctxt *ctxt, u32 msr_index, u64 data);
	int (*get_msr)(struct x86_emulate_ctxt *ctxt, u32 msr_index, u64 *pdata);
210
	int (*check_pmc)(struct x86_emulate_ctxt *ctxt, u32 pmc);
211
	int (*read_pmc)(struct x86_emulate_ctxt *ctxt, u32 pmc, u64 *pdata);
212
	void (*halt)(struct x86_emulate_ctxt *ctxt);
213
	void (*wbinvd)(struct x86_emulate_ctxt *ctxt);
214
	int (*fix_hypercall)(struct x86_emulate_ctxt *ctxt);
215 216
	void (*get_fpu)(struct x86_emulate_ctxt *ctxt); /* disables preempt */
	void (*put_fpu)(struct x86_emulate_ctxt *ctxt); /* reenables preempt */
217
	int (*intercept)(struct x86_emulate_ctxt *ctxt,
218
			 struct x86_instruction_info *info,
219
			 enum x86_intercept_stage stage);
220

221 222
	void (*get_cpuid)(struct x86_emulate_ctxt *ctxt,
			  u32 *eax, u32 *ebx, u32 *ecx, u32 *edx);
223
	void (*set_nmi_mask)(struct x86_emulate_ctxt *ctxt, bool masked);
224 225 226

	unsigned (*get_hflags)(struct x86_emulate_ctxt *ctxt);
	void (*set_hflags)(struct x86_emulate_ctxt *ctxt, unsigned hflags);
A
Avi Kivity 已提交
227 228
};

A
Avi Kivity 已提交
229 230
typedef u32 __attribute__((vector_size(16))) sse128_t;

231 232
/* Type, address-of, and value of an instruction's operand. */
struct operand {
233
	enum { OP_REG, OP_MEM, OP_MEM_STR, OP_IMM, OP_XMM, OP_MM, OP_NONE } type;
234
	unsigned int bytes;
235
	unsigned int count;
236 237 238 239
	union {
		unsigned long orig_val;
		u64 orig_val64;
	};
240 241
	union {
		unsigned long *reg;
242 243 244 245
		struct segmented_address {
			ulong ea;
			unsigned seg;
		} mem;
A
Avi Kivity 已提交
246
		unsigned xmm;
A
Avi Kivity 已提交
247
		unsigned mm;
248
	} addr;
249 250
	union {
		unsigned long val;
251
		u64 val64;
252
		char valptr[sizeof(sse128_t)];
A
Avi Kivity 已提交
253
		sse128_t vec_val;
A
Avi Kivity 已提交
254
		u64 mm_val;
255
		void *data;
256
	};
257 258
};

259 260
struct fetch_cache {
	u8 data[15];
261 262
	u8 *ptr;
	u8 *end;
263 264
};

265 266 267 268 269 270
struct read_cache {
	u8 data[1024];
	unsigned long pos;
	unsigned long end;
};

271 272 273 274 275 276 277 278 279
/* Execution mode, passed to the emulator. */
enum x86emul_mode {
	X86EMUL_MODE_REAL,	/* Real mode.             */
	X86EMUL_MODE_VM86,	/* Virtual 8086 mode.     */
	X86EMUL_MODE_PROT16,	/* 16-bit protected mode. */
	X86EMUL_MODE_PROT32,	/* 32-bit protected mode. */
	X86EMUL_MODE_PROT64,	/* 64-bit (long) mode.    */
};

280 281
/* These match some of the HF_* flags defined in kvm_host.h  */
#define X86EMUL_GUEST_MASK           (1 << 5) /* VCPU is in guest-mode */
P
Paolo Bonzini 已提交
282 283
#define X86EMUL_SMM_MASK             (1 << 6)
#define X86EMUL_SMM_INSIDE_NMI_MASK  (1 << 7)
284

285
struct x86_emulate_ctxt {
286
	const struct x86_emulate_ops *ops;
287 288 289 290 291

	/* Register state before/after emulation. */
	unsigned long eflags;
	unsigned long eip; /* eip before instruction emulation */
	/* Emulated execution mode, represented by an X86EMUL_MODE value. */
292
	enum x86emul_mode mode;
293 294 295 296 297

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

	bool perm_ok; /* do not check permissions if true */
298
	bool ud;	/* inject an #UD if host doesn't support insn */
299
	bool tf;	/* TF value before instruction (after for syscall/sysret) */
300 301 302 303

	bool have_exception;
	struct x86_exception exception;

B
Borislav Petkov 已提交
304 305 306 307 308 309
	/*
	 * decode cache
	 */

	/* current opcode length in bytes */
	u8 opcode_len;
310
	u8 b;
311
	u8 intercept;
312 313 314
	u8 op_bytes;
	u8 ad_bytes;
	struct operand src;
315
	struct operand src2;
316
	struct operand dst;
317
	int (*execute)(struct x86_emulate_ctxt *ctxt);
318
	int (*check_perm)(struct x86_emulate_ctxt *ctxt);
319 320 321 322 323
	/*
	 * The following six fields are cleared together,
	 * the rest are initialized unconditionally in x86_decode_insn
	 * or elsewhere
	 */
324 325 326 327 328 329 330 331
	bool rip_relative;
	u8 rex_prefix;
	u8 lock_prefix;
	u8 rep_prefix;
	/* bitmaps of registers in _regs[] that can be read */
	u32 regs_valid;
	/* bitmaps of registers in _regs[] that have been written */
	u32 regs_dirty;
332 333 334 335 336
	/* modrm */
	u8 modrm;
	u8 modrm_mod;
	u8 modrm_reg;
	u8 modrm_rm;
337
	u8 modrm_seg;
B
Bandan Das 已提交
338
	u8 seg_override;
339
	u64 d;
340
	unsigned long _eip;
A
Avi Kivity 已提交
341
	struct operand memop;
342
	/* Fields above regs are cleared together. */
343
	unsigned long _regs[NR_VCPU_REGS];
344
	struct operand *memopp;
345
	struct fetch_cache fetch;
346
	struct read_cache io_read;
347
	struct read_cache mem_read;
348 349
};

350
/* Repeat String Operation Prefix */
351 352
#define REPE_PREFIX	0xf3
#define REPNE_PREFIX	0xf2
353

354 355 356 357 358 359 360 361 362 363 364 365 366
/* CPUID vendors */
#define X86EMUL_CPUID_VENDOR_AuthenticAMD_ebx 0x68747541
#define X86EMUL_CPUID_VENDOR_AuthenticAMD_ecx 0x444d4163
#define X86EMUL_CPUID_VENDOR_AuthenticAMD_edx 0x69746e65

#define X86EMUL_CPUID_VENDOR_AMDisbetterI_ebx 0x69444d41
#define X86EMUL_CPUID_VENDOR_AMDisbetterI_ecx 0x21726574
#define X86EMUL_CPUID_VENDOR_AMDisbetterI_edx 0x74656273

#define X86EMUL_CPUID_VENDOR_GenuineIntel_ebx 0x756e6547
#define X86EMUL_CPUID_VENDOR_GenuineIntel_ecx 0x6c65746e
#define X86EMUL_CPUID_VENDOR_GenuineIntel_edx 0x49656e69

367
enum x86_intercept_stage {
368
	X86_ICTP_NONE = 0,   /* Allow zero-init to not match anything */
369 370 371 372 373 374 375
	X86_ICPT_PRE_EXCEPT,
	X86_ICPT_POST_EXCEPT,
	X86_ICPT_POST_MEMACCESS,
};

enum x86_intercept {
	x86_intercept_none,
376 377 378
	x86_intercept_cr_read,
	x86_intercept_cr_write,
	x86_intercept_clts,
379 380
	x86_intercept_lmsw,
	x86_intercept_smsw,
381 382
	x86_intercept_dr_read,
	x86_intercept_dr_write,
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
	x86_intercept_lidt,
	x86_intercept_sidt,
	x86_intercept_lgdt,
	x86_intercept_sgdt,
	x86_intercept_lldt,
	x86_intercept_sldt,
	x86_intercept_ltr,
	x86_intercept_str,
	x86_intercept_rdtsc,
	x86_intercept_rdpmc,
	x86_intercept_pushf,
	x86_intercept_popf,
	x86_intercept_cpuid,
	x86_intercept_rsm,
	x86_intercept_iret,
	x86_intercept_intn,
	x86_intercept_invd,
	x86_intercept_pause,
	x86_intercept_hlt,
	x86_intercept_invlpg,
	x86_intercept_invlpga,
	x86_intercept_vmrun,
	x86_intercept_vmload,
	x86_intercept_vmsave,
	x86_intercept_vmmcall,
	x86_intercept_stgi,
	x86_intercept_clgi,
	x86_intercept_skinit,
	x86_intercept_rdtscp,
	x86_intercept_icebp,
	x86_intercept_wbinvd,
	x86_intercept_monitor,
	x86_intercept_mwait,
416 417
	x86_intercept_rdmsr,
	x86_intercept_wrmsr,
418 419 420 421
	x86_intercept_in,
	x86_intercept_ins,
	x86_intercept_out,
	x86_intercept_outs,
422 423 424 425

	nr_x86_intercepts
};

A
Avi Kivity 已提交
426
/* Host execution mode. */
S
Sheng Yang 已提交
427
#if defined(CONFIG_X86_32)
A
Avi Kivity 已提交
428
#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT32
429
#elif defined(CONFIG_X86_64)
A
Avi Kivity 已提交
430 431 432
#define X86EMUL_MODE_HOST X86EMUL_MODE_PROT64
#endif

433
int x86_decode_insn(struct x86_emulate_ctxt *ctxt, void *insn, int insn_len);
434
bool x86_page_table_writing_insn(struct x86_emulate_ctxt *ctxt);
435 436 437
#define EMULATION_FAILED -1
#define EMULATION_OK 0
#define EMULATION_RESTART 1
438
#define EMULATION_INTERCEPTED 2
439
void init_decode_cache(struct x86_emulate_ctxt *ctxt);
440
int x86_emulate_insn(struct x86_emulate_ctxt *ctxt);
441
int emulator_task_switch(struct x86_emulate_ctxt *ctxt,
442
			 u16 tss_selector, int idt_index, int reason,
443
			 bool has_error_code, u32 error_code);
444
int emulate_int_real(struct x86_emulate_ctxt *ctxt, int irq);
445 446
void emulator_invalidate_register_cache(struct x86_emulate_ctxt *ctxt);
void emulator_writeback_register_cache(struct x86_emulate_ctxt *ctxt);
447
bool emulator_can_use_gpa(struct x86_emulate_ctxt *ctxt);
448

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