[compiler-rt] [asan][win] Fix CreateThread leak (PR #126738)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 25 01:48:23 PST 2025
https://github.com/GkvJwa updated https://github.com/llvm/llvm-project/pull/126738
>From d85fea783c0a1156f79cb4fa42e6e187b38dccdc Mon Sep 17 00:00:00 2001
From: GkvJwa <gkvjwa at gmail.com>
Date: Tue, 25 Feb 2025 17:48:05 +0800
Subject: [PATCH] [asan][win] Fix ExitThread leak
Intercept `ExitThread` and free the memory created by `VirtualAlloc'
---
compiler-rt/lib/asan/asan_win.cpp | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/compiler-rt/lib/asan/asan_win.cpp b/compiler-rt/lib/asan/asan_win.cpp
index 09a13b11cff1f..57a8eb568fcc1 100644
--- a/compiler-rt/lib/asan/asan_win.cpp
+++ b/compiler-rt/lib/asan/asan_win.cpp
@@ -145,7 +145,6 @@ static thread_return_t THREAD_CALLING_CONV asan_thread_start(void *arg) {
t->GetStartData(params);
auto res = (*params.start_routine)(params.arg);
- t->Destroy(); // POSIX calls this from TSD destructor.
return res;
}
@@ -166,6 +165,14 @@ INTERCEPTOR_WINAPI(HANDLE, CreateThread, LPSECURITY_ATTRIBUTES security,
thr_flags, tid);
}
+INTERCEPTOR_WINAPI(void, ExitThread, DWORD dwExitCode) {
+ AsanThread *t = (AsanThread *)__asan::GetCurrentThread();
+ if (t) {
+ t->Destroy();
+ }
+ REAL(ExitThread)(dwExitCode);
+}
+
// }}}
namespace __asan {
@@ -181,6 +188,7 @@ void InitializePlatformInterceptors() {
(LPCWSTR)&InitializePlatformInterceptors, &pinned));
ASAN_INTERCEPT_FUNC(CreateThread);
+ ASAN_INTERCEPT_FUNC(ExitThread);
ASAN_INTERCEPT_FUNC(SetUnhandledExceptionFilter);
#ifdef _WIN64
More information about the llvm-commits
mailing list