]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
x86: Fix fallback for wcsncmp_avx2 in strcmp-avx2.S [BZ #28896]
authorNoah Goldstein <goldstein.w.n@gmail.com>
Thu, 24 Mar 2022 20:50:33 +0000 (15:50 -0500)
committerNoah Goldstein <goldstein.w.n@gmail.com>
Fri, 25 Mar 2022 16:46:13 +0000 (11:46 -0500)
Overflow case for __wcsncmp_avx2_rtm should be __wcscmp_avx2_rtm not
__wcscmp_avx2.

commit ddf0992cf57a93200e0c782e2a94d0733a5a0b87
Author: Noah Goldstein <goldstein.w.n@gmail.com>
Date:   Sun Jan 9 16:02:21 2022 -0600

    x86: Fix __wcsncmp_avx2 in strcmp-avx2.S [BZ# 28755]

Set the wrong fallback function for `__wcsncmp_avx2_rtm`. It was set
to fallback on to `__wcscmp_avx2` instead of `__wcscmp_avx2_rtm` which
can cause spurious aborts.

This change will need to be backported.

All string/memory tests pass.
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
sysdeps/x86/tst-strncmp-rtm.c
sysdeps/x86_64/multiarch/strcmp-avx2.S

index 300bc8c2814882fbff20bc7c139d27037be9807a..a3b14e72ffe1e992b89a0535632dbd3e1dbb97f6 100644 (file)
@@ -70,6 +70,16 @@ function_overflow (void)
     return 1;
 }
 
+__attribute__ ((noinline, noclone))
+static int
+function_overflow2 (void)
+{
+  if (STRNCMP (string1, string2, SIZE_MAX >> 4) == 0)
+    return 0;
+  else
+    return 1;
+}
+
 static int
 do_test (void)
 {
@@ -77,5 +87,10 @@ do_test (void)
   if (status != EXIT_SUCCESS)
     return status;
   status = do_test_1 (TEST_NAME, LOOP, prepare, function_overflow);
+  if (status != EXIT_SUCCESS)
+    return status;
+  status = do_test_1 (TEST_NAME, LOOP, prepare, function_overflow2);
+  if (status != EXIT_SUCCESS)
+    return status;
   return status;
 }
index 52ff5ad724a78c2faf61d0758497ac5e3141c03a..86a86b68e3cb5ae6b7923defecd172d823e2bdcb 100644 (file)
@@ -122,7 +122,7 @@ ENTRY(STRCMP)
           are cases where length is large enough that it can never be a
           bound on valid memory so just use wcscmp.  */
        shrq    $56, %rcx
-       jnz     __wcscmp_avx2
+       jnz     OVERFLOW_STRCMP
 
        leaq    (, %rdx, 4), %rdx
 #  endif