VirtualBox

source: vbox/trunk/src/VBox/VMM/include/HMInternal.h@ 87530

Last change on this file since 87530 was 87530, checked in by vboxsync, 4 years ago

VMM/HMVMX: Moving more stuff to HMR0PERVM. Set freed memory handles/pointers to NIL/NULL. bugref:9217

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 69.6 KB
Line 
1/* $Id: HMInternal.h 87530 2021-02-02 11:27:43Z vboxsync $ */
2/** @file
3 * HM - Internal header file.
4 */
5
6/*
7 * Copyright (C) 2006-2020 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef VMM_INCLUDED_SRC_include_HMInternal_h
19#define VMM_INCLUDED_SRC_include_HMInternal_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include <VBox/cdefs.h>
25#include <VBox/types.h>
26#include <VBox/vmm/stam.h>
27#include <VBox/dis.h>
28#include <VBox/vmm/hm.h>
29#include <VBox/vmm/hm_vmx.h>
30#include <VBox/vmm/hm_svm.h>
31#include <VBox/vmm/pgm.h>
32#include <VBox/vmm/cpum.h>
33#include <VBox/vmm/trpm.h>
34#include <iprt/memobj.h>
35#include <iprt/cpuset.h>
36#include <iprt/mp.h>
37#include <iprt/avl.h>
38#include <iprt/string.h>
39
40#if HC_ARCH_BITS == 32
41# error "32-bit hosts are no longer supported. Go back to 6.0 or earlier!"
42#endif
43
44/** @def HM_PROFILE_EXIT_DISPATCH
45 * Enables profiling of the VM exit handler dispatching. */
46#if 0 || defined(DOXYGEN_RUNNING)
47# define HM_PROFILE_EXIT_DISPATCH
48#endif
49
50RT_C_DECLS_BEGIN
51
52
53/** @defgroup grp_hm_int Internal
54 * @ingroup grp_hm
55 * @internal
56 * @{
57 */
58
59/** @name HM_CHANGED_XXX
60 * HM CPU-context changed flags.
61 *
62 * These flags are used to keep track of which registers and state has been
63 * modified since they were imported back into the guest-CPU context.
64 *
65 * @{
66 */
67#define HM_CHANGED_HOST_CONTEXT UINT64_C(0x0000000000000001)
68#define HM_CHANGED_GUEST_RIP UINT64_C(0x0000000000000004)
69#define HM_CHANGED_GUEST_RFLAGS UINT64_C(0x0000000000000008)
70
71#define HM_CHANGED_GUEST_RAX UINT64_C(0x0000000000000010)
72#define HM_CHANGED_GUEST_RCX UINT64_C(0x0000000000000020)
73#define HM_CHANGED_GUEST_RDX UINT64_C(0x0000000000000040)
74#define HM_CHANGED_GUEST_RBX UINT64_C(0x0000000000000080)
75#define HM_CHANGED_GUEST_RSP UINT64_C(0x0000000000000100)
76#define HM_CHANGED_GUEST_RBP UINT64_C(0x0000000000000200)
77#define HM_CHANGED_GUEST_RSI UINT64_C(0x0000000000000400)
78#define HM_CHANGED_GUEST_RDI UINT64_C(0x0000000000000800)
79#define HM_CHANGED_GUEST_R8_R15 UINT64_C(0x0000000000001000)
80#define HM_CHANGED_GUEST_GPRS_MASK UINT64_C(0x0000000000001ff0)
81
82#define HM_CHANGED_GUEST_ES UINT64_C(0x0000000000002000)
83#define HM_CHANGED_GUEST_CS UINT64_C(0x0000000000004000)
84#define HM_CHANGED_GUEST_SS UINT64_C(0x0000000000008000)
85#define HM_CHANGED_GUEST_DS UINT64_C(0x0000000000010000)
86#define HM_CHANGED_GUEST_FS UINT64_C(0x0000000000020000)
87#define HM_CHANGED_GUEST_GS UINT64_C(0x0000000000040000)
88#define HM_CHANGED_GUEST_SREG_MASK UINT64_C(0x000000000007e000)
89
90#define HM_CHANGED_GUEST_GDTR UINT64_C(0x0000000000080000)
91#define HM_CHANGED_GUEST_IDTR UINT64_C(0x0000000000100000)
92#define HM_CHANGED_GUEST_LDTR UINT64_C(0x0000000000200000)
93#define HM_CHANGED_GUEST_TR UINT64_C(0x0000000000400000)
94#define HM_CHANGED_GUEST_TABLE_MASK UINT64_C(0x0000000000780000)
95
96#define HM_CHANGED_GUEST_CR0 UINT64_C(0x0000000000800000)
97#define HM_CHANGED_GUEST_CR2 UINT64_C(0x0000000001000000)
98#define HM_CHANGED_GUEST_CR3 UINT64_C(0x0000000002000000)
99#define HM_CHANGED_GUEST_CR4 UINT64_C(0x0000000004000000)
100#define HM_CHANGED_GUEST_CR_MASK UINT64_C(0x0000000007800000)
101
102#define HM_CHANGED_GUEST_APIC_TPR UINT64_C(0x0000000008000000)
103#define HM_CHANGED_GUEST_EFER_MSR UINT64_C(0x0000000010000000)
104
105#define HM_CHANGED_GUEST_DR0_DR3 UINT64_C(0x0000000020000000)
106#define HM_CHANGED_GUEST_DR6 UINT64_C(0x0000000040000000)
107#define HM_CHANGED_GUEST_DR7 UINT64_C(0x0000000080000000)
108#define HM_CHANGED_GUEST_DR_MASK UINT64_C(0x00000000e0000000)
109
110#define HM_CHANGED_GUEST_X87 UINT64_C(0x0000000100000000)
111#define HM_CHANGED_GUEST_SSE_AVX UINT64_C(0x0000000200000000)
112#define HM_CHANGED_GUEST_OTHER_XSAVE UINT64_C(0x0000000400000000)
113#define HM_CHANGED_GUEST_XCRx UINT64_C(0x0000000800000000)
114
115#define HM_CHANGED_GUEST_KERNEL_GS_BASE UINT64_C(0x0000001000000000)
116#define HM_CHANGED_GUEST_SYSCALL_MSRS UINT64_C(0x0000002000000000)
117#define HM_CHANGED_GUEST_SYSENTER_CS_MSR UINT64_C(0x0000004000000000)
118#define HM_CHANGED_GUEST_SYSENTER_EIP_MSR UINT64_C(0x0000008000000000)
119#define HM_CHANGED_GUEST_SYSENTER_ESP_MSR UINT64_C(0x0000010000000000)
120#define HM_CHANGED_GUEST_SYSENTER_MSR_MASK UINT64_C(0x000001c000000000)
121#define HM_CHANGED_GUEST_TSC_AUX UINT64_C(0x0000020000000000)
122#define HM_CHANGED_GUEST_OTHER_MSRS UINT64_C(0x0000040000000000)
123#define HM_CHANGED_GUEST_ALL_MSRS ( HM_CHANGED_GUEST_EFER \
124 | HM_CHANGED_GUEST_KERNEL_GS_BASE \
125 | HM_CHANGED_GUEST_SYSCALL_MSRS \
126 | HM_CHANGED_GUEST_SYSENTER_MSR_MASK \
127 | HM_CHANGED_GUEST_TSC_AUX \
128 | HM_CHANGED_GUEST_OTHER_MSRS)
129
130#define HM_CHANGED_GUEST_HWVIRT UINT64_C(0x0000080000000000)
131#define HM_CHANGED_GUEST_MASK UINT64_C(0x00000ffffffffffc)
132
133#define HM_CHANGED_KEEPER_STATE_MASK UINT64_C(0xffff000000000000)
134
135#define HM_CHANGED_VMX_XCPT_INTERCEPTS UINT64_C(0x0001000000000000)
136#define HM_CHANGED_VMX_GUEST_AUTO_MSRS UINT64_C(0x0002000000000000)
137#define HM_CHANGED_VMX_GUEST_LAZY_MSRS UINT64_C(0x0004000000000000)
138#define HM_CHANGED_VMX_ENTRY_EXIT_CTLS UINT64_C(0x0008000000000000)
139#define HM_CHANGED_VMX_MASK UINT64_C(0x000f000000000000)
140#define HM_CHANGED_VMX_HOST_GUEST_SHARED_STATE ( HM_CHANGED_GUEST_DR_MASK \
141 | HM_CHANGED_VMX_GUEST_LAZY_MSRS)
142
143#define HM_CHANGED_SVM_XCPT_INTERCEPTS UINT64_C(0x0001000000000000)
144#define HM_CHANGED_SVM_MASK UINT64_C(0x0001000000000000)
145#define HM_CHANGED_SVM_HOST_GUEST_SHARED_STATE HM_CHANGED_GUEST_DR_MASK
146
147#define HM_CHANGED_ALL_GUEST ( HM_CHANGED_GUEST_MASK \
148 | HM_CHANGED_KEEPER_STATE_MASK)
149
150/** Mask of what state might have changed when IEM raised an exception.
151 * This is a based on IEM_CPUMCTX_EXTRN_XCPT_MASK. */
152#define HM_CHANGED_RAISED_XCPT_MASK ( HM_CHANGED_GUEST_GPRS_MASK \
153 | HM_CHANGED_GUEST_RIP \
154 | HM_CHANGED_GUEST_RFLAGS \
155 | HM_CHANGED_GUEST_SS \
156 | HM_CHANGED_GUEST_CS \
157 | HM_CHANGED_GUEST_CR0 \
158 | HM_CHANGED_GUEST_CR3 \
159 | HM_CHANGED_GUEST_CR4 \
160 | HM_CHANGED_GUEST_APIC_TPR \
161 | HM_CHANGED_GUEST_EFER_MSR \
162 | HM_CHANGED_GUEST_DR7 \
163 | HM_CHANGED_GUEST_CR2 \
164 | HM_CHANGED_GUEST_SREG_MASK \
165 | HM_CHANGED_GUEST_TABLE_MASK)
166
167#ifdef VBOX_WITH_NESTED_HWVIRT_SVM
168/** Mask of what state might have changed when \#VMEXIT is emulated. */
169# define HM_CHANGED_SVM_VMEXIT_MASK ( HM_CHANGED_GUEST_RSP \
170 | HM_CHANGED_GUEST_RAX \
171 | HM_CHANGED_GUEST_RIP \
172 | HM_CHANGED_GUEST_RFLAGS \
173 | HM_CHANGED_GUEST_CS \
174 | HM_CHANGED_GUEST_SS \
175 | HM_CHANGED_GUEST_DS \
176 | HM_CHANGED_GUEST_ES \
177 | HM_CHANGED_GUEST_GDTR \
178 | HM_CHANGED_GUEST_IDTR \
179 | HM_CHANGED_GUEST_CR_MASK \
180 | HM_CHANGED_GUEST_EFER_MSR \
181 | HM_CHANGED_GUEST_DR6 \
182 | HM_CHANGED_GUEST_DR7 \
183 | HM_CHANGED_GUEST_OTHER_MSRS \
184 | HM_CHANGED_GUEST_HWVIRT \
185 | HM_CHANGED_SVM_MASK \
186 | HM_CHANGED_GUEST_APIC_TPR)
187
188/** Mask of what state might have changed when VMRUN is emulated. */
189# define HM_CHANGED_SVM_VMRUN_MASK HM_CHANGED_SVM_VMEXIT_MASK
190#endif
191#ifdef VBOX_WITH_NESTED_HWVIRT_VMX
192/** Mask of what state might have changed when VM-exit is emulated.
193 *
194 * This is currently unused, but keeping it here in case we can get away a bit more
195 * fine-grained state handling.
196 *
197 * @note Update IEM_CPUMCTX_EXTRN_VMX_VMEXIT_MASK when this changes. */
198# define HM_CHANGED_VMX_VMEXIT_MASK ( HM_CHANGED_GUEST_CR0 | HM_CHANGED_GUEST_CR3 | HM_CHANGED_GUEST_CR4 \
199 | HM_CHANGED_GUEST_DR7 | HM_CHANGED_GUEST_DR6 \
200 | HM_CHANGED_GUEST_EFER_MSR \
201 | HM_CHANGED_GUEST_SYSENTER_MSR_MASK \
202 | HM_CHANGED_GUEST_OTHER_MSRS /* for PAT MSR */ \
203 | HM_CHANGED_GUEST_RIP | HM_CHANGED_GUEST_RSP | HM_CHANGED_GUEST_RFLAGS \
204 | HM_CHANGED_GUEST_SREG_MASK \
205 | HM_CHANGED_GUEST_TR \
206 | HM_CHANGED_GUEST_LDTR | HM_CHANGED_GUEST_GDTR | HM_CHANGED_GUEST_IDTR \
207 | HM_CHANGED_GUEST_HWVIRT )
208#endif
209/** @} */
210
211/** Maximum number of exit reason statistics counters. */
212#define MAX_EXITREASON_STAT 0x100
213#define MASK_EXITREASON_STAT 0xff
214#define MASK_INJECT_IRQ_STAT 0xff
215
216/** Size for the EPT identity page table (1024 4 MB pages to cover the entire address space). */
217#define HM_EPT_IDENTITY_PG_TABLE_SIZE PAGE_SIZE
218/** Size of the TSS structure + 2 pages for the IO bitmap + end byte. */
219#define HM_VTX_TSS_SIZE (sizeof(VBOXTSS) + 2 * PAGE_SIZE + 1)
220/** Total guest mapped memory needed. */
221#define HM_VTX_TOTAL_DEVHEAP_MEM (HM_EPT_IDENTITY_PG_TABLE_SIZE + HM_VTX_TSS_SIZE)
222
223
224/** @name Macros for enabling and disabling preemption.
225 * These are really just for hiding the RTTHREADPREEMPTSTATE and asserting that
226 * preemption has already been disabled when there is no context hook.
227 * @{ */
228#ifdef VBOX_STRICT
229# define HM_DISABLE_PREEMPT(a_pVCpu) \
230 RTTHREADPREEMPTSTATE PreemptStateInternal = RTTHREADPREEMPTSTATE_INITIALIZER; \
231 Assert(!RTThreadPreemptIsEnabled(NIL_RTTHREAD) || VMMR0ThreadCtxHookIsEnabled((a_pVCpu))); \
232 RTThreadPreemptDisable(&PreemptStateInternal)
233#else
234# define HM_DISABLE_PREEMPT(a_pVCpu) \
235 RTTHREADPREEMPTSTATE PreemptStateInternal = RTTHREADPREEMPTSTATE_INITIALIZER; \
236 RTThreadPreemptDisable(&PreemptStateInternal)
237#endif /* VBOX_STRICT */
238#define HM_RESTORE_PREEMPT() do { RTThreadPreemptRestore(&PreemptStateInternal); } while(0)
239/** @} */
240
241
242/** @name HM saved state versions.
243 * @{
244 */
245#define HM_SAVED_STATE_VERSION HM_SAVED_STATE_VERSION_SVM_NESTED_HWVIRT
246#define HM_SAVED_STATE_VERSION_SVM_NESTED_HWVIRT 6
247#define HM_SAVED_STATE_VERSION_TPR_PATCHING 5
248#define HM_SAVED_STATE_VERSION_NO_TPR_PATCHING 4
249#define HM_SAVED_STATE_VERSION_2_0_X 3
250/** @} */
251
252
253/**
254 * HM physical (host) CPU information.
255 */
256typedef struct HMPHYSCPU
257{
258 /** The CPU ID. */
259 RTCPUID idCpu;
260 /** The VM_HSAVE_AREA (AMD-V) / VMXON region (Intel) memory backing. */
261 RTR0MEMOBJ hMemObj;
262 /** The physical address of the first page in hMemObj (it's a
263 * physcially contigous allocation if it spans multiple pages). */
264 RTHCPHYS HCPhysMemObj;
265 /** The address of the memory (for pfnEnable). */
266 void *pvMemObj;
267 /** Current ASID (AMD-V) / VPID (Intel). */
268 uint32_t uCurrentAsid;
269 /** TLB flush count. */
270 uint32_t cTlbFlushes;
271 /** Whether to flush each new ASID/VPID before use. */
272 bool fFlushAsidBeforeUse;
273 /** Configured for VT-x or AMD-V. */
274 bool fConfigured;
275 /** Set if the VBOX_HWVIRTEX_IGNORE_SVM_IN_USE hack is active. */
276 bool fIgnoreAMDVInUseError;
277 /** Whether CR4.VMXE was already enabled prior to us enabling it. */
278 bool fVmxeAlreadyEnabled;
279 /** In use by our code. (for power suspend) */
280 bool volatile fInUse;
281#ifdef VBOX_WITH_NESTED_HWVIRT_SVM
282 /** Nested-guest union (put data common to SVM/VMX outside the union). */
283 union
284 {
285 /** Nested-guest SVM data. */
286 struct
287 {
288 /** The active nested-guest MSR permission bitmap memory backing. */
289 RTR0MEMOBJ hNstGstMsrpm;
290 /** The physical address of the first page in hNstGstMsrpm (physcially
291 * contiguous allocation). */
292 RTHCPHYS HCPhysNstGstMsrpm;
293 /** The address of the active nested-guest MSRPM. */
294 void *pvNstGstMsrpm;
295 } svm;
296 /** @todo Nested-VMX. */
297 } n;
298#endif
299} HMPHYSCPU;
300/** Pointer to HMPHYSCPU struct. */
301typedef HMPHYSCPU *PHMPHYSCPU;
302/** Pointer to a const HMPHYSCPU struct. */
303typedef const HMPHYSCPU *PCHMPHYSCPU;
304
305/**
306 * TPR-instruction type.
307 */
308typedef enum
309{
310 HMTPRINSTR_INVALID,
311 HMTPRINSTR_READ,
312 HMTPRINSTR_READ_SHR4,
313 HMTPRINSTR_WRITE_REG,
314 HMTPRINSTR_WRITE_IMM,
315 HMTPRINSTR_JUMP_REPLACEMENT,
316 /** The usual 32-bit paranoia. */
317 HMTPRINSTR_32BIT_HACK = 0x7fffffff
318} HMTPRINSTR;
319
320/**
321 * TPR patch information.
322 */
323typedef struct
324{
325 /** The key is the address of patched instruction. (32 bits GC ptr) */
326 AVLOU32NODECORE Core;
327 /** Original opcode. */
328 uint8_t aOpcode[16];
329 /** Instruction size. */
330 uint32_t cbOp;
331 /** Replacement opcode. */
332 uint8_t aNewOpcode[16];
333 /** Replacement instruction size. */
334 uint32_t cbNewOp;
335 /** Instruction type. */
336 HMTPRINSTR enmType;
337 /** Source operand. */
338 uint32_t uSrcOperand;
339 /** Destination operand. */
340 uint32_t uDstOperand;
341 /** Number of times the instruction caused a fault. */
342 uint32_t cFaults;
343 /** Patch address of the jump replacement. */
344 RTGCPTR32 pJumpTarget;
345} HMTPRPATCH;
346/** Pointer to HMTPRPATCH. */
347typedef HMTPRPATCH *PHMTPRPATCH;
348/** Pointer to a const HMTPRPATCH. */
349typedef const HMTPRPATCH *PCHMTPRPATCH;
350
351
352/**
353 * Makes a HMEXITSTAT::uKey value from a program counter and an exit code.
354 *
355 * @returns 64-bit key
356 * @param a_uPC The RIP + CS.BASE value of the exit.
357 * @param a_uExit The exit code.
358 * @todo Add CPL?
359 */
360#define HMEXITSTAT_MAKE_KEY(a_uPC, a_uExit) (((a_uPC) & UINT64_C(0x0000ffffffffffff)) | (uint64_t)(a_uExit) << 48)
361
362typedef struct HMEXITINFO
363{
364 /** See HMEXITSTAT_MAKE_KEY(). */
365 uint64_t uKey;
366 /** Number of recent hits (depreciates with time). */
367 uint32_t volatile cHits;
368 /** The age + lock. */
369 uint16_t volatile uAge;
370 /** Action or action table index. */
371 uint16_t iAction;
372} HMEXITINFO;
373AssertCompileSize(HMEXITINFO, 16); /* Lots of these guys, so don't add any unnecessary stuff! */
374
375typedef struct HMEXITHISTORY
376{
377 /** The exit timestamp. */
378 uint64_t uTscExit;
379 /** The index of the corresponding HMEXITINFO entry.
380 * UINT32_MAX if none (too many collisions, race, whatever). */
381 uint32_t iExitInfo;
382 /** Figure out later, needed for padding now. */
383 uint32_t uSomeClueOrSomething;
384} HMEXITHISTORY;
385
386/**
387 * Switcher function, HC to the special 64-bit RC.
388 *
389 * @param pVM The cross context VM structure.
390 * @param offCpumVCpu Offset from pVM->cpum to pVM->aCpus[idCpu].cpum.
391 * @returns Return code indicating the action to take.
392 */
393typedef DECLCALLBACKTYPE(int, FNHMSWITCHERHC,(PVM pVM, uint32_t offCpumVCpu));
394/** Pointer to switcher function. */
395typedef FNHMSWITCHERHC *PFNHMSWITCHERHC;
396
397
398/**
399 * HM event.
400 *
401 * VT-x and AMD-V common event injection structure.
402 */
403typedef struct HMEVENT
404{
405 /** Whether the event is pending. */
406 uint32_t fPending;
407 /** The error-code associated with the event. */
408 uint32_t u32ErrCode;
409 /** The length of the instruction in bytes (only relevant for software
410 * interrupts or software exceptions). */
411 uint32_t cbInstr;
412 /** Alignment. */
413 uint32_t u32Padding;
414 /** The encoded event (VM-entry interruption-information for VT-x or EVENTINJ
415 * for SVM). */
416 uint64_t u64IntInfo;
417 /** Guest virtual address if this is a page-fault event. */
418 RTGCUINTPTR GCPtrFaultAddress;
419} HMEVENT;
420/** Pointer to a HMEVENT struct. */
421typedef HMEVENT *PHMEVENT;
422/** Pointer to a const HMEVENT struct. */
423typedef const HMEVENT *PCHMEVENT;
424AssertCompileSizeAlignment(HMEVENT, 8);
425
426/**
427 * HM VM Instance data.
428 * Changes to this must checked against the padding of the hm union in VM!
429 */
430typedef struct HM
431{
432 /** Set if nested paging is enabled.
433 * Config value that is copied to HMR0PERVM::fNestedPaging on setup. */
434 bool fNestedPagingCfg;
435 /** Set when we've finalized the VMX / SVM initialization in ring-3
436 * (hmR3InitFinalizeR0Intel / hmR3InitFinalizeR0Amd). */
437 bool fInitialized;
438 /** Set if large pages are enabled (requires nested paging).
439 * Config only, passed on the PGM where it really belongs.
440 * @todo move to PGM */
441 bool fLargePages;
442 /** Set if we can support 64-bit guests or not.
443 * Config value that is copied to HMR0PERVM::fAllow64BitGuests on setup. */
444 bool fAllow64BitGuestsCfg;
445 /** Set when we initialize VT-x or AMD-V once for all CPUs. */
446 bool fGlobalInit;
447 /** Set when TPR patching is allowed. */
448 bool fTprPatchingAllowed;
449 /** Set when TPR patching is active. */
450 bool fTPRPatchingActive;
451 /** Set when the debug facility has breakpoints/events enabled that requires
452 * us to use the debug execution loop in ring-0. */
453 bool fUseDebugLoop;
454 /** Set if hardware APIC virtualization is enabled.
455 * @todo Not really used by HM, move to APIC where it's actually used. */
456 bool fVirtApicRegs;
457 /** Set if posted interrupt processing is enabled.
458 * @todo Not really used by HM, move to APIC where it's actually used. */
459 bool fPostedIntrs;
460
461 /** @name Processed into HMR0PERVCPU::fWorldSwitcher by ring-0 on VM init.
462 * @{ */
463 /** Set if indirect branch prediction barrier on VM exit. */
464 bool fIbpbOnVmExit;
465 /** Set if indirect branch prediction barrier on VM entry. */
466 bool fIbpbOnVmEntry;
467 /** Set if level 1 data cache should be flushed on VM entry. */
468 bool fL1dFlushOnVmEntry;
469 /** Set if level 1 data cache should be flushed on EMT scheduling. */
470 bool fL1dFlushOnSched;
471 /** Set if MDS related buffers should be cleared on VM entry. */
472 bool fMdsClearOnVmEntry;
473 /** Set if MDS related buffers should be cleared on EMT scheduling. */
474 bool fMdsClearOnSched;
475 /** Set if host manages speculation control settings.
476 * @todo doesn't do anything ... */
477 bool fSpecCtrlByHost;
478 /** @} */
479
480 /** Alignment padding. */
481 bool afPaddingMinus1[3];
482
483 /** The maximum number of resumes loops allowed in ring-0 (safety precaution).
484 * This number is set much higher when RTThreadPreemptIsPending is reliable. */
485 uint32_t cMaxResumeLoopsCfg;
486
487 struct
488 {
489 /** Set by the ring-0 side of HM to indicate VMX is supported by the
490 * CPU. */
491 bool fSupported;
492 /** Set when we've enabled VMX. */
493 bool fEnabled;
494 /** Set if VPID is supported. */
495 bool fVpid;
496 /** Set if VT-x VPID is allowed. */
497 bool fAllowVpid;
498 /** Set if unrestricted guest execution is in use (real and protected mode
499 * without paging). */
500 bool fUnrestrictedGuest;
501 /** Set if the preemption timer is in use or not. */
502 bool fUsePreemptTimer;
503 /** The shift mask employed by the VMX-Preemption timer. */
504 uint8_t cPreemptTimerShift;
505 /** Padding. */
506 bool afPadding0;
507
508 /** Virtual address of the APIC-access page. */
509 R0PTRTYPE(uint8_t *) pbApicAccess;
510 /** Pointer to the VMREAD bitmap. */
511 R0PTRTYPE(void *) pvVmreadBitmap;
512 /** Pointer to the VMWRITE bitmap. */
513 R0PTRTYPE(void *) pvVmwriteBitmap;
514
515 /** Pointer to the shadow VMCS read-only fields array. */
516 R0PTRTYPE(uint32_t *) paShadowVmcsRoFields;
517 /** Pointer to the shadow VMCS read/write fields array. */
518 R0PTRTYPE(uint32_t *) paShadowVmcsFields;
519 /** Number of elements in the shadow VMCS read-only fields array. */
520 uint32_t cShadowVmcsRoFields;
521 /** Number of elements in the shadow VMCS read-write fields array. */
522 uint32_t cShadowVmcsFields;
523
524 /** Tagged-TLB flush type. */
525 VMXTLBFLUSHTYPE enmTlbFlushType;
526 /** Flush type to use for INVEPT. */
527 VMXTLBFLUSHEPT enmTlbFlushEpt;
528 /** Flush type to use for INVVPID. */
529 VMXTLBFLUSHVPID enmTlbFlushVpid;
530
531 /** Pause-loop exiting (PLE) gap in ticks. */
532 uint32_t cPleGapTicks;
533 /** Pause-loop exiting (PLE) window in ticks. */
534 uint32_t cPleWindowTicks;
535 uint32_t u32Alignment0;
536
537 /** Host CR4 value (set by ring-0 VMX init) */
538 uint64_t u64HostCr4;
539 /** Host SMM monitor control (set by ring-0 VMX init) */
540 uint64_t u64HostSmmMonitorCtl;
541 /** Host EFER value (set by ring-0 VMX init) */
542 uint64_t u64HostMsrEfer;
543 /** Whether the CPU supports VMCS fields for swapping EFER. */
544 bool fSupportsVmcsEfer;
545 /** Whether to use VMCS shadowing. */
546 bool fUseVmcsShadowing;
547 /** Set if Last Branch Record (LBR) is enabled. */
548 bool fLbr;
549 uint8_t u8Alignment2[5];
550
551 /** The first valid host LBR branch-from-IP stack range. */
552 uint32_t idLbrFromIpMsrFirst;
553 /** The last valid host LBR branch-from-IP stack range. */
554 uint32_t idLbrFromIpMsrLast;
555
556 /** The first valid host LBR branch-to-IP stack range. */
557 uint32_t idLbrToIpMsrFirst;
558 /** The last valid host LBR branch-to-IP stack range. */
559 uint32_t idLbrToIpMsrLast;
560
561 /** The host LBR TOS (top-of-stack) MSR id. */
562 uint32_t idLbrTosMsr;
563 /** Padding. */
564 uint32_t u32Alignment1;
565
566 /** VMX MSR values. */
567 VMXMSRS Msrs;
568
569 /** Host-physical address for a failing VMXON instruction. */
570 RTHCPHYS HCPhysVmxEnableError;
571 /** Host-physical address of the APIC-access page. */
572 RTHCPHYS HCPhysApicAccess;
573 /** Host-physical address of the VMREAD bitmap. */
574 RTHCPHYS HCPhysVmreadBitmap;
575 /** Host-physical address of the VMWRITE bitmap. */
576 RTHCPHYS HCPhysVmwriteBitmap;
577#ifdef VBOX_WITH_CRASHDUMP_MAGIC
578 /** Host-physical address of the crash-dump scratch area. */
579 RTHCPHYS HCPhysScratch;
580#endif
581
582#ifdef VBOX_WITH_CRASHDUMP_MAGIC
583 /** Pointer to the crash-dump scratch bitmap. */
584 R0PTRTYPE(uint8_t *) pbScratch;
585#endif
586 /** Virtual address of the TSS page used for real mode emulation. */
587 R3PTRTYPE(PVBOXTSS) pRealModeTSS;
588 /** Virtual address of the identity page table used for real mode and protected
589 * mode without paging emulation in EPT mode. */
590 R3PTRTYPE(PX86PD) pNonPagingModeEPTPageTable;
591 } vmx;
592
593 struct
594 {
595 /** Set by the ring-0 side of HM to indicate SVM is supported by the CPU. */
596 bool fSupported;
597 /** Set when we've enabled SVM. */
598 bool fEnabled;
599 /** Set when the hack to ignore VERR_SVM_IN_USE is active.
600 * @todo Safe? */
601 bool fIgnoreInUseError;
602 /** Whether to use virtualized VMSAVE/VMLOAD feature. */
603 bool fVirtVmsaveVmload;
604 /** Whether to use virtual GIF feature. */
605 bool fVGif;
606 /** Whether to use LBR virtualization feature. */
607 bool fLbrVirt;
608 uint8_t u8Alignment0[2];
609
610 /* HWCR MSR (for diagnostics) */
611 uint64_t u64MsrHwcr;
612
613 /** SVM revision. */
614 uint32_t u32Rev;
615 /** SVM feature bits from cpuid 0x8000000a, ring-3 copy. */
616 uint32_t fFeaturesForRing3;
617
618 /** Pause filter counter. */
619 uint16_t cPauseFilter;
620 /** Pause filter treshold in ticks. */
621 uint16_t cPauseFilterThresholdTicks;
622 uint32_t u32Alignment0;
623 } svm;
624
625 /** AVL tree with all patches (active or disabled) sorted by guest instruction address.
626 * @todo For @bugref{9217} this AVL tree must be eliminated and instead
627 * sort aPatches by address and do a safe binary search on it. */
628 AVLOU32TREE PatchTree;
629 uint32_t cPatches;
630 HMTPRPATCH aPatches[64];
631
632 /** Guest allocated memory for patching purposes. */
633 RTGCPTR pGuestPatchMem;
634 /** Current free pointer inside the patch block. */
635 RTGCPTR pFreeGuestPatchMem;
636 /** Size of the guest patch memory block. */
637 uint32_t cbGuestPatchMem;
638
639 /** Last recorded error code during HM ring-0 init. */
640 int32_t rcInit;
641 /** Maximum ASID allowed.
642 * This is mainly for the release log. */
643 uint32_t uMaxAsidForLog;
644 /** World switcher flags (HM_WSF_XXX) for the release log. */
645 uint32_t fWorldSwitcherForLog;
646
647 STAMCOUNTER StatTprPatchSuccess;
648 STAMCOUNTER StatTprPatchFailure;
649 STAMCOUNTER StatTprReplaceSuccessCr8;
650 STAMCOUNTER StatTprReplaceSuccessVmc;
651 STAMCOUNTER StatTprReplaceFailure;
652} HM;
653/** Pointer to HM VM instance data. */
654typedef HM *PHM;
655AssertCompileMemberAlignment(HM, StatTprPatchSuccess, 8);
656AssertCompileMemberAlignment(HM, vmx, 8);
657AssertCompileMemberAlignment(HM, svm, 8);
658
659
660/**
661 * Per-VM ring-0 instance data for HM.
662 */
663typedef struct HMR0PERVM
664{
665 /** Set if nested paging is enabled. */
666 bool fNestedPaging;
667 /** Set if we can support 64-bit guests or not. */
668 bool fAllow64BitGuests;
669 bool afAlignment0[2+4];
670
671 /** The maximum number of resumes loops allowed in ring-0 (safety precaution).
672 * This number is set much higher when RTThreadPreemptIsPending is reliable. */
673 uint32_t cMaxResumeLoops;
674
675 /** Host kernel flags that HM might need to know (SUPKERNELFEATURES_XXX). */
676 uint32_t fHostKernelFeatures;
677
678 /** VT-x specific data. */
679 struct HMR0VMXVM
680 {
681 /** Ring-0 memory object for per-VM VMX structures. */
682 RTR0MEMOBJ hMemObj;
683
684 } vmx;
685
686 /** AMD-V specific data. */
687 struct HMR0SVMVM
688 {
689 /** Set if erratum 170 affects the AMD cpu. */
690 bool fAlwaysFlushTLB;
691 bool afAlignment0[3];
692 /** SVM feature bits from cpuid 0x8000000a, safe ring-0 copy. */
693 uint32_t fFeatures;
694 } svm;
695} HMR0PERVM;
696/** Pointer to HM's per-VM ring-0 instance data. */
697typedef HMR0PERVM *PHMR0PERVM;
698
699
700/** @addtogroup grp_hm_int_svm SVM Internal
701 * @{ */
702/** SVM VMRun function, see SVMR0VMRun(). */
703typedef DECLCALLBACKTYPE(int, FNHMSVMVMRUN,(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhysVMCB));
704/** Pointer to a SVM VMRun function. */
705typedef R0PTRTYPE(FNHMSVMVMRUN *) PFNHMSVMVMRUN;
706
707/**
708 * SVM nested-guest VMCB cache.
709 *
710 * Contains VMCB fields from the nested-guest VMCB before they're modified by
711 * SVM R0 code for hardware-assisted SVM execution of a nested-guest.
712 *
713 * A VMCB field needs to be cached when it needs to be modified for execution using
714 * hardware-assisted SVM and any of the following are true:
715 * - If the original field needs to be inspected during execution of the
716 * nested-guest or \#VMEXIT processing.
717 * - If the field is written back to memory on \#VMEXIT by the physical CPU.
718 *
719 * A VMCB field needs to be restored only when the field is written back to
720 * memory on \#VMEXIT by the physical CPU and thus would be visible to the
721 * guest.
722 *
723 * @remarks Please update hmR3InfoSvmNstGstVmcbCache() when changes are made to
724 * this structure.
725 */
726typedef struct SVMNESTEDVMCBCACHE
727{
728 /** Cache of CRX read intercepts. */
729 uint16_t u16InterceptRdCRx;
730 /** Cache of CRX write intercepts. */
731 uint16_t u16InterceptWrCRx;
732 /** Cache of DRX read intercepts. */
733 uint16_t u16InterceptRdDRx;
734 /** Cache of DRX write intercepts. */
735 uint16_t u16InterceptWrDRx;
736
737 /** Cache of the pause-filter threshold. */
738 uint16_t u16PauseFilterThreshold;
739 /** Cache of the pause-filter count. */
740 uint16_t u16PauseFilterCount;
741
742 /** Cache of exception intercepts. */
743 uint32_t u32InterceptXcpt;
744 /** Cache of control intercepts. */
745 uint64_t u64InterceptCtrl;
746
747 /** Cache of the TSC offset. */
748 uint64_t u64TSCOffset;
749
750 /** Cache of V_INTR_MASKING bit. */
751 bool fVIntrMasking;
752 /** Cache of the nested-paging bit. */
753 bool fNestedPaging;
754 /** Cache of the LBR virtualization bit. */
755 bool fLbrVirt;
756 /** Whether the VMCB is cached by HM. */
757 bool fCacheValid;
758 /** Alignment. */
759 bool afPadding0[4];
760} SVMNESTEDVMCBCACHE;
761/** Pointer to the SVMNESTEDVMCBCACHE structure. */
762typedef SVMNESTEDVMCBCACHE *PSVMNESTEDVMCBCACHE;
763/** Pointer to a const SVMNESTEDVMCBCACHE structure. */
764typedef const SVMNESTEDVMCBCACHE *PCSVMNESTEDVMCBCACHE;
765AssertCompileSizeAlignment(SVMNESTEDVMCBCACHE, 8);
766
767/** @} */
768
769
770/** @addtogroup grp_hm_int_vmx VMX Internal
771 * @{ */
772/**
773 * VMX VMCS information, shared.
774 *
775 * This structure provides information maintained for and during the executing of a
776 * guest (or nested-guest) VMCS (VM control structure) using hardware-assisted VMX.
777 *
778 * Note! The members here are ordered and aligned based on estimated frequency of
779 * usage and grouped to fit within a cache line in hot code paths. Even subtle
780 * changes here have a noticeable effect in the bootsector benchmarks. Modify with
781 * care.
782 */
783typedef struct VMXVMCSINFOSHARED
784{
785 /** @name Real-mode emulation state.
786 * @{ */
787 /** Set if guest was executing in real mode (extra checks). */
788 bool fWasInRealMode;
789 /** Padding. */
790 bool afPadding0[7];
791 struct
792 {
793 X86DESCATTR AttrCS;
794 X86DESCATTR AttrDS;
795 X86DESCATTR AttrES;
796 X86DESCATTR AttrFS;
797 X86DESCATTR AttrGS;
798 X86DESCATTR AttrSS;
799 X86EFLAGS Eflags;
800 bool fRealOnV86Active;
801 bool afPadding1[3];
802 } RealMode;
803 /** @} */
804
805 /** @name LBR MSR data.
806 * @{ */
807 /** List of LastBranch-From-IP MSRs. */
808 uint64_t au64LbrFromIpMsr[32];
809 /** List of LastBranch-To-IP MSRs. */
810 uint64_t au64LbrToIpMsr[32];
811 /** The MSR containing the index to the most recent branch record. */
812 uint64_t u64LbrTosMsr;
813 /** @} */
814} VMXVMCSINFOSHARED;
815/** Pointer to a VMXVMCSINFOSHARED struct. */
816typedef VMXVMCSINFOSHARED *PVMXVMCSINFOSHARED;
817/** Pointer to a const VMXVMCSINFOSHARED struct. */
818typedef const VMXVMCSINFOSHARED *PCVMXVMCSINFOSHARED;
819AssertCompileSizeAlignment(VMXVMCSINFOSHARED, 8);
820
821
822/**
823 * VMX VMCS information, ring-0 only.
824 *
825 * This structure provides information maintained for and during the executing of a
826 * guest (or nested-guest) VMCS (VM control structure) using hardware-assisted VMX.
827 *
828 * Note! The members here are ordered and aligned based on estimated frequency of
829 * usage and grouped to fit within a cache line in hot code paths. Even subtle
830 * changes here have a noticeable effect in the bootsector benchmarks. Modify with
831 * care.
832 */
833typedef struct VMXVMCSINFO
834{
835 /** Pointer to the bits we share with ring-3. */
836 R0PTRTYPE(PVMXVMCSINFOSHARED) pShared;
837
838 /** @name Auxiliary information.
839 * @{ */
840 /** Host-physical address of the EPTP. */
841 RTHCPHYS HCPhysEPTP;
842 /** The VMCS launch state, see VMX_V_VMCS_LAUNCH_STATE_XXX. */
843 uint32_t fVmcsState;
844 /** The VMCS launch state of the shadow VMCS, see VMX_V_VMCS_LAUNCH_STATE_XXX. */
845 uint32_t fShadowVmcsState;
846 /** The host CPU for which its state has been exported to this VMCS. */
847 RTCPUID idHostCpuState;
848 /** The host CPU on which we last executed this VMCS. */
849 RTCPUID idHostCpuExec;
850 /** Number of guest MSRs in the VM-entry MSR-load area. */
851 uint32_t cEntryMsrLoad;
852 /** Number of guest MSRs in the VM-exit MSR-store area. */
853 uint32_t cExitMsrStore;
854 /** Number of host MSRs in the VM-exit MSR-load area. */
855 uint32_t cExitMsrLoad;
856 /** @} */
857
858 /** @name Cache of execution related VMCS fields.
859 * @{ */
860 /** Pin-based VM-execution controls. */
861 uint32_t u32PinCtls;
862 /** Processor-based VM-execution controls. */
863 uint32_t u32ProcCtls;
864 /** Secondary processor-based VM-execution controls. */
865 uint32_t u32ProcCtls2;
866 /** VM-entry controls. */
867 uint32_t u32EntryCtls;
868 /** VM-exit controls. */
869 uint32_t u32ExitCtls;
870 /** Exception bitmap. */
871 uint32_t u32XcptBitmap;
872 /** Page-fault exception error-code mask. */
873 uint32_t u32XcptPFMask;
874 /** Page-fault exception error-code match. */
875 uint32_t u32XcptPFMatch;
876 /** Padding. */
877 uint32_t u32Alignment0;
878 /** TSC offset. */
879 uint64_t u64TscOffset;
880 /** VMCS link pointer. */
881 uint64_t u64VmcsLinkPtr;
882 /** CR0 guest/host mask. */
883 uint64_t u64Cr0Mask;
884 /** CR4 guest/host mask. */
885 uint64_t u64Cr4Mask;
886 /** Current VMX_VMCS_HOST_RIP value (only used in HMR0A.asm). */
887 uint64_t uHostRip;
888 /** Current VMX_VMCS_HOST_RSP value (only used in HMR0A.asm). */
889 uint64_t uHostRsp;
890 /** @} */
891
892 /** @name Host-virtual address of VMCS and related data structures.
893 * @{ */
894 /** The VMCS. */
895 R0PTRTYPE(void *) pvVmcs;
896 /** The shadow VMCS. */
897 R0PTRTYPE(void *) pvShadowVmcs;
898 /** The virtual-APIC page. */
899 R0PTRTYPE(uint8_t *) pbVirtApic;
900 /** The MSR bitmap. */
901 R0PTRTYPE(void *) pvMsrBitmap;
902 /** The VM-entry MSR-load area. */
903 R0PTRTYPE(void *) pvGuestMsrLoad;
904 /** The VM-exit MSR-store area. */
905 R0PTRTYPE(void *) pvGuestMsrStore;
906 /** The VM-exit MSR-load area. */
907 R0PTRTYPE(void *) pvHostMsrLoad;
908 /** @} */
909
910 /** @name Host-physical address of VMCS and related data structures.
911 * @{ */
912 /** The VMCS. */
913 RTHCPHYS HCPhysVmcs;
914 /** The shadow VMCS. */
915 RTHCPHYS HCPhysShadowVmcs;
916 /** The virtual APIC page. */
917 RTHCPHYS HCPhysVirtApic;
918 /** The MSR bitmap. */
919 RTHCPHYS HCPhysMsrBitmap;
920 /** The VM-entry MSR-load area. */
921 RTHCPHYS HCPhysGuestMsrLoad;
922 /** The VM-exit MSR-store area. */
923 RTHCPHYS HCPhysGuestMsrStore;
924 /** The VM-exit MSR-load area. */
925 RTHCPHYS HCPhysHostMsrLoad;
926 /** @} */
927
928 /** @name R0-memory objects address for VMCS and related data structures.
929 * @{ */
930 /** R0-memory object for VMCS and related data structures. */
931 RTR0MEMOBJ hMemObj;
932 /** @} */
933} VMXVMCSINFO;
934/** Pointer to a VMXVMCSINFOR0 struct. */
935typedef VMXVMCSINFO *PVMXVMCSINFO;
936/** Pointer to a const VMXVMCSINFO struct. */
937typedef const VMXVMCSINFO *PCVMXVMCSINFO;
938AssertCompileSizeAlignment(VMXVMCSINFO, 8);
939AssertCompileMemberAlignment(VMXVMCSINFO, u32PinCtls, 4);
940AssertCompileMemberAlignment(VMXVMCSINFO, u64VmcsLinkPtr, 8);
941AssertCompileMemberAlignment(VMXVMCSINFO, pvVmcs, 8);
942AssertCompileMemberAlignment(VMXVMCSINFO, pvShadowVmcs, 8);
943AssertCompileMemberAlignment(VMXVMCSINFO, pbVirtApic, 8);
944AssertCompileMemberAlignment(VMXVMCSINFO, pvMsrBitmap, 8);
945AssertCompileMemberAlignment(VMXVMCSINFO, pvGuestMsrLoad, 8);
946AssertCompileMemberAlignment(VMXVMCSINFO, pvGuestMsrStore, 8);
947AssertCompileMemberAlignment(VMXVMCSINFO, pvHostMsrLoad, 8);
948AssertCompileMemberAlignment(VMXVMCSINFO, HCPhysVmcs, 8);
949AssertCompileMemberAlignment(VMXVMCSINFO, hMemObj, 8);
950
951
952/** @name Host-state restoration flags.
953 * @note If you change these values don't forget to update the assembly
954 * defines as well!
955 * @{
956 */
957#define VMX_RESTORE_HOST_SEL_DS RT_BIT(0)
958#define VMX_RESTORE_HOST_SEL_ES RT_BIT(1)
959#define VMX_RESTORE_HOST_SEL_FS RT_BIT(2)
960#define VMX_RESTORE_HOST_SEL_GS RT_BIT(3)
961#define VMX_RESTORE_HOST_SEL_TR RT_BIT(4)
962#define VMX_RESTORE_HOST_GDTR RT_BIT(5)
963#define VMX_RESTORE_HOST_IDTR RT_BIT(6)
964#define VMX_RESTORE_HOST_GDT_READ_ONLY RT_BIT(7)
965#define VMX_RESTORE_HOST_GDT_NEED_WRITABLE RT_BIT(8)
966#define VMX_RESTORE_HOST_CAN_USE_WRFSBASE_AND_WRGSBASE RT_BIT(9)
967/**
968 * This _must_ be the top most bit, so that we can easily that that it and
969 * something else is set w/o having to do two checks like this:
970 * @code
971 * if ( (pVCpu->hm.s.vmx.fRestoreHostFlags & VMX_RESTORE_HOST_REQUIRED)
972 * && (pVCpu->hm.s.vmx.fRestoreHostFlags & ~VMX_RESTORE_HOST_REQUIRED))
973 * @endcode
974 * Instead we can then do:
975 * @code
976 * if (pVCpu->hm.s.vmx.fRestoreHostFlags > VMX_RESTORE_HOST_REQUIRED)
977 * @endcode
978 */
979#define VMX_RESTORE_HOST_REQUIRED RT_BIT(10)
980/** @} */
981
982/**
983 * Host-state restoration structure.
984 *
985 * This holds host-state fields that require manual restoration.
986 * Assembly version found in HMInternal.mac (should be automatically verified).
987 */
988typedef struct VMXRESTOREHOST
989{
990 RTSEL uHostSelDS; /**< 0x00 */
991 RTSEL uHostSelES; /**< 0x02 */
992 RTSEL uHostSelFS; /**< 0x04 */
993 X86XDTR64 HostGdtr; /**< 0x06 - should be aligned by its 64-bit member. */
994 RTSEL uHostSelGS; /**< 0x10 */
995 RTSEL uHostSelTR; /**< 0x12 */
996 RTSEL uHostSelSS; /**< 0x14 - not restored, just for fetching */
997 X86XDTR64 HostGdtrRw; /**< 0x16 - should be aligned by its 64-bit member. */
998 RTSEL uHostSelCS; /**< 0x20 - not restored, just for fetching */
999 uint8_t abPadding1[4]; /**< 0x22 */
1000 X86XDTR64 HostIdtr; /**< 0x26 - should be aligned by its 64-bit member. */
1001 uint64_t uHostFSBase; /**< 0x30 */
1002 uint64_t uHostGSBase; /**< 0x38 */
1003} VMXRESTOREHOST;
1004/** Pointer to VMXRESTOREHOST. */
1005typedef VMXRESTOREHOST *PVMXRESTOREHOST;
1006AssertCompileSize(X86XDTR64, 10);
1007AssertCompileMemberOffset(VMXRESTOREHOST, HostGdtr.uAddr, 0x08);
1008AssertCompileMemberOffset(VMXRESTOREHOST, HostGdtrRw.uAddr, 0x18);
1009AssertCompileMemberOffset(VMXRESTOREHOST, HostIdtr.uAddr, 0x28);
1010AssertCompileMemberOffset(VMXRESTOREHOST, uHostFSBase, 0x30);
1011AssertCompileSize(VMXRESTOREHOST, 64);
1012AssertCompileSizeAlignment(VMXRESTOREHOST, 8);
1013
1014/**
1015 * VMX StartVM function.
1016 *
1017 * @returns VBox status code (no informational stuff).
1018 * @param pVmcsInfo Pointer to the VMCS info (for cached host RIP and RSP).
1019 * @param pVCpu Pointer to the cross context per-CPU structure.
1020 * @param fResume Whether to use VMRESUME (true) or VMLAUNCH (false).
1021 */
1022typedef DECLCALLBACKTYPE(int, FNHMVMXSTARTVM,(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume));
1023/** Pointer to a VMX StartVM function. */
1024typedef R0PTRTYPE(FNHMVMXSTARTVM *) PFNHMVMXSTARTVM;
1025/** @} */
1026
1027/**
1028 * HM VMCPU Instance data.
1029 *
1030 * Note! If you change members of this struct, make sure to check if the
1031 * assembly counterpart in HMInternal.mac needs to be updated as well.
1032 *
1033 * Note! The members here are ordered and aligned based on estimated frequency of
1034 * usage and grouped to fit within a cache line in hot code paths. Even subtle
1035 * changes here have a noticeable effect in the bootsector benchmarks. Modify with
1036 * care.
1037 */
1038typedef struct HMCPU
1039{
1040 /** Set when the TLB has been checked until we return from the world switch. */
1041 bool volatile fCheckedTLBFlush;
1042 /** Set when we're using VT-x or AMD-V at that moment.
1043 * @todo r=bird: Misleading description. For AMD-V this will be set the first
1044 * time HMCanExecuteGuest() is called and only cleared again by
1045 * HMR3ResetCpu(). For VT-x it will be set by HMCanExecuteGuest when we
1046 * can execute something in VT-x mode, and cleared if we cannot.
1047 *
1048 * The field is much more about recording the last HMCanExecuteGuest
1049 * return value than anything about any "moment". */
1050 bool fActive;
1051
1052 /** Whether we should use the debug loop because of single stepping or special
1053 * debug breakpoints / events are armed. */
1054 bool fUseDebugLoop;
1055
1056 /** Whether \#UD needs to be intercepted (required by certain GIM providers). */
1057 bool fGIMTrapXcptUD;
1058 /** Whether \#GP needs to be intercepted for mesa driver workaround. */
1059 bool fTrapXcptGpForLovelyMesaDrv;
1060 /** Whether we're executing a single instruction. */
1061 bool fSingleInstruction;
1062
1063 bool afAlignment0[2];
1064
1065 /** An additional error code used for some gurus. */
1066 uint32_t u32HMError;
1067 /** The last exit-to-ring-3 reason. */
1068 int32_t rcLastExitToR3;
1069 /** CPU-context changed flags (see HM_CHANGED_xxx). */
1070 uint64_t fCtxChanged;
1071
1072 /** VT-x data. */
1073 struct HMCPUVMX
1074 {
1075 /** @name Guest information.
1076 * @{ */
1077 /** Guest VMCS information shared with ring-3. */
1078 VMXVMCSINFOSHARED VmcsInfo;
1079 /** Nested-guest VMCS information shared with ring-3. */
1080 VMXVMCSINFOSHARED VmcsInfoNstGst;
1081 /** Whether the nested-guest VMCS was the last current VMCS (shadow copy for ring-3).
1082 * @see HMR0PERVCPU::vmx.fSwitchedToNstGstVmcs */
1083 bool fSwitchedToNstGstVmcsCopyForRing3;
1084 /** Whether the static guest VMCS controls has been merged with the
1085 * nested-guest VMCS controls. */
1086 bool fMergedNstGstCtls;
1087 /** Whether the nested-guest VMCS has been copied to the shadow VMCS. */
1088 bool fCopiedNstGstToShadowVmcs;
1089 /** Whether flushing the TLB is required due to switching to/from the
1090 * nested-guest. */
1091 bool fSwitchedNstGstFlushTlb;
1092 /** Alignment. */
1093 bool afAlignment0[4];
1094 /** Cached guest APIC-base MSR for identifying when to map the APIC-access page. */
1095 uint64_t u64GstMsrApicBase;
1096 /** @} */
1097
1098 /** @name Error reporting and diagnostics.
1099 * @{ */
1100 /** VT-x error-reporting (mainly for ring-3 propagation). */
1101 struct
1102 {
1103 RTCPUID idCurrentCpu;
1104 RTCPUID idEnteredCpu;
1105 RTHCPHYS HCPhysCurrentVmcs;
1106 uint32_t u32VmcsRev;
1107 uint32_t u32InstrError;
1108 uint32_t u32ExitReason;
1109 uint32_t u32GuestIntrState;
1110 } LastError;
1111 /** @} */
1112 } vmx;
1113
1114 /** SVM data. */
1115 struct HMCPUSVM
1116 {
1117 /** Whether to emulate long mode support for sysenter/sysexit like intel CPUs
1118 * does. This means intercepting \#UD to emulate the instructions in
1119 * long-mode and to intercept reads and writes to the SYSENTER MSRs in order to
1120 * preserve the upper 32 bits written to them (AMD will ignore and discard). */
1121 bool fEmulateLongModeSysEnterExit;
1122 uint8_t au8Alignment0[7];
1123
1124 /** Cache of the nested-guest's VMCB fields that we modify in order to run the
1125 * nested-guest using AMD-V. This will be restored on \#VMEXIT. */
1126 SVMNESTEDVMCBCACHE NstGstVmcbCache;
1127 } svm;
1128
1129 /** Event injection state. */
1130 HMEVENT Event;
1131
1132 /** Current shadow paging mode for updating CR4.
1133 * @todo move later (@bugref{9217}). */
1134 PGMMODE enmShadowMode;
1135 uint32_t u32TemporaryPadding;
1136
1137 /** The PAE PDPEs used with Nested Paging (only valid when
1138 * VMCPU_FF_HM_UPDATE_PAE_PDPES is set). */
1139 X86PDPE aPdpes[4];
1140
1141 /* These two comes because they are accessed from assembly and we don't
1142 want to detail all the stats in the assembly version of this structure. */
1143 STAMCOUNTER StatVmxWriteHostRip;
1144 STAMCOUNTER StatVmxWriteHostRsp;
1145 STAMCOUNTER StatVmxVmLaunch;
1146 STAMCOUNTER StatVmxVmResume;
1147
1148 STAMPROFILEADV StatEntry;
1149 STAMPROFILEADV StatPreExit;
1150 STAMPROFILEADV StatExitHandling;
1151 STAMPROFILEADV StatExitIO;
1152 STAMPROFILEADV StatExitMovCRx;
1153 STAMPROFILEADV StatExitXcptNmi;
1154 STAMPROFILEADV StatExitVmentry;
1155 STAMPROFILEADV StatImportGuestState;
1156 STAMPROFILEADV StatExportGuestState;
1157 STAMPROFILEADV StatLoadGuestFpuState;
1158 STAMPROFILEADV StatInGC;
1159 STAMPROFILEADV StatPoke;
1160 STAMPROFILEADV StatSpinPoke;
1161 STAMPROFILEADV StatSpinPokeFailed;
1162
1163 STAMCOUNTER StatInjectInterrupt;
1164 STAMCOUNTER StatInjectXcpt;
1165 STAMCOUNTER StatInjectReflect;
1166 STAMCOUNTER StatInjectConvertDF;
1167 STAMCOUNTER StatInjectInterpret;
1168 STAMCOUNTER StatInjectReflectNPF;
1169
1170 STAMCOUNTER StatExitAll;
1171 STAMCOUNTER StatNestedExitAll;
1172 STAMCOUNTER StatExitShadowNM;
1173 STAMCOUNTER StatExitGuestNM;
1174 STAMCOUNTER StatExitShadowPF; /**< Misleading, currently used for MMIO \#PFs as well. */
1175 STAMCOUNTER StatExitShadowPFEM;
1176 STAMCOUNTER StatExitGuestPF;
1177 STAMCOUNTER StatExitGuestUD;
1178 STAMCOUNTER StatExitGuestSS;
1179 STAMCOUNTER StatExitGuestNP;
1180 STAMCOUNTER StatExitGuestTS;
1181 STAMCOUNTER StatExitGuestOF;
1182 STAMCOUNTER StatExitGuestGP;
1183 STAMCOUNTER StatExitGuestDE;
1184 STAMCOUNTER StatExitGuestDF;
1185 STAMCOUNTER StatExitGuestBR;
1186 STAMCOUNTER StatExitGuestAC;
1187 STAMCOUNTER StatExitGuestDB;
1188 STAMCOUNTER StatExitGuestMF;
1189 STAMCOUNTER StatExitGuestBP;
1190 STAMCOUNTER StatExitGuestXF;
1191 STAMCOUNTER StatExitGuestXcpUnk;
1192 STAMCOUNTER StatExitDRxWrite;
1193 STAMCOUNTER StatExitDRxRead;
1194 STAMCOUNTER StatExitCR0Read;
1195 STAMCOUNTER StatExitCR2Read;
1196 STAMCOUNTER StatExitCR3Read;
1197 STAMCOUNTER StatExitCR4Read;
1198 STAMCOUNTER StatExitCR8Read;
1199 STAMCOUNTER StatExitCR0Write;
1200 STAMCOUNTER StatExitCR2Write;
1201 STAMCOUNTER StatExitCR3Write;
1202 STAMCOUNTER StatExitCR4Write;
1203 STAMCOUNTER StatExitCR8Write;
1204 STAMCOUNTER StatExitRdmsr;
1205 STAMCOUNTER StatExitWrmsr;
1206 STAMCOUNTER StatExitClts;
1207 STAMCOUNTER StatExitXdtrAccess;
1208 STAMCOUNTER StatExitLmsw;
1209 STAMCOUNTER StatExitIOWrite;
1210 STAMCOUNTER StatExitIORead;
1211 STAMCOUNTER StatExitIOStringWrite;
1212 STAMCOUNTER StatExitIOStringRead;
1213 STAMCOUNTER StatExitIntWindow;
1214 STAMCOUNTER StatExitExtInt;
1215 STAMCOUNTER StatExitHostNmiInGC;
1216 STAMCOUNTER StatExitHostNmiInGCIpi;
1217 STAMCOUNTER StatExitPreemptTimer;
1218 STAMCOUNTER StatExitTprBelowThreshold;
1219 STAMCOUNTER StatExitTaskSwitch;
1220 STAMCOUNTER StatExitApicAccess;
1221 STAMCOUNTER StatExitReasonNpf;
1222
1223 STAMCOUNTER StatNestedExitReasonNpf;
1224
1225 STAMCOUNTER StatFlushPage;
1226 STAMCOUNTER StatFlushPageManual;
1227 STAMCOUNTER StatFlushPhysPageManual;
1228 STAMCOUNTER StatFlushTlb;
1229 STAMCOUNTER StatFlushTlbNstGst;
1230 STAMCOUNTER StatFlushTlbManual;
1231 STAMCOUNTER StatFlushTlbWorldSwitch;
1232 STAMCOUNTER StatNoFlushTlbWorldSwitch;
1233 STAMCOUNTER StatFlushEntire;
1234 STAMCOUNTER StatFlushAsid;
1235 STAMCOUNTER StatFlushNestedPaging;
1236 STAMCOUNTER StatFlushTlbInvlpgVirt;
1237 STAMCOUNTER StatFlushTlbInvlpgPhys;
1238 STAMCOUNTER StatTlbShootdown;
1239 STAMCOUNTER StatTlbShootdownFlush;
1240
1241 STAMCOUNTER StatSwitchPendingHostIrq;
1242 STAMCOUNTER StatSwitchTprMaskedIrq;
1243 STAMCOUNTER StatSwitchGuestIrq;
1244 STAMCOUNTER StatSwitchHmToR3FF;
1245 STAMCOUNTER StatSwitchVmReq;
1246 STAMCOUNTER StatSwitchPgmPoolFlush;
1247 STAMCOUNTER StatSwitchDma;
1248 STAMCOUNTER StatSwitchExitToR3;
1249 STAMCOUNTER StatSwitchLongJmpToR3;
1250 STAMCOUNTER StatSwitchMaxResumeLoops;
1251 STAMCOUNTER StatSwitchHltToR3;
1252 STAMCOUNTER StatSwitchApicAccessToR3;
1253 STAMCOUNTER StatSwitchPreempt;
1254 STAMCOUNTER StatSwitchNstGstVmexit;
1255
1256 STAMCOUNTER StatTscParavirt;
1257 STAMCOUNTER StatTscOffset;
1258 STAMCOUNTER StatTscIntercept;
1259
1260 STAMCOUNTER StatDRxArmed;
1261 STAMCOUNTER StatDRxContextSwitch;
1262 STAMCOUNTER StatDRxIoCheck;
1263
1264 STAMCOUNTER StatExportMinimal;
1265 STAMCOUNTER StatExportFull;
1266 STAMCOUNTER StatLoadGuestFpu;
1267 STAMCOUNTER StatExportHostState;
1268
1269 STAMCOUNTER StatVmxCheckBadRmSelBase;
1270 STAMCOUNTER StatVmxCheckBadRmSelLimit;
1271 STAMCOUNTER StatVmxCheckBadRmSelAttr;
1272 STAMCOUNTER StatVmxCheckBadV86SelBase;
1273 STAMCOUNTER StatVmxCheckBadV86SelLimit;
1274 STAMCOUNTER StatVmxCheckBadV86SelAttr;
1275 STAMCOUNTER StatVmxCheckRmOk;
1276 STAMCOUNTER StatVmxCheckBadSel;
1277 STAMCOUNTER StatVmxCheckBadRpl;
1278 STAMCOUNTER StatVmxCheckPmOk;
1279
1280#ifdef VBOX_WITH_STATISTICS
1281 R3PTRTYPE(PSTAMCOUNTER) paStatExitReason;
1282 R0PTRTYPE(PSTAMCOUNTER) paStatExitReasonR0;
1283 R3PTRTYPE(PSTAMCOUNTER) paStatInjectedIrqs;
1284 R0PTRTYPE(PSTAMCOUNTER) paStatInjectedIrqsR0;
1285 R3PTRTYPE(PSTAMCOUNTER) paStatInjectedXcpts;
1286 R0PTRTYPE(PSTAMCOUNTER) paStatInjectedXcptsR0;
1287 R3PTRTYPE(PSTAMCOUNTER) paStatNestedExitReason;
1288 R0PTRTYPE(PSTAMCOUNTER) paStatNestedExitReasonR0;
1289#endif
1290#ifdef HM_PROFILE_EXIT_DISPATCH
1291 STAMPROFILEADV StatExitDispatch;
1292#endif
1293} HMCPU;
1294/** Pointer to HM VMCPU instance data. */
1295typedef HMCPU *PHMCPU;
1296AssertCompileMemberAlignment(HMCPU, fCheckedTLBFlush, 4);
1297AssertCompileMemberAlignment(HMCPU, fCtxChanged, 8);
1298AssertCompileMemberAlignment(HMCPU, vmx, 8);
1299AssertCompileMemberAlignment(HMCPU, vmx.VmcsInfo, 8);
1300AssertCompileMemberAlignment(HMCPU, vmx.VmcsInfoNstGst, 8);
1301AssertCompileMemberAlignment(HMCPU, svm, 8);
1302AssertCompileMemberAlignment(HMCPU, Event, 8);
1303
1304
1305/**
1306 * HM per-VCpu ring-0 only instance data.
1307 */
1308typedef struct HMR0PERVCPU
1309{
1310 /** World switch exit counter. */
1311 uint32_t volatile cWorldSwitchExits;
1312 /** TLB flush count. */
1313 uint32_t cTlbFlushes;
1314 /** The last CPU we were executing code on (NIL_RTCPUID for the first time). */
1315 RTCPUID idLastCpu;
1316 /** The CPU ID of the CPU currently owning the VMCS. Set in
1317 * HMR0Enter and cleared in HMR0Leave. */
1318 RTCPUID idEnteredCpu;
1319 /** Current ASID in use by the VM. */
1320 uint32_t uCurrentAsid;
1321
1322 /** Set if we need to flush the TLB during the world switch. */
1323 bool fForceTLBFlush;
1324 /** Whether we've completed the inner HM leave function. */
1325 bool fLeaveDone;
1326 /** Whether we're using the hyper DR7 or guest DR7. */
1327 bool fUsingHyperDR7;
1328 /** Whether we are currently executing in the debug loop.
1329 * Mainly for assertions. */
1330 bool fUsingDebugLoop;
1331 /** Set if we using the debug loop and wish to intercept RDTSC. */
1332 bool fDebugWantRdTscExit;
1333 /** Set if XCR0 needs to be saved/restored when entering/exiting guest code
1334 * execution. */
1335 bool fLoadSaveGuestXcr0;
1336 /** Set if we need to clear the trap flag because of single stepping. */
1337 bool fClearTrapFlag;
1338
1339 bool afPadding1[1];
1340 /** World switcher flags (HM_WSF_XXX - was CPUMCTX::fWorldSwitcher in 6.1). */
1341 uint32_t fWorldSwitcher;
1342
1343 /** VT-x data. */
1344 struct HMR0CPUVMX
1345 {
1346 /** Ring-0 pointer to the hardware-assisted VMX execution function. */
1347 PFNHMVMXSTARTVM pfnStartVm;
1348
1349 /** @name Guest information.
1350 * @{ */
1351 /** Guest VMCS information. */
1352 VMXVMCSINFO VmcsInfo;
1353 /** Nested-guest VMCS information. */
1354 VMXVMCSINFO VmcsInfoNstGst;
1355 /* Whether the nested-guest VMCS was the last current VMCS (authoritative copy).
1356 * @see HMCPU::vmx.fSwitchedToNstGstVmcsCopyForRing3 */
1357 bool fSwitchedToNstGstVmcs;
1358 bool afAlignment0[7];
1359 /** @} */
1360
1361 /** @name Host information.
1362 * @{ */
1363 /** Host LSTAR MSR to restore lazily while leaving VT-x. */
1364 uint64_t u64HostMsrLStar;
1365 /** Host STAR MSR to restore lazily while leaving VT-x. */
1366 uint64_t u64HostMsrStar;
1367 /** Host SF_MASK MSR to restore lazily while leaving VT-x. */
1368 uint64_t u64HostMsrSfMask;
1369 /** Host KernelGS-Base MSR to restore lazily while leaving VT-x. */
1370 uint64_t u64HostMsrKernelGsBase;
1371 /** The mask of lazy MSRs swap/restore state, see VMX_LAZY_MSRS_XXX. */
1372 uint32_t fLazyMsrs;
1373 /** Whether the host MSR values are up-to-date in the auto-load/store MSR area. */
1374 bool fUpdatedHostAutoMsrs;
1375 /** Alignment. */
1376 uint8_t au8Alignment0[3];
1377 /** Which host-state bits to restore before being preempted, see
1378 * VMX_RESTORE_HOST_XXX. */
1379 uint32_t fRestoreHostFlags;
1380 /** Alignment. */
1381 uint32_t u32Alignment0;
1382 /** The host-state restoration structure. */
1383 VMXRESTOREHOST RestoreHost;
1384 /** @} */
1385 } vmx;
1386
1387 /** SVM data. */
1388 struct HMR0CPUSVM
1389 {
1390 /** Ring 0 handlers for VT-x. */
1391 PFNHMSVMVMRUN pfnVMRun;
1392
1393 /** Physical address of the host VMCB which holds additional host-state. */
1394 RTHCPHYS HCPhysVmcbHost;
1395 /** R0 memory object for the host VMCB which holds additional host-state. */
1396 RTR0MEMOBJ hMemObjVmcbHost;
1397
1398 /** Physical address of the guest VMCB. */
1399 RTHCPHYS HCPhysVmcb;
1400 /** R0 memory object for the guest VMCB. */
1401 RTR0MEMOBJ hMemObjVmcb;
1402 /** Pointer to the guest VMCB. */
1403 R0PTRTYPE(PSVMVMCB) pVmcb;
1404
1405 /** Physical address of the MSR bitmap (8 KB). */
1406 RTHCPHYS HCPhysMsrBitmap;
1407 /** R0 memory object for the MSR bitmap (8 KB). */
1408 RTR0MEMOBJ hMemObjMsrBitmap;
1409 /** Pointer to the MSR bitmap. */
1410 R0PTRTYPE(void *) pvMsrBitmap;
1411
1412 /** Whether VTPR with V_INTR_MASKING set is in effect, indicating
1413 * we should check if the VTPR changed on every VM-exit. */
1414 bool fSyncVTpr;
1415 bool afAlignment[7];
1416
1417 /** Host's TSC_AUX MSR (used when RDTSCP doesn't cause VM-exits). */
1418 uint64_t u64HostTscAux;
1419
1420 /** For saving stack space, the disassembler state is allocated here
1421 * instead of on the stack. */
1422 DISCPUSTATE DisState;
1423 } svm;
1424} HMR0PERVCPU;
1425/** Pointer to HM ring-0 VMCPU instance data. */
1426typedef HMR0PERVCPU *PHMR0PERVCPU;
1427AssertCompileMemberAlignment(HMR0PERVCPU, cWorldSwitchExits, 4);
1428AssertCompileMemberAlignment(HMR0PERVCPU, fForceTLBFlush, 4);
1429AssertCompileMemberAlignment(HMR0PERVCPU, vmx.RestoreHost, 8);
1430
1431
1432/** @name HM_WSF_XXX - @bugref{9453}, @bugref{9087}
1433 * @{ */
1434/** Touch IA32_PRED_CMD.IBPB on VM exit. */
1435#define HM_WSF_IBPB_EXIT RT_BIT_32(0)
1436/** Touch IA32_PRED_CMD.IBPB on VM entry. */
1437#define HM_WSF_IBPB_ENTRY RT_BIT_32(1)
1438/** Touch IA32_FLUSH_CMD.L1D on VM entry. */
1439#define HM_WSF_L1D_ENTRY RT_BIT_32(2)
1440/** Flush MDS buffers on VM entry. */
1441#define HM_WSF_MDS_ENTRY RT_BIT_32(3)
1442/** @} */
1443
1444
1445#ifdef IN_RING0
1446extern uint32_t g_uHmMaxAsid;
1447
1448VMMR0_INT_DECL(PHMPHYSCPU) hmR0GetCurrentCpu(void);
1449VMMR0_INT_DECL(int) hmR0EnterCpu(PVMCPUCC pVCpu);
1450
1451# ifdef VBOX_STRICT
1452# define HM_DUMP_REG_FLAGS_GPRS RT_BIT(0)
1453# define HM_DUMP_REG_FLAGS_FPU RT_BIT(1)
1454# define HM_DUMP_REG_FLAGS_MSRS RT_BIT(2)
1455# define HM_DUMP_REG_FLAGS_ALL (HM_DUMP_REG_FLAGS_GPRS | HM_DUMP_REG_FLAGS_FPU | HM_DUMP_REG_FLAGS_MSRS)
1456
1457VMMR0_INT_DECL(void) hmR0DumpRegs(PVMCPUCC pVCpu, uint32_t fFlags);
1458VMMR0_INT_DECL(void) hmR0DumpDescriptor(PCX86DESCHC pDesc, RTSEL Sel, const char *pszMsg);
1459# endif
1460
1461DECLASM(void) hmR0MdsClear(void);
1462#endif /* IN_RING0 */
1463
1464
1465/** @addtogroup grp_hm_int_svm SVM Internal
1466 * @{ */
1467VMM_INT_DECL(int) hmEmulateSvmMovTpr(PVMCC pVM, PVMCPUCC pVCpu);
1468
1469/**
1470 * Prepares for and executes VMRUN (64-bit register context).
1471 *
1472 * @returns VBox status code (no informational stuff).
1473 * @param pVM The cross context VM structure. (Not used.)
1474 * @param pVCpu The cross context virtual CPU structure.
1475 * @param HCPhyspVMCB Physical address of the VMCB.
1476 *
1477 * @remarks With spectre mitigations and the usual need for speed (/ micro
1478 * optimizations), we have a bunch of variations of this code depending
1479 * on a few precoditions. In release builds, the code is entirely
1480 * without conditionals. Debug builds have a couple of assertions that
1481 * shouldn't ever be triggered.
1482 *
1483 * @{
1484 */
1485DECLASM(int) hmR0SvmVmRun_SansXcr0_SansIbpbEntry_SansIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1486DECLASM(int) hmR0SvmVmRun_WithXcr0_SansIbpbEntry_SansIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1487DECLASM(int) hmR0SvmVmRun_SansXcr0_WithIbpbEntry_SansIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1488DECLASM(int) hmR0SvmVmRun_WithXcr0_WithIbpbEntry_SansIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1489DECLASM(int) hmR0SvmVmRun_SansXcr0_SansIbpbEntry_WithIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1490DECLASM(int) hmR0SvmVmRun_WithXcr0_SansIbpbEntry_WithIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1491DECLASM(int) hmR0SvmVmRun_SansXcr0_WithIbpbEntry_WithIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1492DECLASM(int) hmR0SvmVmRun_WithXcr0_WithIbpbEntry_WithIbpbExit(PVMCC pVM, PVMCPUCC pVCpu, RTHCPHYS HCPhyspVMCB);
1493/** @} */
1494
1495/** @} */
1496
1497
1498/** @addtogroup grp_hm_int_vmx VMX Internal
1499 * @{ */
1500VMM_INT_DECL(PVMXVMCSINFOSHARED) hmGetVmxActiveVmcsInfoShared(PVMCPUCC pVCpu);
1501
1502/**
1503 * Used on platforms with poor inline assembly support to retrieve all the
1504 * info from the CPU and put it in the @a pRestoreHost structure.
1505 */
1506DECLASM(void) hmR0VmxExportHostSegmentRegsAsmHlp(PVMXRESTOREHOST pRestoreHost, bool fHaveFsGsBase);
1507
1508/**
1509 * Restores some host-state fields that need not be done on every VM-exit.
1510 *
1511 * @returns VBox status code.
1512 * @param fRestoreHostFlags Flags of which host registers needs to be
1513 * restored.
1514 * @param pRestoreHost Pointer to the host-restore structure.
1515 */
1516DECLASM(int) VMXRestoreHostState(uint32_t fRestoreHostFlags, PVMXRESTOREHOST pRestoreHost);
1517
1518/**
1519 * VMX StartVM functions.
1520 *
1521 * @returns VBox status code (no informational stuff).
1522 * @param pVM Pointer to the cross context VM structure.
1523 * @param pVCpu Pointer to the cross context per-CPU structure.
1524 * @param fResume Whether to use VMRESUME (true) or VMLAUNCH (false).
1525 *
1526 * @remarks With spectre mitigations and the usual need for speed (/ micro
1527 * optimizations), we have a bunch of variations of this code depending
1528 * on a few precoditions. In release builds, the code is entirely
1529 * without conditionals. Debug builds have a couple of assertions that
1530 * shouldn't ever be triggered.
1531 *
1532 * @{
1533 */
1534DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_SansL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1535DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_SansL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1536DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_SansL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1537DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_SansL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1538DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_WithL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1539DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_WithL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1540DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_WithL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1541DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_WithL1dEntry_SansMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1542DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_SansL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1543DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_SansL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1544DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_SansL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1545DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_SansL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1546DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_WithL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1547DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_WithL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1548DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_WithL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1549DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_WithL1dEntry_WithMdsEntry_SansIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1550DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_SansL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1551DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_SansL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1552DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_SansL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1553DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_SansL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1554DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_WithL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1555DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_WithL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1556DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_WithL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1557DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_WithL1dEntry_SansMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1558DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_SansL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1559DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_SansL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1560DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_SansL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1561DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_SansL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1562DECLASM(int) hmR0VmxStartVm_SansXcr0_SansIbpbEntry_WithL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1563DECLASM(int) hmR0VmxStartVm_WithXcr0_SansIbpbEntry_WithL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1564DECLASM(int) hmR0VmxStartVm_SansXcr0_WithIbpbEntry_WithL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1565DECLASM(int) hmR0VmxStartVm_WithXcr0_WithIbpbEntry_WithL1dEntry_WithMdsEntry_WithIbpbExit(PVMXVMCSINFO pVmcsInfo, PVMCPUCC pVCpu, bool fResume);
1566/** @} */
1567
1568/** @} */
1569
1570/** @} */
1571
1572RT_C_DECLS_END
1573
1574#endif /* !VMM_INCLUDED_SRC_include_HMInternal_h */
1575
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