VirtualBox

source: vbox/trunk/include/VBox/pgm.h@ 905

Last change on this file since 905 was 861, checked in by vboxsync, 18 years ago

Corrected comment.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 57.9 KB
Line 
1/** @file
2 * PGM - Page Monitor/Monitor.
3 */
4
5/*
6 * Copyright (C) 2006 InnoTek Systemberatung GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21#ifndef __VBox_pgm_h__
22#define __VBox_pgm_h__
23
24#include <VBox/cdefs.h>
25#include <VBox/types.h>
26#include <VBox/sup.h>
27#include <VBox/cpum.h>
28#include <VBox/vmapi.h>
29
30__BEGIN_DECLS
31
32/** @defgroup grp_pgm The Page Monitor/Manager API
33 * @{
34 */
35
36/** Enable dynamic allocation of guest physical RAM. */
37/*#define PGM_DYNAMIC_RAM_ALLOC*/
38
39/** Chunk size for dynamically allocated physical memory. */
40#define PGM_DYNAMIC_CHUNK_SIZE (1*1024*1024)
41/** Shift GC physical address by 20 bits to get the offset into the pvHCChunkHC array. */
42#define PGM_DYNAMIC_CHUNK_SHIFT 20
43/** Dynamic chunk offset mask. */
44#define PGM_DYNAMIC_CHUNK_OFFSET_MASK 0xfffff
45/** Dynamic chunk base mask. */
46#define PGM_DYNAMIC_CHUNK_BASE_MASK (~(RTGCPHYS)PGM_DYNAMIC_CHUNK_OFFSET_MASK)
47
48
49/** Page flags used for PGMHyperSetPageFlags
50 * @deprecated
51 * @{ */
52#define PGMPAGE_READ 1
53#define PGMPAGE_WRITE 2
54#define PGMPAGE_USER 4
55#define PGMPAGE_SYSTEM 8
56#define PGMPAGE_NOTPRESENT 16
57/** @} */
58
59
60/**
61 * FNPGMRELOCATE callback mode.
62 */
63typedef enum PGMRELOCATECALL
64{
65 /** The callback is for checking if the suggested address is suitable. */
66 PGMRELOCATECALL_SUGGEST = 1,
67 /** The callback is for executing the relocation. */
68 PGMRELOCATECALL_RELOCATE
69} PGMRELOCATECALL;
70
71
72/**
73 * Callback function which will be called when PGM is trying to find
74 * a new location for the mapping.
75 *
76 * The callback is called in two modes, 1) the check mode and 2) the relocate mode.
77 * In 1) the callback should say if it objects to a suggested new location. If it
78 * accepts the new location, it is called again for doing it's relocation.
79 *
80 *
81 * @returns true if the location is ok.
82 * @returns false if another location should be found.
83 * @param GCPtrOld The old virtual address.
84 * @param GCPtrNew The new virtual address.
85 * @param enmMode Used to indicate the callback mode.
86 * @param pvUser User argument.
87 * @remark The return value is no a failure indicator, it's an acceptance
88 * indicator. Relocation can not fail!
89 */
90typedef DECLCALLBACK(bool) FNPGMRELOCATE(PVM pVM, RTGCPTR GCPtrOld, RTGCPTR GCPtrNew, PGMRELOCATECALL enmMode, void *pvUser);
91/** Pointer to a relocation callback function. */
92typedef FNPGMRELOCATE *PFNPGMRELOCATE;
93
94
95/**
96 * Physical page access handler type.
97 */
98typedef enum PGMPHYSHANDLERTYPE
99{
100 /** MMIO range. Pages are not present, all access is done in interpreter or recompiler. */
101 PGMPHYSHANDLERTYPE_MMIO = 1,
102 /** Handle all normal page faults for a physical page range. */
103 PGMPHYSHANDLERTYPE_PHYSICAL,
104 /** Handler all write access to a physical page range. */
105 PGMPHYSHANDLERTYPE_PHYSICAL_WRITE,
106 /** Handler all access to a physical page range. */
107 PGMPHYSHANDLERTYPE_PHYSICAL_ALL
108
109} PGMPHYSHANDLERTYPE;
110
111/**
112 * \#PF Handler callback for physical access handler ranges (MMIO among others) in GC.
113 *
114 * @returns VBox status code (appropriate for GC return).
115 * @param pVM VM Handle.
116 * @param uErrorCode CPU Error code.
117 * @param pRegFrame Trap register frame.
118 * NULL on DMA and other non CPU access.
119 * @param pvFault The fault address (cr2).
120 * @param GCPhysFault The GC physical address corresponding to pvFault.
121 * @param pvUser User argument.
122 */
123typedef DECLCALLBACK(int) FNPGMGCPHYSHANDLER(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPHYS GCPhysFault, void *pvUser);
124/** Pointer to PGM access callback. */
125typedef FNPGMGCPHYSHANDLER *PFNPGMGCPHYSHANDLER;
126
127/**
128 * \#PF Handler callback for physical access handler ranges (MMIO among others) in R0.
129 *
130 * @returns VBox status code (appropriate for GC return).
131 * @param pVM VM Handle.
132 * @param uErrorCode CPU Error code.
133 * @param pRegFrame Trap register frame.
134 * NULL on DMA and other non CPU access.
135 * @param pvFault The fault address (cr2).
136 * @param GCPhysFault The GC physical address corresponding to pvFault.
137 * @param pvUser User argument.
138 */
139typedef DECLCALLBACK(int) FNPGMR0PHYSHANDLER(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPHYS GCPhysFault, void *pvUser);
140/** Pointer to PGM access callback. */
141typedef FNPGMR0PHYSHANDLER *PFNPGMR0PHYSHANDLER;
142
143/**
144 * Guest Access type
145 */
146typedef enum PGMACCESSTYPE
147{
148 /** Read access. */
149 PGMACCESSTYPE_READ = 1,
150 /** Write access. */
151 PGMACCESSTYPE_WRITE
152} PGMACCESSTYPE;
153
154/**
155 * \#PF Handler callback for physical access handler ranges (MMIO among others) in HC.
156 *
157 * The handler can not raise any faults, it's mainly for monitoring write access
158 * to certain pages.
159 *
160 * @returns VINF_SUCCESS if the handler have carried out the operation.
161 * @returns VINF_PGM_HANDLER_DO_DEFAULT if the caller should carry out the access operation.
162 * @param pVM VM Handle.
163 * @param GCPhys The physical address the guest is writing to.
164 * @param pvPhys The HC mapping of that address.
165 * @param pvBuf What the guest is reading/writing.
166 * @param cbBuf How much it's reading/writing.
167 * @param enmAccessType The access type.
168 * @param pvUser User argument.
169 */
170typedef DECLCALLBACK(int) FNPGMR3PHYSHANDLER(PVM pVM, RTGCPHYS GCPhys, void *pvPhys, void *pvBuf, size_t cbBuf, PGMACCESSTYPE enmAccessType, void *pvUser);
171/** Pointer to PGM access callback. */
172typedef FNPGMR3PHYSHANDLER *PFNPGMR3PHYSHANDLER;
173
174
175/**
176 * Virtual access handler type.
177 */
178typedef enum PGMVIRTHANDLERTYPE
179{
180 /** Natural traps only. */
181 PGMVIRTHANDLERTYPE_NORMAL = 1,
182 /** Write access handled. */
183 PGMVIRTHANDLERTYPE_WRITE,
184 /** All access handled. */
185 PGMVIRTHANDLERTYPE_ALL,
186 /** By eip - Natural traps only. */
187 PGMVIRTHANDLERTYPE_EIP,
188 /** Hypervisor write access handled.
189 * This is used to catch the guest trying to write to LDT, TSS and any other
190 * system structure which the brain dead intel guys let unprivilegde code find. */
191 PGMVIRTHANDLERTYPE_HYPERVISOR
192
193} PGMVIRTHANDLERTYPE;
194
195/**
196 * \#PF Handler callback for virtual access handler ranges.
197 *
198 * Important to realize that a physical page in a range can have aliases, and
199 * for ALL and WRITE handlers these will also trigger.
200 *
201 * @returns VBox status code (appropriate for GC return).
202 * @param pVM VM Handle.
203 * @param uErrorCode CPU Error code.
204 * @param pRegFrame Trap register frame.
205 * @param pvFault The fault address (cr2).
206 * @param pvRange The base address of the handled virtual range.
207 * @param offRange The offset of the access into this range.
208 * (If it's a EIP range this's the EIP, if not it's pvFault.)
209 */
210typedef DECLCALLBACK(int) FNPGMGCVIRTHANDLER(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
211/** Pointer to PGM access callback. */
212typedef FNPGMGCVIRTHANDLER *PFNPGMGCVIRTHANDLER;
213
214/**
215 * \#PF Handler callback for virtual access handler ranges.
216 *
217 * Important to realize that a physical page in a range can have aliases, and
218 * for ALL and WRITE handlers these will also trigger.
219 *
220 * @returns VINF_SUCCESS if the handler have carried out the operation.
221 * @returns VINF_PGM_HANDLER_DO_DEFAULT if the caller should carry out the access operation.
222 * @param pVM VM Handle.
223 * @param GCPtr The virtual address the guest is writing to. (not correct if it's an alias!)
224 * @param pvPtr The HC mapping of that address.
225 * @param pvBuf What the guest is reading/writing.
226 * @param cbBuf How much it's reading/writing.
227 * @param enmAccessType The access type.
228 * @param pvUser User argument.
229 */
230typedef DECLCALLBACK(int) FNPGMHCVIRTHANDLER(PVM pVM, RTGCPTR GCPtr, void *pvPtr, void *pvBuf, size_t cbBuf, PGMACCESSTYPE enmAccessType, void *pvUser);
231/** Pointer to PGM access callback. */
232typedef FNPGMHCVIRTHANDLER *PFNPGMHCVIRTHANDLER;
233
234
235/**
236 * \#PF Handler callback for invalidation of virtual access handler ranges.
237 *
238 * @param pVM VM Handle.
239 * @param GCPtr The virtual address the guest has changed.
240 */
241typedef DECLCALLBACK(int) FNPGMHCVIRTINVALIDATE(PVM pVM, RTGCPTR GCPtr);
242/** Pointer to PGM invalidation callback. */
243typedef FNPGMHCVIRTINVALIDATE *PFNPGMHCVIRTINVALIDATE;
244
245/**
246 * Paging mode.
247 */
248typedef enum PGMMODE
249{
250 /** The usual invalid value. */
251 PGMMODE_INVALID = 0,
252 /** Real mode. */
253 PGMMODE_REAL,
254 /** Protected mode, no paging. */
255 PGMMODE_PROTECTED,
256 /** 32-bit paging. */
257 PGMMODE_32_BIT,
258 /** PAE paging. */
259 PGMMODE_PAE,
260 /** PAE paging with NX enabled. */
261 PGMMODE_PAE_NX,
262 /** 64-bit AMD paging (long mode). */
263 PGMMODE_AMD64,
264 /** 64-bit AMD paging (long mode) with NX enabled. */
265 PGMMODE_AMD64_NX,
266 /** The max number of modes */
267 PGMMODE_MAX,
268 /** 32bit hackishness. */
269 PGMMODE_32BIT_HACK = 0x7fffffff
270} PGMMODE;
271
272
273/**
274 * Gets the current CR3 register value for the shadow memory context.
275 * @returns CR3 value.
276 * @param pVM The VM handle.
277 */
278PGMDECL(uint32_t) PGMGetHyperCR3(PVM pVM);
279
280/**
281 * Gets the CR3 register value for the 32-Bit shadow memory context.
282 * @returns CR3 value.
283 * @param pVM The VM handle.
284 */
285PGMDECL(uint32_t) PGMGetHyper32BitCR3(PVM pVM);
286
287/**
288 * Gets the CR3 register value for the PAE shadow memory context.
289 * @returns CR3 value.
290 * @param pVM The VM handle.
291 */
292PGMDECL(uint32_t) PGMGetHyperPaeCR3(PVM pVM);
293
294/**
295 * Gets the CR3 register value for the AMD64 shadow memory context.
296 * @returns CR3 value.
297 * @param pVM The VM handle.
298 */
299PGMDECL(uint32_t) PGMGetHyperAmd64CR3(PVM pVM);
300
301/**
302 * Gets the current CR3 register value for the HC intermediate memory context.
303 * @returns CR3 value.
304 * @param pVM The VM handle.
305 */
306PGMDECL(uint32_t) PGMGetInterHCCR3(PVM pVM);
307
308/**
309 * Gets the current CR3 register value for the GC intermediate memory context.
310 * @returns CR3 value.
311 * @param pVM The VM handle.
312 */
313PGMDECL(uint32_t) PGMGetInterGCCR3(PVM pVM);
314
315/**
316 * Gets the CR3 register value for the 32-Bit intermediate memory context.
317 * @returns CR3 value.
318 * @param pVM The VM handle.
319 */
320PGMDECL(uint32_t) PGMGetInter32BitCR3(PVM pVM);
321
322/**
323 * Gets the CR3 register value for the PAE intermediate memory context.
324 * @returns CR3 value.
325 * @param pVM The VM handle.
326 */
327PGMDECL(uint32_t) PGMGetInterPaeCR3(PVM pVM);
328
329/**
330 * Gets the CR3 register value for the AMD64 intermediate memory context.
331 * @returns CR3 value.
332 * @param pVM The VM handle.
333 */
334PGMDECL(uint32_t) PGMGetInterAmd64CR3(PVM pVM);
335
336/**
337 * \#PF Handler.
338 *
339 * @returns VBox status code (appropriate for GC return).
340 * @param pVM VM Handle.
341 * @param uErr The trap error code.
342 * @param pRegFrame Trap register frame.
343 * @param pvFault The fault address.
344 */
345PGMDECL(int) PGMTrap0eHandler(PVM pVM, RTGCUINT uErr, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault);
346
347/**
348 * Prefetch a page/set of pages.
349 *
350 * Typically used to sync commonly used pages before entering raw mode
351 * after a CR3 reload.
352 *
353 * @returns VBox status code suitable for scheduling.
354 * @retval VINF_SUCCESS on success.
355 * @retval VINF_PGM_SYNC_CR3 if we're out of shadow pages or something like that.
356 * @param pVM VM handle.
357 * @param GCPtrPage Page to invalidate.
358 */
359PGMDECL(int) PGMPrefetchPage(PVM pVM, RTGCPTR GCPtrPage);
360
361/**
362 * Verifies a range of pages for read or write access.
363 *
364 * Supports handling of pages marked for dirty bit tracking and CSAM.
365 *
366 * @returns VBox status code.
367 * @param pVM VM handle.
368 * @param Addr Guest virtual address to check.
369 * @param cbSize Access size.
370 * @param fAccess Access type (r/w, user/supervisor (X86_PTE_*).
371 */
372PGMDECL(int) PGMVerifyAccess(PVM pVM, RTGCUINTPTR Addr, uint32_t cbSize, uint32_t fAccess);
373
374/**
375 * Verifies a range of pages for read or write access
376 *
377 * Only checks the guest's page tables
378 *
379 * @returns VBox status code.
380 * @param pVM VM handle.
381 * @param Addr Guest virtual address to check
382 * @param cbSize Access size
383 * @param fAccess Access type (r/w, user/supervisor (X86_PTE_*))
384 */
385PGMDECL(int) PGMIsValidAccess(PVM pVM, RTGCUINTPTR Addr, uint32_t cbSize, uint32_t fAccess);
386
387/**
388 * Executes an instruction using the interpreter.
389 *
390 * @returns VBox status code (appropriate for trap handling and GC return).
391 * @param pVM VM handle.
392 * @param pRegFrame Register frame.
393 * @param pvFault Fault address.
394 */
395PGMDECL(int) PGMInterpretInstruction(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault);
396
397/**
398 * Maps a range of physical pages at a given virtual address
399 * in the guest context.
400 *
401 * The GC virtual address range must be within an existing mapping.
402 *
403 * @returns VBox status code.
404 * @param pVM The virtual machine.
405 * @param GCPtr Where to map the page(s). Must be page aligned.
406 * @param HCPhys Start of the range of physical pages. Must be page aligned.
407 * @param cbPages Number of bytes to map. Must be page aligned.
408 * @param fFlags Page flags (X86_PTE_*).
409 */
410PGMDECL(int) PGMMap(PVM pVM, RTGCUINTPTR GCPtr, RTHCPHYS HCPhys, uint32_t cbPages, unsigned fFlags);
411
412/**
413 * Sets (replaces) the page flags for a range of pages in a mapping.
414 *
415 * The pages must be mapped pages, it's not possible to change the flags of
416 * Guest OS pages.
417 *
418 * @returns VBox status.
419 * @param pVM VM handle.
420 * @param GCPtr Virtual address of the first page in the range.
421 * @param cb Size (in bytes) of the range to apply the modification to.
422 * @param fFlags Page flags X86_PTE_*, excluding the page mask of course.
423 */
424PGMDECL(int) PGMMapSetPage(PVM pVM, RTGCPTR GCPtr, uint64_t cb, uint64_t fFlags);
425
426/**
427 * Modify page flags for a range of pages in a mapping.
428 *
429 * The existing flags are ANDed with the fMask and ORed with the fFlags.
430 *
431 * @returns VBox status code.
432 * @param pVM VM handle.
433 * @param GCPtr Virtual address of the first page in the range.
434 * @param cb Size (in bytes) of the range to apply the modification to.
435 * @param fFlags The OR mask - page flags X86_PTE_*, excluding the page mask of course.
436 * @param fMask The AND mask - page flags X86_PTE_*.
437 * Be very CAREFUL when ~'ing constants which could be 32-bit!
438 */
439PGMDECL(int) PGMMapModifyPage(PVM pVM, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask);
440
441/**
442 * Gets effective page information (from the VMM page directory).
443 *
444 * @returns VBox status.
445 * @param pVM VM Handle.
446 * @param GCPtr Guest Context virtual address of the page.
447 * @param pfFlags Where to store the flags. These are X86_PTE_*.
448 * @param pHCPhys Where to store the HC physical address of the page.
449 * This is page aligned.
450 * @remark You should use PGMMapGetPage() for pages in a mapping.
451 */
452PGMDECL(int) PGMShwGetPage(PVM pVM, RTGCPTR GCPtr, uint64_t *pfFlags, PRTHCPHYS pHCPhys);
453
454/**
455 * Sets (replaces) the page flags for a range of pages in the shadow context.
456 *
457 * @returns VBox status.
458 * @param pVM VM handle.
459 * @param GCPtr The address of the first page.
460 * @param cb The size of the range in bytes.
461 * @param fFlags Page flags X86_PTE_*, excluding the page mask of course.
462 * @remark You must use PGMMapSetPage() for pages in a mapping.
463 */
464PGMDECL(int) PGMShwSetPage(PVM pVM, RTGCPTR GCPtr, size_t cb, uint64_t fFlags);
465
466/**
467 * Modify page flags for a range of pages in the shadow context.
468 *
469 * The existing flags are ANDed with the fMask and ORed with the fFlags.
470 *
471 * @returns VBox status code.
472 * @param pVM VM handle.
473 * @param GCPtr Virtual address of the first page in the range.
474 * @param cb Size (in bytes) of the range to apply the modification to.
475 * @param fFlags The OR mask - page flags X86_PTE_*, excluding the page mask of course.
476 * @param fMask The AND mask - page flags X86_PTE_*.
477 * Be very CAREFUL when ~'ing constants which could be 32-bit!
478 * @remark You must use PGMMapModifyPage() for pages in a mapping.
479 */
480PGMDECL(int) PGMShwModifyPage(PVM pVM, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask);
481
482/**
483 * Gets effective Guest OS page information.
484 *
485 * When GCPtr is in a big page, the function will return as if it was a normal
486 * 4KB page. If the need for distinguishing between big and normal page becomes
487 * necessary at a later point, a PGMGstGetPageEx() will be created for that
488 * purpose.
489 *
490 * @returns VBox status.
491 * @param pVM VM Handle.
492 * @param GCPtr Guest Context virtual address of the page.
493 * @param pfFlags Where to store the flags. These are X86_PTE_*, even for big pages.
494 * @param pGCPhys Where to store the GC physical address of the page.
495 * This is page aligned. The fact that the
496 */
497PGMDECL(int) PGMGstGetPage(PVM pVM, RTGCPTR GCPtr, uint64_t *pfFlags, PRTGCPHYS pGCPhys);
498
499/**
500 * Checks if the page is present.
501 *
502 * @returns true if the page is present.
503 * @returns false if the page is not present.
504 * @param pVM The VM handle.
505 * @param GCPtr Address within the page.
506 */
507PGMDECL(bool) PGMGstIsPagePresent(PVM pVM, RTGCPTR GCPtr);
508
509/**
510 * Sets (replaces) the page flags for a range of pages in the guest's tables.
511 *
512 * @returns VBox status.
513 * @param pVM VM handle.
514 * @param GCPtr The address of the first page.
515 * @param cb The size of the range in bytes.
516 * @param fFlags Page flags X86_PTE_*, excluding the page mask of course.
517 */
518PGMDECL(int) PGMGstSetPage(PVM pVM, RTGCPTR GCPtr, size_t cb, uint64_t fFlags);
519
520/**
521 * Modify page flags for a range of pages in the guest's tables
522 *
523 * The existing flags are ANDed with the fMask and ORed with the fFlags.
524 *
525 * @returns VBox status code.
526 * @param pVM VM handle.
527 * @param GCPtr Virtual address of the first page in the range.
528 * @param cb Size (in bytes) of the range to apply the modification to.
529 * @param fFlags The OR mask - page flags X86_PTE_*, excluding the page mask of course.
530 * @param fMask The AND mask - page flags X86_PTE_*, excluding the page mask of course.
531 * Be very CAREFUL when ~'ing constants which could be 32-bit!
532 */
533PGMDECL(int) PGMGstModifyPage(PVM pVM, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask);
534
535/**
536 * Performs and schedules necessary updates following a CR3 load or reload.
537 *
538 * This will normally involve mapping the guest PD or nPDPTR
539 *
540 * @returns VBox status code.
541 * @retval VINF_PGM_SYNC_CR3 if monitoring requires a CR3 sync. This can
542 * safely be ignored and overridden since the FF will be set too then.
543 * @param pVM VM handle.
544 * @param cr3 The new cr3.
545 * @param fGlobal Indicates whether this is a global flush or not.
546 */
547PGMDECL(int) PGMFlushTLB(PVM pVM, uint32_t cr3, bool fGlobal);
548
549/**
550 * Synchronize the paging structures.
551 *
552 * This function is called in response to the VM_FF_PGM_SYNC_CR3 and
553 * VM_FF_PGM_SYNC_CR3_NONGLOBAL. Those two force action flags are set
554 * in several places, most importantly whenever the CR3 is loaded.
555 *
556 * @returns VBox status code.
557 * @param pVM The virtual machine.
558 * @param cr0 Guest context CR0 register
559 * @param cr3 Guest context CR3 register
560 * @param cr4 Guest context CR4 register
561 * @param fGlobal Including global page directories or not
562 */
563PGMDECL(int) PGMSyncCR3(PVM pVM, uint32_t cr0, uint32_t cr3, uint32_t cr4, bool fGlobal);
564
565/**
566 * Called whenever CR0 or CR4 in a way which may change
567 * the paging mode.
568 *
569 * @returns VBox status code fit for scheduling in GC and R0.
570 * @retval VINF_SUCCESS if the was no change, or it was successfully dealt with.
571 * @retval VINF_PGM_CHANGE_MODE if we're in GC or R0 and the mode changes.
572 * @param pVM VM handle.
573 * @param cr0 The new cr0.
574 * @param cr4 The new cr4.
575 * @param efer The new extended feature enable register.
576 */
577PGMDECL(int) PGMChangeMode(PVM pVM, uint32_t cr0, uint32_t cr4, uint64_t efer);
578
579/**
580 * Gets the current guest paging mode.
581 *
582 * @returns The current paging mode.
583 * @param pVM The VM handle.
584 */
585PGMDECL(PGMMODE) PGMGetGuestMode(PVM pVM);
586
587/**
588 * Get mode name.
589 *
590 * @returns read-only name string.
591 * @param enmMode The mode which name is desired.
592 */
593PGMDECL(const char *) PGMGetModeName(PGMMODE enmMode);
594
595/**
596 * Register a access handler for a physical range.
597 *
598 * @returns VBox status code.
599 * @param pVM VM Handle.
600 * @param enmType Handler type. Any of the PGMPHYSHANDLERTYPE_PHYSICAL* enums.
601 * @param GCPhys Start physical address.
602 * @param GCPhysLast Last physical address. (inclusive)
603 * @param pfnHandlerR3 The R3 handler.
604 * @param pvUserR3 User argument to the R3 handler.
605 * @param pfnHandlerR0 The R0 handler.
606 * @param pvUserR0 User argument to the R0 handler.
607 * @param pfnHandlerGC The GC handler.
608 * @param pvUserGC User argument to the GC handler.
609 * This must be a GC pointer because it will be relocated!
610 * @param pszDesc Pointer to description string. This must not be freed.
611 */
612PGMDECL(int) PGMHandlerPhysicalRegisterEx(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS GCPhysLast,
613 HCPTRTYPE(PFNPGMR3PHYSHANDLER) pfnHandlerR3, RTHCPTR pvUserR3,
614 R0PTRTYPE(PFNPGMR0PHYSHANDLER) pfnHandlerR0, RTHCPTR pvUserR0,
615 GCPTRTYPE(PFNPGMGCPHYSHANDLER) pfnHandlerGC, RTGCPTR pvUserGC,
616 HCPTRTYPE(const char *) pszDesc);
617
618/**
619 * Modify a physical page access handler.
620 *
621 * Modification can only be done to the range it self, not the type or anything else.
622 *
623 * @returns VBox status code.
624 * For all return codes other than VERR_PGM_HANDLER_NOT_FOUND and VINF_SUCCESS the range is deregistered
625 * and a new registration must be performed!
626 * @param pVM VM handle.
627 * @param GCPhysCurrent Current location.
628 * @param GCPhys New location.
629 * @param GCPhysLast New last location.
630 */
631PGMDECL(int) PGMHandlerPhysicalModify(PVM pVM, RTGCPHYS GCPhysCurrent, RTGCPHYS GCPhys, RTGCPHYS GCPhysLast);
632
633/**
634 * Register a physical page access handler.
635 *
636 * @returns VBox status code.
637 * @param pVM VM Handle.
638 * @param GCPhys Start physical address earlier passed to PGMR3HandlerPhysicalRegister().
639 */
640PGMDECL(int) PGMHandlerPhysicalDeregister(PVM pVM, RTGCPHYS GCPhys);
641
642/**
643 * Changes the callbacks associated with a physical access handler.
644 *
645 * @returns VBox status code.
646 * @param pVM VM Handle.
647 * @param GCPhys Start physical address.
648 * @param pfnHandlerR3 The R3 handler.
649 * @param pvUserR3 User argument to the R3 handler.
650 * @param pfnHandlerR0 The R0 handler.
651 * @param pvUserR0 User argument to the R0 handler.
652 * @param pfnHandlerGC The GC handler.
653 * @param pvUserGC User argument to the GC handler.
654 * This must be a GC pointer because it will be relocated!
655 * @param pszDesc Pointer to description string. This must not be freed.
656 */
657PGMDECL(int) PGMHandlerPhysicalChangeCallbacks(PVM pVM, RTGCPHYS GCPhys,
658 HCPTRTYPE(PFNPGMR3PHYSHANDLER) pfnHandlerR3, RTHCPTR pvUserR3,
659 R0PTRTYPE(PFNPGMR0PHYSHANDLER) pfnHandlerR0, RTHCPTR pvUserR0,
660 GCPTRTYPE(PFNPGMGCPHYSHANDLER) pfnHandlerGC, RTGCPTR pvUserGC,
661 HCPTRTYPE(const char *) pszDesc);
662
663/**
664 * Splitts a physical access handler in two.
665 *
666 * @returns VBox status code.
667 * @param pVM VM Handle.
668 * @param GCPhys Start physical address of the handler.
669 * @param GCPhysSplit The split address.
670 */
671PGMDECL(int) PGMHandlerPhysicalSplit(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS GCPhysSplit);
672
673/**
674 * Joins up two adjacent physical access handlers which has the same callbacks.
675 *
676 * @returns VBox status code.
677 * @param pVM VM Handle.
678 * @param GCPhys1 Start physical address of the first handler.
679 * @param GCPhys2 Start physical address of the second handler.
680 */
681PGMDECL(int) PGMHandlerPhysicalJoin(PVM pVM, RTGCPHYS GCPhys1, RTGCPHYS GCPhys2);
682
683/**
684 * Temporarily turns off the access monitoring of a page within a monitored
685 * physical write/all page access handler region.
686 *
687 * Use this when no further #PFs are required for that page. Be aware that
688 * a page directory sync might reset the flags, and turn on access monitoring
689 * for the page.
690 *
691 * The caller must do required page table modifications.
692 *
693 * @returns VBox status code.
694 * @param pVM VM Handle
695 * @param GCPhys Start physical address earlier passed to PGMR3HandlerPhysicalRegister().
696 * @param GCPhysPage Physical address of the page to turn off access monitoring for.
697 */
698PGMDECL(int) PGMHandlerPhysicalPageTempOff(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS GCPhysPage);
699
700
701/**
702 * Resets any modifications to individual pages in a physical
703 * page access handler region.
704 *
705 * This is used in pair with PGMHandlerPhysicalModify().
706 *
707 * @returns VBox status code.
708 * @param pVM VM Handle
709 * @param GCPhys Start physical address earlier passed to PGMR3HandlerPhysicalRegister().
710 */
711PGMDECL(int) PGMHandlerPhysicalReset(PVM pVM, RTGCPHYS GCPhys);
712
713/**
714 * Turns access monitoring of a page within a monitored
715 * physical write/all page access handler region back on.
716 *
717 * The caller must do required page table modifications.
718 *
719 * @returns VBox status code.
720 * @param pVM VM Handle
721 * @param GCPhys Start physical address earlier passed to PGMR3HandlerPhysicalRegister().
722 * @param GCPhysPage Physical address of the page to turn on access monitoring for.
723 */
724PGMDECL(int) PGMHandlerPhysicalPageReset(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS GCPhysPage);
725
726/**
727 * Checks if a physical range is handled
728 *
729 * @returns boolean.
730 * @param pVM VM Handle
731 * @param GCPhys Start physical address earlier passed to PGMR3HandlerPhysicalRegister().
732 */
733PGMDECL(bool) PGMHandlerPhysicalIsRegistered(PVM pVM, RTGCPHYS GCPhys);
734
735/**
736 * Checks if Address Gate 20 is enabled or not.
737 *
738 * @returns true if enabled.
739 * @returns false if disabled.
740 * @param pVM VM handle.
741 */
742PGMDECL(bool) PGMPhysIsA20Enabled(PVM pVM);
743
744/**
745 * Validates a GC physical address.
746 *
747 * @returns true if valid.
748 * @returns false if invalid.
749 * @param pVM The VM handle.
750 * @param GCPhys The physical address to validate.
751 */
752PGMDECL(bool) PGMPhysIsGCPhysValid(PVM pVM, RTGCPHYS GCPhys);
753
754/**
755 * Checks if a GC physical address is a normal page,
756 * i.e. not ROM, MMIO or reserved.
757 *
758 * @returns true if normal.
759 * @returns false if invalid, ROM, MMIO or reserved page.
760 * @param pVM The VM handle.
761 * @param GCPhys The physical address to check.
762 */
763PGMDECL(bool) PGMPhysIsGCPhysNormal(PVM pVM, RTGCPHYS GCPhys);
764
765/**
766 * Converts a GC physical address to a HC physical address.
767 *
768 * @returns VINF_SUCCESS on success.
769 * @returns VERR_PGM_PHYS_PAGE_RESERVED it it's a valid GC physical
770 * page but has no physical backing.
771 * @returns VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS if it's not a valid
772 * GC physical address.
773 * @param pVM The VM handle.
774 * @param GCPhys The GC physical address to convert.
775 * @param pHCPhys Where to store the HC physical address on success.
776 */
777PGMDECL(int) PGMPhysGCPhys2HCPhys(PVM pVM, RTGCPHYS GCPhys, PRTHCPHYS pHCPhys);
778
779/**
780 * Converts a GC physical address to a HC pointer.
781 *
782 * @returns VINF_SUCCESS on success.
783 * @returns VERR_PGM_PHYS_PAGE_RESERVED it it's a valid GC physical
784 * page but has no physical backing.
785 * @returns VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS if it's not a valid
786 * GC physical address.
787 * @param pVM The VM handle.
788 * @param GCPhys The GC physical address to convert.
789 * @param cbRange Physical range
790 * @param pHCPtr Where to store the HC pointer on success.
791 */
792PGMDECL(int) PGMPhysGCPhys2HCPtr(PVM pVM, RTGCPHYS GCPhys, RTUINT cbRange, PRTHCPTR pHCPtr);
793
794/**
795 * Validates a HC pointer.
796 *
797 * @returns true if valid.
798 * @returns false if invalid.
799 * @param pVM The VM handle.
800 * @param HCPtr The pointer to validate.
801 */
802PGMDECL(bool) PGMPhysIsHCPtrValid(PVM pVM, RTHCPTR HCPtr);
803
804/**
805 * Converts a HC pointer to a GC physical address.
806 *
807 * @returns VINF_SUCCESS on success.
808 * @returns VERR_INVALID_POINTER if the pointer is not within the
809 * GC physical memory.
810 * @param pVM The VM handle.
811 * @param HCPtr The HC pointer to convert.
812 * @param pGCPhys Where to store the GC physical address on success.
813 */
814PGMDECL(int) PGMPhysHCPtr2GCPhys(PVM pVM, RTHCPTR HCPtr, PRTGCPHYS pGCPhys);
815
816/**
817 * Converts a HC pointer to a GC physical address.
818 *
819 * @returns VINF_SUCCESS on success.
820 * @returns VERR_PGM_PHYS_PAGE_RESERVED it it's a valid GC physical
821 * page but has no physical backing.
822 * @returns VERR_INVALID_POINTER if the pointer is not within the
823 * GC physical memory.
824 * @param pVM The VM handle.
825 * @param HCPtr The HC pointer to convert.
826 * @param pHCPhys Where to store the HC physical address on success.
827 */
828PGMDECL(int) PGMPhysHCPtr2HCPhys(PVM pVM, RTHCPTR HCPtr, PRTHCPHYS pHCPhys);
829
830/**
831 * Validates a HC Physical address.
832 *
833 * This is an extremely slow API, don't use it!
834 *
835 * @returns true if valid.
836 * @returns false if invalid.
837 * @param pVM The VM handle.
838 * @param HCPhys The physical address to validate.
839 */
840PGMDECL(bool) PGMPhysIsHCPhysValid(PVM pVM, RTHCPHYS HCPhys);
841
842/**
843 * Converts a HC physical address to a GC physical address.
844 *
845 * This is an extremely slow API, don't use it!
846 *
847 * @returns VINF_SUCCESS on success.
848 * @returns VERR_INVALID_POINTER if the HC physical address is
849 * not within the GC physical memory.
850 * @param pVM The VM handle.
851 * @param HCPhys The HC physical address to convert.
852 * @param pGCPhys Where to store the GC physical address on success.
853 */
854PGMDECL(int) PGMPhysHCPhys2GCPhys(PVM pVM, RTHCPHYS HCPhys, PRTGCPHYS pGCPhys);
855
856/**
857 * Converts a HC physical address to a HC pointer.
858 *
859 * This is an extremely slow API, don't use it!
860 *
861 * @returns VINF_SUCCESS on success.
862 * @returns VERR_INVALID_POINTER if the HC physical address is
863 * not within the GC physical memory.
864 * @param pVM The VM handle.
865 * @param HCPhys The HC physical address to convert.
866 * @param pHCPtr Where to store the HC pointer on success.
867 */
868PGMDECL(int) PGMPhysHCPhys2HCPtr(PVM pVM, RTHCPHYS HCPhys, PRTHCPTR pHCPtr);
869
870/**
871 * Converts a guest pointer to a GC physical address.
872 *
873 * This uses the current CR3/CR0/CR4 of the guest.
874 *
875 * @returns VBox status code.
876 * @param pVM The VM Handle
877 * @param GCPtr The guest pointer to convert.
878 * @param pGCPhys Where to store the HC physical address.
879 */
880PGMDECL(int) PGMPhysGCPtr2GCPhys(PVM pVM, RTGCPTR GCPtr, PRTGCPHYS pGCPhys);
881
882/**
883 * Converts a guest pointer to a HC physical address.
884 *
885 * This uses the current CR3/CR0/CR4 of the guest.
886 *
887 * @returns VBox status code.
888 * @param pVM The VM Handle
889 * @param GCPtr The guest pointer to convert.
890 * @param pHCPhys Where to store the HC physical address.
891 */
892PGMDECL(int) PGMPhysGCPtr2HCPhys(PVM pVM, RTGCPTR GCPtr, PRTHCPHYS pHCPhys);
893
894/**
895 * Converts a guest pointer to a HC pointer.
896 *
897 * This uses the current CR3/CR0/CR4 of the guest.
898 *
899 * @returns VBox status code.
900 * @param pVM The VM Handle
901 * @param GCPtr The guest pointer to convert.
902 * @param pHCPtr Where to store the HC virtual address.
903 */
904PGMDECL(int) PGMPhysGCPtr2HCPtr(PVM pVM, RTGCPTR GCPtr, PRTHCPTR pHCPtr);
905
906/**
907 * Converts a guest virtual address to a HC pointer by specfied CR3 and flags.
908 *
909 * @returns VBox status code.
910 * @param pVM The VM Handle
911 * @param GCPtr The guest pointer to convert.
912 * @param cr3 The guest CR3.
913 * @param fFlags Flags used for interpreting the PD correctly: X86_CR4_PSE and X86_CR4_PAE
914 * @param pHCPtr Where to store the HC pointer.
915 *
916 * @remark This function is used by the REM at a time where PGM could
917 * potentially not be in sync. It could also be used by a
918 * future DBGF API to cpu state independent conversions.
919 */
920PGMDECL(int) PGMPhysGCPtr2HCPtrByGstCR3(PVM pVM, RTGCPTR GCPtr, uint32_t cr3, unsigned fFlags, PRTHCPTR pHCPtr);
921
922/**
923 * Read physical memory.
924 *
925 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
926 * want to ignore those.
927 *
928 * @param pVM VM Handle.
929 * @param GCPhys Physical address start reading from.
930 * @param pvBuf Where to put the read bits.
931 * @param cbRead How many bytes to read.
932 */
933PGMDECL(void) PGMPhysRead(PVM pVM, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead);
934
935/**
936 * Write to physical memory.
937 *
938 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
939 * want to ignore those.
940 *
941 * @param pVM VM Handle.
942 * @param GCPhys Physical address to write to.
943 * @param pvBuf What to write.
944 * @param cbWrite How many bytes to write.
945 */
946PGMDECL(void) PGMPhysWrite(PVM pVM, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite);
947
948
949#ifndef IN_GC /* Only ring 0 & 3. */
950
951/**
952 * Read from guest physical memory by GC physical address, bypassing
953 * MMIO and access handlers.
954 *
955 * @returns VBox status.
956 * @param pVM VM handle.
957 * @param pvDst The destination address.
958 * @param GCPhysSrc The source address (GC physical address).
959 * @param cb The number of bytes to read.
960 */
961PGMDECL(int) PGMPhysReadGCPhys(PVM pVM, void *pvDst, RTGCPHYS GCPhysSrc, size_t cb);
962
963/**
964 * Write to guest physical memory referenced by GC pointer.
965 * Write memory to GC physical address in guest physical memory.
966 *
967 * This will bypass MMIO and access handlers.
968 *
969 * @returns VBox status.
970 * @param pVM VM handle.
971 * @param GCPhysDst The GC physical address of the destination.
972 * @param pvSrc The source buffer.
973 * @param cb The number of bytes to write.
974 */
975PGMDECL(int) PGMPhysWriteGCPhys(PVM pVM, RTGCPHYS GCPhysDst, const void *pvSrc, size_t cb);
976
977/**
978 * Read from guest physical memory referenced by GC pointer.
979 *
980 * This function uses the current CR3/CR0/CR4 of the guest and will
981 * bypass access handlers and not set any accessed bits.
982 *
983 * @returns VBox status.
984 * @param pVM VM handle.
985 * @param pvDst The destination address.
986 * @param GCPtrSrc The source address (GC pointer).
987 * @param cb The number of bytes to read.
988 */
989PGMDECL(int) PGMPhysReadGCPtr(PVM pVM, void *pvDst, RTGCPTR GCPtrSrc, size_t cb);
990
991/**
992 * Write to guest physical memory referenced by GC pointer.
993 *
994 * This function uses the current CR3/CR0/CR4 of the guest and will
995 * bypass access handlers and not set dirty or accessed bits.
996 *
997 * @returns VBox status.
998 * @param pVM VM handle.
999 * @param GCPtrDst The destination address (GC pointer).
1000 * @param pvSrc The source address.
1001 * @param cb The number of bytes to write.
1002 */
1003PGMDECL(int) PGMPhysWriteGCPtr(PVM pVM, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb);
1004
1005/**
1006 * Write to guest physical memory referenced by GC pointer and update the PTE.
1007 *
1008 * This function uses the current CR3/CR0/CR4 of the guest and will
1009 * bypass access handlers and set any dirty and accessed bits in the PTE.
1010 *
1011 * If you don't want to set the dirty bit, use PGMR3PhysWriteGCPtr().
1012 *
1013 * @returns VBox status.
1014 * @param pVM VM handle.
1015 * @param GCPtrDst The destination address (GC pointer).
1016 * @param pvSrc The source address.
1017 * @param cb The number of bytes to write.
1018 */
1019PGMDECL(int) PGMPhysWriteGCPtrDirty(PVM pVM, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb);
1020
1021/**
1022 * Emulation of the invlpg instruction (HC only actually).
1023 *
1024 * @returns VBox status code.
1025 * @param pVM VM handle.
1026 * @param GCPtrPage Page to invalidate.
1027 * @remark ASSUMES the page table entry or page directory is
1028 * valid. Fairly safe, but there could be edge cases!
1029 * @todo Flush page or page directory only if necessary!
1030 */
1031PGMDECL(int) PGMInvalidatePage(PVM pVM, RTGCPTR GCPtrPage);
1032
1033#endif /* !IN_GC */
1034
1035/**
1036 * Performs a read of guest virtual memory for instruction emulation.
1037 *
1038 * This will check permissions, raise exceptions and update the access bits.
1039 *
1040 * The current implementation will bypass all access handlers. It may later be
1041 * changed to at least respect MMIO.
1042 *
1043 *
1044 * @returns VBox status code suitable to scheduling.
1045 * @retval VINF_SUCCESS if the read was performed successfully.
1046 * @retval VINF_EM_RAW_GUEST_TRAP if an exception was raised but not dispatched yet.
1047 * @retval VINF_TRPM_XCPT_DISPATCHED if an exception was raised and dispatched.
1048 *
1049 * @param pVM The VM handle.
1050 * @param pCtxCore The context core.
1051 * @param pvDst Where to put the bytes we've read.
1052 * @param GCPtrSrc The source address.
1053 * @param cb The number of bytes to read. Not more than a page.
1054 *
1055 * @remark This function will dynamically map physical pages in GC. This may unmap
1056 * mappings done by the caller. Be careful!
1057 */
1058PGMDECL(int) PGMPhysInterpretedRead(PVM pVM, PCPUMCTXCORE pCtxCore, void *pvDst, RTGCUINTPTR GCPtrSrc, size_t cb);
1059
1060#ifdef VBOX_STRICT
1061/**
1062 * Asserts that the handlers+guest-page-tables == ramrange-flags and
1063 * that the physical addresses associated with virtual handlers are correct.
1064 *
1065 * @returns Number of mismatches.
1066 * @param pVM The VM handle.
1067 */
1068PGMDECL(unsigned) PGMAssertHandlerAndFlagsInSync(PVM pVM);
1069
1070/**
1071 * Asserts that there are no mapping conflicts.
1072 *
1073 * @returns Number of conflicts.
1074 * @param pVM The VM Handle.
1075 */
1076PGMDECL(unsigned) PGMAssertNoMappingConflicts(PVM pVM);
1077
1078/**
1079 * Asserts that everything related to the guest CR3 is correctly shadowed.
1080 *
1081 * This will call PGMAssertNoMappingConflicts() and PGMAssertHandlerAndFlagsInSync(),
1082 * and assert the correctness of the guest CR3 mapping before asserting that the
1083 * shadow page tables is in sync with the guest page tables.
1084 *
1085 * @returns Number of conflicts.
1086 * @param pVM The VM Handle.
1087 * @param cr3 The current guest CR3 register value.
1088 * @param cr4 The current guest CR4 register value.
1089 */
1090PGMDECL(unsigned) PGMAssertCR3(PVM pVM, uint32_t cr3, uint32_t cr4);
1091#endif /* VBOX_STRICT */
1092
1093
1094#ifdef IN_GC
1095
1096/** @defgroup grp_pgm_gc The PGM Guest Context API
1097 * @ingroup grp_pgm
1098 * @{
1099 */
1100
1101/**
1102 * Temporarily maps one guest page specified by GC physical address.
1103 * These pages must have a physical mapping in HC, i.e. they cannot be MMIO pages.
1104 *
1105 * Be WARNED that the dynamic page mapping area is small, 8 pages, thus the space is
1106 * reused after 8 mappings (or perhaps a few more if you score with the cache).
1107 *
1108 * @returns VBox status.
1109 * @param pVM VM handle.
1110 * @param GCPhys GC Physical address of the page.
1111 * @param ppv Where to store the address of the mapping.
1112 */
1113PGMGCDECL(int) PGMGCDynMapGCPage(PVM pVM, RTGCPHYS GCPhys, void **ppv);
1114
1115/**
1116 * Temporarily maps one guest page specified by unaligned GC physical address.
1117 * These pages must have a physical mapping in HC, i.e. they cannot be MMIO pages.
1118 *
1119 * Be WARNED that the dynamic page mapping area is small, 8 pages, thus the space is
1120 * reused after 8 mappings (or perhaps a few more if you score with the cache).
1121 *
1122 * The caller is aware that only the speicifed page is mapped and that really bad things
1123 * will happen if writing beyond the page!
1124 *
1125 * @returns VBox status.
1126 * @param pVM VM handle.
1127 * @param GCPhys GC Physical address within the page to be mapped.
1128 * @param ppv Where to store the address of the mapping address corresponding to GCPhys.
1129 */
1130PGMGCDECL(int) PGMGCDynMapGCPageEx(PVM pVM, RTGCPHYS GCPhys, void **ppv);
1131
1132/**
1133 * Temporarily maps one host page specified by HC physical address.
1134 *
1135 * Be WARNED that the dynamic page mapping area is small, 8 pages, thus the space is
1136 * reused after 8 mappings (or perhaps a few more if you score with the cache).
1137 *
1138 * @returns VBox status.
1139 * @param pVM VM handle.
1140 * @param HCPhys HC Physical address of the page.
1141 * @param ppv Where to store the address of the mapping.
1142 */
1143PGMGCDECL(int) PGMGCDynMapHCPage(PVM pVM, RTHCPHYS HCPhys, void **ppv);
1144
1145/**
1146 * Syncs a guest os page table.
1147 *
1148 * @returns VBox status code.
1149 * @param pVM VM handle.
1150 * @param iPD Page directory index.
1151 * @param pPDSrc Source page directory (i.e. Guest OS page directory).
1152 * Assume this is a temporary mapping.
1153 */
1154PGMGCDECL(int) PGMGCSyncPT(PVM pVM, unsigned iPD, PVBOXPD pPDSrc);
1155
1156/**
1157 * Emulation of the invlpg instruction.
1158 *
1159 * @returns VBox status code.
1160 * @param pVM VM handle.
1161 * @param GCPtrPage Page to invalidate.
1162 */
1163PGMGCDECL(int) PGMGCInvalidatePage(PVM pVM, RTGCPTR GCPtrPage);
1164
1165/** @} */
1166#endif
1167
1168
1169#ifdef IN_RING3
1170/** @defgroup grp_pgm_r3 The PGM Host Context Ring-3 API
1171 * @ingroup grp_pgm
1172 * @{
1173 */
1174/**
1175 * Initiates the paging of VM.
1176 *
1177 * @returns VBox status code.
1178 * @param pVM Pointer to VM structure.
1179 */
1180PGMR3DECL(int) PGMR3Init(PVM pVM);
1181
1182/**
1183 * Init the PGM bits that rely on VMMR0 and MM to be fully initialized.
1184 *
1185 * The dynamic mapping area will also be allocated and initialized at this
1186 * time. We could allocate it during PGMR3Init of course, but the mapping
1187 * wouldn't be allocated at that time preventing us from setting up the
1188 * page table entries with the dummy page.
1189 *
1190 * @returns VBox status code.
1191 * @param pVM VM handle.
1192 */
1193PGMR3DECL(int) PGMR3InitDynMap(PVM pVM);
1194
1195/**
1196 * Ring-3 init finalizing.
1197 *
1198 * @returns VBox status code.
1199 * @param pVM The VM handle.
1200 */
1201PGMR3DECL(int) PGMR3InitFinalize(PVM pVM);
1202
1203/**
1204 * Applies relocations to data and code managed by this
1205 * component. This function will be called at init and
1206 * whenever the VMM need to relocate it self inside the GC.
1207 *
1208 * @param pVM The VM.
1209 * @param offDelta Relocation delta relative to old location.
1210 */
1211PGMR3DECL(void) PGMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
1212
1213/**
1214 * The VM is being reset.
1215 *
1216 * For the PGM component this means that any PD write monitors
1217 * needs to be removed.
1218 *
1219 * @param pVM VM handle.
1220 */
1221PGMR3DECL(void) PGMR3Reset(PVM pVM);
1222
1223/**
1224 * Terminates the PGM.
1225 *
1226 * @returns VBox status code.
1227 * @param pVM Pointer to VM structure.
1228 */
1229PGMR3DECL(int) PGMR3Term(PVM pVM);
1230
1231/**
1232 * Serivce a VMMCALLHOST_PGM_LOCK call.
1233 *
1234 * @returns VBox status code.
1235 * @param pVM The VM handle.
1236 */
1237PDMR3DECL(int) PGMR3LockCall(PVM pVM);
1238
1239/**
1240 * Inform PGM we don't wish any mapping to be put into the shadow page table. (necessary for e.g. VMX)
1241 *
1242 * @returns VBox status code.
1243 * @param pVM VM handle.
1244 */
1245PGMR3DECL(int) PGMR3RemoveMappingsFromShwPD(PVM pVM);
1246
1247/**
1248 * Allocate missing physical pages for an existing guest RAM range.
1249 *
1250 * @returns VBox status.
1251 * @param pVM The VM handle.
1252 * @param GCPhys GC physical address of the RAM range. (page aligned)
1253 */
1254PGMR3DECL(int) PGM3PhysGrowRange(PVM pVM, RTGCPHYS GCPhys);
1255
1256/**
1257 * Interface MMR3RamRegister(), MMR3RomRegister() and MMIO handler
1258 * registration calls.
1259 *
1260 * It registers the physical memory range with PGM. MM is responsible
1261 * for the toplevel things - allocation and locking - while PGM is taking
1262 * care of all the details and implements the physical address space virtualization.
1263 *
1264 * @returns VBox status.
1265 * @param pVM The VM handle.
1266 * @param pvRam HC virtual address of the RAM range. (page aligned)
1267 * @param GCPhys GC physical address of the RAM range. (page aligned)
1268 * @param cb Size of the RAM range. (page aligned)
1269 * @param fFlags Flags, MM_RAM_*.
1270 * @param paPages Pointer an array of physical page descriptors.
1271 * @param pszDesc Description string.
1272 */
1273PGMR3DECL(int) PGMR3PhysRegister(PVM pVM, void *pvRam, RTGCPHYS GCPhys, size_t cb, unsigned fFlags, const SUPPAGE *paPages, const char *pszDesc);
1274
1275/**
1276 * Register a chunk of a the physical memory range with PGM. MM is responsible
1277 * for the toplevel things - allocation and locking - while PGM is taking
1278 * care of all the details and implements the physical address space virtualization.
1279 *
1280 * @returns VBox status.
1281 * @param pVM The VM handle.
1282 * @param pvRam HC virtual address of the RAM range. (page aligned)
1283 * @param GCPhys GC physical address of the RAM range. (page aligned)
1284 * @param cb Size of the RAM range. (page aligned)
1285 * @param fFlags Flags, MM_RAM_*.
1286 * @param paPages Pointer an array of physical page descriptors.
1287 * @param pszDesc Description string.
1288 */
1289PGMR3DECL(int) PGMR3PhysRegisterChunk(PVM pVM, void *pvRam, RTGCPHYS GCPhys, size_t cb, unsigned fFlags, const SUPPAGE *paPages, const char *pszDesc);
1290
1291/**
1292 * Interface MMIO handler relocation calls.
1293 *
1294 * It relocates an existing physical memory range with PGM.
1295 *
1296 * @returns VBox status.
1297 * @param pVM The VM handle.
1298 * @param GCPhysOld Previous GC physical address of the RAM range. (page aligned)
1299 * @param GCPhysNew New GC physical address of the RAM range. (page aligned)
1300 * @param cb Size of the RAM range. (page aligned)
1301 */
1302PGMR3DECL(int) PGMR3PhysRelocate(PVM pVM, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, size_t cb);
1303
1304/**
1305 * Interface MMR3RomRegister() and MMR3PhysReserve calls to update the
1306 * flags of existing RAM ranges.
1307 *
1308 * @returns VBox status.
1309 * @param pVM The VM handle.
1310 * @param GCPhys GC physical address of the RAM range. (page aligned)
1311 * @param cb Size of the RAM range. (page aligned)
1312 * @param fFlags The Or flags, MM_RAM_* #defines.
1313 * @param fMask The and mask for the flags.
1314 */
1315PGMR3DECL(int) PGMR3PhysSetFlags(PVM pVM, RTGCPHYS GCPhys, size_t cb, unsigned fFlags, unsigned fMask);
1316
1317/**
1318 * Sets the Address Gate 20 state.
1319 *
1320 * @param pVM VM handle.
1321 * @param fEnable True if the gate should be enabled.
1322 * False if the gate should be disabled.
1323 */
1324PGMDECL(void) PGMR3PhysSetA20(PVM pVM, bool fEnable);
1325
1326/**
1327 * Creates a page table based mapping in GC.
1328 *
1329 * @returns VBox status code.
1330 * @param pVM VM Handle.
1331 * @param GCPtr Virtual Address. (Page table aligned!)
1332 * @param cb Size of the range. Must be a 4MB aligned!
1333 * @param pfnRelocate Relocation callback function.
1334 * @param pvUser User argument to the callback.
1335 * @param pszDesc Pointer to description string. This must not be freed.
1336 */
1337PGMR3DECL(int) PGMR3MapPT(PVM pVM, RTGCPTR GCPtr, size_t cb, PFNPGMRELOCATE pfnRelocate, void *pvUser, const char *pszDesc);
1338
1339/**
1340 * Removes a page table based mapping.
1341 *
1342 * @returns VBox status code.
1343 * @param pVM VM Handle.
1344 * @param GCPtr Virtual Address. (Page table aligned!)
1345 */
1346PGMR3DECL(int) PGMR3UnmapPT(PVM pVM, RTGCPTR GCPtr);
1347
1348/**
1349 * Gets the size of the current guest mappings if they were to be
1350 * put next to oneanother.
1351 *
1352 * @returns VBox status code.
1353 * @param pVM The VM.
1354 * @param pcb Where to store the size.
1355 */
1356PGMR3DECL(int) PGMR3MappingsSize(PVM pVM, size_t *pcb);
1357
1358/**
1359 * Fixes the guest context mappings in a range reserved from the Guest OS.
1360 *
1361 * @returns VBox status code.
1362 * @param pVM The VM.
1363 * @param GCPtrBase The address of the reserved range of guest memory.
1364 * @param cb The size of the range starting at GCPtrBase.
1365 */
1366PGMR3DECL(int) PGMR3MappingsFix(PVM pVM, RTGCPTR GCPtrBase, size_t cb);
1367
1368/**
1369 * Unfixes the mappings.
1370 * After calling this function mapping conflict detection will be enabled.
1371 *
1372 * @returns VBox status code.
1373 * @param pVM The VM.
1374 */
1375PGMR3DECL(int) PGMR3MappingsUnfix(PVM pVM);
1376
1377/**
1378 * Map pages into the intermediate context (switcher code).
1379 * These pages are mapped at both the give virtual address and at
1380 * the physical address (for identity mapping).
1381 *
1382 * @returns VBox status code.
1383 * @param pVM The virtual machine.
1384 * @param pvAddr Intermediate context address of the mapping. This must be entriely below 4GB!
1385 * @param HCPhys Start of the range of physical pages. This must be entriely below 4GB!
1386 * @param cbPages Number of bytes to map.
1387 *
1388 * @remark This API shall not be used to anything but mapping the switcher code.
1389 */
1390PGMR3DECL(int) PGMR3MapIntermediate(PVM pVM, void *pvAddr, RTHCPHYS HCPhys, unsigned cbPages);
1391
1392/**
1393 * Checks guest PD for conflicts with VMM GC mappings.
1394 *
1395 * @returns true if conflict detected.
1396 * @returns false if not.
1397 * @param pVM The virtual machine.
1398 * @param cr3 Guest context CR3 register.
1399 * @param fRawR0 Whether RawR0 is enabled or not.
1400 */
1401PGMR3DECL(bool) PGMR3MapHasConflicts(PVM pVM, uint32_t cr3, bool fRawR0);
1402
1403/**
1404 * Read memory from the guest mappings.
1405 *
1406 * This will use the page tables associated with the mappings to
1407 * read the memory. This means that not all kind of memory is readable
1408 * since we don't necessarily know how to convert that physical address
1409 * to a HC virtual one.
1410 *
1411 * @returns VBox status.
1412 * @param pVM VM handle.
1413 * @param pvDst The destination address (HC of course).
1414 * @param GCPtrSrc The source address (GC virtual address).
1415 * @param cb Number of bytes to read.
1416 */
1417PGMR3DECL(int) PGMR3MapRead(PVM pVM, void *pvDst, RTGCPTR GCPtrSrc, size_t cb);
1418
1419/**
1420 * Register a access handler for a physical range.
1421 *
1422 * @returns VBox status code.
1423 * @param pVM VM handle.
1424 * @param enmType Handler type. Any of the PGMPHYSHANDLERTYPE_PHYSICAL* enums.
1425 * @param GCPhys Start physical address.
1426 * @param GCPhysLast Last physical address. (inclusive)
1427 * @param pfnHandlerR3 The R3 handler.
1428 * @param pvUserR3 User argument to the R3 handler.
1429 * @param pszModR0 The R0 handler module. NULL means default R0 module.
1430 * @param pszHandlerR0 The R0 handler symbol name.
1431 * @param pvUserR0 User argument to the R0 handler.
1432 * @param pszModGC The GC handler module. NULL means default GC module.
1433 * @param pszHandlerGC The GC handler symbol name.
1434 * @param pvUserGC User argument to the GC handler.
1435 * This must be a GC pointer because it will be relocated!
1436 * @param pszDesc Pointer to description string. This must not be freed.
1437 */
1438PGMR3DECL(int) PGMR3HandlerPhysicalRegister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS GCPhysLast,
1439 PFNPGMR3PHYSHANDLER pfnHandlerR3, void *pvUserR3,
1440 const char *pszModR0, const char *pszHandlerR0, RTHCPTR pvUserR0,
1441 const char *pszModGC, const char *pszHandlerGC, RTGCPTR pvUserGC, const char *pszDesc);
1442
1443/**
1444 * Register an access handler for a virtual range.
1445 *
1446 * @returns VBox status code.
1447 * @param pVM VM handle.
1448 * @param enmType Handler type. Any of the PGMVIRTHANDLERTYPE_* enums.
1449 * @param GCPtr Start address.
1450 * @param GCPtrLast Last address. (inclusive)
1451 * @param pfnInvalidateHC The HC invalidate callback (can be 0)
1452 * @param pfnHandlerHC The HC handler.
1453 * @param pfnHandlerGC The GC handler.
1454 * @param pszDesc Pointer to description string. This must not be freed.
1455 */
1456PGMDECL(int) PGMHandlerVirtualRegisterEx(PVM pVM, PGMVIRTHANDLERTYPE enmType, RTGCPTR GCPtr, RTGCPTR GCPtrLast,
1457 PFNPGMHCVIRTINVALIDATE pfnInvalidateHC,
1458 PFNPGMHCVIRTHANDLER pfnHandlerHC, RTGCPTR pfnHandlerGC,
1459 HCPTRTYPE(const char *) pszDesc);
1460
1461/**
1462 * Register a access handler for a virtual range.
1463 *
1464 * @returns VBox status code.
1465 * @param pVM VM handle.
1466 * @param enmType Handler type. Any of the PGMVIRTHANDLERTYPE_* enums.
1467 * @param GCPtr Start address.
1468 * @param GCPtrLast Last address. (inclusive)
1469 * @param pfnInvalidateHC The HC invalidate callback (can be 0)
1470 * @param pfnHandlerHC The HC handler.
1471 * @param pszHandlerGC The GC handler symbol name.
1472 * @param pszModGC The GC handler module.
1473 * @param pszDesc Pointer to description string. This must not be freed.
1474 */
1475PGMR3DECL(int) PGMR3HandlerVirtualRegister(PVM pVM, PGMVIRTHANDLERTYPE enmType, RTGCPTR GCPtr, RTGCPTR GCPtrLast,
1476 PFNPGMHCVIRTINVALIDATE pfnInvalidateHC,
1477 PFNPGMHCVIRTHANDLER pfnHandlerHC,
1478 const char *pszHandlerGC, const char *pszModGC, const char *pszDesc);
1479
1480/**
1481 * Modify the page invalidation callback handler for a registered virtual range
1482 * (add more when needed)
1483 *
1484 * @returns VBox status code.
1485 * @param pVM VM handle.
1486 * @param GCPtr Start address.
1487 * @param pfnInvalidateHC The HC invalidate callback (can be 0)
1488 */
1489PGMDECL(int) PGMHandlerVirtualChangeInvalidateCallback(PVM pVM, RTGCPTR GCPtr, PFNPGMHCVIRTINVALIDATE pfnInvalidateHC);
1490
1491
1492/**
1493 * Deregister an access handler for a virtual range.
1494 *
1495 * @returns VBox status code.
1496 * @param pVM VM handle.
1497 * @param GCPtr Start address.
1498 */
1499PGMDECL(int) PGMHandlerVirtualDeregister(PVM pVM, RTGCPTR GCPtr);
1500
1501/**
1502 * Grows the shadow page pool.
1503 *
1504 * I.e. adds more pages to it, assuming that hasn't reached cMaxPages yet.
1505 *
1506 * @returns VBox status code.
1507 * @param pVM The VM handle.
1508 */
1509PDMR3DECL(int) PGMR3PoolGrow(PVM pVM);
1510
1511#ifdef __VBox_dbgf_h__ /** @todo fix this! */
1512/**
1513 * Dumps a page table hierarchy use only physical addresses and cr4/lm flags.
1514 *
1515 * @returns VBox status code (VINF_SUCCESS).
1516 * @param pVM The VM handle.
1517 * @param cr3 The root of the hierarchy.
1518 * @param cr4 The cr4, only PAE and PSE is currently used.
1519 * @param fLongMode Set if long mode, false if not long mode.
1520 * @param cMaxDepth Number of levels to dump.
1521 * @param pHlp Pointer to the output functions.
1522 */
1523PGMR3DECL(int) PGMR3DumpHierarchyHC(PVM pVM, uint32_t cr3, uint32_t cr4, bool fLongMode, unsigned cMaxDepth, PCDBGFINFOHLP pHlp);
1524#endif
1525
1526/**
1527 * Dumps a 32-bit guest page directory and page tables.
1528 *
1529 * @returns VBox status code (VINF_SUCCESS).
1530 * @param pVM The VM handle.
1531 * @param cr3 The root of the hierarchy.
1532 * @param cr4 The CR4, PSE is currently used.
1533 * @param PhysSearch Address to search for.
1534 */
1535PGMR3DECL(int) PGMR3DumpHierarchyGC(PVM pVM, uint32_t cr3, uint32_t cr4, RTGCPHYS PhysSearch);
1536
1537/**
1538 * Debug helper - Dumps the supplied page directory.
1539 *
1540 * @internal
1541 */
1542PGMR3DECL(void) PGMR3DumpPD(PVM pVM, PVBOXPD pPD);
1543
1544/**
1545 * Dumps the the PGM mappings..
1546 *
1547 * @param pVM VM handle.
1548 */
1549PGMR3DECL(void) PGMR3DumpMappings(PVM pVM);
1550
1551/** @todo r=bird: s/Byte/U8/ s/Word/U16/ s/Dword/U32/ to match other functions names and returned types. */
1552/**
1553 * Read physical memory. (one byte)
1554 *
1555 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
1556 * want to ignore those.
1557 *
1558 * @param pVM VM Handle.
1559 * @param GCPhys Physical address start reading from.
1560 */
1561PGMR3DECL(uint8_t) PGMR3PhysReadByte(PVM pVM, RTGCPHYS GCPhys);
1562
1563/**
1564 * Read physical memory. (one word)
1565 *
1566 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
1567 * want to ignore those.
1568 *
1569 * @param pVM VM Handle.
1570 * @param GCPhys Physical address start reading from.
1571 */
1572PGMR3DECL(uint16_t) PGMR3PhysReadWord(PVM pVM, RTGCPHYS GCPhys);
1573
1574/**
1575 * Read physical memory. (one dword)
1576 *
1577 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
1578 * want to ignore those.
1579 *
1580 * @param pVM VM Handle.
1581 * @param GCPhys Physical address start reading from.
1582 */
1583PGMR3DECL(uint32_t) PGMR3PhysReadDword(PVM pVM, RTGCPHYS GCPhys);
1584
1585/**
1586 * Write to physical memory. (one byte)
1587 *
1588 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
1589 * want to ignore those.
1590 *
1591 * @param pVM VM Handle.
1592 * @param GCPhys Physical address to write to.
1593 * @param val What to write.
1594 */
1595PGMR3DECL(void) PGMR3PhysWriteByte(PVM pVM, RTGCPHYS GCPhys, uint8_t val);
1596
1597/**
1598 * Write to physical memory. (one word)
1599 *
1600 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
1601 * want to ignore those.
1602 *
1603 * @param pVM VM Handle.
1604 * @param GCPhys Physical address to write to.
1605 * @param val What to write.
1606 */
1607PGMR3DECL(void) PGMR3PhysWriteWord(PVM pVM, RTGCPHYS GCPhys, uint16_t val);
1608
1609/**
1610 * Write to physical memory. (one dword)
1611 *
1612 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
1613 * want to ignore those.
1614 *
1615 * @param pVM VM Handle.
1616 * @param GCPhys Physical address to write to.
1617 * @param val What to write.
1618 */
1619PGMR3DECL(void) PGMR3PhysWriteDword(PVM pVM, RTGCPHYS GCPhys, uint32_t val);
1620
1621/**
1622 * Perform an integrity check on the PGM component.
1623 *
1624 * @returns VINF_SUCCESS if everything is fine.
1625 * @returns VBox error status after asserting on integrity breach.
1626 * @param pVM The VM handle.
1627 */
1628PDMR3DECL(int) PGMR3CheckIntegrity(PVM pVM);
1629
1630/** @} */
1631
1632#endif
1633
1634__END_DECLS
1635
1636/** @} */
1637#endif
1638
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