1 | /* $Id: dbgas.cpp 44529 2013-02-04 15:54:15Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Debug Address Space.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009-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 | * 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/dbg.h>
|
---|
32 | #include "internal/iprt.h"
|
---|
33 |
|
---|
34 | #include <iprt/asm.h>
|
---|
35 | #include <iprt/avl.h>
|
---|
36 | #include <iprt/assert.h>
|
---|
37 | #include <iprt/err.h>
|
---|
38 | #include <iprt/mem.h>
|
---|
39 | #include <iprt/param.h>
|
---|
40 | #include <iprt/string.h>
|
---|
41 | #include <iprt/semaphore.h>
|
---|
42 | #include "internal/magics.h"
|
---|
43 |
|
---|
44 |
|
---|
45 | /*******************************************************************************
|
---|
46 | * Structures and Typedefs *
|
---|
47 | *******************************************************************************/
|
---|
48 | /** Pointer to a module table entry. */
|
---|
49 | typedef struct RTDBGASMOD *PRTDBGASMOD;
|
---|
50 | /** Pointer to an address space mapping node. */
|
---|
51 | typedef struct RTDBGASMAP *PRTDBGASMAP;
|
---|
52 | /** Pointer to a name head. */
|
---|
53 | typedef struct RTDBGASNAME *PRTDBGASNAME;
|
---|
54 |
|
---|
55 | /**
|
---|
56 | * Module entry.
|
---|
57 | */
|
---|
58 | typedef struct RTDBGASMOD
|
---|
59 | {
|
---|
60 | /** Node core, the module handle is the key. */
|
---|
61 | AVLPVNODECORE Core;
|
---|
62 | /** Pointer to the first mapping of the module or a segment within it. */
|
---|
63 | PRTDBGASMAP pMapHead;
|
---|
64 | /** Pointer to the next module with an identical name. */
|
---|
65 | PRTDBGASMOD pNextName;
|
---|
66 | /** The index into RTDBGASINT::papModules. */
|
---|
67 | uint32_t iOrdinal;
|
---|
68 | } RTDBGASMOD;
|
---|
69 |
|
---|
70 | /**
|
---|
71 | * An address space mapping, either of a full module or a segment.
|
---|
72 | */
|
---|
73 | typedef struct RTDBGASMAP
|
---|
74 | {
|
---|
75 | /** The AVL node core. Contains the address range. */
|
---|
76 | AVLRUINTPTRNODECORE Core;
|
---|
77 | /** Pointer to the next mapping of the module. */
|
---|
78 | PRTDBGASMAP pNext;
|
---|
79 | /** Pointer to the module. */
|
---|
80 | PRTDBGASMOD pMod;
|
---|
81 | /** Which segment in the module.
|
---|
82 | * This is NIL_RTDBGSEGIDX when the entire module is mapped. */
|
---|
83 | RTDBGSEGIDX iSeg;
|
---|
84 | } RTDBGASMAP;
|
---|
85 |
|
---|
86 | /**
|
---|
87 | * Name in the address space.
|
---|
88 | */
|
---|
89 | typedef struct RTDBGASNAME
|
---|
90 | {
|
---|
91 | /** The string space node core.*/
|
---|
92 | RTSTRSPACECORE StrCore;
|
---|
93 | /** The list of nodes */
|
---|
94 | PRTDBGASMOD pHead;
|
---|
95 | } RTDBGASNAME;
|
---|
96 |
|
---|
97 | /**
|
---|
98 | * Debug address space instance.
|
---|
99 | */
|
---|
100 | typedef struct RTDBGASINT
|
---|
101 | {
|
---|
102 | /** Magic value (RTDBGAS_MAGIC). */
|
---|
103 | uint32_t u32Magic;
|
---|
104 | /** The number of reference to this address space. */
|
---|
105 | uint32_t volatile cRefs;
|
---|
106 | /** Handle of the read-write lock. */
|
---|
107 | RTSEMRW hLock;
|
---|
108 | /** Number of modules in the module address space. */
|
---|
109 | uint32_t cModules;
|
---|
110 | /** Pointer to the module table.
|
---|
111 | * The valid array length is given by cModules. */
|
---|
112 | PRTDBGASMOD *papModules;
|
---|
113 | /** AVL tree translating module handles to module entries. */
|
---|
114 | AVLPVTREE ModTree;
|
---|
115 | /** AVL tree mapping addresses to modules. */
|
---|
116 | AVLRUINTPTRTREE MapTree;
|
---|
117 | /** Names of the modules in the name space. */
|
---|
118 | RTSTRSPACE NameSpace;
|
---|
119 | /** The first address the AS. */
|
---|
120 | RTUINTPTR FirstAddr;
|
---|
121 | /** The last address in the AS. */
|
---|
122 | RTUINTPTR LastAddr;
|
---|
123 | /** The name of the address space. (variable length) */
|
---|
124 | char szName[1];
|
---|
125 | } RTDBGASINT;
|
---|
126 | /** Pointer to an a debug address space instance. */
|
---|
127 | typedef RTDBGASINT *PRTDBGASINT;
|
---|
128 |
|
---|
129 |
|
---|
130 | /*******************************************************************************
|
---|
131 | * Defined Constants And Macros *
|
---|
132 | *******************************************************************************/
|
---|
133 | /** Validates an address space handle and returns rc if not valid. */
|
---|
134 | #define RTDBGAS_VALID_RETURN_RC(pDbgAs, rc) \
|
---|
135 | do { \
|
---|
136 | AssertPtrReturn((pDbgAs), (rc)); \
|
---|
137 | AssertReturn((pDbgAs)->u32Magic == RTDBGAS_MAGIC, (rc)); \
|
---|
138 | AssertReturn((pDbgAs)->cRefs > 0, (rc)); \
|
---|
139 | } while (0)
|
---|
140 |
|
---|
141 | /** Locks the address space for reading. */
|
---|
142 | #define RTDBGAS_LOCK_READ(pDbgAs) \
|
---|
143 | do { \
|
---|
144 | int rcLock = RTSemRWRequestRead((pDbgAs)->hLock, RT_INDEFINITE_WAIT); \
|
---|
145 | AssertRC(rcLock); \
|
---|
146 | } while (0)
|
---|
147 |
|
---|
148 | /** Unlocks the address space after reading. */
|
---|
149 | #define RTDBGAS_UNLOCK_READ(pDbgAs) \
|
---|
150 | do { \
|
---|
151 | int rcLock = RTSemRWReleaseRead((pDbgAs)->hLock); \
|
---|
152 | AssertRC(rcLock); \
|
---|
153 | } while (0)
|
---|
154 |
|
---|
155 | /** Locks the address space for writing. */
|
---|
156 | #define RTDBGAS_LOCK_WRITE(pDbgAs) \
|
---|
157 | do { \
|
---|
158 | int rcLock = RTSemRWRequestWrite((pDbgAs)->hLock, RT_INDEFINITE_WAIT); \
|
---|
159 | AssertRC(rcLock); \
|
---|
160 | } while (0)
|
---|
161 |
|
---|
162 | /** Unlocks the address space after writing. */
|
---|
163 | #define RTDBGAS_UNLOCK_WRITE(pDbgAs) \
|
---|
164 | do { \
|
---|
165 | int rcLock = RTSemRWReleaseWrite((pDbgAs)->hLock); \
|
---|
166 | AssertRC(rcLock); \
|
---|
167 | } while (0)
|
---|
168 |
|
---|
169 |
|
---|
170 | /*******************************************************************************
|
---|
171 | * Internal Functions *
|
---|
172 | *******************************************************************************/
|
---|
173 | static void rtDbgAsModuleUnlinkMod(PRTDBGASINT pDbgAs, PRTDBGASMOD pMod);
|
---|
174 | static void rtDbgAsModuleUnlinkByMap(PRTDBGASINT pDbgAs, PRTDBGASMAP pMap);
|
---|
175 |
|
---|
176 |
|
---|
177 | /**
|
---|
178 | * Creates an empty address space.
|
---|
179 | *
|
---|
180 | * @returns IPRT status code.
|
---|
181 | *
|
---|
182 | * @param phDbgAs Where to store the address space handle on success.
|
---|
183 | * @param FirstAddr The first address in the address space.
|
---|
184 | * @param LastAddr The last address in the address space.
|
---|
185 | * @param pszName The name of the address space.
|
---|
186 | */
|
---|
187 | RTDECL(int) RTDbgAsCreate(PRTDBGAS phDbgAs, RTUINTPTR FirstAddr, RTUINTPTR LastAddr, const char *pszName)
|
---|
188 | {
|
---|
189 | /*
|
---|
190 | * Input validation.
|
---|
191 | */
|
---|
192 | AssertPtrReturn(phDbgAs, VERR_INVALID_POINTER);
|
---|
193 | AssertPtrReturn(pszName, VERR_INVALID_POINTER);
|
---|
194 | AssertReturn(FirstAddr < LastAddr, VERR_INVALID_PARAMETER);
|
---|
195 |
|
---|
196 | /*
|
---|
197 | * Allocate memory for the instance data.
|
---|
198 | */
|
---|
199 | size_t cchName = strlen(pszName);
|
---|
200 | PRTDBGASINT pDbgAs = (PRTDBGASINT)RTMemAllocVar(RT_OFFSETOF(RTDBGASINT, szName[cchName + 1]));
|
---|
201 | if (!pDbgAs)
|
---|
202 | return VERR_NO_MEMORY;
|
---|
203 |
|
---|
204 | /* initialize it. */
|
---|
205 | pDbgAs->u32Magic = RTDBGAS_MAGIC;
|
---|
206 | pDbgAs->cRefs = 1;
|
---|
207 | pDbgAs->hLock = NIL_RTSEMRW;
|
---|
208 | pDbgAs->cModules = 0;
|
---|
209 | pDbgAs->papModules = NULL;
|
---|
210 | pDbgAs->ModTree = NULL;
|
---|
211 | pDbgAs->MapTree = NULL;
|
---|
212 | pDbgAs->NameSpace = NULL;
|
---|
213 | pDbgAs->FirstAddr = FirstAddr;
|
---|
214 | pDbgAs->LastAddr = LastAddr;
|
---|
215 | memcpy(pDbgAs->szName, pszName, cchName + 1);
|
---|
216 | int rc = RTSemRWCreate(&pDbgAs->hLock);
|
---|
217 | if (RT_SUCCESS(rc))
|
---|
218 | {
|
---|
219 | *phDbgAs = pDbgAs;
|
---|
220 | return VINF_SUCCESS;
|
---|
221 | }
|
---|
222 |
|
---|
223 | pDbgAs->u32Magic = 0;
|
---|
224 | RTMemFree(pDbgAs);
|
---|
225 | return rc;
|
---|
226 | }
|
---|
227 | RT_EXPORT_SYMBOL(RTDbgAsCreate);
|
---|
228 |
|
---|
229 |
|
---|
230 | /**
|
---|
231 | * Variant of RTDbgAsCreate that takes a name format string.
|
---|
232 | *
|
---|
233 | * @returns IPRT status code.
|
---|
234 | *
|
---|
235 | * @param phDbgAs Where to store the address space handle on success.
|
---|
236 | * @param FirstAddr The first address in the address space.
|
---|
237 | * @param LastAddr The last address in the address space.
|
---|
238 | * @param pszNameFmt The name format of the address space.
|
---|
239 | * @param va Format arguments.
|
---|
240 | */
|
---|
241 | RTDECL(int) RTDbgAsCreateV(PRTDBGAS phDbgAs, RTUINTPTR FirstAddr, RTUINTPTR LastAddr, const char *pszNameFmt, va_list va)
|
---|
242 | {
|
---|
243 | AssertPtrReturn(pszNameFmt, VERR_INVALID_POINTER);
|
---|
244 |
|
---|
245 | char *pszName;
|
---|
246 | RTStrAPrintfV(&pszName, pszNameFmt, va);
|
---|
247 | if (!pszName)
|
---|
248 | return VERR_NO_MEMORY;
|
---|
249 |
|
---|
250 | int rc = RTDbgAsCreate(phDbgAs, FirstAddr, LastAddr, pszName);
|
---|
251 |
|
---|
252 | RTStrFree(pszName);
|
---|
253 | return rc;
|
---|
254 | }
|
---|
255 | RT_EXPORT_SYMBOL(RTDbgAsCreateV);
|
---|
256 |
|
---|
257 |
|
---|
258 | /**
|
---|
259 | * Variant of RTDbgAsCreate that takes a name format string.
|
---|
260 | *
|
---|
261 | * @returns IPRT status code.
|
---|
262 | *
|
---|
263 | * @param phDbgAs Where to store the address space handle on success.
|
---|
264 | * @param FirstAddr The first address in the address space.
|
---|
265 | * @param LastAddr The last address in the address space.
|
---|
266 | * @param pszNameFmt The name format of the address space.
|
---|
267 | * @param ... Format arguments.
|
---|
268 | */
|
---|
269 | RTDECL(int) RTDbgAsCreateF(PRTDBGAS phDbgAs, RTUINTPTR FirstAddr, RTUINTPTR LastAddr, const char *pszNameFmt, ...)
|
---|
270 | {
|
---|
271 | va_list va;
|
---|
272 | va_start(va, pszNameFmt);
|
---|
273 | int rc = RTDbgAsCreateV(phDbgAs, FirstAddr, LastAddr, pszNameFmt, va);
|
---|
274 | va_end(va);
|
---|
275 | return rc;
|
---|
276 | }
|
---|
277 | RT_EXPORT_SYMBOL(RTDbgAsCreateF);
|
---|
278 |
|
---|
279 |
|
---|
280 | /**
|
---|
281 | * Callback used by RTDbgAsDestroy to free all mapping nodes.
|
---|
282 | *
|
---|
283 | * @returns 0
|
---|
284 | * @param pNode The map node.
|
---|
285 | * @param pvUser NULL.
|
---|
286 | */
|
---|
287 | static DECLCALLBACK(int) rtDbgAsDestroyMapCallback(PAVLRUINTPTRNODECORE pNode, void *pvUser)
|
---|
288 | {
|
---|
289 | RTMemFree(pNode);
|
---|
290 | NOREF(pvUser);
|
---|
291 | return 0;
|
---|
292 | }
|
---|
293 |
|
---|
294 |
|
---|
295 | /**
|
---|
296 | * Callback used by RTDbgAsDestroy to free all name space nodes.
|
---|
297 | *
|
---|
298 | * @returns 0
|
---|
299 | * @param pStr The name node.
|
---|
300 | * @param pvUser NULL.
|
---|
301 | */
|
---|
302 | static DECLCALLBACK(int) rtDbgAsDestroyNameCallback(PRTSTRSPACECORE pStr, void *pvUser)
|
---|
303 | {
|
---|
304 | RTMemFree(pStr);
|
---|
305 | NOREF(pvUser);
|
---|
306 | return 0;
|
---|
307 | }
|
---|
308 |
|
---|
309 |
|
---|
310 | /**
|
---|
311 | * Destroys the address space.
|
---|
312 | *
|
---|
313 | * This means unlinking all the modules it currently contains, potentially
|
---|
314 | * causing some or all of them to be destroyed as they are managed by
|
---|
315 | * reference counting.
|
---|
316 | *
|
---|
317 | * @param pDbgAs The address space instance to be destroyed.
|
---|
318 | */
|
---|
319 | static void rtDbgAsDestroy(PRTDBGASINT pDbgAs)
|
---|
320 | {
|
---|
321 | /*
|
---|
322 | * Mark the address space invalid and release all the modules.
|
---|
323 | */
|
---|
324 | ASMAtomicWriteU32(&pDbgAs->u32Magic, ~RTDBGAS_MAGIC);
|
---|
325 |
|
---|
326 | RTAvlrUIntPtrDestroy(&pDbgAs->MapTree, rtDbgAsDestroyMapCallback, NULL);
|
---|
327 | RTStrSpaceDestroy(&pDbgAs->NameSpace, rtDbgAsDestroyNameCallback, NULL);
|
---|
328 |
|
---|
329 | uint32_t i = pDbgAs->cModules;
|
---|
330 | while (i-- > 0)
|
---|
331 | {
|
---|
332 | PRTDBGASMOD pMod = pDbgAs->papModules[i];
|
---|
333 | AssertPtr(pMod);
|
---|
334 | if (VALID_PTR(pMod))
|
---|
335 | {
|
---|
336 | Assert(pMod->iOrdinal == i);
|
---|
337 | RTDbgModRelease((RTDBGMOD)pMod->Core.Key);
|
---|
338 | pMod->Core.Key = NIL_RTDBGMOD;
|
---|
339 | pMod->iOrdinal = UINT32_MAX;
|
---|
340 | RTMemFree(pMod);
|
---|
341 | }
|
---|
342 | pDbgAs->papModules[i] = NULL;
|
---|
343 | }
|
---|
344 | RTMemFree(pDbgAs->papModules);
|
---|
345 | pDbgAs->papModules = NULL;
|
---|
346 |
|
---|
347 | RTMemFree(pDbgAs);
|
---|
348 | }
|
---|
349 |
|
---|
350 |
|
---|
351 | /**
|
---|
352 | * Retains another reference to the address space.
|
---|
353 | *
|
---|
354 | * @returns New reference count, UINT32_MAX on invalid handle (asserted).
|
---|
355 | *
|
---|
356 | * @param hDbgAs The address space handle.
|
---|
357 | *
|
---|
358 | * @remarks Will not take any locks.
|
---|
359 | */
|
---|
360 | RTDECL(uint32_t) RTDbgAsRetain(RTDBGAS hDbgAs)
|
---|
361 | {
|
---|
362 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
363 | RTDBGAS_VALID_RETURN_RC(pDbgAs, UINT32_MAX);
|
---|
364 | return ASMAtomicIncU32(&pDbgAs->cRefs);
|
---|
365 | }
|
---|
366 | RT_EXPORT_SYMBOL(RTDbgAsRetain);
|
---|
367 |
|
---|
368 |
|
---|
369 | /**
|
---|
370 | * Release a reference to the address space.
|
---|
371 | *
|
---|
372 | * When the reference count reaches zero, the address space is destroyed.
|
---|
373 | * That means unlinking all the modules it currently contains, potentially
|
---|
374 | * causing some or all of them to be destroyed as they are managed by
|
---|
375 | * reference counting.
|
---|
376 | *
|
---|
377 | * @returns New reference count, UINT32_MAX on invalid handle (asserted).
|
---|
378 | *
|
---|
379 | * @param hDbgAs The address space handle. The NIL handle is quietly
|
---|
380 | * ignored and 0 is returned.
|
---|
381 | *
|
---|
382 | * @remarks Will not take any locks.
|
---|
383 | */
|
---|
384 | RTDECL(uint32_t) RTDbgAsRelease(RTDBGAS hDbgAs)
|
---|
385 | {
|
---|
386 | if (hDbgAs == NIL_RTDBGAS)
|
---|
387 | return 0;
|
---|
388 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
389 | RTDBGAS_VALID_RETURN_RC(pDbgAs, UINT32_MAX);
|
---|
390 |
|
---|
391 | uint32_t cRefs = ASMAtomicDecU32(&pDbgAs->cRefs);
|
---|
392 | if (!cRefs)
|
---|
393 | rtDbgAsDestroy(pDbgAs);
|
---|
394 | return cRefs;
|
---|
395 | }
|
---|
396 | RT_EXPORT_SYMBOL(RTDbgAsRelease);
|
---|
397 |
|
---|
398 |
|
---|
399 | /**
|
---|
400 | * Gets the name of an address space.
|
---|
401 | *
|
---|
402 | * @returns read only address space name.
|
---|
403 | * NULL if hDbgAs is invalid.
|
---|
404 | *
|
---|
405 | * @param hDbgAs The address space handle.
|
---|
406 | *
|
---|
407 | * @remarks Will not take any locks.
|
---|
408 | */
|
---|
409 | RTDECL(const char *) RTDbgAsName(RTDBGAS hDbgAs)
|
---|
410 | {
|
---|
411 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
412 | RTDBGAS_VALID_RETURN_RC(pDbgAs, NULL);
|
---|
413 | return pDbgAs->szName;
|
---|
414 | }
|
---|
415 | RT_EXPORT_SYMBOL(RTDbgAsName);
|
---|
416 |
|
---|
417 |
|
---|
418 | /**
|
---|
419 | * Gets the first address in an address space.
|
---|
420 | *
|
---|
421 | * @returns The address.
|
---|
422 | * 0 if hDbgAs is invalid.
|
---|
423 | *
|
---|
424 | * @param hDbgAs The address space handle.
|
---|
425 | *
|
---|
426 | * @remarks Will not take any locks.
|
---|
427 | */
|
---|
428 | RTDECL(RTUINTPTR) RTDbgAsFirstAddr(RTDBGAS hDbgAs)
|
---|
429 | {
|
---|
430 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
431 | RTDBGAS_VALID_RETURN_RC(pDbgAs, 0);
|
---|
432 | return pDbgAs->FirstAddr;
|
---|
433 | }
|
---|
434 | RT_EXPORT_SYMBOL(RTDbgAsFirstAddr);
|
---|
435 |
|
---|
436 |
|
---|
437 | /**
|
---|
438 | * Gets the last address in an address space.
|
---|
439 | *
|
---|
440 | * @returns The address.
|
---|
441 | * 0 if hDbgAs is invalid.
|
---|
442 | *
|
---|
443 | * @param hDbgAs The address space handle.
|
---|
444 | *
|
---|
445 | * @remarks Will not take any locks.
|
---|
446 | */
|
---|
447 | RTDECL(RTUINTPTR) RTDbgAsLastAddr(RTDBGAS hDbgAs)
|
---|
448 | {
|
---|
449 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
450 | RTDBGAS_VALID_RETURN_RC(pDbgAs, 0);
|
---|
451 | return pDbgAs->LastAddr;
|
---|
452 | }
|
---|
453 | RT_EXPORT_SYMBOL(RTDbgAsLastAddr);
|
---|
454 |
|
---|
455 | /**
|
---|
456 | * Gets the number of modules in the address space.
|
---|
457 | *
|
---|
458 | * This can be used together with RTDbgAsModuleByIndex
|
---|
459 | * to enumerate the modules.
|
---|
460 | *
|
---|
461 | * @returns The number of modules.
|
---|
462 | *
|
---|
463 | * @param hDbgAs The address space handle.
|
---|
464 | *
|
---|
465 | * @remarks Will not take any locks.
|
---|
466 | */
|
---|
467 | RTDECL(uint32_t) RTDbgAsModuleCount(RTDBGAS hDbgAs)
|
---|
468 | {
|
---|
469 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
470 | RTDBGAS_VALID_RETURN_RC(pDbgAs, 0);
|
---|
471 | return pDbgAs->cModules;
|
---|
472 | }
|
---|
473 | RT_EXPORT_SYMBOL(RTDbgAsModuleCount);
|
---|
474 |
|
---|
475 |
|
---|
476 | /**
|
---|
477 | * Common worker for RTDbgAsModuleLink and RTDbgAsModuleLinkSeg.
|
---|
478 | *
|
---|
479 | * @returns IPRT status.
|
---|
480 | * @param pDbgAs Pointer to the address space instance data.
|
---|
481 | * @param hDbgMod The module to link.
|
---|
482 | * @param iSeg The segment to link or NIL if all.
|
---|
483 | * @param Addr The address we're linking it at.
|
---|
484 | * @param cb The size of what we're linking.
|
---|
485 | * @param pszName The name of the module.
|
---|
486 | * @param fFlags See RTDBGASLINK_FLAGS_*.
|
---|
487 | *
|
---|
488 | * @remarks The caller must have locked the address space for writing.
|
---|
489 | */
|
---|
490 | int rtDbgAsModuleLinkCommon(PRTDBGASINT pDbgAs, RTDBGMOD hDbgMod, RTDBGSEGIDX iSeg,
|
---|
491 | RTUINTPTR Addr, RTUINTPTR cb, const char *pszName, uint32_t fFlags)
|
---|
492 | {
|
---|
493 | /*
|
---|
494 | * Check that the requested space is undisputed.
|
---|
495 | */
|
---|
496 | for (;;)
|
---|
497 | {
|
---|
498 | PRTDBGASMAP pAdjMod = (PRTDBGASMAP)RTAvlrUIntPtrGetBestFit(&pDbgAs->MapTree, Addr, false /* fAbove */);
|
---|
499 | if ( pAdjMod
|
---|
500 | && pAdjMod->Core.KeyLast >= Addr)
|
---|
501 | {
|
---|
502 | if (!(fFlags & RTDBGASLINK_FLAGS_REPLACE))
|
---|
503 | return VERR_ADDRESS_CONFLICT;
|
---|
504 | rtDbgAsModuleUnlinkByMap(pDbgAs, pAdjMod);
|
---|
505 | continue;
|
---|
506 | }
|
---|
507 | pAdjMod = (PRTDBGASMAP)RTAvlrUIntPtrGetBestFit(&pDbgAs->MapTree, Addr, true /* fAbove */);
|
---|
508 | if ( pAdjMod
|
---|
509 | && pAdjMod->Core.Key <= Addr + cb - 1)
|
---|
510 | {
|
---|
511 | if (!(fFlags & RTDBGASLINK_FLAGS_REPLACE))
|
---|
512 | return VERR_ADDRESS_CONFLICT;
|
---|
513 | rtDbgAsModuleUnlinkByMap(pDbgAs, pAdjMod);
|
---|
514 | continue;
|
---|
515 | }
|
---|
516 | break;
|
---|
517 | }
|
---|
518 |
|
---|
519 | /*
|
---|
520 | * First, create or find the module table entry.
|
---|
521 | */
|
---|
522 | PRTDBGASMOD pMod = (PRTDBGASMOD)RTAvlPVGet(&pDbgAs->ModTree, hDbgMod);
|
---|
523 | if (!pMod)
|
---|
524 | {
|
---|
525 | /*
|
---|
526 | * Ok, we need a new entry. Grow the table if necessary.
|
---|
527 | */
|
---|
528 | if (!(pDbgAs->cModules % 32))
|
---|
529 | {
|
---|
530 | void *pvNew = RTMemRealloc(pDbgAs->papModules, sizeof(pDbgAs->papModules[0]) * (pDbgAs->cModules + 32));
|
---|
531 | if (!pvNew)
|
---|
532 | return VERR_NO_MEMORY;
|
---|
533 | pDbgAs->papModules = (PRTDBGASMOD *)pvNew;
|
---|
534 | }
|
---|
535 | pMod = (PRTDBGASMOD)RTMemAlloc(sizeof(*pMod));
|
---|
536 | if (!pMod)
|
---|
537 | return VERR_NO_MEMORY;
|
---|
538 | pMod->Core.Key = hDbgMod;
|
---|
539 | pMod->pMapHead = NULL;
|
---|
540 | pMod->pNextName = NULL;
|
---|
541 | if (RT_UNLIKELY(!RTAvlPVInsert(&pDbgAs->ModTree, &pMod->Core)))
|
---|
542 | {
|
---|
543 | AssertFailed();
|
---|
544 | pDbgAs->cModules--;
|
---|
545 | RTMemFree(pMod);
|
---|
546 | return VERR_INTERNAL_ERROR;
|
---|
547 | }
|
---|
548 | pMod->iOrdinal = pDbgAs->cModules;
|
---|
549 | pDbgAs->papModules[pDbgAs->cModules] = pMod;
|
---|
550 | pDbgAs->cModules++;
|
---|
551 | RTDbgModRetain(hDbgMod);
|
---|
552 |
|
---|
553 | /*
|
---|
554 | * Add it to the name space.
|
---|
555 | */
|
---|
556 | PRTDBGASNAME pName = (PRTDBGASNAME)RTStrSpaceGet(&pDbgAs->NameSpace, pszName);
|
---|
557 | if (!pName)
|
---|
558 | {
|
---|
559 | size_t cchName = strlen(pszName);
|
---|
560 | pName = (PRTDBGASNAME)RTMemAlloc(sizeof(*pName) + cchName + 1);
|
---|
561 | if (!pName)
|
---|
562 | {
|
---|
563 | RTDbgModRelease(hDbgMod);
|
---|
564 | pDbgAs->cModules--;
|
---|
565 | RTAvlPVRemove(&pDbgAs->ModTree, hDbgMod);
|
---|
566 | RTMemFree(pMod);
|
---|
567 | return VERR_NO_MEMORY;
|
---|
568 | }
|
---|
569 | pName->StrCore.cchString = cchName;
|
---|
570 | pName->StrCore.pszString = (char *)memcpy(pName + 1, pszName, cchName + 1);
|
---|
571 | pName->pHead = pMod;
|
---|
572 | if (!RTStrSpaceInsert(&pDbgAs->NameSpace, &pName->StrCore))
|
---|
573 | AssertFailed();
|
---|
574 | }
|
---|
575 | else
|
---|
576 | {
|
---|
577 | /* quick, but unfair. */
|
---|
578 | pMod->pNextName = pName->pHead;
|
---|
579 | pName->pHead = pMod;
|
---|
580 | }
|
---|
581 | }
|
---|
582 |
|
---|
583 | /*
|
---|
584 | * Create a mapping node.
|
---|
585 | */
|
---|
586 | int rc;
|
---|
587 | PRTDBGASMAP pMap = (PRTDBGASMAP)RTMemAlloc(sizeof(*pMap));
|
---|
588 | if (pMap)
|
---|
589 | {
|
---|
590 | pMap->Core.Key = Addr;
|
---|
591 | pMap->Core.KeyLast = Addr + cb - 1;
|
---|
592 | pMap->pMod = pMod;
|
---|
593 | pMap->iSeg = iSeg;
|
---|
594 | if (RTAvlrUIntPtrInsert(&pDbgAs->MapTree, &pMap->Core))
|
---|
595 | {
|
---|
596 | PRTDBGASMAP *pp = &pMod->pMapHead;
|
---|
597 | while (*pp && (*pp)->Core.Key < Addr)
|
---|
598 | pp = &(*pp)->pNext;
|
---|
599 | pMap->pNext = *pp;
|
---|
600 | *pp = pMap;
|
---|
601 | return VINF_SUCCESS;
|
---|
602 | }
|
---|
603 |
|
---|
604 | AssertFailed();
|
---|
605 | RTMemFree(pMap);
|
---|
606 | rc = VERR_ADDRESS_CONFLICT;
|
---|
607 | }
|
---|
608 | else
|
---|
609 | rc = VERR_NO_MEMORY;
|
---|
610 |
|
---|
611 | /*
|
---|
612 | * Unlink the module if this was the only mapping.
|
---|
613 | */
|
---|
614 | if (!pMod->pMapHead)
|
---|
615 | rtDbgAsModuleUnlinkMod(pDbgAs, pMod);
|
---|
616 | return rc;
|
---|
617 | }
|
---|
618 |
|
---|
619 |
|
---|
620 | /**
|
---|
621 | * Links a module into the address space at the give address.
|
---|
622 | *
|
---|
623 | * The size of the mapping is determined using RTDbgModImageSize().
|
---|
624 | *
|
---|
625 | * @returns IPRT status code.
|
---|
626 | * @retval VERR_OUT_OF_RANGE if the specified address will put the module
|
---|
627 | * outside the address space.
|
---|
628 | * @retval VERR_ADDRESS_CONFLICT if the mapping clashes with existing mappings.
|
---|
629 | *
|
---|
630 | * @param hDbgAs The address space handle.
|
---|
631 | * @param hDbgMod The module handle of the module to be linked in.
|
---|
632 | * @param ImageAddr The address to link the module at.
|
---|
633 | * @param fFlags See RTDBGASLINK_FLAGS_*.
|
---|
634 | */
|
---|
635 | RTDECL(int) RTDbgAsModuleLink(RTDBGAS hDbgAs, RTDBGMOD hDbgMod, RTUINTPTR ImageAddr, uint32_t fFlags)
|
---|
636 | {
|
---|
637 | /*
|
---|
638 | * Validate input.
|
---|
639 | */
|
---|
640 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
641 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
642 | const char *pszName = RTDbgModName(hDbgMod);
|
---|
643 | if (!pszName)
|
---|
644 | return VERR_INVALID_HANDLE;
|
---|
645 | RTUINTPTR cb = RTDbgModImageSize(hDbgMod);
|
---|
646 | if (!cb)
|
---|
647 | return VERR_OUT_OF_RANGE;
|
---|
648 | if ( ImageAddr < pDbgAs->FirstAddr
|
---|
649 | || ImageAddr > pDbgAs->LastAddr
|
---|
650 | || ImageAddr + cb - 1 < pDbgAs->FirstAddr
|
---|
651 | || ImageAddr + cb - 1 > pDbgAs->LastAddr
|
---|
652 | || ImageAddr + cb - 1 < ImageAddr)
|
---|
653 | return VERR_OUT_OF_RANGE;
|
---|
654 | AssertReturn(!(fFlags & ~RTDBGASLINK_FLAGS_VALID_MASK), VERR_INVALID_PARAMETER);
|
---|
655 |
|
---|
656 | /*
|
---|
657 | * Invoke worker common with RTDbgAsModuleLinkSeg.
|
---|
658 | */
|
---|
659 | RTDBGAS_LOCK_WRITE(pDbgAs);
|
---|
660 | int rc = rtDbgAsModuleLinkCommon(pDbgAs, hDbgMod, NIL_RTDBGSEGIDX, ImageAddr, cb, pszName, fFlags);
|
---|
661 | RTDBGAS_UNLOCK_WRITE(pDbgAs);
|
---|
662 | return rc;
|
---|
663 | }
|
---|
664 | RT_EXPORT_SYMBOL(RTDbgAsModuleLink);
|
---|
665 |
|
---|
666 |
|
---|
667 | /**
|
---|
668 | * Links a segment into the address space at the give address.
|
---|
669 | *
|
---|
670 | * The size of the mapping is determined using RTDbgModSegmentSize().
|
---|
671 | *
|
---|
672 | * @returns IPRT status code.
|
---|
673 | * @retval VERR_OUT_OF_RANGE if the specified address will put the module
|
---|
674 | * outside the address space.
|
---|
675 | * @retval VERR_ADDRESS_CONFLICT if the mapping clashes with existing mappings.
|
---|
676 | *
|
---|
677 | * @param hDbgAs The address space handle.
|
---|
678 | * @param hDbgMod The module handle.
|
---|
679 | * @param iSeg The segment number (0-based) of the segment to be
|
---|
680 | * linked in.
|
---|
681 | * @param SegAddr The address to link the segment at.
|
---|
682 | * @param fFlags See RTDBGASLINK_FLAGS_*.
|
---|
683 | */
|
---|
684 | RTDECL(int) RTDbgAsModuleLinkSeg(RTDBGAS hDbgAs, RTDBGMOD hDbgMod, RTDBGSEGIDX iSeg, RTUINTPTR SegAddr, uint32_t fFlags)
|
---|
685 | {
|
---|
686 | /*
|
---|
687 | * Validate input.
|
---|
688 | */
|
---|
689 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
690 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
691 | const char *pszName = RTDbgModName(hDbgMod);
|
---|
692 | if (!pszName)
|
---|
693 | return VERR_INVALID_HANDLE;
|
---|
694 | RTUINTPTR cb = RTDbgModSegmentSize(hDbgMod, iSeg);
|
---|
695 | if (!cb)
|
---|
696 | return VERR_OUT_OF_RANGE;
|
---|
697 | if ( SegAddr < pDbgAs->FirstAddr
|
---|
698 | || SegAddr > pDbgAs->LastAddr
|
---|
699 | || SegAddr + cb - 1 < pDbgAs->FirstAddr
|
---|
700 | || SegAddr + cb - 1 > pDbgAs->LastAddr
|
---|
701 | || SegAddr + cb - 1 < SegAddr)
|
---|
702 | return VERR_OUT_OF_RANGE;
|
---|
703 | AssertReturn(!(fFlags & ~RTDBGASLINK_FLAGS_VALID_MASK), VERR_INVALID_PARAMETER);
|
---|
704 |
|
---|
705 | /*
|
---|
706 | * Invoke worker common with RTDbgAsModuleLinkSeg.
|
---|
707 | */
|
---|
708 | RTDBGAS_LOCK_WRITE(pDbgAs);
|
---|
709 | int rc = rtDbgAsModuleLinkCommon(pDbgAs, hDbgMod, iSeg, SegAddr, cb, pszName, fFlags);
|
---|
710 | RTDBGAS_UNLOCK_WRITE(pDbgAs);
|
---|
711 | return rc;
|
---|
712 | }
|
---|
713 | RT_EXPORT_SYMBOL(RTDbgAsModuleLinkSeg);
|
---|
714 |
|
---|
715 |
|
---|
716 | /**
|
---|
717 | * Worker for RTDbgAsModuleUnlink, RTDbgAsModuleUnlinkByAddr and rtDbgAsModuleLinkCommon.
|
---|
718 | *
|
---|
719 | * @param pDbgAs Pointer to the address space instance data.
|
---|
720 | * @param pMod The module to unlink.
|
---|
721 | *
|
---|
722 | * @remarks The caller must have locked the address space for writing.
|
---|
723 | */
|
---|
724 | static void rtDbgAsModuleUnlinkMod(PRTDBGASINT pDbgAs, PRTDBGASMOD pMod)
|
---|
725 | {
|
---|
726 | Assert(!pMod->pMapHead);
|
---|
727 |
|
---|
728 | /*
|
---|
729 | * Unlink it from the name.
|
---|
730 | */
|
---|
731 | const char *pszName = RTDbgModName((RTDBGMOD)pMod->Core.Key);
|
---|
732 | PRTDBGASNAME pName = (PRTDBGASNAME)RTStrSpaceGet(&pDbgAs->NameSpace, pszName);
|
---|
733 | AssertReturnVoid(pName);
|
---|
734 |
|
---|
735 | if (pName->pHead == pMod)
|
---|
736 | pName->pHead = pMod->pNextName;
|
---|
737 | else
|
---|
738 | for (PRTDBGASMOD pCur = pName->pHead; pCur; pCur = pCur->pNextName)
|
---|
739 | if (pCur->pNextName == pMod)
|
---|
740 | {
|
---|
741 | pCur->pNextName = pMod->pNextName;
|
---|
742 | break;
|
---|
743 | }
|
---|
744 | pMod->pNextName = NULL;
|
---|
745 |
|
---|
746 | /*
|
---|
747 | * Free the name if this was the last reference to it.
|
---|
748 | */
|
---|
749 | if (!pName->pHead)
|
---|
750 | {
|
---|
751 | pName = (PRTDBGASNAME)RTStrSpaceRemove(&pDbgAs->NameSpace, pName->StrCore.pszString);
|
---|
752 | Assert(pName);
|
---|
753 | RTMemFree(pName);
|
---|
754 | }
|
---|
755 |
|
---|
756 | /*
|
---|
757 | * Remove it from the module handle tree.
|
---|
758 | */
|
---|
759 | PAVLPVNODECORE pNode = RTAvlPVRemove(&pDbgAs->ModTree, pMod->Core.Key);
|
---|
760 | Assert(pNode == &pMod->Core); NOREF(pNode);
|
---|
761 |
|
---|
762 | /*
|
---|
763 | * Remove it from the module table by replacing it by the last entry.
|
---|
764 | */
|
---|
765 | pDbgAs->cModules--;
|
---|
766 | uint32_t iMod = pMod->iOrdinal;
|
---|
767 | Assert(iMod <= pDbgAs->cModules);
|
---|
768 | if (iMod != pDbgAs->cModules)
|
---|
769 | {
|
---|
770 | PRTDBGASMOD pTailMod = pDbgAs->papModules[pDbgAs->cModules];
|
---|
771 | pTailMod->iOrdinal = iMod;
|
---|
772 | pDbgAs->papModules[iMod] = pTailMod;
|
---|
773 | }
|
---|
774 | pMod->iOrdinal = UINT32_MAX;
|
---|
775 |
|
---|
776 | /*
|
---|
777 | * Free it.
|
---|
778 | */
|
---|
779 | RTMemFree(pMod);
|
---|
780 | }
|
---|
781 |
|
---|
782 |
|
---|
783 | /**
|
---|
784 | * Worker for RTDbgAsModuleUnlink and RTDbgAsModuleUnlinkByAddr.
|
---|
785 | *
|
---|
786 | * @param pDbgAs Pointer to the address space instance data.
|
---|
787 | * @param pMap The map to unlink and free.
|
---|
788 | *
|
---|
789 | * @remarks The caller must have locked the address space for writing.
|
---|
790 | */
|
---|
791 | static void rtDbgAsModuleUnlinkMap(PRTDBGASINT pDbgAs, PRTDBGASMAP pMap)
|
---|
792 | {
|
---|
793 | /* remove from the tree */
|
---|
794 | PAVLRUINTPTRNODECORE pNode = RTAvlrUIntPtrRemove(&pDbgAs->MapTree, pMap->Core.Key);
|
---|
795 | Assert(pNode == &pMap->Core); NOREF(pNode);
|
---|
796 |
|
---|
797 | /* unlink */
|
---|
798 | PRTDBGASMOD pMod = pMap->pMod;
|
---|
799 | if (pMod->pMapHead == pMap)
|
---|
800 | pMod->pMapHead = pMap->pNext;
|
---|
801 | else
|
---|
802 | {
|
---|
803 | bool fFound = false;
|
---|
804 | for (PRTDBGASMAP pCur = pMod->pMapHead; pCur; pCur = pCur->pNext)
|
---|
805 | if (pCur->pNext == pMap)
|
---|
806 | {
|
---|
807 | pCur->pNext = pMap->pNext;
|
---|
808 | fFound = true;
|
---|
809 | break;
|
---|
810 | }
|
---|
811 | Assert(fFound);
|
---|
812 | }
|
---|
813 |
|
---|
814 | /* free it */
|
---|
815 | pMap->Core.Key = pMap->Core.KeyLast = 0;
|
---|
816 | pMap->pNext = NULL;
|
---|
817 | pMap->pMod = NULL;
|
---|
818 | RTMemFree(pMap);
|
---|
819 | }
|
---|
820 |
|
---|
821 |
|
---|
822 | /**
|
---|
823 | * Worker for RTDbgAsModuleUnlinkByAddr and rtDbgAsModuleLinkCommon that
|
---|
824 | * unlinks a single mapping and releases the module if it's the last one.
|
---|
825 | *
|
---|
826 | * @param pDbgAs The address space instance.
|
---|
827 | * @param pMap The mapping to unlink.
|
---|
828 | *
|
---|
829 | * @remarks The caller must have locked the address space for writing.
|
---|
830 | */
|
---|
831 | static void rtDbgAsModuleUnlinkByMap(PRTDBGASINT pDbgAs, PRTDBGASMAP pMap)
|
---|
832 | {
|
---|
833 | /*
|
---|
834 | * Unlink it from the address space.
|
---|
835 | * Unlink the module as well if it's the last mapping it has.
|
---|
836 | */
|
---|
837 | PRTDBGASMOD pMod = pMap->pMod;
|
---|
838 | rtDbgAsModuleUnlinkMap(pDbgAs, pMap);
|
---|
839 | if (!pMod->pMapHead)
|
---|
840 | rtDbgAsModuleUnlinkMod(pDbgAs, pMod);
|
---|
841 | }
|
---|
842 |
|
---|
843 |
|
---|
844 | /**
|
---|
845 | * Unlinks all the mappings of a module from the address space.
|
---|
846 | *
|
---|
847 | * @returns IPRT status code.
|
---|
848 | * @retval VERR_NOT_FOUND if the module wasn't found.
|
---|
849 | *
|
---|
850 | * @param hDbgAs The address space handle.
|
---|
851 | * @param hDbgMod The module handle of the module to be unlinked.
|
---|
852 | */
|
---|
853 | RTDECL(int) RTDbgAsModuleUnlink(RTDBGAS hDbgAs, RTDBGMOD hDbgMod)
|
---|
854 | {
|
---|
855 | /*
|
---|
856 | * Validate input.
|
---|
857 | */
|
---|
858 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
859 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
860 | if (hDbgMod == NIL_RTDBGMOD)
|
---|
861 | return VINF_SUCCESS;
|
---|
862 |
|
---|
863 | RTDBGAS_LOCK_WRITE(pDbgAs);
|
---|
864 | PRTDBGASMOD pMod = (PRTDBGASMOD)RTAvlPVGet(&pDbgAs->ModTree, hDbgMod);
|
---|
865 | if (!pMod)
|
---|
866 | {
|
---|
867 | RTDBGAS_UNLOCK_WRITE(pDbgAs);
|
---|
868 | return VERR_NOT_FOUND;
|
---|
869 | }
|
---|
870 |
|
---|
871 | /*
|
---|
872 | * Unmap all everything and release the module.
|
---|
873 | */
|
---|
874 | while (pMod->pMapHead)
|
---|
875 | rtDbgAsModuleUnlinkMap(pDbgAs, pMod->pMapHead);
|
---|
876 | rtDbgAsModuleUnlinkMod(pDbgAs, pMod);
|
---|
877 |
|
---|
878 | RTDBGAS_UNLOCK_WRITE(pDbgAs);
|
---|
879 | return VINF_SUCCESS;
|
---|
880 | }
|
---|
881 | RT_EXPORT_SYMBOL(RTDbgAsModuleUnlink);
|
---|
882 |
|
---|
883 |
|
---|
884 | /**
|
---|
885 | * Unlinks the mapping at the specified address.
|
---|
886 | *
|
---|
887 | * @returns IPRT status code.
|
---|
888 | * @retval VERR_NOT_FOUND if no module or segment is mapped at that address.
|
---|
889 | *
|
---|
890 | * @param hDbgAs The address space handle.
|
---|
891 | * @param Addr The address within the mapping to be unlinked.
|
---|
892 | */
|
---|
893 | RTDECL(int) RTDbgAsModuleUnlinkByAddr(RTDBGAS hDbgAs, RTUINTPTR Addr)
|
---|
894 | {
|
---|
895 | /*
|
---|
896 | * Validate input.
|
---|
897 | */
|
---|
898 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
899 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
900 |
|
---|
901 | RTDBGAS_LOCK_WRITE(pDbgAs);
|
---|
902 | PRTDBGASMAP pMap = (PRTDBGASMAP)RTAvlrUIntPtrRangeGet(&pDbgAs->MapTree, Addr);
|
---|
903 | if (!pMap)
|
---|
904 | {
|
---|
905 | RTDBGAS_UNLOCK_WRITE(pDbgAs);
|
---|
906 | return VERR_NOT_FOUND;
|
---|
907 | }
|
---|
908 |
|
---|
909 | /*
|
---|
910 | * Hand it to
|
---|
911 | */
|
---|
912 | rtDbgAsModuleUnlinkByMap(pDbgAs, pMap);
|
---|
913 |
|
---|
914 | RTDBGAS_UNLOCK_WRITE(pDbgAs);
|
---|
915 | return VINF_SUCCESS;
|
---|
916 | }
|
---|
917 | RT_EXPORT_SYMBOL(RTDbgAsModuleUnlinkByAddr);
|
---|
918 |
|
---|
919 |
|
---|
920 | /**
|
---|
921 | * Get a the handle of a module in the address space by is index.
|
---|
922 | *
|
---|
923 | * @returns A retained handle to the specified module. The caller must release
|
---|
924 | * the returned reference.
|
---|
925 | * NIL_RTDBGMOD if invalid index or handle.
|
---|
926 | *
|
---|
927 | * @param hDbgAs The address space handle.
|
---|
928 | * @param iModule The index of the module to get.
|
---|
929 | *
|
---|
930 | * @remarks The module indexes may change after calls to RTDbgAsModuleLink,
|
---|
931 | * RTDbgAsModuleLinkSeg, RTDbgAsModuleUnlink and
|
---|
932 | * RTDbgAsModuleUnlinkByAddr.
|
---|
933 | */
|
---|
934 | RTDECL(RTDBGMOD) RTDbgAsModuleByIndex(RTDBGAS hDbgAs, uint32_t iModule)
|
---|
935 | {
|
---|
936 | /*
|
---|
937 | * Validate input.
|
---|
938 | */
|
---|
939 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
940 | RTDBGAS_VALID_RETURN_RC(pDbgAs, NIL_RTDBGMOD);
|
---|
941 |
|
---|
942 | RTDBGAS_LOCK_READ(pDbgAs);
|
---|
943 | if (iModule >= pDbgAs->cModules)
|
---|
944 | {
|
---|
945 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
946 | return NIL_RTDBGMOD;
|
---|
947 | }
|
---|
948 |
|
---|
949 | /*
|
---|
950 | * Get, retain and return it.
|
---|
951 | */
|
---|
952 | RTDBGMOD hMod = (RTDBGMOD)pDbgAs->papModules[iModule]->Core.Key;
|
---|
953 | RTDbgModRetain(hMod);
|
---|
954 |
|
---|
955 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
956 | return hMod;
|
---|
957 | }
|
---|
958 | RT_EXPORT_SYMBOL(RTDbgAsModuleByIndex);
|
---|
959 |
|
---|
960 |
|
---|
961 | /**
|
---|
962 | * Queries mapping module information by handle.
|
---|
963 | *
|
---|
964 | * @returns IPRT status code.
|
---|
965 | * @retval VERR_NOT_FOUND if no mapping was found at the specified address.
|
---|
966 | *
|
---|
967 | * @param hDbgAs The address space handle.
|
---|
968 | * @param Addr Address within the mapping of the module or segment.
|
---|
969 | * @param phMod Where to the return the retained module handle.
|
---|
970 | * Optional.
|
---|
971 | * @param pAddr Where to return the base address of the mapping.
|
---|
972 | * Optional.
|
---|
973 | * @param piSeg Where to return the segment index. This is set to
|
---|
974 | * NIL if the entire module is mapped as a single
|
---|
975 | * mapping. Optional.
|
---|
976 | */
|
---|
977 | RTDECL(int) RTDbgAsModuleByAddr(RTDBGAS hDbgAs, RTUINTPTR Addr, PRTDBGMOD phMod, PRTUINTPTR pAddr, PRTDBGSEGIDX piSeg)
|
---|
978 | {
|
---|
979 | /*
|
---|
980 | * Validate input.
|
---|
981 | */
|
---|
982 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
983 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
984 |
|
---|
985 | RTDBGAS_LOCK_READ(pDbgAs);
|
---|
986 | PRTDBGASMAP pMap = (PRTDBGASMAP)RTAvlrUIntPtrRangeGet(&pDbgAs->MapTree, Addr);
|
---|
987 | if (!pMap)
|
---|
988 | {
|
---|
989 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
990 | return VERR_NOT_FOUND;
|
---|
991 | }
|
---|
992 |
|
---|
993 | /*
|
---|
994 | * Set up the return values.
|
---|
995 | */
|
---|
996 | if (phMod)
|
---|
997 | {
|
---|
998 | RTDBGMOD hMod = (RTDBGMOD)pMap->pMod->Core.Key;
|
---|
999 | RTDbgModRetain(hMod);
|
---|
1000 | *phMod = hMod;
|
---|
1001 | }
|
---|
1002 | if (pAddr)
|
---|
1003 | *pAddr = pMap->Core.Key;
|
---|
1004 | if (piSeg)
|
---|
1005 | *piSeg = pMap->iSeg;
|
---|
1006 |
|
---|
1007 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
1008 | return VINF_SUCCESS;
|
---|
1009 | }
|
---|
1010 | RT_EXPORT_SYMBOL(RTDbgAsModuleByAddr);
|
---|
1011 |
|
---|
1012 |
|
---|
1013 | /**
|
---|
1014 | * Queries mapping module information by name.
|
---|
1015 | *
|
---|
1016 | * @returns IPRT status code.
|
---|
1017 | * @retval VERR_NOT_FOUND if no mapping was found at the specified address.
|
---|
1018 | * @retval VERR_OUT_OF_RANGE if the name index was out of range.
|
---|
1019 | *
|
---|
1020 | * @param hDbgAs The address space handle.
|
---|
1021 | * @param pszName The module name.
|
---|
1022 | * @param iName There can be more than one module by the same name
|
---|
1023 | * in an address space. This argument indicates which
|
---|
1024 | * is meant. (0 based)
|
---|
1025 | * @param phMod Where to the return the retained module handle.
|
---|
1026 | */
|
---|
1027 | RTDECL(int) RTDbgAsModuleByName(RTDBGAS hDbgAs, const char *pszName, uint32_t iName, PRTDBGMOD phMod)
|
---|
1028 | {
|
---|
1029 | /*
|
---|
1030 | * Validate input.
|
---|
1031 | */
|
---|
1032 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
1033 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
1034 | AssertPtrReturn(phMod, VERR_INVALID_POINTER);
|
---|
1035 |
|
---|
1036 | RTDBGAS_LOCK_READ(pDbgAs);
|
---|
1037 | PRTDBGASNAME pName = (PRTDBGASNAME)RTStrSpaceGet(&pDbgAs->NameSpace, pszName);
|
---|
1038 | if (!pName)
|
---|
1039 | {
|
---|
1040 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
1041 | return VERR_NOT_FOUND;
|
---|
1042 | }
|
---|
1043 |
|
---|
1044 | PRTDBGASMOD pMod = pName->pHead;
|
---|
1045 | while (iName-- > 0)
|
---|
1046 | {
|
---|
1047 | pMod = pMod->pNextName;
|
---|
1048 | if (!pMod)
|
---|
1049 | {
|
---|
1050 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
1051 | return VERR_OUT_OF_RANGE;
|
---|
1052 | }
|
---|
1053 | }
|
---|
1054 |
|
---|
1055 | /*
|
---|
1056 | * Get, retain and return it.
|
---|
1057 | */
|
---|
1058 | RTDBGMOD hMod = (RTDBGMOD)pMod->Core.Key;
|
---|
1059 | RTDbgModRetain(hMod);
|
---|
1060 | *phMod = hMod;
|
---|
1061 |
|
---|
1062 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
1063 | return VINF_SUCCESS;
|
---|
1064 | }
|
---|
1065 | RT_EXPORT_SYMBOL(RTDbgAsModuleByName);
|
---|
1066 |
|
---|
1067 |
|
---|
1068 | /**
|
---|
1069 | * Queries mapping information for a module given by index.
|
---|
1070 | *
|
---|
1071 | * @returns IRPT status code.
|
---|
1072 | * @retval VERR_INVALID_HANDLE if hDbgAs is invalid.
|
---|
1073 | * @retval VERR_OUT_OF_RANGE if the name index was out of range.
|
---|
1074 | * @retval VINF_BUFFER_OVERFLOW if the array is too small and the returned
|
---|
1075 | * information is incomplete.
|
---|
1076 | *
|
---|
1077 | * @param hDbgAs The address space handle.
|
---|
1078 | * @param iModule The index of the module to get.
|
---|
1079 | * @param paMappings Where to return the mapping information. The buffer
|
---|
1080 | * size is given by *pcMappings.
|
---|
1081 | * @param pcMappings IN: Size of the paMappings array. OUT: The number of
|
---|
1082 | * entries returned.
|
---|
1083 | * @param fFlags Flags for reserved for future use. MBZ.
|
---|
1084 | *
|
---|
1085 | * @remarks See remarks for RTDbgAsModuleByIndex regarding the volatility of the
|
---|
1086 | * iModule parameter.
|
---|
1087 | */
|
---|
1088 | RTDECL(int) RTDbgAsModuleQueryMapByIndex(RTDBGAS hDbgAs, uint32_t iModule, PRTDBGASMAPINFO paMappings, uint32_t *pcMappings, uint32_t fFlags)
|
---|
1089 | {
|
---|
1090 | /*
|
---|
1091 | * Validate input.
|
---|
1092 | */
|
---|
1093 | uint32_t const cMappings = *pcMappings;
|
---|
1094 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
1095 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
1096 | AssertReturn(!fFlags, VERR_INVALID_PARAMETER);
|
---|
1097 |
|
---|
1098 | RTDBGAS_LOCK_READ(pDbgAs);
|
---|
1099 | if (iModule >= pDbgAs->cModules)
|
---|
1100 | {
|
---|
1101 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
1102 | return VERR_OUT_OF_RANGE;
|
---|
1103 | }
|
---|
1104 |
|
---|
1105 | /*
|
---|
1106 | * Copy the mapping information about the module.
|
---|
1107 | */
|
---|
1108 | int rc = VINF_SUCCESS;
|
---|
1109 | PRTDBGASMAP pMap = pDbgAs->papModules[iModule]->pMapHead;
|
---|
1110 | uint32_t cMaps = 0;
|
---|
1111 | while (pMap)
|
---|
1112 | {
|
---|
1113 | if (cMaps >= cMappings)
|
---|
1114 | {
|
---|
1115 | rc = VINF_BUFFER_OVERFLOW;
|
---|
1116 | break;
|
---|
1117 | }
|
---|
1118 | paMappings[cMaps].Address = pMap->Core.Key;
|
---|
1119 | paMappings[cMaps].iSeg = pMap->iSeg;
|
---|
1120 | cMaps++;
|
---|
1121 | pMap = pMap->pNext;
|
---|
1122 | }
|
---|
1123 |
|
---|
1124 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
1125 | *pcMappings = cMaps;
|
---|
1126 | return rc;
|
---|
1127 | }
|
---|
1128 | RT_EXPORT_SYMBOL(RTDbgAsModuleQueryMapByIndex);
|
---|
1129 |
|
---|
1130 |
|
---|
1131 | /**
|
---|
1132 | * Internal worker that looks up and retains a module.
|
---|
1133 | *
|
---|
1134 | * @returns Module handle, NIL_RTDBGMOD if not found.
|
---|
1135 | * @param pDbgAs The address space instance data.
|
---|
1136 | * @param Addr Address within the module.
|
---|
1137 | * @param piSeg where to return the segment index.
|
---|
1138 | * @param poffSeg Where to return the segment offset.
|
---|
1139 | * @param pMapAddr The mapping address (RTDBGASMAP::Core.Key).
|
---|
1140 | */
|
---|
1141 | DECLINLINE(RTDBGMOD) rtDbgAsModuleByAddr(PRTDBGASINT pDbgAs, RTUINTPTR Addr, PRTDBGSEGIDX piSeg, PRTUINTPTR poffSeg, PRTUINTPTR pMapAddr)
|
---|
1142 | {
|
---|
1143 | RTDBGMOD hMod = NIL_RTDBGMOD;
|
---|
1144 |
|
---|
1145 | RTDBGAS_LOCK_READ(pDbgAs);
|
---|
1146 | PRTDBGASMAP pMap = (PRTDBGASMAP)RTAvlrUIntPtrRangeGet(&pDbgAs->MapTree, Addr);
|
---|
1147 | if (pMap)
|
---|
1148 | {
|
---|
1149 | hMod = (RTDBGMOD)pMap->pMod->Core.Key;
|
---|
1150 | RTDbgModRetain(hMod);
|
---|
1151 | *piSeg = pMap->iSeg != NIL_RTDBGSEGIDX ? pMap->iSeg : RTDBGSEGIDX_RVA;
|
---|
1152 | *poffSeg = Addr - pMap->Core.Key;
|
---|
1153 | if (pMapAddr)
|
---|
1154 | *pMapAddr = pMap->Core.Key;
|
---|
1155 | }
|
---|
1156 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
1157 |
|
---|
1158 | return hMod;
|
---|
1159 | }
|
---|
1160 |
|
---|
1161 |
|
---|
1162 | /**
|
---|
1163 | * Adjusts the address to correspond to the mapping of the module/segment.
|
---|
1164 | *
|
---|
1165 | * @param pAddr The address to adjust (in/out).
|
---|
1166 | * @param iSeg The related segment.
|
---|
1167 | * @param hDbgMod The module handle.
|
---|
1168 | * @param MapAddr The mapping address.
|
---|
1169 | * @param iMapSeg The segment that's mapped, NIL_RTDBGSEGIDX or
|
---|
1170 | * RTDBGSEGIDX_RVA if the whole module is mapped here.
|
---|
1171 | */
|
---|
1172 | DECLINLINE(void) rtDbgAsAdjustAddressByMapping(PRTUINTPTR pAddr, RTDBGSEGIDX iSeg,
|
---|
1173 | RTDBGMOD hDbgMod, RTUINTPTR MapAddr, RTDBGSEGIDX iMapSeg)
|
---|
1174 | {
|
---|
1175 | if (iSeg == RTDBGSEGIDX_ABS)
|
---|
1176 | return;
|
---|
1177 |
|
---|
1178 | if (iSeg == RTDBGSEGIDX_RVA)
|
---|
1179 | {
|
---|
1180 | if ( iMapSeg == RTDBGSEGIDX_RVA
|
---|
1181 | || iMapSeg == NIL_RTDBGSEGIDX)
|
---|
1182 | *pAddr += MapAddr;
|
---|
1183 | else
|
---|
1184 | {
|
---|
1185 | RTUINTPTR SegRva = RTDbgModSegmentRva(hDbgMod, iMapSeg);
|
---|
1186 | AssertReturnVoid(SegRva != RTUINTPTR_MAX);
|
---|
1187 | AssertMsg(SegRva <= *pAddr, ("SegRva=%RTptr *pAddr=%RTptr\n", SegRva, *pAddr));
|
---|
1188 | *pAddr += MapAddr - SegRva;
|
---|
1189 | }
|
---|
1190 | }
|
---|
1191 | else
|
---|
1192 | {
|
---|
1193 | if ( iMapSeg != RTDBGSEGIDX_RVA
|
---|
1194 | && iMapSeg != NIL_RTDBGSEGIDX)
|
---|
1195 | {
|
---|
1196 | Assert(iMapSeg == iSeg);
|
---|
1197 | *pAddr += MapAddr;
|
---|
1198 | }
|
---|
1199 | else
|
---|
1200 | {
|
---|
1201 | RTUINTPTR SegRva = RTDbgModSegmentRva(hDbgMod, iSeg);
|
---|
1202 | AssertReturnVoid(SegRva != RTUINTPTR_MAX);
|
---|
1203 | *pAddr += MapAddr + SegRva;
|
---|
1204 | }
|
---|
1205 | }
|
---|
1206 | }
|
---|
1207 |
|
---|
1208 |
|
---|
1209 | /**
|
---|
1210 | * Adjusts the symbol value to correspond to the mapping of the module/segment.
|
---|
1211 | *
|
---|
1212 | * @param pSymbol The returned symbol info.
|
---|
1213 | * @param hDbgMod The module handle.
|
---|
1214 | * @param MapAddr The mapping address.
|
---|
1215 | * @param iMapSeg The segment that's mapped, NIL_RTDBGSEGIDX if the
|
---|
1216 | * whole module is mapped here.
|
---|
1217 | */
|
---|
1218 | DECLINLINE(void) rtDbgAsAdjustSymbolValue(PRTDBGSYMBOL pSymbol, RTDBGMOD hDbgMod, RTUINTPTR MapAddr, RTDBGSEGIDX iMapSeg)
|
---|
1219 | {
|
---|
1220 | Assert(pSymbol->iSeg != NIL_RTDBGSEGIDX);
|
---|
1221 | Assert(pSymbol->offSeg == pSymbol->Value);
|
---|
1222 | rtDbgAsAdjustAddressByMapping(&pSymbol->Value, pSymbol->iSeg, hDbgMod, MapAddr, iMapSeg);
|
---|
1223 | }
|
---|
1224 |
|
---|
1225 |
|
---|
1226 | /**
|
---|
1227 | * Adjusts the line number address to correspond to the mapping of the module/segment.
|
---|
1228 | *
|
---|
1229 | * @param pLine The returned line number info.
|
---|
1230 | * @param hDbgMod The module handle.
|
---|
1231 | * @param MapAddr The mapping address.
|
---|
1232 | * @param iMapSeg The segment that's mapped, NIL_RTDBGSEGIDX if the
|
---|
1233 | * whole module is mapped here.
|
---|
1234 | */
|
---|
1235 | DECLINLINE(void) rtDbgAsAdjustLineAddress(PRTDBGLINE pLine, RTDBGMOD hDbgMod, RTUINTPTR MapAddr, RTDBGSEGIDX iMapSeg)
|
---|
1236 | {
|
---|
1237 | Assert(pLine->iSeg != NIL_RTDBGSEGIDX);
|
---|
1238 | Assert(pLine->offSeg == pLine->Address);
|
---|
1239 | rtDbgAsAdjustAddressByMapping(&pLine->Address, pLine->iSeg, hDbgMod, MapAddr, iMapSeg);
|
---|
1240 | }
|
---|
1241 |
|
---|
1242 |
|
---|
1243 | /**
|
---|
1244 | * Adds a symbol to a module in the address space.
|
---|
1245 | *
|
---|
1246 | * @returns IPRT status code. See RTDbgModSymbolAdd for more specific ones.
|
---|
1247 | * @retval VERR_INVALID_HANDLE if hDbgAs is invalid.
|
---|
1248 | * @retval VERR_NOT_FOUND if no module was found at the specified address.
|
---|
1249 | * @retval VERR_NOT_SUPPORTED if the module interpret doesn't support adding
|
---|
1250 | * custom symbols.
|
---|
1251 | *
|
---|
1252 | * @param hDbgAs The address space handle.
|
---|
1253 | * @param pszSymbol The symbol name.
|
---|
1254 | * @param Addr The address of the symbol.
|
---|
1255 | * @param cb The size of the symbol.
|
---|
1256 | * @param fFlags Symbol flags.
|
---|
1257 | * @param piOrdinal Where to return the symbol ordinal on success. If
|
---|
1258 | * the interpreter doesn't do ordinals, this will be set to
|
---|
1259 | * UINT32_MAX. Optional
|
---|
1260 | */
|
---|
1261 | RTDECL(int) RTDbgAsSymbolAdd(RTDBGAS hDbgAs, const char *pszSymbol, RTUINTPTR Addr, RTUINTPTR cb, uint32_t fFlags, uint32_t *piOrdinal)
|
---|
1262 | {
|
---|
1263 | /*
|
---|
1264 | * Validate input and resolve the address.
|
---|
1265 | */
|
---|
1266 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
1267 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
1268 |
|
---|
1269 | RTDBGSEGIDX iSeg = NIL_RTDBGSEGIDX; /* shut up gcc */
|
---|
1270 | RTUINTPTR offSeg = 0;
|
---|
1271 | RTDBGMOD hMod = rtDbgAsModuleByAddr(pDbgAs, Addr, &iSeg, &offSeg, NULL);
|
---|
1272 | if (hMod == NIL_RTDBGMOD)
|
---|
1273 | return VERR_NOT_FOUND;
|
---|
1274 |
|
---|
1275 | /*
|
---|
1276 | * Forward the call.
|
---|
1277 | */
|
---|
1278 | int rc = RTDbgModSymbolAdd(hMod, pszSymbol, iSeg, offSeg, cb, fFlags, piOrdinal);
|
---|
1279 | RTDbgModRelease(hMod);
|
---|
1280 | return rc;
|
---|
1281 | }
|
---|
1282 | RT_EXPORT_SYMBOL(RTDbgAsSymbolAdd);
|
---|
1283 |
|
---|
1284 |
|
---|
1285 | /**
|
---|
1286 | * Query a symbol by address.
|
---|
1287 | *
|
---|
1288 | * @returns IPRT status code. See RTDbgModSymbolAddr for more specific ones.
|
---|
1289 | * @retval VERR_INVALID_HANDLE if hDbgAs is invalid.
|
---|
1290 | * @retval VERR_NOT_FOUND if the address couldn't be mapped to a module.
|
---|
1291 | * @retval VERR_INVALID_PARAMETER if incorrect flags.
|
---|
1292 | *
|
---|
1293 | * @param hDbgAs The address space handle.
|
---|
1294 | * @param Addr The address which closest symbol is requested.
|
---|
1295 | * @param fFlags Symbol search flags, see RTDBGSYMADDR_FLAGS_XXX.
|
---|
1296 | * @param poffDisp Where to return the distance between the symbol and
|
---|
1297 | * address. Optional.
|
---|
1298 | * @param pSymbol Where to return the symbol info.
|
---|
1299 | * @param phMod Where to return the module handle. Optional.
|
---|
1300 | */
|
---|
1301 | RTDECL(int) RTDbgAsSymbolByAddr(RTDBGAS hDbgAs, RTUINTPTR Addr, uint32_t fFlags,
|
---|
1302 | PRTINTPTR poffDisp, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod)
|
---|
1303 | {
|
---|
1304 | /*
|
---|
1305 | * Validate input and resolve the address.
|
---|
1306 | */
|
---|
1307 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
1308 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
1309 |
|
---|
1310 | RTDBGSEGIDX iSeg = NIL_RTDBGSEGIDX; /* shut up gcc */
|
---|
1311 | RTUINTPTR offSeg = 0;
|
---|
1312 | RTUINTPTR MapAddr = 0;
|
---|
1313 | RTDBGMOD hMod = rtDbgAsModuleByAddr(pDbgAs, Addr, &iSeg, &offSeg, &MapAddr);
|
---|
1314 | if (hMod == NIL_RTDBGMOD)
|
---|
1315 | {
|
---|
1316 | if (phMod)
|
---|
1317 | *phMod = NIL_RTDBGMOD;
|
---|
1318 | return VERR_NOT_FOUND;
|
---|
1319 | }
|
---|
1320 |
|
---|
1321 | /*
|
---|
1322 | * Forward the call.
|
---|
1323 | */
|
---|
1324 | int rc = RTDbgModSymbolByAddr(hMod, iSeg, offSeg, fFlags, poffDisp, pSymbol);
|
---|
1325 | if (RT_SUCCESS(rc))
|
---|
1326 | rtDbgAsAdjustSymbolValue(pSymbol, hMod, MapAddr, iSeg);
|
---|
1327 | if (phMod)
|
---|
1328 | *phMod = hMod;
|
---|
1329 | else
|
---|
1330 | RTDbgModRelease(hMod);
|
---|
1331 | return rc;
|
---|
1332 | }
|
---|
1333 | RT_EXPORT_SYMBOL(RTDbgAsSymbolByAddr);
|
---|
1334 |
|
---|
1335 |
|
---|
1336 | /**
|
---|
1337 | * Query a symbol by address.
|
---|
1338 | *
|
---|
1339 | * @returns IPRT status code. See RTDbgModSymbolAddrA for more specific ones.
|
---|
1340 | * @retval VERR_INVALID_HANDLE if hDbgAs is invalid.
|
---|
1341 | * @retval VERR_NOT_FOUND if the address couldn't be mapped to a module.
|
---|
1342 | * @retval VERR_INVALID_PARAMETER if incorrect flags.
|
---|
1343 | *
|
---|
1344 | * @param hDbgAs The address space handle.
|
---|
1345 | * @param Addr The address which closest symbol is requested.
|
---|
1346 | * @param fFlags Symbol search flags, see RTDBGSYMADDR_FLAGS_XXX.
|
---|
1347 | * @param poffDisp Where to return the distance between the symbol
|
---|
1348 | * and address. Optional.
|
---|
1349 | * @param ppSymInfo Where to return the pointer to the allocated symbol
|
---|
1350 | * info. Always set. Free with RTDbgSymbolFree.
|
---|
1351 | * @param phMod Where to return the module handle. Optional.
|
---|
1352 | */
|
---|
1353 | RTDECL(int) RTDbgAsSymbolByAddrA(RTDBGAS hDbgAs, RTUINTPTR Addr, uint32_t fFlags,
|
---|
1354 | PRTINTPTR poffDisp, PRTDBGSYMBOL *ppSymInfo, PRTDBGMOD phMod)
|
---|
1355 | {
|
---|
1356 | /*
|
---|
1357 | * Validate input and resolve the address.
|
---|
1358 | */
|
---|
1359 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
1360 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
1361 |
|
---|
1362 | RTDBGSEGIDX iSeg = NIL_RTDBGSEGIDX;
|
---|
1363 | RTUINTPTR offSeg = 0;
|
---|
1364 | RTUINTPTR MapAddr = 0;
|
---|
1365 | RTDBGMOD hMod = rtDbgAsModuleByAddr(pDbgAs, Addr, &iSeg, &offSeg, &MapAddr);
|
---|
1366 | if (hMod == NIL_RTDBGMOD)
|
---|
1367 | {
|
---|
1368 | if (phMod)
|
---|
1369 | *phMod = NIL_RTDBGMOD;
|
---|
1370 | return VERR_NOT_FOUND;
|
---|
1371 | }
|
---|
1372 |
|
---|
1373 | /*
|
---|
1374 | * Forward the call.
|
---|
1375 | */
|
---|
1376 | int rc = RTDbgModSymbolByAddrA(hMod, iSeg, offSeg, fFlags, poffDisp, ppSymInfo);
|
---|
1377 | if (RT_SUCCESS(rc))
|
---|
1378 | rtDbgAsAdjustSymbolValue(*ppSymInfo, hMod, MapAddr, iSeg);
|
---|
1379 | if (phMod)
|
---|
1380 | *phMod = hMod;
|
---|
1381 | else
|
---|
1382 | RTDbgModRelease(hMod);
|
---|
1383 | return rc;
|
---|
1384 | }
|
---|
1385 | RT_EXPORT_SYMBOL(RTDbgAsSymbolByAddrA);
|
---|
1386 |
|
---|
1387 |
|
---|
1388 | /**
|
---|
1389 | * Creates a snapshot of the module table on the temporary heap.
|
---|
1390 | *
|
---|
1391 | * The caller must release all the module handles before freeing the table
|
---|
1392 | * using RTMemTmpFree.
|
---|
1393 | *
|
---|
1394 | * @returns Module table snaphot.
|
---|
1395 | * @param pDbgAs The address space instance data.
|
---|
1396 | * @param pcModules Where to return the number of modules.
|
---|
1397 | */
|
---|
1398 | DECLINLINE(PRTDBGMOD) rtDbgAsSnapshotModuleTable(PRTDBGASINT pDbgAs, uint32_t *pcModules)
|
---|
1399 | {
|
---|
1400 | RTDBGAS_LOCK_READ(pDbgAs);
|
---|
1401 |
|
---|
1402 | uint32_t iMod = *pcModules = pDbgAs->cModules;
|
---|
1403 | PRTDBGMOD pahModules = (PRTDBGMOD)RTMemTmpAlloc(sizeof(pahModules[0]) * RT_MAX(iMod, 1));
|
---|
1404 | if (pahModules)
|
---|
1405 | {
|
---|
1406 | while (iMod-- > 0)
|
---|
1407 | {
|
---|
1408 | RTDBGMOD hMod = (RTDBGMOD)pDbgAs->papModules[iMod]->Core.Key;
|
---|
1409 | pahModules[iMod] = hMod;
|
---|
1410 | RTDbgModRetain(hMod);
|
---|
1411 | }
|
---|
1412 | }
|
---|
1413 |
|
---|
1414 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
1415 | return pahModules;
|
---|
1416 | }
|
---|
1417 |
|
---|
1418 |
|
---|
1419 | /**
|
---|
1420 | * Attempts to find a mapping of the specified symbol/module and
|
---|
1421 | * adjust it's Value field accordingly.
|
---|
1422 | *
|
---|
1423 | * @returns true / false success indicator.
|
---|
1424 | * @param pDbgAs The address space.
|
---|
1425 | * @param hDbgMod The module handle.
|
---|
1426 | * @param pSymbol The symbol info.
|
---|
1427 | */
|
---|
1428 | static bool rtDbgAsFindMappingAndAdjustSymbolValue(PRTDBGASINT pDbgAs, RTDBGMOD hDbgMod, PRTDBGSYMBOL pSymbol)
|
---|
1429 | {
|
---|
1430 | /*
|
---|
1431 | * Absolute segments needs no fixing.
|
---|
1432 | */
|
---|
1433 | RTDBGSEGIDX const iSeg = pSymbol->iSeg;
|
---|
1434 | if (iSeg == RTDBGSEGIDX_ABS)
|
---|
1435 | return true;
|
---|
1436 |
|
---|
1437 | RTDBGAS_LOCK_READ(pDbgAs);
|
---|
1438 |
|
---|
1439 | /*
|
---|
1440 | * Lookup up the module by it's handle and iterate the mappings looking for one
|
---|
1441 | * that either encompasses the entire module or the segment in question.
|
---|
1442 | */
|
---|
1443 | PRTDBGASMOD pMod = (PRTDBGASMOD)RTAvlPVGet(&pDbgAs->ModTree, hDbgMod);
|
---|
1444 | if (pMod)
|
---|
1445 | {
|
---|
1446 | for (PRTDBGASMAP pMap = pMod->pMapHead; pMap; pMap = pMap->pNext)
|
---|
1447 | {
|
---|
1448 | /* Exact segment match or full-mapping. */
|
---|
1449 | if ( iSeg == pMap->iSeg
|
---|
1450 | || pMap->iSeg == NIL_RTDBGSEGIDX)
|
---|
1451 | {
|
---|
1452 | RTUINTPTR MapAddr = pMap->Core.Key;
|
---|
1453 | RTDBGSEGIDX iMapSeg = pMap->iSeg;
|
---|
1454 |
|
---|
1455 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
1456 | rtDbgAsAdjustSymbolValue(pSymbol, hDbgMod, MapAddr, iMapSeg);
|
---|
1457 | return true;
|
---|
1458 | }
|
---|
1459 |
|
---|
1460 | /* Symbol uses RVA and the mapping doesn't, see if it's in the mapped segment. */
|
---|
1461 | if (iSeg == RTDBGSEGIDX_RVA)
|
---|
1462 | {
|
---|
1463 | Assert(pMap->iSeg != NIL_RTDBGSEGIDX);
|
---|
1464 | RTUINTPTR SegRva = RTDbgModSegmentRva(hDbgMod, pMap->iSeg);
|
---|
1465 | Assert(SegRva != RTUINTPTR_MAX);
|
---|
1466 | RTUINTPTR cbSeg = RTDbgModSegmentSize(hDbgMod, pMap->iSeg);
|
---|
1467 | if (SegRva - pSymbol->Value < cbSeg)
|
---|
1468 | {
|
---|
1469 | RTUINTPTR MapAddr = pMap->Core.Key;
|
---|
1470 | RTDBGSEGIDX iMapSeg = pMap->iSeg;
|
---|
1471 |
|
---|
1472 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
1473 | rtDbgAsAdjustSymbolValue(pSymbol, hDbgMod, MapAddr, iMapSeg);
|
---|
1474 | return true;
|
---|
1475 | }
|
---|
1476 | }
|
---|
1477 | }
|
---|
1478 | }
|
---|
1479 | /* else: Unmapped while we were searching. */
|
---|
1480 |
|
---|
1481 | RTDBGAS_UNLOCK_READ(pDbgAs);
|
---|
1482 | return false;
|
---|
1483 | }
|
---|
1484 |
|
---|
1485 |
|
---|
1486 | /**
|
---|
1487 | * Query a symbol by name.
|
---|
1488 | *
|
---|
1489 | * @returns IPRT status code.
|
---|
1490 | * @retval VERR_SYMBOL_NOT_FOUND if not found.
|
---|
1491 | *
|
---|
1492 | * @param hDbgAs The address space handle.
|
---|
1493 | * @param pszSymbol The symbol name. It is possible to limit the scope
|
---|
1494 | * of the search by prefixing the symbol with a module
|
---|
1495 | * name pattern followed by a bang (!) character.
|
---|
1496 | * RTStrSimplePatternNMatch is used for the matching.
|
---|
1497 | * @param pSymbol Where to return the symbol info.
|
---|
1498 | * @param phMod Where to return the module handle. Optional.
|
---|
1499 | */
|
---|
1500 | RTDECL(int) RTDbgAsSymbolByName(RTDBGAS hDbgAs, const char *pszSymbol, PRTDBGSYMBOL pSymbol, PRTDBGMOD phMod)
|
---|
1501 | {
|
---|
1502 | /*
|
---|
1503 | * Validate input.
|
---|
1504 | */
|
---|
1505 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
1506 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
1507 | AssertPtrReturn(pszSymbol, VERR_INVALID_POINTER);
|
---|
1508 | AssertPtrReturn(pSymbol, VERR_INVALID_POINTER);
|
---|
1509 |
|
---|
1510 | /*
|
---|
1511 | * Look for module pattern.
|
---|
1512 | */
|
---|
1513 | const char *pachModPat = NULL;
|
---|
1514 | size_t cchModPat = 0;
|
---|
1515 | const char *pszBang = strchr(pszSymbol, '!');
|
---|
1516 | if (pszBang)
|
---|
1517 | {
|
---|
1518 | pachModPat = pszSymbol;
|
---|
1519 | cchModPat = pszBang - pszSymbol;
|
---|
1520 | pszSymbol = pszBang + 1;
|
---|
1521 | if (!*pszSymbol)
|
---|
1522 | return VERR_DBG_SYMBOL_NAME_OUT_OF_RANGE;
|
---|
1523 | /* Note! Zero length module -> no pattern -> escape for symbol with '!'. */
|
---|
1524 | }
|
---|
1525 |
|
---|
1526 | /*
|
---|
1527 | * Iterate the modules, looking for the symbol.
|
---|
1528 | */
|
---|
1529 | uint32_t cModules;
|
---|
1530 | PRTDBGMOD pahModules = rtDbgAsSnapshotModuleTable(pDbgAs, &cModules);
|
---|
1531 | if (!pahModules)
|
---|
1532 | return VERR_NO_TMP_MEMORY;
|
---|
1533 |
|
---|
1534 | for (uint32_t i = 0; i < cModules; i++)
|
---|
1535 | {
|
---|
1536 | if ( cchModPat == 0
|
---|
1537 | || RTStrSimplePatternNMatch(pachModPat, cchModPat, RTDbgModName(pahModules[i]), RTSTR_MAX))
|
---|
1538 | {
|
---|
1539 | int rc = RTDbgModSymbolByName(pahModules[i], pszSymbol, pSymbol);
|
---|
1540 | if (RT_SUCCESS(rc))
|
---|
1541 | {
|
---|
1542 | if (rtDbgAsFindMappingAndAdjustSymbolValue(pDbgAs, pahModules[i], pSymbol))
|
---|
1543 | {
|
---|
1544 | if (phMod)
|
---|
1545 | RTDbgModRetain(*phMod = pahModules[i]);
|
---|
1546 | for (; i < cModules; i++)
|
---|
1547 | RTDbgModRelease(pahModules[i]);
|
---|
1548 | RTMemTmpFree(pahModules);
|
---|
1549 | return rc;
|
---|
1550 | }
|
---|
1551 | }
|
---|
1552 | }
|
---|
1553 | RTDbgModRelease(pahModules[i]);
|
---|
1554 | }
|
---|
1555 |
|
---|
1556 | RTMemTmpFree(pahModules);
|
---|
1557 | return VERR_SYMBOL_NOT_FOUND;
|
---|
1558 | }
|
---|
1559 | RT_EXPORT_SYMBOL(RTDbgAsSymbolByName);
|
---|
1560 |
|
---|
1561 |
|
---|
1562 | /**
|
---|
1563 | * Query a symbol by name, allocating the returned symbol structure.
|
---|
1564 | *
|
---|
1565 | * @returns IPRT status code.
|
---|
1566 | * @retval VERR_SYMBOL_NOT_FOUND if not found.
|
---|
1567 | *
|
---|
1568 | * @param hDbgAs The address space handle.
|
---|
1569 | * @param pszSymbol The symbol name. See RTDbgAsSymbolByName for more.
|
---|
1570 | * @param ppSymbol Where to return the pointer to the allocated
|
---|
1571 | * symbol info. Always set. Free with RTDbgSymbolFree.
|
---|
1572 | * @param phMod Where to return the module handle. Optional.
|
---|
1573 | */
|
---|
1574 | RTDECL(int) RTDbgAsSymbolByNameA(RTDBGAS hDbgAs, const char *pszSymbol, PRTDBGSYMBOL *ppSymbol, PRTDBGMOD phMod)
|
---|
1575 | {
|
---|
1576 | /*
|
---|
1577 | * Validate input.
|
---|
1578 | */
|
---|
1579 | AssertPtrReturn(ppSymbol, VERR_INVALID_POINTER);
|
---|
1580 | *ppSymbol = NULL;
|
---|
1581 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
1582 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
1583 | AssertPtrReturn(pszSymbol, VERR_INVALID_POINTER);
|
---|
1584 |
|
---|
1585 | /*
|
---|
1586 | * Look for module pattern.
|
---|
1587 | */
|
---|
1588 | const char *pachModPat = NULL;
|
---|
1589 | size_t cchModPat = 0;
|
---|
1590 | const char *pszBang = strchr(pszSymbol, '!');
|
---|
1591 | if (pszBang)
|
---|
1592 | {
|
---|
1593 | pachModPat = pszSymbol;
|
---|
1594 | cchModPat = pszBang - pszSymbol;
|
---|
1595 | pszSymbol = pszBang + 1;
|
---|
1596 | if (!*pszSymbol)
|
---|
1597 | return VERR_DBG_SYMBOL_NAME_OUT_OF_RANGE;
|
---|
1598 | /* Note! Zero length module -> no pattern -> escape for symbol with '!'. */
|
---|
1599 | }
|
---|
1600 |
|
---|
1601 | /*
|
---|
1602 | * Iterate the modules, looking for the symbol.
|
---|
1603 | */
|
---|
1604 | uint32_t cModules;
|
---|
1605 | PRTDBGMOD pahModules = rtDbgAsSnapshotModuleTable(pDbgAs, &cModules);
|
---|
1606 | if (!pahModules)
|
---|
1607 | return VERR_NO_TMP_MEMORY;
|
---|
1608 |
|
---|
1609 | for (uint32_t i = 0; i < cModules; i++)
|
---|
1610 | {
|
---|
1611 | if ( cchModPat == 0
|
---|
1612 | || RTStrSimplePatternNMatch(pachModPat, cchModPat, RTDbgModName(pahModules[i]), RTSTR_MAX))
|
---|
1613 | {
|
---|
1614 | int rc = RTDbgModSymbolByNameA(pahModules[i], pszSymbol, ppSymbol);
|
---|
1615 | if (RT_SUCCESS(rc))
|
---|
1616 | {
|
---|
1617 | if (rtDbgAsFindMappingAndAdjustSymbolValue(pDbgAs, pahModules[i], *ppSymbol))
|
---|
1618 | {
|
---|
1619 | if (phMod)
|
---|
1620 | RTDbgModRetain(*phMod = pahModules[i]);
|
---|
1621 | for (; i < cModules; i++)
|
---|
1622 | RTDbgModRelease(pahModules[i]);
|
---|
1623 | RTMemTmpFree(pahModules);
|
---|
1624 | return rc;
|
---|
1625 | }
|
---|
1626 | }
|
---|
1627 | }
|
---|
1628 | RTDbgModRelease(pahModules[i]);
|
---|
1629 | }
|
---|
1630 |
|
---|
1631 | RTMemTmpFree(pahModules);
|
---|
1632 | return VERR_SYMBOL_NOT_FOUND;
|
---|
1633 | }
|
---|
1634 | RT_EXPORT_SYMBOL(RTDbgAsSymbolByNameA);
|
---|
1635 |
|
---|
1636 |
|
---|
1637 | /**
|
---|
1638 | * Adds a line number to a module in the address space.
|
---|
1639 | *
|
---|
1640 | * @returns IPRT status code. See RTDbgModSymbolAdd for more specific ones.
|
---|
1641 | * @retval VERR_INVALID_HANDLE if hDbgAs is invalid.
|
---|
1642 | * @retval VERR_NOT_FOUND if no module was found at the specified address.
|
---|
1643 | * @retval VERR_NOT_SUPPORTED if the module interpret doesn't support adding
|
---|
1644 | * custom symbols.
|
---|
1645 | *
|
---|
1646 | * @param hDbgAs The address space handle.
|
---|
1647 | * @param pszFile The file name.
|
---|
1648 | * @param uLineNo The line number.
|
---|
1649 | * @param Addr The address of the symbol.
|
---|
1650 | * @param piOrdinal Where to return the line number ordinal on success.
|
---|
1651 | * If the interpreter doesn't do ordinals, this will be
|
---|
1652 | * set to UINT32_MAX. Optional.
|
---|
1653 | */
|
---|
1654 | RTDECL(int) RTDbgAsLineAdd(RTDBGAS hDbgAs, const char *pszFile, uint32_t uLineNo, RTUINTPTR Addr, uint32_t *piOrdinal)
|
---|
1655 | {
|
---|
1656 | /*
|
---|
1657 | * Validate input and resolve the address.
|
---|
1658 | */
|
---|
1659 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
1660 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
1661 |
|
---|
1662 | RTDBGSEGIDX iSeg = NIL_RTDBGSEGIDX; /* shut up gcc */
|
---|
1663 | RTUINTPTR offSeg = 0; /* ditto */
|
---|
1664 | RTDBGMOD hMod = rtDbgAsModuleByAddr(pDbgAs, Addr, &iSeg, &offSeg, NULL);
|
---|
1665 | if (hMod == NIL_RTDBGMOD)
|
---|
1666 | return VERR_NOT_FOUND;
|
---|
1667 |
|
---|
1668 | /*
|
---|
1669 | * Forward the call.
|
---|
1670 | */
|
---|
1671 | int rc = RTDbgModLineAdd(hMod, pszFile, uLineNo, iSeg, offSeg, piOrdinal);
|
---|
1672 | RTDbgModRelease(hMod);
|
---|
1673 | return rc;
|
---|
1674 | }
|
---|
1675 | RT_EXPORT_SYMBOL(RTDbgAsLineAdd);
|
---|
1676 |
|
---|
1677 |
|
---|
1678 | /**
|
---|
1679 | * Query a line number by address.
|
---|
1680 | *
|
---|
1681 | * @returns IPRT status code. See RTDbgModSymbolAddrA for more specific ones.
|
---|
1682 | * @retval VERR_INVALID_HANDLE if hDbgAs is invalid.
|
---|
1683 | * @retval VERR_NOT_FOUND if the address couldn't be mapped to a module.
|
---|
1684 | *
|
---|
1685 | * @param hDbgAs The address space handle.
|
---|
1686 | * @param Addr The address which closest symbol is requested.
|
---|
1687 | * @param poffDisp Where to return the distance between the line
|
---|
1688 | * number and address.
|
---|
1689 | * @param pLine Where to return the line number information.
|
---|
1690 | */
|
---|
1691 | RTDECL(int) RTDbgAsLineByAddr(RTDBGAS hDbgAs, RTUINTPTR Addr, PRTINTPTR poffDisp, PRTDBGLINE pLine)
|
---|
1692 | {
|
---|
1693 | /*
|
---|
1694 | * Validate input and resolve the address.
|
---|
1695 | */
|
---|
1696 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
1697 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
1698 |
|
---|
1699 | RTDBGSEGIDX iSeg = NIL_RTDBGSEGIDX; /* shut up gcc */
|
---|
1700 | RTUINTPTR offSeg = 0;
|
---|
1701 | RTUINTPTR MapAddr = 0;
|
---|
1702 | RTDBGMOD hMod = rtDbgAsModuleByAddr(pDbgAs, Addr, &iSeg, &offSeg, &MapAddr);
|
---|
1703 | if (hMod == NIL_RTDBGMOD)
|
---|
1704 | return VERR_NOT_FOUND;
|
---|
1705 |
|
---|
1706 | /*
|
---|
1707 | * Forward the call.
|
---|
1708 | */
|
---|
1709 | int rc = RTDbgModLineByAddr(hMod, iSeg, offSeg, poffDisp, pLine);
|
---|
1710 | if (RT_SUCCESS(rc))
|
---|
1711 | rtDbgAsAdjustLineAddress(pLine, hMod, MapAddr, iSeg);
|
---|
1712 | RTDbgModRelease(hMod);
|
---|
1713 | return rc;
|
---|
1714 | }
|
---|
1715 | RT_EXPORT_SYMBOL(RTDbgAsLineByAddr);
|
---|
1716 |
|
---|
1717 |
|
---|
1718 | /**
|
---|
1719 | * Query a line number by address.
|
---|
1720 | *
|
---|
1721 | * @returns IPRT status code. See RTDbgModSymbolAddrA for more specific ones.
|
---|
1722 | * @retval VERR_INVALID_HANDLE if hDbgAs is invalid.
|
---|
1723 | * @retval VERR_NOT_FOUND if the address couldn't be mapped to a module.
|
---|
1724 | *
|
---|
1725 | * @param hDbgAs The address space handle.
|
---|
1726 | * @param Addr The address which closest symbol is requested.
|
---|
1727 | * @param poffDisp Where to return the distance between the line
|
---|
1728 | * number and address.
|
---|
1729 | * @param ppLine Where to return the pointer to the allocated line
|
---|
1730 | * number info. Always set. Free with RTDbgLineFree.
|
---|
1731 | */
|
---|
1732 | RTDECL(int) RTDbgAsLineByAddrA(RTDBGAS hDbgAs, RTUINTPTR Addr, PRTINTPTR poffDisp, PRTDBGLINE *ppLine)
|
---|
1733 | {
|
---|
1734 | /*
|
---|
1735 | * Validate input and resolve the address.
|
---|
1736 | */
|
---|
1737 | PRTDBGASINT pDbgAs = hDbgAs;
|
---|
1738 | RTDBGAS_VALID_RETURN_RC(pDbgAs, VERR_INVALID_HANDLE);
|
---|
1739 |
|
---|
1740 | RTDBGSEGIDX iSeg = NIL_RTDBGSEGIDX; /* shut up gcc */
|
---|
1741 | RTUINTPTR offSeg = 0;
|
---|
1742 | RTUINTPTR MapAddr = 0;
|
---|
1743 | RTDBGMOD hMod = rtDbgAsModuleByAddr(pDbgAs, Addr, &iSeg, &offSeg, &MapAddr);
|
---|
1744 | if (hMod == NIL_RTDBGMOD)
|
---|
1745 | return VERR_NOT_FOUND;
|
---|
1746 |
|
---|
1747 | /*
|
---|
1748 | * Forward the call.
|
---|
1749 | */
|
---|
1750 | int rc = RTDbgModLineByAddrA(hMod, iSeg, offSeg, poffDisp, ppLine);
|
---|
1751 | if (RT_SUCCESS(rc))
|
---|
1752 | rtDbgAsAdjustLineAddress(*ppLine, hMod, MapAddr, iSeg);
|
---|
1753 | RTDbgModRelease(hMod);
|
---|
1754 | return rc;
|
---|
1755 | }
|
---|
1756 | RT_EXPORT_SYMBOL(RTDbgAsLineByAddrA);
|
---|
1757 |
|
---|