]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
x86: Fix bug in strncmp-evex and strncmp-avx2 [BZ #28895]
authorNoah Goldstein <goldstein.w.n@gmail.com>
Wed, 16 Feb 2022 02:27:21 +0000 (20:27 -0600)
committerSunil K Pandey <skpgkp2@gmail.com>
Thu, 5 May 2022 16:36:51 +0000 (09:36 -0700)
Logic can read before the start of `s1` / `s2` if both `s1` and `s2`
are near the start of a page. To avoid having the result contimated by
these comparisons the `strcmp` variants would mask off these
comparisons. This was missing in the `strncmp` variants causing
the bug. This commit adds the masking to `strncmp` so that out of
range comparisons don't affect the result.

test-strcmp, test-strncmp, test-wcscmp, and test-wcsncmp all pass as
well a full xcheck on x86_64 linux.
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
(cherry picked from commit e108c02a5e23c8c88ce66d8705d4a24bb6b9a8bf)

string/test-strncmp.c
sysdeps/x86_64/multiarch/strcmp-avx2.S
sysdeps/x86_64/multiarch/strcmp-evex.S

index 97e831d88fd2431686937c3a6e48b841e0742f67..56e23670ae7f90e476d9d90f625a8ed2d2387584 100644 (file)
@@ -438,13 +438,23 @@ check3 (void)
 static void
 check4 (void)
 {
-  const CHAR *s1 = L ("abc");
-  CHAR *s2 = STRDUP (s1);
+  /* To trigger bug 28895; We need 1) both s1 and s2 to be within 32 bytes of
+     the end of the page. 2) For there to be no mismatch/null byte before the
+     first page cross. 3) For length (`n`) to be large enough for one string to
+     cross the page. And 4) for there to be either mismatch/null bytes before
+     the start of the strings.  */
+
+  size_t size = 10;
+  size_t addr_mask = (getpagesize () - 1) ^ (sizeof (CHAR) - 1);
+  CHAR *s1 = (CHAR *)(buf1 + (addr_mask & 0xffa));
+  CHAR *s2 = (CHAR *)(buf2 + (addr_mask & 0xfed));
+  int exp_result;
 
+  STRCPY (s1, L ("tst-tlsmod%"));
+  STRCPY (s2, L ("tst-tls-manydynamic73mod"));
+  exp_result = SIMPLE_STRNCMP (s1, s2, size);
   FOR_EACH_IMPL (impl, 0)
-    check_result (impl, s1, s2, SIZE_MAX, 0);
-
-  free (s2);
+  check_result (impl, s1, s2, size, exp_result);
 }
 
 int
index cdded412a70bad10277dd21a6f364f05bafc8a79..f9bdc5ccd03aa1f9f7ade3a6d1ee39f3daa2e468 100644 (file)
@@ -661,6 +661,7 @@ L(ret8):
 # ifdef USE_AS_STRNCMP
        .p2align 4,, 10
 L(return_page_cross_end_check):
+       andl    %r10d, %ecx
        tzcntl  %ecx, %ecx
        leal    -VEC_SIZE(%rax, %rcx), %ecx
        cmpl    %ecx, %edx
index ed56af8ecdad48b2e1baf977419c4dd0475b24d4..0dfa62bd149c02b48d1775ae88b50bdd9e947349 100644 (file)
@@ -689,6 +689,7 @@ L(ret8):
 # ifdef USE_AS_STRNCMP
        .p2align 4,, 10
 L(return_page_cross_end_check):
+       andl    %r10d, %ecx
        tzcntl  %ecx, %ecx
        leal    -VEC_SIZE(%rax, %rcx, SIZE_OF_CHAR), %ecx
 #  ifdef USE_AS_WCSCMP