VirtualBox

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

Last change on this file since 78481 was 78481, checked in by vboxsync, 6 years ago

VMM/HM, IEM: Nested VMX: bugref:9180 Hardware-assisted VMX VM-exit handling interface bits, I/O exit handling, comments and disabled code on what needs to be done with future optimizations.

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