08c3a6
commit 5373c90f2ea3c3fa9931a684c9b81c648dfbe8d7
08c3a6
Author: Noah Goldstein <goldstein.w.n@gmail.com>
08c3a6
Date:   Tue Feb 15 20:27:21 2022 -0600
08c3a6
08c3a6
    x86: Fix bug in strncmp-evex and strncmp-avx2 [BZ #28895]
08c3a6
    
08c3a6
    Logic can read before the start of `s1` / `s2` if both `s1` and `s2`
08c3a6
    are near the start of a page. To avoid having the result contimated by
08c3a6
    these comparisons the `strcmp` variants would mask off these
08c3a6
    comparisons. This was missing in the `strncmp` variants causing
08c3a6
    the bug. This commit adds the masking to `strncmp` so that out of
08c3a6
    range comparisons don't affect the result.
08c3a6
    
08c3a6
    test-strcmp, test-strncmp, test-wcscmp, and test-wcsncmp all pass as
08c3a6
    well a full xcheck on x86_64 linux.
08c3a6
    Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
08c3a6
    
08c3a6
    (cherry picked from commit e108c02a5e23c8c88ce66d8705d4a24bb6b9a8bf)
08c3a6
08c3a6
diff --git a/string/test-strncmp.c b/string/test-strncmp.c
08c3a6
index 97e831d88fd24316..56e23670ae7f90e4 100644
08c3a6
--- a/string/test-strncmp.c
08c3a6
+++ b/string/test-strncmp.c
08c3a6
@@ -438,13 +438,23 @@ check3 (void)
08c3a6
 static void
08c3a6
 check4 (void)
08c3a6
 {
08c3a6
-  const CHAR *s1 = L ("abc");
08c3a6
-  CHAR *s2 = STRDUP (s1);
08c3a6
+  /* To trigger bug 28895; We need 1) both s1 and s2 to be within 32 bytes of
08c3a6
+     the end of the page. 2) For there to be no mismatch/null byte before the
08c3a6
+     first page cross. 3) For length (`n`) to be large enough for one string to
08c3a6
+     cross the page. And 4) for there to be either mismatch/null bytes before
08c3a6
+     the start of the strings.  */
08c3a6
+
08c3a6
+  size_t size = 10;
08c3a6
+  size_t addr_mask = (getpagesize () - 1) ^ (sizeof (CHAR) - 1);
08c3a6
+  CHAR *s1 = (CHAR *)(buf1 + (addr_mask & 0xffa));
08c3a6
+  CHAR *s2 = (CHAR *)(buf2 + (addr_mask & 0xfed));
08c3a6
+  int exp_result;
08c3a6
 
08c3a6
+  STRCPY (s1, L ("tst-tlsmod%"));
08c3a6
+  STRCPY (s2, L ("tst-tls-manydynamic73mod"));
08c3a6
+  exp_result = SIMPLE_STRNCMP (s1, s2, size);
08c3a6
   FOR_EACH_IMPL (impl, 0)
08c3a6
-    check_result (impl, s1, s2, SIZE_MAX, 0);
08c3a6
-
08c3a6
-  free (s2);
08c3a6
+  check_result (impl, s1, s2, size, exp_result);
08c3a6
 }
08c3a6
 
08c3a6
 int
08c3a6
diff --git a/sysdeps/x86_64/multiarch/strcmp-avx2.S b/sysdeps/x86_64/multiarch/strcmp-avx2.S
08c3a6
index cdded412a70bad10..f9bdc5ccd03aa1f9 100644
08c3a6
--- a/sysdeps/x86_64/multiarch/strcmp-avx2.S
08c3a6
+++ b/sysdeps/x86_64/multiarch/strcmp-avx2.S
08c3a6
@@ -661,6 +661,7 @@ L(ret8):
08c3a6
 # ifdef USE_AS_STRNCMP
08c3a6
 	.p2align 4,, 10
08c3a6
 L(return_page_cross_end_check):
08c3a6
+	andl	%r10d, %ecx
08c3a6
 	tzcntl	%ecx, %ecx
08c3a6
 	leal	-VEC_SIZE(%rax, %rcx), %ecx
08c3a6
 	cmpl	%ecx, %edx
08c3a6
diff --git a/sysdeps/x86_64/multiarch/strcmp-evex.S b/sysdeps/x86_64/multiarch/strcmp-evex.S
08c3a6
index ed56af8ecdad48b2..0dfa62bd149c02b4 100644
08c3a6
--- a/sysdeps/x86_64/multiarch/strcmp-evex.S
08c3a6
+++ b/sysdeps/x86_64/multiarch/strcmp-evex.S
08c3a6
@@ -689,6 +689,7 @@ L(ret8):
08c3a6
 # ifdef USE_AS_STRNCMP
08c3a6
 	.p2align 4,, 10
08c3a6
 L(return_page_cross_end_check):
08c3a6
+	andl	%r10d, %ecx
08c3a6
 	tzcntl	%ecx, %ecx
08c3a6
 	leal	-VEC_SIZE(%rax, %rcx, SIZE_OF_CHAR), %ecx
08c3a6
 #  ifdef USE_AS_WCSCMP