94084c
commit ea5814467a02c9d2d7608b6445c5d60e2a81d3ee
94084c
Author: H.J. Lu <hjl.tools@gmail.com>
94084c
Date:   Fri Dec 10 13:00:09 2021 -0800
94084c
94084c
    x86-64: Remove LD_PREFER_MAP_32BIT_EXEC support [BZ #28656]
94084c
    
94084c
    Remove the LD_PREFER_MAP_32BIT_EXEC environment variable support since
94084c
    the first PT_LOAD segment is no longer executable due to defaulting to
94084c
    -z separate-code.
94084c
    
94084c
    This fixes [BZ #28656].
94084c
    
94084c
    Reviewed-by: Florian Weimer <fweimer@redhat.com>
94084c
94084c
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/dl-librecon.h b/sysdeps/unix/sysv/linux/x86_64/64/dl-librecon.h
94084c
deleted file mode 100644
94084c
index 5b9696e2de8e5482..0000000000000000
94084c
--- a/sysdeps/unix/sysv/linux/x86_64/64/dl-librecon.h
94084c
+++ /dev/null
94084c
@@ -1,45 +0,0 @@
94084c
-/* Optional code to distinguish library flavours.  x86-64 version.
94084c
-   Copyright (C) 2015-2021 Free Software Foundation, Inc.
94084c
-   This file is part of the GNU C Library.
94084c
-
94084c
-   The GNU C Library is free software; you can redistribute it and/or
94084c
-   modify it under the terms of the GNU Lesser General Public
94084c
-   License as published by the Free Software Foundation; either
94084c
-   version 2.1 of the License, or (at your option) any later version.
94084c
-
94084c
-   The GNU C Library is distributed in the hope that it will be useful,
94084c
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
94084c
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
94084c
-   Lesser General Public License for more details.
94084c
-
94084c
-   You should have received a copy of the GNU Lesser General Public
94084c
-   License along with the GNU C Library; if not, see
94084c
-   <https://www.gnu.org/licenses/>.  */
94084c
-
94084c
-#ifndef _DL_LIBRECON_H
94084c
-
94084c
-#include <sysdeps/unix/sysv/linux/dl-librecon.h>
94084c
-
94084c
-/* Recognizing extra environment variables.  For 64-bit applications,
94084c
-   branch prediction performance may be negatively impacted when the
94084c
-   target of a branch is more than 4GB away from the branch.  Add the
94084c
-   Prefer_MAP_32BIT_EXEC bit so that mmap will try to map executable
94084c
-   pages with MAP_32BIT first.  NB: MAP_32BIT will map to lower 2GB,
94084c
-   not lower 4GB, address.  Prefer_MAP_32BIT_EXEC reduces bits available
94084c
-   for address space layout randomization (ASLR).  Prefer_MAP_32BIT_EXEC
94084c
-   is always disabled for SUID programs and can be enabled by setting
94084c
-   environment variable, LD_PREFER_MAP_32BIT_EXEC.  */
94084c
-#define EXTRA_LD_ENVVARS \
94084c
-  case 21:								  \
94084c
-    if (!__libc_enable_secure						  \
94084c
-	&& memcmp (envline, "PREFER_MAP_32BIT_EXEC", 21) == 0)		  \
94084c
-      GLRO(dl_x86_cpu_features).preferred[index_arch_Prefer_MAP_32BIT_EXEC] \
94084c
-	|= bit_arch_Prefer_MAP_32BIT_EXEC;				  \
94084c
-    break;
94084c
-
94084c
-/* Extra unsecure variables.  The names are all stuffed in a single
94084c
-   string which means they have to be terminated with a '\0' explicitly.  */
94084c
-#define EXTRA_UNSECURE_ENVVARS \
94084c
-  "LD_PREFER_MAP_32BIT_EXEC\0"
94084c
-
94084c
-#endif /* dl-librecon.h */
94084c
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/mmap_internal.h b/sysdeps/unix/sysv/linux/x86_64/64/mmap_internal.h
94084c
deleted file mode 100644
94084c
index 18177d2cb3ae645f..0000000000000000
94084c
--- a/sysdeps/unix/sysv/linux/x86_64/64/mmap_internal.h
94084c
+++ /dev/null
94084c
@@ -1,42 +0,0 @@
94084c
-/* Linux mmap system call.  x86-64 version.
94084c
-   Copyright (C) 2015-2021 Free Software Foundation, Inc.
94084c
-
94084c
-   This file is part of the GNU C Library.
94084c
-
94084c
-   The GNU C Library is free software; you can redistribute it and/or
94084c
-   modify it under the terms of the GNU Lesser General Public License as
94084c
-   published by the Free Software Foundation; either version 2.1 of the
94084c
-   License, or (at your option) any later version.
94084c
-
94084c
-   The GNU C Library is distributed in the hope that it will be useful,
94084c
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
94084c
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
94084c
-   Lesser General Public License for more details.
94084c
-
94084c
-   You should have received a copy of the GNU Lesser General Public
94084c
-   License along with the GNU C Library; if not, see
94084c
-   <https://www.gnu.org/licenses/>.  */
94084c
-
94084c
-#ifndef MMAP_X86_64_INTERNAL_H
94084c
-#define MMAP_X86_64_INTERNAL_H
94084c
-
94084c
-#include <ldsodefs.h>
94084c
-
94084c
-/* If the Prefer_MAP_32BIT_EXEC bit is set, try to map executable pages
94084c
-   with MAP_32BIT first.  */
94084c
-#define MMAP_PREPARE(addr, len, prot, flags, fd, offset)		\
94084c
-  if ((addr) == NULL							\
94084c
-      && ((prot) & PROT_EXEC) != 0					\
94084c
-      && HAS_ARCH_FEATURE (Prefer_MAP_32BIT_EXEC))			\
94084c
-    {									\
94084c
-      void *ret = (void*) INLINE_SYSCALL_CALL (mmap, (addr), (len),	\
94084c
-					      (prot),			\
94084c
-					      (flags) | MAP_32BIT,	\
94084c
-					      (fd), (offset));		\
94084c
-      if (ret != MAP_FAILED)						\
94084c
-	return ret;							\
94084c
-    }
94084c
-
94084c
-#include_next <mmap_internal.h>
94084c
-
94084c
-#endif
94084c
diff --git a/sysdeps/x86/cpu-tunables.c b/sysdeps/x86/cpu-tunables.c
94084c
index 00fe5045eb56eb07..58f2fad4323d5d91 100644
94084c
--- a/sysdeps/x86/cpu-tunables.c
94084c
+++ b/sysdeps/x86/cpu-tunables.c
94084c
@@ -260,13 +260,6 @@ TUNABLE_CALLBACK (set_hwcaps) (tunable_val_t *valp)
94084c
 		 20);
94084c
 	    }
