VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstLdr-4.cpp@ 36549

Last change on this file since 36549 was 33269, checked in by vboxsync, 14 years ago

IPRT: A quick replacement of the RTMemPage* and RTMemExec* APIs on posix. (Turned out to be a bit more work than expected because of the electric fence heap and init dependencies.)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 8.2 KB
Line 
1/* $Id: tstLdr-4.cpp 33269 2010-10-20 15:42:28Z vboxsync $ */
2/** @file
3 * IPRT - Testcase for RTLdrOpen using ldrLdrObjR0.r0.
4 */
5
6/*
7 * Copyright (C) 2006-2007 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 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*******************************************************************************
29* Header Files *
30*******************************************************************************/
31#include <iprt/ldr.h>
32#include <iprt/alloc.h>
33#include <iprt/log.h>
34#include <iprt/stream.h>
35#include <iprt/assert.h>
36#include <iprt/param.h>
37#include <iprt/path.h>
38#include <iprt/initterm.h>
39#include <iprt/err.h>
40#include <iprt/string.h>
41
42
43extern "C" DECLEXPORT(int) DisasmTest1(void);
44
45
46/**
47 * Resolve an external symbol during RTLdrGetBits().
48 *
49 * @returns iprt status code.
50 * @param hLdrMod The loader module handle.
51 * @param pszModule Module name.
52 * @param pszSymbol Symbol name, NULL if uSymbol should be used.
53 * @param uSymbol Symbol ordinal, ~0 if pszSymbol should be used.
54 * @param pValue Where to store the symbol value (address).
55 * @param pvUser User argument.
56 */
57static DECLCALLBACK(int) testGetImport(RTLDRMOD hLdrMod, const char *pszModule, const char *pszSymbol, unsigned uSymbol, RTUINTPTR *pValue, void *pvUser)
58{
59 if ( !strcmp(pszSymbol, "RTAssertMsg1Weak") || !strcmp(pszSymbol, "_RTAssertMsg1Weak"))
60 *pValue = (uintptr_t)RTAssertMsg1Weak;
61 else if (!strcmp(pszSymbol, "RTAssertMsg2Weak") || !strcmp(pszSymbol, "_RTAssertMsg2Weak"))
62 *pValue = (uintptr_t)RTAssertMsg1Weak;
63 else if (!strcmp(pszSymbol, "RTLogDefaultInstance") || !strcmp(pszSymbol, "_RTLogDefaultInstance"))
64 *pValue = (uintptr_t)RTLogDefaultInstance;
65 else if (!strcmp(pszSymbol, "RTLogLoggerExV") || !strcmp(pszSymbol, "_RTLogLoggerExV"))
66 *pValue = (uintptr_t)RTLogLoggerExV;
67 else if (!strcmp(pszSymbol, "RTLogPrintfV") || !strcmp(pszSymbol, "_RTLogPrintfV"))
68 *pValue = (uintptr_t)RTLogPrintfV;
69 else if (!strcmp(pszSymbol, "RTR0AssertPanicSystem")|| !strcmp(pszSymbol, "_RTR0AssertPanicSystem"))
70 *pValue = (uintptr_t)0;
71 else if (!strcmp(pszSymbol, "MyPrintf") || !strcmp(pszSymbol, "_MyPrintf"))
72 *pValue = (uintptr_t)RTPrintf;
73 else
74 {
75 RTPrintf("tstLdr-4: Unexpected import '%s'!\n", pszSymbol);
76 return VERR_SYMBOL_NOT_FOUND;
77 }
78 return VINF_SUCCESS;
79}
80
81
82/**
83 * One test iteration with one file.
84 *
85 * The test is very simple, we load the file three times
86 * into two different regions. The first two into each of the
87 * regions the for compare usage. The third is loaded into one
88 * and then relocated between the two and other locations a few times.
89 *
90 * @returns number of errors.
91 * @param pszFilename The file to load the mess with.
92 */
93static int testLdrOne(const char *pszFilename)
94{
95 int cErrors = 0;
96 size_t cbImage = 0;
97 struct Load
98 {
99 RTLDRMOD hLdrMod;
100 void *pvBits;
101 size_t cbBits;
102 const char *pszName;
103 } aLoads[6] =
104 {
105 { NULL, NULL, 0, "foo" },
106 { NULL, NULL, 0, "bar" },
107 { NULL, NULL, 0, "foobar" },
108 { NULL, NULL, 0, "kLdr-foo" },
109 { NULL, NULL, 0, "kLdr-bar" },
110 { NULL, NULL, 0, "kLdr-foobar" }
111 };
112 unsigned i;
113 int rc;
114
115 /*
116 * Load them.
117 */
118 for (i = 0; i < RT_ELEMENTS(aLoads); i++)
119 {
120 if (!strncmp(aLoads[i].pszName, "kLdr-", sizeof("kLdr-") - 1))
121 rc = RTLdrOpenkLdr(pszFilename, 0, RTLDRARCH_WHATEVER, &aLoads[i].hLdrMod);
122 else
123 rc = RTLdrOpen(pszFilename, 0, RTLDRARCH_WHATEVER, &aLoads[i].hLdrMod);
124 if (RT_FAILURE(rc))
125 {
126 RTPrintf("tstLdr-4: Failed to open '%s'/%d, rc=%Rrc. aborting test.\n", pszFilename, i, rc);
127 Assert(aLoads[i].hLdrMod == NIL_RTLDRMOD);
128 cErrors++;
129 break;
130 }
131
132 /* size it */
133 size_t cb = RTLdrSize(aLoads[i].hLdrMod);
134 if (cbImage && cb != cbImage)
135 {
136 RTPrintf("tstLdr-4: Size mismatch '%s'/%d. aborting test.\n", pszFilename, i);
137 cErrors++;
138 break;
139 }
140 aLoads[i].cbBits = cbImage = cb;
141
142 /* Allocate bits. */
143 aLoads[i].pvBits = RTMemExecAlloc(cb);
144 if (!aLoads[i].pvBits)
145 {
146 RTPrintf("tstLdr-4: Out of memory '%s'/%d cbImage=%d. aborting test.\n", pszFilename, i, cbImage);
147 cErrors++;
148 break;
149 }
150
151 /* Get the bits. */
152 rc = RTLdrGetBits(aLoads[i].hLdrMod, aLoads[i].pvBits, (uintptr_t)aLoads[i].pvBits, testGetImport, NULL);
153 if (RT_FAILURE(rc))
154 {
155 RTPrintf("tstLdr-4: Failed to get bits for '%s'/%d, rc=%Rrc. aborting test\n", pszFilename, i, rc);
156 cErrors++;
157 break;
158 }
159 }
160
161 /*
162 * Execute the code.
163 */
164 if (!cErrors)
165 {
166 for (i = 0; i < RT_ELEMENTS(aLoads); i += 1)
167 {
168 /* get the pointer. */
169 RTUINTPTR Value;
170 rc = RTLdrGetSymbolEx(aLoads[i].hLdrMod, aLoads[i].pvBits, (uintptr_t)aLoads[i].pvBits, "DisasmTest1", &Value);
171 if (rc == VERR_SYMBOL_NOT_FOUND)
172 rc = RTLdrGetSymbolEx(aLoads[i].hLdrMod, aLoads[i].pvBits, (uintptr_t)aLoads[i].pvBits, "_DisasmTest1", &Value);
173 if (RT_FAILURE(rc))
174 {
175 RTPrintf("tstLdr-4: Failed to get symbol \"DisasmTest1\" from load #%d: %Rrc\n", i, rc);
176 cErrors++;
177 break;
178 }
179 DECLCALLBACKPTR(int, pfnDisasmTest1)(void) = (DECLCALLBACKPTR(int, RT_NOTHING)(void))(uintptr_t)Value; /* eeeh. */
180 RTPrintf("tstLdr-4: pfnDisasmTest1=%p / add-symbol-file %s %#x\n", pfnDisasmTest1, pszFilename, aLoads[i].pvBits);
181
182 /* call the test function. */
183 rc = pfnDisasmTest1();
184 if (rc)
185 {
186 RTPrintf("tstLdr-4: load #%d Test1 -> %#x\n", i, rc);
187 cErrors++;
188 }
189 }
190 }
191
192
193 /*
194 * Clean up.
195 */
196 for (i = 0; i < RT_ELEMENTS(aLoads); i++)
197 {
198 if (aLoads[i].pvBits)
199 RTMemExecFree(aLoads[i].pvBits, aLoads[i].cbBits);
200 if (aLoads[i].hLdrMod)
201 {
202 rc = RTLdrClose(aLoads[i].hLdrMod);
203 if (RT_FAILURE(rc))
204 {
205 RTPrintf("tstLdr-4: Failed to close '%s' i=%d, rc=%Rrc.\n", pszFilename, i, rc);
206 cErrors++;
207 }
208 }
209 }
210
211 return cErrors;
212}
213
214
215
216int main(int argc, char **argv)
217{
218 int cErrors = 0;
219 RTR3Init();
220
221 /*
222 * Sanity check.
223 */
224 int rc = DisasmTest1();
225 if (rc)
226 {
227 RTPrintf("tstLdr-4: FATAL ERROR - DisasmTest1 is buggy: rc=%#x\n", rc);
228 return 1;
229 }
230
231 /*
232 * Execute the test.
233 */
234 char szPath[RTPATH_MAX];
235 rc = RTPathExecDir(szPath, sizeof(szPath) - sizeof("/tstLdrObjR0.r0"));
236 if (RT_SUCCESS(rc))
237 {
238 strcat(szPath, "/tstLdrObjR0.r0");
239 RTPrintf("tstLdr-4: TESTING '%s'...\n", szPath);
240 cErrors += testLdrOne(szPath);
241 }
242 else
243 {
244 RTPrintf("tstLdr-4: RTPathExecDir -> %Rrc\n", rc);
245 cErrors++;
246 }
247
248 /*
249 * Test result summary.
250 */
251 if (!cErrors)
252 RTPrintf("tstLdr-4: SUCCESS\n");
253 else
254 RTPrintf("tstLdr-4: FAILURE - %d errors\n", cErrors);
255 return !!cErrors;
256}
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