VirtualBox

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

Last change on this file since 91000 was 90991, checked in by vboxsync, 3 years ago

VMM: Eliminated VMMCALLRING3_MMHYPER_LOCK. bugref:6695

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.9 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);
203VMMDECL(int) MMHyperDupMem(PVMCC pVM, const void *pvSrc, size_t cb, unsigned uAlignment, MMTAG enmTag, void **ppv);
204VMMDECL(int) MMHyperFree(PVMCC pVM, void *pv);
205VMMDECL(void) MMHyperHeapCheck(PVMCC pVM);
206#ifdef DEBUG
207VMMDECL(void) MMHyperHeapDump(PVM pVM);
208#endif
209VMMDECL(size_t) MMHyperHeapGetFreeSize(PVM pVM);
210VMMDECL(size_t) MMHyperHeapGetSize(PVM pVM);
211VMMDECL(void *) MMHyperHeapOffsetToPtr(PVM pVM, uint32_t offHeap);
212VMMDECL(uint32_t) MMHyperHeapPtrToOffset(PVM pVM, void *pv);
213VMMDECL(RTGCPTR) MMHyperGetArea(PVM pVM, size_t *pcb);
214VMMDECL(bool) MMHyperIsInsideArea(PVM pVM, RTGCPTR GCPtr);
215
216#if 0
217VMMDECL(RTHCPHYS) MMPage2Phys(PVM pVM, void *pvPage);
218VMMDECL(void *) MMPagePhys2Page(PVM pVM, RTHCPHYS HCPhysPage);
219VMMDECL(int) MMPagePhys2PageEx(PVM pVM, RTHCPHYS HCPhysPage, void **ppvPage);
220VMMDECL(int) MMPagePhys2PageTry(PVM pVM, RTHCPHYS HCPhysPage, void **ppvPage);
221#endif
222
223
224/** @def MMHYPER_RC_ASSERT_RCPTR
225 * Asserts that an address is either NULL or inside the hypervisor memory area.
226 * This assertion only works while IN_RC, it's a NOP everywhere else.
227 * @thread The Emulation Thread.
228 */
229#define MMHYPER_RC_ASSERT_RCPTR(pVM, RCPtr) do { } while (0)
230
231/** @} */
232
233
234#if defined(IN_RING3) || defined(DOXYGEN_RUNNING)
235/** @defgroup grp_mm_r3 The MM Host Context Ring-3 API
236 * @{
237 */
238
239VMMR3DECL(int) MMR3InitUVM(PUVM pUVM);
240VMMR3DECL(int) MMR3Init(PVM pVM);
241VMMR3DECL(int) MMR3InitPaging(PVM pVM);
242VMMR3DECL(int) MMR3HyperInitFinalize(PVM pVM);
243VMMR3DECL(int) MMR3Term(PVM pVM);
244VMMR3DECL(void) MMR3TermUVM(PUVM pUVM);
245VMMR3_INT_DECL(bool) MMR3IsInitialized(PVM pVM);
246VMMR3DECL(int) MMR3ReserveHandyPages(PVM pVM, uint32_t cHandyPages);
247VMMR3DECL(int) MMR3IncreaseBaseReservation(PVM pVM, uint64_t cAddBasePages);
248VMMR3DECL(int) MMR3AdjustFixedReservation(PVM pVM, int32_t cDeltaFixedPages, const char *pszDesc);
249VMMR3DECL(int) MMR3UpdateShadowReservation(PVM pVM, uint32_t cShadowPages);
250
251VMMR3DECL(int) MMR3HCPhys2HCVirt(PVM pVM, RTHCPHYS HCPhys, void **ppv);
252
253/** @defgroup grp_mm_r3_hyper Hypervisor Memory Manager (HC R3 Portion)
254 * @{ */
255VMMR3DECL(int) MMR3HyperAllocOnceNoRel(PVM pVM, size_t cb, uint32_t uAlignment, MMTAG enmTag, void **ppv);
256VMMR3DECL(int) MMR3HyperAllocOnceNoRelEx(PVM pVM, size_t cb, uint32_t uAlignment, MMTAG enmTag, uint32_t fFlags, void **ppv);
257VMMR3DECL(int) MMR3HyperRealloc(PVM pVM, void *pv, size_t cb, unsigned uAlignmentNew, MMTAG enmTagNew, size_t cbNew, void **ppv);
258/** @name MMR3HyperAllocOnceNoRelEx flags
259 * @{ */
260/** Must have kernel mapping.
261 * If not specified, the R0 pointer may point to the user process mapping. */
262#define MMHYPER_AONR_FLAGS_KERNEL_MAPPING RT_BIT(0)
263/** @} */
264VMMR3DECL(int) MMR3HyperSetGuard(PVM pVM, void *pvStart, size_t cb, bool fSet);
265#ifndef PGM_WITHOUT_MAPPINGS
266VMMR3DECL(int) MMR3HyperMapHCPhys(PVM pVM, void *pvR3, RTR0PTR pvR0, RTHCPHYS HCPhys, size_t cb, const char *pszDesc, PRTGCPTR pGCPtr);
267VMMR3DECL(int) MMR3HyperMapGCPhys(PVM pVM, RTGCPHYS GCPhys, size_t cb, const char *pszDesc, PRTGCPTR pGCPtr);
268VMMR3DECL(int) MMR3HyperReserve(PVM pVM, unsigned cb, const char *pszDesc, PRTGCPTR pGCPtr);
269#endif
270VMMR3DECL(int) MMR3HyperMapPages(PVM pVM, void *pvR3, RTR0PTR pvR0, size_t cPages, PCSUPPAGE paPages, const char *pszDesc, PRTGCPTR pGCPtr);
271VMMR3DECL(int) MMR3HyperReserveFence(PVM pVM);
272VMMR3DECL(RTHCPHYS) MMR3HyperHCVirt2HCPhys(PVM pVM, void *pvHC);
273VMMR3DECL(int) MMR3HyperHCVirt2HCPhysEx(PVM pVM, void *pvHC, PRTHCPHYS pHCPhys);
274#ifndef PGM_WITHOUT_MAPPINGS
275VMMR3_INT_DECL(int) MMR3HyperQueryInfoFromHCPhys(PVM pVM, RTHCPHYS HCPhys, char *pszWhat, size_t cbWhat, uint32_t *pcbAlloc);
276VMMR3DECL(int) MMR3HyperReadGCVirt(PVM pVM, void *pvDst, RTGCPTR GCPtr, size_t cb);
277#endif
278/** @} */
279
280
281/** @defgroup grp_mm_phys Guest Physical Memory Manager
282 * @todo retire this group, elimintating or moving MMR3PhysGetRamSize to PGMPhys.
283 * @{ */
284VMMR3DECL(uint64_t) MMR3PhysGetRamSize(PVM pVM);
285VMMR3DECL(uint32_t) MMR3PhysGetRamSizeBelow4GB(PVM pVM);
286VMMR3DECL(uint64_t) MMR3PhysGetRamSizeAbove4GB(PVM pVM);
287VMMR3DECL(uint32_t) MMR3PhysGet4GBRamHoleSize(PVM pVM);
288/** @} */
289
290
291/** @defgroup grp_mm_page Physical Page Pool (what's left of it)
292 * @{ */
293VMMR3DECL(void *) MMR3PageDummyHCPtr(PVM pVM);
294VMMR3DECL(RTHCPHYS) MMR3PageDummyHCPhys(PVM pVM);
295/** @} */
296
297
298/** @defgroup grp_mm_heap Heap Manager
299 * @{ */
300VMMR3DECL(void *) MMR3HeapAlloc(PVM pVM, MMTAG enmTag, size_t cbSize);
301VMMR3DECL(void *) MMR3HeapAllocU(PUVM pUVM, MMTAG enmTag, size_t cbSize);
302VMMR3DECL(int) MMR3HeapAllocEx(PVM pVM, MMTAG enmTag, size_t cbSize, void **ppv);
303VMMR3DECL(int) MMR3HeapAllocExU(PUVM pUVM, MMTAG enmTag, size_t cbSize, void **ppv);
304VMMR3DECL(void *) MMR3HeapAllocZ(PVM pVM, MMTAG enmTag, size_t cbSize);
305VMMR3DECL(void *) MMR3HeapAllocZU(PUVM pUVM, MMTAG enmTag, size_t cbSize);
306VMMR3DECL(int) MMR3HeapAllocZEx(PVM pVM, MMTAG enmTag, size_t cbSize, void **ppv);
307VMMR3DECL(int) MMR3HeapAllocZExU(PUVM pUVM, MMTAG enmTag, size_t cbSize, void **ppv);
308VMMR3DECL(void *) MMR3HeapRealloc(void *pv, size_t cbNewSize);
309VMMR3DECL(char *) MMR3HeapStrDup(PVM pVM, MMTAG enmTag, const char *psz);
310VMMR3DECL(char *) MMR3HeapStrDupU(PUVM pUVM, MMTAG enmTag, const char *psz);
311VMMR3DECL(char *) MMR3HeapAPrintf(PVM pVM, MMTAG enmTag, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4);
312VMMR3DECL(char *) MMR3HeapAPrintfU(PUVM pUVM, MMTAG enmTag, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4);
313VMMR3DECL(char *) MMR3HeapAPrintfV(PVM pVM, MMTAG enmTag, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(3, 0);
314VMMR3DECL(char *) MMR3HeapAPrintfVU(PUVM pUVM, MMTAG enmTag, const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(3, 0);
315VMMR3DECL(void) MMR3HeapFree(void *pv);
316/** @} */
317
318/** @defgroup grp_mm_ukheap User-kernel Heap Manager.
319 *
320 * The memory is safely accessible from kernel context as well as user land.
321 *
322 * @{ */
323VMMR3DECL(void *) MMR3UkHeapAlloc(PVM pVM, MMTAG enmTag, size_t cbSize, PRTR0PTR pR0Ptr);
324VMMR3DECL(int) MMR3UkHeapAllocEx(PVM pVM, MMTAG enmTag, size_t cbSize, void **ppv, PRTR0PTR pR0Ptr);
325VMMR3DECL(void *) MMR3UkHeapAllocZ(PVM pVM, MMTAG enmTag, size_t cbSize, PRTR0PTR pR0Ptr);
326VMMR3DECL(int) MMR3UkHeapAllocZEx(PVM pVM, MMTAG enmTag, size_t cbSize, void **ppv, PRTR0PTR pR0Ptr);
327VMMR3DECL(void) MMR3UkHeapFree(PVM pVM, void *pv, MMTAG enmTag);
328/** @} */
329
330/** @} */
331#endif /* IN_RING3 || DOXYGEN_RUNNING */
332
333
334/** @} */
335RT_C_DECLS_END
336
337
338#endif /* !VBOX_INCLUDED_vmm_mm_h */
339
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