Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757476AbcLBAxM (ORCPT ); Thu, 1 Dec 2016 19:53:12 -0500 Received: from smtprelay0188.hostedemail.com ([216.40.44.188]:56119 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752437AbcLBAxK (ORCPT ); Thu, 1 Dec 2016 19:53:10 -0500 X-Session-Marker: 726F737465647440676F6F646D69732E6F7267 X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,rostedt@goodmis.org,:::::::::::::::::,RULES_HIT:2:41:355:379:541:599:800:960:973:988:989:1260:1277:1311:1313:1314:1345:1359:1437:1515:1516:1518:1535:1593:1594:1605:1606:1730:1747:1777:1792:2194:2199:2393:2553:2559:2562:2693:2892:2895:2915:3138:3139:3140:3141:3142:3622:3865:3866:3867:3868:3870:3871:3872:3874:4118:4250:4470:4605:5007:6119:6261:7775:7875:7903:9010:9040:10004:10848:10967:11026:11232:11473:11658:11914:12043:12050:12198:12291:12296:12438:12683:12740:12760:13161:13229:13439:14659:21080:21324:21451:30012:30045:30051:30054:30069:30070:30075:30090:30091,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0,LFtime:2,LUA_SUMMARY:none X-HE-Tag: thumb64_8fcc7ec3e5153 X-Filterd-Recvd-Size: 7066 Date: Thu, 1 Dec 2016 19:53:06 -0500 From: Steven Rostedt To: Thomas Gleixner Cc: LKML , David Daney , Peter Zijlstra , Ingo Molnar , Sebastian Siewior , Will Deacon , Mark Rutland , stable@vger.kernel.org Subject: Re: [patch 1/4] rtmutex: Prevent dequeue vs. unlock race Message-ID: <20161201195306.5474ccc8@gandalf.local.home> In-Reply-To: <20161130210030.351136722@linutronix.de> References: <20161130205431.629977871@linutronix.de> <20161130210030.351136722@linutronix.de> X-Mailer: Claws Mail 3.14.0 (GTK+ 2.24.31; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 5797 Lines: 180 On Wed, 30 Nov 2016 21:04:41 -0000 Thomas Gleixner wrote: > David reported a futex/rtmutex state corruption. It's caused by the > following problem: > > CPU0 CPU1 CPU2 > > l->owner=T1 > rt_mutex_lock(l) > lock(l->wait_lock) > l->owner = T1 | HAS_WAITERS; > enqueue(T2) > boost() > unlock(l->wait_lock) > schedule() > > rt_mutex_lock(l) > lock(l->wait_lock) > l->owner = T1 | HAS_WAITERS; > enqueue(T3) > boost() > unlock(l->wait_lock) > schedule() > signal(->T2) signal(->T3) > lock(l->wait_lock) > dequeue(T2) > deboost() > unlock(l->wait_lock) > lock(l->wait_lock) > dequeue(T3) > ===> wait list is now empty > deboost() > unlock(l->wait_lock) > lock(l->wait_lock) > fixup_rt_mutex_waiters() > if (wait_list_empty(l)) { > owner = l->owner & ~HAS_WAITERS; > l->owner = owner > ==> l->owner = T1 > } > > lock(l->wait_lock) > rt_mutex_unlock(l) fixup_rt_mutex_waiters() > if (wait_list_empty(l)) { > owner = l->owner & ~HAS_WAITERS; > cmpxchg(l->owner, T1, NULL) > ===> Success (l->owner = NULL) > l->owner = owner > ==> l->owner = T1 > } > > That means the problem is caused by fixup_rt_mutex_waiters() which does the > RMW to clear the waiters bit unconditionally when there are no waiters in > the rtmutexes rbtree. > > This can be fatal: A concurrent unlock can release the rtmutex in the > fastpath because the waiters bit is not set. If the cmpxchg() gets in the > middle of the RMW operation then the previous owner, which just unlocked > the rtmutex is set as the owner again when the write takes place after the > successfull cmpxchg(). > > The solution is rather trivial: Verify that the owner member of the rtmutex > has the waiters bit set before clearing it. This does not require a > cmpxchg() or other atomic operations because the waiters bit can only be > set and cleared with the rtmutex wait_lock held. It's also safe against the > fast path unlock attempt. The unlock attempt via cmpxchg() will either see > the bit set and take the slowpath or see the bit cleared and release it > atomically in the fastpath. > > It's remarkable that the test program provided by David triggers on ARM64 > and MIPS64 really quick, but it refuses to reproduce on x8664, while the > problem exists there as well. That refusal might explain that this got not > discovered earlier despite the bug existing from day one of the rtmutex > implementation more than 10 years ago. Because x86 is awesome! ;-) > > Thanks to David for meticulously instrumenting the code and providing the > information which allowed to decode this subtle problem. > > Fixes: 23f78d4a03c5 ("[PATCH] pi-futex: rt mutex core") > Reported-by: David Daney > Signed-off-by: Thomas Gleixner > Cc: stable@vger.kernel.org > --- > kernel/locking/rtmutex.c | 68 +++++++++++++++++++++++++++++++++++++++++++++-- > 1 file changed, 66 insertions(+), 2 deletions(-) > > --- a/kernel/locking/rtmutex.c > +++ b/kernel/locking/rtmutex.c > @@ -65,8 +65,72 @@ static inline void clear_rt_mutex_waiter > > static void fixup_rt_mutex_waiters(struct rt_mutex *lock) > { > - if (!rt_mutex_has_waiters(lock)) > - clear_rt_mutex_waiters(lock); Hmm, now that clear_rt_mutex_waiters() has only one user, but luckily it's done in the slow unlock case where the wait lock is held and its the owner doing the update. Perhaps that function should go away, and just open code it in the one use case. Because it's part of the danger that happened here, and we don't want it used outside of an unlock. Reviewed-by: Steven Rostedt -- Steve > + unsigned long owner, *p = (unsigned long *) &lock->owner; > + > + if (rt_mutex_has_waiters(lock)) > + return; > + > + /* > + * The rbtree has no waiters enqueued, now make sure that the > + * lock->owner still has the waiters bit set, otherwise the > + * following can happen: > + * > + * CPU 0 CPU 1 CPU2 > + * l->owner=T1 > + * rt_mutex_lock(l) > + * lock(l->lock) > + * l->owner = T1 | HAS_WAITERS; > + * enqueue(T2) > + * boost() > + * unlock(l->lock) > + * block() > + * > + * rt_mutex_lock(l) > + * lock(l->lock) > + * l->owner = T1 | HAS_WAITERS; > + * enqueue(T3) > + * boost() > + * unlock(l->lock) > + * block() > + * signal(->T2) signal(->T3) > + * lock(l->lock) > + * dequeue(T2) > + * deboost() > + * unlock(l->lock) > + * lock(l->lock) > + * dequeue(T3) > + * ==> wait list is empty > + * deboost() > + * unlock(l->lock) > + * lock(l->lock) > + * fixup_rt_mutex_waiters() > + * if (wait_list_empty(l) { > + * l->owner = owner > + * owner = l->owner & ~HAS_WAITERS; > + * ==> l->owner = T1 > + * } > + * lock(l->lock) > + * rt_mutex_unlock(l) fixup_rt_mutex_waiters() > + * if (wait_list_empty(l) { > + * owner = l->owner & ~HAS_WAITERS; > + * cmpxchg(l->owner, T1, NULL) > + * ===> Success (l->owner = NULL) > + * > + * l->owner = owner > + * ==> l->owner = T1 > + * } > + * > + * With the check for the waiter bit in place T3 on CPU2 will not > + * overwrite. All tasks fiddling with the waiters bit are > + * serialized by l->lock, so nothing else can modify the waiters > + * bit. If the bit is set then nothing can change l->owner either > + * so the simple RMW is safe. The cmpxchg() will simply fail if it > + * happens in the middle of the RMW because the waiters bit is > + * still set. > + */ > + owner = READ_ONCE(*p); > + if (owner & RT_MUTEX_HAS_WAITERS) > + WRITE_ONCE(*p, owner & ~RT_MUTEX_HAS_WAITERS); > } > > /* >