kvm_emulate.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /******************************************************************************
  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. #ifndef _ASM_X86_KVM_X86_EMULATE_H
  11. #define _ASM_X86_KVM_X86_EMULATE_H
  12. struct x86_emulate_ctxt;
  13. /*
  14. * x86_emulate_ops:
  15. *
  16. * These operations represent the instruction emulator's interface to memory.
  17. * There are two categories of operation: those that act on ordinary memory
  18. * regions (*_std), and those that act on memory regions known to require
  19. * special treatment or emulation (*_emulated).
  20. *
  21. * The emulator assumes that an instruction accesses only one 'emulated memory'
  22. * location, that this location is the given linear faulting address (cr2), and
  23. * that this is one of the instruction's data operands. Instruction fetches and
  24. * stack operations are assumed never to access emulated memory. The emulator
  25. * automatically deduces which operand of a string-move operation is accessing
  26. * emulated memory, and assumes that the other operand accesses normal memory.
  27. *
  28. * NOTES:
  29. * 1. The emulator isn't very smart about emulated vs. standard memory.
  30. * 'Emulated memory' access addresses should be checked for sanity.
  31. * 'Normal memory' accesses may fault, and the caller must arrange to
  32. * detect and handle reentrancy into the emulator via recursive faults.
  33. * Accesses may be unaligned and may cross page boundaries.
  34. * 2. If the access fails (cannot emulate, or a standard access faults) then
  35. * it is up to the memop to propagate the fault to the guest VM via
  36. * some out-of-band mechanism, unknown to the emulator. The memop signals
  37. * failure by returning X86EMUL_PROPAGATE_FAULT to the emulator, which will
  38. * then immediately bail.
  39. * 3. Valid access sizes are 1, 2, 4 and 8 bytes. On x86/32 systems only
  40. * cmpxchg8b_emulated need support 8-byte accesses.
  41. * 4. The emulator cannot handle 64-bit mode emulation on an x86/32 system.
  42. */
  43. /* Access completed successfully: continue emulation as normal. */
  44. #define X86EMUL_CONTINUE 0
  45. /* Access is unhandleable: bail from emulation and return error to caller. */
  46. #define X86EMUL_UNHANDLEABLE 1
  47. /* Terminate emulation but return success to the caller. */
  48. #define X86EMUL_PROPAGATE_FAULT 2 /* propagate a generated fault to guest */
  49. #define X86EMUL_RETRY_INSTR 2 /* retry the instruction for some reason */
  50. #define X86EMUL_CMPXCHG_FAILED 2 /* cmpxchg did not see expected value */
  51. struct x86_emulate_ops {
  52. /*
  53. * read_std: Read bytes of standard (non-emulated/special) memory.
  54. * Used for descriptor reading.
  55. * @addr: [IN ] Linear address from which to read.
  56. * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
  57. * @bytes: [IN ] Number of bytes to read from memory.
  58. */
  59. int (*read_std)(unsigned long addr, void *val,
  60. unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);
  61. /*
  62. * fetch: Read bytes of standard (non-emulated/special) memory.
  63. * Used for instruction fetch.
  64. * @addr: [IN ] Linear address from which to read.
  65. * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
  66. * @bytes: [IN ] Number of bytes to read from memory.
  67. */
  68. int (*fetch)(unsigned long addr, void *val,
  69. unsigned int bytes, struct kvm_vcpu *vcpu, u32 *error);
  70. /*
  71. * read_emulated: Read bytes from emulated/special memory area.
  72. * @addr: [IN ] Linear address from which to read.
  73. * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
  74. * @bytes: [IN ] Number of bytes to read from memory.
  75. */
  76. int (*read_emulated)(unsigned long addr,
  77. void *val,
  78. unsigned int bytes,
  79. struct kvm_vcpu *vcpu);
  80. /*
  81. * write_emulated: Write bytes to emulated/special memory area.
  82. * @addr: [IN ] Linear address to which to write.
  83. * @val: [IN ] Value to write to memory (low-order bytes used as
  84. * required).
  85. * @bytes: [IN ] Number of bytes to write to memory.
  86. */
  87. int (*write_emulated)(unsigned long addr,
  88. const void *val,
  89. unsigned int bytes,
  90. struct kvm_vcpu *vcpu);
  91. /*
  92. * cmpxchg_emulated: Emulate an atomic (LOCKed) CMPXCHG operation on an
  93. * emulated/special memory area.
  94. * @addr: [IN ] Linear address to access.
  95. * @old: [IN ] Value expected to be current at @addr.
  96. * @new: [IN ] Value to write to @addr.
  97. * @bytes: [IN ] Number of bytes to access using CMPXCHG.
  98. */
  99. int (*cmpxchg_emulated)(unsigned long addr,
  100. const void *old,
  101. const void *new,
  102. unsigned int bytes,
  103. struct kvm_vcpu *vcpu);
  104. };
  105. /* Type, address-of, and value of an instruction's operand. */
  106. struct operand {
  107. enum { OP_REG, OP_MEM, OP_IMM, OP_NONE } type;
  108. unsigned int bytes;
  109. unsigned long val, orig_val, *ptr;
  110. };
  111. struct fetch_cache {
  112. u8 data[15];
  113. unsigned long start;
  114. unsigned long end;
  115. };
  116. struct decode_cache {
  117. u8 twobyte;
  118. u8 b;
  119. u8 lock_prefix;
  120. u8 rep_prefix;
  121. u8 op_bytes;
  122. u8 ad_bytes;
  123. u8 rex_prefix;
  124. struct operand src;
  125. struct operand src2;
  126. struct operand dst;
  127. bool has_seg_override;
  128. u8 seg_override;
  129. unsigned int d;
  130. unsigned long regs[NR_VCPU_REGS];
  131. unsigned long eip, eip_orig;
  132. /* modrm */
  133. u8 modrm;
  134. u8 modrm_mod;
  135. u8 modrm_reg;
  136. u8 modrm_rm;
  137. u8 use_modrm_ea;
  138. bool rip_relative;
  139. unsigned long modrm_ea;
  140. void *modrm_ptr;
  141. unsigned long modrm_val;
  142. struct fetch_cache fetch;
  143. };
  144. #define X86_SHADOW_INT_MOV_SS 1
  145. #define X86_SHADOW_INT_STI 2
  146. struct x86_emulate_ctxt {
  147. /* Register state before/after emulation. */
  148. struct kvm_vcpu *vcpu;
  149. unsigned long eflags;
  150. /* Emulated execution mode, represented by an X86EMUL_MODE value. */
  151. int mode;
  152. u32 cs_base;
  153. /* interruptibility state, as a result of execution of STI or MOV SS */
  154. int interruptibility;
  155. /* decode cache */
  156. struct decode_cache decode;
  157. };
  158. /* Repeat String Operation Prefix */
  159. #define REPE_PREFIX 1
  160. #define REPNE_PREFIX 2
  161. /* Execution mode, passed to the emulator. */
  162. #define X86EMUL_MODE_REAL 0 /* Real mode. */
  163. #define X86EMUL_MODE_VM86 1 /* Virtual 8086 mode. */
  164. #define X86EMUL_MODE_PROT16 2 /* 16-bit protected mode. */
  165. #define X86EMUL_MODE_PROT32 4 /* 32-bit protected mode. */
  166. #define X86EMUL_MODE_PROT64 8 /* 64-bit (long) mode. */
  167. /* Host execution mode. */
  168. #if defined(CONFIG_X86_32)
  169. #define X86EMUL_MODE_HOST X86EMUL_MODE_PROT32
  170. #elif defined(CONFIG_X86_64)
  171. #define X86EMUL_MODE_HOST X86EMUL_MODE_PROT64
  172. #endif
  173. int x86_decode_insn(struct x86_emulate_ctxt *ctxt,
  174. struct x86_emulate_ops *ops);
  175. int x86_emulate_insn(struct x86_emulate_ctxt *ctxt,
  176. struct x86_emulate_ops *ops);
  177. #endif /* _ASM_X86_KVM_X86_EMULATE_H */