1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
|
/* $OpenBSD: dlfcn.c,v 1.36 2004/05/25 18:07:20 mickey Exp $ */
/*
* Copyright (c) 1998 Per Fogelstrom, Opsycon AB
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
#define _DYN_LOADER
#include <sys/types.h>
#include <nlist.h>
#include <link.h>
#include <dlfcn.h>
#include <unistd.h>
#include "syscall.h"
#include "archdep.h"
#include "resolve.h"
int _dl_errno;
static int _dl_real_close(void *handle);
static void _dl_unload_deps(elf_object_t *object);
static void _dl_thread_kern_stop(void);
static void _dl_thread_kern_go(void);
static void (*_dl_thread_fnc)(int) = NULL;
void *
dlopen(const char *libname, int flags)
{
elf_object_t *object, *dynobj;
Elf_Dyn *dynp;
if (libname == NULL)
return _dl_objects;
DL_DEB(("dlopen: loading: %s\n", libname));
_dl_thread_kern_stop();
object = _dl_load_shlib(libname, _dl_objects, OBJTYPE_DLO, flags);
/* this add_object should not be here, XXX */
if (object == 0) {
_dl_thread_kern_go();
return((void *)0);
}
_dl_add_object(object);
_dl_link_sub(object, _dl_objects);
_dl_thread_kern_go();
if (object->refcount > 1)
return((void *)object); /* Already loaded */
/*
* Check for 'needed' objects. For each 'needed' object we
* create a 'shadow' object and add it to a list attached to
* the object so we know our dependencies. This list should
* also be used to determine the library search order when
* resolving undefined symbols. This is not yet done. XXX
*/
dynobj = object;
while (dynobj) {
elf_object_t *tmpobj = dynobj;
for (dynp = dynobj->load_dyn; dynp->d_tag; dynp++) {
const char *libname;
elf_object_t *depobj;
if (dynp->d_tag != DT_NEEDED)
continue;
libname = dynobj->dyn.strtab + dynp->d_un.d_val;
_dl_thread_kern_stop();
depobj = _dl_load_shlib(libname, dynobj, OBJTYPE_LIB,
flags|RTLD_GLOBAL);
if (!depobj)
_dl_exit(4);
/* this add_object should not be here, XXX */
_dl_add_object(depobj);
_dl_link_sub(depobj, dynobj);
_dl_thread_kern_go();
tmpobj->dep_next = _dl_malloc(sizeof(elf_object_t));
tmpobj->dep_next->next = depobj;
tmpobj = tmpobj->dep_next;
}
dynobj = dynobj->next;
}
_dl_rtld(object);
_dl_call_init(object);
if (_dl_debug_map->r_brk) {
_dl_debug_map->r_state = RT_ADD;
(*((void (*)(void))_dl_debug_map->r_brk))();
_dl_debug_map->r_state = RT_CONSISTENT;
(*((void (*)(void))_dl_debug_map->r_brk))();
}
return((void *)object);
}
void *
dlsym(void *handle, const char *name)
{
elf_object_t *object;
elf_object_t *dynobj;
void *retval;
const Elf_Sym *sym = NULL;
object = (elf_object_t *)handle;
dynobj = _dl_objects;
while (dynobj && dynobj != object)
dynobj = dynobj->next;
if (!dynobj || object != dynobj) {
_dl_errno = DL_INVALID_HANDLE;
return(0);
}
retval = (void *)_dl_find_symbol(name, object, &sym, NULL,
SYM_SEARCH_SELF|SYM_NOWARNNOTFOUND|SYM_NOTPLT, 0, object);
if (sym != NULL)
retval += sym->st_value;
else
_dl_errno = DL_NO_SYMBOL;
return (retval);
}
int
dlctl(void *handle, int command, void *data)
{
int retval;
switch (command) {
case DL_SETTHREADLCK:
DL_DEB(("dlctl: _dl_thread_fnc set to %p\n", data));
_dl_thread_fnc = data;
retval = 0;
break;
default:
_dl_errno = DL_INVALID_CTL;
retval = -1;
break;
}
return (retval);
}
int
dlclose(void *handle)
{
int retval;
if (handle == _dl_objects)
return 0;
retval = _dl_real_close(handle);
if (_dl_debug_map->r_brk) {
_dl_debug_map->r_state = RT_DELETE;
(*((void (*)(void))_dl_debug_map->r_brk))();
_dl_debug_map->r_state = RT_CONSISTENT;
(*((void (*)(void))_dl_debug_map->r_brk))();
}
return (retval);
}
static int
_dl_real_close(void *handle)
{
elf_object_t *object;
elf_object_t *dynobj;
object = (elf_object_t *)handle;
dynobj = _dl_objects;
while (dynobj && dynobj != object)
dynobj = dynobj->next;
if (!dynobj || object != dynobj) {
_dl_errno = DL_INVALID_HANDLE;
return (1);
}
if (object->refcount == 1) {
if (dynobj->dep_next)
_dl_unload_deps(dynobj);
}
_dl_unload_shlib(object);
return (0);
}
/*
* Scan through the shadow dep list and 'unload' every library
* we depend upon. Shadow objects are removed when removing ourself.
*/
static void
_dl_unload_deps(elf_object_t *object)
{
elf_object_t *depobj;
depobj = object->dep_next;
while (depobj) {
if (depobj->next->refcount == 1) { /* This object will go away */
if (depobj->next->dep_next)
_dl_unload_deps(depobj->next);
_dl_unload_shlib(depobj->next);
}
depobj = depobj->dep_next;
}
}
/*
* Return a character string describing the last dl... error occurred.
*/
const char *
dlerror(void)
{
const char *errmsg;
switch (_dl_errno) {
case 0: /* NO ERROR */
errmsg = NULL;
break;
case DL_NOT_FOUND:
errmsg = "File not found";
break;
case DL_CANT_OPEN:
errmsg = "Can't open file";
break;
case DL_NOT_ELF:
errmsg = "File not an ELF object";
break;
case DL_CANT_OPEN_REF:
errmsg = "Can't open referenced object";
break;
case DL_CANT_MMAP:
errmsg = "Can't map ELF object";
break;
case DL_INVALID_HANDLE:
errmsg = "Invalid handle";
break;
case DL_NO_SYMBOL:
errmsg = "Unable to resolve symbol";
break;
case DL_INVALID_CTL:
errmsg = "Invalid dlctl() command";
break;
default:
errmsg = "Unknown error";
}
_dl_errno = 0;
return (errmsg);
}
void
_dl_show_objects(void)
{
extern int _dl_symcachestat_hits;
extern int _dl_symcachestat_lookups;
elf_object_t *object;
char *objtypename;
int outputfd;
char *pad;
object = _dl_objects;
if (_dl_traceld)
outputfd = STDOUT_FILENO;
else
outputfd = STDERR_FILENO;
if (sizeof(long) == 8)
pad = " ";
else
pad = "";
_dl_fdprintf(outputfd, "\tStart %s End %s Type Ref Name\n",
pad, pad);
while (object) {
switch (object->obj_type) {
case OBJTYPE_LDR:
objtypename = "rtld";
break;
case OBJTYPE_EXE:
objtypename = "exe ";
break;
case OBJTYPE_LIB:
objtypename = "rlib";
break;
case OBJTYPE_DLO:
objtypename = "dlib";
break;
default:
objtypename = "????";
break;
}
_dl_fdprintf(outputfd, "\t%lX %lX %s %d %s\n",
(void *)object->load_addr,
(void *)(object->load_addr + object->load_size),
objtypename, object->refcount, object->load_name);
object = object->next;
}
if (_dl_symcachestat_lookups != 0)
DL_DEB(("symcache lookups %d hits %d ratio %d% hits\n",
_dl_symcachestat_lookups, _dl_symcachestat_hits,
(_dl_symcachestat_hits * 100) /
_dl_symcachestat_lookups));
}
static void
_dl_thread_kern_stop(void)
{
if (_dl_thread_fnc != NULL)
(*_dl_thread_fnc)(0);
}
static void
_dl_thread_kern_go(void)
{
if (_dl_thread_fnc != NULL)
(*_dl_thread_fnc)(1);
}
|