blob: aec8bf89bf4e704b6db88e1e67ebb92c1b1fe0f3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Fast Userspace Mutexes (which I call "Futexes!").
3 * (C) Rusty Russell, IBM 2002
4 *
5 * Generalized futexes, futex requeueing, misc fixes by Ingo Molnar
6 * (C) Copyright 2003 Red Hat Inc, All Rights Reserved
7 *
8 * Removed page pinning, fix privately mapped COW pages and other cleanups
9 * (C) Copyright 2003, 2004 Jamie Lokier
10 *
Ingo Molnar0771dfe2006-03-27 01:16:22 -080011 * Robust futex support started by Ingo Molnar
12 * (C) Copyright 2006 Red Hat Inc, All Rights Reserved
13 * Thanks to Thomas Gleixner for suggestions, analysis and fixes.
14 *
Ingo Molnarc87e2832006-06-27 02:54:58 -070015 * PI-futex support started by Ingo Molnar and Thomas Gleixner
16 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
17 * Copyright (C) 2006 Timesys Corp., Thomas Gleixner <tglx@timesys.com>
18 *
Eric Dumazet34f01cc2007-05-09 02:35:04 -070019 * PRIVATE futexes by Eric Dumazet
20 * Copyright (C) 2007 Eric Dumazet <dada1@cosmosbay.com>
21 *
Darren Hart52400ba2009-04-03 13:40:49 -070022 * Requeue-PI support by Darren Hart <dvhltc@us.ibm.com>
23 * Copyright (C) IBM Corporation, 2009
24 * Thanks to Thomas Gleixner for conceptual design and careful reviews.
25 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 * Thanks to Ben LaHaise for yelling "hashed waitqueues" loudly
27 * enough at me, Linus for the original (flawed) idea, Matthew
28 * Kirkwood for proof-of-concept implementation.
29 *
30 * "The futexes are also cursed."
31 * "But they come in a choice of three flavours!"
32 *
33 * This program is free software; you can redistribute it and/or modify
34 * it under the terms of the GNU General Public License as published by
35 * the Free Software Foundation; either version 2 of the License, or
36 * (at your option) any later version.
37 *
38 * This program is distributed in the hope that it will be useful,
39 * but WITHOUT ANY WARRANTY; without even the implied warranty of
40 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 * GNU General Public License for more details.
42 *
43 * You should have received a copy of the GNU General Public License
44 * along with this program; if not, write to the Free Software
45 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
46 */
47#include <linux/slab.h>
48#include <linux/poll.h>
49#include <linux/fs.h>
50#include <linux/file.h>
51#include <linux/jhash.h>
52#include <linux/init.h>
53#include <linux/futex.h>
54#include <linux/mount.h>
55#include <linux/pagemap.h>
56#include <linux/syscalls.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070057#include <linux/signal.h>
Rusty Russell9adef582007-05-08 00:26:42 -070058#include <linux/module.h>
Andrey Mirkinfd5eea42007-10-16 23:30:13 -070059#include <linux/magic.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070060#include <linux/pid.h>
61#include <linux/nsproxy.h>
62
Jakub Jelinek4732efb2005-09-06 15:16:25 -070063#include <asm/futex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Ingo Molnarc87e2832006-06-27 02:54:58 -070065#include "rtmutex_common.h"
66
Thomas Gleixnera0c1e902008-02-23 15:23:57 -080067int __read_mostly futex_cmpxchg_enabled;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define FUTEX_HASHBITS (CONFIG_BASE_SMALL ? 4 : 8)
70
71/*
Ingo Molnarc87e2832006-06-27 02:54:58 -070072 * Priority Inheritance state:
73 */
74struct futex_pi_state {
75 /*
76 * list of 'owned' pi_state instances - these have to be
77 * cleaned up in do_exit() if the task exits prematurely:
78 */
79 struct list_head list;
80
81 /*
82 * The PI object:
83 */
84 struct rt_mutex pi_mutex;
85
86 struct task_struct *owner;
87 atomic_t refcount;
88
89 union futex_key key;
90};
91
92/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 * We use this hashed waitqueue instead of a normal wait_queue_t, so
94 * we can wake only the relevant ones (hashed queues may be shared).
95 *
96 * A futex_q has a woken state, just like tasks have TASK_RUNNING.
Pierre Peifferec92d082007-05-09 02:35:00 -070097 * It is considered woken when plist_node_empty(&q->list) || q->lock_ptr == 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 * The order of wakup is always to make the first condition true, then
Darren Hart73500ac2008-12-17 17:29:56 -080099 * wake up q->waiter, then make the second condition true.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 */
101struct futex_q {
Pierre Peifferec92d082007-05-09 02:35:00 -0700102 struct plist_node list;
Darren Hart73500ac2008-12-17 17:29:56 -0800103 /* There can only be a single waiter */
104 wait_queue_head_t waiter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Ingo Molnare2970f22006-06-27 02:54:47 -0700106 /* Which hash list lock to use: */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 spinlock_t *lock_ptr;
108
Ingo Molnare2970f22006-06-27 02:54:47 -0700109 /* Key which the futex is hashed on: */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 union futex_key key;
111
Ingo Molnarc87e2832006-06-27 02:54:58 -0700112 /* Optional priority inheritance state: */
113 struct futex_pi_state *pi_state;
114 struct task_struct *task;
Thomas Gleixnercd689982008-02-01 17:45:14 +0100115
Darren Hart52400ba2009-04-03 13:40:49 -0700116 /* rt_waiter storage for requeue_pi: */
117 struct rt_mutex_waiter *rt_waiter;
118
Thomas Gleixnercd689982008-02-01 17:45:14 +0100119 /* Bitset for the optional bitmasked wakeup */
120 u32 bitset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121};
122
123/*
Darren Hartb2d09942009-03-12 00:55:37 -0700124 * Hash buckets are shared by all the futex_keys that hash to the same
125 * location. Each key may have multiple futex_q structures, one for each task
126 * waiting on a futex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 */
128struct futex_hash_bucket {
Pierre Peifferec92d082007-05-09 02:35:00 -0700129 spinlock_t lock;
130 struct plist_head chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
133static struct futex_hash_bucket futex_queues[1<<FUTEX_HASHBITS];
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/*
136 * We hash on the keys returned from get_futex_key (see below).
137 */
138static struct futex_hash_bucket *hash_futex(union futex_key *key)
139{
140 u32 hash = jhash2((u32*)&key->both.word,
141 (sizeof(key->both.word)+sizeof(key->both.ptr))/4,
142 key->both.offset);
143 return &futex_queues[hash & ((1 << FUTEX_HASHBITS)-1)];
144}
145
146/*
147 * Return 1 if two futex_keys are equal, 0 otherwise.
148 */
149static inline int match_futex(union futex_key *key1, union futex_key *key2)
150{
151 return (key1->both.word == key2->both.word
152 && key1->both.ptr == key2->both.ptr
153 && key1->both.offset == key2->both.offset);
154}
155
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200156/*
157 * Take a reference to the resource addressed by a key.
158 * Can be called while holding spinlocks.
159 *
160 */
161static void get_futex_key_refs(union futex_key *key)
162{
163 if (!key->both.ptr)
164 return;
165
166 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
167 case FUT_OFF_INODE:
168 atomic_inc(&key->shared.inode->i_count);
169 break;
170 case FUT_OFF_MMSHARED:
171 atomic_inc(&key->private.mm->mm_count);
172 break;
173 }
174}
175
176/*
177 * Drop a reference to the resource addressed by a key.
178 * The hash bucket spinlock must not be held.
179 */
180static void drop_futex_key_refs(union futex_key *key)
181{
Darren Hart90621c42008-12-29 19:43:21 -0800182 if (!key->both.ptr) {
183 /* If we're here then we tried to put a key we failed to get */
184 WARN_ON_ONCE(1);
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200185 return;
Darren Hart90621c42008-12-29 19:43:21 -0800186 }
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200187
188 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
189 case FUT_OFF_INODE:
190 iput(key->shared.inode);
191 break;
192 case FUT_OFF_MMSHARED:
193 mmdrop(key->private.mm);
194 break;
195 }
196}
197
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700198/**
199 * get_futex_key - Get parameters which are the keys for a futex.
200 * @uaddr: virtual address of the futex
Darren Hartb2d09942009-03-12 00:55:37 -0700201 * @fshared: 0 for a PROCESS_PRIVATE futex, 1 for PROCESS_SHARED
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700202 * @key: address where result is stored.
203 *
204 * Returns a negative error code or 0
205 * The key words are stored in *key on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 *
Josef "Jeff" Sipekf3a43f32006-12-08 02:36:43 -0800207 * For shared mappings, it's (page->index, vma->vm_file->f_path.dentry->d_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 * offset_within_page). For private mappings, it's (uaddr, current->mm).
209 * We can usually work out the index without swapping in the page.
210 *
Darren Hartb2d09942009-03-12 00:55:37 -0700211 * lock_page() might sleep, the caller should not hold a spinlock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 */
Peter Zijlstrac2f9f202008-09-26 19:32:23 +0200213static int get_futex_key(u32 __user *uaddr, int fshared, union futex_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Ingo Molnare2970f22006-06-27 02:54:47 -0700215 unsigned long address = (unsigned long)uaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 struct mm_struct *mm = current->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 struct page *page;
218 int err;
219
220 /*
221 * The futex address must be "naturally" aligned.
222 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700223 key->both.offset = address % PAGE_SIZE;
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700224 if (unlikely((address % sizeof(u32)) != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return -EINVAL;
Ingo Molnare2970f22006-06-27 02:54:47 -0700226 address -= key->both.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /*
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700229 * PROCESS_PRIVATE futexes are fast.
230 * As the mm cannot disappear under us and the 'key' only needs
231 * virtual address, we dont even have to find the underlying vma.
232 * Note : We do have to check 'uaddr' is a valid user address,
233 * but access_ok() should be faster than find_vma()
234 */
235 if (!fshared) {
236 if (unlikely(!access_ok(VERIFY_WRITE, uaddr, sizeof(u32))))
237 return -EFAULT;
238 key->private.mm = mm;
239 key->private.address = address;
Peter Zijlstra42569c32008-09-30 12:33:07 +0200240 get_futex_key_refs(key);
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700241 return 0;
242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200244again:
Peter Zijlstra734b05b2008-09-26 19:32:22 +0200245 err = get_user_pages_fast(address, 1, 0, &page);
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200246 if (err < 0)
247 return err;
248
249 lock_page(page);
250 if (!page->mapping) {
251 unlock_page(page);
252 put_page(page);
253 goto again;
254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 /*
257 * Private mappings are handled in a simple way.
258 *
259 * NOTE: When userspace waits on a MAP_SHARED mapping, even if
260 * it's a read-only handle, it's expected that futexes attach to
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200261 * the object not the particular process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 */
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200263 if (PageAnon(page)) {
264 key->both.offset |= FUT_OFF_MMSHARED; /* ref taken on mm */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 key->private.mm = mm;
Ingo Molnare2970f22006-06-27 02:54:47 -0700266 key->private.address = address;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200267 } else {
268 key->both.offset |= FUT_OFF_INODE; /* inode-based key */
269 key->shared.inode = page->mapping->host;
270 key->shared.pgoff = page->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200273 get_futex_key_refs(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200275 unlock_page(page);
276 put_page(page);
277 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200280static inline
Peter Zijlstrac2f9f202008-09-26 19:32:23 +0200281void put_futex_key(int fshared, union futex_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200283 drop_futex_key_refs(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Darren Hart4b1c4862009-04-03 13:39:42 -0700286/**
287 * futex_top_waiter() - Return the highest priority waiter on a futex
288 * @hb: the hash bucket the futex_q's reside in
289 * @key: the futex key (to distinguish it from other futex futex_q's)
290 *
291 * Must be called with the hb lock held.
292 */
293static struct futex_q *futex_top_waiter(struct futex_hash_bucket *hb,
294 union futex_key *key)
295{
296 struct futex_q *this;
297
298 plist_for_each_entry(this, &hb->chain, list) {
299 if (match_futex(&this->key, key))
300 return this;
301 }
302 return NULL;
303}
304
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700305static u32 cmpxchg_futex_value_locked(u32 __user *uaddr, u32 uval, u32 newval)
306{
307 u32 curval;
308
309 pagefault_disable();
310 curval = futex_atomic_cmpxchg_inatomic(uaddr, uval, newval);
311 pagefault_enable();
312
313 return curval;
314}
315
316static int get_futex_value_locked(u32 *dest, u32 __user *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
318 int ret;
319
Peter Zijlstraa8663742006-12-06 20:32:20 -0800320 pagefault_disable();
Ingo Molnare2970f22006-06-27 02:54:47 -0700321 ret = __copy_from_user_inatomic(dest, from, sizeof(u32));
Peter Zijlstraa8663742006-12-06 20:32:20 -0800322 pagefault_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 return ret ? -EFAULT : 0;
325}
326
Ingo Molnarc87e2832006-06-27 02:54:58 -0700327
328/*
329 * PI code:
330 */
331static int refill_pi_state_cache(void)
332{
333 struct futex_pi_state *pi_state;
334
335 if (likely(current->pi_state_cache))
336 return 0;
337
Burman Yan4668edc2006-12-06 20:38:51 -0800338 pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700339
340 if (!pi_state)
341 return -ENOMEM;
342
Ingo Molnarc87e2832006-06-27 02:54:58 -0700343 INIT_LIST_HEAD(&pi_state->list);
344 /* pi_mutex gets initialized later */
345 pi_state->owner = NULL;
346 atomic_set(&pi_state->refcount, 1);
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200347 pi_state->key = FUTEX_KEY_INIT;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700348
349 current->pi_state_cache = pi_state;
350
351 return 0;
352}
353
354static struct futex_pi_state * alloc_pi_state(void)
355{
356 struct futex_pi_state *pi_state = current->pi_state_cache;
357
358 WARN_ON(!pi_state);
359 current->pi_state_cache = NULL;
360
361 return pi_state;
362}
363
364static void free_pi_state(struct futex_pi_state *pi_state)
365{
366 if (!atomic_dec_and_test(&pi_state->refcount))
367 return;
368
369 /*
370 * If pi_state->owner is NULL, the owner is most probably dying
371 * and has cleaned up the pi_state already
372 */
373 if (pi_state->owner) {
374 spin_lock_irq(&pi_state->owner->pi_lock);
375 list_del_init(&pi_state->list);
376 spin_unlock_irq(&pi_state->owner->pi_lock);
377
378 rt_mutex_proxy_unlock(&pi_state->pi_mutex, pi_state->owner);
379 }
380
381 if (current->pi_state_cache)
382 kfree(pi_state);
383 else {
384 /*
385 * pi_state->list is already empty.
386 * clear pi_state->owner.
387 * refcount is at 0 - put it back to 1.
388 */
389 pi_state->owner = NULL;
390 atomic_set(&pi_state->refcount, 1);
391 current->pi_state_cache = pi_state;
392 }
393}
394
395/*
396 * Look up the task based on what TID userspace gave us.
397 * We dont trust it.
398 */
399static struct task_struct * futex_find_get_task(pid_t pid)
400{
401 struct task_struct *p;
David Howellsc69e8d92008-11-14 10:39:19 +1100402 const struct cred *cred = current_cred(), *pcred;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700403
Oleg Nesterovd359b542006-09-29 02:00:55 -0700404 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700405 p = find_task_by_vpid(pid);
David Howellsc69e8d92008-11-14 10:39:19 +1100406 if (!p) {
Thomas Gleixnera06381f2007-06-23 11:48:40 +0200407 p = ERR_PTR(-ESRCH);
David Howellsc69e8d92008-11-14 10:39:19 +1100408 } else {
409 pcred = __task_cred(p);
410 if (cred->euid != pcred->euid &&
411 cred->euid != pcred->uid)
412 p = ERR_PTR(-ESRCH);
413 else
414 get_task_struct(p);
415 }
Thomas Gleixnera06381f2007-06-23 11:48:40 +0200416
Oleg Nesterovd359b542006-09-29 02:00:55 -0700417 rcu_read_unlock();
Ingo Molnarc87e2832006-06-27 02:54:58 -0700418
419 return p;
420}
421
422/*
423 * This task is holding PI mutexes at exit time => bad.
424 * Kernel cleans up PI-state, but userspace is likely hosed.
425 * (Robust-futex cleanup is separate and might save the day for userspace.)
426 */
427void exit_pi_state_list(struct task_struct *curr)
428{
Ingo Molnarc87e2832006-06-27 02:54:58 -0700429 struct list_head *next, *head = &curr->pi_state_list;
430 struct futex_pi_state *pi_state;
Ingo Molnar627371d2006-07-29 05:16:20 +0200431 struct futex_hash_bucket *hb;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200432 union futex_key key = FUTEX_KEY_INIT;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700433
Thomas Gleixnera0c1e902008-02-23 15:23:57 -0800434 if (!futex_cmpxchg_enabled)
435 return;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700436 /*
437 * We are a ZOMBIE and nobody can enqueue itself on
438 * pi_state_list anymore, but we have to be careful
Ingo Molnar627371d2006-07-29 05:16:20 +0200439 * versus waiters unqueueing themselves:
Ingo Molnarc87e2832006-06-27 02:54:58 -0700440 */
441 spin_lock_irq(&curr->pi_lock);
442 while (!list_empty(head)) {
443
444 next = head->next;
445 pi_state = list_entry(next, struct futex_pi_state, list);
446 key = pi_state->key;
Ingo Molnar627371d2006-07-29 05:16:20 +0200447 hb = hash_futex(&key);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700448 spin_unlock_irq(&curr->pi_lock);
449
Ingo Molnarc87e2832006-06-27 02:54:58 -0700450 spin_lock(&hb->lock);
451
452 spin_lock_irq(&curr->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +0200453 /*
454 * We dropped the pi-lock, so re-check whether this
455 * task still owns the PI-state:
456 */
Ingo Molnarc87e2832006-06-27 02:54:58 -0700457 if (head->next != next) {
458 spin_unlock(&hb->lock);
459 continue;
460 }
461
Ingo Molnarc87e2832006-06-27 02:54:58 -0700462 WARN_ON(pi_state->owner != curr);
Ingo Molnar627371d2006-07-29 05:16:20 +0200463 WARN_ON(list_empty(&pi_state->list));
464 list_del_init(&pi_state->list);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700465 pi_state->owner = NULL;
466 spin_unlock_irq(&curr->pi_lock);
467
468 rt_mutex_unlock(&pi_state->pi_mutex);
469
470 spin_unlock(&hb->lock);
471
472 spin_lock_irq(&curr->pi_lock);
473 }
474 spin_unlock_irq(&curr->pi_lock);
475}
476
477static int
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700478lookup_pi_state(u32 uval, struct futex_hash_bucket *hb,
479 union futex_key *key, struct futex_pi_state **ps)
Ingo Molnarc87e2832006-06-27 02:54:58 -0700480{
481 struct futex_pi_state *pi_state = NULL;
482 struct futex_q *this, *next;
Pierre Peifferec92d082007-05-09 02:35:00 -0700483 struct plist_head *head;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700484 struct task_struct *p;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700485 pid_t pid = uval & FUTEX_TID_MASK;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700486
487 head = &hb->chain;
488
Pierre Peifferec92d082007-05-09 02:35:00 -0700489 plist_for_each_entry_safe(this, next, head, list) {
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700490 if (match_futex(&this->key, key)) {
Ingo Molnarc87e2832006-06-27 02:54:58 -0700491 /*
492 * Another waiter already exists - bump up
493 * the refcount and return its pi_state:
494 */
495 pi_state = this->pi_state;
Thomas Gleixner06a9ec22006-07-10 04:44:30 -0700496 /*
497 * Userspace might have messed up non PI and PI futexes
498 */
499 if (unlikely(!pi_state))
500 return -EINVAL;
501
Ingo Molnar627371d2006-07-29 05:16:20 +0200502 WARN_ON(!atomic_read(&pi_state->refcount));
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700503 WARN_ON(pid && pi_state->owner &&
504 pi_state->owner->pid != pid);
Ingo Molnar627371d2006-07-29 05:16:20 +0200505
Ingo Molnarc87e2832006-06-27 02:54:58 -0700506 atomic_inc(&pi_state->refcount);
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700507 *ps = pi_state;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700508
509 return 0;
510 }
511 }
512
513 /*
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200514 * We are the first waiter - try to look up the real owner and attach
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700515 * the new pi_state to it, but bail out when TID = 0
Ingo Molnarc87e2832006-06-27 02:54:58 -0700516 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700517 if (!pid)
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200518 return -ESRCH;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700519 p = futex_find_get_task(pid);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700520 if (IS_ERR(p))
521 return PTR_ERR(p);
522
523 /*
524 * We need to look at the task state flags to figure out,
525 * whether the task is exiting. To protect against the do_exit
526 * change of the task flags, we do this protected by
527 * p->pi_lock:
528 */
529 spin_lock_irq(&p->pi_lock);
530 if (unlikely(p->flags & PF_EXITING)) {
531 /*
532 * The task is on the way out. When PF_EXITPIDONE is
533 * set, we know that the task has finished the
534 * cleanup:
535 */
536 int ret = (p->flags & PF_EXITPIDONE) ? -ESRCH : -EAGAIN;
537
538 spin_unlock_irq(&p->pi_lock);
539 put_task_struct(p);
540 return ret;
541 }
Ingo Molnarc87e2832006-06-27 02:54:58 -0700542
543 pi_state = alloc_pi_state();
544
545 /*
546 * Initialize the pi_mutex in locked state and make 'p'
547 * the owner of it:
548 */
549 rt_mutex_init_proxy_locked(&pi_state->pi_mutex, p);
550
551 /* Store the key for possible exit cleanups: */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700552 pi_state->key = *key;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700553
Ingo Molnar627371d2006-07-29 05:16:20 +0200554 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -0700555 list_add(&pi_state->list, &p->pi_state_list);
556 pi_state->owner = p;
557 spin_unlock_irq(&p->pi_lock);
558
559 put_task_struct(p);
560
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700561 *ps = pi_state;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700562
563 return 0;
564}
565
Darren Hart1a520842009-04-03 13:39:52 -0700566/**
567 * futex_lock_pi_atomic() - atomic work required to acquire a pi aware futex
Darren Hartbab5bc92009-04-07 23:23:50 -0700568 * @uaddr: the pi futex user address
569 * @hb: the pi futex hash bucket
570 * @key: the futex key associated with uaddr and hb
571 * @ps: the pi_state pointer where we store the result of the
572 * lookup
573 * @task: the task to perform the atomic lock work for. This will
574 * be "current" except in the case of requeue pi.
575 * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0)
Darren Hart1a520842009-04-03 13:39:52 -0700576 *
577 * Returns:
578 * 0 - ready to wait
579 * 1 - acquired the lock
580 * <0 - error
581 *
582 * The hb->lock and futex_key refs shall be held by the caller.
583 */
584static int futex_lock_pi_atomic(u32 __user *uaddr, struct futex_hash_bucket *hb,
585 union futex_key *key,
586 struct futex_pi_state **ps,
Darren Hartbab5bc92009-04-07 23:23:50 -0700587 struct task_struct *task, int set_waiters)
Darren Hart1a520842009-04-03 13:39:52 -0700588{
589 int lock_taken, ret, ownerdied = 0;
590 u32 uval, newval, curval;
591
592retry:
593 ret = lock_taken = 0;
594
595 /*
596 * To avoid races, we attempt to take the lock here again
597 * (by doing a 0 -> TID atomic cmpxchg), while holding all
598 * the locks. It will most likely not succeed.
599 */
600 newval = task_pid_vnr(task);
Darren Hartbab5bc92009-04-07 23:23:50 -0700601 if (set_waiters)
602 newval |= FUTEX_WAITERS;
Darren Hart1a520842009-04-03 13:39:52 -0700603
604 curval = cmpxchg_futex_value_locked(uaddr, 0, newval);
605
606 if (unlikely(curval == -EFAULT))
607 return -EFAULT;
608
609 /*
610 * Detect deadlocks.
611 */
612 if ((unlikely((curval & FUTEX_TID_MASK) == task_pid_vnr(task))))
613 return -EDEADLK;
614
615 /*
616 * Surprise - we got the lock. Just return to userspace:
617 */
618 if (unlikely(!curval))
619 return 1;
620
621 uval = curval;
622
623 /*
624 * Set the FUTEX_WAITERS flag, so the owner will know it has someone
625 * to wake at the next unlock.
626 */
627 newval = curval | FUTEX_WAITERS;
628
629 /*
630 * There are two cases, where a futex might have no owner (the
631 * owner TID is 0): OWNER_DIED. We take over the futex in this
632 * case. We also do an unconditional take over, when the owner
633 * of the futex died.
634 *
635 * This is safe as we are protected by the hash bucket lock !
636 */
637 if (unlikely(ownerdied || !(curval & FUTEX_TID_MASK))) {
638 /* Keep the OWNER_DIED bit */
639 newval = (curval & ~FUTEX_TID_MASK) | task_pid_vnr(task);
640 ownerdied = 0;
641 lock_taken = 1;
642 }
643
644 curval = cmpxchg_futex_value_locked(uaddr, uval, newval);
645
646 if (unlikely(curval == -EFAULT))
647 return -EFAULT;
648 if (unlikely(curval != uval))
649 goto retry;
650
651 /*
652 * We took the lock due to owner died take over.
653 */
654 if (unlikely(lock_taken))
655 return 1;
656
657 /*
658 * We dont have the lock. Look up the PI state (or create it if
659 * we are the first waiter):
660 */
661 ret = lookup_pi_state(uval, hb, key, ps);
662
663 if (unlikely(ret)) {
664 switch (ret) {
665 case -ESRCH:
666 /*
667 * No owner found for this futex. Check if the
668 * OWNER_DIED bit is set to figure out whether
669 * this is a robust futex or not.
670 */
671 if (get_futex_value_locked(&curval, uaddr))
672 return -EFAULT;
673
674 /*
675 * We simply start over in case of a robust
676 * futex. The code above will take the futex
677 * and return happy.
678 */
679 if (curval & FUTEX_OWNER_DIED) {
680 ownerdied = 1;
681 goto retry;
682 }
683 default:
684 break;
685 }
686 }
687
688 return ret;
689}
690
Ingo Molnarc87e2832006-06-27 02:54:58 -0700691/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * The hash bucket lock must be held when this is called.
693 * Afterwards, the futex_q must not be accessed.
694 */
695static void wake_futex(struct futex_q *q)
696{
Pierre Peifferec92d082007-05-09 02:35:00 -0700697 plist_del(&q->list, &q->list.plist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /*
699 * The lock in wake_up_all() is a crucial memory barrier after the
Pierre Peifferec92d082007-05-09 02:35:00 -0700700 * plist_del() and also before assigning to q->lock_ptr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 */
Darren Hart73500ac2008-12-17 17:29:56 -0800702 wake_up(&q->waiter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /*
704 * The waiting task can free the futex_q as soon as this is written,
705 * without taking any locks. This must come last.
Andrew Morton8e311082005-12-23 19:54:46 -0800706 *
Darren Hartb2d09942009-03-12 00:55:37 -0700707 * A memory barrier is required here to prevent the following store to
708 * lock_ptr from getting ahead of the wakeup. Clearing the lock at the
709 * end of wake_up() does not prevent this store from moving.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 */
Ralf Baechleccdea2f2006-12-06 20:40:26 -0800711 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 q->lock_ptr = NULL;
713}
714
Ingo Molnarc87e2832006-06-27 02:54:58 -0700715static int wake_futex_pi(u32 __user *uaddr, u32 uval, struct futex_q *this)
716{
717 struct task_struct *new_owner;
718 struct futex_pi_state *pi_state = this->pi_state;
719 u32 curval, newval;
720
721 if (!pi_state)
722 return -EINVAL;
723
Ingo Molnar217788672007-03-16 13:38:31 -0800724 spin_lock(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700725 new_owner = rt_mutex_next_owner(&pi_state->pi_mutex);
726
727 /*
728 * This happens when we have stolen the lock and the original
729 * pending owner did not enqueue itself back on the rt_mutex.
730 * Thats not a tragedy. We know that way, that a lock waiter
731 * is on the fly. We make the futex_q waiter the pending owner.
732 */
733 if (!new_owner)
734 new_owner = this->task;
735
736 /*
737 * We pass it to the next owner. (The WAITERS bit is always
738 * kept enabled while there is PI state around. We must also
739 * preserve the owner died bit.)
740 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200741 if (!(uval & FUTEX_OWNER_DIED)) {
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700742 int ret = 0;
743
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700744 newval = FUTEX_WAITERS | task_pid_vnr(new_owner);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700745
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700746 curval = cmpxchg_futex_value_locked(uaddr, uval, newval);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700747
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200748 if (curval == -EFAULT)
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700749 ret = -EFAULT;
Thomas Gleixnercde898f2007-12-05 15:46:09 +0100750 else if (curval != uval)
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700751 ret = -EINVAL;
752 if (ret) {
753 spin_unlock(&pi_state->pi_mutex.wait_lock);
754 return ret;
755 }
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200756 }
Ingo Molnarc87e2832006-06-27 02:54:58 -0700757
Ingo Molnar627371d2006-07-29 05:16:20 +0200758 spin_lock_irq(&pi_state->owner->pi_lock);
759 WARN_ON(list_empty(&pi_state->list));
760 list_del_init(&pi_state->list);
761 spin_unlock_irq(&pi_state->owner->pi_lock);
762
763 spin_lock_irq(&new_owner->pi_lock);
764 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -0700765 list_add(&pi_state->list, &new_owner->pi_state_list);
766 pi_state->owner = new_owner;
Ingo Molnar627371d2006-07-29 05:16:20 +0200767 spin_unlock_irq(&new_owner->pi_lock);
768
Ingo Molnar217788672007-03-16 13:38:31 -0800769 spin_unlock(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700770 rt_mutex_unlock(&pi_state->pi_mutex);
771
772 return 0;
773}
774
775static int unlock_futex_pi(u32 __user *uaddr, u32 uval)
776{
777 u32 oldval;
778
779 /*
780 * There is no waiter, so we unlock the futex. The owner died
781 * bit has not to be preserved here. We are the owner:
782 */
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700783 oldval = cmpxchg_futex_value_locked(uaddr, uval, 0);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700784
785 if (oldval == -EFAULT)
786 return oldval;
787 if (oldval != uval)
788 return -EAGAIN;
789
790 return 0;
791}
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793/*
Ingo Molnar8b8f3192006-07-03 00:25:05 -0700794 * Express the locking dependencies for lockdep:
795 */
796static inline void
797double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
798{
799 if (hb1 <= hb2) {
800 spin_lock(&hb1->lock);
801 if (hb1 < hb2)
802 spin_lock_nested(&hb2->lock, SINGLE_DEPTH_NESTING);
803 } else { /* hb1 > hb2 */
804 spin_lock(&hb2->lock);
805 spin_lock_nested(&hb1->lock, SINGLE_DEPTH_NESTING);
806 }
807}
808
Darren Hart5eb3dc62009-03-12 00:55:52 -0700809static inline void
810double_unlock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
811{
Darren Hartf061d352009-03-12 15:11:18 -0700812 spin_unlock(&hb1->lock);
Ingo Molnar88f502f2009-03-13 10:32:07 +0100813 if (hb1 != hb2)
814 spin_unlock(&hb2->lock);
Darren Hart5eb3dc62009-03-12 00:55:52 -0700815}
816
Ingo Molnar8b8f3192006-07-03 00:25:05 -0700817/*
Darren Hartb2d09942009-03-12 00:55:37 -0700818 * Wake up waiters matching bitset queued on this futex (uaddr).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 */
Peter Zijlstrac2f9f202008-09-26 19:32:23 +0200820static int futex_wake(u32 __user *uaddr, int fshared, int nr_wake, u32 bitset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Ingo Molnare2970f22006-06-27 02:54:47 -0700822 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 struct futex_q *this, *next;
Pierre Peifferec92d082007-05-09 02:35:00 -0700824 struct plist_head *head;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200825 union futex_key key = FUTEX_KEY_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 int ret;
827
Thomas Gleixnercd689982008-02-01 17:45:14 +0100828 if (!bitset)
829 return -EINVAL;
830
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700831 ret = get_futex_key(uaddr, fshared, &key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (unlikely(ret != 0))
833 goto out;
834
Ingo Molnare2970f22006-06-27 02:54:47 -0700835 hb = hash_futex(&key);
836 spin_lock(&hb->lock);
837 head = &hb->chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Pierre Peifferec92d082007-05-09 02:35:00 -0700839 plist_for_each_entry_safe(this, next, head, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (match_futex (&this->key, &key)) {
Darren Hart52400ba2009-04-03 13:40:49 -0700841 if (this->pi_state || this->rt_waiter) {
Ingo Molnared6f7b12006-07-01 04:35:46 -0700842 ret = -EINVAL;
843 break;
844 }
Thomas Gleixnercd689982008-02-01 17:45:14 +0100845
846 /* Check if one of the bits is set in both bitsets */
847 if (!(this->bitset & bitset))
848 continue;
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 wake_futex(this);
851 if (++ret >= nr_wake)
852 break;
853 }
854 }
855
Ingo Molnare2970f22006-06-27 02:54:47 -0700856 spin_unlock(&hb->lock);
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200857 put_futex_key(fshared, &key);
Darren Hart42d35d42008-12-29 15:49:53 -0800858out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return ret;
860}
861
862/*
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700863 * Wake up all waiters hashed on the physical page that is mapped
864 * to this virtual address:
865 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700866static int
Peter Zijlstrac2f9f202008-09-26 19:32:23 +0200867futex_wake_op(u32 __user *uaddr1, int fshared, u32 __user *uaddr2,
Ingo Molnare2970f22006-06-27 02:54:47 -0700868 int nr_wake, int nr_wake2, int op)
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700869{
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200870 union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
Ingo Molnare2970f22006-06-27 02:54:47 -0700871 struct futex_hash_bucket *hb1, *hb2;
Pierre Peifferec92d082007-05-09 02:35:00 -0700872 struct plist_head *head;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700873 struct futex_q *this, *next;
Darren Harte4dc5b72009-03-12 00:56:13 -0700874 int ret, op_ret;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700875
Darren Harte4dc5b72009-03-12 00:56:13 -0700876retry:
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700877 ret = get_futex_key(uaddr1, fshared, &key1);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700878 if (unlikely(ret != 0))
879 goto out;
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700880 ret = get_futex_key(uaddr2, fshared, &key2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700881 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -0800882 goto out_put_key1;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700883
Ingo Molnare2970f22006-06-27 02:54:47 -0700884 hb1 = hash_futex(&key1);
885 hb2 = hash_futex(&key2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700886
Ingo Molnar8b8f3192006-07-03 00:25:05 -0700887 double_lock_hb(hb1, hb2);
Darren Harte4dc5b72009-03-12 00:56:13 -0700888retry_private:
Ingo Molnare2970f22006-06-27 02:54:47 -0700889 op_ret = futex_atomic_op_inuser(op, uaddr2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700890 if (unlikely(op_ret < 0)) {
Ingo Molnare2970f22006-06-27 02:54:47 -0700891 u32 dummy;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700892
Darren Hart5eb3dc62009-03-12 00:55:52 -0700893 double_unlock_hb(hb1, hb2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700894
David Howells7ee1dd32006-01-06 00:11:44 -0800895#ifndef CONFIG_MMU
Ingo Molnare2970f22006-06-27 02:54:47 -0700896 /*
897 * we don't get EFAULT from MMU faults if we don't have an MMU,
898 * but we might get them from range checking
899 */
David Howells7ee1dd32006-01-06 00:11:44 -0800900 ret = op_ret;
Darren Hart42d35d42008-12-29 15:49:53 -0800901 goto out_put_keys;
David Howells7ee1dd32006-01-06 00:11:44 -0800902#endif
903
David Gibson796f8d92005-11-07 00:59:33 -0800904 if (unlikely(op_ret != -EFAULT)) {
905 ret = op_ret;
Darren Hart42d35d42008-12-29 15:49:53 -0800906 goto out_put_keys;
David Gibson796f8d92005-11-07 00:59:33 -0800907 }
908
Ingo Molnare2970f22006-06-27 02:54:47 -0700909 ret = get_user(dummy, uaddr2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700910 if (ret)
Darren Hartde87fcc2009-03-12 00:55:46 -0700911 goto out_put_keys;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700912
Darren Harte4dc5b72009-03-12 00:56:13 -0700913 if (!fshared)
914 goto retry_private;
915
Darren Hartde87fcc2009-03-12 00:55:46 -0700916 put_futex_key(fshared, &key2);
917 put_futex_key(fshared, &key1);
Darren Harte4dc5b72009-03-12 00:56:13 -0700918 goto retry;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700919 }
920
Ingo Molnare2970f22006-06-27 02:54:47 -0700921 head = &hb1->chain;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700922
Pierre Peifferec92d082007-05-09 02:35:00 -0700923 plist_for_each_entry_safe(this, next, head, list) {
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700924 if (match_futex (&this->key, &key1)) {
925 wake_futex(this);
926 if (++ret >= nr_wake)
927 break;
928 }
929 }
930
931 if (op_ret > 0) {
Ingo Molnare2970f22006-06-27 02:54:47 -0700932 head = &hb2->chain;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700933
934 op_ret = 0;
Pierre Peifferec92d082007-05-09 02:35:00 -0700935 plist_for_each_entry_safe(this, next, head, list) {
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700936 if (match_futex (&this->key, &key2)) {
937 wake_futex(this);
938 if (++op_ret >= nr_wake2)
939 break;
940 }
941 }
942 ret += op_ret;
943 }
944
Darren Hart5eb3dc62009-03-12 00:55:52 -0700945 double_unlock_hb(hb1, hb2);
Darren Hart42d35d42008-12-29 15:49:53 -0800946out_put_keys:
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200947 put_futex_key(fshared, &key2);
Darren Hart42d35d42008-12-29 15:49:53 -0800948out_put_key1:
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200949 put_futex_key(fshared, &key1);
Darren Hart42d35d42008-12-29 15:49:53 -0800950out:
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700951 return ret;
952}
953
Darren Hart9121e472009-04-03 13:40:31 -0700954/**
955 * requeue_futex() - Requeue a futex_q from one hb to another
956 * @q: the futex_q to requeue
957 * @hb1: the source hash_bucket
958 * @hb2: the target hash_bucket
959 * @key2: the new key for the requeued futex_q
960 */
961static inline
962void requeue_futex(struct futex_q *q, struct futex_hash_bucket *hb1,
963 struct futex_hash_bucket *hb2, union futex_key *key2)
964{
965
966 /*
967 * If key1 and key2 hash to the same bucket, no need to
968 * requeue.
969 */
970 if (likely(&hb1->chain != &hb2->chain)) {
971 plist_del(&q->list, &hb1->chain);
972 plist_add(&q->list, &hb2->chain);
973 q->lock_ptr = &hb2->lock;
974#ifdef CONFIG_DEBUG_PI_LIST
975 q->list.plist.lock = &hb2->lock;
976#endif
977 }
978 get_futex_key_refs(key2);
979 q->key = *key2;
980}
981
Darren Hart52400ba2009-04-03 13:40:49 -0700982/**
983 * requeue_pi_wake_futex() - Wake a task that acquired the lock during requeue
984 * q: the futex_q
985 * key: the key of the requeue target futex
986 *
987 * During futex_requeue, with requeue_pi=1, it is possible to acquire the
988 * target futex if it is uncontended or via a lock steal. Set the futex_q key
989 * to the requeue target futex so the waiter can detect the wakeup on the right
990 * futex, but remove it from the hb and NULL the rt_waiter so it can detect
991 * atomic lock acquisition. Must be called with the q->lock_ptr held.
992 */
993static inline
994void requeue_pi_wake_futex(struct futex_q *q, union futex_key *key)
995{
996 drop_futex_key_refs(&q->key);
997 get_futex_key_refs(key);
998 q->key = *key;
999
1000 WARN_ON(plist_node_empty(&q->list));
1001 plist_del(&q->list, &q->list.plist);
1002
1003 WARN_ON(!q->rt_waiter);
1004 q->rt_waiter = NULL;
1005
1006 wake_up(&q->waiter);
1007}
1008
1009/**
1010 * futex_proxy_trylock_atomic() - Attempt an atomic lock for the top waiter
Darren Hartbab5bc92009-04-07 23:23:50 -07001011 * @pifutex: the user address of the to futex
1012 * @hb1: the from futex hash bucket, must be locked by the caller
1013 * @hb2: the to futex hash bucket, must be locked by the caller
1014 * @key1: the from futex key
1015 * @key2: the to futex key
1016 * @ps: address to store the pi_state pointer
1017 * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0)
Darren Hart52400ba2009-04-03 13:40:49 -07001018 *
1019 * Try and get the lock on behalf of the top waiter if we can do it atomically.
Darren Hartbab5bc92009-04-07 23:23:50 -07001020 * Wake the top waiter if we succeed. If the caller specified set_waiters,
1021 * then direct futex_lock_pi_atomic() to force setting the FUTEX_WAITERS bit.
1022 * hb1 and hb2 must be held by the caller.
Darren Hart52400ba2009-04-03 13:40:49 -07001023 *
1024 * Returns:
1025 * 0 - failed to acquire the lock atomicly
1026 * 1 - acquired the lock
1027 * <0 - error
1028 */
1029static int futex_proxy_trylock_atomic(u32 __user *pifutex,
1030 struct futex_hash_bucket *hb1,
1031 struct futex_hash_bucket *hb2,
1032 union futex_key *key1, union futex_key *key2,
Darren Hartbab5bc92009-04-07 23:23:50 -07001033 struct futex_pi_state **ps, int set_waiters)
Darren Hart52400ba2009-04-03 13:40:49 -07001034{
Darren Hartbab5bc92009-04-07 23:23:50 -07001035 struct futex_q *top_waiter = NULL;
Darren Hart52400ba2009-04-03 13:40:49 -07001036 u32 curval;
1037 int ret;
1038
1039 if (get_futex_value_locked(&curval, pifutex))
1040 return -EFAULT;
1041
Darren Hartbab5bc92009-04-07 23:23:50 -07001042 /*
1043 * Find the top_waiter and determine if there are additional waiters.
1044 * If the caller intends to requeue more than 1 waiter to pifutex,
1045 * force futex_lock_pi_atomic() to set the FUTEX_WAITERS bit now,
1046 * as we have means to handle the possible fault. If not, don't set
1047 * the bit unecessarily as it will force the subsequent unlock to enter
1048 * the kernel.
1049 */
Darren Hart52400ba2009-04-03 13:40:49 -07001050 top_waiter = futex_top_waiter(hb1, key1);
1051
1052 /* There are no waiters, nothing for us to do. */
1053 if (!top_waiter)
1054 return 0;
1055
1056 /*
Darren Hartbab5bc92009-04-07 23:23:50 -07001057 * Try to take the lock for top_waiter. Set the FUTEX_WAITERS bit in
1058 * the contended case or if set_waiters is 1. The pi_state is returned
1059 * in ps in contended cases.
Darren Hart52400ba2009-04-03 13:40:49 -07001060 */
Darren Hartbab5bc92009-04-07 23:23:50 -07001061 ret = futex_lock_pi_atomic(pifutex, hb2, key2, ps, top_waiter->task,
1062 set_waiters);
Darren Hart52400ba2009-04-03 13:40:49 -07001063 if (ret == 1)
1064 requeue_pi_wake_futex(top_waiter, key2);
1065
1066 return ret;
1067}
1068
1069/**
1070 * futex_requeue() - Requeue waiters from uaddr1 to uaddr2
1071 * uaddr1: source futex user address
1072 * uaddr2: target futex user address
1073 * nr_wake: number of waiters to wake (must be 1 for requeue_pi)
1074 * nr_requeue: number of waiters to requeue (0-INT_MAX)
1075 * requeue_pi: if we are attempting to requeue from a non-pi futex to a
1076 * pi futex (pi to pi requeue is not supported)
1077 *
1078 * Requeue waiters on uaddr1 to uaddr2. In the requeue_pi case, try to acquire
1079 * uaddr2 atomically on behalf of the top waiter.
1080 *
1081 * Returns:
1082 * >=0 - on success, the number of tasks requeued or woken
1083 * <0 - on error
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 */
Peter Zijlstrac2f9f202008-09-26 19:32:23 +02001085static int futex_requeue(u32 __user *uaddr1, int fshared, u32 __user *uaddr2,
Darren Hart52400ba2009-04-03 13:40:49 -07001086 int nr_wake, int nr_requeue, u32 *cmpval,
1087 int requeue_pi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001089 union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
Darren Hart52400ba2009-04-03 13:40:49 -07001090 int drop_count = 0, task_count = 0, ret;
1091 struct futex_pi_state *pi_state = NULL;
Ingo Molnare2970f22006-06-27 02:54:47 -07001092 struct futex_hash_bucket *hb1, *hb2;
Pierre Peifferec92d082007-05-09 02:35:00 -07001093 struct plist_head *head1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 struct futex_q *this, *next;
Darren Hart52400ba2009-04-03 13:40:49 -07001095 u32 curval2;
1096
1097 if (requeue_pi) {
1098 /*
1099 * requeue_pi requires a pi_state, try to allocate it now
1100 * without any locks in case it fails.
1101 */
1102 if (refill_pi_state_cache())
1103 return -ENOMEM;
1104 /*
1105 * requeue_pi must wake as many tasks as it can, up to nr_wake
1106 * + nr_requeue, since it acquires the rt_mutex prior to
1107 * returning to userspace, so as to not leave the rt_mutex with
1108 * waiters and no owner. However, second and third wake-ups
1109 * cannot be predicted as they involve race conditions with the
1110 * first wake and a fault while looking up the pi_state. Both
1111 * pthread_cond_signal() and pthread_cond_broadcast() should
1112 * use nr_wake=1.
1113 */
1114 if (nr_wake != 1)
1115 return -EINVAL;
1116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Darren Hart42d35d42008-12-29 15:49:53 -08001118retry:
Darren Hart52400ba2009-04-03 13:40:49 -07001119 if (pi_state != NULL) {
1120 /*
1121 * We will have to lookup the pi_state again, so free this one
1122 * to keep the accounting correct.
1123 */
1124 free_pi_state(pi_state);
1125 pi_state = NULL;
1126 }
1127
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001128 ret = get_futex_key(uaddr1, fshared, &key1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 if (unlikely(ret != 0))
1130 goto out;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001131 ret = get_futex_key(uaddr2, fshared, &key2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08001133 goto out_put_key1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Ingo Molnare2970f22006-06-27 02:54:47 -07001135 hb1 = hash_futex(&key1);
1136 hb2 = hash_futex(&key2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Darren Harte4dc5b72009-03-12 00:56:13 -07001138retry_private:
Ingo Molnar8b8f3192006-07-03 00:25:05 -07001139 double_lock_hb(hb1, hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Ingo Molnare2970f22006-06-27 02:54:47 -07001141 if (likely(cmpval != NULL)) {
1142 u32 curval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Ingo Molnare2970f22006-06-27 02:54:47 -07001144 ret = get_futex_value_locked(&curval, uaddr1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 if (unlikely(ret)) {
Darren Hart5eb3dc62009-03-12 00:55:52 -07001147 double_unlock_hb(hb1, hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Darren Harte4dc5b72009-03-12 00:56:13 -07001149 ret = get_user(curval, uaddr1);
1150 if (ret)
1151 goto out_put_keys;
1152
1153 if (!fshared)
1154 goto retry_private;
1155
Darren Hartde87fcc2009-03-12 00:55:46 -07001156 put_futex_key(fshared, &key2);
1157 put_futex_key(fshared, &key1);
Darren Harte4dc5b72009-03-12 00:56:13 -07001158 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
Ingo Molnare2970f22006-06-27 02:54:47 -07001160 if (curval != *cmpval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 ret = -EAGAIN;
1162 goto out_unlock;
1163 }
1164 }
1165
Darren Hart52400ba2009-04-03 13:40:49 -07001166 if (requeue_pi && (task_count - nr_wake < nr_requeue)) {
Darren Hartbab5bc92009-04-07 23:23:50 -07001167 /*
1168 * Attempt to acquire uaddr2 and wake the top waiter. If we
1169 * intend to requeue waiters, force setting the FUTEX_WAITERS
1170 * bit. We force this here where we are able to easily handle
1171 * faults rather in the requeue loop below.
1172 */
Darren Hart52400ba2009-04-03 13:40:49 -07001173 ret = futex_proxy_trylock_atomic(uaddr2, hb1, hb2, &key1,
Darren Hartbab5bc92009-04-07 23:23:50 -07001174 &key2, &pi_state, nr_requeue);
Darren Hart52400ba2009-04-03 13:40:49 -07001175
1176 /*
1177 * At this point the top_waiter has either taken uaddr2 or is
1178 * waiting on it. If the former, then the pi_state will not
1179 * exist yet, look it up one more time to ensure we have a
1180 * reference to it.
1181 */
1182 if (ret == 1) {
1183 WARN_ON(pi_state);
1184 task_count++;
1185 ret = get_futex_value_locked(&curval2, uaddr2);
1186 if (!ret)
1187 ret = lookup_pi_state(curval2, hb2, &key2,
1188 &pi_state);
1189 }
1190
1191 switch (ret) {
1192 case 0:
1193 break;
1194 case -EFAULT:
1195 double_unlock_hb(hb1, hb2);
1196 put_futex_key(fshared, &key2);
1197 put_futex_key(fshared, &key1);
1198 ret = get_user(curval2, uaddr2);
1199 if (!ret)
1200 goto retry;
1201 goto out;
1202 case -EAGAIN:
1203 /* The owner was exiting, try again. */
1204 double_unlock_hb(hb1, hb2);
1205 put_futex_key(fshared, &key2);
1206 put_futex_key(fshared, &key1);
1207 cond_resched();
1208 goto retry;
1209 default:
1210 goto out_unlock;
1211 }
1212 }
1213
Ingo Molnare2970f22006-06-27 02:54:47 -07001214 head1 = &hb1->chain;
Pierre Peifferec92d082007-05-09 02:35:00 -07001215 plist_for_each_entry_safe(this, next, head1, list) {
Darren Hart52400ba2009-04-03 13:40:49 -07001216 if (task_count - nr_wake >= nr_requeue)
1217 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Darren Hart52400ba2009-04-03 13:40:49 -07001219 if (!match_futex(&this->key, &key1))
1220 continue;
1221
1222 WARN_ON(!requeue_pi && this->rt_waiter);
1223 WARN_ON(requeue_pi && !this->rt_waiter);
1224
1225 /*
1226 * Wake nr_wake waiters. For requeue_pi, if we acquired the
1227 * lock, we already woke the top_waiter. If not, it will be
1228 * woken by futex_unlock_pi().
1229 */
1230 if (++task_count <= nr_wake && !requeue_pi) {
1231 wake_futex(this);
1232 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
Darren Hart52400ba2009-04-03 13:40:49 -07001234
1235 /*
1236 * Requeue nr_requeue waiters and possibly one more in the case
1237 * of requeue_pi if we couldn't acquire the lock atomically.
1238 */
1239 if (requeue_pi) {
1240 /* Prepare the waiter to take the rt_mutex. */
1241 atomic_inc(&pi_state->refcount);
1242 this->pi_state = pi_state;
1243 ret = rt_mutex_start_proxy_lock(&pi_state->pi_mutex,
1244 this->rt_waiter,
1245 this->task, 1);
1246 if (ret == 1) {
1247 /* We got the lock. */
1248 requeue_pi_wake_futex(this, &key2);
1249 continue;
1250 } else if (ret) {
1251 /* -EDEADLK */
1252 this->pi_state = NULL;
1253 free_pi_state(pi_state);
1254 goto out_unlock;
1255 }
1256 }
1257 requeue_futex(this, hb1, hb2, &key2);
1258 drop_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260
1261out_unlock:
Darren Hart5eb3dc62009-03-12 00:55:52 -07001262 double_unlock_hb(hb1, hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Rusty Russell9adef582007-05-08 00:26:42 -07001264 /* drop_futex_key_refs() must be called outside the spinlocks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 while (--drop_count >= 0)
Rusty Russell9adef582007-05-08 00:26:42 -07001266 drop_futex_key_refs(&key1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Darren Hart42d35d42008-12-29 15:49:53 -08001268out_put_keys:
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001269 put_futex_key(fshared, &key2);
Darren Hart42d35d42008-12-29 15:49:53 -08001270out_put_key1:
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001271 put_futex_key(fshared, &key1);
Darren Hart42d35d42008-12-29 15:49:53 -08001272out:
Darren Hart52400ba2009-04-03 13:40:49 -07001273 if (pi_state != NULL)
1274 free_pi_state(pi_state);
1275 return ret ? ret : task_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
1278/* The key must be already stored in q->key. */
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01001279static inline struct futex_hash_bucket *queue_lock(struct futex_q *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
Ingo Molnare2970f22006-06-27 02:54:47 -07001281 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Darren Hart73500ac2008-12-17 17:29:56 -08001283 init_waitqueue_head(&q->waiter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Rusty Russell9adef582007-05-08 00:26:42 -07001285 get_futex_key_refs(&q->key);
Ingo Molnare2970f22006-06-27 02:54:47 -07001286 hb = hash_futex(&q->key);
1287 q->lock_ptr = &hb->lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Ingo Molnare2970f22006-06-27 02:54:47 -07001289 spin_lock(&hb->lock);
1290 return hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291}
1292
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01001293static inline void queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Pierre Peifferec92d082007-05-09 02:35:00 -07001295 int prio;
1296
1297 /*
1298 * The priority used to register this element is
1299 * - either the real thread-priority for the real-time threads
1300 * (i.e. threads with a priority lower than MAX_RT_PRIO)
1301 * - or MAX_RT_PRIO for non-RT threads.
1302 * Thus, all RT-threads are woken first in priority order, and
1303 * the others are woken last, in FIFO order.
1304 */
1305 prio = min(current->normal_prio, MAX_RT_PRIO);
1306
1307 plist_node_init(&q->list, prio);
1308#ifdef CONFIG_DEBUG_PI_LIST
1309 q->list.plist.lock = &hb->lock;
1310#endif
1311 plist_add(&q->list, &hb->chain);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001312 q->task = current;
Ingo Molnare2970f22006-06-27 02:54:47 -07001313 spin_unlock(&hb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
1315
1316static inline void
Ingo Molnare2970f22006-06-27 02:54:47 -07001317queue_unlock(struct futex_q *q, struct futex_hash_bucket *hb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
Ingo Molnare2970f22006-06-27 02:54:47 -07001319 spin_unlock(&hb->lock);
Rusty Russell9adef582007-05-08 00:26:42 -07001320 drop_futex_key_refs(&q->key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
1323/*
1324 * queue_me and unqueue_me must be called as a pair, each
1325 * exactly once. They are called with the hashed spinlock held.
1326 */
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328/* Return 1 if we were still queued (ie. 0 means we were woken) */
1329static int unqueue_me(struct futex_q *q)
1330{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 spinlock_t *lock_ptr;
Ingo Molnare2970f22006-06-27 02:54:47 -07001332 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 /* In the common case we don't take the spinlock, which is nice. */
Darren Hart42d35d42008-12-29 15:49:53 -08001335retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 lock_ptr = q->lock_ptr;
Christian Borntraegere91467e2006-08-05 12:13:52 -07001337 barrier();
Stephen Hemmingerc80544d2007-10-18 03:07:05 -07001338 if (lock_ptr != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 spin_lock(lock_ptr);
1340 /*
1341 * q->lock_ptr can change between reading it and
1342 * spin_lock(), causing us to take the wrong lock. This
1343 * corrects the race condition.
1344 *
1345 * Reasoning goes like this: if we have the wrong lock,
1346 * q->lock_ptr must have changed (maybe several times)
1347 * between reading it and the spin_lock(). It can
1348 * change again after the spin_lock() but only if it was
1349 * already changed before the spin_lock(). It cannot,
1350 * however, change back to the original value. Therefore
1351 * we can detect whether we acquired the correct lock.
1352 */
1353 if (unlikely(lock_ptr != q->lock_ptr)) {
1354 spin_unlock(lock_ptr);
1355 goto retry;
1356 }
Pierre Peifferec92d082007-05-09 02:35:00 -07001357 WARN_ON(plist_node_empty(&q->list));
1358 plist_del(&q->list, &q->list.plist);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001359
1360 BUG_ON(q->pi_state);
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 spin_unlock(lock_ptr);
1363 ret = 1;
1364 }
1365
Rusty Russell9adef582007-05-08 00:26:42 -07001366 drop_futex_key_refs(&q->key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 return ret;
1368}
1369
Ingo Molnarc87e2832006-06-27 02:54:58 -07001370/*
1371 * PI futexes can not be requeued and must remove themself from the
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001372 * hash bucket. The hash bucket lock (i.e. lock_ptr) is held on entry
1373 * and dropped here.
Ingo Molnarc87e2832006-06-27 02:54:58 -07001374 */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001375static void unqueue_me_pi(struct futex_q *q)
Ingo Molnarc87e2832006-06-27 02:54:58 -07001376{
Pierre Peifferec92d082007-05-09 02:35:00 -07001377 WARN_ON(plist_node_empty(&q->list));
1378 plist_del(&q->list, &q->list.plist);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001379
1380 BUG_ON(!q->pi_state);
1381 free_pi_state(q->pi_state);
1382 q->pi_state = NULL;
1383
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001384 spin_unlock(q->lock_ptr);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001385
Rusty Russell9adef582007-05-08 00:26:42 -07001386 drop_futex_key_refs(&q->key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001387}
1388
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001389/*
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001390 * Fixup the pi_state owner with the new owner.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001391 *
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001392 * Must be called with hash bucket lock held and mm->sem held for non
1393 * private futexes.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001394 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001395static int fixup_pi_state_owner(u32 __user *uaddr, struct futex_q *q,
Peter Zijlstrac2f9f202008-09-26 19:32:23 +02001396 struct task_struct *newowner, int fshared)
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001397{
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001398 u32 newtid = task_pid_vnr(newowner) | FUTEX_WAITERS;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001399 struct futex_pi_state *pi_state = q->pi_state;
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001400 struct task_struct *oldowner = pi_state->owner;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001401 u32 uval, curval, newval;
Darren Harte4dc5b72009-03-12 00:56:13 -07001402 int ret;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001403
1404 /* Owner died? */
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001405 if (!pi_state->owner)
1406 newtid |= FUTEX_OWNER_DIED;
1407
1408 /*
1409 * We are here either because we stole the rtmutex from the
1410 * pending owner or we are the pending owner which failed to
1411 * get the rtmutex. We have to replace the pending owner TID
1412 * in the user space variable. This must be atomic as we have
1413 * to preserve the owner died bit here.
1414 *
Darren Hartb2d09942009-03-12 00:55:37 -07001415 * Note: We write the user space value _before_ changing the pi_state
1416 * because we can fault here. Imagine swapped out pages or a fork
1417 * that marked all the anonymous memory readonly for cow.
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001418 *
1419 * Modifying pi_state _before_ the user space value would
1420 * leave the pi_state in an inconsistent state when we fault
1421 * here, because we need to drop the hash bucket lock to
1422 * handle the fault. This might be observed in the PID check
1423 * in lookup_pi_state.
1424 */
1425retry:
1426 if (get_futex_value_locked(&uval, uaddr))
1427 goto handle_fault;
1428
1429 while (1) {
1430 newval = (uval & FUTEX_OWNER_DIED) | newtid;
1431
1432 curval = cmpxchg_futex_value_locked(uaddr, uval, newval);
1433
1434 if (curval == -EFAULT)
1435 goto handle_fault;
1436 if (curval == uval)
1437 break;
1438 uval = curval;
1439 }
1440
1441 /*
1442 * We fixed up user space. Now we need to fix the pi_state
1443 * itself.
1444 */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001445 if (pi_state->owner != NULL) {
1446 spin_lock_irq(&pi_state->owner->pi_lock);
1447 WARN_ON(list_empty(&pi_state->list));
1448 list_del_init(&pi_state->list);
1449 spin_unlock_irq(&pi_state->owner->pi_lock);
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001450 }
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001451
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001452 pi_state->owner = newowner;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001453
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001454 spin_lock_irq(&newowner->pi_lock);
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001455 WARN_ON(!list_empty(&pi_state->list));
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001456 list_add(&pi_state->list, &newowner->pi_state_list);
1457 spin_unlock_irq(&newowner->pi_lock);
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001458 return 0;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001459
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001460 /*
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001461 * To handle the page fault we need to drop the hash bucket
1462 * lock here. That gives the other task (either the pending
1463 * owner itself or the task which stole the rtmutex) the
1464 * chance to try the fixup of the pi_state. So once we are
1465 * back from handling the fault we need to check the pi_state
1466 * after reacquiring the hash bucket lock and before trying to
1467 * do another fixup. When the fixup has been done already we
1468 * simply return.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001469 */
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001470handle_fault:
1471 spin_unlock(q->lock_ptr);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001472
Darren Harte4dc5b72009-03-12 00:56:13 -07001473 ret = get_user(uval, uaddr);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001474
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001475 spin_lock(q->lock_ptr);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001476
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001477 /*
1478 * Check if someone else fixed it for us:
1479 */
1480 if (pi_state->owner != oldowner)
1481 return 0;
1482
1483 if (ret)
1484 return ret;
1485
1486 goto retry;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001487}
1488
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001489/*
1490 * In case we must use restart_block to restart a futex_wait,
Steven Rostedtce6bd422007-12-05 15:46:09 +01001491 * we encode in the 'flags' shared capability
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001492 */
Thomas Gleixner1acdac12008-11-20 10:02:53 -08001493#define FLAGS_SHARED 0x01
1494#define FLAGS_CLOCKRT 0x02
Darren Harta72188d2009-04-03 13:40:22 -07001495#define FLAGS_HAS_TIMEOUT 0x04
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001496
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001497static long futex_wait_restart(struct restart_block *restart);
Darren Hart52400ba2009-04-03 13:40:49 -07001498static long futex_lock_pi_restart(struct restart_block *restart);
Thomas Gleixner36cf3b52007-07-15 23:41:20 -07001499
Darren Hartca5f9522009-04-03 13:39:33 -07001500/**
Darren Hartdd973992009-04-03 13:40:02 -07001501 * fixup_owner() - Post lock pi_state and corner case management
1502 * @uaddr: user address of the futex
1503 * @fshared: whether the futex is shared (1) or not (0)
1504 * @q: futex_q (contains pi_state and access to the rt_mutex)
1505 * @locked: if the attempt to take the rt_mutex succeeded (1) or not (0)
1506 *
1507 * After attempting to lock an rt_mutex, this function is called to cleanup
1508 * the pi_state owner as well as handle race conditions that may allow us to
1509 * acquire the lock. Must be called with the hb lock held.
1510 *
1511 * Returns:
1512 * 1 - success, lock taken
1513 * 0 - success, lock not taken
1514 * <0 - on error (-EFAULT)
1515 */
1516static int fixup_owner(u32 __user *uaddr, int fshared, struct futex_q *q,
1517 int locked)
1518{
1519 struct task_struct *owner;
1520 int ret = 0;
1521
1522 if (locked) {
1523 /*
1524 * Got the lock. We might not be the anticipated owner if we
1525 * did a lock-steal - fix up the PI-state in that case:
1526 */
1527 if (q->pi_state->owner != current)
1528 ret = fixup_pi_state_owner(uaddr, q, current, fshared);
1529 goto out;
1530 }
1531
1532 /*
1533 * Catch the rare case, where the lock was released when we were on the
1534 * way back before we locked the hash bucket.
1535 */
1536 if (q->pi_state->owner == current) {
1537 /*
1538 * Try to get the rt_mutex now. This might fail as some other
1539 * task acquired the rt_mutex after we removed ourself from the
1540 * rt_mutex waiters list.
1541 */
1542 if (rt_mutex_trylock(&q->pi_state->pi_mutex)) {
1543 locked = 1;
1544 goto out;
1545 }
1546
1547 /*
1548 * pi_state is incorrect, some other task did a lock steal and
1549 * we returned due to timeout or signal without taking the
1550 * rt_mutex. Too late. We can access the rt_mutex_owner without
1551 * locking, as the other task is now blocked on the hash bucket
1552 * lock. Fix the state up.
1553 */
1554 owner = rt_mutex_owner(&q->pi_state->pi_mutex);
1555 ret = fixup_pi_state_owner(uaddr, q, owner, fshared);
1556 goto out;
1557 }
1558
1559 /*
1560 * Paranoia check. If we did not take the lock, then we should not be
1561 * the owner, nor the pending owner, of the rt_mutex.
1562 */
1563 if (rt_mutex_owner(&q->pi_state->pi_mutex) == current)
1564 printk(KERN_ERR "fixup_owner: ret = %d pi-mutex: %p "
1565 "pi-state %p\n", ret,
1566 q->pi_state->pi_mutex.owner,
1567 q->pi_state->owner);
1568
1569out:
1570 return ret ? ret : locked;
1571}
1572
1573/**
Darren Hartca5f9522009-04-03 13:39:33 -07001574 * futex_wait_queue_me() - queue_me() and wait for wakeup, timeout, or signal
1575 * @hb: the futex hash bucket, must be locked by the caller
1576 * @q: the futex_q to queue up on
1577 * @timeout: the prepared hrtimer_sleeper, or null for no timeout
1578 * @wait: the wait_queue to add to the futex_q after queueing in the hb
1579 */
1580static void futex_wait_queue_me(struct futex_hash_bucket *hb, struct futex_q *q,
1581 struct hrtimer_sleeper *timeout,
1582 wait_queue_t *wait)
1583{
1584 queue_me(q, hb);
1585
1586 /*
1587 * There might have been scheduling since the queue_me(), as we
1588 * cannot hold a spinlock across the get_user() in case it
1589 * faults, and we cannot just set TASK_INTERRUPTIBLE state when
1590 * queueing ourselves into the futex hash. This code thus has to
1591 * rely on the futex_wake() code removing us from hash when it
1592 * wakes us up.
1593 */
1594
1595 /* add_wait_queue is the barrier after __set_current_state. */
1596 __set_current_state(TASK_INTERRUPTIBLE);
1597
1598 /*
1599 * Add current as the futex_q waiter. We don't remove ourselves from
1600 * the wait_queue because we are the only user of it.
1601 */
1602 add_wait_queue(&q->waiter, wait);
1603
1604 /* Arm the timer */
1605 if (timeout) {
1606 hrtimer_start_expires(&timeout->timer, HRTIMER_MODE_ABS);
1607 if (!hrtimer_active(&timeout->timer))
1608 timeout->task = NULL;
1609 }
1610
1611 /*
1612 * !plist_node_empty() is safe here without any lock.
1613 * q.lock_ptr != 0 is not safe, because of ordering against wakeup.
1614 */
1615 if (likely(!plist_node_empty(&q->list))) {
1616 /*
1617 * If the timer has already expired, current will already be
1618 * flagged for rescheduling. Only call schedule if there
1619 * is no timeout, or if it has yet to expire.
1620 */
1621 if (!timeout || timeout->task)
1622 schedule();
1623 }
1624 __set_current_state(TASK_RUNNING);
1625}
1626
Darren Hartf8010732009-04-03 13:40:40 -07001627/**
1628 * futex_wait_setup() - Prepare to wait on a futex
1629 * @uaddr: the futex userspace address
1630 * @val: the expected value
1631 * @fshared: whether the futex is shared (1) or not (0)
1632 * @q: the associated futex_q
1633 * @hb: storage for hash_bucket pointer to be returned to caller
1634 *
1635 * Setup the futex_q and locate the hash_bucket. Get the futex value and
1636 * compare it with the expected value. Handle atomic faults internally.
1637 * Return with the hb lock held and a q.key reference on success, and unlocked
1638 * with no q.key reference on failure.
1639 *
1640 * Returns:
1641 * 0 - uaddr contains val and hb has been locked
1642 * <1 - -EFAULT or -EWOULDBLOCK (uaddr does not contain val) and hb is unlcoked
1643 */
1644static int futex_wait_setup(u32 __user *uaddr, u32 val, int fshared,
1645 struct futex_q *q, struct futex_hash_bucket **hb)
1646{
1647 u32 uval;
1648 int ret;
1649
1650 /*
1651 * Access the page AFTER the hash-bucket is locked.
1652 * Order is important:
1653 *
1654 * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
1655 * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); }
1656 *
1657 * The basic logical guarantee of a futex is that it blocks ONLY
1658 * if cond(var) is known to be true at the time of blocking, for
1659 * any cond. If we queued after testing *uaddr, that would open
1660 * a race condition where we could block indefinitely with
1661 * cond(var) false, which would violate the guarantee.
1662 *
1663 * A consequence is that futex_wait() can return zero and absorb
1664 * a wakeup when *uaddr != val on entry to the syscall. This is
1665 * rare, but normal.
1666 */
1667retry:
1668 q->key = FUTEX_KEY_INIT;
1669 ret = get_futex_key(uaddr, fshared, &q->key);
1670 if (unlikely(ret != 0))
Darren Harta5a2a0c2009-04-10 09:50:05 -07001671 return ret;
Darren Hartf8010732009-04-03 13:40:40 -07001672
1673retry_private:
1674 *hb = queue_lock(q);
1675
1676 ret = get_futex_value_locked(&uval, uaddr);
1677
1678 if (ret) {
1679 queue_unlock(q, *hb);
1680
1681 ret = get_user(uval, uaddr);
1682 if (ret)
1683 goto out;
1684
1685 if (!fshared)
1686 goto retry_private;
1687
1688 put_futex_key(fshared, &q->key);
1689 goto retry;
1690 }
1691
1692 if (uval != val) {
1693 queue_unlock(q, *hb);
1694 ret = -EWOULDBLOCK;
1695 }
1696
1697out:
1698 if (ret)
1699 put_futex_key(fshared, &q->key);
1700 return ret;
1701}
1702
Peter Zijlstrac2f9f202008-09-26 19:32:23 +02001703static int futex_wait(u32 __user *uaddr, int fshared,
Thomas Gleixner1acdac12008-11-20 10:02:53 -08001704 u32 val, ktime_t *abs_time, u32 bitset, int clockrt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Darren Hartca5f9522009-04-03 13:39:33 -07001706 struct hrtimer_sleeper timeout, *to = NULL;
1707 DECLARE_WAITQUEUE(wait, current);
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001708 struct restart_block *restart;
Ingo Molnare2970f22006-06-27 02:54:47 -07001709 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 struct futex_q q;
Ingo Molnare2970f22006-06-27 02:54:47 -07001711 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Thomas Gleixnercd689982008-02-01 17:45:14 +01001713 if (!bitset)
1714 return -EINVAL;
1715
Ingo Molnarc87e2832006-06-27 02:54:58 -07001716 q.pi_state = NULL;
Thomas Gleixnercd689982008-02-01 17:45:14 +01001717 q.bitset = bitset;
Darren Hart52400ba2009-04-03 13:40:49 -07001718 q.rt_waiter = NULL;
Darren Hartca5f9522009-04-03 13:39:33 -07001719
1720 if (abs_time) {
1721 to = &timeout;
1722
1723 hrtimer_init_on_stack(&to->timer, clockrt ? CLOCK_REALTIME :
1724 CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
1725 hrtimer_init_sleeper(to, current);
1726 hrtimer_set_expires_range_ns(&to->timer, *abs_time,
1727 current->timer_slack_ns);
1728 }
1729
Darren Hartf8010732009-04-03 13:40:40 -07001730 /* Prepare to wait on uaddr. */
1731 ret = futex_wait_setup(uaddr, val, fshared, &q, &hb);
1732 if (ret)
Darren Hart42d35d42008-12-29 15:49:53 -08001733 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Darren Hartca5f9522009-04-03 13:39:33 -07001735 /* queue_me and wait for wakeup, timeout, or a signal. */
1736 futex_wait_queue_me(hb, &q, to, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738 /* If we were woken (and unqueued), we succeeded, whatever. */
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001739 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (!unqueue_me(&q))
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001741 goto out_put_key;
1742 ret = -ETIMEDOUT;
Darren Hartca5f9522009-04-03 13:39:33 -07001743 if (to && !to->task)
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001744 goto out_put_key;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001745
Ingo Molnare2970f22006-06-27 02:54:47 -07001746 /*
1747 * We expect signal_pending(current), but another thread may
1748 * have handled it for us already.
1749 */
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001750 ret = -ERESTARTSYS;
Pierre Peifferc19384b2007-05-09 02:35:02 -07001751 if (!abs_time)
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001752 goto out_put_key;
Steven Rostedtce6bd422007-12-05 15:46:09 +01001753
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001754 restart = &current_thread_info()->restart_block;
1755 restart->fn = futex_wait_restart;
1756 restart->futex.uaddr = (u32 *)uaddr;
1757 restart->futex.val = val;
1758 restart->futex.time = abs_time->tv64;
1759 restart->futex.bitset = bitset;
Darren Harta72188d2009-04-03 13:40:22 -07001760 restart->futex.flags = FLAGS_HAS_TIMEOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001762 if (fshared)
1763 restart->futex.flags |= FLAGS_SHARED;
1764 if (clockrt)
1765 restart->futex.flags |= FLAGS_CLOCKRT;
1766
1767 ret = -ERESTART_RESTARTBLOCK;
1768
1769out_put_key:
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001770 put_futex_key(fshared, &q.key);
Darren Hart42d35d42008-12-29 15:49:53 -08001771out:
Darren Hartca5f9522009-04-03 13:39:33 -07001772 if (to) {
1773 hrtimer_cancel(&to->timer);
1774 destroy_hrtimer_on_stack(&to->timer);
1775 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001776 return ret;
1777}
1778
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001779
1780static long futex_wait_restart(struct restart_block *restart)
1781{
Steven Rostedtce6bd422007-12-05 15:46:09 +01001782 u32 __user *uaddr = (u32 __user *)restart->futex.uaddr;
Peter Zijlstrac2f9f202008-09-26 19:32:23 +02001783 int fshared = 0;
Darren Harta72188d2009-04-03 13:40:22 -07001784 ktime_t t, *tp = NULL;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001785
Darren Harta72188d2009-04-03 13:40:22 -07001786 if (restart->futex.flags & FLAGS_HAS_TIMEOUT) {
1787 t.tv64 = restart->futex.time;
1788 tp = &t;
1789 }
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001790 restart->fn = do_no_restart_syscall;
Steven Rostedtce6bd422007-12-05 15:46:09 +01001791 if (restart->futex.flags & FLAGS_SHARED)
Peter Zijlstrac2f9f202008-09-26 19:32:23 +02001792 fshared = 1;
Darren Harta72188d2009-04-03 13:40:22 -07001793 return (long)futex_wait(uaddr, fshared, restart->futex.val, tp,
Thomas Gleixner1acdac12008-11-20 10:02:53 -08001794 restart->futex.bitset,
1795 restart->futex.flags & FLAGS_CLOCKRT);
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001796}
1797
1798
Ingo Molnarc87e2832006-06-27 02:54:58 -07001799/*
1800 * Userspace tried a 0 -> TID atomic transition of the futex value
1801 * and failed. The kernel side here does the whole locking operation:
1802 * if there are waiters then it will block, it does PI, etc. (Due to
1803 * races the kernel might see a 0 value of the futex too.)
1804 */
Peter Zijlstrac2f9f202008-09-26 19:32:23 +02001805static int futex_lock_pi(u32 __user *uaddr, int fshared,
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001806 int detect, ktime_t *time, int trylock)
Ingo Molnarc87e2832006-06-27 02:54:58 -07001807{
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001808 struct hrtimer_sleeper timeout, *to = NULL;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001809 struct futex_hash_bucket *hb;
Darren Hart1a520842009-04-03 13:39:52 -07001810 u32 uval;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001811 struct futex_q q;
Darren Hartdd973992009-04-03 13:40:02 -07001812 int res, ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001813
1814 if (refill_pi_state_cache())
1815 return -ENOMEM;
1816
Pierre Peifferc19384b2007-05-09 02:35:02 -07001817 if (time) {
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001818 to = &timeout;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001819 hrtimer_init_on_stack(&to->timer, CLOCK_REALTIME,
1820 HRTIMER_MODE_ABS);
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001821 hrtimer_init_sleeper(to, current);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001822 hrtimer_set_expires(&to->timer, *time);
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001823 }
1824
Ingo Molnarc87e2832006-06-27 02:54:58 -07001825 q.pi_state = NULL;
Darren Hart52400ba2009-04-03 13:40:49 -07001826 q.rt_waiter = NULL;
Darren Hart42d35d42008-12-29 15:49:53 -08001827retry:
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001828 q.key = FUTEX_KEY_INIT;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001829 ret = get_futex_key(uaddr, fshared, &q.key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001830 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08001831 goto out;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001832
Darren Harte4dc5b72009-03-12 00:56:13 -07001833retry_private:
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01001834 hb = queue_lock(&q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001835
Darren Hartbab5bc92009-04-07 23:23:50 -07001836 ret = futex_lock_pi_atomic(uaddr, hb, &q.key, &q.pi_state, current, 0);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001837 if (unlikely(ret)) {
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001838 switch (ret) {
Darren Hart1a520842009-04-03 13:39:52 -07001839 case 1:
1840 /* We got the lock. */
1841 ret = 0;
1842 goto out_unlock_put_key;
1843 case -EFAULT:
1844 goto uaddr_faulted;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001845 case -EAGAIN:
1846 /*
1847 * Task is exiting and we just wait for the
1848 * exit to complete.
1849 */
1850 queue_unlock(&q, hb);
Darren Hartde87fcc2009-03-12 00:55:46 -07001851 put_futex_key(fshared, &q.key);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001852 cond_resched();
1853 goto retry;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001854 default:
Darren Hart42d35d42008-12-29 15:49:53 -08001855 goto out_unlock_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001856 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001857 }
1858
1859 /*
1860 * Only actually queue now that the atomic ops are done:
1861 */
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01001862 queue_me(&q, hb);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001863
Ingo Molnarc87e2832006-06-27 02:54:58 -07001864 WARN_ON(!q.pi_state);
1865 /*
1866 * Block on the PI mutex:
1867 */
1868 if (!trylock)
1869 ret = rt_mutex_timed_lock(&q.pi_state->pi_mutex, to, 1);
1870 else {
1871 ret = rt_mutex_trylock(&q.pi_state->pi_mutex);
1872 /* Fixup the trylock return value: */
1873 ret = ret ? 0 : -EWOULDBLOCK;
1874 }
1875
Vernon Mauerya99e4e42006-07-01 04:35:42 -07001876 spin_lock(q.lock_ptr);
Darren Hartdd973992009-04-03 13:40:02 -07001877 /*
1878 * Fixup the pi_state owner and possibly acquire the lock if we
1879 * haven't already.
1880 */
1881 res = fixup_owner(uaddr, fshared, &q, !ret);
1882 /*
1883 * If fixup_owner() returned an error, proprogate that. If it acquired
1884 * the lock, clear our -ETIMEDOUT or -EINTR.
1885 */
1886 if (res)
1887 ret = (res < 0) ? res : 0;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001888
Darren Harte8f63862009-03-12 00:56:06 -07001889 /*
Darren Hartdd973992009-04-03 13:40:02 -07001890 * If fixup_owner() faulted and was unable to handle the fault, unlock
1891 * it and return the fault to userspace.
Darren Harte8f63862009-03-12 00:56:06 -07001892 */
1893 if (ret && (rt_mutex_owner(&q.pi_state->pi_mutex) == current))
1894 rt_mutex_unlock(&q.pi_state->pi_mutex);
1895
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001896 /* Unqueue and drop the lock */
1897 unqueue_me_pi(&q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001898
Darren Hartdd973992009-04-03 13:40:02 -07001899 goto out;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001900
Darren Hart42d35d42008-12-29 15:49:53 -08001901out_unlock_put_key:
Ingo Molnarc87e2832006-06-27 02:54:58 -07001902 queue_unlock(&q, hb);
1903
Darren Hart42d35d42008-12-29 15:49:53 -08001904out_put_key:
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001905 put_futex_key(fshared, &q.key);
Darren Hart42d35d42008-12-29 15:49:53 -08001906out:
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001907 if (to)
1908 destroy_hrtimer_on_stack(&to->timer);
Darren Hartdd973992009-04-03 13:40:02 -07001909 return ret != -EINTR ? ret : -ERESTARTNOINTR;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001910
Darren Hart42d35d42008-12-29 15:49:53 -08001911uaddr_faulted:
Ingo Molnarc87e2832006-06-27 02:54:58 -07001912 /*
Darren Hartb5686362008-12-18 15:06:34 -08001913 * We have to r/w *(int __user *)uaddr, and we have to modify it
1914 * atomically. Therefore, if we continue to fault after get_user()
1915 * below, we need to handle the fault ourselves, while still holding
1916 * the mmap_sem. This can occur if the uaddr is under contention as
1917 * we have to drop the mmap_sem in order to call get_user().
Ingo Molnarc87e2832006-06-27 02:54:58 -07001918 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001919 queue_unlock(&q, hb);
1920
Ingo Molnarc87e2832006-06-27 02:54:58 -07001921 ret = get_user(uval, uaddr);
Darren Harte4dc5b72009-03-12 00:56:13 -07001922 if (ret)
1923 goto out_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001924
Darren Harte4dc5b72009-03-12 00:56:13 -07001925 if (!fshared)
1926 goto retry_private;
1927
1928 put_futex_key(fshared, &q.key);
1929 goto retry;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001930}
1931
Darren Hart52400ba2009-04-03 13:40:49 -07001932static long futex_lock_pi_restart(struct restart_block *restart)
1933{
1934 u32 __user *uaddr = (u32 __user *)restart->futex.uaddr;
1935 ktime_t t, *tp = NULL;
1936 int fshared = restart->futex.flags & FLAGS_SHARED;
1937
1938 if (restart->futex.flags & FLAGS_HAS_TIMEOUT) {
1939 t.tv64 = restart->futex.time;
1940 tp = &t;
1941 }
1942 restart->fn = do_no_restart_syscall;
1943
1944 return (long)futex_lock_pi(uaddr, fshared, restart->futex.val, tp, 0);
1945}
Darren Hartde87fcc2009-03-12 00:55:46 -07001946
Ingo Molnarc87e2832006-06-27 02:54:58 -07001947/*
Ingo Molnarc87e2832006-06-27 02:54:58 -07001948 * Userspace attempted a TID -> 0 atomic transition, and failed.
1949 * This is the in-kernel slowpath: we look up the PI state (if any),
1950 * and do the rt-mutex unlock.
1951 */
Peter Zijlstrac2f9f202008-09-26 19:32:23 +02001952static int futex_unlock_pi(u32 __user *uaddr, int fshared)
Ingo Molnarc87e2832006-06-27 02:54:58 -07001953{
1954 struct futex_hash_bucket *hb;
1955 struct futex_q *this, *next;
1956 u32 uval;
Pierre Peifferec92d082007-05-09 02:35:00 -07001957 struct plist_head *head;
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001958 union futex_key key = FUTEX_KEY_INIT;
Darren Harte4dc5b72009-03-12 00:56:13 -07001959 int ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001960
1961retry:
1962 if (get_user(uval, uaddr))
1963 return -EFAULT;
1964 /*
1965 * We release only a lock we actually own:
1966 */
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001967 if ((uval & FUTEX_TID_MASK) != task_pid_vnr(current))
Ingo Molnarc87e2832006-06-27 02:54:58 -07001968 return -EPERM;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001969
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001970 ret = get_futex_key(uaddr, fshared, &key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001971 if (unlikely(ret != 0))
1972 goto out;
1973
1974 hb = hash_futex(&key);
1975 spin_lock(&hb->lock);
1976
Ingo Molnarc87e2832006-06-27 02:54:58 -07001977 /*
1978 * To avoid races, try to do the TID -> 0 atomic transition
1979 * again. If it succeeds then we can return without waking
1980 * anyone else up:
1981 */
Thomas Gleixner36cf3b52007-07-15 23:41:20 -07001982 if (!(uval & FUTEX_OWNER_DIED))
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001983 uval = cmpxchg_futex_value_locked(uaddr, task_pid_vnr(current), 0);
Thomas Gleixner36cf3b52007-07-15 23:41:20 -07001984
Ingo Molnarc87e2832006-06-27 02:54:58 -07001985
1986 if (unlikely(uval == -EFAULT))
1987 goto pi_faulted;
1988 /*
1989 * Rare case: we managed to release the lock atomically,
1990 * no need to wake anyone else up:
1991 */
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001992 if (unlikely(uval == task_pid_vnr(current)))
Ingo Molnarc87e2832006-06-27 02:54:58 -07001993 goto out_unlock;
1994
1995 /*
1996 * Ok, other tasks may need to be woken up - check waiters
1997 * and do the wakeup if necessary:
1998 */
1999 head = &hb->chain;
2000
Pierre Peifferec92d082007-05-09 02:35:00 -07002001 plist_for_each_entry_safe(this, next, head, list) {
Ingo Molnarc87e2832006-06-27 02:54:58 -07002002 if (!match_futex (&this->key, &key))
2003 continue;
2004 ret = wake_futex_pi(uaddr, uval, this);
2005 /*
2006 * The atomic access to the futex value
2007 * generated a pagefault, so retry the
2008 * user-access and the wakeup:
2009 */
2010 if (ret == -EFAULT)
2011 goto pi_faulted;
2012 goto out_unlock;
2013 }
2014 /*
2015 * No waiters - kernel unlocks the futex:
2016 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002017 if (!(uval & FUTEX_OWNER_DIED)) {
2018 ret = unlock_futex_pi(uaddr, uval);
2019 if (ret == -EFAULT)
2020 goto pi_faulted;
2021 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07002022
2023out_unlock:
2024 spin_unlock(&hb->lock);
Peter Zijlstra38d47c12008-09-26 19:32:20 +02002025 put_futex_key(fshared, &key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002026
Darren Hart42d35d42008-12-29 15:49:53 -08002027out:
Ingo Molnarc87e2832006-06-27 02:54:58 -07002028 return ret;
2029
2030pi_faulted:
2031 /*
Darren Hartb5686362008-12-18 15:06:34 -08002032 * We have to r/w *(int __user *)uaddr, and we have to modify it
2033 * atomically. Therefore, if we continue to fault after get_user()
2034 * below, we need to handle the fault ourselves, while still holding
2035 * the mmap_sem. This can occur if the uaddr is under contention as
2036 * we have to drop the mmap_sem in order to call get_user().
Ingo Molnarc87e2832006-06-27 02:54:58 -07002037 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002038 spin_unlock(&hb->lock);
Darren Harte4dc5b72009-03-12 00:56:13 -07002039 put_futex_key(fshared, &key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002040
Ingo Molnarc87e2832006-06-27 02:54:58 -07002041 ret = get_user(uval, uaddr);
Darren Hartb5686362008-12-18 15:06:34 -08002042 if (!ret)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002043 goto retry;
2044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return ret;
2046}
2047
Darren Hart52400ba2009-04-03 13:40:49 -07002048/**
2049 * handle_early_requeue_pi_wakeup() - Detect early wakeup on the initial futex
2050 * @hb: the hash_bucket futex_q was original enqueued on
2051 * @q: the futex_q woken while waiting to be requeued
2052 * @key2: the futex_key of the requeue target futex
2053 * @timeout: the timeout associated with the wait (NULL if none)
2054 *
2055 * Detect if the task was woken on the initial futex as opposed to the requeue
2056 * target futex. If so, determine if it was a timeout or a signal that caused
2057 * the wakeup and return the appropriate error code to the caller. Must be
2058 * called with the hb lock held.
2059 *
2060 * Returns
2061 * 0 - no early wakeup detected
2062 * <0 - -ETIMEDOUT or -ERESTARTSYS (FIXME: or ERESTARTNOINTR?)
2063 */
2064static inline
2065int handle_early_requeue_pi_wakeup(struct futex_hash_bucket *hb,
2066 struct futex_q *q, union futex_key *key2,
2067 struct hrtimer_sleeper *timeout)
2068{
2069 int ret = 0;
2070
2071 /*
2072 * With the hb lock held, we avoid races while we process the wakeup.
2073 * We only need to hold hb (and not hb2) to ensure atomicity as the
2074 * wakeup code can't change q.key from uaddr to uaddr2 if we hold hb.
2075 * It can't be requeued from uaddr2 to something else since we don't
2076 * support a PI aware source futex for requeue.
2077 */
2078 if (!match_futex(&q->key, key2)) {
2079 WARN_ON(q->lock_ptr && (&hb->lock != q->lock_ptr));
2080 /*
2081 * We were woken prior to requeue by a timeout or a signal.
2082 * Unqueue the futex_q and determine which it was.
2083 */
2084 plist_del(&q->list, &q->list.plist);
2085 drop_futex_key_refs(&q->key);
2086
2087 if (timeout && !timeout->task)
2088 ret = -ETIMEDOUT;
2089 else {
2090 /*
2091 * We expect signal_pending(current), but another
2092 * thread may have handled it for us already.
2093 */
2094 /* FIXME: ERESTARTSYS or ERESTARTNOINTR? Do we care if
2095 * the user specified SA_RESTART or not? */
2096 ret = -ERESTARTSYS;
2097 }
2098 }
2099 return ret;
2100}
2101
2102/**
2103 * futex_wait_requeue_pi() - Wait on uaddr and take uaddr2
2104 * @uaddr: the futex we initialyl wait on (non-pi)
2105 * @fshared: whether the futexes are shared (1) or not (0). They must be
2106 * the same type, no requeueing from private to shared, etc.
2107 * @val: the expected value of uaddr
2108 * @abs_time: absolute timeout
2109 * @bitset: 32 bit wakeup bitset set by userspace, defaults to all.
2110 * @clockrt: whether to use CLOCK_REALTIME (1) or CLOCK_MONOTONIC (0)
2111 * @uaddr2: the pi futex we will take prior to returning to user-space
2112 *
2113 * The caller will wait on uaddr and will be requeued by futex_requeue() to
2114 * uaddr2 which must be PI aware. Normal wakeup will wake on uaddr2 and
2115 * complete the acquisition of the rt_mutex prior to returning to userspace.
2116 * This ensures the rt_mutex maintains an owner when it has waiters; without
2117 * one, the pi logic wouldn't know which task to boost/deboost, if there was a
2118 * need to.
2119 *
2120 * We call schedule in futex_wait_queue_me() when we enqueue and return there
2121 * via the following:
2122 * 1) wakeup on uaddr2 after an atomic lock acquisition by futex_requeue()
2123 * 2) wakeup on uaddr2 after a requeue and subsequent unlock
2124 * 3) signal (before or after requeue)
2125 * 4) timeout (before or after requeue)
2126 *
2127 * If 3, we setup a restart_block with futex_wait_requeue_pi() as the function.
2128 *
2129 * If 2, we may then block on trying to take the rt_mutex and return via:
2130 * 5) successful lock
2131 * 6) signal
2132 * 7) timeout
2133 * 8) other lock acquisition failure
2134 *
2135 * If 6, we setup a restart_block with futex_lock_pi() as the function.
2136 *
2137 * If 4 or 7, we cleanup and return with -ETIMEDOUT.
2138 *
2139 * Returns:
2140 * 0 - On success
2141 * <0 - On error
2142 */
2143static int futex_wait_requeue_pi(u32 __user *uaddr, int fshared,
2144 u32 val, ktime_t *abs_time, u32 bitset,
2145 int clockrt, u32 __user *uaddr2)
2146{
2147 struct hrtimer_sleeper timeout, *to = NULL;
2148 struct rt_mutex_waiter rt_waiter;
2149 struct rt_mutex *pi_mutex = NULL;
2150 DECLARE_WAITQUEUE(wait, current);
2151 struct restart_block *restart;
2152 struct futex_hash_bucket *hb;
2153 union futex_key key2;
2154 struct futex_q q;
2155 int res, ret;
2156 u32 uval;
2157
2158 if (!bitset)
2159 return -EINVAL;
2160
2161 if (abs_time) {
2162 to = &timeout;
2163 hrtimer_init_on_stack(&to->timer, clockrt ? CLOCK_REALTIME :
2164 CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
2165 hrtimer_init_sleeper(to, current);
2166 hrtimer_set_expires_range_ns(&to->timer, *abs_time,
2167 current->timer_slack_ns);
2168 }
2169
2170 /*
2171 * The waiter is allocated on our stack, manipulated by the requeue
2172 * code while we sleep on uaddr.
2173 */
2174 debug_rt_mutex_init_waiter(&rt_waiter);
2175 rt_waiter.task = NULL;
2176
2177 q.pi_state = NULL;
2178 q.bitset = bitset;
2179 q.rt_waiter = &rt_waiter;
2180
2181 key2 = FUTEX_KEY_INIT;
2182 ret = get_futex_key(uaddr2, fshared, &key2);
2183 if (unlikely(ret != 0))
2184 goto out;
2185
2186 /* Prepare to wait on uaddr. */
2187 ret = futex_wait_setup(uaddr, val, fshared, &q, &hb);
2188 if (ret) {
2189 put_futex_key(fshared, &key2);
2190 goto out;
2191 }
2192
2193 /* Queue the futex_q, drop the hb lock, wait for wakeup. */
2194 futex_wait_queue_me(hb, &q, to, &wait);
2195
2196 spin_lock(&hb->lock);
2197 ret = handle_early_requeue_pi_wakeup(hb, &q, &key2, to);
2198 spin_unlock(&hb->lock);
2199 if (ret)
2200 goto out_put_keys;
2201
2202 /*
2203 * In order for us to be here, we know our q.key == key2, and since
2204 * we took the hb->lock above, we also know that futex_requeue() has
2205 * completed and we no longer have to concern ourselves with a wakeup
2206 * race with the atomic proxy lock acquition by the requeue code.
2207 */
2208
2209 /* Check if the requeue code acquired the second futex for us. */
2210 if (!q.rt_waiter) {
2211 /*
2212 * Got the lock. We might not be the anticipated owner if we
2213 * did a lock-steal - fix up the PI-state in that case.
2214 */
2215 if (q.pi_state && (q.pi_state->owner != current)) {
2216 spin_lock(q.lock_ptr);
2217 ret = fixup_pi_state_owner(uaddr2, &q, current,
2218 fshared);
2219 spin_unlock(q.lock_ptr);
2220 }
2221 } else {
2222 /*
2223 * We have been woken up by futex_unlock_pi(), a timeout, or a
2224 * signal. futex_unlock_pi() will not destroy the lock_ptr nor
2225 * the pi_state.
2226 */
2227 WARN_ON(!&q.pi_state);
2228 pi_mutex = &q.pi_state->pi_mutex;
2229 ret = rt_mutex_finish_proxy_lock(pi_mutex, to, &rt_waiter, 1);
2230 debug_rt_mutex_free_waiter(&rt_waiter);
2231
2232 spin_lock(q.lock_ptr);
2233 /*
2234 * Fixup the pi_state owner and possibly acquire the lock if we
2235 * haven't already.
2236 */
2237 res = fixup_owner(uaddr2, fshared, &q, !ret);
2238 /*
2239 * If fixup_owner() returned an error, proprogate that. If it
2240 * acquired the lock, clear our -ETIMEDOUT or -EINTR.
2241 */
2242 if (res)
2243 ret = (res < 0) ? res : 0;
2244
2245 /* Unqueue and drop the lock. */
2246 unqueue_me_pi(&q);
2247 }
2248
2249 /*
2250 * If fixup_pi_state_owner() faulted and was unable to handle the
2251 * fault, unlock the rt_mutex and return the fault to userspace.
2252 */
2253 if (ret == -EFAULT) {
2254 if (rt_mutex_owner(pi_mutex) == current)
2255 rt_mutex_unlock(pi_mutex);
2256 } else if (ret == -EINTR) {
2257 ret = -EFAULT;
2258 if (get_user(uval, uaddr2))
2259 goto out_put_keys;
2260
2261 /*
2262 * We've already been requeued, so restart by calling
2263 * futex_lock_pi() directly, rather then returning to this
2264 * function.
2265 */
2266 ret = -ERESTART_RESTARTBLOCK;
2267 restart = &current_thread_info()->restart_block;
2268 restart->fn = futex_lock_pi_restart;
2269 restart->futex.uaddr = (u32 *)uaddr2;
2270 restart->futex.val = uval;
2271 restart->futex.flags = 0;
2272 if (abs_time) {
2273 restart->futex.flags |= FLAGS_HAS_TIMEOUT;
2274 restart->futex.time = abs_time->tv64;
2275 }
2276
2277 if (fshared)
2278 restart->futex.flags |= FLAGS_SHARED;
2279 if (clockrt)
2280 restart->futex.flags |= FLAGS_CLOCKRT;
2281 }
2282
2283out_put_keys:
2284 put_futex_key(fshared, &q.key);
2285 put_futex_key(fshared, &key2);
2286
2287out:
2288 if (to) {
2289 hrtimer_cancel(&to->timer);
2290 destroy_hrtimer_on_stack(&to->timer);
2291 }
2292 return ret;
2293}
2294
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002295/*
2296 * Support for robust futexes: the kernel cleans up held futexes at
2297 * thread exit time.
2298 *
2299 * Implementation: user-space maintains a per-thread list of locks it
2300 * is holding. Upon do_exit(), the kernel carefully walks this list,
2301 * and marks all locks that are owned by this thread with the
Ingo Molnarc87e2832006-06-27 02:54:58 -07002302 * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002303 * always manipulated with the lock held, so the list is private and
2304 * per-thread. Userspace also maintains a per-thread 'list_op_pending'
2305 * field, to allow the kernel to clean up if the thread dies after
2306 * acquiring the lock, but just before it could have added itself to
2307 * the list. There can only be one such pending lock.
2308 */
2309
2310/**
2311 * sys_set_robust_list - set the robust-futex list head of a task
2312 * @head: pointer to the list-head
2313 * @len: length of the list-head, as userspace expects
2314 */
Heiko Carstens836f92a2009-01-14 14:14:33 +01002315SYSCALL_DEFINE2(set_robust_list, struct robust_list_head __user *, head,
2316 size_t, len)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002317{
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002318 if (!futex_cmpxchg_enabled)
2319 return -ENOSYS;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002320 /*
2321 * The kernel knows only one size for now:
2322 */
2323 if (unlikely(len != sizeof(*head)))
2324 return -EINVAL;
2325
2326 current->robust_list = head;
2327
2328 return 0;
2329}
2330
2331/**
2332 * sys_get_robust_list - get the robust-futex list head of a task
2333 * @pid: pid of the process [zero for current task]
2334 * @head_ptr: pointer to a list-head pointer, the kernel fills it in
2335 * @len_ptr: pointer to a length field, the kernel fills in the header size
2336 */
Heiko Carstens836f92a2009-01-14 14:14:33 +01002337SYSCALL_DEFINE3(get_robust_list, int, pid,
2338 struct robust_list_head __user * __user *, head_ptr,
2339 size_t __user *, len_ptr)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002340{
Al Viroba46df92006-10-10 22:46:07 +01002341 struct robust_list_head __user *head;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002342 unsigned long ret;
David Howellsc69e8d92008-11-14 10:39:19 +11002343 const struct cred *cred = current_cred(), *pcred;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002344
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002345 if (!futex_cmpxchg_enabled)
2346 return -ENOSYS;
2347
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002348 if (!pid)
2349 head = current->robust_list;
2350 else {
2351 struct task_struct *p;
2352
2353 ret = -ESRCH;
Oleg Nesterovaaa2a972006-09-29 02:00:55 -07002354 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07002355 p = find_task_by_vpid(pid);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002356 if (!p)
2357 goto err_unlock;
2358 ret = -EPERM;
David Howellsc69e8d92008-11-14 10:39:19 +11002359 pcred = __task_cred(p);
2360 if (cred->euid != pcred->euid &&
2361 cred->euid != pcred->uid &&
David Howells76aac0e2008-11-14 10:39:12 +11002362 !capable(CAP_SYS_PTRACE))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002363 goto err_unlock;
2364 head = p->robust_list;
Oleg Nesterovaaa2a972006-09-29 02:00:55 -07002365 rcu_read_unlock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002366 }
2367
2368 if (put_user(sizeof(*head), len_ptr))
2369 return -EFAULT;
2370 return put_user(head, head_ptr);
2371
2372err_unlock:
Oleg Nesterovaaa2a972006-09-29 02:00:55 -07002373 rcu_read_unlock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002374
2375 return ret;
2376}
2377
2378/*
2379 * Process a futex-list entry, check whether it's owned by the
2380 * dying task, and do notification if so:
2381 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002382int handle_futex_death(u32 __user *uaddr, struct task_struct *curr, int pi)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002383{
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002384 u32 uval, nval, mval;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002385
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08002386retry:
2387 if (get_user(uval, uaddr))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002388 return -1;
2389
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002390 if ((uval & FUTEX_TID_MASK) == task_pid_vnr(curr)) {
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002391 /*
2392 * Ok, this dying thread is truly holding a futex
2393 * of interest. Set the OWNER_DIED bit atomically
2394 * via cmpxchg, and if the value had FUTEX_WAITERS
2395 * set, wake up a waiter (if any). (We have to do a
2396 * futex_wake() even if OWNER_DIED is already set -
2397 * to handle the rare but possible case of recursive
2398 * thread-death.) The rest of the cleanup is done in
2399 * userspace.
2400 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002401 mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED;
2402 nval = futex_atomic_cmpxchg_inatomic(uaddr, uval, mval);
2403
Ingo Molnarc87e2832006-06-27 02:54:58 -07002404 if (nval == -EFAULT)
2405 return -1;
2406
2407 if (nval != uval)
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08002408 goto retry;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002409
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002410 /*
2411 * Wake robust non-PI futexes here. The wakeup of
2412 * PI futexes happens in exit_pi_state():
2413 */
Thomas Gleixner36cf3b52007-07-15 23:41:20 -07002414 if (!pi && (uval & FUTEX_WAITERS))
Peter Zijlstrac2f9f202008-09-26 19:32:23 +02002415 futex_wake(uaddr, 1, 1, FUTEX_BITSET_MATCH_ANY);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002416 }
2417 return 0;
2418}
2419
2420/*
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002421 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
2422 */
2423static inline int fetch_robust_entry(struct robust_list __user **entry,
Al Viroba46df92006-10-10 22:46:07 +01002424 struct robust_list __user * __user *head,
2425 int *pi)
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002426{
2427 unsigned long uentry;
2428
Al Viroba46df92006-10-10 22:46:07 +01002429 if (get_user(uentry, (unsigned long __user *)head))
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002430 return -EFAULT;
2431
Al Viroba46df92006-10-10 22:46:07 +01002432 *entry = (void __user *)(uentry & ~1UL);
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002433 *pi = uentry & 1;
2434
2435 return 0;
2436}
2437
2438/*
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002439 * Walk curr->robust_list (very carefully, it's a userspace list!)
2440 * and mark any locks found there dead, and notify any waiters.
2441 *
2442 * We silently return on any sign of list-walking problem.
2443 */
2444void exit_robust_list(struct task_struct *curr)
2445{
2446 struct robust_list_head __user *head = curr->robust_list;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002447 struct robust_list __user *entry, *next_entry, *pending;
2448 unsigned int limit = ROBUST_LIST_LIMIT, pi, next_pi, pip;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002449 unsigned long futex_offset;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002450 int rc;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002451
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002452 if (!futex_cmpxchg_enabled)
2453 return;
2454
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002455 /*
2456 * Fetch the list head (which was registered earlier, via
2457 * sys_set_robust_list()):
2458 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002459 if (fetch_robust_entry(&entry, &head->list.next, &pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002460 return;
2461 /*
2462 * Fetch the relative futex offset:
2463 */
2464 if (get_user(futex_offset, &head->futex_offset))
2465 return;
2466 /*
2467 * Fetch any possibly pending lock-add first, and handle it
2468 * if it exists:
2469 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002470 if (fetch_robust_entry(&pending, &head->list_op_pending, &pip))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002471 return;
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002472
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002473 next_entry = NULL; /* avoid warning with gcc */
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002474 while (entry != &head->list) {
2475 /*
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002476 * Fetch the next entry in the list before calling
2477 * handle_futex_death:
2478 */
2479 rc = fetch_robust_entry(&next_entry, &entry->next, &next_pi);
2480 /*
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002481 * A pending lock might already be on the list, so
Ingo Molnarc87e2832006-06-27 02:54:58 -07002482 * don't process it twice:
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002483 */
2484 if (entry != pending)
Al Viroba46df92006-10-10 22:46:07 +01002485 if (handle_futex_death((void __user *)entry + futex_offset,
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002486 curr, pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002487 return;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002488 if (rc)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002489 return;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002490 entry = next_entry;
2491 pi = next_pi;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002492 /*
2493 * Avoid excessively long or circular lists:
2494 */
2495 if (!--limit)
2496 break;
2497
2498 cond_resched();
2499 }
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002500
2501 if (pending)
2502 handle_futex_death((void __user *)pending + futex_offset,
2503 curr, pip);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002504}
2505
Pierre Peifferc19384b2007-05-09 02:35:02 -07002506long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout,
Ingo Molnare2970f22006-06-27 02:54:47 -07002507 u32 __user *uaddr2, u32 val2, u32 val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508{
Thomas Gleixner1acdac12008-11-20 10:02:53 -08002509 int clockrt, ret = -ENOSYS;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002510 int cmd = op & FUTEX_CMD_MASK;
Peter Zijlstrac2f9f202008-09-26 19:32:23 +02002511 int fshared = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002513 if (!(op & FUTEX_PRIVATE_FLAG))
Peter Zijlstrac2f9f202008-09-26 19:32:23 +02002514 fshared = 1;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002515
Thomas Gleixner1acdac12008-11-20 10:02:53 -08002516 clockrt = op & FUTEX_CLOCK_REALTIME;
Darren Hart52400ba2009-04-03 13:40:49 -07002517 if (clockrt && cmd != FUTEX_WAIT_BITSET && cmd != FUTEX_WAIT_REQUEUE_PI)
Thomas Gleixner1acdac12008-11-20 10:02:53 -08002518 return -ENOSYS;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002519
2520 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 case FUTEX_WAIT:
Thomas Gleixnercd689982008-02-01 17:45:14 +01002522 val3 = FUTEX_BITSET_MATCH_ANY;
2523 case FUTEX_WAIT_BITSET:
Thomas Gleixner1acdac12008-11-20 10:02:53 -08002524 ret = futex_wait(uaddr, fshared, val, timeout, val3, clockrt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 break;
2526 case FUTEX_WAKE:
Thomas Gleixnercd689982008-02-01 17:45:14 +01002527 val3 = FUTEX_BITSET_MATCH_ANY;
2528 case FUTEX_WAKE_BITSET:
2529 ret = futex_wake(uaddr, fshared, val, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 case FUTEX_REQUEUE:
Darren Hart52400ba2009-04-03 13:40:49 -07002532 ret = futex_requeue(uaddr, fshared, uaddr2, val, val2, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 break;
2534 case FUTEX_CMP_REQUEUE:
Darren Hart52400ba2009-04-03 13:40:49 -07002535 ret = futex_requeue(uaddr, fshared, uaddr2, val, val2, &val3,
2536 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 break;
Jakub Jelinek4732efb2005-09-06 15:16:25 -07002538 case FUTEX_WAKE_OP:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002539 ret = futex_wake_op(uaddr, fshared, uaddr2, val, val2, val3);
Jakub Jelinek4732efb2005-09-06 15:16:25 -07002540 break;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002541 case FUTEX_LOCK_PI:
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002542 if (futex_cmpxchg_enabled)
2543 ret = futex_lock_pi(uaddr, fshared, val, timeout, 0);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002544 break;
2545 case FUTEX_UNLOCK_PI:
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002546 if (futex_cmpxchg_enabled)
2547 ret = futex_unlock_pi(uaddr, fshared);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002548 break;
2549 case FUTEX_TRYLOCK_PI:
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002550 if (futex_cmpxchg_enabled)
2551 ret = futex_lock_pi(uaddr, fshared, 0, timeout, 1);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002552 break;
Darren Hart52400ba2009-04-03 13:40:49 -07002553 case FUTEX_WAIT_REQUEUE_PI:
2554 val3 = FUTEX_BITSET_MATCH_ANY;
2555 ret = futex_wait_requeue_pi(uaddr, fshared, val, timeout, val3,
2556 clockrt, uaddr2);
2557 break;
Darren Hart52400ba2009-04-03 13:40:49 -07002558 case FUTEX_CMP_REQUEUE_PI:
2559 ret = futex_requeue(uaddr, fshared, uaddr2, val, val2, &val3,
2560 1);
2561 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 default:
2563 ret = -ENOSYS;
2564 }
2565 return ret;
2566}
2567
2568
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002569SYSCALL_DEFINE6(futex, u32 __user *, uaddr, int, op, u32, val,
2570 struct timespec __user *, utime, u32 __user *, uaddr2,
2571 u32, val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572{
Pierre Peifferc19384b2007-05-09 02:35:02 -07002573 struct timespec ts;
2574 ktime_t t, *tp = NULL;
Ingo Molnare2970f22006-06-27 02:54:47 -07002575 u32 val2 = 0;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002576 int cmd = op & FUTEX_CMD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
Thomas Gleixnercd689982008-02-01 17:45:14 +01002578 if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI ||
Darren Hart52400ba2009-04-03 13:40:49 -07002579 cmd == FUTEX_WAIT_BITSET ||
2580 cmd == FUTEX_WAIT_REQUEUE_PI)) {
Pierre Peifferc19384b2007-05-09 02:35:02 -07002581 if (copy_from_user(&ts, utime, sizeof(ts)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 return -EFAULT;
Pierre Peifferc19384b2007-05-09 02:35:02 -07002583 if (!timespec_valid(&ts))
Thomas Gleixner9741ef962006-03-31 02:31:32 -08002584 return -EINVAL;
Pierre Peifferc19384b2007-05-09 02:35:02 -07002585
2586 t = timespec_to_ktime(ts);
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002587 if (cmd == FUTEX_WAIT)
Thomas Gleixner5a7780e2008-02-13 09:20:43 +01002588 t = ktime_add_safe(ktime_get(), t);
Pierre Peifferc19384b2007-05-09 02:35:02 -07002589 tp = &t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 }
2591 /*
Darren Hart52400ba2009-04-03 13:40:49 -07002592 * requeue parameter in 'utime' if cmd == FUTEX_*_REQUEUE_*.
Andreas Schwabf54f0982007-07-31 00:38:51 -07002593 * number of waiters to wake in 'utime' if cmd == FUTEX_WAKE_OP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 */
Andreas Schwabf54f0982007-07-31 00:38:51 -07002595 if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE ||
Darren Hartba9c22f2009-04-20 22:22:22 -07002596 cmd == FUTEX_CMP_REQUEUE_PI || cmd == FUTEX_WAKE_OP)
Ingo Molnare2970f22006-06-27 02:54:47 -07002597 val2 = (u32) (unsigned long) utime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Pierre Peifferc19384b2007-05-09 02:35:02 -07002599 return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600}
2601
Benjamin Herrenschmidtf6d107f2008-03-27 14:52:15 +11002602static int __init futex_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603{
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002604 u32 curval;
Thomas Gleixner3e4ab742008-02-23 15:23:55 -08002605 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002607 /*
2608 * This will fail and we want it. Some arch implementations do
2609 * runtime detection of the futex_atomic_cmpxchg_inatomic()
2610 * functionality. We want to know that before we call in any
2611 * of the complex code paths. Also we want to prevent
2612 * registration of robust lists in that case. NULL is
2613 * guaranteed to fault and we get -EFAULT on functional
2614 * implementation, the non functional ones will return
2615 * -ENOSYS.
2616 */
2617 curval = cmpxchg_futex_value_locked(NULL, 0, 0);
2618 if (curval == -EFAULT)
2619 futex_cmpxchg_enabled = 1;
2620
Thomas Gleixner3e4ab742008-02-23 15:23:55 -08002621 for (i = 0; i < ARRAY_SIZE(futex_queues); i++) {
2622 plist_head_init(&futex_queues[i].chain, &futex_queues[i].lock);
2623 spin_lock_init(&futex_queues[i].lock);
2624 }
2625
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 return 0;
2627}
Benjamin Herrenschmidtf6d107f2008-03-27 14:52:15 +11002628__initcall(futex_init);