Skip to content

Commit

Permalink
Take lock in pthread_cond_wait cleanup handler only when needed
Browse files Browse the repository at this point in the history
[BZ #14652]
When a thread waiting in pthread_cond_wait with a PI mutex is
cancelled after it has returned successfully from the futex syscall
but just before async cancellation is disabled, it enters its
cancellation handler with the mutex held and simply calling a
mutex_lock again will result in a deadlock.  Hence, it is necessary to
see if the thread owns the lock and try to lock it only if it doesn't.
  • Loading branch information
Siddhesh Poyarekar committed Oct 10, 2012
1 parent f96f124 commit 0e3b5d6
Show file tree
Hide file tree
Showing 9 changed files with 368 additions and 10 deletions.
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Version 2.17
14336, 14337, 14347, 14349, 14376, 14417, 14459, 14476, 14477, 14505,
14510, 14516, 14518, 14519, 14530, 14532, 14538, 14543, 14544, 14545,
14557, 14562, 14568, 14576, 14579, 14583, 14587, 14602, 14621, 14638,
14645, 14648, 14660, 14661.
14645, 14648, 14652, 14660, 14661.

* Support for STT_GNU_IFUNC symbols added for s390 and s390x.
Optimized versions of memcpy, memset, and memcmp added for System z10 and
Expand Down
18 changes: 18 additions & 0 deletions nptl/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
2012-10-10 Siddhesh Poyarekar <siddhesh@redhat.com>

[BZ #14652]
* Makefile (tests): New test case tst-cond25.
(LDFLAGS-tst-cond25): Link tst-cond25 against librt.
* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
(__condvar_tw_cleanup): Lock mutex only if we don't already
own it.
* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S
(__condvar_w_cleanup): Likewise.
* sysdeps/unix/sysv/linux/pthread-pi-defines.sym: Add TID_MASK.
* sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S
(__condvar_cleanup2): Lock mutex only if we don't already
own it.
* sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S
(__condvar_cleanup1): Likewise.
* tst-cond25.c: New test case.

2012-10-09 Roland McGrath <roland@hack.frob.com>

* sysdeps/pthread/configure: Regenerated.
Expand Down
3 changes: 2 additions & 1 deletion nptl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ tests = tst-typesizes \
tst-cond1 tst-cond2 tst-cond3 tst-cond4 tst-cond5 tst-cond6 tst-cond7 \
tst-cond8 tst-cond9 tst-cond10 tst-cond11 tst-cond12 tst-cond13 \
tst-cond14 tst-cond15 tst-cond16 tst-cond17 tst-cond18 tst-cond19 \
tst-cond20 tst-cond21 tst-cond22 tst-cond23 tst-cond24 \
tst-cond20 tst-cond21 tst-cond22 tst-cond23 tst-cond24 tst-cond25 \
tst-cond-except \
tst-robust1 tst-robust2 tst-robust3 tst-robust4 tst-robust5 \
tst-robust6 tst-robust7 tst-robust8 tst-robust9 \
Expand Down Expand Up @@ -276,6 +276,7 @@ gen-as-const-headers = pthread-errnos.sym
LDFLAGS-pthread.so = -Wl,--enable-new-dtags,-z,nodelete,-z,initfirst

LDFLAGS-tst-cond24 = -lrt
LDFLAGS-tst-cond25 = -lrt

include ../Makeconfig

Expand Down
18 changes: 16 additions & 2 deletions nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
Original file line number Diff line number Diff line change
Expand Up @@ -649,10 +649,24 @@ __condvar_tw_cleanup:
movl $0x7fffffff, %edx
ENTER_KERNEL

/* Lock the mutex only if we don't own it already. This only happens
in case of PI mutexes, if we got cancelled after a successful
return of the futex syscall and before disabling async
cancellation. */
5: movl 24+FRAME_SIZE(%esp), %eax
call __pthread_mutex_cond_lock
movl MUTEX_KIND(%eax), %ebx
andl $(ROBUST_BIT|PI_BIT), %ebx
cmpl $PI_BIT, %ebx
jne 8f

movl (%eax), %ebx
andl $TID_MASK, %ebx
cmpl %ebx, %gs:TID
je 9f

8: call __pthread_mutex_cond_lock

movl %esi, (%esp)
9: movl %esi, (%esp)
.LcallUR:
call _Unwind_Resume
hlt
Expand Down
18 changes: 16 additions & 2 deletions nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S
Original file line number Diff line number Diff line change
Expand Up @@ -566,10 +566,24 @@ __condvar_w_cleanup:
movl $0x7fffffff, %edx
ENTER_KERNEL

/* Lock the mutex only if we don't own it already. This only happens
in case of PI mutexes, if we got cancelled after a successful
return of the futex syscall and before disabling async
cancellation. */
5: movl 24+FRAME_SIZE(%esp), %eax
call __pthread_mutex_cond_lock
movl MUTEX_KIND(%eax), %ebx
andl $(ROBUST_BIT|PI_BIT), %ebx
cmpl $PI_BIT, %ebx
jne 8f

movl (%eax), %ebx
andl $TID_MASK, %ebx
cmpl %ebx, %gs:TID
je 9f

8: call __pthread_mutex_cond_lock

movl %esi, (%esp)
9: movl %esi, (%esp)
.LcallUR:
call _Unwind_Resume
hlt
Expand Down
1 change: 1 addition & 0 deletions nptl/sysdeps/unix/sysv/linux/pthread-pi-defines.sym
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ MUTEX_KIND offsetof (pthread_mutex_t, __data.__kind)
ROBUST_BIT PTHREAD_MUTEX_ROBUST_NORMAL_NP
PI_BIT PTHREAD_MUTEX_PRIO_INHERIT_NP
PS_BIT PTHREAD_MUTEX_PSHARED_BIT
TID_MASK FUTEX_TID_MASK
18 changes: 16 additions & 2 deletions nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S
Original file line number Diff line number Diff line change
Expand Up @@ -771,10 +771,24 @@ __condvar_cleanup2:
movl $SYS_futex, %eax
syscall

/* Lock the mutex only if we don't own it already. This only happens
in case of PI mutexes, if we got cancelled after a successful
return of the futex syscall and before disabling async
cancellation. */
5: movq 16(%rsp), %rdi
callq __pthread_mutex_cond_lock
movl MUTEX_KIND(%rdi), %eax
andl $(ROBUST_BIT|PI_BIT), %eax
cmpl $PI_BIT, %eax
jne 7f

movl (%rdi), %eax
andl $TID_MASK, %eax
cmpl %eax, %fs:TID
je 8f

7: callq __pthread_mutex_cond_lock

movq 24(%rsp), %rdi
8: movq 24(%rsp), %rdi
movq FRAME_SIZE(%rsp), %r15
movq FRAME_SIZE+8(%rsp), %r14
movq FRAME_SIZE+16(%rsp), %r13
Expand Down
18 changes: 16 additions & 2 deletions nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S
Original file line number Diff line number Diff line change
Expand Up @@ -495,10 +495,24 @@ __condvar_cleanup1:
movl $SYS_futex, %eax
syscall

/* Lock the mutex only if we don't own it already. This only happens
in case of PI mutexes, if we got cancelled after a successful
return of the futex syscall and before disabling async
cancellation. */
5: movq 16(%rsp), %rdi
callq __pthread_mutex_cond_lock
movl MUTEX_KIND(%rdi), %eax
andl $(ROBUST_BIT|PI_BIT), %eax
cmpl $PI_BIT, %eax
jne 7f

movl (%rdi), %eax
andl $TID_MASK, %eax
cmpl %eax, %fs:TID
je 8f

7: callq __pthread_mutex_cond_lock

movq 24(%rsp), %rdi
8: movq 24(%rsp), %rdi
.LcallUR:
call _Unwind_Resume@PLT
hlt
Expand Down
Loading

0 comments on commit 0e3b5d6

Please sign in to comment.