|
|
513694 |
From 7aeaaad7fb98f1c68b77bd9dee0ad0e6e92cd0ff Mon Sep 17 00:00:00 2001
|
|
|
513694 |
From: Noah Goldstein <goldstein.w.n@gmail.com>
|
|
|
513694 |
Date: Tue, 15 Feb 2022 20:27:21 -0600
|
|
|
513694 |
Subject: [PATCH] x86: Fix bug in strncmp-evex and strncmp-avx2 [BZ #28895]
|
|
|
513694 |
|
|
|
513694 |
Logic can read before the start of `s1` / `s2` if both `s1` and `s2`
|
|
|
513694 |
are near the start of a page. To avoid having the result contimated by
|
|
|
513694 |
these comparisons the `strcmp` variants would mask off these
|
|
|
513694 |
comparisons. This was missing in the `strncmp` variants causing
|
|
|
513694 |
the bug. This commit adds the masking to `strncmp` so that out of
|
|
|
513694 |
range comparisons don't affect the result.
|
|
|
513694 |
|
|
|
513694 |
test-strcmp, test-strncmp, test-wcscmp, and test-wcsncmp all pass as
|
|
|
513694 |
well a full xcheck on x86_64 linux.
|
|
|
513694 |
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
|
|
|
513694 |
|
|
|
513694 |
(cherry picked from commit e108c02a5e23c8c88ce66d8705d4a24bb6b9a8bf)
|
|
|
513694 |
---
|
|
|
513694 |
string/test-strncmp.c | 23 +++++++++++++++++++++++
|
|
|
513694 |
sysdeps/x86_64/multiarch/strcmp-avx2.S | 1 +
|
|
|
513694 |
sysdeps/x86_64/multiarch/strcmp-evex.S | 1 +
|
|
|
513694 |
3 files changed, 25 insertions(+)
|
|
|
513694 |
|
|
|
513694 |
diff --git a/string/test-strncmp.c b/string/test-strncmp.c
|
|
|
513694 |
index 927a6daa..e61fffd9 100644
|
|
|
513694 |
--- a/string/test-strncmp.c
|
|
|
513694 |
+++ b/string/test-strncmp.c
|
|
|
513694 |
@@ -403,6 +403,28 @@ check2 (void)
|
|
|
513694 |
free (s2);
|
|
|
513694 |
}
|
|
|
513694 |
|
|
|
513694 |
+static void
|
|
|
513694 |
+check4 (void)
|
|
|
513694 |
+{
|
|
|
513694 |
+ /* To trigger bug 28895; We need 1) both s1 and s2 to be within 32 bytes of
|
|
|
513694 |
+ the end of the page. 2) For there to be no mismatch/null byte before the
|
|
|
513694 |
+ first page cross. 3) For length (`n`) to be large enough for one string to
|
|
|
513694 |
+ cross the page. And 4) for there to be either mismatch/null bytes before
|
|
|
513694 |
+ the start of the strings. */
|
|
|
513694 |
+
|
|
|
513694 |
+ size_t size = 10;
|
|
|
513694 |
+ size_t addr_mask = (getpagesize () - 1) ^ (sizeof (CHAR) - 1);
|
|
|
513694 |
+ CHAR *s1 = (CHAR *)(buf1 + (addr_mask & 0xffa));
|
|
|
513694 |
+ CHAR *s2 = (CHAR *)(buf2 + (addr_mask & 0xfed));
|
|
|
513694 |
+ int exp_result;
|
|
|
513694 |
+
|
|
|
513694 |
+ STRCPY (s1, L ("tst-tlsmod%"));
|
|
|
513694 |
+ STRCPY (s2, L ("tst-tls-manydynamic73mod"));
|
|
|
513694 |
+ exp_result = SIMPLE_STRNCMP (s1, s2, size);
|
|
|
513694 |
+ FOR_EACH_IMPL (impl, 0)
|
|
|
513694 |
+ check_result (impl, s1, s2, size, exp_result);
|
|
|
513694 |
+}
|
|
|
513694 |
+
|
|
|
513694 |
static void
|
|
|
513694 |
check3 (void)
|
|
|
513694 |
{
|
|
|
513694 |
@@ -445,6 +467,7 @@ test_main (void)
|
|
|
513694 |
check1 ();
|
|
|
513694 |
check2 ();
|
|
|
513694 |
check3 ();
|
|
|
513694 |
+ check4 ();
|
|
|
513694 |
|
|
|
513694 |
printf ("%23s", "");
|
|
|
513694 |
FOR_EACH_IMPL (impl, 0)
|
|
|
513694 |
diff --git a/sysdeps/x86_64/multiarch/strcmp-avx2.S b/sysdeps/x86_64/multiarch/strcmp-avx2.S
|
|
|
513694 |
index 04675aa4..179cc0e3 100644
|
|
|
513694 |
--- a/sysdeps/x86_64/multiarch/strcmp-avx2.S
|
|
|
513694 |
+++ b/sysdeps/x86_64/multiarch/strcmp-avx2.S
|
|
|
513694 |
@@ -661,6 +661,7 @@ L(ret8):
|
|
|
513694 |
# ifdef USE_AS_STRNCMP
|
|
|
513694 |
.p2align 4,, 10
|
|
|
513694 |
L(return_page_cross_end_check):
|
|
|
513694 |
+ andl %r10d, %ecx
|
|
|
513694 |
tzcntl %ecx, %ecx
|
|
|
513694 |
leal -VEC_SIZE(%rax, %rcx), %ecx
|
|
|
513694 |
cmpl %ecx, %edx
|
|
|
513694 |
diff --git a/sysdeps/x86_64/multiarch/strcmp-evex.S b/sysdeps/x86_64/multiarch/strcmp-evex.S
|
|
|
513694 |
index ed56af8e..0dfa62bd 100644
|
|
|
513694 |
--- a/sysdeps/x86_64/multiarch/strcmp-evex.S
|
|
|
513694 |
+++ b/sysdeps/x86_64/multiarch/strcmp-evex.S
|
|
|
513694 |
@@ -689,6 +689,7 @@ L(ret8):
|
|
|
513694 |
# ifdef USE_AS_STRNCMP
|
|
|
513694 |
.p2align 4,, 10
|
|
|
513694 |
L(return_page_cross_end_check):
|
|
|
513694 |
+ andl %r10d, %ecx
|
|
|
513694 |
tzcntl %ecx, %ecx
|
|
|
513694 |
leal -VEC_SIZE(%rax, %rcx, SIZE_OF_CHAR), %ecx
|
|
|
513694 |
# ifdef USE_AS_WCSCMP
|
|
|
513694 |
--
|
|
|
513694 |
GitLab
|
|
|
513694 |
|