VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR0/PGMR0SharedPage.cpp@ 67837

Last change on this file since 67837 was 62478, checked in by vboxsync, 8 years ago

(C) 2016

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 7.2 KB
Line 
1/* $Id: PGMR0SharedPage.cpp 62478 2016-07-22 18:29:06Z vboxsync $ */
2/** @file
3 * PGM - Page Manager and Monitor, Page Sharing, Ring-0.
4 */
5
6/*
7 * Copyright (C) 2010-2016 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*********************************************************************************************************************************
20* Header Files *
21*********************************************************************************************************************************/
22#define LOG_GROUP LOG_GROUP_PGM_SHARED
23#include <VBox/vmm/pgm.h>
24#include <VBox/vmm/gmm.h>
25#include "PGMInternal.h"
26#include <VBox/vmm/vm.h>
27#include "PGMInline.h"
28#include <VBox/log.h>
29#include <VBox/err.h>
30#include <iprt/assert.h>
31#include <iprt/mem.h>
32
33
34#ifdef VBOX_WITH_PAGE_SHARING
35/**
36 * Check a registered module for shared page changes.
37 *
38 * The PGM lock shall be taken prior to calling this method.
39 *
40 * @returns The following VBox status codes.
41 *
42 * @param pVM The cross context VM structure.
43 * @param pGVM Pointer to the GVM instance data.
44 * @param idCpu The ID of the calling virtual CPU.
45 * @param pModule Global module description.
46 * @param paRegionsGCPtrs Array parallel to pModules->aRegions with the
47 * addresses of the regions in the calling
48 * process.
49 */
50VMMR0DECL(int) PGMR0SharedModuleCheck(PVM pVM, PGVM pGVM, VMCPUID idCpu, PGMMSHAREDMODULE pModule, PCRTGCPTR64 paRegionsGCPtrs)
51{
52 PVMCPU pVCpu = &pVM->aCpus[idCpu];
53 int rc = VINF_SUCCESS;
54 bool fFlushTLBs = false;
55 bool fFlushRemTLBs = false;
56 GMMSHAREDPAGEDESC PageDesc;
57
58 Log(("PGMR0SharedModuleCheck: check %s %s base=%RGv size=%x\n", pModule->szName, pModule->szVersion, pModule->Core.Key, pModule->cbModule));
59
60 PGM_LOCK_ASSERT_OWNER(pVM); /* This cannot fail as we grab the lock in pgmR3SharedModuleRegRendezvous before calling into ring-0. */
61
62 /*
63 * Check every region of the shared module.
64 */
65 for (uint32_t idxRegion = 0; idxRegion < pModule->cRegions; idxRegion++)
66 {
67 RTGCPTR GCPtrPage = paRegionsGCPtrs[idxRegion] & ~(RTGCPTR)PAGE_OFFSET_MASK;
68 uint32_t cbLeft = pModule->aRegions[idxRegion].cb; Assert(!(cbLeft & PAGE_OFFSET_MASK));
69 uint32_t idxPage = 0;
70
71 while (cbLeft)
72 {
73 /** @todo inefficient to fetch each guest page like this... */
74 RTGCPHYS GCPhys;
75 uint64_t fFlags;
76 rc = PGMGstGetPage(pVCpu, GCPtrPage, &fFlags, &GCPhys);
77 if ( rc == VINF_SUCCESS
78 && !(fFlags & X86_PTE_RW)) /* important as we make assumptions about this below! */
79 {
80 PPGMPAGE pPage = pgmPhysGetPage(pVM, GCPhys);
81 Assert(!pPage || !PGM_PAGE_IS_BALLOONED(pPage));
82 if ( pPage
83 && PGM_PAGE_GET_STATE(pPage) == PGM_PAGE_STATE_ALLOCATED
84 && PGM_PAGE_GET_READ_LOCKS(pPage) == 0
85 && PGM_PAGE_GET_WRITE_LOCKS(pPage) == 0 )
86 {
87 PageDesc.idPage = PGM_PAGE_GET_PAGEID(pPage);
88 PageDesc.HCPhys = PGM_PAGE_GET_HCPHYS(pPage);
89 PageDesc.GCPhys = GCPhys;
90
91 rc = GMMR0SharedModuleCheckPage(pGVM, pModule, idxRegion, idxPage, &PageDesc);
92 if (RT_FAILURE(rc))
93 break;
94
95 /*
96 * Any change for this page?
97 */
98 if (PageDesc.idPage != NIL_GMM_PAGEID)
99 {
100 Assert(PGM_PAGE_GET_STATE(pPage) == PGM_PAGE_STATE_ALLOCATED);
101
102 Log(("PGMR0SharedModuleCheck: shared page gst virt=%RGv phys=%RGp host %RHp->%RHp\n",
103 GCPtrPage, PageDesc.GCPhys, PGM_PAGE_GET_HCPHYS(pPage), PageDesc.HCPhys));
104
105 /* Page was either replaced by an existing shared
106 version of it or converted into a read-only shared
107 page, so, clear all references. */
108 bool fFlush = false;
109 rc = pgmPoolTrackUpdateGCPhys(pVM, PageDesc.GCPhys, pPage, true /* clear the entries */, &fFlush);
110 Assert( rc == VINF_SUCCESS
111 || ( VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_PGM_SYNC_CR3)
112 && (pVCpu->pgm.s.fSyncFlags & PGM_SYNC_CLEAR_PGM_POOL)));
113 if (rc == VINF_SUCCESS)
114 fFlushTLBs |= fFlush;
115 fFlushRemTLBs = true;
116
117 if (PageDesc.HCPhys != PGM_PAGE_GET_HCPHYS(pPage))
118 {
119 /* Update the physical address and page id now. */
120 PGM_PAGE_SET_HCPHYS(pVM, pPage, PageDesc.HCPhys);
121 PGM_PAGE_SET_PAGEID(pVM, pPage, PageDesc.idPage);
122
123 /* Invalidate page map TLB entry for this page too. */
124 pgmPhysInvalidatePageMapTLBEntry(pVM, PageDesc.GCPhys);
125 pVM->pgm.s.cReusedSharedPages++;
126 }
127 /* else: nothing changed (== this page is now a shared
128 page), so no need to flush anything. */
129
130 pVM->pgm.s.cSharedPages++;
131 pVM->pgm.s.cPrivatePages--;
132 PGM_PAGE_SET_STATE(pVM, pPage, PGM_PAGE_STATE_SHARED);
133
134# ifdef VBOX_STRICT /* check sum hack */
135 pPage->s.u2Unused0 = PageDesc.u32StrictChecksum & 3;
136 pPage->s.u2Unused1 = (PageDesc.u32StrictChecksum >> 8) & 3;
137# endif
138 }
139 }
140 }
141 else
142 {
143 Assert( rc == VINF_SUCCESS
144 || rc == VERR_PAGE_NOT_PRESENT
145 || rc == VERR_PAGE_MAP_LEVEL4_NOT_PRESENT
146 || rc == VERR_PAGE_DIRECTORY_PTR_NOT_PRESENT
147 || rc == VERR_PAGE_TABLE_NOT_PRESENT);
148 rc = VINF_SUCCESS; /* ignore error */
149 }
150
151 idxPage++;
152 GCPtrPage += PAGE_SIZE;
153 cbLeft -= PAGE_SIZE;
154 }
155 }
156
157 /*
158 * Do TLB flushing if necessary.
159 */
160 if (fFlushTLBs)
161 PGM_INVL_ALL_VCPU_TLBS(pVM);
162
163 if (fFlushRemTLBs)
164 for (VMCPUID idCurCpu = 0; idCurCpu < pVM->cCpus; idCurCpu++)
165 CPUMSetChangedFlags(&pVM->aCpus[idCurCpu], CPUM_CHANGED_GLOBAL_TLB_FLUSH);
166
167 return rc;
168}
169#endif /* VBOX_WITH_PAGE_SHARING */
170
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette