blob: d9ec9b6662501e0c5815f61812ad1f42e8b79d1c [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 *
13 * Also see Documentation/mutex-design.txt.
14 */
15#include <linux/mutex.h>
16#include <linux/sched.h>
17#include <linux/module.h>
18#include <linux/spinlock.h>
19#include <linux/interrupt.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070020#include <linux/debug_locks.h>
Ingo Molnar6053ee32006-01-09 15:59:19 -080021
22/*
23 * In the DEBUG case we are using the "NULL fastpath" for mutexes,
24 * which forces all calls into the slowpath:
25 */
26#ifdef CONFIG_DEBUG_MUTEXES
27# include "mutex-debug.h"
28# include <asm-generic/mutex-null.h>
29#else
30# include "mutex.h"
31# include <asm/mutex.h>
32#endif
33
34/***
35 * mutex_init - initialize the mutex
36 * @lock: the mutex to be initialized
37 *
38 * Initialize the mutex to unlocked state.
39 *
40 * It is not allowed to initialize an already locked mutex.
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{
45 atomic_set(&lock->count, 1);
46 spin_lock_init(&lock->wait_lock);
47 INIT_LIST_HEAD(&lock->wait_list);
48
Ingo Molnaref5d4702006-07-03 00:24:55 -070049 debug_mutex_init(lock, name, key);
Ingo Molnar6053ee32006-01-09 15:59:19 -080050}
51
52EXPORT_SYMBOL(__mutex_init);
53
Peter Zijlstrae4564f72007-10-11 22:11:12 +020054#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar6053ee32006-01-09 15:59:19 -080055/*
56 * We split the mutex lock/unlock logic into separate fastpath and
57 * slowpath functions, to reduce the register pressure on the fastpath.
58 * We also put the fastpath first in the kernel image, to make sure the
59 * branch is predicted by the CPU as default-untaken.
60 */
61static void fastcall noinline __sched
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070062__mutex_lock_slowpath(atomic_t *lock_count);
Ingo Molnar6053ee32006-01-09 15:59:19 -080063
64/***
65 * mutex_lock - acquire the mutex
66 * @lock: the mutex to be acquired
67 *
68 * Lock the mutex exclusively for this task. If the mutex is not
69 * available right now, it will sleep until it can get it.
70 *
71 * The mutex must later on be released by the same task that
72 * acquired it. Recursive locking is not allowed. The task
73 * may not exit without first unlocking the mutex. Also, kernel
74 * memory where the mutex resides mutex must not be freed with
75 * the mutex still locked. The mutex must first be initialized
76 * (or statically defined) before it can be locked. memset()-ing
77 * the mutex to 0 is not allowed.
78 *
79 * ( The CONFIG_DEBUG_MUTEXES .config option turns on debugging
80 * checks that will enforce the restrictions and will also do
81 * deadlock debugging. )
82 *
83 * This function is similar to (but not equivalent to) down().
84 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070085void inline fastcall __sched mutex_lock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -080086{
Ingo Molnarc544bdb2006-01-10 22:10:36 +010087 might_sleep();
Ingo Molnar6053ee32006-01-09 15:59:19 -080088 /*
89 * The locking fastpath is the 1->0 transition from
90 * 'unlocked' into 'locked' state.
Ingo Molnar6053ee32006-01-09 15:59:19 -080091 */
92 __mutex_fastpath_lock(&lock->count, __mutex_lock_slowpath);
93}
94
95EXPORT_SYMBOL(mutex_lock);
Peter Zijlstrae4564f72007-10-11 22:11:12 +020096#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -080097
98static void fastcall noinline __sched
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070099__mutex_unlock_slowpath(atomic_t *lock_count);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800100
101/***
102 * mutex_unlock - release the mutex
103 * @lock: the mutex to be released
104 *
105 * Unlock a mutex that has been locked by this task previously.
106 *
107 * This function must not be used in interrupt context. Unlocking
108 * of a not locked mutex is not allowed.
109 *
110 * This function is similar to (but not equivalent to) up().
111 */
112void fastcall __sched mutex_unlock(struct mutex *lock)
113{
114 /*
115 * The unlocking fastpath is the 0->1 transition from 'locked'
116 * into 'unlocked' state:
Ingo Molnar6053ee32006-01-09 15:59:19 -0800117 */
118 __mutex_fastpath_unlock(&lock->count, __mutex_unlock_slowpath);
119}
120
121EXPORT_SYMBOL(mutex_unlock);
122
123/*
124 * Lock a mutex (possibly interruptible), slowpath:
125 */
126static inline int __sched
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200127__mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
128 unsigned long ip)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800129{
130 struct task_struct *task = current;
131 struct mutex_waiter waiter;
132 unsigned int old_val;
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700133 unsigned long flags;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800134
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700135 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800136
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700137 debug_mutex_lock_common(lock, &waiter);
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200138 mutex_acquire(&lock->dep_map, subclass, 0, ip);
Roman Zippelc9f4f062007-05-09 02:35:16 -0700139 debug_mutex_add_waiter(lock, &waiter, task_thread_info(task));
Ingo Molnar6053ee32006-01-09 15:59:19 -0800140
141 /* add waiting tasks to the end of the waitqueue (FIFO): */
142 list_add_tail(&waiter.list, &lock->wait_list);
143 waiter.task = task;
144
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700145 old_val = atomic_xchg(&lock->count, -1);
146 if (old_val == 1)
147 goto done;
148
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200149 lock_contended(&lock->dep_map, ip);
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700150
Ingo Molnar6053ee32006-01-09 15:59:19 -0800151 for (;;) {
152 /*
153 * Lets try to take the lock again - this is needed even if
154 * we get here for the first time (shortly after failing to
155 * acquire the lock), to make sure that we get a wakeup once
156 * it's unlocked. Later on, if we sleep, this is the
157 * operation that gives us the lock. We xchg it to -1, so
158 * that when we release the lock, we properly wake up the
159 * other waiters:
160 */
161 old_val = atomic_xchg(&lock->count, -1);
162 if (old_val == 1)
163 break;
164
165 /*
166 * got a signal? (This code gets eliminated in the
167 * TASK_UNINTERRUPTIBLE case.)
168 */
Liam R. Howlettad776532007-12-06 17:37:59 -0500169 if (unlikely((state == TASK_INTERRUPTIBLE &&
170 signal_pending(task)) ||
171 (state == TASK_KILLABLE &&
172 fatal_signal_pending(task)))) {
173 mutex_remove_waiter(lock, &waiter,
174 task_thread_info(task));
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200175 mutex_release(&lock->dep_map, 1, ip);
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700176 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800177
178 debug_mutex_free_waiter(&waiter);
179 return -EINTR;
180 }
181 __set_task_state(task, state);
182
183 /* didnt get the lock, go to sleep: */
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700184 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800185 schedule();
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700186 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800187 }
188
Peter Zijlstra4fe87742007-07-19 01:48:58 -0700189done:
Peter Zijlstra96645672007-07-19 01:49:00 -0700190 lock_acquired(&lock->dep_map);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800191 /* got the lock - rejoice! */
Roman Zippelc9f4f062007-05-09 02:35:16 -0700192 mutex_remove_waiter(lock, &waiter, task_thread_info(task));
193 debug_mutex_set_owner(lock, task_thread_info(task));
Ingo Molnar6053ee32006-01-09 15:59:19 -0800194
195 /* set it to 0 if there are no waiters left: */
196 if (likely(list_empty(&lock->wait_list)))
197 atomic_set(&lock->count, 0);
198
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700199 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800200
201 debug_mutex_free_waiter(&waiter);
202
Ingo Molnar6053ee32006-01-09 15:59:19 -0800203 return 0;
204}
205
Ingo Molnaref5d4702006-07-03 00:24:55 -0700206#ifdef CONFIG_DEBUG_LOCK_ALLOC
207void __sched
208mutex_lock_nested(struct mutex *lock, unsigned int subclass)
209{
210 might_sleep();
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200211 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, subclass, _RET_IP_);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700212}
213
214EXPORT_SYMBOL_GPL(mutex_lock_nested);
NeilBrownd63a5a72006-12-08 02:36:17 -0800215
216int __sched
Liam R. Howlettad776532007-12-06 17:37:59 -0500217mutex_lock_killable_nested(struct mutex *lock, unsigned int subclass)
218{
219 might_sleep();
220 return __mutex_lock_common(lock, TASK_KILLABLE, subclass, _RET_IP_);
221}
222EXPORT_SYMBOL_GPL(mutex_lock_killable_nested);
223
224int __sched
NeilBrownd63a5a72006-12-08 02:36:17 -0800225mutex_lock_interruptible_nested(struct mutex *lock, unsigned int subclass)
226{
227 might_sleep();
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200228 return __mutex_lock_common(lock, TASK_INTERRUPTIBLE, subclass, _RET_IP_);
NeilBrownd63a5a72006-12-08 02:36:17 -0800229}
230
231EXPORT_SYMBOL_GPL(mutex_lock_interruptible_nested);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700232#endif
233
Ingo Molnar6053ee32006-01-09 15:59:19 -0800234/*
235 * Release the lock, slowpath:
236 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700237static fastcall inline void
Ingo Molnaref5d4702006-07-03 00:24:55 -0700238__mutex_unlock_common_slowpath(atomic_t *lock_count, int nested)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800239{
Ingo Molnar02706642006-01-10 23:15:02 +0100240 struct mutex *lock = container_of(lock_count, struct mutex, count);
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700241 unsigned long flags;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800242
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700243 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700244 mutex_release(&lock->dep_map, nested, _RET_IP_);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700245 debug_mutex_unlock(lock);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800246
247 /*
248 * some architectures leave the lock unlocked in the fastpath failure
249 * case, others need to leave it locked. In the later case we have to
250 * unlock it here
251 */
252 if (__mutex_slowpath_needs_to_unlock())
253 atomic_set(&lock->count, 1);
254
Ingo Molnar6053ee32006-01-09 15:59:19 -0800255 if (!list_empty(&lock->wait_list)) {
256 /* get the first entry from the wait-list: */
257 struct mutex_waiter *waiter =
258 list_entry(lock->wait_list.next,
259 struct mutex_waiter, list);
260
261 debug_mutex_wake_waiter(lock, waiter);
262
263 wake_up_process(waiter->task);
264 }
265
266 debug_mutex_clear_owner(lock);
267
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700268 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800269}
270
271/*
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700272 * Release the lock, slowpath:
273 */
274static fastcall noinline void
275__mutex_unlock_slowpath(atomic_t *lock_count)
276{
Ingo Molnaref5d4702006-07-03 00:24:55 -0700277 __mutex_unlock_common_slowpath(lock_count, 1);
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700278}
279
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200280#ifndef CONFIG_DEBUG_LOCK_ALLOC
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700281/*
Ingo Molnar6053ee32006-01-09 15:59:19 -0800282 * Here come the less common (and hence less performance-critical) APIs:
283 * mutex_lock_interruptible() and mutex_trylock().
284 */
285static int fastcall noinline __sched
Liam R. Howlettad776532007-12-06 17:37:59 -0500286__mutex_lock_killable_slowpath(atomic_t *lock_count);
287
288static noinline int fastcall __sched
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700289__mutex_lock_interruptible_slowpath(atomic_t *lock_count);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800290
291/***
292 * mutex_lock_interruptible - acquire the mutex, interruptable
293 * @lock: the mutex to be acquired
294 *
295 * Lock the mutex like mutex_lock(), and return 0 if the mutex has
296 * been acquired or sleep until the mutex becomes available. If a
297 * signal arrives while waiting for the lock then this function
298 * returns -EINTR.
299 *
300 * This function is similar to (but not equivalent to) down_interruptible().
301 */
302int fastcall __sched mutex_lock_interruptible(struct mutex *lock)
303{
Ingo Molnarc544bdb2006-01-10 22:10:36 +0100304 might_sleep();
Ingo Molnar6053ee32006-01-09 15:59:19 -0800305 return __mutex_fastpath_lock_retval
306 (&lock->count, __mutex_lock_interruptible_slowpath);
307}
308
309EXPORT_SYMBOL(mutex_lock_interruptible);
310
Liam R. Howlettad776532007-12-06 17:37:59 -0500311int fastcall __sched mutex_lock_killable(struct mutex *lock)
312{
313 might_sleep();
314 return __mutex_fastpath_lock_retval
315 (&lock->count, __mutex_lock_killable_slowpath);
316}
317EXPORT_SYMBOL(mutex_lock_killable);
318
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200319static void fastcall noinline __sched
320__mutex_lock_slowpath(atomic_t *lock_count)
321{
322 struct mutex *lock = container_of(lock_count, struct mutex, count);
323
324 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, 0, _RET_IP_);
325}
326
Ingo Molnar6053ee32006-01-09 15:59:19 -0800327static int fastcall noinline __sched
Liam R. Howlettad776532007-12-06 17:37:59 -0500328__mutex_lock_killable_slowpath(atomic_t *lock_count)
329{
330 struct mutex *lock = container_of(lock_count, struct mutex, count);
331
332 return __mutex_lock_common(lock, TASK_KILLABLE, 0, _RET_IP_);
333}
334
335static noinline int fastcall __sched
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700336__mutex_lock_interruptible_slowpath(atomic_t *lock_count)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800337{
338 struct mutex *lock = container_of(lock_count, struct mutex, count);
339
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200340 return __mutex_lock_common(lock, TASK_INTERRUPTIBLE, 0, _RET_IP_);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800341}
Peter Zijlstrae4564f72007-10-11 22:11:12 +0200342#endif
Ingo Molnar6053ee32006-01-09 15:59:19 -0800343
344/*
345 * Spinlock based trylock, we take the spinlock and check whether we
346 * can get the lock:
347 */
348static inline int __mutex_trylock_slowpath(atomic_t *lock_count)
349{
350 struct mutex *lock = container_of(lock_count, struct mutex, count);
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700351 unsigned long flags;
Ingo Molnar6053ee32006-01-09 15:59:19 -0800352 int prev;
353
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700354 spin_lock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800355
356 prev = atomic_xchg(&lock->count, -1);
Ingo Molnaref5d4702006-07-03 00:24:55 -0700357 if (likely(prev == 1)) {
Ingo Molnar9a11b49a2006-07-03 00:24:33 -0700358 debug_mutex_set_owner(lock, current_thread_info());
Ingo Molnaref5d4702006-07-03 00:24:55 -0700359 mutex_acquire(&lock->dep_map, 0, 1, _RET_IP_);
360 }
Ingo Molnar6053ee32006-01-09 15:59:19 -0800361 /* Set it back to 0 if there are no waiters: */
362 if (likely(list_empty(&lock->wait_list)))
363 atomic_set(&lock->count, 0);
364
Ingo Molnar1fb00c62006-06-26 00:24:31 -0700365 spin_unlock_mutex(&lock->wait_lock, flags);
Ingo Molnar6053ee32006-01-09 15:59:19 -0800366
367 return prev == 1;
368}
369
370/***
371 * mutex_trylock - try acquire the mutex, without waiting
372 * @lock: the mutex to be acquired
373 *
374 * Try to acquire the mutex atomically. Returns 1 if the mutex
375 * has been acquired successfully, and 0 on contention.
376 *
377 * NOTE: this function follows the spin_trylock() convention, so
378 * it is negated to the down_trylock() return values! Be careful
379 * about this when converting semaphore users to mutexes.
380 *
381 * This function must not be used in interrupt context. The
382 * mutex must be released by the same task that acquired it.
383 */
Ingo Molnar9cebb552006-07-03 00:24:33 -0700384int fastcall __sched mutex_trylock(struct mutex *lock)
Ingo Molnar6053ee32006-01-09 15:59:19 -0800385{
386 return __mutex_fastpath_trylock(&lock->count,
387 __mutex_trylock_slowpath);
388}
389
390EXPORT_SYMBOL(mutex_trylock);