blob: 0c601ae072b3fb0b787344edf44df40054187961 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Ingo Molnar6053ee32006-01-09 15:59:19 -08002/*
Peter Zijlstra67a6de42013-11-08 08:26:39 +01003 * kernel/locking/mutex.c
Ingo Molnar6053ee32006-01-09 15:59:19 -08004 *
5 * Mutexes: blocking mutual exclusion locks
6 *
7 * Started by Ingo Molnar:
8 *
9 * Copyright (C) 2004, 2005, 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
10 *
11 * Many thanks to Arjan van de Ven, Thomas Gleixner, Steven Rostedt and
12 * David Howells for suggestions and improvements.
13 *
Peter Zijlstra0d66bf62009-01-12 14:01:47 +010014 * - Adaptive spinning for mutexes by Peter Zijlstra. (Ported to mainline
15 * from the -rt tree, where it was originally implemented for rtmutexes
16 * by Steven Rostedt, based on work by Gregory Haskins, Peter Morreale
17 * and Sven Dietrich.
18 *
Davidlohr Bueso214e0ae2014-07-30 13:41:55 -070019 * Also see Documentation/locking/mutex-design.txt.
Ingo Molnar6053ee32006-01-09 15:59:19 -080020 */
21#include <linux/mutex.h>
Maarten Lankhorst1b375dc2013-07-05 09:29:32 +020022#include <linux/ww_mutex.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010023#include <linux/sched/signal.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060024#include <linux/sched/rt.h>
Ingo Molnar84f001e2017-02-01 16:36:40 +010025#include <linux/sched/wake_q.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010026#include <linux/sched/debug.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040027#include <linux/export.h>
Ingo Molnar6053ee32006-01-09 15:59:19 -080028#include <linux/spinlock.h>
29#include <linux/interrupt.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070030#include <linux/debug_locks.h>
Davidlohr Bueso7a215f82015-01-30 01:14:25 -080031#include <linux/osq_lock.h>
Ingo Molnar6053ee32006-01-09 15:59:19 -080032
Ingo Molnar6053ee32006-01-09 15:59:19 -080033#ifdef CONFIG_DEBUG_MUTEXES
34# include "mutex-debug.h"
Ingo Molnar6053ee32006-01-09 15:59:19 -080035#else
36# include "mutex.h"
Ingo Molnar6053ee32006-01-09 15:59:19 -080037#endif
38
Ingo Molnaref5d4702006-07-03 00:24:55 -070039void
40__mutex_init(struct mutex *lock, const char *name, struct lock_class_key *key)
Ingo Molnar6053ee32006-01-09 15:59:19 -080041{
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020042 atomic_long_set(&lock->owner, 0);
Ingo Molnar6053ee32006-01-09 15:59:19 -080043 spin_lock_init(&lock->wait_lock);
44 INIT_LIST_HEAD(&lock->wait_list);
Waiman Long2bd2c922013-04-17 15:23:13 -040045#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
Jason Low4d9d9512014-07-14 10:27:50 -070046 osq_lock_init(&lock->osq);
Waiman Long2bd2c922013-04-17 15:23:13 -040047#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -080048
Ingo Molnaref5d4702006-07-03 00:24:55 -070049 debug_mutex_init(lock, name, key);
Ingo Molnar6053ee32006-01-09 15:59:19 -080050}
Ingo Molnar6053ee32006-01-09 15:59:19 -080051EXPORT_SYMBOL(__mutex_init);
52
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020053/*
54 * @owner: contains: 'struct task_struct *' to the current lock owner,
55 * NULL means not owned. Since task_struct pointers are aligned at
Peter Zijlstrae2747952017-01-11 14:17:48 +010056 * at least L1_CACHE_BYTES, we have low bits to store extra state.
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020057 *
58 * Bit0 indicates a non-empty waiter list; unlock must issue a wakeup.
Peter Zijlstra9d659ae2016-08-23 14:40:16 +020059 * Bit1 indicates unlock needs to hand the lock to the top-waiter
Peter Zijlstrae2747952017-01-11 14:17:48 +010060 * Bit2 indicates handoff has been done and we're waiting for pickup.
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020061 */
62#define MUTEX_FLAG_WAITERS 0x01
Peter Zijlstra9d659ae2016-08-23 14:40:16 +020063#define MUTEX_FLAG_HANDOFF 0x02
Peter Zijlstrae2747952017-01-11 14:17:48 +010064#define MUTEX_FLAG_PICKUP 0x04
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020065
Peter Zijlstrae2747952017-01-11 14:17:48 +010066#define MUTEX_FLAGS 0x07
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020067
68static inline struct task_struct *__owner_task(unsigned long owner)
69{
70 return (struct task_struct *)(owner & ~MUTEX_FLAGS);
71}
72
73static inline unsigned long __owner_flags(unsigned long owner)
74{
75 return owner & MUTEX_FLAGS;
76}
77
78/*
Peter Zijlstrae2747952017-01-11 14:17:48 +010079 * Trylock variant that retuns the owning task on failure.
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020080 */
Peter Zijlstrae2747952017-01-11 14:17:48 +010081static inline struct task_struct *__mutex_trylock_or_owner(struct mutex *lock)
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020082{
83 unsigned long owner, curr = (unsigned long)current;
84
85 owner = atomic_long_read(&lock->owner);
86 for (;;) { /* must loop, can race against a flag */
Peter Zijlstra9d659ae2016-08-23 14:40:16 +020087 unsigned long old, flags = __owner_flags(owner);
Peter Zijlstrae2747952017-01-11 14:17:48 +010088 unsigned long task = owner & ~MUTEX_FLAGS;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020089
Peter Zijlstrae2747952017-01-11 14:17:48 +010090 if (task) {
91 if (likely(task != curr))
92 break;
Peter Zijlstra9d659ae2016-08-23 14:40:16 +020093
Peter Zijlstrae2747952017-01-11 14:17:48 +010094 if (likely(!(flags & MUTEX_FLAG_PICKUP)))
95 break;
96
97 flags &= ~MUTEX_FLAG_PICKUP;
98 } else {
99#ifdef CONFIG_DEBUG_MUTEXES
100 DEBUG_LOCKS_WARN_ON(flags & MUTEX_FLAG_PICKUP);
101#endif
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200102 }
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200103
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200104 /*
105 * We set the HANDOFF bit, we must make sure it doesn't live
106 * past the point where we acquire it. This would be possible
107 * if we (accidentally) set the bit on an unlocked mutex.
108 */
Peter Zijlstrae2747952017-01-11 14:17:48 +0100109 flags &= ~MUTEX_FLAG_HANDOFF;
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200110
111 old = atomic_long_cmpxchg_acquire(&lock->owner, owner, curr | flags);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200112 if (old == owner)
Peter Zijlstrae2747952017-01-11 14:17:48 +0100113 return NULL;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200114
115 owner = old;
116 }
Peter Zijlstrae2747952017-01-11 14:17:48 +0100117
118 return __owner_task(owner);
119}
120
121/*
122 * Actual trylock that will work on any unlocked state.
123 */
124static inline bool __mutex_trylock(struct mutex *lock)
125{
126 return !__mutex_trylock_or_owner(lock);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200127}
128
129#ifndef CONFIG_DEBUG_LOCK_ALLOC
130/*
131 * Lockdep annotations are contained to the slow paths for simplicity.
132 * There is nothing that would stop spreading the lockdep annotations outwards
133 * except more code.
134 */
135
136/*
137 * Optimistic trylock that only works in the uncontended case. Make sure to
138 * follow with a __mutex_trylock() before failing.
139 */
140static __always_inline bool __mutex_trylock_fast(struct mutex *lock)
141{
142 unsigned long curr = (unsigned long)current;
Peter Zijlstrac427f692018-04-05 11:05:35 +0200143 unsigned long zero = 0UL;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200144
Peter Zijlstrac427f692018-04-05 11:05:35 +0200145 if (atomic_long_try_cmpxchg_acquire(&lock->owner, &zero, curr))
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200146 return true;
147
148 return false;
149}
150
151static __always_inline bool __mutex_unlock_fast(struct mutex *lock)
152{
153 unsigned long curr = (unsigned long)current;
154
155 if (atomic_long_cmpxchg_release(&lock->owner, curr, 0UL) == curr)
156 return true;
157
158 return false;
159}
160#endif
161
162static inline void __mutex_set_flag(struct mutex *lock, unsigned long flag)
163{
164 atomic_long_or(flag, &lock->owner);
165}
166
167static inline void __mutex_clear_flag(struct mutex *lock, unsigned long flag)
168{
169 atomic_long_andnot(flag, &lock->owner);
170}
171
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200172static inline bool __mutex_waiter_is_first(struct mutex *lock, struct mutex_waiter *waiter)
173{
174 return list_first_entry(&lock->wait_list, struct mutex_waiter, list) == waiter;
175}
176
177/*
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200178 * Add @waiter to a given location in the lock wait_list and set the
179 * FLAG_WAITERS flag if it's the first waiter.
180 */
181static void __sched
182__mutex_add_waiter(struct mutex *lock, struct mutex_waiter *waiter,
183 struct list_head *list)
184{
185 debug_mutex_add_waiter(lock, waiter, current);
186
187 list_add_tail(&waiter->list, list);
188 if (__mutex_waiter_is_first(lock, waiter))
189 __mutex_set_flag(lock, MUTEX_FLAG_WAITERS);
190}
191
192/*
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200193 * Give up ownership to a specific task, when @task = NULL, this is equivalent
Peter Zijlstrae2747952017-01-11 14:17:48 +0100194 * to a regular unlock. Sets PICKUP on a handoff, clears HANDOF, preserves
195 * WAITERS. Provides RELEASE semantics like a regular unlock, the
196 * __mutex_trylock() provides a matching ACQUIRE semantics for the handoff.
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200197 */
198static void __mutex_handoff(struct mutex *lock, struct task_struct *task)
199{
200 unsigned long owner = atomic_long_read(&lock->owner);
201
202 for (;;) {
203 unsigned long old, new;
204
205#ifdef CONFIG_DEBUG_MUTEXES
206 DEBUG_LOCKS_WARN_ON(__owner_task(owner) != current);
Peter Zijlstrae2747952017-01-11 14:17:48 +0100207 DEBUG_LOCKS_WARN_ON(owner & MUTEX_FLAG_PICKUP);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200208#endif
209
210 new = (owner & MUTEX_FLAG_WAITERS);
211 new |= (unsigned long)task;
Peter Zijlstrae2747952017-01-11 14:17:48 +0100212 if (task)
213 new |= MUTEX_FLAG_PICKUP;
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200214
215 old = atomic_long_cmpxchg_release(&lock->owner, owner, new);
216 if (old == owner)
217 break;
218
219 owner = old;
220 }
221}
222
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200223#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar6053ee32006-01-09 15:59:19 -0800224/*
225 * We split the mutex lock/unlock logic into separate fastpath and
226 * slowpath functions, to reduce the register pressure on the fastpath.
227 * We also put the fastpath first in the kernel image, to make sure the
228 * branch is predicted by the CPU as default-untaken.
229 */
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200230static void __sched __mutex_lock_slowpath(struct mutex *lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800231
Randy Dunlapef5dc122010-09-02 15:48:16 -0700232/**
Ingo Molnar6053ee32006-01-09 15:59:19 -0800233 * mutex_lock - acquire the mutex
234 * @lock: the mutex to be acquired
235 *
236 * Lock the mutex exclusively for this task. If the mutex is not
237 * available right now, it will sleep until it can get it.
238 *
239 * The mutex must later on be released by the same task that
240 * acquired it. Recursive locking is not allowed. The task
241 * may not exit without first unlocking the mutex. Also, kernel
Sharon Dvir139b6fd2015-02-01 23:47:32 +0200242 * memory where the mutex resides must not be freed with
Ingo Molnar6053ee32006-01-09 15:59:19 -0800243 * the mutex still locked. The mutex must first be initialized
244 * (or statically defined) before it can be locked. memset()-ing
245 * the mutex to 0 is not allowed.
246 *
Mauro Carvalho Chehab7b4ff1a2017-05-11 10:17:45 -0300247 * (The CONFIG_DEBUG_MUTEXES .config option turns on debugging
248 * checks that will enforce the restrictions and will also do
249 * deadlock debugging)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800250 *
251 * This function is similar to (but not equivalent to) down().
252 */
H. Peter Anvinb09d2502009-04-01 17:21:56 -0700253void __sched mutex_lock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800254{
Ingo Molnarc544bdb2006-01-10 22:10:36 +0100255 might_sleep();
Ingo Molnar6053ee32006-01-09 15:59:19 -0800256
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200257 if (!__mutex_trylock_fast(lock))
258 __mutex_lock_slowpath(lock);
259}
Ingo Molnar6053ee32006-01-09 15:59:19 -0800260EXPORT_SYMBOL(mutex_lock);
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200261#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800262
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200263/*
264 * Wait-Die:
265 * The newer transactions are killed when:
266 * It (the new transaction) makes a request for a lock being held
267 * by an older transaction.
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200268 *
269 * Wound-Wait:
270 * The newer transactions are wounded when:
271 * An older transaction makes a request for a lock being held by
272 * the newer transaction.
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200273 */
274
275/*
276 * Associate the ww_mutex @ww with the context @ww_ctx under which we acquired
277 * it.
278 */
Peter Zijlstra427b1822016-12-23 10:36:00 +0100279static __always_inline void
280ww_mutex_lock_acquired(struct ww_mutex *ww, struct ww_acquire_ctx *ww_ctx)
Davidlohr Bueso76916512014-07-30 13:41:53 -0700281{
282#ifdef CONFIG_DEBUG_MUTEXES
283 /*
284 * If this WARN_ON triggers, you used ww_mutex_lock to acquire,
285 * but released with a normal mutex_unlock in this call.
286 *
287 * This should never happen, always use ww_mutex_unlock.
288 */
289 DEBUG_LOCKS_WARN_ON(ww->ctx);
290
291 /*
292 * Not quite done after calling ww_acquire_done() ?
293 */
294 DEBUG_LOCKS_WARN_ON(ww_ctx->done_acquire);
295
296 if (ww_ctx->contending_lock) {
297 /*
298 * After -EDEADLK you tried to
299 * acquire a different ww_mutex? Bad!
300 */
301 DEBUG_LOCKS_WARN_ON(ww_ctx->contending_lock != ww);
302
303 /*
304 * You called ww_mutex_lock after receiving -EDEADLK,
305 * but 'forgot' to unlock everything else first?
306 */
307 DEBUG_LOCKS_WARN_ON(ww_ctx->acquired > 0);
308 ww_ctx->contending_lock = NULL;
309 }
310
311 /*
312 * Naughty, using a different class will lead to undefined behavior!
313 */
314 DEBUG_LOCKS_WARN_ON(ww_ctx->ww_class != ww->ww_class);
315#endif
316 ww_ctx->acquired++;
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200317 ww->ctx = ww_ctx;
Nicolai Hähnle3822da32016-12-21 19:46:31 +0100318}
319
Davidlohr Bueso76916512014-07-30 13:41:53 -0700320/*
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200321 * Determine if context @a is 'after' context @b. IOW, @a is a younger
322 * transaction than @b and depending on algorithm either needs to wait for
323 * @b or die.
324 */
325static inline bool __sched
326__ww_ctx_stamp_after(struct ww_acquire_ctx *a, struct ww_acquire_ctx *b)
327{
328
329 return (signed long)(a->stamp - b->stamp) > 0;
330}
331
332/*
333 * Wait-Die; wake a younger waiter context (when locks held) such that it can
334 * die.
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100335 *
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200336 * Among waiters with context, only the first one can have other locks acquired
337 * already (ctx->acquired > 0), because __ww_mutex_add_waiter() and
338 * __ww_mutex_check_kill() wake any but the earliest context.
339 */
340static bool __sched
341__ww_mutex_die(struct mutex *lock, struct mutex_waiter *waiter,
342 struct ww_acquire_ctx *ww_ctx)
343{
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200344 if (!ww_ctx->is_wait_die)
345 return false;
346
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200347 if (waiter->ww_ctx->acquired > 0 &&
348 __ww_ctx_stamp_after(waiter->ww_ctx, ww_ctx)) {
349 debug_mutex_wake_waiter(lock, waiter);
350 wake_up_process(waiter->task);
351 }
352
353 return true;
354}
355
356/*
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200357 * Wound-Wait; wound a younger @hold_ctx if it holds the lock.
358 *
359 * Wound the lock holder if there are waiters with older transactions than
360 * the lock holders. Even if multiple waiters may wound the lock holder,
361 * it's sufficient that only one does.
362 */
363static bool __ww_mutex_wound(struct mutex *lock,
364 struct ww_acquire_ctx *ww_ctx,
365 struct ww_acquire_ctx *hold_ctx)
366{
367 struct task_struct *owner = __mutex_owner(lock);
368
369 lockdep_assert_held(&lock->wait_lock);
370
371 /*
372 * Possible through __ww_mutex_add_waiter() when we race with
373 * ww_mutex_set_context_fastpath(). In that case we'll get here again
374 * through __ww_mutex_check_waiters().
375 */
376 if (!hold_ctx)
377 return false;
378
379 /*
380 * Can have !owner because of __mutex_unlock_slowpath(), but if owner,
381 * it cannot go away because we'll have FLAG_WAITERS set and hold
382 * wait_lock.
383 */
384 if (!owner)
385 return false;
386
387 if (ww_ctx->acquired > 0 && __ww_ctx_stamp_after(hold_ctx, ww_ctx)) {
388 hold_ctx->wounded = 1;
389
390 /*
391 * wake_up_process() paired with set_current_state()
392 * inserts sufficient barriers to make sure @owner either sees
Thomas Hellstrome13e2362018-09-03 16:07:08 +0200393 * it's wounded in __ww_mutex_check_kill() or has a
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200394 * wakeup pending to re-read the wounded state.
395 */
396 if (owner != current)
397 wake_up_process(owner);
398
399 return true;
400 }
401
402 return false;
403}
404
405/*
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200406 * We just acquired @lock under @ww_ctx, if there are later contexts waiting
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200407 * behind us on the wait-list, check if they need to die, or wound us.
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200408 *
409 * See __ww_mutex_add_waiter() for the list-order construction; basically the
410 * list is ordered by stamp, smallest (oldest) first.
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100411 *
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200412 * This relies on never mixing wait-die/wound-wait on the same wait-list;
413 * which is currently ensured by that being a ww_class property.
414 *
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100415 * The current task must not be on the wait list.
416 */
417static void __sched
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200418__ww_mutex_check_waiters(struct mutex *lock, struct ww_acquire_ctx *ww_ctx)
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100419{
420 struct mutex_waiter *cur;
421
422 lockdep_assert_held(&lock->wait_lock);
423
424 list_for_each_entry(cur, &lock->wait_list, list) {
425 if (!cur->ww_ctx)
426 continue;
427
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200428 if (__ww_mutex_die(lock, cur, ww_ctx) ||
429 __ww_mutex_wound(lock, cur->ww_ctx, ww_ctx))
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200430 break;
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100431 }
432}
433
Davidlohr Bueso76916512014-07-30 13:41:53 -0700434/*
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200435 * After acquiring lock with fastpath, where we do not hold wait_lock, set ctx
436 * and wake up any waiters so they can recheck.
Davidlohr Bueso76916512014-07-30 13:41:53 -0700437 */
438static __always_inline void
Peter Zijlstra427b1822016-12-23 10:36:00 +0100439ww_mutex_set_context_fastpath(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Davidlohr Bueso76916512014-07-30 13:41:53 -0700440{
Davidlohr Bueso76916512014-07-30 13:41:53 -0700441 ww_mutex_lock_acquired(lock, ctx);
442
Davidlohr Bueso76916512014-07-30 13:41:53 -0700443 /*
444 * The lock->ctx update should be visible on all cores before
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200445 * the WAITERS check is done, otherwise contended waiters might be
Davidlohr Bueso76916512014-07-30 13:41:53 -0700446 * missed. The contended waiters will either see ww_ctx == NULL
447 * and keep spinning, or it will acquire wait_lock, add itself
448 * to waiter list and sleep.
449 */
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200450 smp_mb(); /* See comments above and below. */
Davidlohr Bueso76916512014-07-30 13:41:53 -0700451
452 /*
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200453 * [W] ww->ctx = ctx [W] MUTEX_FLAG_WAITERS
454 * MB MB
455 * [R] MUTEX_FLAG_WAITERS [R] ww->ctx
456 *
457 * The memory barrier above pairs with the memory barrier in
458 * __ww_mutex_add_waiter() and makes sure we either observe ww->ctx
459 * and/or !empty list.
Davidlohr Bueso76916512014-07-30 13:41:53 -0700460 */
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200461 if (likely(!(atomic_long_read(&lock->base.owner) & MUTEX_FLAG_WAITERS)))
Davidlohr Bueso76916512014-07-30 13:41:53 -0700462 return;
463
464 /*
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200465 * Uh oh, we raced in fastpath, check if any of the waiters need to
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200466 * die or wound us.
Davidlohr Bueso76916512014-07-30 13:41:53 -0700467 */
Peter Zijlstrab9c16a02017-01-17 16:06:09 +0100468 spin_lock(&lock->base.wait_lock);
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200469 __ww_mutex_check_waiters(&lock->base, ctx);
Peter Zijlstrab9c16a02017-01-17 16:06:09 +0100470 spin_unlock(&lock->base.wait_lock);
Davidlohr Bueso76916512014-07-30 13:41:53 -0700471}
472
Waiman Long41fcb9f2013-04-17 15:23:11 -0400473#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100474
475static inline
476bool ww_mutex_spin_on_owner(struct mutex *lock, struct ww_acquire_ctx *ww_ctx,
477 struct mutex_waiter *waiter)
478{
479 struct ww_mutex *ww;
480
481 ww = container_of(lock, struct ww_mutex, base);
482
483 /*
484 * If ww->ctx is set the contents are undefined, only
485 * by acquiring wait_lock there is a guarantee that
486 * they are not invalid when reading.
487 *
488 * As such, when deadlock detection needs to be
489 * performed the optimistic spinning cannot be done.
490 *
491 * Check this in every inner iteration because we may
492 * be racing against another thread's ww_mutex_lock.
493 */
494 if (ww_ctx->acquired > 0 && READ_ONCE(ww->ctx))
495 return false;
496
497 /*
498 * If we aren't on the wait list yet, cancel the spin
499 * if there are waiters. We want to avoid stealing the
500 * lock from a waiter with an earlier stamp, since the
501 * other thread may already own a lock that we also
502 * need.
503 */
504 if (!waiter && (atomic_long_read(&lock->owner) & MUTEX_FLAG_WAITERS))
505 return false;
506
507 /*
508 * Similarly, stop spinning if we are no longer the
509 * first waiter.
510 */
511 if (waiter && !__mutex_waiter_is_first(lock, waiter))
512 return false;
513
514 return true;
515}
516
Waiman Long41fcb9f2013-04-17 15:23:11 -0400517/*
Nicolai Hähnle25f13b42016-12-21 19:46:37 +0100518 * Look out! "owner" is an entirely speculative pointer access and not
519 * reliable.
520 *
521 * "noinline" so that this function shows up on perf profiles.
Waiman Long41fcb9f2013-04-17 15:23:11 -0400522 */
523static noinline
Nicolai Hähnle25f13b42016-12-21 19:46:37 +0100524bool mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner,
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100525 struct ww_acquire_ctx *ww_ctx, struct mutex_waiter *waiter)
Waiman Long41fcb9f2013-04-17 15:23:11 -0400526{
Jason Low01ac33c2015-04-08 12:39:19 -0700527 bool ret = true;
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800528
Waiman Long41fcb9f2013-04-17 15:23:11 -0400529 rcu_read_lock();
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200530 while (__mutex_owner(lock) == owner) {
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800531 /*
532 * Ensure we emit the owner->on_cpu, dereference _after_
Jason Low01ac33c2015-04-08 12:39:19 -0700533 * checking lock->owner still matches owner. If that fails,
534 * owner might point to freed memory. If it still matches,
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800535 * the rcu_read_lock() ensures the memory stays valid.
536 */
537 barrier();
538
Pan Xinhui05ffc952016-11-02 05:08:30 -0400539 /*
540 * Use vcpu_is_preempted to detect lock holder preemption issue.
541 */
542 if (!owner->on_cpu || need_resched() ||
543 vcpu_is_preempted(task_cpu(owner))) {
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800544 ret = false;
545 break;
546 }
Waiman Long41fcb9f2013-04-17 15:23:11 -0400547
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100548 if (ww_ctx && !ww_mutex_spin_on_owner(lock, ww_ctx, waiter)) {
549 ret = false;
550 break;
Nicolai Hähnle25f13b42016-12-21 19:46:37 +0100551 }
552
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200553 cpu_relax();
Waiman Long41fcb9f2013-04-17 15:23:11 -0400554 }
555 rcu_read_unlock();
556
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800557 return ret;
Waiman Long41fcb9f2013-04-17 15:23:11 -0400558}
Waiman Long2bd2c922013-04-17 15:23:13 -0400559
560/*
561 * Initial check for entering the mutex spinning loop
562 */
563static inline int mutex_can_spin_on_owner(struct mutex *lock)
564{
Peter Zijlstra1e40c2e2013-07-19 20:31:01 +0200565 struct task_struct *owner;
Waiman Long2bd2c922013-04-17 15:23:13 -0400566 int retval = 1;
567
Jason Low46af29e2014-01-28 11:13:12 -0800568 if (need_resched())
569 return 0;
570
Waiman Long2bd2c922013-04-17 15:23:13 -0400571 rcu_read_lock();
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200572 owner = __mutex_owner(lock);
Pan Xinhui05ffc952016-11-02 05:08:30 -0400573
574 /*
575 * As lock holder preemption issue, we both skip spinning if task is not
576 * on cpu or its cpu is preempted
577 */
Peter Zijlstra1e40c2e2013-07-19 20:31:01 +0200578 if (owner)
Pan Xinhui05ffc952016-11-02 05:08:30 -0400579 retval = owner->on_cpu && !vcpu_is_preempted(task_cpu(owner));
Waiman Long2bd2c922013-04-17 15:23:13 -0400580 rcu_read_unlock();
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200581
Waiman Long2bd2c922013-04-17 15:23:13 -0400582 /*
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200583 * If lock->owner is not set, the mutex has been released. Return true
584 * such that we'll trylock in the spin path, which is a faster option
585 * than the blocking slow path.
Waiman Long2bd2c922013-04-17 15:23:13 -0400586 */
587 return retval;
588}
Davidlohr Bueso76916512014-07-30 13:41:53 -0700589
590/*
Davidlohr Bueso76916512014-07-30 13:41:53 -0700591 * Optimistic spinning.
592 *
593 * We try to spin for acquisition when we find that the lock owner
594 * is currently running on a (different) CPU and while we don't
595 * need to reschedule. The rationale is that if the lock owner is
596 * running, it is likely to release the lock soon.
597 *
Davidlohr Bueso76916512014-07-30 13:41:53 -0700598 * The mutex spinners are queued up using MCS lock so that only one
599 * spinner can compete for the mutex. However, if mutex spinning isn't
600 * going to happen, there is no point in going through the lock/unlock
601 * overhead.
602 *
603 * Returns true when the lock was taken, otherwise false, indicating
604 * that we need to jump to the slowpath and sleep.
Waiman Longb341afb2016-08-26 19:35:09 -0400605 *
606 * The waiter flag is set to true if the spinner is a waiter in the wait
607 * queue. The waiter-spinner will spin on the lock directly and concurrently
608 * with the spinner at the head of the OSQ, if present, until the owner is
609 * changed to itself.
Davidlohr Bueso76916512014-07-30 13:41:53 -0700610 */
Peter Zijlstra427b1822016-12-23 10:36:00 +0100611static __always_inline bool
612mutex_optimistic_spin(struct mutex *lock, struct ww_acquire_ctx *ww_ctx,
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100613 const bool use_ww_ctx, struct mutex_waiter *waiter)
Davidlohr Bueso76916512014-07-30 13:41:53 -0700614{
Waiman Longb341afb2016-08-26 19:35:09 -0400615 if (!waiter) {
616 /*
617 * The purpose of the mutex_can_spin_on_owner() function is
618 * to eliminate the overhead of osq_lock() and osq_unlock()
619 * in case spinning isn't possible. As a waiter-spinner
620 * is not going to take OSQ lock anyway, there is no need
621 * to call mutex_can_spin_on_owner().
622 */
623 if (!mutex_can_spin_on_owner(lock))
624 goto fail;
Davidlohr Bueso76916512014-07-30 13:41:53 -0700625
Waiman Longb341afb2016-08-26 19:35:09 -0400626 /*
627 * In order to avoid a stampede of mutex spinners trying to
628 * acquire the mutex all at once, the spinners need to take a
629 * MCS (queued) lock first before spinning on the owner field.
630 */
631 if (!osq_lock(&lock->osq))
632 goto fail;
633 }
Davidlohr Bueso76916512014-07-30 13:41:53 -0700634
Waiman Longb341afb2016-08-26 19:35:09 -0400635 for (;;) {
Davidlohr Bueso76916512014-07-30 13:41:53 -0700636 struct task_struct *owner;
637
Peter Zijlstrae2747952017-01-11 14:17:48 +0100638 /* Try to acquire the mutex... */
639 owner = __mutex_trylock_or_owner(lock);
640 if (!owner)
641 break;
Davidlohr Bueso76916512014-07-30 13:41:53 -0700642
643 /*
Peter Zijlstrae2747952017-01-11 14:17:48 +0100644 * There's an owner, wait for it to either
Davidlohr Bueso76916512014-07-30 13:41:53 -0700645 * release the lock or go to sleep.
646 */
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100647 if (!mutex_spin_on_owner(lock, owner, ww_ctx, waiter))
Peter Zijlstrae2747952017-01-11 14:17:48 +0100648 goto fail_unlock;
Davidlohr Bueso76916512014-07-30 13:41:53 -0700649
650 /*
Davidlohr Bueso76916512014-07-30 13:41:53 -0700651 * The cpu_relax() call is a compiler barrier which forces
652 * everything in this loop to be re-loaded. We don't need
653 * memory barriers as we'll eventually observe the right
654 * values at the cost of a few extra spins.
655 */
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200656 cpu_relax();
Davidlohr Bueso76916512014-07-30 13:41:53 -0700657 }
658
Waiman Longb341afb2016-08-26 19:35:09 -0400659 if (!waiter)
660 osq_unlock(&lock->osq);
661
662 return true;
663
664
665fail_unlock:
666 if (!waiter)
667 osq_unlock(&lock->osq);
668
669fail:
Davidlohr Bueso76916512014-07-30 13:41:53 -0700670 /*
671 * If we fell out of the spin path because of need_resched(),
672 * reschedule now, before we try-lock the mutex. This avoids getting
673 * scheduled out right after we obtained the mutex.
674 */
Peter Zijlstra6f942a12014-09-24 10:18:46 +0200675 if (need_resched()) {
676 /*
677 * We _should_ have TASK_RUNNING here, but just in case
678 * we do not, make it so, otherwise we might get stuck.
679 */
680 __set_current_state(TASK_RUNNING);
Davidlohr Bueso76916512014-07-30 13:41:53 -0700681 schedule_preempt_disabled();
Peter Zijlstra6f942a12014-09-24 10:18:46 +0200682 }
Davidlohr Bueso76916512014-07-30 13:41:53 -0700683
684 return false;
685}
686#else
Peter Zijlstra427b1822016-12-23 10:36:00 +0100687static __always_inline bool
688mutex_optimistic_spin(struct mutex *lock, struct ww_acquire_ctx *ww_ctx,
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100689 const bool use_ww_ctx, struct mutex_waiter *waiter)
Davidlohr Bueso76916512014-07-30 13:41:53 -0700690{
691 return false;
692}
Waiman Long41fcb9f2013-04-17 15:23:11 -0400693#endif
694
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200695static noinline void __sched __mutex_unlock_slowpath(struct mutex *lock, unsigned long ip);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800696
Randy Dunlapef5dc122010-09-02 15:48:16 -0700697/**
Ingo Molnar6053ee32006-01-09 15:59:19 -0800698 * mutex_unlock - release the mutex
699 * @lock: the mutex to be released
700 *
701 * Unlock a mutex that has been locked by this task previously.
702 *
703 * This function must not be used in interrupt context. Unlocking
704 * of a not locked mutex is not allowed.
705 *
706 * This function is similar to (but not equivalent to) up().
707 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800708void __sched mutex_unlock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800709{
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200710#ifndef CONFIG_DEBUG_LOCK_ALLOC
711 if (__mutex_unlock_fast(lock))
712 return;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100713#endif
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200714 __mutex_unlock_slowpath(lock, _RET_IP_);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800715}
Ingo Molnar6053ee32006-01-09 15:59:19 -0800716EXPORT_SYMBOL(mutex_unlock);
717
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200718/**
719 * ww_mutex_unlock - release the w/w mutex
720 * @lock: the mutex to be released
721 *
722 * Unlock a mutex that has been locked by this task previously with any of the
723 * ww_mutex_lock* functions (with or without an acquire context). It is
724 * forbidden to release the locks after releasing the acquire context.
725 *
726 * This function must not be used in interrupt context. Unlocking
727 * of a unlocked mutex is not allowed.
728 */
729void __sched ww_mutex_unlock(struct ww_mutex *lock)
730{
731 /*
732 * The unlocking fastpath is the 0->1 transition from 'locked'
733 * into 'unlocked' state:
734 */
735 if (lock->ctx) {
736#ifdef CONFIG_DEBUG_MUTEXES
737 DEBUG_LOCKS_WARN_ON(!lock->ctx->acquired);
738#endif
739 if (lock->ctx->acquired > 0)
740 lock->ctx->acquired--;
741 lock->ctx = NULL;
742 }
743
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200744 mutex_unlock(&lock->base);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200745}
746EXPORT_SYMBOL(ww_mutex_unlock);
747
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200748
749static __always_inline int __sched
750__ww_mutex_kill(struct mutex *lock, struct ww_acquire_ctx *ww_ctx)
751{
752 if (ww_ctx->acquired > 0) {
753#ifdef CONFIG_DEBUG_MUTEXES
754 struct ww_mutex *ww;
755
756 ww = container_of(lock, struct ww_mutex, base);
757 DEBUG_LOCKS_WARN_ON(ww_ctx->contending_lock);
758 ww_ctx->contending_lock = ww;
759#endif
760 return -EDEADLK;
761 }
762
763 return 0;
764}
765
766
767/*
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200768 * Check the wound condition for the current lock acquire.
769 *
770 * Wound-Wait: If we're wounded, kill ourself.
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200771 *
772 * Wait-Die: If we're trying to acquire a lock already held by an older
773 * context, kill ourselves.
774 *
775 * Since __ww_mutex_add_waiter() orders the wait-list on stamp, we only have to
776 * look at waiters before us in the wait-list.
777 */
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200778static inline int __sched
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200779__ww_mutex_check_kill(struct mutex *lock, struct mutex_waiter *waiter,
780 struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200781{
782 struct ww_mutex *ww = container_of(lock, struct ww_mutex, base);
Davidlohr Bueso4d3199e2015-02-22 19:31:41 -0800783 struct ww_acquire_ctx *hold_ctx = READ_ONCE(ww->ctx);
Nicolai Hähnle200b1872016-12-21 19:46:35 +0100784 struct mutex_waiter *cur;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200785
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200786 if (ctx->acquired == 0)
787 return 0;
788
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200789 if (!ctx->is_wait_die) {
790 if (ctx->wounded)
791 return __ww_mutex_kill(lock, ctx);
792
793 return 0;
794 }
795
Nicolai Hähnle200b1872016-12-21 19:46:35 +0100796 if (hold_ctx && __ww_ctx_stamp_after(ctx, hold_ctx))
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200797 return __ww_mutex_kill(lock, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200798
Nicolai Hähnle200b1872016-12-21 19:46:35 +0100799 /*
800 * If there is a waiter in front of us that has a context, then its
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200801 * stamp is earlier than ours and we must kill ourself.
Nicolai Hähnle200b1872016-12-21 19:46:35 +0100802 */
803 cur = waiter;
804 list_for_each_entry_continue_reverse(cur, &lock->wait_list, list) {
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200805 if (!cur->ww_ctx)
806 continue;
807
808 return __ww_mutex_kill(lock, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200809 }
810
811 return 0;
812}
813
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200814/*
815 * Add @waiter to the wait-list, keep the wait-list ordered by stamp, smallest
816 * first. Such that older contexts are preferred to acquire the lock over
817 * younger contexts.
818 *
819 * Waiters without context are interspersed in FIFO order.
820 *
821 * Furthermore, for Wait-Die kill ourself immediately when possible (there are
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200822 * older contexts already waiting) to avoid unnecessary waiting and for
823 * Wound-Wait ensure we wound the owning context when it is younger.
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200824 */
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100825static inline int __sched
826__ww_mutex_add_waiter(struct mutex_waiter *waiter,
827 struct mutex *lock,
828 struct ww_acquire_ctx *ww_ctx)
829{
830 struct mutex_waiter *cur;
831 struct list_head *pos;
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200832 bool is_wait_die;
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100833
834 if (!ww_ctx) {
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200835 __mutex_add_waiter(lock, waiter, &lock->wait_list);
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100836 return 0;
837 }
838
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200839 is_wait_die = ww_ctx->is_wait_die;
840
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100841 /*
842 * Add the waiter before the first waiter with a higher stamp.
843 * Waiters without a context are skipped to avoid starving
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200844 * them. Wait-Die waiters may die here. Wound-Wait waiters
845 * never die here, but they are sorted in stamp order and
846 * may wound the lock holder.
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100847 */
848 pos = &lock->wait_list;
849 list_for_each_entry_reverse(cur, &lock->wait_list, list) {
850 if (!cur->ww_ctx)
851 continue;
852
853 if (__ww_ctx_stamp_after(ww_ctx, cur->ww_ctx)) {
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200854 /*
855 * Wait-Die: if we find an older context waiting, there
856 * is no point in queueing behind it, as we'd have to
857 * die the moment it would acquire the lock.
858 */
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200859 if (is_wait_die) {
860 int ret = __ww_mutex_kill(lock, ww_ctx);
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100861
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200862 if (ret)
863 return ret;
864 }
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100865
866 break;
867 }
868
869 pos = &cur->list;
Nicolai Hähnle200b1872016-12-21 19:46:35 +0100870
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200871 /* Wait-Die: ensure younger waiters die. */
872 __ww_mutex_die(lock, cur, ww_ctx);
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100873 }
874
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200875 __mutex_add_waiter(lock, waiter, pos);
876
877 /*
878 * Wound-Wait: if we're blocking on a mutex owned by a younger context,
879 * wound that such that we might proceed.
880 */
881 if (!is_wait_die) {
882 struct ww_mutex *ww = container_of(lock, struct ww_mutex, base);
883
884 /*
885 * See ww_mutex_set_context_fastpath(). Orders setting
886 * MUTEX_FLAG_WAITERS vs the ww->ctx load,
887 * such that either we or the fastpath will wound @ww->ctx.
888 */
889 smp_mb();
890 __ww_mutex_wound(lock, ww_ctx, ww->ctx);
891 }
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200892
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100893 return 0;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200894}
895
Ingo Molnar6053ee32006-01-09 15:59:19 -0800896/*
897 * Lock a mutex (possibly interruptible), slowpath:
898 */
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200899static __always_inline int __sched
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200900__mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200901 struct lockdep_map *nest_lock, unsigned long ip,
Tetsuo Handab0267502013-10-17 19:45:29 +0900902 struct ww_acquire_ctx *ww_ctx, const bool use_ww_ctx)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800903{
Ingo Molnar6053ee32006-01-09 15:59:19 -0800904 struct mutex_waiter waiter;
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200905 bool first = false;
Waiman Longa40ca562016-08-26 19:35:08 -0400906 struct ww_mutex *ww;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200907 int ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800908
Peter Zijlstra427b1822016-12-23 10:36:00 +0100909 might_sleep();
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +0100910
Peter Zijlstra427b1822016-12-23 10:36:00 +0100911 ww = container_of(lock, struct ww_mutex, base);
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +0100912 if (use_ww_ctx && ww_ctx) {
Chris Wilson0422e832016-05-26 21:08:17 +0100913 if (unlikely(ww_ctx == READ_ONCE(ww->ctx)))
914 return -EALREADY;
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200915
916 /*
917 * Reset the wounded flag after a kill. No other process can
918 * race and wound us here since they can't have a valid owner
919 * pointer if we don't have any locks held.
920 */
921 if (ww_ctx->acquired == 0)
922 ww_ctx->wounded = 0;
Chris Wilson0422e832016-05-26 21:08:17 +0100923 }
924
Peter Zijlstra41719b02009-01-14 15:36:26 +0100925 preempt_disable();
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700926 mutex_acquire_nest(&lock->dep_map, subclass, 0, nest_lock, ip);
Frederic Weisbeckerc0226022009-12-02 20:49:16 +0100927
Peter Zijlstrae2747952017-01-11 14:17:48 +0100928 if (__mutex_trylock(lock) ||
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100929 mutex_optimistic_spin(lock, ww_ctx, use_ww_ctx, NULL)) {
Davidlohr Bueso76916512014-07-30 13:41:53 -0700930 /* got the lock, yay! */
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200931 lock_acquired(&lock->dep_map, ip);
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +0100932 if (use_ww_ctx && ww_ctx)
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200933 ww_mutex_set_context_fastpath(ww, ww_ctx);
Davidlohr Bueso76916512014-07-30 13:41:53 -0700934 preempt_enable();
935 return 0;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100936 }
Davidlohr Bueso76916512014-07-30 13:41:53 -0700937
Peter Zijlstrab9c16a02017-01-17 16:06:09 +0100938 spin_lock(&lock->wait_lock);
Jason Low1e820c92014-06-11 11:37:21 -0700939 /*
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200940 * After waiting to acquire the wait_lock, try again.
Jason Low1e820c92014-06-11 11:37:21 -0700941 */
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100942 if (__mutex_trylock(lock)) {
943 if (use_ww_ctx && ww_ctx)
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200944 __ww_mutex_check_waiters(lock, ww_ctx);
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100945
Davidlohr Buesoec83f422013-06-28 13:13:18 -0700946 goto skip_wait;
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100947 }
Davidlohr Buesoec83f422013-06-28 13:13:18 -0700948
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700949 debug_mutex_lock_common(lock, &waiter);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800950
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100951 lock_contended(&lock->dep_map, ip);
952
953 if (!use_ww_ctx) {
954 /* add waiting tasks to the end of the waitqueue (FIFO): */
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200955 __mutex_add_waiter(lock, &waiter, &lock->wait_list);
956
Nicolai Hähnle977625a2016-12-21 19:46:39 +0100957
958#ifdef CONFIG_DEBUG_MUTEXES
959 waiter.ww_ctx = MUTEX_POISON_WW_CTX;
960#endif
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100961 } else {
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200962 /*
963 * Add in stamp order, waking up waiters that must kill
964 * themselves.
965 */
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100966 ret = __ww_mutex_add_waiter(&waiter, lock, ww_ctx);
967 if (ret)
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200968 goto err_early_kill;
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100969
970 waiter.ww_ctx = ww_ctx;
971 }
972
Davidlohr Buesod269a8b2017-01-03 13:43:13 -0800973 waiter.task = current;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800974
Davidlohr Bueso642fa442017-01-03 13:43:14 -0800975 set_current_state(state);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800976 for (;;) {
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200977 /*
978 * Once we hold wait_lock, we're serialized against
979 * mutex_unlock() handing the lock off to us, do a trylock
980 * before testing the error conditions to make sure we pick up
981 * the handoff.
982 */
Peter Zijlstrae2747952017-01-11 14:17:48 +0100983 if (__mutex_trylock(lock))
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200984 goto acquired;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800985
986 /*
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200987 * Check for signals and kill conditions while holding
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200988 * wait_lock. This ensures the lock cancellation is ordered
989 * against mutex_unlock() and wake-ups do not go missing.
Ingo Molnar6053ee32006-01-09 15:59:19 -0800990 */
Davidlohr Bueso3bb5f4a2019-01-03 15:28:44 -0800991 if (signal_pending_state(state, current)) {
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200992 ret = -EINTR;
993 goto err;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800994 }
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200995
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200996 if (use_ww_ctx && ww_ctx) {
997 ret = __ww_mutex_check_kill(lock, &waiter, ww_ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200998 if (ret)
999 goto err;
1000 }
1001
Peter Zijlstrab9c16a02017-01-17 16:06:09 +01001002 spin_unlock(&lock->wait_lock);
Thomas Gleixnerbd2f5532011-03-21 12:33:18 +01001003 schedule_preempt_disabled();
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001004
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +01001005 /*
1006 * ww_mutex needs to always recheck its position since its waiter
1007 * list is not FIFO ordered.
1008 */
1009 if ((use_ww_ctx && ww_ctx) || !first) {
1010 first = __mutex_waiter_is_first(lock, &waiter);
1011 if (first)
1012 __mutex_set_flag(lock, MUTEX_FLAG_HANDOFF);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001013 }
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +02001014
Davidlohr Bueso642fa442017-01-03 13:43:14 -08001015 set_current_state(state);
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +02001016 /*
1017 * Here we order against unlock; we must either see it change
1018 * state back to RUNNING and fall through the next schedule(),
1019 * or we must see its unlock and acquire.
1020 */
Peter Zijlstrae2747952017-01-11 14:17:48 +01001021 if (__mutex_trylock(lock) ||
Nicolai Hähnlec516df92016-12-21 19:46:38 +01001022 (first && mutex_optimistic_spin(lock, ww_ctx, use_ww_ctx, &waiter)))
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +02001023 break;
1024
Peter Zijlstrab9c16a02017-01-17 16:06:09 +01001025 spin_lock(&lock->wait_lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001026 }
Peter Zijlstrab9c16a02017-01-17 16:06:09 +01001027 spin_lock(&lock->wait_lock);
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +02001028acquired:
Davidlohr Bueso642fa442017-01-03 13:43:14 -08001029 __set_current_state(TASK_RUNNING);
Davidlohr Bueso51587bc2015-01-19 17:39:21 -08001030
Thomas Hellstrom08295b32018-06-15 10:17:38 +02001031 if (use_ww_ctx && ww_ctx) {
1032 /*
1033 * Wound-Wait; we stole the lock (!first_waiter), check the
1034 * waiters as anyone might want to wound us.
1035 */
1036 if (!ww_ctx->is_wait_die &&
1037 !__mutex_waiter_is_first(lock, &waiter))
1038 __ww_mutex_check_waiters(lock, ww_ctx);
1039 }
1040
Davidlohr Buesod269a8b2017-01-03 13:43:13 -08001041 mutex_remove_waiter(lock, &waiter, current);
Davidlohr Buesoec83f422013-06-28 13:13:18 -07001042 if (likely(list_empty(&lock->wait_list)))
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001043 __mutex_clear_flag(lock, MUTEX_FLAGS);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001044
Davidlohr Buesoec83f422013-06-28 13:13:18 -07001045 debug_mutex_free_waiter(&waiter);
1046
1047skip_wait:
1048 /* got the lock - cleanup and rejoice! */
1049 lock_acquired(&lock->dep_map, ip);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001050
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +01001051 if (use_ww_ctx && ww_ctx)
Peter Ziljstra55f036c2018-06-15 10:07:12 +02001052 ww_mutex_lock_acquired(ww, ww_ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001053
Peter Zijlstrab9c16a02017-01-17 16:06:09 +01001054 spin_unlock(&lock->wait_lock);
Peter Zijlstra41719b02009-01-14 15:36:26 +01001055 preempt_enable();
Ingo Molnar6053ee32006-01-09 15:59:19 -08001056 return 0;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001057
1058err:
Davidlohr Bueso642fa442017-01-03 13:43:14 -08001059 __set_current_state(TASK_RUNNING);
Davidlohr Buesod269a8b2017-01-03 13:43:13 -08001060 mutex_remove_waiter(lock, &waiter, current);
Peter Ziljstra55f036c2018-06-15 10:07:12 +02001061err_early_kill:
Peter Zijlstrab9c16a02017-01-17 16:06:09 +01001062 spin_unlock(&lock->wait_lock);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001063 debug_mutex_free_waiter(&waiter);
1064 mutex_release(&lock->dep_map, 1, ip);
1065 preempt_enable();
1066 return ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -08001067}
1068
Peter Zijlstra427b1822016-12-23 10:36:00 +01001069static int __sched
1070__mutex_lock(struct mutex *lock, long state, unsigned int subclass,
1071 struct lockdep_map *nest_lock, unsigned long ip)
1072{
1073 return __mutex_lock_common(lock, state, subclass, nest_lock, ip, NULL, false);
1074}
1075
1076static int __sched
1077__ww_mutex_lock(struct mutex *lock, long state, unsigned int subclass,
1078 struct lockdep_map *nest_lock, unsigned long ip,
1079 struct ww_acquire_ctx *ww_ctx)
1080{
1081 return __mutex_lock_common(lock, state, subclass, nest_lock, ip, ww_ctx, true);
1082}
1083
Ingo Molnaref5d4702006-07-03 00:24:55 -07001084#ifdef CONFIG_DEBUG_LOCK_ALLOC
1085void __sched
1086mutex_lock_nested(struct mutex *lock, unsigned int subclass)
1087{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001088 __mutex_lock(lock, TASK_UNINTERRUPTIBLE, subclass, NULL, _RET_IP_);
Ingo Molnaref5d4702006-07-03 00:24:55 -07001089}
1090
1091EXPORT_SYMBOL_GPL(mutex_lock_nested);
NeilBrownd63a5a72006-12-08 02:36:17 -08001092
Peter Zijlstrae4c70a62011-05-24 17:12:03 -07001093void __sched
1094_mutex_lock_nest_lock(struct mutex *lock, struct lockdep_map *nest)
1095{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001096 __mutex_lock(lock, TASK_UNINTERRUPTIBLE, 0, nest, _RET_IP_);
Peter Zijlstrae4c70a62011-05-24 17:12:03 -07001097}
Peter Zijlstrae4c70a62011-05-24 17:12:03 -07001098EXPORT_SYMBOL_GPL(_mutex_lock_nest_lock);
1099
NeilBrownd63a5a72006-12-08 02:36:17 -08001100int __sched
Liam R. Howlettad776532007-12-06 17:37:59 -05001101mutex_lock_killable_nested(struct mutex *lock, unsigned int subclass)
1102{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001103 return __mutex_lock(lock, TASK_KILLABLE, subclass, NULL, _RET_IP_);
Liam R. Howlettad776532007-12-06 17:37:59 -05001104}
1105EXPORT_SYMBOL_GPL(mutex_lock_killable_nested);
1106
1107int __sched
NeilBrownd63a5a72006-12-08 02:36:17 -08001108mutex_lock_interruptible_nested(struct mutex *lock, unsigned int subclass)
1109{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001110 return __mutex_lock(lock, TASK_INTERRUPTIBLE, subclass, NULL, _RET_IP_);
NeilBrownd63a5a72006-12-08 02:36:17 -08001111}
NeilBrownd63a5a72006-12-08 02:36:17 -08001112EXPORT_SYMBOL_GPL(mutex_lock_interruptible_nested);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001113
Tejun Heo1460cb62016-10-28 12:58:11 -04001114void __sched
1115mutex_lock_io_nested(struct mutex *lock, unsigned int subclass)
1116{
1117 int token;
1118
1119 might_sleep();
1120
1121 token = io_schedule_prepare();
1122 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE,
1123 subclass, NULL, _RET_IP_, NULL, 0);
1124 io_schedule_finish(token);
1125}
1126EXPORT_SYMBOL_GPL(mutex_lock_io_nested);
1127
Daniel Vetter23010022013-06-20 13:31:17 +02001128static inline int
1129ww_mutex_deadlock_injection(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
1130{
1131#ifdef CONFIG_DEBUG_WW_MUTEX_SLOWPATH
1132 unsigned tmp;
1133
1134 if (ctx->deadlock_inject_countdown-- == 0) {
1135 tmp = ctx->deadlock_inject_interval;
1136 if (tmp > UINT_MAX/4)
1137 tmp = UINT_MAX;
1138 else
1139 tmp = tmp*2 + tmp + tmp/2;
1140
1141 ctx->deadlock_inject_interval = tmp;
1142 ctx->deadlock_inject_countdown = tmp;
1143 ctx->contending_lock = lock;
1144
1145 ww_mutex_unlock(lock);
1146
1147 return -EDEADLK;
1148 }
1149#endif
1150
1151 return 0;
1152}
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001153
1154int __sched
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001155ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001156{
Daniel Vetter23010022013-06-20 13:31:17 +02001157 int ret;
1158
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001159 might_sleep();
Peter Zijlstra427b1822016-12-23 10:36:00 +01001160 ret = __ww_mutex_lock(&lock->base, TASK_UNINTERRUPTIBLE,
1161 0, ctx ? &ctx->dep_map : NULL, _RET_IP_,
1162 ctx);
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +01001163 if (!ret && ctx && ctx->acquired > 1)
Daniel Vetter23010022013-06-20 13:31:17 +02001164 return ww_mutex_deadlock_injection(lock, ctx);
1165
1166 return ret;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001167}
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001168EXPORT_SYMBOL_GPL(ww_mutex_lock);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001169
1170int __sched
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001171ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001172{
Daniel Vetter23010022013-06-20 13:31:17 +02001173 int ret;
1174
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001175 might_sleep();
Peter Zijlstra427b1822016-12-23 10:36:00 +01001176 ret = __ww_mutex_lock(&lock->base, TASK_INTERRUPTIBLE,
1177 0, ctx ? &ctx->dep_map : NULL, _RET_IP_,
1178 ctx);
Daniel Vetter23010022013-06-20 13:31:17 +02001179
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +01001180 if (!ret && ctx && ctx->acquired > 1)
Daniel Vetter23010022013-06-20 13:31:17 +02001181 return ww_mutex_deadlock_injection(lock, ctx);
1182
1183 return ret;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001184}
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001185EXPORT_SYMBOL_GPL(ww_mutex_lock_interruptible);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001186
Ingo Molnaref5d4702006-07-03 00:24:55 -07001187#endif
1188
Ingo Molnar6053ee32006-01-09 15:59:19 -08001189/*
1190 * Release the lock, slowpath:
1191 */
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001192static noinline void __sched __mutex_unlock_slowpath(struct mutex *lock, unsigned long ip)
Ingo Molnar6053ee32006-01-09 15:59:19 -08001193{
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001194 struct task_struct *next = NULL;
Waiman Long194a6b52016-11-17 11:46:38 -05001195 DEFINE_WAKE_Q(wake_q);
Peter Zijlstrab9c16a02017-01-17 16:06:09 +01001196 unsigned long owner;
Ingo Molnar6053ee32006-01-09 15:59:19 -08001197
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001198 mutex_release(&lock->dep_map, 1, ip);
1199
Ingo Molnar6053ee32006-01-09 15:59:19 -08001200 /*
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001201 * Release the lock before (potentially) taking the spinlock such that
1202 * other contenders can get on with things ASAP.
1203 *
1204 * Except when HANDOFF, in that case we must not clear the owner field,
1205 * but instead set it to the top waiter.
Ingo Molnar6053ee32006-01-09 15:59:19 -08001206 */
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001207 owner = atomic_long_read(&lock->owner);
1208 for (;;) {
1209 unsigned long old;
1210
1211#ifdef CONFIG_DEBUG_MUTEXES
1212 DEBUG_LOCKS_WARN_ON(__owner_task(owner) != current);
Peter Zijlstrae2747952017-01-11 14:17:48 +01001213 DEBUG_LOCKS_WARN_ON(owner & MUTEX_FLAG_PICKUP);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001214#endif
1215
1216 if (owner & MUTEX_FLAG_HANDOFF)
1217 break;
1218
1219 old = atomic_long_cmpxchg_release(&lock->owner, owner,
1220 __owner_flags(owner));
1221 if (old == owner) {
1222 if (owner & MUTEX_FLAG_WAITERS)
1223 break;
1224
1225 return;
1226 }
1227
1228 owner = old;
1229 }
Ingo Molnar6053ee32006-01-09 15:59:19 -08001230
Peter Zijlstrab9c16a02017-01-17 16:06:09 +01001231 spin_lock(&lock->wait_lock);
Jason Low1d8fe7d2014-01-28 11:13:14 -08001232 debug_mutex_unlock(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001233 if (!list_empty(&lock->wait_list)) {
1234 /* get the first entry from the wait-list: */
1235 struct mutex_waiter *waiter =
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001236 list_first_entry(&lock->wait_list,
1237 struct mutex_waiter, list);
1238
1239 next = waiter->task;
Ingo Molnar6053ee32006-01-09 15:59:19 -08001240
1241 debug_mutex_wake_waiter(lock, waiter);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001242 wake_q_add(&wake_q, next);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001243 }
1244
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001245 if (owner & MUTEX_FLAG_HANDOFF)
1246 __mutex_handoff(lock, next);
1247
Peter Zijlstrab9c16a02017-01-17 16:06:09 +01001248 spin_unlock(&lock->wait_lock);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +02001249
Davidlohr Bueso1329ce62016-01-24 18:23:43 -08001250 wake_up_q(&wake_q);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001251}
1252
Peter Zijlstrae4564f72007-10-11 22:11:12 +02001253#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07001254/*
Ingo Molnar6053ee32006-01-09 15:59:19 -08001255 * Here come the less common (and hence less performance-critical) APIs:
1256 * mutex_lock_interruptible() and mutex_trylock().
1257 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001258static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001259__mutex_lock_killable_slowpath(struct mutex *lock);
Liam R. Howlettad776532007-12-06 17:37:59 -05001260
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001261static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001262__mutex_lock_interruptible_slowpath(struct mutex *lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001263
Randy Dunlapef5dc122010-09-02 15:48:16 -07001264/**
Matthew Wilcox45dbac02018-03-15 04:58:12 -07001265 * mutex_lock_interruptible() - Acquire the mutex, interruptible by signals.
1266 * @lock: The mutex to be acquired.
Ingo Molnar6053ee32006-01-09 15:59:19 -08001267 *
Matthew Wilcox45dbac02018-03-15 04:58:12 -07001268 * Lock the mutex like mutex_lock(). If a signal is delivered while the
1269 * process is sleeping, this function will return without acquiring the
1270 * mutex.
Ingo Molnar6053ee32006-01-09 15:59:19 -08001271 *
Matthew Wilcox45dbac02018-03-15 04:58:12 -07001272 * Context: Process context.
1273 * Return: 0 if the lock was successfully acquired or %-EINTR if a
1274 * signal arrived.
Ingo Molnar6053ee32006-01-09 15:59:19 -08001275 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001276int __sched mutex_lock_interruptible(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -08001277{
Ingo Molnarc544bdb2006-01-10 22:10:36 +01001278 might_sleep();
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001279
1280 if (__mutex_trylock_fast(lock))
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001281 return 0;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001282
1283 return __mutex_lock_interruptible_slowpath(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001284}
1285
1286EXPORT_SYMBOL(mutex_lock_interruptible);
1287
Matthew Wilcox45dbac02018-03-15 04:58:12 -07001288/**
1289 * mutex_lock_killable() - Acquire the mutex, interruptible by fatal signals.
1290 * @lock: The mutex to be acquired.
1291 *
1292 * Lock the mutex like mutex_lock(). If a signal which will be fatal to
1293 * the current process is delivered while the process is sleeping, this
1294 * function will return without acquiring the mutex.
1295 *
1296 * Context: Process context.
1297 * Return: 0 if the lock was successfully acquired or %-EINTR if a
1298 * fatal signal arrived.
1299 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001300int __sched mutex_lock_killable(struct mutex *lock)
Liam R. Howlettad776532007-12-06 17:37:59 -05001301{
1302 might_sleep();
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001303
1304 if (__mutex_trylock_fast(lock))
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001305 return 0;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001306
1307 return __mutex_lock_killable_slowpath(lock);
Liam R. Howlettad776532007-12-06 17:37:59 -05001308}
1309EXPORT_SYMBOL(mutex_lock_killable);
1310
Matthew Wilcox45dbac02018-03-15 04:58:12 -07001311/**
1312 * mutex_lock_io() - Acquire the mutex and mark the process as waiting for I/O
1313 * @lock: The mutex to be acquired.
1314 *
1315 * Lock the mutex like mutex_lock(). While the task is waiting for this
1316 * mutex, it will be accounted as being in the IO wait state by the
1317 * scheduler.
1318 *
1319 * Context: Process context.
1320 */
Tejun Heo1460cb62016-10-28 12:58:11 -04001321void __sched mutex_lock_io(struct mutex *lock)
1322{
1323 int token;
1324
1325 token = io_schedule_prepare();
1326 mutex_lock(lock);
1327 io_schedule_finish(token);
1328}
1329EXPORT_SYMBOL_GPL(mutex_lock_io);
1330
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001331static noinline void __sched
1332__mutex_lock_slowpath(struct mutex *lock)
Peter Zijlstrae4564f72007-10-11 22:11:12 +02001333{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001334 __mutex_lock(lock, TASK_UNINTERRUPTIBLE, 0, NULL, _RET_IP_);
Peter Zijlstrae4564f72007-10-11 22:11:12 +02001335}
1336
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001337static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001338__mutex_lock_killable_slowpath(struct mutex *lock)
Liam R. Howlettad776532007-12-06 17:37:59 -05001339{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001340 return __mutex_lock(lock, TASK_KILLABLE, 0, NULL, _RET_IP_);
Liam R. Howlettad776532007-12-06 17:37:59 -05001341}
1342
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001343static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001344__mutex_lock_interruptible_slowpath(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -08001345{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001346 return __mutex_lock(lock, TASK_INTERRUPTIBLE, 0, NULL, _RET_IP_);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001347}
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001348
1349static noinline int __sched
1350__ww_mutex_lock_slowpath(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
1351{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001352 return __ww_mutex_lock(&lock->base, TASK_UNINTERRUPTIBLE, 0, NULL,
1353 _RET_IP_, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001354}
1355
1356static noinline int __sched
1357__ww_mutex_lock_interruptible_slowpath(struct ww_mutex *lock,
1358 struct ww_acquire_ctx *ctx)
1359{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001360 return __ww_mutex_lock(&lock->base, TASK_INTERRUPTIBLE, 0, NULL,
1361 _RET_IP_, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001362}
1363
Peter Zijlstrae4564f72007-10-11 22:11:12 +02001364#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -08001365
Randy Dunlapef5dc122010-09-02 15:48:16 -07001366/**
1367 * mutex_trylock - try to acquire the mutex, without waiting
Ingo Molnar6053ee32006-01-09 15:59:19 -08001368 * @lock: the mutex to be acquired
1369 *
1370 * Try to acquire the mutex atomically. Returns 1 if the mutex
1371 * has been acquired successfully, and 0 on contention.
1372 *
1373 * NOTE: this function follows the spin_trylock() convention, so
Randy Dunlapef5dc122010-09-02 15:48:16 -07001374 * it is negated from the down_trylock() return values! Be careful
Ingo Molnar6053ee32006-01-09 15:59:19 -08001375 * about this when converting semaphore users to mutexes.
1376 *
1377 * This function must not be used in interrupt context. The
1378 * mutex must be released by the same task that acquired it.
1379 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001380int __sched mutex_trylock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -08001381{
Peter Zijlstrae2747952017-01-11 14:17:48 +01001382 bool locked = __mutex_trylock(lock);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01001383
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001384 if (locked)
1385 mutex_acquire(&lock->dep_map, 0, 1, _RET_IP_);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01001386
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001387 return locked;
Ingo Molnar6053ee32006-01-09 15:59:19 -08001388}
Ingo Molnar6053ee32006-01-09 15:59:19 -08001389EXPORT_SYMBOL(mutex_trylock);
Andrew Mortona511e3f2009-04-29 15:59:58 -07001390
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001391#ifndef CONFIG_DEBUG_LOCK_ALLOC
1392int __sched
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001393ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001394{
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001395 might_sleep();
1396
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001397 if (__mutex_trylock_fast(&lock->base)) {
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +01001398 if (ctx)
1399 ww_mutex_set_context_fastpath(lock, ctx);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001400 return 0;
1401 }
1402
1403 return __ww_mutex_lock_slowpath(lock, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001404}
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001405EXPORT_SYMBOL(ww_mutex_lock);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001406
1407int __sched
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001408ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001409{
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001410 might_sleep();
1411
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001412 if (__mutex_trylock_fast(&lock->base)) {
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +01001413 if (ctx)
1414 ww_mutex_set_context_fastpath(lock, ctx);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001415 return 0;
1416 }
1417
1418 return __ww_mutex_lock_interruptible_slowpath(lock, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001419}
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001420EXPORT_SYMBOL(ww_mutex_lock_interruptible);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001421
1422#endif
1423
Andrew Mortona511e3f2009-04-29 15:59:58 -07001424/**
1425 * atomic_dec_and_mutex_lock - return holding mutex if we dec to 0
1426 * @cnt: the atomic which we are to dec
1427 * @lock: the mutex to return holding if we dec to 0
1428 *
1429 * return true and hold lock if we dec to 0, return false otherwise
1430 */
1431int atomic_dec_and_mutex_lock(atomic_t *cnt, struct mutex *lock)
1432{
1433 /* dec if we can't possibly hit 0 */
1434 if (atomic_add_unless(cnt, -1, 1))
1435 return 0;
1436 /* we might hit 0, so take the lock */
1437 mutex_lock(lock);
1438 if (!atomic_dec_and_test(cnt)) {
1439 /* when we actually did the dec, we didn't hit 0 */
1440 mutex_unlock(lock);
1441 return 0;
1442 }
1443 /* we hit 0, and we hold the lock */
1444 return 1;
1445}
1446EXPORT_SYMBOL(atomic_dec_and_mutex_lock);