blob: 45490bec5831d5a806c1703251f82dec3e599d63 [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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * Thanks to Ben LaHaise for yelling "hashed waitqueues" loudly
23 * enough at me, Linus for the original (flawed) idea, Matthew
24 * Kirkwood for proof-of-concept implementation.
25 *
26 * "The futexes are also cursed."
27 * "But they come in a choice of three flavours!"
28 *
29 * This program is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License as published by
31 * the Free Software Foundation; either version 2 of the License, or
32 * (at your option) any later version.
33 *
34 * This program is distributed in the hope that it will be useful,
35 * but WITHOUT ANY WARRANTY; without even the implied warranty of
36 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37 * GNU General Public License for more details.
38 *
39 * You should have received a copy of the GNU General Public License
40 * along with this program; if not, write to the Free Software
41 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
42 */
43#include <linux/slab.h>
44#include <linux/poll.h>
45#include <linux/fs.h>
46#include <linux/file.h>
47#include <linux/jhash.h>
48#include <linux/init.h>
49#include <linux/futex.h>
50#include <linux/mount.h>
51#include <linux/pagemap.h>
52#include <linux/syscalls.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070053#include <linux/signal.h>
Rusty Russell9adef582007-05-08 00:26:42 -070054#include <linux/module.h>
Jakub Jelinek4732efb2005-09-06 15:16:25 -070055#include <asm/futex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Ingo Molnarc87e2832006-06-27 02:54:58 -070057#include "rtmutex_common.h"
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define FUTEX_HASHBITS (CONFIG_BASE_SMALL ? 4 : 8)
60
61/*
Ingo Molnarc87e2832006-06-27 02:54:58 -070062 * Priority Inheritance state:
63 */
64struct futex_pi_state {
65 /*
66 * list of 'owned' pi_state instances - these have to be
67 * cleaned up in do_exit() if the task exits prematurely:
68 */
69 struct list_head list;
70
71 /*
72 * The PI object:
73 */
74 struct rt_mutex pi_mutex;
75
76 struct task_struct *owner;
77 atomic_t refcount;
78
79 union futex_key key;
80};
81
82/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 * We use this hashed waitqueue instead of a normal wait_queue_t, so
84 * we can wake only the relevant ones (hashed queues may be shared).
85 *
86 * A futex_q has a woken state, just like tasks have TASK_RUNNING.
Pierre Peifferec92d082007-05-09 02:35:00 -070087 * It is considered woken when plist_node_empty(&q->list) || q->lock_ptr == 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 * The order of wakup is always to make the first condition true, then
89 * wake up q->waiters, then make the second condition true.
90 */
91struct futex_q {
Pierre Peifferec92d082007-05-09 02:35:00 -070092 struct plist_node list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 wait_queue_head_t waiters;
94
Ingo Molnare2970f22006-06-27 02:54:47 -070095 /* Which hash list lock to use: */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 spinlock_t *lock_ptr;
97
Ingo Molnare2970f22006-06-27 02:54:47 -070098 /* Key which the futex is hashed on: */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 union futex_key key;
100
Ingo Molnare2970f22006-06-27 02:54:47 -0700101 /* For fd, sigio sent using these: */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 int fd;
103 struct file *filp;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700104
105 /* Optional priority inheritance state: */
106 struct futex_pi_state *pi_state;
107 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
110/*
111 * Split the global futex_lock into every hash list lock.
112 */
113struct futex_hash_bucket {
Pierre Peifferec92d082007-05-09 02:35:00 -0700114 spinlock_t lock;
115 struct plist_head chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
118static struct futex_hash_bucket futex_queues[1<<FUTEX_HASHBITS];
119
120/* Futex-fs vfsmount entry: */
121static struct vfsmount *futex_mnt;
122
123/*
124 * We hash on the keys returned from get_futex_key (see below).
125 */
126static struct futex_hash_bucket *hash_futex(union futex_key *key)
127{
128 u32 hash = jhash2((u32*)&key->both.word,
129 (sizeof(key->both.word)+sizeof(key->both.ptr))/4,
130 key->both.offset);
131 return &futex_queues[hash & ((1 << FUTEX_HASHBITS)-1)];
132}
133
134/*
135 * Return 1 if two futex_keys are equal, 0 otherwise.
136 */
137static inline int match_futex(union futex_key *key1, union futex_key *key2)
138{
139 return (key1->both.word == key2->both.word
140 && key1->both.ptr == key2->both.ptr
141 && key1->both.offset == key2->both.offset);
142}
143
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700144/**
145 * get_futex_key - Get parameters which are the keys for a futex.
146 * @uaddr: virtual address of the futex
147 * @shared: NULL for a PROCESS_PRIVATE futex,
148 * &current->mm->mmap_sem for a PROCESS_SHARED futex
149 * @key: address where result is stored.
150 *
151 * Returns a negative error code or 0
152 * The key words are stored in *key on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 *
Josef "Jeff" Sipekf3a43f32006-12-08 02:36:43 -0800154 * For shared mappings, it's (page->index, vma->vm_file->f_path.dentry->d_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * offset_within_page). For private mappings, it's (uaddr, current->mm).
156 * We can usually work out the index without swapping in the page.
157 *
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700158 * fshared is NULL for PROCESS_PRIVATE futexes
159 * For other futexes, it points to &current->mm->mmap_sem and
160 * caller must have taken the reader lock. but NOT any spinlocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 */
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700162int get_futex_key(u32 __user *uaddr, struct rw_semaphore *fshared,
163 union futex_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Ingo Molnare2970f22006-06-27 02:54:47 -0700165 unsigned long address = (unsigned long)uaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 struct mm_struct *mm = current->mm;
167 struct vm_area_struct *vma;
168 struct page *page;
169 int err;
170
171 /*
172 * The futex address must be "naturally" aligned.
173 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700174 key->both.offset = address % PAGE_SIZE;
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700175 if (unlikely((address % sizeof(u32)) != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return -EINVAL;
Ingo Molnare2970f22006-06-27 02:54:47 -0700177 address -= key->both.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 /*
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700180 * PROCESS_PRIVATE futexes are fast.
181 * As the mm cannot disappear under us and the 'key' only needs
182 * virtual address, we dont even have to find the underlying vma.
183 * Note : We do have to check 'uaddr' is a valid user address,
184 * but access_ok() should be faster than find_vma()
185 */
186 if (!fshared) {
187 if (unlikely(!access_ok(VERIFY_WRITE, uaddr, sizeof(u32))))
188 return -EFAULT;
189 key->private.mm = mm;
190 key->private.address = address;
191 return 0;
192 }
193 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * The futex is hashed differently depending on whether
195 * it's in a shared or private mapping. So check vma first.
196 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700197 vma = find_extend_vma(mm, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (unlikely(!vma))
199 return -EFAULT;
200
201 /*
202 * Permissions.
203 */
204 if (unlikely((vma->vm_flags & (VM_IO|VM_READ)) != VM_READ))
205 return (vma->vm_flags & VM_IO) ? -EPERM : -EACCES;
206
207 /*
208 * Private mappings are handled in a simple way.
209 *
210 * NOTE: When userspace waits on a MAP_SHARED mapping, even if
211 * it's a read-only handle, it's expected that futexes attach to
212 * the object not the particular process. Therefore we use
213 * VM_MAYSHARE here, not VM_SHARED which is restricted to shared
214 * mappings of _writable_ handles.
215 */
216 if (likely(!(vma->vm_flags & VM_MAYSHARE))) {
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700217 key->both.offset |= FUT_OFF_MMSHARED; /* reference taken on mm */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 key->private.mm = mm;
Ingo Molnare2970f22006-06-27 02:54:47 -0700219 key->private.address = address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return 0;
221 }
222
223 /*
224 * Linear file mappings are also simple.
225 */
Josef "Jeff" Sipekf3a43f32006-12-08 02:36:43 -0800226 key->shared.inode = vma->vm_file->f_path.dentry->d_inode;
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700227 key->both.offset |= FUT_OFF_INODE; /* inode-based key. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (likely(!(vma->vm_flags & VM_NONLINEAR))) {
Ingo Molnare2970f22006-06-27 02:54:47 -0700229 key->shared.pgoff = (((address - vma->vm_start) >> PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 + vma->vm_pgoff);
231 return 0;
232 }
233
234 /*
235 * We could walk the page table to read the non-linear
236 * pte, and get the page index without fetching the page
237 * from swap. But that's a lot of code to duplicate here
238 * for a rare case, so we simply fetch the page.
239 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700240 err = get_user_pages(current, mm, address, 1, 0, 0, &page, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (err >= 0) {
242 key->shared.pgoff =
243 page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
244 put_page(page);
245 return 0;
246 }
247 return err;
248}
Rusty Russell9adef582007-05-08 00:26:42 -0700249EXPORT_SYMBOL_GPL(get_futex_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251/*
252 * Take a reference to the resource addressed by a key.
253 * Can be called while holding spinlocks.
254 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 */
Rusty Russell9adef582007-05-08 00:26:42 -0700256inline void get_futex_key_refs(union futex_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700258 if (key->both.ptr == 0)
259 return;
260 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
261 case FUT_OFF_INODE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 atomic_inc(&key->shared.inode->i_count);
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700263 break;
264 case FUT_OFF_MMSHARED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 atomic_inc(&key->private.mm->mm_count);
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700266 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268}
Rusty Russell9adef582007-05-08 00:26:42 -0700269EXPORT_SYMBOL_GPL(get_futex_key_refs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271/*
272 * Drop a reference to the resource addressed by a key.
273 * The hash bucket spinlock must not be held.
274 */
Rusty Russell9adef582007-05-08 00:26:42 -0700275void drop_futex_key_refs(union futex_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700277 if (key->both.ptr == 0)
278 return;
279 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
280 case FUT_OFF_INODE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 iput(key->shared.inode);
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700282 break;
283 case FUT_OFF_MMSHARED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 mmdrop(key->private.mm);
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700285 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287}
Rusty Russell9adef582007-05-08 00:26:42 -0700288EXPORT_SYMBOL_GPL(drop_futex_key_refs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Ingo Molnare2970f22006-06-27 02:54:47 -0700290static inline int get_futex_value_locked(u32 *dest, u32 __user *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 int ret;
293
Peter Zijlstraa8663742006-12-06 20:32:20 -0800294 pagefault_disable();
Ingo Molnare2970f22006-06-27 02:54:47 -0700295 ret = __copy_from_user_inatomic(dest, from, sizeof(u32));
Peter Zijlstraa8663742006-12-06 20:32:20 -0800296 pagefault_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 return ret ? -EFAULT : 0;
299}
300
301/*
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700302 * Fault handling.
303 * if fshared is non NULL, current->mm->mmap_sem is already held
Ingo Molnarc87e2832006-06-27 02:54:58 -0700304 */
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700305static int futex_handle_fault(unsigned long address,
306 struct rw_semaphore *fshared, int attempt)
Ingo Molnarc87e2832006-06-27 02:54:58 -0700307{
308 struct vm_area_struct * vma;
309 struct mm_struct *mm = current->mm;
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700310 int ret = -EFAULT;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700311
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700312 if (attempt > 2)
313 return ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700314
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700315 if (!fshared)
316 down_read(&mm->mmap_sem);
317 vma = find_vma(mm, address);
318 if (vma && address >= vma->vm_start &&
319 (vma->vm_flags & VM_WRITE)) {
320 switch (handle_mm_fault(mm, vma, address, 1)) {
321 case VM_FAULT_MINOR:
322 ret = 0;
323 current->min_flt++;
324 break;
325 case VM_FAULT_MAJOR:
326 ret = 0;
327 current->maj_flt++;
328 break;
329 }
Ingo Molnarc87e2832006-06-27 02:54:58 -0700330 }
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700331 if (!fshared)
332 up_read(&mm->mmap_sem);
333 return ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700334}
335
336/*
337 * PI code:
338 */
339static int refill_pi_state_cache(void)
340{
341 struct futex_pi_state *pi_state;
342
343 if (likely(current->pi_state_cache))
344 return 0;
345
Burman Yan4668edc2006-12-06 20:38:51 -0800346 pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700347
348 if (!pi_state)
349 return -ENOMEM;
350
Ingo Molnarc87e2832006-06-27 02:54:58 -0700351 INIT_LIST_HEAD(&pi_state->list);
352 /* pi_mutex gets initialized later */
353 pi_state->owner = NULL;
354 atomic_set(&pi_state->refcount, 1);
355
356 current->pi_state_cache = pi_state;
357
358 return 0;
359}
360
361static struct futex_pi_state * alloc_pi_state(void)
362{
363 struct futex_pi_state *pi_state = current->pi_state_cache;
364
365 WARN_ON(!pi_state);
366 current->pi_state_cache = NULL;
367
368 return pi_state;
369}
370
371static void free_pi_state(struct futex_pi_state *pi_state)
372{
373 if (!atomic_dec_and_test(&pi_state->refcount))
374 return;
375
376 /*
377 * If pi_state->owner is NULL, the owner is most probably dying
378 * and has cleaned up the pi_state already
379 */
380 if (pi_state->owner) {
381 spin_lock_irq(&pi_state->owner->pi_lock);
382 list_del_init(&pi_state->list);
383 spin_unlock_irq(&pi_state->owner->pi_lock);
384
385 rt_mutex_proxy_unlock(&pi_state->pi_mutex, pi_state->owner);
386 }
387
388 if (current->pi_state_cache)
389 kfree(pi_state);
390 else {
391 /*
392 * pi_state->list is already empty.
393 * clear pi_state->owner.
394 * refcount is at 0 - put it back to 1.
395 */
396 pi_state->owner = NULL;
397 atomic_set(&pi_state->refcount, 1);
398 current->pi_state_cache = pi_state;
399 }
400}
401
402/*
403 * Look up the task based on what TID userspace gave us.
404 * We dont trust it.
405 */
406static struct task_struct * futex_find_get_task(pid_t pid)
407{
408 struct task_struct *p;
409
Oleg Nesterovd359b542006-09-29 02:00:55 -0700410 rcu_read_lock();
Ingo Molnarc87e2832006-06-27 02:54:58 -0700411 p = find_task_by_pid(pid);
Thomas Gleixnera06381f2007-06-23 11:48:40 +0200412
413 if (!p || ((current->euid != p->euid) && (current->euid != p->uid)))
414 p = ERR_PTR(-ESRCH);
415 else
416 get_task_struct(p);
417
Oleg Nesterovd359b542006-09-29 02:00:55 -0700418 rcu_read_unlock();
Ingo Molnarc87e2832006-06-27 02:54:58 -0700419
420 return p;
421}
422
423/*
424 * This task is holding PI mutexes at exit time => bad.
425 * Kernel cleans up PI-state, but userspace is likely hosed.
426 * (Robust-futex cleanup is separate and might save the day for userspace.)
427 */
428void exit_pi_state_list(struct task_struct *curr)
429{
Ingo Molnarc87e2832006-06-27 02:54:58 -0700430 struct list_head *next, *head = &curr->pi_state_list;
431 struct futex_pi_state *pi_state;
Ingo Molnar627371d2006-07-29 05:16:20 +0200432 struct futex_hash_bucket *hb;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700433 union futex_key key;
434
435 /*
436 * We are a ZOMBIE and nobody can enqueue itself on
437 * pi_state_list anymore, but we have to be careful
Ingo Molnar627371d2006-07-29 05:16:20 +0200438 * versus waiters unqueueing themselves:
Ingo Molnarc87e2832006-06-27 02:54:58 -0700439 */
440 spin_lock_irq(&curr->pi_lock);
441 while (!list_empty(head)) {
442
443 next = head->next;
444 pi_state = list_entry(next, struct futex_pi_state, list);
445 key = pi_state->key;
Ingo Molnar627371d2006-07-29 05:16:20 +0200446 hb = hash_futex(&key);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700447 spin_unlock_irq(&curr->pi_lock);
448
Ingo Molnarc87e2832006-06-27 02:54:58 -0700449 spin_lock(&hb->lock);
450
451 spin_lock_irq(&curr->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +0200452 /*
453 * We dropped the pi-lock, so re-check whether this
454 * task still owns the PI-state:
455 */
Ingo Molnarc87e2832006-06-27 02:54:58 -0700456 if (head->next != next) {
457 spin_unlock(&hb->lock);
458 continue;
459 }
460
Ingo Molnarc87e2832006-06-27 02:54:58 -0700461 WARN_ON(pi_state->owner != curr);
Ingo Molnar627371d2006-07-29 05:16:20 +0200462 WARN_ON(list_empty(&pi_state->list));
463 list_del_init(&pi_state->list);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700464 pi_state->owner = NULL;
465 spin_unlock_irq(&curr->pi_lock);
466
467 rt_mutex_unlock(&pi_state->pi_mutex);
468
469 spin_unlock(&hb->lock);
470
471 spin_lock_irq(&curr->pi_lock);
472 }
473 spin_unlock_irq(&curr->pi_lock);
474}
475
476static int
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700477lookup_pi_state(u32 uval, struct futex_hash_bucket *hb,
478 union futex_key *key, struct futex_pi_state **ps)
Ingo Molnarc87e2832006-06-27 02:54:58 -0700479{
480 struct futex_pi_state *pi_state = NULL;
481 struct futex_q *this, *next;
Pierre Peifferec92d082007-05-09 02:35:00 -0700482 struct plist_head *head;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700483 struct task_struct *p;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700484 pid_t pid = uval & FUTEX_TID_MASK;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700485
486 head = &hb->chain;
487
Pierre Peifferec92d082007-05-09 02:35:00 -0700488 plist_for_each_entry_safe(this, next, head, list) {
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700489 if (match_futex(&this->key, key)) {
Ingo Molnarc87e2832006-06-27 02:54:58 -0700490 /*
491 * Another waiter already exists - bump up
492 * the refcount and return its pi_state:
493 */
494 pi_state = this->pi_state;
Thomas Gleixner06a9ec22006-07-10 04:44:30 -0700495 /*
496 * Userspace might have messed up non PI and PI futexes
497 */
498 if (unlikely(!pi_state))
499 return -EINVAL;
500
Ingo Molnar627371d2006-07-29 05:16:20 +0200501 WARN_ON(!atomic_read(&pi_state->refcount));
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700502 WARN_ON(pid && pi_state->owner &&
503 pi_state->owner->pid != pid);
Ingo Molnar627371d2006-07-29 05:16:20 +0200504
Ingo Molnarc87e2832006-06-27 02:54:58 -0700505 atomic_inc(&pi_state->refcount);
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700506 *ps = pi_state;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700507
508 return 0;
509 }
510 }
511
512 /*
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200513 * We are the first waiter - try to look up the real owner and attach
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700514 * the new pi_state to it, but bail out when TID = 0
Ingo Molnarc87e2832006-06-27 02:54:58 -0700515 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700516 if (!pid)
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200517 return -ESRCH;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700518 p = futex_find_get_task(pid);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700519 if (IS_ERR(p))
520 return PTR_ERR(p);
521
522 /*
523 * We need to look at the task state flags to figure out,
524 * whether the task is exiting. To protect against the do_exit
525 * change of the task flags, we do this protected by
526 * p->pi_lock:
527 */
528 spin_lock_irq(&p->pi_lock);
529 if (unlikely(p->flags & PF_EXITING)) {
530 /*
531 * The task is on the way out. When PF_EXITPIDONE is
532 * set, we know that the task has finished the
533 * cleanup:
534 */
535 int ret = (p->flags & PF_EXITPIDONE) ? -ESRCH : -EAGAIN;
536
537 spin_unlock_irq(&p->pi_lock);
538 put_task_struct(p);
539 return ret;
540 }
Ingo Molnarc87e2832006-06-27 02:54:58 -0700541
542 pi_state = alloc_pi_state();
543
544 /*
545 * Initialize the pi_mutex in locked state and make 'p'
546 * the owner of it:
547 */
548 rt_mutex_init_proxy_locked(&pi_state->pi_mutex, p);
549
550 /* Store the key for possible exit cleanups: */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700551 pi_state->key = *key;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700552
Ingo Molnar627371d2006-07-29 05:16:20 +0200553 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -0700554 list_add(&pi_state->list, &p->pi_state_list);
555 pi_state->owner = p;
556 spin_unlock_irq(&p->pi_lock);
557
558 put_task_struct(p);
559
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700560 *ps = pi_state;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700561
562 return 0;
563}
564
565/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 * The hash bucket lock must be held when this is called.
567 * Afterwards, the futex_q must not be accessed.
568 */
569static void wake_futex(struct futex_q *q)
570{
Pierre Peifferec92d082007-05-09 02:35:00 -0700571 plist_del(&q->list, &q->list.plist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (q->filp)
573 send_sigio(&q->filp->f_owner, q->fd, POLL_IN);
574 /*
575 * The lock in wake_up_all() is a crucial memory barrier after the
Pierre Peifferec92d082007-05-09 02:35:00 -0700576 * plist_del() and also before assigning to q->lock_ptr.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 */
578 wake_up_all(&q->waiters);
579 /*
580 * The waiting task can free the futex_q as soon as this is written,
581 * without taking any locks. This must come last.
Andrew Morton8e311082005-12-23 19:54:46 -0800582 *
583 * A memory barrier is required here to prevent the following store
584 * to lock_ptr from getting ahead of the wakeup. Clearing the lock
585 * at the end of wake_up_all() does not prevent this store from
586 * moving.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 */
Ralf Baechleccdea2f2006-12-06 20:40:26 -0800588 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 q->lock_ptr = NULL;
590}
591
Ingo Molnarc87e2832006-06-27 02:54:58 -0700592static int wake_futex_pi(u32 __user *uaddr, u32 uval, struct futex_q *this)
593{
594 struct task_struct *new_owner;
595 struct futex_pi_state *pi_state = this->pi_state;
596 u32 curval, newval;
597
598 if (!pi_state)
599 return -EINVAL;
600
Ingo Molnar217788672007-03-16 13:38:31 -0800601 spin_lock(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700602 new_owner = rt_mutex_next_owner(&pi_state->pi_mutex);
603
604 /*
605 * This happens when we have stolen the lock and the original
606 * pending owner did not enqueue itself back on the rt_mutex.
607 * Thats not a tragedy. We know that way, that a lock waiter
608 * is on the fly. We make the futex_q waiter the pending owner.
609 */
610 if (!new_owner)
611 new_owner = this->task;
612
613 /*
614 * We pass it to the next owner. (The WAITERS bit is always
615 * kept enabled while there is PI state around. We must also
616 * preserve the owner died bit.)
617 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200618 if (!(uval & FUTEX_OWNER_DIED)) {
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700619 int ret = 0;
620
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200621 newval = FUTEX_WAITERS | new_owner->pid;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700622
Peter Zijlstraa8663742006-12-06 20:32:20 -0800623 pagefault_disable();
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200624 curval = futex_atomic_cmpxchg_inatomic(uaddr, uval, newval);
Peter Zijlstraa8663742006-12-06 20:32:20 -0800625 pagefault_enable();
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700626
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200627 if (curval == -EFAULT)
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700628 ret = -EFAULT;
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200629 if (curval != uval)
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700630 ret = -EINVAL;
631 if (ret) {
632 spin_unlock(&pi_state->pi_mutex.wait_lock);
633 return ret;
634 }
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200635 }
Ingo Molnarc87e2832006-06-27 02:54:58 -0700636
Ingo Molnar627371d2006-07-29 05:16:20 +0200637 spin_lock_irq(&pi_state->owner->pi_lock);
638 WARN_ON(list_empty(&pi_state->list));
639 list_del_init(&pi_state->list);
640 spin_unlock_irq(&pi_state->owner->pi_lock);
641
642 spin_lock_irq(&new_owner->pi_lock);
643 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -0700644 list_add(&pi_state->list, &new_owner->pi_state_list);
645 pi_state->owner = new_owner;
Ingo Molnar627371d2006-07-29 05:16:20 +0200646 spin_unlock_irq(&new_owner->pi_lock);
647
Ingo Molnar217788672007-03-16 13:38:31 -0800648 spin_unlock(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700649 rt_mutex_unlock(&pi_state->pi_mutex);
650
651 return 0;
652}
653
654static int unlock_futex_pi(u32 __user *uaddr, u32 uval)
655{
656 u32 oldval;
657
658 /*
659 * There is no waiter, so we unlock the futex. The owner died
660 * bit has not to be preserved here. We are the owner:
661 */
Peter Zijlstraa8663742006-12-06 20:32:20 -0800662 pagefault_disable();
Ingo Molnarc87e2832006-06-27 02:54:58 -0700663 oldval = futex_atomic_cmpxchg_inatomic(uaddr, uval, 0);
Peter Zijlstraa8663742006-12-06 20:32:20 -0800664 pagefault_enable();
Ingo Molnarc87e2832006-06-27 02:54:58 -0700665
666 if (oldval == -EFAULT)
667 return oldval;
668 if (oldval != uval)
669 return -EAGAIN;
670
671 return 0;
672}
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674/*
Ingo Molnar8b8f3192006-07-03 00:25:05 -0700675 * Express the locking dependencies for lockdep:
676 */
677static inline void
678double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
679{
680 if (hb1 <= hb2) {
681 spin_lock(&hb1->lock);
682 if (hb1 < hb2)
683 spin_lock_nested(&hb2->lock, SINGLE_DEPTH_NESTING);
684 } else { /* hb1 > hb2 */
685 spin_lock(&hb2->lock);
686 spin_lock_nested(&hb1->lock, SINGLE_DEPTH_NESTING);
687 }
688}
689
690/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 * Wake up all waiters hashed on the physical page that is mapped
692 * to this virtual address:
693 */
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700694static int futex_wake(u32 __user *uaddr, struct rw_semaphore *fshared,
695 int nr_wake)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Ingo Molnare2970f22006-06-27 02:54:47 -0700697 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 struct futex_q *this, *next;
Pierre Peifferec92d082007-05-09 02:35:00 -0700699 struct plist_head *head;
Ingo Molnare2970f22006-06-27 02:54:47 -0700700 union futex_key key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 int ret;
702
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700703 if (fshared)
704 down_read(fshared);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700706 ret = get_futex_key(uaddr, fshared, &key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (unlikely(ret != 0))
708 goto out;
709
Ingo Molnare2970f22006-06-27 02:54:47 -0700710 hb = hash_futex(&key);
711 spin_lock(&hb->lock);
712 head = &hb->chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Pierre Peifferec92d082007-05-09 02:35:00 -0700714 plist_for_each_entry_safe(this, next, head, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (match_futex (&this->key, &key)) {
Ingo Molnared6f7b12006-07-01 04:35:46 -0700716 if (this->pi_state) {
717 ret = -EINVAL;
718 break;
719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 wake_futex(this);
721 if (++ret >= nr_wake)
722 break;
723 }
724 }
725
Ingo Molnare2970f22006-06-27 02:54:47 -0700726 spin_unlock(&hb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727out:
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700728 if (fshared)
729 up_read(fshared);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return ret;
731}
732
733/*
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700734 * Wake up all waiters hashed on the physical page that is mapped
735 * to this virtual address:
736 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700737static int
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700738futex_wake_op(u32 __user *uaddr1, struct rw_semaphore *fshared,
739 u32 __user *uaddr2,
Ingo Molnare2970f22006-06-27 02:54:47 -0700740 int nr_wake, int nr_wake2, int op)
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700741{
742 union futex_key key1, key2;
Ingo Molnare2970f22006-06-27 02:54:47 -0700743 struct futex_hash_bucket *hb1, *hb2;
Pierre Peifferec92d082007-05-09 02:35:00 -0700744 struct plist_head *head;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700745 struct futex_q *this, *next;
746 int ret, op_ret, attempt = 0;
747
748retryfull:
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700749 if (fshared)
750 down_read(fshared);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700751
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700752 ret = get_futex_key(uaddr1, fshared, &key1);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700753 if (unlikely(ret != 0))
754 goto out;
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700755 ret = get_futex_key(uaddr2, fshared, &key2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700756 if (unlikely(ret != 0))
757 goto out;
758
Ingo Molnare2970f22006-06-27 02:54:47 -0700759 hb1 = hash_futex(&key1);
760 hb2 = hash_futex(&key2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700761
762retry:
Ingo Molnar8b8f3192006-07-03 00:25:05 -0700763 double_lock_hb(hb1, hb2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700764
Ingo Molnare2970f22006-06-27 02:54:47 -0700765 op_ret = futex_atomic_op_inuser(op, uaddr2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700766 if (unlikely(op_ret < 0)) {
Ingo Molnare2970f22006-06-27 02:54:47 -0700767 u32 dummy;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700768
Ingo Molnare2970f22006-06-27 02:54:47 -0700769 spin_unlock(&hb1->lock);
770 if (hb1 != hb2)
771 spin_unlock(&hb2->lock);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700772
David Howells7ee1dd32006-01-06 00:11:44 -0800773#ifndef CONFIG_MMU
Ingo Molnare2970f22006-06-27 02:54:47 -0700774 /*
775 * we don't get EFAULT from MMU faults if we don't have an MMU,
776 * but we might get them from range checking
777 */
David Howells7ee1dd32006-01-06 00:11:44 -0800778 ret = op_ret;
779 goto out;
780#endif
781
David Gibson796f8d92005-11-07 00:59:33 -0800782 if (unlikely(op_ret != -EFAULT)) {
783 ret = op_ret;
784 goto out;
785 }
786
Ingo Molnare2970f22006-06-27 02:54:47 -0700787 /*
788 * futex_atomic_op_inuser needs to both read and write
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700789 * *(int __user *)uaddr2, but we can't modify it
790 * non-atomically. Therefore, if get_user below is not
791 * enough, we need to handle the fault ourselves, while
Ingo Molnare2970f22006-06-27 02:54:47 -0700792 * still holding the mmap_sem.
793 */
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700794 if (attempt++) {
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700795 ret = futex_handle_fault((unsigned long)uaddr2,
796 fshared, attempt);
797 if (ret)
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700798 goto out;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700799 goto retry;
800 }
801
Ingo Molnare2970f22006-06-27 02:54:47 -0700802 /*
803 * If we would have faulted, release mmap_sem,
804 * fault it in and start all over again.
805 */
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700806 if (fshared)
807 up_read(fshared);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700808
Ingo Molnare2970f22006-06-27 02:54:47 -0700809 ret = get_user(dummy, uaddr2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700810 if (ret)
811 return ret;
812
813 goto retryfull;
814 }
815
Ingo Molnare2970f22006-06-27 02:54:47 -0700816 head = &hb1->chain;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700817
Pierre Peifferec92d082007-05-09 02:35:00 -0700818 plist_for_each_entry_safe(this, next, head, list) {
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700819 if (match_futex (&this->key, &key1)) {
820 wake_futex(this);
821 if (++ret >= nr_wake)
822 break;
823 }
824 }
825
826 if (op_ret > 0) {
Ingo Molnare2970f22006-06-27 02:54:47 -0700827 head = &hb2->chain;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700828
829 op_ret = 0;
Pierre Peifferec92d082007-05-09 02:35:00 -0700830 plist_for_each_entry_safe(this, next, head, list) {
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700831 if (match_futex (&this->key, &key2)) {
832 wake_futex(this);
833 if (++op_ret >= nr_wake2)
834 break;
835 }
836 }
837 ret += op_ret;
838 }
839
Ingo Molnare2970f22006-06-27 02:54:47 -0700840 spin_unlock(&hb1->lock);
841 if (hb1 != hb2)
842 spin_unlock(&hb2->lock);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700843out:
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700844 if (fshared)
845 up_read(fshared);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700846 return ret;
847}
848
849/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 * Requeue all waiters hashed on one physical page to another
851 * physical page.
852 */
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700853static int futex_requeue(u32 __user *uaddr1, struct rw_semaphore *fshared,
854 u32 __user *uaddr2,
Ingo Molnare2970f22006-06-27 02:54:47 -0700855 int nr_wake, int nr_requeue, u32 *cmpval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 union futex_key key1, key2;
Ingo Molnare2970f22006-06-27 02:54:47 -0700858 struct futex_hash_bucket *hb1, *hb2;
Pierre Peifferec92d082007-05-09 02:35:00 -0700859 struct plist_head *head1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 struct futex_q *this, *next;
861 int ret, drop_count = 0;
862
863 retry:
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700864 if (fshared)
865 down_read(fshared);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700867 ret = get_futex_key(uaddr1, fshared, &key1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (unlikely(ret != 0))
869 goto out;
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700870 ret = get_futex_key(uaddr2, fshared, &key2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (unlikely(ret != 0))
872 goto out;
873
Ingo Molnare2970f22006-06-27 02:54:47 -0700874 hb1 = hash_futex(&key1);
875 hb2 = hash_futex(&key2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Ingo Molnar8b8f3192006-07-03 00:25:05 -0700877 double_lock_hb(hb1, hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Ingo Molnare2970f22006-06-27 02:54:47 -0700879 if (likely(cmpval != NULL)) {
880 u32 curval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Ingo Molnare2970f22006-06-27 02:54:47 -0700882 ret = get_futex_value_locked(&curval, uaddr1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 if (unlikely(ret)) {
Ingo Molnare2970f22006-06-27 02:54:47 -0700885 spin_unlock(&hb1->lock);
886 if (hb1 != hb2)
887 spin_unlock(&hb2->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Ingo Molnare2970f22006-06-27 02:54:47 -0700889 /*
890 * If we would have faulted, release mmap_sem, fault
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 * it in and start all over again.
892 */
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700893 if (fshared)
894 up_read(fshared);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Ingo Molnare2970f22006-06-27 02:54:47 -0700896 ret = get_user(curval, uaddr1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 if (!ret)
899 goto retry;
900
901 return ret;
902 }
Ingo Molnare2970f22006-06-27 02:54:47 -0700903 if (curval != *cmpval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 ret = -EAGAIN;
905 goto out_unlock;
906 }
907 }
908
Ingo Molnare2970f22006-06-27 02:54:47 -0700909 head1 = &hb1->chain;
Pierre Peifferec92d082007-05-09 02:35:00 -0700910 plist_for_each_entry_safe(this, next, head1, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (!match_futex (&this->key, &key1))
912 continue;
913 if (++ret <= nr_wake) {
914 wake_futex(this);
915 } else {
Sebastien Dugue59e0e0a2006-06-27 02:55:03 -0700916 /*
917 * If key1 and key2 hash to the same bucket, no need to
918 * requeue.
919 */
920 if (likely(head1 != &hb2->chain)) {
Pierre Peifferec92d082007-05-09 02:35:00 -0700921 plist_del(&this->list, &hb1->chain);
922 plist_add(&this->list, &hb2->chain);
Sebastien Dugue59e0e0a2006-06-27 02:55:03 -0700923 this->lock_ptr = &hb2->lock;
Pierre Peifferec92d082007-05-09 02:35:00 -0700924#ifdef CONFIG_DEBUG_PI_LIST
925 this->list.plist.lock = &hb2->lock;
926#endif
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 this->key = key2;
Rusty Russell9adef582007-05-08 00:26:42 -0700929 get_futex_key_refs(&key2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 drop_count++;
931
932 if (ret - nr_wake >= nr_requeue)
933 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
935 }
936
937out_unlock:
Ingo Molnare2970f22006-06-27 02:54:47 -0700938 spin_unlock(&hb1->lock);
939 if (hb1 != hb2)
940 spin_unlock(&hb2->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Rusty Russell9adef582007-05-08 00:26:42 -0700942 /* drop_futex_key_refs() must be called outside the spinlocks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 while (--drop_count >= 0)
Rusty Russell9adef582007-05-08 00:26:42 -0700944 drop_futex_key_refs(&key1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946out:
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700947 if (fshared)
948 up_read(fshared);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return ret;
950}
951
952/* The key must be already stored in q->key. */
953static inline struct futex_hash_bucket *
954queue_lock(struct futex_q *q, int fd, struct file *filp)
955{
Ingo Molnare2970f22006-06-27 02:54:47 -0700956 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 q->fd = fd;
959 q->filp = filp;
960
961 init_waitqueue_head(&q->waiters);
962
Rusty Russell9adef582007-05-08 00:26:42 -0700963 get_futex_key_refs(&q->key);
Ingo Molnare2970f22006-06-27 02:54:47 -0700964 hb = hash_futex(&q->key);
965 q->lock_ptr = &hb->lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Ingo Molnare2970f22006-06-27 02:54:47 -0700967 spin_lock(&hb->lock);
968 return hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
Ingo Molnare2970f22006-06-27 02:54:47 -0700971static inline void __queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Pierre Peifferec92d082007-05-09 02:35:00 -0700973 int prio;
974
975 /*
976 * The priority used to register this element is
977 * - either the real thread-priority for the real-time threads
978 * (i.e. threads with a priority lower than MAX_RT_PRIO)
979 * - or MAX_RT_PRIO for non-RT threads.
980 * Thus, all RT-threads are woken first in priority order, and
981 * the others are woken last, in FIFO order.
982 */
983 prio = min(current->normal_prio, MAX_RT_PRIO);
984
985 plist_node_init(&q->list, prio);
986#ifdef CONFIG_DEBUG_PI_LIST
987 q->list.plist.lock = &hb->lock;
988#endif
989 plist_add(&q->list, &hb->chain);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700990 q->task = current;
Ingo Molnare2970f22006-06-27 02:54:47 -0700991 spin_unlock(&hb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
994static inline void
Ingo Molnare2970f22006-06-27 02:54:47 -0700995queue_unlock(struct futex_q *q, struct futex_hash_bucket *hb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Ingo Molnare2970f22006-06-27 02:54:47 -0700997 spin_unlock(&hb->lock);
Rusty Russell9adef582007-05-08 00:26:42 -0700998 drop_futex_key_refs(&q->key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
1001/*
1002 * queue_me and unqueue_me must be called as a pair, each
1003 * exactly once. They are called with the hashed spinlock held.
1004 */
1005
1006/* The key must be already stored in q->key. */
1007static void queue_me(struct futex_q *q, int fd, struct file *filp)
1008{
Ingo Molnare2970f22006-06-27 02:54:47 -07001009 struct futex_hash_bucket *hb;
1010
1011 hb = queue_lock(q, fd, filp);
1012 __queue_me(q, hb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
1015/* Return 1 if we were still queued (ie. 0 means we were woken) */
1016static int unqueue_me(struct futex_q *q)
1017{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 spinlock_t *lock_ptr;
Ingo Molnare2970f22006-06-27 02:54:47 -07001019 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 /* In the common case we don't take the spinlock, which is nice. */
1022 retry:
1023 lock_ptr = q->lock_ptr;
Christian Borntraegere91467e2006-08-05 12:13:52 -07001024 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (lock_ptr != 0) {
1026 spin_lock(lock_ptr);
1027 /*
1028 * q->lock_ptr can change between reading it and
1029 * spin_lock(), causing us to take the wrong lock. This
1030 * corrects the race condition.
1031 *
1032 * Reasoning goes like this: if we have the wrong lock,
1033 * q->lock_ptr must have changed (maybe several times)
1034 * between reading it and the spin_lock(). It can
1035 * change again after the spin_lock() but only if it was
1036 * already changed before the spin_lock(). It cannot,
1037 * however, change back to the original value. Therefore
1038 * we can detect whether we acquired the correct lock.
1039 */
1040 if (unlikely(lock_ptr != q->lock_ptr)) {
1041 spin_unlock(lock_ptr);
1042 goto retry;
1043 }
Pierre Peifferec92d082007-05-09 02:35:00 -07001044 WARN_ON(plist_node_empty(&q->list));
1045 plist_del(&q->list, &q->list.plist);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001046
1047 BUG_ON(q->pi_state);
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 spin_unlock(lock_ptr);
1050 ret = 1;
1051 }
1052
Rusty Russell9adef582007-05-08 00:26:42 -07001053 drop_futex_key_refs(&q->key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return ret;
1055}
1056
Ingo Molnarc87e2832006-06-27 02:54:58 -07001057/*
1058 * PI futexes can not be requeued and must remove themself from the
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001059 * hash bucket. The hash bucket lock (i.e. lock_ptr) is held on entry
1060 * and dropped here.
Ingo Molnarc87e2832006-06-27 02:54:58 -07001061 */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001062static void unqueue_me_pi(struct futex_q *q)
Ingo Molnarc87e2832006-06-27 02:54:58 -07001063{
Pierre Peifferec92d082007-05-09 02:35:00 -07001064 WARN_ON(plist_node_empty(&q->list));
1065 plist_del(&q->list, &q->list.plist);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001066
1067 BUG_ON(!q->pi_state);
1068 free_pi_state(q->pi_state);
1069 q->pi_state = NULL;
1070
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001071 spin_unlock(q->lock_ptr);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001072
Rusty Russell9adef582007-05-08 00:26:42 -07001073 drop_futex_key_refs(&q->key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001074}
1075
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001076/*
1077 * Fixup the pi_state owner with current.
1078 *
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001079 * Must be called with hash bucket lock held and mm->sem held for non
1080 * private futexes.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001081 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001082static int fixup_pi_state_owner(u32 __user *uaddr, struct futex_q *q,
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001083 struct task_struct *curr)
1084{
1085 u32 newtid = curr->pid | FUTEX_WAITERS;
1086 struct futex_pi_state *pi_state = q->pi_state;
1087 u32 uval, curval, newval;
1088 int ret;
1089
1090 /* Owner died? */
1091 if (pi_state->owner != NULL) {
1092 spin_lock_irq(&pi_state->owner->pi_lock);
1093 WARN_ON(list_empty(&pi_state->list));
1094 list_del_init(&pi_state->list);
1095 spin_unlock_irq(&pi_state->owner->pi_lock);
1096 } else
1097 newtid |= FUTEX_OWNER_DIED;
1098
1099 pi_state->owner = curr;
1100
1101 spin_lock_irq(&curr->pi_lock);
1102 WARN_ON(!list_empty(&pi_state->list));
1103 list_add(&pi_state->list, &curr->pi_state_list);
1104 spin_unlock_irq(&curr->pi_lock);
1105
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001106 /*
1107 * We own it, so we have to replace the pending owner
1108 * TID. This must be atomic as we have preserve the
1109 * owner died bit here.
1110 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001111 ret = get_futex_value_locked(&uval, uaddr);
1112
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001113 while (!ret) {
1114 newval = (uval & FUTEX_OWNER_DIED) | newtid;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001115
1116 pagefault_disable();
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001117 curval = futex_atomic_cmpxchg_inatomic(uaddr,
1118 uval, newval);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001119 pagefault_enable();
1120
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001121 if (curval == -EFAULT)
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001122 ret = -EFAULT;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001123 if (curval == uval)
1124 break;
1125 uval = curval;
1126 }
1127 return ret;
1128}
1129
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001130/*
1131 * In case we must use restart_block to restart a futex_wait,
1132 * we encode in the 'arg3' shared capability
1133 */
1134#define ARG3_SHARED 1
1135
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001136static long futex_wait_restart(struct restart_block *restart);
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001137static int futex_wait(u32 __user *uaddr, struct rw_semaphore *fshared,
1138 u32 val, ktime_t *abs_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Ingo Molnarc87e2832006-06-27 02:54:58 -07001140 struct task_struct *curr = current;
1141 DECLARE_WAITQUEUE(wait, curr);
Ingo Molnare2970f22006-06-27 02:54:47 -07001142 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 struct futex_q q;
Ingo Molnare2970f22006-06-27 02:54:47 -07001144 u32 uval;
1145 int ret;
Thomas Gleixnerbd197232007-06-17 21:11:10 +02001146 struct hrtimer_sleeper t;
Pierre Peifferc19384b2007-05-09 02:35:02 -07001147 int rem = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Ingo Molnarc87e2832006-06-27 02:54:58 -07001149 q.pi_state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 retry:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001151 if (fshared)
1152 down_read(fshared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001154 ret = get_futex_key(uaddr, fshared, &q.key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (unlikely(ret != 0))
1156 goto out_release_sem;
1157
Ingo Molnare2970f22006-06-27 02:54:47 -07001158 hb = queue_lock(&q, -1, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 /*
1161 * Access the page AFTER the futex is queued.
1162 * Order is important:
1163 *
1164 * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
1165 * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); }
1166 *
1167 * The basic logical guarantee of a futex is that it blocks ONLY
1168 * if cond(var) is known to be true at the time of blocking, for
1169 * any cond. If we queued after testing *uaddr, that would open
1170 * a race condition where we could block indefinitely with
1171 * cond(var) false, which would violate the guarantee.
1172 *
1173 * A consequence is that futex_wait() can return zero and absorb
1174 * a wakeup when *uaddr != val on entry to the syscall. This is
1175 * rare, but normal.
1176 *
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001177 * for shared futexes, we hold the mmap semaphore, so the mapping
1178 * cannot have changed since we looked it up in get_futex_key.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 */
Ingo Molnare2970f22006-06-27 02:54:47 -07001180 ret = get_futex_value_locked(&uval, uaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
1182 if (unlikely(ret)) {
Ingo Molnare2970f22006-06-27 02:54:47 -07001183 queue_unlock(&q, hb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Ingo Molnare2970f22006-06-27 02:54:47 -07001185 /*
1186 * If we would have faulted, release mmap_sem, fault it in and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 * start all over again.
1188 */
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001189 if (fshared)
1190 up_read(fshared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Ingo Molnare2970f22006-06-27 02:54:47 -07001192 ret = get_user(uval, uaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 if (!ret)
1195 goto retry;
1196 return ret;
1197 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001198 ret = -EWOULDBLOCK;
1199 if (uval != val)
1200 goto out_unlock_release_sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 /* Only actually queue if *uaddr contained val. */
Ingo Molnare2970f22006-06-27 02:54:47 -07001203 __queue_me(&q, hb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 /*
1206 * Now the futex is queued and we have checked the data, we
1207 * don't want to hold mmap_sem while we sleep.
Ingo Molnarc87e2832006-06-27 02:54:58 -07001208 */
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001209 if (fshared)
1210 up_read(fshared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 /*
1213 * There might have been scheduling since the queue_me(), as we
1214 * cannot hold a spinlock across the get_user() in case it
1215 * faults, and we cannot just set TASK_INTERRUPTIBLE state when
1216 * queueing ourselves into the futex hash. This code thus has to
1217 * rely on the futex_wake() code removing us from hash when it
1218 * wakes us up.
1219 */
1220
1221 /* add_wait_queue is the barrier after __set_current_state. */
1222 __set_current_state(TASK_INTERRUPTIBLE);
1223 add_wait_queue(&q.waiters, &wait);
1224 /*
Pierre Peifferec92d082007-05-09 02:35:00 -07001225 * !plist_node_empty() is safe here without any lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 * q.lock_ptr != 0 is not safe, because of ordering against wakeup.
1227 */
Pierre Peifferec92d082007-05-09 02:35:00 -07001228 if (likely(!plist_node_empty(&q.list))) {
Pierre Peifferc19384b2007-05-09 02:35:02 -07001229 if (!abs_time)
1230 schedule();
1231 else {
1232 hrtimer_init(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
1233 hrtimer_init_sleeper(&t, current);
1234 t.timer.expires = *abs_time;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001235
Pierre Peifferc19384b2007-05-09 02:35:02 -07001236 hrtimer_start(&t.timer, t.timer.expires, HRTIMER_MODE_ABS);
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001237
Pierre Peifferc19384b2007-05-09 02:35:02 -07001238 /*
1239 * the timer could have already expired, in which
1240 * case current would be flagged for rescheduling.
1241 * Don't bother calling schedule.
1242 */
1243 if (likely(t.task))
1244 schedule();
1245
1246 hrtimer_cancel(&t.timer);
1247
1248 /* Flag if a timeout occured */
1249 rem = (t.task == NULL);
1250 }
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 __set_current_state(TASK_RUNNING);
1253
1254 /*
1255 * NOTE: we don't remove ourselves from the waitqueue because
1256 * we are the only user of it.
1257 */
1258
1259 /* If we were woken (and unqueued), we succeeded, whatever. */
1260 if (!unqueue_me(&q))
1261 return 0;
Pierre Peifferc19384b2007-05-09 02:35:02 -07001262 if (rem)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 return -ETIMEDOUT;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001264
Ingo Molnare2970f22006-06-27 02:54:47 -07001265 /*
1266 * We expect signal_pending(current), but another thread may
1267 * have handled it for us already.
1268 */
Pierre Peifferc19384b2007-05-09 02:35:02 -07001269 if (!abs_time)
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001270 return -ERESTARTSYS;
1271 else {
1272 struct restart_block *restart;
1273 restart = &current_thread_info()->restart_block;
1274 restart->fn = futex_wait_restart;
1275 restart->arg0 = (unsigned long)uaddr;
1276 restart->arg1 = (unsigned long)val;
Pierre Peifferc19384b2007-05-09 02:35:02 -07001277 restart->arg2 = (unsigned long)abs_time;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001278 restart->arg3 = 0;
1279 if (fshared)
1280 restart->arg3 |= ARG3_SHARED;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001281 return -ERESTART_RESTARTBLOCK;
1282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Ingo Molnarc87e2832006-06-27 02:54:58 -07001284 out_unlock_release_sem:
1285 queue_unlock(&q, hb);
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 out_release_sem:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001288 if (fshared)
1289 up_read(fshared);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001290 return ret;
1291}
1292
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001293
1294static long futex_wait_restart(struct restart_block *restart)
1295{
1296 u32 __user *uaddr = (u32 __user *)restart->arg0;
1297 u32 val = (u32)restart->arg1;
Pierre Peifferc19384b2007-05-09 02:35:02 -07001298 ktime_t *abs_time = (ktime_t *)restart->arg2;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001299 struct rw_semaphore *fshared = NULL;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001300
1301 restart->fn = do_no_restart_syscall;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001302 if (restart->arg3 & ARG3_SHARED)
1303 fshared = &current->mm->mmap_sem;
1304 return (long)futex_wait(uaddr, fshared, val, abs_time);
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001305}
1306
1307
Ingo Molnarc87e2832006-06-27 02:54:58 -07001308/*
1309 * Userspace tried a 0 -> TID atomic transition of the futex value
1310 * and failed. The kernel side here does the whole locking operation:
1311 * if there are waiters then it will block, it does PI, etc. (Due to
1312 * races the kernel might see a 0 value of the futex too.)
1313 */
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001314static int futex_lock_pi(u32 __user *uaddr, struct rw_semaphore *fshared,
1315 int detect, ktime_t *time, int trylock)
Ingo Molnarc87e2832006-06-27 02:54:58 -07001316{
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001317 struct hrtimer_sleeper timeout, *to = NULL;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001318 struct task_struct *curr = current;
1319 struct futex_hash_bucket *hb;
1320 u32 uval, newval, curval;
1321 struct futex_q q;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001322 int ret, lock_taken, ownerdied = 0, attempt = 0;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001323
1324 if (refill_pi_state_cache())
1325 return -ENOMEM;
1326
Pierre Peifferc19384b2007-05-09 02:35:02 -07001327 if (time) {
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001328 to = &timeout;
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001329 hrtimer_init(&to->timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001330 hrtimer_init_sleeper(to, current);
Pierre Peifferc19384b2007-05-09 02:35:02 -07001331 to->timer.expires = *time;
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001332 }
1333
Ingo Molnarc87e2832006-06-27 02:54:58 -07001334 q.pi_state = NULL;
1335 retry:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001336 if (fshared)
1337 down_read(fshared);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001338
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001339 ret = get_futex_key(uaddr, fshared, &q.key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001340 if (unlikely(ret != 0))
1341 goto out_release_sem;
1342
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001343 retry_unlocked:
Ingo Molnarc87e2832006-06-27 02:54:58 -07001344 hb = queue_lock(&q, -1, NULL);
1345
1346 retry_locked:
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001347 ret = lock_taken = 0;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001348
Ingo Molnarc87e2832006-06-27 02:54:58 -07001349 /*
1350 * To avoid races, we attempt to take the lock here again
1351 * (by doing a 0 -> TID atomic cmpxchg), while holding all
1352 * the locks. It will most likely not succeed.
1353 */
1354 newval = current->pid;
1355
Peter Zijlstraa8663742006-12-06 20:32:20 -08001356 pagefault_disable();
Ingo Molnarc87e2832006-06-27 02:54:58 -07001357 curval = futex_atomic_cmpxchg_inatomic(uaddr, 0, newval);
Peter Zijlstraa8663742006-12-06 20:32:20 -08001358 pagefault_enable();
Ingo Molnarc87e2832006-06-27 02:54:58 -07001359
1360 if (unlikely(curval == -EFAULT))
1361 goto uaddr_faulted;
1362
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001363 /*
1364 * Detect deadlocks. In case of REQUEUE_PI this is a valid
1365 * situation and we return success to user space.
1366 */
Ingo Molnarc87e2832006-06-27 02:54:58 -07001367 if (unlikely((curval & FUTEX_TID_MASK) == current->pid)) {
Thomas Gleixnerbd197232007-06-17 21:11:10 +02001368 ret = -EDEADLK;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001369 goto out_unlock_release_sem;
1370 }
1371
1372 /*
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001373 * Surprise - we got the lock. Just return to userspace:
Ingo Molnarc87e2832006-06-27 02:54:58 -07001374 */
1375 if (unlikely(!curval))
1376 goto out_unlock_release_sem;
1377
1378 uval = curval;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001379
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001380 /*
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001381 * Set the WAITERS flag, so the owner will know it has someone
1382 * to wake at next unlock
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001383 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001384 newval = curval | FUTEX_WAITERS;
1385
1386 /*
1387 * There are two cases, where a futex might have no owner (the
Thomas Gleixnerbd197232007-06-17 21:11:10 +02001388 * owner TID is 0): OWNER_DIED. We take over the futex in this
1389 * case. We also do an unconditional take over, when the owner
1390 * of the futex died.
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001391 *
1392 * This is safe as we are protected by the hash bucket lock !
1393 */
1394 if (unlikely(ownerdied || !(curval & FUTEX_TID_MASK))) {
Thomas Gleixnerbd197232007-06-17 21:11:10 +02001395 /* Keep the OWNER_DIED bit */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001396 newval = (curval & ~FUTEX_TID_MASK) | current->pid;
1397 ownerdied = 0;
1398 lock_taken = 1;
1399 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001400
Peter Zijlstraa8663742006-12-06 20:32:20 -08001401 pagefault_disable();
Ingo Molnarc87e2832006-06-27 02:54:58 -07001402 curval = futex_atomic_cmpxchg_inatomic(uaddr, uval, newval);
Peter Zijlstraa8663742006-12-06 20:32:20 -08001403 pagefault_enable();
Ingo Molnarc87e2832006-06-27 02:54:58 -07001404
1405 if (unlikely(curval == -EFAULT))
1406 goto uaddr_faulted;
1407 if (unlikely(curval != uval))
1408 goto retry_locked;
1409
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001410 /*
Thomas Gleixnerbd197232007-06-17 21:11:10 +02001411 * We took the lock due to owner died take over.
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001412 */
Thomas Gleixnerbd197232007-06-17 21:11:10 +02001413 if (unlikely(lock_taken))
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001414 goto out_unlock_release_sem;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001415
Ingo Molnarc87e2832006-06-27 02:54:58 -07001416 /*
1417 * We dont have the lock. Look up the PI state (or create it if
1418 * we are the first waiter):
1419 */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001420 ret = lookup_pi_state(uval, hb, &q.key, &q.pi_state);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001421
1422 if (unlikely(ret)) {
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001423 switch (ret) {
Ingo Molnarc87e2832006-06-27 02:54:58 -07001424
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001425 case -EAGAIN:
1426 /*
1427 * Task is exiting and we just wait for the
1428 * exit to complete.
1429 */
1430 queue_unlock(&q, hb);
1431 if (fshared)
1432 up_read(fshared);
1433 cond_resched();
1434 goto retry;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001435
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001436 case -ESRCH:
1437 /*
1438 * No owner found for this futex. Check if the
1439 * OWNER_DIED bit is set to figure out whether
1440 * this is a robust futex or not.
1441 */
1442 if (get_futex_value_locked(&curval, uaddr))
Ingo Molnarc87e2832006-06-27 02:54:58 -07001443 goto uaddr_faulted;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001444
1445 /*
1446 * We simply start over in case of a robust
1447 * futex. The code above will take the futex
1448 * and return happy.
1449 */
1450 if (curval & FUTEX_OWNER_DIED) {
1451 ownerdied = 1;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001452 goto retry_locked;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001453 }
1454 default:
1455 goto out_unlock_release_sem;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001456 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001457 }
1458
1459 /*
1460 * Only actually queue now that the atomic ops are done:
1461 */
1462 __queue_me(&q, hb);
1463
1464 /*
1465 * Now the futex is queued and we have checked the data, we
1466 * don't want to hold mmap_sem while we sleep.
1467 */
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001468 if (fshared)
1469 up_read(fshared);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001470
1471 WARN_ON(!q.pi_state);
1472 /*
1473 * Block on the PI mutex:
1474 */
1475 if (!trylock)
1476 ret = rt_mutex_timed_lock(&q.pi_state->pi_mutex, to, 1);
1477 else {
1478 ret = rt_mutex_trylock(&q.pi_state->pi_mutex);
1479 /* Fixup the trylock return value: */
1480 ret = ret ? 0 : -EWOULDBLOCK;
1481 }
1482
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001483 if (fshared)
1484 down_read(fshared);
Vernon Mauerya99e4e42006-07-01 04:35:42 -07001485 spin_lock(q.lock_ptr);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001486
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001487 if (!ret) {
1488 /*
1489 * Got the lock. We might not be the anticipated owner
1490 * if we did a lock-steal - fix up the PI-state in
1491 * that case:
1492 */
1493 if (q.pi_state->owner != curr)
1494 ret = fixup_pi_state_owner(uaddr, &q, curr);
1495 } else {
Ingo Molnarc87e2832006-06-27 02:54:58 -07001496 /*
1497 * Catch the rare case, where the lock was released
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001498 * when we were on the way back before we locked the
1499 * hash bucket.
Ingo Molnarc87e2832006-06-27 02:54:58 -07001500 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001501 if (q.pi_state->owner == curr &&
1502 rt_mutex_trylock(&q.pi_state->pi_mutex)) {
1503 ret = 0;
1504 } else {
1505 /*
1506 * Paranoia check. If we did not take the lock
1507 * in the trylock above, then we should not be
1508 * the owner of the rtmutex, neither the real
1509 * nor the pending one:
1510 */
1511 if (rt_mutex_owner(&q.pi_state->pi_mutex) == curr)
1512 printk(KERN_ERR "futex_lock_pi: ret = %d "
1513 "pi-mutex: %p pi-state %p\n", ret,
1514 q.pi_state->pi_mutex.owner,
1515 q.pi_state->owner);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001516 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001517 }
1518
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001519 /* Unqueue and drop the lock */
1520 unqueue_me_pi(&q);
1521 if (fshared)
1522 up_read(fshared);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001523
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001524 return ret != -EINTR ? ret : -ERESTARTNOINTR;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001525
1526 out_unlock_release_sem:
1527 queue_unlock(&q, hb);
1528
1529 out_release_sem:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001530 if (fshared)
1531 up_read(fshared);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001532 return ret;
1533
1534 uaddr_faulted:
1535 /*
1536 * We have to r/w *(int __user *)uaddr, but we can't modify it
1537 * non-atomically. Therefore, if get_user below is not
1538 * enough, we need to handle the fault ourselves, while
1539 * still holding the mmap_sem.
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001540 *
1541 * ... and hb->lock. :-) --ANK
Ingo Molnarc87e2832006-06-27 02:54:58 -07001542 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001543 queue_unlock(&q, hb);
1544
Ingo Molnarc87e2832006-06-27 02:54:58 -07001545 if (attempt++) {
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001546 ret = futex_handle_fault((unsigned long)uaddr, fshared,
1547 attempt);
1548 if (ret)
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001549 goto out_release_sem;
1550 goto retry_unlocked;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001551 }
1552
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001553 if (fshared)
1554 up_read(fshared);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001555
1556 ret = get_user(uval, uaddr);
1557 if (!ret && (uval != -EFAULT))
1558 goto retry;
1559
1560 return ret;
1561}
1562
1563/*
Ingo Molnarc87e2832006-06-27 02:54:58 -07001564 * Userspace attempted a TID -> 0 atomic transition, and failed.
1565 * This is the in-kernel slowpath: we look up the PI state (if any),
1566 * and do the rt-mutex unlock.
1567 */
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001568static int futex_unlock_pi(u32 __user *uaddr, struct rw_semaphore *fshared)
Ingo Molnarc87e2832006-06-27 02:54:58 -07001569{
1570 struct futex_hash_bucket *hb;
1571 struct futex_q *this, *next;
1572 u32 uval;
Pierre Peifferec92d082007-05-09 02:35:00 -07001573 struct plist_head *head;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001574 union futex_key key;
1575 int ret, attempt = 0;
1576
1577retry:
1578 if (get_user(uval, uaddr))
1579 return -EFAULT;
1580 /*
1581 * We release only a lock we actually own:
1582 */
1583 if ((uval & FUTEX_TID_MASK) != current->pid)
1584 return -EPERM;
1585 /*
1586 * First take all the futex related locks:
1587 */
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001588 if (fshared)
1589 down_read(fshared);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001590
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001591 ret = get_futex_key(uaddr, fshared, &key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001592 if (unlikely(ret != 0))
1593 goto out;
1594
1595 hb = hash_futex(&key);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001596retry_unlocked:
Ingo Molnarc87e2832006-06-27 02:54:58 -07001597 spin_lock(&hb->lock);
1598
Ingo Molnarc87e2832006-06-27 02:54:58 -07001599 /*
1600 * To avoid races, try to do the TID -> 0 atomic transition
1601 * again. If it succeeds then we can return without waking
1602 * anyone else up:
1603 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001604 if (!(uval & FUTEX_OWNER_DIED)) {
Peter Zijlstraa8663742006-12-06 20:32:20 -08001605 pagefault_disable();
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001606 uval = futex_atomic_cmpxchg_inatomic(uaddr, current->pid, 0);
Peter Zijlstraa8663742006-12-06 20:32:20 -08001607 pagefault_enable();
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001608 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001609
1610 if (unlikely(uval == -EFAULT))
1611 goto pi_faulted;
1612 /*
1613 * Rare case: we managed to release the lock atomically,
1614 * no need to wake anyone else up:
1615 */
1616 if (unlikely(uval == current->pid))
1617 goto out_unlock;
1618
1619 /*
1620 * Ok, other tasks may need to be woken up - check waiters
1621 * and do the wakeup if necessary:
1622 */
1623 head = &hb->chain;
1624
Pierre Peifferec92d082007-05-09 02:35:00 -07001625 plist_for_each_entry_safe(this, next, head, list) {
Ingo Molnarc87e2832006-06-27 02:54:58 -07001626 if (!match_futex (&this->key, &key))
1627 continue;
1628 ret = wake_futex_pi(uaddr, uval, this);
1629 /*
1630 * The atomic access to the futex value
1631 * generated a pagefault, so retry the
1632 * user-access and the wakeup:
1633 */
1634 if (ret == -EFAULT)
1635 goto pi_faulted;
1636 goto out_unlock;
1637 }
1638 /*
1639 * No waiters - kernel unlocks the futex:
1640 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001641 if (!(uval & FUTEX_OWNER_DIED)) {
1642 ret = unlock_futex_pi(uaddr, uval);
1643 if (ret == -EFAULT)
1644 goto pi_faulted;
1645 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001646
1647out_unlock:
1648 spin_unlock(&hb->lock);
1649out:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001650 if (fshared)
1651 up_read(fshared);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001652
1653 return ret;
1654
1655pi_faulted:
1656 /*
1657 * We have to r/w *(int __user *)uaddr, but we can't modify it
1658 * non-atomically. Therefore, if get_user below is not
1659 * enough, we need to handle the fault ourselves, while
1660 * still holding the mmap_sem.
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001661 *
1662 * ... and hb->lock. --ANK
Ingo Molnarc87e2832006-06-27 02:54:58 -07001663 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001664 spin_unlock(&hb->lock);
1665
Ingo Molnarc87e2832006-06-27 02:54:58 -07001666 if (attempt++) {
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001667 ret = futex_handle_fault((unsigned long)uaddr, fshared,
1668 attempt);
1669 if (ret)
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001670 goto out;
1671 goto retry_unlocked;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001672 }
1673
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001674 if (fshared)
1675 up_read(fshared);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001676
1677 ret = get_user(uval, uaddr);
1678 if (!ret && (uval != -EFAULT))
1679 goto retry;
1680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 return ret;
1682}
1683
1684static int futex_close(struct inode *inode, struct file *filp)
1685{
1686 struct futex_q *q = filp->private_data;
1687
1688 unqueue_me(q);
1689 kfree(q);
Ingo Molnare2970f22006-06-27 02:54:47 -07001690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 return 0;
1692}
1693
1694/* This is one-shot: once it's gone off you need a new fd */
1695static unsigned int futex_poll(struct file *filp,
1696 struct poll_table_struct *wait)
1697{
1698 struct futex_q *q = filp->private_data;
1699 int ret = 0;
1700
1701 poll_wait(filp, &q->waiters, wait);
1702
1703 /*
Pierre Peifferec92d082007-05-09 02:35:00 -07001704 * plist_node_empty() is safe here without any lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 * q->lock_ptr != 0 is not safe, because of ordering against wakeup.
1706 */
Pierre Peifferec92d082007-05-09 02:35:00 -07001707 if (plist_node_empty(&q->list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 ret = POLLIN | POLLRDNORM;
1709
1710 return ret;
1711}
1712
Helge Deller15ad7cd2006-12-06 20:40:36 -08001713static const struct file_operations futex_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 .release = futex_close,
1715 .poll = futex_poll,
1716};
1717
1718/*
1719 * Signal allows caller to avoid the race which would occur if they
1720 * set the sigio stuff up afterwards.
1721 */
Ingo Molnare2970f22006-06-27 02:54:47 -07001722static int futex_fd(u32 __user *uaddr, int signal)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
1724 struct futex_q *q;
1725 struct file *filp;
1726 int ret, err;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001727 struct rw_semaphore *fshared;
Andrew Morton19c6b6e2006-11-02 22:07:17 -08001728 static unsigned long printk_interval;
1729
1730 if (printk_timed_ratelimit(&printk_interval, 60 * 60 * 1000)) {
1731 printk(KERN_WARNING "Process `%s' used FUTEX_FD, which "
1732 "will be removed from the kernel in June 2007\n",
1733 current->comm);
1734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736 ret = -EINVAL;
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001737 if (!valid_signal(signal))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 goto out;
1739
1740 ret = get_unused_fd();
1741 if (ret < 0)
1742 goto out;
1743 filp = get_empty_filp();
1744 if (!filp) {
1745 put_unused_fd(ret);
1746 ret = -ENFILE;
1747 goto out;
1748 }
1749 filp->f_op = &futex_fops;
Josef "Jeff" Sipekf3a43f32006-12-08 02:36:43 -08001750 filp->f_path.mnt = mntget(futex_mnt);
1751 filp->f_path.dentry = dget(futex_mnt->mnt_root);
1752 filp->f_mapping = filp->f_path.dentry->d_inode->i_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
1754 if (signal) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001755 err = __f_setown(filp, task_pid(current), PIDTYPE_PID, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 if (err < 0) {
Pekka Enberg39ed3fd2005-09-06 15:17:44 -07001757 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 }
1759 filp->f_owner.signum = signal;
1760 }
1761
1762 q = kmalloc(sizeof(*q), GFP_KERNEL);
1763 if (!q) {
Pekka Enberg39ed3fd2005-09-06 15:17:44 -07001764 err = -ENOMEM;
1765 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001767 q->pi_state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001769 fshared = &current->mm->mmap_sem;
1770 down_read(fshared);
1771 err = get_futex_key(uaddr, fshared, &q->key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
1773 if (unlikely(err != 0)) {
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001774 up_read(fshared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 kfree(q);
Pekka Enberg39ed3fd2005-09-06 15:17:44 -07001776 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 }
1778
1779 /*
1780 * queue_me() must be called before releasing mmap_sem, because
1781 * key->shared.inode needs to be referenced while holding it.
1782 */
1783 filp->private_data = q;
1784
1785 queue_me(q, ret, filp);
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001786 up_read(fshared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
1788 /* Now we map fd to filp, so userspace can access it */
1789 fd_install(ret, filp);
1790out:
1791 return ret;
Pekka Enberg39ed3fd2005-09-06 15:17:44 -07001792error:
1793 put_unused_fd(ret);
1794 put_filp(filp);
1795 ret = err;
1796 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797}
1798
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001799/*
1800 * Support for robust futexes: the kernel cleans up held futexes at
1801 * thread exit time.
1802 *
1803 * Implementation: user-space maintains a per-thread list of locks it
1804 * is holding. Upon do_exit(), the kernel carefully walks this list,
1805 * and marks all locks that are owned by this thread with the
Ingo Molnarc87e2832006-06-27 02:54:58 -07001806 * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001807 * always manipulated with the lock held, so the list is private and
1808 * per-thread. Userspace also maintains a per-thread 'list_op_pending'
1809 * field, to allow the kernel to clean up if the thread dies after
1810 * acquiring the lock, but just before it could have added itself to
1811 * the list. There can only be one such pending lock.
1812 */
1813
1814/**
1815 * sys_set_robust_list - set the robust-futex list head of a task
1816 * @head: pointer to the list-head
1817 * @len: length of the list-head, as userspace expects
1818 */
1819asmlinkage long
1820sys_set_robust_list(struct robust_list_head __user *head,
1821 size_t len)
1822{
1823 /*
1824 * The kernel knows only one size for now:
1825 */
1826 if (unlikely(len != sizeof(*head)))
1827 return -EINVAL;
1828
1829 current->robust_list = head;
1830
1831 return 0;
1832}
1833
1834/**
1835 * sys_get_robust_list - get the robust-futex list head of a task
1836 * @pid: pid of the process [zero for current task]
1837 * @head_ptr: pointer to a list-head pointer, the kernel fills it in
1838 * @len_ptr: pointer to a length field, the kernel fills in the header size
1839 */
1840asmlinkage long
Al Viroba46df92006-10-10 22:46:07 +01001841sys_get_robust_list(int pid, struct robust_list_head __user * __user *head_ptr,
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001842 size_t __user *len_ptr)
1843{
Al Viroba46df92006-10-10 22:46:07 +01001844 struct robust_list_head __user *head;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001845 unsigned long ret;
1846
1847 if (!pid)
1848 head = current->robust_list;
1849 else {
1850 struct task_struct *p;
1851
1852 ret = -ESRCH;
Oleg Nesterovaaa2a972006-09-29 02:00:55 -07001853 rcu_read_lock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001854 p = find_task_by_pid(pid);
1855 if (!p)
1856 goto err_unlock;
1857 ret = -EPERM;
1858 if ((current->euid != p->euid) && (current->euid != p->uid) &&
1859 !capable(CAP_SYS_PTRACE))
1860 goto err_unlock;
1861 head = p->robust_list;
Oleg Nesterovaaa2a972006-09-29 02:00:55 -07001862 rcu_read_unlock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001863 }
1864
1865 if (put_user(sizeof(*head), len_ptr))
1866 return -EFAULT;
1867 return put_user(head, head_ptr);
1868
1869err_unlock:
Oleg Nesterovaaa2a972006-09-29 02:00:55 -07001870 rcu_read_unlock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001871
1872 return ret;
1873}
1874
1875/*
1876 * Process a futex-list entry, check whether it's owned by the
1877 * dying task, and do notification if so:
1878 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001879int handle_futex_death(u32 __user *uaddr, struct task_struct *curr, int pi)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001880{
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001881 u32 uval, nval, mval;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001882
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08001883retry:
1884 if (get_user(uval, uaddr))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001885 return -1;
1886
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08001887 if ((uval & FUTEX_TID_MASK) == curr->pid) {
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001888 /*
1889 * Ok, this dying thread is truly holding a futex
1890 * of interest. Set the OWNER_DIED bit atomically
1891 * via cmpxchg, and if the value had FUTEX_WAITERS
1892 * set, wake up a waiter (if any). (We have to do a
1893 * futex_wake() even if OWNER_DIED is already set -
1894 * to handle the rare but possible case of recursive
1895 * thread-death.) The rest of the cleanup is done in
1896 * userspace.
1897 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001898 mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED;
1899 nval = futex_atomic_cmpxchg_inatomic(uaddr, uval, mval);
1900
Ingo Molnarc87e2832006-06-27 02:54:58 -07001901 if (nval == -EFAULT)
1902 return -1;
1903
1904 if (nval != uval)
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08001905 goto retry;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001906
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001907 /*
1908 * Wake robust non-PI futexes here. The wakeup of
1909 * PI futexes happens in exit_pi_state():
1910 */
1911 if (!pi) {
1912 if (uval & FUTEX_WAITERS)
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001913 futex_wake(uaddr, &curr->mm->mmap_sem, 1);
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001914 }
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001915 }
1916 return 0;
1917}
1918
1919/*
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001920 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
1921 */
1922static inline int fetch_robust_entry(struct robust_list __user **entry,
Al Viroba46df92006-10-10 22:46:07 +01001923 struct robust_list __user * __user *head,
1924 int *pi)
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001925{
1926 unsigned long uentry;
1927
Al Viroba46df92006-10-10 22:46:07 +01001928 if (get_user(uentry, (unsigned long __user *)head))
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001929 return -EFAULT;
1930
Al Viroba46df92006-10-10 22:46:07 +01001931 *entry = (void __user *)(uentry & ~1UL);
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001932 *pi = uentry & 1;
1933
1934 return 0;
1935}
1936
1937/*
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001938 * Walk curr->robust_list (very carefully, it's a userspace list!)
1939 * and mark any locks found there dead, and notify any waiters.
1940 *
1941 * We silently return on any sign of list-walking problem.
1942 */
1943void exit_robust_list(struct task_struct *curr)
1944{
1945 struct robust_list_head __user *head = curr->robust_list;
1946 struct robust_list __user *entry, *pending;
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001947 unsigned int limit = ROBUST_LIST_LIMIT, pi, pip;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001948 unsigned long futex_offset;
1949
1950 /*
1951 * Fetch the list head (which was registered earlier, via
1952 * sys_set_robust_list()):
1953 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001954 if (fetch_robust_entry(&entry, &head->list.next, &pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001955 return;
1956 /*
1957 * Fetch the relative futex offset:
1958 */
1959 if (get_user(futex_offset, &head->futex_offset))
1960 return;
1961 /*
1962 * Fetch any possibly pending lock-add first, and handle it
1963 * if it exists:
1964 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001965 if (fetch_robust_entry(&pending, &head->list_op_pending, &pip))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001966 return;
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001967
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001968 if (pending)
Eric Dumazet34f01cc2007-05-09 02:35:04 -07001969 handle_futex_death((void __user *)pending + futex_offset,
1970 curr, pip);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001971
1972 while (entry != &head->list) {
1973 /*
1974 * A pending lock might already be on the list, so
Ingo Molnarc87e2832006-06-27 02:54:58 -07001975 * don't process it twice:
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001976 */
1977 if (entry != pending)
Al Viroba46df92006-10-10 22:46:07 +01001978 if (handle_futex_death((void __user *)entry + futex_offset,
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001979 curr, pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001980 return;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001981 /*
1982 * Fetch the next entry in the list:
1983 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001984 if (fetch_robust_entry(&entry, &entry->next, &pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001985 return;
1986 /*
1987 * Avoid excessively long or circular lists:
1988 */
1989 if (!--limit)
1990 break;
1991
1992 cond_resched();
1993 }
1994}
1995
Pierre Peifferc19384b2007-05-09 02:35:02 -07001996long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout,
Ingo Molnare2970f22006-06-27 02:54:47 -07001997 u32 __user *uaddr2, u32 val2, u32 val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998{
1999 int ret;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002000 int cmd = op & FUTEX_CMD_MASK;
2001 struct rw_semaphore *fshared = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002003 if (!(op & FUTEX_PRIVATE_FLAG))
2004 fshared = &current->mm->mmap_sem;
2005
2006 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 case FUTEX_WAIT:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002008 ret = futex_wait(uaddr, fshared, val, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 break;
2010 case FUTEX_WAKE:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002011 ret = futex_wake(uaddr, fshared, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 break;
2013 case FUTEX_FD:
2014 /* non-zero val means F_SETOWN(getpid()) & F_SETSIG(val) */
2015 ret = futex_fd(uaddr, val);
2016 break;
2017 case FUTEX_REQUEUE:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002018 ret = futex_requeue(uaddr, fshared, uaddr2, val, val2, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 break;
2020 case FUTEX_CMP_REQUEUE:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002021 ret = futex_requeue(uaddr, fshared, uaddr2, val, val2, &val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 break;
Jakub Jelinek4732efb2005-09-06 15:16:25 -07002023 case FUTEX_WAKE_OP:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002024 ret = futex_wake_op(uaddr, fshared, uaddr2, val, val2, val3);
Jakub Jelinek4732efb2005-09-06 15:16:25 -07002025 break;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002026 case FUTEX_LOCK_PI:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002027 ret = futex_lock_pi(uaddr, fshared, val, timeout, 0);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002028 break;
2029 case FUTEX_UNLOCK_PI:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002030 ret = futex_unlock_pi(uaddr, fshared);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002031 break;
2032 case FUTEX_TRYLOCK_PI:
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002033 ret = futex_lock_pi(uaddr, fshared, 0, timeout, 1);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002034 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 default:
2036 ret = -ENOSYS;
2037 }
2038 return ret;
2039}
2040
2041
Ingo Molnare2970f22006-06-27 02:54:47 -07002042asmlinkage long sys_futex(u32 __user *uaddr, int op, u32 val,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 struct timespec __user *utime, u32 __user *uaddr2,
Ingo Molnare2970f22006-06-27 02:54:47 -07002044 u32 val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045{
Pierre Peifferc19384b2007-05-09 02:35:02 -07002046 struct timespec ts;
2047 ktime_t t, *tp = NULL;
Ingo Molnare2970f22006-06-27 02:54:47 -07002048 u32 val2 = 0;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002049 int cmd = op & FUTEX_CMD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002051 if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI)) {
Pierre Peifferc19384b2007-05-09 02:35:02 -07002052 if (copy_from_user(&ts, utime, sizeof(ts)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 return -EFAULT;
Pierre Peifferc19384b2007-05-09 02:35:02 -07002054 if (!timespec_valid(&ts))
Thomas Gleixner9741ef962006-03-31 02:31:32 -08002055 return -EINVAL;
Pierre Peifferc19384b2007-05-09 02:35:02 -07002056
2057 t = timespec_to_ktime(ts);
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002058 if (cmd == FUTEX_WAIT)
Pierre Peifferc19384b2007-05-09 02:35:02 -07002059 t = ktime_add(ktime_get(), t);
2060 tp = &t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 }
2062 /*
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002063 * requeue parameter in 'utime' if cmd == FUTEX_REQUEUE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 */
Thomas Gleixnerbd197232007-06-17 21:11:10 +02002065 if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE)
Ingo Molnare2970f22006-06-27 02:54:47 -07002066 val2 = (u32) (unsigned long) utime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Pierre Peifferc19384b2007-05-09 02:35:02 -07002068 return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069}
2070
David Howells454e2392006-06-23 02:02:57 -07002071static int futexfs_get_sb(struct file_system_type *fs_type,
2072 int flags, const char *dev_name, void *data,
2073 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074{
David Howells454e2392006-06-23 02:02:57 -07002075 return get_sb_pseudo(fs_type, "futex", NULL, 0xBAD1DEA, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076}
2077
2078static struct file_system_type futex_fs_type = {
2079 .name = "futexfs",
2080 .get_sb = futexfs_get_sb,
2081 .kill_sb = kill_anon_super,
2082};
2083
2084static int __init init(void)
2085{
Akinobu Mita95362fa2006-12-06 20:39:03 -08002086 int i = register_filesystem(&futex_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Akinobu Mita95362fa2006-12-06 20:39:03 -08002088 if (i)
2089 return i;
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 futex_mnt = kern_mount(&futex_fs_type);
Akinobu Mita95362fa2006-12-06 20:39:03 -08002092 if (IS_ERR(futex_mnt)) {
2093 unregister_filesystem(&futex_fs_type);
2094 return PTR_ERR(futex_mnt);
2095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097 for (i = 0; i < ARRAY_SIZE(futex_queues); i++) {
Pierre Peifferec92d082007-05-09 02:35:00 -07002098 plist_head_init(&futex_queues[i].chain, &futex_queues[i].lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 spin_lock_init(&futex_queues[i].lock);
2100 }
2101 return 0;
2102}
2103__initcall(init);