VirtualBox

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

Last change on this file since 229 was 210, checked in by vboxsync, 18 years ago

Logging groups for shared folders and VMM backdoor logging added.

  • 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 22 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 pHCPtr Where to store the HC pointer on success.
790 */
791PGMDECL(int) PGMPhysGCPhys2HCPtr(PVM pVM, RTGCPHYS GCPhys, PRTHCPTR pHCPtr);
792
793/**
794 * Validates a HC pointer.
795 *
796 * @returns true if valid.
797 * @returns false if invalid.
798 * @param pVM The VM handle.
799 * @param HCPtr The pointer to validate.
800 */
801PGMDECL(bool) PGMPhysIsHCPtrValid(PVM pVM, RTHCPTR HCPtr);
802
803/**
804 * Converts a HC pointer to a GC physical address.
805 *
806 * @returns VINF_SUCCESS on success.
807 * @returns VERR_INVALID_POINTER if the pointer is not within the
808 * GC physical memory.
809 * @param pVM The VM handle.
810 * @param HCPtr The HC pointer to convert.
811 * @param pGCPhys Where to store the GC physical address on success.
812 */
813PGMDECL(int) PGMPhysHCPtr2GCPhys(PVM pVM, RTHCPTR HCPtr, PRTGCPHYS pGCPhys);
814
815/**
816 * Converts a HC pointer to a GC physical address.
817 *
818 * @returns VINF_SUCCESS on success.
819 * @returns VERR_PGM_PHYS_PAGE_RESERVED it it's a valid GC physical
820 * page but has no physical backing.
821 * @returns VERR_INVALID_POINTER if the pointer is not within the
822 * GC physical memory.
823 * @param pVM The VM handle.
824 * @param HCPtr The HC pointer to convert.
825 * @param pHCPhys Where to store the HC physical address on success.
826 */
827PGMDECL(int) PGMPhysHCPtr2HCPhys(PVM pVM, RTHCPTR HCPtr, PRTHCPHYS pHCPhys);
828
829/**
830 * Validates a HC Physical address.
831 *
832 * This is an extremely slow API, don't use it!
833 *
834 * @returns true if valid.
835 * @returns false if invalid.
836 * @param pVM The VM handle.
837 * @param HCPhys The physical address to validate.
838 */
839PGMDECL(bool) PGMPhysIsHCPhysValid(PVM pVM, RTHCPHYS HCPhys);
840
841/**
842 * Converts a HC physical address to a GC physical address.
843 *
844 * This is an extremely slow API, don't use it!
845 *
846 * @returns VINF_SUCCESS on success.
847 * @returns VERR_INVALID_POINTER if the HC physical address is
848 * not within the GC physical memory.
849 * @param pVM The VM handle.
850 * @param HCPhys The HC physical address to convert.
851 * @param pGCPhys Where to store the GC physical address on success.
852 */
853PGMDECL(int) PGMPhysHCPhys2GCPhys(PVM pVM, RTHCPHYS HCPhys, PRTGCPHYS pGCPhys);
854
855/**
856 * Converts a HC physical address to a HC pointer.
857 *
858 * This is an extremely slow API, don't use it!
859 *
860 * @returns VINF_SUCCESS on success.
861 * @returns VERR_INVALID_POINTER if the HC physical address is
862 * not within the GC physical memory.
863 * @param pVM The VM handle.
864 * @param HCPhys The HC physical address to convert.
865 * @param pHCPtr Where to store the HC pointer on success.
866 */
867PGMDECL(int) PGMPhysHCPhys2HCPtr(PVM pVM, RTHCPHYS HCPhys, PRTHCPTR pHCPtr);
868
869/**
870 * Converts a guest pointer to a GC physical address.
871 *
872 * This uses the current CR3/CR0/CR4 of the guest.
873 *
874 * @returns VBox status code.
875 * @param pVM The VM Handle
876 * @param GCPtr The guest pointer to convert.
877 * @param pGCPhys Where to store the HC physical address.
878 */
879PGMDECL(int) PGMPhysGCPtr2GCPhys(PVM pVM, RTGCPTR GCPtr, PRTGCPHYS pGCPhys);
880
881/**
882 * Converts a guest pointer to a HC physical address.
883 *
884 * This uses the current CR3/CR0/CR4 of the guest.
885 *
886 * @returns VBox status code.
887 * @param pVM The VM Handle
888 * @param GCPtr The guest pointer to convert.
889 * @param pHCPhys Where to store the HC physical address.
890 */
891PGMDECL(int) PGMPhysGCPtr2HCPhys(PVM pVM, RTGCPTR GCPtr, PRTHCPHYS pHCPhys);
892
893/**
894 * Converts a guest pointer to a HC pointer.
895 *
896 * This uses the current CR3/CR0/CR4 of the guest.
897 *
898 * @returns VBox status code.
899 * @param pVM The VM Handle
900 * @param GCPtr The guest pointer to convert.
901 * @param pHCPtr Where to store the HC virtual address.
902 */
903PGMDECL(int) PGMPhysGCPtr2HCPtr(PVM pVM, RTGCPTR GCPtr, PRTHCPTR pHCPtr);
904
905/**
906 * Converts a guest virtual address to a HC pointer by specfied CR3 and flags.
907 *
908 * @returns VBox status code.
909 * @param pVM The VM Handle
910 * @param GCPtr The guest pointer to convert.
911 * @param cr3 The guest CR3.
912 * @param fFlags Flags used for interpreting the PD correctly: X86_CR4_PSE and X86_CR4_PAE
913 * @param pHCPtr Where to store the HC pointer.
914 *
915 * @remark This function is used by the REM at a time where PGM could
916 * potentially not be in sync. It could also be used by a
917 * future DBGF API to cpu state independent conversions.
918 */
919PGMDECL(int) PGMPhysGCPtr2HCPtrByGstCR3(PVM pVM, RTGCPTR GCPtr, uint32_t cr3, unsigned fFlags, PRTHCPTR pHCPtr);
920
921/**
922 * Read physical memory.
923 *
924 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
925 * want to ignore those.
926 *
927 * @param pVM VM Handle.
928 * @param GCPhys Physical address start reading from.
929 * @param pvBuf Where to put the read bits.
930 * @param cbRead How many bytes to read.
931 */
932PGMDECL(void) PGMPhysRead(PVM pVM, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead);
933
934/**
935 * Write to physical memory.
936 *
937 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
938 * want to ignore those.
939 *
940 * @param pVM VM Handle.
941 * @param GCPhys Physical address to write to.
942 * @param pvBuf What to write.
943 * @param cbWrite How many bytes to write.
944 */
945PGMDECL(void) PGMPhysWrite(PVM pVM, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite);
946
947
948#ifndef IN_GC /* Only ring 0 & 3. */
949
950/**
951 * Read from guest physical memory by GC physical address, bypassing
952 * MMIO and access handlers.
953 *
954 * @returns VBox status.
955 * @param pVM VM handle.
956 * @param pvDst The destination address.
957 * @param GCPhysSrc The source address (GC physical address).
958 * @param cb The number of bytes to read.
959 */
960PGMDECL(int) PGMPhysReadGCPhys(PVM pVM, void *pvDst, RTGCPHYS GCPhysSrc, size_t cb);
961
962/**
963 * Write to guest physical memory referenced by GC pointer.
964 * Write memory to GC physical address in guest physical memory.
965 *
966 * This will bypass MMIO and access handlers.
967 *
968 * @returns VBox status.
969 * @param pVM VM handle.
970 * @param GCPhysDst The GC physical address of the destination.
971 * @param pvSrc The source buffer.
972 * @param cb The number of bytes to write.
973 */
974PGMDECL(int) PGMPhysWriteGCPhys(PVM pVM, RTGCPHYS GCPhysDst, const void *pvSrc, size_t cb);
975
976/**
977 * Read from guest physical memory referenced by GC pointer.
978 *
979 * This function uses the current CR3/CR0/CR4 of the guest and will
980 * bypass access handlers and not set any accessed bits.
981 *
982 * @returns VBox status.
983 * @param pVM VM handle.
984 * @param pvDst The destination address.
985 * @param GCPtrSrc The source address (GC pointer).
986 * @param cb The number of bytes to read.
987 */
988PGMDECL(int) PGMPhysReadGCPtr(PVM pVM, void *pvDst, RTGCPTR GCPtrSrc, size_t cb);
989
990/**
991 * Write to guest physical memory referenced by GC pointer.
992 *
993 * This function uses the current CR3/CR0/CR4 of the guest and will
994 * bypass access handlers and not set dirty or accessed bits.
995 *
996 * @returns VBox status.
997 * @param pVM VM handle.
998 * @param GCPtrDst The destination address (GC pointer).
999 * @param pvSrc The source address.
1000 * @param cb The number of bytes to write.
1001 */
1002PGMDECL(int) PGMPhysWriteGCPtr(PVM pVM, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb);
1003
1004/**
1005 * Write to guest physical memory referenced by GC pointer and update the PTE.
1006 *
1007 * This function uses the current CR3/CR0/CR4 of the guest and will
1008 * bypass access handlers and set any dirty and accessed bits in the PTE.
1009 *
1010 * If you don't want to set the dirty bit, use PGMR3PhysWriteGCPtr().
1011 *
1012 * @returns VBox status.
1013 * @param pVM VM handle.
1014 * @param GCPtrDst The destination address (GC pointer).
1015 * @param pvSrc The source address.
1016 * @param cb The number of bytes to write.
1017 */
1018PGMDECL(int) PGMPhysWriteGCPtrDirty(PVM pVM, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb);
1019
1020/**
1021 * Emulation of the invlpg instruction (HC only actually).
1022 *
1023 * @returns VBox status code.
1024 * @param pVM VM handle.
1025 * @param GCPtrPage Page to invalidate.
1026 * @remark ASSUMES the page table entry or page directory is
1027 * valid. Fairly safe, but there could be edge cases!
1028 * @todo Flush page or page directory only if necessary!
1029 */
1030PGMDECL(int) PGMInvalidatePage(PVM pVM, RTGCPTR GCPtrPage);
1031
1032#endif /* !IN_GC */
1033
1034/**
1035 * Performs a read of guest virtual memory for instruction emulation.
1036 *
1037 * This will check permissions, raise exceptions and update the access bits.
1038 *
1039 * The current implementation will bypass all access handlers. It may later be
1040 * changed to at least respect MMIO.
1041 *
1042 *
1043 * @returns VBox status code suitable to scheduling.
1044 * @retval VINF_SUCCESS if the read was performed successfully.
1045 * @retval VINF_EM_RAW_GUEST_TRAP if an exception was raised but not dispatched yet.
1046 * @retval VINF_TRPM_XCPT_DISPATCHED if an exception was raised and dispatched.
1047 *
1048 * @param pVM The VM handle.
1049 * @param pCtxCore The context core.
1050 * @param pvDst Where to put the bytes we've read.
1051 * @param GCPtrSrc The source address.
1052 * @param cb The number of bytes to read. Not more than a page.
1053 *
1054 * @remark This function will dynamically map physical pages in GC. This may unmap
1055 * mappings done by the caller. Be careful!
1056 */
1057PGMDECL(int) PGMPhysInterpretedRead(PVM pVM, PCPUMCTXCORE pCtxCore, void *pvDst, RTGCUINTPTR GCPtrSrc, size_t cb);
1058
1059#ifdef VBOX_STRICT
1060/**
1061 * Asserts that the handlers+guest-page-tables == ramrange-flags and
1062 * that the physical addresses associated with virtual handlers are correct.
1063 *
1064 * @returns Number of mismatches.
1065 * @param pVM The VM handle.
1066 */
1067PGMDECL(unsigned) PGMAssertHandlerAndFlagsInSync(PVM pVM);
1068
1069/**
1070 * Asserts that there are no mapping conflicts.
1071 *
1072 * @returns Number of conflicts.
1073 * @param pVM The VM Handle.
1074 */
1075PGMDECL(unsigned) PGMAssertNoMappingConflicts(PVM pVM);
1076
1077/**
1078 * Asserts that everything related to the guest CR3 is correctly shadowed.
1079 *
1080 * This will call PGMAssertNoMappingConflicts() and PGMAssertHandlerAndFlagsInSync(),
1081 * and assert the correctness of the guest CR3 mapping before asserting that the
1082 * shadow page tables is in sync with the guest page tables.
1083 *
1084 * @returns Number of conflicts.
1085 * @param pVM The VM Handle.
1086 * @param cr3 The current guest CR3 register value.
1087 * @param cr4 The current guest CR4 register value.
1088 */
1089PGMDECL(unsigned) PGMAssertCR3(PVM pVM, uint32_t cr3, uint32_t cr4);
1090#endif /* VBOX_STRICT */
1091
1092
1093#ifdef IN_GC
1094
1095/** @defgroup grp_pgm_gc The PGM Guest Context API
1096 * @ingroup grp_pgm
1097 * @{
1098 */
1099
1100/**
1101 * Temporarily maps one guest page specified by GC physical address.
1102 * These pages must have a physical mapping in HC, i.e. they cannot be MMIO pages.
1103 *
1104 * Be WARNED that the dynamic page mapping area is small, 8 pages, thus the space is
1105 * reused after 8 mappings (or perhaps a few more if you score with the cache).
1106 *
1107 * @returns VBox status.
1108 * @param pVM VM handle.
1109 * @param GCPhys GC Physical address of the page.
1110 * @param ppv Where to store the address of the mapping.
1111 */
1112PGMGCDECL(int) PGMGCDynMapGCPage(PVM pVM, RTGCPHYS GCPhys, void **ppv);
1113
1114/**
1115 * Temporarily maps one guest page specified by unaligned GC physical address.
1116 * These pages must have a physical mapping in HC, i.e. they cannot be MMIO pages.
1117 *
1118 * Be WARNED that the dynamic page mapping area is small, 8 pages, thus the space is
1119 * reused after 8 mappings (or perhaps a few more if you score with the cache).
1120 *
1121 * The caller is aware that only the speicifed page is mapped and that really bad things
1122 * will happen if writing beyond the page!
1123 *
1124 * @returns VBox status.
1125 * @param pVM VM handle.
1126 * @param GCPhys GC Physical address within the page to be mapped.
1127 * @param ppv Where to store the address of the mapping address corresponding to GCPhys.
1128 */
1129PGMGCDECL(int) PGMGCDynMapGCPageEx(PVM pVM, RTGCPHYS GCPhys, void **ppv);
1130
1131/**
1132 * Temporarily maps one host page specified by HC physical address.
1133 *
1134 * Be WARNED that the dynamic page mapping area is small, 8 pages, thus the space is
1135 * reused after 8 mappings (or perhaps a few more if you score with the cache).
1136 *
1137 * @returns VBox status.
1138 * @param pVM VM handle.
1139 * @param HCPhys HC Physical address of the page.
1140 * @param ppv Where to store the address of the mapping.
1141 */
1142PGMGCDECL(int) PGMGCDynMapHCPage(PVM pVM, RTHCPHYS HCPhys, void **ppv);
1143
1144/**
1145 * Syncs a guest os page table.
1146 *
1147 * @returns VBox status code.
1148 * @param pVM VM handle.
1149 * @param iPD Page directory index.
1150 * @param pPDSrc Source page directory (i.e. Guest OS page directory).
1151 * Assume this is a temporary mapping.
1152 */
1153PGMGCDECL(int) PGMGCSyncPT(PVM pVM, unsigned iPD, PVBOXPD pPDSrc);
1154
1155/**
1156 * Emulation of the invlpg instruction.
1157 *
1158 * @returns VBox status code.
1159 * @param pVM VM handle.
1160 * @param GCPtrPage Page to invalidate.
1161 */
1162PGMGCDECL(int) PGMGCInvalidatePage(PVM pVM, RTGCPTR GCPtrPage);
1163
1164/** @} */
1165#endif
1166
1167
1168#ifdef IN_RING3
1169/** @defgroup grp_pgm_r3 The PGM Host Context Ring-3 API
1170 * @ingroup grp_pgm
1171 * @{
1172 */
1173/**
1174 * Initiates the paging of VM.
1175 *
1176 * @returns VBox status code.
1177 * @param pVM Pointer to VM structure.
1178 */
1179PGMR3DECL(int) PGMR3Init(PVM pVM);
1180
1181/**
1182 * Init the PGM bits that rely on VMMR0 and MM to be fully initialized.
1183 *
1184 * The dynamic mapping area will also be allocated and initialized at this
1185 * time. We could allocate it during PGMR3Init of course, but the mapping
1186 * wouldn't be allocated at that time preventing us from setting up the
1187 * page table entries with the dummy page.
1188 *
1189 * @returns VBox status code.
1190 * @param pVM VM handle.
1191 */
1192PGMR3DECL(int) PGMR3InitDynMap(PVM pVM);
1193
1194/**
1195 * Ring-3 init finalizing.
1196 *
1197 * @returns VBox status code.
1198 * @param pVM The VM handle.
1199 */
1200PGMR3DECL(int) PGMR3InitFinalize(PVM pVM);
1201
1202/**
1203 * Applies relocations to data and code managed by this
1204 * component. This function will be called at init and
1205 * whenever the VMM need to relocate it self inside the GC.
1206 *
1207 * @param pVM The VM.
1208 * @param offDelta Relocation delta relative to old location.
1209 */
1210PGMR3DECL(void) PGMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
1211
1212/**
1213 * The VM is being reset.
1214 *
1215 * For the PGM component this means that any PD write monitors
1216 * needs to be removed.
1217 *
1218 * @param pVM VM handle.
1219 */
1220PGMR3DECL(void) PGMR3Reset(PVM pVM);
1221
1222/**
1223 * Terminates the PGM.
1224 *
1225 * @returns VBox status code.
1226 * @param pVM Pointer to VM structure.
1227 */
1228PGMR3DECL(int) PGMR3Term(PVM pVM);
1229
1230/**
1231 * Serivce a VMMCALLHOST_PGM_LOCK call.
1232 *
1233 * @returns VBox status code.
1234 * @param pVM The VM handle.
1235 */
1236PDMR3DECL(int) PGMR3LockCall(PVM pVM);
1237
1238/**
1239 * Inform PGM we don't wish any mapping to be put into the shadow page table. (necessary for e.g. VMX)
1240 *
1241 * @returns VBox status code.
1242 * @param pVM VM handle.
1243 */
1244PGMR3DECL(int) PGMR3RemoveMappingsFromShwPD(PVM pVM);
1245
1246/**
1247 * Allocate missing physical pages for an existing guest RAM range.
1248 *
1249 * @returns VBox status.
1250 * @param pVM The VM handle.
1251 * @param GCPhys GC physical address of the RAM range. (page aligned)
1252 */
1253PGMR3DECL(int) PGM3PhysGrowRange(PVM pVM, RTGCPHYS GCPhys);
1254
1255/**
1256 * Interface MMR3RamRegister(), MMR3RomRegister() and MMIO handler
1257 * registration calls.
1258 *
1259 * It registers the physical memory range with PGM. MM is responsible
1260 * for the toplevel things - allocation and locking - while PGM is taking
1261 * care of all the details and implements the physical address space virtualization.
1262 *
1263 * @returns VBox status.
1264 * @param pVM The VM handle.
1265 * @param pvRam HC virtual address of the RAM range. (page aligned)
1266 * @param GCPhys GC physical address of the RAM range. (page aligned)
1267 * @param cb Size of the RAM range. (page aligned)
1268 * @param fFlags Flags, MM_RAM_*.
1269 * @param paPages Pointer an array of physical page descriptors.
1270 * @param pszDesc Description string.
1271 */
1272PGMR3DECL(int) PGMR3PhysRegister(PVM pVM, void *pvRam, RTGCPHYS GCPhys, size_t cb, unsigned fFlags, const SUPPAGE *paPages, const char *pszDesc);
1273
1274/**
1275 * Register a chunk of a the physical memory range with PGM. MM is responsible
1276 * for the toplevel things - allocation and locking - while PGM is taking
1277 * care of all the details and implements the physical address space virtualization.
1278 *
1279 * @returns VBox status.
1280 * @param pVM The VM handle.
1281 * @param pvRam HC virtual address of the RAM range. (page aligned)
1282 * @param GCPhys GC physical address of the RAM range. (page aligned)
1283 * @param cb Size of the RAM range. (page aligned)
1284 * @param fFlags Flags, MM_RAM_*.
1285 * @param paPages Pointer an array of physical page descriptors.
1286 * @param pszDesc Description string.
1287 */
1288PGMR3DECL(int) PGMR3PhysRegisterChunk(PVM pVM, void *pvRam, RTGCPHYS GCPhys, size_t cb, unsigned fFlags, const SUPPAGE *paPages, const char *pszDesc);
1289
1290/**
1291 * Interface MMIO handler relocation calls.
1292 *
1293 * It relocates an existing physical memory range with PGM.
1294 *
1295 * @returns VBox status.
1296 * @param pVM The VM handle.
1297 * @param GCPhysOld Previous GC physical address of the RAM range. (page aligned)
1298 * @param GCPhysNew New GC physical address of the RAM range. (page aligned)
1299 * @param cb Size of the RAM range. (page aligned)
1300 */
1301PGMR3DECL(int) PGMR3PhysRelocate(PVM pVM, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, size_t cb);
1302
1303/**
1304 * Interface MMR3RomRegister() and MMR3PhysReserve calls to update the
1305 * flags of existing RAM ranges.
1306 *
1307 * @returns VBox status.
1308 * @param pVM The VM handle.
1309 * @param GCPhys GC physical address of the RAM range. (page aligned)
1310 * @param cb Size of the RAM range. (page aligned)
1311 * @param fFlags The Or flags, MM_RAM_* #defines.
1312 * @param fMask The and mask for the flags.
1313 */
1314PGMR3DECL(int) PGMR3PhysSetFlags(PVM pVM, RTGCPHYS GCPhys, size_t cb, unsigned fFlags, unsigned fMask);
1315
1316/**
1317 * Sets the Address Gate 20 state.
1318 *
1319 * @param pVM VM handle.
1320 * @param fEnable True if the gate should be enabled.
1321 * False if the gate should be disabled.
1322 */
1323PGMDECL(void) PGMR3PhysSetA20(PVM pVM, bool fEnable);
1324
1325/**
1326 * Creates a page table based mapping in GC.
1327 *
1328 * @returns VBox status code.
1329 * @param pVM VM Handle.
1330 * @param GCPtr Virtual Address. (Page table aligned!)
1331 * @param cb Size of the range. Must be a 4MB aligned!
1332 * @param pfnRelocate Relocation callback function.
1333 * @param pvUser User argument to the callback.
1334 * @param pszDesc Pointer to description string. This must not be freed.
1335 */
1336PGMR3DECL(int) PGMR3MapPT(PVM pVM, RTGCPTR GCPtr, size_t cb, PFNPGMRELOCATE pfnRelocate, void *pvUser, const char *pszDesc);
1337
1338/**
1339 * Removes a page table based mapping.
1340 *
1341 * @returns VBox status code.
1342 * @param pVM VM Handle.
1343 * @param GCPtr Virtual Address. (Page table aligned!)
1344 */
1345PGMR3DECL(int) PGMR3UnmapPT(PVM pVM, RTGCPTR GCPtr);
1346
1347/**
1348 * Gets the size of the current guest mappings if they were to be
1349 * put next to oneanother.
1350 *
1351 * @returns VBox status code.
1352 * @param pVM The VM.
1353 * @param pcb Where to store the size.
1354 */
1355PGMR3DECL(int) PGMR3MappingsSize(PVM pVM, size_t *pcb);
1356
1357/**
1358 * Fixes the guest context mappings in a range reserved from the Guest OS.
1359 *
1360 * @returns VBox status code.
1361 * @param pVM The VM.
1362 * @param GCPtrBase The address of the reserved range of guest memory.
1363 * @param cb The size of the range starting at GCPtrBase.
1364 */
1365PGMR3DECL(int) PGMR3MappingsFix(PVM pVM, RTGCPTR GCPtrBase, size_t cb);
1366
1367/**
1368 * Unfixes the mappings.
1369 * After calling this function mapping conflict detection will be enabled.
1370 *
1371 * @returns VBox status code.
1372 * @param pVM The VM.
1373 */
1374PGMR3DECL(int) PGMR3MappingsUnfix(PVM pVM);
1375
1376/**
1377 * Map pages into the intermediate context (switcher code).
1378 * These pages are mapped at both the give virtual address and at
1379 * the physical address (for identity mapping).
1380 *
1381 * @returns VBox status code.
1382 * @param pVM The virtual machine.
1383 * @param pvAddr Intermediate context address of the mapping. This must be entriely below 4GB!
1384 * @param HCPhys Start of the range of physical pages. This must be entriely below 4GB!
1385 * @param cbPages Number of bytes to map.
1386 *
1387 * @remark This API shall not be used to anything but mapping the switcher code.
1388 */
1389PGMR3DECL(int) PGMR3MapIntermediate(PVM pVM, void *pvAddr, RTHCPHYS HCPhys, unsigned cbPages);
1390
1391/**
1392 * Checks guest PD for conflicts with VMM GC mappings.
1393 *
1394 * @returns true if conflict detected.
1395 * @returns false if not.
1396 * @param pVM The virtual machine.
1397 * @param cr3 Guest context CR3 register.
1398 * @param fRawR0 Whether RawR0 is enabled or not.
1399 */
1400PGMR3DECL(bool) PGMR3MapHasConflicts(PVM pVM, uint32_t cr3, bool fRawR0);
1401
1402/**
1403 * Read memory from the guest mappings.
1404 *
1405 * This will use the page tables associated with the mappings to
1406 * read the memory. This means that not all kind of memory is readable
1407 * since we don't necessarily know how to convert that physical address
1408 * to a HC virtual one.
1409 *
1410 * @returns VBox status.
1411 * @param pVM VM handle.
1412 * @param pvDst The destination address (HC of course).
1413 * @param GCPtrSrc The source address (GC virtual address).
1414 * @param cb Number of bytes to read.
1415 */
1416PGMR3DECL(int) PGMR3MapRead(PVM pVM, void *pvDst, RTGCPTR GCPtrSrc, size_t cb);
1417
1418/**
1419 * Register a access handler for a physical range.
1420 *
1421 * @returns VBox status code.
1422 * @param pVM VM handle.
1423 * @param enmType Handler type. Any of the PGMPHYSHANDLERTYPE_PHYSICAL* enums.
1424 * @param GCPhys Start physical address.
1425 * @param GCPhysLast Last physical address. (inclusive)
1426 * @param pfnHandlerR3 The R3 handler.
1427 * @param pvUserR3 User argument to the R3 handler.
1428 * @param pszModR0 The R0 handler module. NULL means default R0 module.
1429 * @param pszHandlerR0 The R0 handler symbol name.
1430 * @param pvUserR0 User argument to the R0 handler.
1431 * @param pszModGC The GC handler module. NULL means default GC module.
1432 * @param pszHandlerGC The GC handler symbol name.
1433 * @param pvUserGC User argument to the GC handler.
1434 * This must be a GC pointer because it will be relocated!
1435 * @param pszDesc Pointer to description string. This must not be freed.
1436 */
1437PGMR3DECL(int) PGMR3HandlerPhysicalRegister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS GCPhysLast,
1438 PFNPGMR3PHYSHANDLER pfnHandlerR3, void *pvUserR3,
1439 const char *pszModR0, const char *pszHandlerR0, RTHCPTR pvUserR0,
1440 const char *pszModGC, const char *pszHandlerGC, RTGCPTR pvUserGC, const char *pszDesc);
1441
1442/**
1443 * Register an access handler for a virtual range.
1444 *
1445 * @returns VBox status code.
1446 * @param pVM VM handle.
1447 * @param enmType Handler type. Any of the PGMVIRTHANDLERTYPE_* enums.
1448 * @param GCPtr Start address.
1449 * @param GCPtrLast Last address. (inclusive)
1450 * @param pfnInvalidateHC The HC invalidate callback (can be 0)
1451 * @param pfnHandlerHC The HC handler.
1452 * @param pfnHandlerGC The GC handler.
1453 * @param pszDesc Pointer to description string. This must not be freed.
1454 */
1455PGMDECL(int) PGMHandlerVirtualRegisterEx(PVM pVM, PGMVIRTHANDLERTYPE enmType, RTGCPTR GCPtr, RTGCPTR GCPtrLast,
1456 PFNPGMHCVIRTINVALIDATE pfnInvalidateHC,
1457 PFNPGMHCVIRTHANDLER pfnHandlerHC, RTGCPTR pfnHandlerGC,
1458 HCPTRTYPE(const char *) pszDesc);
1459
1460/**
1461 * Register a access handler for a virtual range.
1462 *
1463 * @returns VBox status code.
1464 * @param pVM VM handle.
1465 * @param enmType Handler type. Any of the PGMVIRTHANDLERTYPE_* enums.
1466 * @param GCPtr Start address.
1467 * @param GCPtrLast Last address. (inclusive)
1468 * @param pfnInvalidateHC The HC invalidate callback (can be 0)
1469 * @param pfnHandlerHC The HC handler.
1470 * @param pszHandlerGC The GC handler symbol name.
1471 * @param pszModGC The GC handler module.
1472 * @param pszDesc Pointer to description string. This must not be freed.
1473 */
1474PGMR3DECL(int) PGMR3HandlerVirtualRegister(PVM pVM, PGMVIRTHANDLERTYPE enmType, RTGCPTR GCPtr, RTGCPTR GCPtrLast,
1475 PFNPGMHCVIRTINVALIDATE pfnInvalidateHC,
1476 PFNPGMHCVIRTHANDLER pfnHandlerHC,
1477 const char *pszHandlerGC, const char *pszModGC, const char *pszDesc);
1478
1479/**
1480 * Modify the page invalidation callback handler for a registered virtual range
1481 * (add more when needed)
1482 *
1483 * @returns VBox status code.
1484 * @param pVM VM handle.
1485 * @param GCPtr Start address.
1486 * @param pfnInvalidateHC The HC invalidate callback (can be 0)
1487 */
1488PGMDECL(int) PGMHandlerVirtualChangeInvalidateCallback(PVM pVM, RTGCPTR GCPtr, PFNPGMHCVIRTINVALIDATE pfnInvalidateHC);
1489
1490
1491/**
1492 * Deregister an access handler for a virtual range.
1493 *
1494 * @returns VBox status code.
1495 * @param pVM VM handle.
1496 * @param GCPtr Start address.
1497 */
1498PGMDECL(int) PGMHandlerVirtualDeregister(PVM pVM, RTGCPTR GCPtr);
1499
1500/**
1501 * Grows the shadow page pool.
1502 *
1503 * I.e. adds more pages to it, assuming that hasn't reached cMaxPages yet.
1504 *
1505 * @returns VBox status code.
1506 * @param pVM The VM handle.
1507 */
1508PDMR3DECL(int) PGMR3PoolGrow(PVM pVM);
1509
1510#ifdef __VBox_dbgf_h__ /** @todo fix this! */
1511/**
1512 * Dumps a page table hierarchy use only physical addresses and cr4/lm flags.
1513 *
1514 * @returns VBox status code (VINF_SUCCESS).
1515 * @param pVM The VM handle.
1516 * @param cr3 The root of the hierarchy.
1517 * @param cr4 The cr4, only PAE and PSE is currently used.
1518 * @param fLongMode Set if long mode, false if not long mode.
1519 * @param cMaxDepth Number of levels to dump.
1520 * @param pHlp Pointer to the output functions.
1521 */
1522PGMR3DECL(int) PGMR3DumpHierarchyHC(PVM pVM, uint32_t cr3, uint32_t cr4, bool fLongMode, unsigned cMaxDepth, PCDBGFINFOHLP pHlp);
1523#endif
1524
1525/**
1526 * Dumps a 32-bit guest page directory and page tables.
1527 *
1528 * @returns VBox status code (VINF_SUCCESS).
1529 * @param pVM The VM handle.
1530 * @param cr3 The root of the hierarchy.
1531 * @param cr4 The CR4, PSE is currently used.
1532 * @param PhysSearch Address to search for.
1533 */
1534PGMR3DECL(int) PGMR3DumpHierarchyGC(PVM pVM, uint32_t cr3, uint32_t cr4, RTGCPHYS PhysSearch);
1535
1536/**
1537 * Debug helper - Dumps the supplied page directory.
1538 *
1539 * @internal
1540 */
1541PGMR3DECL(void) PGMR3DumpPD(PVM pVM, PVBOXPD pPD);
1542
1543/**
1544 * Dumps the the PGM mappings..
1545 *
1546 * @param pVM VM handle.
1547 */
1548PGMR3DECL(void) PGMR3DumpMappings(PVM pVM);
1549
1550/** @todo r=bird: s/Byte/U8/ s/Word/U16/ s/Dword/U32/ to match other functions names and returned types. */
1551/**
1552 * Read physical memory. (one byte)
1553 *
1554 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
1555 * want to ignore those.
1556 *
1557 * @param pVM VM Handle.
1558 * @param GCPhys Physical address start reading from.
1559 */
1560PGMR3DECL(uint8_t) PGMR3PhysReadByte(PVM pVM, RTGCPHYS GCPhys);
1561
1562/**
1563 * Read physical memory. (one word)
1564 *
1565 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
1566 * want to ignore those.
1567 *
1568 * @param pVM VM Handle.
1569 * @param GCPhys Physical address start reading from.
1570 */
1571PGMR3DECL(uint16_t) PGMR3PhysReadWord(PVM pVM, RTGCPHYS GCPhys);
1572
1573/**
1574 * Read physical memory. (one dword)
1575 *
1576 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
1577 * want to ignore those.
1578 *
1579 * @param pVM VM Handle.
1580 * @param GCPhys Physical address start reading from.
1581 */
1582PGMR3DECL(uint32_t) PGMR3PhysReadDword(PVM pVM, RTGCPHYS GCPhys);
1583
1584/**
1585 * Write to physical memory. (one byte)
1586 *
1587 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
1588 * want to ignore those.
1589 *
1590 * @param pVM VM Handle.
1591 * @param GCPhys Physical address to write to.
1592 * @param val What to write.
1593 */
1594PGMR3DECL(void) PGMR3PhysWriteByte(PVM pVM, RTGCPHYS GCPhys, uint8_t val);
1595
1596/**
1597 * Write to physical memory. (one word)
1598 *
1599 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
1600 * want to ignore those.
1601 *
1602 * @param pVM VM Handle.
1603 * @param GCPhys Physical address to write to.
1604 * @param val What to write.
1605 */
1606PGMR3DECL(void) PGMR3PhysWriteWord(PVM pVM, RTGCPHYS GCPhys, uint16_t val);
1607
1608/**
1609 * Write to physical memory. (one dword)
1610 *
1611 * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
1612 * want to ignore those.
1613 *
1614 * @param pVM VM Handle.
1615 * @param GCPhys Physical address to write to.
1616 * @param val What to write.
1617 */
1618PGMR3DECL(void) PGMR3PhysWriteDword(PVM pVM, RTGCPHYS GCPhys, uint32_t val);
1619
1620/**
1621 * Perform an integrity check on the PGM component.
1622 *
1623 * @returns VINF_SUCCESS if everything is fine.
1624 * @returns VBox error status after asserting on integrity breach.
1625 * @param pVM The VM handle.
1626 */
1627PDMR3DECL(int) PGMR3CheckIntegrity(PVM pVM);
1628
1629/** @} */
1630
1631#endif
1632
1633__END_DECLS
1634
1635/** @} */
1636#endif
1637
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