1 | /* $Id: dbgmodexports.cpp 45997 2013-05-13 01:47:44Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Debug Module Using Image Exports.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2013 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/assert.h>
|
---|
35 | #include <iprt/err.h>
|
---|
36 | #include <iprt/string.h>
|
---|
37 | #include "internal/dbgmod.h"
|
---|
38 |
|
---|
39 |
|
---|
40 |
|
---|
41 |
|
---|
42 |
|
---|
43 |
|
---|
44 | /**
|
---|
45 | * Creates the debug info side of affairs based on exports and segments found in
|
---|
46 | * the image part.
|
---|
47 | *
|
---|
48 | * The image part must be successfully initialized prior to the call, while the
|
---|
49 | * debug bits must not be present of course.
|
---|
50 | *
|
---|
51 | * @returns IPRT status code
|
---|
52 | * @param pDbgMod The debug module structure.
|
---|
53 | */
|
---|
54 | DECLHIDDEN(int) rtDbgModCreateForExports(PRTDBGMODINT pDbgMod)
|
---|
55 | {
|
---|
56 | AssertReturn(!pDbgMod->pDbgVt, VERR_DBG_MOD_IPE);
|
---|
57 | AssertReturn(pDbgMod->pImgVt, VERR_DBG_MOD_IPE);
|
---|
58 | RTUINTPTR cbImage = pDbgMod->pImgVt->pfnImageSize(pDbgMod);
|
---|
59 | AssertReturn(cbImage > 0, VERR_DBG_MOD_IPE);
|
---|
60 |
|
---|
61 | /*
|
---|
62 | * We simply use a container type for this work.
|
---|
63 | */
|
---|
64 | /// @todo later int rc = rtDbgModContainerCreate(pDbgMod, 0);
|
---|
65 | int rc = rtDbgModContainerCreate(pDbgMod, cbImage);
|
---|
66 | if (RT_FAILURE(rc))
|
---|
67 | return rc;
|
---|
68 |
|
---|
69 | /*
|
---|
70 | * Copy the segments.
|
---|
71 | */
|
---|
72 |
|
---|
73 | /*
|
---|
74 | * Copy the symbols.
|
---|
75 | */
|
---|
76 |
|
---|
77 |
|
---|
78 | return VINF_SUCCESS;
|
---|
79 | }
|
---|
80 |
|
---|