blob: 5e3585950ec8f7d353c7e8ff9b91d21464ee0b75 [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 *
Mauro Carvalho Chehab387b1462019-04-10 08:32:41 -030019 * Also see Documentation/locking/mutex-design.rst.
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
Thomas Gleixnerbb630f92021-08-15 23:29:01 +020033#ifndef CONFIG_PREEMPT_RT
Thomas Gleixnera321fb92021-08-17 16:17:38 +020034#include "mutex.h"
35
Ingo Molnar6053ee32006-01-09 15:59:19 -080036#ifdef CONFIG_DEBUG_MUTEXES
Peter Zijlstrae6b44572021-06-30 17:35:20 +020037# define MUTEX_WARN_ON(cond) DEBUG_LOCKS_WARN_ON(cond)
Ingo Molnar6053ee32006-01-09 15:59:19 -080038#else
Peter Zijlstrae6b44572021-06-30 17:35:20 +020039# define MUTEX_WARN_ON(cond)
Ingo Molnar6053ee32006-01-09 15:59:19 -080040#endif
41
Ingo Molnaref5d4702006-07-03 00:24:55 -070042void
43__mutex_init(struct mutex *lock, const char *name, struct lock_class_key *key)
Ingo Molnar6053ee32006-01-09 15:59:19 -080044{
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020045 atomic_long_set(&lock->owner, 0);
Thomas Gleixnerebf4c552021-08-15 23:28:36 +020046 raw_spin_lock_init(&lock->wait_lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -080047 INIT_LIST_HEAD(&lock->wait_list);
Waiman Long2bd2c922013-04-17 15:23:13 -040048#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
Jason Low4d9d9512014-07-14 10:27:50 -070049 osq_lock_init(&lock->osq);
Waiman Long2bd2c922013-04-17 15:23:13 -040050#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -080051
Ingo Molnaref5d4702006-07-03 00:24:55 -070052 debug_mutex_init(lock, name, key);
Ingo Molnar6053ee32006-01-09 15:59:19 -080053}
Ingo Molnar6053ee32006-01-09 15:59:19 -080054EXPORT_SYMBOL(__mutex_init);
55
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020056/*
57 * @owner: contains: 'struct task_struct *' to the current lock owner,
58 * NULL means not owned. Since task_struct pointers are aligned at
Peter Zijlstrae2747952017-01-11 14:17:48 +010059 * at least L1_CACHE_BYTES, we have low bits to store extra state.
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020060 *
61 * Bit0 indicates a non-empty waiter list; unlock must issue a wakeup.
Peter Zijlstra9d659ae2016-08-23 14:40:16 +020062 * Bit1 indicates unlock needs to hand the lock to the top-waiter
Peter Zijlstrae2747952017-01-11 14:17:48 +010063 * Bit2 indicates handoff has been done and we're waiting for pickup.
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020064 */
65#define MUTEX_FLAG_WAITERS 0x01
Peter Zijlstra9d659ae2016-08-23 14:40:16 +020066#define MUTEX_FLAG_HANDOFF 0x02
Peter Zijlstrae2747952017-01-11 14:17:48 +010067#define MUTEX_FLAG_PICKUP 0x04
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020068
Peter Zijlstrae2747952017-01-11 14:17:48 +010069#define MUTEX_FLAGS 0x07
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020070
Mukesh Ojha5f35d5a2019-07-31 20:35:03 +053071/*
72 * Internal helper function; C doesn't allow us to hide it :/
73 *
74 * DO NOT USE (outside of mutex code).
75 */
76static inline struct task_struct *__mutex_owner(struct mutex *lock)
77{
Mukesh Ojhaa037d262019-07-31 20:35:04 +053078 return (struct task_struct *)(atomic_long_read(&lock->owner) & ~MUTEX_FLAGS);
Mukesh Ojha5f35d5a2019-07-31 20:35:03 +053079}
80
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020081static inline struct task_struct *__owner_task(unsigned long owner)
82{
83 return (struct task_struct *)(owner & ~MUTEX_FLAGS);
84}
85
Mukesh Ojha5f35d5a2019-07-31 20:35:03 +053086bool mutex_is_locked(struct mutex *lock)
87{
88 return __mutex_owner(lock) != NULL;
89}
90EXPORT_SYMBOL(mutex_is_locked);
91
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +020092static inline unsigned long __owner_flags(unsigned long owner)
93{
94 return owner & MUTEX_FLAGS;
95}
96
Maarten Lankhorst12235da2021-09-09 11:32:18 +020097/*
98 * Returns: __mutex_owner(lock) on failure or NULL on success.
99 */
Peter Zijlstraad908802021-06-30 17:35:19 +0200100static inline struct task_struct *__mutex_trylock_common(struct mutex *lock, bool handoff)
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200101{
102 unsigned long owner, curr = (unsigned long)current;
103
104 owner = atomic_long_read(&lock->owner);
105 for (;;) { /* must loop, can race against a flag */
Peter Zijlstraab4e4d92021-06-30 17:35:17 +0200106 unsigned long flags = __owner_flags(owner);
Peter Zijlstrae2747952017-01-11 14:17:48 +0100107 unsigned long task = owner & ~MUTEX_FLAGS;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200108
Peter Zijlstrae2747952017-01-11 14:17:48 +0100109 if (task) {
Peter Zijlstraad908802021-06-30 17:35:19 +0200110 if (flags & MUTEX_FLAG_PICKUP) {
111 if (task != curr)
112 break;
113 flags &= ~MUTEX_FLAG_PICKUP;
114 } else if (handoff) {
115 if (flags & MUTEX_FLAG_HANDOFF)
116 break;
117 flags |= MUTEX_FLAG_HANDOFF;
118 } else {
Peter Zijlstrae2747952017-01-11 14:17:48 +0100119 break;
Peter Zijlstraad908802021-06-30 17:35:19 +0200120 }
Peter Zijlstrae2747952017-01-11 14:17:48 +0100121 } else {
Peter Zijlstrae6b44572021-06-30 17:35:20 +0200122 MUTEX_WARN_ON(flags & (MUTEX_FLAG_HANDOFF | MUTEX_FLAG_PICKUP));
Peter Zijlstraad908802021-06-30 17:35:19 +0200123 task = curr;
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200124 }
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200125
Peter Zijlstraad908802021-06-30 17:35:19 +0200126 if (atomic_long_try_cmpxchg_acquire(&lock->owner, &owner, task | flags)) {
127 if (task == curr)
128 return NULL;
129 break;
130 }
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200131 }
Peter Zijlstrae2747952017-01-11 14:17:48 +0100132
133 return __owner_task(owner);
134}
135
136/*
Peter Zijlstraad908802021-06-30 17:35:19 +0200137 * Trylock or set HANDOFF
138 */
139static inline bool __mutex_trylock_or_handoff(struct mutex *lock, bool handoff)
140{
141 return !__mutex_trylock_common(lock, handoff);
142}
143
144/*
Peter Zijlstrae2747952017-01-11 14:17:48 +0100145 * Actual trylock that will work on any unlocked state.
146 */
147static inline bool __mutex_trylock(struct mutex *lock)
148{
Peter Zijlstraad908802021-06-30 17:35:19 +0200149 return !__mutex_trylock_common(lock, false);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200150}
151
152#ifndef CONFIG_DEBUG_LOCK_ALLOC
153/*
154 * Lockdep annotations are contained to the slow paths for simplicity.
155 * There is nothing that would stop spreading the lockdep annotations outwards
156 * except more code.
157 */
158
159/*
160 * Optimistic trylock that only works in the uncontended case. Make sure to
161 * follow with a __mutex_trylock() before failing.
162 */
163static __always_inline bool __mutex_trylock_fast(struct mutex *lock)
164{
165 unsigned long curr = (unsigned long)current;
Peter Zijlstrac427f692018-04-05 11:05:35 +0200166 unsigned long zero = 0UL;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200167
Peter Zijlstrac427f692018-04-05 11:05:35 +0200168 if (atomic_long_try_cmpxchg_acquire(&lock->owner, &zero, curr))
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200169 return true;
170
171 return false;
172}
173
174static __always_inline bool __mutex_unlock_fast(struct mutex *lock)
175{
176 unsigned long curr = (unsigned long)current;
177
Peter Zijlstraab4e4d92021-06-30 17:35:17 +0200178 return atomic_long_try_cmpxchg_release(&lock->owner, &curr, 0UL);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200179}
180#endif
181
182static inline void __mutex_set_flag(struct mutex *lock, unsigned long flag)
183{
184 atomic_long_or(flag, &lock->owner);
185}
186
187static inline void __mutex_clear_flag(struct mutex *lock, unsigned long flag)
188{
189 atomic_long_andnot(flag, &lock->owner);
190}
191
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200192static inline bool __mutex_waiter_is_first(struct mutex *lock, struct mutex_waiter *waiter)
193{
194 return list_first_entry(&lock->wait_list, struct mutex_waiter, list) == waiter;
195}
196
197/*
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200198 * Add @waiter to a given location in the lock wait_list and set the
199 * FLAG_WAITERS flag if it's the first waiter.
200 */
Zqiang3a010c42021-05-17 11:40:05 +0800201static void
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200202__mutex_add_waiter(struct mutex *lock, struct mutex_waiter *waiter,
203 struct list_head *list)
204{
205 debug_mutex_add_waiter(lock, waiter, current);
206
207 list_add_tail(&waiter->list, list);
208 if (__mutex_waiter_is_first(lock, waiter))
209 __mutex_set_flag(lock, MUTEX_FLAG_WAITERS);
210}
211
Zqiang3a010c42021-05-17 11:40:05 +0800212static void
213__mutex_remove_waiter(struct mutex *lock, struct mutex_waiter *waiter)
214{
215 list_del(&waiter->list);
216 if (likely(list_empty(&lock->wait_list)))
217 __mutex_clear_flag(lock, MUTEX_FLAGS);
218
219 debug_mutex_remove_waiter(lock, waiter, current);
220}
221
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200222/*
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200223 * Give up ownership to a specific task, when @task = NULL, this is equivalent
Ingo Molnare2db7592021-03-22 02:35:05 +0100224 * to a regular unlock. Sets PICKUP on a handoff, clears HANDOFF, preserves
Peter Zijlstrae2747952017-01-11 14:17:48 +0100225 * WAITERS. Provides RELEASE semantics like a regular unlock, the
226 * __mutex_trylock() provides a matching ACQUIRE semantics for the handoff.
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200227 */
228static void __mutex_handoff(struct mutex *lock, struct task_struct *task)
229{
230 unsigned long owner = atomic_long_read(&lock->owner);
231
232 for (;;) {
Peter Zijlstraab4e4d92021-06-30 17:35:17 +0200233 unsigned long new;
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200234
Peter Zijlstrae6b44572021-06-30 17:35:20 +0200235 MUTEX_WARN_ON(__owner_task(owner) != current);
236 MUTEX_WARN_ON(owner & MUTEX_FLAG_PICKUP);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200237
238 new = (owner & MUTEX_FLAG_WAITERS);
239 new |= (unsigned long)task;
Peter Zijlstrae2747952017-01-11 14:17:48 +0100240 if (task)
241 new |= MUTEX_FLAG_PICKUP;
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200242
Peter Zijlstraab4e4d92021-06-30 17:35:17 +0200243 if (atomic_long_try_cmpxchg_release(&lock->owner, &owner, new))
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200244 break;
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200245 }
246}
247
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200248#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar6053ee32006-01-09 15:59:19 -0800249/*
250 * We split the mutex lock/unlock logic into separate fastpath and
251 * slowpath functions, to reduce the register pressure on the fastpath.
252 * We also put the fastpath first in the kernel image, to make sure the
253 * branch is predicted by the CPU as default-untaken.
254 */
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200255static void __sched __mutex_lock_slowpath(struct mutex *lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800256
Randy Dunlapef5dc122010-09-02 15:48:16 -0700257/**
Ingo Molnar6053ee32006-01-09 15:59:19 -0800258 * mutex_lock - acquire the mutex
259 * @lock: the mutex to be acquired
260 *
261 * Lock the mutex exclusively for this task. If the mutex is not
262 * available right now, it will sleep until it can get it.
263 *
264 * The mutex must later on be released by the same task that
265 * acquired it. Recursive locking is not allowed. The task
266 * may not exit without first unlocking the mutex. Also, kernel
Sharon Dvir139b6fd2015-02-01 23:47:32 +0200267 * memory where the mutex resides must not be freed with
Ingo Molnar6053ee32006-01-09 15:59:19 -0800268 * the mutex still locked. The mutex must first be initialized
269 * (or statically defined) before it can be locked. memset()-ing
270 * the mutex to 0 is not allowed.
271 *
Mauro Carvalho Chehab7b4ff1a2017-05-11 10:17:45 -0300272 * (The CONFIG_DEBUG_MUTEXES .config option turns on debugging
273 * checks that will enforce the restrictions and will also do
274 * deadlock debugging)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800275 *
276 * This function is similar to (but not equivalent to) down().
277 */
H. Peter Anvinb09d2502009-04-01 17:21:56 -0700278void __sched mutex_lock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800279{
Ingo Molnarc544bdb2006-01-10 22:10:36 +0100280 might_sleep();
Ingo Molnar6053ee32006-01-09 15:59:19 -0800281
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200282 if (!__mutex_trylock_fast(lock))
283 __mutex_lock_slowpath(lock);
284}
Ingo Molnar6053ee32006-01-09 15:59:19 -0800285EXPORT_SYMBOL(mutex_lock);
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200286#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800287
Peter Zijlstra (Intel)2674bd12021-08-17 16:31:54 +0200288#include "ww_mutex.h"
Davidlohr Bueso76916512014-07-30 13:41:53 -0700289
Waiman Long41fcb9f2013-04-17 15:23:11 -0400290#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100291
Peter Zijlstraad908802021-06-30 17:35:19 +0200292/*
293 * Trylock variant that returns the owning task on failure.
294 */
295static inline struct task_struct *__mutex_trylock_or_owner(struct mutex *lock)
296{
297 return __mutex_trylock_common(lock, false);
298}
299
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100300static inline
301bool ww_mutex_spin_on_owner(struct mutex *lock, struct ww_acquire_ctx *ww_ctx,
302 struct mutex_waiter *waiter)
303{
304 struct ww_mutex *ww;
305
306 ww = container_of(lock, struct ww_mutex, base);
307
308 /*
309 * If ww->ctx is set the contents are undefined, only
310 * by acquiring wait_lock there is a guarantee that
311 * they are not invalid when reading.
312 *
313 * As such, when deadlock detection needs to be
314 * performed the optimistic spinning cannot be done.
315 *
316 * Check this in every inner iteration because we may
317 * be racing against another thread's ww_mutex_lock.
318 */
319 if (ww_ctx->acquired > 0 && READ_ONCE(ww->ctx))
320 return false;
321
322 /*
323 * If we aren't on the wait list yet, cancel the spin
324 * if there are waiters. We want to avoid stealing the
325 * lock from a waiter with an earlier stamp, since the
326 * other thread may already own a lock that we also
327 * need.
328 */
329 if (!waiter && (atomic_long_read(&lock->owner) & MUTEX_FLAG_WAITERS))
330 return false;
331
332 /*
333 * Similarly, stop spinning if we are no longer the
334 * first waiter.
335 */
336 if (waiter && !__mutex_waiter_is_first(lock, waiter))
337 return false;
338
339 return true;
340}
341
Waiman Long41fcb9f2013-04-17 15:23:11 -0400342/*
Nicolai Hähnle25f13b42016-12-21 19:46:37 +0100343 * Look out! "owner" is an entirely speculative pointer access and not
344 * reliable.
345 *
346 * "noinline" so that this function shows up on perf profiles.
Waiman Long41fcb9f2013-04-17 15:23:11 -0400347 */
348static noinline
Nicolai Hähnle25f13b42016-12-21 19:46:37 +0100349bool mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner,
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100350 struct ww_acquire_ctx *ww_ctx, struct mutex_waiter *waiter)
Waiman Long41fcb9f2013-04-17 15:23:11 -0400351{
Jason Low01ac33c2015-04-08 12:39:19 -0700352 bool ret = true;
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800353
Yanfei Xu6c2787f2021-10-13 21:41:52 +0800354 lockdep_assert_preemption_disabled();
355
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200356 while (__mutex_owner(lock) == owner) {
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800357 /*
358 * Ensure we emit the owner->on_cpu, dereference _after_
Yanfei Xu6c2787f2021-10-13 21:41:52 +0800359 * checking lock->owner still matches owner. And we already
360 * disabled preemption which is equal to the RCU read-side
361 * crital section in optimistic spinning code. Thus the
362 * task_strcut structure won't go away during the spinning
363 * period
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800364 */
365 barrier();
366
Pan Xinhui05ffc952016-11-02 05:08:30 -0400367 /*
368 * Use vcpu_is_preempted to detect lock holder preemption issue.
369 */
Kefeng Wangc0bed692021-12-03 15:59:34 +0800370 if (!owner_on_cpu(owner) || need_resched()) {
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800371 ret = false;
372 break;
373 }
Waiman Long41fcb9f2013-04-17 15:23:11 -0400374
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100375 if (ww_ctx && !ww_mutex_spin_on_owner(lock, ww_ctx, waiter)) {
376 ret = false;
377 break;
Nicolai Hähnle25f13b42016-12-21 19:46:37 +0100378 }
379
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200380 cpu_relax();
Waiman Long41fcb9f2013-04-17 15:23:11 -0400381 }
Waiman Long41fcb9f2013-04-17 15:23:11 -0400382
Jason Lowbe1f7bf2015-02-02 13:59:27 -0800383 return ret;
Waiman Long41fcb9f2013-04-17 15:23:11 -0400384}
Waiman Long2bd2c922013-04-17 15:23:13 -0400385
386/*
387 * Initial check for entering the mutex spinning loop
388 */
389static inline int mutex_can_spin_on_owner(struct mutex *lock)
390{
Peter Zijlstra1e40c2e2013-07-19 20:31:01 +0200391 struct task_struct *owner;
Waiman Long2bd2c922013-04-17 15:23:13 -0400392 int retval = 1;
393
Yanfei Xu6c2787f2021-10-13 21:41:52 +0800394 lockdep_assert_preemption_disabled();
395
Jason Low46af29e2014-01-28 11:13:12 -0800396 if (need_resched())
397 return 0;
398
Yanfei Xu6c2787f2021-10-13 21:41:52 +0800399 /*
400 * We already disabled preemption which is equal to the RCU read-side
401 * crital section in optimistic spinning code. Thus the task_strcut
402 * structure won't go away during the spinning period.
403 */
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200404 owner = __mutex_owner(lock);
Peter Zijlstra1e40c2e2013-07-19 20:31:01 +0200405 if (owner)
Kefeng Wangc0bed692021-12-03 15:59:34 +0800406 retval = owner_on_cpu(owner);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200407
Waiman Long2bd2c922013-04-17 15:23:13 -0400408 /*
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200409 * If lock->owner is not set, the mutex has been released. Return true
410 * such that we'll trylock in the spin path, which is a faster option
411 * than the blocking slow path.
Waiman Long2bd2c922013-04-17 15:23:13 -0400412 */
413 return retval;
414}
Davidlohr Bueso76916512014-07-30 13:41:53 -0700415
416/*
Davidlohr Bueso76916512014-07-30 13:41:53 -0700417 * Optimistic spinning.
418 *
419 * We try to spin for acquisition when we find that the lock owner
420 * is currently running on a (different) CPU and while we don't
421 * need to reschedule. The rationale is that if the lock owner is
422 * running, it is likely to release the lock soon.
423 *
Davidlohr Bueso76916512014-07-30 13:41:53 -0700424 * The mutex spinners are queued up using MCS lock so that only one
425 * spinner can compete for the mutex. However, if mutex spinning isn't
426 * going to happen, there is no point in going through the lock/unlock
427 * overhead.
428 *
429 * Returns true when the lock was taken, otherwise false, indicating
430 * that we need to jump to the slowpath and sleep.
Waiman Longb341afb2016-08-26 19:35:09 -0400431 *
432 * The waiter flag is set to true if the spinner is a waiter in the wait
433 * queue. The waiter-spinner will spin on the lock directly and concurrently
434 * with the spinner at the head of the OSQ, if present, until the owner is
435 * changed to itself.
Davidlohr Bueso76916512014-07-30 13:41:53 -0700436 */
Peter Zijlstra427b1822016-12-23 10:36:00 +0100437static __always_inline bool
438mutex_optimistic_spin(struct mutex *lock, struct ww_acquire_ctx *ww_ctx,
Waiman Long5de20552021-03-16 11:31:16 -0400439 struct mutex_waiter *waiter)
Davidlohr Bueso76916512014-07-30 13:41:53 -0700440{
Waiman Longb341afb2016-08-26 19:35:09 -0400441 if (!waiter) {
442 /*
443 * The purpose of the mutex_can_spin_on_owner() function is
444 * to eliminate the overhead of osq_lock() and osq_unlock()
445 * in case spinning isn't possible. As a waiter-spinner
446 * is not going to take OSQ lock anyway, there is no need
447 * to call mutex_can_spin_on_owner().
448 */
449 if (!mutex_can_spin_on_owner(lock))
450 goto fail;
Davidlohr Bueso76916512014-07-30 13:41:53 -0700451
Waiman Longb341afb2016-08-26 19:35:09 -0400452 /*
453 * In order to avoid a stampede of mutex spinners trying to
454 * acquire the mutex all at once, the spinners need to take a
455 * MCS (queued) lock first before spinning on the owner field.
456 */
457 if (!osq_lock(&lock->osq))
458 goto fail;
459 }
Davidlohr Bueso76916512014-07-30 13:41:53 -0700460
Waiman Longb341afb2016-08-26 19:35:09 -0400461 for (;;) {
Davidlohr Bueso76916512014-07-30 13:41:53 -0700462 struct task_struct *owner;
463
Peter Zijlstrae2747952017-01-11 14:17:48 +0100464 /* Try to acquire the mutex... */
465 owner = __mutex_trylock_or_owner(lock);
466 if (!owner)
467 break;
Davidlohr Bueso76916512014-07-30 13:41:53 -0700468
469 /*
Peter Zijlstrae2747952017-01-11 14:17:48 +0100470 * There's an owner, wait for it to either
Davidlohr Bueso76916512014-07-30 13:41:53 -0700471 * release the lock or go to sleep.
472 */
Nicolai Hähnlec516df92016-12-21 19:46:38 +0100473 if (!mutex_spin_on_owner(lock, owner, ww_ctx, waiter))
Peter Zijlstrae2747952017-01-11 14:17:48 +0100474 goto fail_unlock;
Davidlohr Bueso76916512014-07-30 13:41:53 -0700475
476 /*
Davidlohr Bueso76916512014-07-30 13:41:53 -0700477 * The cpu_relax() call is a compiler barrier which forces
478 * everything in this loop to be re-loaded. We don't need
479 * memory barriers as we'll eventually observe the right
480 * values at the cost of a few extra spins.
481 */
Christian Borntraegerf2f09a42016-10-25 11:03:14 +0200482 cpu_relax();
Davidlohr Bueso76916512014-07-30 13:41:53 -0700483 }
484
Waiman Longb341afb2016-08-26 19:35:09 -0400485 if (!waiter)
486 osq_unlock(&lock->osq);
487
488 return true;
489
490
491fail_unlock:
492 if (!waiter)
493 osq_unlock(&lock->osq);
494
495fail:
Davidlohr Bueso76916512014-07-30 13:41:53 -0700496 /*
497 * If we fell out of the spin path because of need_resched(),
498 * reschedule now, before we try-lock the mutex. This avoids getting
499 * scheduled out right after we obtained the mutex.
500 */
Peter Zijlstra6f942a12014-09-24 10:18:46 +0200501 if (need_resched()) {
502 /*
503 * We _should_ have TASK_RUNNING here, but just in case
504 * we do not, make it so, otherwise we might get stuck.
505 */
506 __set_current_state(TASK_RUNNING);
Davidlohr Bueso76916512014-07-30 13:41:53 -0700507 schedule_preempt_disabled();
Peter Zijlstra6f942a12014-09-24 10:18:46 +0200508 }
Davidlohr Bueso76916512014-07-30 13:41:53 -0700509
510 return false;
511}
512#else
Peter Zijlstra427b1822016-12-23 10:36:00 +0100513static __always_inline bool
514mutex_optimistic_spin(struct mutex *lock, struct ww_acquire_ctx *ww_ctx,
Waiman Long5de20552021-03-16 11:31:16 -0400515 struct mutex_waiter *waiter)
Davidlohr Bueso76916512014-07-30 13:41:53 -0700516{
517 return false;
518}
Waiman Long41fcb9f2013-04-17 15:23:11 -0400519#endif
520
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200521static noinline void __sched __mutex_unlock_slowpath(struct mutex *lock, unsigned long ip);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800522
Randy Dunlapef5dc122010-09-02 15:48:16 -0700523/**
Ingo Molnar6053ee32006-01-09 15:59:19 -0800524 * mutex_unlock - release the mutex
525 * @lock: the mutex to be released
526 *
527 * Unlock a mutex that has been locked by this task previously.
528 *
529 * This function must not be used in interrupt context. Unlocking
530 * of a not locked mutex is not allowed.
531 *
532 * This function is similar to (but not equivalent to) up().
533 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800534void __sched mutex_unlock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800535{
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200536#ifndef CONFIG_DEBUG_LOCK_ALLOC
537 if (__mutex_unlock_fast(lock))
538 return;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100539#endif
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200540 __mutex_unlock_slowpath(lock, _RET_IP_);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800541}
Ingo Molnar6053ee32006-01-09 15:59:19 -0800542EXPORT_SYMBOL(mutex_unlock);
543
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200544/**
545 * ww_mutex_unlock - release the w/w mutex
546 * @lock: the mutex to be released
547 *
548 * Unlock a mutex that has been locked by this task previously with any of the
549 * ww_mutex_lock* functions (with or without an acquire context). It is
550 * forbidden to release the locks after releasing the acquire context.
551 *
552 * This function must not be used in interrupt context. Unlocking
553 * of a unlocked mutex is not allowed.
554 */
555void __sched ww_mutex_unlock(struct ww_mutex *lock)
556{
Peter Zijlstra (Intel)aaa77de2021-08-17 16:19:04 +0200557 __ww_mutex_unlock(lock);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200558 mutex_unlock(&lock->base);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200559}
560EXPORT_SYMBOL(ww_mutex_unlock);
561
Ingo Molnar6053ee32006-01-09 15:59:19 -0800562/*
563 * Lock a mutex (possibly interruptible), slowpath:
564 */
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200565static __always_inline int __sched
Peter Zijlstra2f064a52021-06-11 10:28:17 +0200566__mutex_lock_common(struct mutex *lock, unsigned int state, unsigned int subclass,
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200567 struct lockdep_map *nest_lock, unsigned long ip,
Tetsuo Handab0267502013-10-17 19:45:29 +0900568 struct ww_acquire_ctx *ww_ctx, const bool use_ww_ctx)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800569{
Ingo Molnar6053ee32006-01-09 15:59:19 -0800570 struct mutex_waiter waiter;
Waiman Longa40ca562016-08-26 19:35:08 -0400571 struct ww_mutex *ww;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200572 int ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800573
Waiman Long5de20552021-03-16 11:31:16 -0400574 if (!use_ww_ctx)
575 ww_ctx = NULL;
576
Peter Zijlstra427b1822016-12-23 10:36:00 +0100577 might_sleep();
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +0100578
Peter Zijlstrae6b44572021-06-30 17:35:20 +0200579 MUTEX_WARN_ON(lock->magic != lock);
Sebastian Andrzej Siewior6c11c6e2019-07-03 11:21:26 +0200580
Peter Zijlstra427b1822016-12-23 10:36:00 +0100581 ww = container_of(lock, struct ww_mutex, base);
Waiman Long5de20552021-03-16 11:31:16 -0400582 if (ww_ctx) {
Chris Wilson0422e832016-05-26 21:08:17 +0100583 if (unlikely(ww_ctx == READ_ONCE(ww->ctx)))
584 return -EALREADY;
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200585
586 /*
587 * Reset the wounded flag after a kill. No other process can
588 * race and wound us here since they can't have a valid owner
589 * pointer if we don't have any locks held.
590 */
591 if (ww_ctx->acquired == 0)
592 ww_ctx->wounded = 0;
Peter Zijlstracf702ed2021-08-15 23:28:38 +0200593
594#ifdef CONFIG_DEBUG_LOCK_ALLOC
595 nest_lock = &ww_ctx->dep_map;
596#endif
Chris Wilson0422e832016-05-26 21:08:17 +0100597 }
598
Peter Zijlstra41719b02009-01-14 15:36:26 +0100599 preempt_disable();
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700600 mutex_acquire_nest(&lock->dep_map, subclass, 0, nest_lock, ip);
Frederic Weisbeckerc0226022009-12-02 20:49:16 +0100601
Peter Zijlstrae2747952017-01-11 14:17:48 +0100602 if (__mutex_trylock(lock) ||
Waiman Long5de20552021-03-16 11:31:16 -0400603 mutex_optimistic_spin(lock, ww_ctx, NULL)) {
Davidlohr Bueso76916512014-07-30 13:41:53 -0700604 /* got the lock, yay! */
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200605 lock_acquired(&lock->dep_map, ip);
Waiman Long5de20552021-03-16 11:31:16 -0400606 if (ww_ctx)
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200607 ww_mutex_set_context_fastpath(ww, ww_ctx);
Davidlohr Bueso76916512014-07-30 13:41:53 -0700608 preempt_enable();
609 return 0;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +0100610 }
Davidlohr Bueso76916512014-07-30 13:41:53 -0700611
Thomas Gleixnerebf4c552021-08-15 23:28:36 +0200612 raw_spin_lock(&lock->wait_lock);
Jason Low1e820c92014-06-11 11:37:21 -0700613 /*
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200614 * After waiting to acquire the wait_lock, try again.
Jason Low1e820c92014-06-11 11:37:21 -0700615 */
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100616 if (__mutex_trylock(lock)) {
Waiman Long5de20552021-03-16 11:31:16 -0400617 if (ww_ctx)
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200618 __ww_mutex_check_waiters(lock, ww_ctx);
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100619
Davidlohr Buesoec83f422013-06-28 13:13:18 -0700620 goto skip_wait;
Nicolai Hähnle659cf9f2016-12-21 19:46:36 +0100621 }
Davidlohr Buesoec83f422013-06-28 13:13:18 -0700622
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700623 debug_mutex_lock_common(lock, &waiter);
Peter Zijlstrac0afb0f2021-08-15 23:28:39 +0200624 waiter.task = current;
Sebastian Andrzej Siewiorb8571742021-08-19 21:30:30 +0200625 if (use_ww_ctx)
Peter Zijlstrac0afb0f2021-08-15 23:28:39 +0200626 waiter.ww_ctx = ww_ctx;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800627
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100628 lock_contended(&lock->dep_map, ip);
629
630 if (!use_ww_ctx) {
631 /* add waiting tasks to the end of the waitqueue (FIFO): */
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200632 __mutex_add_waiter(lock, &waiter, &lock->wait_list);
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100633 } else {
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200634 /*
635 * Add in stamp order, waking up waiters that must kill
636 * themselves.
637 */
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100638 ret = __ww_mutex_add_waiter(&waiter, lock, ww_ctx);
639 if (ret)
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200640 goto err_early_kill;
Nicolai Hähnle6baa5c62016-12-21 19:46:34 +0100641 }
642
Davidlohr Bueso642fa442017-01-03 13:43:14 -0800643 set_current_state(state);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800644 for (;;) {
Peter Zijlstra048661a2021-06-30 17:35:18 +0200645 bool first;
646
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200647 /*
648 * Once we hold wait_lock, we're serialized against
649 * mutex_unlock() handing the lock off to us, do a trylock
650 * before testing the error conditions to make sure we pick up
651 * the handoff.
652 */
Peter Zijlstrae2747952017-01-11 14:17:48 +0100653 if (__mutex_trylock(lock))
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200654 goto acquired;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800655
656 /*
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200657 * Check for signals and kill conditions while holding
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200658 * wait_lock. This ensures the lock cancellation is ordered
659 * against mutex_unlock() and wake-ups do not go missing.
Ingo Molnar6053ee32006-01-09 15:59:19 -0800660 */
Davidlohr Bueso3bb5f4a2019-01-03 15:28:44 -0800661 if (signal_pending_state(state, current)) {
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200662 ret = -EINTR;
663 goto err;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800664 }
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200665
Waiman Long5de20552021-03-16 11:31:16 -0400666 if (ww_ctx) {
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200667 ret = __ww_mutex_check_kill(lock, &waiter, ww_ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200668 if (ret)
669 goto err;
670 }
671
Thomas Gleixnerebf4c552021-08-15 23:28:36 +0200672 raw_spin_unlock(&lock->wait_lock);
Thomas Gleixnerbd2f5532011-03-21 12:33:18 +0100673 schedule_preempt_disabled();
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200674
Peter Zijlstra048661a2021-06-30 17:35:18 +0200675 first = __mutex_waiter_is_first(lock, &waiter);
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200676
Davidlohr Bueso642fa442017-01-03 13:43:14 -0800677 set_current_state(state);
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200678 /*
679 * Here we order against unlock; we must either see it change
680 * state back to RUNNING and fall through the next schedule(),
681 * or we must see its unlock and acquire.
682 */
Peter Zijlstraad908802021-06-30 17:35:19 +0200683 if (__mutex_trylock_or_handoff(lock, first) ||
Waiman Long5de20552021-03-16 11:31:16 -0400684 (first && mutex_optimistic_spin(lock, ww_ctx, &waiter)))
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200685 break;
686
Thomas Gleixnerebf4c552021-08-15 23:28:36 +0200687 raw_spin_lock(&lock->wait_lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800688 }
Thomas Gleixnerebf4c552021-08-15 23:28:36 +0200689 raw_spin_lock(&lock->wait_lock);
Peter Zijlstra5bbd7e62016-09-02 13:42:12 +0200690acquired:
Davidlohr Bueso642fa442017-01-03 13:43:14 -0800691 __set_current_state(TASK_RUNNING);
Davidlohr Bueso51587bc2015-01-19 17:39:21 -0800692
Waiman Long5de20552021-03-16 11:31:16 -0400693 if (ww_ctx) {
Thomas Hellstrom08295b32018-06-15 10:17:38 +0200694 /*
695 * Wound-Wait; we stole the lock (!first_waiter), check the
696 * waiters as anyone might want to wound us.
697 */
698 if (!ww_ctx->is_wait_die &&
699 !__mutex_waiter_is_first(lock, &waiter))
700 __ww_mutex_check_waiters(lock, ww_ctx);
701 }
702
Zqiang3a010c42021-05-17 11:40:05 +0800703 __mutex_remove_waiter(lock, &waiter);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200704
Davidlohr Buesoec83f422013-06-28 13:13:18 -0700705 debug_mutex_free_waiter(&waiter);
706
707skip_wait:
708 /* got the lock - cleanup and rejoice! */
709 lock_acquired(&lock->dep_map, ip);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800710
Waiman Long5de20552021-03-16 11:31:16 -0400711 if (ww_ctx)
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200712 ww_mutex_lock_acquired(ww, ww_ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200713
Thomas Gleixnerebf4c552021-08-15 23:28:36 +0200714 raw_spin_unlock(&lock->wait_lock);
Peter Zijlstra41719b02009-01-14 15:36:26 +0100715 preempt_enable();
Ingo Molnar6053ee32006-01-09 15:59:19 -0800716 return 0;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200717
718err:
Davidlohr Bueso642fa442017-01-03 13:43:14 -0800719 __set_current_state(TASK_RUNNING);
Zqiang3a010c42021-05-17 11:40:05 +0800720 __mutex_remove_waiter(lock, &waiter);
Peter Ziljstra55f036c2018-06-15 10:07:12 +0200721err_early_kill:
Thomas Gleixnerebf4c552021-08-15 23:28:36 +0200722 raw_spin_unlock(&lock->wait_lock);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200723 debug_mutex_free_waiter(&waiter);
Qian Cai5facae42019-09-19 12:09:40 -0400724 mutex_release(&lock->dep_map, ip);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200725 preempt_enable();
726 return ret;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800727}
728
Peter Zijlstra427b1822016-12-23 10:36:00 +0100729static int __sched
Peter Zijlstra2f064a52021-06-11 10:28:17 +0200730__mutex_lock(struct mutex *lock, unsigned int state, unsigned int subclass,
Peter Zijlstra427b1822016-12-23 10:36:00 +0100731 struct lockdep_map *nest_lock, unsigned long ip)
732{
733 return __mutex_lock_common(lock, state, subclass, nest_lock, ip, NULL, false);
734}
735
736static int __sched
Peter Zijlstra2f064a52021-06-11 10:28:17 +0200737__ww_mutex_lock(struct mutex *lock, unsigned int state, unsigned int subclass,
Peter Zijlstracf702ed2021-08-15 23:28:38 +0200738 unsigned long ip, struct ww_acquire_ctx *ww_ctx)
Peter Zijlstra427b1822016-12-23 10:36:00 +0100739{
Peter Zijlstracf702ed2021-08-15 23:28:38 +0200740 return __mutex_lock_common(lock, state, subclass, NULL, ip, ww_ctx, true);
Peter Zijlstra427b1822016-12-23 10:36:00 +0100741}
742
Maarten Lankhorst12235da2021-09-09 11:32:18 +0200743/**
744 * ww_mutex_trylock - tries to acquire the w/w mutex with optional acquire context
745 * @ww: mutex to lock
746 * @ww_ctx: optional w/w acquire context
747 *
748 * Trylocks a mutex with the optional acquire context; no deadlock detection is
749 * possible. Returns 1 if the mutex has been acquired successfully, 0 otherwise.
750 *
751 * Unlike ww_mutex_lock, no deadlock handling is performed. However, if a @ctx is
752 * specified, -EALREADY handling may happen in calls to ww_mutex_trylock.
753 *
754 * A mutex acquired with this function must be released with ww_mutex_unlock.
755 */
756int ww_mutex_trylock(struct ww_mutex *ww, struct ww_acquire_ctx *ww_ctx)
757{
758 if (!ww_ctx)
759 return mutex_trylock(&ww->base);
760
761 MUTEX_WARN_ON(ww->base.magic != &ww->base);
762
763 /*
764 * Reset the wounded flag after a kill. No other process can
765 * race and wound us here, since they can't have a valid owner
766 * pointer if we don't have any locks held.
767 */
768 if (ww_ctx->acquired == 0)
769 ww_ctx->wounded = 0;
770
771 if (__mutex_trylock(&ww->base)) {
772 ww_mutex_set_context_fastpath(ww, ww_ctx);
773 mutex_acquire_nest(&ww->base.dep_map, 0, 1, &ww_ctx->dep_map, _RET_IP_);
774 return 1;
775 }
776
777 return 0;
778}
779EXPORT_SYMBOL(ww_mutex_trylock);
780
Ingo Molnaref5d4702006-07-03 00:24:55 -0700781#ifdef CONFIG_DEBUG_LOCK_ALLOC
782void __sched
783mutex_lock_nested(struct mutex *lock, unsigned int subclass)
784{
Peter Zijlstra427b1822016-12-23 10:36:00 +0100785 __mutex_lock(lock, TASK_UNINTERRUPTIBLE, subclass, NULL, _RET_IP_);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700786}
787
788EXPORT_SYMBOL_GPL(mutex_lock_nested);
NeilBrownd63a5a72006-12-08 02:36:17 -0800789
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700790void __sched
791_mutex_lock_nest_lock(struct mutex *lock, struct lockdep_map *nest)
792{
Peter Zijlstra427b1822016-12-23 10:36:00 +0100793 __mutex_lock(lock, TASK_UNINTERRUPTIBLE, 0, nest, _RET_IP_);
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700794}
Peter Zijlstrae4c70a62011-05-24 17:12:03 -0700795EXPORT_SYMBOL_GPL(_mutex_lock_nest_lock);
796
NeilBrownd63a5a72006-12-08 02:36:17 -0800797int __sched
Liam R. Howlettad776532007-12-06 17:37:59 -0500798mutex_lock_killable_nested(struct mutex *lock, unsigned int subclass)
799{
Peter Zijlstra427b1822016-12-23 10:36:00 +0100800 return __mutex_lock(lock, TASK_KILLABLE, subclass, NULL, _RET_IP_);
Liam R. Howlettad776532007-12-06 17:37:59 -0500801}
802EXPORT_SYMBOL_GPL(mutex_lock_killable_nested);
803
804int __sched
NeilBrownd63a5a72006-12-08 02:36:17 -0800805mutex_lock_interruptible_nested(struct mutex *lock, unsigned int subclass)
806{
Peter Zijlstra427b1822016-12-23 10:36:00 +0100807 return __mutex_lock(lock, TASK_INTERRUPTIBLE, subclass, NULL, _RET_IP_);
NeilBrownd63a5a72006-12-08 02:36:17 -0800808}
NeilBrownd63a5a72006-12-08 02:36:17 -0800809EXPORT_SYMBOL_GPL(mutex_lock_interruptible_nested);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200810
Tejun Heo1460cb62016-10-28 12:58:11 -0400811void __sched
812mutex_lock_io_nested(struct mutex *lock, unsigned int subclass)
813{
814 int token;
815
816 might_sleep();
817
818 token = io_schedule_prepare();
819 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE,
820 subclass, NULL, _RET_IP_, NULL, 0);
821 io_schedule_finish(token);
822}
823EXPORT_SYMBOL_GPL(mutex_lock_io_nested);
824
Daniel Vetter23010022013-06-20 13:31:17 +0200825static inline int
826ww_mutex_deadlock_injection(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
827{
828#ifdef CONFIG_DEBUG_WW_MUTEX_SLOWPATH
829 unsigned tmp;
830
831 if (ctx->deadlock_inject_countdown-- == 0) {
832 tmp = ctx->deadlock_inject_interval;
833 if (tmp > UINT_MAX/4)
834 tmp = UINT_MAX;
835 else
836 tmp = tmp*2 + tmp + tmp/2;
837
838 ctx->deadlock_inject_interval = tmp;
839 ctx->deadlock_inject_countdown = tmp;
840 ctx->contending_lock = lock;
841
842 ww_mutex_unlock(lock);
843
844 return -EDEADLK;
845 }
846#endif
847
848 return 0;
849}
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200850
851int __sched
Nicolai Hähnlec5470b22016-12-21 19:46:33 +0100852ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200853{
Daniel Vetter23010022013-06-20 13:31:17 +0200854 int ret;
855
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200856 might_sleep();
Peter Zijlstra427b1822016-12-23 10:36:00 +0100857 ret = __ww_mutex_lock(&lock->base, TASK_UNINTERRUPTIBLE,
Peter Zijlstracf702ed2021-08-15 23:28:38 +0200858 0, _RET_IP_, ctx);
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +0100859 if (!ret && ctx && ctx->acquired > 1)
Daniel Vetter23010022013-06-20 13:31:17 +0200860 return ww_mutex_deadlock_injection(lock, ctx);
861
862 return ret;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200863}
Nicolai Hähnlec5470b22016-12-21 19:46:33 +0100864EXPORT_SYMBOL_GPL(ww_mutex_lock);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200865
866int __sched
Nicolai Hähnlec5470b22016-12-21 19:46:33 +0100867ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200868{
Daniel Vetter23010022013-06-20 13:31:17 +0200869 int ret;
870
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200871 might_sleep();
Peter Zijlstra427b1822016-12-23 10:36:00 +0100872 ret = __ww_mutex_lock(&lock->base, TASK_INTERRUPTIBLE,
Peter Zijlstracf702ed2021-08-15 23:28:38 +0200873 0, _RET_IP_, ctx);
Daniel Vetter23010022013-06-20 13:31:17 +0200874
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +0100875 if (!ret && ctx && ctx->acquired > 1)
Daniel Vetter23010022013-06-20 13:31:17 +0200876 return ww_mutex_deadlock_injection(lock, ctx);
877
878 return ret;
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200879}
Nicolai Hähnlec5470b22016-12-21 19:46:33 +0100880EXPORT_SYMBOL_GPL(ww_mutex_lock_interruptible);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +0200881
Ingo Molnaref5d4702006-07-03 00:24:55 -0700882#endif
883
Ingo Molnar6053ee32006-01-09 15:59:19 -0800884/*
885 * Release the lock, slowpath:
886 */
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200887static noinline void __sched __mutex_unlock_slowpath(struct mutex *lock, unsigned long ip)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800888{
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200889 struct task_struct *next = NULL;
Waiman Long194a6b52016-11-17 11:46:38 -0500890 DEFINE_WAKE_Q(wake_q);
Peter Zijlstrab9c16a02017-01-17 16:06:09 +0100891 unsigned long owner;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800892
Qian Cai5facae42019-09-19 12:09:40 -0400893 mutex_release(&lock->dep_map, ip);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200894
Ingo Molnar6053ee32006-01-09 15:59:19 -0800895 /*
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200896 * Release the lock before (potentially) taking the spinlock such that
897 * other contenders can get on with things ASAP.
898 *
899 * Except when HANDOFF, in that case we must not clear the owner field,
900 * but instead set it to the top waiter.
Ingo Molnar6053ee32006-01-09 15:59:19 -0800901 */
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200902 owner = atomic_long_read(&lock->owner);
903 for (;;) {
Peter Zijlstrae6b44572021-06-30 17:35:20 +0200904 MUTEX_WARN_ON(__owner_task(owner) != current);
905 MUTEX_WARN_ON(owner & MUTEX_FLAG_PICKUP);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200906
907 if (owner & MUTEX_FLAG_HANDOFF)
908 break;
909
Peter Zijlstraab4e4d92021-06-30 17:35:17 +0200910 if (atomic_long_try_cmpxchg_release(&lock->owner, &owner, __owner_flags(owner))) {
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200911 if (owner & MUTEX_FLAG_WAITERS)
912 break;
913
914 return;
915 }
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200916 }
Ingo Molnar6053ee32006-01-09 15:59:19 -0800917
Thomas Gleixnerebf4c552021-08-15 23:28:36 +0200918 raw_spin_lock(&lock->wait_lock);
Jason Low1d8fe7d2014-01-28 11:13:14 -0800919 debug_mutex_unlock(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800920 if (!list_empty(&lock->wait_list)) {
921 /* get the first entry from the wait-list: */
922 struct mutex_waiter *waiter =
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200923 list_first_entry(&lock->wait_list,
924 struct mutex_waiter, list);
925
926 next = waiter->task;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800927
928 debug_mutex_wake_waiter(lock, waiter);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200929 wake_q_add(&wake_q, next);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800930 }
931
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200932 if (owner & MUTEX_FLAG_HANDOFF)
933 __mutex_handoff(lock, next);
934
Thomas Gleixnerebf4c552021-08-15 23:28:36 +0200935 raw_spin_unlock(&lock->wait_lock);
Peter Zijlstra9d659ae2016-08-23 14:40:16 +0200936
Davidlohr Bueso1329ce62016-01-24 18:23:43 -0800937 wake_up_q(&wake_q);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800938}
939
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200940#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700941/*
Ingo Molnar6053ee32006-01-09 15:59:19 -0800942 * Here come the less common (and hence less performance-critical) APIs:
943 * mutex_lock_interruptible() and mutex_trylock().
944 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800945static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200946__mutex_lock_killable_slowpath(struct mutex *lock);
Liam R. Howlettad776532007-12-06 17:37:59 -0500947
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800948static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200949__mutex_lock_interruptible_slowpath(struct mutex *lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800950
Randy Dunlapef5dc122010-09-02 15:48:16 -0700951/**
Matthew Wilcox45dbac02018-03-15 04:58:12 -0700952 * mutex_lock_interruptible() - Acquire the mutex, interruptible by signals.
953 * @lock: The mutex to be acquired.
Ingo Molnar6053ee32006-01-09 15:59:19 -0800954 *
Matthew Wilcox45dbac02018-03-15 04:58:12 -0700955 * Lock the mutex like mutex_lock(). If a signal is delivered while the
956 * process is sleeping, this function will return without acquiring the
957 * mutex.
Ingo Molnar6053ee32006-01-09 15:59:19 -0800958 *
Matthew Wilcox45dbac02018-03-15 04:58:12 -0700959 * Context: Process context.
960 * Return: 0 if the lock was successfully acquired or %-EINTR if a
961 * signal arrived.
Ingo Molnar6053ee32006-01-09 15:59:19 -0800962 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800963int __sched mutex_lock_interruptible(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800964{
Ingo Molnarc544bdb2006-01-10 22:10:36 +0100965 might_sleep();
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200966
967 if (__mutex_trylock_fast(lock))
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200968 return 0;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200969
970 return __mutex_lock_interruptible_slowpath(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800971}
972
973EXPORT_SYMBOL(mutex_lock_interruptible);
974
Matthew Wilcox45dbac02018-03-15 04:58:12 -0700975/**
976 * mutex_lock_killable() - Acquire the mutex, interruptible by fatal signals.
977 * @lock: The mutex to be acquired.
978 *
979 * Lock the mutex like mutex_lock(). If a signal which will be fatal to
980 * the current process is delivered while the process is sleeping, this
981 * function will return without acquiring the mutex.
982 *
983 * Context: Process context.
984 * Return: 0 if the lock was successfully acquired or %-EINTR if a
985 * fatal signal arrived.
986 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800987int __sched mutex_lock_killable(struct mutex *lock)
Liam R. Howlettad776532007-12-06 17:37:59 -0500988{
989 might_sleep();
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200990
991 if (__mutex_trylock_fast(lock))
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +0200992 return 0;
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +0200993
994 return __mutex_lock_killable_slowpath(lock);
Liam R. Howlettad776532007-12-06 17:37:59 -0500995}
996EXPORT_SYMBOL(mutex_lock_killable);
997
Matthew Wilcox45dbac02018-03-15 04:58:12 -0700998/**
999 * mutex_lock_io() - Acquire the mutex and mark the process as waiting for I/O
1000 * @lock: The mutex to be acquired.
1001 *
1002 * Lock the mutex like mutex_lock(). While the task is waiting for this
1003 * mutex, it will be accounted as being in the IO wait state by the
1004 * scheduler.
1005 *
1006 * Context: Process context.
1007 */
Tejun Heo1460cb62016-10-28 12:58:11 -04001008void __sched mutex_lock_io(struct mutex *lock)
1009{
1010 int token;
1011
1012 token = io_schedule_prepare();
1013 mutex_lock(lock);
1014 io_schedule_finish(token);
1015}
1016EXPORT_SYMBOL_GPL(mutex_lock_io);
1017
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001018static noinline void __sched
1019__mutex_lock_slowpath(struct mutex *lock)
Peter Zijlstrae4564f72007-10-11 22:11:12 +02001020{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001021 __mutex_lock(lock, TASK_UNINTERRUPTIBLE, 0, NULL, _RET_IP_);
Peter Zijlstrae4564f72007-10-11 22:11:12 +02001022}
1023
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001024static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001025__mutex_lock_killable_slowpath(struct mutex *lock)
Liam R. Howlettad776532007-12-06 17:37:59 -05001026{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001027 return __mutex_lock(lock, TASK_KILLABLE, 0, NULL, _RET_IP_);
Liam R. Howlettad776532007-12-06 17:37:59 -05001028}
1029
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001030static noinline int __sched
Maarten Lankhorsta41b56e2013-06-20 13:31:05 +02001031__mutex_lock_interruptible_slowpath(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -08001032{
Peter Zijlstra427b1822016-12-23 10:36:00 +01001033 return __mutex_lock(lock, TASK_INTERRUPTIBLE, 0, NULL, _RET_IP_);
Ingo Molnar6053ee32006-01-09 15:59:19 -08001034}
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001035
1036static noinline int __sched
1037__ww_mutex_lock_slowpath(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
1038{
Peter Zijlstracf702ed2021-08-15 23:28:38 +02001039 return __ww_mutex_lock(&lock->base, TASK_UNINTERRUPTIBLE, 0,
Peter Zijlstra427b1822016-12-23 10:36:00 +01001040 _RET_IP_, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001041}
1042
1043static noinline int __sched
1044__ww_mutex_lock_interruptible_slowpath(struct ww_mutex *lock,
1045 struct ww_acquire_ctx *ctx)
1046{
Peter Zijlstracf702ed2021-08-15 23:28:38 +02001047 return __ww_mutex_lock(&lock->base, TASK_INTERRUPTIBLE, 0,
Peter Zijlstra427b1822016-12-23 10:36:00 +01001048 _RET_IP_, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001049}
1050
Peter Zijlstrae4564f72007-10-11 22:11:12 +02001051#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -08001052
Randy Dunlapef5dc122010-09-02 15:48:16 -07001053/**
1054 * mutex_trylock - try to acquire the mutex, without waiting
Ingo Molnar6053ee32006-01-09 15:59:19 -08001055 * @lock: the mutex to be acquired
1056 *
1057 * Try to acquire the mutex atomically. Returns 1 if the mutex
1058 * has been acquired successfully, and 0 on contention.
1059 *
1060 * NOTE: this function follows the spin_trylock() convention, so
Randy Dunlapef5dc122010-09-02 15:48:16 -07001061 * it is negated from the down_trylock() return values! Be careful
Ingo Molnar6053ee32006-01-09 15:59:19 -08001062 * about this when converting semaphore users to mutexes.
1063 *
1064 * This function must not be used in interrupt context. The
1065 * mutex must be released by the same task that acquired it.
1066 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08001067int __sched mutex_trylock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -08001068{
Sebastian Andrzej Siewior6c11c6e2019-07-03 11:21:26 +02001069 bool locked;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01001070
Peter Zijlstrae6b44572021-06-30 17:35:20 +02001071 MUTEX_WARN_ON(lock->magic != lock);
Sebastian Andrzej Siewior6c11c6e2019-07-03 11:21:26 +02001072
1073 locked = __mutex_trylock(lock);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001074 if (locked)
1075 mutex_acquire(&lock->dep_map, 0, 1, _RET_IP_);
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01001076
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001077 return locked;
Ingo Molnar6053ee32006-01-09 15:59:19 -08001078}
Ingo Molnar6053ee32006-01-09 15:59:19 -08001079EXPORT_SYMBOL(mutex_trylock);
Andrew Mortona511e3f2009-04-29 15:59:58 -07001080
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001081#ifndef CONFIG_DEBUG_LOCK_ALLOC
1082int __sched
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001083ww_mutex_lock(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001084{
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001085 might_sleep();
1086
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001087 if (__mutex_trylock_fast(&lock->base)) {
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +01001088 if (ctx)
1089 ww_mutex_set_context_fastpath(lock, ctx);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001090 return 0;
1091 }
1092
1093 return __ww_mutex_lock_slowpath(lock, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001094}
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001095EXPORT_SYMBOL(ww_mutex_lock);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001096
1097int __sched
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001098ww_mutex_lock_interruptible(struct ww_mutex *lock, struct ww_acquire_ctx *ctx)
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001099{
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001100 might_sleep();
1101
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001102 if (__mutex_trylock_fast(&lock->base)) {
Nicolai Hähnleea9e0fb2016-12-21 19:46:32 +01001103 if (ctx)
1104 ww_mutex_set_context_fastpath(lock, ctx);
Peter Zijlstra3ca0ff52016-08-23 13:36:04 +02001105 return 0;
1106 }
1107
1108 return __ww_mutex_lock_interruptible_slowpath(lock, ctx);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001109}
Nicolai Hähnlec5470b22016-12-21 19:46:33 +01001110EXPORT_SYMBOL(ww_mutex_lock_interruptible);
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001111
Thomas Gleixnerbb630f92021-08-15 23:29:01 +02001112#endif /* !CONFIG_DEBUG_LOCK_ALLOC */
1113#endif /* !CONFIG_PREEMPT_RT */
Maarten Lankhorst040a0a32013-06-24 10:30:04 +02001114
Andrew Mortona511e3f2009-04-29 15:59:58 -07001115/**
1116 * atomic_dec_and_mutex_lock - return holding mutex if we dec to 0
1117 * @cnt: the atomic which we are to dec
1118 * @lock: the mutex to return holding if we dec to 0
1119 *
1120 * return true and hold lock if we dec to 0, return false otherwise
1121 */
1122int atomic_dec_and_mutex_lock(atomic_t *cnt, struct mutex *lock)
1123{
1124 /* dec if we can't possibly hit 0 */
1125 if (atomic_add_unless(cnt, -1, 1))
1126 return 0;
1127 /* we might hit 0, so take the lock */
1128 mutex_lock(lock);
1129 if (!atomic_dec_and_test(cnt)) {
1130 /* when we actually did the dec, we didn't hit 0 */
1131 mutex_unlock(lock);
1132 return 0;
1133 }
1134 /* we hit 0, and we hold the lock */
1135 return 1;
1136}
1137EXPORT_SYMBOL(atomic_dec_and_mutex_lock);