x86_emulate.h 6.4 KB

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