]> git.baikalelectronics.ru Git - kernel.git/commit
futex: Ensure get_futex_key_refs() always implies a barrier
authorCatalin Marinas <catalin.marinas@arm.com>
Fri, 17 Oct 2014 16:38:49 +0000 (17:38 +0100)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 18 Oct 2014 16:28:51 +0000 (09:28 -0700)
commit2d4bb5fa0c0cca671acdf5242e5136de0c9454ba
treeba3c00f197cdf77c9a43ec03828ed474931fc040
parent9406aa3d4137024024bfdcb93b149801d1f439a8
futex: Ensure get_futex_key_refs() always implies a barrier

Commit b2aa3cb7e91f (futexes: Avoid taking the hb->lock if there's
nothing to wake up) changes the futex code to avoid taking a lock when
there are no waiters. This code has been subsequently fixed in commit
ed7bb8891725 (futex: revert back to the explicit waiter counting code).
Both the original commit and the fix-up rely on get_futex_key_refs() to
always imply a barrier.

However, for private futexes, none of the cases in the switch statement
of get_futex_key_refs() would be hit and the function completes without
a memory barrier as required before checking the "waiters" in
futex_wake() -> hb_waiters_pending(). The consequence is a race with a
thread waiting on a futex on another CPU, allowing the waker thread to
read "waiters == 0" while the waiter thread to have read "futex_val ==
locked" (in kernel).

Without this fix, the problem (user space deadlocks) can be seen with
Android bionic's mutex implementation on an arm64 multi-cluster system.

Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Reported-by: Matteo Franchin <Matteo.Franchin@arm.com>
Fixes: b2aa3cb7e91f (futexes: Avoid taking the hb->lock if there's nothing to wake up)
Acked-by: Davidlohr Bueso <dave@stgolabs.net>
Tested-by: Mike Galbraith <umgwanakikbuti@gmail.com>
Cc: <stable@vger.kernel.org>
Cc: Darren Hart <dvhart@linux.intel.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
kernel/futex.c