iPXE
xen.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: MIT */
2/******************************************************************************
3 * arch-x86/xen.h
4 *
5 * Guest OS interface to x86 Xen.
6 *
7 * Copyright (c) 2004-2006, K A Fraser
8 */
9
10#ifndef __XEN_PUBLIC_ARCH_X86_XEN_H__
11#define __XEN_PUBLIC_ARCH_X86_XEN_H__
12
14FILE_SECBOOT ( PERMITTED );
15
16/* Structural guest handles introduced in 0x00030201. */
17#if __XEN_INTERFACE_VERSION__ >= 0x00030201
18#define ___DEFINE_XEN_GUEST_HANDLE(name, type) \
19 typedef struct { type *p; } __guest_handle_ ## name
20#else
21#define ___DEFINE_XEN_GUEST_HANDLE(name, type) \
22 typedef type * __guest_handle_ ## name
23#endif
24
25/*
26 * XEN_GUEST_HANDLE represents a guest pointer, when passed as a field
27 * in a struct in memory.
28 * XEN_GUEST_HANDLE_PARAM represent a guest pointer, when passed as an
29 * hypercall argument.
30 * XEN_GUEST_HANDLE_PARAM and XEN_GUEST_HANDLE are the same on X86 but
31 * they might not be on other architectures.
32 */
33#define __DEFINE_XEN_GUEST_HANDLE(name, type) \
34 ___DEFINE_XEN_GUEST_HANDLE(name, type); \
35 ___DEFINE_XEN_GUEST_HANDLE(const_##name, const type)
36#define DEFINE_XEN_GUEST_HANDLE(name) __DEFINE_XEN_GUEST_HANDLE(name, name)
37#define __XEN_GUEST_HANDLE(name) __guest_handle_ ## name
38#define XEN_GUEST_HANDLE(name) __XEN_GUEST_HANDLE(name)
39#define XEN_GUEST_HANDLE_PARAM(name) XEN_GUEST_HANDLE(name)
40#define set_xen_guest_handle_raw(hnd, val) do { (hnd).p = (val); } while (0)
41#define set_xen_guest_handle(hnd, val) set_xen_guest_handle_raw(hnd, val)
42
43#if defined(__i386__)
44# ifdef __XEN__
45__DeFiNe__ __DECL_REG_LO8(which) uint32_t e ## which ## x
46__DeFiNe__ __DECL_REG_LO16(name) union { uint32_t e ## name; }
47# endif
48#include "xen-x86_32.h"
49# ifdef __XEN__
50__UnDeF__ __DECL_REG_LO8
51__UnDeF__ __DECL_REG_LO16
52__DeFiNe__ __DECL_REG_LO8(which) e ## which ## x
53__DeFiNe__ __DECL_REG_LO16(name) e ## name
54# endif
55#elif defined(__x86_64__)
56#include "xen-x86_64.h"
57#endif
58
59#ifndef __ASSEMBLY__
60typedef unsigned long xen_pfn_t;
61#define PRI_xen_pfn "lx"
62#define PRIu_xen_pfn "lu"
63#endif
64
65#define XEN_HAVE_PV_GUEST_ENTRY 1
66
67#define XEN_HAVE_PV_UPCALL_MASK 1
68
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
90/*
91 * ` enum neg_errnoval
92 * ` HYPERVISOR_update_descriptor(u64 pa, u64 desc);
93 * `
94 * ` @pa The machine physical address of the descriptor to
95 * ` update. Must be either a descriptor page or writable.
96 * ` @desc The descriptor value to update, in the same format as a
97 * ` native descriptor table entry.
98 */
99
100/* Maximum number of virtual CPUs in legacy multi-processor guests. */
101#define XEN_LEGACY_MAX_VCPUS 32
102
103#ifndef __ASSEMBLY__
104
105typedef unsigned long xen_ulong_t;
106#define PRI_xen_ulong "lx"
107
108/*
109 * ` enum neg_errnoval
110 * ` HYPERVISOR_stack_switch(unsigned long ss, unsigned long esp);
111 * `
112 * Sets the stack segment and pointer for the current vcpu.
113 */
114
115/*
116 * ` enum neg_errnoval
117 * ` HYPERVISOR_set_trap_table(const struct trap_info traps[]);
118 * `
119 */
120/*
121 * Send an array of these to HYPERVISOR_set_trap_table().
122 * Terminate the array with a sentinel entry, with traps[].address==0.
123 * The privilege level specifies which modes may enter a trap via a software
124 * interrupt. On x86/64, since rings 1 and 2 are unavailable, we allocate
125 * privilege levels as follows:
126 * Level == 0: Noone may enter
127 * Level == 1: Kernel may enter
128 * Level == 2: Kernel may enter
129 * Level == 3: Everyone may enter
130 *
131 * Note: For compatibility with kernels not setting up exception handlers
132 * early enough, Xen will avoid trying to inject #GP (and hence crash
133 * the domain) when an RDMSR would require this, but no handler was
134 * set yet. The precise conditions are implementation specific, and
135 * new code may not rely on such behavior anyway.
136 */
137#define TI_GET_DPL(_ti) ((_ti)->flags & 3)
138#define TI_GET_IF(_ti) ((_ti)->flags & 4)
139#define TI_SET_DPL(_ti,_dpl) ((_ti)->flags |= (_dpl))
140#define TI_SET_IF(_ti,_if) ((_ti)->flags |= ((!!(_if))<<2))
141struct trap_info {
142 uint8_t vector; /* exception vector */
143 uint8_t flags; /* 0-3: privilege level; 4: clear event enable? */
144 uint16_t cs; /* code selector */
145 unsigned long address; /* code offset */
146};
147typedef struct trap_info trap_info_t;
149
150typedef uint64_t tsc_timestamp_t; /* RDTSC timestamp */
151
152/*
153 * The following is all CPU context. Note that the fpu_ctxt block is filled
154 * in by FXSAVE if the CPU has feature FXSR; otherwise FSAVE is used.
155 *
156 * Also note that when calling DOMCTL_setvcpucontext for HVM guests, not all
157 * information in this structure is updated, the fields read include: fpu_ctxt
158 * (if VGCT_I387_VALID is set), flags, user_regs and debugreg[*].
159 *
160 * Note: VCPUOP_initialise for HVM guests is non-symetric with
161 * DOMCTL_setvcpucontext, and uses struct vcpu_hvm_context from hvm/hvm_vcpu.h
162 */
163struct vcpu_guest_context {
164 /* FPU registers come first so they can be aligned for FXSAVE/FXRSTOR. */
165 struct { char x[512]; } fpu_ctxt; /* User-level FPU registers */
166#define VGCF_I387_VALID (1<<0)
167#define VGCF_IN_KERNEL (1<<2)
168#define _VGCF_i387_valid 0
169#define VGCF_i387_valid (1<<_VGCF_i387_valid)
170#define _VGCF_in_kernel 2
171#define VGCF_in_kernel (1<<_VGCF_in_kernel)
172#define _VGCF_failsafe_disables_events 3
173#define VGCF_failsafe_disables_events (1<<_VGCF_failsafe_disables_events)
174#define _VGCF_syscall_disables_events 4
175#define VGCF_syscall_disables_events (1<<_VGCF_syscall_disables_events)
176#define _VGCF_online 5
177#define VGCF_online (1<<_VGCF_online)
178 unsigned long flags; /* VGCF_* flags */
179
180 /*
181 * Outside of Xen, regs type stays named cpu_user_regs for backwards
182 * compatibility. Inside Xen, the type called cpu_user_regs is different,
183 * and the public API type is renamed to guest_user_regs.
184 */
185#ifdef __XEN__
186 struct guest_user_regs user_regs; /* User-level CPU registers */
187#else
188 struct cpu_user_regs user_regs; /* User-level CPU registers */
189#endif
190
191 struct trap_info trap_ctxt[256]; /* Virtual IDT */
192 unsigned long ldt_base, ldt_ents; /* LDT (linear address, # ents) */
193 unsigned long gdt_frames[16], gdt_ents; /* GDT (machine frames, # ents) */
194 unsigned long kernel_ss, kernel_sp; /* Virtual TSS (only SS1/SP1) */
195 /* NB. User pagetable on x86/64 is placed in ctrlreg[1]. */
196 unsigned long ctrlreg[8]; /* CR0-CR7 (control registers) */
197 unsigned long debugreg[8]; /* DB0-DB7 (debug registers) */
198#ifdef __i386__
199 unsigned long event_callback_cs; /* CS:EIP of event callback */
200 unsigned long event_callback_eip;
201 unsigned long failsafe_callback_cs; /* CS:EIP of failsafe callback */
202 unsigned long failsafe_callback_eip;
203#else
204 unsigned long event_callback_eip;
206#ifdef __XEN__
207 union {
208 unsigned long syscall_callback_eip;
209 struct {
210 unsigned int event_callback_cs; /* compat CS of event cb */
211 unsigned int failsafe_callback_cs; /* compat CS of failsafe cb */
212 };
213 };
214#else
215 unsigned long syscall_callback_eip;
216#endif
217#endif
218 unsigned long vm_assist; /* VMASST_TYPE_* bitmap */
219#ifdef __x86_64__
220 /* Segment base addresses. */
221 uint64_t fs_base;
222 uint64_t gs_base_kernel;
223 uint64_t gs_base_user;
224#endif
225};
228
229struct arch_shared_info {
230 /*
231 * Number of valid entries in the p2m table(s) anchored at
232 * pfn_to_mfn_frame_list_list and/or p2m_vaddr.
233 */
234 unsigned long max_pfn;
235 /*
236 * Frame containing list of mfns containing list of mfns containing p2m.
237 * A value of 0 indicates it has not yet been set up, ~0 indicates it has
238 * been set to invalid e.g. due to the p2m being too large for the 3-level
239 * p2m tree. In this case the linear mapper p2m list anchored at p2m_vaddr
240 * is to be used.
241 */
243 unsigned long nmi_reason;
244 /*
245 * Following three fields are valid if p2m_cr3 contains a value different
246 * from 0.
247 * p2m_cr3 is the root of the address space where p2m_vaddr is valid.
248 * p2m_cr3 is in the same format as a cr3 value in the vcpu register state
249 * and holds the folded machine frame number (via xen_pfn_to_cr3) of a
250 * L3 or L4 page table.
251 * p2m_vaddr holds the virtual address of the linear p2m list. All entries
252 * in the range [0...max_pfn[ are accessible via this pointer.
253 * p2m_generation will be incremented by the guest before and after each
254 * change of the mappings of the p2m list. p2m_generation starts at 0 and
255 * a value with the least significant bit set indicates that a mapping
256 * update is in progress. This allows guest external software (e.g. in Dom0)
257 * to verify that read mappings are consistent and whether they have changed
258 * since the last check.
259 * Modifying a p2m element in the linear p2m list is allowed via an atomic
260 * write only.
261 */
262 unsigned long p2m_cr3; /* cr3 value of the p2m address space */
263 unsigned long p2m_vaddr; /* virtual address of the p2m list */
264 unsigned long p2m_generation; /* generation count of p2m mapping */
265#ifdef __i386__
266 /* There's no room for this field in the generic structure. */
267 uint32_t wc_sec_hi;
268#endif
269};
271
272#if defined(__XEN__) || defined(__XEN_TOOLS__)
273/*
274 * struct xen_arch_domainconfig's ABI is covered by
275 * XEN_DOMCTL_INTERFACE_VERSION.
276 */
278#define _XEN_X86_EMU_LAPIC 0
279#define XEN_X86_EMU_LAPIC (1U<<_XEN_X86_EMU_LAPIC)
280#define _XEN_X86_EMU_HPET 1
281#define XEN_X86_EMU_HPET (1U<<_XEN_X86_EMU_HPET)
282#define _XEN_X86_EMU_PM 2
283#define XEN_X86_EMU_PM (1U<<_XEN_X86_EMU_PM)
284#define _XEN_X86_EMU_RTC 3
285#define XEN_X86_EMU_RTC (1U<<_XEN_X86_EMU_RTC)
286#define _XEN_X86_EMU_IOAPIC 4
287#define XEN_X86_EMU_IOAPIC (1U<<_XEN_X86_EMU_IOAPIC)
288#define _XEN_X86_EMU_PIC 5
289#define XEN_X86_EMU_PIC (1U<<_XEN_X86_EMU_PIC)
290#define _XEN_X86_EMU_VGA 6
291#define XEN_X86_EMU_VGA (1U<<_XEN_X86_EMU_VGA)
292#define _XEN_X86_EMU_IOMMU 7
293#define XEN_X86_EMU_IOMMU (1U<<_XEN_X86_EMU_IOMMU)
294#define _XEN_X86_EMU_PIT 8
295#define XEN_X86_EMU_PIT (1U<<_XEN_X86_EMU_PIT)
296#define _XEN_X86_EMU_USE_PIRQ 9
297#define XEN_X86_EMU_USE_PIRQ (1U<<_XEN_X86_EMU_USE_PIRQ)
298#define _XEN_X86_EMU_VPCI 10
299#define XEN_X86_EMU_VPCI (1U<<_XEN_X86_EMU_VPCI)
300
301#define XEN_X86_EMU_ALL (XEN_X86_EMU_LAPIC | XEN_X86_EMU_HPET | \
302 XEN_X86_EMU_PM | XEN_X86_EMU_RTC | \
303 XEN_X86_EMU_IOAPIC | XEN_X86_EMU_PIC | \
304 XEN_X86_EMU_VGA | XEN_X86_EMU_IOMMU | \
305 XEN_X86_EMU_PIT | XEN_X86_EMU_USE_PIRQ |\
306 XEN_X86_EMU_VPCI)
307 uint32_t emulation_flags;
308
309/*
310 * Select whether to use a relaxed behavior for accesses to MSRs not explicitly
311 * handled by Xen instead of injecting a #GP to the guest. Note this option
312 * doesn't allow the guest to read or write to the underlying MSR.
313 */
314#define XEN_X86_MSR_RELAXED (1u << 0)
315 uint32_t misc_flags;
316};
317
318/* Max XEN_X86_* constant. Used for ABI checking. */
319#define XEN_X86_MISC_FLAGS_MAX XEN_X86_MSR_RELAXED
320
321#endif
322
323/*
324 * Representations of architectural CPUID and MSR information. Used as the
325 * serialised version of Xen's internal representation.
326 */
327typedef struct xen_cpuid_leaf {
328#define XEN_CPUID_NO_SUBLEAF 0xffffffffu
333
340
341#endif /* !__ASSEMBLY__ */
342
343/*
344 * ` enum neg_errnoval
345 * ` HYPERVISOR_fpu_taskswitch(int set);
346 * `
347 * Sets (if set!=0) or clears (if set==0) CR0.TS.
348 */
349
350/*
351 * ` enum neg_errnoval
352 * ` HYPERVISOR_set_debugreg(int regno, unsigned long value);
353 *
354 * ` unsigned long
355 * ` HYPERVISOR_get_debugreg(int regno);
356 * For 0<=reg<=7, returns the debug register value.
357 * For other values of reg, returns ((unsigned long)-EINVAL).
358 * (Unfortunately, this interface is defective.)
359 */
360
361/*
362 * Prefix forces emulation of some non-trapping instructions.
363 * Currently only CPUID.
364 */
365#ifdef __ASSEMBLY__
366#define XEN_EMULATE_PREFIX .byte 0x0f,0x0b,0x78,0x65,0x6e ;
367#define XEN_CPUID XEN_EMULATE_PREFIX cpuid
368#else
369#define XEN_EMULATE_PREFIX ".byte 0x0f,0x0b,0x78,0x65,0x6e ; "
370#define XEN_CPUID XEN_EMULATE_PREFIX "cpuid"
371#endif
372
373/*
374 * Debug console IO port, also called "port E9 hack". Each character written
375 * to this IO port will be printed on the hypervisor console, subject to log
376 * level restrictions.
377 */
378#define XEN_HVM_DEBUGCONS_IOPORT 0xe9
379
380#endif /* __XEN_PUBLIC_ARCH_X86_XEN_H__ */
381
382/*
383 * Local variables:
384 * mode: C
385 * c-file-style: "BSD"
386 * c-basic-offset: 4
387 * tab-width: 4
388 * indent-tabs-mode: nil
389 * End:
390 */
struct arch_shared_info arch_shared_info_t
Definition arch-arm.h:370
struct vcpu_guest_context vcpu_guest_context_t
Definition arch-ppc.h:93
uint64_t tsc_timestamp_t
Definition arch-ppc.h:85
unsigned short uint16_t
Definition stdint.h:11
unsigned int uint32_t
Definition stdint.h:12
unsigned long long uint64_t
Definition stdint.h:13
unsigned char uint8_t
Definition stdint.h:10
const char * name
Definition ath9k_hw.c:1986
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
struct xen_msr_entry xen_msr_entry_t
struct xen_cpuid_leaf xen_cpuid_leaf_t
struct trap_info trap_info_t
Definition xen.h:147
#define DEFINE_XEN_GUEST_HANDLE(name)
Definition xen.h:36
unsigned long xen_ulong_t
Definition nonxen.h:30
unsigned long xen_pfn_t
Definition nonxen.h:28
static unsigned int x
Definition pixbuf.h:63
unsigned long max_pfn
Definition xen.h:234
unsigned long p2m_vaddr
Definition xen.h:263
unsigned long p2m_cr3
Definition xen.h:262
unsigned long nmi_reason
Definition xen.h:243
xen_pfn_t pfn_to_mfn_frame_list_list
Definition xen.h:242
unsigned long p2m_generation
Definition xen.h:264
uint16_t cs
Definition xen.h:144
unsigned long address
Definition xen.h:145
uint8_t flags
Definition xen.h:143
uint8_t vector
Definition xen.h:142
unsigned long debugreg[8]
Definition xen.h:197
unsigned long event_callback_eip
Definition xen.h:204
vcpu_guest_core_regs_t user_regs
Definition arch-ppc.h:89
unsigned long gdt_frames[16]
Definition xen.h:193
unsigned long flags
Definition xen.h:178
unsigned long syscall_callback_eip
Definition xen.h:215
unsigned long kernel_sp
Definition xen.h:194
unsigned long ldt_base
Definition xen.h:192
struct vcpu_guest_context::@016320351212361255302317103346320207261167015125 fpu_ctxt
unsigned long kernel_ss
Definition xen.h:194
unsigned long ldt_ents
Definition xen.h:192
unsigned long failsafe_callback_eip
Definition xen.h:205
char x[512]
Definition xen.h:165
unsigned long ctrlreg[8]
Definition xen.h:196
unsigned long vm_assist
Definition xen.h:218
unsigned long gdt_ents
Definition xen.h:193
struct trap_info trap_ctxt[256]
Definition xen.h:191
uint32_t b
Definition xen.h:330
uint32_t subleaf
Definition xen.h:329
uint32_t a
Definition xen.h:330
uint32_t d
Definition xen.h:330
uint32_t leaf
Definition xen.h:329
uint32_t c
Definition xen.h:330
Definition xen.h:334
uint32_t flags
Definition xen.h:336
uint32_t idx
Definition xen.h:335
uint64_t val
Definition xen.h:337
#define __DECL_REG_LO16(name)
Definition xen-x86_32.h:117
#define __DECL_REG_LO8(which)
Definition xen-x86_32.h:116