]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
pthread_cond_broadcast: Fix waiters-after-spinning case [BZ #23538]
authorMartin Kuchta <martin.kuchta@netapp.com>
Mon, 27 Aug 2018 16:54:46 +0000 (18:54 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Mon, 27 Aug 2018 17:21:10 +0000 (19:21 +0200)
(cherry picked from commit 99ea93ca31795469d2a1f1570f17a5c39c2eb7e2)

ChangeLog
NEWS
nptl/pthread_cond_common.c

index 6b5cfbab5576b58b59e77ae58ad8b0c2f39be90e..7349a33b11dbe6743cc1d858732aa58963c7ebb3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2018-08-27 Martin Kuchta  <martin.kuchta@netapp.com>
+          Torvald Riegel  <triegel@redhat.com>
+
+       [BZ #23538]
+       * nptl/pthread_cond_common.c (__condvar_quiesce_and_switch_g1):
+       Update r to include the set wake-request flag if waiters are
+       remaining after spinning.
+
 2018-01-19  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
 
        [BZ #22685]
diff --git a/NEWS b/NEWS
index dafec5d82d9f31b44ba4013eab8c7fb6007c054e..abe90d1422f1148368419e68f2071f3237d60752 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -84,6 +84,7 @@ The following bugs are resolved with this release:
   [22685] powerpc: Fix syscalls during early process initialization
   [22715] x86-64: Properly align La_x86_64_retval to VEC_SIZE
   [22774] malloc: Integer overflow in malloc (CVE-2018-6551)
+  [23538] pthread_cond_broadcast: Fix waiters-after-spinning case
 \f
 Version 2.25
 
index 7c63ef9b891a6ccefdb628c832e6aaa631830aaa..886f0abcb3b539ef88407b5fb24c5873e20d6c64 100644 (file)
@@ -406,8 +406,12 @@ __condvar_quiesce_and_switch_g1 (pthread_cond_t *cond, uint64_t wseq,
        {
          /* There is still a waiter after spinning.  Set the wake-request
             flag and block.  Relaxed MO is fine because this is just about
-            this futex word.  */
-         r = atomic_fetch_or_relaxed (cond->__data.__g_refs + g1, 1);
+            this futex word.
+
+            Update r to include the set wake-request flag so that the upcoming
+            futex_wait only blocks if the flag is still set (otherwise, we'd
+            violate the basic client-side futex protocol).  */
+         r = atomic_fetch_or_relaxed (cond->__data.__g_refs + g1, 1) | 1;
 
          if ((r >> 1) > 0)
            futex_wait_simple (cond->__data.__g_refs + g1, r, private);