diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-01-13 08:36:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-01-13 08:36:54 +0000 |
commit | ed20b3d9cc5ce78fd71f32c47b2eb7a897c7a25d (patch) | |
tree | c4ea660173f2c8cc138e8f0f1c64055a156c5036 /elf/elf.h | |
parent | 1c563add69af03557ba47a4a13790d821133478c (diff) | |
download | glibc-ed20b3d9cc5ce78fd71f32c47b2eb7a897c7a25d.tar.gz glibc-ed20b3d9cc5ce78fd71f32c47b2eb7a897c7a25d.tar.xz glibc-ed20b3d9cc5ce78fd71f32c47b2eb7a897c7a25d.zip |
Update.
2004-01-13 Ulrich Drepper <drepper@redhat.com> * Makeconfig: Define relro-LDFLAGS if have-z-relro==yes. Add it to LDFLAGS.so and LDFLAGS-rtld. (+link): Add relro-LDFLAGS. * Makeconfig (shlib.lds): Place __libc_subfreeres, __libc_atexit, and __libc_thread_subfreeres sections after .jcr section. * config.make.in: Add have-z-relro. * configure.in: Add check for -z relro option. * include/link.h (struct link_map): Add relro_addr and relro_size members. * elf/dl-load.c (_dl_map_object_from_fd): Recognize PT_GNU_RELRO. * elf/dl-reloc.c (_dl_relocate_object): At the end, make relro part of loaded segments read-only. * elf/elf.h: Define PT_GNU_RELRO. * elf/rtld.c (_dl_start): Recognize PT_GNU_RELRO of ld.so. (dl_main): Recognize PT_GNU_RELRO of the application. Call _dl_debug_initialize and initialize l_info[DT_DEBUG] before relocations.
Diffstat (limited to 'elf/elf.h')
-rw-r--r-- | elf/elf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/elf.h b/elf/elf.h index 56b711da36..9a4da6591e 100644 --- a/elf/elf.h +++ b/elf/elf.h @@ -1,5 +1,5 @@ /* This file defines standard ELF types, structures, and macros. - Copyright (C) 1995-1999,2000,2001,2002,2003 Free Software Foundation, Inc. + Copyright (C) 1995-2003, 2004 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 @@ -567,6 +567,7 @@ typedef struct #define PT_LOOS 0x60000000 /* Start of OS-specific */ #define PT_GNU_EH_FRAME 0x6474e550 /* GCC .eh_frame_hdr segment */ #define PT_GNU_STACK 0x6474e551 /* Indicates stack executability */ +#define PT_GNU_RELRO 0x6474e552 /* Read-only after relocation */ #define PT_LOSUNW 0x6ffffffa #define PT_SUNWBSS 0x6ffffffa /* Sun Specific segment */ #define PT_SUNWSTACK 0x6ffffffb /* Stack segment */ |