kvm_x86_emulate.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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 instruction fetch, stack operations, and others.
  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);
  61. /*
  62. * read_emulated: Read bytes from emulated/special memory area.
  63. * @addr: [IN ] Linear address from which to read.
  64. * @val: [OUT] Value read from memory, zero-extended to 'u_long'.
  65. * @bytes: [IN ] Number of bytes to read from memory.
  66. */
  67. int (*read_emulated)(unsigned long addr,
  68. void *val,
  69. unsigned int bytes,
  70. struct kvm_vcpu *vcpu);
  71. /*
  72. * write_emulated: Read bytes from emulated/special memory area.
  73. * @addr: [IN ] Linear address to which to write.
  74. * @val: [IN ] Value to write to memory (low-order bytes used as
  75. * required).
  76. * @bytes: [IN ] Number of bytes to write to memory.
  77. */
  78. int (*write_emulated)(unsigned long addr,
  79. const void *val,
  80. unsigned int bytes,
  81. struct kvm_vcpu *vcpu);
  82. /*
  83. * cmpxchg_emulated: Emulate an atomic (LOCKed) CMPXCHG operation on an
  84. * emulated/special memory area.
  85. * @addr: [IN ] Linear address to access.
  86. * @old: [IN ] Value expected to be current at @addr.
  87. * @new: [IN ] Value to write to @addr.
  88. * @bytes: [IN ] Number of bytes to access using CMPXCHG.
  89. */
  90. int (*cmpxchg_emulated)(unsigned long addr,
  91. const void *old,
  92. const void *new,
  93. unsigned int bytes,
  94. struct kvm_vcpu *vcpu);
  95. };
  96. /* Type, address-of, and value of an instruction's operand. */
  97. struct operand {
  98. enum { OP_REG, OP_MEM, OP_IMM, OP_NONE } type;
  99. unsigned int bytes;
  100. unsigned long val, orig_val, *ptr;
  101. };
  102. struct fetch_cache {
  103. u8 data[15];
  104. unsigned long start;
  105. unsigned long end;
  106. };
  107. struct decode_cache {
  108. u8 twobyte;
  109. u8 b;
  110. u8 lock_prefix;
  111. u8 rep_prefix;
  112. u8 op_bytes;
  113. u8 ad_bytes;
  114. u8 rex_prefix;
  115. struct operand src;
  116. struct operand src2;
  117. struct operand dst;
  118. bool has_seg_override;
  119. u8 seg_override;
  120. unsigned int d;
  121. unsigned long regs[NR_VCPU_REGS];
  122. unsigned long eip;
  123. /* modrm */
  124. u8 modrm;
  125. u8 modrm_mod;
  126. u8 modrm_reg;
  127. u8 modrm_rm;
  128. u8 use_modrm_ea;
  129. bool rip_relative;
  130. unsigned long modrm_ea;
  131. void *modrm_ptr;
  132. unsigned long modrm_val;
  133. struct fetch_cache fetch;
  134. };
  135. struct x86_emulate_ctxt {
  136. /* Register state before/after emulation. */
  137. struct kvm_vcpu *vcpu;
  138. unsigned long eflags;
  139. /* Emulated execution mode, represented by an X86EMUL_MODE value. */
  140. int mode;
  141. u32 cs_base;
  142. /* decode cache */
  143. struct decode_cache decode;
  144. };
  145. /* Repeat String Operation Prefix */
  146. #define REPE_PREFIX 1
  147. #define REPNE_PREFIX 2
  148. /* Execution mode, passed to the emulator. */
  149. #define X86EMUL_MODE_REAL 0 /* Real mode. */
  150. #define X86EMUL_MODE_PROT16 2 /* 16-bit protected mode. */
  151. #define X86EMUL_MODE_PROT32 4 /* 32-bit protected mode. */
  152. #define X86EMUL_MODE_PROT64 8 /* 64-bit (long) mode. */
  153. /* Host execution mode. */
  154. #if defined(CONFIG_X86_32)
  155. #define X86EMUL_MODE_HOST X86EMUL_MODE_PROT32
  156. #elif defined(CONFIG_X86_64)
  157. #define X86EMUL_MODE_HOST X86EMUL_MODE_PROT64
  158. #endif
  159. int x86_decode_insn(struct x86_emulate_ctxt *ctxt,
  160. struct x86_emulate_ops *ops);
  161. int x86_emulate_insn(struct x86_emulate_ctxt *ctxt,
  162. struct x86_emulate_ops *ops);
  163. #endif /* _ASM_X86_KVM_X86_EMULATE_H */