VirtualBox

source: vbox/trunk/include/VBox/vmm/mm.h@ 91266

Last change on this file since 91266 was 91266, checked in by vboxsync, 4 years ago

VMM/CPUM: Moved CPUIDs and MSRs from the hyper heap and into the VM structure (might not be such a great idea for MSRs actually). bugref:10093

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.3 KB
Line 
1/** @file
2 * MM - The Memory Manager.
3 */
4
5/*
6 * Copyright (C) 2006-2020 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef VBOX_INCLUDED_vmm_mm_h
27#define VBOX_INCLUDED_vmm_mm_h
28#ifndef RT_WITHOUT_PRAGMA_ONCE
29# pragma once
30#endif
31
32#include <VBox/types.h>
33#include <iprt/x86.h>
34#include <VBox/sup.h>
35#include <iprt/stdarg.h>
36
37
38RT_C_DECLS_BEGIN
39
40/** @defgroup grp_mm The Memory Manager API
41 * @ingroup grp_vmm
42 * @{
43 */
44
45/**
46 * Memory Allocation Tags.
47 * For use with MMHyperAlloc(), MMR3HeapAlloc(), MMR3HeapAllocEx(),
48 * MMR3HeapAllocZ() and MMR3HeapAllocZEx().
49 *
50 * @remark Don't forget to update the dump command in MMHeap.cpp!
51 */
52typedef enum MMTAG
53{
54 MM_TAG_INVALID = 0,
55
56 MM_TAG_CFGM,
57 MM_TAG_CFGM_BYTES,
58 MM_TAG_CFGM_STRING,
59 MM_TAG_CFGM_USER,
60
61 MM_TAG_CSAM,
62 MM_TAG_CSAM_PATCH,
63
64 MM_TAG_CPUM_CTX,
65 MM_TAG_CPUM_CPUID,
66 MM_TAG_CPUM_MSRS,
67
68 MM_TAG_DBGF,
69 MM_TAG_DBGF_AS,
70 MM_TAG_DBGF_CORE_WRITE,
71 MM_TAG_DBGF_INFO,
72 MM_TAG_DBGF_LINE,
73 MM_TAG_DBGF_LINE_DUP,
74 MM_TAG_DBGF_MODULE,
75 MM_TAG_DBGF_OS,
76 MM_TAG_DBGF_REG,
77 MM_TAG_DBGF_STACK,
78 MM_TAG_DBGF_SYMBOL,
79 MM_TAG_DBGF_SYMBOL_DUP,
80 MM_TAG_DBGF_TYPE,
81 MM_TAG_DBGF_TRACER,
82 MM_TAG_DBGF_FLOWTRACE,
83
84 MM_TAG_EM,
85
86 MM_TAG_IEM,
87
88 MM_TAG_IOM,
89 MM_TAG_IOM_STATS,
90
91 MM_TAG_MM,
92 MM_TAG_MM_LOOKUP_GUEST,
93 MM_TAG_MM_LOOKUP_PHYS,
94 MM_TAG_MM_LOOKUP_VIRT,
95 MM_TAG_MM_PAGE,
96
97 MM_TAG_PARAV,
98
99 MM_TAG_PATM,
100 MM_TAG_PATM_PATCH,
101
102 MM_TAG_PDM,
103 MM_TAG_PDM_ASYNC_COMPLETION,
104 MM_TAG_PDM_DEVICE,
105 MM_TAG_PDM_DEVICE_DESC,
106 MM_TAG_PDM_DEVICE_USER,
107 MM_TAG_PDM_DRIVER,
108 MM_TAG_PDM_DRIVER_DESC,
109 MM_TAG_PDM_DRIVER_USER,
110 MM_TAG_PDM_USB,
111 MM_TAG_PDM_USB_DESC,
112 MM_TAG_PDM_USB_USER,
113 MM_TAG_PDM_LUN,
114#ifdef VBOX_WITH_NETSHAPER
115 MM_TAG_PDM_NET_SHAPER,
116#endif /* VBOX_WITH_NETSHAPER */
117 MM_TAG_PDM_QUEUE,
118 MM_TAG_PDM_THREAD,
119
120 MM_TAG_PGM,
121 MM_TAG_PGM_CHUNK_MAPPING,
122 MM_TAG_PGM_HANDLERS,
123 MM_TAG_PGM_HANDLER_TYPES,
124 MM_TAG_PGM_MAPPINGS,
125 MM_TAG_PGM_PHYS,
126 MM_TAG_PGM_POOL,
127
128 MM_TAG_REM,
129
130 MM_TAG_SELM,
131
132 MM_TAG_SSM,
133
134 MM_TAG_STAM,
135
136 MM_TAG_TM,
137
138 MM_TAG_TRPM,
139
140 MM_TAG_VM,
141 MM_TAG_VM_REQ,
142
143 MM_TAG_VMM,
144
145 MM_TAG_HM,
146
147 MM_TAG_32BIT_HACK = 0x7fffffff
148} MMTAG;
149
150
151
152
153/** @defgroup grp_mm_hyper Hypervisor Memory Management
154 * @{ */
155
156VMMDECL(RTR3PTR) MMHyperR0ToR3(PVM pVM, RTR0PTR R0Ptr);
157VMMDECL(RTRCPTR) MMHyperR0ToRC(PVM pVM, RTR0PTR R0Ptr);
158#ifndef IN_RING0
159VMMDECL(void *) MMHyperR0ToCC(PVM pVM, RTR0PTR R0Ptr);
160#endif
161VMMDECL(RTR0PTR) MMHyperR3ToR0(PVM pVM, RTR3PTR R3Ptr);
162VMMDECL(RTRCPTR) MMHyperR3ToRC(PVM pVM, RTR3PTR R3Ptr);
163VMMDECL(RTR3PTR) MMHyperRCToR3(PVM pVM, RTRCPTR RCPtr);
164VMMDECL(RTR0PTR) MMHyperRCToR0(PVM pVM, RTRCPTR RCPtr);
165
166#ifndef IN_RING3
167VMMDECL(void *) MMHyperR3ToCC(PVM pVM, RTR3PTR R3Ptr);
168#else
169DECLINLINE(void *) MMHyperR3ToCC(PVM pVM, RTR3PTR R3Ptr)
170{
171 NOREF(pVM);
172 return R3Ptr;
173}
174#endif
175
176
177VMMDECL(void *) MMHyperRCToCC(PVM pVM, RTRCPTR RCPtr);
178
179#ifndef IN_RING3
180VMMDECL(RTR3PTR) MMHyperCCToR3(PVM pVM, void *pv);
181#else
182DECLINLINE(RTR3PTR) MMHyperCCToR3(PVM pVM, void *pv)
183{
184 NOREF(pVM);
185 return pv;
186}
187#endif
188
189#ifndef IN_RING0
190VMMDECL(RTR0PTR) MMHyperCCToR0(PVM pVM, void *pv);
191#else
192DECLINLINE(RTR0PTR) MMHyperCCToR0(PVM pVM, void *pv)
193{
194 NOREF(pVM);
195 return pv;
196}
197#endif
198
199VMMDECL(RTRCPTR) MMHyperCCToRC(PVM pVM, void *pv);
200
201
202VMMDECL(int) MMHyperAlloc(PVMCC pVM, size_t cb, uint32_t uAlignment, MMTAG enmTag, void **ppv);
203#if 0
204VMMDECL(int) MMHyperDupMem(PVMCC pVM, const void *pvSrc, size_t cb, unsigned uAlignment, MMTAG enmTag, void **ppv);
205#endif
206VMMDECL(int) MMHyperFree(PVMCC pVM, void *pv);
207VMMDECL(void) MMHyperHeapCheck(PVMCC pVM);
208#ifdef DEBUG
209VMMDECL(void) MMHyperHeapDump(PVM pVM);
210#endif
211VMMDECL(size_t) MMHyperHeapGetFreeSize(PVM pVM);
212VMMDECL(size_t) MMHyperHeapGetSize(PVM pVM);
213VMMDECL(void *) MMHyperHeapOffsetToPtr(PVM pVM, uint32_t offHeap);
214VMMDECL(uint32_t) MMHyperHeapPtrToOffset(PVM pVM, void *pv);
215VMMDECL(RTGCPTR) MMHyperGetArea(PVM pVM, size_t *pcb);
216VMMDECL(bool) MMHyperIsInsideArea(PVM pVM, RTGCPTR GCPtr);
217
218#if 0
219VMMDECL(RTHCPHYS) MMPage2Phys(PVM pVM, void *pvPage);
220VMMDECL(void *) MMPagePhys2Page(PVM pVM, RTHCPHYS HCPhysPage);
221VMMDECL(int) MMPagePhys2PageEx(PVM pVM, RTHCPHYS HCPhysPage, void **ppvPage);
222VMMDECL(int) MMPagePhys2PageTry(PVM pVM, RTHCPHYS HCPhysPage, void **ppvPage);
223#endif
224
225
226/** @def MMHYPER_RC_ASSERT_RCPTR
227 * Asserts that an address is either NULL or inside the hypervisor memory area.
228 * This assertion only works while IN_RC, it's a NOP everywhere else.
229 * @thread The Emulation Thread.
230 */
231#define MMHYPER_RC_ASSERT_RCPTR(pVM, RCPtr) do { } while (0)
232
233/** @} */
234
235
236#if defined(IN_RING3) || defined(DOXYGEN_RUNNING)
237/** @defgroup grp_mm_r3 The MM Host Context Ring-3 API
238 * @{
239 */
240
241VMMR3DECL(int) MMR3InitUVM(PUVM pUVM);
242VMMR3DECL(int) MMR3Init(PVM pVM);
243VMMR3DECL(int) MMR3InitPaging(PVM pVM);
244VMMR3DECL(int) MMR3HyperInitFinalize(PVM pVM);
245VMMR3DECL(int) MMR3Term(PVM pVM);
246VMMR3DECL(void) MMR3TermUVM(PUVM pUVM);
247VMMR3_INT_DECL(bool) MMR3IsInitialized(PVM pVM);
248VMMR3DECL(int) MMR3ReserveHandyPages(PVM pVM, uint32_t cHandyPages);
249VMMR3DECL(int) MMR3IncreaseBaseReservation(PVM pVM, uint64_t cAddBasePages);
250VMMR3DECL(int) MMR3AdjustFixedReservation(PVM pVM, int32_t cDeltaFixedPages, const char *pszDesc);
251VMMR3DECL(int) MMR3UpdateShadowReservation(PVM pVM, uint32_t cShadowPages);
252
253VMMR3DECL(int) MMR3HCPhys2HCVirt(PVM pVM, RTHCPHYS HCPhys, void **ppv);
254
255/** @defgroup grp_mm_r3_hyper Hypervisor Memory Manager (HC R3 Portion)
256 * @{ */
257VMMR3DECL(int) MMR3HyperAllocOnceNoRel(PVM pVM, size_t cb, uint32_t uAlignment, MMTAG enmTag, void **ppv);
258VMMR3DECL(int) MMR3HyperAllocOnceNoRelEx(PVM pVM, size_t cb, uint32_t uAlignment, MMTAG enmTag, uint32_t fFlags, void **ppv);
259#if 0
260VMMR3DECL(int) MMR3HyperRealloc(PVM pVM, void *pv, size_t cb, unsigned uAlignmentNew, MMTAG enmTagNew, size_t cbNew, void **ppv);
261#endif
262/** @name MMR3HyperAllocOnceNoRelEx flags
263 * @{ */
264/** Must have kernel mapping.
265 * If not specified, the R0 pointer may point to the user process mapping. */
266#define MMHYPER_AONR_FLAGS_KERNEL_MAPPING RT_BIT(0)
267/** @} */
268VMMR3DECL(int) MMR3HyperSetGuard(PVM pVM, void *pvStart, size_t cb, bool fSet);
269#ifndef PGM_WITHOUT_MAPPINGS
270VMMR3DECL(int) MMR3HyperMapHCPhys(PVM pVM, void *pvR3, RTR0PTR pvR0, RTHCPHYS HCPhys, size_t cb, const char *pszDesc, PRTGCPTR pGCPtr);
271VMMR3DECL(int) MMR3HyperMapGCPhys(PVM pVM, RTGCPHYS GCPhys, size_t cb, const char *pszDesc, PRTGCPTR pGCPtr);
272VMMR3DECL(int) MMR3HyperReserve(PVM pVM, unsigned cb, const char *pszDesc, PRTGCPTR pGCPtr);
273#endif
274VMMR3DECL(int) MMR3HyperMapPages(PVM pVM, void *pvR3, RTR0PTR pvR0, size_t cPages, PCSUPPAGE paPages, const char *pszDesc, PRTGCPTR pGCPtr);
275VMMR3DECL(int) MMR3HyperReserveFence(PVM pVM);
276VMMR3DECL(RTHCPHYS) MMR3HyperHCVirt2HCPhys(PVM pVM, void *pvHC);
277VMMR3DECL(int) MMR3HyperHCVirt2HCPhysEx(PVM pVM, void *pvHC, PRTHCPHYS pHCPhys);
278#ifndef PGM_WITHOUT_MAPPINGS
279VMMR3_INT_DECL(int) MMR3HyperQueryInfoFromHCPhys(PVM pVM, RTHCPHYS HCPhys, char *pszWhat, size_t cbWhat, uint32_t *pcbAlloc);
280VMMR3DECL(int) MMR3HyperReadGCVirt(PVM pVM, void *pvDst, RTGCPTR GCPtr, size_t cb);
281#endif
282/** @} */
283
284
285/** @defgroup grp_mm_phys Guest Physical Memory Manager
286 * @todo retire this group, elimintating or moving MMR3PhysGetRamSize to PGMPhys.
287 * @{ */
288VMMR3DECL(uint64_t) MMR3PhysGetRamSize(PVM pVM);
289VMMR3DECL(uint32_t) MMR3PhysGetRamSizeBelow4GB(PVM pVM);
290VMMR3DECL(uint64_t) MMR3PhysGetRamSizeAbove4GB(PVM pVM);
291VMMR3DECL(uint32_t) MMR3PhysGet4GBRamHoleSize(PVM pVM);
292/** @} */
293
294
295/** @defgroup grp_mm_page Physical Page Pool (what's left of it)
296 * @{ */
297VMMR3DECL(void *) MMR3PageDummyHCPtr(PVM pVM);
298VMMR3DECL(RTHCPHYS) MMR3PageDummyHCPhys(PVM pVM);
299/** @} */
300
301
302/** @defgroup grp_mm_heap Heap Manager
303 * @{ */
304VMMR3DECL(void *) MMR3HeapAlloc(PVM pVM, MMTAG enmTag, size_t cbSize);
305VMMR3DECL(void *) MMR3HeapAllocU(PUVM pUVM, MMTAG enmTag, size_t cbSize);
306VMMR3DECL(int) MMR3HeapAllocEx(PVM pVM, MMTAG enmTag, size_t cbSize, void **ppv);
307VMMR3DECL(int) MMR3HeapAllocExU(PUVM pUVM, MMTAG enmTag, size_t cbSize, void **ppv);
308VMMR3DECL(void *) MMR3HeapAllocZ(PVM pVM, MMTAG enmTag, size_t cbSize);
309VMMR3DECL(void *) MMR3HeapAllocZU(PUVM pUVM, MMTAG enmTag, size_t cbSize);
310VMMR3DECL(int) MMR3HeapAllocZEx(PVM pVM, MMTAG enmTag, size_t cbSize, void **ppv);
311VMMR3DECL(int) MMR3HeapAllocZExU(PUVM pUVM, MMTAG enmTag, size_t cbSize, void **ppv);
312VMMR3DECL(void *) MMR3HeapRealloc(void *pv, size_t cbNewSize);
313VMMR3DECL(char *) MMR3HeapStrDup(PVM pVM, MMTAG enmTag, const char *psz);
314VMMR3DECL(char *) MMR3HeapStrDupU(PUVM pUVM, MMTAG enmTag, const char *psz);
315VMMR3DECL(char *) MMR3HeapAPrintf(PVM pVM, MMTAG enmTag, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4);
316VMMR3DECL(char *) MMR3HeapAPrintfU(PUVM pUVM, MMTAG enmTag, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4);
317VMMR3DECL(char *) MMR3HeapAPrintfV(PVM pVM, MMTAG enmTag, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(3, 0);
318VMMR3DECL(char *) MMR3HeapAPrintfVU(PUVM pUVM, MMTAG enmTag, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(3, 0);
319VMMR3DECL(void) MMR3HeapFree(void *pv);
320/** @} */
321
322/** @} */
323#endif /* IN_RING3 || DOXYGEN_RUNNING */
324
325
326/** @} */
327RT_C_DECLS_END
328
329
330#endif /* !VBOX_INCLUDED_vmm_mm_h */
331
Note: See TracBrowser for help on using the repository browser.

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