VirtualBox

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

Last change on this file since 67066 was 66668, checked in by vboxsync, 8 years ago

hm_svm.h: Added SVM_IOIO_OP_SIZE_SHIFT.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 40.0 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 access was via Mov CRx instruction bit number. */
303#define SVM_EXIT1_MOV_CRX_MASK RT_BIT_64(63)
304/** @} */
305
306
307/** @name SVMVMCB.ctrl.u64InterceptCtrl
308 * @{
309 */
310/** Intercept INTR (physical maskable interrupt). */
311#define SVM_CTRL_INTERCEPT_INTR RT_BIT_64(0)
312/** Intercept NMI. */
313#define SVM_CTRL_INTERCEPT_NMI RT_BIT_64(1)
314/** Intercept SMI. */
315#define SVM_CTRL_INTERCEPT_SMI RT_BIT_64(2)
316/** Intercept INIT. */
317#define SVM_CTRL_INTERCEPT_INIT RT_BIT_64(3)
318/** Intercept VINTR (virtual maskable interrupt). */
319#define SVM_CTRL_INTERCEPT_VINTR RT_BIT_64(4)
320/** Intercept CR0 writes that change bits other than CR0.TS or CR0.MP */
321#define SVM_CTRL_INTERCEPT_CR0_SEL_WRITES RT_BIT_64(5)
322/** Intercept reads of IDTR. */
323#define SVM_CTRL_INTERCEPT_IDTR_READS RT_BIT_64(6)
324/** Intercept reads of GDTR. */
325#define SVM_CTRL_INTERCEPT_GDTR_READS RT_BIT_64(7)
326/** Intercept reads of LDTR. */
327#define SVM_CTRL_INTERCEPT_LDTR_READS RT_BIT_64(8)
328/** Intercept reads of TR. */
329#define SVM_CTRL_INTERCEPT_TR_READS RT_BIT_64(9)
330/** Intercept writes of IDTR. */
331#define SVM_CTRL_INTERCEPT_IDTR_WRITES RT_BIT_64(10)
332/** Intercept writes of GDTR. */
333#define SVM_CTRL_INTERCEPT_GDTR_WRITES RT_BIT_64(11)
334/** Intercept writes of LDTR. */
335#define SVM_CTRL_INTERCEPT_LDTR_WRITES RT_BIT_64(12)
336/** Intercept writes of TR. */
337#define SVM_CTRL_INTERCEPT_TR_WRITES RT_BIT_64(13)
338/** Intercept RDTSC instruction. */
339#define SVM_CTRL_INTERCEPT_RDTSC RT_BIT_64(14)
340/** Intercept RDPMC instruction. */
341#define SVM_CTRL_INTERCEPT_RDPMC RT_BIT_64(15)
342/** Intercept PUSHF instruction. */
343#define SVM_CTRL_INTERCEPT_PUSHF RT_BIT_64(16)
344/** Intercept POPF instruction. */
345#define SVM_CTRL_INTERCEPT_POPF RT_BIT_64(17)
346/** Intercept CPUID instruction. */
347#define SVM_CTRL_INTERCEPT_CPUID RT_BIT_64(18)
348/** Intercept RSM instruction. */
349#define SVM_CTRL_INTERCEPT_RSM RT_BIT_64(19)
350/** Intercept IRET instruction. */
351#define SVM_CTRL_INTERCEPT_IRET RT_BIT_64(20)
352/** Intercept INTn instruction. */
353#define SVM_CTRL_INTERCEPT_INTN RT_BIT_64(21)
354/** Intercept INVD instruction. */
355#define SVM_CTRL_INTERCEPT_INVD RT_BIT_64(22)
356/** Intercept PAUSE instruction. */
357#define SVM_CTRL_INTERCEPT_PAUSE RT_BIT_64(23)
358/** Intercept HLT instruction. */
359#define SVM_CTRL_INTERCEPT_HLT RT_BIT_64(24)
360/** Intercept INVLPG instruction. */
361#define SVM_CTRL_INTERCEPT_INVLPG RT_BIT_64(25)
362/** Intercept INVLPGA instruction. */
363#define SVM_CTRL_INTERCEPT_INVLPGA RT_BIT_64(26)
364/** IOIO_PROT Intercept IN/OUT accesses to selected ports. */
365#define SVM_CTRL_INTERCEPT_IOIO_PROT RT_BIT_64(27)
366/** MSR_PROT Intercept RDMSR or WRMSR accesses to selected MSRs. */
367#define SVM_CTRL_INTERCEPT_MSR_PROT RT_BIT_64(28)
368/** Intercept task switches. */
369#define SVM_CTRL_INTERCEPT_TASK_SWITCH RT_BIT_64(29)
370/** FERR_FREEZE: intercept processor "freezing" during legacy FERR handling. */
371#define SVM_CTRL_INTERCEPT_FERR_FREEZE RT_BIT_64(30)
372/** Intercept shutdown events. */
373#define SVM_CTRL_INTERCEPT_SHUTDOWN RT_BIT_64(31)
374/** Intercept VMRUN instruction. */
375#define SVM_CTRL_INTERCEPT_VMRUN RT_BIT_64(32 + 0)
376/** Intercept VMMCALL instruction. */
377#define SVM_CTRL_INTERCEPT_VMMCALL RT_BIT_64(32 + 1)
378/** Intercept VMLOAD instruction. */
379#define SVM_CTRL_INTERCEPT_VMLOAD RT_BIT_64(32 + 2)
380/** Intercept VMSAVE instruction. */
381#define SVM_CTRL_INTERCEPT_VMSAVE RT_BIT_64(32 + 3)
382/** Intercept STGI instruction. */
383#define SVM_CTRL_INTERCEPT_STGI RT_BIT_64(32 + 4)
384/** Intercept CLGI instruction. */
385#define SVM_CTRL_INTERCEPT_CLGI RT_BIT_64(32 + 5)
386/** Intercept SKINIT instruction. */
387#define SVM_CTRL_INTERCEPT_SKINIT RT_BIT_64(32 + 6)
388/** Intercept RDTSCP instruction. */
389#define SVM_CTRL_INTERCEPT_RDTSCP RT_BIT_64(32 + 7)
390/** Intercept ICEBP instruction. */
391#define SVM_CTRL_INTERCEPT_ICEBP RT_BIT_64(32 + 8)
392/** Intercept WBINVD instruction. */
393#define SVM_CTRL_INTERCEPT_WBINVD RT_BIT_64(32 + 9)
394/** Intercept MONITOR instruction. */
395#define SVM_CTRL_INTERCEPT_MONITOR RT_BIT_64(32 + 10)
396/** Intercept MWAIT instruction unconditionally. */
397#define SVM_CTRL_INTERCEPT_MWAIT RT_BIT_64(32 + 11)
398/** Intercept MWAIT instruction when armed. */
399#define SVM_CTRL_INTERCEPT_MWAIT_ARMED RT_BIT_64(32 + 12)
400/** Intercept XSETBV instruction. */
401#define SVM_CTRL_INTERCEPT_XSETBV RT_BIT_64(32 + 13)
402/* Bit 14 - Reserved, SBZ. */
403/** Intercept EFER writes after guest instruction finishes. */
404#define SVM_CTRL_INTERCEPT_EFER_WRITES_TRAP RT_BIT_64(32 + 15)
405/** Intercept CR0 writes after guest instruction finishes. */
406#define SVM_CTRL_INTERCEPT_CR0_WRITES_TRAP RT_BIT_64(32 + 16)
407/** Intercept CR0 writes after guest instruction finishes. */
408#define SVM_CTRL_INTERCEPT_CR1_WRITES_TRAP RT_BIT_64(32 + 17)
409/** Intercept CR0 writes after guest instruction finishes. */
410#define SVM_CTRL_INTERCEPT_CR2_WRITES_TRAP RT_BIT_64(32 + 18)
411/** Intercept CR0 writes after guest instruction finishes. */
412#define SVM_CTRL_INTERCEPT_CR3_WRITES_TRAP RT_BIT_64(32 + 19)
413/** Intercept CR0 writes after guest instruction finishes. */
414#define SVM_CTRL_INTERCEPT_CR4_WRITES_TRAP RT_BIT_64(32 + 20)
415/** Intercept CR0 writes after guest instruction finishes. */
416#define SVM_CTRL_INTERCEPT_CR5_WRITES_TRAP RT_BIT_64(32 + 21)
417/** Intercept CR0 writes after guest instruction finishes. */
418#define SVM_CTRL_INTERCEPT_CR6_WRITES_TRAP RT_BIT_64(32 + 22)
419/** Intercept CR0 writes after guest instruction finishes. */
420#define SVM_CTRL_INTERCEPT_CR7_WRITES_TRAP RT_BIT_64(32 + 23)
421/** Intercept CR0 writes after guest instruction finishes. */
422#define SVM_CTRL_INTERCEPT_CR8_WRITES_TRAP RT_BIT_64(32 + 24)
423/** Intercept CR0 writes after guest instruction finishes. */
424#define SVM_CTRL_INTERCEPT_CR9_WRITES_TRAP RT_BIT_64(32 + 25)
425/** Intercept CR0 writes after guest instruction finishes. */
426#define SVM_CTRL_INTERCEPT_CR10_WRITES_TRAP RT_BIT_64(32 + 26)
427/** Intercept CR0 writes after guest instruction finishes. */
428#define SVM_CTRL_INTERCEPT_CR11_WRITES_TRAP RT_BIT_64(32 + 27)
429/** Intercept CR0 writes after guest instruction finishes. */
430#define SVM_CTRL_INTERCEPT_CR12_WRITES_TRAP RT_BIT_64(32 + 28)
431/** Intercept CR0 writes after guest instruction finishes. */
432#define SVM_CTRL_INTERCEPT_CR13_WRITES_TRAP RT_BIT_64(32 + 29)
433/** Intercept CR0 writes after guest instruction finishes. */
434#define SVM_CTRL_INTERCEPT_CR14_WRITES_TRAP RT_BIT_64(32 + 30)
435/** Intercept CR0 writes after guest instruction finishes. */
436#define SVM_CTRL_INTERCEPT_CR15_WRITES_TRAP RT_BIT_64(32 + 31)
437/** @} */
438
439/** @name SVMVMCB.ctrl.u64NestedPaging
440 * @{
441 */
442#define SVM_NESTED_PAGING_ENABLE RT_BIT_64(0)
443/** @} */
444
445/** @name SVMVMCB.ctrl.u64IntShadow
446 * @{
447 */
448#define SVM_INTERRUPT_SHADOW_ACTIVE RT_BIT_64(0)
449/** @} */
450
451/** @name SVMVMCB.u64LbrVirt
452 * @{
453 */
454#define SVM_LBR_VIRT_ENABLE RT_BIT_64(0)
455/** @} */
456
457/** @name SVMINTCTRL.u3Type
458 * @{
459 */
460/** External or virtual interrupt. */
461#define SVM_EVENT_EXTERNAL_IRQ 0
462/** Non-maskable interrupt. */
463#define SVM_EVENT_NMI 2
464/** Exception; fault or trap. */
465#define SVM_EVENT_EXCEPTION 3
466/** Software interrupt. */
467#define SVM_EVENT_SOFTWARE_INT 4
468/** @} */
469
470
471/** @name SVMVMCB.ctrl.TLBCtrl.n.u8TLBFlush
472 * @{
473 */
474/** Flush nothing. */
475#define SVM_TLB_FLUSH_NOTHING 0
476/** Flush entire TLB (host+guest entries) */
477#define SVM_TLB_FLUSH_ENTIRE 1
478/** Flush this guest's TLB entries (by ASID) */
479#define SVM_TLB_FLUSH_SINGLE_CONTEXT 3
480/** Flush this guest's non-global TLB entries (by ASID) */
481#define SVM_TLB_FLUSH_SINGLE_CONTEXT_RETAIN_GLOBALS 7
482/** @} */
483
484
485/**
486 * SVM Selector type; includes hidden parts.
487 */
488typedef struct
489{
490 uint16_t u16Sel;
491 uint16_t u16Attr;
492 uint32_t u32Limit;
493 uint64_t u64Base; /**< Only lower 32 bits are implemented for CS, DS, ES & SS. */
494} SVMSEL;
495AssertCompileSize(SVMSEL, 16);
496
497/**
498 * SVM GDTR/IDTR type.
499 */
500typedef struct
501{
502 uint16_t u16Reserved1;
503 uint16_t u16Reserved2;
504 uint32_t u32Limit; /**< Only lower 16 bits are implemented. */
505 uint64_t u64Base;
506} SVMGDTR;
507AssertCompileSize(SVMGDTR, 16);
508typedef SVMGDTR SVMIDTR;
509
510/**
511 * SVM Event injection structure (EVENTINJ and EXITINTINFO).
512 */
513typedef union
514{
515 struct
516 {
517 uint32_t u8Vector : 8;
518 uint32_t u3Type : 3;
519 uint32_t u1ErrorCodeValid : 1;
520 uint32_t u19Reserved : 19;
521 uint32_t u1Valid : 1;
522 uint32_t u32ErrorCode : 32;
523 } n;
524 uint64_t u;
525} SVMEVENT;
526/** Pointer to the SVMEVENT union. */
527typedef SVMEVENT *PSVMEVENT;
528/** Pointer to a const SVMEVENT union. */
529typedef const SVMEVENT *PCSVMEVENT;
530
531/**
532 * SVM Interrupt control structure (Virtual Interrupt Control).
533 */
534typedef union
535{
536 struct
537 {
538 uint32_t u8VTPR : 8; /* V_TPR */
539 uint32_t u1VIrqPending : 1; /* V_IRQ */
540 uint32_t u7Reserved : 7;
541 uint32_t u4VIntrPrio : 4; /* V_INTR_PRIO */
542 uint32_t u1IgnoreTPR : 1; /* V_IGN_TPR */
543 uint32_t u3Reserved : 3;
544 uint32_t u1VIntrMasking : 1; /* V_INTR_MASKING */
545 uint32_t u6Reserved : 6;
546 uint32_t u1AvicEnable : 1;
547 uint32_t u8VIntrVector : 8; /* V_INTR_VECTOR */
548 uint32_t u24Reserved : 24;
549 } n;
550 uint64_t u;
551} SVMINTCTRL;
552
553/**
554 * SVM TLB control structure.
555 */
556typedef union
557{
558 struct
559 {
560 uint32_t u32ASID : 32;
561 uint32_t u8TLBFlush : 8;
562 uint32_t u24Reserved : 24;
563 } n;
564 uint64_t u;
565} SVMTLBCTRL;
566
567/**
568 * SVM IOIO exit info. structure (EXITINFO1 for IOIO intercepts).
569 */
570typedef union
571{
572 struct
573 {
574 uint32_t u1Type : 1; /**< Bit 0: 0 = out, 1 = in */
575 uint32_t u1Reserved : 1; /**< Bit 1: Reserved */
576 uint32_t u1STR : 1; /**< Bit 2: String I/O (1) or not (0). */
577 uint32_t u1REP : 1; /**< Bit 3: Repeat prefixed string I/O. */
578 uint32_t u1OP8 : 1; /**< Bit 4: 8-bit operand. */
579 uint32_t u1OP16 : 1; /**< Bit 5: 16-bit operand. */
580 uint32_t u1OP32 : 1; /**< Bit 6: 32-bit operand. */
581 uint32_t u1ADDR16 : 1; /**< Bit 7: 16-bit address size. */
582 uint32_t u1ADDR32 : 1; /**< Bit 8: 32-bit address size. */
583 uint32_t u1ADDR64 : 1; /**< Bit 9: 64-bit address size. */
584 uint32_t u3SEG : 3; /**< BITS 12:10: Effective segment number. Added w/ decode assist in APM v3.17. */
585 uint32_t u3Reserved : 3;
586 uint32_t u16Port : 16; /**< Bits 31:16: Port number. */
587 } n;
588 uint32_t u;
589} SVMIOIOEXITINFO;
590/** Pointer to an SVM IOIO exit info. structure. */
591typedef SVMIOIOEXITINFO *PSVMIOIOEXITINFO;
592/** Pointer to a const SVM IOIO exit info. structure. */
593typedef const SVMIOIOEXITINFO *PCSVMIOIOEXITINFO;
594
595/** 8-bit IO transfer. */
596#define SVM_IOIO_8_BIT_OP RT_BIT_32(4)
597/** 16-bit IO transfer. */
598#define SVM_IOIO_16_BIT_OP RT_BIT_32(5)
599/** 32-bit IO transfer. */
600#define SVM_IOIO_32_BIT_OP RT_BIT_32(6)
601/** Number of bits to shift right to get the operand sizes. */
602#define SVM_IOIO_OP_SIZE_SHIFT 4
603/** Mask of all possible IO transfer sizes. */
604#define SVM_IOIO_OP_SIZE_MASK (SVM_IOIO_8_BIT_OP | SVM_IOIO_16_BIT_OP | SVM_IOIO_32_BIT_OP)
605/** 16-bit address for the IO buffer. */
606#define SVM_IOIO_16_BIT_ADDR RT_BIT_32(7)
607/** 32-bit address for the IO buffer. */
608#define SVM_IOIO_32_BIT_ADDR RT_BIT_32(8)
609/** 64-bit address for the IO buffer. */
610#define SVM_IOIO_64_BIT_ADDR RT_BIT_32(9)
611/** Mask of all the IO address sizes. */
612#define SVM_IOIO_ADDR_SIZE_MASK (SVM_IOIO_16_BIT_ADDR | SVM_IOIO_32_BIT_ADDR | SVM_IOIO_64_BIT_ADDR)
613/** Number of bits to shift right to get the IO port number. */
614#define SVM_IOIO_PORT_SHIFT 16
615/** IO write. */
616#define SVM_IOIO_WRITE 0
617/** IO read. */
618#define SVM_IOIO_READ 1
619/**
620 * SVM IOIO transfer type.
621 */
622typedef enum
623{
624 SVMIOIOTYPE_OUT = SVM_IOIO_WRITE,
625 SVMIOIOTYPE_IN = SVM_IOIO_READ
626} SVMIOIOTYPE;
627/** @}*/
628
629/**
630 * SVM nested paging structure.
631 */
632typedef union
633{
634 struct
635 {
636 uint32_t u1NestedPaging : 1; /**< enabled/disabled */
637 } n;
638 uint64_t u;
639} SVMNPCTRL;
640
641/**
642 * SVM AVIC.
643 */
644typedef union
645{
646 struct
647 {
648 uint64_t u12Reserved1 : 12;
649 uint64_t u40Addr : 40;
650 uint64_t u12Reserved2 : 12;
651 } n;
652 uint64_t u;
653} SVMAVIC;
654AssertCompileSize(SVMAVIC, 8);
655
656/**
657 * SVM AVIC PHYSICAL_TABLE pointer.
658 */
659typedef union
660{
661 struct
662 {
663 uint64_t u8LastGuestCoreId : 8;
664 uint64_t u4Reserved : 4;
665 uint64_t u40Addr : 40;
666 uint64_t u12Reserved : 12;
667 } n;
668 uint64_t u;
669} SVMAVICPHYS;
670AssertCompileSize(SVMAVICPHYS, 8);
671
672
673/**
674 * SVM VMCB control area.
675 */
676#pragma pack(1)
677typedef struct
678{
679 /** Offset 0x00 - Intercept reads of CR0-CR15. */
680 uint16_t u16InterceptRdCRx;
681 /** Offset 0x02 - Intercept writes to CR0-CR15. */
682 uint16_t u16InterceptWrCRx;
683 /** Offset 0x04 - Intercept reads of DR0-DR15. */
684 uint16_t u16InterceptRdDRx;
685 /** Offset 0x06 - Intercept writes to DR0-DR15. */
686 uint16_t u16InterceptWrDRx;
687 /** Offset 0x08 - Intercept exception vectors 0-31. */
688 uint32_t u32InterceptXcpt;
689 /** Offset 0x0c - Intercept control. */
690 uint64_t u64InterceptCtrl;
691 /** Offset 0x14-0x3f - Reserved. */
692 uint8_t u8Reserved[0x3c - 0x14];
693 /** Offset 0x3c - PAUSE filter threshold. */
694 uint16_t u16PauseFilterThreshold;
695 /** Offset 0x3e - PAUSE intercept filter count. */
696 uint16_t u16PauseFilterCount;
697 /** Offset 0x40 - Physical address of IOPM. */
698 uint64_t u64IOPMPhysAddr;
699 /** Offset 0x48 - Physical address of MSRPM. */
700 uint64_t u64MSRPMPhysAddr;
701 /** Offset 0x50 - TSC Offset. */
702 uint64_t u64TSCOffset;
703 /** Offset 0x58 - TLB control field. */
704 SVMTLBCTRL TLBCtrl;
705 /** Offset 0x60 - Interrupt control field. */
706 SVMINTCTRL IntCtrl;
707 /** Offset 0x68 - Interrupt shadow. */
708 uint64_t u64IntShadow;
709 /** Offset 0x70 - Exit code. */
710 uint64_t u64ExitCode;
711 /** Offset 0x78 - Exit info 1. */
712 uint64_t u64ExitInfo1;
713 /** Offset 0x80 - Exit info 2. */
714 uint64_t u64ExitInfo2;
715 /** Offset 0x88 - Exit Interrupt info. */
716 SVMEVENT ExitIntInfo;
717 /** Offset 0x90 - Nested Paging. */
718 SVMNPCTRL NestedPaging;
719 /** Offset 0x98 - AVIC APIC BAR. */
720 SVMAVIC AvicBar;
721 /** Offset 0xa0-0xa7 - Reserved. */
722 uint8_t u8Reserved2[0xA8-0xA0];
723 /** Offset 0xa8 - Event injection. */
724 SVMEVENT EventInject;
725 /** Offset 0xb0 - Host CR3 for nested paging. */
726 uint64_t u64NestedPagingCR3;
727 /** Offset 0xb8 - LBR Virtualization. */
728 uint64_t u64LBRVirt;
729 /** Offset 0xc0 - VMCB Clean Bits. */
730 uint64_t u64VmcbCleanBits;
731 /** Offset 0xc8 - Next sequential instruction pointer. */
732 uint64_t u64NextRIP;
733 /** Offset 0xd0 - Number of bytes fetched. */
734 uint8_t cbInstrFetched;
735 /** Offset 0xd1 - Fetched bytes. */
736 uint8_t abInstr[15];
737 /** Offset 0xe0 - AVIC APIC_BACKING_PAGE pointer. */
738 SVMAVIC AvicBackingPagePtr;
739 /** Offset 0xe8-0xef - Reserved. */
740 uint8_t u8Reserved3[0xF0 - 0xE8];
741 /** Offset 0xf0 - AVIC LOGICAL_TABLE pointer. */
742 SVMAVIC AvicLogicalTablePtr;
743 /** Offset 0xf8 - AVIC PHYSICAL_TABLE pointer. */
744 SVMAVICPHYS AvicPhysicalTablePtr;
745} SVMVMCBCTRL;
746#pragma pack()
747/** Pointer to the SVMVMCBSTATESAVE structure. */
748typedef SVMVMCBCTRL *PSVMVMCBCTRL;
749/** Pointer to a const SVMVMCBSTATESAVE structure. */
750typedef const SVMVMCBCTRL *PCSVMVMCBCTRL;
751AssertCompileSize(SVMVMCBCTRL, 0x100);
752AssertCompileMemberOffset(SVMVMCBCTRL, u16InterceptRdCRx, 0x00);
753AssertCompileMemberOffset(SVMVMCBCTRL, u16InterceptWrCRx, 0x02);
754AssertCompileMemberOffset(SVMVMCBCTRL, u16InterceptRdDRx, 0x04);
755AssertCompileMemberOffset(SVMVMCBCTRL, u16InterceptWrDRx, 0x06);
756AssertCompileMemberOffset(SVMVMCBCTRL, u32InterceptXcpt, 0x08);
757AssertCompileMemberOffset(SVMVMCBCTRL, u64InterceptCtrl, 0x0c);
758AssertCompileMemberOffset(SVMVMCBCTRL, u8Reserved, 0x14);
759AssertCompileMemberOffset(SVMVMCBCTRL, u16PauseFilterThreshold, 0x3c);
760AssertCompileMemberOffset(SVMVMCBCTRL, u16PauseFilterCount, 0x3e);
761AssertCompileMemberOffset(SVMVMCBCTRL, u64IOPMPhysAddr, 0x40);
762AssertCompileMemberOffset(SVMVMCBCTRL, u64MSRPMPhysAddr, 0x48);
763AssertCompileMemberOffset(SVMVMCBCTRL, u64TSCOffset, 0x50);
764AssertCompileMemberOffset(SVMVMCBCTRL, TLBCtrl, 0x58);
765AssertCompileMemberOffset(SVMVMCBCTRL, IntCtrl, 0x60);
766AssertCompileMemberOffset(SVMVMCBCTRL, u64IntShadow, 0x68);
767AssertCompileMemberOffset(SVMVMCBCTRL, u64ExitCode, 0x70);
768AssertCompileMemberOffset(SVMVMCBCTRL, u64ExitInfo1, 0x78);
769AssertCompileMemberOffset(SVMVMCBCTRL, u64ExitInfo2, 0x80);
770AssertCompileMemberOffset(SVMVMCBCTRL, ExitIntInfo, 0x88);
771AssertCompileMemberOffset(SVMVMCBCTRL, NestedPaging, 0x90);
772AssertCompileMemberOffset(SVMVMCBCTRL, AvicBar, 0x98);
773AssertCompileMemberOffset(SVMVMCBCTRL, u8Reserved2, 0xa0);
774AssertCompileMemberOffset(SVMVMCBCTRL, EventInject, 0xa8);
775AssertCompileMemberOffset(SVMVMCBCTRL, u64NestedPagingCR3, 0xb0);
776AssertCompileMemberOffset(SVMVMCBCTRL, u64LBRVirt, 0xb8);
777AssertCompileMemberOffset(SVMVMCBCTRL, u64VmcbCleanBits, 0xc0);
778AssertCompileMemberOffset(SVMVMCBCTRL, u64NextRIP, 0xc8);
779AssertCompileMemberOffset(SVMVMCBCTRL, cbInstrFetched, 0xd0);
780AssertCompileMemberOffset(SVMVMCBCTRL, abInstr, 0xd1);
781AssertCompileMemberOffset(SVMVMCBCTRL, AvicBackingPagePtr, 0xe0);
782AssertCompileMemberOffset(SVMVMCBCTRL, u8Reserved3, 0xe8);
783AssertCompileMemberOffset(SVMVMCBCTRL, AvicLogicalTablePtr, 0xf0);
784AssertCompileMemberOffset(SVMVMCBCTRL, AvicPhysicalTablePtr, 0xf8);
785
786/**
787 * SVM VMCB state save area.
788 */
789#pragma pack(1)
790typedef struct
791{
792 /** Offset 0x400 - Guest ES register + hidden parts. */
793 SVMSEL ES;
794 /** Offset 0x410 - Guest CS register + hidden parts. */
795 SVMSEL CS;
796 /** Offset 0x420 - Guest SS register + hidden parts. */
797 SVMSEL SS;
798 /** Offset 0x430 - Guest DS register + hidden parts. */
799 SVMSEL DS;
800 /** Offset 0x440 - Guest FS register + hidden parts. */
801 SVMSEL FS;
802 /** Offset 0x450 - Guest GS register + hidden parts. */
803 SVMSEL GS;
804 /** Offset 0x460 - Guest GDTR register. */
805 SVMGDTR GDTR;
806 /** Offset 0x470 - Guest LDTR register + hidden parts. */
807 SVMSEL LDTR;
808 /** Offset 0x480 - Guest IDTR register. */
809 SVMIDTR IDTR;
810 /** Offset 0x490 - Guest TR register + hidden parts. */
811 SVMSEL TR;
812 /** Offset 0x4A0-0x4CA - Reserved. */
813 uint8_t u8Reserved4[0x4CB-0x4A0];
814 /** Offset 0x4CB - CPL. */
815 uint8_t u8CPL;
816 /** Offset 0x4CC-0x4CF - Reserved. */
817 uint8_t u8Reserved5[0x4D0-0x4CC];
818 /** Offset 0x4D0 - EFER. */
819 uint64_t u64EFER;
820 /** Offset 0x4D8-0x547 - Reserved. */
821 uint8_t u8Reserved6[0x548-0x4D8];
822 /** Offset 0x548 - CR4. */
823 uint64_t u64CR4;
824 /** Offset 0x550 - CR3. */
825 uint64_t u64CR3;
826 /** Offset 0x558 - CR0. */
827 uint64_t u64CR0;
828 /** Offset 0x560 - DR7. */
829 uint64_t u64DR7;
830 /** Offset 0x568 - DR6. */
831 uint64_t u64DR6;
832 /** Offset 0x570 - RFLAGS. */
833 uint64_t u64RFlags;
834 /** Offset 0x578 - RIP. */
835 uint64_t u64RIP;
836 /** Offset 0x580-0x5D7 - Reserved. */
837 uint8_t u8Reserved7[0x5D8-0x580];
838 /** Offset 0x5D8 - RSP. */
839 uint64_t u64RSP;
840 /** Offset 0x5E0-0x5F7 - Reserved. */
841 uint8_t u8Reserved8[0x5F8-0x5E0];
842 /** Offset 0x5F8 - RAX. */
843 uint64_t u64RAX;
844 /** Offset 0x600 - STAR. */
845 uint64_t u64STAR;
846 /** Offset 0x608 - LSTAR. */
847 uint64_t u64LSTAR;
848 /** Offset 0x610 - CSTAR. */
849 uint64_t u64CSTAR;
850 /** Offset 0x618 - SFMASK. */
851 uint64_t u64SFMASK;
852 /** Offset 0x620 - KernelGSBase. */
853 uint64_t u64KernelGSBase;
854 /** Offset 0x628 - SYSENTER_CS. */
855 uint64_t u64SysEnterCS;
856 /** Offset 0x630 - SYSENTER_ESP. */
857 uint64_t u64SysEnterESP;
858 /** Offset 0x638 - SYSENTER_EIP. */
859 uint64_t u64SysEnterEIP;
860 /** Offset 0x640 - CR2. */
861 uint64_t u64CR2;
862 /** Offset 0x648-0x667 - Reserved. */
863 uint8_t u8Reserved9[0x668-0x648];
864 /** Offset 0x668 - G_PAT. */
865 uint64_t u64GPAT;
866 /** Offset 0x670 - DBGCTL. */
867 uint64_t u64DBGCTL;
868 /** Offset 0x678 - BR_FROM. */
869 uint64_t u64BR_FROM;
870 /** Offset 0x680 - BR_TO. */
871 uint64_t u64BR_TO;
872 /** Offset 0x688 - LASTEXCPFROM. */
873 uint64_t u64LASTEXCPFROM;
874 /** Offset 0x690 - LASTEXCPTO. */
875 uint64_t u64LASTEXCPTO;
876} SVMVMCBSTATESAVE;
877#pragma pack()
878/** Pointer to the SVMVMCBSTATESAVE structure. */
879typedef SVMVMCBSTATESAVE *PSVMVMCBSTATESAVE;
880/** Pointer to a const SVMVMCBSTATESAVE structure. */
881typedef const SVMVMCBSTATESAVE *PCSVMVMCBSTATESAVE;
882AssertCompileSize(SVMVMCBSTATESAVE, 0x298);
883AssertCompileMemberOffset(SVMVMCBSTATESAVE, ES, 0x400 - 0x400);
884AssertCompileMemberOffset(SVMVMCBSTATESAVE, CS, 0x410 - 0x400);
885AssertCompileMemberOffset(SVMVMCBSTATESAVE, SS, 0x420 - 0x400);
886AssertCompileMemberOffset(SVMVMCBSTATESAVE, DS, 0x430 - 0x400);
887AssertCompileMemberOffset(SVMVMCBSTATESAVE, FS, 0x440 - 0x400);
888AssertCompileMemberOffset(SVMVMCBSTATESAVE, GS, 0x450 - 0x400);
889AssertCompileMemberOffset(SVMVMCBSTATESAVE, GDTR, 0x460 - 0x400);
890AssertCompileMemberOffset(SVMVMCBSTATESAVE, LDTR, 0x470 - 0x400);
891AssertCompileMemberOffset(SVMVMCBSTATESAVE, IDTR, 0x480 - 0x400);
892AssertCompileMemberOffset(SVMVMCBSTATESAVE, TR, 0x490 - 0x400);
893AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8Reserved4, 0x4a0 - 0x400);
894AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8CPL, 0x4cb - 0x400);
895AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8Reserved5, 0x4cc - 0x400);
896AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64EFER, 0x4d0 - 0x400);
897AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8Reserved6, 0x4d8 - 0x400);
898AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64CR4, 0x548 - 0x400);
899AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64CR3, 0x550 - 0x400);
900AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64CR0, 0x558 - 0x400);
901AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64DR7, 0x560 - 0x400);
902AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64DR6, 0x568 - 0x400);
903AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64RFlags, 0x570 - 0x400);
904AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64RIP, 0x578 - 0x400);
905AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8Reserved7, 0x580 - 0x400);
906AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64RSP, 0x5d8 - 0x400);
907AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8Reserved8, 0x5e0 - 0x400);
908AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64RAX, 0x5f8 - 0x400);
909AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64STAR, 0x600 - 0x400);
910AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64LSTAR, 0x608 - 0x400);
911AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64CSTAR, 0x610 - 0x400);
912AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64SFMASK, 0x618 - 0x400);
913AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64KernelGSBase, 0x620 - 0x400);
914AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64SysEnterCS, 0x628 - 0x400);
915AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64SysEnterESP, 0x630 - 0x400);
916AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64SysEnterEIP, 0x638 - 0x400);
917AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64CR2, 0x640 - 0x400);
918AssertCompileMemberOffset(SVMVMCBSTATESAVE, u8Reserved9, 0x648 - 0x400);
919AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64GPAT, 0x668 - 0x400);
920AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64DBGCTL, 0x670 - 0x400);
921AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64BR_FROM, 0x678 - 0x400);
922AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64BR_TO, 0x680 - 0x400);
923AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64LASTEXCPFROM, 0x688 - 0x400);
924AssertCompileMemberOffset(SVMVMCBSTATESAVE, u64LASTEXCPTO, 0x690 - 0x400);
925
926/**
927 * SVM VM Control Block. (VMCB)
928 */
929#pragma pack(1)
930typedef struct SVMVMCB
931{
932 /** Offset 0x00 - Control area. */
933 SVMVMCBCTRL ctrl;
934 /** Offset 0x100-0x3FF - Reserved. */
935 uint8_t u8Reserved3[0x400-0x100];
936 /** Offset 0x400 - State save area. */
937 SVMVMCBSTATESAVE guest;
938 /** Offset 0x698-0xFFF- Reserved. */
939 uint8_t u8Reserved10[0x1000-0x698];
940} SVMVMCB;
941#pragma pack()
942/** Pointer to the SVMVMCB structure. */
943typedef SVMVMCB *PSVMVMCB;
944/** Pointer to a const SVMVMCB structure. */
945typedef const SVMVMCB *PCSVMVMCB;
946AssertCompileMemberOffset(SVMVMCB, ctrl, 0x00);
947AssertCompileMemberOffset(SVMVMCB, u8Reserved3, 0x100);
948AssertCompileMemberOffset(SVMVMCB, guest, 0x400);
949AssertCompileMemberOffset(SVMVMCB, u8Reserved10, 0x698);
950AssertCompileSize(SVMVMCB, 0x1000);
951
952#ifdef IN_RING0
953VMMR0DECL(int) SVMR0InvalidatePage(PVM pVM, PVMCPU pVCpu, RTGCPTR GCVirt);
954#endif /* IN_RING0 */
955
956/**
957 * Segment attribute conversion between CPU and AMD-V VMCB format.
958 *
959 * The CPU format of the segment attribute is described in X86DESCATTRBITS
960 * which is 16-bits (i.e. includes 4 bits of the segment limit).
961 *
962 * The AMD-V VMCB format the segment attribute is compact 12-bits (strictly
963 * only the attribute bits and nothing else). Upper 4-bits are unused.
964 */
965#define HMSVM_CPU_2_VMCB_SEG_ATTR(a) ( ((a) & 0xff) | (((a) & 0xf000) >> 4) )
966#define HMSVM_VMCB_2_CPU_SEG_ATTR(a) ( ((a) & 0xff) | (((a) & 0x0f00) << 4) )
967
968/** @def HMSVM_SEG_REG_COPY_TO_VMCB
969 * Copies the specified segment register to a VMCB from a virtual CPU context.
970 *
971 * @param a_pCtx The virtual-CPU context.
972 * @param a_pVmcbStateSave Pointer to the VMCB state-save area.
973 * @param a_REG The segment register in the VMCB state-save
974 * struct (ES/CS/SS/DS).
975 * @param a_reg The segment register in the virtual CPU struct
976 * (es/cs/ss/ds).
977 */
978#define HMSVM_SEG_REG_COPY_TO_VMCB(a_pCtx, a_pVmcbStateSave, a_REG, a_reg) \
979 do \
980 { \
981 Assert((a_pCtx)->a_reg.fFlags & CPUMSELREG_FLAGS_VALID); \
982 Assert((a_pCtx)->a_reg.ValidSel == (a_pCtx)->a_reg.Sel); \
983 (a_pVmcbStateSave)->a_REG.u16Sel = (a_pCtx)->a_reg.Sel; \
984 (a_pVmcbStateSave)->a_REG.u32Limit = (a_pCtx)->a_reg.u32Limit; \
985 (a_pVmcbStateSave)->a_REG.u64Base = (a_pCtx)->a_reg.u64Base; \
986 (a_pVmcbStateSave)->a_REG.u16Attr = HMSVM_CPU_2_VMCB_SEG_ATTR((a_pCtx)->a_reg.Attr.u); \
987 } while (0)
988
989/** @def HMSVM_SEG_REG_COPY_TO_VMCB
990 * Copies the specified segment register from the VMCB to a virtual CPU
991 * context.
992 *
993 * @param a_pCtx The virtual-CPU context.
994 * @param a_pVmcbStateSave Pointer to the VMCB state-save area.
995 * @param a_REG The segment register in the VMCB state-save
996 * struct (ES/CS/SS/DS).
997 * @param a_reg The segment register in the virtual CPU struct
998 * (es/ds/ss/ds).
999 */
1000#define HMSVM_SEG_REG_COPY_FROM_VMCB(a_pCtx, a_pVmcbStateSave, a_REG, a_reg) \
1001 do \
1002 { \
1003 (a_pCtx)->a_reg.Sel = (a_pVmcbStateSave)->a_REG.u16Sel; \
1004 (a_pCtx)->a_reg.ValidSel = (a_pVmcbStateSave)->a_REG.u16Sel; \
1005 (a_pCtx)->a_reg.fFlags = CPUMSELREG_FLAGS_VALID; \
1006 (a_pCtx)->a_reg.u32Limit = (a_pVmcbStateSave)->a_REG.u32Limit; \
1007 (a_pCtx)->a_reg.u64Base = (a_pVmcbStateSave)->a_REG.u64Base; \
1008 (a_pCtx)->a_reg.Attr.u = HMSVM_VMCB_2_CPU_SEG_ATTR((a_pVmcbStateSave)->a_REG.u16Attr); \
1009 } while (0)
1010/** @} */
1011
1012
1013/** @} */
1014
1015#endif
1016
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