PGMAllPool.cpp revision 7bae75e0b207aa4d4cad2a951271ad1a0e8ab9fd
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync/* $Id$ */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync/** @file
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * PGM Shadow Page Pool.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync/*
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Copyright (C) 2006-2007 Sun Microsystems, Inc.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync *
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * available from http://www.virtualbox.org. This file is free software;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * you can redistribute it and/or modify it under the terms of the GNU
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * General Public License (GPL) as published by the Free Software
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync *
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Clara, CA 95054 USA or visit http://www.sun.com if you need
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * additional information or have any questions.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync/*******************************************************************************
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync* Header Files *
7b9f0c34e9ea328981c99e97054bdf8684d9d620vboxsync*******************************************************************************/
9e7e0b61d29309a0ed7af9472c8d6d865f9e8a2dvboxsync#define LOG_GROUP LOG_GROUP_PGM_POOL
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#include <VBox/pgm.h>
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#include <VBox/mm.h>
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#include <VBox/em.h>
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync#include <VBox/cpum.h>
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync#ifdef IN_RC
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync# include <VBox/patm.h>
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#endif
b1cc3e87518139898395f96974ecff9e6bf228fbvboxsync#include "PGMInternal.h"
b1cc3e87518139898395f96974ecff9e6bf228fbvboxsync#include <VBox/vm.h>
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync#include <VBox/disopcode.h>
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync#include <VBox/hwacc_vmx.h>
388b6b190a5407548753b7fde12fa58134ec3563vboxsync
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync#include <VBox/log.h>
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#include <VBox/err.h>
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync#include <iprt/asm.h>
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync/*******************************************************************************
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync* Internal Functions *
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync*******************************************************************************/
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync__BEGIN_DECLS
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsyncstatic void pgmPoolFlushAllInt(PPGMPOOL pPool);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#ifdef PGMPOOL_WITH_USER_TRACKING
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncDECLINLINE(unsigned) pgmPoolTrackGetShadowEntrySize(PGMPOOLKIND enmKind);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncDECLINLINE(unsigned) pgmPoolTrackGetGuestEntrySize(PGMPOOLKIND enmKind);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncstatic void pgmPoolTrackDeref(PPGMPOOL pPool, PPGMPOOLPAGE pPage);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#endif
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#ifdef PGMPOOL_WITH_GCPHYS_TRACKING
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncstatic void pgmPoolTracDerefGCPhysHint(PPGMPOOL pPool, PPGMPOOLPAGE pPage, RTHCPHYS HCPhys, RTGCPHYS GCPhysHint);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#endif
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#ifdef PGMPOOL_WITH_CACHE
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncstatic int pgmPoolTrackAddUser(PPGMPOOL pPool, PPGMPOOLPAGE pPage, uint16_t iUser, uint32_t iUserTable);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#endif
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#ifdef PGMPOOL_WITH_MONITORING
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncstatic void pgmPoolMonitorModifiedRemove(PPGMPOOL pPool, PPGMPOOLPAGE pPage);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#endif
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#ifndef IN_RING3
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncDECLEXPORT(int) pgmPoolAccessHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPHYS GCPhysFault, void *pvUser);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#endif
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync__END_DECLS
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync/**
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * Checks if the specified page pool kind is for a 4MB or 2MB guest page.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync *
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @returns true if it's the shadow of a 4MB or 2MB guest page, otherwise false.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param enmKind The page kind.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncDECLINLINE(bool) pgmPoolIsBigPage(PGMPOOLKIND enmKind)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync{
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync switch (enmKind)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync {
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_4MB:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync return true;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync default:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync return false;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync }
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync}
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync#if defined(IN_RC) || defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync/**
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * Maps a pool page into the current context.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync *
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * @returns Pointer to the mapping.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * @param pPGM Pointer to the PGM instance data.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * @param pPage The page to map.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync */
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsyncvoid *pgmPoolMapPageFallback(PPGM pPGM, PPGMPOOLPAGE pPage)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync{
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync /* general pages are take care of by the inlined part, it
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync only ends up here in case of failure. */
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync AssertReleaseReturn(pPage->idx < PGMPOOL_IDX_FIRST, NULL);
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync/** @todo make sure HCPhys is valid for *all* indexes. */
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync /* special pages. */
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync# ifdef IN_RC
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync switch (pPage->idx)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync {
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync# ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOL_IDX_PD:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOL_IDX_PDPT:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOL_IDX_AMD64_CR3:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return pPGM->pShwRootRC;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync# else
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOL_IDX_PD:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return pPGM->pShw32BitPdRC;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOL_IDX_PAE_PD:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOL_IDX_PAE_PD_0:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return pPGM->apShwPaePDsRC[0];
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOL_IDX_PAE_PD_1:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return pPGM->apShwPaePDsRC[1];
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOL_IDX_PAE_PD_2:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return pPGM->apShwPaePDsRC[2];
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOL_IDX_PAE_PD_3:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return pPGM->apShwPaePDsRC[3];
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOL_IDX_PDPT:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return pPGM->pShwPaePdptRC;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync# endif
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync default:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync AssertReleaseMsgFailed(("Invalid index %d\n", pPage->idx));
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return NULL;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync }
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync# else /* VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0 */
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync RTHCPHYS HCPhys;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync switch (pPage->idx)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync {
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync# ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
581f0625e43a928987623d7cf59e1b1ab61ca6c8vboxsync case PGMPOOL_IDX_PD:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOL_IDX_PDPT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOL_IDX_AMD64_CR3:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync HCPhys = pPGM->HCPhysShwCR3;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOL_IDX_NESTED_ROOT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync HCPhys = pPGM->HCPhysShwNestedRoot;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# else
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOL_IDX_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync HCPhys = pPGM->HCPhysShw32BitPD;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOL_IDX_PAE_PD_0:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync HCPhys = pPGM->aHCPhysPaePDs[0];
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOL_IDX_PAE_PD_1:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync HCPhys = pPGM->aHCPhysPaePDs[1];
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOL_IDX_PAE_PD_2:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync HCPhys = pPGM->aHCPhysPaePDs[2];
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOL_IDX_PAE_PD_3:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync HCPhys = pPGM->aHCPhysPaePDs[3];
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync break;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOL_IDX_PDPT:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync HCPhys = pPGM->HCPhysShwPaePdpt;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync break;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOL_IDX_NESTED_ROOT:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync HCPhys = pPGM->HCPhysShwNestedRoot;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync break;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOL_IDX_PAE_PD:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync AssertReleaseMsgFailed(("PGMPOOL_IDX_PAE_PD is not usable in VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0 context\n"));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync return NULL;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync# endif
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync default:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync AssertReleaseMsgFailed(("Invalid index %d\n", pPage->idx));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync return NULL;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync AssertMsg(HCPhys && HCPhys != NIL_RTHCPHYS && !(PAGE_OFFSET_MASK & HCPhys), ("%RHp\n", HCPhys));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync void *pv;
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync pgmR0DynMapHCPageInlined(pPGM, HCPhys, &pv);
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync return pv;
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync# endif /* VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0 */
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync}
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync#endif /* IN_RC || VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0 */
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#ifdef PGMPOOL_WITH_MONITORING
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync/**
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * Determin the size of a write instruction.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @returns number of bytes written.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param pDis The disassembler state.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncstatic unsigned pgmPoolDisasWriteSize(PDISCPUSTATE pDis)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync{
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync /*
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * This is very crude and possibly wrong for some opcodes,
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * but since it's not really supposed to be called we can
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * probably live with that.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync */
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync return DISGetParamSize(pDis, &pDis->param1);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync}
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync/**
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * Flushes a chain of pages sharing the same access monitor.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync *
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * @returns VBox status code suitable for scheduling.
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * @param pPool The pool.
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync * @param pPage A page in the chain.
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync */
cd5df721f068659172f3bf95de8fedeb465f057dvboxsyncint pgmPoolMonitorChainFlush(PPGMPOOL pPool, PPGMPOOLPAGE pPage)
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync{
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync LogFlow(("pgmPoolMonitorChainFlush: Flush page %RGp type=%d\n", pPage->GCPhys, pPage->enmKind));
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync /*
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync * Find the list head.
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync */
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync uint16_t idx = pPage->idx;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync if (pPage->iMonitoredPrev != NIL_PGMPOOL_IDX)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync {
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync while (pPage->iMonitoredPrev != NIL_PGMPOOL_IDX)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync {
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync idx = pPage->iMonitoredPrev;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync Assert(idx != pPage->idx);
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync pPage = &pPool->aPages[idx];
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync }
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync }
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync /*
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * Iterate the list flushing each shadow page.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync */
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync int rc = VINF_SUCCESS;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync for (;;)
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync {
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync idx = pPage->iMonitoredNext;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync Assert(idx != pPage->idx);
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync if (pPage->idx >= PGMPOOL_IDX_FIRST)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync {
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync int rc2 = pgmPoolFlushPage(pPool, pPage);
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync if (rc2 == VERR_PGM_POOL_CLEARED && rc == VINF_SUCCESS)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync rc = VINF_PGM_SYNC_CR3;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync }
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync /* next */
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync if (idx == NIL_PGMPOOL_IDX)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync break;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync pPage = &pPool->aPages[idx];
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync }
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return rc;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync}
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync/**
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * Wrapper for getting the current context pointer to the entry being modified.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync *
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * @returns Pointer to the current context mapping of the entry.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param pPool The pool.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param pvFault The fault virtual address.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param GCPhysFault The fault physical address.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param cbEntry The entry size.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#ifdef IN_RING3
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncDECLINLINE(const void *) pgmPoolMonitorGCPtr2CCPtr(PPGMPOOL pPool, RTHCPTR pvFault, RTGCPHYS GCPhysFault, const unsigned cbEntry)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#else
cd5df721f068659172f3bf95de8fedeb465f057dvboxsyncDECLINLINE(const void *) pgmPoolMonitorGCPtr2CCPtr(PPGMPOOL pPool, RTGCPTR pvFault, RTGCPHYS GCPhysFault, const unsigned cbEntry)
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync#endif
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync{
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync#ifdef IN_RC
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync return (const void *)((RTGCUINTPTR)pvFault & ~(RTGCUINTPTR)(cbEntry - 1));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#elif defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync void *pvRet;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync int rc = PGMDynMapGCPageOff(pPool->pVMR0, GCPhysFault & ~(RTGCPHYS)(cbEntry - 1), &pvRet);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync AssertFatalRCSuccess(rc);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync return pvRet;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync#elif defined(IN_RING0)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync void *pvRet;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync int rc = pgmRamGCPhys2HCPtr(&pPool->pVMR0->pgm.s, GCPhysFault & ~(RTGCPHYS)(cbEntry - 1), &pvRet);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync AssertFatalRCSuccess(rc);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync return pvRet;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync#elif defined(IN_RING3)
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync return (RTHCPTR)((uintptr_t)pvFault & ~(RTHCUINTPTR)(cbEntry - 1));
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync#else
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync# error "huh?"
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync#endif
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync}
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync/**
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync * Process shadow entries before they are changed by the guest.
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync *
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync * For PT entries we will clear them. For PD entries, we'll simply check
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync * for mapping conflicts and set the SyncCR3 FF if found.
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync *
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync * @param pPool The pool.
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync * @param pPage The head page.
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync * @param GCPhysFault The guest physical fault address.
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync * @param uAddress In R0 and GC this is the guest context fault address (flat).
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync * In R3 this is the host context 'fault' address.
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync * @param pCpu The disassembler state for figuring out the write size.
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync * This need not be specified if the caller knows we won't do cross entry accesses.
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync */
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync#ifdef IN_RING3
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsyncvoid pgmPoolMonitorChainChanging(PPGMPOOL pPool, PPGMPOOLPAGE pPage, RTGCPHYS GCPhysFault, RTHCPTR pvAddress, PDISCPUSTATE pCpu)
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync#else
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsyncvoid pgmPoolMonitorChainChanging(PPGMPOOL pPool, PPGMPOOLPAGE pPage, RTGCPHYS GCPhysFault, RTGCPTR pvAddress, PDISCPUSTATE pCpu)
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync#endif
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync{
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync Assert(pPage->iMonitoredPrev == NIL_PGMPOOL_IDX);
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync const unsigned off = GCPhysFault & PAGE_OFFSET_MASK;
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync const unsigned cbWrite = (pCpu) ? pgmPoolDisasWriteSize(pCpu) : 0;
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync LogFlow(("pgmPoolMonitorChainChanging: %RGv phys=%RGp kind=%d cbWrite=%d\n", pvAddress, GCPhysFault, pPage->enmKind, cbWrite));
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync for (;;)
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync union
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync void *pv;
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync PX86PT pPT;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PX86PTPAE pPTPae;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PX86PD pPD;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PX86PDPAE pPDPae;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PX86PDPT pPDPT;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PX86PML4 pPML4;
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync } uShw;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync switch (pPage->enmKind)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync {
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync uShw.pv = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync const unsigned iShw = off / sizeof(X86PTE);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (uShw.pPT->a[iShw].n.u1Present)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# ifdef PGMPOOL_WITH_GCPHYS_TRACKING
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PCX86PTE pGstPte = (PCX86PTE)pgmPoolMonitorGCPtr2CCPtr(pPool, pvAddress, GCPhysFault, sizeof(*pGstPte));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync Log4(("pgmPoolMonitorChainChanging 32_32: deref %016RX64 GCPhys %08RX32\n", uShw.pPT->a[iShw].u & X86_PTE_PAE_PG_MASK, pGstPte->u & X86_PTE_PG_MASK));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pgmPoolTracDerefGCPhysHint(pPool, pPage,
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync uShw.pPT->a[iShw].u & X86_PTE_PAE_PG_MASK,
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pGstPte->u & X86_PTE_PG_MASK);
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync# endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pPT->a[iShw].u = 0;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /* page/2 sized */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_PT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pv = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync if (!((off ^ pPage->GCPhys) & (PAGE_SIZE / 2)))
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync const unsigned iShw = (off / sizeof(X86PTE)) & (X86_PG_PAE_ENTRIES - 1);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (uShw.pPTPae->a[iShw].n.u1Present)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# ifdef PGMPOOL_WITH_GCPHYS_TRACKING
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PCX86PTE pGstPte = (PCX86PTE)pgmPoolMonitorGCPtr2CCPtr(pPool, pvAddress, GCPhysFault, sizeof(*pGstPte));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync Log4(("pgmPoolMonitorChainChanging pae_32: deref %016RX64 GCPhys %08RX32\n", uShw.pPT->a[iShw].u & X86_PTE_PAE_PG_MASK, pGstPte->u & X86_PTE_PG_MASK));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pgmPoolTracDerefGCPhysHint(pPool, pPage,
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync uShw.pPTPae->a[iShw].u & X86_PTE_PAE_PG_MASK,
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pGstPte->u & X86_PTE_PG_MASK);
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync# endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pPTPae->a[iShw].u = 0;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD1_FOR_32BIT_PD:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PD2_FOR_32BIT_PD:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PD3_FOR_32BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync unsigned iGst = off / sizeof(X86PDE);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync unsigned iShwPdpt = iGst / 256;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync unsigned iShw = (iGst % 256) * 2;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pv = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync LogFlow(("pgmPoolMonitorChainChanging PAE for 32 bits: iGst=%x idx = %d page idx=%d\n", iGst, iShwPdpt, pPage->enmKind - PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD));
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if (iShwPdpt == pPage->enmKind - PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync for (unsigned i=0;i<2;i++)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if ((uShw.pPDPae->a[iShw + i].u & (PGM_PDFLAGS_MAPPING | X86_PDE_P)) == (PGM_PDFLAGS_MAPPING | X86_PDE_P))
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync Assert(pgmMapAreMappingsEnabled(&pPool->CTX_SUFF(pVM)->pgm.s));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync LogFlow(("pgmPoolMonitorChainChanging: Detected conflict at iShwPdpt=%#x iShw=%#x!\n", iShwPdpt, iShw+i));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync else
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (uShw.pPDPae->a[iShw+i].n.u1Present)
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync {
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync LogFlow(("pgmPoolMonitorChainChanging: pae pd iShw=%#x: %RX64 -> freeing it!\n", iShw+i, uShw.pPDPae->a[iShw+i].u));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pgmPoolFree(pPool->CTX_SUFF(pVM),
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pPDPae->a[iShw+i].u & X86_PDE_PAE_PG_MASK,
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPage->idx,
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync iShw + i);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pPDPae->a[iShw+i].u = 0;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync /* paranoia / a bit assumptive. */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if ( pCpu
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync && (off & 3)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync && (off & 3) + cbWrite > 4)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync {
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync const unsigned iShw2 = iShw + 2 + i;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if (iShw2 < RT_ELEMENTS(uShw.pPDPae->a))
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync {
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if ((uShw.pPDPae->a[iShw2].u & (PGM_PDFLAGS_MAPPING | X86_PDE_P)) == (PGM_PDFLAGS_MAPPING | X86_PDE_P))
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync {
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync Assert(pgmMapAreMappingsEnabled(&pPool->CTX_SUFF(pVM)->pgm.s));
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync LogFlow(("pgmPoolMonitorChainChanging: Detected conflict at iShwPdpt=%#x iShw2=%#x!\n", iShwPdpt, iShw2));
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync }
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync else
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if (uShw.pPDPae->a[iShw2].n.u1Present)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync {
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync LogFlow(("pgmPoolMonitorChainChanging: pae pd iShw=%#x: %RX64 -> freeing it!\n", iShw2, uShw.pPDPae->a[iShw2].u));
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync pgmPoolFree(pPool->CTX_SUFF(pVM),
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync uShw.pPDPae->a[iShw2].u & X86_PDE_PAE_PG_MASK,
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync pPage->idx,
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync iShw2);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pPDPae->a[iShw2].u = 0;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_PT:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pv = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync const unsigned iShw = off / sizeof(X86PTEPAE);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (uShw.pPTPae->a[iShw].n.u1Present)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# ifdef PGMPOOL_WITH_GCPHYS_TRACKING
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PCX86PTEPAE pGstPte = (PCX86PTEPAE)pgmPoolMonitorGCPtr2CCPtr(pPool, pvAddress, GCPhysFault, sizeof(*pGstPte));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync Log4(("pgmPoolMonitorChainChanging pae: deref %016RX64 GCPhys %016RX64\n", uShw.pPTPae->a[iShw].u & X86_PTE_PAE_PG_MASK, pGstPte->u & X86_PTE_PAE_PG_MASK));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pgmPoolTracDerefGCPhysHint(pPool, pPage,
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pPTPae->a[iShw].u & X86_PTE_PAE_PG_MASK,
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync pGstPte->u & X86_PTE_PAE_PG_MASK);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pPTPae->a[iShw].u = 0;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
7e8ef90d3160234df0f254131b87af4243d79476vboxsync /* paranoia / a bit assumptive. */
7e8ef90d3160234df0f254131b87af4243d79476vboxsync if ( pCpu
7e8ef90d3160234df0f254131b87af4243d79476vboxsync && (off & 7)
7e8ef90d3160234df0f254131b87af4243d79476vboxsync && (off & 7) + cbWrite > sizeof(X86PTEPAE))
7e8ef90d3160234df0f254131b87af4243d79476vboxsync {
7e8ef90d3160234df0f254131b87af4243d79476vboxsync const unsigned iShw2 = (off + cbWrite - 1) / sizeof(X86PTEPAE);
7e8ef90d3160234df0f254131b87af4243d79476vboxsync AssertReturnVoid(iShw2 < RT_ELEMENTS(uShw.pPTPae->a));
7e8ef90d3160234df0f254131b87af4243d79476vboxsync
7e8ef90d3160234df0f254131b87af4243d79476vboxsync if (uShw.pPTPae->a[iShw2].n.u1Present)
7e8ef90d3160234df0f254131b87af4243d79476vboxsync {
7e8ef90d3160234df0f254131b87af4243d79476vboxsync# ifdef PGMPOOL_WITH_GCPHYS_TRACKING
7e8ef90d3160234df0f254131b87af4243d79476vboxsync PCX86PTEPAE pGstPte = (PCX86PTEPAE)pgmPoolMonitorGCPtr2CCPtr(pPool, pvAddress, GCPhysFault, sizeof(*pGstPte));
7e8ef90d3160234df0f254131b87af4243d79476vboxsync Log4(("pgmPoolMonitorChainChanging pae: deref %016RX64 GCPhys %016RX64\n", uShw.pPTPae->a[iShw2].u & X86_PTE_PAE_PG_MASK, pGstPte->u & X86_PTE_PAE_PG_MASK));
7e8ef90d3160234df0f254131b87af4243d79476vboxsync pgmPoolTracDerefGCPhysHint(pPool, pPage,
7e8ef90d3160234df0f254131b87af4243d79476vboxsync uShw.pPTPae->a[iShw2].u & X86_PTE_PAE_PG_MASK,
7e8ef90d3160234df0f254131b87af4243d79476vboxsync pGstPte->u & X86_PTE_PAE_PG_MASK);
7e8ef90d3160234df0f254131b87af4243d79476vboxsync# endif
7e8ef90d3160234df0f254131b87af4243d79476vboxsync uShw.pPTPae->a[iShw2].u = 0;
7e8ef90d3160234df0f254131b87af4243d79476vboxsync }
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync }
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync break;
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync }
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync# ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_32BIT_PD:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync# else
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_ROOT_32BIT_PD:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync# endif
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync {
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync uShw.pv = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync const unsigned iShw = off / sizeof(X86PTE); // ASSUMING 32-bit guest paging!
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync if (uShw.pPD->a[iShw].u & PGM_PDFLAGS_MAPPING)
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync {
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync Assert(pgmMapAreMappingsEnabled(&pPool->CTX_SUFF(pVM)->pgm.s));
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync STAM_COUNTER_INC(&(pPool->CTX_SUFF(pVM)->pgm.s.StatRZGuestCR3WriteConflict));
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync LogFlow(("pgmPoolMonitorChainChanging: Detected conflict at iShw=%#x!\n", iShw));
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync }
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync /* paranoia / a bit assumptive. */
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync else if ( pCpu
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync && (off & 3)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync && (off & 3) + cbWrite > sizeof(X86PTE))
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync const unsigned iShw2 = (off + cbWrite - 1) / sizeof(X86PTE);
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync if ( iShw2 != iShw
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync && iShw2 < RT_ELEMENTS(uShw.pPD->a)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync && uShw.pPD->a[iShw2].u & PGM_PDFLAGS_MAPPING)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync Assert(pgmMapAreMappingsEnabled(&pPool->CTX_SUFF(pVM)->pgm.s));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync STAM_COUNTER_INC(&(pPool->CTX_SUFF(pVM)->pgm.s.StatRZGuestCR3WriteConflict));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync LogFlow(("pgmPoolMonitorChainChanging: Detected conflict at iShw2=%#x!\n", iShw2));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync }
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#if 0 /* useful when running PGMAssertCR3(), a bit too troublesome for general use (TLBs). */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if ( uShw.pPD->a[iShw].n.u1Present
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync && !VM_FF_ISSET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3))
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync LogFlow(("pgmPoolMonitorChainChanging: iShw=%#x: %RX32 -> freeing it!\n", iShw, uShw.pPD->a[iShw].u));
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync# ifdef IN_RC /* TLB load - we're pushing things a bit... */
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync ASMProbeReadByte(pvAddress);
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync# endif
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync pgmPoolFree(pPool->CTX_SUFF(pVM), uShw.pPD->a[iShw].u & X86_PDE_PG_MASK, pPage->idx, iShw);
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync uShw.pPD->a[iShw].u = 0;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync }
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync#endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync case PGMPOOLKIND_ROOT_PAE_PD:
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync {
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync unsigned iGst = off / sizeof(X86PDE); // ASSUMING 32-bit guest paging!
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync unsigned iShwPdpt = iGst / 256;
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync unsigned iShw = (iGst % 256) * 2;
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync Assert(pPage->idx == PGMPOOL_IDX_PAE_PD);
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync PPGMPOOLPAGE pPage2 = pPage + 1 + iShwPdpt;
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync Assert(pPage2->idx == PGMPOOL_IDX_PAE_PD_0 + iShwPdpt);
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync uShw.pv = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage2);
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync for (unsigned i = 0; i < 2; i++, iShw++)
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync {
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync if ((uShw.pPDPae->a[iShw].u & (PGM_PDFLAGS_MAPPING | X86_PDE_P)) == (PGM_PDFLAGS_MAPPING | X86_PDE_P))
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync {
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync Assert(pgmMapAreMappingsEnabled(&pPool->CTX_SUFF(pVM)->pgm.s));
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync LogFlow(("pgmPoolMonitorChainChanging: Detected conflict at iShwPdpt=%#x iShw=%#x!\n", iShwPdpt, iShw));
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync }
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync /* paranoia / a bit assumptive. */
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync else if ( pCpu
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync && (off & 3)
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync && (off & 3) + cbWrite > 4)
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync {
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync const unsigned iShw2 = iShw + 2;
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync if ( iShw2 < RT_ELEMENTS(uShw.pPDPae->a) /** @todo was completely wrong, it's better now after #1865 but still wrong from cross PD. */
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync && (uShw.pPDPae->a[iShw2].u & (PGM_PDFLAGS_MAPPING | X86_PDE_P)) == (PGM_PDFLAGS_MAPPING | X86_PDE_P))
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync {
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync Assert(pgmMapAreMappingsEnabled(&pPool->CTX_SUFF(pVM)->pgm.s));
1cd59fdf671ca60c64d77e3f7046aaecf7003824vboxsync VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync LogFlow(("pgmPoolMonitorChainChanging: Detected conflict at iShwPdpt=%#x iShw2=%#x!\n", iShwPdpt, iShw2));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#if 0 /* useful when running PGMAssertCR3(), a bit too troublesome for general use (TLBs). */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if ( uShw.pPDPae->a[iShw].n.u1Present
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync && !VM_FF_ISSET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3))
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync LogFlow(("pgmPoolMonitorChainChanging: iShwPdpt=%#x iShw=%#x: %RX64 -> freeing it!\n", iShwPdpt, iShw, uShw.pPDPae->a[iShw].u));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# ifdef IN_RC /* TLB load - we're pushing things a bit... */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync ASMProbeReadByte(pvAddress);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pgmPoolFree(pPool->CTX_SUFF(pVM), uShw.pPDPae->a[iShw].u & X86_PDE_PAE_PG_MASK, pPage->idx, iShw + iShwPdpt * X86_PG_PAE_ENTRIES);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pPDPae->a[iShw].u = 0;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# endif /* !VBOX_WITH_PGMPOOL_PAGING_ONLY */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD_FOR_PAE_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pv = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync const unsigned iShw = off / sizeof(X86PDEPAE);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (uShw.pPDPae->a[iShw].u & PGM_PDFLAGS_MAPPING)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync Assert(pgmMapAreMappingsEnabled(&pPool->CTX_SUFF(pVM)->pgm.s));
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync STAM_COUNTER_INC(&(pPool->CTX_SUFF(pVM)->pgm.s.StatRZGuestCR3WriteConflict));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync LogFlow(("pgmPoolMonitorChainChanging: Detected conflict at iShw=%#x!\n", iShw));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#if defined(PGMPOOL_INVALIDATE_UPPER_SHADOW_TABLE_ENTRIES) || defined(VBOX_WITH_PGMPOOL_PAGING_ONLY)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /*
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Causes trouble when the guest uses a PDE to refer to the whole page table level
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * structure. (Invalidate here; faults later on when it tries to change the page
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * table entries -> recheck; probably only applies to the RC case.)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync else
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync if (uShw.pPDPae->a[iShw].n.u1Present)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync LogFlow(("pgmPoolMonitorChainChanging: pae pd iShw=%#x: %RX64 -> freeing it!\n", iShw, uShw.pPDPae->a[iShw].u));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pgmPoolFree(pPool->CTX_SUFF(pVM),
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pPDPae->a[iShw].u & X86_PDE_PAE_PG_MASK,
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPage->idx,
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync iShw);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# else
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /* Note: hardcoded PAE implementation dependency */
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync (pPage->enmKind == PGMPOOLKIND_PAE_PD_FOR_PAE_PD) ? PGMPOOL_IDX_PAE_PD : pPage->idx,
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync (pPage->enmKind == PGMPOOLKIND_PAE_PD_FOR_PAE_PD) ? iShw + (pPage->idx - PGMPOOL_IDX_PAE_PD_0) * X86_PG_PAE_ENTRIES : iShw);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uShw.pPDPae->a[iShw].u = 0;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /* paranoia / a bit assumptive. */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if ( pCpu
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync && (off & 7)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync && (off & 7) + cbWrite > sizeof(X86PDEPAE))
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync const unsigned iShw2 = (off + cbWrite - 1) / sizeof(X86PDEPAE);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync AssertReturnVoid(iShw2 < RT_ELEMENTS(uShw.pPDPae->a));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if ( iShw2 != iShw
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync && uShw.pPDPae->a[iShw2].u & PGM_PDFLAGS_MAPPING)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync Assert(pgmMapAreMappingsEnabled(&pPool->CTX_SUFF(pVM)->pgm.s));
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync STAM_COUNTER_INC(&(pPool->CTX_SUFF(pVM)->pgm.s.StatRZGuestCR3WriteConflict));
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync LogFlow(("pgmPoolMonitorChainChanging: Detected conflict at iShw2=%#x!\n", iShw2));
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync }
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync#if defined(PGMPOOL_INVALIDATE_UPPER_SHADOW_TABLE_ENTRIES) || defined(VBOX_WITH_PGMPOOL_PAGING_ONLY)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync else if (uShw.pPDPae->a[iShw2].n.u1Present)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync LogFlow(("pgmPoolMonitorChainChanging: pae pd iShw2=%#x: %RX64 -> freeing it!\n", iShw2, uShw.pPDPae->a[iShw2].u));
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync pgmPoolFree(pPool->CTX_SUFF(pVM),
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync uShw.pPDPae->a[iShw2].u & X86_PDE_PAE_PG_MASK,
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync# ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync pPage->idx,
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync iShw2);
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync# else
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync /* Note: hardcoded PAE implementation dependency */
fb41ad77bcfbdb3aaa1fc9503a37ee6a70dc6461vboxsync (pPage->enmKind == PGMPOOLKIND_PAE_PD_FOR_PAE_PD) ? PGMPOOL_IDX_PAE_PD : pPage->idx,
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync (pPage->enmKind == PGMPOOLKIND_PAE_PD_FOR_PAE_PD) ? iShw2 + (pPage->idx - PGMPOOL_IDX_PAE_PD_0) * X86_PG_PAE_ENTRIES : iShw2);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync# endif
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync uShw.pPDPae->a[iShw2].u = 0;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync }
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync#endif
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync }
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync break;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync }
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync# ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PDPT:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync# else
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_ROOT_PDPT:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync# endif
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync {
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync /*
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * Hopefully this doesn't happen very often:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * - touching unused parts of the page
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * - messing with the bits of pd pointers without changing the physical address
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync uShw.pv = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync const unsigned iShw = off / sizeof(X86PDPE);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync if (iShw < X86_PG_PAE_PDPE_ENTRIES) /* don't use RT_ELEMENTS(uShw.pPDPT->a), because that's for long mode only */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync {
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync if (uShw.pPDPT->a[iShw].u & PGM_PLXFLAGS_MAPPING)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync {
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync Assert(pgmMapAreMappingsEnabled(&pPool->CTX_SUFF(pVM)->pgm.s));
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync STAM_COUNTER_INC(&(pPool->CTX_SUFF(pVM)->pgm.s.StatRZGuestCR3WriteConflict));
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync LogFlow(("pgmPoolMonitorChainChanging: Detected conflict at iShw=%#x!\n", iShw));
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync }
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync /* paranoia / a bit assumptive. */
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync else if ( pCpu
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync && (off & 7)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync && (off & 7) + cbWrite > sizeof(X86PDPE))
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync {
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync const unsigned iShw2 = (off + cbWrite - 1) / sizeof(X86PDPE);
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync if ( iShw2 != iShw
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync && iShw2 < X86_PG_PAE_PDPE_ENTRIES
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync && uShw.pPDPT->a[iShw2].u & PGM_PLXFLAGS_MAPPING)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync {
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync Assert(pgmMapAreMappingsEnabled(&pPool->CTX_SUFF(pVM)->pgm.s));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync STAM_COUNTER_INC(&(pPool->CTX_SUFF(pVM)->pgm.s.StatRZGuestCR3WriteConflict));
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync LogFlow(("pgmPoolMonitorChainChanging: Detected conflict at iShw2=%#x!\n", iShw2));
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync }
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync }
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync }
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync break;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync }
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync#ifndef IN_RC
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync {
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync Assert(pPage->enmKind == PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD);
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync uShw.pv = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync const unsigned iShw = off / sizeof(X86PDEPAE);
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync if (uShw.pPDPae->a[iShw].u & PGM_PDFLAGS_MAPPING)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync {
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync Assert(pgmMapAreMappingsEnabled(&pPool->CTX_SUFF(pVM)->pgm.s));
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync LogFlow(("pgmPoolMonitorChainChanging: Detected conflict at iShw=%#x!\n", iShw));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync }
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync else
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync {
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync if (uShw.pPDPae->a[iShw].n.u1Present)
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync {
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync LogFlow(("pgmPoolMonitorChainChanging: pae pd iShw=%#x: %RX64 -> freeing it!\n", iShw, uShw.pPDPae->a[iShw].u));
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync pgmPoolFree(pPool->CTX_SUFF(pVM),
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync uShw.pPDPae->a[iShw].u & X86_PDE_PAE_PG_MASK,
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync pPage->idx,
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync iShw);
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync uShw.pPDPae->a[iShw].u = 0;
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync }
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync }
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync /* paranoia / a bit assumptive. */
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync if ( pCpu
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync && (off & 7)
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync && (off & 7) + cbWrite > sizeof(X86PDEPAE))
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync {
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync const unsigned iShw2 = (off + cbWrite - 1) / sizeof(X86PDEPAE);
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync AssertReturnVoid(iShw2 < RT_ELEMENTS(uShw.pPDPae->a));
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync if ( iShw2 != iShw
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync && uShw.pPDPae->a[iShw2].u & PGM_PDFLAGS_MAPPING)
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync {
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync Assert(pgmMapAreMappingsEnabled(&pPool->CTX_SUFF(pVM)->pgm.s));
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync LogFlow(("pgmPoolMonitorChainChanging: Detected conflict at iShw2=%#x!\n", iShw2));
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync }
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync else
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync if (uShw.pPDPae->a[iShw2].n.u1Present)
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync {
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync LogFlow(("pgmPoolMonitorChainChanging: pae pd iShw2=%#x: %RX64 -> freeing it!\n", iShw2, uShw.pPDPae->a[iShw2].u));
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync pgmPoolFree(pPool->CTX_SUFF(pVM),
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync uShw.pPDPae->a[iShw2].u & X86_PDE_PAE_PG_MASK,
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync pPage->idx,
5366e994777f9d9391cf809dc77610f57270d75dvboxsync iShw2);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync uShw.pPDPae->a[iShw2].u = 0;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync }
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync }
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync break;
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync }
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_64BIT_PDPT:
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync {
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync /*
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync * Hopefully this doesn't happen very often:
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync * - messing with the bits of pd pointers without changing the physical address
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync */
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync if (!VM_FF_ISSET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3))
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync {
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync uShw.pv = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync const unsigned iShw = off / sizeof(X86PDPE);
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync if (uShw.pPDPT->a[iShw].n.u1Present)
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync {
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync LogFlow(("pgmPoolMonitorChainChanging: pdpt iShw=%#x: %RX64 -> freeing it!\n", iShw, uShw.pPDPT->a[iShw].u));
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync pgmPoolFree(pPool->CTX_SUFF(pVM), uShw.pPDPT->a[iShw].u & X86_PDPE_PG_MASK, pPage->idx, iShw);
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync uShw.pPDPT->a[iShw].u = 0;
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync }
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync /* paranoia / a bit assumptive. */
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync if ( pCpu
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync && (off & 7)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync && (off & 7) + cbWrite > sizeof(X86PDPE))
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync {
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync const unsigned iShw2 = (off + cbWrite - 1) / sizeof(X86PDPE);
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync if (uShw.pPDPT->a[iShw2].n.u1Present)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync {
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync LogFlow(("pgmPoolMonitorChainChanging: pdpt iShw2=%#x: %RX64 -> freeing it!\n", iShw2, uShw.pPDPT->a[iShw2].u));
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync pgmPoolFree(pPool->CTX_SUFF(pVM), uShw.pPDPT->a[iShw2].u & X86_PDPE_PG_MASK, pPage->idx, iShw2);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync uShw.pPDPT->a[iShw2].u = 0;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync }
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync }
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync }
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync break;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync }
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync case PGMPOOLKIND_64BIT_PML4:
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync {
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync /*
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * Hopefully this doesn't happen very often:
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync * - messing with the bits of pd pointers without changing the physical address
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync */
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync if (!VM_FF_ISSET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3))
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync {
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync uShw.pv = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync const unsigned iShw = off / sizeof(X86PDPE);
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync if (uShw.pPML4->a[iShw].n.u1Present)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync {
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync LogFlow(("pgmPoolMonitorChainChanging: pml4 iShw=%#x: %RX64 -> freeing it!\n", iShw, uShw.pPML4->a[iShw].u));
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync pgmPoolFree(pPool->CTX_SUFF(pVM), uShw.pPML4->a[iShw].u & X86_PML4E_PG_MASK, pPage->idx, iShw);
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync uShw.pPML4->a[iShw].u = 0;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync }
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync /* paranoia / a bit assumptive. */
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync if ( pCpu
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync && (off & 7)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync && (off & 7) + cbWrite > sizeof(X86PDPE))
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync {
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync const unsigned iShw2 = (off + cbWrite - 1) / sizeof(X86PML4E);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync if (uShw.pPML4->a[iShw2].n.u1Present)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync {
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync LogFlow(("pgmPoolMonitorChainChanging: pml4 iShw2=%#x: %RX64 -> freeing it!\n", iShw2, uShw.pPML4->a[iShw2].u));
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync pgmPoolFree(pPool->CTX_SUFF(pVM), uShw.pPML4->a[iShw2].u & X86_PML4E_PG_MASK, pPage->idx, iShw2);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync uShw.pPML4->a[iShw2].u = 0;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync }
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync }
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync }
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync break;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync }
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync#endif /* IN_RING0 */
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync default:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync AssertFatalMsgFailed(("enmKind=%d\n", pPage->enmKind));
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync }
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync /* next */
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync if (pPage->iMonitoredNext == NIL_PGMPOOL_IDX)
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync return;
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync pPage = &pPool->aPages[pPage->iMonitoredNext];
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync }
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync}
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync# ifndef IN_RING3
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync/**
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync * Checks if a access could be a fork operation in progress.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync *
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * Meaning, that the guest is setuping up the parent process for Copy-On-Write.
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync *
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @returns true if it's likly that we're forking, otherwise false.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @param pPool The pool.
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync * @param pCpu The disassembled instruction.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @param offFault The access offset.
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsyncDECLINLINE(bool) pgmPoolMonitorIsForking(PPGMPOOL pPool, PDISCPUSTATE pCpu, unsigned offFault)
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync{
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync /*
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync * i386 linux is using btr to clear X86_PTE_RW.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * The functions involved are (2.6.16 source inspection):
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * clear_bit
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * ptep_set_wrprotect
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync * copy_one_pte
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync * copy_pte_range
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * copy_pmd_range
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * copy_pud_range
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * copy_page_range
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * dup_mmap
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * dup_mm
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * copy_mm
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync * copy_process
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * do_fork
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync */
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync if ( pCpu->pCurInstr->opcode == OP_BTR
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync && !(offFault & 4)
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync /** @todo Validate that the bit index is X86_PTE_RW. */
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync )
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync {
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync STAM_COUNTER_INC(&pPool->CTX_MID_Z(StatMonitor,Fork));
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync return true;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync }
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync return false;
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync}
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync/**
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * Determine whether the page is likely to have been reused.
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync *
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @returns true if we consider the page as being reused for a different purpose.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @returns false if we consider it to still be a paging page.
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * @param pVM VM Handle.
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * @param pPage The page in question.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pRegFrame Trap register frame.
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync * @param pCpu The disassembly info for the faulting instruction.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pvFault The fault address.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync *
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @remark The REP prefix check is left to the caller because of STOSD/W.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsyncDECLINLINE(bool) pgmPoolMonitorIsReused(PVM pVM, PPGMPOOLPAGE pPage, PCPUMCTXCORE pRegFrame, PDISCPUSTATE pCpu, RTGCPTR pvFault)
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync{
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync#ifndef IN_RC
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync /** @todo could make this general, faulting close to rsp should be safe reuse heuristic. */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync if ( HWACCMHasPendingIrq(pVM)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync && (pRegFrame->rsp - pvFault) < 32)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync {
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync /* Fault caused by stack writes while trying to inject an interrupt event. */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync Log(("pgmPoolMonitorIsReused: reused %RGv for interrupt stack (rsp=%RGv).\n", pvFault, pRegFrame->rsp));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync return true;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync }
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync#else
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync NOREF(pVM); NOREF(pvFault);
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync#endif
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync switch (pCpu->pCurInstr->opcode)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync {
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync /* call implies the actual push of the return address faulted */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case OP_CALL:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync Log4(("pgmPoolMonitorIsReused: CALL\n"));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync return true;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case OP_PUSH:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync Log4(("pgmPoolMonitorIsReused: PUSH\n"));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync return true;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case OP_PUSHF:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync Log4(("pgmPoolMonitorIsReused: PUSHF\n"));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync return true;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case OP_PUSHA:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync Log4(("pgmPoolMonitorIsReused: PUSHA\n"));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync return true;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case OP_FXSAVE:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync Log4(("pgmPoolMonitorIsReused: FXSAVE\n"));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync return true;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case OP_MOVNTI: /* solaris - block_zero_no_xmm */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync Log4(("pgmPoolMonitorIsReused: MOVNTI\n"));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync return true;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case OP_MOVNTDQ: /* solaris - hwblkclr & hwblkpagecopy */
cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5fvboxsync Log4(("pgmPoolMonitorIsReused: MOVNTDQ\n"));
cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5fvboxsync return true;
cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5fvboxsync case OP_MOVSWD:
cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5fvboxsync case OP_STOSWD:
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync if ( pCpu->prefix == (PREFIX_REP|PREFIX_REX)
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync && pRegFrame->rcx >= 0x40
cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5fvboxsync )
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync {
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync Assert(pCpu->mode == CPUMODE_64BIT);
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync Log(("pgmPoolMonitorIsReused: OP_STOSQ\n"));
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync return true;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync }
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync return false;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync }
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync if ( (pCpu->param1.flags & USE_REG_GEN32)
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync && (pCpu->param1.base.reg_gen == USE_REG_ESP))
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync {
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync Log4(("pgmPoolMonitorIsReused: ESP\n"));
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync return true;
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync }
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync //if (pPage->fCR3Mix)
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync // return false;
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync return false;
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync}
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync/**
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * Flushes the page being accessed.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync *
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @returns VBox status code suitable for scheduling.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pVM The VM handle.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pPool The pool.
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * @param pPage The pool page (head).
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param pCpu The disassembly of the write instruction.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pRegFrame The trap register frame.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param GCPhysFault The fault address as guest physical address.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pvFault The fault address.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsyncstatic int pgmPoolAccessHandlerFlush(PVM pVM, PPGMPOOL pPool, PPGMPOOLPAGE pPage, PDISCPUSTATE pCpu,
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, RTGCPTR pvFault)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync{
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync /*
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * First, do the flushing.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync int rc = pgmPoolMonitorChainFlush(pPool, pPage);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync /*
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * Emulate the instruction (xp/w2k problem, requires pc/cr2/sp detection).
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync uint32_t cbWritten;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync int rc2 = EMInterpretInstructionCPU(pVM, pCpu, pRegFrame, pvFault, &cbWritten);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if (RT_SUCCESS(rc2))
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync pRegFrame->rip += pCpu->opsize;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync else if (rc2 == VERR_EM_INTERPRETER)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync {
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync#ifdef IN_RC
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync if (PATMIsPatchGCAddr(pVM, (RTRCPTR)pRegFrame->eip))
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync {
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync LogFlow(("pgmPoolAccessHandlerPTWorker: Interpretation failed for patch code %04x:%RGv, ignoring.\n",
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync pRegFrame->cs, (RTGCPTR)pRegFrame->eip));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync rc = VINF_SUCCESS;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync STAM_COUNTER_INC(&pPool->StatMonitorRZIntrFailPatch2);
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync }
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync else
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync#endif
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync {
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync rc = VINF_EM_RAW_EMULATE_INSTR;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync STAM_COUNTER_INC(&pPool->CTX_MID_Z(StatMonitor,EmulateInstr));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync }
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync }
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync else
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync rc = rc2;
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync /* See use in pgmPoolAccessHandlerSimple(). */
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync PGM_INVL_GUEST_TLBS();
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync LogFlow(("pgmPoolAccessHandlerPT: returns %Rrc (flushed)\n", rc));
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync return rc;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync}
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync/**
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync * Handles the STOSD write accesses.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync *
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync * @returns VBox status code suitable for scheduling.
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync * @param pVM The VM handle.
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync * @param pPool The pool.
15c6c4ce0082362b8b81e15c3605f2d3aca69a21vboxsync * @param pPage The pool page (head).
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param pCpu The disassembly of the write instruction.
15c6c4ce0082362b8b81e15c3605f2d3aca69a21vboxsync * @param pRegFrame The trap register frame.
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync * @param GCPhysFault The fault address as guest physical address.
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync * @param pvFault The fault address.
15c6c4ce0082362b8b81e15c3605f2d3aca69a21vboxsync */
15c6c4ce0082362b8b81e15c3605f2d3aca69a21vboxsyncDECLINLINE(int) pgmPoolAccessHandlerSTOSD(PVM pVM, PPGMPOOL pPool, PPGMPOOLPAGE pPage, PDISCPUSTATE pCpu,
15c6c4ce0082362b8b81e15c3605f2d3aca69a21vboxsync PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, RTGCPTR pvFault)
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync{
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync Assert(pCpu->mode == CPUMODE_32BIT);
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync /*
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync * Increment the modification counter and insert it into the list
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync * of modified pages the first time.
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync if (!pPage->cModifications++)
004d74842597dacc4009803171296dfcf9398c69vboxsync pgmPoolMonitorModifiedInsert(pPool, pPage);
004d74842597dacc4009803171296dfcf9398c69vboxsync
004d74842597dacc4009803171296dfcf9398c69vboxsync /*
004d74842597dacc4009803171296dfcf9398c69vboxsync * Execute REP STOSD.
004d74842597dacc4009803171296dfcf9398c69vboxsync *
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * This ASSUMES that we're not invoked by Trap0e on in a out-of-sync
004d74842597dacc4009803171296dfcf9398c69vboxsync * write situation, meaning that it's safe to write here.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync */
004d74842597dacc4009803171296dfcf9398c69vboxsync#ifdef VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync PVMCPU pVCpu = VMMGetCpu(pPool->CTX_SUFF(pVM));
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync#endif
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync RTGCUINTPTR pu32 = (RTGCUINTPTR)pvFault;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync while (pRegFrame->ecx)
004d74842597dacc4009803171296dfcf9398c69vboxsync {
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync#ifdef VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0
004d74842597dacc4009803171296dfcf9398c69vboxsync uint32_t iPrevSubset = PGMDynMapPushAutoSubset(pVCpu);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync pgmPoolMonitorChainChanging(pPool, pPage, GCPhysFault, (RTGCPTR)pu32, NULL);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync PGMDynMapPopAutoSubset(pVCpu, iPrevSubset);
004d74842597dacc4009803171296dfcf9398c69vboxsync#else
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync pgmPoolMonitorChainChanging(pPool, pPage, GCPhysFault, (RTGCPTR)pu32, NULL);
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync#endif
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync#ifdef IN_RC
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync *(uint32_t *)pu32 = pRegFrame->eax;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync#else
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync PGMPhysSimpleWriteGCPhys(pVM, GCPhysFault, &pRegFrame->eax, 4);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync#endif
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync pu32 += 4;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync GCPhysFault += 4;
004d74842597dacc4009803171296dfcf9398c69vboxsync pRegFrame->edi += 4;
004d74842597dacc4009803171296dfcf9398c69vboxsync pRegFrame->ecx--;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync }
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pRegFrame->rip += pCpu->opsize;
5366e994777f9d9391cf809dc77610f57270d75dvboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync /* See use in pgmPoolAccessHandlerSimple(). */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync PGM_INVL_GUEST_TLBS();
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync LogFlow(("pgmPoolAccessHandlerSTOSD: returns\n"));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync return VINF_SUCCESS;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync}
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync/**
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * Handles the simple write accesses.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync *
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @returns VBox status code suitable for scheduling.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pVM The VM handle.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pPool The pool.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pPage The pool page (head).
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pCpu The disassembly of the write instruction.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pRegFrame The trap register frame.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param GCPhysFault The fault address as guest physical address.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pvFault The fault address.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsyncDECLINLINE(int) pgmPoolAccessHandlerSimple(PVM pVM, PPGMPOOL pPool, PPGMPOOLPAGE pPage, PDISCPUSTATE pCpu,
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync PCPUMCTXCORE pRegFrame, RTGCPHYS GCPhysFault, RTGCPTR pvFault)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync{
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync /*
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * Increment the modification counter and insert it into the list
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * of modified pages the first time.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync if (!pPage->cModifications++)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync pgmPoolMonitorModifiedInsert(pPool, pPage);
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync /*
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * Clear all the pages. ASSUMES that pvFault is readable.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync#ifdef VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0
5366e994777f9d9391cf809dc77610f57270d75dvboxsync PVMCPU pVCpu = VMMGetCpu(pPool->CTX_SUFF(pVM));
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync uint32_t iPrevSubset = PGMDynMapPushAutoSubset(pVCpu);
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync pgmPoolMonitorChainChanging(pPool, pPage, GCPhysFault, pvFault, pCpu);
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync PGMDynMapPopAutoSubset(pVCpu, iPrevSubset);
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync#else
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pgmPoolMonitorChainChanging(pPool, pPage, GCPhysFault, pvFault, pCpu);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync#endif
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
5366e994777f9d9391cf809dc77610f57270d75dvboxsync /*
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * Interpret the instruction.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync uint32_t cb;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync int rc = EMInterpretInstructionCPU(pVM, pCpu, pRegFrame, pvFault, &cb);
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync if (RT_SUCCESS(rc))
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync pRegFrame->rip += pCpu->opsize;
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync else if (rc == VERR_EM_INTERPRETER)
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync {
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync LogFlow(("pgmPoolAccessHandlerPTWorker: Interpretation failed for %04x:%RGv - opcode=%d\n",
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync pRegFrame->cs, (RTGCPTR)pRegFrame->rip, pCpu->pCurInstr->opcode));
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync rc = VINF_EM_RAW_EMULATE_INSTR;
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync STAM_COUNTER_INC(&pPool->CTX_MID_Z(StatMonitor,EmulateInstr));
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync }
5366e994777f9d9391cf809dc77610f57270d75dvboxsync
15c6c4ce0082362b8b81e15c3605f2d3aca69a21vboxsync /*
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync * Quick hack, with logging enabled we're getting stale
15c6c4ce0082362b8b81e15c3605f2d3aca69a21vboxsync * code TLBs but no data TLB for EIP and crash in EMInterpretDisasOne.
15c6c4ce0082362b8b81e15c3605f2d3aca69a21vboxsync * Flushing here is BAD and expensive, I think EMInterpretDisasOne will
15c6c4ce0082362b8b81e15c3605f2d3aca69a21vboxsync * have to be fixed to support this. But that'll have to wait till next week.
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync *
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync * An alternative is to keep track of the changed PTEs together with the
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync * GCPhys from the guest PT. This may proove expensive though.
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync *
5366e994777f9d9391cf809dc77610f57270d75dvboxsync * At the moment, it's VITAL that it's done AFTER the instruction interpreting
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * because we need the stale TLBs in some cases (XP boot). This MUST be fixed properly!
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
5366e994777f9d9391cf809dc77610f57270d75dvboxsync PGM_INVL_GUEST_TLBS();
5366e994777f9d9391cf809dc77610f57270d75dvboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync LogFlow(("pgmPoolAccessHandlerSimple: returns %Rrc cb=%d\n", rc, cb));
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync return rc;
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync}
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync/**
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * \#PF Handler callback for PT write accesses.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync *
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @returns VBox status code (appropriate for GC return).
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @param pVM VM Handle.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @param uErrorCode CPU Error code.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @param pRegFrame Trap register frame.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * NULL on DMA and other non CPU access.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @param pvFault The fault address (cr2).
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @param GCPhysFault The GC physical address corresponding to pvFault.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @param pvUser User argument.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync */
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsyncDECLEXPORT(int) pgmPoolAccessHandler(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPHYS GCPhysFault, void *pvUser)
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync{
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync STAM_PROFILE_START(&pVM->pgm.s.CTX_SUFF(pPool)->CTX_SUFF_Z(StatMonitor), a);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync PPGMPOOLPAGE pPage = (PPGMPOOLPAGE)pvUser;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync LogFlow(("pgmPoolAccessHandler: pvFault=%RGv pPage=%p:{.idx=%d} GCPhysFault=%RGp\n", pvFault, pPage, pPage->idx, GCPhysFault));
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync /*
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * We should ALWAYS have the list head as user parameter. This
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * is because we use that page to record the changes.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync */
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync Assert(pPage->iMonitoredPrev == NIL_PGMPOOL_IDX);
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync /*
3ff8aa7d3c74cfbe8da5f77b8ea6c748cc79213avboxsync * Disassemble the faulting instruction.
5366e994777f9d9391cf809dc77610f57270d75dvboxsync */
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync DISCPUSTATE Cpu;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync int rc = EMInterpretDisasOne(pVM, pRegFrame, &Cpu, NULL);
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync AssertRCReturn(rc, rc);
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync /*
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync * Check if it's worth dealing with.
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync bool fReused = false;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync if ( ( pPage->cModifications < 48 /** @todo #define */ /** @todo need to check that it's not mapping EIP. */ /** @todo adjust this! */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync || pPage->fCR3Mix)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync && !(fReused = pgmPoolMonitorIsReused(pVM, pPage, pRegFrame, &Cpu, pvFault))
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync && !pgmPoolMonitorIsForking(pPool, &Cpu, GCPhysFault & PAGE_OFFSET_MASK))
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync {
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync /*
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * Simple instructions, no REP prefix.
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync if (!(Cpu.prefix & (PREFIX_REP | PREFIX_REPNE)))
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync {
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync rc = pgmPoolAccessHandlerSimple(pVM, pPool, pPage, &Cpu, pRegFrame, GCPhysFault, pvFault);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync STAM_PROFILE_STOP_EX(&pVM->pgm.s.CTX_SUFF(pPool)->CTX_SUFF_Z(StatMonitor), &pPool->CTX_MID_Z(StatMonitor,Handled), a);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync return rc;
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync }
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync /*
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync * Windows is frequently doing small memset() operations (netio test 4k+).
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * We have to deal with these or we'll kill the cache and performance.
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync if ( Cpu.pCurInstr->opcode == OP_STOSWD
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync && CPUMGetGuestCPL(pVM, pRegFrame) == 0
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync && pRegFrame->ecx <= 0x20
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync && pRegFrame->ecx * 4 <= PAGE_SIZE - ((uintptr_t)pvFault & PAGE_OFFSET_MASK)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync && !((uintptr_t)pvFault & 3)
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync && (pRegFrame->eax == 0 || pRegFrame->eax == 0x80) /* the two values observed. */
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync && Cpu.mode == CPUMODE_32BIT
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync && Cpu.opmode == CPUMODE_32BIT
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync && Cpu.addrmode == CPUMODE_32BIT
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync && Cpu.prefix == PREFIX_REP
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync && !pRegFrame->eflags.Bits.u1DF
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync )
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync {
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync rc = pgmPoolAccessHandlerSTOSD(pVM, pPool, pPage, &Cpu, pRegFrame, GCPhysFault, pvFault);
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync STAM_PROFILE_STOP_EX(&pVM->pgm.s.CTX_SUFF(pPool)->CTX_SUFF_Z(StatMonitor), &pPool->CTX_MID_Z(StatMonitor,RepStosd), a);
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync return rc;
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync }
40c1a23e86c79b24a917a43c186b2e54504d12c1vboxsync
40c1a23e86c79b24a917a43c186b2e54504d12c1vboxsync /* REP prefix, don't bother. */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync STAM_COUNTER_INC(&pPool->CTX_MID_Z(StatMonitor,RepPrefix));
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync Log4(("pgmPoolAccessHandler: eax=%#x ecx=%#x edi=%#x esi=%#x rip=%RGv opcode=%d prefix=%#x\n",
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync pRegFrame->eax, pRegFrame->ecx, pRegFrame->edi, pRegFrame->esi, (RTGCPTR)pRegFrame->rip, Cpu.pCurInstr->opcode, Cpu.prefix));
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync }
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync /*
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * Not worth it, so flush it.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync *
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * If we considered it to be reused, don't to back to ring-3
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * to emulate failed instructions since we usually cannot
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * interpret then. This may be a bit risky, in which case
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * the reuse detection must be fixed.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync rc = pgmPoolAccessHandlerFlush(pVM, pPool, pPage, &Cpu, pRegFrame, GCPhysFault, pvFault);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if (rc == VINF_EM_RAW_EMULATE_INSTR && fReused)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync rc = VINF_SUCCESS;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync STAM_PROFILE_STOP_EX(&pVM->pgm.s.CTX_SUFF(pPool)->CTX_SUFF_Z(StatMonitor), &pPool->CTX_MID_Z(StatMonitor,FlushPage), a);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync return rc;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync}
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync# endif /* !IN_RING3 */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#endif /* PGMPOOL_WITH_MONITORING */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#ifdef PGMPOOL_WITH_CACHE
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync/**
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * Inserts a page into the GCPhys hash table.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync *
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param pPool The pool.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param pPage The page.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncDECLINLINE(void) pgmPoolHashInsert(PPGMPOOL pPool, PPGMPOOLPAGE pPage)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync{
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync Log3(("pgmPoolHashInsert: %RGp\n", pPage->GCPhys));
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync Assert(pPage->GCPhys != NIL_RTGCPHYS); Assert(pPage->iNext == NIL_PGMPOOL_IDX);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync uint16_t iHash = PGMPOOL_HASH(pPage->GCPhys);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync pPage->iNext = pPool->aiHash[iHash];
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync pPool->aiHash[iHash] = pPage->idx;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync}
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync/**
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * Removes a page from the GCPhys hash table.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync *
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param pPool The pool.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param pPage The page.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncDECLINLINE(void) pgmPoolHashRemove(PPGMPOOL pPool, PPGMPOOLPAGE pPage)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync{
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync Log3(("pgmPoolHashRemove: %RGp\n", pPage->GCPhys));
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync uint16_t iHash = PGMPOOL_HASH(pPage->GCPhys);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if (pPool->aiHash[iHash] == pPage->idx)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync pPool->aiHash[iHash] = pPage->iNext;
40c1a23e86c79b24a917a43c186b2e54504d12c1vboxsync else
40c1a23e86c79b24a917a43c186b2e54504d12c1vboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync uint16_t iPrev = pPool->aiHash[iHash];
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync for (;;)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync const int16_t i = pPool->aPages[iPrev].iNext;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync if (i == pPage->idx)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync pPool->aPages[iPrev].iNext = pPage->iNext;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync break;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync }
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync if (i == NIL_PGMPOOL_IDX)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync AssertReleaseMsgFailed(("GCPhys=%RGp idx=%#x\n", pPage->GCPhys, pPage->idx));
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync break;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync }
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync iPrev = i;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync }
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync }
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync pPage->iNext = NIL_PGMPOOL_IDX;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync}
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync/**
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * Frees up one cache page.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync *
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @returns VBox status code.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @retval VINF_SUCCESS on success.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @retval VERR_PGM_POOL_CLEARED if the deregistration of a physical handler will cause a light weight pool flush.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pPool The pool.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param iUser The user index.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsyncstatic int pgmPoolCacheFreeOne(PPGMPOOL pPool, uint16_t iUser)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync{
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync#ifndef IN_RC
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync const PVM pVM = pPool->CTX_SUFF(pVM);
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync#endif
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync Assert(pPool->iAgeHead != pPool->iAgeTail); /* We shouldn't be here if there < 2 cached entries! */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync STAM_COUNTER_INC(&pPool->StatCacheFreeUpOne);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync /*
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * Select one page from the tail of the age list.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync uint16_t iToFree = pPool->iAgeTail;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if (iToFree == iUser)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync iToFree = pPool->aPages[iToFree].iAgePrev;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync/* This is the alternative to the SyncCR3 pgmPoolCacheUsed calls.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if (pPool->aPages[iToFree].iUserHead != NIL_PGMPOOL_USER_INDEX)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync uint16_t i = pPool->aPages[iToFree].iAgePrev;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync for (unsigned j = 0; j < 10 && i != NIL_PGMPOOL_USER_INDEX; j++, i = pPool->aPages[i].iAgePrev)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync {
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync if (pPool->aPages[iToFree].iUserHead == NIL_PGMPOOL_USER_INDEX)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync continue;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync iToFree = i;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync break;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync }
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync }
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync*/
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync Assert(iToFree != iUser);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync AssertRelease(iToFree != NIL_PGMPOOL_IDX);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync PPGMPOOLPAGE pPage = &pPool->aPages[iToFree];
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync /*
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * Reject any attempts at flushing the currently active shadow CR3 mapping
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if (PGMGetHyperCR3(pPool->CTX_SUFF(pVM)) == pPage->Core.Key)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync /* Refresh the cr3 mapping by putting it at the head of the age list. */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync pgmPoolCacheUsed(pPool, pPage);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync return pgmPoolCacheFreeOne(pPool, iUser);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync }
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync int rc = pgmPoolFlushPage(pPool, pPage);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if (rc == VINF_SUCCESS)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync PGM_INVL_GUEST_TLBS(); /* see PT handler. */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync return rc;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync}
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync/**
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * Checks if a kind mismatch is really a page being reused
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * or if it's just normal remappings.
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync *
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * @returns true if reused and the cached page (enmKind1) should be flushed
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * @returns false if not reused.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param enmKind1 The kind of the cached page.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param enmKind2 The kind of the requested page.
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncstatic bool pgmPoolCacheReusedByKind(PGMPOOLKIND enmKind1, PGMPOOLKIND enmKind2)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync{
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync switch (enmKind1)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync {
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync /*
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync * Never reuse them. There is no remapping in non-paging mode.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_32BIT_PT_FOR_PHYS:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_32BIT_PD_PHYS:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PT_FOR_PHYS:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PD_PHYS:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PDPT_PHYS:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_PHYS:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_64BIT_PD_FOR_PHYS:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_EPT_PT_FOR_PHYS:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_EPT_PD_FOR_PHYS:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_EPT_PDPT_FOR_PHYS:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_PAE_PDPT_FOR_32BIT: /* never reuse them for other types */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync return false;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync#else
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync return true;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync#endif
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync /*
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * It's perfectly fine to reuse these, except for PAE and non-paging stuff.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_4MB:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_PT:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_PAE_PD1_FOR_32BIT_PD:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_PAE_PD2_FOR_32BIT_PD:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_PAE_PD3_FOR_32BIT_PD:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync switch (enmKind2)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync {
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_PAE_PD_FOR_PAE_PD:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_PT:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_64BIT_PDPT:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_64BIT_PML4:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_32BIT_PT_FOR_PHYS:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_PAE_PT_FOR_PHYS:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_PHYS:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_64BIT_PD_FOR_PHYS:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_EPT_PDPT_FOR_PHYS:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_EPT_PD_FOR_PHYS:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_EPT_PT_FOR_PHYS:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return true;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync default:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return false;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync }
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync /*
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * It's perfectly fine to reuse these, except for PAE and non-paging stuff.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync */
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_PAE_PD_FOR_PAE_PD:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_PT:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_64BIT_PDPT:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_64BIT_PML4:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync switch (enmKind2)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_4MB:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_PT:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_PAE_PD1_FOR_32BIT_PD:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_PAE_PD2_FOR_32BIT_PD:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_PAE_PD3_FOR_32BIT_PD:
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync case PGMPOOLKIND_32BIT_PT_FOR_PHYS:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_PAE_PT_FOR_PHYS:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_PHYS:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_64BIT_PD_FOR_PHYS:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_EPT_PDPT_FOR_PHYS:
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync case PGMPOOLKIND_EPT_PD_FOR_PHYS:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_EPT_PT_FOR_PHYS:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync return true;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync default:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync return false;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync }
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync /*
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * These cannot be flushed, and it's common to reuse the PDs as PTs.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_ROOT_32BIT_PD:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_ROOT_PAE_PD:
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync case PGMPOOLKIND_ROOT_PDPT:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#endif
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_ROOT_NESTED:
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync return false;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync default:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync AssertFatalMsgFailed(("enmKind1=%d\n", enmKind1));
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync }
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync}
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync/**
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * Attempts to satisfy a pgmPoolAlloc request from the cache.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync *
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @returns VBox status code.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @retval VINF_PGM_CACHED_PAGE on success.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @retval VERR_FILE_NOT_FOUND if not found.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param pPool The pool.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param GCPhys The GC physical address of the page we're gonna shadow.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param enmKind The kind of mapping.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * @param iUser The shadow page pool index of the user table.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param iUserTable The index into the user table (shadowed).
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param ppPage Where to store the pointer to the page.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsyncstatic int pgmPoolCacheAlloc(PPGMPOOL pPool, RTGCPHYS GCPhys, PGMPOOLKIND enmKind, uint16_t iUser, uint32_t iUserTable, PPPGMPOOLPAGE ppPage)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync{
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#ifndef IN_RC
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync const PVM pVM = pPool->CTX_SUFF(pVM);
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#endif
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync /*
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * Look up the GCPhys in the hash.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync */
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync unsigned i = pPool->aiHash[PGMPOOL_HASH(GCPhys)];
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync Log3(("pgmPoolCacheAlloc: %RGp kind %d iUser=%d iUserTable=%x SLOT=%d\n", GCPhys, enmKind, iUser, iUserTable, i));
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if (i != NIL_PGMPOOL_IDX)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync {
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync do
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync {
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync PPGMPOOLPAGE pPage = &pPool->aPages[i];
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync Log3(("pgmPoolCacheAlloc: slot %d found page %RGp\n", i, pPage->GCPhys));
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync if (pPage->GCPhys == GCPhys)
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync if ((PGMPOOLKIND)pPage->enmKind == enmKind)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync int rc = pgmPoolTrackAddUser(pPool, pPage, iUser, iUserTable);
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync if (RT_SUCCESS(rc))
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync {
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync *ppPage = pPage;
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync STAM_COUNTER_INC(&pPool->StatCacheHits);
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync return VINF_PGM_CACHED_PAGE;
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync }
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync return rc;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync }
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync /*
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync * The kind is different. In some cases we should now flush the page
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * as it has been reused, but in most cases this is normal remapping
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * of PDs as PT or big pages using the GCPhys field in a slightly
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync * different way than the other kinds.
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync */
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync if (pgmPoolCacheReusedByKind((PGMPOOLKIND)pPage->enmKind, enmKind))
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync {
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync STAM_COUNTER_INC(&pPool->StatCacheKindMismatches);
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync pgmPoolFlushPage(pPool, pPage); /* ASSUMES that VERR_PGM_POOL_CLEARED will be returned by pgmPoolTracInsert. */
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync PGM_INVL_GUEST_TLBS(); /* see PT handler. */
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync break;
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync }
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync }
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync /* next */
6b9d50a0f466bd5a61458ed53925480ab28a3c17vboxsync i = pPage->iNext;
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync } while (i != NIL_PGMPOOL_IDX);
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync }
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync Log3(("pgmPoolCacheAlloc: Missed GCPhys=%RGp enmKind=%d\n", GCPhys, enmKind));
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync STAM_COUNTER_INC(&pPool->StatCacheMisses);
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync return VERR_FILE_NOT_FOUND;
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync}
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync/**
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync * Inserts a page into the cache.
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync *
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * @param pPool The pool.
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * @param pPage The cached page.
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync * @param fCanBeCached Set if the page is fit for caching from the caller's point of view.
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync */
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsyncstatic void pgmPoolCacheInsert(PPGMPOOL pPool, PPGMPOOLPAGE pPage, bool fCanBeCached)
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync{
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync /*
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync * Insert into the GCPhys hash if the page is fit for that.
5366e994777f9d9391cf809dc77610f57270d75dvboxsync */
5366e994777f9d9391cf809dc77610f57270d75dvboxsync Assert(!pPage->fCached);
5366e994777f9d9391cf809dc77610f57270d75dvboxsync if (fCanBeCached)
5366e994777f9d9391cf809dc77610f57270d75dvboxsync {
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pPage->fCached = true;
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pgmPoolHashInsert(pPool, pPage);
5366e994777f9d9391cf809dc77610f57270d75dvboxsync Log3(("pgmPoolCacheInsert: Caching %p:{.Core=%RHp, .idx=%d, .enmKind=%d, GCPhys=%RGp}\n",
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pPage, pPage->Core.Key, pPage->idx, pPage->enmKind, pPage->GCPhys));
5366e994777f9d9391cf809dc77610f57270d75dvboxsync STAM_COUNTER_INC(&pPool->StatCacheCacheable);
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync }
cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5fvboxsync else
cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5fvboxsync {
5366e994777f9d9391cf809dc77610f57270d75dvboxsync Log3(("pgmPoolCacheInsert: Not caching %p:{.Core=%RHp, .idx=%d, .enmKind=%d, GCPhys=%RGp}\n",
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pPage, pPage->Core.Key, pPage->idx, pPage->enmKind, pPage->GCPhys));
5366e994777f9d9391cf809dc77610f57270d75dvboxsync STAM_COUNTER_INC(&pPool->StatCacheUncacheable);
5366e994777f9d9391cf809dc77610f57270d75dvboxsync }
5366e994777f9d9391cf809dc77610f57270d75dvboxsync
5366e994777f9d9391cf809dc77610f57270d75dvboxsync /*
5366e994777f9d9391cf809dc77610f57270d75dvboxsync * Insert at the head of the age list.
5366e994777f9d9391cf809dc77610f57270d75dvboxsync */
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pPage->iAgePrev = NIL_PGMPOOL_IDX;
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pPage->iAgeNext = pPool->iAgeHead;
5366e994777f9d9391cf809dc77610f57270d75dvboxsync if (pPool->iAgeHead != NIL_PGMPOOL_IDX)
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pPool->aPages[pPool->iAgeHead].iAgePrev = pPage->idx;
5366e994777f9d9391cf809dc77610f57270d75dvboxsync else
cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5fvboxsync pPool->iAgeTail = pPage->idx;
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync pPool->iAgeHead = pPage->idx;
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync}
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync/**
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync * Flushes a cached page.
7e8ef90d3160234df0f254131b87af4243d79476vboxsync *
7e8ef90d3160234df0f254131b87af4243d79476vboxsync * @param pPool The pool.
7e8ef90d3160234df0f254131b87af4243d79476vboxsync * @param pPage The cached page.
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync */
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsyncstatic void pgmPoolCacheFlushPage(PPGMPOOL pPool, PPGMPOOLPAGE pPage)
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync{
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync Log3(("pgmPoolCacheFlushPage: %RGp\n", pPage->GCPhys));
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync
e2489bd9ef063ae006feaebc3318ffa4143f6e16vboxsync /*
e2489bd9ef063ae006feaebc3318ffa4143f6e16vboxsync * Remove the page from the hash.
e2489bd9ef063ae006feaebc3318ffa4143f6e16vboxsync */
e2489bd9ef063ae006feaebc3318ffa4143f6e16vboxsync if (pPage->fCached)
e2489bd9ef063ae006feaebc3318ffa4143f6e16vboxsync {
e2489bd9ef063ae006feaebc3318ffa4143f6e16vboxsync pPage->fCached = false;
e2489bd9ef063ae006feaebc3318ffa4143f6e16vboxsync pgmPoolHashRemove(pPool, pPage);
e2489bd9ef063ae006feaebc3318ffa4143f6e16vboxsync }
e2489bd9ef063ae006feaebc3318ffa4143f6e16vboxsync else
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync Assert(pPage->iNext == NIL_PGMPOOL_IDX);
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync /*
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync * Remove it from the age list.
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync */
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync if (pPage->iAgeNext != NIL_PGMPOOL_IDX)
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync pPool->aPages[pPage->iAgeNext].iAgePrev = pPage->iAgePrev;
cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5fvboxsync else
cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5fvboxsync pPool->iAgeTail = pPage->iAgePrev;
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync if (pPage->iAgePrev != NIL_PGMPOOL_IDX)
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync pPool->aPages[pPage->iAgePrev].iAgeNext = pPage->iAgeNext;
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync else
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync pPool->iAgeHead = pPage->iAgeNext;
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync pPage->iAgeNext = NIL_PGMPOOL_IDX;
6b9d50a0f466bd5a61458ed53925480ab28a3c17vboxsync pPage->iAgePrev = NIL_PGMPOOL_IDX;
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync}
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync#endif /* PGMPOOL_WITH_CACHE */
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync#ifdef PGMPOOL_WITH_MONITORING
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync
6b9d50a0f466bd5a61458ed53925480ab28a3c17vboxsync/**
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync * Looks for pages sharing the monitor.
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync *
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync * @returns Pointer to the head page.
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync * @returns NULL if not found.
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync * @param pPool The Pool
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync * @param pNewPage The page which is going to be monitored.
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync */
6b9d50a0f466bd5a61458ed53925480ab28a3c17vboxsyncstatic PPGMPOOLPAGE pgmPoolMonitorGetPageByGCPhys(PPGMPOOL pPool, PPGMPOOLPAGE pNewPage)
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync{
6b9d50a0f466bd5a61458ed53925480ab28a3c17vboxsync#ifdef PGMPOOL_WITH_CACHE
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync /*
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * Look up the GCPhys in the hash.
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync */
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync RTGCPHYS GCPhys = pNewPage->GCPhys & ~(RTGCPHYS)(PAGE_SIZE - 1);
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync unsigned i = pPool->aiHash[PGMPOOL_HASH(GCPhys)];
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync if (i == NIL_PGMPOOL_IDX)
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync return NULL;
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync do
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync {
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync PPGMPOOLPAGE pPage = &pPool->aPages[i];
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync if ( pPage->GCPhys - GCPhys < PAGE_SIZE
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync && pPage != pNewPage)
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync switch (pPage->enmKind)
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync {
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT:
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_PT:
cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5fvboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_PT:
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync case PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD:
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync case PGMPOOLKIND_PAE_PD1_FOR_32BIT_PD:
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync case PGMPOOLKIND_PAE_PD2_FOR_32BIT_PD:
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync case PGMPOOLKIND_PAE_PD3_FOR_32BIT_PD:
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync case PGMPOOLKIND_PAE_PD_FOR_PAE_PD:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_64BIT_PDPT:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_64BIT_PML4:
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_32BIT_PD:
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync case PGMPOOLKIND_PAE_PDPT:
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync#else
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync case PGMPOOLKIND_ROOT_32BIT_PD:
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync case PGMPOOLKIND_ROOT_PAE_PD:
ccbdc11833996cb9f3be7868f1ebaefcacafb94dvboxsync case PGMPOOLKIND_ROOT_PDPT:
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync#endif
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync {
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync /* find the head */
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync while (pPage->iMonitoredPrev != NIL_PGMPOOL_IDX)
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync {
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync Assert(pPage->iMonitoredPrev != pPage->idx);
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync pPage = &pPool->aPages[pPage->iMonitoredPrev];
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync }
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync return pPage;
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync }
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync /* ignore, no monitoring. */
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_4MB:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_32BIT_PT_FOR_PHYS:
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync case PGMPOOLKIND_PAE_PT_FOR_PHYS:
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_PHYS:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_64BIT_PD_FOR_PHYS:
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync case PGMPOOLKIND_EPT_PDPT_FOR_PHYS:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_EPT_PD_FOR_PHYS:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_EPT_PT_FOR_PHYS:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_ROOT_NESTED:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_PAE_PD_PHYS:
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync case PGMPOOLKIND_PAE_PDPT_PHYS:
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync case PGMPOOLKIND_32BIT_PD_PHYS:
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync case PGMPOOLKIND_PAE_PDPT_FOR_32BIT:
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync#endif
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync break;
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync default:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync AssertFatalMsgFailed(("enmKind=%d idx=%d\n", pPage->enmKind, pPage->idx));
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync }
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync }
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync /* next */
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync i = pPage->iNext;
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync } while (i != NIL_PGMPOOL_IDX);
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync#endif
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync return NULL;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync}
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync/**
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * Enabled write monitoring of a guest page.
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync *
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @returns VBox status code.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @retval VINF_SUCCESS on success.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @retval VERR_PGM_POOL_CLEARED if the registration of the physical handler will cause a light weight pool flush.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pPool The pool.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * @param pPage The cached page.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsyncstatic int pgmPoolMonitorInsert(PPGMPOOL pPool, PPGMPOOLPAGE pPage)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync{
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync LogFlow(("pgmPoolMonitorInsert %RGp\n", pPage->GCPhys & ~(RTGCPHYS)(PAGE_SIZE - 1)));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync /*
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * Filter out the relevant kinds.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync switch (pPage->enmKind)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync {
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_PT:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_PAE_PD_FOR_PAE_PD:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_PT:
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_64BIT_PDPT:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_64BIT_PML4:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_PAE_PD1_FOR_32BIT_PD:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_PAE_PD2_FOR_32BIT_PD:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_PAE_PD3_FOR_32BIT_PD:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_32BIT_PD:
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync case PGMPOOLKIND_PAE_PDPT:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync#else
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_ROOT_PDPT:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync#endif
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync break;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_4MB:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_32BIT_PT_FOR_PHYS:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PT_FOR_PHYS:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_PHYS:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_64BIT_PD_FOR_PHYS:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_EPT_PDPT_FOR_PHYS:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_EPT_PD_FOR_PHYS:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_EPT_PT_FOR_PHYS:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_ROOT_NESTED:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync /* Nothing to monitor here. */
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync return VINF_SUCCESS;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_32BIT_PD_PHYS:
9e7e0b61d29309a0ed7af9472c8d6d865f9e8a2dvboxsync case PGMPOOLKIND_PAE_PDPT_PHYS:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PD_PHYS:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PDPT_FOR_32BIT:
9e7e0b61d29309a0ed7af9472c8d6d865f9e8a2dvboxsync /* Nothing to monitor here. */
9e7e0b61d29309a0ed7af9472c8d6d865f9e8a2dvboxsync return VINF_SUCCESS;
9e7e0b61d29309a0ed7af9472c8d6d865f9e8a2dvboxsync#else
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_ROOT_32BIT_PD:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_ROOT_PAE_PD:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync#endif
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync#ifdef PGMPOOL_WITH_MIXED_PT_CR3
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync break;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync#else
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync#endif
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync default:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync AssertFatalMsgFailed(("This can't happen! enmKind=%d\n", pPage->enmKind));
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync }
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync /*
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * Install handler.
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync */
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync int rc;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync PPGMPOOLPAGE pPageHead = pgmPoolMonitorGetPageByGCPhys(pPool, pPage);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync if (pPageHead)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync Assert(pPageHead != pPage); Assert(pPageHead->iMonitoredNext != pPage->idx);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync Assert(pPageHead->iMonitoredPrev != pPage->idx);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync pPage->iMonitoredPrev = pPageHead->idx;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync pPage->iMonitoredNext = pPageHead->iMonitoredNext;
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync if (pPageHead->iMonitoredNext != NIL_PGMPOOL_IDX)
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync pPool->aPages[pPageHead->iMonitoredNext].iMonitoredPrev = pPage->idx;
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync pPageHead->iMonitoredNext = pPage->idx;
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync rc = VINF_SUCCESS;
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync }
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync else
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync {
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync Assert(pPage->iMonitoredNext == NIL_PGMPOOL_IDX); Assert(pPage->iMonitoredPrev == NIL_PGMPOOL_IDX);
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync PVM pVM = pPool->CTX_SUFF(pVM);
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync const RTGCPHYS GCPhysPage = pPage->GCPhys & ~(RTGCPHYS)(PAGE_SIZE - 1);
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync rc = PGMHandlerPhysicalRegisterEx(pVM, PGMPHYSHANDLERTYPE_PHYSICAL_WRITE,
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync GCPhysPage, GCPhysPage + (PAGE_SIZE - 1),
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync pPool->pfnAccessHandlerR3, MMHyperCCToR3(pVM, pPage),
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync pPool->pfnAccessHandlerR0, MMHyperCCToR0(pVM, pPage),
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync pPool->pfnAccessHandlerRC, MMHyperCCToRC(pVM, pPage),
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync pPool->pszAccessHandler);
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync /** @todo we should probably deal with out-of-memory conditions here, but for now increasing
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync * the heap size should suffice. */
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync AssertFatalRC(rc);
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync if (pVM->pgm.s.fSyncFlags & PGM_SYNC_CLEAR_PGM_POOL)
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync rc = VERR_PGM_POOL_CLEARED;
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync }
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync pPage->fMonitored = true;
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync return rc;
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync}
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync
88cc9bf61296bc5526344415167bb2625ae1dd99vboxsync
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync/**
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync * Disables write monitoring of a guest page.
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync *
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync * @returns VBox status code.
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync * @retval VINF_SUCCESS on success.
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync * @retval VERR_PGM_POOL_CLEARED if the deregistration of the physical handler will cause a light weight pool flush.
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync * @param pPool The pool.
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync * @param pPage The cached page.
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync */
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsyncstatic int pgmPoolMonitorFlush(PPGMPOOL pPool, PPGMPOOLPAGE pPage)
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync{
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync /*
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync * Filter out the relevant kinds.
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync */
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync switch (pPage->enmKind)
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync {
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT:
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_PT:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PD_FOR_PAE_PD:
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_PT:
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync case PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD:
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_64BIT_PDPT:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_64BIT_PML4:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_32BIT_PD:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_PAE_PDPT:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_PAE_PD1_FOR_32BIT_PD:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_PAE_PD2_FOR_32BIT_PD:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_PAE_PD3_FOR_32BIT_PD:
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync#else
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync case PGMPOOLKIND_ROOT_PDPT:
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync#endif
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync break;
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_4MB:
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB:
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync case PGMPOOLKIND_32BIT_PT_FOR_PHYS:
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync case PGMPOOLKIND_PAE_PT_FOR_PHYS:
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_PHYS:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_64BIT_PD_FOR_PHYS:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_EPT_PDPT_FOR_PHYS:
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync case PGMPOOLKIND_EPT_PD_FOR_PHYS:
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync case PGMPOOLKIND_EPT_PT_FOR_PHYS:
f9ce005e61f0fbb51a2cabc53d58c3485151faa9vboxsync case PGMPOOLKIND_ROOT_NESTED:
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync case PGMPOOLKIND_PAE_PD_PHYS:
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync case PGMPOOLKIND_PAE_PDPT_PHYS:
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync case PGMPOOLKIND_32BIT_PD_PHYS:
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync /* Nothing to monitor here. */
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync return VINF_SUCCESS;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync#ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_ROOT_32BIT_PD:
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync case PGMPOOLKIND_ROOT_PAE_PD:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync#endif
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync#ifdef PGMPOOL_WITH_MIXED_PT_CR3
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync break;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync#endif
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync#ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync case PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD:
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync#endif
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync default:
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync AssertFatalMsgFailed(("This can't happen! enmKind=%d\n", pPage->enmKind));
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync }
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync /*
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync * Remove the page from the monitored list or uninstall it if last.
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync */
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync const PVM pVM = pPool->CTX_SUFF(pVM);
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync int rc;
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync if ( pPage->iMonitoredNext != NIL_PGMPOOL_IDX
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync || pPage->iMonitoredPrev != NIL_PGMPOOL_IDX)
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync {
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync if (pPage->iMonitoredPrev == NIL_PGMPOOL_IDX)
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync {
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync PPGMPOOLPAGE pNewHead = &pPool->aPages[pPage->iMonitoredNext];
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pNewHead->iMonitoredPrev = NIL_PGMPOOL_IDX;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pNewHead->fCR3Mix = pPage->fCR3Mix;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync rc = PGMHandlerPhysicalChangeCallbacks(pVM, pPage->GCPhys & ~(RTGCPHYS)(PAGE_SIZE - 1),
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPool->pfnAccessHandlerR3, MMHyperCCToR3(pVM, pNewHead),
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPool->pfnAccessHandlerR0, MMHyperCCToR0(pVM, pNewHead),
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPool->pfnAccessHandlerRC, MMHyperCCToRC(pVM, pNewHead),
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPool->pszAccessHandler);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync AssertFatalRCSuccess(rc);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPage->iMonitoredNext = NIL_PGMPOOL_IDX;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync }
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync else
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync {
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPool->aPages[pPage->iMonitoredPrev].iMonitoredNext = pPage->iMonitoredNext;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync if (pPage->iMonitoredNext != NIL_PGMPOOL_IDX)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync {
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPool->aPages[pPage->iMonitoredNext].iMonitoredPrev = pPage->iMonitoredPrev;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPage->iMonitoredNext = NIL_PGMPOOL_IDX;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync }
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPage->iMonitoredPrev = NIL_PGMPOOL_IDX;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync rc = VINF_SUCCESS;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync }
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync }
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync else
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync {
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync rc = PGMHandlerPhysicalDeregister(pVM, pPage->GCPhys & ~(RTGCPHYS)(PAGE_SIZE - 1));
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync AssertFatalRC(rc);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync if (pVM->pgm.s.fSyncFlags & PGM_SYNC_CLEAR_PGM_POOL)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync rc = VERR_PGM_POOL_CLEARED;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync }
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPage->fMonitored = false;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync /*
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * Remove it from the list of modified pages (if in it).
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync */
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pgmPoolMonitorModifiedRemove(pPool, pPage);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync return rc;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync}
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync# ifdef PGMPOOL_WITH_MIXED_PT_CR3
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync/**
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * Set or clear the fCR3Mix attribute in a chain of monitored pages.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync *
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * @param pPool The Pool.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * @param pPage A page in the chain.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * @param fCR3Mix The new fCR3Mix value.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync */
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsyncstatic void pgmPoolMonitorChainChangeCR3Mix(PPGMPOOL pPool, PPGMPOOLPAGE pPage, bool fCR3Mix)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync{
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync /* current */
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPage->fCR3Mix = fCR3Mix;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync /* before */
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync int16_t idx = pPage->iMonitoredPrev;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync while (idx != NIL_PGMPOOL_IDX)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync {
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPool->aPages[idx].fCR3Mix = fCR3Mix;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync idx = pPool->aPages[idx].iMonitoredPrev;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync }
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync /* after */
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync idx = pPage->iMonitoredNext;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync while (idx != NIL_PGMPOOL_IDX)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync {
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPool->aPages[idx].fCR3Mix = fCR3Mix;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync idx = pPool->aPages[idx].iMonitoredNext;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync }
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync}
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync/**
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * Installs or modifies monitoring of a CR3 page (special).
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync *
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * We're pretending the CR3 page is shadowed by the pool so we can use the
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * generic mechanisms in detecting chained monitoring. (This also gives us a
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * tast of what code changes are required to really pool CR3 shadow pages.)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync *
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * @returns VBox status code.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * @param pPool The pool.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * @param idxRoot The CR3 (root) page index.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * @param GCPhysCR3 The (new) CR3 value.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync */
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsyncint pgmPoolMonitorMonitorCR3(PPGMPOOL pPool, uint16_t idxRoot, RTGCPHYS GCPhysCR3)
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync{
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync Assert(idxRoot != NIL_PGMPOOL_IDX && idxRoot < PGMPOOL_IDX_FIRST);
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync PPGMPOOLPAGE pPage = &pPool->aPages[idxRoot];
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync LogFlow(("pgmPoolMonitorMonitorCR3: idxRoot=%d pPage=%p:{.GCPhys=%RGp, .fMonitored=%d} GCPhysCR3=%RGp\n",
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync idxRoot, pPage, pPage->GCPhys, pPage->fMonitored, GCPhysCR3));
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync /*
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * The unlikely case where it already matches.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync */
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync if (pPage->GCPhys == GCPhysCR3)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync Assert(pPage->fMonitored);
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return VINF_SUCCESS;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync }
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync /*
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * Flush the current monitoring and remove it from the hash.
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync */
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync int rc = VINF_SUCCESS;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync if (pPage->fMonitored)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync pgmPoolMonitorChainChangeCR3Mix(pPool, pPage, false);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync rc = pgmPoolMonitorFlush(pPool, pPage);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync if (rc == VERR_PGM_POOL_CLEARED)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync rc = VINF_SUCCESS;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync else
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync AssertFatalRC(rc);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync pgmPoolHashRemove(pPool, pPage);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync }
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync /*
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * Monitor the page at the new location and insert it into the hash.
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync */
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync pPage->GCPhys = GCPhysCR3;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync int rc2 = pgmPoolMonitorInsert(pPool, pPage);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync if (rc2 != VERR_PGM_POOL_CLEARED)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync AssertFatalRC(rc2);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync if (rc2 != VINF_SUCCESS && rc == VINF_SUCCESS)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync rc = rc2;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync }
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync pgmPoolHashInsert(pPool, pPage);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync pgmPoolMonitorChainChangeCR3Mix(pPool, pPage, true);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync return rc;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync}
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync/**
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * Removes the monitoring of a CR3 page (special).
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync *
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync * @returns VBox status code.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * @param pPool The pool.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * @param idxRoot The CR3 (root) page index.
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync */
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsyncint pgmPoolMonitorUnmonitorCR3(PPGMPOOL pPool, uint16_t idxRoot)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync{
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync Assert(idxRoot != NIL_PGMPOOL_IDX && idxRoot < PGMPOOL_IDX_FIRST);
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync PPGMPOOLPAGE pPage = &pPool->aPages[idxRoot];
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync LogFlow(("pgmPoolMonitorUnmonitorCR3: idxRoot=%d pPage=%p:{.GCPhys=%RGp, .fMonitored=%d}\n",
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync idxRoot, pPage, pPage->GCPhys, pPage->fMonitored));
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync if (!pPage->fMonitored)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return VINF_SUCCESS;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync pgmPoolMonitorChainChangeCR3Mix(pPool, pPage, false);
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync int rc = pgmPoolMonitorFlush(pPool, pPage);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync if (rc != VERR_PGM_POOL_CLEARED)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync AssertFatalRC(rc);
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync else
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync rc = VINF_SUCCESS;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync pgmPoolHashRemove(pPool, pPage);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync Assert(!pPage->fMonitored);
9e7e0b61d29309a0ed7af9472c8d6d865f9e8a2dvboxsync pPage->GCPhys = NIL_RTGCPHYS;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync return rc;
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync}
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync# endif /* PGMPOOL_WITH_MIXED_PT_CR3 */
9e7e0b61d29309a0ed7af9472c8d6d865f9e8a2dvboxsync
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync/**
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * Inserts the page into the list of modified pages.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync *
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * @param pPool The pool.
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync * @param pPage The page.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync */
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsyncvoid pgmPoolMonitorModifiedInsert(PPGMPOOL pPool, PPGMPOOLPAGE pPage)
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync{
ecf100db90e8e3af96312908282d3c20e754fbe8vboxsync Log3(("pgmPoolMonitorModifiedInsert: idx=%d\n", pPage->idx));
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync AssertMsg( pPage->iModifiedNext == NIL_PGMPOOL_IDX
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync && pPage->iModifiedPrev == NIL_PGMPOOL_IDX
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync && pPool->iModifiedHead != pPage->idx,
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync ("Next=%d Prev=%d idx=%d cModifications=%d Head=%d cModifiedPages=%d\n",
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPage->iModifiedNext, pPage->iModifiedPrev, pPage->idx, pPage->cModifications,
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPool->iModifiedHead, pPool->cModifiedPages));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPage->iModifiedNext = pPool->iModifiedHead;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (pPool->iModifiedHead != NIL_PGMPOOL_IDX)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPool->aPages[pPool->iModifiedHead].iModifiedPrev = pPage->idx;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPool->iModifiedHead = pPage->idx;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPool->cModifiedPages++;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#ifdef VBOX_WITH_STATISTICS
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (pPool->cModifiedPages > pPool->cModifiedPagesHigh)
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync pPool->cModifiedPagesHigh = pPool->cModifiedPages;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync#endif
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync}
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync/**
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync * Removes the page from the list of modified pages and resets the
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync * moficiation counter.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync *
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param pPool The pool.
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync * @param pPage The page which is believed to be in the list of modified pages.
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync */
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsyncstatic void pgmPoolMonitorModifiedRemove(PPGMPOOL pPool, PPGMPOOLPAGE pPage)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync{
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync Log3(("pgmPoolMonitorModifiedRemove: idx=%d cModifications=%d\n", pPage->idx, pPage->cModifications));
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if (pPool->iModifiedHead == pPage->idx)
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync {
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync Assert(pPage->iModifiedPrev == NIL_PGMPOOL_IDX);
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync pPool->iModifiedHead = pPage->iModifiedNext;
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync if (pPage->iModifiedNext != NIL_PGMPOOL_IDX)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync {
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync pPool->aPages[pPage->iModifiedNext].iModifiedPrev = NIL_PGMPOOL_IDX;
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync pPage->iModifiedNext = NIL_PGMPOOL_IDX;
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync }
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync pPool->cModifiedPages--;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync }
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync else if (pPage->iModifiedPrev != NIL_PGMPOOL_IDX)
3fb3de312d1ff675e0f7cc62a7d46cbb1d5d9353vboxsync {
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync pPool->aPages[pPage->iModifiedPrev].iModifiedNext = pPage->iModifiedNext;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (pPage->iModifiedNext != NIL_PGMPOOL_IDX)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPool->aPages[pPage->iModifiedNext].iModifiedPrev = pPage->iModifiedPrev;
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync pPage->iModifiedNext = NIL_PGMPOOL_IDX;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPage->iModifiedPrev = NIL_PGMPOOL_IDX;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPool->cModifiedPages--;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync else
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync Assert(pPage->iModifiedPrev == NIL_PGMPOOL_IDX);
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync pPage->cModifications = 0;
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync}
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync/**
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync * Zaps the list of modified pages, resetting their modification counters in the process.
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync *
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync * @param pVM The VM handle.
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncvoid pgmPoolMonitorModifiedClearAll(PVM pVM)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync{
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync LogFlow(("pgmPoolMonitorModifiedClearAll: cModifiedPages=%d\n", pPool->cModifiedPages));
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync unsigned cPages = 0; NOREF(cPages);
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync uint16_t idx = pPool->iModifiedHead;
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync pPool->iModifiedHead = NIL_PGMPOOL_IDX;
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync while (idx != NIL_PGMPOOL_IDX)
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync {
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync PPGMPOOLPAGE pPage = &pPool->aPages[idx];
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync idx = pPage->iModifiedNext;
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync pPage->iModifiedNext = NIL_PGMPOOL_IDX;
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync pPage->iModifiedPrev = NIL_PGMPOOL_IDX;
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync pPage->cModifications = 0;
c99b597540585068d22dde4c9f74730305f24097vboxsync Assert(++cPages);
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync }
c99b597540585068d22dde4c9f74730305f24097vboxsync AssertMsg(cPages == pPool->cModifiedPages, ("%d != %d\n", cPages, pPool->cModifiedPages));
c99b597540585068d22dde4c9f74730305f24097vboxsync pPool->cModifiedPages = 0;
c99b597540585068d22dde4c9f74730305f24097vboxsync}
c99b597540585068d22dde4c9f74730305f24097vboxsync
c99b597540585068d22dde4c9f74730305f24097vboxsync
c99b597540585068d22dde4c9f74730305f24097vboxsync#ifdef IN_RING3
c99b597540585068d22dde4c9f74730305f24097vboxsync/**
c99b597540585068d22dde4c9f74730305f24097vboxsync * Clear all shadow pages and clear all modification counters.
c99b597540585068d22dde4c9f74730305f24097vboxsync *
c99b597540585068d22dde4c9f74730305f24097vboxsync * @param pVM The VM handle.
c99b597540585068d22dde4c9f74730305f24097vboxsync * @remark Should only be used when monitoring is available, thus placed in
c99b597540585068d22dde4c9f74730305f24097vboxsync * the PGMPOOL_WITH_MONITORING #ifdef.
c99b597540585068d22dde4c9f74730305f24097vboxsync */
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsyncvoid pgmPoolClearAll(PVM pVM)
c99b597540585068d22dde4c9f74730305f24097vboxsync{
c99b597540585068d22dde4c9f74730305f24097vboxsync PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
c99b597540585068d22dde4c9f74730305f24097vboxsync STAM_PROFILE_START(&pPool->StatClearAll, c);
c99b597540585068d22dde4c9f74730305f24097vboxsync LogFlow(("pgmPoolClearAll: cUsedPages=%d\n", pPool->cUsedPages));
c99b597540585068d22dde4c9f74730305f24097vboxsync
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync /*
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Iterate all the pages until we've encountered all that in use.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * This is simple but not quite optimal solution.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync unsigned cModifiedPages = 0; NOREF(cModifiedPages);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync unsigned cLeft = pPool->cUsedPages;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync unsigned iPage = pPool->cCurPages;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync while (--iPage >= PGMPOOL_IDX_FIRST)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync PPGMPOOLPAGE pPage = &pPool->aPages[iPage];
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync if (pPage->GCPhys != NIL_RTGCPHYS)
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync {
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync switch (pPage->enmKind)
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync {
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync /*
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync * We only care about shadow page tables.
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync */
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT:
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB:
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_PT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_4MB:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_PT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB:
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync case PGMPOOLKIND_32BIT_PT_FOR_PHYS:
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync case PGMPOOLKIND_PAE_PT_FOR_PHYS:
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync {
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync#ifdef PGMPOOL_WITH_USER_TRACKING
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync if (pPage->cPresent)
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync#endif
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync {
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync void *pvShw = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync STAM_PROFILE_START(&pPool->StatZeroPage, z);
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync ASMMemZeroPage(pvShw);
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync STAM_PROFILE_STOP(&pPool->StatZeroPage, z);
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync#ifdef PGMPOOL_WITH_USER_TRACKING
c99b597540585068d22dde4c9f74730305f24097vboxsync pPage->cPresent = 0;
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync pPage->iFirstPresent = ~0;
c99b597540585068d22dde4c9f74730305f24097vboxsync#endif
c99b597540585068d22dde4c9f74730305f24097vboxsync }
c99b597540585068d22dde4c9f74730305f24097vboxsync }
02651f98b4320e70a300ba1ebe95270096ebfd4dvboxsync /* fall thru */
c99b597540585068d22dde4c9f74730305f24097vboxsync
c99b597540585068d22dde4c9f74730305f24097vboxsync default:
c99b597540585068d22dde4c9f74730305f24097vboxsync Assert(!pPage->cModifications || ++cModifiedPages);
c99b597540585068d22dde4c9f74730305f24097vboxsync Assert(pPage->iModifiedNext == NIL_PGMPOOL_IDX || pPage->cModifications);
c99b597540585068d22dde4c9f74730305f24097vboxsync Assert(pPage->iModifiedPrev == NIL_PGMPOOL_IDX || pPage->cModifications);
c99b597540585068d22dde4c9f74730305f24097vboxsync pPage->iModifiedNext = NIL_PGMPOOL_IDX;
c99b597540585068d22dde4c9f74730305f24097vboxsync pPage->iModifiedPrev = NIL_PGMPOOL_IDX;
c99b597540585068d22dde4c9f74730305f24097vboxsync pPage->cModifications = 0;
c99b597540585068d22dde4c9f74730305f24097vboxsync break;
c99b597540585068d22dde4c9f74730305f24097vboxsync
0fd108a555ae02f2fb557d5f2c40281999b60d15vboxsync }
c99b597540585068d22dde4c9f74730305f24097vboxsync if (!--cLeft)
c99b597540585068d22dde4c9f74730305f24097vboxsync break;
c99b597540585068d22dde4c9f74730305f24097vboxsync }
c99b597540585068d22dde4c9f74730305f24097vboxsync }
c99b597540585068d22dde4c9f74730305f24097vboxsync
c99b597540585068d22dde4c9f74730305f24097vboxsync /* swipe the special pages too. */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync for (iPage = PGMPOOL_IDX_FIRST_SPECIAL; iPage < PGMPOOL_IDX_FIRST; iPage++)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PPGMPOOLPAGE pPage = &pPool->aPages[iPage];
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync if (pPage->GCPhys != NIL_RTGCPHYS)
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync Assert(!pPage->cModifications || ++cModifiedPages);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync Assert(pPage->iModifiedNext == NIL_PGMPOOL_IDX || pPage->cModifications);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync Assert(pPage->iModifiedPrev == NIL_PGMPOOL_IDX || pPage->cModifications);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPage->iModifiedNext = NIL_PGMPOOL_IDX;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync pPage->iModifiedPrev = NIL_PGMPOOL_IDX;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync pPage->cModifications = 0;
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync }
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync }
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#ifndef DEBUG_michael
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync AssertMsg(cModifiedPages == pPool->cModifiedPages, ("%d != %d\n", cModifiedPages, pPool->cModifiedPages));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#endif
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync pPool->iModifiedHead = NIL_PGMPOOL_IDX;
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync pPool->cModifiedPages = 0;
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync#ifdef PGMPOOL_WITH_GCPHYS_TRACKING
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync /*
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync * Clear all the GCPhys links and rebuild the phys ext free list.
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync */
5366e994777f9d9391cf809dc77610f57270d75dvboxsync for (PPGMRAMRANGE pRam = pPool->CTX_SUFF(pVM)->pgm.s.CTX_SUFF(pRamRanges);
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pRam;
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pRam = pRam->CTX_SUFF(pNext))
5366e994777f9d9391cf809dc77610f57270d75dvboxsync {
5366e994777f9d9391cf809dc77610f57270d75dvboxsync unsigned iPage = pRam->cb >> PAGE_SHIFT;
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync while (iPage-- > 0)
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync pRam->aPages[iPage].HCPhys &= MM_RAM_FLAGS_NO_REFS_MASK; /** @todo PAGE FLAGS */
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync }
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync pPool->iPhysExtFreeHead = 0;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync PPGMPOOLPHYSEXT paPhysExts = pPool->CTX_SUFF(paPhysExts);
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync const unsigned cMaxPhysExts = pPool->cMaxPhysExts;
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync for (unsigned i = 0; i < cMaxPhysExts; i++)
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync {
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync paPhysExts[i].iNext = i + 1;
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync paPhysExts[i].aidx[0] = NIL_PGMPOOL_IDX;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync paPhysExts[i].aidx[1] = NIL_PGMPOOL_IDX;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync paPhysExts[i].aidx[2] = NIL_PGMPOOL_IDX;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync }
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync paPhysExts[cMaxPhysExts - 1].iNext = NIL_PGMPOOL_PHYSEXT_INDEX;
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync#endif
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync pPool->cPresent = 0;
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync STAM_PROFILE_STOP(&pPool->StatClearAll, c);
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync}
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync#endif /* IN_RING3 */
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync/**
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync * Handle SyncCR3 pool tasks
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync *
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync * @returns VBox status code.
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync * @retval VINF_SUCCESS if successfully added.
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync * @retval VINF_PGM_SYNC_CR3 is it needs to be deferred to ring 3 (GC only)
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync * @param pVM The VM handle.
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync * @remark Should only be used when monitoring is available, thus placed in
35e6d303696e46d969aaf9a59cc381333a483b0bvboxsync * the PGMPOOL_WITH_MONITORING #ifdef.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncint pgmPoolSyncCR3(PVM pVM)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync{
3641904508e6a0671c21a083a2ed03ebad8d976cvboxsync /*
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * When monitoring shadowed pages, we reset the modification counters on CR3 sync.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Occasionally we will have to clear all the shadow page tables because we wanted
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * to monitor a page which was mapped by too many shadowed page tables. This operation
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * sometimes refered to as a 'lightweight flush'.
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync */
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync if (!(pVM->pgm.s.fSyncFlags & PGM_SYNC_CLEAR_PGM_POOL))
36f3c24e4ad9c6b813767db1faeabbe7e2ecc057vboxsync pgmPoolMonitorModifiedClearAll(pVM);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync else
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync {
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync# ifdef IN_RING3 /* Don't flush in ring-0 or raw mode, it's taking too long. */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync pVM->pgm.s.fSyncFlags &= ~PGM_SYNC_CLEAR_PGM_POOL;
36f3c24e4ad9c6b813767db1faeabbe7e2ecc057vboxsync pgmPoolClearAll(pVM);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# else /* !IN_RING3 */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync LogFlow(("SyncCR3: PGM_SYNC_CLEAR_PGM_POOL is set -> VINF_PGM_SYNC_CR3\n"));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync VM_FF_SET(pVM, VM_FF_PGM_SYNC_CR3); /** @todo no need to do global sync, right? */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync return VINF_PGM_SYNC_CR3;
36f3c24e4ad9c6b813767db1faeabbe7e2ecc057vboxsync# endif /* !IN_RING3 */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync }
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync return VINF_SUCCESS;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync}
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync#endif /* PGMPOOL_WITH_MONITORING */
36f3c24e4ad9c6b813767db1faeabbe7e2ecc057vboxsync#ifdef PGMPOOL_WITH_USER_TRACKING
ca3db470494a8b6eaec69ea37468a5cda65e2da8vboxsync
36f3c24e4ad9c6b813767db1faeabbe7e2ecc057vboxsync/**
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * Frees up at least one user entry.
36f3c24e4ad9c6b813767db1faeabbe7e2ecc057vboxsync *
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @returns VBox status code.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @retval VINF_SUCCESS if successfully added.
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync * @retval VERR_PGM_POOL_FLUSHED if the pool was flushed.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @param pPool The pool.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @param iUser The user index.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsyncstatic int pgmPoolTrackFreeOneUser(PPGMPOOL pPool, uint16_t iUser)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync{
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync STAM_COUNTER_INC(&pPool->StatTrackFreeUpOneUser);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync#ifdef PGMPOOL_WITH_CACHE
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync /*
36f3c24e4ad9c6b813767db1faeabbe7e2ecc057vboxsync * Just free cached pages in a braindead fashion.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync /** @todo walk the age list backwards and free the first with usage. */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync int rc = VINF_SUCCESS;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync do
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync int rc2 = pgmPoolCacheFreeOne(pPool, iUser);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (RT_FAILURE(rc2) && rc == VINF_SUCCESS)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync rc = rc2;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync } while (pPool->iUserFreeHead == NIL_PGMPOOL_USER_INDEX);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync return rc;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync#else
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync /*
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync * Lazy approach.
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync */
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync /* @todo incompatible with long mode paging (cr3 root will be flushed) */
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync Assert(!CPUMIsGuestInLongMode(pVM));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pgmPoolFlushAllInt(pPool);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync return VERR_PGM_POOL_FLUSHED;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#endif
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync}
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync/**
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync * Inserts a page into the cache.
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync *
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync * This will create user node for the page, insert it into the GCPhys
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync * hash, and insert it into the age list.
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync *
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync * @returns VBox status code.
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync * @retval VINF_SUCCESS if successfully added.
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync * @retval VERR_PGM_POOL_FLUSHED if the pool was flushed.
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync * @retval VERR_PGM_POOL_CLEARED if the deregistration of the physical handler will cause a light weight pool flush.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @param pPool The pool.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @param pPage The cached page.
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync * @param GCPhys The GC physical address of the page we're gonna shadow.
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync * @param iUser The user index.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @param iUserTable The user table index.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync */
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsyncDECLINLINE(int) pgmPoolTrackInsert(PPGMPOOL pPool, PPGMPOOLPAGE pPage, RTGCPHYS GCPhys, uint16_t iUser, uint32_t iUserTable)
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync{
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync int rc = VINF_SUCCESS;
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync PPGMPOOLUSER pUser = pPool->CTX_SUFF(paUsers);
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync LogFlow(("pgmPoolTrackInsert iUser %d iUserTable %d\n", iUser, iUserTable));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /*
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * Find free a user node.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uint16_t i = pPool->iUserFreeHead;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (i == NIL_PGMPOOL_USER_INDEX)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync int rc = pgmPoolTrackFreeOneUser(pPool, iUser);
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync if (RT_FAILURE(rc))
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync return rc;
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync i = pPool->iUserFreeHead;
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync }
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync /*
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * Unlink the user node from the free list,
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * initialize and insert it into the user list.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPool->iUserFreeHead = pUser[i].iNext;
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync pUser[i].iNext = NIL_PGMPOOL_USER_INDEX;
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync pUser[i].iUser = iUser;
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync pUser[i].iUserTable = iUserTable;
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync pPage->iUserHead = i;
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync /*
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * Insert into cache and enable monitoring of the guest page if enabled.
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync *
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * Until we implement caching of all levels, including the CR3 one, we'll
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * have to make sure we don't try monitor & cache any recursive reuse of
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * a monitored CR3 page. Because all windows versions are doing this we'll
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * have to be able to do combined access monitoring, CR3 + PT and
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * PD + PT (guest PAE).
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync *
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * Update:
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync * We're now cooperating with the CR3 monitor if an uncachable page is found.
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync#if defined(PGMPOOL_WITH_MONITORING) || defined(PGMPOOL_WITH_CACHE)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync# ifdef PGMPOOL_WITH_MIXED_PT_CR3
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync const bool fCanBeMonitored = true;
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync# else
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync bool fCanBeMonitored = pPool->CTX_SUFF(pVM)->pgm.s.GCPhysGstCR3Monitored == NIL_RTGCPHYS
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync || (GCPhys & X86_PTE_PAE_PG_MASK) != (pPool->CTX_SUFF(pVM)->pgm.s.GCPhysGstCR3Monitored & X86_PTE_PAE_PG_MASK)
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync || pgmPoolIsBigPage((PGMPOOLKIND)pPage->enmKind);
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync# endif
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync# ifdef PGMPOOL_WITH_CACHE
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync pgmPoolCacheInsert(pPool, pPage, fCanBeMonitored); /* This can be expanded. */
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync# endif
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync if (fCanBeMonitored)
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync {
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync# ifdef PGMPOOL_WITH_MONITORING
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync rc = pgmPoolMonitorInsert(pPool, pPage);
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync if (rc == VERR_PGM_POOL_CLEARED)
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync {
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync /* 'Failed' - free the usage, and keep it in the cache (if enabled). */
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync# ifndef PGMPOOL_WITH_CACHE
8bc8d66f188d5357155b8340e2d489573be2b607vboxsync pgmPoolMonitorFlush(pPool, pPage);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync rc = VERR_PGM_POOL_FLUSHED;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPage->iUserHead = NIL_PGMPOOL_USER_INDEX;
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync pUser[i].iNext = pPool->iUserFreeHead;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pUser[i].iUser = NIL_PGMPOOL_IDX;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPool->iUserFreeHead = i;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync# endif
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync#endif /* PGMPOOL_WITH_MONITORING */
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync return rc;
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync}
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# ifdef PGMPOOL_WITH_CACHE /* (only used when the cache is enabled.) */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync/**
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Adds a user reference to a page.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync *
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * This will
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * This will move the page to the head of the
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync *
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @returns VBox status code.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @retval VINF_SUCCESS if successfully added.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @retval VERR_PGM_POOL_FLUSHED if the pool was flushed.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @param pPool The pool.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @param pPage The cached page.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @param iUser The user index.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @param iUserTable The user table.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsyncstatic int pgmPoolTrackAddUser(PPGMPOOL pPool, PPGMPOOLPAGE pPage, uint16_t iUser, uint32_t iUserTable)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync{
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync PPGMPOOLUSER paUsers = pPool->CTX_SUFF(paUsers);
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync LogFlow(("pgmPoolTrackAddUser iUser %d iUserTable %d\n", iUser, iUserTable));
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync# ifdef VBOX_STRICT
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync /*
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * Check that the entry doesn't already exists.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync if (pPage->iUserHead != NIL_PGMPOOL_USER_INDEX)
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync {
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync uint16_t i = pPage->iUserHead;
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync do
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync {
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync Assert(i < pPool->cMaxUsers);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync AssertMsg(paUsers[i].iUser != iUser || paUsers[i].iUserTable != iUserTable, ("%x %x vs new %x %x\n", paUsers[i].iUser, paUsers[i].iUserTable, iUser, iUserTable));
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync i = paUsers[i].iNext;
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync } while (i != NIL_PGMPOOL_USER_INDEX);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync }
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync# endif
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync /*
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * Allocate a user node.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync uint16_t i = pPool->iUserFreeHead;
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync if (i == NIL_PGMPOOL_USER_INDEX)
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync {
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync int rc = pgmPoolTrackFreeOneUser(pPool, iUser);
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync if (RT_FAILURE(rc))
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync return rc;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync i = pPool->iUserFreeHead;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPool->iUserFreeHead = paUsers[i].iNext;
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /*
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Initialize the user node and insert it.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync paUsers[i].iNext = pPage->iUserHead;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync paUsers[i].iUser = iUser;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync paUsers[i].iUserTable = iUserTable;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPage->iUserHead = i;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# ifdef PGMPOOL_WITH_CACHE
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /*
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Tell the cache to update its replacement stats for this page.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pgmPoolCacheUsed(pPool, pPage);
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync# endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync return VINF_SUCCESS;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync}
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# endif /* PGMPOOL_WITH_CACHE */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync/**
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Frees a user record associated with a page.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync *
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * This does not clear the entry in the user table, it simply replaces the
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * user record to the chain of free records.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync *
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * @param pPool The pool.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * @param HCPhys The HC physical address of the shadow page.
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync * @param iUser The shadow page pool index of the user table.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * @param iUserTable The index into the user table (shadowed).
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncstatic void pgmPoolTrackFreeUser(PPGMPOOL pPool, PPGMPOOLPAGE pPage, uint16_t iUser, uint32_t iUserTable)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync{
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync /*
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync * Unlink and free the specified user entry.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PPGMPOOLUSER paUsers = pPool->CTX_SUFF(paUsers);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /* Special: For PAE and 32-bit paging, there is usually no more than one user. */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uint16_t i = pPage->iUserHead;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if ( i != NIL_PGMPOOL_USER_INDEX
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync && paUsers[i].iUser == iUser
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync && paUsers[i].iUserTable == iUserTable)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPage->iUserHead = paUsers[i].iNext;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync paUsers[i].iUser = NIL_PGMPOOL_IDX;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync paUsers[i].iNext = pPool->iUserFreeHead;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync pPool->iUserFreeHead = i;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync return;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /* General: Linear search. */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync uint16_t iPrev = NIL_PGMPOOL_USER_INDEX;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync while (i != NIL_PGMPOOL_USER_INDEX)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if ( paUsers[i].iUser == iUser
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync && paUsers[i].iUserTable == iUserTable)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (iPrev != NIL_PGMPOOL_USER_INDEX)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync paUsers[iPrev].iNext = paUsers[i].iNext;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync else
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync pPage->iUserHead = paUsers[i].iNext;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync paUsers[i].iUser = NIL_PGMPOOL_IDX;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync paUsers[i].iNext = pPool->iUserFreeHead;
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync pPool->iUserFreeHead = i;
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync return;
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync }
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync iPrev = i;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync i = paUsers[i].iNext;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync }
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync /* Fatal: didn't find it */
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync AssertFatalMsgFailed(("Didn't find the user entry! iUser=%#x iUserTable=%#x GCPhys=%RGp\n",
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync iUser, iUserTable, pPage->GCPhys));
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync}
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync/**
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync * Gets the entry size of a shadow table.
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync *
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync * @param enmKind The kind of page.
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync *
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync * @returns The size of the entry in bytes. That is, 4 or 8.
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync * @returns If the kind is not for a table, an assertion is raised and 0 is
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync * returned.
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync */
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsyncDECLINLINE(unsigned) pgmPoolTrackGetShadowEntrySize(PGMPOOLKIND enmKind)
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync{
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync switch (enmKind)
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync {
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_32BIT_PT_FOR_PHYS:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync case PGMPOOLKIND_32BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_32BIT_PD_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#else
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_ROOT_32BIT_PD:
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync#endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync return 4;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PT_FOR_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_PT:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_4MB:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_PT:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PD1_FOR_32BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD2_FOR_32BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD3_FOR_32BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD_FOR_PAE_PD:
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync case PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD:
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_64BIT_PDPT:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_64BIT_PML4:
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync#ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_ROOT_PAE_PD:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_ROOT_PDPT:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync#endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PDPT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_ROOT_NESTED:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_PHYS:
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync case PGMPOOLKIND_64BIT_PD_FOR_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_EPT_PDPT_FOR_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_EPT_PD_FOR_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_EPT_PT_FOR_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD_PHYS:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PDPT_PHYS:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync return 8;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync default:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync AssertFatalMsgFailed(("enmKind=%d\n", enmKind));
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync }
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync}
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync/**
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync * Gets the entry size of a guest table.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync *
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * @param enmKind The kind of page.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync *
92e624e40b06b4dc6d0a8222e1de33bd3e879a63vboxsync * @returns The size of the entry in bytes. That is, 0, 4 or 8.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * @returns If the kind is not for a table, an assertion is raised and 0 is
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * returned.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncDECLINLINE(unsigned) pgmPoolTrackGetGuestEntrySize(PGMPOOLKIND enmKind)
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync{
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync switch (enmKind)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_32BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#else
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_ROOT_32BIT_PD:
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync#endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_PT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_4MB:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD1_FOR_32BIT_PD:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PD2_FOR_32BIT_PD:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PD3_FOR_32BIT_PD:
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync return 4;
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_PT:
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD_FOR_PAE_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_64BIT_PDPT:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_64BIT_PML4:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_PAE_PDPT:
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync#else
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_ROOT_PAE_PD:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_ROOT_PDPT:
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync#endif
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync return 8;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_32BIT_PT_FOR_PHYS:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_PAE_PT_FOR_PHYS:
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_PHYS:
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync case PGMPOOLKIND_64BIT_PD_FOR_PHYS:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_EPT_PDPT_FOR_PHYS:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_EPT_PD_FOR_PHYS:
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync case PGMPOOLKIND_EPT_PT_FOR_PHYS:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_ROOT_NESTED:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_PAE_PD_PHYS:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_PAE_PDPT_PHYS:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_32BIT_PD_PHYS:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync /** @todo can we return 0? (nobody is calling this...) */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync AssertFailed();
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync return 0;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync default:
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync AssertFatalMsgFailed(("enmKind=%d\n", enmKind));
58c0567dee3cc3ebe62dec1e27f8e35bac4ddeb0vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync}
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#ifdef PGMPOOL_WITH_GCPHYS_TRACKING
36f3c24e4ad9c6b813767db1faeabbe7e2ecc057vboxsync
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync/**
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync * Scans one shadow page table for mappings of a physical page.
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync *
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync * @param pVM The VM handle.
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync * @param pPhysPage The guest page in question.
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync * @param iShw The shadow page table.
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync * @param cRefs The number of references made in that PT.
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync */
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsyncstatic void pgmPoolTrackFlushGCPhysPTInt(PVM pVM, PCPGMPAGE pPhysPage, uint16_t iShw, uint16_t cRefs)
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync{
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync LogFlow(("pgmPoolTrackFlushGCPhysPT: HCPhys=%RHp iShw=%d cRefs=%d\n", pPhysPage->HCPhys, iShw, cRefs));
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync /*
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * Assert sanity.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync Assert(cRefs == 1);
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync AssertFatalMsg(iShw < pPool->cCurPages && iShw != NIL_PGMPOOL_IDX, ("iShw=%d\n", iShw));
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync PPGMPOOLPAGE pPage = &pPool->aPages[iShw];
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync /*
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * Then, clear the actual mappings to the page in the shadow PT.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync switch (pPage->enmKind)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync {
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync case PGMPOOLKIND_32BIT_PT_FOR_PHYS:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync {
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync const uint32_t u32 = PGM_PAGE_GET_HCPHYS(pPhysPage) | X86_PTE_P;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync PX86PT pPT = (PX86PT)PGMPOOL_PAGE_2_PTR(pVM, pPage);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync for (unsigned i = pPage->iFirstPresent; i < RT_ELEMENTS(pPT->a); i++)
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync if ((pPT->a[i].u & (X86_PTE_PG_MASK | X86_PTE_P)) == u32)
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync {
9e17ca2e9d797e845e3284141dd4086a4b817ae5vboxsync Log4(("pgmPoolTrackFlushGCPhysPTs: i=%d pte=%RX32 cRefs=%#x\n", i, pPT->a[i], cRefs));
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync pPT->a[i].u = 0;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync cRefs--;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (!cRefs)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync return;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync#ifdef LOG_ENABLED
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync RTLogPrintf("cRefs=%d iFirstPresent=%d cPresent=%d\n", cRefs, pPage->iFirstPresent, pPage->cPresent);
5366e994777f9d9391cf809dc77610f57270d75dvboxsync for (unsigned i = 0; i < RT_ELEMENTS(pPT->a); i++)
5366e994777f9d9391cf809dc77610f57270d75dvboxsync if ((pPT->a[i].u & (X86_PTE_PG_MASK | X86_PTE_P)) == u32)
5366e994777f9d9391cf809dc77610f57270d75dvboxsync {
5366e994777f9d9391cf809dc77610f57270d75dvboxsync RTLogPrintf("i=%d cRefs=%d\n", i, cRefs--);
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pPT->a[i].u = 0;
5366e994777f9d9391cf809dc77610f57270d75dvboxsync }
5366e994777f9d9391cf809dc77610f57270d75dvboxsync#endif
5366e994777f9d9391cf809dc77610f57270d75dvboxsync AssertFatalMsgFailed(("cRefs=%d iFirstPresent=%d cPresent=%d\n", cRefs, pPage->iFirstPresent, pPage->cPresent));
5366e994777f9d9391cf809dc77610f57270d75dvboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_PT:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_4MB:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_PT:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB:
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync case PGMPOOLKIND_PAE_PT_FOR_PHYS:
5366e994777f9d9391cf809dc77610f57270d75dvboxsync {
5366e994777f9d9391cf809dc77610f57270d75dvboxsync const uint64_t u64 = PGM_PAGE_GET_HCPHYS(pPhysPage) | X86_PTE_P;
5366e994777f9d9391cf809dc77610f57270d75dvboxsync PX86PTPAE pPT = (PX86PTPAE)PGMPOOL_PAGE_2_PTR(pVM, pPage);
5366e994777f9d9391cf809dc77610f57270d75dvboxsync for (unsigned i = pPage->iFirstPresent; i < RT_ELEMENTS(pPT->a); i++)
5366e994777f9d9391cf809dc77610f57270d75dvboxsync if ((pPT->a[i].u & (X86_PTE_PAE_PG_MASK | X86_PTE_P)) == u64)
5366e994777f9d9391cf809dc77610f57270d75dvboxsync {
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync Log4(("pgmPoolTrackFlushGCPhysPTs: i=%d pte=%RX64 cRefs=%#x\n", i, pPT->a[i], cRefs));
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync pPT->a[i].u = 0;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync cRefs--;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync if (!cRefs)
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync return;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync }
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync#ifdef LOG_ENABLED
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync RTLogPrintf("cRefs=%d iFirstPresent=%d cPresent=%d\n", cRefs, pPage->iFirstPresent, pPage->cPresent);
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync for (unsigned i = 0; i < RT_ELEMENTS(pPT->a); i++)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync if ((pPT->a[i].u & (X86_PTE_PAE_PG_MASK | X86_PTE_P)) == u64)
5366e994777f9d9391cf809dc77610f57270d75dvboxsync {
5366e994777f9d9391cf809dc77610f57270d75dvboxsync RTLogPrintf("i=%d cRefs=%d\n", i, cRefs--);
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pPT->a[i].u = 0;
5366e994777f9d9391cf809dc77610f57270d75dvboxsync }
5366e994777f9d9391cf809dc77610f57270d75dvboxsync#endif
5366e994777f9d9391cf809dc77610f57270d75dvboxsync AssertFatalMsgFailed(("cRefs=%d iFirstPresent=%d cPresent=%d u64=%RX64\n", cRefs, pPage->iFirstPresent, pPage->cPresent, u64));
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync break;
5366e994777f9d9391cf809dc77610f57270d75dvboxsync }
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync case PGMPOOLKIND_EPT_PT_FOR_PHYS:
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync {
5366e994777f9d9391cf809dc77610f57270d75dvboxsync const uint64_t u64 = PGM_PAGE_GET_HCPHYS(pPhysPage) | X86_PTE_P;
5366e994777f9d9391cf809dc77610f57270d75dvboxsync PEPTPT pPT = (PEPTPT)PGMPOOL_PAGE_2_PTR(pVM, pPage);
d8e12fa5dd1c35282b98cb165e42b6b395cf971bvboxsync for (unsigned i = pPage->iFirstPresent; i < RT_ELEMENTS(pPT->a); i++)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync if ((pPT->a[i].u & (EPT_PTE_PG_MASK | X86_PTE_P)) == u64)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync {
5366e994777f9d9391cf809dc77610f57270d75dvboxsync Log4(("pgmPoolTrackFlushGCPhysPTs: i=%d pte=%RX64 cRefs=%#x\n", i, pPT->a[i], cRefs));
5366e994777f9d9391cf809dc77610f57270d75dvboxsync pPT->a[i].u = 0;
5366e994777f9d9391cf809dc77610f57270d75dvboxsync cRefs--;
5366e994777f9d9391cf809dc77610f57270d75dvboxsync if (!cRefs)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync return;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#ifdef LOG_ENABLED
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync RTLogPrintf("cRefs=%d iFirstPresent=%d cPresent=%d\n", cRefs, pPage->iFirstPresent, pPage->cPresent);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync for (unsigned i = 0; i < RT_ELEMENTS(pPT->a); i++)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if ((pPT->a[i].u & (EPT_PTE_PG_MASK | X86_PTE_P)) == u64)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync RTLogPrintf("i=%d cRefs=%d\n", i, cRefs--);
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync pPT->a[i].u = 0;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync }
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync#endif
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync AssertFatalMsgFailed(("cRefs=%d iFirstPresent=%d cPresent=%d\n", cRefs, pPage->iFirstPresent, pPage->cPresent));
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync break;
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync default:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync AssertFatalMsgFailed(("enmKind=%d iShw=%d\n", pPage->enmKind, iShw));
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync }
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync}
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync/**
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * Scans one shadow page table for mappings of a physical page.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync *
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @param pVM The VM handle.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @param pPhysPage The guest page in question.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @param iShw The shadow page table.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @param cRefs The number of references made in that PT.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsyncvoid pgmPoolTrackFlushGCPhysPT(PVM pVM, PPGMPAGE pPhysPage, uint16_t iShw, uint16_t cRefs)
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync{
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool); NOREF(pPool);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync LogFlow(("pgmPoolTrackFlushGCPhysPT: HCPhys=%RHp iShw=%d cRefs=%d\n", pPhysPage->HCPhys, iShw, cRefs));
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync STAM_PROFILE_START(&pPool->StatTrackFlushGCPhysPT, f);
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync pgmPoolTrackFlushGCPhysPTInt(pVM, pPhysPage, iShw, cRefs);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync pPhysPage->HCPhys &= MM_RAM_FLAGS_NO_REFS_MASK; /** @todo PAGE FLAGS */
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync STAM_PROFILE_STOP(&pPool->StatTrackFlushGCPhysPT, f);
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync}
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync/**
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * Flushes a list of shadow page tables mapping the same physical page.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync *
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @param pVM The VM handle.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @param pPhysPage The guest page in question.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync * @param iPhysExt The physical cross reference extent list to flush.
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync */
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsyncvoid pgmPoolTrackFlushGCPhysPTs(PVM pVM, PPGMPAGE pPhysPage, uint16_t iPhysExt)
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync{
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync STAM_PROFILE_START(&pPool->StatTrackFlushGCPhysPTs, f);
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync LogFlow(("pgmPoolTrackFlushGCPhysPTs: HCPhys=%RHp iPhysExt\n", pPhysPage->HCPhys, iPhysExt));
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync
4121d226ac899f17e13aff3aff42b603c8b5c1fevboxsync const uint16_t iPhysExtStart = iPhysExt;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PPGMPOOLPHYSEXT pPhysExt;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync do
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync Assert(iPhysExt < pPool->cMaxPhysExts);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPhysExt = &pPool->CTX_SUFF(paPhysExts)[iPhysExt];
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync for (unsigned i = 0; i < RT_ELEMENTS(pPhysExt->aidx); i++)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (pPhysExt->aidx[i] != NIL_PGMPOOL_IDX)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync pgmPoolTrackFlushGCPhysPTInt(pVM, pPhysPage, pPhysExt->aidx[i], 1);
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync pPhysExt->aidx[i] = NIL_PGMPOOL_IDX;
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync }
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync /* next */
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync iPhysExt = pPhysExt->iNext;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync } while (iPhysExt != NIL_PGMPOOL_PHYSEXT_INDEX);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /* insert the list into the free list and clear the ram range entry. */
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync pPhysExt->iNext = pPool->iPhysExtFreeHead;
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync pPool->iPhysExtFreeHead = iPhysExtStart;
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync pPhysPage->HCPhys &= MM_RAM_FLAGS_NO_REFS_MASK; /** @todo PAGE FLAGS */
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync STAM_PROFILE_STOP(&pPool->StatTrackFlushGCPhysPTs, f);
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync}
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync#endif /* PGMPOOL_WITH_GCPHYS_TRACKING */
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync/**
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * Scans all shadow page tables for mappings of a physical page.
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync *
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync * This may be slow, but it's most likely more efficient than cleaning
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * out the entire page pool / cache.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync *
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync * @returns VBox status code.
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync * @retval VINF_SUCCESS if all references has been successfully cleared.
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync * @retval VINF_PGM_GCPHYS_ALIASED if we're better off with a CR3 sync and
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync * a page pool cleaning.
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync *
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync * @param pVM The VM handle.
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync * @param pPhysPage The guest page in question.
e378dfdadd62aadc0a012c9953322d979d7606e6vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncint pgmPoolTrackFlushGCPhysPTsSlow(PVM pVM, PPGMPAGE pPhysPage)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync{
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync STAM_PROFILE_START(&pPool->StatTrackFlushGCPhysPTsSlow, s);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync LogFlow(("pgmPoolTrackFlushGCPhysPTsSlow: cUsedPages=%d cPresent=%d HCPhys=%RHp\n",
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync pPool->cUsedPages, pPool->cPresent, pPhysPage->HCPhys));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#if 1
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync /*
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync * There is a limit to what makes sense.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (pPool->cPresent > 1024)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync LogFlow(("pgmPoolTrackFlushGCPhysPTsSlow: giving up... (cPresent=%d)\n", pPool->cPresent));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync STAM_PROFILE_STOP(&pPool->StatTrackFlushGCPhysPTsSlow, s);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync return VINF_PGM_GCPHYS_ALIASED;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync#endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /*
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Iterate all the pages until we've encountered all that in use.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * This is simple but not quite optimal solution.
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync */
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync const uint64_t u64 = PGM_PAGE_GET_HCPHYS(pPhysPage) | X86_PTE_P;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync const uint32_t u32 = u64;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync unsigned cLeft = pPool->cUsedPages;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync unsigned iPage = pPool->cCurPages;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync while (--iPage >= PGMPOOL_IDX_FIRST)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync PPGMPOOLPAGE pPage = &pPool->aPages[iPage];
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (pPage->GCPhys != NIL_RTGCPHYS)
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync {
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync switch (pPage->enmKind)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /*
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * We only care about shadow page tables.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT:
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB:
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync case PGMPOOLKIND_32BIT_PT_FOR_PHYS:
45655563f818c5d5bbf4b3d14aa48cbd92a871f1vboxsync {
5050fc8de0b121eab1b738d7c1007cde4903284dvboxsync unsigned cPresent = pPage->cPresent;
cd5df721f068659172f3bf95de8fedeb465f057dvboxsync PX86PT pPT = (PX86PT)PGMPOOL_PAGE_2_PTR(pVM, pPage);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync for (unsigned i = pPage->iFirstPresent; i < RT_ELEMENTS(pPT->a); i++)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (pPT->a[i].n.u1Present)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync if ((pPT->a[i].u & (X86_PTE_PG_MASK | X86_PTE_P)) == u32)
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync {
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync //Log4(("pgmPoolTrackFlushGCPhysPTsSlow: idx=%d i=%d pte=%RX32\n", iPage, i, pPT->a[i]));
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync pPT->a[i].u = 0;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync if (!--cPresent)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync break;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync }
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_PT:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_PAE_PT_FOR_32BIT_4MB:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_PT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PT_FOR_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync unsigned cPresent = pPage->cPresent;
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync PX86PTPAE pPT = (PX86PTPAE)PGMPOOL_PAGE_2_PTR(pVM, pPage);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync for (unsigned i = pPage->iFirstPresent; i < RT_ELEMENTS(pPT->a); i++)
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync if (pPT->a[i].n.u1Present)
5366e994777f9d9391cf809dc77610f57270d75dvboxsync {
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync if ((pPT->a[i].u & (X86_PTE_PAE_PG_MASK | X86_PTE_P)) == u64)
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync {
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync //Log4(("pgmPoolTrackFlushGCPhysPTsSlow: idx=%d i=%d pte=%RX64\n", iPage, i, pPT->a[i]));
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync pPT->a[i].u = 0;
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync }
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync if (!--cPresent)
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync break;
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync }
45655563f818c5d5bbf4b3d14aa48cbd92a871f1vboxsync break;
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync }
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync }
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync if (!--cLeft)
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync break;
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync }
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync }
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync pPhysPage->HCPhys &= MM_RAM_FLAGS_NO_REFS_MASK; /** @todo PAGE FLAGS */
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync STAM_PROFILE_STOP(&pPool->StatTrackFlushGCPhysPTsSlow, s);
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync return VINF_SUCCESS;
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync}
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync/**
cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5fvboxsync * Clears the user entry in a user table.
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync *
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync * This is used to remove all references to a page when flushing it.
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync */
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsyncstatic void pgmPoolTrackClearPageUser(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PCPGMPOOLUSER pUser)
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync{
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync Assert(pUser->iUser != NIL_PGMPOOL_IDX);
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync Assert(pUser->iUser < pPool->cCurPages);
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync uint32_t iUserTable = pUser->iUserTable;
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync /*
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync * Map the user page.
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync */
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync PPGMPOOLPAGE pUserPage = &pPool->aPages[pUser->iUser];
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync#if defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0) && !defined(VBOX_WITH_PGMPOOL_PAGING_ONLY)
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync if (pUserPage->enmKind == PGMPOOLKIND_ROOT_PAE_PD)
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync {
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync /* Must translate the fake 2048 entry PD to a 512 PD one since the R0 mapping is not linear. */
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync Assert(pUser->iUser == PGMPOOL_IDX_PAE_PD);
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync uint32_t iPdpt = iUserTable / X86_PG_PAE_ENTRIES;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync iUserTable %= X86_PG_PAE_ENTRIES;
462e60a19d02a99b2b1a5c08dff74bb0808d707cvboxsync pUserPage = &pPool->aPages[PGMPOOL_IDX_PAE_PD_0 + iPdpt];
907b6adfa052386a0666d5557bee9bdbc100c2e5vboxsync Assert(pUserPage->enmKind == PGMPOOLKIND_PAE_PD_FOR_PAE_PD);
5f2b03bf7695dabd71222dba123532a3f76828c1vboxsync }
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync#endif
45655563f818c5d5bbf4b3d14aa48cbd92a871f1vboxsync union
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync {
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync uint64_t *pau64;
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync uint32_t *pau32;
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync } u;
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync u.pau64 = (uint64_t *)PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pUserPage);
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync /* Safety precaution in case we change the paging for other modes too in the future. */
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync Assert(PGMGetHyperCR3(pPool->CTX_SUFF(pVM)) != pPage->Core.Key);
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync#ifdef VBOX_STRICT
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync /*
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync * Some sanity checks.
7862f4bd000f1eb6c86289f5ac2849e9cf943ca9vboxsync */
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync switch (pUserPage->enmKind)
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync {
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync# ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync case PGMPOOLKIND_32BIT_PD:
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync case PGMPOOLKIND_32BIT_PD_PHYS:
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync Assert(iUserTable < X86_PG_ENTRIES);
c55bf74b54ecdfb5ebc4e5d90b620d0fee31737evboxsync break;
c10a6f0c7041e4d1ee50ad38425aab9d43c55522vboxsync# else
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync case PGMPOOLKIND_ROOT_32BIT_PD:
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync Assert(iUserTable < X86_PG_ENTRIES);
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync Assert(!(u.pau32[iUserTable] & PGM_PDFLAGS_MAPPING));
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync break;
cc1ef2ef9bbc6a0ff964928d61b7298e5bfcce5fvboxsync# endif
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync# if !defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0) && !defined(VBOX_WITH_PGMPOOL_PAGING_ONLY)
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync case PGMPOOLKIND_ROOT_PAE_PD:
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync Assert(iUserTable < 2048 && pUser->iUser == PGMPOOL_IDX_PAE_PD);
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync AssertMsg(!(u.pau64[iUserTable] & PGM_PDFLAGS_MAPPING), ("%llx %d\n", u.pau64[iUserTable], iUserTable));
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync break;
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync# endif
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync# ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PDPT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PDPT_FOR_32BIT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PDPT_PHYS:
d4a9d525e6f2111d462d2d96462dced6b9ec00efvboxsync# else
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_ROOT_PDPT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync Assert(iUserTable < 4);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync Assert(!(u.pau64[iUserTable] & PGM_PLXFLAGS_PERMANENT));
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync break;
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_PAE_PD1_FOR_32BIT_PD:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_PAE_PD2_FOR_32BIT_PD:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_PAE_PD3_FOR_32BIT_PD:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PD_FOR_PAE_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync Assert(iUserTable < X86_PG_PAE_ENTRIES);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync Assert(iUserTable < X86_PG_PAE_ENTRIES);
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync Assert(!(u.pau64[iUserTable] & PGM_PDFLAGS_MAPPING));
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync break;
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_64BIT_PDPT:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync Assert(iUserTable < X86_PG_PAE_ENTRIES);
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync Assert(!(u.pau64[iUserTable] & PGM_PLXFLAGS_PERMANENT));
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync break;
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_64BIT_PML4:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync Assert(!(u.pau64[iUserTable] & PGM_PLXFLAGS_PERMANENT));
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync /* GCPhys >> PAGE_SHIFT is the index here */
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync break;
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_PHYS:
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync case PGMPOOLKIND_64BIT_PD_FOR_PHYS:
ed9d3db07648c7e3a979105c15ad752ee9ea18devboxsync Assert(iUserTable < X86_PG_PAE_ENTRIES);
687794577e2e35c3cae67e692a7f2130d1262a82vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_EPT_PDPT_FOR_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_EPT_PD_FOR_PHYS:
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync Assert(iUserTable < X86_PG_PAE_ENTRIES);
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_ROOT_NESTED:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync Assert(iUserTable < X86_PG_PAE_ENTRIES);
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync break;
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync default:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync AssertMsgFailed(("enmKind=%d\n", pUserPage->enmKind));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#endif /* VBOX_STRICT */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /*
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync * Clear the entry in the user page.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync switch (pUserPage->enmKind)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync {
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /* 32-bit entries */
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_32BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_32BIT_PD_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#else
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_ROOT_32BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync u.pau32[iUserTable] = 0;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
06ea6bcf23874b662d499b3f130024c98b2dd7a6vboxsync /* 64-bit entries */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD1_FOR_32BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD2_FOR_32BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PD3_FOR_32BIT_PD:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PD_FOR_PAE_PD:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_PAE_PD_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PDPT_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_64BIT_PDPT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_64BIT_PML4:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_64BIT_PDPT_FOR_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_64BIT_PD_FOR_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync# if !defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0) && !defined(VBOX_WITH_PGMPOOL_PAGING_ONLY)
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync case PGMPOOLKIND_ROOT_PAE_PD:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PDPT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_PAE_PDPT_FOR_32BIT:
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync#else
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync case PGMPOOLKIND_ROOT_PDPT:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync#endif
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_ROOT_NESTED:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_EPT_PDPT_FOR_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync case PGMPOOLKIND_EPT_PD_FOR_PHYS:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync u.pau64[iUserTable] = 0;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync break;
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
9523921c89c66f4bececdbd5ac95aed0039eda1bvboxsync default:
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync AssertFatalMsgFailed(("enmKind=%d iUser=%#x iUserTable=%#x\n", pUserPage->enmKind, pUser->iUser, pUser->iUserTable));
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync }
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync}
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync
702a8ee2dc1de96f2f77e97135015d3e243186fdvboxsync/**
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Clears all users of a page.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
2f3883b126a405f92b19e829472f614c7352b4f9vboxsyncstatic void pgmPoolTrackClearPageUsers(PPGMPOOL pPool, PPGMPOOLPAGE pPage)
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync{
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync /*
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync * Free all the user records.
2f3883b126a405f92b19e829472f614c7352b4f9vboxsync */
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync PPGMPOOLUSER paUsers = pPool->CTX_SUFF(paUsers);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync uint16_t i = pPage->iUserHead;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync while (i != NIL_PGMPOOL_USER_INDEX)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync {
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync /* Clear enter in user table. */
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pgmPoolTrackClearPageUser(pPool, pPage, &paUsers[i]);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync /* Free it. */
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync const uint16_t iNext = paUsers[i].iNext;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync paUsers[i].iUser = NIL_PGMPOOL_IDX;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync paUsers[i].iNext = pPool->iUserFreeHead;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPool->iUserFreeHead = i;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync /* Next. */
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync i = iNext;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync }
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPage->iUserHead = NIL_PGMPOOL_USER_INDEX;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync}
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync#ifdef PGMPOOL_WITH_GCPHYS_TRACKING
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync/**
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * Allocates a new physical cross reference extent.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync *
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * @returns Pointer to the allocated extent on success. NULL if we're out of them.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * @param pVM The VM handle.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * @param piPhysExt Where to store the phys ext index.
b8bb9c9f6b8ebfd0a7d6df0c0289f9fe80241750vboxsync */
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsyncPPGMPOOLPHYSEXT pgmPoolTrackPhysExtAlloc(PVM pVM, uint16_t *piPhysExt)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync{
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync uint16_t iPhysExt = pPool->iPhysExtFreeHead;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync if (iPhysExt == NIL_PGMPOOL_PHYSEXT_INDEX)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync {
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync STAM_COUNTER_INC(&pPool->StamTrackPhysExtAllocFailures);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync return NULL;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync }
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync PPGMPOOLPHYSEXT pPhysExt = &pPool->CTX_SUFF(paPhysExts)[iPhysExt];
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPool->iPhysExtFreeHead = pPhysExt->iNext;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPhysExt->iNext = NIL_PGMPOOL_PHYSEXT_INDEX;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync *piPhysExt = iPhysExt;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync return pPhysExt;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync}
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync/**
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * Frees a physical cross reference extent.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync *
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * @param pVM The VM handle.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * @param iPhysExt The extent to free.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync */
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsyncvoid pgmPoolTrackPhysExtFree(PVM pVM, uint16_t iPhysExt)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync{
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync Assert(iPhysExt < pPool->cMaxPhysExts);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync PPGMPOOLPHYSEXT pPhysExt = &pPool->CTX_SUFF(paPhysExts)[iPhysExt];
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync for (unsigned i = 0; i < RT_ELEMENTS(pPhysExt->aidx); i++)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPhysExt->aidx[i] = NIL_PGMPOOL_IDX;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPhysExt->iNext = pPool->iPhysExtFreeHead;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync pPool->iPhysExtFreeHead = iPhysExt;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync}
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync/**
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * Frees a physical cross reference extent.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync *
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * @param pVM The VM handle.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync * @param iPhysExt The extent to free.
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync */
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsyncvoid pgmPoolTrackPhysExtFreeList(PVM pVM, uint16_t iPhysExt)
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync{
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync const uint16_t iPhysExtStart = iPhysExt;
9bff17fe6983cfda2ddd98f1979841bcb48e78e7vboxsync PPGMPOOLPHYSEXT pPhysExt;
do
{
Assert(iPhysExt < pPool->cMaxPhysExts);
pPhysExt = &pPool->CTX_SUFF(paPhysExts)[iPhysExt];
for (unsigned i = 0; i < RT_ELEMENTS(pPhysExt->aidx); i++)
pPhysExt->aidx[i] = NIL_PGMPOOL_IDX;
/* next */
iPhysExt = pPhysExt->iNext;
} while (iPhysExt != NIL_PGMPOOL_PHYSEXT_INDEX);
pPhysExt->iNext = pPool->iPhysExtFreeHead;
pPool->iPhysExtFreeHead = iPhysExtStart;
}
/**
* Insert a reference into a list of physical cross reference extents.
*
* @returns The new ram range flags (top 16-bits).
*
* @param pVM The VM handle.
* @param iPhysExt The physical extent index of the list head.
* @param iShwPT The shadow page table index.
*
*/
static uint16_t pgmPoolTrackPhysExtInsert(PVM pVM, uint16_t iPhysExt, uint16_t iShwPT)
{
PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
PPGMPOOLPHYSEXT paPhysExts = pPool->CTX_SUFF(paPhysExts);
/* special common case. */
if (paPhysExts[iPhysExt].aidx[2] == NIL_PGMPOOL_IDX)
{
paPhysExts[iPhysExt].aidx[2] = iShwPT;
STAM_COUNTER_INC(&pVM->pgm.s.StatTrackAliasedMany);
LogFlow(("pgmPoolTrackPhysExtAddref: %d:{,,%d}\n", iPhysExt, iShwPT));
return iPhysExt | (MM_RAM_FLAGS_CREFS_PHYSEXT << (MM_RAM_FLAGS_CREFS_SHIFT - MM_RAM_FLAGS_IDX_SHIFT));
}
/* general treatment. */
const uint16_t iPhysExtStart = iPhysExt;
unsigned cMax = 15;
for (;;)
{
Assert(iPhysExt < pPool->cMaxPhysExts);
for (unsigned i = 0; i < RT_ELEMENTS(paPhysExts[iPhysExt].aidx); i++)
if (paPhysExts[iPhysExt].aidx[i] == NIL_PGMPOOL_IDX)
{
paPhysExts[iPhysExt].aidx[i] = iShwPT;
STAM_COUNTER_INC(&pVM->pgm.s.StatTrackAliasedMany);
LogFlow(("pgmPoolTrackPhysExtAddref: %d:{%d} i=%d cMax=%d\n", iPhysExt, iShwPT, i, cMax));
return iPhysExtStart | (MM_RAM_FLAGS_CREFS_PHYSEXT << (MM_RAM_FLAGS_CREFS_SHIFT - MM_RAM_FLAGS_IDX_SHIFT));
}
if (!--cMax)
{
STAM_COUNTER_INC(&pVM->pgm.s.StatTrackOverflows);
pgmPoolTrackPhysExtFreeList(pVM, iPhysExtStart);
LogFlow(("pgmPoolTrackPhysExtAddref: overflow (1) iShwPT=%d\n", iShwPT));
return MM_RAM_FLAGS_IDX_OVERFLOWED | (MM_RAM_FLAGS_CREFS_PHYSEXT << (MM_RAM_FLAGS_CREFS_SHIFT - MM_RAM_FLAGS_IDX_SHIFT));
}
}
/* add another extent to the list. */
PPGMPOOLPHYSEXT pNew = pgmPoolTrackPhysExtAlloc(pVM, &iPhysExt);
if (!pNew)
{
STAM_COUNTER_INC(&pVM->pgm.s.StatTrackOverflows);
pgmPoolTrackPhysExtFreeList(pVM, iPhysExtStart);
return MM_RAM_FLAGS_IDX_OVERFLOWED | (MM_RAM_FLAGS_CREFS_PHYSEXT << (MM_RAM_FLAGS_CREFS_SHIFT - MM_RAM_FLAGS_IDX_SHIFT));
}
pNew->iNext = iPhysExtStart;
pNew->aidx[0] = iShwPT;
LogFlow(("pgmPoolTrackPhysExtAddref: added new extent %d:{%d}->%d\n", iPhysExt, iShwPT, iPhysExtStart));
return iPhysExt | (MM_RAM_FLAGS_CREFS_PHYSEXT << (MM_RAM_FLAGS_CREFS_SHIFT - MM_RAM_FLAGS_IDX_SHIFT));
}
/**
* Add a reference to guest physical page where extents are in use.
*
* @returns The new ram range flags (top 16-bits).
*
* @param pVM The VM handle.
* @param u16 The ram range flags (top 16-bits).
* @param iShwPT The shadow page table index.
*/
uint16_t pgmPoolTrackPhysExtAddref(PVM pVM, uint16_t u16, uint16_t iShwPT)
{
if ((u16 >> (MM_RAM_FLAGS_CREFS_SHIFT - MM_RAM_FLAGS_IDX_SHIFT)) != MM_RAM_FLAGS_CREFS_PHYSEXT)
{
/*
* Convert to extent list.
*/
Assert((u16 >> (MM_RAM_FLAGS_CREFS_SHIFT - MM_RAM_FLAGS_IDX_SHIFT)) == 1);
uint16_t iPhysExt;
PPGMPOOLPHYSEXT pPhysExt = pgmPoolTrackPhysExtAlloc(pVM, &iPhysExt);
if (pPhysExt)
{
LogFlow(("pgmPoolTrackPhysExtAddref: new extent: %d:{%d, %d}\n", iPhysExt, u16 & MM_RAM_FLAGS_IDX_MASK, iShwPT));
STAM_COUNTER_INC(&pVM->pgm.s.StatTrackAliased);
pPhysExt->aidx[0] = u16 & MM_RAM_FLAGS_IDX_MASK;
pPhysExt->aidx[1] = iShwPT;
u16 = iPhysExt | (MM_RAM_FLAGS_CREFS_PHYSEXT << (MM_RAM_FLAGS_CREFS_SHIFT - MM_RAM_FLAGS_IDX_SHIFT));
}
else
u16 = MM_RAM_FLAGS_IDX_OVERFLOWED | (MM_RAM_FLAGS_CREFS_PHYSEXT << (MM_RAM_FLAGS_CREFS_SHIFT - MM_RAM_FLAGS_IDX_SHIFT));
}
else if (u16 != (MM_RAM_FLAGS_IDX_OVERFLOWED | (MM_RAM_FLAGS_CREFS_PHYSEXT << (MM_RAM_FLAGS_CREFS_SHIFT - MM_RAM_FLAGS_IDX_SHIFT))))
{
/*
* Insert into the extent list.
*/
u16 = pgmPoolTrackPhysExtInsert(pVM, u16 & MM_RAM_FLAGS_IDX_MASK, iShwPT);
}
else
STAM_COUNTER_INC(&pVM->pgm.s.StatTrackAliasedLots);
return u16;
}
/**
* Clear references to guest physical memory.
*
* @param pPool The pool.
* @param pPage The page.
* @param pPhysPage Pointer to the aPages entry in the ram range.
*/
void pgmPoolTrackPhysExtDerefGCPhys(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PPGMPAGE pPhysPage)
{
const unsigned cRefs = pPhysPage->HCPhys >> MM_RAM_FLAGS_CREFS_SHIFT; /** @todo PAGE FLAGS */
AssertFatalMsg(cRefs == MM_RAM_FLAGS_CREFS_PHYSEXT, ("cRefs=%d HCPhys=%RHp pPage=%p:{.idx=%d}\n", cRefs, pPhysPage->HCPhys, pPage, pPage->idx));
uint16_t iPhysExt = (pPhysPage->HCPhys >> MM_RAM_FLAGS_IDX_SHIFT) & MM_RAM_FLAGS_IDX_MASK;
if (iPhysExt != MM_RAM_FLAGS_IDX_OVERFLOWED)
{
uint16_t iPhysExtPrev = NIL_PGMPOOL_PHYSEXT_INDEX;
PPGMPOOLPHYSEXT paPhysExts = pPool->CTX_SUFF(paPhysExts);
do
{
Assert(iPhysExt < pPool->cMaxPhysExts);
/*
* Look for the shadow page and check if it's all freed.
*/
for (unsigned i = 0; i < RT_ELEMENTS(paPhysExts[iPhysExt].aidx); i++)
{
if (paPhysExts[iPhysExt].aidx[i] == pPage->idx)
{
paPhysExts[iPhysExt].aidx[i] = NIL_PGMPOOL_IDX;
for (i = 0; i < RT_ELEMENTS(paPhysExts[iPhysExt].aidx); i++)
if (paPhysExts[iPhysExt].aidx[i] != NIL_PGMPOOL_IDX)
{
LogFlow(("pgmPoolTrackPhysExtDerefGCPhys: HCPhys=%RX64 idx=%d\n", pPhysPage->HCPhys, pPage->idx));
return;
}
/* we can free the node. */
PVM pVM = pPool->CTX_SUFF(pVM);
const uint16_t iPhysExtNext = paPhysExts[iPhysExt].iNext;
if ( iPhysExtPrev == NIL_PGMPOOL_PHYSEXT_INDEX
&& iPhysExtNext == NIL_PGMPOOL_PHYSEXT_INDEX)
{
/* lonely node */
pgmPoolTrackPhysExtFree(pVM, iPhysExt);
LogFlow(("pgmPoolTrackPhysExtDerefGCPhys: HCPhys=%RX64 idx=%d lonely\n", pPhysPage->HCPhys, pPage->idx));
pPhysPage->HCPhys &= MM_RAM_FLAGS_NO_REFS_MASK; /** @todo PAGE FLAGS */
}
else if (iPhysExtPrev == NIL_PGMPOOL_PHYSEXT_INDEX)
{
/* head */
LogFlow(("pgmPoolTrackPhysExtDerefGCPhys: HCPhys=%RX64 idx=%d head\n", pPhysPage->HCPhys, pPage->idx));
pPhysPage->HCPhys = (pPhysPage->HCPhys & MM_RAM_FLAGS_NO_REFS_MASK) /** @todo PAGE FLAGS */
| ((uint64_t)MM_RAM_FLAGS_CREFS_PHYSEXT << MM_RAM_FLAGS_CREFS_SHIFT)
| ((uint64_t)iPhysExtNext << MM_RAM_FLAGS_IDX_SHIFT);
pgmPoolTrackPhysExtFree(pVM, iPhysExt);
}
else
{
/* in list */
LogFlow(("pgmPoolTrackPhysExtDerefGCPhys: HCPhys=%RX64 idx=%d\n", pPhysPage->HCPhys, pPage->idx));
paPhysExts[iPhysExtPrev].iNext = iPhysExtNext;
pgmPoolTrackPhysExtFree(pVM, iPhysExt);
}
iPhysExt = iPhysExtNext;
return;
}
}
/* next */
iPhysExtPrev = iPhysExt;
iPhysExt = paPhysExts[iPhysExt].iNext;
} while (iPhysExt != NIL_PGMPOOL_PHYSEXT_INDEX);
AssertFatalMsgFailed(("not-found! cRefs=%d HCPhys=%RHp pPage=%p:{.idx=%d}\n", cRefs, pPhysPage->HCPhys, pPage, pPage->idx));
}
else /* nothing to do */
LogFlow(("pgmPoolTrackPhysExtDerefGCPhys: HCPhys=%RX64\n", pPhysPage->HCPhys));
}
/**
* Clear references to guest physical memory.
*
* This is the same as pgmPoolTracDerefGCPhys except that the guest physical address
* is assumed to be correct, so the linear search can be skipped and we can assert
* at an earlier point.
*
* @param pPool The pool.
* @param pPage The page.
* @param HCPhys The host physical address corresponding to the guest page.
* @param GCPhys The guest physical address corresponding to HCPhys.
*/
static void pgmPoolTracDerefGCPhys(PPGMPOOL pPool, PPGMPOOLPAGE pPage, RTHCPHYS HCPhys, RTGCPHYS GCPhys)
{
/*
* Walk range list.
*/
PPGMRAMRANGE pRam = pPool->CTX_SUFF(pVM)->pgm.s.CTX_SUFF(pRamRanges);
while (pRam)
{
RTGCPHYS off = GCPhys - pRam->GCPhys;
if (off < pRam->cb)
{
/* does it match? */
const unsigned iPage = off >> PAGE_SHIFT;
Assert(PGM_PAGE_GET_HCPHYS(&pRam->aPages[iPage]));
#ifdef LOG_ENABLED
RTHCPHYS HCPhysPage = PGM_PAGE_GET_HCPHYS(&pRam->aPages[iPage]);
Log(("pgmPoolTracDerefGCPhys %RHp vs %RHp\n", HCPhysPage, HCPhys));
#endif
if (PGM_PAGE_GET_HCPHYS(&pRam->aPages[iPage]) == HCPhys)
{
pgmTrackDerefGCPhys(pPool, pPage, &pRam->aPages[iPage]);
return;
}
break;
}
pRam = pRam->CTX_SUFF(pNext);
}
AssertFatalMsgFailed(("HCPhys=%RHp GCPhys=%RGp\n", HCPhys, GCPhys));
}
/**
* Clear references to guest physical memory.
*
* @param pPool The pool.
* @param pPage The page.
* @param HCPhys The host physical address corresponding to the guest page.
* @param GCPhysHint The guest physical address which may corresponding to HCPhys.
*/
static void pgmPoolTracDerefGCPhysHint(PPGMPOOL pPool, PPGMPOOLPAGE pPage, RTHCPHYS HCPhys, RTGCPHYS GCPhysHint)
{
/*
* Walk range list.
*/
PPGMRAMRANGE pRam = pPool->CTX_SUFF(pVM)->pgm.s.CTX_SUFF(pRamRanges);
while (pRam)
{
RTGCPHYS off = GCPhysHint - pRam->GCPhys;
if (off < pRam->cb)
{
/* does it match? */
const unsigned iPage = off >> PAGE_SHIFT;
Assert(PGM_PAGE_GET_HCPHYS(&pRam->aPages[iPage]));
if (PGM_PAGE_GET_HCPHYS(&pRam->aPages[iPage]) == HCPhys)
{
pgmTrackDerefGCPhys(pPool, pPage, &pRam->aPages[iPage]);
return;
}
break;
}
pRam = pRam->CTX_SUFF(pNext);
}
/*
* Damn, the hint didn't work. We'll have to do an expensive linear search.
*/
STAM_COUNTER_INC(&pPool->StatTrackLinearRamSearches);
pRam = pPool->CTX_SUFF(pVM)->pgm.s.CTX_SUFF(pRamRanges);
while (pRam)
{
unsigned iPage = pRam->cb >> PAGE_SHIFT;
while (iPage-- > 0)
{
if (PGM_PAGE_GET_HCPHYS(&pRam->aPages[iPage]) == HCPhys)
{
Log4(("pgmPoolTracDerefGCPhysHint: Linear HCPhys=%RHp GCPhysHint=%RGp GCPhysReal=%RGp\n",
HCPhys, GCPhysHint, pRam->GCPhys + (iPage << PAGE_SHIFT)));
pgmTrackDerefGCPhys(pPool, pPage, &pRam->aPages[iPage]);
return;
}
}
pRam = pRam->CTX_SUFF(pNext);
}
AssertFatalMsgFailed(("HCPhys=%RHp GCPhysHint=%RGp\n", HCPhys, GCPhysHint));
}
/**
* Clear references to guest physical memory in a 32-bit / 32-bit page table.
*
* @param pPool The pool.
* @param pPage The page.
* @param pShwPT The shadow page table (mapping of the page).
* @param pGstPT The guest page table.
*/
DECLINLINE(void) pgmPoolTrackDerefPT32Bit32Bit(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PX86PT pShwPT, PCX86PT pGstPT)
{
for (unsigned i = pPage->iFirstPresent; i < RT_ELEMENTS(pShwPT->a); i++)
if (pShwPT->a[i].n.u1Present)
{
Log4(("pgmPoolTrackDerefPT32Bit32Bit: i=%d pte=%RX32 hint=%RX32\n",
i, pShwPT->a[i].u & X86_PTE_PG_MASK, pGstPT->a[i].u & X86_PTE_PG_MASK));
pgmPoolTracDerefGCPhysHint(pPool, pPage, pShwPT->a[i].u & X86_PTE_PG_MASK, pGstPT->a[i].u & X86_PTE_PG_MASK);
if (!--pPage->cPresent)
break;
}
}
/**
* Clear references to guest physical memory in a PAE / 32-bit page table.
*
* @param pPool The pool.
* @param pPage The page.
* @param pShwPT The shadow page table (mapping of the page).
* @param pGstPT The guest page table (just a half one).
*/
DECLINLINE(void) pgmPoolTrackDerefPTPae32Bit(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PX86PTPAE pShwPT, PCX86PT pGstPT)
{
for (unsigned i = 0; i < RT_ELEMENTS(pShwPT->a); i++)
if (pShwPT->a[i].n.u1Present)
{
Log4(("pgmPoolTrackDerefPTPae32Bit: i=%d pte=%RX32 hint=%RX32\n",
i, pShwPT->a[i].u & X86_PTE_PAE_PG_MASK, pGstPT->a[i].u & X86_PTE_PG_MASK));
pgmPoolTracDerefGCPhysHint(pPool, pPage, pShwPT->a[i].u & X86_PTE_PAE_PG_MASK, pGstPT->a[i].u & X86_PTE_PG_MASK);
}
}
/**
* Clear references to guest physical memory in a PAE / PAE page table.
*
* @param pPool The pool.
* @param pPage The page.
* @param pShwPT The shadow page table (mapping of the page).
* @param pGstPT The guest page table.
*/
DECLINLINE(void) pgmPoolTrackDerefPTPaePae(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PX86PTPAE pShwPT, PCX86PTPAE pGstPT)
{
for (unsigned i = 0; i < RT_ELEMENTS(pShwPT->a); i++)
if (pShwPT->a[i].n.u1Present)
{
Log4(("pgmPoolTrackDerefPTPaePae: i=%d pte=%RX32 hint=%RX32\n",
i, pShwPT->a[i].u & X86_PTE_PAE_PG_MASK, pGstPT->a[i].u & X86_PTE_PAE_PG_MASK));
pgmPoolTracDerefGCPhysHint(pPool, pPage, pShwPT->a[i].u & X86_PTE_PAE_PG_MASK, pGstPT->a[i].u & X86_PTE_PAE_PG_MASK);
}
}
/**
* Clear references to guest physical memory in a 32-bit / 4MB page table.
*
* @param pPool The pool.
* @param pPage The page.
* @param pShwPT The shadow page table (mapping of the page).
*/
DECLINLINE(void) pgmPoolTrackDerefPT32Bit4MB(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PX86PT pShwPT)
{
RTGCPHYS GCPhys = pPage->GCPhys;
for (unsigned i = 0; i < RT_ELEMENTS(pShwPT->a); i++, GCPhys += PAGE_SIZE)
if (pShwPT->a[i].n.u1Present)
{
Log4(("pgmPoolTrackDerefPT32Bit4MB: i=%d pte=%RX32 GCPhys=%RGp\n",
i, pShwPT->a[i].u & X86_PTE_PG_MASK, GCPhys));
pgmPoolTracDerefGCPhys(pPool, pPage, pShwPT->a[i].u & X86_PTE_PG_MASK, GCPhys);
}
}
/**
* Clear references to guest physical memory in a PAE / 2/4MB page table.
*
* @param pPool The pool.
* @param pPage The page.
* @param pShwPT The shadow page table (mapping of the page).
*/
DECLINLINE(void) pgmPoolTrackDerefPTPaeBig(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PX86PTPAE pShwPT)
{
RTGCPHYS GCPhys = pPage->GCPhys;
for (unsigned i = 0; i < RT_ELEMENTS(pShwPT->a); i++, GCPhys += PAGE_SIZE)
if (pShwPT->a[i].n.u1Present)
{
Log4(("pgmPoolTrackDerefPTPaeBig: i=%d pte=%RX64 hint=%RGp\n",
i, pShwPT->a[i].u & X86_PTE_PAE_PG_MASK, GCPhys));
pgmPoolTracDerefGCPhys(pPool, pPage, pShwPT->a[i].u & X86_PTE_PAE_PG_MASK, GCPhys);
}
}
#endif /* PGMPOOL_WITH_GCPHYS_TRACKING */
#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
/**
* Clear references to shadowed pages in a 32 bits page directory.
*
* @param pPool The pool.
* @param pPage The page.
* @param pShwPD The shadow page directory (mapping of the page).
*/
DECLINLINE(void) pgmPoolTrackDerefPD(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PX86PD pShwPD)
{
for (unsigned i = 0; i < RT_ELEMENTS(pShwPD->a); i++)
{
if ( pShwPD->a[i].n.u1Present
&& !(pShwPD->a[i].u & PGM_PDFLAGS_MAPPING)
)
{
PPGMPOOLPAGE pSubPage = (PPGMPOOLPAGE)RTAvloHCPhysGet(&pPool->HCPhysTree, pShwPD->a[i].u & X86_PDE_PG_MASK);
if (pSubPage)
pgmPoolTrackFreeUser(pPool, pSubPage, pPage->idx, i);
else
AssertFatalMsgFailed(("%x\n", pShwPD->a[i].u & X86_PDE_PG_MASK));
/** @todo 64-bit guests: have to ensure that we're not exhausting the dynamic mappings! */
}
}
}
#endif
/**
* Clear references to shadowed pages in a PAE (legacy or 64 bits) page directory.
*
* @param pPool The pool.
* @param pPage The page.
* @param pShwPD The shadow page directory (mapping of the page).
*/
DECLINLINE(void) pgmPoolTrackDerefPDPae(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PX86PDPAE pShwPD)
{
for (unsigned i = 0; i < RT_ELEMENTS(pShwPD->a); i++)
{
if ( pShwPD->a[i].n.u1Present
#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
&& !(pShwPD->a[i].u & PGM_PDFLAGS_MAPPING)
#endif
)
{
PPGMPOOLPAGE pSubPage = (PPGMPOOLPAGE)RTAvloHCPhysGet(&pPool->HCPhysTree, pShwPD->a[i].u & X86_PDE_PAE_PG_MASK);
if (pSubPage)
pgmPoolTrackFreeUser(pPool, pSubPage, pPage->idx, i);
else
AssertFatalMsgFailed(("%RX64\n", pShwPD->a[i].u & X86_PDE_PAE_PG_MASK));
/** @todo 64-bit guests: have to ensure that we're not exhausting the dynamic mappings! */
}
}
}
/**
* Clear references to shadowed pages in a 64-bit page directory pointer table.
*
* @param pPool The pool.
* @param pPage The page.
* @param pShwPDPT The shadow page directory pointer table (mapping of the page).
*/
DECLINLINE(void) pgmPoolTrackDerefPDPT64Bit(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PX86PDPT pShwPDPT)
{
for (unsigned i = 0; i < RT_ELEMENTS(pShwPDPT->a); i++)
{
if ( pShwPDPT->a[i].n.u1Present
#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
&& !(pShwPDPT->a[i].u & PGM_PLXFLAGS_MAPPING)
#endif
)
{
PPGMPOOLPAGE pSubPage = (PPGMPOOLPAGE)RTAvloHCPhysGet(&pPool->HCPhysTree, pShwPDPT->a[i].u & X86_PDPE_PG_MASK);
if (pSubPage)
pgmPoolTrackFreeUser(pPool, pSubPage, pPage->idx, i);
else
AssertFatalMsgFailed(("%RX64\n", pShwPDPT->a[i].u & X86_PDPE_PG_MASK));
/** @todo 64-bit guests: have to ensure that we're not exhausting the dynamic mappings! */
}
}
}
/**
* Clear references to shadowed pages in a 64-bit level 4 page table.
*
* @param pPool The pool.
* @param pPage The page.
* @param pShwPML4 The shadow page directory pointer table (mapping of the page).
*/
DECLINLINE(void) pgmPoolTrackDerefPML464Bit(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PX86PML4 pShwPML4)
{
for (unsigned i = 0; i < RT_ELEMENTS(pShwPML4->a); i++)
{
if (pShwPML4->a[i].n.u1Present)
{
PPGMPOOLPAGE pSubPage = (PPGMPOOLPAGE)RTAvloHCPhysGet(&pPool->HCPhysTree, pShwPML4->a[i].u & X86_PDPE_PG_MASK);
if (pSubPage)
pgmPoolTrackFreeUser(pPool, pSubPage, pPage->idx, i);
else
AssertFatalMsgFailed(("%RX64\n", pShwPML4->a[i].u & X86_PML4E_PG_MASK));
/** @todo 64-bit guests: have to ensure that we're not exhausting the dynamic mappings! */
}
}
}
/**
* Clear references to shadowed pages in an EPT page table.
*
* @param pPool The pool.
* @param pPage The page.
* @param pShwPML4 The shadow page directory pointer table (mapping of the page).
*/
DECLINLINE(void) pgmPoolTrackDerefPTEPT(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PEPTPT pShwPT)
{
RTGCPHYS GCPhys = pPage->GCPhys;
for (unsigned i = 0; i < RT_ELEMENTS(pShwPT->a); i++, GCPhys += PAGE_SIZE)
if (pShwPT->a[i].n.u1Present)
{
Log4(("pgmPoolTrackDerefPTEPT: i=%d pte=%RX64 GCPhys=%RX64\n",
i, pShwPT->a[i].u & EPT_PTE_PG_MASK, pPage->GCPhys));
pgmPoolTracDerefGCPhys(pPool, pPage, pShwPT->a[i].u & EPT_PTE_PG_MASK, GCPhys);
}
}
/**
* Clear references to shadowed pages in an EPT page directory.
*
* @param pPool The pool.
* @param pPage The page.
* @param pShwPD The shadow page directory (mapping of the page).
*/
DECLINLINE(void) pgmPoolTrackDerefPDEPT(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PEPTPD pShwPD)
{
for (unsigned i = 0; i < RT_ELEMENTS(pShwPD->a); i++)
{
if (pShwPD->a[i].n.u1Present)
{
PPGMPOOLPAGE pSubPage = (PPGMPOOLPAGE)RTAvloHCPhysGet(&pPool->HCPhysTree, pShwPD->a[i].u & EPT_PDE_PG_MASK);
if (pSubPage)
pgmPoolTrackFreeUser(pPool, pSubPage, pPage->idx, i);
else
AssertFatalMsgFailed(("%RX64\n", pShwPD->a[i].u & EPT_PDE_PG_MASK));
/** @todo 64-bit guests: have to ensure that we're not exhausting the dynamic mappings! */
}
}
}
/**
* Clear references to shadowed pages in an EPT page directory pointer table.
*
* @param pPool The pool.
* @param pPage The page.
* @param pShwPDPT The shadow page directory pointer table (mapping of the page).
*/
DECLINLINE(void) pgmPoolTrackDerefPDPTEPT(PPGMPOOL pPool, PPGMPOOLPAGE pPage, PEPTPDPT pShwPDPT)
{
for (unsigned i = 0; i < RT_ELEMENTS(pShwPDPT->a); i++)
{
if (pShwPDPT->a[i].n.u1Present)
{
PPGMPOOLPAGE pSubPage = (PPGMPOOLPAGE)RTAvloHCPhysGet(&pPool->HCPhysTree, pShwPDPT->a[i].u & EPT_PDPTE_PG_MASK);
if (pSubPage)
pgmPoolTrackFreeUser(pPool, pSubPage, pPage->idx, i);
else
AssertFatalMsgFailed(("%RX64\n", pShwPDPT->a[i].u & EPT_PDPTE_PG_MASK));
/** @todo 64-bit guests: have to ensure that we're not exhausting the dynamic mappings! */
}
}
}
/**
* Clears all references made by this page.
*
* This includes other shadow pages and GC physical addresses.
*
* @param pPool The pool.
* @param pPage The page.
*/
static void pgmPoolTrackDeref(PPGMPOOL pPool, PPGMPOOLPAGE pPage)
{
/*
* Map the shadow page and take action according to the page kind.
*/
void *pvShw = PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
switch (pPage->enmKind)
{
#ifdef PGMPOOL_WITH_GCPHYS_TRACKING
case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT:
{
STAM_PROFILE_START(&pPool->StatTrackDerefGCPhys, g);
void *pvGst;
int rc = PGM_GCPHYS_2_PTR(pPool->CTX_SUFF(pVM), pPage->GCPhys, &pvGst); AssertReleaseRC(rc);
pgmPoolTrackDerefPT32Bit32Bit(pPool, pPage, (PX86PT)pvShw, (PCX86PT)pvGst);
STAM_PROFILE_STOP(&pPool->StatTrackDerefGCPhys, g);
break;
}
case PGMPOOLKIND_PAE_PT_FOR_32BIT_PT:
{
STAM_PROFILE_START(&pPool->StatTrackDerefGCPhys, g);
void *pvGst;
int rc = PGM_GCPHYS_2_PTR_EX(pPool->CTX_SUFF(pVM), pPage->GCPhys, &pvGst); AssertReleaseRC(rc);
pgmPoolTrackDerefPTPae32Bit(pPool, pPage, (PX86PTPAE)pvShw, (PCX86PT)pvGst);
STAM_PROFILE_STOP(&pPool->StatTrackDerefGCPhys, g);
break;
}
case PGMPOOLKIND_PAE_PT_FOR_PAE_PT:
{
STAM_PROFILE_START(&pPool->StatTrackDerefGCPhys, g);
void *pvGst;
int rc = PGM_GCPHYS_2_PTR(pPool->CTX_SUFF(pVM), pPage->GCPhys, &pvGst); AssertReleaseRC(rc);
pgmPoolTrackDerefPTPaePae(pPool, pPage, (PX86PTPAE)pvShw, (PCX86PTPAE)pvGst);
STAM_PROFILE_STOP(&pPool->StatTrackDerefGCPhys, g);
break;
}
case PGMPOOLKIND_32BIT_PT_FOR_PHYS: /* treat it like a 4 MB page */
case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB:
{
STAM_PROFILE_START(&pPool->StatTrackDerefGCPhys, g);
pgmPoolTrackDerefPT32Bit4MB(pPool, pPage, (PX86PT)pvShw);
STAM_PROFILE_STOP(&pPool->StatTrackDerefGCPhys, g);
break;
}
case PGMPOOLKIND_PAE_PT_FOR_PHYS: /* treat it like a 2 MB page */
case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB:
case PGMPOOLKIND_PAE_PT_FOR_32BIT_4MB:
{
STAM_PROFILE_START(&pPool->StatTrackDerefGCPhys, g);
pgmPoolTrackDerefPTPaeBig(pPool, pPage, (PX86PTPAE)pvShw);
STAM_PROFILE_STOP(&pPool->StatTrackDerefGCPhys, g);
break;
}
#else /* !PGMPOOL_WITH_GCPHYS_TRACKING */
case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT:
case PGMPOOLKIND_PAE_PT_FOR_32BIT_PT:
case PGMPOOLKIND_PAE_PT_FOR_PAE_PT:
case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB:
case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB:
case PGMPOOLKIND_PAE_PT_FOR_32BIT_4MB:
case PGMPOOLKIND_32BIT_PT_FOR_PHYS:
case PGMPOOLKIND_PAE_PT_FOR_PHYS:
break;
#endif /* !PGMPOOL_WITH_GCPHYS_TRACKING */
case PGMPOOLKIND_PAE_PD0_FOR_32BIT_PD:
case PGMPOOLKIND_PAE_PD1_FOR_32BIT_PD:
case PGMPOOLKIND_PAE_PD2_FOR_32BIT_PD:
case PGMPOOLKIND_PAE_PD3_FOR_32BIT_PD:
case PGMPOOLKIND_PAE_PD_FOR_PAE_PD:
case PGMPOOLKIND_64BIT_PD_FOR_64BIT_PD:
case PGMPOOLKIND_64BIT_PD_FOR_PHYS:
pgmPoolTrackDerefPDPae(pPool, pPage, (PX86PDPAE)pvShw);
break;
#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
case PGMPOOLKIND_32BIT_PD:
pgmPoolTrackDerefPD(pPool, pPage, (PX86PD)pvShw);
break;
case PGMPOOLKIND_PAE_PDPT_FOR_32BIT:
case PGMPOOLKIND_PAE_PDPT:
#endif
case PGMPOOLKIND_64BIT_PDPT_FOR_PHYS:
case PGMPOOLKIND_64BIT_PDPT_FOR_64BIT_PDPT:
pgmPoolTrackDerefPDPT64Bit(pPool, pPage, (PX86PDPT)pvShw);
break;
case PGMPOOLKIND_64BIT_PML4:
pgmPoolTrackDerefPML464Bit(pPool, pPage, (PX86PML4)pvShw);
break;
case PGMPOOLKIND_EPT_PT_FOR_PHYS:
pgmPoolTrackDerefPTEPT(pPool, pPage, (PEPTPT)pvShw);
break;
case PGMPOOLKIND_EPT_PD_FOR_PHYS:
pgmPoolTrackDerefPDEPT(pPool, pPage, (PEPTPD)pvShw);
break;
case PGMPOOLKIND_EPT_PDPT_FOR_PHYS:
pgmPoolTrackDerefPDPTEPT(pPool, pPage, (PEPTPDPT)pvShw);
break;
default:
AssertFatalMsgFailed(("enmKind=%d\n", pPage->enmKind));
}
/* paranoia, clear the shadow page. Remove this laser (i.e. let Alloc and ClearAll do it). */
STAM_PROFILE_START(&pPool->StatZeroPage, z);
ASMMemZeroPage(pvShw);
STAM_PROFILE_STOP(&pPool->StatZeroPage, z);
pPage->fZeroed = true;
}
#endif /* PGMPOOL_WITH_USER_TRACKING */
/**
* Flushes all the special root pages as part of a pgmPoolFlushAllInt operation.
*
* @param pPool The pool.
*/
static void pgmPoolFlushAllSpecialRoots(PPGMPOOL pPool)
{
#ifdef VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0
/* Start a subset so we won't run out of mapping space. */
PVMCPU pVCpu = VMMGetCpu(pPool->CTX_SUFF(pVM));
uint32_t iPrevSubset = PGMDynMapPushAutoSubset(pVCpu);
#endif
/*
* These special pages are all mapped into the indexes 1..PGMPOOL_IDX_FIRST.
*/
Assert(NIL_PGMPOOL_IDX == 0);
for (unsigned i = 1; i < PGMPOOL_IDX_FIRST; i++)
{
/*
* Get the page address.
*/
PPGMPOOLPAGE pPage = &pPool->aPages[i];
union
{
uint64_t *pau64;
uint32_t *pau32;
} u;
/*
* Mark stuff not present.
*/
switch (pPage->enmKind)
{
#ifndef VBOX_WITH_PGMPOOL_PAGING_ONLY
case PGMPOOLKIND_ROOT_32BIT_PD:
u.pau64 = (uint64_t *)PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
for (unsigned iPage = 0; iPage < X86_PG_ENTRIES; iPage++)
if ((u.pau32[iPage] & (PGM_PDFLAGS_MAPPING | X86_PDE_P)) == X86_PDE_P)
u.pau32[iPage] = 0;
break;
case PGMPOOLKIND_PAE_PD_FOR_PAE_PD:
u.pau64 = (uint64_t *)PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
for (unsigned iPage = 0; iPage < X86_PG_PAE_ENTRIES; iPage++)
if ((u.pau64[iPage] & (PGM_PDFLAGS_MAPPING | X86_PDE_P)) == X86_PDE_P)
u.pau64[iPage] = 0;
break;
case PGMPOOLKIND_ROOT_PDPT:
/* Not root of shadowed pages currently, ignore it. */
break;
#endif
case PGMPOOLKIND_ROOT_NESTED:
u.pau64 = (uint64_t *)PGMPOOL_PAGE_2_PTR(pPool->CTX_SUFF(pVM), pPage);
ASMMemZero32(u.pau64, PAGE_SIZE);
break;
}
}
/*
* Paranoia (to be removed), flag a global CR3 sync.
*/
VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
#ifdef VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0
/* Pop the subset. */
PGMDynMapPopAutoSubset(pVCpu, iPrevSubset);
#endif
}
/**
* Flushes the entire cache.
*
* It will assert a global CR3 flush (FF) and assumes the caller is aware of this
* and execute this CR3 flush.
*
* @param pPool The pool.
*/
static void pgmPoolFlushAllInt(PPGMPOOL pPool)
{
STAM_PROFILE_START(&pPool->StatFlushAllInt, a);
LogFlow(("pgmPoolFlushAllInt:\n"));
/*
* If there are no pages in the pool, there is nothing to do.
*/
if (pPool->cCurPages <= PGMPOOL_IDX_FIRST)
{
STAM_PROFILE_STOP(&pPool->StatFlushAllInt, a);
return;
}
/*
* Nuke the free list and reinsert all pages into it.
*/
for (unsigned i = pPool->cCurPages - 1; i >= PGMPOOL_IDX_FIRST; i--)
{
PPGMPOOLPAGE pPage = &pPool->aPages[i];
#ifdef IN_RING3
Assert(pPage->Core.Key == MMPage2Phys(pPool->pVMR3, pPage->pvPageR3));
#endif
#ifdef PGMPOOL_WITH_MONITORING
if (pPage->fMonitored)
pgmPoolMonitorFlush(pPool, pPage);
pPage->iModifiedNext = NIL_PGMPOOL_IDX;
pPage->iModifiedPrev = NIL_PGMPOOL_IDX;
pPage->iMonitoredNext = NIL_PGMPOOL_IDX;
pPage->iMonitoredPrev = NIL_PGMPOOL_IDX;
pPage->cModifications = 0;
#endif
pPage->GCPhys = NIL_RTGCPHYS;
pPage->enmKind = PGMPOOLKIND_FREE;
Assert(pPage->idx == i);
pPage->iNext = i + 1;
pPage->fZeroed = false; /* This could probably be optimized, but better safe than sorry. */
pPage->fSeenNonGlobal = false;
pPage->fMonitored= false;
pPage->fCached = false;
pPage->fReusedFlushPending = false;
pPage->fCR3Mix = false;
#ifdef PGMPOOL_WITH_USER_TRACKING
pPage->iUserHead = NIL_PGMPOOL_USER_INDEX;
#endif
#ifdef PGMPOOL_WITH_CACHE
pPage->iAgeNext = NIL_PGMPOOL_IDX;
pPage->iAgePrev = NIL_PGMPOOL_IDX;
#endif
}
pPool->aPages[pPool->cCurPages - 1].iNext = NIL_PGMPOOL_IDX;
pPool->iFreeHead = PGMPOOL_IDX_FIRST;
pPool->cUsedPages = 0;
#ifdef PGMPOOL_WITH_USER_TRACKING
/*
* Zap and reinitialize the user records.
*/
pPool->cPresent = 0;
pPool->iUserFreeHead = 0;
PPGMPOOLUSER paUsers = pPool->CTX_SUFF(paUsers);
const unsigned cMaxUsers = pPool->cMaxUsers;
for (unsigned i = 0; i < cMaxUsers; i++)
{
paUsers[i].iNext = i + 1;
paUsers[i].iUser = NIL_PGMPOOL_IDX;
paUsers[i].iUserTable = 0xfffffffe;
}
paUsers[cMaxUsers - 1].iNext = NIL_PGMPOOL_USER_INDEX;
#endif
#ifdef PGMPOOL_WITH_GCPHYS_TRACKING
/*
* Clear all the GCPhys links and rebuild the phys ext free list.
*/
for (PPGMRAMRANGE pRam = pPool->CTX_SUFF(pVM)->pgm.s.CTX_SUFF(pRamRanges);
pRam;
pRam = pRam->CTX_SUFF(pNext))
{
unsigned iPage = pRam->cb >> PAGE_SHIFT;
while (iPage-- > 0)
pRam->aPages[iPage].HCPhys &= MM_RAM_FLAGS_NO_REFS_MASK; /** @todo PAGE FLAGS */
}
pPool->iPhysExtFreeHead = 0;
PPGMPOOLPHYSEXT paPhysExts = pPool->CTX_SUFF(paPhysExts);
const unsigned cMaxPhysExts = pPool->cMaxPhysExts;
for (unsigned i = 0; i < cMaxPhysExts; i++)
{
paPhysExts[i].iNext = i + 1;
paPhysExts[i].aidx[0] = NIL_PGMPOOL_IDX;
paPhysExts[i].aidx[1] = NIL_PGMPOOL_IDX;
paPhysExts[i].aidx[2] = NIL_PGMPOOL_IDX;
}
paPhysExts[cMaxPhysExts - 1].iNext = NIL_PGMPOOL_PHYSEXT_INDEX;
#endif
#ifdef PGMPOOL_WITH_MONITORING
/*
* Just zap the modified list.
*/
pPool->cModifiedPages = 0;
pPool->iModifiedHead = NIL_PGMPOOL_IDX;
#endif
#ifdef PGMPOOL_WITH_CACHE
/*
* Clear the GCPhys hash and the age list.
*/
for (unsigned i = 0; i < RT_ELEMENTS(pPool->aiHash); i++)
pPool->aiHash[i] = NIL_PGMPOOL_IDX;
pPool->iAgeHead = NIL_PGMPOOL_IDX;
pPool->iAgeTail = NIL_PGMPOOL_IDX;
#endif
/*
* Flush all the special root pages.
* Reinsert active pages into the hash and ensure monitoring chains are correct.
*/
pgmPoolFlushAllSpecialRoots(pPool);
for (unsigned i = PGMPOOL_IDX_FIRST_SPECIAL; i < PGMPOOL_IDX_FIRST; i++)
{
PPGMPOOLPAGE pPage = &pPool->aPages[i];
pPage->iNext = NIL_PGMPOOL_IDX;
#ifdef PGMPOOL_WITH_MONITORING
pPage->iModifiedNext = NIL_PGMPOOL_IDX;
pPage->iModifiedPrev = NIL_PGMPOOL_IDX;
pPage->cModifications = 0;
/* ASSUMES that we're not sharing with any of the other special pages (safe for now). */
pPage->iMonitoredNext = NIL_PGMPOOL_IDX;
pPage->iMonitoredPrev = NIL_PGMPOOL_IDX;
if (pPage->fMonitored)
{
PVM pVM = pPool->CTX_SUFF(pVM);
int rc = PGMHandlerPhysicalChangeCallbacks(pVM, pPage->GCPhys & ~(RTGCPHYS)(PAGE_SIZE - 1),
pPool->pfnAccessHandlerR3, MMHyperCCToR3(pVM, pPage),
pPool->pfnAccessHandlerR0, MMHyperCCToR0(pVM, pPage),
pPool->pfnAccessHandlerRC, MMHyperCCToRC(pVM, pPage),
pPool->pszAccessHandler);
AssertFatalRCSuccess(rc);
# ifdef PGMPOOL_WITH_CACHE
pgmPoolHashInsert(pPool, pPage);
# endif
}
#endif
#ifdef PGMPOOL_WITH_USER_TRACKING
Assert(pPage->iUserHead == NIL_PGMPOOL_USER_INDEX); /* for now */
#endif
#ifdef PGMPOOL_WITH_CACHE
Assert(pPage->iAgeNext == NIL_PGMPOOL_IDX);
Assert(pPage->iAgePrev == NIL_PGMPOOL_IDX);
#endif
}
/*
* Finally, assert the FF.
*/
VM_FF_SET(pPool->CTX_SUFF(pVM), VM_FF_PGM_SYNC_CR3);
STAM_PROFILE_STOP(&pPool->StatFlushAllInt, a);
}
/**
* Flushes a pool page.
*
* This moves the page to the free list after removing all user references to it.
* In GC this will cause a CR3 reload if the page is traced back to an active root page.
*
* @returns VBox status code.
* @retval VINF_SUCCESS on success.
* @retval VERR_PGM_POOL_CLEARED if the deregistration of the physical handler will cause a light weight pool flush.
* @param pPool The pool.
* @param HCPhys The HC physical address of the shadow page.
*/
int pgmPoolFlushPage(PPGMPOOL pPool, PPGMPOOLPAGE pPage)
{
int rc = VINF_SUCCESS;
STAM_PROFILE_START(&pPool->StatFlushPage, f);
LogFlow(("pgmPoolFlushPage: pPage=%p:{.Key=%RHp, .idx=%d, .enmKind=%d, .GCPhys=%RGp}\n",
pPage, pPage->Core.Key, pPage->idx, pPage->enmKind, pPage->GCPhys));
/*
* Quietly reject any attempts at flushing any of the special root pages.
*/
if (pPage->idx < PGMPOOL_IDX_FIRST)
{
Log(("pgmPoolFlushPage: special root page, rejected. enmKind=%d idx=%d\n", pPage->enmKind, pPage->idx));
return VINF_SUCCESS;
}
/*
* Quietly reject any attempts at flushing the currently active shadow CR3 mapping
*/
if (PGMGetHyperCR3(pPool->CTX_SUFF(pVM)) == pPage->Core.Key)
{
#ifdef VBOX_WITH_PGMPOOL_PAGING_ONLY
AssertMsg(pPage->enmKind == PGMPOOLKIND_64BIT_PML4,
("Can't free the shadow CR3! (%RHp vs %RHp kind=%d\n", PGMGetHyperCR3(pPool->CTX_SUFF(pVM)), pPage->Core.Key, pPage->enmKind));
#endif
Log(("pgmPoolFlushPage: current active shadow CR3, rejected. enmKind=%d idx=%d\n", pPage->enmKind, pPage->idx));
return VINF_SUCCESS;
}
#ifdef VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0
/* Start a subset so we won't run out of mapping space. */
PVMCPU pVCpu = VMMGetCpu(pPool->CTX_SUFF(pVM));
uint32_t iPrevSubset = PGMDynMapPushAutoSubset(pVCpu);
#endif
/*
* Mark the page as being in need of a ASMMemZeroPage().
*/
pPage->fZeroed = false;
#ifdef PGMPOOL_WITH_USER_TRACKING
/*
* Clear the page.
*/
pgmPoolTrackClearPageUsers(pPool, pPage);
STAM_PROFILE_START(&pPool->StatTrackDeref,a);
pgmPoolTrackDeref(pPool, pPage);
STAM_PROFILE_STOP(&pPool->StatTrackDeref,a);
#endif
#ifdef PGMPOOL_WITH_CACHE
/*
* Flush it from the cache.
*/
pgmPoolCacheFlushPage(pPool, pPage);
#endif /* PGMPOOL_WITH_CACHE */
#ifdef VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0
/* Heavy stuff done. */
PGMDynMapPopAutoSubset(pVCpu, iPrevSubset);
#endif
#ifdef PGMPOOL_WITH_MONITORING
/*
* Deregistering the monitoring.
*/
if (pPage->fMonitored)
rc = pgmPoolMonitorFlush(pPool, pPage);
#endif
/*
* Free the page.
*/
Assert(pPage->iNext == NIL_PGMPOOL_IDX);
pPage->iNext = pPool->iFreeHead;
pPool->iFreeHead = pPage->idx;
pPage->enmKind = PGMPOOLKIND_FREE;
pPage->GCPhys = NIL_RTGCPHYS;
pPage->fReusedFlushPending = false;
pPool->cUsedPages--;
STAM_PROFILE_STOP(&pPool->StatFlushPage, f);
return rc;
}
/**
* Frees a usage of a pool page.
*
* The caller is responsible to updating the user table so that it no longer
* references the shadow page.
*
* @param pPool The pool.
* @param HCPhys The HC physical address of the shadow page.
* @param iUser The shadow page pool index of the user table.
* @param iUserTable The index into the user table (shadowed).
*/
void pgmPoolFreeByPage(PPGMPOOL pPool, PPGMPOOLPAGE pPage, uint16_t iUser, uint32_t iUserTable)
{
STAM_PROFILE_START(&pPool->StatFree, a);
LogFlow(("pgmPoolFreeByPage: pPage=%p:{.Key=%RHp, .idx=%d, enmKind=%d} iUser=%#x iUserTable=%#x\n",
pPage, pPage->Core.Key, pPage->idx, pPage->enmKind, iUser, iUserTable));
Assert(pPage->idx >= PGMPOOL_IDX_FIRST);
#ifdef PGMPOOL_WITH_USER_TRACKING
pgmPoolTrackFreeUser(pPool, pPage, iUser, iUserTable);
#endif
#ifdef PGMPOOL_WITH_CACHE
if (!pPage->fCached)
#endif
pgmPoolFlushPage(pPool, pPage); /* ASSUMES that VERR_PGM_POOL_CLEARED can be ignored here. */
STAM_PROFILE_STOP(&pPool->StatFree, a);
}
/**
* Makes one or more free page free.
*
* @returns VBox status code.
* @retval VINF_SUCCESS on success.
* @retval VERR_PGM_POOL_FLUSHED if the pool was flushed.
*
* @param pPool The pool.
* @param iUser The user of the page.
*/
static int pgmPoolMakeMoreFreePages(PPGMPOOL pPool, uint16_t iUser)
{
LogFlow(("pgmPoolMakeMoreFreePages: iUser=%#x\n", iUser));
/*
* If the pool isn't full grown yet, expand it.
*/
if (pPool->cCurPages < pPool->cMaxPages)
{
STAM_PROFILE_ADV_SUSPEND(&pPool->StatAlloc, a);
#ifdef IN_RING3
int rc = PGMR3PoolGrow(pPool->pVMR3);
#else
int rc = CTXALLMID(VMM, CallHost)(pPool->CTX_SUFF(pVM), VMMCALLHOST_PGM_POOL_GROW, 0);
#endif
if (RT_FAILURE(rc))
return rc;
STAM_PROFILE_ADV_RESUME(&pPool->StatAlloc, a);
if (pPool->iFreeHead != NIL_PGMPOOL_IDX)
return VINF_SUCCESS;
}
#ifdef PGMPOOL_WITH_CACHE
/*
* Free one cached page.
*/
return pgmPoolCacheFreeOne(pPool, iUser);
#else
/*
* Flush the pool.
*
* If we have tracking enabled, it should be possible to come up with
* a cheap replacement strategy...
*/
/* @todo incompatible with long mode paging (cr3 root will be flushed) */
Assert(!CPUMIsGuestInLongMode(pVM));
pgmPoolFlushAllInt(pPool);
return VERR_PGM_POOL_FLUSHED;
#endif
}
/**
* Allocates a page from the pool.
*
* This page may actually be a cached page and not in need of any processing
* on the callers part.
*
* @returns VBox status code.
* @retval VINF_SUCCESS if a NEW page was allocated.
* @retval VINF_PGM_CACHED_PAGE if a CACHED page was returned.
* @retval VERR_PGM_POOL_FLUSHED if the pool was flushed.
* @param pVM The VM handle.
* @param GCPhys The GC physical address of the page we're gonna shadow.
* For 4MB and 2MB PD entries, it's the first address the
* shadow PT is covering.
* @param enmKind The kind of mapping.
* @param iUser The shadow page pool index of the user table.
* @param iUserTable The index into the user table (shadowed).
* @param ppPage Where to store the pointer to the page. NULL is stored here on failure.
*/
int pgmPoolAlloc(PVM pVM, RTGCPHYS GCPhys, PGMPOOLKIND enmKind, uint16_t iUser, uint32_t iUserTable, PPPGMPOOLPAGE ppPage)
{
PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
STAM_PROFILE_ADV_START(&pPool->StatAlloc, a);
LogFlow(("pgmPoolAlloc: GCPhys=%RGp enmKind=%d iUser=%#x iUserTable=%#x\n", GCPhys, enmKind, iUser, iUserTable));
*ppPage = NULL;
/** @todo CSAM/PGMPrefetchPage messes up here during CSAMR3CheckGates
* (TRPMR3SyncIDT) because of FF priority. Try fix that?
* Assert(!(pVM->pgm.s.fSyncFlags & PGM_SYNC_CLEAR_PGM_POOL)); */
#ifdef PGMPOOL_WITH_CACHE
if (pPool->fCacheEnabled)
{
int rc2 = pgmPoolCacheAlloc(pPool, GCPhys, enmKind, iUser, iUserTable, ppPage);
if (RT_SUCCESS(rc2))
{
STAM_PROFILE_ADV_STOP(&pPool->StatAlloc, a);
LogFlow(("pgmPoolAlloc: cached returns %Rrc *ppPage=%p:{.Key=%RHp, .idx=%d}\n", rc2, *ppPage, (*ppPage)->Core.Key, (*ppPage)->idx));
return rc2;
}
}
#endif
/*
* Allocate a new one.
*/
int rc = VINF_SUCCESS;
uint16_t iNew = pPool->iFreeHead;
if (iNew == NIL_PGMPOOL_IDX)
{
rc = pgmPoolMakeMoreFreePages(pPool, iUser);
if (RT_FAILURE(rc))
{
if (rc != VERR_PGM_POOL_CLEARED)
{
Log(("pgmPoolAlloc: returns %Rrc (Free)\n", rc));
STAM_PROFILE_ADV_STOP(&pPool->StatAlloc, a);
return rc;
}
Log(("pgmPoolMakeMoreFreePages failed with %Rrc -> return VERR_PGM_POOL_FLUSHED\n", rc));
rc = VERR_PGM_POOL_FLUSHED;
}
iNew = pPool->iFreeHead;
AssertReleaseReturn(iNew != NIL_PGMPOOL_IDX, VERR_INTERNAL_ERROR);
}
/* unlink the free head */
PPGMPOOLPAGE pPage = &pPool->aPages[iNew];
pPool->iFreeHead = pPage->iNext;
pPage->iNext = NIL_PGMPOOL_IDX;
/*
* Initialize it.
*/
pPool->cUsedPages++; /* physical handler registration / pgmPoolTrackFlushGCPhysPTsSlow requirement. */
pPage->enmKind = enmKind;
pPage->GCPhys = GCPhys;
pPage->fSeenNonGlobal = false; /* Set this to 'true' to disable this feature. */
pPage->fMonitored = false;
pPage->fCached = false;
pPage->fReusedFlushPending = false;
pPage->fCR3Mix = false;
#ifdef PGMPOOL_WITH_MONITORING
pPage->cModifications = 0;
pPage->iModifiedNext = NIL_PGMPOOL_IDX;
pPage->iModifiedPrev = NIL_PGMPOOL_IDX;
#endif
#ifdef PGMPOOL_WITH_USER_TRACKING
pPage->cPresent = 0;
pPage->iFirstPresent = ~0;
/*
* Insert into the tracking and cache. If this fails, free the page.
*/
int rc3 = pgmPoolTrackInsert(pPool, pPage, GCPhys, iUser, iUserTable);
if (RT_FAILURE(rc3))
{
if (rc3 != VERR_PGM_POOL_CLEARED)
{
pPool->cUsedPages--;
pPage->enmKind = PGMPOOLKIND_FREE;
pPage->GCPhys = NIL_RTGCPHYS;
pPage->iNext = pPool->iFreeHead;
pPool->iFreeHead = pPage->idx;
STAM_PROFILE_ADV_STOP(&pPool->StatAlloc, a);
Log(("pgmPoolAlloc: returns %Rrc (Insert)\n", rc3));
return rc3;
}
Log(("pgmPoolTrackInsert failed with %Rrc -> return VERR_PGM_POOL_FLUSHED\n", rc3));
rc = VERR_PGM_POOL_FLUSHED;
}
#endif /* PGMPOOL_WITH_USER_TRACKING */
/*
* Commit the allocation, clear the page and return.
*/
#ifdef VBOX_WITH_STATISTICS
if (pPool->cUsedPages > pPool->cUsedPagesHigh)
pPool->cUsedPagesHigh = pPool->cUsedPages;
#endif
if (!pPage->fZeroed)
{
STAM_PROFILE_START(&pPool->StatZeroPage, z);
void *pv = PGMPOOL_PAGE_2_PTR(pVM, pPage);
ASMMemZeroPage(pv);
STAM_PROFILE_STOP(&pPool->StatZeroPage, z);
}
*ppPage = pPage;
LogFlow(("pgmPoolAlloc: returns %Rrc *ppPage=%p:{.Key=%RHp, .idx=%d, .fCached=%RTbool, .fMonitored=%RTbool}\n",
rc, pPage, pPage->Core.Key, pPage->idx, pPage->fCached, pPage->fMonitored));
STAM_PROFILE_ADV_STOP(&pPool->StatAlloc, a);
return rc;
}
/**
* Frees a usage of a pool page.
*
* @param pVM The VM handle.
* @param HCPhys The HC physical address of the shadow page.
* @param iUser The shadow page pool index of the user table.
* @param iUserTable The index into the user table (shadowed).
*/
void pgmPoolFree(PVM pVM, RTHCPHYS HCPhys, uint16_t iUser, uint32_t iUserTable)
{
LogFlow(("pgmPoolFree: HCPhys=%RHp iUser=%#x iUserTable=%#x\n", HCPhys, iUser, iUserTable));
PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
pgmPoolFreeByPage(pPool, pgmPoolGetPage(pPool, HCPhys), iUser, iUserTable);
}
/**
* Gets a in-use page in the pool by it's physical address.
*
* @returns Pointer to the page.
* @param pVM The VM handle.
* @param HCPhys The HC physical address of the shadow page.
* @remark This function will NEVER return NULL. It will assert if HCPhys is invalid.
*/
PPGMPOOLPAGE pgmPoolGetPageByHCPhys(PVM pVM, RTHCPHYS HCPhys)
{
/** @todo profile this! */
PPGMPOOL pPool = pVM->pgm.s.CTX_SUFF(pPool);
PPGMPOOLPAGE pPage = pgmPoolGetPage(pPool, HCPhys);
Log3(("pgmPoolGetPageByHCPhys: HCPhys=%RHp -> %p:{.idx=%d .GCPhys=%RGp .enmKind=%d}\n",
HCPhys, pPage, pPage->idx, pPage->GCPhys, pPage->enmKind));
return pPage;
}
/**
* Flushes the entire cache.
*
* It will assert a global CR3 flush (FF) and assumes the caller is aware of this
* and execute this CR3 flush.
*
* @param pPool The pool.
*/
void pgmPoolFlushAll(PVM pVM)
{
LogFlow(("pgmPoolFlushAll:\n"));
pgmPoolFlushAllInt(pVM->pgm.s.CTX_SUFF(pPool));
}