[compiler-rt] [compiler-rt] [sanitizer] avoid UB in allocator (PR #126977)
Florian Mayer via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 12 13:49:15 PST 2025
https://github.com/fmayer created https://github.com/llvm/llvm-project/pull/126977
None
>From b8a0b70808c852341176ff4d0f5e89cc13fd2524 Mon Sep 17 00:00:00 2001
From: Florian Mayer <fmayer at google.com>
Date: Wed, 12 Feb 2025 13:48:58 -0800
Subject: [PATCH] =?UTF-8?q?[=F0=9D=98=80=F0=9D=97=BD=F0=9D=97=BF]=20initia?=
=?UTF-8?q?l=20version?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Created using spr 1.3.4
---
.../lib/sanitizer_common/sanitizer_allocator_local_cache.h | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_allocator_local_cache.h b/compiler-rt/lib/sanitizer_common/sanitizer_allocator_local_cache.h
index e495c56f03775..b67529fdeb5ff 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_allocator_local_cache.h
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_allocator_local_cache.h
@@ -166,7 +166,10 @@ struct SizeClassAllocator32LocalCache {
DCHECK_GT(c->count, 0);
}
void *res = c->batch[--c->count];
- PREFETCH(c->batch[c->count - 1]);
+ // By not doing pointer arithmetic, we avoid the OOB if c->count = 0.
+ // We just prefetch the previous member of the PerClass struct, which
+ // doesn't do harm.
+ PREFETCH(reinterpret_cast<uptr>(c->batch) + sizeof(c->batch[0])* (c->count - 1));
stats_.Add(AllocatorStatAllocated, c->class_size);
return res;
}
More information about the llvm-commits
mailing list