You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

xen.h 9.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. /******************************************************************************
  2. * arch-x86/xen.h
  3. *
  4. * Guest OS interface to x86 Xen.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to
  8. * deal in the Software without restriction, including without limitation the
  9. * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  10. * sell copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  21. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  22. * DEALINGS IN THE SOFTWARE.
  23. *
  24. * Copyright (c) 2004-2006, K A Fraser
  25. */
  26. #include "../xen.h"
  27. #ifndef __XEN_PUBLIC_ARCH_X86_XEN_H__
  28. #define __XEN_PUBLIC_ARCH_X86_XEN_H__
  29. FILE_LICENCE ( MIT );
  30. /* Structural guest handles introduced in 0x00030201. */
  31. #if __XEN_INTERFACE_VERSION__ >= 0x00030201
  32. #define ___DEFINE_XEN_GUEST_HANDLE(name, type) \
  33. typedef struct { type *p; } __guest_handle_ ## name
  34. #else
  35. #define ___DEFINE_XEN_GUEST_HANDLE(name, type) \
  36. typedef type * __guest_handle_ ## name
  37. #endif
  38. /*
  39. * XEN_GUEST_HANDLE represents a guest pointer, when passed as a field
  40. * in a struct in memory.
  41. * XEN_GUEST_HANDLE_PARAM represent a guest pointer, when passed as an
  42. * hypercall argument.
  43. * XEN_GUEST_HANDLE_PARAM and XEN_GUEST_HANDLE are the same on X86 but
  44. * they might not be on other architectures.
  45. */
  46. #define __DEFINE_XEN_GUEST_HANDLE(name, type) \
  47. ___DEFINE_XEN_GUEST_HANDLE(name, type); \
  48. ___DEFINE_XEN_GUEST_HANDLE(const_##name, const type)
  49. #define DEFINE_XEN_GUEST_HANDLE(name) __DEFINE_XEN_GUEST_HANDLE(name, name)
  50. #define __XEN_GUEST_HANDLE(name) __guest_handle_ ## name
  51. #define XEN_GUEST_HANDLE(name) __XEN_GUEST_HANDLE(name)
  52. #define XEN_GUEST_HANDLE_PARAM(name) XEN_GUEST_HANDLE(name)
  53. #define set_xen_guest_handle_raw(hnd, val) do { (hnd).p = val; } while (0)
  54. #ifdef __XEN_TOOLS__
  55. #define get_xen_guest_handle(val, hnd) do { val = (hnd).p; } while (0)
  56. #endif
  57. #define set_xen_guest_handle(hnd, val) set_xen_guest_handle_raw(hnd, val)
  58. #if defined(__i386__)
  59. #include "xen-x86_32.h"
  60. #elif defined(__x86_64__)
  61. #include "xen-x86_64.h"
  62. #endif
  63. #ifndef __ASSEMBLY__
  64. typedef unsigned long xen_pfn_t;
  65. #define PRI_xen_pfn "lx"
  66. #endif
  67. #define XEN_HAVE_PV_GUEST_ENTRY 1
  68. #define XEN_HAVE_PV_UPCALL_MASK 1
  69. /*
  70. * `incontents 200 segdesc Segment Descriptor Tables
  71. */
  72. /*
  73. * ` enum neg_errnoval
  74. * ` HYPERVISOR_set_gdt(const xen_pfn_t frames[], unsigned int entries);
  75. * `
  76. */
  77. /*
  78. * A number of GDT entries are reserved by Xen. These are not situated at the
  79. * start of the GDT because some stupid OSes export hard-coded selector values
  80. * in their ABI. These hard-coded values are always near the start of the GDT,
  81. * so Xen places itself out of the way, at the far end of the GDT.
  82. *
  83. * NB The LDT is set using the MMUEXT_SET_LDT op of HYPERVISOR_mmuext_op
  84. */
  85. #define FIRST_RESERVED_GDT_PAGE 14
  86. #define FIRST_RESERVED_GDT_BYTE (FIRST_RESERVED_GDT_PAGE * 4096)
  87. #define FIRST_RESERVED_GDT_ENTRY (FIRST_RESERVED_GDT_BYTE / 8)
  88. /*
  89. * ` enum neg_errnoval
  90. * ` HYPERVISOR_update_descriptor(u64 pa, u64 desc);
  91. * `
  92. * ` @pa The machine physical address of the descriptor to
  93. * ` update. Must be either a descriptor page or writable.
  94. * ` @desc The descriptor value to update, in the same format as a
  95. * ` native descriptor table entry.
  96. */
  97. /* Maximum number of virtual CPUs in legacy multi-processor guests. */
  98. #define XEN_LEGACY_MAX_VCPUS 32
  99. #ifndef __ASSEMBLY__
  100. typedef unsigned long xen_ulong_t;
  101. #define PRI_xen_ulong "lx"
  102. /*
  103. * ` enum neg_errnoval
  104. * ` HYPERVISOR_stack_switch(unsigned long ss, unsigned long esp);
  105. * `
  106. * Sets the stack segment and pointer for the current vcpu.
  107. */
  108. /*
  109. * ` enum neg_errnoval
  110. * ` HYPERVISOR_set_trap_table(const struct trap_info traps[]);
  111. * `
  112. */
  113. /*
  114. * Send an array of these to HYPERVISOR_set_trap_table().
  115. * Terminate the array with a sentinel entry, with traps[].address==0.
  116. * The privilege level specifies which modes may enter a trap via a software
  117. * interrupt. On x86/64, since rings 1 and 2 are unavailable, we allocate
  118. * privilege levels as follows:
  119. * Level == 0: Noone may enter
  120. * Level == 1: Kernel may enter
  121. * Level == 2: Kernel may enter
  122. * Level == 3: Everyone may enter
  123. */
  124. #define TI_GET_DPL(_ti) ((_ti)->flags & 3)
  125. #define TI_GET_IF(_ti) ((_ti)->flags & 4)
  126. #define TI_SET_DPL(_ti,_dpl) ((_ti)->flags |= (_dpl))
  127. #define TI_SET_IF(_ti,_if) ((_ti)->flags |= ((!!(_if))<<2))
  128. struct trap_info {
  129. uint8_t vector; /* exception vector */
  130. uint8_t flags; /* 0-3: privilege level; 4: clear event enable? */
  131. uint16_t cs; /* code selector */
  132. unsigned long address; /* code offset */
  133. };
  134. typedef struct trap_info trap_info_t;
  135. DEFINE_XEN_GUEST_HANDLE(trap_info_t);
  136. typedef uint64_t tsc_timestamp_t; /* RDTSC timestamp */
  137. /*
  138. * The following is all CPU context. Note that the fpu_ctxt block is filled
  139. * in by FXSAVE if the CPU has feature FXSR; otherwise FSAVE is used.
  140. *
  141. * Also note that when calling DOMCTL_setvcpucontext and VCPU_initialise
  142. * for HVM and PVH guests, not all information in this structure is updated:
  143. *
  144. * - For HVM guests, the structures read include: fpu_ctxt (if
  145. * VGCT_I387_VALID is set), flags, user_regs, debugreg[*]
  146. *
  147. * - PVH guests are the same as HVM guests, but additionally use ctrlreg[3] to
  148. * set cr3. All other fields not used should be set to 0.
  149. */
  150. struct vcpu_guest_context {
  151. /* FPU registers come first so they can be aligned for FXSAVE/FXRSTOR. */
  152. struct { char x[512]; } fpu_ctxt; /* User-level FPU registers */
  153. #define VGCF_I387_VALID (1<<0)
  154. #define VGCF_IN_KERNEL (1<<2)
  155. #define _VGCF_i387_valid 0
  156. #define VGCF_i387_valid (1<<_VGCF_i387_valid)
  157. #define _VGCF_in_kernel 2
  158. #define VGCF_in_kernel (1<<_VGCF_in_kernel)
  159. #define _VGCF_failsafe_disables_events 3
  160. #define VGCF_failsafe_disables_events (1<<_VGCF_failsafe_disables_events)
  161. #define _VGCF_syscall_disables_events 4
  162. #define VGCF_syscall_disables_events (1<<_VGCF_syscall_disables_events)
  163. #define _VGCF_online 5
  164. #define VGCF_online (1<<_VGCF_online)
  165. unsigned long flags; /* VGCF_* flags */
  166. struct cpu_user_regs user_regs; /* User-level CPU registers */
  167. struct trap_info trap_ctxt[256]; /* Virtual IDT */
  168. unsigned long ldt_base, ldt_ents; /* LDT (linear address, # ents) */
  169. unsigned long gdt_frames[16], gdt_ents; /* GDT (machine frames, # ents) */
  170. unsigned long kernel_ss, kernel_sp; /* Virtual TSS (only SS1/SP1) */
  171. /* NB. User pagetable on x86/64 is placed in ctrlreg[1]. */
  172. unsigned long ctrlreg[8]; /* CR0-CR7 (control registers) */
  173. unsigned long debugreg[8]; /* DB0-DB7 (debug registers) */
  174. #ifdef __i386__
  175. unsigned long event_callback_cs; /* CS:EIP of event callback */
  176. unsigned long event_callback_eip;
  177. unsigned long failsafe_callback_cs; /* CS:EIP of failsafe callback */
  178. unsigned long failsafe_callback_eip;
  179. #else
  180. unsigned long event_callback_eip;
  181. unsigned long failsafe_callback_eip;
  182. #ifdef __XEN__
  183. union {
  184. unsigned long syscall_callback_eip;
  185. struct {
  186. unsigned int event_callback_cs; /* compat CS of event cb */
  187. unsigned int failsafe_callback_cs; /* compat CS of failsafe cb */
  188. };
  189. };
  190. #else
  191. unsigned long syscall_callback_eip;
  192. #endif
  193. #endif
  194. unsigned long vm_assist; /* VMASST_TYPE_* bitmap */
  195. #ifdef __x86_64__
  196. /* Segment base addresses. */
  197. uint64_t fs_base;
  198. uint64_t gs_base_kernel;
  199. uint64_t gs_base_user;
  200. #endif
  201. };
  202. typedef struct vcpu_guest_context vcpu_guest_context_t;
  203. DEFINE_XEN_GUEST_HANDLE(vcpu_guest_context_t);
  204. struct arch_shared_info {
  205. unsigned long max_pfn; /* max pfn that appears in table */
  206. /* Frame containing list of mfns containing list of mfns containing p2m. */
  207. xen_pfn_t pfn_to_mfn_frame_list_list;
  208. unsigned long nmi_reason;
  209. uint64_t pad[32];
  210. };
  211. typedef struct arch_shared_info arch_shared_info_t;
  212. #endif /* !__ASSEMBLY__ */
  213. /*
  214. * ` enum neg_errnoval
  215. * ` HYPERVISOR_fpu_taskswitch(int set);
  216. * `
  217. * Sets (if set!=0) or clears (if set==0) CR0.TS.
  218. */
  219. /*
  220. * ` enum neg_errnoval
  221. * ` HYPERVISOR_set_debugreg(int regno, unsigned long value);
  222. *
  223. * ` unsigned long
  224. * ` HYPERVISOR_get_debugreg(int regno);
  225. * For 0<=reg<=7, returns the debug register value.
  226. * For other values of reg, returns ((unsigned long)-EINVAL).
  227. * (Unfortunately, this interface is defective.)
  228. */
  229. /*
  230. * Prefix forces emulation of some non-trapping instructions.
  231. * Currently only CPUID.
  232. */
  233. #ifdef __ASSEMBLY__
  234. #define XEN_EMULATE_PREFIX .byte 0x0f,0x0b,0x78,0x65,0x6e ;
  235. #define XEN_CPUID XEN_EMULATE_PREFIX cpuid
  236. #else
  237. #define XEN_EMULATE_PREFIX ".byte 0x0f,0x0b,0x78,0x65,0x6e ; "
  238. #define XEN_CPUID XEN_EMULATE_PREFIX "cpuid"
  239. #endif
  240. #endif /* __XEN_PUBLIC_ARCH_X86_XEN_H__ */
  241. /*
  242. * Local variables:
  243. * mode: C
  244. * c-file-style: "BSD"
  245. * c-basic-offset: 4
  246. * tab-width: 4
  247. * indent-tabs-mode: nil
  248. * End:
  249. */