* elf/dl-load.c (open_path): If rtld_search_dirs is in RELRO segment,

avoid writing to it if none of the standard search directories exist.
This commit is contained in:
Ulrich Drepper 2005-02-07 23:52:23 +00:00
parent 16cc180029
commit ecc1d0c301
2 changed files with 15 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2005-01-07 Jakub Jelinek <jakub@redhat.com>
* elf/dl-load.c (open_path): If rtld_search_dirs is in RELRO segment,
avoid writing to it if none of the standard search directories exist.
2005-02-07 Steven Munroe <sjmunroe@us.ibm.com>
[BZ #700]

View File

@ -105,13 +105,11 @@ ELF_PREFERRED_ADDRESS_DATA;
int __stack_prot attribute_hidden attribute_relro
= (PROT_READ|PROT_WRITE
#if _STACK_GROWS_DOWN && defined PROT_GROWSDOWN
|PROT_GROWSDOWN
= PROT_GROWSDOWN;
#elif _STACK_GROWS_UP && defined PROT_GROWSUP
|PROT_GROWSUP
= PROT_GROWSUP;
#endif
);
/* Type for the buffer we put the ELF header and hopefully the program
@ -1368,12 +1366,12 @@ cannot allocate TLS data structures for initial thread");
if (__builtin_expect (__check_caller (RETURN_ADDRESS (0),
allow_ldso) == 0,
0))
__stack_prot |= PROT_EXEC;
__stack_prot |= PROT_READ|PROT_WRITE|PROT_EXEC;
__mprotect ((void *) p, s, PROT_READ);
}
else
#endif
__stack_prot |= PROT_EXEC;
__stack_prot |= PROT_READ|PROT_WRITE|PROT_EXEC;
errval = (*GL(dl_make_stack_executable_hook)) (stack_endp);
if (errval)
@ -1876,7 +1874,12 @@ open_path (const char *name, size_t namelen, int preloaded,
must not be freed using the general free() in libc. */
if (sps->malloced)
free (sps->dirs);
sps->dirs = (void *) -1;
#ifdef HAVE_Z_RELRO
/* rtld_search_dirs is attribute_relro, therefore avoid writing
into it. */
if (sps != &rtld_search_dirs)
#endif
sps->dirs = (void *) -1;
}
return -1;