about summary refs log tree commit diff
path: root/src/thread/pthread_mutex_consistent.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2014-08-16 19:52:04 -0400
committerRich Felker <dalias@aerifal.cx>2014-08-16 19:52:04 -0400
commitd338b506e39b1e2c68366b12be90704c635602ce (patch)
treea73ff388f254f21d4f6be5b9985b37ae8309679e /src/thread/pthread_mutex_consistent.c
parentfffc5cda10e0c5c910b40f7be0d4fa4e15bb3f48 (diff)
downloadmusl-d338b506e39b1e2c68366b12be90704c635602ce.tar.gz
musl-d338b506e39b1e2c68366b12be90704c635602ce.tar.xz
musl-d338b506e39b1e2c68366b12be90704c635602ce.zip
fix robust mutex unrecoverable status, and related clean-up
a robust mutex should not enter the unrecoverable status until it's
unlocked without marking it consistent. previously, flag 8 in the type
was used as an indication of unrecoverable, but only honored after
successful locking; this resulted in a race window where the
unrecoverable mutex could appear to a second thread as locked/busy
again while the first thread was in the process of observing it as
unrecoverable.

now, flag 8 is used to mean that the mutex is in the process of being
recovered, but not yet marked consistent. the flag only takes effect
in pthread_mutex_unlock, where it causes the value 0x40000000 (owner
dead flag, with old owner tid 0, an otherwise impossible state) to be
stored in the lock. subsequent lock attempts will interpret this state
as unrecoverable.
Diffstat (limited to 'src/thread/pthread_mutex_consistent.c')
-rw-r--r--src/thread/pthread_mutex_consistent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_mutex_consistent.c b/src/thread/pthread_mutex_consistent.c
index 0db976ab..96b83b52 100644
--- a/src/thread/pthread_mutex_consistent.c
+++ b/src/thread/pthread_mutex_consistent.c
@@ -5,6 +5,6 @@ int pthread_mutex_consistent(pthread_mutex_t *m)
 	if (!(m->_m_type & 8)) return EINVAL;
 	if ((m->_m_lock & 0x7fffffff) != __pthread_self()->tid)
 		return EPERM;
-	m->_m_type -= 8;
+	m->_m_type &= ~8U;
 	return 0;
 }