1999-06-28 17:52:36 +02:00
|
|
|
/* Handle loading and unloading shared objects for internal libc purposes.
|
2001-01-11 18:50:24 +01:00
|
|
|
Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
|
1999-06-28 17:52:36 +02:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Zack Weinberg <zack@rabi.columbia.edu>, 1999.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1999-06-28 17:52:36 +02:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 06:58:11 +02:00
|
|
|
Lesser General Public License for more details.
|
1999-06-28 17:52:36 +02:00
|
|
|
|
2001-07-06 06:58:11 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
1999-06-28 17:52:36 +02:00
|
|
|
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ldsodefs.h>
|
|
|
|
|
|
|
|
/* The purpose of this file is to provide wrappers around the dynamic
|
|
|
|
linker error mechanism (similar to dlopen() et al in libdl) which
|
|
|
|
are usable from within libc. Generally we want to throw away the
|
|
|
|
string that dlerror() would return and just pass back a null pointer
|
|
|
|
for errors. This also lets the rest of libc not know about the error
|
|
|
|
handling mechanism.
|
|
|
|
|
|
|
|
Much of this code came from gconv_dl.c with slight modifications. */
|
|
|
|
|
|
|
|
static int
|
|
|
|
internal_function
|
|
|
|
dlerror_run (void (*operate) (void *), void *args)
|
|
|
|
{
|
2000-06-10 06:01:36 +02:00
|
|
|
const char *objname;
|
|
|
|
const char *last_errstring = NULL;
|
1999-06-28 17:52:36 +02:00
|
|
|
int result;
|
|
|
|
|
2000-06-10 06:01:36 +02:00
|
|
|
(void) _dl_catch_error (&objname, &last_errstring, operate, args);
|
1999-06-28 17:52:36 +02:00
|
|
|
|
|
|
|
result = last_errstring != NULL;
|
2000-07-13 21:46:27 +02:00
|
|
|
if (result && last_errstring != _dl_out_of_memory)
|
2000-06-10 06:01:36 +02:00
|
|
|
free ((char *) last_errstring);
|
1999-06-28 17:52:36 +02:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* These functions are called by dlerror_run... */
|
|
|
|
|
|
|
|
struct do_dlopen_args
|
|
|
|
{
|
|
|
|
/* Argument to do_dlopen. */
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
/* Return from do_dlopen. */
|
|
|
|
struct link_map *map;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct do_dlsym_args
|
|
|
|
{
|
|
|
|
/* Arguments to do_dlsym. */
|
|
|
|
struct link_map *map;
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
/* Return values of do_dlsym. */
|
2000-05-05 09:15:29 +02:00
|
|
|
lookup_t loadbase;
|
1999-06-28 17:52:36 +02:00
|
|
|
const ElfW(Sym) *ref;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_dlopen (void *ptr)
|
|
|
|
{
|
|
|
|
struct do_dlopen_args *args = (struct do_dlopen_args *) ptr;
|
|
|
|
/* Open and relocate the shared object. */
|
|
|
|
args->map = _dl_open (args->name, RTLD_LAZY, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_dlsym (void *ptr)
|
|
|
|
{
|
|
|
|
struct do_dlsym_args *args = (struct do_dlsym_args *) ptr;
|
|
|
|
args->ref = NULL;
|
1999-07-24 00:58:50 +02:00
|
|
|
args->loadbase = _dl_lookup_symbol (args->name, args->map, &args->ref,
|
Update.
2000-08-26 Ulrich Drepper <drepper@redhat.com>
* elf/Makefile (distribute): Add unloadmod.c, reldepmod1.c,
reldepmod2.c, reldepmod3.c, and reldepmod4.c.
(tests): Add unload, reldep, reldep2, and reldep3.
(modules-names): Add unloadmod, reldepmod1, reldepmod2, reldepmod3,
and reldepmod4.
Add rules to build and run unload, reldep, reldep2, and reldep3.
* elf/dl-lookup.c (_dl_lookup_symbol): Add new parameter explicit.
Don't create relocation dependency if it is nonzero.
(_dl_lookup_symbol_skip): Remove relocation dependency stuff. This
can never happen here.
(_dl_lookup_versioned_symbol): Add new parameter explicit.
Don't create relocation dependency if it is nonzero.
(_dl_lookup_versioned_symbol_skip): Remove relocation dependency
stuff. This can never happen here.
* sysdeps/generic/ldsodefs.h: Change prototypes.
* elf/dl-reloc.c (RESOLVE_MAP): Pass 0 in explicit parameter to
_dl_lookup_up and _dl_lookup_versioned_symbol.
(RESOLV): Likewise.
* elf/dl-runtime.c (fixup): Likewise.
(profile_fixup): Likewise.
* elf/dl-libc.c (do_dlsym): Pass 1 in explicit parameter to
_dl_lookup_symbol.
* elf/dl-symbol.c (_dl_symbol_value): Likewise.
* elf/rtld.c (dl_main): Likewise.
* elf/dl-sym.c (_dl_sym): Pass 1 in explicit parameter to
_dl_lookup_symbol if handle is not RTLD_DEFAULT. Always compute
and pass down the caller map.
(_dl_vsym): Likewise.
* elf/reldep.c: New file.
* elf/reldep2.c: New file.
* elf/reldep3.c: New file.
* elf/reldepmod1.c: New file.
* elf/reldepmod2.c: New file.
* elf/reldepmod3.c: New file.
* elf/reldepmod4.c: New file.
* elf/unload.c: New file.
* elf/unloadmod.c: New file.
* elf/do-lookup.h: Remove unused undef_name parameter.
* elf/dl-lookup.c: Adjust callers.
2000-08-27 01:41:19 +02:00
|
|
|
args->map->l_local_scope, 0, 1);
|
1999-06-28 17:52:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_dlclose (void *ptr)
|
|
|
|
{
|
1999-07-30 01:46:10 +02:00
|
|
|
_dl_close ((struct link_map *) ptr);
|
1999-06-28 17:52:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ... and these functions call dlerror_run. */
|
|
|
|
|
|
|
|
void *
|
|
|
|
__libc_dlopen (const char *__name)
|
|
|
|
{
|
|
|
|
struct do_dlopen_args args;
|
|
|
|
args.name = __name;
|
|
|
|
|
|
|
|
return (dlerror_run (do_dlopen, &args) ? NULL : (void *) args.map);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
__libc_dlsym (void *__map, const char *__name)
|
|
|
|
{
|
|
|
|
struct do_dlsym_args args;
|
|
|
|
args.map = __map;
|
|
|
|
args.name = __name;
|
|
|
|
|
|
|
|
return (dlerror_run (do_dlsym, &args) ? NULL
|
2000-06-09 18:45:21 +02:00
|
|
|
: (void *) (DL_SYMBOL_ADDRESS (args.loadbase, args.ref)));
|
1999-06-28 17:52:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
__libc_dlclose (void *__map)
|
|
|
|
{
|
|
|
|
return dlerror_run (do_dlclose, __map);
|
|
|
|
}
|
2000-08-19 09:17:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
free_mem (void)
|
|
|
|
{
|
|
|
|
struct link_map *l;
|
2000-08-31 04:27:07 +02:00
|
|
|
struct r_search_path_elem *d;
|
|
|
|
|
|
|
|
/* Remove all search directories. */
|
|
|
|
d = _dl_all_dirs;
|
|
|
|
while (d != _dl_init_all_dirs)
|
|
|
|
{
|
|
|
|
struct r_search_path_elem *old = d;
|
|
|
|
d = d->next;
|
|
|
|
free (old);
|
|
|
|
}
|
2000-08-19 09:17:09 +02:00
|
|
|
|
|
|
|
/* Remove all additional names added to the objects. */
|
|
|
|
for (l = _dl_loaded; l != NULL; l = l->l_next)
|
|
|
|
{
|
|
|
|
struct libname_list *lnp = l->l_libname->next;
|
|
|
|
|
|
|
|
l->l_libname->next = NULL;
|
|
|
|
|
|
|
|
while (lnp != NULL)
|
|
|
|
{
|
|
|
|
struct libname_list *old = lnp;
|
|
|
|
lnp = lnp->next;
|
|
|
|
if (! old->dont_free)
|
|
|
|
free (old);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
text_set_element (__libc_subfreeres, free_mem);
|