1 | /* $Id: PGMAllGst.h 62478 2016-07-22 18:29:06Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox - Page Manager, Guest Paging Template - All context code.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2016 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 | *******************************************************************************/
|
---|
22 | RT_C_DECLS_BEGIN
|
---|
23 | #if PGM_GST_TYPE == PGM_TYPE_32BIT \
|
---|
24 | || PGM_GST_TYPE == PGM_TYPE_PAE \
|
---|
25 | || PGM_GST_TYPE == PGM_TYPE_AMD64
|
---|
26 | static int PGM_GST_NAME(Walk)(PVMCPU pVCpu, RTGCPTR GCPtr, PGSTPTWALK pWalk);
|
---|
27 | #endif
|
---|
28 | PGM_GST_DECL(int, GetPage)(PVMCPU pVCpu, RTGCPTR GCPtr, uint64_t *pfFlags, PRTGCPHYS pGCPhys);
|
---|
29 | PGM_GST_DECL(int, ModifyPage)(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask);
|
---|
30 | PGM_GST_DECL(int, GetPDE)(PVMCPU pVCpu, RTGCPTR GCPtr, PX86PDEPAE pPDE);
|
---|
31 | PGM_GST_DECL(bool, HandlerVirtualUpdate)(PVM pVM, uint32_t cr4);
|
---|
32 | RT_C_DECLS_END
|
---|
33 |
|
---|
34 |
|
---|
35 | #if PGM_GST_TYPE == PGM_TYPE_32BIT \
|
---|
36 | || PGM_GST_TYPE == PGM_TYPE_PAE \
|
---|
37 | || PGM_GST_TYPE == PGM_TYPE_AMD64
|
---|
38 |
|
---|
39 |
|
---|
40 | DECLINLINE(int) PGM_GST_NAME(WalkReturnNotPresent)(PVMCPU pVCpu, PGSTPTWALK pWalk, int iLevel)
|
---|
41 | {
|
---|
42 | NOREF(iLevel); NOREF(pVCpu);
|
---|
43 | pWalk->Core.fNotPresent = true;
|
---|
44 | pWalk->Core.uLevel = (uint8_t)iLevel;
|
---|
45 | return VERR_PAGE_TABLE_NOT_PRESENT;
|
---|
46 | }
|
---|
47 |
|
---|
48 | DECLINLINE(int) PGM_GST_NAME(WalkReturnBadPhysAddr)(PVMCPU pVCpu, PGSTPTWALK pWalk, int rc, int iLevel)
|
---|
49 | {
|
---|
50 | AssertMsg(rc == VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS, ("%Rrc\n", rc)); NOREF(rc); NOREF(pVCpu);
|
---|
51 | pWalk->Core.fBadPhysAddr = true;
|
---|
52 | pWalk->Core.uLevel = (uint8_t)iLevel;
|
---|
53 | return VERR_PAGE_TABLE_NOT_PRESENT;
|
---|
54 | }
|
---|
55 |
|
---|
56 | DECLINLINE(int) PGM_GST_NAME(WalkReturnRsvdError)(PVMCPU pVCpu, PGSTPTWALK pWalk, int iLevel)
|
---|
57 | {
|
---|
58 | NOREF(pVCpu);
|
---|
59 | pWalk->Core.fRsvdError = true;
|
---|
60 | pWalk->Core.uLevel = (uint8_t)iLevel;
|
---|
61 | return VERR_PAGE_TABLE_NOT_PRESENT;
|
---|
62 | }
|
---|
63 |
|
---|
64 |
|
---|
65 | /**
|
---|
66 | * Performs a guest page table walk.
|
---|
67 | *
|
---|
68 | * @returns VBox status code.
|
---|
69 | * @retval VINF_SUCCESS on success.
|
---|
70 | * @retval VERR_PAGE_TABLE_NOT_PRESENT on failure. Check pWalk for details.
|
---|
71 | *
|
---|
72 | * @param pVCpu The cross context virtual CPU structure of the calling EMT.
|
---|
73 | * @param GCPtr The guest virtual address to walk by.
|
---|
74 | * @param pWalk Where to return the walk result. This is always set.
|
---|
75 | */
|
---|
76 | static int PGM_GST_NAME(Walk)(PVMCPU pVCpu, RTGCPTR GCPtr, PGSTPTWALK pWalk)
|
---|
77 | {
|
---|
78 | int rc;
|
---|
79 |
|
---|
80 | /*
|
---|
81 | * Init the walking structure.
|
---|
82 | */
|
---|
83 | RT_ZERO(*pWalk);
|
---|
84 | pWalk->Core.GCPtr = GCPtr;
|
---|
85 |
|
---|
86 | # if PGM_GST_TYPE == PGM_TYPE_32BIT \
|
---|
87 | || PGM_GST_TYPE == PGM_TYPE_PAE
|
---|
88 | /*
|
---|
89 | * Boundary check for PAE and 32-bit (prevents trouble further down).
|
---|
90 | */
|
---|
91 | if (RT_UNLIKELY(GCPtr >= _4G))
|
---|
92 | return PGM_GST_NAME(WalkReturnNotPresent)(pVCpu, pWalk, 8);
|
---|
93 | # endif
|
---|
94 |
|
---|
95 | {
|
---|
96 | # if PGM_GST_TYPE == PGM_TYPE_AMD64
|
---|
97 | /*
|
---|
98 | * The PMLE4.
|
---|
99 | */
|
---|
100 | rc = pgmGstGetLongModePML4PtrEx(pVCpu, &pWalk->pPml4);
|
---|
101 | if (RT_FAILURE(rc))
|
---|
102 | return PGM_GST_NAME(WalkReturnBadPhysAddr)(pVCpu, pWalk, 4, rc);
|
---|
103 |
|
---|
104 | PX86PML4 register pPml4 = pWalk->pPml4;
|
---|
105 | X86PML4E register Pml4e;
|
---|
106 | PX86PML4E register pPml4e;
|
---|
107 |
|
---|
108 | pWalk->pPml4e = pPml4e = &pPml4->a[(GCPtr >> X86_PML4_SHIFT) & X86_PML4_MASK];
|
---|
109 | pWalk->Pml4e.u = Pml4e.u = pPml4e->u;
|
---|
110 | if (!Pml4e.n.u1Present)
|
---|
111 | return PGM_GST_NAME(WalkReturnNotPresent)(pVCpu, pWalk, 4);
|
---|
112 | if (RT_UNLIKELY(!GST_IS_PML4E_VALID(pVCpu, Pml4e)))
|
---|
113 | return PGM_GST_NAME(WalkReturnRsvdError)(pVCpu, pWalk, 4);
|
---|
114 |
|
---|
115 | /*
|
---|
116 | * The PDPE.
|
---|
117 | */
|
---|
118 | rc = PGM_GCPHYS_2_PTR_BY_VMCPU(pVCpu, Pml4e.u & X86_PML4E_PG_MASK, &pWalk->pPdpt);
|
---|
119 | if (RT_FAILURE(rc))
|
---|
120 | return PGM_GST_NAME(WalkReturnBadPhysAddr)(pVCpu, pWalk, 3, rc);
|
---|
121 |
|
---|
122 | # elif PGM_GST_TYPE == PGM_TYPE_PAE
|
---|
123 | rc = pgmGstGetPaePDPTPtrEx(pVCpu, &pWalk->pPdpt);
|
---|
124 | if (RT_FAILURE(rc))
|
---|
125 | return PGM_GST_NAME(WalkReturnBadPhysAddr)(pVCpu, pWalk, 8, rc);
|
---|
126 | # endif
|
---|
127 | }
|
---|
128 | {
|
---|
129 | # if PGM_GST_TYPE == PGM_TYPE_AMD64 || PGM_GST_TYPE == PGM_TYPE_PAE
|
---|
130 | PX86PDPT register pPdpt = pWalk->pPdpt;
|
---|
131 | PX86PDPE register pPdpe;
|
---|
132 | X86PDPE register Pdpe;
|
---|
133 |
|
---|
134 | pWalk->pPdpe = pPdpe = &pPdpt->a[(GCPtr >> GST_PDPT_SHIFT) & GST_PDPT_MASK];
|
---|
135 | pWalk->Pdpe.u = Pdpe.u = pPdpe->u;
|
---|
136 | if (!Pdpe.n.u1Present)
|
---|
137 | return PGM_GST_NAME(WalkReturnNotPresent)(pVCpu, pWalk, 3);
|
---|
138 | if (RT_UNLIKELY(!GST_IS_PDPE_VALID(pVCpu, Pdpe)))
|
---|
139 | return PGM_GST_NAME(WalkReturnRsvdError)(pVCpu, pWalk, 3);
|
---|
140 |
|
---|
141 | /*
|
---|
142 | * The PDE.
|
---|
143 | */
|
---|
144 | rc = PGM_GCPHYS_2_PTR_BY_VMCPU(pVCpu, Pdpe.u & X86_PDPE_PG_MASK, &pWalk->pPd);
|
---|
145 | if (RT_FAILURE(rc))
|
---|
146 | return PGM_GST_NAME(WalkReturnBadPhysAddr)(pVCpu, pWalk, 2, rc);
|
---|
147 | # elif PGM_GST_TYPE == PGM_TYPE_32BIT
|
---|
148 | rc = pgmGstGet32bitPDPtrEx(pVCpu, &pWalk->pPd);
|
---|
149 | if (RT_FAILURE(rc))
|
---|
150 | return PGM_GST_NAME(WalkReturnBadPhysAddr)(pVCpu, pWalk, 8, rc);
|
---|
151 | # endif
|
---|
152 | }
|
---|
153 | {
|
---|
154 | PGSTPD register pPd = pWalk->pPd;
|
---|
155 | PGSTPDE register pPde;
|
---|
156 | GSTPDE Pde;
|
---|
157 |
|
---|
158 | pWalk->pPde = pPde = &pPd->a[(GCPtr >> GST_PD_SHIFT) & GST_PD_MASK];
|
---|
159 | pWalk->Pde.u = Pde.u = pPde->u;
|
---|
160 | if (!Pde.n.u1Present)
|
---|
161 | return PGM_GST_NAME(WalkReturnNotPresent)(pVCpu, pWalk, 2);
|
---|
162 | if (Pde.n.u1Size && GST_IS_PSE_ACTIVE(pVCpu))
|
---|
163 | {
|
---|
164 | if (RT_UNLIKELY(!GST_IS_BIG_PDE_VALID(pVCpu, Pde)))
|
---|
165 | return PGM_GST_NAME(WalkReturnRsvdError)(pVCpu, pWalk, 2);
|
---|
166 |
|
---|
167 | pWalk->Core.GCPhys = GST_GET_BIG_PDE_GCPHYS(pVCpu->CTX_SUFF(pVM), Pde)
|
---|
168 | | (GCPtr & GST_BIG_PAGE_OFFSET_MASK);
|
---|
169 | PGM_A20_APPLY_TO_VAR(pVCpu, pWalk->Core.GCPhys);
|
---|
170 | uint8_t fEffectiveXX = (uint8_t)pWalk->Pde.u
|
---|
171 | # if PGM_GST_TYPE == PGM_TYPE_AMD64
|
---|
172 | & (uint8_t)pWalk->Pdpe.u
|
---|
173 | & (uint8_t)pWalk->Pml4e.u
|
---|
174 | # endif
|
---|
175 | ;
|
---|
176 | pWalk->Core.fEffectiveRW = !!(fEffectiveXX & X86_PTE_RW);
|
---|
177 | pWalk->Core.fEffectiveUS = !!(fEffectiveXX & X86_PTE_US);
|
---|
178 | # if PGM_GST_TYPE == PGM_TYPE_AMD64 || PGM_GST_TYPE == PGM_TYPE_PAE
|
---|
179 | pWalk->Core.fEffectiveNX = ( pWalk->Pde.n.u1NoExecute
|
---|
180 | # if PGM_GST_TYPE == PGM_TYPE_AMD64
|
---|
181 | || pWalk->Pdpe.lm.u1NoExecute
|
---|
182 | || pWalk->Pml4e.n.u1NoExecute
|
---|
183 | # endif
|
---|
184 | ) && GST_IS_NX_ACTIVE(pVCpu);
|
---|
185 | # else
|
---|
186 | pWalk->Core.fEffectiveNX = false;
|
---|
187 | # endif
|
---|
188 | pWalk->Core.fBigPage = true;
|
---|
189 | pWalk->Core.fSucceeded = true;
|
---|
190 | return VINF_SUCCESS;
|
---|
191 | }
|
---|
192 |
|
---|
193 | if (RT_UNLIKELY(!GST_IS_PDE_VALID(pVCpu, Pde)))
|
---|
194 | return PGM_GST_NAME(WalkReturnRsvdError)(pVCpu, pWalk, 2);
|
---|
195 |
|
---|
196 | /*
|
---|
197 | * The PTE.
|
---|
198 | */
|
---|
199 | rc = PGM_GCPHYS_2_PTR_BY_VMCPU(pVCpu, GST_GET_PDE_GCPHYS(Pde), &pWalk->pPt);
|
---|
200 | if (RT_FAILURE(rc))
|
---|
201 | return PGM_GST_NAME(WalkReturnBadPhysAddr)(pVCpu, pWalk, 1, rc);
|
---|
202 | }
|
---|
203 | {
|
---|
204 | PGSTPT register pPt = pWalk->pPt;
|
---|
205 | PGSTPTE register pPte;
|
---|
206 | GSTPTE register Pte;
|
---|
207 |
|
---|
208 | pWalk->pPte = pPte = &pPt->a[(GCPtr >> GST_PT_SHIFT) & GST_PT_MASK];
|
---|
209 | pWalk->Pte.u = Pte.u = pPte->u;
|
---|
210 | if (!Pte.n.u1Present)
|
---|
211 | return PGM_GST_NAME(WalkReturnNotPresent)(pVCpu, pWalk, 1);
|
---|
212 | if (RT_UNLIKELY(!GST_IS_PTE_VALID(pVCpu, Pte)))
|
---|
213 | return PGM_GST_NAME(WalkReturnRsvdError)(pVCpu, pWalk, 1);
|
---|
214 |
|
---|
215 | /*
|
---|
216 | * We're done.
|
---|
217 | */
|
---|
218 | pWalk->Core.GCPhys = GST_GET_PDE_GCPHYS(Pte)
|
---|
219 | | (GCPtr & PAGE_OFFSET_MASK);
|
---|
220 | uint8_t fEffectiveXX = (uint8_t)pWalk->Pte.u
|
---|
221 | & (uint8_t)pWalk->Pde.u
|
---|
222 | # if PGM_GST_TYPE == PGM_TYPE_AMD64
|
---|
223 | & (uint8_t)pWalk->Pdpe.u
|
---|
224 | & (uint8_t)pWalk->Pml4e.u
|
---|
225 | # endif
|
---|
226 | ;
|
---|
227 | pWalk->Core.fEffectiveRW = !!(fEffectiveXX & X86_PTE_RW);
|
---|
228 | pWalk->Core.fEffectiveUS = !!(fEffectiveXX & X86_PTE_US);
|
---|
229 | # if PGM_GST_TYPE == PGM_TYPE_AMD64 || PGM_GST_TYPE == PGM_TYPE_PAE
|
---|
230 | pWalk->Core.fEffectiveNX = ( pWalk->Pte.n.u1NoExecute
|
---|
231 | || pWalk->Pde.n.u1NoExecute
|
---|
232 | # if PGM_GST_TYPE == PGM_TYPE_AMD64
|
---|
233 | || pWalk->Pdpe.lm.u1NoExecute
|
---|
234 | || pWalk->Pml4e.n.u1NoExecute
|
---|
235 | # endif
|
---|
236 | ) && GST_IS_NX_ACTIVE(pVCpu);
|
---|
237 | # else
|
---|
238 | pWalk->Core.fEffectiveNX = false;
|
---|
239 | # endif
|
---|
240 | pWalk->Core.fSucceeded = true;
|
---|
241 | return VINF_SUCCESS;
|
---|
242 | }
|
---|
243 | }
|
---|
244 |
|
---|
245 | #endif /* 32BIT, PAE, AMD64 */
|
---|
246 |
|
---|
247 | /**
|
---|
248 | * Gets effective Guest OS page information.
|
---|
249 | *
|
---|
250 | * When GCPtr is in a big page, the function will return as if it was a normal
|
---|
251 | * 4KB page. If the need for distinguishing between big and normal page becomes
|
---|
252 | * necessary at a later point, a PGMGstGetPage Ex() will be created for that
|
---|
253 | * purpose.
|
---|
254 | *
|
---|
255 | * @returns VBox status code.
|
---|
256 | * @param pVCpu The cross context virtual CPU structure.
|
---|
257 | * @param GCPtr Guest Context virtual address of the page.
|
---|
258 | * @param pfFlags Where to store the flags. These are X86_PTE_*, even for big pages.
|
---|
259 | * @param pGCPhys Where to store the GC physical address of the page.
|
---|
260 | * This is page aligned!
|
---|
261 | */
|
---|
262 | PGM_GST_DECL(int, GetPage)(PVMCPU pVCpu, RTGCPTR GCPtr, uint64_t *pfFlags, PRTGCPHYS pGCPhys)
|
---|
263 | {
|
---|
264 | #if PGM_GST_TYPE == PGM_TYPE_REAL \
|
---|
265 | || PGM_GST_TYPE == PGM_TYPE_PROT
|
---|
266 | /*
|
---|
267 | * Fake it.
|
---|
268 | */
|
---|
269 | if (pfFlags)
|
---|
270 | *pfFlags = X86_PTE_P | X86_PTE_RW | X86_PTE_US;
|
---|
271 | if (pGCPhys)
|
---|
272 | *pGCPhys = GCPtr & PAGE_BASE_GC_MASK;
|
---|
273 | NOREF(pVCpu);
|
---|
274 | return VINF_SUCCESS;
|
---|
275 |
|
---|
276 | #elif PGM_GST_TYPE == PGM_TYPE_32BIT \
|
---|
277 | || PGM_GST_TYPE == PGM_TYPE_PAE \
|
---|
278 | || PGM_GST_TYPE == PGM_TYPE_AMD64
|
---|
279 |
|
---|
280 | GSTPTWALK Walk;
|
---|
281 | int rc = PGM_GST_NAME(Walk)(pVCpu, GCPtr, &Walk);
|
---|
282 | if (RT_FAILURE(rc))
|
---|
283 | return rc;
|
---|
284 |
|
---|
285 | if (pGCPhys)
|
---|
286 | *pGCPhys = Walk.Core.GCPhys & ~(RTGCPHYS)PAGE_OFFSET_MASK;
|
---|
287 |
|
---|
288 | if (pfFlags)
|
---|
289 | {
|
---|
290 | if (!Walk.Core.fBigPage)
|
---|
291 | *pfFlags = (Walk.Pte.u & ~(GST_PTE_PG_MASK | X86_PTE_RW | X86_PTE_US)) /* NX not needed */
|
---|
292 | | (Walk.Core.fEffectiveRW ? X86_PTE_RW : 0)
|
---|
293 | | (Walk.Core.fEffectiveUS ? X86_PTE_US : 0)
|
---|
294 | # if PGM_WITH_NX(PGM_GST_TYPE, PGM_GST_TYPE)
|
---|
295 | | (Walk.Core.fEffectiveNX ? X86_PTE_PAE_NX : 0)
|
---|
296 | # endif
|
---|
297 | ;
|
---|
298 | else
|
---|
299 | {
|
---|
300 | *pfFlags = (Walk.Pde.u & ~(GST_PTE_PG_MASK | X86_PDE4M_RW | X86_PDE4M_US | X86_PDE4M_PS)) /* NX not needed */
|
---|
301 | | ((Walk.Pde.u & X86_PDE4M_PAT) >> X86_PDE4M_PAT_SHIFT)
|
---|
302 | | (Walk.Core.fEffectiveRW ? X86_PTE_RW : 0)
|
---|
303 | | (Walk.Core.fEffectiveUS ? X86_PTE_US : 0)
|
---|
304 | # if PGM_WITH_NX(PGM_GST_TYPE, PGM_GST_TYPE)
|
---|
305 | | (Walk.Core.fEffectiveNX ? X86_PTE_PAE_NX : 0)
|
---|
306 | # endif
|
---|
307 | ;
|
---|
308 | }
|
---|
309 | }
|
---|
310 |
|
---|
311 | return VINF_SUCCESS;
|
---|
312 |
|
---|
313 | #else
|
---|
314 | # error "shouldn't be here!"
|
---|
315 | /* something else... */
|
---|
316 | return VERR_NOT_SUPPORTED;
|
---|
317 | #endif
|
---|
318 | }
|
---|
319 |
|
---|
320 |
|
---|
321 | /**
|
---|
322 | * Modify page flags for a range of pages in the guest's tables
|
---|
323 | *
|
---|
324 | * The existing flags are ANDed with the fMask and ORed with the fFlags.
|
---|
325 | *
|
---|
326 | * @returns VBox status code.
|
---|
327 | * @param pVCpu The cross context virtual CPU structure.
|
---|
328 | * @param GCPtr Virtual address of the first page in the range. Page aligned!
|
---|
329 | * @param cb Size (in bytes) of the page range to apply the modification to. Page aligned!
|
---|
330 | * @param fFlags The OR mask - page flags X86_PTE_*, excluding the page mask of course.
|
---|
331 | * @param fMask The AND mask - page flags X86_PTE_*.
|
---|
332 | */
|
---|
333 | PGM_GST_DECL(int, ModifyPage)(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask)
|
---|
334 | {
|
---|
335 | Assert((cb & PAGE_OFFSET_MASK) == 0);
|
---|
336 |
|
---|
337 | #if PGM_GST_TYPE == PGM_TYPE_32BIT \
|
---|
338 | || PGM_GST_TYPE == PGM_TYPE_PAE \
|
---|
339 | || PGM_GST_TYPE == PGM_TYPE_AMD64
|
---|
340 | for (;;)
|
---|
341 | {
|
---|
342 | GSTPTWALK Walk;
|
---|
343 | int rc = PGM_GST_NAME(Walk)(pVCpu, GCPtr, &Walk);
|
---|
344 | if (RT_FAILURE(rc))
|
---|
345 | return rc;
|
---|
346 |
|
---|
347 | if (!Walk.Core.fBigPage)
|
---|
348 | {
|
---|
349 | /*
|
---|
350 | * 4KB Page table, process
|
---|
351 | *
|
---|
352 | * Walk pages till we're done.
|
---|
353 | */
|
---|
354 | unsigned iPTE = (GCPtr >> GST_PT_SHIFT) & GST_PT_MASK;
|
---|
355 | while (iPTE < RT_ELEMENTS(Walk.pPt->a))
|
---|
356 | {
|
---|
357 | GSTPTE Pte = Walk.pPt->a[iPTE];
|
---|
358 | Pte.u = (Pte.u & (fMask | X86_PTE_PAE_PG_MASK))
|
---|
359 | | (fFlags & ~GST_PTE_PG_MASK);
|
---|
360 | Walk.pPt->a[iPTE] = Pte;
|
---|
361 |
|
---|
362 | /* next page */
|
---|
363 | cb -= PAGE_SIZE;
|
---|
364 | if (!cb)
|
---|
365 | return VINF_SUCCESS;
|
---|
366 | GCPtr += PAGE_SIZE;
|
---|
367 | iPTE++;
|
---|
368 | }
|
---|
369 | }
|
---|
370 | else
|
---|
371 | {
|
---|
372 | /*
|
---|
373 | * 2/4MB Page table
|
---|
374 | */
|
---|
375 | GSTPDE PdeNew;
|
---|
376 | # if PGM_GST_TYPE == PGM_TYPE_32BIT
|
---|
377 | PdeNew.u = (Walk.Pde.u & (fMask | ((fMask & X86_PTE_PAT) << X86_PDE4M_PAT_SHIFT) | GST_PDE_BIG_PG_MASK | X86_PDE4M_PG_HIGH_MASK | X86_PDE4M_PS))
|
---|
378 | # else
|
---|
379 | PdeNew.u = (Walk.Pde.u & (fMask | ((fMask & X86_PTE_PAT) << X86_PDE4M_PAT_SHIFT) | GST_PDE_BIG_PG_MASK | X86_PDE4M_PS))
|
---|
380 | # endif
|
---|
381 | | (fFlags & ~GST_PTE_PG_MASK)
|
---|
382 | | ((fFlags & X86_PTE_PAT) << X86_PDE4M_PAT_SHIFT);
|
---|
383 | *Walk.pPde = PdeNew;
|
---|
384 |
|
---|
385 | /* advance */
|
---|
386 | const unsigned cbDone = GST_BIG_PAGE_SIZE - (GCPtr & GST_BIG_PAGE_OFFSET_MASK);
|
---|
387 | if (cbDone >= cb)
|
---|
388 | return VINF_SUCCESS;
|
---|
389 | cb -= cbDone;
|
---|
390 | GCPtr += cbDone;
|
---|
391 | }
|
---|
392 | }
|
---|
393 |
|
---|
394 | #else
|
---|
395 | /* real / protected mode: ignore. */
|
---|
396 | NOREF(pVCpu); NOREF(GCPtr); NOREF(fFlags); NOREF(fMask);
|
---|
397 | return VINF_SUCCESS;
|
---|
398 | #endif
|
---|
399 | }
|
---|
400 |
|
---|
401 |
|
---|
402 | /**
|
---|
403 | * Retrieve guest PDE information.
|
---|
404 | *
|
---|
405 | * @returns VBox status code.
|
---|
406 | * @param pVCpu The cross context virtual CPU structure.
|
---|
407 | * @param GCPtr Guest context pointer.
|
---|
408 | * @param pPDE Pointer to guest PDE structure.
|
---|
409 | */
|
---|
410 | PGM_GST_DECL(int, GetPDE)(PVMCPU pVCpu, RTGCPTR GCPtr, PX86PDEPAE pPDE)
|
---|
411 | {
|
---|
412 | #if PGM_GST_TYPE == PGM_TYPE_32BIT \
|
---|
413 | || PGM_GST_TYPE == PGM_TYPE_PAE \
|
---|
414 | || PGM_GST_TYPE == PGM_TYPE_AMD64
|
---|
415 |
|
---|
416 | # if PGM_GST_TYPE != PGM_TYPE_AMD64
|
---|
417 | /* Boundary check. */
|
---|
418 | if (RT_UNLIKELY(GCPtr >= _4G))
|
---|
419 | return VERR_PAGE_TABLE_NOT_PRESENT;
|
---|
420 | # endif
|
---|
421 |
|
---|
422 | # if PGM_GST_TYPE == PGM_TYPE_32BIT
|
---|
423 | unsigned iPd = (GCPtr >> GST_PD_SHIFT) & GST_PD_MASK;
|
---|
424 | PX86PD pPd = pgmGstGet32bitPDPtr(pVCpu);
|
---|
425 |
|
---|
426 | # elif PGM_GST_TYPE == PGM_TYPE_PAE
|
---|
427 | unsigned iPd = 0; /* shut up gcc */
|
---|
428 | PCX86PDPAE pPd = pgmGstGetPaePDPtr(pVCpu, GCPtr, &iPd, NULL);
|
---|
429 |
|
---|
430 | # elif PGM_GST_TYPE == PGM_TYPE_AMD64
|
---|
431 | PX86PML4E pPml4eIgn;
|
---|
432 | X86PDPE PdpeIgn;
|
---|
433 | unsigned iPd = 0; /* shut up gcc */
|
---|
434 | PCX86PDPAE pPd = pgmGstGetLongModePDPtr(pVCpu, GCPtr, &pPml4eIgn, &PdpeIgn, &iPd);
|
---|
435 | /* Note! We do not return an effective PDE here like we do for the PTE in GetPage method. */
|
---|
436 | # endif
|
---|
437 |
|
---|
438 | if (RT_LIKELY(pPd))
|
---|
439 | pPDE->u = (X86PGPAEUINT)pPd->a[iPd].u;
|
---|
440 | else
|
---|
441 | pPDE->u = 0;
|
---|
442 | return VINF_SUCCESS;
|
---|
443 |
|
---|
444 | #else
|
---|
445 | NOREF(pVCpu); NOREF(GCPtr); NOREF(pPDE);
|
---|
446 | AssertFailed();
|
---|
447 | return VERR_NOT_IMPLEMENTED;
|
---|
448 | #endif
|
---|
449 | }
|
---|
450 |
|
---|
451 |
|
---|
452 | #if ( PGM_GST_TYPE == PGM_TYPE_32BIT \
|
---|
453 | || PGM_GST_TYPE == PGM_TYPE_PAE \
|
---|
454 | || PGM_GST_TYPE == PGM_TYPE_AMD64) \
|
---|
455 | && defined(VBOX_WITH_RAW_MODE)
|
---|
456 | /**
|
---|
457 | * Updates one virtual handler range.
|
---|
458 | *
|
---|
459 | * @returns 0
|
---|
460 | * @param pNode Pointer to a PGMVIRTHANDLER.
|
---|
461 | * @param pvUser Pointer to a PGMVHUARGS structure (see PGM.cpp).
|
---|
462 | */
|
---|
463 | static DECLCALLBACK(int) PGM_GST_NAME(VirtHandlerUpdateOne)(PAVLROGCPTRNODECORE pNode, void *pvUser)
|
---|
464 | {
|
---|
465 | PPGMHVUSTATE pState = (PPGMHVUSTATE)pvUser;
|
---|
466 | PVM pVM = pState->pVM;
|
---|
467 | PVMCPU pVCpu = pState->pVCpu;
|
---|
468 | PPGMVIRTHANDLER pCur = (PPGMVIRTHANDLER)pNode;
|
---|
469 | PPGMVIRTHANDLERTYPEINT pCurType = PGMVIRTANDLER_GET_TYPE(pVM, pCur);
|
---|
470 |
|
---|
471 | Assert(pCurType->enmKind != PGMVIRTHANDLERKIND_HYPERVISOR); NOREF(pCurType);
|
---|
472 |
|
---|
473 | # if PGM_GST_TYPE == PGM_TYPE_32BIT
|
---|
474 | PX86PD pPDSrc = pgmGstGet32bitPDPtr(pVCpu);
|
---|
475 | # endif
|
---|
476 |
|
---|
477 | RTGCPTR GCPtr = pCur->Core.Key;
|
---|
478 | # if PGM_GST_TYPE != PGM_TYPE_AMD64
|
---|
479 | /* skip all stuff above 4GB if not AMD64 mode. */
|
---|
480 | if (RT_UNLIKELY(GCPtr >= _4G))
|
---|
481 | return 0;
|
---|
482 | # endif
|
---|
483 |
|
---|
484 | unsigned offPage = GCPtr & PAGE_OFFSET_MASK;
|
---|
485 | unsigned iPage = 0;
|
---|
486 | while (iPage < pCur->cPages)
|
---|
487 | {
|
---|
488 | # if PGM_GST_TYPE == PGM_TYPE_32BIT
|
---|
489 | X86PDE Pde = pPDSrc->a[GCPtr >> X86_PD_SHIFT];
|
---|
490 | # elif PGM_GST_TYPE == PGM_TYPE_PAE
|
---|
491 | X86PDEPAE Pde = pgmGstGetPaePDE(pVCpu, GCPtr);
|
---|
492 | # elif PGM_GST_TYPE == PGM_TYPE_AMD64
|
---|
493 | X86PDEPAE Pde = pgmGstGetLongModePDE(pVCpu, GCPtr);
|
---|
494 | # endif
|
---|
495 | # if PGM_GST_TYPE == PGM_TYPE_32BIT
|
---|
496 | bool const fBigPage = Pde.b.u1Size && (pState->cr4 & X86_CR4_PSE);
|
---|
497 | # else
|
---|
498 | bool const fBigPage = Pde.b.u1Size;
|
---|
499 | # endif
|
---|
500 | if ( Pde.n.u1Present
|
---|
501 | && ( !fBigPage
|
---|
502 | ? GST_IS_PDE_VALID(pVCpu, Pde)
|
---|
503 | : GST_IS_BIG_PDE_VALID(pVCpu, Pde)) )
|
---|
504 | {
|
---|
505 | if (!fBigPage)
|
---|
506 | {
|
---|
507 | /*
|
---|
508 | * Normal page table.
|
---|
509 | */
|
---|
510 | PGSTPT pPT;
|
---|
511 | int rc = PGM_GCPHYS_2_PTR_V2(pVM, pVCpu, GST_GET_PDE_GCPHYS(Pde), &pPT);
|
---|
512 | if (RT_SUCCESS(rc))
|
---|
513 | {
|
---|
514 | for (unsigned iPTE = (GCPtr >> GST_PT_SHIFT) & GST_PT_MASK;
|
---|
515 | iPTE < RT_ELEMENTS(pPT->a) && iPage < pCur->cPages;
|
---|
516 | iPTE++, iPage++, GCPtr += PAGE_SIZE, offPage = 0)
|
---|
517 | {
|
---|
518 | GSTPTE Pte = pPT->a[iPTE];
|
---|
519 | RTGCPHYS GCPhysNew;
|
---|
520 | if (Pte.n.u1Present)
|
---|
521 | GCPhysNew = PGM_A20_APPLY(pVCpu, (RTGCPHYS)(pPT->a[iPTE].u & GST_PTE_PG_MASK) + offPage);
|
---|
522 | else
|
---|
523 | GCPhysNew = NIL_RTGCPHYS;
|
---|
524 | if (pCur->aPhysToVirt[iPage].Core.Key != GCPhysNew)
|
---|
525 | {
|
---|
526 | if (pCur->aPhysToVirt[iPage].Core.Key != NIL_RTGCPHYS)
|
---|
527 | pgmHandlerVirtualClearPage(pVM, pCur, iPage);
|
---|
528 | #ifdef VBOX_STRICT_PGM_HANDLER_VIRTUAL
|
---|
529 | AssertReleaseMsg(!pCur->aPhysToVirt[iPage].offNextAlias,
|
---|
530 | ("{.Core.Key=%RGp, .Core.KeyLast=%RGp, .offVirtHandler=%#RX32, .offNextAlias=%#RX32} GCPhysNew=%RGp\n",
|
---|
531 | pCur->aPhysToVirt[iPage].Core.Key, pCur->aPhysToVirt[iPage].Core.KeyLast,
|
---|
532 | pCur->aPhysToVirt[iPage].offVirtHandler, pCur->aPhysToVirt[iPage].offNextAlias, GCPhysNew));
|
---|
533 | #endif
|
---|
534 | pCur->aPhysToVirt[iPage].Core.Key = GCPhysNew;
|
---|
535 | pState->fTodo |= PGM_SYNC_UPDATE_PAGE_BIT_VIRTUAL;
|
---|
536 | }
|
---|
537 | }
|
---|
538 | }
|
---|
539 | else
|
---|
540 | {
|
---|
541 | /* not-present. */
|
---|
542 | offPage = 0;
|
---|
543 | AssertRC(rc);
|
---|
544 | for (unsigned iPTE = (GCPtr >> GST_PT_SHIFT) & GST_PT_MASK;
|
---|
545 | iPTE < RT_ELEMENTS(pPT->a) && iPage < pCur->cPages;
|
---|
546 | iPTE++, iPage++, GCPtr += PAGE_SIZE)
|
---|
547 | {
|
---|
548 | if (pCur->aPhysToVirt[iPage].Core.Key != NIL_RTGCPHYS)
|
---|
549 | {
|
---|
550 | pgmHandlerVirtualClearPage(pVM, pCur, iPage);
|
---|
551 | #ifdef VBOX_STRICT_PGM_HANDLER_VIRTUAL
|
---|
552 | AssertReleaseMsg(!pCur->aPhysToVirt[iPage].offNextAlias,
|
---|
553 | ("{.Core.Key=%RGp, .Core.KeyLast=%RGp, .offVirtHandler=%#RX32, .offNextAlias=%#RX32}\n",
|
---|
554 | pCur->aPhysToVirt[iPage].Core.Key, pCur->aPhysToVirt[iPage].Core.KeyLast,
|
---|
555 | pCur->aPhysToVirt[iPage].offVirtHandler, pCur->aPhysToVirt[iPage].offNextAlias));
|
---|
556 | #endif
|
---|
557 | pCur->aPhysToVirt[iPage].Core.Key = NIL_RTGCPHYS;
|
---|
558 | pState->fTodo |= PGM_SYNC_UPDATE_PAGE_BIT_VIRTUAL;
|
---|
559 | }
|
---|
560 | }
|
---|
561 | }
|
---|
562 | }
|
---|
563 | else
|
---|
564 | {
|
---|
565 | /*
|
---|
566 | * 2/4MB page.
|
---|
567 | */
|
---|
568 | RTGCPHYS GCPhys = (RTGCPHYS)GST_GET_PDE_GCPHYS(Pde);
|
---|
569 | for (unsigned i4KB = (GCPtr >> GST_PT_SHIFT) & GST_PT_MASK;
|
---|
570 | i4KB < PAGE_SIZE / sizeof(GSTPDE) && iPage < pCur->cPages;
|
---|
571 | i4KB++, iPage++, GCPtr += PAGE_SIZE, offPage = 0)
|
---|
572 | {
|
---|
573 | RTGCPHYS GCPhysNew = PGM_A20_APPLY(pVCpu, GCPhys + (i4KB << PAGE_SHIFT) + offPage);
|
---|
574 | if (pCur->aPhysToVirt[iPage].Core.Key != GCPhysNew)
|
---|
575 | {
|
---|
576 | if (pCur->aPhysToVirt[iPage].Core.Key != NIL_RTGCPHYS)
|
---|
577 | pgmHandlerVirtualClearPage(pVM, pCur, iPage);
|
---|
578 | #ifdef VBOX_STRICT_PGM_HANDLER_VIRTUAL
|
---|
579 | AssertReleaseMsg(!pCur->aPhysToVirt[iPage].offNextAlias,
|
---|
580 | ("{.Core.Key=%RGp, .Core.KeyLast=%RGp, .offVirtHandler=%#RX32, .offNextAlias=%#RX32} GCPhysNew=%RGp\n",
|
---|
581 | pCur->aPhysToVirt[iPage].Core.Key, pCur->aPhysToVirt[iPage].Core.KeyLast,
|
---|
582 | pCur->aPhysToVirt[iPage].offVirtHandler, pCur->aPhysToVirt[iPage].offNextAlias, GCPhysNew));
|
---|
583 | #endif
|
---|
584 | pCur->aPhysToVirt[iPage].Core.Key = GCPhysNew;
|
---|
585 | pState->fTodo |= PGM_SYNC_UPDATE_PAGE_BIT_VIRTUAL;
|
---|
586 | }
|
---|
587 | }
|
---|
588 | } /* pde type */
|
---|
589 | }
|
---|
590 | else
|
---|
591 | {
|
---|
592 | /* not-present / invalid. */
|
---|
593 | Log(("VirtHandler: Not present / invalid Pde=%RX64\n", (uint64_t)Pde.u));
|
---|
594 | for (unsigned cPages = (GST_PT_MASK + 1) - ((GCPtr >> GST_PT_SHIFT) & GST_PT_MASK);
|
---|
595 | cPages && iPage < pCur->cPages;
|
---|
596 | iPage++, GCPtr += PAGE_SIZE)
|
---|
597 | {
|
---|
598 | if (pCur->aPhysToVirt[iPage].Core.Key != NIL_RTGCPHYS)
|
---|
599 | {
|
---|
600 | pgmHandlerVirtualClearPage(pVM, pCur, iPage);
|
---|
601 | pCur->aPhysToVirt[iPage].Core.Key = NIL_RTGCPHYS;
|
---|
602 | pState->fTodo |= PGM_SYNC_UPDATE_PAGE_BIT_VIRTUAL;
|
---|
603 | }
|
---|
604 | }
|
---|
605 | offPage = 0;
|
---|
606 | }
|
---|
607 | } /* for pages in virtual mapping. */
|
---|
608 |
|
---|
609 | return 0;
|
---|
610 | }
|
---|
611 | #endif /* 32BIT, PAE and AMD64 + VBOX_WITH_RAW_MODE */
|
---|
612 |
|
---|
613 |
|
---|
614 | /**
|
---|
615 | * Updates the virtual page access handlers.
|
---|
616 | *
|
---|
617 | * @returns true if bits were flushed.
|
---|
618 | * @returns false if bits weren't flushed.
|
---|
619 | * @param pVM The cross context VM structure.
|
---|
620 | * @param cr4 The cr4 register value.
|
---|
621 | */
|
---|
622 | PGM_GST_DECL(bool, HandlerVirtualUpdate)(PVM pVM, uint32_t cr4)
|
---|
623 | {
|
---|
624 | #if ( PGM_GST_TYPE == PGM_TYPE_32BIT \
|
---|
625 | || PGM_GST_TYPE == PGM_TYPE_PAE \
|
---|
626 | || PGM_GST_TYPE == PGM_TYPE_AMD64) \
|
---|
627 | && defined(VBOX_WITH_RAW_MODE)
|
---|
628 |
|
---|
629 | /** @todo
|
---|
630 | * In theory this is not sufficient: the guest can change a single page in a range with invlpg
|
---|
631 | */
|
---|
632 |
|
---|
633 | /*
|
---|
634 | * Resolve any virtual address based access handlers to GC physical addresses.
|
---|
635 | * This should be fairly quick.
|
---|
636 | */
|
---|
637 | RTUINT fTodo = 0;
|
---|
638 |
|
---|
639 | pgmLock(pVM);
|
---|
640 | STAM_PROFILE_START(&pVM->pgm.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,SyncCR3HandlerVirtualUpdate), a);
|
---|
641 |
|
---|
642 | for (VMCPUID i = 0; i < pVM->cCpus; i++)
|
---|
643 | {
|
---|
644 | PGMHVUSTATE State;
|
---|
645 | PVMCPU pVCpu = &pVM->aCpus[i];
|
---|
646 |
|
---|
647 | State.pVM = pVM;
|
---|
648 | State.pVCpu = pVCpu;
|
---|
649 | State.fTodo = pVCpu->pgm.s.fSyncFlags;
|
---|
650 | State.cr4 = cr4;
|
---|
651 | RTAvlroGCPtrDoWithAll(&pVM->pgm.s.CTX_SUFF(pTrees)->VirtHandlers, true, PGM_GST_NAME(VirtHandlerUpdateOne), &State);
|
---|
652 |
|
---|
653 | fTodo |= State.fTodo;
|
---|
654 | }
|
---|
655 | STAM_PROFILE_STOP(&pVM->pgm.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,SyncCR3HandlerVirtualUpdate), a);
|
---|
656 |
|
---|
657 |
|
---|
658 | /*
|
---|
659 | * Set / reset bits?
|
---|
660 | */
|
---|
661 | if (fTodo & PGM_SYNC_UPDATE_PAGE_BIT_VIRTUAL)
|
---|
662 | {
|
---|
663 | STAM_PROFILE_START(&pVM->pgm.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,SyncCR3HandlerVirtualReset), b);
|
---|
664 | Log(("HandlerVirtualUpdate: resets bits\n"));
|
---|
665 | RTAvlroGCPtrDoWithAll(&pVM->pgm.s.CTX_SUFF(pTrees)->VirtHandlers, true, pgmHandlerVirtualResetOne, pVM);
|
---|
666 |
|
---|
667 | for (VMCPUID i = 0; i < pVM->cCpus; i++)
|
---|
668 | {
|
---|
669 | PVMCPU pVCpu = &pVM->aCpus[i];
|
---|
670 | pVCpu->pgm.s.fSyncFlags &= ~PGM_SYNC_UPDATE_PAGE_BIT_VIRTUAL;
|
---|
671 | }
|
---|
672 |
|
---|
673 | STAM_PROFILE_STOP(&pVM->pgm.s.CTX_SUFF(pStats)->CTX_MID_Z(Stat,SyncCR3HandlerVirtualReset), b);
|
---|
674 | }
|
---|
675 | pgmUnlock(pVM);
|
---|
676 |
|
---|
677 | return !!(fTodo & PGM_SYNC_UPDATE_PAGE_BIT_VIRTUAL);
|
---|
678 |
|
---|
679 | #else /* real / protected */
|
---|
680 | NOREF(pVM); NOREF(cr4);
|
---|
681 | return false;
|
---|
682 | #endif
|
---|
683 | }
|
---|
684 |
|
---|