mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
1228ed5cd5
1997-02-03 02:33 Ulrich Drepper <drepper@cygnus.com> * elf/dl-deps.c (_dl_map_object_deps): Handle multiple AUXILIARY entries. This is still no complete implementation since AUXILIARY entries in other shared objects are not yet handled. * libio/libio.h (_IO_cookie_io_functions_t): Move to C++ protected place. * po/es.po: Update. * po/fr.po: Update. * po/nl.po: Update. * time/Makefile: Better cross-compile support. Avoid test which cannot be run. (CFLAGS-tzset.c): New variable. Overwrite TZDEFAULT value from tzfile.h file. * time/tzfile.c (__tzfile_read): Allow TZDEFAULT start with '/' even in SUID programs. * time/tzset.c (__tzset_internal): If TZ envvar is not set use same default values as in tzfile.c. * elf/dynamic-link.h (elf_get_dynamic_info): Recognize versioning tags. * elf/link.h: Likewise. * elf/elf.h: Add tag definitions and data structures for versioning. 1997-02-03 02:17 Ulrich Drepper <drepper@cygnus.com> * nis/rpcsvc/yp.x (struct ypresp_key_val): There is not stupid "Sun bug". This is the order of elements also used by 4.4BSD. * nis/rpcsvc/yp.h: Likewise. Reported by HJ Lu. 1997-02-02 12:13 H.J. Lu <hjl@gnu.ai.mit.edu> * sunrpc/Makefile ($(objpfx)x%.h, $(objpfx)x%.c): Add "@:" as action. * Makefile (install): Pass installation directories as arguments to ldconfig. 1997-02-02 23:15 Ulrich Drepper <drepper@cygnus.com> * malloc/malloc.c (__after_morecore_hook): New variable. (malloc_extend_top): Call __after_morecore_hook if set. (main_trim): Likewise. * malloc/malloc.h: Add declaration of __after_morecore_hook. Suggested by Marcus Daniels. 1997-02-02 23:00 Marcus G. Daniels <marcus@tdb.com> * malloc/malloc.c (rEALLOc): Protect tsd_setspecific call by #ifndef NO_THREADS. (mallinfo): Likewise. * malloc/malloc.c (__morecore): Make external since it is used in programs. 1997-02-02 15:10 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/statbuf.h (struct stat): Make st_dev field unsigned. 1997-02-01 23:36 Richard Henderson <rth@tamu.edu> * sysdeps/alpha/stxncpy.S ($unaligned) [src % 8 > dst % 8]: Don't use t6 as a temporary; it contains bits we still need in $u_head. 1997-01-31 15:05 John Bowman <bowman@ipp-garching.mpg.de> * sysdeps/i386/fpu/__math.h [__USE_MISC]: Don't declare prototypes using __ prefix. Add prototype for log1p.
105 lines
3.7 KiB
C
105 lines
3.7 KiB
C
/* Inline functions for dynamic linking.
|
|
Copyright (C) 1995, 1996, 1997 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 <elf.h>
|
|
#include <dl-machine.h>
|
|
#include <assert.h>
|
|
|
|
|
|
/* Read the dynamic section at DYN and fill in INFO with indices DT_*. */
|
|
|
|
static inline void __attribute__ ((unused))
|
|
elf_get_dynamic_info (ElfW(Dyn) *dyn,
|
|
ElfW(Dyn) *info[DT_NUM + DT_PROCNUM + DT_VERSIONTAGNUM
|
|
+ DT_EXTRANUM])
|
|
{
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < DT_NUM + DT_PROCNUM + DT_VERSIONTAGNUM + DT_EXTRANUM; ++i)
|
|
info[i] = NULL;
|
|
|
|
if (! dyn)
|
|
return;
|
|
|
|
while (dyn->d_tag != DT_NULL)
|
|
{
|
|
if (dyn->d_tag < DT_NUM)
|
|
info[dyn->d_tag] = dyn;
|
|
else if (dyn->d_tag >= DT_LOPROC &&
|
|
dyn->d_tag < DT_LOPROC + DT_PROCNUM)
|
|
info[dyn->d_tag - DT_LOPROC + DT_NUM] = dyn;
|
|
else if ((Elf32_Word) DT_VERSIONTAGIDX (dyn->d_tag) < DT_VERSIONTAGNUM)
|
|
info[DT_VERSIONTAGIDX (dyn->d_tag) + DT_NUM + DT_PROCNUM] = dyn;
|
|
else if ((Elf32_Word) DT_EXTRATAGIDX (dyn->d_tag) < DT_EXTRANUM)
|
|
info[DT_EXTRATAGIDX (dyn->d_tag) + DT_NUM + DT_PROCNUM
|
|
+ DT_VERSIONTAGNUM] = dyn;
|
|
else
|
|
assert (! "bad dynamic tag");
|
|
dyn++;
|
|
}
|
|
|
|
if (info[DT_RELA])
|
|
assert (info[DT_RELAENT]->d_un.d_val == sizeof (ElfW(Rela)));
|
|
if (info[DT_REL])
|
|
assert (info[DT_RELENT]->d_un.d_val == sizeof (ElfW(Rel)));
|
|
if (info[DT_PLTREL])
|
|
assert (info[DT_PLTREL]->d_un.d_val == DT_REL ||
|
|
info[DT_PLTREL]->d_un.d_val == DT_RELA);
|
|
}
|
|
|
|
#ifdef RESOLVE
|
|
|
|
/* Get the definitions of `elf_dynamic_do_rel' and `elf_dynamic_do_rela'.
|
|
These functions are almost identical, so we use cpp magic to avoid
|
|
duplicating their code. It cannot be done in a more general function
|
|
because we must be able to completely inline. */
|
|
|
|
#if ! ELF_MACHINE_NO_REL
|
|
#include "do-rel.h"
|
|
#define ELF_DYNAMIC_DO_REL(map, lazy) \
|
|
if ((map)->l_info[DT_REL]) \
|
|
elf_dynamic_do_rel ((map), DT_REL, DT_RELSZ, 0); \
|
|
if ((map)->l_info[DT_PLTREL] && \
|
|
(map)->l_info[DT_PLTREL]->d_un.d_val == DT_REL) \
|
|
elf_dynamic_do_rel ((map), DT_JMPREL, DT_PLTRELSZ, (lazy));
|
|
#else
|
|
#define ELF_DYNAMIC_DO_REL(map, lazy) /* Nothing to do. */
|
|
#endif
|
|
|
|
#if ! ELF_MACHINE_NO_RELA
|
|
#define DO_RELA
|
|
#include "do-rel.h"
|
|
#define ELF_DYNAMIC_DO_RELA(map, lazy) \
|
|
if ((map)->l_info[DT_RELA]) \
|
|
elf_dynamic_do_rela ((map), DT_RELA, DT_RELASZ, 0); \
|
|
if ((map)->l_info[DT_PLTREL] && \
|
|
(map)->l_info[DT_PLTREL]->d_un.d_val == DT_RELA) \
|
|
elf_dynamic_do_rela ((map), DT_JMPREL, DT_PLTRELSZ, (lazy));
|
|
#else
|
|
#define ELF_DYNAMIC_DO_RELA(map, lazy) /* Nothing to do. */
|
|
#endif
|
|
|
|
/* This can't just be an inline function because GCC is too dumb
|
|
to inline functions containing inlines themselves. */
|
|
#define ELF_DYNAMIC_RELOCATE(map, lazy) \
|
|
do { ELF_DYNAMIC_DO_REL ((map), (lazy)); \
|
|
ELF_DYNAMIC_DO_RELA ((map), (lazy)); } while (0)
|
|
|
|
#endif
|