summaryrefslogtreecommitdiff
path: root/elf
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-04-26 04:26:13 +0000
committerRoland McGrath <roland@gnu.org>2005-04-26 04:26:13 +0000
commitb34cbd1428405d1c64b071364bc90fe064b8b0c9 (patch)
treeb8ab1a9852b47852641e2de9e97c5f7d63a6cb60 /elf
parent5949daa081392aa2a250aa5064b715e97aa9acb8 (diff)
* sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
(INTERNAL_SYSCALL_ERROR_P): Fix typo in last change. * sunrpc/xdr.c (xdr_u_int): Use `long' for L and cast where needed. * elf/dl-load.c: Revert last change.
Diffstat (limited to 'elf')
-rw-r--r--elf/dl-load.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c
index 0d3fbb425b..d8b3a56d0d 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -55,6 +55,12 @@
# define MAP_COPY MAP_PRIVATE
#endif
+/* We want to prevent people from modifying DSOs which are currently in
+ use. This is what MAP_DENYWRITE is for. */
+#ifndef MAP_DENYWRITE
+# define MAP_DENYWRITE 0
+#endif
+
/* Some systems link their relocatable objects for another base address
than 0. We want to know the base address for these such that we can
subtract this address from the segment addresses during mapping.
@@ -1175,7 +1181,7 @@ cannot allocate TLS data structures for initial thread");
/* Remember which part of the address space this object uses. */
l->l_map_start = (ElfW(Addr)) __mmap ((void *) mappref, maplength,
c->prot,
- MAP_COPY | MAP_FILE,
+ MAP_COPY|MAP_FILE|MAP_DENYWRITE,
fd, c->mapoff);
if (__builtin_expect ((void *) l->l_map_start == MAP_FAILED, 0))
{