mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 00:30:07 +00:00
7969407a01
Change ld.so to not use functions which are exported. One cannot interpose them anyway. Use INT() to mark uses, INTDEF() to mark definitions. * include/libc-symbols.h: Define INT and INTDEF. * sysdeps/generic/ldsodefs.h: Declare _dl_debug_printf_internal, _dl_signal_error_internal, _dl_map_object_internal, _dl_map_object_deps_internal, _dl_lookup_symbol_internal, _dl_lookup_versioned_symbol_internal, _dl_relocate_object_internal, _dl_debug_state_internal, _dl_start_profile_internal, and _dl_unload_cache_internal. * include/dlfcn.h: Declare _dl_catch_error_internal. * elf/rtld.c: Use INT for calls to any of the *_internal functions above. Add INTDEF to function definitions. * elf/dl-debug.c: Likewise. * elf/dl-deps.c: Likewise. * elf/dl-dst.h: Likewise. * elf/dl-error.c: Likewise. * elf/dl-fini.c: Likewise. * elf/dl-init.c: Likewise. * elf/dl-load.c: Likewise. * elf/dl-lookup.c: Likewise. * elf/dl-misc.c: Likewise. * elf/dl-open.c: Likewise. * elf/dl-profile.c: Likewise. * elf/dl-reloc.c: Likewise. * elf/dl-runtime.c: Likewise. * elf/dl-version.c: Likewise. * elf/do-lookup.h: Likewise. * sysdeps/generic/dl-cache.c: Likewise. * sysdeps/generic/dl-sysdep.c: Likewise. * sysdeps/alpha/dl-machine.h (RTLD_START): Call _dl_init_internal instead of _dl_init. * sysdeps/arm/dl-machine.h: Likewise. * sysdeps/cris/dl-machine.h: Likewise. * sysdeps/hppa/dl-machine.h: Likewise. * sysdeps/i386/dl-machine.h: Likewise. * sysdeps/ia64/dl-machine.h: Likewise. * sysdeps/m68k/dl-machine.h: Likewise. * sysdeps/mips/dl-machine.h: Likewise. * sysdeps/mips/mips64/dl-machine.h: Likewise. * sysdeps/s390/s390-32/dl-machine.h: Likewise. * sysdeps/s390/s390-64/dl-machine.h: Likewise. * sysdeps/sh/dl-machine.h: Likewise. * sysdeps/sparc/sparc32/dl-machine.h: Likewise. * sysdeps/sparc/sparc64/dl-machine.h: Likewise. * sysdeps/x86_64/dl-machine.h: Likewise. * sysdeps/powerpc/dl-start.S (_dl_start_user): Likewise. * elf/Versions: Don't export _dl_check_all_versions, _dl_sysdep_start, and _dl_debug_initialize.
59 lines
2.2 KiB
C
59 lines
2.2 KiB
C
/* Communicate dynamic linker state to the debugger at runtime.
|
|
Copyright (C) 1996, 1998, 2000, 2002 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 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.
|
|
|
|
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
|
|
Lesser General Public License for more details.
|
|
|
|
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. */
|
|
|
|
#include <ldsodefs.h>
|
|
|
|
/* This structure communicates dl state to the debugger. The debugger
|
|
normally finds it via the DT_DEBUG entry in the dynamic section, but in
|
|
a statically-linked program there is no dynamic section for the debugger
|
|
to examine and it looks for this particular symbol name. */
|
|
struct r_debug _r_debug;
|
|
|
|
|
|
/* Initialize _r_debug if it has not already been done. The argument is
|
|
the run-time load address of the dynamic linker, to be put in
|
|
_r_debug.r_ldbase. Returns the address of _r_debug. */
|
|
|
|
struct r_debug *
|
|
internal_function
|
|
_dl_debug_initialize (ElfW(Addr) ldbase)
|
|
{
|
|
if (_r_debug.r_brk == 0)
|
|
{
|
|
/* Tell the debugger where to find the map of loaded objects. */
|
|
_r_debug.r_version = 1 /* R_DEBUG_VERSION XXX */;
|
|
_r_debug.r_ldbase = ldbase;
|
|
_r_debug.r_map = GL(dl_loaded);
|
|
_r_debug.r_brk = (ElfW(Addr)) &_dl_debug_state;
|
|
}
|
|
|
|
return &_r_debug;
|
|
}
|
|
|
|
|
|
/* This function exists solely to have a breakpoint set on it by the
|
|
debugger. The debugger is supposed to find this function's address by
|
|
examining the r_brk member of struct r_debug, but GDB 4.15 in fact looks
|
|
for this particular symbol name in the PT_INTERP file. */
|
|
void
|
|
_dl_debug_state (void)
|
|
{
|
|
}
|
|
INTDEF (_dl_debug_state)
|