[compiler-rt] [asan] Print diagnostic if unlimited stack size detected (PR #133170)
Thurston Dang via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 26 15:14:30 PDT 2025
https://github.com/thurstond updated https://github.com/llvm/llvm-project/pull/133170
>From 1b64b0e80f5cbc4aea359deead2d864382978f20 Mon Sep 17 00:00:00 2001
From: Thurston Dang <thurston at google.com>
Date: Wed, 26 Mar 2025 22:10:20 +0000
Subject: [PATCH 1/3] [asan] Print diagnostic if unlimited stack size detected
This adds a diagnostic message if the stack size is unlimited. This
would have simplified the diagnosis of
https://github.com/google/sanitizers/issues/856#issuecomment-2747076811;
we anticipate this may help diagnose future issues too.
---
compiler-rt/lib/asan/asan_rtl.cpp | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/compiler-rt/lib/asan/asan_rtl.cpp b/compiler-rt/lib/asan/asan_rtl.cpp
index 19c6c210b564c..36a6e38ae8eda 100644
--- a/compiler-rt/lib/asan/asan_rtl.cpp
+++ b/compiler-rt/lib/asan/asan_rtl.cpp
@@ -451,6 +451,17 @@ static bool AsanInitInternal() {
DisableCoreDumperIfNecessary();
+#if SANITIZER_POSIX
+ if (StackSizeIsUnlimited()) {
+ VPrintf(1, "WARNING: Unlimited stack size detected. This may affect "
+ "compatibility with the shadow mappings.\n");
+ // MSan and TSan re-exec with a fixed size stack. We don't do that because
+ // it may break the program. InitializeShadowMemory() will, if needed,
+ // re-exec without ASLR, which solves most shadow mapping compatibility
+ // issues.
+ }
+#endif
+
InitializeShadowMemory();
AsanTSDInit(PlatformTSDDtor);
>From 9340645e899393cceeeb5afbe5f096c5cce64057 Mon Sep 17 00:00:00 2001
From: Thurston Dang <thurston at google.com>
Date: Wed, 26 Mar 2025 22:12:51 +0000
Subject: [PATCH 2/3] clang-format
---
compiler-rt/lib/asan/asan_rtl.cpp | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/compiler-rt/lib/asan/asan_rtl.cpp b/compiler-rt/lib/asan/asan_rtl.cpp
index 36a6e38ae8eda..d98b350828448 100644
--- a/compiler-rt/lib/asan/asan_rtl.cpp
+++ b/compiler-rt/lib/asan/asan_rtl.cpp
@@ -453,8 +453,9 @@ static bool AsanInitInternal() {
#if SANITIZER_POSIX
if (StackSizeIsUnlimited()) {
- VPrintf(1, "WARNING: Unlimited stack size detected. This may affect "
- "compatibility with the shadow mappings.\n");
+ VPrintf(1,
+ "WARNING: Unlimited stack size detected. This may affect "
+ "compatibility with the shadow mappings.\n");
// MSan and TSan re-exec with a fixed size stack. We don't do that because
// it may break the program. InitializeShadowMemory() will, if needed,
// re-exec without ASLR, which solves most shadow mapping compatibility
>From 04d2a90e14f760a31601d087c5008106f7874190 Mon Sep 17 00:00:00 2001
From: Thurston Dang <thurston at google.com>
Date: Wed, 26 Mar 2025 22:14:01 +0000
Subject: [PATCH 3/3] Comment
---
compiler-rt/lib/asan/asan_rtl.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/compiler-rt/lib/asan/asan_rtl.cpp b/compiler-rt/lib/asan/asan_rtl.cpp
index d98b350828448..b3f6677a99cfb 100644
--- a/compiler-rt/lib/asan/asan_rtl.cpp
+++ b/compiler-rt/lib/asan/asan_rtl.cpp
@@ -461,7 +461,7 @@ static bool AsanInitInternal() {
// re-exec without ASLR, which solves most shadow mapping compatibility
// issues.
}
-#endif
+#endif // SANITIZER_POSIX
InitializeShadowMemory();
More information about the llvm-commits
mailing list