VirtualBox

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

Last change on this file since 63781 was 62724, checked in by vboxsync, 8 years ago

IPRT/testcases: warnings

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 9.1 KB
Line 
1/* $Id: tstLdr-4.cpp 62724 2016-07-30 00:08:44Z vboxsync $ */
2/** @file
3 * IPRT - Testcase for RTLdrOpen using ldrLdrObjR0.r0.
4 */
5
6/*
7 * Copyright (C) 2006-2016 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 RT_NOREF4(hLdrMod, pszModule, uSymbol, pvUser);
60 if ( !strcmp(pszSymbol, "RTAssertMsg1Weak") || !strcmp(pszSymbol, "_RTAssertMsg1Weak"))
61 *pValue = (uintptr_t)RTAssertMsg1Weak;
62 else if (!strcmp(pszSymbol, "RTAssertMsg2Weak") || !strcmp(pszSymbol, "_RTAssertMsg2Weak"))
63 *pValue = (uintptr_t)RTAssertMsg1Weak;
64 else if (!strcmp(pszSymbol, "RTAssertMsg1") || !strcmp(pszSymbol, "_RTAssertMsg1"))
65 *pValue = (uintptr_t)RTAssertMsg1;
66 else if (!strcmp(pszSymbol, "RTAssertMsg2") || !strcmp(pszSymbol, "_RTAssertMsg2"))
67 *pValue = (uintptr_t)RTAssertMsg2;
68 else if (!strcmp(pszSymbol, "RTAssertMsg2V") || !strcmp(pszSymbol, "_RTAssertMsg2V"))
69 *pValue = (uintptr_t)RTAssertMsg2V;
70 else if (!strcmp(pszSymbol, "RTAssertMayPanic") || !strcmp(pszSymbol, "_RTAssertMayPanic"))
71 *pValue = (uintptr_t)RTAssertMayPanic;
72 else if (!strcmp(pszSymbol, "RTLogDefaultInstance") || !strcmp(pszSymbol, "_RTLogDefaultInstance"))
73 *pValue = (uintptr_t)RTLogDefaultInstance;
74 else if (!strcmp(pszSymbol, "RTLogLoggerExV") || !strcmp(pszSymbol, "_RTLogLoggerExV"))
75 *pValue = (uintptr_t)RTLogLoggerExV;
76 else if (!strcmp(pszSymbol, "RTLogPrintfV") || !strcmp(pszSymbol, "_RTLogPrintfV"))
77 *pValue = (uintptr_t)RTLogPrintfV;
78 else if (!strcmp(pszSymbol, "RTR0AssertPanicSystem")|| !strcmp(pszSymbol, "_RTR0AssertPanicSystem"))
79 *pValue = (uintptr_t)0;
80 else if (!strcmp(pszSymbol, "MyPrintf") || !strcmp(pszSymbol, "_MyPrintf"))
81 *pValue = (uintptr_t)RTPrintf;
82 else
83 {
84 RTPrintf("tstLdr-4: Unexpected import '%s'!\n", pszSymbol);
85 return VERR_SYMBOL_NOT_FOUND;
86 }
87 return VINF_SUCCESS;
88}
89
90
91/**
92 * One test iteration with one file.
93 *
94 * The test is very simple, we load the file three times
95 * into two different regions. The first two into each of the
96 * regions the for compare usage. The third is loaded into one
97 * and then relocated between the two and other locations a few times.
98 *
99 * @returns number of errors.
100 * @param pszFilename The file to load the mess with.
101 */
102static int testLdrOne(const char *pszFilename)
103{
104 int cErrors = 0;
105 size_t cbImage = 0;
106 struct Load
107 {
108 RTLDRMOD hLdrMod;
109 void *pvBits;
110 size_t cbBits;
111 const char *pszName;
112 } aLoads[6] =
113 {
114 { NULL, NULL, 0, "foo" },
115 { NULL, NULL, 0, "bar" },
116 { NULL, NULL, 0, "foobar" },
117 { NULL, NULL, 0, "kLdr-foo" },
118 { NULL, NULL, 0, "kLdr-bar" },
119 { NULL, NULL, 0, "kLdr-foobar" }
120 };
121 unsigned i;
122 int rc;
123
124 /*
125 * Load them.
126 */
127 for (i = 0; i < RT_ELEMENTS(aLoads); i++)
128 {
129 if (!strncmp(aLoads[i].pszName, RT_STR_TUPLE("kLdr-")))
130 rc = RTLdrOpenkLdr(pszFilename, 0, RTLDRARCH_WHATEVER, &aLoads[i].hLdrMod);
131 else
132 rc = RTLdrOpen(pszFilename, 0, RTLDRARCH_WHATEVER, &aLoads[i].hLdrMod);
133 if (RT_FAILURE(rc))
134 {
135 RTPrintf("tstLdr-4: Failed to open '%s'/%d, rc=%Rrc. aborting test.\n", pszFilename, i, rc);
136 Assert(aLoads[i].hLdrMod == NIL_RTLDRMOD);
137 cErrors++;
138 break;
139 }
140
141 /* size it */
142 size_t cb = RTLdrSize(aLoads[i].hLdrMod);
143 if (cbImage && cb != cbImage)
144 {
145 RTPrintf("tstLdr-4: Size mismatch '%s'/%d. aborting test.\n", pszFilename, i);
146 cErrors++;
147 break;
148 }
149 aLoads[i].cbBits = cbImage = cb;
150
151 /* Allocate bits. */
152 aLoads[i].pvBits = RTMemExecAlloc(cb);
153 if (!aLoads[i].pvBits)
154 {
155 RTPrintf("tstLdr-4: Out of memory '%s'/%d cbImage=%d. aborting test.\n", pszFilename, i, cbImage);
156 cErrors++;
157 break;
158 }
159
160 /* Get the bits. */
161 rc = RTLdrGetBits(aLoads[i].hLdrMod, aLoads[i].pvBits, (uintptr_t)aLoads[i].pvBits, testGetImport, NULL);
162 if (RT_FAILURE(rc))
163 {
164 RTPrintf("tstLdr-4: Failed to get bits for '%s'/%d, rc=%Rrc. aborting test\n", pszFilename, i, rc);
165 cErrors++;
166 break;
167 }
168 }
169
170 /*
171 * Execute the code.
172 */
173 if (!cErrors)
174 {
175 for (i = 0; i < RT_ELEMENTS(aLoads); i += 1)
176 {
177 /* get the pointer. */
178 RTUINTPTR Value;
179 rc = RTLdrGetSymbolEx(aLoads[i].hLdrMod, aLoads[i].pvBits, (uintptr_t)aLoads[i].pvBits,
180 UINT32_MAX, "DisasmTest1", &Value);
181 if (rc == VERR_SYMBOL_NOT_FOUND)
182 rc = RTLdrGetSymbolEx(aLoads[i].hLdrMod, aLoads[i].pvBits, (uintptr_t)aLoads[i].pvBits,
183 UINT32_MAX, "_DisasmTest1", &Value);
184 if (RT_FAILURE(rc))
185 {
186 RTPrintf("tstLdr-4: Failed to get symbol \"DisasmTest1\" from load #%d: %Rrc\n", i, rc);
187 cErrors++;
188 break;
189 }
190 DECLCALLBACKPTR(int, pfnDisasmTest1)(void) = (DECLCALLBACKPTR(int, RT_NOTHING)(void))(uintptr_t)Value; /* eeeh. */
191 RTPrintf("tstLdr-4: pfnDisasmTest1=%p / add-symbol-file %s %#x\n", pfnDisasmTest1, pszFilename, aLoads[i].pvBits);
192
193 /* call the test function. */
194 rc = pfnDisasmTest1();
195 if (rc)
196 {
197 RTPrintf("tstLdr-4: load #%d Test1 -> %#x\n", i, rc);
198 cErrors++;
199 }
200 }
201 }
202
203
204 /*
205 * Clean up.
206 */
207 for (i = 0; i < RT_ELEMENTS(aLoads); i++)
208 {
209 if (aLoads[i].pvBits)
210 RTMemExecFree(aLoads[i].pvBits, aLoads[i].cbBits);
211 if (aLoads[i].hLdrMod)
212 {
213 rc = RTLdrClose(aLoads[i].hLdrMod);
214 if (RT_FAILURE(rc))
215 {
216 RTPrintf("tstLdr-4: Failed to close '%s' i=%d, rc=%Rrc.\n", pszFilename, i, rc);
217 cErrors++;
218 }
219 }
220 }
221
222 return cErrors;
223}
224
225
226
227int main(int argc, char **argv)
228{
229 int cErrors = 0;
230 RTR3InitExe(argc, &argv, 0);
231
232 /*
233 * Sanity check.
234 */
235 int rc = DisasmTest1();
236 if (rc)
237 {
238 RTPrintf("tstLdr-4: FATAL ERROR - DisasmTest1 is buggy: rc=%#x\n", rc);
239 return 1;
240 }
241
242 /*
243 * Execute the test.
244 */
245 char szPath[RTPATH_MAX];
246 rc = RTPathExecDir(szPath, sizeof(szPath) - sizeof("/tstLdrObjR0.r0"));
247 if (RT_SUCCESS(rc))
248 {
249 strcat(szPath, "/tstLdrObjR0.r0");
250 RTPrintf("tstLdr-4: TESTING '%s'...\n", szPath);
251 cErrors += testLdrOne(szPath);
252 }
253 else
254 {
255 RTPrintf("tstLdr-4: RTPathExecDir -> %Rrc\n", rc);
256 cErrors++;
257 }
258
259 /*
260 * Test result summary.
261 */
262 if (!cErrors)
263 RTPrintf("tstLdr-4: SUCCESS\n");
264 else
265 RTPrintf("tstLdr-4: FAILURE - %d errors\n", cErrors);
266 return !!cErrors;
267}
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