aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2023-04-24 00:55:26 +0300
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-04-24 22:48:35 +0200
commitc02b26455b3c9d33c8a94e56eed1958d7f751b72 (patch)
treecef6d7d11c961ab5ff7e300009b23501c23d818a /sysdeps/unix/sysv/linux
parent35b7bf2fe003d6dbd5726cdf69f3c5d8179590e5 (diff)
downloadglibc-c02b26455b3c9d33c8a94e56eed1958d7f751b72.zip
glibc-c02b26455b3c9d33c8a94e56eed1958d7f751b72.tar.gz
glibc-c02b26455b3c9d33c8a94e56eed1958d7f751b72.tar.bz2
hurd: Implement prefer_map_32bit_exec tunable
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>
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rw-r--r--sysdeps/unix/sysv/linux/x86_64/64/Makefile23
-rw-r--r--sysdeps/unix/sysv/linux/x86_64/64/dl-tunables.list29
-rw-r--r--sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1a.c34
-rw-r--r--sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1b.c1
-rw-r--r--sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-mod.c33
5 files changed, 0 insertions, 120 deletions
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/Makefile b/sysdeps/unix/sysv/linux/x86_64/64/Makefile
index 1bf7d52..a7b6dc5 100644
--- a/sysdeps/unix/sysv/linux/x86_64/64/Makefile
+++ b/sysdeps/unix/sysv/linux/x86_64/64/Makefile
@@ -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/unix/sysv/linux/x86_64/64/dl-tunables.list b/sysdeps/unix/sysv/linux/x86_64/64/dl-tunables.list
deleted file mode 100644
index 0aab52e..0000000
--- a/sysdeps/unix/sysv/linux/x86_64/64/dl-tunables.list
+++ /dev/null
@@ -1,29 +0,0 @@
-# x86-64 specific tunables.
-# Copyright (C) 2023 Free Software Foundation, Inc.
-# This file is part of the GNU C Library.
-
-# The GNU C Library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License, or (at your option) any later version.
-
-# The GNU C Library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Lesser General Public License for more details.
-
-# You should have received a copy of the GNU Lesser General Public
-# License along with the GNU C Library; if not, see
-# <https://www.gnu.org/licenses/>.
-
-glibc {
- cpu {
- prefer_map_32bit_exec {
- type: INT_32
- minval: 0
- maxval: 1
- env_alias: LD_PREFER_MAP_32BIT_EXEC
- security_level: SXID_IGNORE
- }
- }
-}
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1a.c b/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1a.c
deleted file mode 100644
index abc3965..0000000
--- a/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1a.c
+++ /dev/null
@@ -1,34 +0,0 @@
-/* Check that LD_PREFER_MAP_32BIT_EXEC works in PDE and shared library.
- Copyright (C) 2023 Free Software Foundation, Inc.
- This file is part of the GNU C Library.
-
- The GNU C Library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- The GNU C Library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, see
- <https://www.gnu.org/licenses/>. */
-
-#include <stdio.h>
-#include <stdint.h>
-#include <support/check.h>
-
-extern void dso_check_map_32bit (void);
-
-static int
-do_test (void)
-{
- printf ("do_test: %p\n", do_test);
- TEST_VERIFY ((uintptr_t) do_test < 0xffffffffUL);
- dso_check_map_32bit ();
- return 0;
-}
-
-#include <support/test-driver.c>
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1b.c b/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1b.c
deleted file mode 100644
index 34ab01c..0000000
--- a/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1b.c
+++ /dev/null
@@ -1 +0,0 @@
-#include "tst-map-32bit-1a.c"
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-mod.c b/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-mod.c
deleted file mode 100644
index 78d4b61..0000000
--- a/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-mod.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/* Check that LD_PREFER_MAP_32BIT_EXEC works in shared library.
- Copyright (C) 2023 Free Software Foundation, Inc.
- This file is part of the GNU C Library.
-
- The GNU C Library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- The GNU C Library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, see
- <https://www.gnu.org/licenses/>. */
-
-#include <stdio.h>
-#include <stdint.h>
-#include <support/check.h>
-
-static void
-dso_do_test (void)
-{
-}
-
-void
-dso_check_map_32bit (void)
-{
- printf ("dso_do_test: %p\n", dso_do_test);
- TEST_VERIFY ((uintptr_t) dso_do_test < 0xffffffffUL);
-}