VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/testcase/tstPin.cpp@ 4672

Last change on this file since 4672 was 4071, checked in by vboxsync, 18 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.1 KB
Line 
1/** @file
2 *
3 * VBox host drivers - Ring-0 support drivers - Testcases:
4 * Test the memory locking interface
5 */
6
7/*
8 * Copyright (C) 2006-2007 innotek GmbH
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License as published by the Free Software Foundation,
14 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
15 * distribution. VirtualBox OSE is distributed in the hope that it will
16 * be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19
20/*******************************************************************************
21* Header Files *
22*******************************************************************************/
23#include <VBox/sup.h>
24#include <VBox/param.h>
25#include <iprt/runtime.h>
26#include <iprt/stream.h>
27#include <stdlib.h>
28#include <string.h>
29
30
31int main(int argc, char **argv)
32{
33 int rc;
34 int rcRet = 0;
35 RTHCPHYS HCPhys;
36 void *pv;
37
38 RTR3Init(true, ~0);
39 rc = SUPInit(NULL, ~0);
40 RTPrintf("SUPInit -> rc=%d\n", rc);
41 rcRet += rc != 0;
42 if (!rc)
43 {
44 static struct
45 {
46 void *pv;
47 void *pvAligned;
48 SUPPAGE aPages[16];
49 } aPinnings[500];
50 for (unsigned i = 0; i < sizeof(aPinnings) / sizeof(aPinnings[0]); i++)
51 {
52 aPinnings[i].pv = NULL;
53 SUPPageAlloc(0x10000 >> PAGE_SHIFT, &aPinnings[i].pv);
54 aPinnings[i].pvAligned = ALIGNP(aPinnings[i].pv, PAGE_SIZE);
55 rc = SUPPageLock(aPinnings[i].pvAligned, 0xf000 >> PAGE_SHIFT, &aPinnings[i].aPages[0]);
56 if (!rc)
57 {
58 RTPrintf("i=%d: pvAligned=%p pv=%p:\n", i, aPinnings[i].pvAligned, aPinnings[i].pv);
59 memset(aPinnings[i].pv, 0xfa, 0x10000);
60 unsigned c4GPluss = 0;
61 for (unsigned j = 0; j < (0xf000 >> PAGE_SHIFT); j++)
62 if (aPinnings[i].aPages[j].Phys >= _4G)
63 {
64 RTPrintf("%2d: vrt=%p phys=%VHp\n", j, (char *)aPinnings[i].pvAligned + (j << PAGE_SHIFT), aPinnings[i].aPages[j].Phys);
65 c4GPluss++;
66 }
67 RTPrintf("i=%d: c4GPluss=%d\n", i, c4GPluss);
68 }
69 else
70 {
71 RTPrintf("SUPPageLock -> rc=%d\n", rc);
72 rcRet++;
73 SUPPageFree(aPinnings[i].pv, 0x10000 >> PAGE_SHIFT);
74 aPinnings[i].pv = aPinnings[i].pvAligned = NULL;
75 break;
76 }
77 }
78
79 for (unsigned i = 0; i < sizeof(aPinnings) / sizeof(aPinnings[0]); i += 2)
80 {
81 if (aPinnings[i].pvAligned)
82 {
83 rc = SUPPageUnlock(aPinnings[i].pvAligned);
84 if (rc)
85 {
86 RTPrintf("SUPPageUnlock(%p) -> rc=%d\n", aPinnings[i].pvAligned, rc);
87 rcRet++;
88 }
89 memset(aPinnings[i].pv, 0xaf, 0x10000);
90 }
91 }
92
93 for (unsigned i = 0; i < sizeof(aPinnings) / sizeof(aPinnings[0]); i += 2)
94 {
95 if (aPinnings[i].pv)
96 {
97 memset(aPinnings[i].pv, 0xcc, 0x10000);
98 SUPPageFree(aPinnings[i].pv, 0x10000 >> PAGE_SHIFT);
99 aPinnings[i].pv = NULL;
100 }
101 }
102
103
104 /*
105 * Allocate a bit of contiguous memory.
106 */
107 pv = SUPContAlloc(RT_ALIGN_Z(15003, PAGE_SIZE) >> PAGE_SHIFT, &HCPhys);
108 rcRet += pv == NULL || HCPhys == 0;
109 if (pv && HCPhys)
110 {
111 RTPrintf("SUPContAlloc(15003) -> HCPhys=%llx pv=%p\n", HCPhys, pv);
112 void *pv0 = pv;
113 memset(pv0, 0xaf, 15003);
114 pv = SUPContAlloc(RT_ALIGN_Z(12999, PAGE_SIZE) >> PAGE_SHIFT, &HCPhys);
115 rcRet += pv == NULL || HCPhys == 0;
116 if (pv && HCPhys)
117 {
118 RTPrintf("SUPContAlloc(12999) -> HCPhys=%llx pv=%p\n", HCPhys, pv);
119 memset(pv, 0xbf, 12999);
120 rc = SUPContFree(pv, RT_ALIGN_Z(12999, PAGE_SIZE) >> PAGE_SHIFT);
121 rcRet += rc != 0;
122 if (rc)
123 RTPrintf("SUPContFree failed! rc=%d\n", rc);
124 }
125 else
126 RTPrintf("SUPContAlloc (2nd) failed!\n");
127 memset(pv0, 0xaf, 15003);
128 /* pv0 is intentionally not freed! */
129 }
130 else
131 RTPrintf("SUPContAlloc failed!\n");
132
133 /*
134 * Allocate a big chunk of virtual memory and then lock it.
135 */
136 #define BIG_SIZE 72*1024*1024
137 #define BIG_SIZEPP (BIG_SIZE + PAGE_SIZE)
138 pv = NULL;
139 SUPPageAlloc(BIG_SIZEPP >> PAGE_SHIFT, &pv);
140 if (pv)
141 {
142 static SUPPAGE aPages[BIG_SIZE >> PAGE_SHIFT];
143 void *pvAligned = RT_ALIGN_P(pv, PAGE_SIZE);
144 rc = SUPPageLock(pvAligned, BIG_SIZE >> PAGE_SHIFT, &aPages[0]);
145 if (!rc)
146 {
147 /* dump */
148 RTPrintf("SUPPageLock(%p,%d,) succeeded!\n", pvAligned, BIG_SIZE);
149 memset(pv, 0x42, BIG_SIZEPP);
150 #if 0
151 for (unsigned j = 0; j < (BIG_SIZE >> PAGE_SHIFT); j++)
152 RTPrintf("%2d: vrt=%p phys=%08x\n", j, (char *)pvAligned + (j << PAGE_SHIFT), (uintptr_t)aPages[j].pvPhys);
153 #endif
154
155 /* unlock */
156 rc = SUPPageUnlock(pvAligned);
157 if (rc)
158 {
159 RTPrintf("SUPPageUnlock(%p) -> rc=%d\n", pvAligned, rc);
160 rcRet++;
161 }
162 memset(pv, 0xcc, BIG_SIZEPP);
163 }
164 else
165 {
166 RTPrintf("SUPPageLock(%p) -> rc=%d\n", pvAligned, rc);
167 rcRet++;
168 }
169 SUPPageFree(pv, BIG_SIZEPP >> PAGE_SHIFT);
170 }
171
172 rc = SUPTerm();
173 RTPrintf("SUPTerm -> rc=%d\n", rc);
174 rcRet += rc != 0;
175 }
176
177 return rcRet;
178}
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