VirtualBox

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

Last change on this file since 96407 was 96407, checked in by vboxsync, 2 years ago

scm copyright and license note update

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

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