mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-30 14:31:14 +00:00
2bcf29ba7c
1998-03-11 15:27 Ulrich Drepper <drepper@cygnus.com> * elf/rtld.c: Update help message. Install link maps for preloaded objects using main_map as loader. * elf/dl-misc.c: Use __libc_write instead of __write for debugging. * elf/dl-profile.c: Likewise. * elf/dlsym.c: Little optimization. * elf/dlvsym.c: Likewise. 1998-03-11 14:56 Ulrich Drepper <drepper@cygnus.com> * posix/wordexp-test.c: Move test for parameter list at the very beginning. 1998-03-11 00:16 Tim Waugh <tim@cyberelk.demon.co.uk> * posix/wordexp.c (wordexp): Set we_wordc to zero initially unless WRDE_REUSE flag is set. (parse_param): Allow `*', `@', and numbers in parameter names. (parse_dollars): Differentiate between arithmetic expansion and a command substitution that starts immediately with a sub-shell (like ``$((1+3))'' as opposed to ``$((echo);(ls))''). (parse_param): Memory allocated with __alloca in a block was referenced outside that block. Adjusted to use malloc/free. (parse_param): Adjusted field-splitting algorithm so that there is not necessarily a field split at the end of a parameter expansion. 1998-03-10 19:52 Tim Waugh <tim@cyberelk.demon.co.uk> * posix/wordexp.c (wordexp): If about to return WRDE_NOSPACE, don't free words that have already been allocated. (parse_param): A dollar sign on its own will never have a pattern associated with it (like "${HOME%%/}" has), so don't try to free it. (parse_glob): Attempt to glob when an unquoted `[' is found (rather than an unquoted '{' (!)). Also for unquoted '?'. (parse_glob): Sorted out quoting in a glob-able word. (parse_param): Added $* and $@ handling.
111 lines
3.2 KiB
C
111 lines
3.2 KiB
C
/* Look up a versioned symbol in a shared object loaded by `dlopen'.
|
|
Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public License as
|
|
published by the Free Software Foundation; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
#include <stddef.h>
|
|
#include <link.h>
|
|
#include <dlfcn.h>
|
|
#include <setjmp.h>
|
|
|
|
#include <dl-hash.h>
|
|
|
|
struct dlvsym_args
|
|
{
|
|
/* The arguments to dlvsym_doit. */
|
|
void *handle;
|
|
const char *name;
|
|
struct r_found_version version;
|
|
ElfW(Addr) caller;
|
|
/* The return values of dlvsym_doit. */
|
|
ElfW(Addr) loadbase;
|
|
const ElfW(Sym) *ref;
|
|
};
|
|
|
|
|
|
static void
|
|
dlvsym_doit (void *a)
|
|
{
|
|
struct dlvsym_args *args = (struct dlvsym_args *)a;
|
|
args->ref = NULL;
|
|
|
|
if (args->handle == NULL)
|
|
/* Search the global scope. */
|
|
args->loadbase = _dl_lookup_versioned_symbol (args->name, &args->ref,
|
|
&(_dl_global_scope
|
|
?: _dl_default_scope)[2],
|
|
NULL, &args->version, 0);
|
|
else if (args->handle == RTLD_NEXT)
|
|
{
|
|
struct link_map *l, *match;
|
|
|
|
/* Find the highest-addressed object that CALLER is not below. */
|
|
match = NULL;
|
|
for (l = _dl_loaded; l; l = l->l_next)
|
|
if (args->caller >= l->l_addr && (!match || match->l_addr < l->l_addr))
|
|
match = l;
|
|
|
|
if (! match)
|
|
_dl_signal_error (0, NULL, _("\
|
|
RTLD_NEXT used in code not dynamically loaded"));
|
|
|
|
l = match;
|
|
while (l->l_loader)
|
|
l = l->l_loader;
|
|
|
|
{
|
|
struct link_map *mapscope[2] = { l, NULL };
|
|
args->loadbase = _dl_lookup_versioned_symbol_skip (args->name,
|
|
&args->ref,
|
|
mapscope,
|
|
NULL,
|
|
&args->version,
|
|
match);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* Search the scope of the given object. */
|
|
struct link_map *map = args->handle;
|
|
struct link_map *mapscope[2] = { map, NULL };
|
|
args->loadbase = _dl_lookup_versioned_symbol (args->name, &args->ref,
|
|
mapscope, map->l_name,
|
|
&args->version, 0);
|
|
}
|
|
}
|
|
|
|
void *
|
|
__dlvsym (void *handle, const char *name, const char *version_str)
|
|
{
|
|
struct dlvsym_args args;
|
|
|
|
args.handle = handle;
|
|
args.name = name;
|
|
args.caller = (ElfW(Addr)) __builtin_return_address (0);
|
|
|
|
/* Compute hash value to the version string. */
|
|
args.version.name = version_str;
|
|
args.version.hidden = 1;
|
|
args.version.hash = _dl_elf_hash (version_str);
|
|
/* We don't have a specific file where the symbol can be found. */
|
|
args.version.filename = NULL;
|
|
|
|
return (_dlerror_run (dlvsym_doit, &args)
|
|
? NULL : (void *) (args.loadbase + args.ref->st_value));
|
|
}
|
|
weak_alias (__dlvsym, dlvsym)
|