VirtualBox

source: vbox/trunk/include/VBox/vmm/hm_vmx.h@ 91014

最後變更 在這個檔案從91014是 90934,由 vboxsync 提交於 4 年 前

VMM: Nested VMX: bugref:10092 Added Tertiary Processor-based VM-execution controls, cleaned up comments and UNDEF to RSVD in VM-execution controls as they're not undefined but reserved. No functional change.

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 215.0 KB
 
1/** @file
2 * HM - VMX Structures and Definitions. (VMM)
3 */
4
5/*
6 * Copyright (C) 2006-2020 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.alldomusa.eu.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_INCLUDED_vmm_hm_vmx_h
27#define VBOX_INCLUDED_vmm_hm_vmx_h
28#ifndef RT_WITHOUT_PRAGMA_ONCE
29# pragma once
30#endif
31
32#include <VBox/types.h>
33#include <iprt/x86.h>
34#include <iprt/assertcompile.h>
35
36
37/** @defgroup grp_hm_vmx VMX Types and Definitions
38 * @ingroup grp_hm
39 * @{
40 */
41
42/** @name Host-state MSR lazy-restoration flags.
43 * @{
44 */
45/** The host MSRs have been saved. */
46#define VMX_LAZY_MSRS_SAVED_HOST RT_BIT(0)
47/** The guest MSRs are loaded and in effect. */
48#define VMX_LAZY_MSRS_LOADED_GUEST RT_BIT(1)
49/** @} */
50
51/** @name VMX HM-error codes for VERR_HM_UNSUPPORTED_CPU_FEATURE_COMBO.
52 * UFC = Unsupported Feature Combination.
53 * @{
54 */
55/** Unsupported pin-based VM-execution controls combo. */
56#define VMX_UFC_CTRL_PIN_EXEC 1
57/** Unsupported processor-based VM-execution controls combo. */
58#define VMX_UFC_CTRL_PROC_EXEC 2
59/** Unsupported move debug register VM-exit combo. */
60#define VMX_UFC_CTRL_PROC_MOV_DRX_EXIT 3
61/** Unsupported VM-entry controls combo. */
62#define VMX_UFC_CTRL_ENTRY 4
63/** Unsupported VM-exit controls combo. */
64#define VMX_UFC_CTRL_EXIT 5
65/** MSR storage capacity of the VMCS autoload/store area is not sufficient
66 * for storing host MSRs. */
67#define VMX_UFC_INSUFFICIENT_HOST_MSR_STORAGE 6
68/** MSR storage capacity of the VMCS autoload/store area is not sufficient
69 * for storing guest MSRs. */
70#define VMX_UFC_INSUFFICIENT_GUEST_MSR_STORAGE 7
71/** Invalid VMCS size. */
72#define VMX_UFC_INVALID_VMCS_SIZE 8
73/** Unsupported secondary processor-based VM-execution controls combo. */
74#define VMX_UFC_CTRL_PROC_EXEC2 9
75/** Invalid unrestricted-guest execution controls combo. */
76#define VMX_UFC_INVALID_UX_COMBO 10
77/** EPT flush type not supported. */
78#define VMX_UFC_EPT_FLUSH_TYPE_UNSUPPORTED 11
79/** EPT paging structure memory type is not write-back. */
80#define VMX_UFC_EPT_MEM_TYPE_NOT_WB 12
81/** EPT requires INVEPT instr. support but it's not available. */
82#define VMX_UFC_EPT_INVEPT_UNAVAILABLE 13
83/** EPT requires page-walk length of 4. */
84#define VMX_UFC_EPT_PAGE_WALK_LENGTH_UNSUPPORTED 14
85/** VMX VMWRITE all feature exposed to the guest but not supported on host. */
86#define VMX_UFC_GST_HOST_VMWRITE_ALL 15
87/** LBR stack size cannot be determined for the current CPU. */
88#define VMX_UFC_LBR_STACK_SIZE_UNKNOWN 16
89/** LBR stack size of the CPU exceeds our buffer size. */
90#define VMX_UFC_LBR_STACK_SIZE_OVERFLOW 17
91/** @} */
92
93/** @name VMX HM-error codes for VERR_VMX_VMCS_FIELD_CACHE_INVALID.
94 * VCI = VMCS-field Cache Invalid.
95 * @{
96 */
97/** Cache of VM-entry controls invalid. */
98#define VMX_VCI_CTRL_ENTRY 300
99/** Cache of VM-exit controls invalid. */
100#define VMX_VCI_CTRL_EXIT 301
101/** Cache of pin-based VM-execution controls invalid. */
102#define VMX_VCI_CTRL_PIN_EXEC 302
103/** Cache of processor-based VM-execution controls invalid. */
104#define VMX_VCI_CTRL_PROC_EXEC 303
105/** Cache of secondary processor-based VM-execution controls invalid. */
106#define VMX_VCI_CTRL_PROC_EXEC2 304
107/** Cache of exception bitmap invalid. */
108#define VMX_VCI_CTRL_XCPT_BITMAP 305
109/** Cache of TSC offset invalid. */
110#define VMX_VCI_CTRL_TSC_OFFSET 306
111/** @} */
112
113/** @name VMX HM-error codes for VERR_VMX_INVALID_GUEST_STATE.
114 * IGS = Invalid Guest State.
115 * @{
116 */
117/** An error occurred while checking invalid-guest-state. */
118#define VMX_IGS_ERROR 500
119/** The invalid guest-state checks did not find any reason why. */
120#define VMX_IGS_REASON_NOT_FOUND 501
121/** CR0 fixed1 bits invalid. */
122#define VMX_IGS_CR0_FIXED1 502
123/** CR0 fixed0 bits invalid. */
124#define VMX_IGS_CR0_FIXED0 503
125/** CR0.PE and CR0.PE invalid VT-x/host combination. */
126#define VMX_IGS_CR0_PG_PE_COMBO 504
127/** CR4 fixed1 bits invalid. */
128#define VMX_IGS_CR4_FIXED1 505
129/** CR4 fixed0 bits invalid. */
130#define VMX_IGS_CR4_FIXED0 506
131/** Reserved bits in VMCS' DEBUGCTL MSR field not set to 0 when
132 * VMX_VMCS_CTRL_ENTRY_LOAD_DEBUG is used. */
133#define VMX_IGS_DEBUGCTL_MSR_RESERVED 507
134/** CR0.PG not set for long-mode when not using unrestricted guest. */
135#define VMX_IGS_CR0_PG_LONGMODE 508
136/** CR4.PAE not set for long-mode guest when not using unrestricted guest. */
137#define VMX_IGS_CR4_PAE_LONGMODE 509
138/** CR4.PCIDE set for 32-bit guest. */
139#define VMX_IGS_CR4_PCIDE 510
140/** VMCS' DR7 reserved bits not set to 0. */
141#define VMX_IGS_DR7_RESERVED 511
142/** VMCS' PERF_GLOBAL MSR reserved bits not set to 0. */
143#define VMX_IGS_PERF_GLOBAL_MSR_RESERVED 512
144/** VMCS' EFER MSR reserved bits not set to 0. */
145#define VMX_IGS_EFER_MSR_RESERVED 513
146/** VMCS' EFER MSR.LMA does not match the IA32e mode guest control. */
147#define VMX_IGS_EFER_LMA_GUEST_MODE_MISMATCH 514
148/** VMCS' EFER MSR.LMA does not match EFER.LME of the guest when using paging
149 * without unrestricted guest. */
150#define VMX_IGS_EFER_LMA_LME_MISMATCH 515
151/** CS.Attr.P bit invalid. */
152#define VMX_IGS_CS_ATTR_P_INVALID 516
153/** CS.Attr reserved bits not set to 0. */
154#define VMX_IGS_CS_ATTR_RESERVED 517
155/** CS.Attr.G bit invalid. */
156#define VMX_IGS_CS_ATTR_G_INVALID 518
157/** CS is unusable. */
158#define VMX_IGS_CS_ATTR_UNUSABLE 519
159/** CS and SS DPL unequal. */
160#define VMX_IGS_CS_SS_ATTR_DPL_UNEQUAL 520
161/** CS and SS DPL mismatch. */
162#define VMX_IGS_CS_SS_ATTR_DPL_MISMATCH 521
163/** CS Attr.Type invalid. */
164#define VMX_IGS_CS_ATTR_TYPE_INVALID 522
165/** CS and SS RPL unequal. */
166#define VMX_IGS_SS_CS_RPL_UNEQUAL 523
167/** SS.Attr.DPL and SS RPL unequal. */
168#define VMX_IGS_SS_ATTR_DPL_RPL_UNEQUAL 524
169/** SS.Attr.DPL invalid for segment type. */
170#define VMX_IGS_SS_ATTR_DPL_INVALID 525
171/** SS.Attr.Type invalid. */
172#define VMX_IGS_SS_ATTR_TYPE_INVALID 526
173/** SS.Attr.P bit invalid. */
174#define VMX_IGS_SS_ATTR_P_INVALID 527
175/** SS.Attr reserved bits not set to 0. */
176#define VMX_IGS_SS_ATTR_RESERVED 528
177/** SS.Attr.G bit invalid. */
178#define VMX_IGS_SS_ATTR_G_INVALID 529
179/** DS.Attr.A bit invalid. */
180#define VMX_IGS_DS_ATTR_A_INVALID 530
181/** DS.Attr.P bit invalid. */
182#define VMX_IGS_DS_ATTR_P_INVALID 531
183/** DS.Attr.DPL and DS RPL unequal. */
184#define VMX_IGS_DS_ATTR_DPL_RPL_UNEQUAL 532
185/** DS.Attr reserved bits not set to 0. */
186#define VMX_IGS_DS_ATTR_RESERVED 533
187/** DS.Attr.G bit invalid. */
188#define VMX_IGS_DS_ATTR_G_INVALID 534
189/** DS.Attr.Type invalid. */
190#define VMX_IGS_DS_ATTR_TYPE_INVALID 535
191/** ES.Attr.A bit invalid. */
192#define VMX_IGS_ES_ATTR_A_INVALID 536
193/** ES.Attr.P bit invalid. */
194#define VMX_IGS_ES_ATTR_P_INVALID 537
195/** ES.Attr.DPL and DS RPL unequal. */
196#define VMX_IGS_ES_ATTR_DPL_RPL_UNEQUAL 538
197/** ES.Attr reserved bits not set to 0. */
198#define VMX_IGS_ES_ATTR_RESERVED 539
199/** ES.Attr.G bit invalid. */
200#define VMX_IGS_ES_ATTR_G_INVALID 540
201/** ES.Attr.Type invalid. */
202#define VMX_IGS_ES_ATTR_TYPE_INVALID 541
203/** FS.Attr.A bit invalid. */
204#define VMX_IGS_FS_ATTR_A_INVALID 542
205/** FS.Attr.P bit invalid. */
206#define VMX_IGS_FS_ATTR_P_INVALID 543
207/** FS.Attr.DPL and DS RPL unequal. */
208#define VMX_IGS_FS_ATTR_DPL_RPL_UNEQUAL 544
209/** FS.Attr reserved bits not set to 0. */
210#define VMX_IGS_FS_ATTR_RESERVED 545
211/** FS.Attr.G bit invalid. */
212#define VMX_IGS_FS_ATTR_G_INVALID 546
213/** FS.Attr.Type invalid. */
214#define VMX_IGS_FS_ATTR_TYPE_INVALID 547
215/** GS.Attr.A bit invalid. */
216#define VMX_IGS_GS_ATTR_A_INVALID 548
217/** GS.Attr.P bit invalid. */
218#define VMX_IGS_GS_ATTR_P_INVALID 549
219/** GS.Attr.DPL and DS RPL unequal. */
220#define VMX_IGS_GS_ATTR_DPL_RPL_UNEQUAL 550
221/** GS.Attr reserved bits not set to 0. */
222#define VMX_IGS_GS_ATTR_RESERVED 551
223/** GS.Attr.G bit invalid. */
224#define VMX_IGS_GS_ATTR_G_INVALID 552
225/** GS.Attr.Type invalid. */
226#define VMX_IGS_GS_ATTR_TYPE_INVALID 553
227/** V86 mode CS.Base invalid. */
228#define VMX_IGS_V86_CS_BASE_INVALID 554
229/** V86 mode CS.Limit invalid. */
230#define VMX_IGS_V86_CS_LIMIT_INVALID 555
231/** V86 mode CS.Attr invalid. */
232#define VMX_IGS_V86_CS_ATTR_INVALID 556
233/** V86 mode SS.Base invalid. */
234#define VMX_IGS_V86_SS_BASE_INVALID 557
235/** V86 mode SS.Limit invalid. */
236#define VMX_IGS_V86_SS_LIMIT_INVALID 558
237/** V86 mode SS.Attr invalid. */
238#define VMX_IGS_V86_SS_ATTR_INVALID 559
239/** V86 mode DS.Base invalid. */
240#define VMX_IGS_V86_DS_BASE_INVALID 560
241/** V86 mode DS.Limit invalid. */
242#define VMX_IGS_V86_DS_LIMIT_INVALID 561
243/** V86 mode DS.Attr invalid. */
244#define VMX_IGS_V86_DS_ATTR_INVALID 562
245/** V86 mode ES.Base invalid. */
246#define VMX_IGS_V86_ES_BASE_INVALID 563
247/** V86 mode ES.Limit invalid. */
248#define VMX_IGS_V86_ES_LIMIT_INVALID 564
249/** V86 mode ES.Attr invalid. */
250#define VMX_IGS_V86_ES_ATTR_INVALID 565
251/** V86 mode FS.Base invalid. */
252#define VMX_IGS_V86_FS_BASE_INVALID 566
253/** V86 mode FS.Limit invalid. */
254#define VMX_IGS_V86_FS_LIMIT_INVALID 567
255/** V86 mode FS.Attr invalid. */
256#define VMX_IGS_V86_FS_ATTR_INVALID 568
257/** V86 mode GS.Base invalid. */
258#define VMX_IGS_V86_GS_BASE_INVALID 569
259/** V86 mode GS.Limit invalid. */
260#define VMX_IGS_V86_GS_LIMIT_INVALID 570
261/** V86 mode GS.Attr invalid. */
262#define VMX_IGS_V86_GS_ATTR_INVALID 571
263/** Longmode CS.Base invalid. */
264#define VMX_IGS_LONGMODE_CS_BASE_INVALID 572
265/** Longmode SS.Base invalid. */
266#define VMX_IGS_LONGMODE_SS_BASE_INVALID 573
267/** Longmode DS.Base invalid. */
268#define VMX_IGS_LONGMODE_DS_BASE_INVALID 574
269/** Longmode ES.Base invalid. */
270#define VMX_IGS_LONGMODE_ES_BASE_INVALID 575
271/** SYSENTER ESP is not canonical. */
272#define VMX_IGS_SYSENTER_ESP_NOT_CANONICAL 576
273/** SYSENTER EIP is not canonical. */
274#define VMX_IGS_SYSENTER_EIP_NOT_CANONICAL 577
275/** PAT MSR invalid. */
276#define VMX_IGS_PAT_MSR_INVALID 578
277/** PAT MSR reserved bits not set to 0. */
278#define VMX_IGS_PAT_MSR_RESERVED 579
279/** GDTR.Base is not canonical. */
280#define VMX_IGS_GDTR_BASE_NOT_CANONICAL 580
281/** IDTR.Base is not canonical. */
282#define VMX_IGS_IDTR_BASE_NOT_CANONICAL 581
283/** GDTR.Limit invalid. */
284#define VMX_IGS_GDTR_LIMIT_INVALID 582
285/** IDTR.Limit invalid. */
286#define VMX_IGS_IDTR_LIMIT_INVALID 583
287/** Longmode RIP is invalid. */
288#define VMX_IGS_LONGMODE_RIP_INVALID 584
289/** RFLAGS reserved bits not set to 0. */
290#define VMX_IGS_RFLAGS_RESERVED 585
291/** RFLAGS RA1 reserved bits not set to 1. */
292#define VMX_IGS_RFLAGS_RESERVED1 586
293/** RFLAGS.VM (V86 mode) invalid. */
294#define VMX_IGS_RFLAGS_VM_INVALID 587
295/** RFLAGS.IF invalid. */
296#define VMX_IGS_RFLAGS_IF_INVALID 588
297/** Activity state invalid. */
298#define VMX_IGS_ACTIVITY_STATE_INVALID 589
299/** Activity state HLT invalid when SS.Attr.DPL is not zero. */
300#define VMX_IGS_ACTIVITY_STATE_HLT_INVALID 590
301/** Activity state ACTIVE invalid when block-by-STI or MOV SS. */
302#define VMX_IGS_ACTIVITY_STATE_ACTIVE_INVALID 591
303/** Activity state SIPI WAIT invalid. */
304#define VMX_IGS_ACTIVITY_STATE_SIPI_WAIT_INVALID 592
305/** Interruptibility state reserved bits not set to 0. */
306#define VMX_IGS_INTERRUPTIBILITY_STATE_RESERVED 593
307/** Interruptibility state cannot be block-by-STI -and- MOV SS. */
308#define VMX_IGS_INTERRUPTIBILITY_STATE_STI_MOVSS_INVALID 594
309/** Interruptibility state block-by-STI invalid for EFLAGS. */
310#define VMX_IGS_INTERRUPTIBILITY_STATE_STI_EFL_INVALID 595
311/** Interruptibility state invalid while trying to deliver external
312 * interrupt. */
313#define VMX_IGS_INTERRUPTIBILITY_STATE_EXT_INT_INVALID 596
314/** Interruptibility state block-by-MOVSS invalid while trying to deliver an
315 * NMI. */
316#define VMX_IGS_INTERRUPTIBILITY_STATE_MOVSS_INVALID 597
317/** Interruptibility state block-by-SMI invalid when CPU is not in SMM. */
318#define VMX_IGS_INTERRUPTIBILITY_STATE_SMI_INVALID 598
319/** Interruptibility state block-by-SMI invalid when trying to enter SMM. */
320#define VMX_IGS_INTERRUPTIBILITY_STATE_SMI_SMM_INVALID 599
321/** Interruptibility state block-by-STI (maybe) invalid when trying to
322 * deliver an NMI. */
323#define VMX_IGS_INTERRUPTIBILITY_STATE_STI_INVALID 600
324/** Interruptibility state block-by-NMI invalid when virtual-NMIs control is
325 * active. */
326#define VMX_IGS_INTERRUPTIBILITY_STATE_NMI_INVALID 601
327/** Pending debug exceptions reserved bits not set to 0. */
328#define VMX_IGS_PENDING_DEBUG_RESERVED 602
329/** Longmode pending debug exceptions reserved bits not set to 0. */
330#define VMX_IGS_LONGMODE_PENDING_DEBUG_RESERVED 603
331/** Pending debug exceptions.BS bit is not set when it should be. */
332#define VMX_IGS_PENDING_DEBUG_XCPT_BS_NOT_SET 604
333/** Pending debug exceptions.BS bit is not clear when it should be. */
334#define VMX_IGS_PENDING_DEBUG_XCPT_BS_NOT_CLEAR 605
335/** VMCS link pointer reserved bits not set to 0. */
336#define VMX_IGS_VMCS_LINK_PTR_RESERVED 606
337/** TR cannot index into LDT, TI bit MBZ. */
338#define VMX_IGS_TR_TI_INVALID 607
339/** LDTR cannot index into LDT. TI bit MBZ. */
340#define VMX_IGS_LDTR_TI_INVALID 608
341/** TR.Base is not canonical. */
342#define VMX_IGS_TR_BASE_NOT_CANONICAL 609
343/** FS.Base is not canonical. */
344#define VMX_IGS_FS_BASE_NOT_CANONICAL 610
345/** GS.Base is not canonical. */
346#define VMX_IGS_GS_BASE_NOT_CANONICAL 611
347/** LDTR.Base is not canonical. */
348#define VMX_IGS_LDTR_BASE_NOT_CANONICAL 612
349/** TR is unusable. */
350#define VMX_IGS_TR_ATTR_UNUSABLE 613
351/** TR.Attr.S bit invalid. */
352#define VMX_IGS_TR_ATTR_S_INVALID 614
353/** TR is not present. */
354#define VMX_IGS_TR_ATTR_P_INVALID 615
355/** TR.Attr reserved bits not set to 0. */
356#define VMX_IGS_TR_ATTR_RESERVED 616
357/** TR.Attr.G bit invalid. */
358#define VMX_IGS_TR_ATTR_G_INVALID 617
359/** Longmode TR.Attr.Type invalid. */
360#define VMX_IGS_LONGMODE_TR_ATTR_TYPE_INVALID 618
361/** TR.Attr.Type invalid. */
362#define VMX_IGS_TR_ATTR_TYPE_INVALID 619
363/** CS.Attr.S invalid. */
364#define VMX_IGS_CS_ATTR_S_INVALID 620
365/** CS.Attr.DPL invalid. */
366#define VMX_IGS_CS_ATTR_DPL_INVALID 621
367/** PAE PDPTE reserved bits not set to 0. */
368#define VMX_IGS_PAE_PDPTE_RESERVED 623
369/** VMCS link pointer does not point to a shadow VMCS. */
370#define VMX_IGS_VMCS_LINK_PTR_NOT_SHADOW 624
371/** VMCS link pointer to a shadow VMCS with invalid VMCS revision identifer. */
372#define VMX_IGS_VMCS_LINK_PTR_SHADOW_VMCS_ID_INVALID 625
373/** @} */
374
375/** @name VMX VMCS-Read cache indices.
376 * @{
377 */
378#define VMX_VMCS_GUEST_ES_BASE_CACHE_IDX 0
379#define VMX_VMCS_GUEST_CS_BASE_CACHE_IDX 1
380#define VMX_VMCS_GUEST_SS_BASE_CACHE_IDX 2
381#define VMX_VMCS_GUEST_DS_BASE_CACHE_IDX 3
382#define VMX_VMCS_GUEST_FS_BASE_CACHE_IDX 4
383#define VMX_VMCS_GUEST_GS_BASE_CACHE_IDX 5
384#define VMX_VMCS_GUEST_LDTR_BASE_CACHE_IDX 6
385#define VMX_VMCS_GUEST_TR_BASE_CACHE_IDX 7
386#define VMX_VMCS_GUEST_GDTR_BASE_CACHE_IDX 8
387#define VMX_VMCS_GUEST_IDTR_BASE_CACHE_IDX 9
388#define VMX_VMCS_GUEST_RSP_CACHE_IDX 10
389#define VMX_VMCS_GUEST_RIP_CACHE_IDX 11
390#define VMX_VMCS_GUEST_SYSENTER_ESP_CACHE_IDX 12
391#define VMX_VMCS_GUEST_SYSENTER_EIP_CACHE_IDX 13
392#define VMX_VMCS_RO_EXIT_QUALIFICATION_CACHE_IDX 14
393#define VMX_VMCS_RO_GUEST_LINEAR_ADDR_CACHE_IDX 15
394#define VMX_VMCS_MAX_CACHE_IDX (VMX_VMCS_RO_GUEST_LINEAR_ADDR_CACHE_IDX + 1)
395#define VMX_VMCS_GUEST_CR3_CACHE_IDX 16
396#define VMX_VMCS_MAX_NESTED_PAGING_CACHE_IDX (VMX_VMCS_GUEST_CR3_CACHE_IDX + 1)
397/** @} */
398
399/** @name VMX Extended Page Tables (EPT) Common Bits
400 * @{ */
401/** Bit 0 - Readable (we often think of it as present). */
402#define EPT_E_BIT_READ 0
403#define EPT_E_READ RT_BIT_64(EPT_E_BIT_READ) /**< @see EPT_E_BIT_READ */
404/** Bit 1 - Writable. */
405#define EPT_E_BIT_WRITE 1
406#define EPT_E_WRITE RT_BIT_64(EPT_E_BIT_WRITE) /**< @see EPT_E_BIT_WRITE */
407/** Bit 2 - Executable.
408 * @note This controls supervisor instruction fetching if mode-based
409 * execution control is enabled. */
410#define EPT_E_BIT_EXECUTE 2
411#define EPT_E_EXECUTE RT_BIT_64(EPT_E_BIT_EXECUTE) /**< @see EPT_E_BIT_EXECUTE */
412/** Bits 3-5 - Memory type mask (leaf only, MBZ).
413 * The memory type is only applicable for leaf entries and MBZ for
414 * non-leaf (causes miconfiguration exit). */
415#define EPT_E_TYPE_MASK UINT64_C(0x0038)
416/** Bits 3-5 - Memory type shifted mask. */
417#define EPT_E_TYPE_SMASK UINT64_C(0x0007)
418/** Bits 3-5 - Memory type shift count. */
419#define EPT_E_TYPE_SHIFT 3
420/** Bits 3-5 - Memory type: UC. */
421#define EPT_E_TYPE_UC (UINT64_C(0) << EPT_E_TYPE_SHIFT)
422/** Bits 3-5 - Memory type: WC. */
423#define EPT_E_TYPE_WC (UINT64_C(1) << EPT_E_TYPE_SHIFT)
424/** Bits 3-5 - Memory type: Invalid (2). */
425#define EPT_E_TYPE_INVALID_2 (UINT64_C(2) << EPT_E_TYPE_SHIFT)
426/** Bits 3-5 - Memory type: Invalid (3). */
427#define EPT_E_TYPE_INVALID_3 (UINT64_C(3) << EPT_E_TYPE_SHIFT)
428/** Bits 3-5 - Memory type: WT. */
429#define EPT_E_TYPE_WT (UINT64_C(4) << EPT_E_TYPE_SHIFT)
430/** Bits 3-5 - Memory type: WP. */
431#define EPT_E_TYPE_WP (UINT64_C(5) << EPT_E_TYPE_SHIFT)
432/** Bits 3-5 - Memory type: WB. */
433#define EPT_E_TYPE_WB (UINT64_C(6) << EPT_E_TYPE_SHIFT)
434/** Bits 3-5 - Memory type: Invalid (7). */
435#define EPT_E_TYPE_INVALID_7 (UINT64_C(7) << EPT_E_TYPE_SHIFT)
436
437/** Bit 6 - Ignore page attribute table (leaf, MBZ). */
438#define EPT_E_BIT_IGNORE_PAT 6
439#define EPT_E_IGNORE_PAT RT_BIT_64(EPT_E_BIT_IGNORE_PAT) /**< @see EPT_E_BIT_IGNORE_PAT */
440/** Bit 7 - Leaf entry (MBZ in PML4, ignored in PT). */
441#define EPT_E_BIT_LEAF 7
442#define EPT_E_LEAF RT_BIT_64(EPT_E_BIT_LEAF) /**< @see EPT_E_BIT_LEAF */
443/** Bit 8 - Accessed (all levels).
444 * @note Ignored and not written when EPTP bit 6 is 0. */
445#define EPT_E_BIT_ACCESSED 8
446#define EPT_E_ACCESSED RT_BIT_64(EPT_E_BIT_ACCESSED) /**< @see EPT_E_BIT_ACCESSED */
447/** Bit 9 - Dirty (leaf only).
448 * @note Ignored and not written when EPTP bit 6 is 0. */
449#define EPT_E_BIT_DIRTY 9
450#define EPT_E_DIRTY RT_BIT_64(EPT_E_BIT_DIRTY) /**< @see EPT_E_BIT_DIRTY */
451/** Bit 10 - Executable for usermode.
452 * @note This ignored if mode-based execution control is disabled. */
453#define EPT_E_BIT_USER_EXECUTE 10
454#define EPT_E_USER_EXECUTE RT_BIT_64(EPT_E_BIT_USER_EXECUTE) /**< @see EPT_E_BIT_USER_EXECUTE */
455
456/* 11 is always ignored (at time of writing) */
457
458/** Bits 12-51 - Physical Page number of the next level. */
459#define EPT_E_PG_MASK UINT64_C(0x000ffffffffff000)
460
461/** Bit 60 - Supervisor shadow stack (leaf only, ignored).
462 * @note Ignored if EPT bit 7 is 0. */
463#define EPT_E_BIT_SHADOW_STACK 60
464#define EPT_E_SHADOW_STACK RT_BIT_64(EPT_E_BIT_SHADOW_STACK) /**< @see EPT_E_BIT_SHADOW_STACK*/
465/** Bit 61 - Sub-page write permissions (PT only, ignored).
466 * @note Ignored if sub-page write permissions for EPT is disabled. */
467#define EPT_E_BIT_SHADOW_STACK 60
468#define EPT_E_SHADOW_STACK RT_BIT_64(EPT_E_BIT_SHADOW_STACK) /**< @see EPT_E_BIT_SHADOW_STACK*/
469
470/* Bit 62 is always ignored at time of writing. */
471
472/** Bit 63 - Supress \#VE (leaf only, ignored).
473 * @note Ignored if EPT violation to \#VE conversion is disabled. */
474#define EPT_E_BIT_IGNORE_VE 63
475#define EPT_E_IGNORE_VE RT_BIT_64(EPT_E_BIT_IGNORE_VE) /**< @see EPT_E_BIT_IGNORE_VE*/
476/** @} */
477
478
479/** @name VMX Extended Page Tables (EPT) Structures
480 * @{
481 */
482
483/**
484 * Number of page table entries in the EPT. (PDPTE/PDE/PTE)
485 */
486#define EPT_PG_ENTRIES X86_PG_PAE_ENTRIES
487
488/**
489 * EPT Page Directory Pointer Entry. Bit view.
490 * In accordance with the VT-x spec.
491 *
492 * @todo uint64_t isn't safe for bitfields (gcc pedantic warnings, and IIRC,
493 * this did cause trouble with one compiler/version).
494 */
495typedef struct EPTPML4EBITS
496{
497 /** Present bit. */
498 RT_GCC_EXTENSION uint64_t u1Present : 1;
499 /** Writable bit. */
500 RT_GCC_EXTENSION uint64_t u1Write : 1;
501 /** Executable bit. */
502 RT_GCC_EXTENSION uint64_t u1Execute : 1;
503 /** Reserved (must be 0). */
504 RT_GCC_EXTENSION uint64_t u5Reserved : 5;
505 /** Available for software. */
506 RT_GCC_EXTENSION uint64_t u4Available : 4;
507 /** Physical address of the next level (PD). Restricted by maximum physical address width of the cpu. */
508 RT_GCC_EXTENSION uint64_t u40PhysAddr : 40;
509 /** Available for software. */
510 RT_GCC_EXTENSION uint64_t u12Available : 12;
511} EPTPML4EBITS;
512AssertCompileSize(EPTPML4EBITS, 8);
513
514/** Bits 12-51 - - EPT - Physical Page number of the next level. */
515#define EPT_PML4E_PG_MASK X86_PML4E_PG_MASK
516/** The page shift to get the PML4 index. */
517#define EPT_PML4_SHIFT X86_PML4_SHIFT
518/** The PML4 index mask (apply to a shifted page address). */
519#define EPT_PML4_MASK X86_PML4_MASK
520
521/**
522 * EPT PML4E.
523 * In accordance with the VT-x spec.
524 */
525typedef union EPTPML4E
526{
527#ifndef VBOX_WITHOUT_PAGING_BIT_FIELDS
528 /** Normal view. */
529 EPTPML4EBITS n;
530#endif
531 /** Unsigned integer view. */
532 X86PGPAEUINT u;
533 /** 64 bit unsigned integer view. */
534 uint64_t au64[1];
535 /** 32 bit unsigned integer view. */
536 uint32_t au32[2];
537} EPTPML4E;
538AssertCompileSize(EPTPML4E, 8);
539/** Pointer to a PML4 table entry. */
540typedef EPTPML4E *PEPTPML4E;
541/** Pointer to a const PML4 table entry. */
542typedef const EPTPML4E *PCEPTPML4E;
543
544/**
545 * EPT PML4 Table.
546 * In accordance with the VT-x spec.
547 */
548typedef struct EPTPML4
549{
550 EPTPML4E a[EPT_PG_ENTRIES];
551} EPTPML4;
552AssertCompileSize(EPTPML4, 0x1000);
553/** Pointer to an EPT PML4 Table. */
554typedef EPTPML4 *PEPTPML4;
555/** Pointer to a const EPT PML4 Table. */
556typedef const EPTPML4 *PCEPTPML4;
557
558/**
559 * EPT Page Directory Pointer Entry. Bit view.
560 * In accordance with the VT-x spec.
561 */
562typedef struct EPTPDPTEBITS
563{
564 /** Present bit. */
565 RT_GCC_EXTENSION uint64_t u1Present : 1;
566 /** Writable bit. */
567 RT_GCC_EXTENSION uint64_t u1Write : 1;
568 /** Executable bit. */
569 RT_GCC_EXTENSION uint64_t u1Execute : 1;
570 /** Reserved (must be 0). */
571 RT_GCC_EXTENSION uint64_t u5Reserved : 5;
572 /** Available for software. */
573 RT_GCC_EXTENSION uint64_t u4Available : 4;
574 /** Physical address of the next level (PD). Restricted by maximum physical address width of the cpu. */
575 RT_GCC_EXTENSION uint64_t u40PhysAddr : 40;
576 /** Available for software. */
577 RT_GCC_EXTENSION uint64_t u12Available : 12;
578} EPTPDPTEBITS;
579AssertCompileSize(EPTPDPTEBITS, 8);
580
581/** Bits 12-51 - - EPT - Physical Page number of the next level. */
582#define EPT_PDPTE_PG_MASK X86_PDPE_PG_MASK
583/** The page shift to get the PDPT index. */
584#define EPT_PDPT_SHIFT X86_PDPT_SHIFT
585/** The PDPT index mask (apply to a shifted page address). */
586#define EPT_PDPT_MASK X86_PDPT_MASK_AMD64
587
588/**
589 * EPT Page Directory Pointer.
590 * In accordance with the VT-x spec.
591 */
592typedef union EPTPDPTE
593{
594#ifndef VBOX_WITHOUT_PAGING_BIT_FIELDS
595 /** Normal view. */
596 EPTPDPTEBITS n;
597#endif
598 /** Unsigned integer view. */
599 X86PGPAEUINT u;
600 /** 64 bit unsigned integer view. */
601 uint64_t au64[1];
602 /** 32 bit unsigned integer view. */
603 uint32_t au32[2];
604} EPTPDPTE;
605AssertCompileSize(EPTPDPTE, 8);
606/** Pointer to an EPT Page Directory Pointer Entry. */
607typedef EPTPDPTE *PEPTPDPTE;
608/** Pointer to a const EPT Page Directory Pointer Entry. */
609typedef const EPTPDPTE *PCEPTPDPTE;
610
611/**
612 * EPT Page Directory Pointer Table.
613 * In accordance with the VT-x spec.
614 */
615typedef struct EPTPDPT
616{
617 EPTPDPTE a[EPT_PG_ENTRIES];
618} EPTPDPT;
619AssertCompileSize(EPTPDPT, 0x1000);
620/** Pointer to an EPT Page Directory Pointer Table. */
621typedef EPTPDPT *PEPTPDPT;
622/** Pointer to a const EPT Page Directory Pointer Table. */
623typedef const EPTPDPT *PCEPTPDPT;
624
625/**
626 * EPT Page Directory Table Entry. Bit view.
627 * In accordance with the VT-x spec.
628 */
629typedef struct EPTPDEBITS
630{
631 /** Present bit. */
632 RT_GCC_EXTENSION uint64_t u1Present : 1;
633 /** Writable bit. */
634 RT_GCC_EXTENSION uint64_t u1Write : 1;
635 /** Executable bit. */
636 RT_GCC_EXTENSION uint64_t u1Execute : 1;
637 /** Reserved (must be 0). */
638 RT_GCC_EXTENSION uint64_t u4Reserved : 4;
639 /** Big page (must be 0 here). */
640 RT_GCC_EXTENSION uint64_t u1Size : 1;
641 /** Available for software. */
642 RT_GCC_EXTENSION uint64_t u4Available : 4;
643 /** Physical address of page table. Restricted by maximum physical address width of the cpu. */
644 RT_GCC_EXTENSION uint64_t u40PhysAddr : 40;
645 /** Available for software. */
646 RT_GCC_EXTENSION uint64_t u12Available : 12;
647} EPTPDEBITS;
648AssertCompileSize(EPTPDEBITS, 8);
649
650/** Bits 12-51 - - EPT - Physical Page number of the next level. */
651#define EPT_PDE_PG_MASK X86_PDE_PAE_PG_MASK
652/** The page shift to get the PD index. */
653#define EPT_PD_SHIFT X86_PD_PAE_SHIFT
654/** The PD index mask (apply to a shifted page address). */
655#define EPT_PD_MASK X86_PD_PAE_MASK
656
657/**
658 * EPT 2MB Page Directory Table Entry. Bit view.
659 * In accordance with the VT-x spec.
660 */
661typedef struct EPTPDE2MBITS
662{
663 /** Present bit. */
664 RT_GCC_EXTENSION uint64_t u1Present : 1;
665 /** Writable bit. */
666 RT_GCC_EXTENSION uint64_t u1Write : 1;
667 /** Executable bit. */
668 RT_GCC_EXTENSION uint64_t u1Execute : 1;
669 /** EPT Table Memory Type. MBZ for non-leaf nodes. */
670 RT_GCC_EXTENSION uint64_t u3EMT : 3;
671 /** Ignore PAT memory type */
672 RT_GCC_EXTENSION uint64_t u1IgnorePAT : 1;
673 /** Big page (must be 1 here). */
674 RT_GCC_EXTENSION uint64_t u1Size : 1;
675 /** Available for software. */
676 RT_GCC_EXTENSION uint64_t u4Available : 4;
677 /** Reserved (must be 0). */
678 RT_GCC_EXTENSION uint64_t u9Reserved : 9;
679 /** Physical address of the 2MB page. Restricted by maximum physical address width of the cpu. */
680 RT_GCC_EXTENSION uint64_t u31PhysAddr : 31;
681 /** Available for software. */
682 RT_GCC_EXTENSION uint64_t u12Available : 12;
683} EPTPDE2MBITS;
684AssertCompileSize(EPTPDE2MBITS, 8);
685
686/** Bits 21-51 - - EPT - Physical Page number of the next level. */
687#define EPT_PDE2M_PG_MASK X86_PDE2M_PAE_PG_MASK
688
689/**
690 * EPT Page Directory Table Entry.
691 * In accordance with the VT-x spec.
692 */
693typedef union EPTPDE
694{
695#ifndef VBOX_WITHOUT_PAGING_BIT_FIELDS
696 /** Normal view. */
697 EPTPDEBITS n;
698 /** 2MB view (big). */
699 EPTPDE2MBITS b;
700#endif
701 /** Unsigned integer view. */
702 X86PGPAEUINT u;
703 /** 64 bit unsigned integer view. */
704 uint64_t au64[1];
705 /** 32 bit unsigned integer view. */
706 uint32_t au32[2];
707} EPTPDE;
708AssertCompileSize(EPTPDE, 8);
709/** Pointer to an EPT Page Directory Table Entry. */
710typedef EPTPDE *PEPTPDE;
711/** Pointer to a const EPT Page Directory Table Entry. */
712typedef const EPTPDE *PCEPTPDE;
713
714/**
715 * EPT Page Directory Table.
716 * In accordance with the VT-x spec.
717 */
718typedef struct EPTPD
719{
720 EPTPDE a[EPT_PG_ENTRIES];
721} EPTPD;
722AssertCompileSize(EPTPD, 0x1000);
723/** Pointer to an EPT Page Directory Table. */
724typedef EPTPD *PEPTPD;
725/** Pointer to a const EPT Page Directory Table. */
726typedef const EPTPD *PCEPTPD;
727
728/**
729 * EPT Page Table Entry. Bit view.
730 * In accordance with the VT-x spec.
731 */
732typedef struct EPTPTEBITS
733{
734 /** 0 - Present bit.
735 * @remarks This is a convenience "misnomer". The bit actually indicates read access
736 * and the CPU will consider an entry with any of the first three bits set
737 * as present. Since all our valid entries will have this bit set, it can
738 * be used as a present indicator and allow some code sharing. */
739 RT_GCC_EXTENSION uint64_t u1Present : 1;
740 /** 1 - Writable bit. */
741 RT_GCC_EXTENSION uint64_t u1Write : 1;
742 /** 2 - Executable bit. */
743 RT_GCC_EXTENSION uint64_t u1Execute : 1;
744 /** 5:3 - EPT Memory Type. MBZ for non-leaf nodes. */
745 RT_GCC_EXTENSION uint64_t u3EMT : 3;
746 /** 6 - Ignore PAT memory type */
747 RT_GCC_EXTENSION uint64_t u1IgnorePAT : 1;
748 /** 11:7 - Available for software. */
749 RT_GCC_EXTENSION uint64_t u5Available : 5;
750 /** 51:12 - Physical address of page. Restricted by maximum physical
751 * address width of the cpu. */
752 RT_GCC_EXTENSION uint64_t u40PhysAddr : 40;
753 /** 63:52 - Available for software. */
754 RT_GCC_EXTENSION uint64_t u12Available : 12;
755} EPTPTEBITS;
756AssertCompileSize(EPTPTEBITS, 8);
757
758/** Bits 12-51 - - EPT - Physical Page number of the next level. */
759#define EPT_PTE_PG_MASK X86_PTE_PAE_PG_MASK
760/** The page shift to get the EPT PTE index. */
761#define EPT_PT_SHIFT X86_PT_PAE_SHIFT
762/** The EPT PT index mask (apply to a shifted page address). */
763#define EPT_PT_MASK X86_PT_PAE_MASK
764
765/**
766 * EPT Page Table Entry.
767 * In accordance with the VT-x spec.
768 */
769typedef union EPTPTE
770{
771#ifndef VBOX_WITHOUT_PAGING_BIT_FIELDS
772 /** Normal view. */
773 EPTPTEBITS n;
774#endif
775 /** Unsigned integer view. */
776 X86PGPAEUINT u;
777 /** 64 bit unsigned integer view. */
778 uint64_t au64[1];
779 /** 32 bit unsigned integer view. */
780 uint32_t au32[2];
781} EPTPTE;
782AssertCompileSize(EPTPTE, 8);
783/** Pointer to an EPT Page Directory Table Entry. */
784typedef EPTPTE *PEPTPTE;
785/** Pointer to a const EPT Page Directory Table Entry. */
786typedef const EPTPTE *PCEPTPTE;
787
788/**
789 * EPT Page Table.
790 * In accordance with the VT-x spec.
791 */
792typedef struct EPTPT
793{
794 EPTPTE a[EPT_PG_ENTRIES];
795} EPTPT;
796AssertCompileSize(EPTPT, 0x1000);
797/** Pointer to an extended page table. */
798typedef EPTPT *PEPTPT;
799/** Pointer to a const extended table. */
800typedef const EPTPT *PCEPTPT;
801
802/** @} */
803
804/**
805 * VMX VPID flush types.
806 * Valid enum members are in accordance with the VT-x spec.
807 */
808typedef enum
809{
810 /** Invalidate a specific page. */
811 VMXTLBFLUSHVPID_INDIV_ADDR = 0,
812 /** Invalidate one context (specific VPID). */
813 VMXTLBFLUSHVPID_SINGLE_CONTEXT = 1,
814 /** Invalidate all contexts (all VPIDs). */
815 VMXTLBFLUSHVPID_ALL_CONTEXTS = 2,
816 /** Invalidate a single VPID context retaining global mappings. */
817 VMXTLBFLUSHVPID_SINGLE_CONTEXT_RETAIN_GLOBALS = 3,
818 /** Unsupported by VirtualBox. */
819 VMXTLBFLUSHVPID_NOT_SUPPORTED = 0xbad0,
820 /** Unsupported by CPU. */
821 VMXTLBFLUSHVPID_NONE = 0xbad1
822} VMXTLBFLUSHVPID;
823AssertCompileSize(VMXTLBFLUSHVPID, 4);
824
825/**
826 * VMX EPT flush types.
827 * @note Valid enums values are in accordance with the VT-x spec.
828 */
829typedef enum
830{
831 /** Invalidate one context (specific EPT). */
832 VMXTLBFLUSHEPT_SINGLE_CONTEXT = 1,
833 /* Invalidate all contexts (all EPTs) */
834 VMXTLBFLUSHEPT_ALL_CONTEXTS = 2,
835 /** Unsupported by VirtualBox. */
836 VMXTLBFLUSHEPT_NOT_SUPPORTED = 0xbad0,
837 /** Unsupported by CPU. */
838 VMXTLBFLUSHEPT_NONE = 0xbad1
839} VMXTLBFLUSHEPT;
840AssertCompileSize(VMXTLBFLUSHEPT, 4);
841
842/**
843 * VMX Posted Interrupt Descriptor.
844 * In accordance with the VT-x spec.
845 */
846typedef struct VMXPOSTEDINTRDESC
847{
848 uint32_t aVectorBitmap[8];
849 uint32_t fOutstandingNotification : 1;
850 uint32_t uReserved0 : 31;
851 uint8_t au8Reserved0[28];
852} VMXPOSTEDINTRDESC;
853AssertCompileMemberSize(VMXPOSTEDINTRDESC, aVectorBitmap, 32);
854AssertCompileSize(VMXPOSTEDINTRDESC, 64);
855/** Pointer to a posted interrupt descriptor. */
856typedef VMXPOSTEDINTRDESC *PVMXPOSTEDINTRDESC;
857/** Pointer to a const posted interrupt descriptor. */
858typedef const VMXPOSTEDINTRDESC *PCVMXPOSTEDINTRDESC;
859
860/**
861 * VMX VMCS revision identifier.
862 * In accordance with the VT-x spec.
863 */
864typedef union
865{
866 struct
867 {
868 /** Revision identifier. */
869 uint32_t u31RevisionId : 31;
870 /** Whether this is a shadow VMCS. */
871 uint32_t fIsShadowVmcs : 1;
872 } n;
873 /* The unsigned integer view. */
874 uint32_t u;
875} VMXVMCSREVID;
876AssertCompileSize(VMXVMCSREVID, 4);
877/** Pointer to the VMXVMCSREVID union. */
878typedef VMXVMCSREVID *PVMXVMCSREVID;
879/** Pointer to a const VMXVMCSREVID union. */
880typedef const VMXVMCSREVID *PCVMXVMCSREVID;
881
882/**
883 * VMX VM-exit instruction information.
884 * In accordance with the VT-x spec.
885 */
886typedef union
887{
888 /** Plain unsigned int representation. */
889 uint32_t u;
890
891 /** INS and OUTS information. */
892 struct
893 {
894 uint32_t u7Reserved0 : 7;
895 /** The address size; 0=16-bit, 1=32-bit, 2=64-bit, rest undefined. */
896 uint32_t u3AddrSize : 3;
897 uint32_t u5Reserved1 : 5;
898 /** The segment register (X86_SREG_XXX). */
899 uint32_t iSegReg : 3;
900 uint32_t uReserved2 : 14;
901 } StrIo;
902
903 /** INVEPT, INVPCID, INVVPID information. */
904 struct
905 {
906 /** Scaling; 0=no scaling, 1=scale-by-2, 2=scale-by-4, 3=scale-by-8. */
907 uint32_t u2Scaling : 2;
908 uint32_t u5Undef0 : 5;
909 /** The address size; 0=16-bit, 1=32-bit, 2=64-bit, rest undefined. */
910 uint32_t u3AddrSize : 3;
911 /** Cleared to 0. */
912 uint32_t u1Cleared0 : 1;
913 uint32_t u4Undef0 : 4;
914 /** The segment register (X86_SREG_XXX). */
915 uint32_t iSegReg : 3;
916 /** The index register (X86_GREG_XXX). */
917 uint32_t iIdxReg : 4;
918 /** Set if index register is invalid. */
919 uint32_t fIdxRegInvalid : 1;
920 /** The base register (X86_GREG_XXX). */
921 uint32_t iBaseReg : 4;
922 /** Set if base register is invalid. */
923 uint32_t fBaseRegInvalid : 1;
924 /** Register 2 (X86_GREG_XXX). */
925 uint32_t iReg2 : 4;
926 } Inv;
927
928 /** VMCLEAR, VMPTRLD, VMPTRST, VMXON, XRSTORS, XSAVES information. */
929 struct
930 {
931 /** Scaling; 0=no scaling, 1=scale-by-2, 2=scale-by-4, 3=scale-by-8. */
932 uint32_t u2Scaling : 2;
933 uint32_t u5Reserved0 : 5;
934 /** The address size; 0=16-bit, 1=32-bit, 2=64-bit, rest undefined. */
935 uint32_t u3AddrSize : 3;
936 /** Cleared to 0. */
937 uint32_t u1Cleared0 : 1;
938 uint32_t u4Reserved0 : 4;
939 /** The segment register (X86_SREG_XXX). */
940 uint32_t iSegReg : 3;
941 /** The index register (X86_GREG_XXX). */
942 uint32_t iIdxReg : 4;
943 /** Set if index register is invalid. */
944 uint32_t fIdxRegInvalid : 1;
945 /** The base register (X86_GREG_XXX). */
946 uint32_t iBaseReg : 4;
947 /** Set if base register is invalid. */
948 uint32_t fBaseRegInvalid : 1;
949 /** Register 2 (X86_GREG_XXX). */
950 uint32_t iReg2 : 4;
951 } VmxXsave;
952
953 /** LIDT, LGDT, SIDT, SGDT information. */
954 struct
955 {
956 /** Scaling; 0=no scaling, 1=scale-by-2, 2=scale-by-4, 3=scale-by-8. */
957 uint32_t u2Scaling : 2;
958 uint32_t u5Undef0 : 5;
959 /** The address size; 0=16-bit, 1=32-bit, 2=64-bit, rest undefined. */
960 uint32_t u3AddrSize : 3;
961 /** Always cleared to 0. */
962 uint32_t u1Cleared0 : 1;
963 /** Operand size; 0=16-bit, 1=32-bit, undefined for 64-bit. */
964 uint32_t uOperandSize : 1;
965 uint32_t u3Undef0 : 3;
966 /** The segment register (X86_SREG_XXX). */
967 uint32_t iSegReg : 3;
968 /** The index register (X86_GREG_XXX). */
969 uint32_t iIdxReg : 4;
970 /** Set if index register is invalid. */
971 uint32_t fIdxRegInvalid : 1;
972 /** The base register (X86_GREG_XXX). */
973 uint32_t iBaseReg : 4;
974 /** Set if base register is invalid. */
975 uint32_t fBaseRegInvalid : 1;
976 /** Instruction identity (VMX_INSTR_ID_XXX). */
977 uint32_t u2InstrId : 2;
978 uint32_t u2Undef0 : 2;
979 } GdtIdt;
980
981 /** LLDT, LTR, SLDT, STR information. */
982 struct
983 {
984 /** Scaling; 0=no scaling, 1=scale-by-2, 2=scale-by-4, 3=scale-by-8. */
985 uint32_t u2Scaling : 2;
986 uint32_t u1Undef0 : 1;
987 /** Register 1 (X86_GREG_XXX). */
988 uint32_t iReg1 : 4;
989 /** The address size; 0=16-bit, 1=32-bit, 2=64-bit, rest undefined. */
990 uint32_t u3AddrSize : 3;
991 /** Memory/Register - Always cleared to 0 to indicate memory operand. */
992 uint32_t fIsRegOperand : 1;
993 uint32_t u4Undef0 : 4;
994 /** The segment register (X86_SREG_XXX). */
995 uint32_t iSegReg : 3;
996 /** The index register (X86_GREG_XXX). */
997 uint32_t iIdxReg : 4;
998 /** Set if index register is invalid. */
999 uint32_t fIdxRegInvalid : 1;
1000 /** The base register (X86_GREG_XXX). */
1001 uint32_t iBaseReg : 4;
1002 /** Set if base register is invalid. */
1003 uint32_t fBaseRegInvalid : 1;
1004 /** Instruction identity (VMX_INSTR_ID_XXX). */
1005 uint32_t u2InstrId : 2;
1006 uint32_t u2Undef0 : 2;
1007 } LdtTr;
1008
1009 /** RDRAND, RDSEED information. */
1010 struct
1011 {
1012 /** Scaling; 0=no scaling, 1=scale-by-2, 2=scale-by-4, 3=scale-by-8. */
1013 uint32_t u2Undef0 : 2;
1014 /** Destination register (X86_GREG_XXX). */
1015 uint32_t iReg1 : 4;
1016 uint32_t u4Undef0 : 4;
1017 /** Operand size; 0=16-bit, 1=32-bit, 2=64-bit, 3=unused. */
1018 uint32_t u2OperandSize : 2;
1019 uint32_t u19Def0 : 20;
1020 } RdrandRdseed;
1021
1022 /** VMREAD, VMWRITE information. */
1023 struct
1024 {
1025 /** Scaling; 0=no scaling, 1=scale-by-2, 2=scale-by-4, 3=scale-by-8. */
1026 uint32_t u2Scaling : 2;
1027 uint32_t u1Undef0 : 1;
1028 /** Register 1 (X86_GREG_XXX). */
1029 uint32_t iReg1 : 4;
1030 /** The address size; 0=16-bit, 1=32-bit, 2=64-bit, rest undefined. */
1031 uint32_t u3AddrSize : 3;
1032 /** Memory or register operand. */
1033 uint32_t fIsRegOperand : 1;
1034 /** Operand size; 0=16-bit, 1=32-bit, 2=64-bit, 3=unused. */
1035 uint32_t u4Undef0 : 4;
1036 /** The segment register (X86_SREG_XXX). */
1037 uint32_t iSegReg : 3;
1038 /** The index register (X86_GREG_XXX). */
1039 uint32_t iIdxReg : 4;
1040 /** Set if index register is invalid. */
1041 uint32_t fIdxRegInvalid : 1;
1042 /** The base register (X86_GREG_XXX). */
1043 uint32_t iBaseReg : 4;
1044 /** Set if base register is invalid. */
1045 uint32_t fBaseRegInvalid : 1;
1046 /** Register 2 (X86_GREG_XXX). */
1047 uint32_t iReg2 : 4;
1048 } VmreadVmwrite;
1049
1050 /** This is a combination field of all instruction information. Note! Not all field
1051 * combinations are valid (e.g., iReg1 is undefined for memory operands) and
1052 * specialized fields are overwritten by their generic counterparts (e.g. no
1053 * instruction identity field). */
1054 struct
1055 {
1056 /** Scaling; 0=no scaling, 1=scale-by-2, 2=scale-by-4, 3=scale-by-8. */
1057 uint32_t u2Scaling : 2;
1058 uint32_t u1Undef0 : 1;
1059 /** Register 1 (X86_GREG_XXX). */
1060 uint32_t iReg1 : 4;
1061 /** The address size; 0=16-bit, 1=32-bit, 2=64-bit, rest undefined. */
1062 uint32_t u3AddrSize : 3;
1063 /** Memory/Register - Always cleared to 0 to indicate memory operand. */
1064 uint32_t fIsRegOperand : 1;
1065 /** Operand size; 0=16-bit, 1=32-bit, 2=64-bit, 3=unused. */
1066 uint32_t uOperandSize : 2;
1067 uint32_t u2Undef0 : 2;
1068 /** The segment register (X86_SREG_XXX). */
1069 uint32_t iSegReg : 3;
1070 /** The index register (X86_GREG_XXX). */
1071 uint32_t iIdxReg : 4;
1072 /** Set if index register is invalid. */
1073 uint32_t fIdxRegInvalid : 1;
1074 /** The base register (X86_GREG_XXX). */
1075 uint32_t iBaseReg : 4;
1076 /** Set if base register is invalid. */
1077 uint32_t fBaseRegInvalid : 1;
1078 /** Register 2 (X86_GREG_XXX) or instruction identity. */
1079 uint32_t iReg2 : 4;
1080 } All;
1081} VMXEXITINSTRINFO;
1082AssertCompileSize(VMXEXITINSTRINFO, 4);
1083/** Pointer to a VMX VM-exit instruction info. struct. */
1084typedef VMXEXITINSTRINFO *PVMXEXITINSTRINFO;
1085/** Pointer to a const VMX VM-exit instruction info. struct. */
1086typedef const VMXEXITINSTRINFO *PCVMXEXITINSTRINFO;
1087
1088
1089/** @name VM-entry failure reported in Exit qualification.
1090 * See Intel spec. 26.7 "VM-entry failures during or after loading guest-state".
1091 * @{
1092 */
1093/** No errors during VM-entry. */
1094#define VMX_ENTRY_FAIL_QUAL_NO_ERROR (0)
1095/** Not used. */
1096#define VMX_ENTRY_FAIL_QUAL_NOT_USED (1)
1097/** Error while loading PDPTEs. */
1098#define VMX_ENTRY_FAIL_QUAL_PDPTE (2)
1099/** NMI injection when blocking-by-STI is set. */
1100#define VMX_ENTRY_FAIL_QUAL_NMI_INJECT (3)
1101/** Invalid VMCS link pointer. */
1102#define VMX_ENTRY_FAIL_QUAL_VMCS_LINK_PTR (4)
1103/** @} */
1104
1105
1106/** @name VMXMSRPM_XXX - VMX MSR-bitmap permissions.
1107 * These are -not- specified by Intel but used internally by VirtualBox.
1108 * @{ */
1109/** Guest software reads of this MSR must not cause a VM-exit. */
1110#define VMXMSRPM_ALLOW_RD RT_BIT(0)
1111/** Guest software reads of this MSR must cause a VM-exit. */
1112#define VMXMSRPM_EXIT_RD RT_BIT(1)
1113/** Guest software writes to this MSR must not cause a VM-exit. */
1114#define VMXMSRPM_ALLOW_WR RT_BIT(2)
1115/** Guest software writes to this MSR must cause a VM-exit. */
1116#define VMXMSRPM_EXIT_WR RT_BIT(3)
1117/** Guest software reads or writes of this MSR must not cause a VM-exit. */
1118#define VMXMSRPM_ALLOW_RD_WR (VMXMSRPM_ALLOW_RD | VMXMSRPM_ALLOW_WR)
1119/** Guest software reads or writes of this MSR must cause a VM-exit. */
1120#define VMXMSRPM_EXIT_RD_WR (VMXMSRPM_EXIT_RD | VMXMSRPM_EXIT_WR)
1121/** Mask of valid MSR read permissions. */
1122#define VMXMSRPM_RD_MASK (VMXMSRPM_ALLOW_RD | VMXMSRPM_EXIT_RD)
1123/** Mask of valid MSR write permissions. */
1124#define VMXMSRPM_WR_MASK (VMXMSRPM_ALLOW_WR | VMXMSRPM_EXIT_WR)
1125/** Mask of valid MSR permissions. */
1126#define VMXMSRPM_MASK (VMXMSRPM_RD_MASK | VMXMSRPM_WR_MASK)
1127/** */
1128/** Gets whether the MSR permission is valid or not. */
1129#define VMXMSRPM_IS_FLAG_VALID(a_Msrpm) ( (a_Msrpm) != 0 \
1130 && ((a_Msrpm) & ~VMXMSRPM_MASK) == 0 \
1131 && ((a_Msrpm) & VMXMSRPM_RD_MASK) != VMXMSRPM_RD_MASK \
1132 && ((a_Msrpm) & VMXMSRPM_WR_MASK) != VMXMSRPM_WR_MASK)
1133/** @} */
1134
1135/**
1136 * VMX MSR autoload/store slot.
1137 * In accordance with the VT-x spec.
1138 */
1139typedef struct VMXAUTOMSR
1140{
1141 /** The MSR Id. */
1142 uint32_t u32Msr;
1143 /** Reserved (MBZ). */
1144 uint32_t u32Reserved;
1145 /** The MSR value. */
1146 uint64_t u64Value;
1147} VMXAUTOMSR;
1148AssertCompileSize(VMXAUTOMSR, 16);
1149/** Pointer to an MSR load/store element. */
1150typedef VMXAUTOMSR *PVMXAUTOMSR;
1151/** Pointer to a const MSR load/store element. */
1152typedef const VMXAUTOMSR *PCVMXAUTOMSR;
1153
1154/** VMX auto load-store MSR (VMXAUTOMSR) offset mask. */
1155#define VMX_AUTOMSR_OFFSET_MASK 0xf
1156
1157/**
1158 * VMX tagged-TLB flush types.
1159 */
1160typedef enum
1161{
1162 VMXTLBFLUSHTYPE_EPT,
1163 VMXTLBFLUSHTYPE_VPID,
1164 VMXTLBFLUSHTYPE_EPT_VPID,
1165 VMXTLBFLUSHTYPE_NONE
1166} VMXTLBFLUSHTYPE;
1167/** Pointer to a VMXTLBFLUSHTYPE enum. */
1168typedef VMXTLBFLUSHTYPE *PVMXTLBFLUSHTYPE;
1169/** Pointer to a const VMXTLBFLUSHTYPE enum. */
1170typedef const VMXTLBFLUSHTYPE *PCVMXTLBFLUSHTYPE;
1171
1172/**
1173 * VMX controls MSR.
1174 * In accordance with the VT-x spec.
1175 */
1176typedef union
1177{
1178 struct
1179 {
1180 /** Bits set here -must- be set in the corresponding VM-execution controls. */
1181 uint32_t allowed0;
1182 /** Bits cleared here -must- be cleared in the corresponding VM-execution
1183 * controls. */
1184 uint32_t allowed1;
1185 } n;
1186 uint64_t u;
1187} VMXCTLSMSR;
1188AssertCompileSize(VMXCTLSMSR, 8);
1189/** Pointer to a VMXCTLSMSR union. */
1190typedef VMXCTLSMSR *PVMXCTLSMSR;
1191/** Pointer to a const VMXCTLSMSR union. */
1192typedef const VMXCTLSMSR *PCVMXCTLSMSR;
1193
1194/**
1195 * VMX MSRs.
1196 */
1197typedef struct VMXMSRS
1198{
1199 /** VMX/SMX Feature control. */
1200 uint64_t u64FeatCtrl;
1201 /** Basic information. */
1202 uint64_t u64Basic;
1203 /** Pin-based VM-execution controls. */
1204 VMXCTLSMSR PinCtls;
1205 /** Processor-based VM-execution controls. */
1206 VMXCTLSMSR ProcCtls;
1207 /** Secondary processor-based VM-execution controls. */
1208 VMXCTLSMSR ProcCtls2;
1209 /** VM-exit controls. */
1210 VMXCTLSMSR ExitCtls;
1211 /** VM-entry controls. */
1212 VMXCTLSMSR EntryCtls;
1213 /** True pin-based VM-execution controls. */
1214 VMXCTLSMSR TruePinCtls;
1215 /** True processor-based VM-execution controls. */
1216 VMXCTLSMSR TrueProcCtls;
1217 /** True VM-entry controls. */
1218 VMXCTLSMSR TrueEntryCtls;
1219 /** True VM-exit controls. */
1220 VMXCTLSMSR TrueExitCtls;
1221 /** Miscellaneous data. */
1222 uint64_t u64Misc;
1223 /** CR0 fixed-0 - bits set here must be set in VMX operation. */
1224 uint64_t u64Cr0Fixed0;
1225 /** CR0 fixed-1 - bits clear here must be clear in VMX operation. */
1226 uint64_t u64Cr0Fixed1;
1227 /** CR4 fixed-0 - bits set here must be set in VMX operation. */
1228 uint64_t u64Cr4Fixed0;
1229 /** CR4 fixed-1 - bits clear here must be clear in VMX operation. */
1230 uint64_t u64Cr4Fixed1;
1231 /** VMCS enumeration. */
1232 uint64_t u64VmcsEnum;
1233 /** VM Functions. */
1234 uint64_t u64VmFunc;
1235 /** EPT, VPID capabilities. */
1236 uint64_t u64EptVpidCaps;
1237 /** Reserved for future. */
1238 uint64_t a_u64Reserved[9];
1239} VMXMSRS;
1240AssertCompileSizeAlignment(VMXMSRS, 8);
1241AssertCompileSize(VMXMSRS, 224);
1242/** Pointer to a VMXMSRS struct. */
1243typedef VMXMSRS *PVMXMSRS;
1244/** Pointer to a const VMXMSRS struct. */
1245typedef const VMXMSRS *PCVMXMSRS;
1246
1247
1248/**
1249 * LBR MSRs.
1250 */
1251typedef struct LBRMSRS
1252{
1253 /** List of LastBranch-From-IP MSRs. */
1254 uint64_t au64BranchFromIpMsr[32];
1255 /** List of LastBranch-To-IP MSRs. */
1256 uint64_t au64BranchToIpMsr[32];
1257 /** The MSR containing the index to the most recent branch record. */
1258 uint64_t uBranchTosMsr;
1259} LBRMSRS;
1260AssertCompileSizeAlignment(LBRMSRS, 8);
1261/** Pointer to a VMXMSRS struct. */
1262typedef LBRMSRS *PLBRMSRS;
1263/** Pointer to a const VMXMSRS struct. */
1264typedef const LBRMSRS *PCLBRMSRS;
1265
1266
1267/** @name VMX Basic Exit Reasons.
1268 * In accordance with the VT-x spec.
1269 * Update g_aVMExitHandlers if new VM-exit reasons are added.
1270 * @{
1271 */
1272/** Invalid exit code */
1273#define VMX_EXIT_INVALID (-1)
1274/** Exception or non-maskable interrupt (NMI). */
1275#define VMX_EXIT_XCPT_OR_NMI 0
1276/** External interrupt. */
1277#define VMX_EXIT_EXT_INT 1
1278/** Triple fault. */
1279#define VMX_EXIT_TRIPLE_FAULT 2
1280/** INIT signal. */
1281#define VMX_EXIT_INIT_SIGNAL 3
1282/** Start-up IPI (SIPI). */
1283#define VMX_EXIT_SIPI 4
1284/** I/O system-management interrupt (SMI). */
1285#define VMX_EXIT_IO_SMI 5
1286/** Other SMI. */
1287#define VMX_EXIT_SMI 6
1288/** Interrupt window exiting. */
1289#define VMX_EXIT_INT_WINDOW 7
1290/** NMI window exiting. */
1291#define VMX_EXIT_NMI_WINDOW 8
1292/** Task switch. */
1293#define VMX_EXIT_TASK_SWITCH 9
1294/** CPUID. */
1295#define VMX_EXIT_CPUID 10
1296/** GETSEC. */
1297#define VMX_EXIT_GETSEC 11
1298/** HLT. */
1299#define VMX_EXIT_HLT 12
1300/** INVD. */
1301#define VMX_EXIT_INVD 13
1302/** INVLPG. */
1303#define VMX_EXIT_INVLPG 14
1304/** RDPMC. */
1305#define VMX_EXIT_RDPMC 15
1306/** RDTSC. */
1307#define VMX_EXIT_RDTSC 16
1308/** RSM in SMM. */
1309#define VMX_EXIT_RSM 17
1310/** VMCALL. */
1311#define VMX_EXIT_VMCALL 18
1312/** VMCLEAR. */
1313#define VMX_EXIT_VMCLEAR 19
1314/** VMLAUNCH. */
1315#define VMX_EXIT_VMLAUNCH 20
1316/** VMPTRLD. */
1317#define VMX_EXIT_VMPTRLD 21
1318/** VMPTRST. */
1319#define VMX_EXIT_VMPTRST 22
1320/** VMREAD. */
1321#define VMX_EXIT_VMREAD 23
1322/** VMRESUME. */
1323#define VMX_EXIT_VMRESUME 24
1324/** VMWRITE. */
1325#define VMX_EXIT_VMWRITE 25
1326/** VMXOFF. */
1327#define VMX_EXIT_VMXOFF 26
1328/** VMXON. */
1329#define VMX_EXIT_VMXON 27
1330/** Control-register accesses. */
1331#define VMX_EXIT_MOV_CRX 28
1332/** Debug-register accesses. */
1333#define VMX_EXIT_MOV_DRX 29
1334/** I/O instruction. */
1335#define VMX_EXIT_IO_INSTR 30
1336/** RDMSR. */
1337#define VMX_EXIT_RDMSR 31
1338/** WRMSR. */
1339#define VMX_EXIT_WRMSR 32
1340/** VM-entry failure due to invalid guest state. */
1341#define VMX_EXIT_ERR_INVALID_GUEST_STATE 33
1342/** VM-entry failure due to MSR loading. */
1343#define VMX_EXIT_ERR_MSR_LOAD 34
1344/** MWAIT. */
1345#define VMX_EXIT_MWAIT 36
1346/** VM-exit due to monitor trap flag. */
1347#define VMX_EXIT_MTF 37
1348/** MONITOR. */
1349#define VMX_EXIT_MONITOR 39
1350/** PAUSE. */
1351#define VMX_EXIT_PAUSE 40
1352/** VM-entry failure due to machine-check. */
1353#define VMX_EXIT_ERR_MACHINE_CHECK 41
1354/** TPR below threshold. Guest software executed MOV to CR8. */
1355#define VMX_EXIT_TPR_BELOW_THRESHOLD 43
1356/** VM-exit due to guest accessing physical address in the APIC-access page. */
1357#define VMX_EXIT_APIC_ACCESS 44
1358/** VM-exit due to EOI virtualization. */
1359#define VMX_EXIT_VIRTUALIZED_EOI 45
1360/** Access to GDTR/IDTR using LGDT, LIDT, SGDT or SIDT. */
1361#define VMX_EXIT_GDTR_IDTR_ACCESS 46
1362/** Access to LDTR/TR due to LLDT, LTR, SLDT, or STR. */
1363#define VMX_EXIT_LDTR_TR_ACCESS 47
1364/** EPT violation. */
1365#define VMX_EXIT_EPT_VIOLATION 48
1366/** EPT misconfiguration. */
1367#define VMX_EXIT_EPT_MISCONFIG 49
1368/** INVEPT. */
1369#define VMX_EXIT_INVEPT 50
1370/** RDTSCP. */
1371#define VMX_EXIT_RDTSCP 51
1372/** VMX-preemption timer expired. */
1373#define VMX_EXIT_PREEMPT_TIMER 52
1374/** INVVPID. */
1375#define VMX_EXIT_INVVPID 53
1376/** WBINVD. */
1377#define VMX_EXIT_WBINVD 54
1378/** XSETBV. */
1379#define VMX_EXIT_XSETBV 55
1380/** Guest completed write to virtual-APIC. */
1381#define VMX_EXIT_APIC_WRITE 56
1382/** RDRAND. */
1383#define VMX_EXIT_RDRAND 57
1384/** INVPCID. */
1385#define VMX_EXIT_INVPCID 58
1386/** VMFUNC. */
1387#define VMX_EXIT_VMFUNC 59
1388/** ENCLS. */
1389#define VMX_EXIT_ENCLS 60
1390/** RDSEED. */
1391#define VMX_EXIT_RDSEED 61
1392/** Page-modification log full. */
1393#define VMX_EXIT_PML_FULL 62
1394/** XSAVES. */
1395#define VMX_EXIT_XSAVES 63
1396/** XRSTORS. */
1397#define VMX_EXIT_XRSTORS 64
1398/** SPP-related event (SPP miss or misconfiguration). */
1399#define VMX_EXIT_SPP_EVENT 66
1400/* UMWAIT. */
1401#define VMX_EXIT_UMWAIT 67
1402/** TPAUSE. */
1403#define VMX_EXIT_TPAUSE 68
1404/** The maximum VM-exit value (inclusive). */
1405#define VMX_EXIT_MAX (VMX_EXIT_TPAUSE)
1406/** @} */
1407
1408
1409/** @name VM Instruction Errors.
1410 * In accordance with the VT-x spec.
1411 * See Intel spec. "30.4 VM Instruction Error Numbers"
1412 * @{
1413 */
1414typedef enum
1415{
1416 /** VMCALL executed in VMX root operation. */
1417 VMXINSTRERR_VMCALL_VMXROOTMODE = 1,
1418 /** VMCLEAR with invalid physical address. */
1419 VMXINSTRERR_VMCLEAR_INVALID_PHYSADDR = 2,
1420 /** VMCLEAR with VMXON pointer. */
1421 VMXINSTRERR_VMCLEAR_VMXON_PTR = 3,
1422 /** VMLAUNCH with non-clear VMCS. */
1423 VMXINSTRERR_VMLAUNCH_NON_CLEAR_VMCS = 4,
1424 /** VMRESUME with non-launched VMCS. */
1425 VMXINSTRERR_VMRESUME_NON_LAUNCHED_VMCS = 5,
1426 /** VMRESUME after VMXOFF (VMXOFF and VMXON between VMLAUNCH and VMRESUME). */
1427 VMXINSTRERR_VMRESUME_AFTER_VMXOFF = 6,
1428 /** VM-entry with invalid control field(s). */
1429 VMXINSTRERR_VMENTRY_INVALID_CTLS = 7,
1430 /** VM-entry with invalid host-state field(s). */
1431 VMXINSTRERR_VMENTRY_INVALID_HOST_STATE = 8,
1432 /** VMPTRLD with invalid physical address. */
1433 VMXINSTRERR_VMPTRLD_INVALID_PHYSADDR = 9,
1434 /** VMPTRLD with VMXON pointer. */
1435 VMXINSTRERR_VMPTRLD_VMXON_PTR = 10,
1436 /** VMPTRLD with incorrect VMCS revision identifier. */
1437 VMXINSTRERR_VMPTRLD_INCORRECT_VMCS_REV = 11,
1438 /** VMREAD from unsupported VMCS component. */
1439 VMXINSTRERR_VMREAD_INVALID_COMPONENT = 12,
1440 /** VMWRITE to unsupported VMCS component. */
1441 VMXINSTRERR_VMWRITE_INVALID_COMPONENT = 12,
1442 /** VMWRITE to read-only VMCS component. */
1443 VMXINSTRERR_VMWRITE_RO_COMPONENT = 13,
1444 /** VMXON executed in VMX root operation. */
1445 VMXINSTRERR_VMXON_IN_VMXROOTMODE = 15,
1446 /** VM-entry with invalid executive-VMCS pointer. */
1447 VMXINSTRERR_VMENTRY_EXEC_VMCS_INVALID_PTR = 16,
1448 /** VM-entry with non-launched executive VMCS. */
1449 VMXINSTRERR_VMENTRY_EXEC_VMCS_NON_LAUNCHED = 17,
1450 /** VM-entry with executive-VMCS pointer not VMXON pointer. */
1451 VMXINSTRERR_VMENTRY_EXEC_VMCS_PTR = 18,
1452 /** VMCALL with non-clear VMCS. */
1453 VMXINSTRERR_VMCALL_NON_CLEAR_VMCS = 19,
1454 /** VMCALL with invalid VM-exit control fields. */
1455 VMXINSTRERR_VMCALL_INVALID_EXITCTLS = 20,
1456 /** VMCALL with incorrect MSEG revision identifier. */
1457 VMXINSTRERR_VMCALL_INVALID_MSEG_ID = 22,
1458 /** VMXOFF under dual-monitor treatment of SMIs and SMM. */
1459 VMXINSTRERR_VMXOFF_DUAL_MON = 23,
1460 /** VMCALL with invalid SMM-monitor features. */
1461 VMXINSTRERR_VMCALL_INVALID_SMMCTLS = 24,
1462 /** VM-entry with invalid VM-execution control fields in executive VMCS. */
1463 VMXINSTRERR_VMENTRY_EXEC_VMCS_INVALID_CTLS = 25,
1464 /** VM-entry with events blocked by MOV SS. */
1465 VMXINSTRERR_VMENTRY_BLOCK_MOVSS = 26,
1466 /** Invalid operand to INVEPT/INVVPID. */
1467 VMXINSTRERR_INVEPT_INVVPID_INVALID_OPERAND = 28
1468} VMXINSTRERR;
1469/** @} */
1470
1471
1472/** @name VMX abort reasons.
1473 * In accordance with the VT-x spec.
1474 * See Intel spec. "27.7 VMX Aborts".
1475 * Update HMGetVmxAbortDesc() if new reasons are added.
1476 * @{
1477 */
1478typedef enum
1479{
1480 /** None - don't use this / uninitialized value. */
1481 VMXABORT_NONE = 0,
1482 /** VMX abort caused during saving of guest MSRs. */
1483 VMXABORT_SAVE_GUEST_MSRS = 1,
1484 /** VMX abort caused during host PDPTE checks. */
1485 VMXBOART_HOST_PDPTE = 2,
1486 /** VMX abort caused due to current VMCS being corrupted. */
1487 VMXABORT_CURRENT_VMCS_CORRUPT = 3,
1488 /** VMX abort caused during loading of host MSRs. */
1489 VMXABORT_LOAD_HOST_MSR = 4,
1490 /** VMX abort caused due to a machine-check exception during VM-exit. */
1491 VMXABORT_MACHINE_CHECK_XCPT = 5,
1492 /** VMX abort caused due to invalid return from long mode. */
1493 VMXABORT_HOST_NOT_IN_LONG_MODE = 6,
1494 /* Type size hack. */
1495 VMXABORT_32BIT_HACK = 0x7fffffff
1496} VMXABORT;
1497AssertCompileSize(VMXABORT, 4);
1498/** @} */
1499
1500
1501/** @name VMX MSR - Basic VMX information.
1502 * @{
1503 */
1504/** VMCS (and related regions) memory type - Uncacheable. */
1505#define VMX_BASIC_MEM_TYPE_UC 0
1506/** VMCS (and related regions) memory type - Write back. */
1507#define VMX_BASIC_MEM_TYPE_WB 6
1508/** Width of physical addresses used for VMCS and associated memory regions
1509 * (1=32-bit, 0=processor's physical address width). */
1510#define VMX_BASIC_PHYSADDR_WIDTH_32BIT RT_BIT_64(48)
1511
1512/** Bit fields for MSR_IA32_VMX_BASIC. */
1513/** VMCS revision identifier used by the processor. */
1514#define VMX_BF_BASIC_VMCS_ID_SHIFT 0
1515#define VMX_BF_BASIC_VMCS_ID_MASK UINT64_C(0x000000007fffffff)
1516/** Bit 31 is reserved and RAZ. */
1517#define VMX_BF_BASIC_RSVD_32_SHIFT 31
1518#define VMX_BF_BASIC_RSVD_32_MASK UINT64_C(0x0000000080000000)
1519/** VMCS size in bytes. */
1520#define VMX_BF_BASIC_VMCS_SIZE_SHIFT 32
1521#define VMX_BF_BASIC_VMCS_SIZE_MASK UINT64_C(0x00001fff00000000)
1522/** Bits 45:47 are reserved. */
1523#define VMX_BF_BASIC_RSVD_45_47_SHIFT 45
1524#define VMX_BF_BASIC_RSVD_45_47_MASK UINT64_C(0x0000e00000000000)
1525/** Width of physical addresses used for the VMCS and associated memory regions
1526 * (always 0 on CPUs that support Intel 64 architecture). */
1527#define VMX_BF_BASIC_PHYSADDR_WIDTH_SHIFT 48
1528#define VMX_BF_BASIC_PHYSADDR_WIDTH_MASK UINT64_C(0x0001000000000000)
1529/** Dual-monitor treatment of SMI and SMM supported. */
1530#define VMX_BF_BASIC_DUAL_MON_SHIFT 49
1531#define VMX_BF_BASIC_DUAL_MON_MASK UINT64_C(0x0002000000000000)
1532/** Memory type that must be used for the VMCS and associated memory regions. */
1533#define VMX_BF_BASIC_VMCS_MEM_TYPE_SHIFT 50
1534#define VMX_BF_BASIC_VMCS_MEM_TYPE_MASK UINT64_C(0x003c000000000000)
1535/** VM-exit instruction information for INS/OUTS. */
1536#define VMX_BF_BASIC_VMCS_INS_OUTS_SHIFT 54
1537#define VMX_BF_BASIC_VMCS_INS_OUTS_MASK UINT64_C(0x0040000000000000)
1538/** Whether 'true' VMX controls MSRs are supported for handling of default1 class
1539 * bits in VMX control MSRs. */
1540#define VMX_BF_BASIC_TRUE_CTLS_SHIFT 55
1541#define VMX_BF_BASIC_TRUE_CTLS_MASK UINT64_C(0x0080000000000000)
1542/** Whether VM-entry can delivery error code for all hardware exception vectors. */
1543#define VMX_BF_BASIC_XCPT_ERRCODE_SHIFT 56
1544#define VMX_BF_BASIC_XCPT_ERRCODE_MASK UINT64_C(0x0100000000000000)
1545/** Bits 57:63 are reserved and RAZ. */
1546#define VMX_BF_BASIC_RSVD_56_63_SHIFT 57
1547#define VMX_BF_BASIC_RSVD_56_63_MASK UINT64_C(0xfe00000000000000)
1548RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_BASIC_, UINT64_C(0), UINT64_MAX,
1549 (VMCS_ID, RSVD_32, VMCS_SIZE, RSVD_45_47, PHYSADDR_WIDTH, DUAL_MON, VMCS_MEM_TYPE,
1550 VMCS_INS_OUTS, TRUE_CTLS, XCPT_ERRCODE, RSVD_56_63));
1551/** @} */
1552
1553
1554/** @name VMX MSR - Miscellaneous data.
1555 * @{
1556 */
1557/** Whether VM-exit stores EFER.LMA into the "IA32e mode guest" field. */
1558#define VMX_MISC_EXIT_SAVE_EFER_LMA RT_BIT(5)
1559/** Whether Intel PT is supported in VMX operation. */
1560#define VMX_MISC_INTEL_PT RT_BIT(14)
1561/** Whether VMWRITE to any valid VMCS field incl. read-only fields, otherwise
1562 * VMWRITE cannot modify read-only VM-exit information fields. */
1563#define VMX_MISC_VMWRITE_ALL RT_BIT(29)
1564/** Whether VM-entry can inject software interrupts, INT1 (ICEBP) with 0-length
1565 * instructions. */
1566#define VMX_MISC_ENTRY_INJECT_SOFT_INT RT_BIT(30)
1567/** Maximum number of MSRs in the auto-load/store MSR areas, (n+1) * 512. */
1568#define VMX_MISC_MAX_MSRS(a_MiscMsr) (512 * (RT_BF_GET((a_MiscMsr), VMX_BF_MISC_MAX_MSRS) + 1))
1569/** Maximum CR3-target count supported by the CPU. */
1570#define VMX_MISC_CR3_TARGET_COUNT(a_MiscMsr) (((a) >> 16) & 0xff)
1571
1572/** Bit fields for MSR_IA32_VMX_MISC. */
1573/** Relationship between the preemption timer and tsc. */
1574#define VMX_BF_MISC_PREEMPT_TIMER_TSC_SHIFT 0
1575#define VMX_BF_MISC_PREEMPT_TIMER_TSC_MASK UINT64_C(0x000000000000001f)
1576/** Whether VM-exit stores EFER.LMA into the "IA32e mode guest" field. */
1577#define VMX_BF_MISC_EXIT_SAVE_EFER_LMA_SHIFT 5
1578#define VMX_BF_MISC_EXIT_SAVE_EFER_LMA_MASK UINT64_C(0x0000000000000020)
1579/** Activity states supported by the implementation. */
1580#define VMX_BF_MISC_ACTIVITY_STATES_SHIFT 6
1581#define VMX_BF_MISC_ACTIVITY_STATES_MASK UINT64_C(0x00000000000001c0)
1582/** Bits 9:13 is reserved and RAZ. */
1583#define VMX_BF_MISC_RSVD_9_13_SHIFT 9
1584#define VMX_BF_MISC_RSVD_9_13_MASK UINT64_C(0x0000000000003e00)
1585/** Whether Intel PT (Processor Trace) can be used in VMX operation. */
1586#define VMX_BF_MISC_INTEL_PT_SHIFT 14
1587#define VMX_BF_MISC_INTEL_PT_MASK UINT64_C(0x0000000000004000)
1588/** Whether RDMSR can be used to read IA32_SMBASE MSR in SMM. */
1589#define VMX_BF_MISC_SMM_READ_SMBASE_MSR_SHIFT 15
1590#define VMX_BF_MISC_SMM_READ_SMBASE_MSR_MASK UINT64_C(0x0000000000008000)
1591/** Number of CR3 target values supported by the processor. (0-256) */
1592#define VMX_BF_MISC_CR3_TARGET_SHIFT 16
1593#define VMX_BF_MISC_CR3_TARGET_MASK UINT64_C(0x0000000001ff0000)
1594/** Maximum number of MSRs in the VMCS. */
1595#define VMX_BF_MISC_MAX_MSRS_SHIFT 25
1596#define VMX_BF_MISC_MAX_MSRS_MASK UINT64_C(0x000000000e000000)
1597/** Whether IA32_SMM_MONITOR_CTL MSR can be modified to allow VMXOFF to block
1598 * SMIs. */
1599#define VMX_BF_MISC_VMXOFF_BLOCK_SMI_SHIFT 28
1600#define VMX_BF_MISC_VMXOFF_BLOCK_SMI_MASK UINT64_C(0x0000000010000000)
1601/** Whether VMWRITE to any valid VMCS field incl. read-only fields, otherwise
1602 * VMWRITE cannot modify read-only VM-exit information fields. */
1603#define VMX_BF_MISC_VMWRITE_ALL_SHIFT 29
1604#define VMX_BF_MISC_VMWRITE_ALL_MASK UINT64_C(0x0000000020000000)
1605/** Whether VM-entry can inject software interrupts, INT1 (ICEBP) with 0-length
1606 * instructions. */
1607#define VMX_BF_MISC_ENTRY_INJECT_SOFT_INT_SHIFT 30
1608#define VMX_BF_MISC_ENTRY_INJECT_SOFT_INT_MASK UINT64_C(0x0000000040000000)
1609/** Bit 31 is reserved and RAZ. */
1610#define VMX_BF_MISC_RSVD_31_SHIFT 31
1611#define VMX_BF_MISC_RSVD_31_MASK UINT64_C(0x0000000080000000)
1612/** 32-bit MSEG revision ID used by the processor. */
1613#define VMX_BF_MISC_MSEG_ID_SHIFT 32
1614#define VMX_BF_MISC_MSEG_ID_MASK UINT64_C(0xffffffff00000000)
1615RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_MISC_, UINT64_C(0), UINT64_MAX,
1616 (PREEMPT_TIMER_TSC, EXIT_SAVE_EFER_LMA, ACTIVITY_STATES, RSVD_9_13, INTEL_PT, SMM_READ_SMBASE_MSR,
1617 CR3_TARGET, MAX_MSRS, VMXOFF_BLOCK_SMI, VMWRITE_ALL, ENTRY_INJECT_SOFT_INT, RSVD_31, MSEG_ID));
1618/** @} */
1619
1620/** @name VMX MSR - VMCS enumeration.
1621 * Bit fields for MSR_IA32_VMX_VMCS_ENUM.
1622 * @{
1623 */
1624/** Bit 0 is reserved and RAZ. */
1625#define VMX_BF_VMCS_ENUM_RSVD_0_SHIFT 0
1626#define VMX_BF_VMCS_ENUM_RSVD_0_MASK UINT64_C(0x0000000000000001)
1627/** Highest index value used in VMCS field encoding. */
1628#define VMX_BF_VMCS_ENUM_HIGHEST_IDX_SHIFT 1
1629#define VMX_BF_VMCS_ENUM_HIGHEST_IDX_MASK UINT64_C(0x00000000000003fe)
1630/** Bit 10:63 is reserved and RAZ. */
1631#define VMX_BF_VMCS_ENUM_RSVD_10_63_SHIFT 10
1632#define VMX_BF_VMCS_ENUM_RSVD_10_63_MASK UINT64_C(0xfffffffffffffc00)
1633RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_VMCS_ENUM_, UINT64_C(0), UINT64_MAX,
1634 (RSVD_0, HIGHEST_IDX, RSVD_10_63));
1635/** @} */
1636
1637
1638/** @name VMX MSR - VM Functions.
1639 * Bit fields for MSR_IA32_VMX_VMFUNC.
1640 * @{
1641 */
1642/** EPTP-switching function changes the value of the EPTP to one chosen from the EPTP list. */
1643#define VMX_BF_VMFUNC_EPTP_SWITCHING_SHIFT 0
1644#define VMX_BF_VMFUNC_EPTP_SWITCHING_MASK UINT64_C(0x0000000000000001)
1645/** Bits 1:63 are reserved and RAZ. */
1646#define VMX_BF_VMFUNC_RSVD_1_63_SHIFT 1
1647#define VMX_BF_VMFUNC_RSVD_1_63_MASK UINT64_C(0xfffffffffffffffe)
1648RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_VMFUNC_, UINT64_C(0), UINT64_MAX,
1649 (EPTP_SWITCHING, RSVD_1_63));
1650/** @} */
1651
1652
1653/** @name VMX MSR - EPT/VPID capabilities.
1654 * @{
1655 */
1656/** Supports execute-only translations by EPT. */
1657#define MSR_IA32_VMX_EPT_VPID_CAP_RWX_X_ONLY RT_BIT_64(0)
1658/** Supports page-walk length of 4. */
1659#define MSR_IA32_VMX_EPT_VPID_CAP_PAGE_WALK_LENGTH_4 RT_BIT_64(6)
1660/** Supports page-walk length of 5. */
1661#define MSR_IA32_VMX_EPT_VPID_CAP_PAGE_WALK_LENGTH_5 RT_BIT_64(7)
1662/** Supports EPT paging-structure memory type to be uncacheable. */
1663#define MSR_IA32_VMX_EPT_VPID_CAP_EMT_UC RT_BIT_64(8)
1664/** Supports EPT paging structure memory type to be write-back. */
1665#define MSR_IA32_VMX_EPT_VPID_CAP_EMT_WB RT_BIT_64(14)
1666/** Supports EPT PDE to map a 2 MB page. */
1667#define MSR_IA32_VMX_EPT_VPID_CAP_PDE_2M RT_BIT_64(16)
1668/** Supports EPT PDPTE to map a 1 GB page. */
1669#define MSR_IA32_VMX_EPT_VPID_CAP_PDPTE_1G RT_BIT_64(17)
1670/** Supports INVEPT instruction. */
1671#define MSR_IA32_VMX_EPT_VPID_CAP_INVEPT RT_BIT_64(20)
1672/** Supports accessed and dirty flags for EPT. */
1673#define MSR_IA32_VMX_EPT_VPID_CAP_EPT_ACCESS_DIRTY RT_BIT_64(21)
1674/** Supports advanced VM-exit info. for EPT violations. */
1675#define MSR_IA32_VMX_EPT_VPID_CAP_ADVEXITINFO_EPT RT_BIT_64(22)
1676/** Supports supervisor shadow-stack control. */
1677#define MSR_IA32_VMX_EPT_VPID_CAP_SSS RT_BIT_64(23)
1678/** Supports single-context INVEPT type. */
1679#define MSR_IA32_VMX_EPT_VPID_CAP_INVEPT_SINGLE_CONTEXT RT_BIT_64(25)
1680/** Supports all-context INVEPT type. */
1681#define MSR_IA32_VMX_EPT_VPID_CAP_INVEPT_ALL_CONTEXTS RT_BIT_64(26)
1682/** Supports INVVPID instruction. */
1683#define MSR_IA32_VMX_EPT_VPID_CAP_INVVPID RT_BIT_64(32)
1684/** Supports individual-address INVVPID type. */
1685#define MSR_IA32_VMX_EPT_VPID_CAP_INVVPID_INDIV_ADDR RT_BIT_64(40)
1686/** Supports single-context INVVPID type. */
1687#define MSR_IA32_VMX_EPT_VPID_CAP_INVVPID_SINGLE_CONTEXT RT_BIT_64(41)
1688/** Supports all-context INVVPID type. */
1689#define MSR_IA32_VMX_EPT_VPID_CAP_INVVPID_ALL_CONTEXTS RT_BIT_64(42)
1690/** Supports singe-context-retaining-globals INVVPID type. */
1691#define MSR_IA32_VMX_EPT_VPID_CAP_INVVPID_SINGLE_CONTEXT_RETAIN_GLOBALS RT_BIT_64(43)
1692
1693/** Bit fields for MSR_IA32_VMX_EPT_VPID_CAP. */
1694#define VMX_BF_EPT_VPID_CAP_RWX_X_ONLY_SHIFT 0
1695#define VMX_BF_EPT_VPID_CAP_RWX_X_ONLY_MASK UINT64_C(0x0000000000000001)
1696#define VMX_BF_EPT_VPID_CAP_RSVD_1_5_SHIFT 1
1697#define VMX_BF_EPT_VPID_CAP_RSVD_1_5_MASK UINT64_C(0x000000000000003e)
1698#define VMX_BF_EPT_VPID_CAP_PAGE_WALK_LENGTH_4_SHIFT 6
1699#define VMX_BF_EPT_VPID_CAP_PAGE_WALK_LENGTH_4_MASK UINT64_C(0x0000000000000040)
1700#define VMX_BF_EPT_VPID_CAP_RSVD_7_SHIFT 7
1701#define VMX_BF_EPT_VPID_CAP_RSVD_7_MASK UINT64_C(0x0000000000000080)
1702#define VMX_BF_EPT_VPID_CAP_EMT_UC_SHIFT 8
1703#define VMX_BF_EPT_VPID_CAP_EMT_UC_MASK UINT64_C(0x0000000000000100)
1704#define VMX_BF_EPT_VPID_CAP_RSVD_9_13_SHIFT 9
1705#define VMX_BF_EPT_VPID_CAP_RSVD_9_13_MASK UINT64_C(0x0000000000003e00)
1706#define VMX_BF_EPT_VPID_CAP_EMT_WB_SHIFT 14
1707#define VMX_BF_EPT_VPID_CAP_EMT_WB_MASK UINT64_C(0x0000000000004000)
1708#define VMX_BF_EPT_VPID_CAP_RSVD_15_SHIFT 15
1709#define VMX_BF_EPT_VPID_CAP_RSVD_15_MASK UINT64_C(0x0000000000008000)
1710#define VMX_BF_EPT_VPID_CAP_PDE_2M_SHIFT 16
1711#define VMX_BF_EPT_VPID_CAP_PDE_2M_MASK UINT64_C(0x0000000000010000)
1712#define VMX_BF_EPT_VPID_CAP_PDPTE_1G_SHIFT 17
1713#define VMX_BF_EPT_VPID_CAP_PDPTE_1G_MASK UINT64_C(0x0000000000020000)
1714#define VMX_BF_EPT_VPID_CAP_RSVD_18_19_SHIFT 18
1715#define VMX_BF_EPT_VPID_CAP_RSVD_18_19_MASK UINT64_C(0x00000000000c0000)
1716#define VMX_BF_EPT_VPID_CAP_INVEPT_SHIFT 20
1717#define VMX_BF_EPT_VPID_CAP_INVEPT_MASK UINT64_C(0x0000000000100000)
1718#define VMX_BF_EPT_VPID_CAP_EPT_ACCESS_DIRTY_SHIFT 21
1719#define VMX_BF_EPT_VPID_CAP_EPT_ACCESS_DIRTY_MASK UINT64_C(0x0000000000200000)
1720#define VMX_BF_EPT_VPID_CAP_ADVEXITINFO_EPT_SHIFT 22
1721#define VMX_BF_EPT_VPID_CAP_ADVEXITINFO_EPT_MASK UINT64_C(0x0000000000400000)
1722#define VMX_BF_EPT_VPID_CAP_SSS_SHIFT 23
1723#define VMX_BF_EPT_VPID_CAP_SSS_MASK UINT64_C(0x0000000000800000)
1724#define VMX_BF_EPT_VPID_CAP_RSVD_24_SHIFT 24
1725#define VMX_BF_EPT_VPID_CAP_RSVD_24_MASK UINT64_C(0x0000000001000000)
1726#define VMX_BF_EPT_VPID_CAP_INVEPT_SINGLE_CTX_SHIFT 25
1727#define VMX_BF_EPT_VPID_CAP_INVEPT_SINGLE_CTX_MASK UINT64_C(0x0000000002000000)
1728#define VMX_BF_EPT_VPID_CAP_INVEPT_ALL_CTX_SHIFT 26
1729#define VMX_BF_EPT_VPID_CAP_INVEPT_ALL_CTX_MASK UINT64_C(0x0000000004000000)
1730#define VMX_BF_EPT_VPID_CAP_RSVD_27_31_SHIFT 27
1731#define VMX_BF_EPT_VPID_CAP_RSVD_27_31_MASK UINT64_C(0x00000000f8000000)
1732#define VMX_BF_EPT_VPID_CAP_INVVPID_SHIFT 32
1733#define VMX_BF_EPT_VPID_CAP_INVVPID_MASK UINT64_C(0x0000000100000000)
1734#define VMX_BF_EPT_VPID_CAP_RSVD_33_39_SHIFT 33
1735#define VMX_BF_EPT_VPID_CAP_RSVD_33_39_MASK UINT64_C(0x000000fe00000000)
1736#define VMX_BF_EPT_VPID_CAP_INVVPID_INDIV_ADDR_SHIFT 40
1737#define VMX_BF_EPT_VPID_CAP_INVVPID_INDIV_ADDR_MASK UINT64_C(0x0000010000000000)
1738#define VMX_BF_EPT_VPID_CAP_INVVPID_SINGLE_CTX_SHIFT 41
1739#define VMX_BF_EPT_VPID_CAP_INVVPID_SINGLE_CTX_MASK UINT64_C(0x0000020000000000)
1740#define VMX_BF_EPT_VPID_CAP_INVVPID_ALL_CTX_SHIFT 42
1741#define VMX_BF_EPT_VPID_CAP_INVVPID_ALL_CTX_MASK UINT64_C(0x0000040000000000)
1742#define VMX_BF_EPT_VPID_CAP_INVVPID_SINGLE_CTX_RETAIN_GLOBALS_SHIFT 43
1743#define VMX_BF_EPT_VPID_CAP_INVVPID_SINGLE_CTX_RETAIN_GLOBALS_MASK UINT64_C(0x0000080000000000)
1744#define VMX_BF_EPT_VPID_CAP_RSVD_44_63_SHIFT 44
1745#define VMX_BF_EPT_VPID_CAP_RSVD_44_63_MASK UINT64_C(0xfffff00000000000)
1746RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_EPT_VPID_CAP_, UINT64_C(0), UINT64_MAX,
1747 (RWX_X_ONLY, RSVD_1_5, PAGE_WALK_LENGTH_4, RSVD_7, EMT_UC, RSVD_9_13, EMT_WB, RSVD_15, PDE_2M,
1748 PDPTE_1G, RSVD_18_19, INVEPT, EPT_ACCESS_DIRTY, ADVEXITINFO_EPT, SSS, RSVD_24, INVEPT_SINGLE_CTX,
1749 INVEPT_ALL_CTX, RSVD_27_31, INVVPID, RSVD_33_39, INVVPID_INDIV_ADDR, INVVPID_SINGLE_CTX,
1750 INVVPID_ALL_CTX, INVVPID_SINGLE_CTX_RETAIN_GLOBALS, RSVD_44_63));
1751/** @} */
1752
1753
1754/** @name Extended Page Table Pointer (EPTP)
1755 * @{
1756 */
1757/** Uncachable EPT paging structure memory type. */
1758#define VMX_EPT_MEMTYPE_UC 0
1759/** Write-back EPT paging structure memory type. */
1760#define VMX_EPT_MEMTYPE_WB 6
1761/** Shift value to get the EPT page walk length (bits 5-3) */
1762#define VMX_EPT_PAGE_WALK_LENGTH_SHIFT 3
1763/** Mask value to get the EPT page walk length (bits 5-3) */
1764#define VMX_EPT_PAGE_WALK_LENGTH_MASK 7
1765/** Default EPT page-walk length (1 less than the actual EPT page-walk
1766 * length) */
1767#define VMX_EPT_PAGE_WALK_LENGTH_DEFAULT 3
1768/** @} */
1769
1770
1771/** @name VMCS fields and encoding.
1772 *
1773 * When adding a new field:
1774 * - Always add it to g_aVmcsFields.
1775 * - Consider if it needs to be added to VMXVVMCS.
1776 * @{
1777 */
1778/** 16-bit control fields. */
1779#define VMX_VMCS16_VPID 0x0000
1780#define VMX_VMCS16_POSTED_INT_NOTIFY_VECTOR 0x0002
1781#define VMX_VMCS16_EPTP_INDEX 0x0004
1782
1783/** 16-bit guest-state fields. */
1784#define VMX_VMCS16_GUEST_ES_SEL 0x0800
1785#define VMX_VMCS16_GUEST_CS_SEL 0x0802
1786#define VMX_VMCS16_GUEST_SS_SEL 0x0804
1787#define VMX_VMCS16_GUEST_DS_SEL 0x0806
1788#define VMX_VMCS16_GUEST_FS_SEL 0x0808
1789#define VMX_VMCS16_GUEST_GS_SEL 0x080a
1790#define VMX_VMCS16_GUEST_LDTR_SEL 0x080c
1791#define VMX_VMCS16_GUEST_TR_SEL 0x080e
1792#define VMX_VMCS16_GUEST_INTR_STATUS 0x0810
1793#define VMX_VMCS16_GUEST_PML_INDEX 0x0812
1794
1795/** 16-bits host-state fields. */
1796#define VMX_VMCS16_HOST_ES_SEL 0x0c00
1797#define VMX_VMCS16_HOST_CS_SEL 0x0c02
1798#define VMX_VMCS16_HOST_SS_SEL 0x0c04
1799#define VMX_VMCS16_HOST_DS_SEL 0x0c06
1800#define VMX_VMCS16_HOST_FS_SEL 0x0c08
1801#define VMX_VMCS16_HOST_GS_SEL 0x0c0a
1802#define VMX_VMCS16_HOST_TR_SEL 0x0c0c
1803
1804/** 64-bit control fields. */
1805#define VMX_VMCS64_CTRL_IO_BITMAP_A_FULL 0x2000
1806#define VMX_VMCS64_CTRL_IO_BITMAP_A_HIGH 0x2001
1807#define VMX_VMCS64_CTRL_IO_BITMAP_B_FULL 0x2002
1808#define VMX_VMCS64_CTRL_IO_BITMAP_B_HIGH 0x2003
1809#define VMX_VMCS64_CTRL_MSR_BITMAP_FULL 0x2004
1810#define VMX_VMCS64_CTRL_MSR_BITMAP_HIGH 0x2005
1811#define VMX_VMCS64_CTRL_EXIT_MSR_STORE_FULL 0x2006
1812#define VMX_VMCS64_CTRL_EXIT_MSR_STORE_HIGH 0x2007
1813#define VMX_VMCS64_CTRL_EXIT_MSR_LOAD_FULL 0x2008
1814#define VMX_VMCS64_CTRL_EXIT_MSR_LOAD_HIGH 0x2009
1815#define VMX_VMCS64_CTRL_ENTRY_MSR_LOAD_FULL 0x200a
1816#define VMX_VMCS64_CTRL_ENTRY_MSR_LOAD_HIGH 0x200b
1817#define VMX_VMCS64_CTRL_EXEC_VMCS_PTR_FULL 0x200c
1818#define VMX_VMCS64_CTRL_EXEC_VMCS_PTR_HIGH 0x200d
1819#define VMX_VMCS64_CTRL_EXEC_PML_ADDR_FULL 0x200e
1820#define VMX_VMCS64_CTRL_EXEC_PML_ADDR_HIGH 0x200f
1821#define VMX_VMCS64_CTRL_TSC_OFFSET_FULL 0x2010
1822#define VMX_VMCS64_CTRL_TSC_OFFSET_HIGH 0x2011
1823#define VMX_VMCS64_CTRL_VIRT_APIC_PAGEADDR_FULL 0x2012
1824#define VMX_VMCS64_CTRL_VIRT_APIC_PAGEADDR_HIGH 0x2013
1825#define VMX_VMCS64_CTRL_APIC_ACCESSADDR_FULL 0x2014
1826#define VMX_VMCS64_CTRL_APIC_ACCESSADDR_HIGH 0x2015
1827#define VMX_VMCS64_CTRL_POSTED_INTR_DESC_FULL 0x2016
1828#define VMX_VMCS64_CTRL_POSTED_INTR_DESC_HIGH 0x2017
1829#define VMX_VMCS64_CTRL_VMFUNC_CTRLS_FULL 0x2018
1830#define VMX_VMCS64_CTRL_VMFUNC_CTRLS_HIGH 0x2019
1831#define VMX_VMCS64_CTRL_EPTP_FULL 0x201a
1832#define VMX_VMCS64_CTRL_EPTP_HIGH 0x201b
1833#define VMX_VMCS64_CTRL_EOI_BITMAP_0_FULL 0x201c
1834#define VMX_VMCS64_CTRL_EOI_BITMAP_0_HIGH 0x201d
1835#define VMX_VMCS64_CTRL_EOI_BITMAP_1_FULL 0x201e
1836#define VMX_VMCS64_CTRL_EOI_BITMAP_1_HIGH 0x201f
1837#define VMX_VMCS64_CTRL_EOI_BITMAP_2_FULL 0x2020
1838#define VMX_VMCS64_CTRL_EOI_BITMAP_2_HIGH 0x2021
1839#define VMX_VMCS64_CTRL_EOI_BITMAP_3_FULL 0x2022
1840#define VMX_VMCS64_CTRL_EOI_BITMAP_3_HIGH 0x2023
1841#define VMX_VMCS64_CTRL_EPTP_LIST_FULL 0x2024
1842#define VMX_VMCS64_CTRL_EPTP_LIST_HIGH 0x2025
1843#define VMX_VMCS64_CTRL_VMREAD_BITMAP_FULL 0x2026
1844#define VMX_VMCS64_CTRL_VMREAD_BITMAP_HIGH 0x2027
1845#define VMX_VMCS64_CTRL_VMWRITE_BITMAP_FULL 0x2028
1846#define VMX_VMCS64_CTRL_VMWRITE_BITMAP_HIGH 0x2029
1847#define VMX_VMCS64_CTRL_VE_XCPT_INFO_ADDR_FULL 0x202a
1848#define VMX_VMCS64_CTRL_VE_XCPT_INFO_ADDR_HIGH 0x202b
1849#define VMX_VMCS64_CTRL_XSS_EXITING_BITMAP_FULL 0x202c
1850#define VMX_VMCS64_CTRL_XSS_EXITING_BITMAP_HIGH 0x202d
1851#define VMX_VMCS64_CTRL_ENCLS_EXITING_BITMAP_FULL 0x202e
1852#define VMX_VMCS64_CTRL_ENCLS_EXITING_BITMAP_HIGH 0x202f
1853#define VMX_VMCS64_CTRL_SPPTP_FULL 0x2030
1854#define VMX_VMCS64_CTRL_SPPTP_HIGH 0x2031
1855#define VMX_VMCS64_CTRL_TSC_MULTIPLIER_FULL 0x2032
1856#define VMX_VMCS64_CTRL_TSC_MULTIPLIER_HIGH 0x2033
1857#define VMX_VMCS64_CTRL_PROC_EXEC3_FULL 0x2034
1858#define VMX_VMCS64_CTRL_PROC_EXEC3_HIGH 0x2035
1859#define VMX_VMCS64_CTRL_ENCLV_EXITING_BITMAP_FULL 0x2036
1860#define VMX_VMCS64_CTRL_ENCLV_EXITING_BITMAP_HIGH 0x2037
1861
1862/** 64-bit read-only data fields. */
1863#define VMX_VMCS64_RO_GUEST_PHYS_ADDR_FULL 0x2400
1864#define VMX_VMCS64_RO_GUEST_PHYS_ADDR_HIGH 0x2401
1865
1866/** 64-bit guest-state fields. */
1867#define VMX_VMCS64_GUEST_VMCS_LINK_PTR_FULL 0x2800
1868#define VMX_VMCS64_GUEST_VMCS_LINK_PTR_HIGH 0x2801
1869#define VMX_VMCS64_GUEST_DEBUGCTL_FULL 0x2802
1870#define VMX_VMCS64_GUEST_DEBUGCTL_HIGH 0x2803
1871#define VMX_VMCS64_GUEST_PAT_FULL 0x2804
1872#define VMX_VMCS64_GUEST_PAT_HIGH 0x2805
1873#define VMX_VMCS64_GUEST_EFER_FULL 0x2806
1874#define VMX_VMCS64_GUEST_EFER_HIGH 0x2807
1875#define VMX_VMCS64_GUEST_PERF_GLOBAL_CTRL_FULL 0x2808
1876#define VMX_VMCS64_GUEST_PERF_GLOBAL_CTRL_HIGH 0x2809
1877#define VMX_VMCS64_GUEST_PDPTE0_FULL 0x280a
1878#define VMX_VMCS64_GUEST_PDPTE0_HIGH 0x280b
1879#define VMX_VMCS64_GUEST_PDPTE1_FULL 0x280c
1880#define VMX_VMCS64_GUEST_PDPTE1_HIGH 0x280d
1881#define VMX_VMCS64_GUEST_PDPTE2_FULL 0x280e
1882#define VMX_VMCS64_GUEST_PDPTE2_HIGH 0x280f
1883#define VMX_VMCS64_GUEST_PDPTE3_FULL 0x2810
1884#define VMX_VMCS64_GUEST_PDPTE3_HIGH 0x2811
1885#define VMX_VMCS64_GUEST_BNDCFGS_FULL 0x2812
1886#define VMX_VMCS64_GUEST_BNDCFGS_HIGH 0x2813
1887#define VMX_VMCS64_GUEST_RTIT_CTL_FULL 0x2814
1888#define VMX_VMCS64_GUEST_RTIT_CTL_HIGH 0x2815
1889#define VMX_VMCS64_GUEST_PKRS_FULL 0x2818
1890#define VMX_VMCS64_GUEST_PKRS_HIGH 0x2819
1891
1892/** 64-bit host-state fields. */
1893#define VMX_VMCS64_HOST_PAT_FULL 0x2c00
1894#define VMX_VMCS64_HOST_PAT_HIGH 0x2c01
1895#define VMX_VMCS64_HOST_EFER_FULL 0x2c02
1896#define VMX_VMCS64_HOST_EFER_HIGH 0x2c03
1897#define VMX_VMCS64_HOST_PERF_GLOBAL_CTRL_FULL 0x2c04
1898#define VMX_VMCS64_HOST_PERF_GLOBAL_CTRL_HIGH 0x2c05
1899#define VMX_VMCS64_HOST_PKRS_FULL 0x2c06
1900#define VMX_VMCS64_HOST_PKRS_HIGH 0x2c07
1901
1902/** 32-bit control fields. */
1903#define VMX_VMCS32_CTRL_PIN_EXEC 0x4000
1904#define VMX_VMCS32_CTRL_PROC_EXEC 0x4002
1905#define VMX_VMCS32_CTRL_EXCEPTION_BITMAP 0x4004
1906#define VMX_VMCS32_CTRL_PAGEFAULT_ERROR_MASK 0x4006
1907#define VMX_VMCS32_CTRL_PAGEFAULT_ERROR_MATCH 0x4008
1908#define VMX_VMCS32_CTRL_CR3_TARGET_COUNT 0x400a
1909#define VMX_VMCS32_CTRL_EXIT 0x400c
1910#define VMX_VMCS32_CTRL_EXIT_MSR_STORE_COUNT 0x400e
1911#define VMX_VMCS32_CTRL_EXIT_MSR_LOAD_COUNT 0x4010
1912#define VMX_VMCS32_CTRL_ENTRY 0x4012
1913#define VMX_VMCS32_CTRL_ENTRY_MSR_LOAD_COUNT 0x4014
1914#define VMX_VMCS32_CTRL_ENTRY_INTERRUPTION_INFO 0x4016
1915#define VMX_VMCS32_CTRL_ENTRY_EXCEPTION_ERRCODE 0x4018
1916#define VMX_VMCS32_CTRL_ENTRY_INSTR_LENGTH 0x401a
1917#define VMX_VMCS32_CTRL_TPR_THRESHOLD 0x401c
1918#define VMX_VMCS32_CTRL_PROC_EXEC2 0x401e
1919#define VMX_VMCS32_CTRL_PLE_GAP 0x4020
1920#define VMX_VMCS32_CTRL_PLE_WINDOW 0x4022
1921
1922/** 32-bits read-only fields. */
1923#define VMX_VMCS32_RO_VM_INSTR_ERROR 0x4400
1924#define VMX_VMCS32_RO_EXIT_REASON 0x4402
1925#define VMX_VMCS32_RO_EXIT_INTERRUPTION_INFO 0x4404
1926#define VMX_VMCS32_RO_EXIT_INTERRUPTION_ERROR_CODE 0x4406
1927#define VMX_VMCS32_RO_IDT_VECTORING_INFO 0x4408
1928#define VMX_VMCS32_RO_IDT_VECTORING_ERROR_CODE 0x440a
1929#define VMX_VMCS32_RO_EXIT_INSTR_LENGTH 0x440c
1930#define VMX_VMCS32_RO_EXIT_INSTR_INFO 0x440e
1931
1932/** 32-bit guest-state fields. */
1933#define VMX_VMCS32_GUEST_ES_LIMIT 0x4800
1934#define VMX_VMCS32_GUEST_CS_LIMIT 0x4802
1935#define VMX_VMCS32_GUEST_SS_LIMIT 0x4804
1936#define VMX_VMCS32_GUEST_DS_LIMIT 0x4806
1937#define VMX_VMCS32_GUEST_FS_LIMIT 0x4808
1938#define VMX_VMCS32_GUEST_GS_LIMIT 0x480a
1939#define VMX_VMCS32_GUEST_LDTR_LIMIT 0x480c
1940#define VMX_VMCS32_GUEST_TR_LIMIT 0x480e
1941#define VMX_VMCS32_GUEST_GDTR_LIMIT 0x4810
1942#define VMX_VMCS32_GUEST_IDTR_LIMIT 0x4812
1943#define VMX_VMCS32_GUEST_ES_ACCESS_RIGHTS 0x4814
1944#define VMX_VMCS32_GUEST_CS_ACCESS_RIGHTS 0x4816
1945#define VMX_VMCS32_GUEST_SS_ACCESS_RIGHTS 0x4818
1946#define VMX_VMCS32_GUEST_DS_ACCESS_RIGHTS 0x481a
1947#define VMX_VMCS32_GUEST_FS_ACCESS_RIGHTS 0x481c
1948#define VMX_VMCS32_GUEST_GS_ACCESS_RIGHTS 0x481e
1949#define VMX_VMCS32_GUEST_LDTR_ACCESS_RIGHTS 0x4820
1950#define VMX_VMCS32_GUEST_TR_ACCESS_RIGHTS 0x4822
1951#define VMX_VMCS32_GUEST_INT_STATE 0x4824
1952#define VMX_VMCS32_GUEST_ACTIVITY_STATE 0x4826
1953#define VMX_VMCS32_GUEST_SMBASE 0x4828
1954#define VMX_VMCS32_GUEST_SYSENTER_CS 0x482a
1955#define VMX_VMCS32_PREEMPT_TIMER_VALUE 0x482e
1956
1957/** 32-bit host-state fields. */
1958#define VMX_VMCS32_HOST_SYSENTER_CS 0x4C00
1959
1960/** Natural-width control fields. */
1961#define VMX_VMCS_CTRL_CR0_MASK 0x6000
1962#define VMX_VMCS_CTRL_CR4_MASK 0x6002
1963#define VMX_VMCS_CTRL_CR0_READ_SHADOW 0x6004
1964#define VMX_VMCS_CTRL_CR4_READ_SHADOW 0x6006
1965#define VMX_VMCS_CTRL_CR3_TARGET_VAL0 0x6008
1966#define VMX_VMCS_CTRL_CR3_TARGET_VAL1 0x600a
1967#define VMX_VMCS_CTRL_CR3_TARGET_VAL2 0x600c
1968#define VMX_VMCS_CTRL_CR3_TARGET_VAL3 0x600e
1969
1970/** Natural-width read-only data fields. */
1971#define VMX_VMCS_RO_EXIT_QUALIFICATION 0x6400
1972#define VMX_VMCS_RO_IO_RCX 0x6402
1973#define VMX_VMCS_RO_IO_RSI 0x6404
1974#define VMX_VMCS_RO_IO_RDI 0x6406
1975#define VMX_VMCS_RO_IO_RIP 0x6408
1976#define VMX_VMCS_RO_GUEST_LINEAR_ADDR 0x640a
1977
1978/** Natural-width guest-state fields. */
1979#define VMX_VMCS_GUEST_CR0 0x6800
1980#define VMX_VMCS_GUEST_CR3 0x6802
1981#define VMX_VMCS_GUEST_CR4 0x6804
1982#define VMX_VMCS_GUEST_ES_BASE 0x6806
1983#define VMX_VMCS_GUEST_CS_BASE 0x6808
1984#define VMX_VMCS_GUEST_SS_BASE 0x680a
1985#define VMX_VMCS_GUEST_DS_BASE 0x680c
1986#define VMX_VMCS_GUEST_FS_BASE 0x680e
1987#define VMX_VMCS_GUEST_GS_BASE 0x6810
1988#define VMX_VMCS_GUEST_LDTR_BASE 0x6812
1989#define VMX_VMCS_GUEST_TR_BASE 0x6814
1990#define VMX_VMCS_GUEST_GDTR_BASE 0x6816
1991#define VMX_VMCS_GUEST_IDTR_BASE 0x6818
1992#define VMX_VMCS_GUEST_DR7 0x681a
1993#define VMX_VMCS_GUEST_RSP 0x681c
1994#define VMX_VMCS_GUEST_RIP 0x681e
1995#define VMX_VMCS_GUEST_RFLAGS 0x6820
1996#define VMX_VMCS_GUEST_PENDING_DEBUG_XCPTS 0x6822
1997#define VMX_VMCS_GUEST_SYSENTER_ESP 0x6824
1998#define VMX_VMCS_GUEST_SYSENTER_EIP 0x6826
1999#define VMX_VMCS_GUEST_S_CET 0x6828
2000#define VMX_VMCS_GUEST_SSP 0x682a
2001#define VMX_VMCS_GUEST_INTR_SSP_TABLE_ADDR 0x682c
2002
2003/** Natural-width host-state fields. */
2004#define VMX_VMCS_HOST_CR0 0x6c00
2005#define VMX_VMCS_HOST_CR3 0x6c02
2006#define VMX_VMCS_HOST_CR4 0x6c04
2007#define VMX_VMCS_HOST_FS_BASE 0x6c06
2008#define VMX_VMCS_HOST_GS_BASE 0x6c08
2009#define VMX_VMCS_HOST_TR_BASE 0x6c0a
2010#define VMX_VMCS_HOST_GDTR_BASE 0x6c0c
2011#define VMX_VMCS_HOST_IDTR_BASE 0x6c0e
2012#define VMX_VMCS_HOST_SYSENTER_ESP 0x6c10
2013#define VMX_VMCS_HOST_SYSENTER_EIP 0x6c12
2014#define VMX_VMCS_HOST_RSP 0x6c14
2015#define VMX_VMCS_HOST_RIP 0x6c16
2016#define VMX_VMCS_HOST_S_CET 0x6c18
2017#define VMX_VMCS_HOST_SSP 0x6c1a
2018#define VMX_VMCS_HOST_INTR_SSP_TABLE_ADDR 0x6c1c
2019
2020#define VMX_VMCS16_GUEST_SEG_SEL(a_iSegReg) (VMX_VMCS16_GUEST_ES_SEL + (a_iSegReg) * 2)
2021#define VMX_VMCS_GUEST_SEG_BASE(a_iSegReg) (VMX_VMCS_GUEST_ES_BASE + (a_iSegReg) * 2)
2022#define VMX_VMCS32_GUEST_SEG_LIMIT(a_iSegReg) (VMX_VMCS32_GUEST_ES_LIMIT + (a_iSegReg) * 2)
2023#define VMX_VMCS32_GUEST_SEG_ACCESS_RIGHTS(a_iSegReg) (VMX_VMCS32_GUEST_ES_ACCESS_RIGHTS + (a_iSegReg) * 2)
2024
2025/**
2026 * VMCS field.
2027 * In accordance with the VT-x spec.
2028 */
2029typedef union
2030{
2031 struct
2032 {
2033 /** The access type; 0=full, 1=high of 64-bit fields. */
2034 uint32_t fAccessType : 1;
2035 /** The index. */
2036 uint32_t u8Index : 8;
2037 /** The type; 0=control, 1=VM-exit info, 2=guest-state, 3=host-state. */
2038 uint32_t u2Type : 2;
2039 /** Reserved (MBZ). */
2040 uint32_t u1Reserved0 : 1;
2041 /** The width; 0=16-bit, 1=64-bit, 2=32-bit, 3=natural-width. */
2042 uint32_t u2Width : 2;
2043 /** Reserved (MBZ). */
2044 uint32_t u18Reserved0 : 18;
2045 } n;
2046
2047 /* The unsigned integer view. */
2048 uint32_t u;
2049} VMXVMCSFIELD;
2050AssertCompileSize(VMXVMCSFIELD, 4);
2051/** Pointer to a VMCS field. */
2052typedef VMXVMCSFIELD *PVMXVMCSFIELD;
2053/** Pointer to a const VMCS field. */
2054typedef const VMXVMCSFIELD *PCVMXVMCSFIELD;
2055
2056/** VMCS field: Mask of reserved bits (bits 63:15 MBZ), bit 12 is not included! */
2057#define VMX_VMCSFIELD_RSVD_MASK UINT64_C(0xffffffffffff8000)
2058
2059/** Bits fields for a VMCS field. */
2060#define VMX_BF_VMCSFIELD_ACCESS_TYPE_SHIFT 0
2061#define VMX_BF_VMCSFIELD_ACCESS_TYPE_MASK UINT32_C(0x00000001)
2062#define VMX_BF_VMCSFIELD_INDEX_SHIFT 1
2063#define VMX_BF_VMCSFIELD_INDEX_MASK UINT32_C(0x000003fe)
2064#define VMX_BF_VMCSFIELD_TYPE_SHIFT 10
2065#define VMX_BF_VMCSFIELD_TYPE_MASK UINT32_C(0x00000c00)
2066#define VMX_BF_VMCSFIELD_RSVD_12_SHIFT 12
2067#define VMX_BF_VMCSFIELD_RSVD_12_MASK UINT32_C(0x00001000)
2068#define VMX_BF_VMCSFIELD_WIDTH_SHIFT 13
2069#define VMX_BF_VMCSFIELD_WIDTH_MASK UINT32_C(0x00006000)
2070#define VMX_BF_VMCSFIELD_RSVD_15_31_SHIFT 15
2071#define VMX_BF_VMCSFIELD_RSVD_15_31_MASK UINT32_C(0xffff8000)
2072RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_VMCSFIELD_, UINT32_C(0), UINT32_MAX,
2073 (ACCESS_TYPE, INDEX, TYPE, RSVD_12, WIDTH, RSVD_15_31));
2074
2075/**
2076 * VMCS field encoding: Access type.
2077 * In accordance with the VT-x spec.
2078 */
2079typedef enum
2080{
2081 VMXVMCSFIELDACCESS_FULL = 0,
2082 VMXVMCSFIELDACCESS_HIGH
2083} VMXVMCSFIELDACCESS;
2084AssertCompileSize(VMXVMCSFIELDACCESS, 4);
2085/** VMCS field encoding type: Full. */
2086#define VMX_VMCSFIELD_ACCESS_FULL 0
2087/** VMCS field encoding type: High. */
2088#define VMX_VMCSFIELD_ACCESS_HIGH 1
2089
2090/**
2091 * VMCS field encoding: Type.
2092 * In accordance with the VT-x spec.
2093 */
2094typedef enum
2095{
2096 VMXVMCSFIELDTYPE_CONTROL = 0,
2097 VMXVMCSFIELDTYPE_VMEXIT_INFO,
2098 VMXVMCSFIELDTYPE_GUEST_STATE,
2099 VMXVMCSFIELDTYPE_HOST_STATE
2100} VMXVMCSFIELDTYPE;
2101AssertCompileSize(VMXVMCSFIELDTYPE, 4);
2102/** VMCS field encoding type: Control. */
2103#define VMX_VMCSFIELD_TYPE_CONTROL 0
2104/** VMCS field encoding type: VM-exit information / read-only fields. */
2105#define VMX_VMCSFIELD_TYPE_VMEXIT_INFO 1
2106/** VMCS field encoding type: Guest-state. */
2107#define VMX_VMCSFIELD_TYPE_GUEST_STATE 2
2108/** VMCS field encoding type: Host-state. */
2109#define VMX_VMCSFIELD_TYPE_HOST_STATE 3
2110
2111/**
2112 * VMCS field encoding: Width.
2113 * In accordance with the VT-x spec.
2114 */
2115typedef enum
2116{
2117 VMXVMCSFIELDWIDTH_16BIT = 0,
2118 VMXVMCSFIELDWIDTH_64BIT,
2119 VMXVMCSFIELDWIDTH_32BIT,
2120 VMXVMCSFIELDWIDTH_NATURAL
2121} VMXVMCSFIELDWIDTH;
2122AssertCompileSize(VMXVMCSFIELDWIDTH, 4);
2123/** VMCS field encoding width: 16-bit. */
2124#define VMX_VMCSFIELD_WIDTH_16BIT 0
2125/** VMCS field encoding width: 64-bit. */
2126#define VMX_VMCSFIELD_WIDTH_64BIT 1
2127/** VMCS field encoding width: 32-bit. */
2128#define VMX_VMCSFIELD_WIDTH_32BIT 2
2129/** VMCS field encoding width: Natural width. */
2130#define VMX_VMCSFIELD_WIDTH_NATURAL 3
2131/** @} */
2132
2133
2134/** @name VM-entry instruction length.
2135 * @{ */
2136/** The maximum valid value for VM-entry instruction length while injecting a
2137 * software interrupt, software exception or privileged software exception. */
2138#define VMX_ENTRY_INSTR_LEN_MAX 15
2139/** @} */
2140
2141
2142/** @name VM-entry register masks.
2143 * @{ */
2144/** CR0 bits ignored on VM-entry while loading guest CR0 (ET, CD, NW, bits 6:15,
2145 * bit 17 and bits 19:28). */
2146#define VMX_ENTRY_GUEST_CR0_IGNORE_MASK UINT64_C(0x7ffaffd0)
2147/** DR7 bits set here are always cleared on VM-entry while loading guest DR7 (bit
2148 * 12, bits 14:15). */
2149#define VMX_ENTRY_GUEST_DR7_MBZ_MASK UINT64_C(0xd000)
2150/** DR7 bits set here are always set on VM-entry while loading guest DR7 (bit
2151 * 10). */
2152#define VMX_ENTRY_GUEST_DR7_MB1_MASK UINT64_C(0x400)
2153/** @} */
2154
2155
2156/** @name VM-exit register masks.
2157 * @{ */
2158/** CR0 bits ignored on VM-exit while loading host CR0 (ET, CD, NW, bits 6:15,
2159 * bit 17, bits 19:28 and bits 32:63). */
2160#define VMX_EXIT_HOST_CR0_IGNORE_MASK UINT64_C(0xffffffff7ffaffd0)
2161/** @} */
2162
2163
2164/** @name Pin-based VM-execution controls.
2165 * @{
2166 */
2167/** External interrupt exiting. */
2168#define VMX_PIN_CTLS_EXT_INT_EXIT RT_BIT(0)
2169/** NMI exiting. */
2170#define VMX_PIN_CTLS_NMI_EXIT RT_BIT(3)
2171/** Virtual NMIs. */
2172#define VMX_PIN_CTLS_VIRT_NMI RT_BIT(5)
2173/** Activate VMX preemption timer. */
2174#define VMX_PIN_CTLS_PREEMPT_TIMER RT_BIT(6)
2175/** Process interrupts with the posted-interrupt notification vector. */
2176#define VMX_PIN_CTLS_POSTED_INT RT_BIT(7)
2177/** Default1 class when true capability MSRs are not supported. */
2178#define VMX_PIN_CTLS_DEFAULT1 UINT32_C(0x00000016)
2179
2180/** Bit fields for MSR_IA32_VMX_PINBASED_CTLS and Pin-based VM-execution
2181 * controls field in the VMCS. */
2182#define VMX_BF_PIN_CTLS_EXT_INT_EXIT_SHIFT 0
2183#define VMX_BF_PIN_CTLS_EXT_INT_EXIT_MASK UINT32_C(0x00000001)
2184#define VMX_BF_PIN_CTLS_RSVD_1_2_SHIFT 1
2185#define VMX_BF_PIN_CTLS_RSVD_1_2_MASK UINT32_C(0x00000006)
2186#define VMX_BF_PIN_CTLS_NMI_EXIT_SHIFT 3
2187#define VMX_BF_PIN_CTLS_NMI_EXIT_MASK UINT32_C(0x00000008)
2188#define VMX_BF_PIN_CTLS_RSVD_4_SHIFT 4
2189#define VMX_BF_PIN_CTLS_RSVD_4_MASK UINT32_C(0x00000010)
2190#define VMX_BF_PIN_CTLS_VIRT_NMI_SHIFT 5
2191#define VMX_BF_PIN_CTLS_VIRT_NMI_MASK UINT32_C(0x00000020)
2192#define VMX_BF_PIN_CTLS_PREEMPT_TIMER_SHIFT 6
2193#define VMX_BF_PIN_CTLS_PREEMPT_TIMER_MASK UINT32_C(0x00000040)
2194#define VMX_BF_PIN_CTLS_POSTED_INT_SHIFT 7
2195#define VMX_BF_PIN_CTLS_POSTED_INT_MASK UINT32_C(0x00000080)
2196#define VMX_BF_PIN_CTLS_RSVD_8_31_SHIFT 8
2197#define VMX_BF_PIN_CTLS_RSVD_8_31_MASK UINT32_C(0xffffff00)
2198RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_PIN_CTLS_, UINT32_C(0), UINT32_MAX,
2199 (EXT_INT_EXIT, RSVD_1_2, NMI_EXIT, RSVD_4, VIRT_NMI, PREEMPT_TIMER, POSTED_INT, RSVD_8_31));
2200/** @} */
2201
2202
2203/** @name Processor-based VM-execution controls.
2204 * @{
2205 */
2206/** VM-exit as soon as RFLAGS.IF=1 and no blocking is active. */
2207#define VMX_PROC_CTLS_INT_WINDOW_EXIT RT_BIT(2)
2208/** Use timestamp counter offset. */
2209#define VMX_PROC_CTLS_USE_TSC_OFFSETTING RT_BIT(3)
2210/** VM-exit when executing the HLT instruction. */
2211#define VMX_PROC_CTLS_HLT_EXIT RT_BIT(7)
2212/** VM-exit when executing the INVLPG instruction. */
2213#define VMX_PROC_CTLS_INVLPG_EXIT RT_BIT(9)
2214/** VM-exit when executing the MWAIT instruction. */
2215#define VMX_PROC_CTLS_MWAIT_EXIT RT_BIT(10)
2216/** VM-exit when executing the RDPMC instruction. */
2217#define VMX_PROC_CTLS_RDPMC_EXIT RT_BIT(11)
2218/** VM-exit when executing the RDTSC/RDTSCP instruction. */
2219#define VMX_PROC_CTLS_RDTSC_EXIT RT_BIT(12)
2220/** VM-exit when executing the MOV to CR3 instruction. (forced to 1 on the
2221 * 'first' VT-x capable CPUs; this actually includes the newest Nehalem CPUs) */
2222#define VMX_PROC_CTLS_CR3_LOAD_EXIT RT_BIT(15)
2223/** VM-exit when executing the MOV from CR3 instruction. (forced to 1 on the
2224 * 'first' VT-x capable CPUs; this actually includes the newest Nehalem CPUs) */
2225#define VMX_PROC_CTLS_CR3_STORE_EXIT RT_BIT(16)
2226/** VM-exit on CR8 loads. */
2227#define VMX_PROC_CTLS_CR8_LOAD_EXIT RT_BIT(19)
2228/** VM-exit on CR8 stores. */
2229#define VMX_PROC_CTLS_CR8_STORE_EXIT RT_BIT(20)
2230/** Use TPR shadow. */
2231#define VMX_PROC_CTLS_USE_TPR_SHADOW RT_BIT(21)
2232/** VM-exit when virtual NMI blocking is disabled. */
2233#define VMX_PROC_CTLS_NMI_WINDOW_EXIT RT_BIT(22)
2234/** VM-exit when executing a MOV DRx instruction. */
2235#define VMX_PROC_CTLS_MOV_DR_EXIT RT_BIT(23)
2236/** VM-exit when executing IO instructions. */
2237#define VMX_PROC_CTLS_UNCOND_IO_EXIT RT_BIT(24)
2238/** Use IO bitmaps. */
2239#define VMX_PROC_CTLS_USE_IO_BITMAPS RT_BIT(25)
2240/** Monitor trap flag. */
2241#define VMX_PROC_CTLS_MONITOR_TRAP_FLAG RT_BIT(27)
2242/** Use MSR bitmaps. */
2243#define VMX_PROC_CTLS_USE_MSR_BITMAPS RT_BIT(28)
2244/** VM-exit when executing the MONITOR instruction. */
2245#define VMX_PROC_CTLS_MONITOR_EXIT RT_BIT(29)
2246/** VM-exit when executing the PAUSE instruction. */
2247#define VMX_PROC_CTLS_PAUSE_EXIT RT_BIT(30)
2248/** Whether the secondary processor based VM-execution controls are used. */
2249#define VMX_PROC_CTLS_USE_SECONDARY_CTLS RT_BIT(31)
2250/** Default1 class when true-capability MSRs are not supported. */
2251#define VMX_PROC_CTLS_DEFAULT1 UINT32_C(0x0401e172)
2252
2253/** Bit fields for MSR_IA32_VMX_PROCBASED_CTLS and Processor-based VM-execution
2254 * controls field in the VMCS. */
2255#define VMX_BF_PROC_CTLS_RSVD_0_1_SHIFT 0
2256#define VMX_BF_PROC_CTLS_RSVD_0_1_MASK UINT32_C(0x00000003)
2257#define VMX_BF_PROC_CTLS_INT_WINDOW_EXIT_SHIFT 2
2258#define VMX_BF_PROC_CTLS_INT_WINDOW_EXIT_MASK UINT32_C(0x00000004)
2259#define VMX_BF_PROC_CTLS_USE_TSC_OFFSETTING_SHIFT 3
2260#define VMX_BF_PROC_CTLS_USE_TSC_OFFSETTING_MASK UINT32_C(0x00000008)
2261#define VMX_BF_PROC_CTLS_RSVD_4_6_SHIFT 4
2262#define VMX_BF_PROC_CTLS_RSVD_4_6_MASK UINT32_C(0x00000070)
2263#define VMX_BF_PROC_CTLS_HLT_EXIT_SHIFT 7
2264#define VMX_BF_PROC_CTLS_HLT_EXIT_MASK UINT32_C(0x00000080)
2265#define VMX_BF_PROC_CTLS_RSVD_8_SHIFT 8
2266#define VMX_BF_PROC_CTLS_RSVD_8_MASK UINT32_C(0x00000100)
2267#define VMX_BF_PROC_CTLS_INVLPG_EXIT_SHIFT 9
2268#define VMX_BF_PROC_CTLS_INVLPG_EXIT_MASK UINT32_C(0x00000200)
2269#define VMX_BF_PROC_CTLS_MWAIT_EXIT_SHIFT 10
2270#define VMX_BF_PROC_CTLS_MWAIT_EXIT_MASK UINT32_C(0x00000400)
2271#define VMX_BF_PROC_CTLS_RDPMC_EXIT_SHIFT 11
2272#define VMX_BF_PROC_CTLS_RDPMC_EXIT_MASK UINT32_C(0x00000800)
2273#define VMX_BF_PROC_CTLS_RDTSC_EXIT_SHIFT 12
2274#define VMX_BF_PROC_CTLS_RDTSC_EXIT_MASK UINT32_C(0x00001000)
2275#define VMX_BF_PROC_CTLS_RSVD_13_14_SHIFT 13
2276#define VMX_BF_PROC_CTLS_RSVD_13_14_MASK UINT32_C(0x00006000)
2277#define VMX_BF_PROC_CTLS_CR3_LOAD_EXIT_SHIFT 15
2278#define VMX_BF_PROC_CTLS_CR3_LOAD_EXIT_MASK UINT32_C(0x00008000)
2279#define VMX_BF_PROC_CTLS_CR3_STORE_EXIT_SHIFT 16
2280#define VMX_BF_PROC_CTLS_CR3_STORE_EXIT_MASK UINT32_C(0x00010000)
2281#define VMX_BF_PROC_CTLS_RSVD_17_18_SHIFT 17
2282#define VMX_BF_PROC_CTLS_RSVD_17_18_MASK UINT32_C(0x00060000)
2283#define VMX_BF_PROC_CTLS_CR8_LOAD_EXIT_SHIFT 19
2284#define VMX_BF_PROC_CTLS_CR8_LOAD_EXIT_MASK UINT32_C(0x00080000)
2285#define VMX_BF_PROC_CTLS_CR8_STORE_EXIT_SHIFT 20
2286#define VMX_BF_PROC_CTLS_CR8_STORE_EXIT_MASK UINT32_C(0x00100000)
2287#define VMX_BF_PROC_CTLS_USE_TPR_SHADOW_SHIFT 21
2288#define VMX_BF_PROC_CTLS_USE_TPR_SHADOW_MASK UINT32_C(0x00200000)
2289#define VMX_BF_PROC_CTLS_NMI_WINDOW_EXIT_SHIFT 22
2290#define VMX_BF_PROC_CTLS_NMI_WINDOW_EXIT_MASK UINT32_C(0x00400000)
2291#define VMX_BF_PROC_CTLS_MOV_DR_EXIT_SHIFT 23
2292#define VMX_BF_PROC_CTLS_MOV_DR_EXIT_MASK UINT32_C(0x00800000)
2293#define VMX_BF_PROC_CTLS_UNCOND_IO_EXIT_SHIFT 24
2294#define VMX_BF_PROC_CTLS_UNCOND_IO_EXIT_MASK UINT32_C(0x01000000)
2295#define VMX_BF_PROC_CTLS_USE_IO_BITMAPS_SHIFT 25
2296#define VMX_BF_PROC_CTLS_USE_IO_BITMAPS_MASK UINT32_C(0x02000000)
2297#define VMX_BF_PROC_CTLS_RSVD_26_SHIFT 26
2298#define VMX_BF_PROC_CTLS_RSVD_26_MASK UINT32_C(0x4000000)
2299#define VMX_BF_PROC_CTLS_MONITOR_TRAP_FLAG_SHIFT 27
2300#define VMX_BF_PROC_CTLS_MONITOR_TRAP_FLAG_MASK UINT32_C(0x08000000)
2301#define VMX_BF_PROC_CTLS_USE_MSR_BITMAPS_SHIFT 28
2302#define VMX_BF_PROC_CTLS_USE_MSR_BITMAPS_MASK UINT32_C(0x10000000)
2303#define VMX_BF_PROC_CTLS_MONITOR_EXIT_SHIFT 29
2304#define VMX_BF_PROC_CTLS_MONITOR_EXIT_MASK UINT32_C(0x20000000)
2305#define VMX_BF_PROC_CTLS_PAUSE_EXIT_SHIFT 30
2306#define VMX_BF_PROC_CTLS_PAUSE_EXIT_MASK UINT32_C(0x40000000)
2307#define VMX_BF_PROC_CTLS_USE_SECONDARY_CTLS_SHIFT 31
2308#define VMX_BF_PROC_CTLS_USE_SECONDARY_CTLS_MASK UINT32_C(0x80000000)
2309RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_PROC_CTLS_, UINT32_C(0), UINT32_MAX,
2310 (RSVD_0_1, INT_WINDOW_EXIT, USE_TSC_OFFSETTING, RSVD_4_6, HLT_EXIT, RSVD_8, INVLPG_EXIT,
2311 MWAIT_EXIT, RDPMC_EXIT, RDTSC_EXIT, RSVD_13_14, CR3_LOAD_EXIT, CR3_STORE_EXIT, RSVD_17_18,
2312 CR8_LOAD_EXIT, CR8_STORE_EXIT, USE_TPR_SHADOW, NMI_WINDOW_EXIT, MOV_DR_EXIT, UNCOND_IO_EXIT,
2313 USE_IO_BITMAPS, RSVD_26, MONITOR_TRAP_FLAG, USE_MSR_BITMAPS, MONITOR_EXIT, PAUSE_EXIT,
2314 USE_SECONDARY_CTLS));
2315/** @} */
2316
2317
2318/** @name Secondary Processor-based VM-execution controls.
2319 * @{
2320 */
2321/** Virtualize APIC accesses. */
2322#define VMX_PROC_CTLS2_VIRT_APIC_ACCESS RT_BIT(0)
2323/** EPT supported/enabled. */
2324#define VMX_PROC_CTLS2_EPT RT_BIT(1)
2325/** Descriptor table instructions cause VM-exits. */
2326#define VMX_PROC_CTLS2_DESC_TABLE_EXIT RT_BIT(2)
2327/** RDTSCP supported/enabled. */
2328#define VMX_PROC_CTLS2_RDTSCP RT_BIT(3)
2329/** Virtualize x2APIC mode. */
2330#define VMX_PROC_CTLS2_VIRT_X2APIC_MODE RT_BIT(4)
2331/** VPID supported/enabled. */
2332#define VMX_PROC_CTLS2_VPID RT_BIT(5)
2333/** VM-exit when executing the WBINVD instruction. */
2334#define VMX_PROC_CTLS2_WBINVD_EXIT RT_BIT(6)
2335/** Unrestricted guest execution. */
2336#define VMX_PROC_CTLS2_UNRESTRICTED_GUEST RT_BIT(7)
2337/** APIC register virtualization. */
2338#define VMX_PROC_CTLS2_APIC_REG_VIRT RT_BIT(8)
2339/** Virtual-interrupt delivery. */
2340#define VMX_PROC_CTLS2_VIRT_INT_DELIVERY RT_BIT(9)
2341/** A specified number of pause loops cause a VM-exit. */
2342#define VMX_PROC_CTLS2_PAUSE_LOOP_EXIT RT_BIT(10)
2343/** VM-exit when executing RDRAND instructions. */
2344#define VMX_PROC_CTLS2_RDRAND_EXIT RT_BIT(11)
2345/** Enables INVPCID instructions. */
2346#define VMX_PROC_CTLS2_INVPCID RT_BIT(12)
2347/** Enables VMFUNC instructions. */
2348#define VMX_PROC_CTLS2_VMFUNC RT_BIT(13)
2349/** Enables VMCS shadowing. */
2350#define VMX_PROC_CTLS2_VMCS_SHADOWING RT_BIT(14)
2351/** Enables ENCLS VM-exits. */
2352#define VMX_PROC_CTLS2_ENCLS_EXIT RT_BIT(15)
2353/** VM-exit when executing RDSEED. */
2354#define VMX_PROC_CTLS2_RDSEED_EXIT RT_BIT(16)
2355/** Enables page-modification logging. */
2356#define VMX_PROC_CTLS2_PML RT_BIT(17)
2357/** Controls whether EPT-violations may cause \#VE instead of exits. */
2358#define VMX_PROC_CTLS2_EPT_VE RT_BIT(18)
2359/** Conceal VMX non-root operation from Intel processor trace (PT). */
2360#define VMX_PROC_CTLS2_CONCEAL_VMX_FROM_PT RT_BIT(19)
2361/** Enables XSAVES/XRSTORS instructions. */
2362#define VMX_PROC_CTLS2_XSAVES_XRSTORS RT_BIT(20)
2363/** Enables supervisor/user mode based EPT execute permission for linear
2364 * addresses. */
2365#define VMX_PROC_CTLS2_MODE_BASED_EPT_PERM RT_BIT(22)
2366/** Enables EPT permissions to be specified at granularity of 128 bytes. */
2367#define VMX_PROC_CTLS2_SPPTP_EPT RT_BIT(23)
2368/** Intel PT output addresses are treated as guest-physical addresses and
2369 * translated using EPT. */
2370#define VMX_PROC_CTLS2_PT_EPT RT_BIT(24)
2371/** Use TSC scaling. */
2372#define VMX_PROC_CTLS2_TSC_SCALING RT_BIT(25)
2373/** Enables TPAUSE, UMONITOR and UMWAIT instructions. */
2374#define VMX_PROC_CTLS2_USER_WAIT_PAUSE RT_BIT(26)
2375/** Enables consulting ENCLV-exiting bitmap when executing ENCLV. */
2376#define VMX_PROC_CTLS2_ENCLV_EXIT RT_BIT(28)
2377
2378/** Bit fields for MSR_IA32_VMX_PROCBASED_CTLS2 and Secondary processor-based
2379 * VM-execution controls field in the VMCS. */
2380#define VMX_BF_PROC_CTLS2_VIRT_APIC_ACCESS_SHIFT 0
2381#define VMX_BF_PROC_CTLS2_VIRT_APIC_ACCESS_MASK UINT32_C(0x00000001)
2382#define VMX_BF_PROC_CTLS2_EPT_SHIFT 1
2383#define VMX_BF_PROC_CTLS2_EPT_MASK UINT32_C(0x00000002)
2384#define VMX_BF_PROC_CTLS2_DESC_TABLE_EXIT_SHIFT 2
2385#define VMX_BF_PROC_CTLS2_DESC_TABLE_EXIT_MASK UINT32_C(0x00000004)
2386#define VMX_BF_PROC_CTLS2_RDTSCP_SHIFT 3
2387#define VMX_BF_PROC_CTLS2_RDTSCP_MASK UINT32_C(0x00000008)
2388#define VMX_BF_PROC_CTLS2_VIRT_X2APIC_MODE_SHIFT 4
2389#define VMX_BF_PROC_CTLS2_VIRT_X2APIC_MODE_MASK UINT32_C(0x00000010)
2390#define VMX_BF_PROC_CTLS2_VPID_SHIFT 5
2391#define VMX_BF_PROC_CTLS2_VPID_MASK UINT32_C(0x00000020)
2392#define VMX_BF_PROC_CTLS2_WBINVD_EXIT_SHIFT 6
2393#define VMX_BF_PROC_CTLS2_WBINVD_EXIT_MASK UINT32_C(0x00000040)
2394#define VMX_BF_PROC_CTLS2_UNRESTRICTED_GUEST_SHIFT 7
2395#define VMX_BF_PROC_CTLS2_UNRESTRICTED_GUEST_MASK UINT32_C(0x00000080)
2396#define VMX_BF_PROC_CTLS2_APIC_REG_VIRT_SHIFT 8
2397#define VMX_BF_PROC_CTLS2_APIC_REG_VIRT_MASK UINT32_C(0x00000100)
2398#define VMX_BF_PROC_CTLS2_VIRT_INT_DELIVERY_SHIFT 9
2399#define VMX_BF_PROC_CTLS2_VIRT_INT_DELIVERY_MASK UINT32_C(0x00000200)
2400#define VMX_BF_PROC_CTLS2_PAUSE_LOOP_EXIT_SHIFT 10
2401#define VMX_BF_PROC_CTLS2_PAUSE_LOOP_EXIT_MASK UINT32_C(0x00000400)
2402#define VMX_BF_PROC_CTLS2_RDRAND_EXIT_SHIFT 11
2403#define VMX_BF_PROC_CTLS2_RDRAND_EXIT_MASK UINT32_C(0x00000800)
2404#define VMX_BF_PROC_CTLS2_INVPCID_SHIFT 12
2405#define VMX_BF_PROC_CTLS2_INVPCID_MASK UINT32_C(0x00001000)
2406#define VMX_BF_PROC_CTLS2_VMFUNC_SHIFT 13
2407#define VMX_BF_PROC_CTLS2_VMFUNC_MASK UINT32_C(0x00002000)
2408#define VMX_BF_PROC_CTLS2_VMCS_SHADOWING_SHIFT 14
2409#define VMX_BF_PROC_CTLS2_VMCS_SHADOWING_MASK UINT32_C(0x00004000)
2410#define VMX_BF_PROC_CTLS2_ENCLS_EXIT_SHIFT 15
2411#define VMX_BF_PROC_CTLS2_ENCLS_EXIT_MASK UINT32_C(0x00008000)
2412#define VMX_BF_PROC_CTLS2_RDSEED_EXIT_SHIFT 16
2413#define VMX_BF_PROC_CTLS2_RDSEED_EXIT_MASK UINT32_C(0x00010000)
2414#define VMX_BF_PROC_CTLS2_PML_SHIFT 17
2415#define VMX_BF_PROC_CTLS2_PML_MASK UINT32_C(0x00020000)
2416#define VMX_BF_PROC_CTLS2_EPT_VE_SHIFT 18
2417#define VMX_BF_PROC_CTLS2_EPT_VE_MASK UINT32_C(0x00040000)
2418#define VMX_BF_PROC_CTLS2_CONCEAL_VMX_FROM_PT_SHIFT 19
2419#define VMX_BF_PROC_CTLS2_CONCEAL_VMX_FROM_PT_MASK UINT32_C(0x00080000)
2420#define VMX_BF_PROC_CTLS2_XSAVES_XRSTORS_SHIFT 20
2421#define VMX_BF_PROC_CTLS2_XSAVES_XRSTORS_MASK UINT32_C(0x00100000)
2422#define VMX_BF_PROC_CTLS2_RSVD_21_SHIFT 21
2423#define VMX_BF_PROC_CTLS2_RSVD_21_MASK UINT32_C(0x00200000)
2424#define VMX_BF_PROC_CTLS2_MODE_BASED_EPT_PERM_SHIFT 22
2425#define VMX_BF_PROC_CTLS2_MODE_BASED_EPT_PERM_MASK UINT32_C(0x00400000)
2426#define VMX_BF_PROC_CTLS2_SPPTP_EPT_SHIFT 23
2427#define VMX_BF_PROC_CTLS2_SPPTP_EPT_MASK UINT32_C(0x00800000)
2428#define VMX_BF_PROC_CTLS2_PT_EPT_SHIFT 24
2429#define VMX_BF_PROC_CTLS2_PT_EPT_MASK UINT32_C(0x01000000)
2430#define VMX_BF_PROC_CTLS2_TSC_SCALING_SHIFT 25
2431#define VMX_BF_PROC_CTLS2_TSC_SCALING_MASK UINT32_C(0x02000000)
2432#define VMX_BF_PROC_CTLS2_USER_WAIT_PAUSE_SHIFT 26
2433#define VMX_BF_PROC_CTLS2_USER_WAIT_PAUSE_MASK UINT32_C(0x04000000)
2434#define VMX_BF_PROC_CTLS2_RSVD_27_SHIFT 27
2435#define VMX_BF_PROC_CTLS2_RSVD_27_MASK UINT32_C(0x08000000)
2436#define VMX_BF_PROC_CTLS2_ENCLV_EXIT_SHIFT 28
2437#define VMX_BF_PROC_CTLS2_ENCLV_EXIT_MASK UINT32_C(0x10000000)
2438#define VMX_BF_PROC_CTLS2_RSVD_29_31_SHIFT 29
2439#define VMX_BF_PROC_CTLS2_RSVD_29_31_MASK UINT32_C(0xe0000000)
2440
2441RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_PROC_CTLS2_, UINT32_C(0), UINT32_MAX,
2442 (VIRT_APIC_ACCESS, EPT, DESC_TABLE_EXIT, RDTSCP, VIRT_X2APIC_MODE, VPID, WBINVD_EXIT,
2443 UNRESTRICTED_GUEST, APIC_REG_VIRT, VIRT_INT_DELIVERY, PAUSE_LOOP_EXIT, RDRAND_EXIT, INVPCID, VMFUNC,
2444 VMCS_SHADOWING, ENCLS_EXIT, RDSEED_EXIT, PML, EPT_VE, CONCEAL_VMX_FROM_PT, XSAVES_XRSTORS, RSVD_21,
2445 MODE_BASED_EPT_PERM, SPPTP_EPT, PT_EPT, TSC_SCALING, USER_WAIT_PAUSE, RSVD_27, ENCLV_EXIT,
2446 RSVD_29_31));
2447/** @} */
2448
2449
2450/** @name Tertiary Processor-based VM-execution controls.
2451 * @{
2452 */
2453/** VM-exit when executing LOADIWKEY. */
2454#define VMX_PROC_CTLS3_LOADIWKEY_EXIT RT_BIT_64(0)
2455
2456/** Bit fields for Tertiary processor-based VM-execution controls field in the VMCS. */
2457#define VMX_BF_PROC_CTLS3_LOADIWKEY_EXIT_SHIFT 0
2458#define VMX_BF_PROC_CTLS3_LOADIWKEY_EXIT_MASK UINT64_C(0x0000000000000001)
2459#define VMX_BF_PROC_CTLS3_RSVD_1_63_SHIFT 1
2460#define VMX_BF_PROC_CTLS3_RSVD_1_63_MASK UINT64_C(0xfffffffffffffffe)
2461
2462RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_PROC_CTLS3_, UINT64_C(0), UINT64_MAX,
2463 (LOADIWKEY_EXIT, RSVD_1_63));
2464/** @} */
2465
2466
2467/** @name VM-entry controls.
2468 * @{
2469 */
2470/** Load guest debug controls (dr7 & IA32_DEBUGCTL_MSR) (forced to 1 on the
2471 * 'first' VT-x capable CPUs; this actually includes the newest Nehalem CPUs) */
2472#define VMX_ENTRY_CTLS_LOAD_DEBUG RT_BIT(2)
2473/** 64-bit guest mode. Must be 0 for CPUs that don't support AMD64. */
2474#define VMX_ENTRY_CTLS_IA32E_MODE_GUEST RT_BIT(9)
2475/** In SMM mode after VM-entry. */
2476#define VMX_ENTRY_CTLS_ENTRY_TO_SMM RT_BIT(10)
2477/** Disable dual treatment of SMI and SMM; must be zero for VM-entry outside of SMM. */
2478#define VMX_ENTRY_CTLS_DEACTIVATE_DUAL_MON RT_BIT(11)
2479/** Whether the guest IA32_PERF_GLOBAL_CTRL MSR is loaded on VM-entry. */
2480#define VMX_ENTRY_CTLS_LOAD_PERF_MSR RT_BIT(13)
2481/** Whether the guest IA32_PAT MSR is loaded on VM-entry. */
2482#define VMX_ENTRY_CTLS_LOAD_PAT_MSR RT_BIT(14)
2483/** Whether the guest IA32_EFER MSR is loaded on VM-entry. */
2484#define VMX_ENTRY_CTLS_LOAD_EFER_MSR RT_BIT(15)
2485/** Whether the guest IA32_BNDCFGS MSR is loaded on VM-entry. */
2486#define VMX_ENTRY_CTLS_LOAD_BNDCFGS_MSR RT_BIT(16)
2487/** Whether to conceal VMX from Intel PT (Processor Trace). */
2488#define VMX_ENTRY_CTLS_CONCEAL_VMX_FROM_PT RT_BIT(17)
2489/** Whether the guest IA32_RTIT MSR is loaded on VM-entry. */
2490#define VMX_ENTRY_CTLS_LOAD_RTIT_CTL_MSR RT_BIT(18)
2491/** Whether the guest CET-related MSRs and SPP are loaded on VM-entry. */
2492#define VMX_ENTRY_CTLS_LOAD_CET_STATE RT_BIT(20)
2493/** Default1 class when true-capability MSRs are not supported. */
2494#define VMX_ENTRY_CTLS_DEFAULT1 UINT32_C(0x000011ff)
2495
2496/** Bit fields for MSR_IA32_VMX_ENTRY_CTLS and VM-entry controls field in the
2497 * VMCS. */
2498#define VMX_BF_ENTRY_CTLS_RSVD_0_1_SHIFT 0
2499#define VMX_BF_ENTRY_CTLS_RSVD_0_1_MASK UINT32_C(0x00000003)
2500#define VMX_BF_ENTRY_CTLS_LOAD_DEBUG_SHIFT 2
2501#define VMX_BF_ENTRY_CTLS_LOAD_DEBUG_MASK UINT32_C(0x00000004)
2502#define VMX_BF_ENTRY_CTLS_RSVD_3_8_SHIFT 3
2503#define VMX_BF_ENTRY_CTLS_RSVD_3_8_MASK UINT32_C(0x000001f8)
2504#define VMX_BF_ENTRY_CTLS_IA32E_MODE_GUEST_SHIFT 9
2505#define VMX_BF_ENTRY_CTLS_IA32E_MODE_GUEST_MASK UINT32_C(0x00000200)
2506#define VMX_BF_ENTRY_CTLS_ENTRY_SMM_SHIFT 10
2507#define VMX_BF_ENTRY_CTLS_ENTRY_SMM_MASK UINT32_C(0x00000400)
2508#define VMX_BF_ENTRY_CTLS_DEACTIVATE_DUAL_MON_SHIFT 11
2509#define VMX_BF_ENTRY_CTLS_DEACTIVATE_DUAL_MON_MASK UINT32_C(0x00000800)
2510#define VMX_BF_ENTRY_CTLS_RSVD_12_SHIFT 12
2511#define VMX_BF_ENTRY_CTLS_RSVD_12_MASK UINT32_C(0x00001000)
2512#define VMX_BF_ENTRY_CTLS_LOAD_PERF_MSR_SHIFT 13
2513#define VMX_BF_ENTRY_CTLS_LOAD_PERF_MSR_MASK UINT32_C(0x00002000)
2514#define VMX_BF_ENTRY_CTLS_LOAD_PAT_MSR_SHIFT 14
2515#define VMX_BF_ENTRY_CTLS_LOAD_PAT_MSR_MASK UINT32_C(0x00004000)
2516#define VMX_BF_ENTRY_CTLS_LOAD_EFER_MSR_SHIFT 15
2517#define VMX_BF_ENTRY_CTLS_LOAD_EFER_MSR_MASK UINT32_C(0x00008000)
2518#define VMX_BF_ENTRY_CTLS_LOAD_BNDCFGS_MSR_SHIFT 16
2519#define VMX_BF_ENTRY_CTLS_LOAD_BNDCFGS_MSR_MASK UINT32_C(0x00010000)
2520#define VMX_BF_ENTRY_CTLS_CONCEAL_VMX_FROM_PT_SHIFT 17
2521#define VMX_BF_ENTRY_CTLS_CONCEAL_VMX_FROM_PT_MASK UINT32_C(0x00020000)
2522#define VMX_BF_ENTRY_CTLS_LOAD_RTIT_CTL_MSR_SHIFT 18
2523#define VMX_BF_ENTRY_CTLS_LOAD_RTIT_CTL_MSR_MASK UINT32_C(0x00040000)
2524#define VMX_BF_ENTRY_CTLS_RSVD_19_31_SHIFT 19
2525#define VMX_BF_ENTRY_CTLS_RSVD_19_31_MASK UINT32_C(0xfff80000)
2526RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_ENTRY_CTLS_, UINT32_C(0), UINT32_MAX,
2527 (RSVD_0_1, LOAD_DEBUG, RSVD_3_8, IA32E_MODE_GUEST, ENTRY_SMM, DEACTIVATE_DUAL_MON, RSVD_12,
2528 LOAD_PERF_MSR, LOAD_PAT_MSR, LOAD_EFER_MSR, LOAD_BNDCFGS_MSR, CONCEAL_VMX_FROM_PT,
2529 LOAD_RTIT_CTL_MSR, RSVD_19_31));
2530/** @} */
2531
2532
2533/** @name VM-exit controls.
2534 * @{
2535 */
2536/** Save guest debug controls (dr7 & IA32_DEBUGCTL_MSR) (forced to 1 on the
2537 * 'first' VT-x capable CPUs; this actually includes the newest Nehalem CPUs) */
2538#define VMX_EXIT_CTLS_SAVE_DEBUG RT_BIT(2)
2539/** Return to long mode after a VM-exit. */
2540#define VMX_EXIT_CTLS_HOST_ADDR_SPACE_SIZE RT_BIT(9)
2541/** Whether the host IA32_PERF_GLOBAL_CTRL MSR is loaded on VM-exit. */
2542#define VMX_EXIT_CTLS_LOAD_PERF_MSR RT_BIT(12)
2543/** Acknowledge external interrupts with the irq controller if one caused a VM-exit. */
2544#define VMX_EXIT_CTLS_ACK_EXT_INT RT_BIT(15)
2545/** Whether the guest IA32_PAT MSR is saved on VM-exit. */
2546#define VMX_EXIT_CTLS_SAVE_PAT_MSR RT_BIT(18)
2547/** Whether the host IA32_PAT MSR is loaded on VM-exit. */
2548#define VMX_EXIT_CTLS_LOAD_PAT_MSR RT_BIT(19)
2549/** Whether the guest IA32_EFER MSR is saved on VM-exit. */
2550#define VMX_EXIT_CTLS_SAVE_EFER_MSR RT_BIT(20)
2551/** Whether the host IA32_EFER MSR is loaded on VM-exit. */
2552#define VMX_EXIT_CTLS_LOAD_EFER_MSR RT_BIT(21)
2553/** Whether the value of the VMX preemption timer is saved on every VM-exit. */
2554#define VMX_EXIT_CTLS_SAVE_PREEMPT_TIMER RT_BIT(22)
2555/** Whether IA32_BNDCFGS MSR is cleared on VM-exit. */
2556#define VMX_EXIT_CTLS_CLEAR_BNDCFGS_MSR RT_BIT(23)
2557/** Whether to conceal VMX from Intel PT. */
2558#define VMX_EXIT_CTLS_CONCEAL_VMX_FROM_PT RT_BIT(24)
2559/** Whether IA32_RTIT_CTL MSR is cleared on VM-exit. */
2560#define VMX_EXIT_CTLS_CLEAR_RTIT_CTL_MSR RT_BIT(25)
2561/** Whether CET-related MSRs and SPP are loaded on VM-exit. */
2562#define VMX_EXIT_CTLS_LOAD_CET_STATE RT_BIT(28)
2563/** Default1 class when true-capability MSRs are not supported. */
2564#define VMX_EXIT_CTLS_DEFAULT1 UINT32_C(0x00036dff)
2565
2566/** Bit fields for MSR_IA32_VMX_EXIT_CTLS and VM-exit controls field in the
2567 * VMCS. */
2568#define VMX_BF_EXIT_CTLS_RSVD_0_1_SHIFT 0
2569#define VMX_BF_EXIT_CTLS_RSVD_0_1_MASK UINT32_C(0x00000003)
2570#define VMX_BF_EXIT_CTLS_SAVE_DEBUG_SHIFT 2
2571#define VMX_BF_EXIT_CTLS_SAVE_DEBUG_MASK UINT32_C(0x00000004)
2572#define VMX_BF_EXIT_CTLS_RSVD_3_8_SHIFT 3
2573#define VMX_BF_EXIT_CTLS_RSVD_3_8_MASK UINT32_C(0x000001f8)
2574#define VMX_BF_EXIT_CTLS_HOST_ADDR_SPACE_SIZE_SHIFT 9
2575#define VMX_BF_EXIT_CTLS_HOST_ADDR_SPACE_SIZE_MASK UINT32_C(0x00000200)
2576#define VMX_BF_EXIT_CTLS_RSVD_10_11_SHIFT 10
2577#define VMX_BF_EXIT_CTLS_RSVD_10_11_MASK UINT32_C(0x00000c00)
2578#define VMX_BF_EXIT_CTLS_LOAD_PERF_MSR_SHIFT 12
2579#define VMX_BF_EXIT_CTLS_LOAD_PERF_MSR_MASK UINT32_C(0x00001000)
2580#define VMX_BF_EXIT_CTLS_RSVD_13_14_SHIFT 13
2581#define VMX_BF_EXIT_CTLS_RSVD_13_14_MASK UINT32_C(0x00006000)
2582#define VMX_BF_EXIT_CTLS_ACK_EXT_INT_SHIFT 15
2583#define VMX_BF_EXIT_CTLS_ACK_EXT_INT_MASK UINT32_C(0x00008000)
2584#define VMX_BF_EXIT_CTLS_RSVD_16_17_SHIFT 16
2585#define VMX_BF_EXIT_CTLS_RSVD_16_17_MASK UINT32_C(0x00030000)
2586#define VMX_BF_EXIT_CTLS_SAVE_PAT_MSR_SHIFT 18
2587#define VMX_BF_EXIT_CTLS_SAVE_PAT_MSR_MASK UINT32_C(0x00040000)
2588#define VMX_BF_EXIT_CTLS_LOAD_PAT_MSR_SHIFT 19
2589#define VMX_BF_EXIT_CTLS_LOAD_PAT_MSR_MASK UINT32_C(0x00080000)
2590#define VMX_BF_EXIT_CTLS_SAVE_EFER_MSR_SHIFT 20
2591#define VMX_BF_EXIT_CTLS_SAVE_EFER_MSR_MASK UINT32_C(0x00100000)
2592#define VMX_BF_EXIT_CTLS_LOAD_EFER_MSR_SHIFT 21
2593#define VMX_BF_EXIT_CTLS_LOAD_EFER_MSR_MASK UINT32_C(0x00200000)
2594#define VMX_BF_EXIT_CTLS_SAVE_PREEMPT_TIMER_SHIFT 22
2595#define VMX_BF_EXIT_CTLS_SAVE_PREEMPT_TIMER_MASK UINT32_C(0x00400000)
2596#define VMX_BF_EXIT_CTLS_CLEAR_BNDCFGS_MSR_SHIFT 23
2597#define VMX_BF_EXIT_CTLS_CLEAR_BNDCFGS_MSR_MASK UINT32_C(0x00800000)
2598#define VMX_BF_EXIT_CTLS_CONCEAL_VMX_FROM_PT_SHIFT 24
2599#define VMX_BF_EXIT_CTLS_CONCEAL_VMX_FROM_PT_MASK UINT32_C(0x01000000)
2600#define VMX_BF_EXIT_CTLS_CLEAR_RTIT_CTL_MSR_SHIFT 25
2601#define VMX_BF_EXIT_CTLS_CLEAR_RTIT_CTL_MSR_MASK UINT32_C(0x02000000)
2602#define VMX_BF_EXIT_CTLS_RSVD_26_31_SHIFT 26
2603#define VMX_BF_EXIT_CTLS_RSVD_26_31_MASK UINT32_C(0xfc000000)
2604RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_EXIT_CTLS_, UINT32_C(0), UINT32_MAX,
2605 (RSVD_0_1, SAVE_DEBUG, RSVD_3_8, HOST_ADDR_SPACE_SIZE, RSVD_10_11, LOAD_PERF_MSR, RSVD_13_14,
2606 ACK_EXT_INT, RSVD_16_17, SAVE_PAT_MSR, LOAD_PAT_MSR, SAVE_EFER_MSR, LOAD_EFER_MSR,
2607 SAVE_PREEMPT_TIMER, CLEAR_BNDCFGS_MSR, CONCEAL_VMX_FROM_PT, CLEAR_RTIT_CTL_MSR, RSVD_26_31));
2608/** @} */
2609
2610
2611/** @name VM-exit reason.
2612 * @{
2613 */
2614#define VMX_EXIT_REASON_BASIC(a) ((a) & 0xffff)
2615#define VMX_EXIT_REASON_HAS_ENTRY_FAILED(a) (((a) >> 31) & 1)
2616#define VMX_EXIT_REASON_ENTRY_FAILED RT_BIT(31)
2617
2618/** Bit fields for VM-exit reason. */
2619/** The exit reason. */
2620#define VMX_BF_EXIT_REASON_BASIC_SHIFT 0
2621#define VMX_BF_EXIT_REASON_BASIC_MASK UINT32_C(0x0000ffff)
2622/** Bits 16:26 are reseved and MBZ. */
2623#define VMX_BF_EXIT_REASON_RSVD_16_26_SHIFT 16
2624#define VMX_BF_EXIT_REASON_RSVD_16_26_MASK UINT32_C(0x07ff0000)
2625/** Whether the VM-exit was incident to enclave mode. */
2626#define VMX_BF_EXIT_REASON_ENCLAVE_MODE_SHIFT 27
2627#define VMX_BF_EXIT_REASON_ENCLAVE_MODE_MASK UINT32_C(0x08000000)
2628/** Pending MTF (Monitor Trap Flag) during VM-exit (only applicable in SMM mode). */
2629#define VMX_BF_EXIT_REASON_SMM_PENDING_MTF_SHIFT 28
2630#define VMX_BF_EXIT_REASON_SMM_PENDING_MTF_MASK UINT32_C(0x10000000)
2631/** VM-exit from VMX root operation (only possible with SMM). */
2632#define VMX_BF_EXIT_REASON_VMX_ROOT_MODE_SHIFT 29
2633#define VMX_BF_EXIT_REASON_VMX_ROOT_MODE_MASK UINT32_C(0x20000000)
2634/** Bit 30 is reserved and MBZ. */
2635#define VMX_BF_EXIT_REASON_RSVD_30_SHIFT 30
2636#define VMX_BF_EXIT_REASON_RSVD_30_MASK UINT32_C(0x40000000)
2637/** Whether VM-entry failed (currently only happens during loading guest-state
2638 * or MSRs or machine check exceptions). */
2639#define VMX_BF_EXIT_REASON_ENTRY_FAILED_SHIFT 31
2640#define VMX_BF_EXIT_REASON_ENTRY_FAILED_MASK UINT32_C(0x80000000)
2641RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_EXIT_REASON_, UINT32_C(0), UINT32_MAX,
2642 (BASIC, RSVD_16_26, ENCLAVE_MODE, SMM_PENDING_MTF, VMX_ROOT_MODE, RSVD_30, ENTRY_FAILED));
2643/** @} */
2644
2645
2646/** @name VM-entry interruption information.
2647 * @{
2648 */
2649#define VMX_ENTRY_INT_INFO_IS_VALID(a) (((a) >> 31) & 1)
2650#define VMX_ENTRY_INT_INFO_VECTOR(a) ((a) & 0xff)
2651#define VMX_ENTRY_INT_INFO_TYPE_SHIFT 8
2652#define VMX_ENTRY_INT_INFO_TYPE(a) (((a) >> 8) & 7)
2653#define VMX_ENTRY_INT_INFO_ERROR_CODE_VALID RT_BIT(11)
2654#define VMX_ENTRY_INT_INFO_IS_ERROR_CODE_VALID(a) (((a) >> 11) & 1)
2655#define VMX_ENTRY_INT_INFO_NMI_UNBLOCK_IRET 12
2656#define VMX_ENTRY_INT_INFO_IS_NMI_UNBLOCK_IRET(a) (((a) >> 12) & 1)
2657#define VMX_ENTRY_INT_INFO_VALID RT_BIT(31)
2658#define VMX_ENTRY_INT_INFO_IS_VALID(a) (((a) >> 31) & 1)
2659/** Construct an VM-entry interruption information field from a VM-exit interruption
2660 * info value (same except that bit 12 is reserved). */
2661#define VMX_ENTRY_INT_INFO_FROM_EXIT_INT_INFO(a) ((a) & ~RT_BIT(12))
2662/** Construct a VM-entry interruption information field from an IDT-vectoring
2663 * information field (same except that bit 12 is reserved). */
2664#define VMX_ENTRY_INT_INFO_FROM_EXIT_IDT_INFO(a) ((a) & ~RT_BIT(12))
2665/** If the VM-entry interruption information field indicates a page-fault. */
2666#define VMX_ENTRY_INT_INFO_IS_XCPT_PF(a) (((a) & ( VMX_BF_ENTRY_INT_INFO_VALID_MASK \
2667 | VMX_BF_ENTRY_INT_INFO_TYPE_MASK \
2668 | VMX_BF_ENTRY_INT_INFO_VECTOR_MASK)) \
2669 == ( RT_BF_MAKE(VMX_BF_ENTRY_INT_INFO_VALID, 1) \
2670 | RT_BF_MAKE(VMX_BF_ENTRY_INT_INFO_TYPE, VMX_ENTRY_INT_INFO_TYPE_HW_XCPT) \
2671 | RT_BF_MAKE(VMX_BF_ENTRY_INT_INFO_VECTOR, X86_XCPT_PF)))
2672/** If the VM-entry interruption information field indicates an external
2673 * interrupt. */
2674#define VMX_ENTRY_INT_INFO_IS_EXT_INT(a) (((a) & ( VMX_BF_ENTRY_INT_INFO_VALID_MASK \
2675 | VMX_BF_ENTRY_INT_INFO_TYPE_MASK)) \
2676 == ( RT_BF_MAKE(VMX_BF_ENTRY_INT_INFO_VALID, 1) \
2677 | RT_BF_MAKE(VMX_BF_ENTRY_INT_INFO_TYPE, VMX_ENTRY_INT_INFO_TYPE_EXT_INT)))
2678/** If the VM-entry interruption information field indicates an NMI. */
2679#define VMX_ENTRY_INT_INFO_IS_XCPT_NMI(a) (((a) & ( VMX_BF_ENTRY_INT_INFO_VALID_MASK \
2680 | VMX_BF_ENTRY_INT_INFO_TYPE_MASK \
2681 | VMX_BF_ENTRY_INT_INFO_VECTOR_MASK)) \
2682 == ( RT_BF_MAKE(VMX_BF_ENTRY_INT_INFO_VALID, 1) \
2683 | RT_BF_MAKE(VMX_BF_ENTRY_INT_INFO_TYPE, VMX_ENTRY_INT_INFO_TYPE_NMI) \
2684 | RT_BF_MAKE(VMX_BF_ENTRY_INT_INFO_VECTOR, X86_XCPT_NMI)))
2685
2686/** Bit fields for VM-entry interruption information. */
2687/** The VM-entry interruption vector. */
2688#define VMX_BF_ENTRY_INT_INFO_VECTOR_SHIFT 0
2689#define VMX_BF_ENTRY_INT_INFO_VECTOR_MASK UINT32_C(0x000000ff)
2690/** The VM-entry interruption type (see VMX_ENTRY_INT_INFO_TYPE_XXX). */
2691#define VMX_BF_ENTRY_INT_INFO_TYPE_SHIFT 8
2692#define VMX_BF_ENTRY_INT_INFO_TYPE_MASK UINT32_C(0x00000700)
2693/** Whether this event has an error code. */
2694#define VMX_BF_ENTRY_INT_INFO_ERR_CODE_VALID_SHIFT 11
2695#define VMX_BF_ENTRY_INT_INFO_ERR_CODE_VALID_MASK UINT32_C(0x00000800)
2696/** Bits 12:30 are reserved and MBZ. */
2697#define VMX_BF_ENTRY_INT_INFO_RSVD_12_30_SHIFT 12
2698#define VMX_BF_ENTRY_INT_INFO_RSVD_12_30_MASK UINT32_C(0x7ffff000)
2699/** Whether this VM-entry interruption info is valid. */
2700#define VMX_BF_ENTRY_INT_INFO_VALID_SHIFT 31
2701#define VMX_BF_ENTRY_INT_INFO_VALID_MASK UINT32_C(0x80000000)
2702RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_ENTRY_INT_INFO_, UINT32_C(0), UINT32_MAX,
2703 (VECTOR, TYPE, ERR_CODE_VALID, RSVD_12_30, VALID));
2704/** @} */
2705
2706
2707/** @name VM-entry exception error code.
2708 * @{ */
2709/** Error code valid mask. */
2710/** @todo r=ramshankar: Intel spec. 26.2.1.3 "VM-Entry Control Fields" states that
2711 * bits 31:15 MBZ. However, Intel spec. 6.13 "Error Code" states "To keep the
2712 * stack aligned for doubleword pushes, the upper half of the error code is
2713 * reserved" which implies bits 31:16 MBZ (and not 31:15) which is what we
2714 * use below. */
2715#define VMX_ENTRY_INT_XCPT_ERR_CODE_VALID_MASK UINT32_C(0xffff)
2716/** @} */
2717
2718/** @name VM-entry interruption information types.
2719 * @{
2720 */
2721#define VMX_ENTRY_INT_INFO_TYPE_EXT_INT 0
2722#define VMX_ENTRY_INT_INFO_TYPE_RSVD 1
2723#define VMX_ENTRY_INT_INFO_TYPE_NMI 2
2724#define VMX_ENTRY_INT_INFO_TYPE_HW_XCPT 3
2725#define VMX_ENTRY_INT_INFO_TYPE_SW_INT 4
2726#define VMX_ENTRY_INT_INFO_TYPE_PRIV_SW_XCPT 5
2727#define VMX_ENTRY_INT_INFO_TYPE_SW_XCPT 6
2728#define VMX_ENTRY_INT_INFO_TYPE_OTHER_EVENT 7
2729/** @} */
2730
2731
2732/** @name VM-entry interruption information vector types for
2733 * VMX_ENTRY_INT_INFO_TYPE_OTHER_EVENT.
2734 * @{ */
2735#define VMX_ENTRY_INT_INFO_VECTOR_MTF 0
2736/** @} */
2737
2738
2739/** @name VM-exit interruption information.
2740 * @{
2741 */
2742#define VMX_EXIT_INT_INFO_VECTOR(a) ((a) & 0xff)
2743#define VMX_EXIT_INT_INFO_TYPE_SHIFT 8
2744#define VMX_EXIT_INT_INFO_TYPE(a) (((a) >> 8) & 7)
2745#define VMX_EXIT_INT_INFO_ERROR_CODE_VALID RT_BIT(11)
2746#define VMX_EXIT_INT_INFO_IS_ERROR_CODE_VALID(a) (((a) >> 11) & 1)
2747#define VMX_EXIT_INT_INFO_NMI_UNBLOCK_IRET 12
2748#define VMX_EXIT_INT_INFO_IS_NMI_UNBLOCK_IRET(a) (((a) >> 12) & 1)
2749#define VMX_EXIT_INT_INFO_VALID RT_BIT(31)
2750#define VMX_EXIT_INT_INFO_IS_VALID(a) (((a) >> 31) & 1)
2751
2752/** If the VM-exit interruption information field indicates an page-fault. */
2753#define VMX_EXIT_INT_INFO_IS_XCPT_PF(a) (((a) & ( VMX_BF_EXIT_INT_INFO_VALID_MASK \
2754 | VMX_BF_EXIT_INT_INFO_TYPE_MASK \
2755 | VMX_BF_EXIT_INT_INFO_VECTOR_MASK)) \
2756 == ( RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VALID, 1) \
2757 | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_TYPE, VMX_EXIT_INT_INFO_TYPE_HW_XCPT) \
2758 | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VECTOR, X86_XCPT_PF)))
2759/** If the VM-exit interruption information field indicates an double-fault. */
2760#define VMX_EXIT_INT_INFO_IS_XCPT_DF(a) (((a) & ( VMX_BF_EXIT_INT_INFO_VALID_MASK \
2761 | VMX_BF_EXIT_INT_INFO_TYPE_MASK \
2762 | VMX_BF_EXIT_INT_INFO_VECTOR_MASK)) \
2763 == ( RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VALID, 1) \
2764 | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_TYPE, VMX_EXIT_INT_INFO_TYPE_HW_XCPT) \
2765 | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VECTOR, X86_XCPT_DF)))
2766/** If the VM-exit interruption information field indicates an NMI. */
2767#define VMX_EXIT_INT_INFO_IS_XCPT_NMI(a) (((a) & ( VMX_BF_EXIT_INT_INFO_VALID_MASK \
2768 | VMX_BF_EXIT_INT_INFO_TYPE_MASK \
2769 | VMX_BF_EXIT_INT_INFO_VECTOR_MASK)) \
2770 == ( RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VALID, 1) \
2771 | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_TYPE, VMX_EXIT_INT_INFO_TYPE_NMI) \
2772 | RT_BF_MAKE(VMX_BF_EXIT_INT_INFO_VECTOR, X86_XCPT_NMI)))
2773
2774
2775/** Bit fields for VM-exit interruption infomration. */
2776/** The VM-exit interruption vector. */
2777#define VMX_BF_EXIT_INT_INFO_VECTOR_SHIFT 0
2778#define VMX_BF_EXIT_INT_INFO_VECTOR_MASK UINT32_C(0x000000ff)
2779/** The VM-exit interruption type (see VMX_EXIT_INT_INFO_TYPE_XXX). */
2780#define VMX_BF_EXIT_INT_INFO_TYPE_SHIFT 8
2781#define VMX_BF_EXIT_INT_INFO_TYPE_MASK UINT32_C(0x00000700)
2782/** Whether this event has an error code. */
2783#define VMX_BF_EXIT_INT_INFO_ERR_CODE_VALID_SHIFT 11
2784#define VMX_BF_EXIT_INT_INFO_ERR_CODE_VALID_MASK UINT32_C(0x00000800)
2785/** Whether NMI-unblocking due to IRET is active. */
2786#define VMX_BF_EXIT_INT_INFO_NMI_UNBLOCK_IRET_SHIFT 12
2787#define VMX_BF_EXIT_INT_INFO_NMI_UNBLOCK_IRET_MASK UINT32_C(0x00001000)
2788/** Bits 13:30 is reserved (MBZ). */
2789#define VMX_BF_EXIT_INT_INFO_RSVD_13_30_SHIFT 13
2790#define VMX_BF_EXIT_INT_INFO_RSVD_13_30_MASK UINT32_C(0x7fffe000)
2791/** Whether this VM-exit interruption info is valid. */
2792#define VMX_BF_EXIT_INT_INFO_VALID_SHIFT 31
2793#define VMX_BF_EXIT_INT_INFO_VALID_MASK UINT32_C(0x80000000)
2794RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_EXIT_INT_INFO_, UINT32_C(0), UINT32_MAX,
2795 (VECTOR, TYPE, ERR_CODE_VALID, NMI_UNBLOCK_IRET, RSVD_13_30, VALID));
2796/** @} */
2797
2798
2799/** @name VM-exit interruption information types.
2800 * @{
2801 */
2802#define VMX_EXIT_INT_INFO_TYPE_EXT_INT 0
2803#define VMX_EXIT_INT_INFO_TYPE_NMI 2
2804#define VMX_EXIT_INT_INFO_TYPE_HW_XCPT 3
2805#define VMX_EXIT_INT_INFO_TYPE_SW_INT 4
2806#define VMX_EXIT_INT_INFO_TYPE_PRIV_SW_XCPT 5
2807#define VMX_EXIT_INT_INFO_TYPE_SW_XCPT 6
2808#define VMX_EXIT_INT_INFO_TYPE_UNUSED 7
2809/** @} */
2810
2811
2812/** @name VM-exit instruction identity.
2813 *
2814 * These are found in VM-exit instruction information fields for certain
2815 * instructions.
2816 * @{ */
2817typedef uint32_t VMXINSTRID;
2818/** Whether the instruction ID field is valid. */
2819#define VMXINSTRID_VALID RT_BIT_32(31)
2820/** Whether the instruction's primary operand in the Mod R/M byte (bits 0:3) is a
2821 * read or write. */
2822#define VMXINSTRID_MODRM_PRIMARY_OP_W RT_BIT_32(30)
2823/** Gets whether the instruction ID is valid or not. */
2824#define VMXINSTRID_IS_VALID(a) (((a) >> 31) & 1)
2825#define VMXINSTRID_IS_MODRM_PRIMARY_OP_W(a) (((a) >> 30) & 1)
2826/** Gets the instruction ID. */
2827#define VMXINSTRID_GET_ID(a) ((a) & ~(VMXINSTRID_VALID | VMXINSTRID_MODRM_PRIMARY_OP_W))
2828/** No instruction ID info. */
2829#define VMXINSTRID_NONE 0
2830
2831/** The OR'd rvalues are from the VT-x spec (valid bit is VBox specific): */
2832#define VMXINSTRID_SGDT (0x0 | VMXINSTRID_VALID | VMXINSTRID_MODRM_PRIMARY_OP_W)
2833#define VMXINSTRID_SIDT (0x1 | VMXINSTRID_VALID | VMXINSTRID_MODRM_PRIMARY_OP_W)
2834#define VMXINSTRID_LGDT (0x2 | VMXINSTRID_VALID)
2835#define VMXINSTRID_LIDT (0x3 | VMXINSTRID_VALID)
2836
2837#define VMXINSTRID_SLDT (0x0 | VMXINSTRID_VALID | VMXINSTRID_MODRM_PRIMARY_OP_W)
2838#define VMXINSTRID_STR (0x1 | VMXINSTRID_VALID | VMXINSTRID_MODRM_PRIMARY_OP_W)
2839#define VMXINSTRID_LLDT (0x2 | VMXINSTRID_VALID)
2840#define VMXINSTRID_LTR (0x3 | VMXINSTRID_VALID)
2841
2842/** The following IDs are used internally (some for logging, others for conveying
2843 * the ModR/M primary operand write bit): */
2844#define VMXINSTRID_VMLAUNCH (0x10 | VMXINSTRID_VALID)
2845#define VMXINSTRID_VMRESUME (0x11 | VMXINSTRID_VALID)
2846#define VMXINSTRID_VMREAD (0x12 | VMXINSTRID_VALID)
2847#define VMXINSTRID_VMWRITE (0x13 | VMXINSTRID_VALID | VMXINSTRID_MODRM_PRIMARY_OP_W)
2848#define VMXINSTRID_IO_IN (0x14 | VMXINSTRID_VALID)
2849#define VMXINSTRID_IO_INS (0x15 | VMXINSTRID_VALID)
2850#define VMXINSTRID_IO_OUT (0x16 | VMXINSTRID_VALID)
2851#define VMXINSTRID_IO_OUTS (0x17 | VMXINSTRID_VALID)
2852#define VMXINSTRID_MOV_TO_DRX (0x18 | VMXINSTRID_VALID)
2853#define VMXINSTRID_MOV_FROM_DRX (0x19 | VMXINSTRID_VALID)
2854/** @} */
2855
2856
2857/** @name IDT-vectoring information.
2858 * @{
2859 */
2860#define VMX_IDT_VECTORING_INFO_VECTOR(a) ((a) & 0xff)
2861#define VMX_IDT_VECTORING_INFO_TYPE_SHIFT 8
2862#define VMX_IDT_VECTORING_INFO_TYPE(a) (((a) >> 8) & 7)
2863#define VMX_IDT_VECTORING_INFO_ERROR_CODE_VALID RT_BIT(11)
2864#define VMX_IDT_VECTORING_INFO_IS_ERROR_CODE_VALID(a) (((a) >> 11) & 1)
2865#define VMX_IDT_VECTORING_INFO_IS_VALID(a) (((a) >> 31) & 1)
2866#define VMX_IDT_VECTORING_INFO_VALID RT_BIT(31)
2867
2868/** Construct an IDT-vectoring information field from an VM-entry interruption
2869 * information field (same except that bit 12 is reserved). */
2870#define VMX_IDT_VECTORING_INFO_FROM_ENTRY_INT_INFO(a) ((a) & ~RT_BIT(12))
2871/** If the IDT-vectoring information field indicates a page-fault. */
2872#define VMX_IDT_VECTORING_INFO_IS_XCPT_PF(a) (((a) & ( VMX_BF_IDT_VECTORING_INFO_VALID_MASK \
2873 | VMX_BF_IDT_VECTORING_INFO_TYPE_MASK \
2874 | VMX_BF_IDT_VECTORING_INFO_VECTOR_MASK)) \
2875 == ( RT_BF_MAKE(VMX_BF_IDT_VECTORING_INFO_VALID, 1) \
2876 | RT_BF_MAKE(VMX_BF_IDT_VECTORING_INFO_TYPE, VMX_IDT_VECTORING_INFO_TYPE_HW_XCPT) \
2877 | RT_BF_MAKE(VMX_BF_IDT_VECTORING_INFO_VECTOR, X86_XCPT_PF)))
2878/** If the IDT-vectoring information field indicates an NMI. */
2879#define VMX_IDT_VECTORING_INFO_IS_XCPT_NMI(a) (((a) & ( VMX_BF_IDT_VECTORING_INFO_VALID_MASK \
2880 | VMX_BF_IDT_VECTORING_INFO_TYPE_MASK \
2881 | VMX_BF_IDT_VECTORING_INFO_VECTOR_MASK)) \
2882 == ( RT_BF_MAKE(VMX_BF_IDT_VECTORING_INFO_VALID, 1) \
2883 | RT_BF_MAKE(VMX_BF_IDT_VECTORING_INFO_TYPE, VMX_IDT_VECTORING_INFO_TYPE_NMI) \
2884 | RT_BF_MAKE(VMX_BF_IDT_VECTORING_INFO_VECTOR, X86_XCPT_NMI)))
2885
2886
2887/** Bit fields for IDT-vectoring information. */
2888/** The IDT-vectoring info vector. */
2889#define VMX_BF_IDT_VECTORING_INFO_VECTOR_SHIFT 0
2890#define VMX_BF_IDT_VECTORING_INFO_VECTOR_MASK UINT32_C(0x000000ff)
2891/** The IDT-vectoring info type (see VMX_IDT_VECTORING_INFO_TYPE_XXX). */
2892#define VMX_BF_IDT_VECTORING_INFO_TYPE_SHIFT 8
2893#define VMX_BF_IDT_VECTORING_INFO_TYPE_MASK UINT32_C(0x00000700)
2894/** Whether the event has an error code. */
2895#define VMX_BF_IDT_VECTORING_INFO_ERR_CODE_VALID_SHIFT 11
2896#define VMX_BF_IDT_VECTORING_INFO_ERR_CODE_VALID_MASK UINT32_C(0x00000800)
2897/** Bit 12 is undefined. */
2898#define VMX_BF_IDT_VECTORING_INFO_UNDEF_12_SHIFT 12
2899#define VMX_BF_IDT_VECTORING_INFO_UNDEF_12_MASK UINT32_C(0x00001000)
2900/** Bits 13:30 is reserved (MBZ). */
2901#define VMX_BF_IDT_VECTORING_INFO_RSVD_13_30_SHIFT 13
2902#define VMX_BF_IDT_VECTORING_INFO_RSVD_13_30_MASK UINT32_C(0x7fffe000)
2903/** Whether this IDT-vectoring info is valid. */
2904#define VMX_BF_IDT_VECTORING_INFO_VALID_SHIFT 31
2905#define VMX_BF_IDT_VECTORING_INFO_VALID_MASK UINT32_C(0x80000000)
2906RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_IDT_VECTORING_INFO_, UINT32_C(0), UINT32_MAX,
2907 (VECTOR, TYPE, ERR_CODE_VALID, UNDEF_12, RSVD_13_30, VALID));
2908/** @} */
2909
2910
2911/** @name IDT-vectoring information vector types.
2912 * @{
2913 */
2914#define VMX_IDT_VECTORING_INFO_TYPE_EXT_INT 0
2915#define VMX_IDT_VECTORING_INFO_TYPE_NMI 2
2916#define VMX_IDT_VECTORING_INFO_TYPE_HW_XCPT 3
2917#define VMX_IDT_VECTORING_INFO_TYPE_SW_INT 4
2918#define VMX_IDT_VECTORING_INFO_TYPE_PRIV_SW_XCPT 5
2919#define VMX_IDT_VECTORING_INFO_TYPE_SW_XCPT 6
2920#define VMX_IDT_VECTORING_INFO_TYPE_UNUSED 7
2921/** @} */
2922
2923
2924/** @name TPR threshold.
2925 * @{ */
2926/** Mask of the TPR threshold field (bits 31:4 MBZ). */
2927#define VMX_TPR_THRESHOLD_MASK UINT32_C(0xf)
2928
2929/** Bit fields for TPR threshold. */
2930#define VMX_BF_TPR_THRESHOLD_TPR_SHIFT 0
2931#define VMX_BF_TPR_THRESHOLD_TPR_MASK UINT32_C(0x0000000f)
2932#define VMX_BF_TPR_THRESHOLD_RSVD_4_31_SHIFT 4
2933#define VMX_BF_TPR_THRESHOLD_RSVD_4_31_MASK UINT32_C(0xfffffff0)
2934RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_TPR_THRESHOLD_, UINT32_C(0), UINT32_MAX,
2935 (TPR, RSVD_4_31));
2936/** @} */
2937
2938
2939/** @name Guest-activity states.
2940 * @{
2941 */
2942/** The logical processor is active. */
2943#define VMX_VMCS_GUEST_ACTIVITY_ACTIVE 0x0
2944/** The logical processor is inactive, because it executed a HLT instruction. */
2945#define VMX_VMCS_GUEST_ACTIVITY_HLT 0x1
2946/** The logical processor is inactive, because of a triple fault or other serious error. */
2947#define VMX_VMCS_GUEST_ACTIVITY_SHUTDOWN 0x2
2948/** The logical processor is inactive, because it's waiting for a startup-IPI */
2949#define VMX_VMCS_GUEST_ACTIVITY_SIPI_WAIT 0x3
2950/** @} */
2951
2952
2953/** @name Guest-interruptibility states.
2954 * @{
2955 */
2956#define VMX_VMCS_GUEST_INT_STATE_BLOCK_STI RT_BIT(0)
2957#define VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS RT_BIT(1)
2958#define VMX_VMCS_GUEST_INT_STATE_BLOCK_SMI RT_BIT(2)
2959#define VMX_VMCS_GUEST_INT_STATE_BLOCK_NMI RT_BIT(3)
2960#define VMX_VMCS_GUEST_INT_STATE_ENCLAVE RT_BIT(4)
2961
2962/** Mask of the guest-interruptibility state field (bits 31:5 MBZ). */
2963#define VMX_VMCS_GUEST_INT_STATE_MASK UINT32_C(0x1f)
2964/** @} */
2965
2966
2967/** @name Exit qualification for debug exceptions.
2968 * @{
2969 */
2970/** Hardware breakpoint 0 was met. */
2971#define VMX_VMCS_EXIT_QUAL_DEBUG_XCPT_BP0 RT_BIT_64(0)
2972/** Hardware breakpoint 1 was met. */
2973#define VMX_VMCS_EXIT_QUAL_DEBUG_XCPT_BP1 RT_BIT_64(1)
2974/** Hardware breakpoint 2 was met. */
2975#define VMX_VMCS_EXIT_QUAL_DEBUG_XCPT_BP2 RT_BIT_64(2)
2976/** Hardware breakpoint 3 was met. */
2977#define VMX_VMCS_EXIT_QUAL_DEBUG_XCPT_BP3 RT_BIT_64(3)
2978/** Debug register access detected. */
2979#define VMX_VMCS_EXIT_QUAL_DEBUG_XCPT_BD RT_BIT_64(13)
2980/** A debug exception would have been triggered by single-step execution mode. */
2981#define VMX_VMCS_EXIT_QUAL_DEBUG_XCPT_BS RT_BIT_64(14)
2982/** Mask of all valid bits. */
2983#define VMX_VMCS_EXIT_QUAL_VALID_MASK ( VMX_VMCS_EXIT_QUAL_DEBUG_XCPT_BP0 \
2984 | VMX_VMCS_EXIT_QUAL_DEBUG_XCPT_BP1 \
2985 | VMX_VMCS_EXIT_QUAL_DEBUG_XCPT_BP2 \
2986 | VMX_VMCS_EXIT_QUAL_DEBUG_XCPT_BP3 \
2987 | VMX_VMCS_EXIT_QUAL_DEBUG_XCPT_BD \
2988 | VMX_VMCS_EXIT_QUAL_DEBUG_XCPT_BS)
2989
2990/** Bit fields for Exit qualifications due to debug exceptions. */
2991#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_BP0_SHIFT 0
2992#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_BP0_MASK UINT64_C(0x0000000000000001)
2993#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_BP1_SHIFT 1
2994#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_BP1_MASK UINT64_C(0x0000000000000002)
2995#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_BP2_SHIFT 2
2996#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_BP2_MASK UINT64_C(0x0000000000000004)
2997#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_BP3_SHIFT 3
2998#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_BP3_MASK UINT64_C(0x0000000000000008)
2999#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_RSVD_4_12_SHIFT 4
3000#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_RSVD_4_12_MASK UINT64_C(0x0000000000001ff0)
3001#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_BD_SHIFT 13
3002#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_BD_MASK UINT64_C(0x0000000000002000)
3003#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_BS_SHIFT 14
3004#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_BS_MASK UINT64_C(0x0000000000004000)
3005#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_RSVD_15_63_SHIFT 15
3006#define VMX_BF_EXIT_QUAL_DEBUG_XCPT_RSVD_15_63_MASK UINT64_C(0xffffffffffff8000)
3007RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_EXIT_QUAL_DEBUG_XCPT_, UINT64_C(0), UINT64_MAX,
3008 (BP0, BP1, BP2, BP3, RSVD_4_12, BD, BS, RSVD_15_63));
3009/** @} */
3010
3011/** @name Exit qualification for Mov DRx.
3012 * @{
3013 */
3014/** 0-2: Debug register number */
3015#define VMX_EXIT_QUAL_DRX_REGISTER(a) ((a) & 7)
3016/** 3: Reserved; cleared to 0. */
3017#define VMX_EXIT_QUAL_DRX_RES1(a) (((a) >> 3) & 1)
3018/** 4: Direction of move (0 = write, 1 = read) */
3019#define VMX_EXIT_QUAL_DRX_DIRECTION(a) (((a) >> 4) & 1)
3020/** 5-7: Reserved; cleared to 0. */
3021#define VMX_EXIT_QUAL_DRX_RES2(a) (((a) >> 5) & 7)
3022/** 8-11: General purpose register number. */
3023#define VMX_EXIT_QUAL_DRX_GENREG(a) (((a) >> 8) & 0xf)
3024
3025/** Bit fields for Exit qualification due to Mov DRx. */
3026#define VMX_BF_EXIT_QUAL_DRX_REGISTER_SHIFT 0
3027#define VMX_BF_EXIT_QUAL_DRX_REGISTER_MASK UINT64_C(0x0000000000000007)
3028#define VMX_BF_EXIT_QUAL_DRX_RSVD_1_SHIFT 3
3029#define VMX_BF_EXIT_QUAL_DRX_RSVD_1_MASK UINT64_C(0x0000000000000008)
3030#define VMX_BF_EXIT_QUAL_DRX_DIRECTION_SHIFT 4
3031#define VMX_BF_EXIT_QUAL_DRX_DIRECTION_MASK UINT64_C(0x0000000000000010)
3032#define VMX_BF_EXIT_QUAL_DRX_RSVD_5_7_SHIFT 5
3033#define VMX_BF_EXIT_QUAL_DRX_RSVD_5_7_MASK UINT64_C(0x00000000000000e0)
3034#define VMX_BF_EXIT_QUAL_DRX_GENREG_SHIFT 8
3035#define VMX_BF_EXIT_QUAL_DRX_GENREG_MASK UINT64_C(0x0000000000000f00)
3036#define VMX_BF_EXIT_QUAL_DRX_RSVD_12_63_SHIFT 12
3037#define VMX_BF_EXIT_QUAL_DRX_RSVD_12_63_MASK UINT64_C(0xfffffffffffff000)
3038RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_EXIT_QUAL_DRX_, UINT64_C(0), UINT64_MAX,
3039 (REGISTER, RSVD_1, DIRECTION, RSVD_5_7, GENREG, RSVD_12_63));
3040/** @} */
3041
3042
3043/** @name Exit qualification for debug exceptions types.
3044 * @{
3045 */
3046#define VMX_EXIT_QUAL_DRX_DIRECTION_WRITE 0
3047#define VMX_EXIT_QUAL_DRX_DIRECTION_READ 1
3048/** @} */
3049
3050
3051/** @name Exit qualification for control-register accesses.
3052 * @{
3053 */
3054/** 0-3: Control register number (0 for CLTS & LMSW) */
3055#define VMX_EXIT_QUAL_CRX_REGISTER(a) ((a) & 0xf)
3056/** 4-5: Access type. */
3057#define VMX_EXIT_QUAL_CRX_ACCESS(a) (((a) >> 4) & 3)
3058/** 6: LMSW operand type memory (1 for memory, 0 for register). */
3059#define VMX_EXIT_QUAL_CRX_LMSW_OP_MEM(a) (((a) >> 6) & 1)
3060/** 7: Reserved; cleared to 0. */
3061#define VMX_EXIT_QUAL_CRX_RES1(a) (((a) >> 7) & 1)
3062/** 8-11: General purpose register number (0 for CLTS & LMSW). */
3063#define VMX_EXIT_QUAL_CRX_GENREG(a) (((a) >> 8) & 0xf)
3064/** 12-15: Reserved; cleared to 0. */
3065#define VMX_EXIT_QUAL_CRX_RES2(a) (((a) >> 12) & 0xf)
3066/** 16-31: LMSW source data (else 0). */
3067#define VMX_EXIT_QUAL_CRX_LMSW_DATA(a) (((a) >> 16) & 0xffff)
3068
3069/** Bit fields for Exit qualification for control-register accesses. */
3070#define VMX_BF_EXIT_QUAL_CRX_REGISTER_SHIFT 0
3071#define VMX_BF_EXIT_QUAL_CRX_REGISTER_MASK UINT64_C(0x000000000000000f)
3072#define VMX_BF_EXIT_QUAL_CRX_ACCESS_SHIFT 4
3073#define VMX_BF_EXIT_QUAL_CRX_ACCESS_MASK UINT64_C(0x0000000000000030)
3074#define VMX_BF_EXIT_QUAL_CRX_LMSW_OP_SHIFT 6
3075#define VMX_BF_EXIT_QUAL_CRX_LMSW_OP_MASK UINT64_C(0x0000000000000040)
3076#define VMX_BF_EXIT_QUAL_CRX_RSVD_7_SHIFT 7
3077#define VMX_BF_EXIT_QUAL_CRX_RSVD_7_MASK UINT64_C(0x0000000000000080)
3078#define VMX_BF_EXIT_QUAL_CRX_GENREG_SHIFT 8
3079#define VMX_BF_EXIT_QUAL_CRX_GENREG_MASK UINT64_C(0x0000000000000f00)
3080#define VMX_BF_EXIT_QUAL_CRX_RSVD_12_15_SHIFT 12
3081#define VMX_BF_EXIT_QUAL_CRX_RSVD_12_15_MASK UINT64_C(0x000000000000f000)
3082#define VMX_BF_EXIT_QUAL_CRX_LMSW_DATA_SHIFT 16
3083#define VMX_BF_EXIT_QUAL_CRX_LMSW_DATA_MASK UINT64_C(0x00000000ffff0000)
3084#define VMX_BF_EXIT_QUAL_CRX_RSVD_32_63_SHIFT 32
3085#define VMX_BF_EXIT_QUAL_CRX_RSVD_32_63_MASK UINT64_C(0xffffffff00000000)
3086RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_EXIT_QUAL_CRX_, UINT64_C(0), UINT64_MAX,
3087 (REGISTER, ACCESS, LMSW_OP, RSVD_7, GENREG, RSVD_12_15, LMSW_DATA, RSVD_32_63));
3088/** @} */
3089
3090
3091/** @name Exit qualification for control-register access types.
3092 * @{
3093 */
3094#define VMX_EXIT_QUAL_CRX_ACCESS_WRITE 0
3095#define VMX_EXIT_QUAL_CRX_ACCESS_READ 1
3096#define VMX_EXIT_QUAL_CRX_ACCESS_CLTS 2
3097#define VMX_EXIT_QUAL_CRX_ACCESS_LMSW 3
3098/** @} */
3099
3100
3101/** @name Exit qualification for task switch.
3102 * @{
3103 */
3104#define VMX_EXIT_QUAL_TASK_SWITCH_SELECTOR(a) ((a) & 0xffff)
3105#define VMX_EXIT_QUAL_TASK_SWITCH_TYPE(a) (((a) >> 30) & 0x3)
3106/** Task switch caused by a call instruction. */
3107#define VMX_EXIT_QUAL_TASK_SWITCH_TYPE_CALL 0
3108/** Task switch caused by an iret instruction. */
3109#define VMX_EXIT_QUAL_TASK_SWITCH_TYPE_IRET 1
3110/** Task switch caused by a jmp instruction. */
3111#define VMX_EXIT_QUAL_TASK_SWITCH_TYPE_JMP 2
3112/** Task switch caused by an interrupt gate. */
3113#define VMX_EXIT_QUAL_TASK_SWITCH_TYPE_IDT 3
3114
3115/** Bit fields for Exit qualification for task switches. */
3116#define VMX_BF_EXIT_QUAL_TASK_SWITCH_NEW_TSS_SHIFT 0
3117#define VMX_BF_EXIT_QUAL_TASK_SWITCH_NEW_TSS_MASK UINT64_C(0x000000000000ffff)
3118#define VMX_BF_EXIT_QUAL_TASK_SWITCH_RSVD_16_29_SHIFT 16
3119#define VMX_BF_EXIT_QUAL_TASK_SWITCH_RSVD_16_29_MASK UINT64_C(0x000000003fff0000)
3120#define VMX_BF_EXIT_QUAL_TASK_SWITCH_SOURCE_SHIFT 30
3121#define VMX_BF_EXIT_QUAL_TASK_SWITCH_SOURCE_MASK UINT64_C(0x00000000c0000000)
3122#define VMX_BF_EXIT_QUAL_TASK_SWITCH_RSVD_32_63_SHIFT 32
3123#define VMX_BF_EXIT_QUAL_TASK_SWITCH_RSVD_32_63_MASK UINT64_C(0xffffffff00000000)
3124RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_EXIT_QUAL_TASK_SWITCH_, UINT64_C(0), UINT64_MAX,
3125 (NEW_TSS, RSVD_16_29, SOURCE, RSVD_32_63));
3126/** @} */
3127
3128
3129/** @name Exit qualification for EPT violations.
3130 * @{
3131 */
3132/** Set if the violation was caused by a data read. */
3133#define VMX_EXIT_QUAL_EPT_DATA_READ RT_BIT(0)
3134/** Set if the violation was caused by a data write. */
3135#define VMX_EXIT_QUAL_EPT_DATA_WRITE RT_BIT(1)
3136/** Set if the violation was caused by an instruction fetch. */
3137#define VMX_EXIT_QUAL_EPT_INSTR_FETCH RT_BIT(2)
3138/** AND of the present bit of all EPT structures. */
3139#define VMX_EXIT_QUAL_EPT_ENTRY_PRESENT RT_BIT(3)
3140/** AND of the write bit of all EPT structures. */
3141#define VMX_EXIT_QUAL_EPT_ENTRY_WRITE RT_BIT(4)
3142/** AND of the execute bit of all EPT structures. */
3143#define VMX_EXIT_QUAL_EPT_ENTRY_EXECUTE RT_BIT(5)
3144/** Set if the guest linear address field contains the faulting address. */
3145#define VMX_EXIT_QUAL_EPT_GUEST_ADDR_VALID RT_BIT(7)
3146/** If bit 7 is one: (reserved otherwise)
3147 * 1 - violation due to physical address access.
3148 * 0 - violation caused by page walk or access/dirty bit updates
3149 */
3150#define VMX_EXIT_QUAL_EPT_TRANSLATED_ACCESS RT_BIT(8)
3151/** NMI unblocking due to IRET. */
3152#define VMX_EXIT_QUAL_EPT_IS_NMI_UNBLOCK_IRET(a) (((a) >> 12) & 1)
3153/** @} */
3154
3155
3156/** @name Exit qualification for I/O instructions.
3157 * @{
3158 */
3159/** 0-2: IO operation size 0(=1 byte), 1(=2 bytes) and 3(=4 bytes). */
3160#define VMX_EXIT_QUAL_IO_SIZE(a) ((a) & 7)
3161/** 3: IO operation direction. */
3162#define VMX_EXIT_QUAL_IO_DIRECTION(a) (((a) >> 3) & 1)
3163/** 4: String IO operation (INS / OUTS). */
3164#define VMX_EXIT_QUAL_IO_IS_STRING(a) (((a) >> 4) & 1)
3165/** 5: Repeated IO operation. */
3166#define VMX_EXIT_QUAL_IO_IS_REP(a) (((a) >> 5) & 1)
3167/** 6: Operand encoding. */
3168#define VMX_EXIT_QUAL_IO_ENCODING(a) (((a) >> 6) & 1)
3169/** 16-31: IO Port (0-0xffff). */
3170#define VMX_EXIT_QUAL_IO_PORT(a) (((a) >> 16) & 0xffff)
3171
3172/** Bit fields for Exit qualification for I/O instructions. */
3173#define VMX_BF_EXIT_QUAL_IO_WIDTH_SHIFT 0
3174#define VMX_BF_EXIT_QUAL_IO_WIDTH_MASK UINT64_C(0x0000000000000007)
3175#define VMX_BF_EXIT_QUAL_IO_DIRECTION_SHIFT 3
3176#define VMX_BF_EXIT_QUAL_IO_DIRECTION_MASK UINT64_C(0x0000000000000008)
3177#define VMX_BF_EXIT_QUAL_IO_IS_STRING_SHIFT 4
3178#define VMX_BF_EXIT_QUAL_IO_IS_STRING_MASK UINT64_C(0x0000000000000010)
3179#define VMX_BF_EXIT_QUAL_IO_IS_REP_SHIFT 5
3180#define VMX_BF_EXIT_QUAL_IO_IS_REP_MASK UINT64_C(0x0000000000000020)
3181#define VMX_BF_EXIT_QUAL_IO_ENCODING_SHIFT 6
3182#define VMX_BF_EXIT_QUAL_IO_ENCODING_MASK UINT64_C(0x0000000000000040)
3183#define VMX_BF_EXIT_QUAL_IO_RSVD_7_15_SHIFT 7
3184#define VMX_BF_EXIT_QUAL_IO_RSVD_7_15_MASK UINT64_C(0x000000000000ff80)
3185#define VMX_BF_EXIT_QUAL_IO_PORT_SHIFT 16
3186#define VMX_BF_EXIT_QUAL_IO_PORT_MASK UINT64_C(0x00000000ffff0000)
3187#define VMX_BF_EXIT_QUAL_IO_RSVD_32_63_SHIFT 32
3188#define VMX_BF_EXIT_QUAL_IO_RSVD_32_63_MASK UINT64_C(0xffffffff00000000)
3189RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_EXIT_QUAL_IO_, UINT64_C(0), UINT64_MAX,
3190 (WIDTH, DIRECTION, IS_STRING, IS_REP, ENCODING, RSVD_7_15, PORT, RSVD_32_63));
3191/** @} */
3192
3193
3194/** @name Exit qualification for I/O instruction types.
3195 * @{
3196 */
3197#define VMX_EXIT_QUAL_IO_DIRECTION_OUT 0
3198#define VMX_EXIT_QUAL_IO_DIRECTION_IN 1
3199/** @} */
3200
3201
3202/** @name Exit qualification for I/O instruction encoding.
3203 * @{
3204 */
3205#define VMX_EXIT_QUAL_IO_ENCODING_DX 0
3206#define VMX_EXIT_QUAL_IO_ENCODING_IMM 1
3207/** @} */
3208
3209
3210/** @name Exit qualification for APIC-access VM-exits from linear and
3211 * guest-physical accesses.
3212 * @{
3213 */
3214/** 0-11: If the APIC-access VM-exit is due to a linear access, the offset of
3215 * access within the APIC page. */
3216#define VMX_EXIT_QUAL_APIC_ACCESS_OFFSET(a) ((a) & 0xfff)
3217/** 12-15: Access type. */
3218#define VMX_EXIT_QUAL_APIC_ACCESS_TYPE(a) (((a) & 0xf000) >> 12)
3219/* Rest reserved. */
3220
3221/** Bit fields for Exit qualification for APIC-access VM-exits. */
3222#define VMX_BF_EXIT_QUAL_APIC_ACCESS_OFFSET_SHIFT 0
3223#define VMX_BF_EXIT_QUAL_APIC_ACCESS_OFFSET_MASK UINT64_C(0x0000000000000fff)
3224#define VMX_BF_EXIT_QUAL_APIC_ACCESS_TYPE_SHIFT 12
3225#define VMX_BF_EXIT_QUAL_APIC_ACCESS_TYPE_MASK UINT64_C(0x000000000000f000)
3226#define VMX_BF_EXIT_QUAL_APIC_ACCESS_RSVD_16_63_SHIFT 16
3227#define VMX_BF_EXIT_QUAL_APIC_ACCESS_RSVD_16_63_MASK UINT64_C(0xffffffffffff0000)
3228RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_EXIT_QUAL_APIC_ACCESS_, UINT64_C(0), UINT64_MAX,
3229 (OFFSET, TYPE, RSVD_16_63));
3230/** @} */
3231
3232
3233/** @name Exit qualification for linear address APIC-access types.
3234 * @{
3235 */
3236/** Linear access for a data read during instruction execution. */
3237#define VMX_APIC_ACCESS_TYPE_LINEAR_READ 0
3238/** Linear access for a data write during instruction execution. */
3239#define VMX_APIC_ACCESS_TYPE_LINEAR_WRITE 1
3240/** Linear access for an instruction fetch. */
3241#define VMX_APIC_ACCESS_TYPE_LINEAR_INSTR_FETCH 2
3242/** Linear read/write access during event delivery. */
3243#define VMX_APIC_ACCESS_TYPE_LINEAR_EVENT_DELIVERY 3
3244/** Physical read/write access during event delivery. */
3245#define VMX_APIC_ACCESS_TYPE_PHYSICAL_EVENT_DELIVERY 10
3246/** Physical access for an instruction fetch or during instruction execution. */
3247#define VMX_APIC_ACCESS_TYPE_PHYSICAL_INSTR 15
3248
3249/**
3250 * APIC-access type.
3251 * In accordance with the VT-x spec.
3252 */
3253typedef enum
3254{
3255 VMXAPICACCESS_LINEAR_READ = VMX_APIC_ACCESS_TYPE_LINEAR_READ,
3256 VMXAPICACCESS_LINEAR_WRITE = VMX_APIC_ACCESS_TYPE_LINEAR_WRITE,
3257 VMXAPICACCESS_LINEAR_INSTR_FETCH = VMX_APIC_ACCESS_TYPE_LINEAR_INSTR_FETCH,
3258 VMXAPICACCESS_LINEAR_EVENT_DELIVERY = VMX_APIC_ACCESS_TYPE_LINEAR_EVENT_DELIVERY,
3259 VMXAPICACCESS_PHYSICAL_EVENT_DELIVERY = VMX_APIC_ACCESS_TYPE_PHYSICAL_EVENT_DELIVERY,
3260 VMXAPICACCESS_PHYSICAL_INSTR = VMX_APIC_ACCESS_TYPE_PHYSICAL_INSTR
3261} VMXAPICACCESS;
3262AssertCompileSize(VMXAPICACCESS, 4);
3263/** @} */
3264
3265
3266/** @name VMX_BF_XXTR_INSINFO_XXX - VMX_EXIT_XDTR_ACCESS instruction information.
3267 * Found in VMX_VMCS32_RO_EXIT_INSTR_INFO.
3268 * @{
3269 */
3270/** Address calculation scaling field (powers of two). */
3271#define VMX_BF_XDTR_INSINFO_SCALE_SHIFT 0
3272#define VMX_BF_XDTR_INSINFO_SCALE_MASK UINT32_C(0x00000003)
3273/** Bits 2 thru 6 are undefined. */
3274#define VMX_BF_XDTR_INSINFO_UNDEF_2_6_SHIFT 2
3275#define VMX_BF_XDTR_INSINFO_UNDEF_2_6_MASK UINT32_C(0x0000007c)
3276/** Address size, only 0(=16), 1(=32) and 2(=64) are defined.
3277 * @remarks anyone's guess why this is a 3 bit field... */
3278#define VMX_BF_XDTR_INSINFO_ADDR_SIZE_SHIFT 7
3279#define VMX_BF_XDTR_INSINFO_ADDR_SIZE_MASK UINT32_C(0x00000380)
3280/** Bit 10 is defined as zero. */
3281#define VMX_BF_XDTR_INSINFO_ZERO_10_SHIFT 10
3282#define VMX_BF_XDTR_INSINFO_ZERO_10_MASK UINT32_C(0x00000400)
3283/** Operand size, either (1=)32-bit or (0=)16-bit, but get this, it's undefined
3284 * for exits from 64-bit code as the operand size there is fixed. */
3285#define VMX_BF_XDTR_INSINFO_OP_SIZE_SHIFT 11
3286#define VMX_BF_XDTR_INSINFO_OP_SIZE_MASK UINT32_C(0x00000800)
3287/** Bits 12 thru 14 are undefined. */
3288#define VMX_BF_XDTR_INSINFO_UNDEF_12_14_SHIFT 12
3289#define VMX_BF_XDTR_INSINFO_UNDEF_12_14_MASK UINT32_C(0x00007000)
3290/** Applicable segment register (X86_SREG_XXX values). */
3291#define VMX_BF_XDTR_INSINFO_SREG_SHIFT 15
3292#define VMX_BF_XDTR_INSINFO_SREG_MASK UINT32_C(0x00038000)
3293/** Index register (X86_GREG_XXX values). Undefined if HAS_INDEX_REG is clear. */
3294#define VMX_BF_XDTR_INSINFO_INDEX_REG_SHIFT 18
3295#define VMX_BF_XDTR_INSINFO_INDEX_REG_MASK UINT32_C(0x003c0000)
3296/** Is VMX_BF_XDTR_INSINFO_INDEX_REG_XXX valid (=1) or not (=0). */
3297#define VMX_BF_XDTR_INSINFO_HAS_INDEX_REG_SHIFT 22
3298#define VMX_BF_XDTR_INSINFO_HAS_INDEX_REG_MASK UINT32_C(0x00400000)
3299/** Base register (X86_GREG_XXX values). Undefined if HAS_BASE_REG is clear. */
3300#define VMX_BF_XDTR_INSINFO_BASE_REG_SHIFT 23
3301#define VMX_BF_XDTR_INSINFO_BASE_REG_MASK UINT32_C(0x07800000)
3302/** Is VMX_XDTR_INSINFO_BASE_REG_XXX valid (=1) or not (=0). */
3303#define VMX_BF_XDTR_INSINFO_HAS_BASE_REG_SHIFT 27
3304#define VMX_BF_XDTR_INSINFO_HAS_BASE_REG_MASK UINT32_C(0x08000000)
3305/** The instruction identity (VMX_XDTR_INSINFO_II_XXX values). */
3306#define VMX_BF_XDTR_INSINFO_INSTR_ID_SHIFT 28
3307#define VMX_BF_XDTR_INSINFO_INSTR_ID_MASK UINT32_C(0x30000000)
3308#define VMX_XDTR_INSINFO_II_SGDT 0 /**< Instruction ID: SGDT */
3309#define VMX_XDTR_INSINFO_II_SIDT 1 /**< Instruction ID: SIDT */
3310#define VMX_XDTR_INSINFO_II_LGDT 2 /**< Instruction ID: LGDT */
3311#define VMX_XDTR_INSINFO_II_LIDT 3 /**< Instruction ID: LIDT */
3312/** Bits 30 & 31 are undefined. */
3313#define VMX_BF_XDTR_INSINFO_UNDEF_30_31_SHIFT 30
3314#define VMX_BF_XDTR_INSINFO_UNDEF_30_31_MASK UINT32_C(0xc0000000)
3315RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_XDTR_INSINFO_, UINT32_C(0), UINT32_MAX,
3316 (SCALE, UNDEF_2_6, ADDR_SIZE, ZERO_10, OP_SIZE, UNDEF_12_14, SREG, INDEX_REG, HAS_INDEX_REG,
3317 BASE_REG, HAS_BASE_REG, INSTR_ID, UNDEF_30_31));
3318/** @} */
3319
3320
3321/** @name VMX_BF_YYTR_INSINFO_XXX - VMX_EXIT_TR_ACCESS instruction information.
3322 * Found in VMX_VMCS32_RO_EXIT_INSTR_INFO.
3323 * This is similar to VMX_BF_XDTR_INSINFO_XXX.
3324 * @{
3325 */
3326/** Address calculation scaling field (powers of two). */
3327#define VMX_BF_YYTR_INSINFO_SCALE_SHIFT 0
3328#define VMX_BF_YYTR_INSINFO_SCALE_MASK UINT32_C(0x00000003)
3329/** Bit 2 is undefined. */
3330#define VMX_BF_YYTR_INSINFO_UNDEF_2_SHIFT 2
3331#define VMX_BF_YYTR_INSINFO_UNDEF_2_MASK UINT32_C(0x00000004)
3332/** Register operand 1. Undefined if VMX_YYTR_INSINFO_HAS_REG1 is clear. */
3333#define VMX_BF_YYTR_INSINFO_REG1_SHIFT 3
3334#define VMX_BF_YYTR_INSINFO_REG1_MASK UINT32_C(0x00000078)
3335/** Address size, only 0(=16), 1(=32) and 2(=64) are defined.
3336 * @remarks anyone's guess why this is a 3 bit field... */
3337#define VMX_BF_YYTR_INSINFO_ADDR_SIZE_SHIFT 7
3338#define VMX_BF_YYTR_INSINFO_ADDR_SIZE_MASK UINT32_C(0x00000380)
3339/** Is VMX_YYTR_INSINFO_REG1_XXX valid (=1) or not (=0). */
3340#define VMX_BF_YYTR_INSINFO_HAS_REG1_SHIFT 10
3341#define VMX_BF_YYTR_INSINFO_HAS_REG1_MASK UINT32_C(0x00000400)
3342/** Bits 11 thru 14 are undefined. */
3343#define VMX_BF_YYTR_INSINFO_UNDEF_11_14_SHIFT 11
3344#define VMX_BF_YYTR_INSINFO_UNDEF_11_14_MASK UINT32_C(0x00007800)
3345/** Applicable segment register (X86_SREG_XXX values). */
3346#define VMX_BF_YYTR_INSINFO_SREG_SHIFT 15
3347#define VMX_BF_YYTR_INSINFO_SREG_MASK UINT32_C(0x00038000)
3348/** Index register (X86_GREG_XXX values). Undefined if HAS_INDEX_REG is clear. */
3349#define VMX_BF_YYTR_INSINFO_INDEX_REG_SHIFT 18
3350#define VMX_BF_YYTR_INSINFO_INDEX_REG_MASK UINT32_C(0x003c0000)
3351/** Is VMX_YYTR_INSINFO_INDEX_REG_XXX valid (=1) or not (=0). */
3352#define VMX_BF_YYTR_INSINFO_HAS_INDEX_REG_SHIFT 22
3353#define VMX_BF_YYTR_INSINFO_HAS_INDEX_REG_MASK UINT32_C(0x00400000)
3354/** Base register (X86_GREG_XXX values). Undefined if HAS_BASE_REG is clear. */
3355#define VMX_BF_YYTR_INSINFO_BASE_REG_SHIFT 23
3356#define VMX_BF_YYTR_INSINFO_BASE_REG_MASK UINT32_C(0x07800000)
3357/** Is VMX_YYTR_INSINFO_BASE_REG_XXX valid (=1) or not (=0). */
3358#define VMX_BF_YYTR_INSINFO_HAS_BASE_REG_SHIFT 27
3359#define VMX_BF_YYTR_INSINFO_HAS_BASE_REG_MASK UINT32_C(0x08000000)
3360/** The instruction identity (VMX_YYTR_INSINFO_II_XXX values) */
3361#define VMX_BF_YYTR_INSINFO_INSTR_ID_SHIFT 28
3362#define VMX_BF_YYTR_INSINFO_INSTR_ID_MASK UINT32_C(0x30000000)
3363#define VMX_YYTR_INSINFO_II_SLDT 0 /**< Instruction ID: SLDT */
3364#define VMX_YYTR_INSINFO_II_STR 1 /**< Instruction ID: STR */
3365#define VMX_YYTR_INSINFO_II_LLDT 2 /**< Instruction ID: LLDT */
3366#define VMX_YYTR_INSINFO_II_LTR 3 /**< Instruction ID: LTR */
3367/** Bits 30 & 31 are undefined. */
3368#define VMX_BF_YYTR_INSINFO_UNDEF_30_31_SHIFT 30
3369#define VMX_BF_YYTR_INSINFO_UNDEF_30_31_MASK UINT32_C(0xc0000000)
3370RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_YYTR_INSINFO_, UINT32_C(0), UINT32_MAX,
3371 (SCALE, UNDEF_2, REG1, ADDR_SIZE, HAS_REG1, UNDEF_11_14, SREG, INDEX_REG, HAS_INDEX_REG,
3372 BASE_REG, HAS_BASE_REG, INSTR_ID, UNDEF_30_31));
3373/** @} */
3374
3375
3376/** @name Format of Pending-Debug-Exceptions.
3377 * Bits 4-11, 13, 15 and 17-63 are reserved.
3378 * Similar to DR6 except bit 12 (breakpoint enabled) and bit 16 (RTM) are both
3379 * possibly valid here but not in DR6.
3380 * @{
3381 */
3382/** Hardware breakpoint 0 was met. */
3383#define VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BP0 RT_BIT_64(0)
3384/** Hardware breakpoint 1 was met. */
3385#define VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BP1 RT_BIT_64(1)
3386/** Hardware breakpoint 2 was met. */
3387#define VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BP2 RT_BIT_64(2)
3388/** Hardware breakpoint 3 was met. */
3389#define VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BP3 RT_BIT_64(3)
3390/** At least one data or IO breakpoint was hit. */
3391#define VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_EN_BP RT_BIT_64(12)
3392/** A debug exception would have been triggered by single-step execution mode. */
3393#define VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BS RT_BIT_64(14)
3394/** A debug exception occurred inside an RTM region. */
3395#define VMX_VMCS_GUEST_PENDING_DEBUG_RTM RT_BIT_64(16)
3396/** Mask of valid bits. */
3397#define VMX_VMCS_GUEST_PENDING_DEBUG_VALID_MASK ( VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BP0 \
3398 | VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BP1 \
3399 | VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BP2 \
3400 | VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BP3 \
3401 | VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_EN_BP \
3402 | VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BS \
3403 | VMX_VMCS_GUEST_PENDING_DEBUG_RTM)
3404#define VMX_VMCS_GUEST_PENDING_DEBUG_RTM_MASK ( VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_EN_BP \
3405 | VMX_VMCS_GUEST_PENDING_DEBUG_XCPT_BS \
3406 | VMX_VMCS_GUEST_PENDING_DEBUG_RTM)
3407/** Bit fields for Pending debug exceptions. */
3408#define VMX_BF_VMCS_PENDING_DBG_XCPT_BP0_SHIFT 0
3409#define VMX_BF_VMCS_PENDING_DBG_XCPT_BP0_MASK UINT64_C(0x0000000000000001)
3410#define VMX_BF_VMCS_PENDING_DBG_XCPT_BP1_SHIFT 1
3411#define VMX_BF_VMCS_PENDING_DBG_XCPT_BP1_MASK UINT64_C(0x0000000000000002)
3412#define VMX_BF_VMCS_PENDING_DBG_XCPT_BP2_SHIFT 2
3413#define VMX_BF_VMCS_PENDING_DBG_XCPT_BP2_MASK UINT64_C(0x0000000000000004)
3414#define VMX_BF_VMCS_PENDING_DBG_XCPT_BP3_SHIFT 3
3415#define VMX_BF_VMCS_PENDING_DBG_XCPT_BP3_MASK UINT64_C(0x0000000000000008)
3416#define VMX_BF_VMCS_PENDING_DBG_XCPT_RSVD_4_11_SHIFT 4
3417#define VMX_BF_VMCS_PENDING_DBG_XCPT_RSVD_4_11_MASK UINT64_C(0x0000000000000ff0)
3418#define VMX_BF_VMCS_PENDING_DBG_XCPT_EN_BP_SHIFT 12
3419#define VMX_BF_VMCS_PENDING_DBG_XCPT_EN_BP_MASK UINT64_C(0x0000000000001000)
3420#define VMX_BF_VMCS_PENDING_DBG_XCPT_RSVD_13_SHIFT 13
3421#define VMX_BF_VMCS_PENDING_DBG_XCPT_RSVD_13_MASK UINT64_C(0x0000000000002000)
3422#define VMX_BF_VMCS_PENDING_DBG_XCPT_BS_SHIFT 14
3423#define VMX_BF_VMCS_PENDING_DBG_XCPT_BS_MASK UINT64_C(0x0000000000004000)
3424#define VMX_BF_VMCS_PENDING_DBG_XCPT_RSVD_15_SHIFT 15
3425#define VMX_BF_VMCS_PENDING_DBG_XCPT_RSVD_15_MASK UINT64_C(0x0000000000008000)
3426#define VMX_BF_VMCS_PENDING_DBG_XCPT_RTM_SHIFT 16
3427#define VMX_BF_VMCS_PENDING_DBG_XCPT_RTM_MASK UINT64_C(0x0000000000010000)
3428#define VMX_BF_VMCS_PENDING_DBG_XCPT_RSVD_17_63_SHIFT 17
3429#define VMX_BF_VMCS_PENDING_DBG_XCPT_RSVD_17_63_MASK UINT64_C(0xfffffffffffe0000)
3430RT_BF_ASSERT_COMPILE_CHECKS(VMX_BF_VMCS_PENDING_DBG_XCPT_, UINT64_C(0), UINT64_MAX,
3431 (BP0, BP1, BP2, BP3, RSVD_4_11, EN_BP, RSVD_13, BS, RSVD_15, RTM, RSVD_17_63));
3432/** @} */
3433
3434
3435/** @defgroup grp_hm_vmx_virt VMX virtualization.
3436 * @{
3437 */
3438
3439/** @name Virtual VMX MSR - Miscellaneous data.
3440 * @{ */
3441/** Number of CR3-target values supported. */
3442#define VMX_V_CR3_TARGET_COUNT 4
3443/** Activity states supported. */
3444#define VMX_V_GUEST_ACTIVITY_STATE_MASK (VMX_VMCS_GUEST_ACTIVITY_HLT | VMX_VMCS_GUEST_ACTIVITY_SHUTDOWN)
3445/** VMX preemption-timer shift (Core i7-2600 taken as reference). */
3446#define VMX_V_PREEMPT_TIMER_SHIFT 5
3447/** Maximum number of MSRs in the auto-load/store MSR areas, (n+1) * 512. */
3448#define VMX_V_AUTOMSR_COUNT_MAX 0
3449/** SMM MSEG revision ID. */
3450#define VMX_V_MSEG_REV_ID 0
3451/** @} */
3452
3453/** @name VMX_V_VMCS_STATE_XXX - Virtual VMCS launch state.
3454 * @{ */
3455/** VMCS launch state clear. */
3456#define VMX_V_VMCS_LAUNCH_STATE_CLEAR RT_BIT(0)
3457/** VMCS launch state active. */
3458#define VMX_V_VMCS_LAUNCH_STATE_ACTIVE RT_BIT(1)
3459/** VMCS launch state current. */
3460#define VMX_V_VMCS_LAUNCH_STATE_CURRENT RT_BIT(2)
3461/** VMCS launch state launched. */
3462#define VMX_V_VMCS_LAUNCH_STATE_LAUNCHED RT_BIT(3)
3463/** The mask of valid VMCS launch states. */
3464#define VMX_V_VMCS_LAUNCH_STATE_MASK ( VMX_V_VMCS_LAUNCH_STATE_CLEAR \
3465 | VMX_V_VMCS_LAUNCH_STATE_ACTIVE \
3466 | VMX_V_VMCS_LAUNCH_STATE_CURRENT \
3467 | VMX_V_VMCS_LAUNCH_STATE_LAUNCHED)
3468/** @} */
3469
3470/** CR0 bits set here must always be set when in VMX operation. */
3471#define VMX_V_CR0_FIXED0 (X86_CR0_PE | X86_CR0_NE | X86_CR0_PG)
3472/** VMX_V_CR0_FIXED0 when unrestricted-guest execution is supported for the guest. */
3473#define VMX_V_CR0_FIXED0_UX (VMX_V_CR0_FIXED0 & ~(X86_CR0_PE | X86_CR0_PG))
3474/** CR4 bits set here must always be set when in VMX operation. */
3475#define VMX_V_CR4_FIXED0 (X86_CR4_VMXE)
3476
3477/** Virtual VMCS revision ID. Bump this arbitarily chosen identifier if incompatible
3478 * changes to the layout of VMXVVMCS is done. Bit 31 MBZ. */
3479#define VMX_V_VMCS_REVISION_ID UINT32_C(0x40000001)
3480AssertCompile(!(VMX_V_VMCS_REVISION_ID & RT_BIT(31)));
3481
3482/** The size of the virtual VMCS region (we use the maximum allowed size to avoid
3483 * complications when teleporation may be implemented). */
3484#define VMX_V_VMCS_SIZE X86_PAGE_4K_SIZE
3485/** The size of the virtual VMCS region (in pages). */
3486#define VMX_V_VMCS_PAGES 1
3487
3488/** The size of the virtual shadow VMCS region. */
3489#define VMX_V_SHADOW_VMCS_SIZE VMX_V_VMCS_SIZE
3490/** The size of the virtual shadow VMCS region (in pages). */
3491#define VMX_V_SHADOW_VMCS_PAGES VMX_V_VMCS_PAGES
3492
3493/** The size of the Virtual-APIC page (in bytes). */
3494#define VMX_V_VIRT_APIC_SIZE X86_PAGE_4K_SIZE
3495/** The size of the Virtual-APIC page (in pages). */
3496#define VMX_V_VIRT_APIC_PAGES 1
3497
3498/** The size of the VMREAD/VMWRITE bitmap (in bytes). */
3499#define VMX_V_VMREAD_VMWRITE_BITMAP_SIZE X86_PAGE_4K_SIZE
3500/** The size of the VMREAD/VMWRITE-bitmap (in pages). */
3501#define VMX_V_VMREAD_VMWRITE_BITMAP_PAGES 1
3502
3503/** The size of the MSR bitmap (in bytes). */
3504#define VMX_V_MSR_BITMAP_SIZE X86_PAGE_4K_SIZE
3505/** The size of the MSR bitmap (in pages). */
3506#define VMX_V_MSR_BITMAP_PAGES 1
3507
3508/** The size of I/O bitmap A (in bytes). */
3509#define VMX_V_IO_BITMAP_A_SIZE X86_PAGE_4K_SIZE
3510/** The size of I/O bitmap A (in pages). */
3511#define VMX_V_IO_BITMAP_A_PAGES 1
3512
3513/** The size of I/O bitmap B (in bytes). */
3514#define VMX_V_IO_BITMAP_B_SIZE X86_PAGE_4K_SIZE
3515/** The size of I/O bitmap B (in pages). */
3516#define VMX_V_IO_BITMAP_B_PAGES 1
3517
3518/** The size of the auto-load/store MSR area (in bytes). */
3519#define VMX_V_AUTOMSR_AREA_SIZE ((512 * (VMX_V_AUTOMSR_COUNT_MAX + 1)) * sizeof(VMXAUTOMSR))
3520/* Assert that the size is page aligned or adjust the VMX_V_AUTOMSR_AREA_PAGES macro below. */
3521AssertCompile(RT_ALIGN_Z(VMX_V_AUTOMSR_AREA_SIZE, X86_PAGE_4K_SIZE) == VMX_V_AUTOMSR_AREA_SIZE);
3522/** The size of the auto-load/store MSR area (in pages). */
3523#define VMX_V_AUTOMSR_AREA_PAGES ((VMX_V_AUTOMSR_AREA_SIZE) >> X86_PAGE_4K_SHIFT)
3524
3525/** The highest index value used for supported virtual VMCS field encoding. */
3526#define VMX_V_VMCS_MAX_INDEX RT_BF_GET(VMX_VMCS64_CTRL_TSC_MULTIPLIER_HIGH, VMX_BF_VMCSFIELD_INDEX)
3527
3528/**
3529 * Virtual VM-exit information.
3530 *
3531 * This is a convenience structure that bundles some VM-exit information related
3532 * fields together.
3533 */
3534typedef struct
3535{
3536 /** The VM-exit reason. */
3537 uint32_t uReason;
3538 /** The VM-exit instruction length. */
3539 uint32_t cbInstr;
3540 /** The VM-exit instruction information. */
3541 VMXEXITINSTRINFO InstrInfo;
3542 /** The VM-exit instruction ID. */
3543 VMXINSTRID uInstrId;
3544
3545 /** The Exit qualification field. */
3546 uint64_t u64Qual;
3547 /** The Guest-linear address field. */
3548 uint64_t u64GuestLinearAddr;
3549 /** The Guest-physical address field. */
3550 uint64_t u64GuestPhysAddr;
3551 /** The guest pending-debug exceptions. */
3552 uint64_t u64GuestPendingDbgXcpts;
3553 /** The effective guest-linear address if @a InstrInfo indicates a memory-based
3554 * instruction VM-exit. */
3555 RTGCPTR GCPtrEffAddr;
3556} VMXVEXITINFO;
3557/** Pointer to the VMXVEXITINFO struct. */
3558typedef VMXVEXITINFO *PVMXVEXITINFO;
3559/** Pointer to a const VMXVEXITINFO struct. */
3560typedef const VMXVEXITINFO *PCVMXVEXITINFO;
3561AssertCompileMemberAlignment(VMXVEXITINFO, u64Qual, 8);
3562
3563/**
3564 * Virtual VM-exit information for events.
3565 *
3566 * This is a convenience structure that bundles some event-based VM-exit information
3567 * related fields together that are not included in VMXVEXITINFO.
3568 *
3569 * This is kept as a separate structure and not included in VMXVEXITINFO, to make it
3570 * easier to distinguish that IEM VM-exit handlers will set one or more of the
3571 * following fields in the virtual VMCS. Including it in the VMXVEXITINFO will not
3572 * make it ovbious which fields may get set (or cleared).
3573 */
3574typedef struct
3575{
3576 /** VM-exit interruption information. */
3577 uint32_t uExitIntInfo;
3578 /** VM-exit interruption error code. */
3579 uint32_t uExitIntErrCode;
3580 /** IDT-vectoring information. */
3581 uint32_t uIdtVectoringInfo;
3582 /** IDT-vectoring error code. */
3583 uint32_t uIdtVectoringErrCode;
3584} VMXVEXITEVENTINFO;
3585/** Pointer to the VMXVEXITINFO2 struct. */
3586typedef VMXVEXITEVENTINFO *PVMXVEXITEVENTINFO;
3587/** Pointer to a const VMXVEXITINFO2 struct. */
3588typedef const VMXVEXITEVENTINFO *PCVMXVEXITEVENTINFO;
3589
3590/**
3591 * Virtual VMCS.
3592 *
3593 * This is our custom format. Relevant fields from this VMCS will be merged into the
3594 * actual/shadow VMCS when we execute nested-guest code using hardware-assisted
3595 * VMX.
3596 *
3597 * The first 8 bytes must be in accordance with the Intel VT-x spec.
3598 * See Intel spec. 24.2 "Format of the VMCS Region".
3599 *
3600 * The offset and size of the VMCS state field (@a fVmcsState) is also fixed (not by
3601 * the Intel spec. but for our own requirements) as we use it to offset into guest
3602 * memory.
3603 *
3604 * Although the guest is supposed to access the VMCS only through the execution of
3605 * VMX instructions (VMREAD, VMWRITE etc.), since the VMCS may reside in guest
3606 * memory (e.g, active but not current VMCS), for saved-states compatibility, and
3607 * for teleportation purposes, any newly added fields should be added to the
3608 * appropriate reserved sections or at the end of the structure.
3609 *
3610 * We always treat natural-width fields as 64-bit in our implementation since
3611 * it's easier, allows for teleporation in the future and does not affect guest
3612 * software.
3613 *
3614 * @note Any fields that are added or modified here, make sure to update the
3615 * corresponding fields in IEM (g_aoffVmcsMap), the corresponding saved
3616 * state structure in CPUM (g_aVmxHwvirtVmcs) and bump the SSM version.
3617 * Also consider updating CPUMIsGuestVmxVmcsFieldValid.
3618 */
3619#pragma pack(1)
3620typedef struct
3621{
3622 /** @name Header.
3623 * @{
3624 */
3625 VMXVMCSREVID u32VmcsRevId; /**< 0x000 - VMX VMCS revision identifier. */
3626 VMXABORT enmVmxAbort; /**< 0x004 - VMX-abort indicator. */
3627 uint8_t fVmcsState; /**< 0x008 - VMCS launch state, see VMX_V_VMCS_LAUNCH_STATE_XXX. */
3628 uint8_t au8Padding0[3]; /**< 0x009 - Reserved for future. */
3629 uint32_t au32Reserved0[12]; /**< 0x00c - Reserved for future. */
3630 /** @} */
3631
3632 /** @name Read-only fields.
3633 * @{ */
3634 /** 16-bit fields. */
3635 uint16_t u16Reserved0[14]; /**< 0x03c - Reserved for future. */
3636
3637 /** 32-bit fields. */
3638 uint32_t u32RoVmInstrError; /**< 0x058 - VM-instruction error. */
3639 uint32_t u32RoExitReason; /**< 0x05c - VM-exit reason. */
3640 uint32_t u32RoExitIntInfo; /**< 0x060 - VM-exit interruption information. */
3641 uint32_t u32RoExitIntErrCode; /**< 0x064 - VM-exit interruption error code. */
3642 uint32_t u32RoIdtVectoringInfo; /**< 0x068 - IDT-vectoring information. */
3643 uint32_t u32RoIdtVectoringErrCode; /**< 0x06c - IDT-vectoring error code. */
3644 uint32_t u32RoExitInstrLen; /**< 0x070 - VM-exit instruction length. */
3645 uint32_t u32RoExitInstrInfo; /**< 0x074 - VM-exit instruction information. */
3646 uint32_t au32RoReserved2[16]; /**< 0x078 - Reserved for future. */
3647
3648 /** 64-bit fields. */
3649 RTUINT64U u64RoGuestPhysAddr; /**< 0x0b8 - Guest-physical address. */
3650 RTUINT64U au64Reserved1[8]; /**< 0x0c0 - Reserved for future. */
3651
3652 /** Natural-width fields. */
3653 RTUINT64U u64RoExitQual; /**< 0x100 - Exit qualification. */
3654 RTUINT64U u64RoIoRcx; /**< 0x108 - I/O RCX. */
3655 RTUINT64U u64RoIoRsi; /**< 0x110 - I/O RSI. */
3656 RTUINT64U u64RoIoRdi; /**< 0x118 - I/O RDI. */
3657 RTUINT64U u64RoIoRip; /**< 0x120 - I/O RIP. */
3658 RTUINT64U u64RoGuestLinearAddr; /**< 0x128 - Guest-linear address. */
3659 RTUINT64U au64Reserved5[16]; /**< 0x130 - Reserved for future. */
3660 /** @} */
3661
3662 /** @name Control fields.
3663 * @{ */
3664 /** 16-bit fields. */
3665 uint16_t u16Vpid; /**< 0x1b0 - Virtual processor ID. */
3666 uint16_t u16PostIntNotifyVector; /**< 0x1b2 - Posted interrupt notify vector. */
3667 uint16_t u16EptpIndex; /**< 0x1b4 - EPTP index. */
3668 uint16_t au16Reserved0[13]; /**< 0x1b6 - Reserved for future. */
3669
3670 /** 32-bit fields. */
3671 uint32_t u32PinCtls; /**< 0x1d0 - Pin-based VM-execution controls. */
3672 uint32_t u32ProcCtls; /**< 0x1d4 - Processor-based VM-execution controls. */
3673 uint32_t u32XcptBitmap; /**< 0x1d8 - Exception bitmap. */
3674 uint32_t u32XcptPFMask; /**< 0x1dc - Page-fault exception error mask. */
3675 uint32_t u32XcptPFMatch; /**< 0x1e0 - Page-fault exception error match. */
3676 uint32_t u32Cr3TargetCount; /**< 0x1e4 - CR3-target count. */
3677 uint32_t u32ExitCtls; /**< 0x1e8 - VM-exit controls. */
3678 uint32_t u32ExitMsrStoreCount; /**< 0x1ec - VM-exit MSR store count. */
3679 uint32_t u32ExitMsrLoadCount; /**< 0x1f0 - VM-exit MSR load count. */
3680 uint32_t u32EntryCtls; /**< 0x1f4 - VM-entry controls. */
3681 uint32_t u32EntryMsrLoadCount; /**< 0x1f8 - VM-entry MSR load count. */
3682 uint32_t u32EntryIntInfo; /**< 0x1fc - VM-entry interruption information. */
3683 uint32_t u32EntryXcptErrCode; /**< 0x200 - VM-entry exception error code. */
3684 uint32_t u32EntryInstrLen; /**< 0x204 - VM-entry instruction length. */
3685 uint32_t u32TprThreshold; /**< 0x208 - TPR-threshold. */
3686 uint32_t u32ProcCtls2; /**< 0x20c - Secondary-processor based VM-execution controls. */
3687 uint32_t u32PleGap; /**< 0x210 - Pause-loop exiting Gap. */
3688 uint32_t u32PleWindow; /**< 0x214 - Pause-loop exiting Window. */
3689 uint32_t au32Reserved1[16]; /**< 0x218 - Reserved for future. */
3690
3691 /** 64-bit fields. */
3692 RTUINT64U u64AddrIoBitmapA; /**< 0x258 - I/O bitmap A address. */
3693 RTUINT64U u64AddrIoBitmapB; /**< 0x260 - I/O bitmap B address. */
3694 RTUINT64U u64AddrMsrBitmap; /**< 0x268 - MSR bitmap address. */
3695 RTUINT64U u64AddrExitMsrStore; /**< 0x270 - VM-exit MSR-store area address. */
3696 RTUINT64U u64AddrExitMsrLoad; /**< 0x278 - VM-exit MSR-load area address. */
3697 RTUINT64U u64AddrEntryMsrLoad; /**< 0x280 - VM-entry MSR-load area address. */
3698 RTUINT64U u64ExecVmcsPtr; /**< 0x288 - Executive-VMCS pointer. */
3699 RTUINT64U u64AddrPml; /**< 0x290 - PML address. */
3700 RTUINT64U u64TscOffset; /**< 0x298 - TSC offset. */
3701 RTUINT64U u64AddrVirtApic; /**< 0x2a0 - Virtual-APIC address. */
3702 RTUINT64U u64AddrApicAccess; /**< 0x2a8 - APIC-access address. */
3703 RTUINT64U u64AddrPostedIntDesc; /**< 0x2b0 - Posted-interrupt descriptor address. */
3704 RTUINT64U u64VmFuncCtls; /**< 0x2b8 - VM-functions control. */
3705 RTUINT64U u64EptpPtr; /**< 0x2c0 - EPTP pointer. */
3706 RTUINT64U u64EoiExitBitmap0; /**< 0x2c8 - EOI-exit bitmap 0. */
3707 RTUINT64U u64EoiExitBitmap1; /**< 0x2d0 - EOI-exit bitmap 1. */
3708 RTUINT64U u64EoiExitBitmap2; /**< 0x2d8 - EOI-exit bitmap 2. */
3709 RTUINT64U u64EoiExitBitmap3; /**< 0x2e0 - EOI-exit bitmap 3. */
3710 RTUINT64U u64AddrEptpList; /**< 0x2e8 - EPTP-list address. */
3711 RTUINT64U u64AddrVmreadBitmap; /**< 0x2f0 - VMREAD-bitmap address. */
3712 RTUINT64U u64AddrVmwriteBitmap; /**< 0x2f8 - VMWRITE-bitmap address. */
3713 RTUINT64U u64AddrXcptVeInfo; /**< 0x300 - Virtualization-exception information address. */
3714 RTUINT64U u64XssBitmap; /**< 0x308 - XSS-exiting bitmap. */
3715 RTUINT64U u64EnclsBitmap; /**< 0x310 - ENCLS-exiting bitmap address. */
3716 RTUINT64U u64SpptPtr; /**< 0x318 - Sub-page-permission-table pointer. */
3717 RTUINT64U u64TscMultiplier; /**< 0x320 - TSC multiplier. */
3718 RTUINT64U au64Reserved0[15]; /**< 0x328 - Reserved for future. */
3719
3720 /** Natural-width fields. */
3721 RTUINT64U u64Cr0Mask; /**< 0x3a0 - CR0 guest/host Mask. */
3722 RTUINT64U u64Cr4Mask; /**< 0x3a8 - CR4 guest/host Mask. */
3723 RTUINT64U u64Cr0ReadShadow; /**< 0x3b0 - CR0 read shadow. */
3724 RTUINT64U u64Cr4ReadShadow; /**< 0x3b8 - CR4 read shadow. */
3725 RTUINT64U u64Cr3Target0; /**< 0x3c0 - CR3-target value 0. */
3726 RTUINT64U u64Cr3Target1; /**< 0x3c8 - CR3-target value 1. */
3727 RTUINT64U u64Cr3Target2; /**< 0x3d0 - CR3-target value 2. */
3728 RTUINT64U u64Cr3Target3; /**< 0x3d8 - CR3-target value 3. */
3729 RTUINT64U au64Reserved4[32]; /**< 0x3e0 - Reserved for future. */
3730 /** @} */
3731
3732 /** @name Host-state fields.
3733 * @{ */
3734 /** 16-bit fields. */
3735 /* Order of [Es..Gs] fields below must match [X86_SREG_ES..X86_SREG_GS]. */
3736 RTSEL HostEs; /**< 0x4e0 - Host ES selector. */
3737 RTSEL HostCs; /**< 0x4e2 - Host CS selector. */
3738 RTSEL HostSs; /**< 0x4e4 - Host SS selector. */
3739 RTSEL HostDs; /**< 0x4e6 - Host DS selector. */
3740 RTSEL HostFs; /**< 0x4e8 - Host FS selector. */
3741 RTSEL HostGs; /**< 0x4ea - Host GS selector. */
3742 RTSEL HostTr; /**< 0x4ec - Host TR selector. */
3743 uint16_t au16Reserved2[13]; /**< 0x4ee - Reserved for future. */
3744
3745 /** 32-bit fields. */
3746 uint32_t u32HostSysenterCs; /**< 0x508 - Host SYSENTER CS. */
3747 uint32_t au32Reserved4[11]; /**< 0x50c - Reserved for future. */
3748
3749 /** 64-bit fields. */
3750 RTUINT64U u64HostPatMsr; /**< 0x538 - Host PAT MSR. */
3751 RTUINT64U u64HostEferMsr; /**< 0x540 - Host EFER MSR. */
3752 RTUINT64U u64HostPerfGlobalCtlMsr; /**< 0x548 - Host global performance-control MSR. */
3753 RTUINT64U au64Reserved3[16]; /**< 0x550 - Reserved for future. */
3754
3755 /** Natural-width fields. */
3756 RTUINT64U u64HostCr0; /**< 0x5d0 - Host CR0. */
3757 RTUINT64U u64HostCr3; /**< 0x5d8 - Host CR3. */
3758 RTUINT64U u64HostCr4; /**< 0x5e0 - Host CR4. */
3759 RTUINT64U u64HostFsBase; /**< 0x5e8 - Host FS base. */
3760 RTUINT64U u64HostGsBase; /**< 0x5f0 - Host GS base. */
3761 RTUINT64U u64HostTrBase; /**< 0x5f8 - Host TR base. */
3762 RTUINT64U u64HostGdtrBase; /**< 0x600 - Host GDTR base. */
3763 RTUINT64U u64HostIdtrBase; /**< 0x608 - Host IDTR base. */
3764 RTUINT64U u64HostSysenterEsp; /**< 0x610 - Host SYSENTER ESP base. */
3765 RTUINT64U u64HostSysenterEip; /**< 0x618 - Host SYSENTER ESP base. */
3766 RTUINT64U u64HostRsp; /**< 0x620 - Host RSP. */
3767 RTUINT64U u64HostRip; /**< 0x628 - Host RIP. */
3768 RTUINT64U au64Reserved7[32]; /**< 0x630 - Reserved for future. */
3769 /** @} */
3770
3771 /** @name Guest-state fields.
3772 * @{ */
3773 /** 16-bit fields. */
3774 /* Order of [Es..Gs] fields below must match [X86_SREG_ES..X86_SREG_GS]. */
3775 RTSEL GuestEs; /**< 0x730 - Guest ES selector. */
3776 RTSEL GuestCs; /**< 0x732 - Guest ES selector. */
3777 RTSEL GuestSs; /**< 0x734 - Guest ES selector. */
3778 RTSEL GuestDs; /**< 0x736 - Guest ES selector. */
3779 RTSEL GuestFs; /**< 0x738 - Guest ES selector. */
3780 RTSEL GuestGs; /**< 0x73a - Guest ES selector. */
3781 RTSEL GuestLdtr; /**< 0x73c - Guest LDTR selector. */
3782 RTSEL GuestTr; /**< 0x73e - Guest TR selector. */
3783 uint16_t u16GuestIntStatus; /**< 0x740 - Guest interrupt status (virtual-interrupt delivery). */
3784 uint16_t u16PmlIndex; /**< 0x742 - PML index. */
3785 uint16_t au16Reserved1[14]; /**< 0x744 - Reserved for future. */
3786
3787 /** 32-bit fields. */
3788 /* Order of [Es..Gs] fields below must match [X86_SREG_ES..X86_SREG_GS]. */
3789 uint32_t u32GuestEsLimit; /**< 0x760 - Guest ES limit. */
3790 uint32_t u32GuestCsLimit; /**< 0x764 - Guest CS limit. */
3791 uint32_t u32GuestSsLimit; /**< 0x768 - Guest SS limit. */
3792 uint32_t u32GuestDsLimit; /**< 0x76c - Guest DS limit. */
3793 uint32_t u32GuestFsLimit; /**< 0x770 - Guest FS limit. */
3794 uint32_t u32GuestGsLimit; /**< 0x774 - Guest GS limit. */
3795 uint32_t u32GuestLdtrLimit; /**< 0x778 - Guest LDTR limit. */
3796 uint32_t u32GuestTrLimit; /**< 0x77c - Guest TR limit. */
3797 uint32_t u32GuestGdtrLimit; /**< 0x780 - Guest GDTR limit. */
3798 uint32_t u32GuestIdtrLimit; /**< 0x784 - Guest IDTR limit. */
3799 uint32_t u32GuestEsAttr; /**< 0x788 - Guest ES attributes. */
3800 uint32_t u32GuestCsAttr; /**< 0x78c - Guest CS attributes. */
3801 uint32_t u32GuestSsAttr; /**< 0x790 - Guest SS attributes. */
3802 uint32_t u32GuestDsAttr; /**< 0x794 - Guest DS attributes. */
3803 uint32_t u32GuestFsAttr; /**< 0x798 - Guest FS attributes. */
3804 uint32_t u32GuestGsAttr; /**< 0x79c - Guest GS attributes. */
3805 uint32_t u32GuestLdtrAttr; /**< 0x7a0 - Guest LDTR attributes. */
3806 uint32_t u32GuestTrAttr; /**< 0x7a4 - Guest TR attributes. */
3807 uint32_t u32GuestIntrState; /**< 0x7a8 - Guest interruptibility state. */
3808 uint32_t u32GuestActivityState; /**< 0x7ac - Guest activity state. */
3809 uint32_t u32GuestSmBase; /**< 0x7b0 - Guest SMBASE. */
3810 uint32_t u32GuestSysenterCS; /**< 0x7b4 - Guest SYSENTER CS. */
3811 uint32_t u32PreemptTimer; /**< 0x7b8 - Preemption timer value. */
3812 uint32_t au32Reserved3[11]; /**< 0x7bc - Reserved for future. */
3813
3814 /** 64-bit fields. */
3815 RTUINT64U u64VmcsLinkPtr; /**< 0x7e8 - VMCS link pointer. */
3816 RTUINT64U u64GuestDebugCtlMsr; /**< 0x7f0 - Guest debug-control MSR. */
3817 RTUINT64U u64GuestPatMsr; /**< 0x7f8 - Guest PAT MSR. */
3818 RTUINT64U u64GuestEferMsr; /**< 0x800 - Guest EFER MSR. */
3819 RTUINT64U u64GuestPerfGlobalCtlMsr; /**< 0x808 - Guest global performance-control MSR. */
3820 RTUINT64U u64GuestPdpte0; /**< 0x810 - Guest PDPTE 0. */
3821 RTUINT64U u64GuestPdpte1; /**< 0x818 - Guest PDPTE 0. */
3822 RTUINT64U u64GuestPdpte2; /**< 0x820 - Guest PDPTE 1. */
3823 RTUINT64U u64GuestPdpte3; /**< 0x828 - Guest PDPTE 2. */
3824 RTUINT64U u64GuestBndcfgsMsr; /**< 0x830 - Guest Bounds config MPX MSR (Intel Memory Protection Extensions). */
3825 RTUINT64U u64GuestRtitCtlMsr; /**< 0x838 - Guest RTIT control MSR (Intel Real Time Instruction Trace). */
3826 RTUINT64U au64Reserved2[32]; /**< 0x840 - Reserved for future. */
3827
3828 /** Natural-width fields. */
3829 RTUINT64U u64GuestCr0; /**< 0x940 - Guest CR0. */
3830 RTUINT64U u64GuestCr3; /**< 0x948 - Guest CR3. */
3831 RTUINT64U u64GuestCr4; /**< 0x950 - Guest CR4. */
3832 RTUINT64U u64GuestEsBase; /**< 0x958 - Guest ES base. */
3833 RTUINT64U u64GuestCsBase; /**< 0x960 - Guest CS base. */
3834 RTUINT64U u64GuestSsBase; /**< 0x968 - Guest SS base. */
3835 RTUINT64U u64GuestDsBase; /**< 0x970 - Guest DS base. */
3836 RTUINT64U u64GuestFsBase; /**< 0x978 - Guest FS base. */
3837 RTUINT64U u64GuestGsBase; /**< 0x980 - Guest GS base. */
3838 RTUINT64U u64GuestLdtrBase; /**< 0x988 - Guest LDTR base. */
3839 RTUINT64U u64GuestTrBase; /**< 0x990 - Guest TR base. */
3840 RTUINT64U u64GuestGdtrBase; /**< 0x998 - Guest GDTR base. */
3841 RTUINT64U u64GuestIdtrBase; /**< 0x9a0 - Guest IDTR base. */
3842 RTUINT64U u64GuestDr7; /**< 0x9a8 - Guest DR7. */
3843 RTUINT64U u64GuestRsp; /**< 0x9b0 - Guest RSP. */
3844 RTUINT64U u64GuestRip; /**< 0x9b8 - Guest RIP. */
3845 RTUINT64U u64GuestRFlags; /**< 0x9c0 - Guest RFLAGS. */
3846 RTUINT64U u64GuestPendingDbgXcpts; /**< 0x9c8 - Guest pending debug exceptions. */
3847 RTUINT64U u64GuestSysenterEsp; /**< 0x9d0 - Guest SYSENTER ESP. */
3848 RTUINT64U u64GuestSysenterEip; /**< 0x9d8 - Guest SYSENTER EIP. */
3849 RTUINT64U au64Reserved6[32]; /**< 0x9e0 - Reserved for future. */
3850 /** @} */
3851
3852 /** 0xae0 - Padding / reserved for future use. */
3853 uint8_t abPadding[X86_PAGE_4K_SIZE - 0xae0];
3854} VMXVVMCS;
3855#pragma pack()
3856/** Pointer to the VMXVVMCS struct. */
3857typedef VMXVVMCS *PVMXVVMCS;
3858/** Pointer to a const VMXVVMCS struct. */
3859typedef const VMXVVMCS *PCVMXVVMCS;
3860AssertCompileSize(VMXVVMCS, X86_PAGE_4K_SIZE);
3861AssertCompileMemberSize(VMXVVMCS, fVmcsState, sizeof(uint8_t));
3862AssertCompileMemberOffset(VMXVVMCS, enmVmxAbort, 0x004);
3863AssertCompileMemberOffset(VMXVVMCS, fVmcsState, 0x008);
3864AssertCompileMemberOffset(VMXVVMCS, u32RoVmInstrError, 0x058);
3865AssertCompileMemberOffset(VMXVVMCS, u64RoGuestPhysAddr, 0x0b8);
3866AssertCompileMemberOffset(VMXVVMCS, u64RoExitQual, 0x100);
3867AssertCompileMemberOffset(VMXVVMCS, u16Vpid, 0x1b0);
3868AssertCompileMemberOffset(VMXVVMCS, u32PinCtls, 0x1d0);
3869AssertCompileMemberOffset(VMXVVMCS, u64AddrIoBitmapA, 0x258);
3870AssertCompileMemberOffset(VMXVVMCS, u64Cr0Mask, 0x3a0);
3871AssertCompileMemberOffset(VMXVVMCS, HostEs, 0x4e0);
3872AssertCompileMemberOffset(VMXVVMCS, u32HostSysenterCs, 0x508);
3873AssertCompileMemberOffset(VMXVVMCS, u64HostPatMsr, 0x538);
3874AssertCompileMemberOffset(VMXVVMCS, u64HostCr0, 0x5d0);
3875AssertCompileMemberOffset(VMXVVMCS, GuestEs, 0x730);
3876AssertCompileMemberOffset(VMXVVMCS, u32GuestEsLimit, 0x760);
3877AssertCompileMemberOffset(VMXVVMCS, u64VmcsLinkPtr, 0x7e8);
3878AssertCompileMemberOffset(VMXVVMCS, u64GuestCr0, 0x940);
3879
3880/**
3881 * Virtual VMX-instruction and VM-exit diagnostics.
3882 *
3883 * These are not the same as VM instruction errors that are enumerated in the Intel
3884 * spec. These are purely internal, fine-grained definitions used for diagnostic
3885 * purposes and are not reported to guest software under the VM-instruction error
3886 * field in its VMCS.
3887 *
3888 * @note Members of this enum are used as array indices, so no gaps are allowed.
3889 * Please update g_apszVmxVDiagDesc when you add new fields to this enum.
3890 */
3891typedef enum
3892{
3893 /* Internal processing errors. */
3894 kVmxVDiag_None = 0,
3895 kVmxVDiag_Ipe_1,
3896 kVmxVDiag_Ipe_2,
3897 kVmxVDiag_Ipe_3,
3898 kVmxVDiag_Ipe_4,
3899 kVmxVDiag_Ipe_5,
3900 kVmxVDiag_Ipe_6,
3901 kVmxVDiag_Ipe_7,
3902 kVmxVDiag_Ipe_8,
3903 kVmxVDiag_Ipe_9,
3904 kVmxVDiag_Ipe_10,
3905 kVmxVDiag_Ipe_11,
3906 kVmxVDiag_Ipe_12,
3907 kVmxVDiag_Ipe_13,
3908 kVmxVDiag_Ipe_14,
3909 kVmxVDiag_Ipe_15,
3910 kVmxVDiag_Ipe_16,
3911 /* VMXON. */
3912 kVmxVDiag_Vmxon_A20M,
3913 kVmxVDiag_Vmxon_Cpl,
3914 kVmxVDiag_Vmxon_Cr0Fixed0,
3915 kVmxVDiag_Vmxon_Cr0Fixed1,
3916 kVmxVDiag_Vmxon_Cr4Fixed0,
3917 kVmxVDiag_Vmxon_Cr4Fixed1,
3918 kVmxVDiag_Vmxon_Intercept,
3919 kVmxVDiag_Vmxon_LongModeCS,
3920 kVmxVDiag_Vmxon_MsrFeatCtl,
3921 kVmxVDiag_Vmxon_PtrAbnormal,
3922 kVmxVDiag_Vmxon_PtrAlign,
3923 kVmxVDiag_Vmxon_PtrMap,
3924 kVmxVDiag_Vmxon_PtrReadPhys,
3925 kVmxVDiag_Vmxon_PtrWidth,
3926 kVmxVDiag_Vmxon_RealOrV86Mode,
3927 kVmxVDiag_Vmxon_ShadowVmcs,
3928 kVmxVDiag_Vmxon_VmxAlreadyRoot,
3929 kVmxVDiag_Vmxon_Vmxe,
3930 kVmxVDiag_Vmxon_VmcsRevId,
3931 kVmxVDiag_Vmxon_VmxRootCpl,
3932 /* VMXOFF. */
3933 kVmxVDiag_Vmxoff_Cpl,
3934 kVmxVDiag_Vmxoff_Intercept,
3935 kVmxVDiag_Vmxoff_LongModeCS,
3936 kVmxVDiag_Vmxoff_RealOrV86Mode,
3937 kVmxVDiag_Vmxoff_Vmxe,
3938 kVmxVDiag_Vmxoff_VmxRoot,
3939 /* VMPTRLD. */
3940 kVmxVDiag_Vmptrld_Cpl,
3941 kVmxVDiag_Vmptrld_LongModeCS,
3942 kVmxVDiag_Vmptrld_PtrAbnormal,
3943 kVmxVDiag_Vmptrld_PtrAlign,
3944 kVmxVDiag_Vmptrld_PtrMap,
3945 kVmxVDiag_Vmptrld_PtrReadPhys,
3946 kVmxVDiag_Vmptrld_PtrVmxon,
3947 kVmxVDiag_Vmptrld_PtrWidth,
3948 kVmxVDiag_Vmptrld_RealOrV86Mode,
3949 kVmxVDiag_Vmptrld_RevPtrReadPhys,
3950 kVmxVDiag_Vmptrld_ShadowVmcs,
3951 kVmxVDiag_Vmptrld_VmcsRevId,
3952 kVmxVDiag_Vmptrld_VmxRoot,
3953 /* VMPTRST. */
3954 kVmxVDiag_Vmptrst_Cpl,
3955 kVmxVDiag_Vmptrst_LongModeCS,
3956 kVmxVDiag_Vmptrst_PtrMap,
3957 kVmxVDiag_Vmptrst_RealOrV86Mode,
3958 kVmxVDiag_Vmptrst_VmxRoot,
3959 /* VMCLEAR. */
3960 kVmxVDiag_Vmclear_Cpl,
3961 kVmxVDiag_Vmclear_LongModeCS,
3962 kVmxVDiag_Vmclear_PtrAbnormal,
3963 kVmxVDiag_Vmclear_PtrAlign,
3964 kVmxVDiag_Vmclear_PtrMap,
3965 kVmxVDiag_Vmclear_PtrReadPhys,
3966 kVmxVDiag_Vmclear_PtrVmxon,
3967 kVmxVDiag_Vmclear_PtrWidth,
3968 kVmxVDiag_Vmclear_RealOrV86Mode,
3969 kVmxVDiag_Vmclear_VmxRoot,
3970 /* VMWRITE. */
3971 kVmxVDiag_Vmwrite_Cpl,
3972 kVmxVDiag_Vmwrite_FieldInvalid,
3973 kVmxVDiag_Vmwrite_FieldRo,
3974 kVmxVDiag_Vmwrite_LinkPtrInvalid,
3975 kVmxVDiag_Vmwrite_LongModeCS,
3976 kVmxVDiag_Vmwrite_PtrInvalid,
3977 kVmxVDiag_Vmwrite_PtrMap,
3978 kVmxVDiag_Vmwrite_RealOrV86Mode,
3979 kVmxVDiag_Vmwrite_VmxRoot,
3980 /* VMREAD. */
3981 kVmxVDiag_Vmread_Cpl,
3982 kVmxVDiag_Vmread_FieldInvalid,
3983 kVmxVDiag_Vmread_LinkPtrInvalid,
3984 kVmxVDiag_Vmread_LongModeCS,
3985 kVmxVDiag_Vmread_PtrInvalid,
3986 kVmxVDiag_Vmread_PtrMap,
3987 kVmxVDiag_Vmread_RealOrV86Mode,
3988 kVmxVDiag_Vmread_VmxRoot,
3989 /* INVVPID. */
3990 kVmxVDiag_Invvpid_Cpl,
3991 kVmxVDiag_Invvpid_DescRsvd,
3992 kVmxVDiag_Invvpid_LongModeCS,
3993 kVmxVDiag_Invvpid_RealOrV86Mode,
3994 kVmxVDiag_Invvpid_TypeInvalid,
3995 kVmxVDiag_Invvpid_Type0InvalidAddr,
3996 kVmxVDiag_Invvpid_Type0InvalidVpid,
3997 kVmxVDiag_Invvpid_Type1InvalidVpid,
3998 kVmxVDiag_Invvpid_Type3InvalidVpid,
3999 kVmxVDiag_Invvpid_VmxRoot,
4000 /* VMLAUNCH/VMRESUME. */
4001 kVmxVDiag_Vmentry_AddrApicAccess,
4002 kVmxVDiag_Vmentry_AddrApicAccessEqVirtApic,
4003 kVmxVDiag_Vmentry_AddrApicAccessHandlerReg,
4004 kVmxVDiag_Vmentry_AddrEntryMsrLoad,
4005 kVmxVDiag_Vmentry_AddrExitMsrLoad,
4006 kVmxVDiag_Vmentry_AddrExitMsrStore,
4007 kVmxVDiag_Vmentry_AddrIoBitmapA,
4008 kVmxVDiag_Vmentry_AddrIoBitmapB,
4009 kVmxVDiag_Vmentry_AddrMsrBitmap,
4010 kVmxVDiag_Vmentry_AddrVirtApicPage,
4011 kVmxVDiag_Vmentry_AddrVmcsLinkPtr,
4012 kVmxVDiag_Vmentry_AddrVmreadBitmap,
4013 kVmxVDiag_Vmentry_AddrVmwriteBitmap,
4014 kVmxVDiag_Vmentry_ApicRegVirt,
4015 kVmxVDiag_Vmentry_BlocKMovSS,
4016 kVmxVDiag_Vmentry_Cpl,
4017 kVmxVDiag_Vmentry_Cr3TargetCount,
4018 kVmxVDiag_Vmentry_EntryCtlsAllowed1,
4019 kVmxVDiag_Vmentry_EntryCtlsDisallowed0,
4020 kVmxVDiag_Vmentry_EntryInstrLen,
4021 kVmxVDiag_Vmentry_EntryInstrLenZero,
4022 kVmxVDiag_Vmentry_EntryIntInfoErrCodePe,
4023 kVmxVDiag_Vmentry_EntryIntInfoErrCodeVec,
4024 kVmxVDiag_Vmentry_EntryIntInfoTypeVecRsvd,
4025 kVmxVDiag_Vmentry_EntryXcptErrCodeRsvd,
4026 kVmxVDiag_Vmentry_ExitCtlsAllowed1,
4027 kVmxVDiag_Vmentry_ExitCtlsDisallowed0,
4028 kVmxVDiag_Vmentry_GuestActStateHlt,
4029 kVmxVDiag_Vmentry_GuestActStateRsvd,
4030 kVmxVDiag_Vmentry_GuestActStateShutdown,
4031 kVmxVDiag_Vmentry_GuestActStateSsDpl,
4032 kVmxVDiag_Vmentry_GuestActStateStiMovSs,
4033 kVmxVDiag_Vmentry_GuestCr0Fixed0,
4034 kVmxVDiag_Vmentry_GuestCr0Fixed1,
4035 kVmxVDiag_Vmentry_GuestCr0PgPe,
4036 kVmxVDiag_Vmentry_GuestCr3,
4037 kVmxVDiag_Vmentry_GuestCr4Fixed0,
4038 kVmxVDiag_Vmentry_GuestCr4Fixed1,
4039 kVmxVDiag_Vmentry_GuestDebugCtl,
4040 kVmxVDiag_Vmentry_GuestDr7,
4041 kVmxVDiag_Vmentry_GuestEferMsr,
4042 kVmxVDiag_Vmentry_GuestEferMsrRsvd,
4043 kVmxVDiag_Vmentry_GuestGdtrBase,
4044 kVmxVDiag_Vmentry_GuestGdtrLimit,
4045 kVmxVDiag_Vmentry_GuestIdtrBase,
4046 kVmxVDiag_Vmentry_GuestIdtrLimit,
4047 kVmxVDiag_Vmentry_GuestIntStateEnclave,
4048 kVmxVDiag_Vmentry_GuestIntStateExtInt,
4049 kVmxVDiag_Vmentry_GuestIntStateNmi,
4050 kVmxVDiag_Vmentry_GuestIntStateRFlagsSti,
4051 kVmxVDiag_Vmentry_GuestIntStateRsvd,
4052 kVmxVDiag_Vmentry_GuestIntStateSmi,
4053 kVmxVDiag_Vmentry_GuestIntStateStiMovSs,
4054 kVmxVDiag_Vmentry_GuestIntStateVirtNmi,
4055 kVmxVDiag_Vmentry_GuestPae,
4056 kVmxVDiag_Vmentry_GuestPatMsr,
4057 kVmxVDiag_Vmentry_GuestPcide,
4058 kVmxVDiag_Vmentry_GuestPdpteCr3ReadPhys,
4059 kVmxVDiag_Vmentry_GuestPdpte0Rsvd,
4060 kVmxVDiag_Vmentry_GuestPdpte1Rsvd,
4061 kVmxVDiag_Vmentry_GuestPdpte2Rsvd,
4062 kVmxVDiag_Vmentry_GuestPdpte3Rsvd,
4063 kVmxVDiag_Vmentry_GuestPndDbgXcptBsNoTf,
4064 kVmxVDiag_Vmentry_GuestPndDbgXcptBsTf,
4065 kVmxVDiag_Vmentry_GuestPndDbgXcptRsvd,
4066 kVmxVDiag_Vmentry_GuestPndDbgXcptRtm,
4067 kVmxVDiag_Vmentry_GuestRip,
4068 kVmxVDiag_Vmentry_GuestRipRsvd,
4069 kVmxVDiag_Vmentry_GuestRFlagsIf,
4070 kVmxVDiag_Vmentry_GuestRFlagsRsvd,
4071 kVmxVDiag_Vmentry_GuestRFlagsVm,
4072 kVmxVDiag_Vmentry_GuestSegAttrCsDefBig,
4073 kVmxVDiag_Vmentry_GuestSegAttrCsDplEqSs,
4074 kVmxVDiag_Vmentry_GuestSegAttrCsDplLtSs,
4075 kVmxVDiag_Vmentry_GuestSegAttrCsDplZero,
4076 kVmxVDiag_Vmentry_GuestSegAttrCsType,
4077 kVmxVDiag_Vmentry_GuestSegAttrCsTypeRead,
4078 kVmxVDiag_Vmentry_GuestSegAttrDescTypeCs,
4079 kVmxVDiag_Vmentry_GuestSegAttrDescTypeDs,
4080 kVmxVDiag_Vmentry_GuestSegAttrDescTypeEs,
4081 kVmxVDiag_Vmentry_GuestSegAttrDescTypeFs,
4082 kVmxVDiag_Vmentry_GuestSegAttrDescTypeGs,
4083 kVmxVDiag_Vmentry_GuestSegAttrDescTypeSs,
4084 kVmxVDiag_Vmentry_GuestSegAttrDplRplCs,
4085 kVmxVDiag_Vmentry_GuestSegAttrDplRplDs,
4086 kVmxVDiag_Vmentry_GuestSegAttrDplRplEs,
4087 kVmxVDiag_Vmentry_GuestSegAttrDplRplFs,
4088 kVmxVDiag_Vmentry_GuestSegAttrDplRplGs,
4089 kVmxVDiag_Vmentry_GuestSegAttrDplRplSs,
4090 kVmxVDiag_Vmentry_GuestSegAttrGranCs,
4091 kVmxVDiag_Vmentry_GuestSegAttrGranDs,
4092 kVmxVDiag_Vmentry_GuestSegAttrGranEs,
4093 kVmxVDiag_Vmentry_GuestSegAttrGranFs,
4094 kVmxVDiag_Vmentry_GuestSegAttrGranGs,
4095 kVmxVDiag_Vmentry_GuestSegAttrGranSs,
4096 kVmxVDiag_Vmentry_GuestSegAttrLdtrDescType,
4097 kVmxVDiag_Vmentry_GuestSegAttrLdtrGran,
4098 kVmxVDiag_Vmentry_GuestSegAttrLdtrPresent,
4099 kVmxVDiag_Vmentry_GuestSegAttrLdtrRsvd,
4100 kVmxVDiag_Vmentry_GuestSegAttrLdtrType,
4101 kVmxVDiag_Vmentry_GuestSegAttrPresentCs,
4102 kVmxVDiag_Vmentry_GuestSegAttrPresentDs,
4103 kVmxVDiag_Vmentry_GuestSegAttrPresentEs,
4104 kVmxVDiag_Vmentry_GuestSegAttrPresentFs,
4105 kVmxVDiag_Vmentry_GuestSegAttrPresentGs,
4106 kVmxVDiag_Vmentry_GuestSegAttrPresentSs,
4107 kVmxVDiag_Vmentry_GuestSegAttrRsvdCs,
4108 kVmxVDiag_Vmentry_GuestSegAttrRsvdDs,
4109 kVmxVDiag_Vmentry_GuestSegAttrRsvdEs,
4110 kVmxVDiag_Vmentry_GuestSegAttrRsvdFs,
4111 kVmxVDiag_Vmentry_GuestSegAttrRsvdGs,
4112 kVmxVDiag_Vmentry_GuestSegAttrRsvdSs,
4113 kVmxVDiag_Vmentry_GuestSegAttrSsDplEqRpl,
4114 kVmxVDiag_Vmentry_GuestSegAttrSsDplZero,
4115 kVmxVDiag_Vmentry_GuestSegAttrSsType,
4116 kVmxVDiag_Vmentry_GuestSegAttrTrDescType,
4117 kVmxVDiag_Vmentry_GuestSegAttrTrGran,
4118 kVmxVDiag_Vmentry_GuestSegAttrTrPresent,
4119 kVmxVDiag_Vmentry_GuestSegAttrTrRsvd,
4120 kVmxVDiag_Vmentry_GuestSegAttrTrType,
4121 kVmxVDiag_Vmentry_GuestSegAttrTrUnusable,
4122 kVmxVDiag_Vmentry_GuestSegAttrTypeAccCs,
4123 kVmxVDiag_Vmentry_GuestSegAttrTypeAccDs,
4124 kVmxVDiag_Vmentry_GuestSegAttrTypeAccEs,
4125 kVmxVDiag_Vmentry_GuestSegAttrTypeAccFs,
4126 kVmxVDiag_Vmentry_GuestSegAttrTypeAccGs,
4127 kVmxVDiag_Vmentry_GuestSegAttrTypeAccSs,
4128 kVmxVDiag_Vmentry_GuestSegAttrV86Cs,
4129 kVmxVDiag_Vmentry_GuestSegAttrV86Ds,
4130 kVmxVDiag_Vmentry_GuestSegAttrV86Es,
4131 kVmxVDiag_Vmentry_GuestSegAttrV86Fs,
4132 kVmxVDiag_Vmentry_GuestSegAttrV86Gs,
4133 kVmxVDiag_Vmentry_GuestSegAttrV86Ss,
4134 kVmxVDiag_Vmentry_GuestSegBaseCs,
4135 kVmxVDiag_Vmentry_GuestSegBaseDs,
4136 kVmxVDiag_Vmentry_GuestSegBaseEs,
4137 kVmxVDiag_Vmentry_GuestSegBaseFs,
4138 kVmxVDiag_Vmentry_GuestSegBaseGs,
4139 kVmxVDiag_Vmentry_GuestSegBaseLdtr,
4140 kVmxVDiag_Vmentry_GuestSegBaseSs,
4141 kVmxVDiag_Vmentry_GuestSegBaseTr,
4142 kVmxVDiag_Vmentry_GuestSegBaseV86Cs,
4143 kVmxVDiag_Vmentry_GuestSegBaseV86Ds,
4144 kVmxVDiag_Vmentry_GuestSegBaseV86Es,
4145 kVmxVDiag_Vmentry_GuestSegBaseV86Fs,
4146 kVmxVDiag_Vmentry_GuestSegBaseV86Gs,
4147 kVmxVDiag_Vmentry_GuestSegBaseV86Ss,
4148 kVmxVDiag_Vmentry_GuestSegLimitV86Cs,
4149 kVmxVDiag_Vmentry_GuestSegLimitV86Ds,
4150 kVmxVDiag_Vmentry_GuestSegLimitV86Es,
4151 kVmxVDiag_Vmentry_GuestSegLimitV86Fs,
4152 kVmxVDiag_Vmentry_GuestSegLimitV86Gs,
4153 kVmxVDiag_Vmentry_GuestSegLimitV86Ss,
4154 kVmxVDiag_Vmentry_GuestSegSelCsSsRpl,
4155 kVmxVDiag_Vmentry_GuestSegSelLdtr,
4156 kVmxVDiag_Vmentry_GuestSegSelTr,
4157 kVmxVDiag_Vmentry_GuestSysenterEspEip,
4158 kVmxVDiag_Vmentry_VmcsLinkPtrCurVmcs,
4159 kVmxVDiag_Vmentry_VmcsLinkPtrReadPhys,
4160 kVmxVDiag_Vmentry_VmcsLinkPtrRevId,
4161 kVmxVDiag_Vmentry_VmcsLinkPtrShadow,
4162 kVmxVDiag_Vmentry_HostCr0Fixed0,
4163 kVmxVDiag_Vmentry_HostCr0Fixed1,
4164 kVmxVDiag_Vmentry_HostCr3,
4165 kVmxVDiag_Vmentry_HostCr4Fixed0,
4166 kVmxVDiag_Vmentry_HostCr4Fixed1,
4167 kVmxVDiag_Vmentry_HostCr4Pae,
4168 kVmxVDiag_Vmentry_HostCr4Pcide,
4169 kVmxVDiag_Vmentry_HostCsTr,
4170 kVmxVDiag_Vmentry_HostEferMsr,
4171 kVmxVDiag_Vmentry_HostEferMsrRsvd,
4172 kVmxVDiag_Vmentry_HostGuestLongMode,
4173 kVmxVDiag_Vmentry_HostGuestLongModeNoCpu,
4174 kVmxVDiag_Vmentry_HostLongMode,
4175 kVmxVDiag_Vmentry_HostPatMsr,
4176 kVmxVDiag_Vmentry_HostRip,
4177 kVmxVDiag_Vmentry_HostRipRsvd,
4178 kVmxVDiag_Vmentry_HostSel,
4179 kVmxVDiag_Vmentry_HostSegBase,
4180 kVmxVDiag_Vmentry_HostSs,
4181 kVmxVDiag_Vmentry_HostSysenterEspEip,
4182 kVmxVDiag_Vmentry_IoBitmapAPtrReadPhys,
4183 kVmxVDiag_Vmentry_IoBitmapBPtrReadPhys,
4184 kVmxVDiag_Vmentry_LongModeCS,
4185 kVmxVDiag_Vmentry_MsrBitmapPtrReadPhys,
4186 kVmxVDiag_Vmentry_MsrLoad,
4187 kVmxVDiag_Vmentry_MsrLoadCount,
4188 kVmxVDiag_Vmentry_MsrLoadPtrReadPhys,
4189 kVmxVDiag_Vmentry_MsrLoadRing3,
4190 kVmxVDiag_Vmentry_MsrLoadRsvd,
4191 kVmxVDiag_Vmentry_NmiWindowExit,
4192 kVmxVDiag_Vmentry_PinCtlsAllowed1,
4193 kVmxVDiag_Vmentry_PinCtlsDisallowed0,
4194 kVmxVDiag_Vmentry_ProcCtlsAllowed1,
4195 kVmxVDiag_Vmentry_ProcCtlsDisallowed0,
4196 kVmxVDiag_Vmentry_ProcCtls2Allowed1,
4197 kVmxVDiag_Vmentry_ProcCtls2Disallowed0,
4198 kVmxVDiag_Vmentry_PtrInvalid,
4199 kVmxVDiag_Vmentry_PtrShadowVmcs,
4200 kVmxVDiag_Vmentry_RealOrV86Mode,
4201 kVmxVDiag_Vmentry_SavePreemptTimer,
4202 kVmxVDiag_Vmentry_TprThresholdRsvd,
4203 kVmxVDiag_Vmentry_TprThresholdVTpr,
4204 kVmxVDiag_Vmentry_VirtApicPagePtrReadPhys,
4205 kVmxVDiag_Vmentry_VirtIntDelivery,
4206 kVmxVDiag_Vmentry_VirtNmi,
4207 kVmxVDiag_Vmentry_VirtX2ApicTprShadow,
4208 kVmxVDiag_Vmentry_VirtX2ApicVirtApic,
4209 kVmxVDiag_Vmentry_VmcsClear,
4210 kVmxVDiag_Vmentry_VmcsLaunch,
4211 kVmxVDiag_Vmentry_VmreadBitmapPtrReadPhys,
4212 kVmxVDiag_Vmentry_VmwriteBitmapPtrReadPhys,
4213 kVmxVDiag_Vmentry_VmxRoot,
4214 kVmxVDiag_Vmentry_Vpid,
4215 kVmxVDiag_Vmexit_HostPdpteCr3ReadPhys,
4216 kVmxVDiag_Vmexit_HostPdpte0Rsvd,
4217 kVmxVDiag_Vmexit_HostPdpte1Rsvd,
4218 kVmxVDiag_Vmexit_HostPdpte2Rsvd,
4219 kVmxVDiag_Vmexit_HostPdpte3Rsvd,
4220 kVmxVDiag_Vmexit_MsrLoad,
4221 kVmxVDiag_Vmexit_MsrLoadCount,
4222 kVmxVDiag_Vmexit_MsrLoadPtrReadPhys,
4223 kVmxVDiag_Vmexit_MsrLoadRing3,
4224 kVmxVDiag_Vmexit_MsrLoadRsvd,
4225 kVmxVDiag_Vmexit_MsrStore,
4226 kVmxVDiag_Vmexit_MsrStoreCount,
4227 kVmxVDiag_Vmexit_MsrStorePtrReadPhys,
4228 kVmxVDiag_Vmexit_MsrStorePtrWritePhys,
4229 kVmxVDiag_Vmexit_MsrStoreRing3,
4230 kVmxVDiag_Vmexit_MsrStoreRsvd,
4231 kVmxVDiag_Vmexit_VirtApicPagePtrWritePhys,
4232 /* Last member for determining array index limit. */
4233 kVmxVDiag_End
4234} VMXVDIAG;
4235AssertCompileSize(VMXVDIAG, 4);
4236
4237/** @} */
4238
4239/** @} */
4240
4241#endif /* !VBOX_INCLUDED_vmm_hm_vmx_h */
4242
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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