mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
Update.
* elf/Makefile (tests): Add rules to build and run check-textrel. * elf/check-textrel.c: New file.
This commit is contained in:
parent
2ad2e1e702
commit
efd56f5391
@ -1,5 +1,8 @@
|
||||
2002-12-12 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* elf/Makefile (tests): Add rules to build and run check-textrel.
|
||||
* elf/check-textrel.c: New file.
|
||||
|
||||
* sysdeps/unix/sysv/linux/i386/sysdep.h (SETUP_PIC_REG): Add .size
|
||||
directive.
|
||||
|
||||
|
14
elf/Makefile
14
elf/Makefile
@ -568,3 +568,17 @@ $(objpfx)tst-array3.out: $(objpfx)tst-array3
|
||||
--library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \
|
||||
$(objpfx)tst-array3 > $@
|
||||
cmp $@ tst-array1.exp > /dev/null
|
||||
|
||||
|
||||
check-textrel-CFLAGS = -O
|
||||
$(objpfx)check-textrel: check-textrel.c
|
||||
$(native-compile)
|
||||
|
||||
ifeq (yes,$(build-shared))
|
||||
tests: $(objpfx)check-textrel.out
|
||||
|
||||
$(objpfx)check-textrel.out: $(objpfx)check-textrel
|
||||
$(dir $<)$(notdir $<) $(common-objpfx)libc.so \
|
||||
$(wildcard $(common-objpfx)/*/lib*.so) > $@
|
||||
generated += check-textrel check-textrel.out
|
||||
endif
|
||||
|
159
elf/check-textrel.c
Normal file
159
elf/check-textrel.c
Normal file
@ -0,0 +1,159 @@
|
||||
#include <byteswap.h>
|
||||
#include <elf.h>
|
||||
#include <endian.h>
|
||||
#include <fcntl.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
|
||||
#ifdef BITS
|
||||
|
||||
# define AB(name) _AB (name, BITS)
|
||||
# define _AB(name, bits) __AB (name, bits)
|
||||
# define __AB(name, bits) name##bits
|
||||
# define E(name) _E (name, BITS)
|
||||
# define _E(name, bits) __E (name, bits)
|
||||
# define __E(name, bits) Elf##bits##_##name
|
||||
# define SWAP(val) \
|
||||
({ __typeof (val) __res; \
|
||||
if ((ehdr.e_ident[EI_DATA] == ELFDATA2MSB && BYTE_ORDER == LITTLE_ENDIAN \
|
||||
|| ehdr.e_ident[EI_DATA] == ELFDATA2LSB && BYTE_ORDER == BIG_ENDIAN)\
|
||||
&& sizeof (val) != 1) \
|
||||
{ \
|
||||
if (sizeof (val) == 2) \
|
||||
__res = bswap_16 (val); \
|
||||
else if (sizeof (val) == 4) \
|
||||
__res = bswap_32 (val); \
|
||||
else \
|
||||
__res = bswap_64 (val); \
|
||||
} \
|
||||
else \
|
||||
__res = (val); \
|
||||
__res; })
|
||||
|
||||
|
||||
static int
|
||||
AB(handle_file) (const char *fname, int fd)
|
||||
{
|
||||
E(Ehdr) ehdr;
|
||||
|
||||
if (pread (fd, &ehdr, sizeof (ehdr), 0) != sizeof (ehdr))
|
||||
{
|
||||
read_error:
|
||||
printf ("%s: read error: %m\n", fname);
|
||||
return 1;
|
||||
}
|
||||
|
||||
const size_t phnum = SWAP (ehdr.e_phnum);
|
||||
const size_t phentsize = SWAP (ehdr.e_phentsize);
|
||||
|
||||
/* Read the program header. */
|
||||
E(Phdr) *phdr = alloca (phentsize * phnum);
|
||||
if (pread (fd, phdr, phentsize * phnum, SWAP (ehdr.e_phoff))
|
||||
!= phentsize * phnum)
|
||||
goto read_error;
|
||||
|
||||
/* Search for the PT_DYNAMIC entry. */
|
||||
size_t cnt;
|
||||
for (cnt = 0; cnt < phnum; ++cnt)
|
||||
if (phdr[cnt].p_type == PT_DYNAMIC)
|
||||
break;
|
||||
|
||||
if (cnt == phnum)
|
||||
{
|
||||
printf ("%s: no DYNAMIC segment found\n", fname);
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Read the dynamic segment. */
|
||||
size_t pmemsz = SWAP(phdr[cnt].p_memsz);
|
||||
E(Dyn) *dyn = alloca (pmemsz);
|
||||
if (pread (fd, dyn, pmemsz, SWAP(phdr[cnt].p_offset)) != pmemsz)
|
||||
goto read_error;
|
||||
|
||||
/* Search for an DT_TEXTREL entry of DT_FLAGS with the DF_TEXTREL
|
||||
bit set. */
|
||||
for (cnt = 0; (cnt + 1) * sizeof (E(Dyn)) - 1 < pmemsz; ++cnt)
|
||||
{
|
||||
if (dyn[cnt].d_tag == DT_NULL)
|
||||
/* We reached the end. */
|
||||
break;
|
||||
|
||||
if (dyn[cnt].d_tag == DT_TEXTREL
|
||||
|| (dyn[cnt].d_tag == DT_FLAGS
|
||||
&& (dyn[cnt].d_un.d_val & DF_TEXTREL) != 0))
|
||||
{
|
||||
/* Urgh! The DSO has text relocations. */
|
||||
printf ("%s: text relocations used\n", fname);
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
printf ("%s: OK\n", fname);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
# undef BITS
|
||||
#else
|
||||
|
||||
# define BITS 32
|
||||
# include "check-textrel.c"
|
||||
|
||||
# define BITS 64
|
||||
# include "check-textrel.c"
|
||||
|
||||
|
||||
static int
|
||||
handle_file (const char *fname)
|
||||
{
|
||||
int fd = open (fname, O_RDONLY);
|
||||
if (fd == -1)
|
||||
{
|
||||
printf ("cannot open %s: %m\n", fname);
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Read was is supposed to be the ELF header. Read the initial
|
||||
bytes to determine whether this is a 32 or 64 bit file. */
|
||||
char ident[EI_NIDENT];
|
||||
if (read (fd, ident, EI_NIDENT) != EI_NIDENT)
|
||||
{
|
||||
printf ("%s: read error: %m\n", fname);
|
||||
close (fd);
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (memcmp (&ident[EI_MAG0], ELFMAG, SELFMAG) != 0)
|
||||
{
|
||||
printf ("%s: not an ELF file\n", fname);
|
||||
close (fd);
|
||||
return 1;
|
||||
}
|
||||
|
||||
int result;
|
||||
if (ident[EI_CLASS] == ELFCLASS64)
|
||||
result = handle_file64 (fname, fd);
|
||||
else
|
||||
result = handle_file32 (fname, fd);
|
||||
|
||||
close (fd);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
int cnt;
|
||||
int result = 0;
|
||||
|
||||
for (cnt = 1; cnt < argc; ++cnt)
|
||||
result |= handle_file (argv[cnt]);
|
||||
|
||||
return result;
|
||||
}
|
||||
#endif
|
@ -49,9 +49,9 @@ __lll_lock_wait:
|
||||
orl $-1, %eax /* Load -1. */
|
||||
#ifndef UP
|
||||
# ifdef PIC
|
||||
call __i686.get_pc_thunk.bx
|
||||
addl $_GLOBAL_OFFSET_TABLE_, %ebx
|
||||
cmpl $0, __libc_locking_needed@GOTOFF(%ebx)
|
||||
call __i686.get_pc_thunk.dx
|
||||
addl $_GLOBAL_OFFSET_TABLE_, %edx
|
||||
cmpl $0, __libc_locking_needed@GOTOFF(%edx)
|
||||
# else
|
||||
cmpl $0, __libc_locking_needed
|
||||
# endif
|
||||
@ -84,9 +84,9 @@ lll_unlock_wake_cb:
|
||||
movl 20(%esp), %ebx
|
||||
#ifndef UP
|
||||
# ifdef PIC
|
||||
call __i686.get_pc_thunk.bx
|
||||
addl $_GLOBAL_OFFSET_TABLE_, %ebx
|
||||
cmpl $0, __libc_locking_needed@GOTOFF(%ebx)
|
||||
call __i686.get_pc_thunk.dx
|
||||
addl $_GLOBAL_OFFSET_TABLE_, %edx
|
||||
cmpl $0, __libc_locking_needed@GOTOFF(%edx)
|
||||
# else
|
||||
cmpl $0, __libc_locking_needed
|
||||
# endif
|
||||
@ -196,10 +196,11 @@ __lll_timedwait_tid:
|
||||
.size __lll_timedwait_tid,.-__lll_timedwait_tid
|
||||
|
||||
|
||||
.section .gnu.linkonce.t.__i686.get_pc_thunk.bx,"ax",@progbits
|
||||
.globl __i686.get_pc_thunk.bx
|
||||
.hidden __i686.get_pc_thunk.bx
|
||||
.type __i686.get_pc_thunk.bx,@function
|
||||
__i686.get_pc_thunk.bx:
|
||||
movl (%esp), %ebx
|
||||
.section .gnu.linkonce.t.__i686.get_pc_thunk.dx,"ax",@progbits
|
||||
.globl __i686.get_pc_thunk.dx
|
||||
.hidden __i686.get_pc_thunk.dx
|
||||
.type __i686.get_pc_thunk.dx,@function
|
||||
__i686.get_pc_thunk.dx:
|
||||
movl (%esp), %edx
|
||||
ret
|
||||
.size __i686.get_pc_thunk.dx,.-__i686.get_pc_thunk.dx
|
||||
|
Loading…
Reference in New Issue
Block a user