x86_emulate.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. struct x86_emulate_ctxt {
  107. /* Register state before/after emulation. */
  108. struct kvm_vcpu *vcpu;
  109. /* Linear faulting address (if emulating a page-faulting instruction). */
  110. unsigned long eflags;
  111. unsigned long cr2;
  112. /* Emulated execution mode, represented by an X86EMUL_MODE value. */
  113. int mode;
  114. unsigned long cs_base;
  115. unsigned long ds_base;
  116. unsigned long es_base;
  117. unsigned long ss_base;
  118. unsigned long gs_base;
  119. unsigned long fs_base;
  120. };
  121. /* Execution mode, passed to the emulator. */
  122. #define X86EMUL_MODE_REAL 0 /* Real mode. */
  123. #define X86EMUL_MODE_PROT16 2 /* 16-bit protected mode. */
  124. #define X86EMUL_MODE_PROT32 4 /* 32-bit protected mode. */
  125. #define X86EMUL_MODE_PROT64 8 /* 64-bit (long) mode. */
  126. /* Host execution mode. */
  127. #if defined(__i386__)
  128. #define X86EMUL_MODE_HOST X86EMUL_MODE_PROT32
  129. #elif defined(CONFIG_X86_64)
  130. #define X86EMUL_MODE_HOST X86EMUL_MODE_PROT64
  131. #endif
  132. /*
  133. * x86_emulate_memop: Emulate an instruction that faulted attempting to
  134. * read/write a 'special' memory area.
  135. * Returns -1 on failure, 0 on success.
  136. */
  137. int x86_emulate_memop(struct x86_emulate_ctxt *ctxt,
  138. struct x86_emulate_ops *ops);
  139. #endif /* __X86_EMULATE_H__ */