diff options
author | Roland McGrath <roland@hack.frob.com> | 2011-07-14 19:09:27 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2011-07-14 19:09:27 -0700 |
commit | 9fa2c03227e159050e9dc4ec1e315e5909901580 (patch) | |
tree | 88b205ce926259885826bd312cfbc3514546cb57 | |
parent | defe906180bad4e356bb55b60b10abd41b7ee3a1 (diff) | |
download | glibc-9fa2c03227e159050e9dc4ec1e315e5909901580.tar.gz glibc-9fa2c03227e159050e9dc4ec1e315e5909901580.tar.xz glibc-9fa2c03227e159050e9dc4ec1e315e5909901580.zip |
Adjust relro test to work around GNU ld limitations.
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 7 | ||||
-rw-r--r-- | configure.in | 7 |
3 files changed, 20 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 9738f7bd51..55390de883 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-07-14 Roland McGrath <roland@hack.frob.com> + + * configure.in (-z relro check): Adjust test code to add a large + writable data section after it. + * configure: Regenerated. + 2011-07-11 Roland McGrath <roland@hack.frob.com> * configure.in (-z relro check): Fix test code to make the variable diff --git a/configure b/configure index d44659bb2c..2568345f48 100755 --- a/configure +++ b/configure @@ -6404,7 +6404,14 @@ else int _start (void) { return 42; } extern void _exit (int); +/* Since these pointers are const, they should go in rodata. + Since they refer to functions that have to be resolved by + dynamic linking, they should instead go in RELRO data. */ const void *const relro[] = { &_start, &_exit, 0 }; +/* GNU ld fails to produce RELRO data when it's very small and there is no + normal writable data following it, or if only uninitialized (.bss) data + follows it, or only very small writable data. */ +int data[0x10000] = { 1, }; _ACEOF cat > conftest.awk <<\EOF diff --git a/configure.in b/configure.in index d40bc64ca2..55e56498c1 100644 --- a/configure.in +++ b/configure.in @@ -1607,7 +1607,14 @@ EOF AC_LANG_CONFTEST([AC_LANG_SOURCE([[ int _start (void) { return 42; } extern void _exit (int); +/* Since these pointers are const, they should go in rodata. + Since they refer to functions that have to be resolved by + dynamic linking, they should instead go in RELRO data. */ const void *const relro[] = { &_start, &_exit, 0 }; +/* GNU ld fails to produce RELRO data when it's very small and there is no + normal writable data following it, or if only uninitialized (.bss) data + follows it, or only very small writable data. */ +int data[0x10000] = { 1, }; ]])]) cat > conftest.awk <<\EOF BEGIN { |