08c3a6
commit e123f08ad5ea4691bc37430ce536988c221332d6
08c3a6
Author: Noah Goldstein <goldstein.w.n@gmail.com>
08c3a6
Date:   Thu Mar 24 15:50:33 2022 -0500
08c3a6
08c3a6
    x86: Fix fallback for wcsncmp_avx2 in strcmp-avx2.S [BZ #28896]
08c3a6
    
08c3a6
    Overflow case for __wcsncmp_avx2_rtm should be __wcscmp_avx2_rtm not
08c3a6
    __wcscmp_avx2.
08c3a6
    
08c3a6
    commit ddf0992cf57a93200e0c782e2a94d0733a5a0b87
08c3a6
    Author: Noah Goldstein <goldstein.w.n@gmail.com>
08c3a6
    Date:   Sun Jan 9 16:02:21 2022 -0600
08c3a6
    
08c3a6
        x86: Fix __wcsncmp_avx2 in strcmp-avx2.S [BZ# 28755]
08c3a6
    
08c3a6
    Set the wrong fallback function for `__wcsncmp_avx2_rtm`. It was set
08c3a6
    to fallback on to `__wcscmp_avx2` instead of `__wcscmp_avx2_rtm` which
08c3a6
    can cause spurious aborts.
08c3a6
    
08c3a6
    This change will need to be backported.
08c3a6
    
08c3a6
    All string/memory tests pass.
08c3a6
    Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
08c3a6
    
08c3a6
    (cherry picked from commit 9fef7039a7d04947bc89296ee0d187bc8d89b772)
08c3a6
08c3a6
diff --git a/sysdeps/x86/tst-strncmp-rtm.c b/sysdeps/x86/tst-strncmp-rtm.c
08c3a6
index aef9866cf2fbe774..ba6543be8ce13927 100644
08c3a6
--- a/sysdeps/x86/tst-strncmp-rtm.c
08c3a6
+++ b/sysdeps/x86/tst-strncmp-rtm.c
08c3a6
@@ -70,6 +70,16 @@ function_overflow (void)
08c3a6
     return 1;
08c3a6
 }
08c3a6
 
08c3a6
+__attribute__ ((noinline, noclone))
08c3a6
+static int
08c3a6
+function_overflow2 (void)
08c3a6
+{
08c3a6
+  if (STRNCMP (string1, string2, SIZE_MAX >> 4) == 0)
08c3a6
+    return 0;
08c3a6
+  else
08c3a6
+    return 1;
08c3a6
+}
08c3a6
+
08c3a6
 static int
08c3a6
 do_test (void)
08c3a6
 {
08c3a6
@@ -77,5 +87,10 @@ do_test (void)
08c3a6
   if (status != EXIT_SUCCESS)
08c3a6
     return status;
08c3a6
   status = do_test_1 (TEST_NAME, LOOP, prepare, function_overflow);
08c3a6
+  if (status != EXIT_SUCCESS)
08c3a6
+    return status;
08c3a6
+  status = do_test_1 (TEST_NAME, LOOP, prepare, function_overflow2);
08c3a6
+  if (status != EXIT_SUCCESS)
08c3a6
+    return status;
08c3a6
   return status;
08c3a6
 }
08c3a6
diff --git a/sysdeps/x86_64/multiarch/strcmp-avx2.S b/sysdeps/x86_64/multiarch/strcmp-avx2.S
08c3a6
index f9bdc5ccd03aa1f9..09a73942086f9c9f 100644
08c3a6
--- a/sysdeps/x86_64/multiarch/strcmp-avx2.S
08c3a6
+++ b/sysdeps/x86_64/multiarch/strcmp-avx2.S
08c3a6
@@ -122,7 +122,7 @@ ENTRY(STRCMP)
08c3a6
 	   are cases where length is large enough that it can never be a
08c3a6
 	   bound on valid memory so just use wcscmp.  */
08c3a6
 	shrq	$56, %rcx
08c3a6
-	jnz	__wcscmp_avx2
08c3a6
+	jnz	OVERFLOW_STRCMP
08c3a6
 
08c3a6
 	leaq	(, %rdx, 4), %rdx
08c3a6
 #  endif