[compiler-rt] [asan] Re-exec without ASLR if needed on 32-bit Linux (PR #131975)

via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 29 12:36:01 PDT 2025


================
@@ -109,6 +109,13 @@ void InitializeShadowMemory() {
     ProtectGap(kShadowGap2Beg, kShadowGap2End - kShadowGap2Beg + 1);
     ProtectGap(kShadowGap3Beg, kShadowGap3End - kShadowGap3Beg + 1);
   } else {
+    // The shadow mappings can shadow the entire user address space. However,
+    // on 32-bit systems, the maximum ASLR entropy (currently up to 16-bits
+    // == 256MB) is a significant chunk of the address space; reclaiming it by
+    // disabling ASLR might allow chonky binaries to run.
+    if (sizeof(uptr) == 32)
----------------
Alcaro wrote:

...oh, #132682 deleted that check. This question no longer matters.

https://github.com/llvm/llvm-project/pull/131975


More information about the llvm-commits mailing list