94084c
 	  break;
94084c
-	case 21:
94084c
-	    {
94084c
-	      CHECK_GLIBC_IFUNC_PREFERRED_BOTH (n, cpu_features,
94084c
-						Prefer_MAP_32BIT_EXEC,
94084c
-						disable, 21);
94084c
-	    }
94084c
-	  break;
94084c
 	case 23:
94084c
 	    {
94084c
 	      CHECK_GLIBC_IFUNC_PREFERRED_NEED_BOTH
94084c
diff --git a/sysdeps/x86/include/cpu-features-preferred_feature_index_1.def b/sysdeps/x86/include/cpu-features-preferred_feature_index_1.def
94084c
index d7c93f00c5928a30..3bdc76cf71007948 100644
94084c
--- a/sysdeps/x86/include/cpu-features-preferred_feature_index_1.def
94084c
+++ b/sysdeps/x86/include/cpu-features-preferred_feature_index_1.def
94084c
@@ -26,7 +26,6 @@ BIT (I586)
94084c
 BIT (I686)
94084c
 BIT (Slow_SSE4_2)
94084c
 BIT (AVX_Fast_Unaligned_Load)
94084c
-BIT (Prefer_MAP_32BIT_EXEC)
94084c
 BIT (Prefer_No_VZEROUPPER)
94084c
 BIT (Prefer_ERMS)
94084c
 BIT (Prefer_No_AVX512)