VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR3/PGMBth.h@ 45103

Last change on this file since 45103 was 45103, checked in by vboxsync, 12 years ago

PGMPool: Eliminated fictive page (except NIL). #6367

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 10.2 KB
Line 
1/* $Id: PGMBth.h 45103 2013-03-20 11:13:27Z vboxsync $ */
2/** @file
3 * VBox - Page Manager / Monitor, Shadow+Guest Paging Template.
4 */
5
6/*
7 * Copyright (C) 2006-2012 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
19/*******************************************************************************
20* Internal Functions *
21*******************************************************************************/
22RT_C_DECLS_BEGIN
23PGM_BTH_DECL(int, InitData)(PVM pVM, PPGMMODEDATA pModeData, bool fResolveGCAndR0);
24PGM_BTH_DECL(int, Enter)(PVMCPU pVCpu, RTGCPHYS GCPhysCR3);
25PGM_BTH_DECL(int, Relocate)(PVMCPU pVCpu, RTGCPTR offDelta);
26
27PGM_BTH_DECL(int, Trap0eHandler)(PVMCPU pVCpu, RTGCUINT uErr, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, bool *pfLockTaken);
28PGM_BTH_DECL(int, SyncCR3)(PVMCPU pVCpu, uint64_t cr0, uint64_t cr3, uint64_t cr4, bool fGlobal);
29PGM_BTH_DECL(int, VerifyAccessSyncPage)(PVMCPU pVCpu, RTGCPTR Addr, unsigned fPage, unsigned uError);
30PGM_BTH_DECL(int, InvalidatePage)(PVMCPU pVCpu, RTGCPTR GCPtrPage);
31PGM_BTH_DECL(int, PrefetchPage)(PVMCPU pVCpu, RTGCPTR GCPtrPage);
32PGM_BTH_DECL(unsigned, AssertCR3)(PVMCPU pVCpu, uint64_t cr3, uint64_t cr4, RTGCPTR GCPtr = 0, RTGCPTR cb = ~(RTGCPTR)0);
33PGM_BTH_DECL(int, MapCR3)(PVMCPU pVCpu, RTGCPHYS GCPhysCR3);
34PGM_BTH_DECL(int, UnmapCR3)(PVMCPU pVCpu);
35RT_C_DECLS_END
36
37
38/**
39 * Initializes the both bit of the paging mode data.
40 *
41 * @returns VBox status code.
42 * @param pVM Pointer to the VM.
43 * @param fResolveGCAndR0 Indicate whether or not GC and Ring-0 symbols can be resolved now.
44 * This is used early in the init process to avoid trouble with PDM
45 * not being initialized yet.
46 */
47PGM_BTH_DECL(int, InitData)(PVM pVM, PPGMMODEDATA pModeData, bool fResolveGCAndR0)
48{
49 Assert(pModeData->uShwType == PGM_SHW_TYPE); Assert(pModeData->uGstType == PGM_GST_TYPE);
50
51 /* Ring 3 */
52 pModeData->pfnR3BthRelocate = PGM_BTH_NAME(Relocate);
53 pModeData->pfnR3BthSyncCR3 = PGM_BTH_NAME(SyncCR3);
54 pModeData->pfnR3BthInvalidatePage = PGM_BTH_NAME(InvalidatePage);
55 pModeData->pfnR3BthPrefetchPage = PGM_BTH_NAME(PrefetchPage);
56 pModeData->pfnR3BthVerifyAccessSyncPage = PGM_BTH_NAME(VerifyAccessSyncPage);
57#ifdef VBOX_STRICT
58 pModeData->pfnR3BthAssertCR3 = PGM_BTH_NAME(AssertCR3);
59#endif
60 pModeData->pfnR3BthMapCR3 = PGM_BTH_NAME(MapCR3);
61 pModeData->pfnR3BthUnmapCR3 = PGM_BTH_NAME(UnmapCR3);
62
63 if (fResolveGCAndR0)
64 {
65 int rc;
66
67#if PGM_SHW_TYPE != PGM_TYPE_AMD64 && PGM_SHW_TYPE != PGM_TYPE_NESTED && PGM_SHW_TYPE != PGM_TYPE_EPT /* No AMD64 for traditional virtualization, only VT-x and AMD-V. */
68 /* GC */
69 rc = PDMR3LdrGetSymbolRC(pVM, NULL, PGM_BTH_NAME_RC_STR(Trap0eHandler), &pModeData->pfnRCBthTrap0eHandler);
70 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_RC_STR(Trap0eHandler), rc), rc);
71 rc = PDMR3LdrGetSymbolRC(pVM, NULL, PGM_BTH_NAME_RC_STR(InvalidatePage), &pModeData->pfnRCBthInvalidatePage);
72 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_RC_STR(InvalidatePage), rc), rc);
73 rc = PDMR3LdrGetSymbolRC(pVM, NULL, PGM_BTH_NAME_RC_STR(SyncCR3), &pModeData->pfnRCBthSyncCR3);
74 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_RC_STR(SyncCR3), rc), rc);
75 rc = PDMR3LdrGetSymbolRC(pVM, NULL, PGM_BTH_NAME_RC_STR(PrefetchPage), &pModeData->pfnRCBthPrefetchPage);
76 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_RC_STR(PrefetchPage), rc), rc);
77 rc = PDMR3LdrGetSymbolRC(pVM, NULL, PGM_BTH_NAME_RC_STR(VerifyAccessSyncPage),&pModeData->pfnRCBthVerifyAccessSyncPage);
78 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_RC_STR(VerifyAccessSyncPage), rc), rc);
79# ifdef VBOX_STRICT
80 rc = PDMR3LdrGetSymbolRC(pVM, NULL, PGM_BTH_NAME_RC_STR(AssertCR3), &pModeData->pfnRCBthAssertCR3);
81 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_RC_STR(AssertCR3), rc), rc);
82# endif
83 rc = PDMR3LdrGetSymbolRC(pVM, NULL, PGM_BTH_NAME_RC_STR(MapCR3), &pModeData->pfnRCBthMapCR3);
84 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_RC_STR(MapCR3), rc), rc);
85 rc = PDMR3LdrGetSymbolRC(pVM, NULL, PGM_BTH_NAME_RC_STR(UnmapCR3), &pModeData->pfnRCBthUnmapCR3);
86 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_RC_STR(UnmapCR3), rc), rc);
87#endif /* Not AMD64 shadow paging. */
88
89 /* Ring 0 */
90 rc = PDMR3LdrGetSymbolR0(pVM, NULL, PGM_BTH_NAME_R0_STR(Trap0eHandler), &pModeData->pfnR0BthTrap0eHandler);
91 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_R0_STR(Trap0eHandler), rc), rc);
92 rc = PDMR3LdrGetSymbolR0(pVM, NULL, PGM_BTH_NAME_R0_STR(InvalidatePage), &pModeData->pfnR0BthInvalidatePage);
93 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_R0_STR(InvalidatePage), rc), rc);
94 rc = PDMR3LdrGetSymbolR0(pVM, NULL, PGM_BTH_NAME_R0_STR(SyncCR3), &pModeData->pfnR0BthSyncCR3);
95 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_R0_STR(SyncCR3), rc), rc);
96 rc = PDMR3LdrGetSymbolR0(pVM, NULL, PGM_BTH_NAME_R0_STR(PrefetchPage), &pModeData->pfnR0BthPrefetchPage);
97 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_R0_STR(PrefetchPage), rc), rc);
98 rc = PDMR3LdrGetSymbolR0(pVM, NULL, PGM_BTH_NAME_R0_STR(VerifyAccessSyncPage),&pModeData->pfnR0BthVerifyAccessSyncPage);
99 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_R0_STR(VerifyAccessSyncPage), rc), rc);
100#ifdef VBOX_STRICT
101 rc = PDMR3LdrGetSymbolR0(pVM, NULL, PGM_BTH_NAME_R0_STR(AssertCR3), &pModeData->pfnR0BthAssertCR3);
102 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_R0_STR(AssertCR3), rc), rc);
103#endif
104 rc = PDMR3LdrGetSymbolR0(pVM, NULL, PGM_BTH_NAME_R0_STR(MapCR3), &pModeData->pfnR0BthMapCR3);
105 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_R0_STR(MapCR3), rc), rc);
106 rc = PDMR3LdrGetSymbolR0(pVM, NULL, PGM_BTH_NAME_R0_STR(UnmapCR3), &pModeData->pfnR0BthUnmapCR3);
107 AssertMsgRCReturn(rc, ("%s -> rc=%Rrc\n", PGM_BTH_NAME_R0_STR(UnmapCR3), rc), rc);
108 }
109 return VINF_SUCCESS;
110}
111
112
113/**
114 * Enters the shadow+guest mode.
115 *
116 * @returns VBox status code.
117 * @param pVM Pointer to the VM.
118 * @param pVCpu Pointer to the VMCPU.
119 * @param GCPhysCR3 The physical address from the CR3 register.
120 */
121PGM_BTH_DECL(int, Enter)(PVMCPU pVCpu, RTGCPHYS GCPhysCR3)
122{
123 /* Here we deal with allocation of the root shadow page table for real and protected mode during mode switches;
124 * Other modes rely on MapCR3/UnmapCR3 to setup the shadow root page tables.
125 */
126#if ( ( PGM_SHW_TYPE == PGM_TYPE_32BIT \
127 || PGM_SHW_TYPE == PGM_TYPE_PAE \
128 || PGM_SHW_TYPE == PGM_TYPE_AMD64) \
129 && ( PGM_GST_TYPE == PGM_TYPE_REAL \
130 || PGM_GST_TYPE == PGM_TYPE_PROT))
131
132 PVM pVM = pVCpu->pVMR3;
133
134 Assert(HMIsNestedPagingActive(pVM) == pVM->pgm.s.fNestedPaging);
135 Assert(!pVM->pgm.s.fNestedPaging);
136
137 pgmLock(pVM);
138 /* Note: we only really need shadow paging in real and protected mode for VT-x and AMD-V (excluding nested paging/EPT modes),
139 * but any calls to GC need a proper shadow page setup as well.
140 */
141 /* Free the previous root mapping if still active. */
142 PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
143 if (pVCpu->pgm.s.CTX_SUFF(pShwPageCR3))
144 {
145 Assert(pVCpu->pgm.s.pShwPageCR3R3->enmKind != PGMPOOLKIND_FREE);
146
147 /* Mark the page as unlocked; allow flushing again. */
148 pgmPoolUnlockPage(pPool, pVCpu->pgm.s.CTX_SUFF(pShwPageCR3));
149
150# ifndef PGM_WITHOUT_MAPPINGS
151 /* Remove the hypervisor mappings from the shadow page table. */
152 pgmMapDeactivateCR3(pVM, pVCpu->pgm.s.CTX_SUFF(pShwPageCR3));
153# endif
154
155 pgmPoolFreeByPage(pPool, pVCpu->pgm.s.pShwPageCR3R3, NIL_PGMPOOL_IDX, UINT32_MAX);
156 pVCpu->pgm.s.pShwPageCR3R3 = 0;
157 pVCpu->pgm.s.pShwPageCR3RC = 0;
158 pVCpu->pgm.s.pShwPageCR3R0 = 0;
159 }
160
161 /* construct a fake address. */
162 GCPhysCR3 = RT_BIT_64(63);
163 int rc = pgmPoolAlloc(pVM, GCPhysCR3, BTH_PGMPOOLKIND_ROOT, PGMPOOLACCESS_DONTCARE, PGM_A20_IS_ENABLED(pVCpu),
164 NIL_PGMPOOL_IDX, UINT32_MAX, false /*fLockPage*/,
165 &pVCpu->pgm.s.pShwPageCR3R3);
166 if (rc == VERR_PGM_POOL_FLUSHED)
167 {
168 Log(("Bth-Enter: PGM pool flushed -> signal sync cr3\n"));
169 Assert(VMCPU_FF_ISSET(pVCpu, VMCPU_FF_PGM_SYNC_CR3));
170 pgmUnlock(pVM);
171 return VINF_PGM_SYNC_CR3;
172 }
173 AssertRCReturn(rc, rc);
174
175 /* Mark the page as locked; disallow flushing. */
176 pgmPoolLockPage(pPool, pVCpu->pgm.s.pShwPageCR3R3);
177
178 pVCpu->pgm.s.pShwPageCR3R0 = MMHyperCCToR0(pVM, pVCpu->pgm.s.pShwPageCR3R3);
179 pVCpu->pgm.s.pShwPageCR3RC = MMHyperCCToRC(pVM, pVCpu->pgm.s.pShwPageCR3R3);
180
181 /* Set the current hypervisor CR3. */
182 CPUMSetHyperCR3(pVCpu, PGMGetHyperCR3(pVCpu));
183
184# ifndef PGM_WITHOUT_MAPPINGS
185 /* Apply all hypervisor mappings to the new CR3. */
186 rc = pgmMapActivateCR3(pVM, pVCpu->pgm.s.CTX_SUFF(pShwPageCR3));
187# endif
188
189 pgmUnlock(pVM);
190 return rc;
191#else
192 NOREF(pVCpu); NOREF(GCPhysCR3);
193 return VINF_SUCCESS;
194#endif
195}
196
197
198/**
199 * Relocate any GC pointers related to shadow mode paging.
200 *
201 * @returns VBox status code.
202 * @param pVM Pointer to the VM.
203 * @param pVCpu Pointer to the VMCPU.
204 * @param offDelta The relocation offset.
205 */
206PGM_BTH_DECL(int, Relocate)(PVMCPU pVCpu, RTGCPTR offDelta)
207{
208 /* nothing special to do here - InitData does the job. */
209 NOREF(pVCpu); NOREF(offDelta);
210 return VINF_SUCCESS;
211}
212
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