Skip to content
Snippets Groups Projects
Commit 79a251c1 authored by Samuel Thibault's avatar Samuel Thibault
Browse files

debian/patches/hurd-i386/git-cond-destroy.diff: Fix tst-cond20

parent 43916f8b
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@ glibc (2.34-5) UNRELEASED; urgency=medium
dependency.
* debian/patches/hurd-i386/git-loadfail.diff: Fix elf/loadfail missing
dependency.
* debian/patches/hurd-i386/git-cond-destroy.diff: Fix tst-cond20.
 
[ Aurelien Jarno ]
* debian/debhelper.in/libc-dev.NEWS: fix a typo.
......
commit 4565083abc972bffe810e4151f8f3cb48531e526
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Mon Aug 22 22:27:24 2022 +0200
htl: Make pthread*_cond_timedwait register wref before releasing mutex
Otherwise another thread could be rightly trying to destroy the condition,
see e.g. tst-cond20.
diff --git a/sysdeps/htl/pt-cond-timedwait.c b/sysdeps/htl/pt-cond-timedwait.c
index 6f4cb41bf1..4352e54fff 100644
--- a/sysdeps/htl/pt-cond-timedwait.c
+++ b/sysdeps/htl/pt-cond-timedwait.c
@@ -142,13 +142,15 @@ __pthread_cond_timedwait_internal (pthread_cond_t *cond,
__pthread_mutex_unlock (&self->cancel_lock);
- /* Release MUTEX before blocking. */
- __pthread_mutex_unlock (mutex);
-
/* Increase the waiter reference count. Relaxed MO is sufficient because
- we only need to synchronize when decrementing the reference count. */
+ we only need to synchronize when decrementing the reference count.
+ We however need to have the mutex held to prevent concurrency with
+ a pthread_cond_destroy. */
atomic_fetch_add_relaxed (&cond->__wrefs, 2);
+ /* Release MUTEX before blocking. */
+ __pthread_mutex_unlock (mutex);
+
/* Block the thread. */
if (abstime != NULL)
err = __pthread_timedblock (self, abstime, clock_id);
diff --git a/sysdeps/mach/hurd/htl/pt-hurd-cond-timedwait.c b/sysdeps/mach/hurd/htl/pt-hurd-cond-timedwait.c
index 16f0d3b309..1677925755 100644
--- a/sysdeps/mach/hurd/htl/pt-hurd-cond-timedwait.c
+++ b/sysdeps/mach/hurd/htl/pt-hurd-cond-timedwait.c
@@ -103,6 +103,12 @@ __pthread_hurd_cond_timedwait_internal (pthread_cond_t *cond,
__pthread_spin_unlock (&cond->__lock);
__spin_unlock (&ss->lock);
+ /* Increase the waiter reference count. Relaxed MO is sufficient because
+ we only need to synchronize when decrementing the reference count.
+ We however need to have the mutex held to prevent concurrency with
+ a pthread_cond_destroy. */
+ atomic_fetch_add_relaxed (&cond->__wrefs, 2);
+
if (cancel)
{
/* Cancelled on entry. Just leave the mutex locked. */
@@ -115,10 +121,6 @@ __pthread_hurd_cond_timedwait_internal (pthread_cond_t *cond,
/* Release MUTEX before blocking. */
__pthread_mutex_unlock (mutex);
- /* Increase the waiter reference count. Relaxed MO is sufficient because
- we only need to synchronize when decrementing the reference count. */
- atomic_fetch_add_relaxed (&cond->__wrefs, 2);
-
/* Block the thread. */
if (abstime != NULL)
err = __pthread_timedblock (self, abstime, clock_id);
......@@ -58,6 +58,7 @@ hurd-i386/git-htl-pthread-self-early.diff
hurd-i386/git-ipv6.diff
hurd-i386/git-ip_mreqn.diff
hurd-i386/git-bootstrap-enable_secure.diff
hurd-i386/git-cond-destroy.diff
hurd-i386/local-enable-ldconfig.diff
hurd-i386/tg-sysvshm.diff
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment