VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/ldr/ldr.cpp

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 5.8 KB
Line 
1/* $Id: ldr.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT - Binary Image Loader.
4 */
5
6/*
7 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37
38/*********************************************************************************************************************************
39* Header Files *
40*********************************************************************************************************************************/
41#define LOG_GROUP RTLOGGROUP_LDR
42#include <iprt/ldr.h>
43#include "internal/iprt.h"
44
45#include <iprt/alloc.h>
46#include <iprt/string.h>
47#include <iprt/assert.h>
48#include <iprt/errcore.h>
49#include <iprt/log.h>
50#include "internal/ldr.h"
51
52
53RTDECL(int) RTLdrGetSymbol(RTLDRMOD hLdrMod, const char *pszSymbol, void **ppvValue)
54{
55 LogFlow(("RTLdrGetSymbol: hLdrMod=%RTldrm pszSymbol=%p:{%s} ppvValue=%p\n",
56 hLdrMod, pszSymbol, pszSymbol, ppvValue));
57 /*
58 * Validate input.
59 */
60 AssertMsgReturn(rtldrIsValid(hLdrMod), ("hLdrMod=%p\n", hLdrMod), VERR_INVALID_HANDLE);
61 AssertMsgReturn(pszSymbol, ("pszSymbol=%p\n", pszSymbol), VERR_INVALID_PARAMETER);
62 AssertPtrReturn(ppvValue, VERR_INVALID_POINTER);
63 PRTLDRMODINTERNAL pMod = (PRTLDRMODINTERNAL)hLdrMod;
64 //AssertMsgReturn(pMod->eState == LDR_STATE_OPENED, ("eState=%d\n", pMod->eState), VERR_WRONG_ORDER);
65
66 /*
67 * Do it.
68 */
69 int rc;
70 if (pMod->pOps->pfnGetSymbol)
71 rc = pMod->pOps->pfnGetSymbol(pMod, pszSymbol, ppvValue);
72 else
73 {
74 RTUINTPTR Value = 0;
75 rc = pMod->pOps->pfnGetSymbolEx(pMod, NULL, 0, UINT32_MAX, pszSymbol, &Value);
76 if (RT_SUCCESS(rc))
77 {
78 *ppvValue = (void *)(uintptr_t)Value;
79 if ((uintptr_t)*ppvValue != Value)
80 rc = VERR_BUFFER_OVERFLOW;
81 }
82 }
83 LogFlow(("RTLdrGetSymbol: return %Rrc *ppvValue=%p\n", rc, *ppvValue));
84 return rc;
85}
86RT_EXPORT_SYMBOL(RTLdrGetSymbol);
87
88
89RTDECL(PFNRT) RTLdrGetFunction(RTLDRMOD hLdrMod, const char *pszSymbol)
90{
91 PFNRT pfn;
92 int rc = RTLdrGetSymbol(hLdrMod, pszSymbol, (void **)&pfn);
93 if (RT_SUCCESS(rc))
94 return pfn;
95 return NULL;
96}
97RT_EXPORT_SYMBOL(RTLdrGetFunction);
98
99
100RTDECL(RTLDRFMT) RTLdrGetFormat(RTLDRMOD hLdrMod)
101{
102 AssertMsgReturn(rtldrIsValid(hLdrMod), ("hLdrMod=%p\n", hLdrMod), RTLDRFMT_INVALID);
103 PRTLDRMODINTERNAL pMod = (PRTLDRMODINTERNAL)hLdrMod;
104 return pMod->enmFormat;
105}
106RT_EXPORT_SYMBOL(RTLdrGetFormat);
107
108
109RTDECL(RTLDRTYPE) RTLdrGetType(RTLDRMOD hLdrMod)
110{
111 AssertMsgReturn(rtldrIsValid(hLdrMod), ("hLdrMod=%p\n", hLdrMod), RTLDRTYPE_INVALID);
112 PRTLDRMODINTERNAL pMod = (PRTLDRMODINTERNAL)hLdrMod;
113 return pMod->enmType;
114}
115RT_EXPORT_SYMBOL(RTLdrGetType);
116
117
118RTDECL(RTLDRENDIAN) RTLdrGetEndian(RTLDRMOD hLdrMod)
119{
120 AssertMsgReturn(rtldrIsValid(hLdrMod), ("hLdrMod=%p\n", hLdrMod), RTLDRENDIAN_INVALID);
121 PRTLDRMODINTERNAL pMod = (PRTLDRMODINTERNAL)hLdrMod;
122 return pMod->enmEndian;
123}
124RT_EXPORT_SYMBOL(RTLdrGetEndian);
125
126
127RTDECL(RTLDRARCH) RTLdrGetArch(RTLDRMOD hLdrMod)
128{
129 AssertMsgReturn(rtldrIsValid(hLdrMod), ("hLdrMod=%p\n", hLdrMod), RTLDRARCH_INVALID);
130 PRTLDRMODINTERNAL pMod = (PRTLDRMODINTERNAL)hLdrMod;
131 return pMod->enmArch;
132}
133RT_EXPORT_SYMBOL(RTLdrGetArch);
134
135
136RTDECL(int) RTLdrClose(RTLDRMOD hLdrMod)
137{
138 LogFlow(("RTLdrClose: hLdrMod=%RTldrm\n", hLdrMod));
139
140 /*
141 * Validate input.
142 */
143 if (hLdrMod == NIL_RTLDRMOD)
144 return VINF_SUCCESS;
145 AssertMsgReturn(rtldrIsValid(hLdrMod), ("hLdrMod=%p\n", hLdrMod), VERR_INVALID_HANDLE);
146 PRTLDRMODINTERNAL pMod = (PRTLDRMODINTERNAL)hLdrMod;
147 //AssertMsgReturn(pMod->eState == LDR_STATE_OPENED, ("eState=%d\n", pMod->eState), VERR_WRONG_ORDER);
148
149 /*
150 * Do it.
151 */
152 int rc = pMod->pOps->pfnClose(pMod);
153 AssertRC(rc);
154 pMod->eState = LDR_STATE_INVALID;
155 pMod->u32Magic++;
156 if (pMod->pReader)
157 {
158 rc = pMod->pReader->pfnDestroy(pMod->pReader);
159 AssertRC(rc);
160 pMod->pReader = NULL;
161 }
162 RTMemFree(pMod);
163
164 LogFlow(("RTLdrClose: returns VINF_SUCCESS\n"));
165 return VINF_SUCCESS;
166}
167RT_EXPORT_SYMBOL(RTLdrClose);
168
169
170RTDECL(RTLDRARCH) RTLdrGetHostArch(void)
171{
172#if defined(RT_ARCH_AMD64)
173 RTLDRARCH enmArch = RTLDRARCH_AMD64;
174#elif defined(RT_ARCH_X86)
175 RTLDRARCH enmArch = RTLDRARCH_X86_32;
176#elif defined(RT_ARCH_ARM) || defined(RT_ARCH_ARM32)
177 RTLDRARCH enmArch = RTLDRARCH_ARM32;
178#elif defined(RT_ARCH_ARM64)
179 RTLDRARCH enmArch = RTLDRARCH_ARM64;
180#else
181 RTLDRARCH enmArch = RTLDRARCH_WHATEVER;
182#endif
183 return enmArch;
184}
185RT_EXPORT_SYMBOL(RTLdrGetHostArch);
186
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use