[compiler-rt] [sanitizer] Support "bB" printf GLIBC extension (PR #128449)
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 23 18:32:22 PST 2025
https://github.com/vitalybuka updated https://github.com/llvm/llvm-project/pull/128449
>From 07226507ed4993c09723217bf8dfe2fece152cd8 Mon Sep 17 00:00:00 2001
From: Vitaly Buka <vitalybuka at google.com>
Date: Sun, 23 Feb 2025 17:20:45 -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
---
.../sanitizer_common_interceptors_format.inc | 4 ++++
.../tests/sanitizer_format_interceptor_test.cpp | 9 ++++++++-
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_format.inc b/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_format.inc
index 24e5dc0fb22f5..dd4dab07b3c69 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_format.inc
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_format.inc
@@ -67,6 +67,10 @@ static const char *maybe_parse_length_modifier(const char *p, char ll[2]) {
// Returns true if the character is an integer conversion specifier.
static bool format_is_integer_conv(char c) {
+#if SANITIZER_GLIBC
+ if (char_is_one_of(c, "bB"))
+ return true;
+#endif
return char_is_one_of(c, "diouxXn");
}
diff --git a/compiler-rt/lib/sanitizer_common/tests/sanitizer_format_interceptor_test.cpp b/compiler-rt/lib/sanitizer_common/tests/sanitizer_format_interceptor_test.cpp
index de96e573ab844..751cf866553ca 100644
--- a/compiler-rt/lib/sanitizer_common/tests/sanitizer_format_interceptor_test.cpp
+++ b/compiler-rt/lib/sanitizer_common/tests/sanitizer_format_interceptor_test.cpp
@@ -128,7 +128,6 @@ TEST(SanitizerCommonInterceptors, Scanf) {
testScanf("a%%%%b", 0);
testScanf("a%%b%%", 0);
testScanf("a%%%%%%b", 0);
- testScanf("a%%%%%b", 0);
testScanf("a%%%%%f", 1, F);
testScanf("a%%%lxb", 1, L);
testScanf("a%lf%%%lxb", 2, D, L);
@@ -204,6 +203,14 @@ TEST(SanitizerCommonInterceptors, Scanf) {
testScanfPartial("%d%n%n%d %s %s", 3, 5, I, I, I, I, test_buf_size);
testScanfPartial("%d%n%n%d %s %s", 4, 6, I, I, I, I, test_buf_size,
test_buf_size);
+
+#if defined(__GLIBC__)
+ testScanf("%b", 1, I);
+ testScanf("%zb", 1, Z);
+ testScanf("a%%%%%b", 1, I);
+#else
+ testScanf("a%%%%%b", 0);
+#endif
}
TEST(SanitizerCommonInterceptors, ScanfAllocate) {
More information about the llvm-commits
mailing list