blob: e581ada5faf42b7cad697a6a2a9522695f0210b1 [file] [log] [blame]
Ingo Molnar6053ee32006-01-09 15:59:19 -08001/*
2 * kernel/mutex.c
3 *
4 * Mutexes: blocking mutual exclusion locks
5 *
6 * Started by Ingo Molnar:
7 *
8 * Copyright (C) 2004, 2005, 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
9 *
10 * Many thanks to Arjan van de Ven, Thomas Gleixner, Steven Rostedt and
11 * David Howells for suggestions and improvements.
12 *
Peter Zijlstra0d66bf62009-01-12 14:01:47 +010013 * - Adaptive spinning for mutexes by Peter Zijlstra. (Ported to mainline
14 * from the -rt tree, where it was originally implemented for rtmutexes
15 * by Steven Rostedt, based on work by Gregory Haskins, Peter Morreale
16 * and Sven Dietrich.
17 *
Ingo Molnar6053ee32006-01-09 15:59:19 -080018 * Also see Documentation/mutex-design.txt.
19 */
20#include <linux/mutex.h>
21#include <linux/sched.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060022#include <linux/sched/rt.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040023#include <linux/export.h>
Ingo Molnar6053ee32006-01-09 15:59:19 -080024#include <linux/spinlock.h>
25#include <linux/interrupt.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070026#include <linux/debug_locks.h>
Ingo Molnar6053ee32006-01-09 15:59:19 -080027
28/*
29 * In the DEBUG case we are using the "NULL fastpath" for mutexes,
30 * which forces all calls into the slowpath:
31 */
32#ifdef CONFIG_DEBUG_MUTEXES
33# include "mutex-debug.h"
34# include <asm-generic/mutex-null.h>
35#else
36# include "mutex.h"
37# include <asm/mutex.h>
38#endif
39
Waiman Long0dc8c732013-04-17 15:23:12 -040040/*
Waiman Longcc189d22013-04-17 15:23:14 -040041 * A negative mutex count indicates that waiters are sleeping waiting for the
42 * mutex.
Waiman Long0dc8c732013-04-17 15:23:12 -040043 */
Waiman Long0dc8c732013-04-17 15:23:12 -040044#define MUTEX_SHOW_NO_WAITER(mutex) (atomic_read(&(mutex)->count) >= 0)
Waiman Long0dc8c732013-04-17 15:23:12 -040045
Ingo Molnaref5d4702006-07-03 00:24:55 -070046void
47__mutex_init(struct mutex *lock, const char *name, struct lock_class_key *key)
Ingo Molnar6053ee32006-01-09 15:59:19 -080048{
49 atomic_set(&lock->count, 1);
50 spin_lock_init(&lock->wait_lock);
51 INIT_LIST_HEAD(&lock->wait_list);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +010052 mutex_clear_owner(lock);
Waiman Long2bd2c922013-04-17 15:23:13 -040053#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
54 lock->spin_mlock = NULL;
55#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -080056
Ingo Molnaref5d4702006-07-03 00:24:55 -070057 debug_mutex_init(lock, name, key);
Ingo Molnar6053ee32006-01-09 15:59:19 -080058}
59
60EXPORT_SYMBOL(__mutex_init);
61
Peter Zijlstrae4564f72007-10-11 22:11:12 +020062#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar6053ee32006-01-09 15:59:19 -080063/*
64 * We split the mutex lock/unlock logic into separate fastpath and
65 * slowpath functions, to reduce the register pressure on the fastpath.
66 * We also put the fastpath first in the kernel image, to make sure the
67 * branch is predicted by the CPU as default-untaken.
68 */
Török Edwin7918baa2008-11-24 10:17:42 +020069static __used noinline void __sched
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070070__mutex_lock_slowpath(atomic_t *lock_count);
Ingo Molnar6053ee32006-01-09 15:59:19 -080071
Randy Dunlapef5dc122010-09-02 15:48:16 -070072/**
Ingo Molnar6053ee32006-01-09 15:59:19 -080073 * mutex_lock - acquire the mutex
74 * @lock: the mutex to be acquired
75 *
76 * Lock the mutex exclusively for this task. If the mutex is not
77 * available right now, it will sleep until it can get it.
78 *
79 * The mutex must later on be released by the same task that
80 * acquired it. Recursive locking is not allowed. The task
81 * may not exit without first unlocking the mutex. Also, kernel
82 * memory where the mutex resides mutex must not be freed with
83 * the mutex still locked. The mutex must first be initialized
84 * (or statically defined) before it can be locked. memset()-ing
85 * the mutex to 0 is not allowed.
86 *
87 * ( The CONFIG_DEBUG_MUTEXES .config option turns on debugging
88 * checks that will enforce the restrictions and will also do
89 * deadlock debugging. )
90 *
91 * This function is similar to (but not equivalent to) down().
92 */
H. Peter Anvinb09d2502009-04-01 17:21:56 -070093void __sched mutex_lock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -080094{
Ingo Molnarc544bdb2006-01-10 22:10:36 +010095 might_sleep();
Ingo Molnar6053ee32006-01-09 15:59:19 -080096 /*
97 * The locking fastpath is the 1->0 transition from
98 * 'unlocked' into 'locked' state.
Ingo Molnar6053ee32006-01-09 15:59:19 -080099 */
100 __mutex_fastpath_lock(&lock->count, __mutex_lock_slowpath);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100101 mutex_set_owner(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800102}
103
104EXPORT_SYMBOL(mutex_lock);
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200105#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800106
Waiman Long41fcb9f2013-04-17 15:23:11 -0400107#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
108/*
Waiman Long2bd2c922013-04-17 15:23:13 -0400109 * In order to avoid a stampede of mutex spinners from acquiring the mutex
110 * more or less simultaneously, the spinners need to acquire a MCS lock
111 * first before spinning on the owner field.
112 *
113 * We don't inline mspin_lock() so that perf can correctly account for the
114 * time spent in this lock function.
115 */
116struct mspin_node {
117 struct mspin_node *next ;
118 int locked; /* 1 if lock acquired */
119};
120#define MLOCK(mutex) ((struct mspin_node **)&((mutex)->spin_mlock))
121
122static noinline
123void mspin_lock(struct mspin_node **lock, struct mspin_node *node)
124{
125 struct mspin_node *prev;
126
127 /* Init node */
128 node->locked = 0;
129 node->next = NULL;
130
131 prev = xchg(lock, node);
132 if (likely(prev == NULL)) {
133 /* Lock acquired */
134 node->locked = 1;
135 return;
136 }
137 ACCESS_ONCE(prev->next) = node;
138 smp_wmb();
139 /* Wait until the lock holder passes the lock down */
140 while (!ACCESS_ONCE(node->locked))
141 arch_mutex_cpu_relax();
142}
143
144static void mspin_unlock(struct mspin_node **lock, struct mspin_node *node)
145{
146 struct mspin_node *next = ACCESS_ONCE(node->next);
147
148 if (likely(!next)) {
149 /*
150 * Release the lock by setting it to NULL
151 */
152 if (cmpxchg(lock, node, NULL) == node)
153 return;
154 /* Wait until the next pointer is set */
155 while (!(next = ACCESS_ONCE(node->next)))
156 arch_mutex_cpu_relax();
157 }
158 ACCESS_ONCE(next->locked) = 1;
159 smp_wmb();
160}
161
162/*
Waiman Long41fcb9f2013-04-17 15:23:11 -0400163 * Mutex spinning code migrated from kernel/sched/core.c
164 */
165
166static inline bool owner_running(struct mutex *lock, struct task_struct *owner)
167{
168 if (lock->owner != owner)
169 return false;
170
171 /*
172 * Ensure we emit the owner->on_cpu, dereference _after_ checking
173 * lock->owner still matches owner, if that fails, owner might
174 * point to free()d memory, if it still matches, the rcu_read_lock()
175 * ensures the memory stays valid.
176 */
177 barrier();
178
179 return owner->on_cpu;
180}
181
182/*
183 * Look out! "owner" is an entirely speculative pointer
184 * access and not reliable.
185 */
186static noinline
187int mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner)
188{
189 rcu_read_lock();
190 while (owner_running(lock, owner)) {
191 if (need_resched())
192 break;
193
194 arch_mutex_cpu_relax();
195 }
196 rcu_read_unlock();
197
198 /*
199 * We break out the loop above on need_resched() and when the
200 * owner changed, which is a sign for heavy contention. Return
201 * success only when lock->owner is NULL.
202 */
203 return lock->owner == NULL;
204}
Waiman Long2bd2c922013-04-17 15:23:13 -0400205
206/*
207 * Initial check for entering the mutex spinning loop
208 */
209static inline int mutex_can_spin_on_owner(struct mutex *lock)
210{
211 int retval = 1;
212
213 rcu_read_lock();
214 if (lock->owner)
215 retval = lock->owner->on_cpu;
216 rcu_read_unlock();
217 /*
218 * if lock->owner is not set, the mutex owner may have just acquired
219 * it and not set the owner yet or the mutex has been released.
220 */
221 return retval;
222}
Waiman Long41fcb9f2013-04-17 15:23:11 -0400223#endif
224
Török Edwin7918baa2008-11-24 10:17:42 +0200225static __used noinline void __sched __mutex_unlock_slowpath(atomic_t *lock_count);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800226
Randy Dunlapef5dc122010-09-02 15:48:16 -0700227/**
Ingo Molnar6053ee32006-01-09 15:59:19 -0800228 * mutex_unlock - release the mutex
229 * @lock: the mutex to be released
230 *
231 * Unlock a mutex that has been locked by this task previously.
232 *
233 * This function must not be used in interrupt context. Unlocking
234 * of a not locked mutex is not allowed.
235 *
236 * This function is similar to (but not equivalent to) up().
237 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800238void __sched mutex_unlock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800239{
240 /*
241 * The unlocking fastpath is the 0->1 transition from 'locked'
242 * into 'unlocked' state:
Ingo Molnar6053ee32006-01-09 15:59:19 -0800243 */
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100244#ifndef CONFIG_DEBUG_MUTEXES
245 /*
246 * When debugging is enabled we must not clear the owner before time,
247 * the slow path will always be taken, and that clears the owner field
248 * after verifying that it was indeed current.
249 */
250 mutex_clear_owner(lock);
251#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800252 __mutex_fastpath_unlock(&lock->count, __mutex_unlock_slowpath);
253}
254
255EXPORT_SYMBOL(mutex_unlock);
256
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200257/**
258 * ww_mutex_unlock - release the w/w mutex
259 * @lock: the mutex to be released
260 *
261 * Unlock a mutex that has been locked by this task previously with any of the
262 * ww_mutex_lock* functions (with or without an acquire context). It is
263 * forbidden to release the locks after releasing the acquire context.
264 *
265 * This function must not be used in interrupt context. Unlocking
266 * of a unlocked mutex is not allowed.
267 */
268void __sched ww_mutex_unlock(struct ww_mutex *lock)
269{
270 /*
271 * The unlocking fastpath is the 0->1 transition from 'locked'
272 * into 'unlocked' state:
273 */
274 if (lock->ctx) {
275#ifdef CONFIG_DEBUG_MUTEXES
276 DEBUG_LOCKS_WARN_ON(!lock->ctx->acquired);
277#endif
278 if (lock->ctx->acquired > 0)
279 lock->ctx->acquired--;
280 lock->ctx = NULL;
281 }
282
283#ifndef CONFIG_DEBUG_MUTEXES
284 /*
285 * When debugging is enabled we must not clear the owner before time,
286 * the slow path will always be taken, and that clears the owner field
287 * after verifying that it was indeed current.
288 */
289 mutex_clear_owner(&lock->base);
290#endif
291 __mutex_fastpath_unlock(&lock->base.count, __mutex_unlock_slowpath);
292}
293EXPORT_SYMBOL(ww_mutex_unlock);
294
295static inline int __sched
296__mutex_lock_check_stamp(struct mutex *lock, struct ww_acquire_ctx *ctx)
297{
298 struct ww_mutex *ww = container_of(lock, struct ww_mutex, base);
299 struct ww_acquire_ctx *hold_ctx = ACCESS_ONCE(ww->ctx);
300
301 if (!hold_ctx)
302 return 0;
303
304 if (unlikely(ctx == hold_ctx))
305 return -EALREADY;
306
307 if (ctx->stamp - hold_ctx->stamp <= LONG_MAX &&
308 (ctx->stamp != hold_ctx->stamp || ctx > hold_ctx)) {
309#ifdef CONFIG_DEBUG_MUTEXES
310 DEBUG_LOCKS_WARN_ON(ctx->contending_lock);
311 ctx->contending_lock = ww;
312#endif
313 return -EDEADLK;
314 }
315
316 return 0;
317}
318
319static __always_inline void ww_mutex_lock_acquired(struct ww_mutex *ww,
320 struct ww_acquire_ctx *ww_ctx)
321{
322#ifdef CONFIG_DEBUG_MUTEXES
323 /*
324 * If this WARN_ON triggers, you used ww_mutex_lock to acquire,
325 * but released with a normal mutex_unlock in this call.
326 *
327 * This should never happen, always use ww_mutex_unlock.
328 */
329 DEBUG_LOCKS_WARN_ON(ww->ctx);
330
331 /*
332 * Not quite done after calling ww_acquire_done() ?
333 */
334 DEBUG_LOCKS_WARN_ON(ww_ctx->done_acquire);
335
336 if (ww_ctx->contending_lock) {
337 /*
338 * After -EDEADLK you tried to
339 * acquire a different ww_mutex? Bad!
340 */
341 DEBUG_LOCKS_WARN_ON(ww_ctx->contending_lock != ww);
342
343 /*
344 * You called ww_mutex_lock after receiving -EDEADLK,
345 * but 'forgot' to unlock everything else first?
346 */
347 DEBUG_LOCKS_WARN_ON(ww_ctx->acquired > 0);
348 ww_ctx->contending_lock = NULL;
349 }
350
351 /*
352 * Naughty, using a different class will lead to undefined behavior!
353 */
354 DEBUG_LOCKS_WARN_ON(ww_ctx->ww_class != ww->ww_class);
355#endif
356 ww_ctx->acquired++;
357}
358
359/*
360 * after acquiring lock with fastpath or when we lost out in contested
361 * slowpath, set ctx and wake up any waiters so they can recheck.
362 *
363 * This function is never called when CONFIG_DEBUG_LOCK_ALLOC is set,
364 * as the fastpath and opportunistic spinning are disabled in that case.
365 */
366static __always_inline void
367ww_mutex_set_context_fastpath(struct ww_mutex *lock,
368 struct ww_acquire_ctx *ctx)
369{
370 unsigned long flags;
371 struct mutex_waiter *cur;
372
373 ww_mutex_lock_acquired(lock, ctx);
374
375 lock->ctx = ctx;
376
377 /*
378 * The lock->ctx update should be visible on all cores before
379 * the atomic read is done, otherwise contended waiters might be
380 * missed. The contended waiters will either see ww_ctx == NULL
381 * and keep spinning, or it will acquire wait_lock, add itself
382 * to waiter list and sleep.
383 */
384 smp_mb(); /* ^^^ */
385
386 /*
387 * Check if lock is contended, if not there is nobody to wake up
388 */
389 if (likely(atomic_read(&lock->base.count) == 0))
390 return;
391
392 /*
393 * Uh oh, we raced in fastpath, wake up everyone in this case,
394 * so they can see the new lock->ctx.
395 */
396 spin_lock_mutex(&lock->base.wait_lock, flags);
397 list_for_each_entry(cur, &lock->base.wait_list, list) {
398 debug_mutex_wake_waiter(&lock->base, cur);
399 wake_up_process(cur->task);
400 }
401 spin_unlock_mutex(&lock->base.wait_lock, flags);
402}
403
Ingo Molnar6053ee32006-01-09 15:59:19 -0800404/*
405 * Lock a mutex (possibly interruptible), slowpath:
406 */
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200407static __always_inline int __sched
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200408__mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200409 struct lockdep_map *nest_lock, unsigned long ip,
410 struct ww_acquire_ctx *ww_ctx)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800411{
412 struct task_struct *task = current;
413 struct mutex_waiter waiter;
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700414 unsigned long flags;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200415 int ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800416
Peter Zijlstra41719b02009-01-14 15:36:26 +0100417 preempt_disable();
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700418 mutex_acquire_nest(&lock->dep_map, subclass, 0, nest_lock, ip);
Frederic Weisbeckerc0226022009-12-02 20:49:16 +0100419
420#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100421 /*
422 * Optimistic spinning.
423 *
424 * We try to spin for acquisition when we find that there are no
425 * pending waiters and the lock owner is currently running on a
426 * (different) CPU.
427 *
428 * The rationale is that if the lock owner is running, it is likely to
429 * release the lock soon.
430 *
431 * Since this needs the lock owner, and this mutex implementation
432 * doesn't track the owner atomically in the lock field, we need to
433 * track it non-atomically.
434 *
435 * We can't do this for DEBUG_MUTEXES because that relies on wait_lock
436 * to serialize everything.
Waiman Long2bd2c922013-04-17 15:23:13 -0400437 *
438 * The mutex spinners are queued up using MCS lock so that only one
439 * spinner can compete for the mutex. However, if mutex spinning isn't
440 * going to happen, there is no point in going through the lock/unlock
441 * overhead.
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100442 */
Waiman Long2bd2c922013-04-17 15:23:13 -0400443 if (!mutex_can_spin_on_owner(lock))
444 goto slowpath;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100445
446 for (;;) {
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +0200447 struct task_struct *owner;
Waiman Long2bd2c922013-04-17 15:23:13 -0400448 struct mspin_node node;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100449
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200450 if (!__builtin_constant_p(ww_ctx == NULL) && ww_ctx->acquired > 0) {
451 struct ww_mutex *ww;
452
453 ww = container_of(lock, struct ww_mutex, base);
454 /*
455 * If ww->ctx is set the contents are undefined, only
456 * by acquiring wait_lock there is a guarantee that
457 * they are not invalid when reading.
458 *
459 * As such, when deadlock detection needs to be
460 * performed the optimistic spinning cannot be done.
461 */
462 if (ACCESS_ONCE(ww->ctx))
463 break;
464 }
465
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100466 /*
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100467 * If there's an owner, wait for it to either
468 * release the lock or go to sleep.
469 */
Waiman Long2bd2c922013-04-17 15:23:13 -0400470 mspin_lock(MLOCK(lock), &node);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100471 owner = ACCESS_ONCE(lock->owner);
Waiman Long2bd2c922013-04-17 15:23:13 -0400472 if (owner && !mutex_spin_on_owner(lock, owner)) {
473 mspin_unlock(MLOCK(lock), &node);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100474 break;
Waiman Long2bd2c922013-04-17 15:23:13 -0400475 }
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100476
Waiman Long0dc8c732013-04-17 15:23:12 -0400477 if ((atomic_read(&lock->count) == 1) &&
478 (atomic_cmpxchg(&lock->count, 1, 0) == 1)) {
Chris Masonac6e60e2009-01-14 17:29:31 +0100479 lock_acquired(&lock->dep_map, ip);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200480 if (!__builtin_constant_p(ww_ctx == NULL)) {
481 struct ww_mutex *ww;
482 ww = container_of(lock, struct ww_mutex, base);
483
484 ww_mutex_set_context_fastpath(ww, ww_ctx);
485 }
486
Chris Masonac6e60e2009-01-14 17:29:31 +0100487 mutex_set_owner(lock);
Waiman Long2bd2c922013-04-17 15:23:13 -0400488 mspin_unlock(MLOCK(lock), &node);
Chris Masonac6e60e2009-01-14 17:29:31 +0100489 preempt_enable();
490 return 0;
491 }
Waiman Long2bd2c922013-04-17 15:23:13 -0400492 mspin_unlock(MLOCK(lock), &node);
Chris Masonac6e60e2009-01-14 17:29:31 +0100493
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100494 /*
495 * When there's no owner, we might have preempted between the
496 * owner acquiring the lock and setting the owner field. If
497 * we're an RT task that will live-lock because we won't let
498 * the owner complete.
499 */
500 if (!owner && (need_resched() || rt_task(task)))
501 break;
502
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100503 /*
504 * The cpu_relax() call is a compiler barrier which forces
505 * everything in this loop to be re-loaded. We don't need
506 * memory barriers as we'll eventually observe the right
507 * values at the cost of a few extra spins.
508 */
Gerald Schaefer335d7af2010-11-22 15:47:36 +0100509 arch_mutex_cpu_relax();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100510 }
Waiman Long2bd2c922013-04-17 15:23:13 -0400511slowpath:
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100512#endif
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700513 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800514
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700515 debug_mutex_lock_common(lock, &waiter);
Roman Zippelc9f4f062007-05-09 02:35:16 -0700516 debug_mutex_add_waiter(lock, &waiter, task_thread_info(task));
Ingo Molnar6053ee32006-01-09 15:59:19 -0800517
518 /* add waiting tasks to the end of the waitqueue (FIFO): */
519 list_add_tail(&waiter.list, &lock->wait_list);
520 waiter.task = task;
521
Waiman Long0dc8c732013-04-17 15:23:12 -0400522 if (MUTEX_SHOW_NO_WAITER(lock) && (atomic_xchg(&lock->count, -1) == 1))
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700523 goto done;
524
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200525 lock_contended(&lock->dep_map, ip);
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700526
Ingo Molnar6053ee32006-01-09 15:59:19 -0800527 for (;;) {
528 /*
529 * Lets try to take the lock again - this is needed even if
530 * we get here for the first time (shortly after failing to
531 * acquire the lock), to make sure that we get a wakeup once
532 * it's unlocked. Later on, if we sleep, this is the
533 * operation that gives us the lock. We xchg it to -1, so
534 * that when we release the lock, we properly wake up the
535 * other waiters:
536 */
Waiman Long0dc8c732013-04-17 15:23:12 -0400537 if (MUTEX_SHOW_NO_WAITER(lock) &&
538 (atomic_xchg(&lock->count, -1) == 1))
Ingo Molnar6053ee32006-01-09 15:59:19 -0800539 break;
540
541 /*
542 * got a signal? (This code gets eliminated in the
543 * TASK_UNINTERRUPTIBLE case.)
544 */
Oleg Nesterov6ad36762008-06-08 21:20:42 +0400545 if (unlikely(signal_pending_state(state, task))) {
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200546 ret = -EINTR;
547 goto err;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800548 }
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200549
550 if (!__builtin_constant_p(ww_ctx == NULL) && ww_ctx->acquired > 0) {
551 ret = __mutex_lock_check_stamp(lock, ww_ctx);
552 if (ret)
553 goto err;
554 }
555
Ingo Molnar6053ee32006-01-09 15:59:19 -0800556 __set_task_state(task, state);
557
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300558 /* didn't get the lock, go to sleep: */
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700559 spin_unlock_mutex(&lock->wait_lock, flags);
Thomas Gleixnerbd2f5532011-03-21 12:33:18 +0100560 schedule_preempt_disabled();
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700561 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800562 }
563
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700564done:
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200565 lock_acquired(&lock->dep_map, ip);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800566 /* got the lock - rejoice! */
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100567 mutex_remove_waiter(lock, &waiter, current_thread_info());
568 mutex_set_owner(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800569
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200570 if (!__builtin_constant_p(ww_ctx == NULL)) {
571 struct ww_mutex *ww = container_of(lock,
572 struct ww_mutex,
573 base);
574 struct mutex_waiter *cur;
575
576 /*
577 * This branch gets optimized out for the common case,
578 * and is only important for ww_mutex_lock.
579 */
580
581 ww_mutex_lock_acquired(ww, ww_ctx);
582 ww->ctx = ww_ctx;
583
584 /*
585 * Give any possible sleeping processes the chance to wake up,
586 * so they can recheck if they have to back off.
587 */
588 list_for_each_entry(cur, &lock->wait_list, list) {
589 debug_mutex_wake_waiter(lock, cur);
590 wake_up_process(cur->task);
591 }
592 }
593
Ingo Molnar6053ee32006-01-09 15:59:19 -0800594 /* set it to 0 if there are no waiters left: */
595 if (likely(list_empty(&lock->wait_list)))
596 atomic_set(&lock->count, 0);
597
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700598 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800599
600 debug_mutex_free_waiter(&waiter);
Peter Zijlstra41719b02009-01-14 15:36:26 +0100601 preempt_enable();
Ingo Molnar6053ee32006-01-09 15:59:19 -0800602
Ingo Molnar6053ee32006-01-09 15:59:19 -0800603 return 0;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200604
605err:
606 mutex_remove_waiter(lock, &waiter, task_thread_info(task));
607 spin_unlock_mutex(&lock->wait_lock, flags);
608 debug_mutex_free_waiter(&waiter);
609 mutex_release(&lock->dep_map, 1, ip);
610 preempt_enable();
611 return ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800612}
613
Ingo Molnaref5d4702006-07-03 00:24:55 -0700614#ifdef CONFIG_DEBUG_LOCK_ALLOC
615void __sched
616mutex_lock_nested(struct mutex *lock, unsigned int subclass)
617{
618 might_sleep();
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200619 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE,
620 subclass, NULL, _RET_IP_, NULL);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700621}
622
623EXPORT_SYMBOL_GPL(mutex_lock_nested);
NeilBrownd63a5a72006-12-08 02:36:17 -0800624
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700625void __sched
626_mutex_lock_nest_lock(struct mutex *lock, struct lockdep_map *nest)
627{
628 might_sleep();
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200629 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE,
630 0, nest, _RET_IP_, NULL);
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700631}
632
633EXPORT_SYMBOL_GPL(_mutex_lock_nest_lock);
634
NeilBrownd63a5a72006-12-08 02:36:17 -0800635int __sched
Liam R. Howlettad776532007-12-06 17:37:59 -0500636mutex_lock_killable_nested(struct mutex *lock, unsigned int subclass)
637{
638 might_sleep();
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200639 return __mutex_lock_common(lock, TASK_KILLABLE,
640 subclass, NULL, _RET_IP_, NULL);
Liam R. Howlettad776532007-12-06 17:37:59 -0500641}
642EXPORT_SYMBOL_GPL(mutex_lock_killable_nested);
643
644int __sched
NeilBrownd63a5a72006-12-08 02:36:17 -0800645mutex_lock_interruptible_nested(struct mutex *lock, unsigned int subclass)
646{
647 might_sleep();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100648 return __mutex_lock_common(lock, TASK_INTERRUPTIBLE,
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200649 subclass, NULL, _RET_IP_, NULL);
NeilBrownd63a5a72006-12-08 02:36:17 -0800650}
651
652EXPORT_SYMBOL_GPL(mutex_lock_interruptible_nested);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200653
Daniel Vetter23010022013-06-20 13:31:17 +0200654static inline int
655ww_mutex_deadlock_injection(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
656{
657#ifdef CONFIG_DEBUG_WW_MUTEX_SLOWPATH
658 unsigned tmp;
659
660 if (ctx->deadlock_inject_countdown-- == 0) {
661 tmp = ctx->deadlock_inject_interval;
662 if (tmp > UINT_MAX/4)
663 tmp = UINT_MAX;
664 else
665 tmp = tmp*2 + tmp + tmp/2;
666
667 ctx->deadlock_inject_interval = tmp;
668 ctx->deadlock_inject_countdown = tmp;
669 ctx->contending_lock = lock;
670
671 ww_mutex_unlock(lock);
672
673 return -EDEADLK;
674 }
675#endif
676
677 return 0;
678}
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200679
680int __sched
681__ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
682{
Daniel Vetter23010022013-06-20 13:31:17 +0200683 int ret;
684
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200685 might_sleep();
Daniel Vetter23010022013-06-20 13:31:17 +0200686 ret = __mutex_lock_common(&lock->base, TASK_UNINTERRUPTIBLE,
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200687 0, &ctx->dep_map, _RET_IP_, ctx);
Daniel Vetter23010022013-06-20 13:31:17 +0200688 if (!ret && ctx->acquired > 0)
689 return ww_mutex_deadlock_injection(lock, ctx);
690
691 return ret;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200692}
693EXPORT_SYMBOL_GPL(__ww_mutex_lock);
694
695int __sched
696__ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
697{
Daniel Vetter23010022013-06-20 13:31:17 +0200698 int ret;
699
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200700 might_sleep();
Daniel Vetter23010022013-06-20 13:31:17 +0200701 ret = __mutex_lock_common(&lock->base, TASK_INTERRUPTIBLE,
702 0, &ctx->dep_map, _RET_IP_, ctx);
703
704 if (!ret && ctx->acquired > 0)
705 return ww_mutex_deadlock_injection(lock, ctx);
706
707 return ret;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200708}
709EXPORT_SYMBOL_GPL(__ww_mutex_lock_interruptible);
710
Ingo Molnaref5d4702006-07-03 00:24:55 -0700711#endif
712
Ingo Molnar6053ee32006-01-09 15:59:19 -0800713/*
714 * Release the lock, slowpath:
715 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800716static inline void
Ingo Molnaref5d4702006-07-03 00:24:55 -0700717__mutex_unlock_common_slowpath(atomic_t *lock_count, int nested)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800718{
Ingo Molnar02706642006-01-10 23:15:02 +0100719 struct mutex *lock = container_of(lock_count, struct mutex, count);
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700720 unsigned long flags;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800721
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700722 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700723 mutex_release(&lock->dep_map, nested, _RET_IP_);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700724 debug_mutex_unlock(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800725
726 /*
727 * some architectures leave the lock unlocked in the fastpath failure
728 * case, others need to leave it locked. In the later case we have to
729 * unlock it here
730 */
731 if (__mutex_slowpath_needs_to_unlock())
732 atomic_set(&lock->count, 1);
733
Ingo Molnar6053ee32006-01-09 15:59:19 -0800734 if (!list_empty(&lock->wait_list)) {
735 /* get the first entry from the wait-list: */
736 struct mutex_waiter *waiter =
737 list_entry(lock->wait_list.next,
738 struct mutex_waiter, list);
739
740 debug_mutex_wake_waiter(lock, waiter);
741
742 wake_up_process(waiter->task);
743 }
744
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700745 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800746}
747
748/*
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700749 * Release the lock, slowpath:
750 */
Török Edwin7918baa2008-11-24 10:17:42 +0200751static __used noinline void
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700752__mutex_unlock_slowpath(atomic_t *lock_count)
753{
Ingo Molnaref5d4702006-07-03 00:24:55 -0700754 __mutex_unlock_common_slowpath(lock_count, 1);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700755}
756
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200757#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700758/*
Ingo Molnar6053ee32006-01-09 15:59:19 -0800759 * Here come the less common (and hence less performance-critical) APIs:
760 * mutex_lock_interruptible() and mutex_trylock().
761 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800762static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200763__mutex_lock_killable_slowpath(struct mutex *lock);
Liam R. Howlettad776532007-12-06 17:37:59 -0500764
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800765static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200766__mutex_lock_interruptible_slowpath(struct mutex *lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800767
Randy Dunlapef5dc122010-09-02 15:48:16 -0700768/**
769 * mutex_lock_interruptible - acquire the mutex, interruptible
Ingo Molnar6053ee32006-01-09 15:59:19 -0800770 * @lock: the mutex to be acquired
771 *
772 * Lock the mutex like mutex_lock(), and return 0 if the mutex has
773 * been acquired or sleep until the mutex becomes available. If a
774 * signal arrives while waiting for the lock then this function
775 * returns -EINTR.
776 *
777 * This function is similar to (but not equivalent to) down_interruptible().
778 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800779int __sched mutex_lock_interruptible(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800780{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100781 int ret;
782
Ingo Molnarc544bdb2006-01-10 22:10:36 +0100783 might_sleep();
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200784 ret = __mutex_fastpath_lock_retval(&lock->count);
785 if (likely(!ret)) {
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100786 mutex_set_owner(lock);
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200787 return 0;
788 } else
789 return __mutex_lock_interruptible_slowpath(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800790}
791
792EXPORT_SYMBOL(mutex_lock_interruptible);
793
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800794int __sched mutex_lock_killable(struct mutex *lock)
Liam R. Howlettad776532007-12-06 17:37:59 -0500795{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100796 int ret;
797
Liam R. Howlettad776532007-12-06 17:37:59 -0500798 might_sleep();
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200799 ret = __mutex_fastpath_lock_retval(&lock->count);
800 if (likely(!ret)) {
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100801 mutex_set_owner(lock);
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200802 return 0;
803 } else
804 return __mutex_lock_killable_slowpath(lock);
Liam R. Howlettad776532007-12-06 17:37:59 -0500805}
806EXPORT_SYMBOL(mutex_lock_killable);
807
Török Edwin7918baa2008-11-24 10:17:42 +0200808static __used noinline void __sched
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200809__mutex_lock_slowpath(atomic_t *lock_count)
810{
811 struct mutex *lock = container_of(lock_count, struct mutex, count);
812
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200813 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, 0,
814 NULL, _RET_IP_, NULL);
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200815}
816
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800817static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200818__mutex_lock_killable_slowpath(struct mutex *lock)
Liam R. Howlettad776532007-12-06 17:37:59 -0500819{
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200820 return __mutex_lock_common(lock, TASK_KILLABLE, 0,
821 NULL, _RET_IP_, NULL);
Liam R. Howlettad776532007-12-06 17:37:59 -0500822}
823
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800824static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200825__mutex_lock_interruptible_slowpath(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800826{
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200827 return __mutex_lock_common(lock, TASK_INTERRUPTIBLE, 0,
828 NULL, _RET_IP_, NULL);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800829}
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200830
831static noinline int __sched
832__ww_mutex_lock_slowpath(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
833{
834 return __mutex_lock_common(&lock->base, TASK_UNINTERRUPTIBLE, 0,
835 NULL, _RET_IP_, ctx);
836}
837
838static noinline int __sched
839__ww_mutex_lock_interruptible_slowpath(struct ww_mutex *lock,
840 struct ww_acquire_ctx *ctx)
841{
842 return __mutex_lock_common(&lock->base, TASK_INTERRUPTIBLE, 0,
843 NULL, _RET_IP_, ctx);
844}
845
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200846#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800847
848/*
849 * Spinlock based trylock, we take the spinlock and check whether we
850 * can get the lock:
851 */
852static inline int __mutex_trylock_slowpath(atomic_t *lock_count)
853{
854 struct mutex *lock = container_of(lock_count, struct mutex, count);
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700855 unsigned long flags;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800856 int prev;
857
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700858 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800859
860 prev = atomic_xchg(&lock->count, -1);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700861 if (likely(prev == 1)) {
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100862 mutex_set_owner(lock);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700863 mutex_acquire(&lock->dep_map, 0, 1, _RET_IP_);
864 }
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100865
Ingo Molnar6053ee32006-01-09 15:59:19 -0800866 /* Set it back to 0 if there are no waiters: */
867 if (likely(list_empty(&lock->wait_list)))
868 atomic_set(&lock->count, 0);
869
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700870 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800871
872 return prev == 1;
873}
874
Randy Dunlapef5dc122010-09-02 15:48:16 -0700875/**
876 * mutex_trylock - try to acquire the mutex, without waiting
Ingo Molnar6053ee32006-01-09 15:59:19 -0800877 * @lock: the mutex to be acquired
878 *
879 * Try to acquire the mutex atomically. Returns 1 if the mutex
880 * has been acquired successfully, and 0 on contention.
881 *
882 * NOTE: this function follows the spin_trylock() convention, so
Randy Dunlapef5dc122010-09-02 15:48:16 -0700883 * it is negated from the down_trylock() return values! Be careful
Ingo Molnar6053ee32006-01-09 15:59:19 -0800884 * about this when converting semaphore users to mutexes.
885 *
886 * This function must not be used in interrupt context. The
887 * mutex must be released by the same task that acquired it.
888 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800889int __sched mutex_trylock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800890{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100891 int ret;
892
893 ret = __mutex_fastpath_trylock(&lock->count, __mutex_trylock_slowpath);
894 if (ret)
895 mutex_set_owner(lock);
896
897 return ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800898}
Ingo Molnar6053ee32006-01-09 15:59:19 -0800899EXPORT_SYMBOL(mutex_trylock);
Andrew Mortona511e3f2009-04-29 15:59:58 -0700900
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200901#ifndef CONFIG_DEBUG_LOCK_ALLOC
902int __sched
903__ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
904{
905 int ret;
906
907 might_sleep();
908
909 ret = __mutex_fastpath_lock_retval(&lock->base.count);
910
911 if (likely(!ret)) {
912 ww_mutex_set_context_fastpath(lock, ctx);
913 mutex_set_owner(&lock->base);
914 } else
915 ret = __ww_mutex_lock_slowpath(lock, ctx);
916 return ret;
917}
918EXPORT_SYMBOL(__ww_mutex_lock);
919
920int __sched
921__ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
922{
923 int ret;
924
925 might_sleep();
926
927 ret = __mutex_fastpath_lock_retval(&lock->base.count);
928
929 if (likely(!ret)) {
930 ww_mutex_set_context_fastpath(lock, ctx);
931 mutex_set_owner(&lock->base);
932 } else
933 ret = __ww_mutex_lock_interruptible_slowpath(lock, ctx);
934 return ret;
935}
936EXPORT_SYMBOL(__ww_mutex_lock_interruptible);
937
938#endif
939
Andrew Mortona511e3f2009-04-29 15:59:58 -0700940/**
941 * atomic_dec_and_mutex_lock - return holding mutex if we dec to 0
942 * @cnt: the atomic which we are to dec
943 * @lock: the mutex to return holding if we dec to 0
944 *
945 * return true and hold lock if we dec to 0, return false otherwise
946 */
947int atomic_dec_and_mutex_lock(atomic_t *cnt, struct mutex *lock)
948{
949 /* dec if we can't possibly hit 0 */
950 if (atomic_add_unless(cnt, -1, 1))
951 return 0;
952 /* we might hit 0, so take the lock */
953 mutex_lock(lock);
954 if (!atomic_dec_and_test(cnt)) {
955 /* when we actually did the dec, we didn't hit 0 */
956 mutex_unlock(lock);
957 return 0;
958 }
959 /* we hit 0, and we hold the lock */
960 return 1;
961}
962EXPORT_SYMBOL(atomic_dec_and_mutex_lock);