mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +00:00
* 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:
parent
16cc180029
commit
ecc1d0c301
@ -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]
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user