mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 23:30:07 +00:00
cf29ffbef9
1997-05-25 03:00 Ulrich Drepper <drepper@cygnus.com> * elf/dynamic-link.h (_dl_verbose): New variable, declare. * elf/rtld.c (_dl_verbose): New variable, define. (dl_main): Define _dl-verbose based on DL_WARN environment variable. * sysdeps/i386/dl-machine.h (elf_machine_rel): Print warning about changed size in copy relocation only if symbol in shared object is larger or _dl_verbose is nonzero. * sysdeps/m68k/dl-machine.h (elf_machine_rel): Likewise. * sysdeps/powerpc/dl-machine.h (elf_machine_rel): Likewise. * sysdeps/sparc/dl-machine.h (elf_machine_rel): Likewise. * nis/nss_nis/nis-ethers.c: Don't use relative include paths, use <...>. * nis/nss_nis/nis-grp.c: Likewise. * nis/nss_nis/nis-hosts.c: Likewise. * nis/nss_nis/nis-network.c: Likewise. * nis/nss_nis/nis-proto.c: Likewise. * nis/nss_nis/nis-pwd.c: Likewise. * nis/nss_nis/nis-rpc.c: Likewise. * nis/nss_nis/nis-spwd.c: Likewise. * sysdeps/unix/sysv/sysd-stdio.c: Likewise. * wcsmbs/wcscoll.c: Likewise. * wcsmbs/wcstod.c: Likewise. * wcsmbs/wcstof.c: Likewise. * wcsmbs/wcstol.c: Likewise. * wcsmbs/wcstold.c: Likewise. * wcsmbs/wcsxfrm.c: Likewise. Reported by Zack Weinberg <zack@rabi.phys.columbia.edu>. * time/strftime.c: Implement # flag which changes case of output for %a, %b, %B, %p, and %Z format. When printing numbers, the given field width is always respected. This means that padding happens only up to the given width. Proposed by Stephen Gildea <gildea@intouchsys.com>. 1997-05-25 00:44 Ulrich Drepper <drepper@cygnus.com> * sysdeps/i386/fpu/__math.h (logb): Fix thinko, reverse output values. Reported by Andreas Jaeger <aj@arthur.rhein-neckar.de>. 1997-05-24 21:03 Philip Blundell <pjb27@cam.ac.uk> * db/btree/bt_open.c (__bt_open): Only try to use st_blksize (from struct stat) if it exists for this port. 1997-05-24 20:34 Philip Blundell <pjb27@cam.ac.uk> * sysdeps/standalone/arm/errnos.h: Add EPERM. 1997-05-23 16:28 Philip Blundell <phil@kings-cross.london.uk.eu.org> * linewrap.h: New file, needed to compile argp without libio. 1997-05-24 11:59 Andreas Jaeger <aj@arthur.rhein-neckar.de> * manual/stdio.texi (Formatted Messages): Corrected some typos. 1997-05-24 11:58 Philip Blundell <pjb27@cam.ac.uk> * sysdeps/stub/start.c: Fix typo.
113 lines
3.9 KiB
C
113 lines
3.9 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>
|
|
|
|
|
|
/* Global read-only variable defined in rtld.c which is nonzero if we
|
|
shall give more warning messages. */
|
|
extern int _dl_verbose __attribute__ ((unused));
|
|
|
|
|
|
/* 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 { \
|
|
int edr_lazy = elf_machine_runtime_setup((map), (lazy)); \
|
|
ELF_DYNAMIC_DO_REL ((map), edr_lazy); \
|
|
ELF_DYNAMIC_DO_RELA ((map), edr_lazy); \
|
|
} while (0)
|
|
|
|
#endif
|