VirtualBox

source: vbox/trunk/include/VBox/vmm/hm_svm.h@ 67937

Last change on this file since 67937 was 67916, checked in by vboxsync, 7 years ago

VMM: Comments, clean up.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 40.3 KB
Line 
1/** @file
2 * HM - SVM (AMD-V) Structures and Definitions. (VMM)
3 */
4
5/*
6 * Copyright (C) 2006-2016 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___VBox_vmm_svm_h
27#define ___VBox_vmm_svm_h
28
29#include <VBox/types.h>
30#include <VBox/err.h>
31#include <iprt/assert.h>
32#include <iprt/asm.h>
33
34#ifdef RT_OS_SOLARIS
35# undef ES
36# undef CS
37# undef DS
38# undef SS
39# undef FS
40# undef GS
41#endif
42
43/** @defgroup grp_hm_svm SVM (AMD-V) Types and Definitions
44 * @ingroup grp_hm
45 * @{
46 */
47
48/** @name SVM generic / convenient defines.
49 * @{
50 */
51/** Number of pages required for the VMCB. */
52#define SVM_VMCB_PAGES 1
53/** Number of pages required for the MSR permission bitmap. */
54#define SVM_MSRPM_PAGES 2
55/** Number of pages required for the IO permission bitmap. */
56#define SVM_IOPM_PAGES 3
57/** @} */
58
59/*
60 * Ugly!
61 * When compiling the recompiler, its own svm.h defines clash with
62 * the following defines. Avoid just the duplicates here as we still
63 * require other definitions and structures in this header.
64 */
65#ifndef IN_REM_R3
66/** @name SVM_EXIT_XXX - SVM Basic Exit Reasons.
67 * @{
68 */
69/** Invalid guest state in VMCB. */
70# define SVM_EXIT_INVALID (uint64_t)(-1)
71/** Read from CR0-CR15. */
72# define SVM_EXIT_READ_CR0 0x0
73# define SVM_EXIT_READ_CR1 0x1
74# define SVM_EXIT_READ_CR2 0x2
75# define SVM_EXIT_READ_CR3 0x3
76# define SVM_EXIT_READ_CR4 0x4
77# define SVM_EXIT_READ_CR5 0x5
78# define SVM_EXIT_READ_CR6 0x6
79# define SVM_EXIT_READ_CR7 0x7
80# define SVM_EXIT_READ_CR8 0x8
81# define SVM_EXIT_READ_CR9 0x9
82# define SVM_EXIT_READ_CR10 0xA
83# define SVM_EXIT_READ_CR11 0xB
84# define SVM_EXIT_READ_CR12 0xC
85# define SVM_EXIT_READ_CR13 0xD
86# define SVM_EXIT_READ_CR14 0xE
87# define SVM_EXIT_READ_CR15 0xF
88/** Writes to CR0-CR15. */
89# define SVM_EXIT_WRITE_CR0 0x10
90# define SVM_EXIT_WRITE_CR1 0x11
91# define SVM_EXIT_WRITE_CR2 0x12
92# define SVM_EXIT_WRITE_CR3 0x13
93# define SVM_EXIT_WRITE_CR4 0x14
94# define SVM_EXIT_WRITE_CR5 0x15
95# define SVM_EXIT_WRITE_CR6 0x16
96# define SVM_EXIT_WRITE_CR7 0x17
97# define SVM_EXIT_WRITE_CR8 0x18
98# define SVM_EXIT_WRITE_CR9 0x19
99# define SVM_EXIT_WRITE_CR10 0x1A
100# define SVM_EXIT_WRITE_CR11 0x1B
101# define SVM_EXIT_WRITE_CR12 0x1C
102# define SVM_EXIT_WRITE_CR13 0x1D
103# define SVM_EXIT_WRITE_CR14 0x1E
104# define SVM_EXIT_WRITE_CR15 0x1F
105/** Read from DR0-DR15. */
106# define SVM_EXIT_READ_DR0 0x20
107# define SVM_EXIT_READ_DR1 0x21
108# define SVM_EXIT_READ_DR2 0x22
109# define SVM_EXIT_READ_DR3 0x23
110# define SVM_EXIT_READ_DR4 0x24
111# define SVM_EXIT_READ_DR5 0x25
112# define SVM_EXIT_READ_DR6 0x26
113# define SVM_EXIT_READ_DR7 0x27
114# define SVM_EXIT_READ_DR8 0x28
115# define SVM_EXIT_READ_DR9 0x29
116# define SVM_EXIT_READ_DR10 0x2A
117# define SVM_EXIT_READ_DR11 0x2B
118# define SVM_EXIT_READ_DR12 0x2C
119# define SVM_EXIT_READ_DR13 0x2D
120# define SVM_EXIT_READ_DR14 0x2E
121# define SVM_EXIT_READ_DR15 0x2F
122/** Writes to DR0-DR15. */
123# define SVM_EXIT_WRITE_DR0 0x30
124# define SVM_EXIT_WRITE_DR1 0x31
125# define SVM_EXIT_WRITE_DR2 0x32
126# define SVM_EXIT_WRITE_DR3 0x33
127# define SVM_EXIT_WRITE_DR4 0x34
128# define SVM_EXIT_WRITE_DR5 0x35
129# define SVM_EXIT_WRITE_DR6 0x36
130# define SVM_EXIT_WRITE_DR7 0x37
131# define SVM_EXIT_WRITE_DR8 0x38
132# define SVM_EXIT_WRITE_DR9 0x39
133# define SVM_EXIT_WRITE_DR10 0x3A
134# define SVM_EXIT_WRITE_DR11 0x3B
135# define SVM_EXIT_WRITE_DR12 0x3C
136# define SVM_EXIT_WRITE_DR13 0x3D
137# define SVM_EXIT_WRITE_DR14 0x3E
138# define SVM_EXIT_WRITE_DR15 0x3F
139/* Exception 0-31. */
140# define SVM_EXIT_EXCEPTION_0 0x40
141# define SVM_EXIT_EXCEPTION_1 0x41
142# define SVM_EXIT_EXCEPTION_2 0x42
143# define SVM_EXIT_EXCEPTION_3 0x43
144# define SVM_EXIT_EXCEPTION_4 0x44
145# define SVM_EXIT_EXCEPTION_5 0x45
146# define SVM_EXIT_EXCEPTION_6 0x46
147# define SVM_EXIT_EXCEPTION_7 0x47
148# define SVM_EXIT_EXCEPTION_8 0x48
149# define SVM_EXIT_EXCEPTION_9 0x49
150# define SVM_EXIT_EXCEPTION_10 0x4A
151# define SVM_EXIT_EXCEPTION_11 0x4B
152# define SVM_EXIT_EXCEPTION_12 0x4C
153# define SVM_EXIT_EXCEPTION_13 0x4D
154# define SVM_EXIT_EXCEPTION_14 0x4E
155# define SVM_EXIT_EXCEPTION_15 0x4F
156# define SVM_EXIT_EXCEPTION_16 0x50
157# define SVM_EXIT_EXCEPTION_17 0x51
158# define SVM_EXIT_EXCEPTION_18 0x52
159# define SVM_EXIT_EXCEPTION_19 0x53
160# define SVM_EXIT_EXCEPTION_20 0x54
161# define SVM_EXIT_EXCEPTION_21 0x55
162# define SVM_EXIT_EXCEPTION_22 0x56
163# define SVM_EXIT_EXCEPTION_23 0x57
164# define SVM_EXIT_EXCEPTION_24 0x58
165# define SVM_EXIT_EXCEPTION_25 0x59
166# define SVM_EXIT_EXCEPTION_26 0x5A
167# define SVM_EXIT_EXCEPTION_27 0x5B
168# define SVM_EXIT_EXCEPTION_28 0x5C
169# define SVM_EXIT_EXCEPTION_29 0x5D
170# define SVM_EXIT_EXCEPTION_30 0x5E
171# define SVM_EXIT_EXCEPTION_31 0x5F
172/** Physical maskable interrupt. */
173# define SVM_EXIT_INTR 0x60
174/** Non-maskable interrupt. */
175# define SVM_EXIT_NMI 0x61
176/** System Management interrupt. */
177# define SVM_EXIT_SMI 0x62
178/** Physical INIT signal. */
179# define SVM_EXIT_INIT 0x63
180/** Virtual interrupt. */
181# define SVM_EXIT_VINTR 0x64
182/** Write to CR0 that changed any bits other than CR0.TS or CR0.MP. */
183# define SVM_EXIT_CR0_SEL_WRITE 0x65
184/** IDTR read. */
185# define SVM_EXIT_IDTR_READ 0x66
186/** GDTR read. */
187# define SVM_EXIT_GDTR_READ 0x67
188/** LDTR read. */
189# define SVM_EXIT_LDTR_READ 0x68
190/** TR read. */
191# define SVM_EXIT_TR_READ 0x69
192/** IDTR write. */
193# define SVM_EXIT_IDTR_WRITE 0x6A
194/** GDTR write. */
195# define SVM_EXIT_GDTR_WRITE 0x6B
196/** LDTR write. */
197# define SVM_EXIT_LDTR_WRITE 0x6C
198/** TR write. */
199# define SVM_EXIT_TR_WRITE 0x6D
200/** RDTSC instruction. */
201# define SVM_EXIT_RDTSC 0x6E
202/** RDPMC instruction. */
203# define SVM_EXIT_RDPMC 0x6F
204/** PUSHF instruction. */
205# define SVM_EXIT_PUSHF 0x70
206/** POPF instruction. */
207# define SVM_EXIT_POPF 0x71
208/** CPUID instruction. */
209# define SVM_EXIT_CPUID 0x72
210/** RSM instruction. */
211# define SVM_EXIT_RSM 0x73
212/** IRET instruction. */
213# define SVM_EXIT_IRET 0x74
214/** software interrupt (INTn instructions). */
215# define SVM_EXIT_SWINT 0x75
216/** INVD instruction. */
217# define SVM_EXIT_INVD 0x76
218/** PAUSE instruction. */
219# define SVM_EXIT_PAUSE 0x77
220/** HLT instruction. */
221# define SVM_EXIT_HLT 0x78
222/** INVLPG instructions. */
223# define SVM_EXIT_INVLPG 0x79
224/** INVLPGA instruction. */
225# define SVM_EXIT_INVLPGA 0x7A
226/** IN or OUT accessing protected port (the EXITINFO1 field provides more information). */
227# define SVM_EXIT_IOIO 0x7B
228/** RDMSR or WRMSR access to protected MSR. */
229# define SVM_EXIT_MSR 0x7C
230/** task switch. */
231# define SVM_EXIT_TASK_SWITCH 0x7D
232/** FP legacy handling enabled, and processor is frozen in an x87/mmx instruction waiting for an interrupt. */
233# define SVM_EXIT_FERR_FREEZE 0x7E
234/** Shutdown. */
235# define SVM_EXIT_SHUTDOWN 0x7F
236/** VMRUN instruction. */
237# define SVM_EXIT_VMRUN 0x80
238/** VMMCALL instruction. */
239# define SVM_EXIT_VMMCALL 0x81
240/** VMLOAD instruction. */
241# define SVM_EXIT_VMLOAD 0x82
242/** VMSAVE instruction. */
243# define SVM_EXIT_VMSAVE 0x83
244/** STGI instruction. */
245# define SVM_EXIT_STGI 0x84
246/** CLGI instruction. */
247# define SVM_EXIT_CLGI 0x85
248/** SKINIT instruction. */
249# define SVM_EXIT_SKINIT 0x86
250/** RDTSCP instruction. */
251# define SVM_EXIT_RDTSCP 0x87
252/** ICEBP instruction. */
253# define SVM_EXIT_ICEBP 0x88
254/** WBINVD instruction. */
255# define SVM_EXIT_WBINVD 0x89
256/** MONITOR instruction. */
257# define SVM_EXIT_MONITOR 0x8A
258/** MWAIT instruction. */
259# define SVM_EXIT_MWAIT 0x8B
260/** MWAIT instruction, when armed. */
261# define SVM_EXIT_MWAIT_ARMED 0x8C
262/** XSETBV instruction. */
263# define SVM_EXIT_XSETBV 0x8D
264/** Nested paging: host-level page fault occurred (EXITINFO1 contains fault errorcode; EXITINFO2 contains the guest physical address causing the fault). */
265# define SVM_EXIT_NPF 0x400
266/** AVIC: Virtual IPI delivery not completed. */
267# define SVM_EXIT_AVIC_INCOMPLETE_IPI 0x401
268/** AVIC: Attempted access by guest to a vAPIC register not handled by AVIC
269 * hardware. */
270# define SVM_EXIT_AVIC_NOACCEL 0x402
271/** The maximum possible exit value. */
272# define SVM_EXIT_MAX (SVM_EXIT_AVIC_NOACCEL)
273/** @} */
274#endif /* !IN_REM_R3*/
275
276
277/** @name SVMVMCB.u64ExitInfo2 for task switches
278 * @{
279 */
280/** Set to 1 if the task switch was caused by an IRET; else cleared to 0. */
281#define SVM_EXIT2_TASK_SWITCH_IRET RT_BIT_64(36)
282/** Set to 1 if the task switch was caused by a far jump; else cleared to 0. */
283#define SVM_EXIT2_TASK_SWITCH_JMP RT_BIT_64(38)
284/** Set to 1 if the task switch has an error code; else cleared to 0. */
285#define SVM_EXIT2_TASK_SWITCH_HAS_ERROR_CODE RT_BIT_64(44)
286/** The value of EFLAGS.RF that would be saved in the outgoing TSS if the task switch were not intercepted. */
287#define SVM_EXIT2_TASK_SWITCH_EFLAGS_RF RT_BIT_64(48)
288/** @} */
289
290/** @name SVMVMCB.u64ExitInfo1 for MSR accesses
291 * @{
292 */
293/** The access was a read MSR. */
294#define SVM_EXIT1_MSR_READ 0x0
295/** The access was a write MSR. */
296#define SVM_EXIT1_MSR_WRITE 0x1
297/** @} */
298
299/** @name SVMVMCB.u64ExitInfo1 for Mov CRx accesses.
300 * @{
301 */
302/** The mask of whether the access was via a Mov CRx instruction. */
303#define SVM_EXIT1_MOV_CRX_MASK RT_BIT_64(63)
304/** The mask for the GPR number of the Mov CRx instruction. */
305#define SVM_EXIT1_MOV_CRX_GPR_NUMBER 0xf
306/** @} */
307
308/** @name SVMVMCB.u64ExitInfo1 for Mov DRx accesses.
309 * @{
310 */
311/** The mask for the GPR number of the Mov DRx instruction. */
312#define SVM_EXIT1_MOV_DRX_GPR_NUMBER 0xf
313/** @} */
314
315/** @name SVMVMCB.ctrl.u64InterceptCtrl
316 * @{
317 */
318/** Intercept INTR (physical maskable interrupt). */
319#define SVM_CTRL_INTERCEPT_INTR RT_BIT_64(0)
320/** Intercept NMI. */
321#define SVM_CTRL_INTERCEPT_NMI RT_BIT_64(1)
322/** Intercept SMI. */
323#define SVM_CTRL_INTERCEPT_SMI RT_BIT_64(2)
324/** Intercept INIT. */
325#define SVM_CTRL_INTERCEPT_INIT RT_BIT_64(3)
326/** Intercept VINTR (virtual maskable interrupt). */
327#define SVM_CTRL_INTERCEPT_VINTR RT_BIT_64(4)
328/** Intercept CR0 writes that change bits other than CR0.TS or CR0.MP */
329#define SVM_CTRL_INTERCEPT_CR0_SEL_WRITES RT_BIT_64(5)
330/** Intercept reads of IDTR. */
331#define SVM_CTRL_INTERCEPT_IDTR_READS RT_BIT_64(6)
332/** Intercept reads of GDTR. */
333#define SVM_CTRL_INTERCEPT_GDTR_READS RT_BIT_64(7)
334/** Intercept reads of LDTR. */
335#define SVM_CTRL_INTERCEPT_LDTR_READS RT_BIT_64(8)
336/** Intercept reads of TR. */
337#define SVM_CTRL_INTERCEPT_TR_READS RT_BIT_64(9)
338/** Intercept writes of IDTR. */
339#define SVM_CTRL_INTERCEPT_IDTR_WRITES RT_BIT_64(10)
340/** Intercept writes of GDTR. */
341#define SVM_CTRL_INTERCEPT_GDTR_WRITES RT_BIT_64(11)
342/** Intercept writes of LDTR. */
343#define SVM_CTRL_INTERCEPT_LDTR_WRITES RT_BIT_64(12)
344/** Intercept writes of TR. */
345#define SVM_CTRL_INTERCEPT_TR_WRITES RT_BIT_64(13)
346/** Intercept RDTSC instruction. */
347#define SVM_CTRL_INTERCEPT_RDTSC RT_BIT_64(14)
348/** Intercept RDPMC instruction. */
349#define SVM_CTRL_INTERCEPT_RDPMC RT_BIT_64(15)
350/** Intercept PUSHF instruction. */
351#define SVM_CTRL_INTERCEPT_PUSHF RT_BIT_64(16)
352/** Intercept POPF instruction. */
353#define SVM_CTRL_INTERCEPT_POPF RT_BIT_64(17)
354/** Intercept CPUID instruction. */
355#define SVM_CTRL_INTERCEPT_CPUID RT_BIT_64(18)
356/** Intercept RSM instruction. */
357#define SVM_CTRL_INTERCEPT_RSM RT_BIT_64(19)
358/** Intercept IRET instruction. */
359#define SVM_CTRL_INTERCEPT_IRET RT_BIT_64(20)
360/** Intercept INTn instruction. */
361#define SVM_CTRL_INTERCEPT_INTN RT_BIT_64(21)
362/** Intercept INVD instruction. */
363#define SVM_CTRL_INTERCEPT_INVD RT_BIT_64(22)
364/** Intercept PAUSE instruction. */
365#define SVM_CTRL_INTERCEPT_PAUSE RT_BIT_64(23)
366/** Intercept HLT instruction. */
367#define SVM_CTRL_INTERCEPT_HLT RT_BIT_64(24)
368/** Intercept INVLPG instruction. */
369#define SVM_CTRL_INTERCEPT_INVLPG RT_BIT_64(25)
370/** Intercept INVLPGA instruction. */
371#define SVM_CTRL_INTERCEPT_INVLPGA RT_BIT_64(26)
372/** IOIO_PROT Intercept IN/OUT accesses to selected ports. */
373#define SVM_CTRL_INTERCEPT_IOIO_PROT RT_BIT_64(27)
374/** MSR_PROT Intercept RDMSR or WRMSR accesses to selected MSRs. */
375#define SVM_CTRL_INTERCEPT_MSR_PROT RT_BIT_64(28)
376/** Intercept task switches. */
377#define SVM_CTRL_INTERCEPT_TASK_SWITCH RT_BIT_64(29)
378/** FERR_FREEZE: intercept processor "freezing" during legacy FERR handling. */
379#define SVM_CTRL_INTERCEPT_FERR_FREEZE RT_BIT_64(30)
380/** Intercept shutdown events. */
381#define SVM_CTRL_INTERCEPT_SHUTDOWN RT_BIT_64(31)
382/** Intercept VMRUN instruction. */
383#define SVM_CTRL_INTERCEPT_VMRUN RT_BIT_64(32 + 0)
384/** Intercept VMMCALL instruction. */
385#define SVM_CTRL_INTERCEPT_VMMCALL RT_BIT_64(32 + 1)
386/** Intercept VMLOAD instruction. */
387#define SVM_CTRL_INTERCEPT_VMLOAD RT_BIT_64(32 + 2)
388/** Intercept VMSAVE instruction. */
389#define SVM_CTRL_INTERCEPT_VMSAVE RT_BIT_64(32 + 3)
390/** Intercept STGI instruction. */
391#define SVM_CTRL_INTERCEPT_STGI RT_BIT_64(32 + 4)
392/** Intercept CLGI instruction. */
393#define SVM_CTRL_INTERCEPT_CLGI RT_BIT_64(32 + 5)
394/** Intercept SKINIT instruction. */
395#define SVM_CTRL_INTERCEPT_SKINIT RT_BIT_64(32 + 6)
396/** Intercept RDTSCP instruction. */
397#define SVM_CTRL_INTERCEPT_RDTSCP RT_BIT_64(32 + 7)
398/** Intercept ICEBP instruction. */
399#define SVM_CTRL_INTERCEPT_ICEBP RT_BIT_64(32 + 8)
400/** Intercept WBINVD instruction. */
401#define SVM_CTRL_INTERCEPT_WBINVD RT_BIT_64(32 + 9)
402/** Intercept MONITOR instruction. */
403#define SVM_CTRL_INTERCEPT_MONITOR RT_BIT_64(32 + 10)
404/** Intercept MWAIT instruction unconditionally. */
405#define SVM_CTRL_INTERCEPT_MWAIT RT_BIT_64(32 + 11)
406/** Intercept MWAIT instruction when armed. */
407#define SVM_CTRL_INTERCEPT_MWAIT_ARMED RT_BIT_64(32 + 12)
408/** Intercept XSETBV instruction. */
409#define SVM_CTRL_INTERCEPT_XSETBV RT_BIT_64(32 + 13)
410/* Bit 14 - Reserved, SBZ. */
411/** Intercept EFER writes after guest instruction finishes. */
412#define SVM_CTRL_INTERCEPT_EFER_WRITES_TRAP RT_BIT_64(32 + 15)
413/** Intercept CR0 writes after guest instruction finishes. */
414#define SVM_CTRL_INTERCEPT_CR0_WRITES_TRAP RT_BIT_64(32 + 16)
415/** Intercept CR0 writes after guest instruction finishes. */
416#define SVM_CTRL_INTERCEPT_CR1_WRITES_TRAP RT_BIT_64(32 + 17)
417/** Intercept CR0 writes after guest instruction finishes. */
418#define SVM_CTRL_INTERCEPT_CR2_WRITES_TRAP RT_BIT_64(32 + 18)
419/** Intercept CR0 writes after guest instruction finishes. */
420#define SVM_CTRL_INTERCEPT_CR3_WRITES_TRAP RT_BIT_64(32 + 19)
421/** Intercept CR0 writes after guest instruction finishes. */
422#define SVM_CTRL_INTERCEPT_CR4_WRITES_TRAP RT_BIT_64(32 + 20)
423/** Intercept CR0 writes after guest instruction finishes. */
424#define SVM_CTRL_INTERCEPT_CR5_WRITES_TRAP RT_BIT_64(32 + 21)
425/** Intercept CR0 writes after guest instruction finishes. */
426#define SVM_CTRL_INTERCEPT_CR6_WRITES_TRAP RT_BIT_64(32 + 22)
427/** Intercept CR0 writes after guest instruction finishes. */
428#define SVM_CTRL_INTERCEPT_CR7_WRITES_TRAP RT_BIT_64(32 + 23)
429/** Intercept CR0 writes after guest instruction finishes. */
430#define SVM_CTRL_INTERCEPT_CR8_WRITES_TRAP RT_BIT_64(32 + 24)
431/** Intercept CR0 writes after guest instruction finishes. */
432#define SVM_CTRL_INTERCEPT_CR9_WRITES_TRAP RT_BIT_64(32 + 25)
433/** Intercept CR0 writes after guest instruction finishes. */
434#define SVM_CTRL_INTERCEPT_CR10_WRITES_TRAP RT_BIT_64(32 + 26)
435/** Intercept CR0 writes after guest instruction finishes. */
436#define SVM_CTRL_INTERCEPT_CR11_WRITES_TRAP RT_BIT_64(32 + 27)
437/** Intercept CR0 writes after guest instruction finishes. */
438#define SVM_CTRL_INTERCEPT_CR12_WRITES_TRAP RT_BIT_64(32 + 28)
439/** Intercept CR0 writes after guest instruction finishes. */
440#define SVM_CTRL_INTERCEPT_CR13_WRITES_TRAP RT_BIT_64(32 + 29)
441/** Intercept CR0 writes after guest instruction finishes. */
442#define SVM_CTRL_INTERCEPT_CR14_WRITES_TRAP RT_BIT_64(32 + 30)
443/** Intercept CR0 writes after guest instruction finishes. */
444#define SVM_CTRL_INTERCEPT_CR15_WRITES_TRAP RT_BIT_64(32 + 31)
445/** @} */
446
447/** @name SVMVMCB.ctrl.u64NestedPaging
448 * @{
449 */
450#define SVM_NESTED_PAGING_ENABLE RT_BIT_64(0)
451/** @} */
452
453/** @name SVMVMCB.ctrl.u64IntShadow
454 * @{
455 */
456#define SVM_INTERRUPT_SHADOW_ACTIVE RT_BIT_64(0)
457/** @} */
458
459/** @name SVMVMCB.u64LbrVirt
460 * @{
461 */
462#define SVM_LBR_VIRT_ENABLE RT_BIT_64(0)
463/** @} */
464
465/** @name SVMINTCTRL.u3Type
466 * @{
467 */
468/** External or virtual interrupt. */
469#define SVM_EVENT_EXTERNAL_IRQ 0
470/** Non-maskable interrupt. */
471#define SVM_EVENT_NMI 2
472/** Exception; fault or trap. */
473#define SVM_EVENT_EXCEPTION 3
474/** Software interrupt. */
475#define SVM_EVENT_SOFTWARE_INT 4
476/** @} */
477
478
479/** @name SVMVMCB.ctrl.TLBCtrl.n.u8TLBFlush
480 * @{
481 */
482/** Flush nothing. */
483#define SVM_TLB_FLUSH_NOTHING 0
484/** Flush entire TLB (host+guest entries) */
485#define SVM_TLB_FLUSH_ENTIRE 1
486/** Flush this guest's TLB entries (by ASID) */
487#define SVM_TLB_FLUSH_SINGLE_CONTEXT 3
488/** Flush this guest's non-global TLB entries (by ASID) */
489#define SVM_TLB_FLUSH_SINGLE_CONTEXT_RETAIN_GLOBALS 7
490/** @} */
491
492
493/**
494 * SVM Selector type; includes hidden parts.
495 */
496typedef struct
497{
498 uint16_t u16Sel;
499 uint16_t u16Attr;
500 uint32_t u32Limit;
501 uint64_t u64Base; /**< Only lower 32 bits are implemented for CS, DS, ES & SS. */
502} SVMSEL;
503AssertCompileSize(SVMSEL, 16);
504
505/**
506 * SVM GDTR/IDTR type.
507 */
508typedef struct
509{
510 uint16_t u16Reserved1;
511 uint16_t u16Reserved2;
512 uint32_t u32Limit; /**< Only lower 16 bits are implemented. */
513 uint64_t u64Base;
514} SVMGDTR;
515AssertCompileSize(SVMGDTR, 16);
516typedef SVMGDTR SVMIDTR;
517
518/**
519 * SVM Event injection structure (EVENTINJ and EXITINTINFO).
520 */
521typedef union
522{
523 struct
524 {
525 uint32_t u8Vector : 8;
526 uint32_t u3Type : 3;
527 uint32_t u1ErrorCodeValid : 1;
528 uint32_t u19Reserved : 19;
529 uint32_t u1Valid : 1;
530 uint32_t u32ErrorCode : 32;
531 } n;
532 uint64_t u;
533} SVMEVENT;
534/** Pointer to the SVMEVENT union. */
535typedef SVMEVENT *PSVMEVENT;
536/** Pointer to a const SVMEVENT union. */
537typedef const SVMEVENT *PCSVMEVENT;
538
539/**
540 * SVM Interrupt control structure (Virtual Interrupt Control).
541 */
542typedef union
543{
544 struct
545 {
546 uint32_t u8VTPR : 8; /* V_TPR */
547 uint32_t u1VIrqPending : 1; /* V_IRQ */
548 uint32_t u7Reserved : 7;
549 uint32_t u4VIntrPrio : 4; /* V_INTR_PRIO */
550 uint32_t u1IgnoreTPR : 1; /* V_IGN_TPR */
551 uint32_t u3Reserved : 3;
552 uint32_t u1VIntrMasking : 1; /* V_INTR_MASKING */
553 uint32_t u6Reserved : 6;
554 uint32_t u1AvicEnable : 1;
555 uint32_t u8VIntrVector : 8; /* V_INTR_VECTOR */
556 uint32_t u24Reserved : 24;
557 } n;
558 uint64_t u;
559} SVMINTCTRL;
560
561/**
562 * SVM TLB control structure.
563 */
564typedef union
565{
566 struct
567 {
568 uint32_t u32ASID : 32;
569 uint32_t u8TLBFlush : 8;
570 uint32_t u24Reserved : 24;
571 } n;
572 uint64_t u;
573} SVMTLBCTRL;
574
575/**
576 * SVM IOIO exit info. structure (EXITINFO1 for IOIO intercepts).
577 */
578typedef union
579{
580 struct
581 {
582 uint32_t u1Type : 1; /**< Bit 0: 0 = out, 1 = in */
583 uint32_t u1Reserved : 1; /**< Bit 1: Reserved */
584 uint32_t u1STR : 1; /**< Bit 2: String I/O (1) or not (0). */
585 uint32_t u1REP : 1; /**< Bit 3: Repeat prefixed string I/O. */
586 uint32_t u1OP8 : 1; /**< Bit 4: 8-bit operand. */
587 uint32_t u1OP16 : 1; /**< Bit 5: 16-bit operand. */
588 uint32_t u1OP32 : 1; /**< Bit 6: 32-bit operand. */
589 uint32_t u1ADDR16 : 1; /**< Bit 7: 16-bit address size. */
590 uint32_t u1ADDR32 : 1; /**< Bit 8: 32-bit address size. */
591 uint32_t u1ADDR64 : 1; /**< Bit 9: 64-bit address size. */
592 uint32_t u3SEG : 3; /**< BITS 12:10: Effective segment number. Added w/ decode assist in APM v3.17. */
593 uint32_t u3Reserved : 3;
594 uint32_t u16Port : 16; /**< Bits 31:16: Port number. */
595 } n;
596 uint32_t u;
597} SVMIOIOEXITINFO;
598/** Pointer to an SVM IOIO exit info. structure. */
599typedef SVMIOIOEXITINFO *PSVMIOIOEXITINFO;
600/** Pointer to a const SVM IOIO exit info. structure. */
601typedef const SVMIOIOEXITINFO *PCSVMIOIOEXITINFO;
602
603/** 8-bit IO transfer. */
604#define SVM_IOIO_8_BIT_OP RT_BIT_32(4)
605/** 16-bit IO transfer. */
606#define SVM_IOIO_16_BIT_OP RT_BIT_32(5)
607/** 32-bit IO transfer. */
608#define SVM_IOIO_32_BIT_OP RT_BIT_32(6)
609/** Number of bits to shift right to get the operand sizes. */
610#define SVM_IOIO_OP_SIZE_SHIFT 4
611/** Mask of all possible IO transfer sizes. */
612#define SVM_IOIO_OP_SIZE_MASK (SVM_IOIO_8_BIT_OP | SVM_IOIO_16_BIT_OP | SVM_IOIO_32_BIT_OP)
613/** 16-bit address for the IO buffer. */
614#define SVM_IOIO_16_BIT_ADDR RT_BIT_32(7)
615/** 32-bit address for the IO buffer. */
616#define SVM_IOIO_32_BIT_ADDR RT_BIT_32(8)
617/** 64-bit address for the IO buffer. */
618#define SVM_IOIO_64_BIT_ADDR RT_BIT_32(9)
619/** Mask of all the IO address sizes. */
620#define SVM_IOIO_ADDR_SIZE_MASK (SVM_IOIO_16_BIT_ADDR | SVM_IOIO_32_BIT_ADDR | SVM_IOIO_64_BIT_ADDR)
621/** Number of bits to shift right to get the IO port number. */
622#define SVM_IOIO_PORT_SHIFT 16
623/** IO write. */
624#define SVM_IOIO_WRITE 0
625/** IO read. */
626#define SVM_IOIO_READ 1
627/**
628 * SVM IOIO transfer type.
629 */
630typedef enum
631{
632 SVMIOIOTYPE_OUT = SVM_IOIO_WRITE,
633 SVMIOIOTYPE_IN = SVM_IOIO_READ
634} SVMIOIOTYPE;
635/** @}*/
636
637/**
638 * SVM nested paging structure.
639 */
640typedef union
641{
642 struct
643 {
644 uint32_t u1NestedPaging : 1; /**< enabled/disabled */
645 } n;
646 uint64_t u;
647} SVMNPCTRL;
648
649/**
650 * SVM AVIC.
651 */
652typedef union
653{
654 struct
655 {
656 uint64_t u12Reserved1 : 12;
657 uint64_t u40Addr : 40;
658 uint64_t u12Reserved2 : 12;
659 } n;
660 uint64_t u;
661} SVMAVIC;
662AssertCompileSize(SVMAVIC, 8);
663
664/**
665 * SVM AVIC PHYSICAL_TABLE pointer.
666 */
667typedef union
668{
669 struct
670 {
671 uint64_t u8LastGuestCoreId : 8;
672 uint64_t u4Reserved : 4;
673 uint64_t u40Addr : 40;
674 uint64_t u12Reserved : 12;
675 } n;
676 uint64_t u;
677} SVMAVICPHYS;
678AssertCompileSize(SVMAVICPHYS, 8);
679
680
681/**
682 * SVM VMCB control area.
683 */
684#pragma pack(1)
685typedef struct
686{
687 /** Offset 0x00 - Intercept reads of CR0-CR15. */
688 uint16_t u16InterceptRdCRx;
689 /** Offset 0x02 - Intercept writes to CR0-CR15. */
690 uint16_t u16InterceptWrCRx;
691 /** Offset 0x04 - Intercept reads of DR0-DR15. */
692 uint16_t u16InterceptRdDRx;
693 /** Offset 0x06 - Intercept writes to DR0-DR15. */
694 uint16_t u16InterceptWrDRx;
695 /** Offset 0x08 - Intercept exception vectors 0-31. */
696 uint32_t u32InterceptXcpt;
697 /** Offset 0x0c - Intercept control. */
698 uint64_t u64InterceptCtrl;
699 /** Offset 0x14-0x3f - Reserved. */
700 uint8_t u8Reserved[0x3c - 0x14];
701 /** Offset 0x3c - PAUSE filter threshold. */
702 uint16_t u16PauseFilterThreshold;
703 /** Offset 0x3e - PAUSE intercept filter count. */
704 uint16_t u16PauseFilterCount;
705 /** Offset 0x40 - Physical address of IOPM. */
706 uint64_t u64IOPMPhysAddr;
707 /** Offset 0x48 - Physical address of MSRPM. */
708 uint64_t u64MSRPMPhysAddr;
709 /** Offset 0x50 - TSC Offset. */
710 uint64_t u64TSCOffset;
711 /** Offset 0x58 - TLB control field. */
712 SVMTLBCTRL TLBCtrl;
713 /** Offset 0x60 - Interrupt control field. */
714 SVMINTCTRL IntCtrl;
715 /** Offset 0x68 - Interrupt shadow. */
716 uint64_t u64IntShadow;
717 /** Offset 0x70 - Exit code. */
718 uint64_t u64ExitCode;
719 /** Offset 0x78 - Exit info 1. */
720 uint64_t u64ExitInfo1;
721 /** Offset 0x80 - Exit info 2. */
722 uint64_t u64ExitInfo2;
723 /** Offset 0x88 - Exit Interrupt info. */
724 SVMEVENT ExitIntInfo;
725 /** Offset 0x90 - Nested Paging. */
726 SVMNPCTRL NestedPaging;
727 /** Offset 0x98 - AVIC APIC BAR. */
728 SVMAVIC AvicBar;
729 /** Offset 0xa0-0xa7 - Reserved. */
730 uint8_t u8Reserved2[0xA8 - 0xA0];
731 /** Offset 0xa8 - Event injection. */
732 SVMEVENT EventInject;
733 /** Offset 0xb0 - Host CR3 for nested paging. */
734 uint64_t u64NestedPagingCR3;
735 /** Offset 0xb8 - LBR Virtualization. */
736 uint64_t u64LBRVirt;
737 /** Offset 0xc0 - VMCB Clean Bits. */
738 uint64_t u64VmcbCleanBits;
739 /** Offset 0xc8 - Next sequential instruction pointer. */
740 uint64_t u64NextRIP;
741 /** Offset 0xd0 - Number of bytes fetched. */
742 uint8_t cbInstrFetched;
743 /** Offset 0xd1 - Fetched bytes. */
744 uint8_t abInstr[15];
745 /** Offset 0xe0 - AVIC APIC_BACKING_PAGE pointer. */
746 SVMAVIC AvicBackingPagePtr;
747 /** Offset 0xe8-0xef - Reserved. */
748 uint8_t u8Reserved3[0xF0 - 0xE8];
749 /** Offset 0xf0 - AVIC LOGICAL_TABLE pointer. */
750 SVMAVIC AvicLogicalTablePtr;
751 /** Offset 0xf8 - AVIC PHYSICAL_TABLE pointer. */
752 SVMAVICPHYS AvicPhysicalTablePtr;
753} SVMVMCBCTRL;
754#pragma pack()
755/** Pointer to the SVMVMCBSTATESAVE structure. */
756typedef SVMVMCBCTRL *PSVMVMCBCTRL;
757/** Pointer to a const SVMVMCBSTATESAVE structure. */
758typedef const SVMVMCBCTRL *PCSVMVMCBCTRL;
759AssertCompileSize(SVMVMCBCTRL, 0x100);
760AssertCompileMemberOffset(SVMVMCBCTRL, u16InterceptRdCRx, 0x00);
761AssertCompileMemberOffset(SVMVMCBCTRL, u16InterceptWrCRx, 0x02);
762AssertCompileMemberOffset(SVMVMCBCTRL, u16InterceptRdDRx, 0x04);
763AssertCompileMemberOffset(SVMVMCBCTRL, u16InterceptWrDRx, 0x06);
764AssertCompileMemberOffset(SVMVMCBCTRL, u32InterceptXcpt, 0x08);
765AssertCompileMemberOffset(SVMVMCBCTRL, u64InterceptCtrl, 0x0c);
766AssertCompileMemberOffset(SVMVMCBCTRL, u8Reserved, 0x14);
767AssertCompileMemberOffset(SVMVMCBCTRL, u16PauseFilterThreshold, 0x3c);
768AssertCompileMemberOffset(SVMVMCBCTRL, u16PauseFilterCount, 0x3e);
769AssertCompileMemberOffset(SVMVMCBCTRL, u64IOPMPhysAddr, 0x40);
770AssertCompileMemberOffset(SVMVMCBCTRL, u64MSRPMPhysAddr, 0x48);
771AssertCompileMemberOffset(SVMVMCBCTRL, u64TSCOffset, 0x50);
772AssertCompileMemberOffset(SVMVMCBCTRL, TLBCtrl, 0x58);
773AssertCompileMemberOffset(SVMVMCBCTRL, IntCtrl, 0x60);
774AssertCompileMemberOffset(SVMVMCBCTRL, u64IntShadow, 0x68);
775AssertCompileMemberOffset(SVMVMCBCTRL, u64ExitCode, 0x70);
776AssertCompileMemberOffset(SVMVMCBCTRL, u64ExitInfo1, 0x78);
777AssertCompileMemberOffset(SVMVMCBCTRL, u64ExitInfo2, 0x80);
778AssertCompileMemberOffset(SVMVMCBCTRL, ExitIntInfo, 0x88);
779AssertCompileMemberOffset(SVMVMCBCTRL, NestedPaging, 0x90);
780AssertCompileMemberOffset(SVMVMCBCTRL, AvicBar, 0x98);
781AssertCompileMemberOffset(SVMVMCBCTRL, u8Reserved2, 0xa0);
782AssertCompileMemberOffset(SVMVMCBCTRL, EventInject, 0xa8);
783AssertCompileMemberOffset(SVMVMCBCTRL, u64NestedPagingCR3, 0xb0);
784AssertCompileMemberOffset(SVMVMCBCTRL, u64LBRVirt, 0xb8);
785AssertCompileMemberOffset(SVMVMCBCTRL, u64VmcbCleanBits, 0xc0);
786AssertCompileMemberOffset(SVMVMCBCTRL, u64NextRIP, 0xc8);
787AssertCompileMemberOffset(SVMVMCBCTRL, cbInstrFetched, 0xd0);
788AssertCompileMemberOffset(SVMVMCBCTRL, abInstr, 0xd1);
789AssertCompileMemberOffset(SVMVMCBCTRL, AvicBackingPagePtr, 0xe0);
790AssertCompileMemberOffset(SVMVMCBCTRL, u8Reserved3, 0xe8);
791AssertCompileMemberOffset(SVMVMCBCTRL, AvicLogicalTablePtr, 0xf0);
792AssertCompileMemberOffset(SVMVMCBCTRL, AvicPhysicalTablePtr, 0xf8);
793
794/**
795 * SVM VMCB state save area.
796 */
797#pragma pack(1)
798typedef struct
799{
800 /** Offset 0x400 - Guest ES register + hidden parts. */
801 SVMSEL ES;
802 /** Offset 0x410 - Guest CS register + hidden parts. */
803 SVMSEL CS;
804 /** Offset 0x420 - Guest SS register + hidden parts. */
805 SVMSEL SS;
806 /** Offset 0x430 - Guest DS register + hidden parts. */
807 SVMSEL DS;
808 /** Offset 0x440 - Guest FS register + hidden parts. */
809 SVMSEL FS;
810 /** Offset 0x450 - Guest GS register + hidden parts. */
811 SVMSEL GS;
812 /** Offset 0x460 - Guest GDTR register. */
813 SVMGDTR GDTR;
814 /** Offset 0x470 - Guest LDTR register + hidden parts. */
815 SVMSEL LDTR;
816 /** Offset 0x480 - Guest IDTR register. */
817 SVMIDTR IDTR;
818 /** Offset 0x490 - Guest TR register + hidden parts. */
819 SVMSEL TR;
820 /** Offset 0x4A0-0x4CA - Reserved. */
821 uint8_t u8Reserved4[0x4CB - 0x4A0];
822 /** Offset 0x4CB - CPL. */
823 uint8_t u8CPL;
824 /** Offset 0x4CC-0x4CF - Reserved. */
825 uint8_t u8Reserved5[0x4D0 - 0x4CC];
826 /** Offset 0x4D0 - EFER. */
827 uint64_t u64EFER;
828 /** Offset 0x4D8-0x547 - Reserved. */
829 uint8_t u8Reserved6[0x548 - 0x4D8];
830 /** Offset 0x548 - CR4. */
831 uint64_t u64CR4;
832 /** Offset 0x550 - CR3. */
833 uint64_t u64CR3;
834 /** Offset 0x558 - CR0. */
835 uint64_t u64CR0;
836 /** Offset 0x560 - DR7. */
837 uint64_t u64DR7;
838 /** Offset 0x568 - DR6. */
839 uint64_t u64DR6;
840 /** Offset 0x570 - RFLAGS. */
841 uint64_t u64RFlags;
842 /** Offset 0x578 - RIP. */
843 uint64_t u64RIP;
844 /** Offset 0x580-0x5D7 - Reserved. */
845 uint8_t u8Reserved7[0x5D8 - 0x580];
846 /** Offset 0x5D8 - RSP. */
847 uint64_t u64RSP;
848 /** Offset 0x5E0-0x5F7 - Reserved. */
849 uint8_t u8Reserved8[0x5F8 - 0x5E0];
850 /** Offset 0x5F8 - RAX. */
851 uint64_t u64RAX;
852 /** Offset 0x600 - STAR. */
853 uint64_t u64STAR;
854 /** Offset 0x608 - LSTAR. */
855 uint64_t u64LSTAR;
856 /** Offset 0x610 - CSTAR. */
857 uint64_t u64CSTAR;
858 /** Offset 0x618 - SFMASK. */
859 uint64_t u64SFMASK;
860 /** Offset 0x620 - KernelGSBase. */
861 uint64_t u64KernelGSBase;
862 /** Offset 0x628 - SYSENTER_CS. */
863 uint64_t u64SysEnterCS;
864 /** Offset 0x630 - SYSENTER_ESP. */
865 uint64_t u64SysEnterESP;
866 /** Offset 0x638 - SYSENTER_EIP. */
867 uint64_t u64SysEnterEIP;
868 /** Offset 0x640 - CR2. */
869 uint64_t u64CR2;
870 /** Offset 0x648-0x667 - Reserved. */
871 uint8_t u8Reserved9[0x668 - 0x648];
872 /** Offset 0x668 - G_PAT. */
873 uint64_t u64GPAT;
874 /** Offset 0x670 - DBGCTL. */
875 uint64_t u64DBGCTL;
876 /** Offset 0x678 - BR_FROM. */
877 uint64_t u64BR_FROM;
878 /** Offset 0x680 - BR_TO. */
879 uint64_t u64BR_TO;
880 /** Offset 0x688 - LASTEXCPFROM. */
881 uint64_t u64LASTEXCPFROM;
882 /** Offset 0x690 - LASTEXCPTO. */
883 uint64_t u64LASTEXCPTO;
884} SVMVMCBSTATESAVE;
885#pragma pack()
886/** Pointer to the SVMVMCBSTATESAVE structure. */
887typedef SVMVMCBSTATESAVE *PSVMVMCBSTATESAVE;
888/** Pointer to a const SVMVMCBSTATESAVE structure. */
889typedef const SVMVMCBSTATESAVE *PCSVMVMCBSTATESAVE;
890AssertCompileSize(SVMVMCBSTATESAVE, 0x298);
891AssertCompileMemberOffset(SVMVMCBSTATESAVE, ES, 0x400 - 0x400);
892AssertCompileMemberOffset(SVMVMCBSTATESAVE, CS, 0x410 - 0x400);
893AssertCompileMemberOffset(SVMVMCBSTATESAVE, SS, 0x420 - 0x400);
894AssertCompileMemberOffset(SVMVMCBSTATESAVE, DS, 0x430 - 0x400);
895AssertCompileMemberOffset(SVMVMCBSTATESAVE, FS, 0x440 - 0x400);
896AssertCompileMemberOffset(SVMVMCBSTATESAVE, GS, 0x450 - 0x400);
897AssertCompileMemberOffset(SVMVMCBSTATESAVE, GDTR, 0x460 - 0x400);
898AssertCompileMemberOffset(SVMVMCBSTATESAVE, LDTR, 0x470 - 0x400);
899AssertCompileMemberOffset(SVMVMCBSTATESAVE, IDTR, 0x480 - 0x400);
900AssertCompileMemberOffset(SVMVMCBSTATESAVE, TR, 0x490 - 0x400);
901AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8Reserved4, 0x4a0 - 0x400);
902AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8CPL, 0x4cb - 0x400);
903AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8Reserved5, 0x4cc - 0x400);
904AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64EFER, 0x4d0 - 0x400);
905AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8Reserved6, 0x4d8 - 0x400);
906AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64CR4, 0x548 - 0x400);
907AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64CR3, 0x550 - 0x400);
908AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64CR0, 0x558 - 0x400);
909AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64DR7, 0x560 - 0x400);
910AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64DR6, 0x568 - 0x400);
911AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64RFlags, 0x570 - 0x400);
912AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64RIP, 0x578 - 0x400);
913AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8Reserved7, 0x580 - 0x400);
914AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64RSP, 0x5d8 - 0x400);
915AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8Reserved8, 0x5e0 - 0x400);
916AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64RAX, 0x5f8 - 0x400);
917AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64STAR, 0x600 - 0x400);
918AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64LSTAR, 0x608 - 0x400);
919AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64CSTAR, 0x610 - 0x400);
920AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64SFMASK, 0x618 - 0x400);
921AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64KernelGSBase, 0x620 - 0x400);
922AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64SysEnterCS, 0x628 - 0x400);
923AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64SysEnterESP, 0x630 - 0x400);
924AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64SysEnterEIP, 0x638 - 0x400);
925AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64CR2, 0x640 - 0x400);
926AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8Reserved9, 0x648 - 0x400);
927AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64GPAT, 0x668 - 0x400);
928AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64DBGCTL, 0x670 - 0x400);
929AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64BR_FROM, 0x678 - 0x400);
930AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64BR_TO, 0x680 - 0x400);
931AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64LASTEXCPFROM, 0x688 - 0x400);
932AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64LASTEXCPTO, 0x690 - 0x400);
933
934/**
935 * SVM VM Control Block. (VMCB)
936 */
937#pragma pack(1)
938typedef struct SVMVMCB
939{
940 /** Offset 0x00 - Control area. */
941 SVMVMCBCTRL ctrl;
942 /** Offset 0x100-0x3FF - Reserved. */
943 uint8_t u8Reserved3[0x400 - 0x100];
944 /** Offset 0x400 - State save area. */
945 SVMVMCBSTATESAVE guest;
946 /** Offset 0x698-0xFFF- Reserved. */
947 uint8_t u8Reserved10[0x1000 - 0x698];
948} SVMVMCB;
949#pragma pack()
950/** Pointer to the SVMVMCB structure. */
951typedef SVMVMCB *PSVMVMCB;
952/** Pointer to a const SVMVMCB structure. */
953typedef const SVMVMCB *PCSVMVMCB;
954AssertCompileMemberOffset(SVMVMCB, ctrl, 0x00);
955AssertCompileMemberOffset(SVMVMCB, u8Reserved3, 0x100);
956AssertCompileMemberOffset(SVMVMCB, guest, 0x400);
957AssertCompileMemberOffset(SVMVMCB, u8Reserved10, 0x698);
958AssertCompileSize(SVMVMCB, 0x1000);
959
960#ifdef IN_RING0
961VMMR0DECL(int) SVMR0InvalidatePage(PVM pVM, PVMCPU pVCpu, RTGCPTR GCVirt);
962#endif /* IN_RING0 */
963
964/**
965 * Segment attribute conversion between CPU and AMD-V VMCB format.
966 *
967 * The CPU format of the segment attribute is described in X86DESCATTRBITS
968 * which is 16-bits (i.e. includes 4 bits of the segment limit).
969 *
970 * The AMD-V VMCB format the segment attribute is compact 12-bits (strictly
971 * only the attribute bits and nothing else). Upper 4-bits are unused.
972 */
973#define HMSVM_CPU_2_VMCB_SEG_ATTR(a) ( ((a) & 0xff) | (((a) & 0xf000) >> 4) )
974#define HMSVM_VMCB_2_CPU_SEG_ATTR(a) ( ((a) & 0xff) | (((a) & 0x0f00) << 4) )
975
976/** @def HMSVM_SEG_REG_COPY_TO_VMCB
977 * Copies the specified segment register to a VMCB from a virtual CPU context.
978 *
979 * @param a_pCtx The virtual-CPU context.
980 * @param a_pVmcbStateSave Pointer to the VMCB state-save area.
981 * @param a_REG The segment register in the VMCB state-save
982 * struct (ES/CS/SS/DS).
983 * @param a_reg The segment register in the virtual CPU struct
984 * (es/cs/ss/ds).
985 */
986#define HMSVM_SEG_REG_COPY_TO_VMCB(a_pCtx, a_pVmcbStateSave, a_REG, a_reg) \
987 do \
988 { \
989 Assert((a_pCtx)->a_reg.fFlags & CPUMSELREG_FLAGS_VALID); \
990 Assert((a_pCtx)->a_reg.ValidSel == (a_pCtx)->a_reg.Sel); \
991 (a_pVmcbStateSave)->a_REG.u16Sel = (a_pCtx)->a_reg.Sel; \
992 (a_pVmcbStateSave)->a_REG.u32Limit = (a_pCtx)->a_reg.u32Limit; \
993 (a_pVmcbStateSave)->a_REG.u64Base = (a_pCtx)->a_reg.u64Base; \
994 (a_pVmcbStateSave)->a_REG.u16Attr = HMSVM_CPU_2_VMCB_SEG_ATTR((a_pCtx)->a_reg.Attr.u); \
995 } while (0)
996
997/** @def HMSVM_SEG_REG_COPY_TO_VMCB
998 * Copies the specified segment register from the VMCB to a virtual CPU
999 * context.
1000 *
1001 * @param a_pCtx The virtual-CPU context.
1002 * @param a_pVmcbStateSave Pointer to the VMCB state-save area.
1003 * @param a_REG The segment register in the VMCB state-save
1004 * struct (ES/CS/SS/DS).
1005 * @param a_reg The segment register in the virtual CPU struct
1006 * (es/ds/ss/ds).
1007 */
1008#define HMSVM_SEG_REG_COPY_FROM_VMCB(a_pCtx, a_pVmcbStateSave, a_REG, a_reg) \
1009 do \
1010 { \
1011 (a_pCtx)->a_reg.Sel = (a_pVmcbStateSave)->a_REG.u16Sel; \
1012 (a_pCtx)->a_reg.ValidSel = (a_pVmcbStateSave)->a_REG.u16Sel; \
1013 (a_pCtx)->a_reg.fFlags = CPUMSELREG_FLAGS_VALID; \
1014 (a_pCtx)->a_reg.u32Limit = (a_pVmcbStateSave)->a_REG.u32Limit; \
1015 (a_pCtx)->a_reg.u64Base = (a_pVmcbStateSave)->a_REG.u64Base; \
1016 (a_pCtx)->a_reg.Attr.u = HMSVM_VMCB_2_CPU_SEG_ATTR((a_pVmcbStateSave)->a_REG.u16Attr); \
1017 } while (0)
1018/** @} */
1019
1020
1021/** @} */
1022
1023#endif
1024
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette