]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
hurd: Implement prefer_map_32bit_exec tunable
authorSergey Bugaev <bugaevc@gmail.com>
Sun, 23 Apr 2023 21:55:26 +0000 (00:55 +0300)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Mon, 24 Apr 2023 20:48:35 +0000 (22:48 +0200)
This makes the prefer_map_32bit_exec tunable no longer Linux-specific.

Signed-off-by: Sergey Bugaev <bugaevc@gmail.com>
Message-Id: <20230423215526.346009-4-bugaevc@gmail.com>

sysdeps/mach/hurd/dl-sysdep.c
sysdeps/mach/hurd/mmap.c
sysdeps/unix/sysv/linux/x86_64/64/Makefile
sysdeps/x86_64/64/Makefile [new file with mode: 0644]
sysdeps/x86_64/64/dl-tunables.list [moved from sysdeps/unix/sysv/linux/x86_64/64/dl-tunables.list with 100% similarity]
sysdeps/x86_64/64/tst-map-32bit-1a.c [moved from sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1a.c with 100% similarity]
sysdeps/x86_64/64/tst-map-32bit-1b.c [moved from sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1b.c with 100% similarity]
sysdeps/x86_64/64/tst-map-32bit-mod.c [moved from sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-mod.c with 100% similarity]

index 25a1277461c8d5658661d9953a8f1b2a7e2ebe31..79ebb0ceb18b2ea39ad306e0890ee923956518ab 100644 (file)
@@ -462,6 +462,11 @@ __mmap (void *addr, size_t len, int prot, int flags, int fd, off_t offset)
   if (prot & PROT_EXEC)
     vmprot |= VM_PROT_EXECUTE;
 
+#ifdef __LP64__
+  if ((addr == NULL) && (prot & PROT_EXEC)
+      && HAS_ARCH_FEATURE (Prefer_MAP_32BIT_EXEC))
+    flags |= MAP_32BIT;
+#endif
   mask = (flags & MAP_32BIT) ? ~(vm_address_t) 0x7FFFFFFF : 0;
 
   if (flags & MAP_ANON)
index 790eb23886e8cb00217020e08f24afb76d2d9642..5aa7008393e1046efa169a4b7fdbec410bcd0eac 100644 (file)
@@ -18,6 +18,7 @@
 #include <sys/types.h>
 #include <sys/mman.h>
 #include <errno.h>
+#include <ldsodefs.h>
 #include <hurd.h>
 #include <hurd/fd.h>
 
@@ -55,6 +56,11 @@ __mmap (void *addr, size_t len, int prot, int flags, int fd, off_t offset)
 
   copy = ! (flags & MAP_SHARED);
 
+#ifdef __LP64__
+  if ((addr == NULL) && (prot & PROT_EXEC)
+      && HAS_ARCH_FEATURE (Prefer_MAP_32BIT_EXEC))
+    flags |= MAP_32BIT;
+#endif
   mask = (flags & MAP_32BIT) ? ~(vm_address_t) 0x7FFFFFFF : 0;
 
   switch (flags & MAP_TYPE)
index 1bf7d528b2521c082e8bc131897cb230f28e6bb8..a7b6dc5a53444a94cc9ccaf2cbc920a6fe49d4be 100644 (file)
@@ -1,25 +1,2 @@
 # The default ABI is 64.
 default-abi := 64
-
-ifeq ($(subdir),elf)
-
-tests-map-32bit = \
-  tst-map-32bit-1a \
-  tst-map-32bit-1b \
-# tests-map-32bit
-tst-map-32bit-1a-no-pie = yes
-tst-map-32bit-1b-no-pie = yes
-tests += $(tests-map-32bit)
-
-modules-map-32bit = \
-  tst-map-32bit-mod \
-# modules-map-32bit
-modules-names += $(modules-map-32bit)
-
-$(objpfx)tst-map-32bit-mod.so: $(libsupport)
-tst-map-32bit-1a-ENV = LD_PREFER_MAP_32BIT_EXEC=1
-$(objpfx)tst-map-32bit-1a: $(objpfx)tst-map-32bit-mod.so
-tst-map-32bit-1b-ENV = GLIBC_TUNABLES=glibc.cpu.prefer_map_32bit_exec=1
-$(objpfx)tst-map-32bit-1b: $(objpfx)tst-map-32bit-mod.so
-
-endif
diff --git a/sysdeps/x86_64/64/Makefile b/sysdeps/x86_64/64/Makefile
new file mode 100644 (file)
index 0000000..73fcfe0
--- /dev/null
@@ -0,0 +1,22 @@
+ifeq ($(subdir),elf)
+
+tests-map-32bit = \
+  tst-map-32bit-1a \
+  tst-map-32bit-1b \
+# tests-map-32bit
+tst-map-32bit-1a-no-pie = yes
+tst-map-32bit-1b-no-pie = yes
+tests += $(tests-map-32bit)
+
+modules-map-32bit = \
+  tst-map-32bit-mod \
+# modules-map-32bit
+modules-names += $(modules-map-32bit)
+
+$(objpfx)tst-map-32bit-mod.so: $(libsupport)
+tst-map-32bit-1a-ENV = LD_PREFER_MAP_32BIT_EXEC=1
+$(objpfx)tst-map-32bit-1a: $(objpfx)tst-map-32bit-mod.so
+tst-map-32bit-1b-ENV = GLIBC_TUNABLES=glibc.cpu.prefer_map_32bit_exec=1
+$(objpfx)tst-map-32bit-1b: $(objpfx)tst-map-32bit-mod.so
+
+endif