VirtualBox

source: vbox/trunk/src/VBox/VMM/testcase/tstMMHyperHeap.cpp@ 6796

Last change on this file since 6796 was 6796, checked in by vboxsync, 17 years ago

Fixed init problems wrt. VM ownership by implementing the UVM structure (U = user mode) and moving problematic ring-3 stuff over there (emt+reqs, r3heap, stam, loader[VMMR0.r0]). Big change, but it works fine here... :-)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 7.2 KB
Line 
1/* $Id: tstMMHyperHeap.cpp 6796 2008-02-04 18:19:58Z vboxsync $ */
2/** @file
3 * MM Hypervisor Heap testcase.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
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* Header Files *
20*******************************************************************************/
21#include <VBox/mm.h>
22#include <VBox/stam.h>
23#include <VBox/vm.h>
24#include <VBox/uvm.h>
25#include <VBox/sup.h>
26#include <VBox/param.h>
27#include <VBox/err.h>
28
29#include <VBox/log.h>
30#include <iprt/initterm.h>
31#include <iprt/mem.h>
32#include <iprt/assert.h>
33#include <iprt/stream.h>
34#include <iprt/string.h>
35
36
37int main(int argc, char **argv)
38{
39
40 /*
41 * Init runtime.
42 */
43 RTR3Init();
44
45 /*
46 * Create empty VM structure and call MMR3Init().
47 */
48 PVM pVM;
49 RTR0PTR pvR0;
50 SUPPAGE aPages[RT_ALIGN_Z(sizeof(*pVM), PAGE_SIZE) >> PAGE_SHIFT];
51 int rc = SUPInit(NULL);
52 if (VBOX_SUCCESS(rc))
53 rc = SUPLowAlloc(RT_ELEMENTS(aPages), (void **)&pVM, &pvR0, &aPages[0]);
54 if (VBOX_FAILURE(rc))
55 {
56 RTPrintf("Fatal error: SUP Failure! rc=%Vrc\n", rc);
57 return 1;
58 }
59 memset(pVM, 0, sizeof(*pVM)); /* wtf? */
60 pVM->paVMPagesR3 = aPages;
61 pVM->pVMR0 = pvR0;
62
63 static UVM s_UVM;
64 PUVM pUVM = &s_UVM;
65 pUVM->pVM = pVM;
66 pVM->pUVM = pUVM;
67
68 rc = STAMR3InitUVM(pUVM);
69 if (VBOX_FAILURE(rc))
70 {
71 RTPrintf("FAILURE: STAMR3Init failed. rc=%Vrc\n", rc);
72 return 1;
73 }
74
75 rc = MMR3InitUVM(pUVM);
76 if (VBOX_FAILURE(rc))
77 {
78 RTPrintf("FAILURE: STAMR3Init failed. rc=%Vrc\n", rc);
79 return 1;
80 }
81
82 rc = MMR3Init(pVM);
83 if (VBOX_FAILURE(rc))
84 {
85 RTPrintf("Fatal error: MMR3Init failed! rc=%Vrc\n", rc);
86 return 1;
87 }
88
89 /*
90 * Try allocate.
91 */
92 static struct
93 {
94 size_t cb;
95 unsigned uAlignment;
96 void *pvAlloc;
97 unsigned iFreeOrder;
98 } aOps[] =
99 {
100 { 16, 0, NULL, 0 },
101 { 16, 4, NULL, 1 },
102 { 16, 8, NULL, 2 },
103 { 16, 16, NULL, 5 },
104 { 16, 32, NULL, 4 },
105 { 32, 0, NULL, 3 },
106 { 31, 0, NULL, 6 },
107 { 1024, 0, NULL, 8 },
108 { 1024, 32, NULL, 10 },
109 { 1024, 32, NULL, 12 },
110 { PAGE_SIZE, PAGE_SIZE, NULL, 13 },
111 { 1024, 32, NULL, 9 },
112 { PAGE_SIZE, 32, NULL, 11 },
113 { PAGE_SIZE, PAGE_SIZE, NULL, 14 },
114 { 16, 0, NULL, 15 },
115 { 9, 0, NULL, 7 },
116 { 16, 0, NULL, 7 },
117 { 36, 0, NULL, 7 },
118 { 16, 0, NULL, 7 },
119 { 12344, 0, NULL, 7 },
120 { 50, 0, NULL, 7 },
121 { 16, 0, NULL, 7 },
122 };
123 unsigned i;
124#ifdef DEBUG
125 MMHyperHeapDump(pVM);
126#endif
127 size_t cbBefore = MMHyperHeapGetFreeSize(pVM);
128 static char szFill[] = "01234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
129
130 /* allocate */
131 for (i = 0; i < ELEMENTS(aOps); i++)
132 {
133 rc = MMHyperAlloc(pVM, aOps[i].cb, aOps[i].uAlignment, MM_TAG_VM, &aOps[i].pvAlloc);
134 if (VBOX_FAILURE(rc))
135 {
136 RTPrintf("Failure: MMHyperAlloc(, %#x, %#x,) -> %d i=%d\n", aOps[i].cb, aOps[i].uAlignment, rc, i);
137 return 1;
138 }
139 memset(aOps[i].pvAlloc, szFill[i], aOps[i].cb);
140 if (RT_ALIGN_P(aOps[i].pvAlloc, (aOps[i].uAlignment ? aOps[i].uAlignment : 8)) != aOps[i].pvAlloc)
141 {
142 RTPrintf("Failure: MMHyperAlloc(, %#x, %#x,) -> %p, invalid alignment!\n", aOps[i].cb, aOps[i].uAlignment, aOps[i].pvAlloc);
143 return 1;
144 }
145 }
146
147 /* free and allocate the same node again. */
148 for (i = 0; i < ELEMENTS(aOps); i++)
149 {
150 if ( !aOps[i].pvAlloc
151 || aOps[i].uAlignment == PAGE_SIZE)
152 continue;
153 //size_t cbBeforeSub = MMHyperHeapGetFreeSize(pVM);
154 rc = MMHyperFree(pVM, aOps[i].pvAlloc);
155 if (VBOX_FAILURE(rc))
156 {
157 RTPrintf("Failure: MMHyperFree(, %p,) -> %d i=%d\n", aOps[i].pvAlloc, rc, i);
158 return 1;
159 }
160 //RTPrintf("debug: i=%d cbBeforeSub=%d now=%d\n", i, cbBeforeSub, MMHyperHeapGetFreeSize(pVM));
161 void *pv;
162 rc = MMHyperAlloc(pVM, aOps[i].cb, aOps[i].uAlignment, MM_TAG_VM_REQ, &pv);
163 if (VBOX_FAILURE(rc))
164 {
165 RTPrintf("Failure: MMHyperAlloc(, %#x, %#x,) -> %d i=%d\n", aOps[i].cb, aOps[i].uAlignment, rc, i);
166 return 1;
167 }
168 if (pv != aOps[i].pvAlloc)
169 {
170 RTPrintf("Failure: Free+Alloc returned different address. new=%p old=%p i=%d (doesn't work with delayed free)\n", pv, aOps[i].pvAlloc, i);
171 //return 1;
172 }
173 aOps[i].pvAlloc = pv;
174 #if 0 /* won't work :/ */
175 size_t cbAfterSub = MMHyperHeapGetFreeSize(pVM);
176 if (cbBeforeSub != cbAfterSub)
177 {
178 RTPrintf("Failure: cbBeforeSub=%d cbAfterSub=%d. i=%d\n", cbBeforeSub, cbAfterSub, i);
179 return 1;
180 }
181 #endif
182 }
183
184 /* free it in a specific order. */
185 int cFreed = 0;
186 for (i = 0; i < ELEMENTS(aOps); i++)
187 {
188 unsigned j;
189 for (j = 0; j < ELEMENTS(aOps); j++)
190 {
191 if ( aOps[j].iFreeOrder != i
192 || !aOps[j].pvAlloc)
193 continue;
194 RTPrintf("j=%d i=%d free=%d cb=%d pv=%p\n", j, i, MMHyperHeapGetFreeSize(pVM), aOps[j].cb, aOps[j].pvAlloc);
195 if (aOps[j].uAlignment == PAGE_SIZE)
196 cbBefore -= aOps[j].cb;
197 else
198 {
199 rc = MMHyperFree(pVM, aOps[j].pvAlloc);
200 if (VBOX_FAILURE(rc))
201 {
202 RTPrintf("Failure: MMHyperFree(, %p,) -> %d j=%d i=%d\n", aOps[j].pvAlloc, rc, i, j);
203 return 1;
204 }
205 }
206 aOps[j].pvAlloc = NULL;
207 cFreed++;
208 }
209 }
210 Assert(cFreed == ELEMENTS(aOps));
211 RTPrintf("i=done free=%d\n", MMHyperHeapGetFreeSize(pVM));
212
213 /* check that we're back at the right amount of free memory. */
214 size_t cbAfter = MMHyperHeapGetFreeSize(pVM);
215 if (cbBefore != cbAfter)
216 {
217 RTPrintf("Warning: Either we've split out an alignment chunk at the start, or we've got\n"
218 " an alloc/free accounting bug: cbBefore=%d cbAfter=%d\n", cbBefore, cbAfter);
219#ifdef DEBUG
220 MMHyperHeapDump(pVM);
221#endif
222 }
223
224 RTPrintf("tstMMHyperHeap: Success\n");
225#ifdef LOG_ENABLED
226 RTLogFlush(NULL);
227#endif
228 return 0;
229}
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