1999-06-28 17:52:36 +02:00
|
|
|
/* Handle loading and unloading shared objects for internal libc purposes.
|
2014-01-01 12:03:15 +01:00
|
|
|
Copyright (C) 1999-2014 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
|
2012-02-10 00:18:22 +01:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1999-06-28 17:52:36 +02:00
|
|
|
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ldsodefs.h>
|
|
|
|
|
2005-01-06 23:40:27 +01:00
|
|
|
extern int __libc_argc attribute_hidden;
|
|
|
|
extern char **__libc_argv attribute_hidden;
|
|
|
|
|
|
|
|
extern char **__environ;
|
|
|
|
|
1999-06-28 17:52:36 +02:00
|
|
|
/* 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;
|
2005-06-12 18:29:51 +02:00
|
|
|
bool malloced;
|
1999-06-28 17:52:36 +02:00
|
|
|
|
2011-09-08 05:50:40 +02:00
|
|
|
int result = (GLRO(dl_catch_error) (&objname, &last_errstring, &malloced,
|
|
|
|
operate, args)
|
|
|
|
?: last_errstring != NULL);
|
1999-06-28 17:52:36 +02:00
|
|
|
|
2005-06-12 18:29:51 +02:00
|
|
|
if (result && malloced)
|
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;
|
2002-11-19 20:30:55 +01:00
|
|
|
/* Opening mode. */
|
|
|
|
int mode;
|
2011-08-13 18:47:47 +02:00
|
|
|
/* This is the caller of the dlopen() function. */
|
|
|
|
const void *caller_dlopen;
|
1999-06-28 17:52:36 +02:00
|
|
|
|
|
|
|
/* 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. */
|
2011-08-13 18:47:47 +02:00
|
|
|
args->map = GLRO(dl_open) (args->name, args->mode, args->caller_dlopen,
|
|
|
|
__LM_ID_CALLER, __libc_argc, __libc_argv,
|
|
|
|
__environ);
|
1999-06-28 17:52:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_dlsym (void *ptr)
|
|
|
|
{
|
|
|
|
struct do_dlsym_args *args = (struct do_dlsym_args *) ptr;
|
|
|
|
args->ref = NULL;
|
2004-03-07 06:26:02 +01:00
|
|
|
args->loadbase = GLRO(dl_lookup_symbol_x) (args->name, args->map, &args->ref,
|
|
|
|
args->map->l_local_scope, NULL, 0,
|
|
|
|
DL_LOOKUP_RETURN_NEWEST, NULL);
|
1999-06-28 17:52:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_dlclose (void *ptr)
|
|
|
|
{
|
2005-01-06 23:40:27 +01:00
|
|
|
GLRO(dl_close) ((struct link_map *) ptr);
|
1999-06-28 17:52:36 +02:00
|
|
|
}
|
|
|
|
|
2003-06-25 10:32:03 +02:00
|
|
|
/* This code is to support __libc_dlopen from __libc_dlopen'ed shared
|
|
|
|
libraries. We need to ensure the statically linked __libc_dlopen
|
|
|
|
etc. functions are used instead of the dynamically loaded. */
|
|
|
|
struct dl_open_hook
|
|
|
|
{
|
|
|
|
void *(*dlopen_mode) (const char *name, int mode);
|
|
|
|
void *(*dlsym) (void *map, const char *name);
|
|
|
|
int (*dlclose) (void *map);
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef SHARED
|
|
|
|
extern struct dl_open_hook *_dl_open_hook;
|
|
|
|
libc_hidden_proto (_dl_open_hook);
|
2005-01-06 23:40:27 +01:00
|
|
|
struct dl_open_hook *_dl_open_hook __attribute__ ((nocommon));
|
2003-06-25 10:32:03 +02:00
|
|
|
libc_hidden_data_def (_dl_open_hook);
|
|
|
|
#else
|
|
|
|
static void
|
|
|
|
do_dlsym_private (void *ptr)
|
|
|
|
{
|
|
|
|
lookup_t l;
|
|
|
|
struct r_found_version vers;
|
|
|
|
vers.name = "GLIBC_PRIVATE";
|
|
|
|
vers.hidden = 1;
|
2005-01-06 23:40:27 +01:00
|
|
|
/* vers.hash = _dl_elf_hash (vers.name); */
|
2003-06-25 10:32:03 +02:00
|
|
|
vers.hash = 0x0963cf85;
|
|
|
|
vers.filename = NULL;
|
|
|
|
|
|
|
|
struct do_dlsym_args *args = (struct do_dlsym_args *) ptr;
|
|
|
|
args->ref = NULL;
|
2004-03-07 06:26:02 +01:00
|
|
|
l = GLRO(dl_lookup_symbol_x) (args->name, args->map, &args->ref,
|
2006-10-27 17:54:20 +02:00
|
|
|
args->map->l_scope, &vers, 0, 0, NULL);
|
2003-06-25 10:32:03 +02:00
|
|
|
args->loadbase = l;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct dl_open_hook _dl_open_hook =
|
|
|
|
{
|
|
|
|
.dlopen_mode = __libc_dlopen_mode,
|
|
|
|
.dlsym = __libc_dlsym,
|
|
|
|
.dlclose = __libc_dlclose
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
1999-06-28 17:52:36 +02:00
|
|
|
/* ... and these functions call dlerror_run. */
|
|
|
|
|
|
|
|
void *
|
2002-11-19 20:30:55 +01:00
|
|
|
__libc_dlopen_mode (const char *name, int mode)
|
1999-06-28 17:52:36 +02:00
|
|
|
{
|
|
|
|
struct do_dlopen_args args;
|
2002-11-19 20:30:55 +01:00
|
|
|
args.name = name;
|
|
|
|
args.mode = mode;
|
2011-08-13 18:47:47 +02:00
|
|
|
args.caller_dlopen = RETURN_ADDRESS (0);
|
1999-06-28 17:52:36 +02:00
|
|
|
|
2003-06-25 10:32:03 +02:00
|
|
|
#ifdef SHARED
|
2014-02-10 14:45:42 +01:00
|
|
|
if (__glibc_unlikely (_dl_open_hook != NULL))
|
2003-06-25 10:32:03 +02:00
|
|
|
return _dl_open_hook->dlopen_mode (name, mode);
|
1999-06-28 17:52:36 +02:00
|
|
|
return (dlerror_run (do_dlopen, &args) ? NULL : (void *) args.map);
|
2003-06-25 10:32:03 +02:00
|
|
|
#else
|
|
|
|
if (dlerror_run (do_dlopen, &args))
|
|
|
|
return NULL;
|
|
|
|
|
2004-10-19 01:07:59 +02:00
|
|
|
__libc_register_dl_open_hook (args.map);
|
|
|
|
__libc_register_dlfcn_hook (args.map);
|
|
|
|
return (void *) args.map;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
libc_hidden_def (__libc_dlopen_mode)
|
|
|
|
|
|
|
|
#ifndef SHARED
|
|
|
|
void *
|
|
|
|
__libc_dlsym_private (struct link_map *map, const char *name)
|
|
|
|
{
|
2003-06-25 10:32:03 +02:00
|
|
|
struct do_dlsym_args sargs;
|
2004-10-19 01:07:59 +02:00
|
|
|
sargs.map = map;
|
|
|
|
sargs.name = name;
|
2003-06-25 10:32:03 +02:00
|
|
|
|
|
|
|
if (! dlerror_run (do_dlsym_private, &sargs))
|
2004-10-19 01:07:59 +02:00
|
|
|
return DL_SYMBOL_ADDRESS (sargs.loadbase, sargs.ref);
|
|
|
|
return NULL;
|
|
|
|
}
|
2003-06-25 10:32:03 +02:00
|
|
|
|
2004-10-19 01:07:59 +02:00
|
|
|
void
|
|
|
|
__libc_register_dl_open_hook (struct link_map *map)
|
|
|
|
{
|
|
|
|
struct dl_open_hook **hook;
|
|
|
|
|
|
|
|
hook = (struct dl_open_hook **) __libc_dlsym_private (map, "_dl_open_hook");
|
|
|
|
if (hook != NULL)
|
|
|
|
*hook = &_dl_open_hook;
|
1999-06-28 17:52:36 +02:00
|
|
|
}
|
2004-10-19 01:07:59 +02:00
|
|
|
#endif
|
1999-06-28 17:52:36 +02:00
|
|
|
|
|
|
|
void *
|
2002-11-19 20:30:55 +01:00
|
|
|
__libc_dlsym (void *map, const char *name)
|
1999-06-28 17:52:36 +02:00
|
|
|
{
|
|
|
|
struct do_dlsym_args args;
|
2002-11-19 20:30:55 +01:00
|
|
|
args.map = map;
|
|
|
|
args.name = name;
|
1999-06-28 17:52:36 +02:00
|
|
|
|
2003-06-25 10:32:03 +02:00
|
|
|
#ifdef SHARED
|
2014-02-10 14:45:42 +01:00
|
|
|
if (__glibc_unlikely (_dl_open_hook != NULL))
|
2003-06-25 10:32:03 +02:00
|
|
|
return _dl_open_hook->dlsym (map, name);
|
|
|
|
#endif
|
1999-06-28 17:52:36 +02:00
|
|
|
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
|
|
|
}
|
2003-07-23 01:56:53 +02:00
|
|
|
libc_hidden_def (__libc_dlsym)
|
1999-06-28 17:52:36 +02:00
|
|
|
|
|
|
|
int
|
2002-11-19 20:30:55 +01:00
|
|
|
__libc_dlclose (void *map)
|
1999-06-28 17:52:36 +02:00
|
|
|
{
|
2003-06-25 10:32:03 +02:00
|
|
|
#ifdef SHARED
|
2014-02-10 14:45:42 +01:00
|
|
|
if (__glibc_unlikely (_dl_open_hook != NULL))
|
2003-06-25 10:32:03 +02:00
|
|
|
return _dl_open_hook->dlclose (map);
|
|
|
|
#endif
|
2002-11-19 20:30:55 +01:00
|
|
|
return dlerror_run (do_dlclose, map);
|
1999-06-28 17:52:36 +02:00
|
|
|
}
|
2003-07-23 01:56:53 +02:00
|
|
|
libc_hidden_def (__libc_dlclose)
|
2000-08-19 09:17:09 +02:00
|
|
|
|
|
|
|
|
2010-09-21 22:52:12 +02:00
|
|
|
static bool __libc_freeres_fn_section
|
|
|
|
free_slotinfo (struct dtv_slotinfo_list **elemp)
|
|
|
|
{
|
|
|
|
size_t cnt;
|
|
|
|
|
|
|
|
if (*elemp == NULL)
|
|
|
|
/* Nothing here, all is removed (or there never was anything). */
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!free_slotinfo (&(*elemp)->next))
|
|
|
|
/* We cannot free the entry. */
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* That cleared our next pointer for us. */
|
|
|
|
|
|
|
|
for (cnt = 0; cnt < (*elemp)->len; ++cnt)
|
|
|
|
if ((*elemp)->slotinfo[cnt].map != NULL)
|
|
|
|
/* Still used. */
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* We can remove the list element. */
|
|
|
|
free (*elemp);
|
|
|
|
*elemp = NULL;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-11-01 21:44:15 +01:00
|
|
|
libc_freeres_fn (free_mem)
|
2000-08-19 09:17:09 +02:00
|
|
|
{
|
|
|
|
struct link_map *l;
|
2000-08-31 04:27:07 +02:00
|
|
|
struct r_search_path_elem *d;
|
|
|
|
|
|
|
|
/* Remove all search directories. */
|
2002-01-31 04:41:25 +01:00
|
|
|
d = GL(dl_all_dirs);
|
2004-03-07 09:39:57 +01:00
|
|
|
while (d != GLRO(dl_init_all_dirs))
|
2000-08-31 04:27:07 +02:00
|
|
|
{
|
|
|
|
struct r_search_path_elem *old = d;
|
|
|
|
d = d->next;
|
|
|
|
free (old);
|
|
|
|
}
|
2000-08-19 09:17:09 +02:00
|
|
|
|
2009-04-01 02:26:36 +02:00
|
|
|
for (Lmid_t ns = 0; ns < GL(dl_nns); ++ns)
|
2010-09-21 22:52:12 +02:00
|
|
|
{
|
|
|
|
for (l = GL(dl_ns)[ns]._ns_loaded; l != NULL; l = l->l_next)
|
|
|
|
{
|
|
|
|
struct libname_list *lnp = l->l_libname->next;
|
|
|
|
|
|
|
|
l->l_libname->next = NULL;
|
|
|
|
|
2012-06-22 20:10:31 +02:00
|
|
|
/* Remove all additional names added to the objects. */
|
2010-09-21 22:52:12 +02:00
|
|
|
while (lnp != NULL)
|
|
|
|
{
|
|
|
|
struct libname_list *old = lnp;
|
|
|
|
lnp = lnp->next;
|
|
|
|
if (! old->dont_free)
|
|
|
|
free (old);
|
|
|
|
}
|
2012-06-22 20:10:31 +02:00
|
|
|
|
|
|
|
/* Free the initfini dependency list. */
|
|
|
|
if (l->l_free_initfini)
|
|
|
|
free (l->l_initfini);
|
2013-10-15 09:45:37 +02:00
|
|
|
l->l_initfini = NULL;
|
2010-09-21 22:52:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (__builtin_expect (GL(dl_ns)[ns]._ns_global_scope_alloc, 0) != 0
|
|
|
|
&& (GL(dl_ns)[ns]._ns_main_searchlist->r_nlist
|
|
|
|
// XXX Check whether we need NS-specific initial_searchlist
|
|
|
|
== GLRO(dl_initial_searchlist).r_nlist))
|
|
|
|
{
|
|
|
|
/* All object dynamically loaded by the program are unloaded. Free
|
|
|
|
the memory allocated for the global scope variable. */
|
|
|
|
struct link_map **old = GL(dl_ns)[ns]._ns_main_searchlist->r_list;
|
|
|
|
|
|
|
|
/* Put the old map in. */
|
|
|
|
GL(dl_ns)[ns]._ns_main_searchlist->r_list
|
|
|
|
// XXX Check whether we need NS-specific initial_searchlist
|
|
|
|
= GLRO(dl_initial_searchlist).r_list;
|
|
|
|
/* Signal that the original map is used. */
|
|
|
|
GL(dl_ns)[ns]._ns_global_scope_alloc = 0;
|
|
|
|
|
|
|
|
/* Now free the old map. */
|
|
|
|
free (old);
|
2010-09-21 22:53:31 +02:00
|
|
|
}
|
2010-09-21 22:52:12 +02:00
|
|
|
}
|
|
|
|
|
2011-09-10 22:50:28 +02:00
|
|
|
/* Free the memory allocated for the dtv slotinfo array. We can do
|
|
|
|
this only if all modules which used this memory are unloaded. */
|
2010-09-21 22:52:12 +02:00
|
|
|
#ifdef SHARED
|
2011-09-10 22:50:28 +02:00
|
|
|
if (GL(dl_initial_dtv) == NULL)
|
|
|
|
/* There was no initial TLS setup, it was set up later when
|
|
|
|
it used the normal malloc. */
|
|
|
|
free_slotinfo (&GL(dl_tls_dtv_slotinfo_list));
|
|
|
|
else
|
2010-09-21 22:52:12 +02:00
|
|
|
#endif
|
2011-09-10 22:50:28 +02:00
|
|
|
/* The first element of the list does not have to be deallocated.
|
|
|
|
It was allocated in the dynamic linker (i.e., with a different
|
|
|
|
malloc), and in the static library it's in .bss space. */
|
|
|
|
free_slotinfo (&GL(dl_tls_dtv_slotinfo_list)->next);
|
2010-09-21 22:52:12 +02:00
|
|
|
|
|
|
|
void *scope_free_list = GL(dl_scope_free_list);
|
|
|
|
GL(dl_scope_free_list) = NULL;
|
|
|
|
free (scope_free_list);
|
2000-08-19 09:17:09 +02:00
|
|
|
}
|