VirtualBox

source: vbox/trunk/src/VBox/Runtime/ldr.cpp@ 5285

Last change on this file since 5285 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.2 KB
Line 
1/* $Id: ldr.cpp 4071 2007-08-07 17:07:59Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - Binary Image Loader.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#define LOG_GROUP RTLOGGROUP_LDR
23#include <iprt/ldr.h>
24#include <iprt/alloc.h>
25#include <iprt/string.h>
26#include <iprt/assert.h>
27#include <iprt/err.h>
28#include <iprt/log.h>
29#include "internal/ldr.h"
30
31
32/*******************************************************************************
33* Structures and Typedefs *
34*******************************************************************************/
35typedef struct RTLDRREADERFILE
36{
37 /** The core. */
38 RTLDRREADER Core;
39 /** The file. */
40 RTFILE File;
41 /** The file size. */
42 RTFOFF cbFile;
43 /** The current offset. */
44 RTFOFF off;
45 /** The filename (variable size). */
46 char szFilename[1];
47} RTLDRREADERFILE, *PRTLDRREADERFILE;
48
49
50/*******************************************************************************
51* Internal Functions *
52*******************************************************************************/
53
54
55/**
56 * Gets the address of a named exported symbol.
57 *
58 * @returns iprt status code.
59 * @param hLdrMod The loader module handle.
60 * @param pszSymbol Symbol name.
61 * @param ppvValue Where to store the symbol value. Note that this is restricted to the
62 * pointer size used on the host!
63 */
64RTDECL(int) RTLdrGetSymbol(RTLDRMOD hLdrMod, const char *pszSymbol, void **ppvValue)
65{
66 LogFlow(("RTLdrGetSymbol: hLdrMod=%RTldrm pszSymbol=%p:{%s} ppvValue=%p\n",
67 hLdrMod, pszSymbol, pszSymbol, ppvValue));
68 /*
69 * Validate input.
70 */
71 AssertMsgReturn(rtldrIsValid(hLdrMod), ("hLdrMod=%p\n", hLdrMod), VERR_INVALID_HANDLE);
72 AssertMsgReturn(pszSymbol, ("pszSymbol=%p\n", pszSymbol), VERR_INVALID_PARAMETER);
73 AssertMsgReturn(VALID_PTR(ppvValue), ("ppvValue=%p\n", ppvValue), VERR_INVALID_PARAMETER);
74 PRTLDRMODINTERNAL pMod = (PRTLDRMODINTERNAL)hLdrMod;
75 //AssertMsgReturn(pMod->eState == LDR_STATE_OPENED, ("eState=%d\n", pMod->eState), VERR_WRONG_ORDER);
76
77 /*
78 * Do it.
79 */
80 int rc;
81 if (pMod->pOps->pfnGetSymbol)
82 rc = pMod->pOps->pfnGetSymbol(pMod, pszSymbol, ppvValue);
83 else
84 {
85 RTUINTPTR Value = 0;
86 rc = pMod->pOps->pfnGetSymbolEx(pMod, NULL, 0, pszSymbol, &Value);
87 if (RT_SUCCESS(rc))
88 {
89 *ppvValue = (void *)Value;
90 if ((uintptr_t)*ppvValue != Value)
91 rc = VERR_BUFFER_OVERFLOW;
92 }
93 }
94 LogFlow(("RTLdrGetSymbol: return %Rrc *ppvValue=%p\n", rc, *ppvValue));
95 return rc;
96}
97
98
99/**
100 * Closes a loader module handle.
101 *
102 * The handle can be obtained using any of the RTLdrLoad(), RTLdrOpen()
103 * and RTLdrOpenBits() functions.
104 *
105 * @returns iprt status code.
106 * @param hLdrMod The loader module handle.
107 */
108RTDECL(int) RTLdrClose(RTLDRMOD hLdrMod)
109{
110 LogFlow(("RTLdrClose: hLdrMod=%RTldrm\n", hLdrMod));
111
112 /*
113 * Validate input.
114 */
115 AssertMsgReturn(rtldrIsValid(hLdrMod), ("hLdrMod=%p\n", hLdrMod), VERR_INVALID_HANDLE);
116 PRTLDRMODINTERNAL pMod = (PRTLDRMODINTERNAL)hLdrMod;
117 //AssertMsgReturn(pMod->eState == LDR_STATE_OPENED, ("eState=%d\n", pMod->eState), VERR_WRONG_ORDER);
118
119 /*
120 * Do it.
121 */
122 int rc = pMod->pOps->pfnClose(pMod);
123 AssertRC(rc);
124 pMod->eState = LDR_STATE_INVALID;
125 pMod->u32Magic++;
126 RTMemFree(pMod);
127
128 LogFlow(("RTLdrClose: returns VINF_SUCCESS\n"));
129 return VINF_SUCCESS;
130}
131
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