VirtualBox

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

Last change on this file since 54030 was 51906, checked in by vboxsync, 10 years ago

Fixing testcases on windows.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 7.9 KB
Line 
1/* $Id: tstMMHyperHeap.cpp 51906 2014-07-07 16:28:37Z vboxsync $ */
2/** @file
3 * MM Hypervisor Heap testcase.
4 */
5
6/*
7 * Copyright (C) 2006-2012 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* Header Files *
20*******************************************************************************/
21#include <VBox/vmm/mm.h>
22#include <VBox/vmm/stam.h>
23#include <VBox/vmm/vm.h>
24#include <VBox/vmm/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/* does not work for more CPUs as SUPR3LowAlloc() would refuse to allocate more pages */
37#define NUM_CPUS 16
38
39
40/**
41 * Entry point.
42 */
43extern "C" DECLEXPORT(int) TrustedMain(int argc, char **argv, char **envp)
44{
45
46 /*
47 * Init runtime.
48 */
49 RTR3InitExe(argc, &argv, 0);
50
51 /*
52 * Create empty VM structure and call MMR3Init().
53 */
54 PVM pVM;
55 RTR0PTR pvR0;
56 SUPPAGE aPages[RT_ALIGN_Z(sizeof(*pVM) + NUM_CPUS * sizeof(VMCPU), PAGE_SIZE) >> PAGE_SHIFT];
57 int rc = SUPR3Init(NULL);
58 if (RT_SUCCESS(rc))
59 rc = SUPR3LowAlloc(RT_ELEMENTS(aPages), (void **)&pVM, &pvR0, &aPages[0]);
60 if (RT_FAILURE(rc))
61 {
62 RTPrintf("Fatal error: SUP Failure! rc=%Rrc\n", rc);
63 return 1;
64 }
65 memset(pVM, 0, sizeof(*pVM)); /* wtf? */
66 pVM->paVMPagesR3 = aPages;
67 pVM->pVMR0 = pvR0;
68
69 static UVM s_UVM;
70 PUVM pUVM = &s_UVM;
71 pUVM->pVM = pVM;
72 pVM->pUVM = pUVM;
73
74 pVM->cCpus = NUM_CPUS;
75 pVM->cbSelf = RT_UOFFSETOF(VM, aCpus[pVM->cCpus]);
76
77 rc = STAMR3InitUVM(pUVM);
78 if (RT_FAILURE(rc))
79 {
80 RTPrintf("FAILURE: STAMR3Init failed. rc=%Rrc\n", rc);
81 return 1;
82 }
83
84 rc = MMR3InitUVM(pUVM);
85 if (RT_FAILURE(rc))
86 {
87 RTPrintf("FAILURE: STAMR3Init failed. rc=%Rrc\n", rc);
88 return 1;
89 }
90
91 rc = CFGMR3Init(pVM, NULL, NULL);
92 if (RT_FAILURE(rc))
93 {
94 RTPrintf("FAILURE: CFGMR3Init failed. rc=%Rrc\n", rc);
95 return 1;
96 }
97
98 rc = MMR3Init(pVM);
99 if (RT_FAILURE(rc))
100 {
101 RTPrintf("Fatal error: MMR3Init failed! rc=%Rrc\n", rc);
102 return 1;
103 }
104
105 /*
106 * Try allocate.
107 */
108 static struct
109 {
110 size_t cb;
111 unsigned uAlignment;
112 void *pvAlloc;
113 unsigned iFreeOrder;
114 } aOps[] =
115 {
116 { 16, 0, NULL, 0 },
117 { 16, 4, NULL, 1 },
118 { 16, 8, NULL, 2 },
119 { 16, 16, NULL, 5 },
120 { 16, 32, NULL, 4 },
121 { 32, 0, NULL, 3 },
122 { 31, 0, NULL, 6 },
123 { 1024, 0, NULL, 8 },
124 { 1024, 32, NULL, 10 },
125 { 1024, 32, NULL, 12 },
126 { PAGE_SIZE, PAGE_SIZE, NULL, 13 },
127 { 1024, 32, NULL, 9 },
128 { PAGE_SIZE, 32, NULL, 11 },
129 { PAGE_SIZE, PAGE_SIZE, NULL, 14 },
130 { 16, 0, NULL, 15 },
131 { 9, 0, NULL, 7 },
132 { 16, 0, NULL, 7 },
133 { 36, 0, NULL, 7 },
134 { 16, 0, NULL, 7 },
135 { 12344, 0, NULL, 7 },
136 { 50, 0, NULL, 7 },
137 { 16, 0, NULL, 7 },
138 };
139 unsigned i;
140#ifdef DEBUG
141 MMHyperHeapDump(pVM);
142#endif
143 size_t cbBefore = MMHyperHeapGetFreeSize(pVM);
144 static char szFill[] = "01234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
145
146 /* allocate */
147 for (i = 0; i < RT_ELEMENTS(aOps); i++)
148 {
149 rc = MMHyperAlloc(pVM, aOps[i].cb, aOps[i].uAlignment, MM_TAG_VM, &aOps[i].pvAlloc);
150 if (RT_FAILURE(rc))
151 {
152 RTPrintf("Failure: MMHyperAlloc(, %#x, %#x,) -> %d i=%d\n", aOps[i].cb, aOps[i].uAlignment, rc, i);
153 return 1;
154 }
155 memset(aOps[i].pvAlloc, szFill[i], aOps[i].cb);
156 if (RT_ALIGN_P(aOps[i].pvAlloc, (aOps[i].uAlignment ? aOps[i].uAlignment : 8)) != aOps[i].pvAlloc)
157 {
158 RTPrintf("Failure: MMHyperAlloc(, %#x, %#x,) -> %p, invalid alignment!\n", aOps[i].cb, aOps[i].uAlignment, aOps[i].pvAlloc);
159 return 1;
160 }
161 }
162
163 /* free and allocate the same node again. */
164 for (i = 0; i < RT_ELEMENTS(aOps); i++)
165 {
166 if ( !aOps[i].pvAlloc
167 || aOps[i].uAlignment == PAGE_SIZE)
168 continue;
169 //size_t cbBeforeSub = MMHyperHeapGetFreeSize(pVM);
170 rc = MMHyperFree(pVM, aOps[i].pvAlloc);
171 if (RT_FAILURE(rc))
172 {
173 RTPrintf("Failure: MMHyperFree(, %p,) -> %d i=%d\n", aOps[i].pvAlloc, rc, i);
174 return 1;
175 }
176 //RTPrintf("debug: i=%d cbBeforeSub=%d now=%d\n", i, cbBeforeSub, MMHyperHeapGetFreeSize(pVM));
177 void *pv;
178 rc = MMHyperAlloc(pVM, aOps[i].cb, aOps[i].uAlignment, MM_TAG_VM_REQ, &pv);
179 if (RT_FAILURE(rc))
180 {
181 RTPrintf("Failure: MMHyperAlloc(, %#x, %#x,) -> %d i=%d\n", aOps[i].cb, aOps[i].uAlignment, rc, i);
182 return 1;
183 }
184 if (pv != aOps[i].pvAlloc)
185 {
186 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);
187 //return 1;
188 }
189 aOps[i].pvAlloc = pv;
190 #if 0 /* won't work :/ */
191 size_t cbAfterSub = MMHyperHeapGetFreeSize(pVM);
192 if (cbBeforeSub != cbAfterSub)
193 {
194 RTPrintf("Failure: cbBeforeSub=%d cbAfterSub=%d. i=%d\n", cbBeforeSub, cbAfterSub, i);
195 return 1;
196 }
197 #endif
198 }
199
200 /* free it in a specific order. */
201 int cFreed = 0;
202 for (i = 0; i < RT_ELEMENTS(aOps); i++)
203 {
204 unsigned j;
205 for (j = 0; j < RT_ELEMENTS(aOps); j++)
206 {
207 if ( aOps[j].iFreeOrder != i
208 || !aOps[j].pvAlloc)
209 continue;
210 RTPrintf("j=%d i=%d free=%d cb=%d pv=%p\n", j, i, MMHyperHeapGetFreeSize(pVM), aOps[j].cb, aOps[j].pvAlloc);
211 if (aOps[j].uAlignment == PAGE_SIZE)
212 cbBefore -= aOps[j].cb;
213 else
214 {
215 rc = MMHyperFree(pVM, aOps[j].pvAlloc);
216 if (RT_FAILURE(rc))
217 {
218 RTPrintf("Failure: MMHyperFree(, %p,) -> %d j=%d i=%d\n", aOps[j].pvAlloc, rc, i, j);
219 return 1;
220 }
221 }
222 aOps[j].pvAlloc = NULL;
223 cFreed++;
224 }
225 }
226 Assert(cFreed == RT_ELEMENTS(aOps));
227 RTPrintf("i=done free=%d\n", MMHyperHeapGetFreeSize(pVM));
228
229 /* check that we're back at the right amount of free memory. */
230 size_t cbAfter = MMHyperHeapGetFreeSize(pVM);
231 if (cbBefore != cbAfter)
232 {
233 RTPrintf("Warning: Either we've split out an alignment chunk at the start, or we've got\n"
234 " an alloc/free accounting bug: cbBefore=%d cbAfter=%d\n", cbBefore, cbAfter);
235#ifdef DEBUG
236 MMHyperHeapDump(pVM);
237#endif
238 }
239
240 RTPrintf("tstMMHyperHeap: Success\n");
241#ifdef LOG_ENABLED
242 RTLogFlush(NULL);
243#endif
244 return 0;
245}
246
247
248#if !defined(VBOX_WITH_HARDENING) || !defined(RT_OS_WINDOWS)
249/**
250 * Main entry point.
251 */
252int main(int argc, char **argv, char **envp)
253{
254 return TrustedMain(argc, argv, envp);
255}
256#endif
257
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