ACPI: thinkpad-acpi: use killable instead of interruptible mutexes
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / kernel / futex.c
blobcc6fd0d7057537fcd7cea5db9585f7c7036f1366
1 /*
2 * Fast Userspace Mutexes (which I call "Futexes!").
3 * (C) Rusty Russell, IBM 2002
5 * Generalized futexes, futex requeueing, misc fixes by Ingo Molnar
6 * (C) Copyright 2003 Red Hat Inc, All Rights Reserved
8 * Removed page pinning, fix privately mapped COW pages and other cleanups
9 * (C) Copyright 2003, 2004 Jamie Lokier
11 * 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.
15 * 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>
19 * PRIVATE futexes by Eric Dumazet
20 * Copyright (C) 2007 Eric Dumazet <dada1@cosmosbay.com>
22 * 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.
26 * "The futexes are also cursed."
27 * "But they come in a choice of three flavours!"
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.
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.
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
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>
53 #include <linux/signal.h>
54 #include <linux/module.h>
55 #include <linux/magic.h>
56 #include <linux/pid.h>
57 #include <linux/nsproxy.h>
59 #include <asm/futex.h>
61 #include "rtmutex_common.h"
63 int __read_mostly futex_cmpxchg_enabled;
65 #define FUTEX_HASHBITS (CONFIG_BASE_SMALL ? 4 : 8)
68 * Priority Inheritance state:
70 struct futex_pi_state {
72 * list of 'owned' pi_state instances - these have to be
73 * cleaned up in do_exit() if the task exits prematurely:
75 struct list_head list;
78 * The PI object:
80 struct rt_mutex pi_mutex;
82 struct task_struct *owner;
83 atomic_t refcount;
85 union futex_key key;
89 * We use this hashed waitqueue instead of a normal wait_queue_t, so
90 * we can wake only the relevant ones (hashed queues may be shared).
92 * A futex_q has a woken state, just like tasks have TASK_RUNNING.
93 * It is considered woken when plist_node_empty(&q->list) || q->lock_ptr == 0.
94 * The order of wakup is always to make the first condition true, then
95 * wake up q->waiters, then make the second condition true.
97 struct futex_q {
98 struct plist_node list;
99 wait_queue_head_t waiters;
101 /* Which hash list lock to use: */
102 spinlock_t *lock_ptr;
104 /* Key which the futex is hashed on: */
105 union futex_key key;
107 /* For fd, sigio sent using these: */
108 int fd;
109 struct file *filp;
111 /* Optional priority inheritance state: */
112 struct futex_pi_state *pi_state;
113 struct task_struct *task;
115 /* Bitset for the optional bitmasked wakeup */
116 u32 bitset;
120 * Split the global futex_lock into every hash list lock.
122 struct futex_hash_bucket {
123 spinlock_t lock;
124 struct plist_head chain;
127 static struct futex_hash_bucket futex_queues[1<<FUTEX_HASHBITS];
129 /* Futex-fs vfsmount entry: */
130 static struct vfsmount *futex_mnt;
133 * Take mm->mmap_sem, when futex is shared
135 static inline void futex_lock_mm(struct rw_semaphore *fshared)
137 if (fshared)
138 down_read(fshared);
142 * Release mm->mmap_sem, when the futex is shared
144 static inline void futex_unlock_mm(struct rw_semaphore *fshared)
146 if (fshared)
147 up_read(fshared);
151 * We hash on the keys returned from get_futex_key (see below).
153 static struct futex_hash_bucket *hash_futex(union futex_key *key)
155 u32 hash = jhash2((u32*)&key->both.word,
156 (sizeof(key->both.word)+sizeof(key->both.ptr))/4,
157 key->both.offset);
158 return &futex_queues[hash & ((1 << FUTEX_HASHBITS)-1)];
162 * Return 1 if two futex_keys are equal, 0 otherwise.
164 static inline int match_futex(union futex_key *key1, union futex_key *key2)
166 return (key1->both.word == key2->both.word
167 && key1->both.ptr == key2->both.ptr
168 && key1->both.offset == key2->both.offset);
172 * get_futex_key - Get parameters which are the keys for a futex.
173 * @uaddr: virtual address of the futex
174 * @shared: NULL for a PROCESS_PRIVATE futex,
175 * &current->mm->mmap_sem for a PROCESS_SHARED futex
176 * @key: address where result is stored.
178 * Returns a negative error code or 0
179 * The key words are stored in *key on success.
181 * For shared mappings, it's (page->index, vma->vm_file->f_path.dentry->d_inode,
182 * offset_within_page). For private mappings, it's (uaddr, current->mm).
183 * We can usually work out the index without swapping in the page.
185 * fshared is NULL for PROCESS_PRIVATE futexes
186 * For other futexes, it points to &current->mm->mmap_sem and
187 * caller must have taken the reader lock. but NOT any spinlocks.
189 static int get_futex_key(u32 __user *uaddr, struct rw_semaphore *fshared,
190 union futex_key *key)
192 unsigned long address = (unsigned long)uaddr;
193 struct mm_struct *mm = current->mm;
194 struct vm_area_struct *vma;
195 struct page *page;
196 int err;
199 * The futex address must be "naturally" aligned.
201 key->both.offset = address % PAGE_SIZE;
202 if (unlikely((address % sizeof(u32)) != 0))
203 return -EINVAL;
204 address -= key->both.offset;
207 * PROCESS_PRIVATE futexes are fast.
208 * As the mm cannot disappear under us and the 'key' only needs
209 * virtual address, we dont even have to find the underlying vma.
210 * Note : We do have to check 'uaddr' is a valid user address,
211 * but access_ok() should be faster than find_vma()
213 if (!fshared) {
214 if (unlikely(!access_ok(VERIFY_WRITE, uaddr, sizeof(u32))))
215 return -EFAULT;
216 key->private.mm = mm;
217 key->private.address = address;
218 return 0;
221 * The futex is hashed differently depending on whether
222 * it's in a shared or private mapping. So check vma first.
224 vma = find_extend_vma(mm, address);
225 if (unlikely(!vma))
226 return -EFAULT;
229 * Permissions.
231 if (unlikely((vma->vm_flags & (VM_IO|VM_READ)) != VM_READ))
232 return (vma->vm_flags & VM_IO) ? -EPERM : -EACCES;
235 * Private mappings are handled in a simple way.
237 * NOTE: When userspace waits on a MAP_SHARED mapping, even if
238 * it's a read-only handle, it's expected that futexes attach to
239 * the object not the particular process. Therefore we use
240 * VM_MAYSHARE here, not VM_SHARED which is restricted to shared
241 * mappings of _writable_ handles.
243 if (likely(!(vma->vm_flags & VM_MAYSHARE))) {
244 key->both.offset |= FUT_OFF_MMSHARED; /* reference taken on mm */
245 key->private.mm = mm;
246 key->private.address = address;
247 return 0;
251 * Linear file mappings are also simple.
253 key->shared.inode = vma->vm_file->f_path.dentry->d_inode;
254 key->both.offset |= FUT_OFF_INODE; /* inode-based key. */
255 if (likely(!(vma->vm_flags & VM_NONLINEAR))) {
256 key->shared.pgoff = (((address - vma->vm_start) >> PAGE_SHIFT)
257 + vma->vm_pgoff);
258 return 0;
262 * We could walk the page table to read the non-linear
263 * pte, and get the page index without fetching the page
264 * from swap. But that's a lot of code to duplicate here
265 * for a rare case, so we simply fetch the page.
267 err = get_user_pages(current, mm, address, 1, 0, 0, &page, NULL);
268 if (err >= 0) {
269 key->shared.pgoff =
270 page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
271 put_page(page);
272 return 0;
274 return err;
278 * Take a reference to the resource addressed by a key.
279 * Can be called while holding spinlocks.
282 static void get_futex_key_refs(union futex_key *key)
284 if (key->both.ptr == NULL)
285 return;
286 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
287 case FUT_OFF_INODE:
288 atomic_inc(&key->shared.inode->i_count);
289 break;
290 case FUT_OFF_MMSHARED:
291 atomic_inc(&key->private.mm->mm_count);
292 break;
297 * Drop a reference to the resource addressed by a key.
298 * The hash bucket spinlock must not be held.
300 static void drop_futex_key_refs(union futex_key *key)
302 if (!key->both.ptr)
303 return;
304 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
305 case FUT_OFF_INODE:
306 iput(key->shared.inode);
307 break;
308 case FUT_OFF_MMSHARED:
309 mmdrop(key->private.mm);
310 break;
314 static u32 cmpxchg_futex_value_locked(u32 __user *uaddr, u32 uval, u32 newval)
316 u32 curval;
318 pagefault_disable();
319 curval = futex_atomic_cmpxchg_inatomic(uaddr, uval, newval);
320 pagefault_enable();
322 return curval;
325 static int get_futex_value_locked(u32 *dest, u32 __user *from)
327 int ret;
329 pagefault_disable();
330 ret = __copy_from_user_inatomic(dest, from, sizeof(u32));
331 pagefault_enable();
333 return ret ? -EFAULT : 0;
337 * Fault handling.
338 * if fshared is non NULL, current->mm->mmap_sem is already held
340 static int futex_handle_fault(unsigned long address,
341 struct rw_semaphore *fshared, int attempt)
343 struct vm_area_struct * vma;
344 struct mm_struct *mm = current->mm;
345 int ret = -EFAULT;
347 if (attempt > 2)
348 return ret;
350 if (!fshared)
351 down_read(&mm->mmap_sem);
352 vma = find_vma(mm, address);
353 if (vma && address >= vma->vm_start &&
354 (vma->vm_flags & VM_WRITE)) {
355 int fault;
356 fault = handle_mm_fault(mm, vma, address, 1);
357 if (unlikely((fault & VM_FAULT_ERROR))) {
358 #if 0
359 /* XXX: let's do this when we verify it is OK */
360 if (ret & VM_FAULT_OOM)
361 ret = -ENOMEM;
362 #endif
363 } else {
364 ret = 0;
365 if (fault & VM_FAULT_MAJOR)
366 current->maj_flt++;
367 else
368 current->min_flt++;
371 if (!fshared)
372 up_read(&mm->mmap_sem);
373 return ret;
377 * PI code:
379 static int refill_pi_state_cache(void)
381 struct futex_pi_state *pi_state;
383 if (likely(current->pi_state_cache))
384 return 0;
386 pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL);
388 if (!pi_state)
389 return -ENOMEM;
391 INIT_LIST_HEAD(&pi_state->list);
392 /* pi_mutex gets initialized later */
393 pi_state->owner = NULL;
394 atomic_set(&pi_state->refcount, 1);
396 current->pi_state_cache = pi_state;
398 return 0;
401 static struct futex_pi_state * alloc_pi_state(void)
403 struct futex_pi_state *pi_state = current->pi_state_cache;
405 WARN_ON(!pi_state);
406 current->pi_state_cache = NULL;
408 return pi_state;
411 static void free_pi_state(struct futex_pi_state *pi_state)
413 if (!atomic_dec_and_test(&pi_state->refcount))
414 return;
417 * If pi_state->owner is NULL, the owner is most probably dying
418 * and has cleaned up the pi_state already
420 if (pi_state->owner) {
421 spin_lock_irq(&pi_state->owner->pi_lock);
422 list_del_init(&pi_state->list);
423 spin_unlock_irq(&pi_state->owner->pi_lock);
425 rt_mutex_proxy_unlock(&pi_state->pi_mutex, pi_state->owner);
428 if (current->pi_state_cache)
429 kfree(pi_state);
430 else {
432 * pi_state->list is already empty.
433 * clear pi_state->owner.
434 * refcount is at 0 - put it back to 1.
436 pi_state->owner = NULL;
437 atomic_set(&pi_state->refcount, 1);
438 current->pi_state_cache = pi_state;
443 * Look up the task based on what TID userspace gave us.
444 * We dont trust it.
446 static struct task_struct * futex_find_get_task(pid_t pid)
448 struct task_struct *p;
450 rcu_read_lock();
451 p = find_task_by_vpid(pid);
452 if (!p || ((current->euid != p->euid) && (current->euid != p->uid)))
453 p = ERR_PTR(-ESRCH);
454 else
455 get_task_struct(p);
457 rcu_read_unlock();
459 return p;
463 * This task is holding PI mutexes at exit time => bad.
464 * Kernel cleans up PI-state, but userspace is likely hosed.
465 * (Robust-futex cleanup is separate and might save the day for userspace.)
467 void exit_pi_state_list(struct task_struct *curr)
469 struct list_head *next, *head = &curr->pi_state_list;
470 struct futex_pi_state *pi_state;
471 struct futex_hash_bucket *hb;
472 union futex_key key;
474 if (!futex_cmpxchg_enabled)
475 return;
477 * We are a ZOMBIE and nobody can enqueue itself on
478 * pi_state_list anymore, but we have to be careful
479 * versus waiters unqueueing themselves:
481 spin_lock_irq(&curr->pi_lock);
482 while (!list_empty(head)) {
484 next = head->next;
485 pi_state = list_entry(next, struct futex_pi_state, list);
486 key = pi_state->key;
487 hb = hash_futex(&key);
488 spin_unlock_irq(&curr->pi_lock);
490 spin_lock(&hb->lock);
492 spin_lock_irq(&curr->pi_lock);
494 * We dropped the pi-lock, so re-check whether this
495 * task still owns the PI-state:
497 if (head->next != next) {
498 spin_unlock(&hb->lock);
499 continue;
502 WARN_ON(pi_state->owner != curr);
503 WARN_ON(list_empty(&pi_state->list));
504 list_del_init(&pi_state->list);
505 pi_state->owner = NULL;
506 spin_unlock_irq(&curr->pi_lock);
508 rt_mutex_unlock(&pi_state->pi_mutex);
510 spin_unlock(&hb->lock);
512 spin_lock_irq(&curr->pi_lock);
514 spin_unlock_irq(&curr->pi_lock);
517 static int
518 lookup_pi_state(u32 uval, struct futex_hash_bucket *hb,
519 union futex_key *key, struct futex_pi_state **ps)
521 struct futex_pi_state *pi_state = NULL;
522 struct futex_q *this, *next;
523 struct plist_head *head;
524 struct task_struct *p;
525 pid_t pid = uval & FUTEX_TID_MASK;
527 head = &hb->chain;
529 plist_for_each_entry_safe(this, next, head, list) {
530 if (match_futex(&this->key, key)) {
532 * Another waiter already exists - bump up
533 * the refcount and return its pi_state:
535 pi_state = this->pi_state;
537 * Userspace might have messed up non PI and PI futexes
539 if (unlikely(!pi_state))
540 return -EINVAL;
542 WARN_ON(!atomic_read(&pi_state->refcount));
543 WARN_ON(pid && pi_state->owner &&
544 pi_state->owner->pid != pid);
546 atomic_inc(&pi_state->refcount);
547 *ps = pi_state;
549 return 0;
554 * We are the first waiter - try to look up the real owner and attach
555 * the new pi_state to it, but bail out when TID = 0
557 if (!pid)
558 return -ESRCH;
559 p = futex_find_get_task(pid);
560 if (IS_ERR(p))
561 return PTR_ERR(p);
564 * We need to look at the task state flags to figure out,
565 * whether the task is exiting. To protect against the do_exit
566 * change of the task flags, we do this protected by
567 * p->pi_lock:
569 spin_lock_irq(&p->pi_lock);
570 if (unlikely(p->flags & PF_EXITING)) {
572 * The task is on the way out. When PF_EXITPIDONE is
573 * set, we know that the task has finished the
574 * cleanup:
576 int ret = (p->flags & PF_EXITPIDONE) ? -ESRCH : -EAGAIN;
578 spin_unlock_irq(&p->pi_lock);
579 put_task_struct(p);
580 return ret;
583 pi_state = alloc_pi_state();
586 * Initialize the pi_mutex in locked state and make 'p'
587 * the owner of it:
589 rt_mutex_init_proxy_locked(&pi_state->pi_mutex, p);
591 /* Store the key for possible exit cleanups: */
592 pi_state->key = *key;
594 WARN_ON(!list_empty(&pi_state->list));
595 list_add(&pi_state->list, &p->pi_state_list);
596 pi_state->owner = p;
597 spin_unlock_irq(&p->pi_lock);
599 put_task_struct(p);
601 *ps = pi_state;
603 return 0;
607 * The hash bucket lock must be held when this is called.
608 * Afterwards, the futex_q must not be accessed.
610 static void wake_futex(struct futex_q *q)
612 plist_del(&q->list, &q->list.plist);
613 if (q->filp)
614 send_sigio(&q->filp->f_owner, q->fd, POLL_IN);
616 * The lock in wake_up_all() is a crucial memory barrier after the
617 * plist_del() and also before assigning to q->lock_ptr.
619 wake_up_all(&q->waiters);
621 * The waiting task can free the futex_q as soon as this is written,
622 * without taking any locks. This must come last.
624 * A memory barrier is required here to prevent the following store
625 * to lock_ptr from getting ahead of the wakeup. Clearing the lock
626 * at the end of wake_up_all() does not prevent this store from
627 * moving.
629 smp_wmb();
630 q->lock_ptr = NULL;
633 static int wake_futex_pi(u32 __user *uaddr, u32 uval, struct futex_q *this)
635 struct task_struct *new_owner;
636 struct futex_pi_state *pi_state = this->pi_state;
637 u32 curval, newval;
639 if (!pi_state)
640 return -EINVAL;
642 spin_lock(&pi_state->pi_mutex.wait_lock);
643 new_owner = rt_mutex_next_owner(&pi_state->pi_mutex);
646 * This happens when we have stolen the lock and the original
647 * pending owner did not enqueue itself back on the rt_mutex.
648 * Thats not a tragedy. We know that way, that a lock waiter
649 * is on the fly. We make the futex_q waiter the pending owner.
651 if (!new_owner)
652 new_owner = this->task;
655 * We pass it to the next owner. (The WAITERS bit is always
656 * kept enabled while there is PI state around. We must also
657 * preserve the owner died bit.)
659 if (!(uval & FUTEX_OWNER_DIED)) {
660 int ret = 0;
662 newval = FUTEX_WAITERS | task_pid_vnr(new_owner);
664 curval = cmpxchg_futex_value_locked(uaddr, uval, newval);
666 if (curval == -EFAULT)
667 ret = -EFAULT;
668 else if (curval != uval)
669 ret = -EINVAL;
670 if (ret) {
671 spin_unlock(&pi_state->pi_mutex.wait_lock);
672 return ret;
676 spin_lock_irq(&pi_state->owner->pi_lock);
677 WARN_ON(list_empty(&pi_state->list));
678 list_del_init(&pi_state->list);
679 spin_unlock_irq(&pi_state->owner->pi_lock);
681 spin_lock_irq(&new_owner->pi_lock);
682 WARN_ON(!list_empty(&pi_state->list));
683 list_add(&pi_state->list, &new_owner->pi_state_list);
684 pi_state->owner = new_owner;
685 spin_unlock_irq(&new_owner->pi_lock);
687 spin_unlock(&pi_state->pi_mutex.wait_lock);
688 rt_mutex_unlock(&pi_state->pi_mutex);
690 return 0;
693 static int unlock_futex_pi(u32 __user *uaddr, u32 uval)
695 u32 oldval;
698 * There is no waiter, so we unlock the futex. The owner died
699 * bit has not to be preserved here. We are the owner:
701 oldval = cmpxchg_futex_value_locked(uaddr, uval, 0);
703 if (oldval == -EFAULT)
704 return oldval;
705 if (oldval != uval)
706 return -EAGAIN;
708 return 0;
712 * Express the locking dependencies for lockdep:
714 static inline void
715 double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
717 if (hb1 <= hb2) {
718 spin_lock(&hb1->lock);
719 if (hb1 < hb2)
720 spin_lock_nested(&hb2->lock, SINGLE_DEPTH_NESTING);
721 } else { /* hb1 > hb2 */
722 spin_lock(&hb2->lock);
723 spin_lock_nested(&hb1->lock, SINGLE_DEPTH_NESTING);
728 * Wake up all waiters hashed on the physical page that is mapped
729 * to this virtual address:
731 static int futex_wake(u32 __user *uaddr, struct rw_semaphore *fshared,
732 int nr_wake, u32 bitset)
734 struct futex_hash_bucket *hb;
735 struct futex_q *this, *next;
736 struct plist_head *head;
737 union futex_key key;
738 int ret;
740 if (!bitset)
741 return -EINVAL;
743 futex_lock_mm(fshared);
745 ret = get_futex_key(uaddr, fshared, &key);
746 if (unlikely(ret != 0))
747 goto out;
749 hb = hash_futex(&key);
750 spin_lock(&hb->lock);
751 head = &hb->chain;
753 plist_for_each_entry_safe(this, next, head, list) {
754 if (match_futex (&this->key, &key)) {
755 if (this->pi_state) {
756 ret = -EINVAL;
757 break;
760 /* Check if one of the bits is set in both bitsets */
761 if (!(this->bitset & bitset))
762 continue;
764 wake_futex(this);
765 if (++ret >= nr_wake)
766 break;
770 spin_unlock(&hb->lock);
771 out:
772 futex_unlock_mm(fshared);
773 return ret;
777 * Wake up all waiters hashed on the physical page that is mapped
778 * to this virtual address:
780 static int
781 futex_wake_op(u32 __user *uaddr1, struct rw_semaphore *fshared,
782 u32 __user *uaddr2,
783 int nr_wake, int nr_wake2, int op)
785 union futex_key key1, key2;
786 struct futex_hash_bucket *hb1, *hb2;
787 struct plist_head *head;
788 struct futex_q *this, *next;
789 int ret, op_ret, attempt = 0;
791 retryfull:
792 futex_lock_mm(fshared);
794 ret = get_futex_key(uaddr1, fshared, &key1);
795 if (unlikely(ret != 0))
796 goto out;
797 ret = get_futex_key(uaddr2, fshared, &key2);
798 if (unlikely(ret != 0))
799 goto out;
801 hb1 = hash_futex(&key1);
802 hb2 = hash_futex(&key2);
804 retry:
805 double_lock_hb(hb1, hb2);
807 op_ret = futex_atomic_op_inuser(op, uaddr2);
808 if (unlikely(op_ret < 0)) {
809 u32 dummy;
811 spin_unlock(&hb1->lock);
812 if (hb1 != hb2)
813 spin_unlock(&hb2->lock);
815 #ifndef CONFIG_MMU
817 * we don't get EFAULT from MMU faults if we don't have an MMU,
818 * but we might get them from range checking
820 ret = op_ret;
821 goto out;
822 #endif
824 if (unlikely(op_ret != -EFAULT)) {
825 ret = op_ret;
826 goto out;
830 * futex_atomic_op_inuser needs to both read and write
831 * *(int __user *)uaddr2, but we can't modify it
832 * non-atomically. Therefore, if get_user below is not
833 * enough, we need to handle the fault ourselves, while
834 * still holding the mmap_sem.
836 if (attempt++) {
837 ret = futex_handle_fault((unsigned long)uaddr2,
838 fshared, attempt);
839 if (ret)
840 goto out;
841 goto retry;
845 * If we would have faulted, release mmap_sem,
846 * fault it in and start all over again.
848 futex_unlock_mm(fshared);
850 ret = get_user(dummy, uaddr2);
851 if (ret)
852 return ret;
854 goto retryfull;
857 head = &hb1->chain;
859 plist_for_each_entry_safe(this, next, head, list) {
860 if (match_futex (&this->key, &key1)) {
861 wake_futex(this);
862 if (++ret >= nr_wake)
863 break;
867 if (op_ret > 0) {
868 head = &hb2->chain;
870 op_ret = 0;
871 plist_for_each_entry_safe(this, next, head, list) {
872 if (match_futex (&this->key, &key2)) {
873 wake_futex(this);
874 if (++op_ret >= nr_wake2)
875 break;
878 ret += op_ret;
881 spin_unlock(&hb1->lock);
882 if (hb1 != hb2)
883 spin_unlock(&hb2->lock);
884 out:
885 futex_unlock_mm(fshared);
887 return ret;
891 * Requeue all waiters hashed on one physical page to another
892 * physical page.
894 static int futex_requeue(u32 __user *uaddr1, struct rw_semaphore *fshared,
895 u32 __user *uaddr2,
896 int nr_wake, int nr_requeue, u32 *cmpval)
898 union futex_key key1, key2;
899 struct futex_hash_bucket *hb1, *hb2;
900 struct plist_head *head1;
901 struct futex_q *this, *next;
902 int ret, drop_count = 0;
904 retry:
905 futex_lock_mm(fshared);
907 ret = get_futex_key(uaddr1, fshared, &key1);
908 if (unlikely(ret != 0))
909 goto out;
910 ret = get_futex_key(uaddr2, fshared, &key2);
911 if (unlikely(ret != 0))
912 goto out;
914 hb1 = hash_futex(&key1);
915 hb2 = hash_futex(&key2);
917 double_lock_hb(hb1, hb2);
919 if (likely(cmpval != NULL)) {
920 u32 curval;
922 ret = get_futex_value_locked(&curval, uaddr1);
924 if (unlikely(ret)) {
925 spin_unlock(&hb1->lock);
926 if (hb1 != hb2)
927 spin_unlock(&hb2->lock);
930 * If we would have faulted, release mmap_sem, fault
931 * it in and start all over again.
933 futex_unlock_mm(fshared);
935 ret = get_user(curval, uaddr1);
937 if (!ret)
938 goto retry;
940 return ret;
942 if (curval != *cmpval) {
943 ret = -EAGAIN;
944 goto out_unlock;
948 head1 = &hb1->chain;
949 plist_for_each_entry_safe(this, next, head1, list) {
950 if (!match_futex (&this->key, &key1))
951 continue;
952 if (++ret <= nr_wake) {
953 wake_futex(this);
954 } else {
956 * If key1 and key2 hash to the same bucket, no need to
957 * requeue.
959 if (likely(head1 != &hb2->chain)) {
960 plist_del(&this->list, &hb1->chain);
961 plist_add(&this->list, &hb2->chain);
962 this->lock_ptr = &hb2->lock;
963 #ifdef CONFIG_DEBUG_PI_LIST
964 this->list.plist.lock = &hb2->lock;
965 #endif
967 this->key = key2;
968 get_futex_key_refs(&key2);
969 drop_count++;
971 if (ret - nr_wake >= nr_requeue)
972 break;
976 out_unlock:
977 spin_unlock(&hb1->lock);
978 if (hb1 != hb2)
979 spin_unlock(&hb2->lock);
981 /* drop_futex_key_refs() must be called outside the spinlocks. */
982 while (--drop_count >= 0)
983 drop_futex_key_refs(&key1);
985 out:
986 futex_unlock_mm(fshared);
987 return ret;
990 /* The key must be already stored in q->key. */
991 static inline struct futex_hash_bucket *
992 queue_lock(struct futex_q *q, int fd, struct file *filp)
994 struct futex_hash_bucket *hb;
996 q->fd = fd;
997 q->filp = filp;
999 init_waitqueue_head(&q->waiters);
1001 get_futex_key_refs(&q->key);
1002 hb = hash_futex(&q->key);
1003 q->lock_ptr = &hb->lock;
1005 spin_lock(&hb->lock);
1006 return hb;
1009 static inline void __queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
1011 int prio;
1014 * The priority used to register this element is
1015 * - either the real thread-priority for the real-time threads
1016 * (i.e. threads with a priority lower than MAX_RT_PRIO)
1017 * - or MAX_RT_PRIO for non-RT threads.
1018 * Thus, all RT-threads are woken first in priority order, and
1019 * the others are woken last, in FIFO order.
1021 prio = min(current->normal_prio, MAX_RT_PRIO);
1023 plist_node_init(&q->list, prio);
1024 #ifdef CONFIG_DEBUG_PI_LIST
1025 q->list.plist.lock = &hb->lock;
1026 #endif
1027 plist_add(&q->list, &hb->chain);
1028 q->task = current;
1029 spin_unlock(&hb->lock);
1032 static inline void
1033 queue_unlock(struct futex_q *q, struct futex_hash_bucket *hb)
1035 spin_unlock(&hb->lock);
1036 drop_futex_key_refs(&q->key);
1040 * queue_me and unqueue_me must be called as a pair, each
1041 * exactly once. They are called with the hashed spinlock held.
1044 /* The key must be already stored in q->key. */
1045 static void queue_me(struct futex_q *q, int fd, struct file *filp)
1047 struct futex_hash_bucket *hb;
1049 hb = queue_lock(q, fd, filp);
1050 __queue_me(q, hb);
1053 /* Return 1 if we were still queued (ie. 0 means we were woken) */
1054 static int unqueue_me(struct futex_q *q)
1056 spinlock_t *lock_ptr;
1057 int ret = 0;
1059 /* In the common case we don't take the spinlock, which is nice. */
1060 retry:
1061 lock_ptr = q->lock_ptr;
1062 barrier();
1063 if (lock_ptr != NULL) {
1064 spin_lock(lock_ptr);
1066 * q->lock_ptr can change between reading it and
1067 * spin_lock(), causing us to take the wrong lock. This
1068 * corrects the race condition.
1070 * Reasoning goes like this: if we have the wrong lock,
1071 * q->lock_ptr must have changed (maybe several times)
1072 * between reading it and the spin_lock(). It can
1073 * change again after the spin_lock() but only if it was
1074 * already changed before the spin_lock(). It cannot,
1075 * however, change back to the original value. Therefore
1076 * we can detect whether we acquired the correct lock.
1078 if (unlikely(lock_ptr != q->lock_ptr)) {
1079 spin_unlock(lock_ptr);
1080 goto retry;
1082 WARN_ON(plist_node_empty(&q->list));
1083 plist_del(&q->list, &q->list.plist);
1085 BUG_ON(q->pi_state);
1087 spin_unlock(lock_ptr);
1088 ret = 1;
1091 drop_futex_key_refs(&q->key);
1092 return ret;
1096 * PI futexes can not be requeued and must remove themself from the
1097 * hash bucket. The hash bucket lock (i.e. lock_ptr) is held on entry
1098 * and dropped here.
1100 static void unqueue_me_pi(struct futex_q *q)
1102 WARN_ON(plist_node_empty(&q->list));
1103 plist_del(&q->list, &q->list.plist);
1105 BUG_ON(!q->pi_state);
1106 free_pi_state(q->pi_state);
1107 q->pi_state = NULL;
1109 spin_unlock(q->lock_ptr);
1111 drop_futex_key_refs(&q->key);
1115 * Fixup the pi_state owner with the new owner.
1117 * Must be called with hash bucket lock held and mm->sem held for non
1118 * private futexes.
1120 static int fixup_pi_state_owner(u32 __user *uaddr, struct futex_q *q,
1121 struct task_struct *newowner,
1122 struct rw_semaphore *fshared)
1124 u32 newtid = task_pid_vnr(newowner) | FUTEX_WAITERS;
1125 struct futex_pi_state *pi_state = q->pi_state;
1126 struct task_struct *oldowner = pi_state->owner;
1127 u32 uval, curval, newval;
1128 int ret, attempt = 0;
1130 /* Owner died? */
1131 if (!pi_state->owner)
1132 newtid |= FUTEX_OWNER_DIED;
1135 * We are here either because we stole the rtmutex from the
1136 * pending owner or we are the pending owner which failed to
1137 * get the rtmutex. We have to replace the pending owner TID
1138 * in the user space variable. This must be atomic as we have
1139 * to preserve the owner died bit here.
1141 * Note: We write the user space value _before_ changing the
1142 * pi_state because we can fault here. Imagine swapped out
1143 * pages or a fork, which was running right before we acquired
1144 * mmap_sem, that marked all the anonymous memory readonly for
1145 * cow.
1147 * Modifying pi_state _before_ the user space value would
1148 * leave the pi_state in an inconsistent state when we fault
1149 * here, because we need to drop the hash bucket lock to
1150 * handle the fault. This might be observed in the PID check
1151 * in lookup_pi_state.
1153 retry:
1154 if (get_futex_value_locked(&uval, uaddr))
1155 goto handle_fault;
1157 while (1) {
1158 newval = (uval & FUTEX_OWNER_DIED) | newtid;
1160 curval = cmpxchg_futex_value_locked(uaddr, uval, newval);
1162 if (curval == -EFAULT)
1163 goto handle_fault;
1164 if (curval == uval)
1165 break;
1166 uval = curval;
1170 * We fixed up user space. Now we need to fix the pi_state
1171 * itself.
1173 if (pi_state->owner != NULL) {
1174 spin_lock_irq(&pi_state->owner->pi_lock);
1175 WARN_ON(list_empty(&pi_state->list));
1176 list_del_init(&pi_state->list);
1177 spin_unlock_irq(&pi_state->owner->pi_lock);
1180 pi_state->owner = newowner;
1182 spin_lock_irq(&newowner->pi_lock);
1183 WARN_ON(!list_empty(&pi_state->list));
1184 list_add(&pi_state->list, &newowner->pi_state_list);
1185 spin_unlock_irq(&newowner->pi_lock);
1186 return 0;
1189 * To handle the page fault we need to drop the hash bucket
1190 * lock here. That gives the other task (either the pending
1191 * owner itself or the task which stole the rtmutex) the
1192 * chance to try the fixup of the pi_state. So once we are
1193 * back from handling the fault we need to check the pi_state
1194 * after reacquiring the hash bucket lock and before trying to
1195 * do another fixup. When the fixup has been done already we
1196 * simply return.
1198 handle_fault:
1199 spin_unlock(q->lock_ptr);
1201 ret = futex_handle_fault((unsigned long)uaddr, fshared, attempt++);
1203 spin_lock(q->lock_ptr);
1206 * Check if someone else fixed it for us:
1208 if (pi_state->owner != oldowner)
1209 return 0;
1211 if (ret)
1212 return ret;
1214 goto retry;
1218 * In case we must use restart_block to restart a futex_wait,
1219 * we encode in the 'flags' shared capability
1221 #define FLAGS_SHARED 1
1223 static long futex_wait_restart(struct restart_block *restart);
1225 static int futex_wait(u32 __user *uaddr, struct rw_semaphore *fshared,
1226 u32 val, ktime_t *abs_time, u32 bitset)
1228 struct task_struct *curr = current;
1229 DECLARE_WAITQUEUE(wait, curr);
1230 struct futex_hash_bucket *hb;
1231 struct futex_q q;
1232 u32 uval;
1233 int ret;
1234 struct hrtimer_sleeper t;
1235 int rem = 0;
1237 if (!bitset)
1238 return -EINVAL;
1240 q.pi_state = NULL;
1241 q.bitset = bitset;
1242 retry:
1243 futex_lock_mm(fshared);
1245 ret = get_futex_key(uaddr, fshared, &q.key);
1246 if (unlikely(ret != 0))
1247 goto out_release_sem;
1249 hb = queue_lock(&q, -1, NULL);
1252 * Access the page AFTER the futex is queued.
1253 * Order is important:
1255 * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
1256 * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); }
1258 * The basic logical guarantee of a futex is that it blocks ONLY
1259 * if cond(var) is known to be true at the time of blocking, for
1260 * any cond. If we queued after testing *uaddr, that would open
1261 * a race condition where we could block indefinitely with
1262 * cond(var) false, which would violate the guarantee.
1264 * A consequence is that futex_wait() can return zero and absorb
1265 * a wakeup when *uaddr != val on entry to the syscall. This is
1266 * rare, but normal.
1268 * for shared futexes, we hold the mmap semaphore, so the mapping
1269 * cannot have changed since we looked it up in get_futex_key.
1271 ret = get_futex_value_locked(&uval, uaddr);
1273 if (unlikely(ret)) {
1274 queue_unlock(&q, hb);
1277 * If we would have faulted, release mmap_sem, fault it in and
1278 * start all over again.
1280 futex_unlock_mm(fshared);
1282 ret = get_user(uval, uaddr);
1284 if (!ret)
1285 goto retry;
1286 return ret;
1288 ret = -EWOULDBLOCK;
1289 if (uval != val)
1290 goto out_unlock_release_sem;
1292 /* Only actually queue if *uaddr contained val. */
1293 __queue_me(&q, hb);
1296 * Now the futex is queued and we have checked the data, we
1297 * don't want to hold mmap_sem while we sleep.
1299 futex_unlock_mm(fshared);
1302 * There might have been scheduling since the queue_me(), as we
1303 * cannot hold a spinlock across the get_user() in case it
1304 * faults, and we cannot just set TASK_INTERRUPTIBLE state when
1305 * queueing ourselves into the futex hash. This code thus has to
1306 * rely on the futex_wake() code removing us from hash when it
1307 * wakes us up.
1310 /* add_wait_queue is the barrier after __set_current_state. */
1311 __set_current_state(TASK_INTERRUPTIBLE);
1312 add_wait_queue(&q.waiters, &wait);
1314 * !plist_node_empty() is safe here without any lock.
1315 * q.lock_ptr != 0 is not safe, because of ordering against wakeup.
1317 if (likely(!plist_node_empty(&q.list))) {
1318 if (!abs_time)
1319 schedule();
1320 else {
1321 hrtimer_init(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
1322 hrtimer_init_sleeper(&t, current);
1323 t.timer.expires = *abs_time;
1325 hrtimer_start(&t.timer, t.timer.expires, HRTIMER_MODE_ABS);
1326 if (!hrtimer_active(&t.timer))
1327 t.task = NULL;
1330 * the timer could have already expired, in which
1331 * case current would be flagged for rescheduling.
1332 * Don't bother calling schedule.
1334 if (likely(t.task))
1335 schedule();
1337 hrtimer_cancel(&t.timer);
1339 /* Flag if a timeout occured */
1340 rem = (t.task == NULL);
1343 __set_current_state(TASK_RUNNING);
1346 * NOTE: we don't remove ourselves from the waitqueue because
1347 * we are the only user of it.
1350 /* If we were woken (and unqueued), we succeeded, whatever. */
1351 if (!unqueue_me(&q))
1352 return 0;
1353 if (rem)
1354 return -ETIMEDOUT;
1357 * We expect signal_pending(current), but another thread may
1358 * have handled it for us already.
1360 if (!abs_time)
1361 return -ERESTARTSYS;
1362 else {
1363 struct restart_block *restart;
1364 restart = &current_thread_info()->restart_block;
1365 restart->fn = futex_wait_restart;
1366 restart->futex.uaddr = (u32 *)uaddr;
1367 restart->futex.val = val;
1368 restart->futex.time = abs_time->tv64;
1369 restart->futex.bitset = bitset;
1370 restart->futex.flags = 0;
1372 if (fshared)
1373 restart->futex.flags |= FLAGS_SHARED;
1374 return -ERESTART_RESTARTBLOCK;
1377 out_unlock_release_sem:
1378 queue_unlock(&q, hb);
1380 out_release_sem:
1381 futex_unlock_mm(fshared);
1382 return ret;
1386 static long futex_wait_restart(struct restart_block *restart)
1388 u32 __user *uaddr = (u32 __user *)restart->futex.uaddr;
1389 struct rw_semaphore *fshared = NULL;
1390 ktime_t t;
1392 t.tv64 = restart->futex.time;
1393 restart->fn = do_no_restart_syscall;
1394 if (restart->futex.flags & FLAGS_SHARED)
1395 fshared = &current->mm->mmap_sem;
1396 return (long)futex_wait(uaddr, fshared, restart->futex.val, &t,
1397 restart->futex.bitset);
1402 * Userspace tried a 0 -> TID atomic transition of the futex value
1403 * and failed. The kernel side here does the whole locking operation:
1404 * if there are waiters then it will block, it does PI, etc. (Due to
1405 * races the kernel might see a 0 value of the futex too.)
1407 static int futex_lock_pi(u32 __user *uaddr, struct rw_semaphore *fshared,
1408 int detect, ktime_t *time, int trylock)
1410 struct hrtimer_sleeper timeout, *to = NULL;
1411 struct task_struct *curr = current;
1412 struct futex_hash_bucket *hb;
1413 u32 uval, newval, curval;
1414 struct futex_q q;
1415 int ret, lock_taken, ownerdied = 0, attempt = 0;
1417 if (refill_pi_state_cache())
1418 return -ENOMEM;
1420 if (time) {
1421 to = &timeout;
1422 hrtimer_init(&to->timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
1423 hrtimer_init_sleeper(to, current);
1424 to->timer.expires = *time;
1427 q.pi_state = NULL;
1428 retry:
1429 futex_lock_mm(fshared);
1431 ret = get_futex_key(uaddr, fshared, &q.key);
1432 if (unlikely(ret != 0))
1433 goto out_release_sem;
1435 retry_unlocked:
1436 hb = queue_lock(&q, -1, NULL);
1438 retry_locked:
1439 ret = lock_taken = 0;
1442 * To avoid races, we attempt to take the lock here again
1443 * (by doing a 0 -> TID atomic cmpxchg), while holding all
1444 * the locks. It will most likely not succeed.
1446 newval = task_pid_vnr(current);
1448 curval = cmpxchg_futex_value_locked(uaddr, 0, newval);
1450 if (unlikely(curval == -EFAULT))
1451 goto uaddr_faulted;
1454 * Detect deadlocks. In case of REQUEUE_PI this is a valid
1455 * situation and we return success to user space.
1457 if (unlikely((curval & FUTEX_TID_MASK) == task_pid_vnr(current))) {
1458 ret = -EDEADLK;
1459 goto out_unlock_release_sem;
1463 * Surprise - we got the lock. Just return to userspace:
1465 if (unlikely(!curval))
1466 goto out_unlock_release_sem;
1468 uval = curval;
1471 * Set the WAITERS flag, so the owner will know it has someone
1472 * to wake at next unlock
1474 newval = curval | FUTEX_WAITERS;
1477 * There are two cases, where a futex might have no owner (the
1478 * owner TID is 0): OWNER_DIED. We take over the futex in this
1479 * case. We also do an unconditional take over, when the owner
1480 * of the futex died.
1482 * This is safe as we are protected by the hash bucket lock !
1484 if (unlikely(ownerdied || !(curval & FUTEX_TID_MASK))) {
1485 /* Keep the OWNER_DIED bit */
1486 newval = (curval & ~FUTEX_TID_MASK) | task_pid_vnr(current);
1487 ownerdied = 0;
1488 lock_taken = 1;
1491 curval = cmpxchg_futex_value_locked(uaddr, uval, newval);
1493 if (unlikely(curval == -EFAULT))
1494 goto uaddr_faulted;
1495 if (unlikely(curval != uval))
1496 goto retry_locked;
1499 * We took the lock due to owner died take over.
1501 if (unlikely(lock_taken))
1502 goto out_unlock_release_sem;
1505 * We dont have the lock. Look up the PI state (or create it if
1506 * we are the first waiter):
1508 ret = lookup_pi_state(uval, hb, &q.key, &q.pi_state);
1510 if (unlikely(ret)) {
1511 switch (ret) {
1513 case -EAGAIN:
1515 * Task is exiting and we just wait for the
1516 * exit to complete.
1518 queue_unlock(&q, hb);
1519 futex_unlock_mm(fshared);
1520 cond_resched();
1521 goto retry;
1523 case -ESRCH:
1525 * No owner found for this futex. Check if the
1526 * OWNER_DIED bit is set to figure out whether
1527 * this is a robust futex or not.
1529 if (get_futex_value_locked(&curval, uaddr))
1530 goto uaddr_faulted;
1533 * We simply start over in case of a robust
1534 * futex. The code above will take the futex
1535 * and return happy.
1537 if (curval & FUTEX_OWNER_DIED) {
1538 ownerdied = 1;
1539 goto retry_locked;
1541 default:
1542 goto out_unlock_release_sem;
1547 * Only actually queue now that the atomic ops are done:
1549 __queue_me(&q, hb);
1552 * Now the futex is queued and we have checked the data, we
1553 * don't want to hold mmap_sem while we sleep.
1555 futex_unlock_mm(fshared);
1557 WARN_ON(!q.pi_state);
1559 * Block on the PI mutex:
1561 if (!trylock)
1562 ret = rt_mutex_timed_lock(&q.pi_state->pi_mutex, to, 1);
1563 else {
1564 ret = rt_mutex_trylock(&q.pi_state->pi_mutex);
1565 /* Fixup the trylock return value: */
1566 ret = ret ? 0 : -EWOULDBLOCK;
1569 futex_lock_mm(fshared);
1570 spin_lock(q.lock_ptr);
1572 if (!ret) {
1574 * Got the lock. We might not be the anticipated owner
1575 * if we did a lock-steal - fix up the PI-state in
1576 * that case:
1578 if (q.pi_state->owner != curr)
1579 ret = fixup_pi_state_owner(uaddr, &q, curr, fshared);
1580 } else {
1582 * Catch the rare case, where the lock was released
1583 * when we were on the way back before we locked the
1584 * hash bucket.
1586 if (q.pi_state->owner == curr) {
1588 * Try to get the rt_mutex now. This might
1589 * fail as some other task acquired the
1590 * rt_mutex after we removed ourself from the
1591 * rt_mutex waiters list.
1593 if (rt_mutex_trylock(&q.pi_state->pi_mutex))
1594 ret = 0;
1595 else {
1597 * pi_state is incorrect, some other
1598 * task did a lock steal and we
1599 * returned due to timeout or signal
1600 * without taking the rt_mutex. Too
1601 * late. We can access the
1602 * rt_mutex_owner without locking, as
1603 * the other task is now blocked on
1604 * the hash bucket lock. Fix the state
1605 * up.
1607 struct task_struct *owner;
1608 int res;
1610 owner = rt_mutex_owner(&q.pi_state->pi_mutex);
1611 res = fixup_pi_state_owner(uaddr, &q, owner,
1612 fshared);
1614 /* propagate -EFAULT, if the fixup failed */
1615 if (res)
1616 ret = res;
1618 } else {
1620 * Paranoia check. If we did not take the lock
1621 * in the trylock above, then we should not be
1622 * the owner of the rtmutex, neither the real
1623 * nor the pending one:
1625 if (rt_mutex_owner(&q.pi_state->pi_mutex) == curr)
1626 printk(KERN_ERR "futex_lock_pi: ret = %d "
1627 "pi-mutex: %p pi-state %p\n", ret,
1628 q.pi_state->pi_mutex.owner,
1629 q.pi_state->owner);
1633 /* Unqueue and drop the lock */
1634 unqueue_me_pi(&q);
1635 futex_unlock_mm(fshared);
1637 return ret != -EINTR ? ret : -ERESTARTNOINTR;
1639 out_unlock_release_sem:
1640 queue_unlock(&q, hb);
1642 out_release_sem:
1643 futex_unlock_mm(fshared);
1644 return ret;
1646 uaddr_faulted:
1648 * We have to r/w *(int __user *)uaddr, but we can't modify it
1649 * non-atomically. Therefore, if get_user below is not
1650 * enough, we need to handle the fault ourselves, while
1651 * still holding the mmap_sem.
1653 * ... and hb->lock. :-) --ANK
1655 queue_unlock(&q, hb);
1657 if (attempt++) {
1658 ret = futex_handle_fault((unsigned long)uaddr, fshared,
1659 attempt);
1660 if (ret)
1661 goto out_release_sem;
1662 goto retry_unlocked;
1665 futex_unlock_mm(fshared);
1667 ret = get_user(uval, uaddr);
1668 if (!ret && (uval != -EFAULT))
1669 goto retry;
1671 return ret;
1675 * Userspace attempted a TID -> 0 atomic transition, and failed.
1676 * This is the in-kernel slowpath: we look up the PI state (if any),
1677 * and do the rt-mutex unlock.
1679 static int futex_unlock_pi(u32 __user *uaddr, struct rw_semaphore *fshared)
1681 struct futex_hash_bucket *hb;
1682 struct futex_q *this, *next;
1683 u32 uval;
1684 struct plist_head *head;
1685 union futex_key key;
1686 int ret, attempt = 0;
1688 retry:
1689 if (get_user(uval, uaddr))
1690 return -EFAULT;
1692 * We release only a lock we actually own:
1694 if ((uval & FUTEX_TID_MASK) != task_pid_vnr(current))
1695 return -EPERM;
1697 * First take all the futex related locks:
1699 futex_lock_mm(fshared);
1701 ret = get_futex_key(uaddr, fshared, &key);
1702 if (unlikely(ret != 0))
1703 goto out;
1705 hb = hash_futex(&key);
1706 retry_unlocked:
1707 spin_lock(&hb->lock);
1710 * To avoid races, try to do the TID -> 0 atomic transition
1711 * again. If it succeeds then we can return without waking
1712 * anyone else up:
1714 if (!(uval & FUTEX_OWNER_DIED))
1715 uval = cmpxchg_futex_value_locked(uaddr, task_pid_vnr(current), 0);
1718 if (unlikely(uval == -EFAULT))
1719 goto pi_faulted;
1721 * Rare case: we managed to release the lock atomically,
1722 * no need to wake anyone else up:
1724 if (unlikely(uval == task_pid_vnr(current)))
1725 goto out_unlock;
1728 * Ok, other tasks may need to be woken up - check waiters
1729 * and do the wakeup if necessary:
1731 head = &hb->chain;
1733 plist_for_each_entry_safe(this, next, head, list) {
1734 if (!match_futex (&this->key, &key))
1735 continue;
1736 ret = wake_futex_pi(uaddr, uval, this);
1738 * The atomic access to the futex value
1739 * generated a pagefault, so retry the
1740 * user-access and the wakeup:
1742 if (ret == -EFAULT)
1743 goto pi_faulted;
1744 goto out_unlock;
1747 * No waiters - kernel unlocks the futex:
1749 if (!(uval & FUTEX_OWNER_DIED)) {
1750 ret = unlock_futex_pi(uaddr, uval);
1751 if (ret == -EFAULT)
1752 goto pi_faulted;
1755 out_unlock:
1756 spin_unlock(&hb->lock);
1757 out:
1758 futex_unlock_mm(fshared);
1760 return ret;
1762 pi_faulted:
1764 * We have to r/w *(int __user *)uaddr, but we can't modify it
1765 * non-atomically. Therefore, if get_user below is not
1766 * enough, we need to handle the fault ourselves, while
1767 * still holding the mmap_sem.
1769 * ... and hb->lock. --ANK
1771 spin_unlock(&hb->lock);
1773 if (attempt++) {
1774 ret = futex_handle_fault((unsigned long)uaddr, fshared,
1775 attempt);
1776 if (ret)
1777 goto out;
1778 uval = 0;
1779 goto retry_unlocked;
1782 futex_unlock_mm(fshared);
1784 ret = get_user(uval, uaddr);
1785 if (!ret && (uval != -EFAULT))
1786 goto retry;
1788 return ret;
1791 static int futex_close(struct inode *inode, struct file *filp)
1793 struct futex_q *q = filp->private_data;
1795 unqueue_me(q);
1796 kfree(q);
1798 return 0;
1801 /* This is one-shot: once it's gone off you need a new fd */
1802 static unsigned int futex_poll(struct file *filp,
1803 struct poll_table_struct *wait)
1805 struct futex_q *q = filp->private_data;
1806 int ret = 0;
1808 poll_wait(filp, &q->waiters, wait);
1811 * plist_node_empty() is safe here without any lock.
1812 * q->lock_ptr != 0 is not safe, because of ordering against wakeup.
1814 if (plist_node_empty(&q->list))
1815 ret = POLLIN | POLLRDNORM;
1817 return ret;
1820 static const struct file_operations futex_fops = {
1821 .release = futex_close,
1822 .poll = futex_poll,
1826 * Signal allows caller to avoid the race which would occur if they
1827 * set the sigio stuff up afterwards.
1829 static int futex_fd(u32 __user *uaddr, int signal)
1831 struct futex_q *q;
1832 struct file *filp;
1833 int ret, err;
1834 struct rw_semaphore *fshared;
1835 static unsigned long printk_interval;
1837 if (printk_timed_ratelimit(&printk_interval, 60 * 60 * 1000)) {
1838 printk(KERN_WARNING "Process `%s' used FUTEX_FD, which "
1839 "will be removed from the kernel in June 2007\n",
1840 current->comm);
1843 ret = -EINVAL;
1844 if (!valid_signal(signal))
1845 goto out;
1847 ret = get_unused_fd();
1848 if (ret < 0)
1849 goto out;
1850 filp = get_empty_filp();
1851 if (!filp) {
1852 put_unused_fd(ret);
1853 ret = -ENFILE;
1854 goto out;
1856 filp->f_op = &futex_fops;
1857 filp->f_path.mnt = mntget(futex_mnt);
1858 filp->f_path.dentry = dget(futex_mnt->mnt_root);
1859 filp->f_mapping = filp->f_path.dentry->d_inode->i_mapping;
1861 if (signal) {
1862 err = __f_setown(filp, task_pid(current), PIDTYPE_PID, 1);
1863 if (err < 0) {
1864 goto error;
1866 filp->f_owner.signum = signal;
1869 q = kmalloc(sizeof(*q), GFP_KERNEL);
1870 if (!q) {
1871 err = -ENOMEM;
1872 goto error;
1874 q->pi_state = NULL;
1876 fshared = &current->mm->mmap_sem;
1877 down_read(fshared);
1878 err = get_futex_key(uaddr, fshared, &q->key);
1880 if (unlikely(err != 0)) {
1881 up_read(fshared);
1882 kfree(q);
1883 goto error;
1887 * queue_me() must be called before releasing mmap_sem, because
1888 * key->shared.inode needs to be referenced while holding it.
1890 filp->private_data = q;
1892 queue_me(q, ret, filp);
1893 up_read(fshared);
1895 /* Now we map fd to filp, so userspace can access it */
1896 fd_install(ret, filp);
1897 out:
1898 return ret;
1899 error:
1900 put_unused_fd(ret);
1901 put_filp(filp);
1902 ret = err;
1903 goto out;
1907 * Support for robust futexes: the kernel cleans up held futexes at
1908 * thread exit time.
1910 * Implementation: user-space maintains a per-thread list of locks it
1911 * is holding. Upon do_exit(), the kernel carefully walks this list,
1912 * and marks all locks that are owned by this thread with the
1913 * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is
1914 * always manipulated with the lock held, so the list is private and
1915 * per-thread. Userspace also maintains a per-thread 'list_op_pending'
1916 * field, to allow the kernel to clean up if the thread dies after
1917 * acquiring the lock, but just before it could have added itself to
1918 * the list. There can only be one such pending lock.
1922 * sys_set_robust_list - set the robust-futex list head of a task
1923 * @head: pointer to the list-head
1924 * @len: length of the list-head, as userspace expects
1926 asmlinkage long
1927 sys_set_robust_list(struct robust_list_head __user *head,
1928 size_t len)
1930 if (!futex_cmpxchg_enabled)
1931 return -ENOSYS;
1933 * The kernel knows only one size for now:
1935 if (unlikely(len != sizeof(*head)))
1936 return -EINVAL;
1938 current->robust_list = head;
1940 return 0;
1944 * sys_get_robust_list - get the robust-futex list head of a task
1945 * @pid: pid of the process [zero for current task]
1946 * @head_ptr: pointer to a list-head pointer, the kernel fills it in
1947 * @len_ptr: pointer to a length field, the kernel fills in the header size
1949 asmlinkage long
1950 sys_get_robust_list(int pid, struct robust_list_head __user * __user *head_ptr,
1951 size_t __user *len_ptr)
1953 struct robust_list_head __user *head;
1954 unsigned long ret;
1956 if (!futex_cmpxchg_enabled)
1957 return -ENOSYS;
1959 if (!pid)
1960 head = current->robust_list;
1961 else {
1962 struct task_struct *p;
1964 ret = -ESRCH;
1965 rcu_read_lock();
1966 p = find_task_by_vpid(pid);
1967 if (!p)
1968 goto err_unlock;
1969 ret = -EPERM;
1970 if ((current->euid != p->euid) && (current->euid != p->uid) &&
1971 !capable(CAP_SYS_PTRACE))
1972 goto err_unlock;
1973 head = p->robust_list;
1974 rcu_read_unlock();
1977 if (put_user(sizeof(*head), len_ptr))
1978 return -EFAULT;
1979 return put_user(head, head_ptr);
1981 err_unlock:
1982 rcu_read_unlock();
1984 return ret;
1988 * Process a futex-list entry, check whether it's owned by the
1989 * dying task, and do notification if so:
1991 int handle_futex_death(u32 __user *uaddr, struct task_struct *curr, int pi)
1993 u32 uval, nval, mval;
1995 retry:
1996 if (get_user(uval, uaddr))
1997 return -1;
1999 if ((uval & FUTEX_TID_MASK) == task_pid_vnr(curr)) {
2001 * Ok, this dying thread is truly holding a futex
2002 * of interest. Set the OWNER_DIED bit atomically
2003 * via cmpxchg, and if the value had FUTEX_WAITERS
2004 * set, wake up a waiter (if any). (We have to do a
2005 * futex_wake() even if OWNER_DIED is already set -
2006 * to handle the rare but possible case of recursive
2007 * thread-death.) The rest of the cleanup is done in
2008 * userspace.
2010 mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED;
2011 nval = futex_atomic_cmpxchg_inatomic(uaddr, uval, mval);
2013 if (nval == -EFAULT)
2014 return -1;
2016 if (nval != uval)
2017 goto retry;
2020 * Wake robust non-PI futexes here. The wakeup of
2021 * PI futexes happens in exit_pi_state():
2023 if (!pi && (uval & FUTEX_WAITERS))
2024 futex_wake(uaddr, &curr->mm->mmap_sem, 1,
2025 FUTEX_BITSET_MATCH_ANY);
2027 return 0;
2031 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
2033 static inline int fetch_robust_entry(struct robust_list __user **entry,
2034 struct robust_list __user * __user *head,
2035 int *pi)
2037 unsigned long uentry;
2039 if (get_user(uentry, (unsigned long __user *)head))
2040 return -EFAULT;
2042 *entry = (void __user *)(uentry & ~1UL);
2043 *pi = uentry & 1;
2045 return 0;
2049 * Walk curr->robust_list (very carefully, it's a userspace list!)
2050 * and mark any locks found there dead, and notify any waiters.
2052 * We silently return on any sign of list-walking problem.
2054 void exit_robust_list(struct task_struct *curr)
2056 struct robust_list_head __user *head = curr->robust_list;
2057 struct robust_list __user *entry, *next_entry, *pending;
2058 unsigned int limit = ROBUST_LIST_LIMIT, pi, next_pi, pip;
2059 unsigned long futex_offset;
2060 int rc;
2062 if (!futex_cmpxchg_enabled)
2063 return;
2066 * Fetch the list head (which was registered earlier, via
2067 * sys_set_robust_list()):
2069 if (fetch_robust_entry(&entry, &head->list.next, &pi))
2070 return;
2072 * Fetch the relative futex offset:
2074 if (get_user(futex_offset, &head->futex_offset))
2075 return;
2077 * Fetch any possibly pending lock-add first, and handle it
2078 * if it exists:
2080 if (fetch_robust_entry(&pending, &head->list_op_pending, &pip))
2081 return;
2083 next_entry = NULL; /* avoid warning with gcc */
2084 while (entry != &head->list) {
2086 * Fetch the next entry in the list before calling
2087 * handle_futex_death:
2089 rc = fetch_robust_entry(&next_entry, &entry->next, &next_pi);
2091 * A pending lock might already be on the list, so
2092 * don't process it twice:
2094 if (entry != pending)
2095 if (handle_futex_death((void __user *)entry + futex_offset,
2096 curr, pi))
2097 return;
2098 if (rc)
2099 return;
2100 entry = next_entry;
2101 pi = next_pi;
2103 * Avoid excessively long or circular lists:
2105 if (!--limit)
2106 break;
2108 cond_resched();
2111 if (pending)
2112 handle_futex_death((void __user *)pending + futex_offset,
2113 curr, pip);
2116 long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout,
2117 u32 __user *uaddr2, u32 val2, u32 val3)
2119 int ret = -ENOSYS;
2120 int cmd = op & FUTEX_CMD_MASK;
2121 struct rw_semaphore *fshared = NULL;
2123 if (!(op & FUTEX_PRIVATE_FLAG))
2124 fshared = &current->mm->mmap_sem;
2126 switch (cmd) {
2127 case FUTEX_WAIT:
2128 val3 = FUTEX_BITSET_MATCH_ANY;
2129 case FUTEX_WAIT_BITSET:
2130 ret = futex_wait(uaddr, fshared, val, timeout, val3);
2131 break;
2132 case FUTEX_WAKE:
2133 val3 = FUTEX_BITSET_MATCH_ANY;
2134 case FUTEX_WAKE_BITSET:
2135 ret = futex_wake(uaddr, fshared, val, val3);
2136 break;
2137 case FUTEX_FD:
2138 /* non-zero val means F_SETOWN(getpid()) & F_SETSIG(val) */
2139 ret = futex_fd(uaddr, val);
2140 break;
2141 case FUTEX_REQUEUE:
2142 ret = futex_requeue(uaddr, fshared, uaddr2, val, val2, NULL);
2143 break;
2144 case FUTEX_CMP_REQUEUE:
2145 ret = futex_requeue(uaddr, fshared, uaddr2, val, val2, &val3);
2146 break;
2147 case FUTEX_WAKE_OP:
2148 ret = futex_wake_op(uaddr, fshared, uaddr2, val, val2, val3);
2149 break;
2150 case FUTEX_LOCK_PI:
2151 if (futex_cmpxchg_enabled)
2152 ret = futex_lock_pi(uaddr, fshared, val, timeout, 0);
2153 break;
2154 case FUTEX_UNLOCK_PI:
2155 if (futex_cmpxchg_enabled)
2156 ret = futex_unlock_pi(uaddr, fshared);
2157 break;
2158 case FUTEX_TRYLOCK_PI:
2159 if (futex_cmpxchg_enabled)
2160 ret = futex_lock_pi(uaddr, fshared, 0, timeout, 1);
2161 break;
2162 default:
2163 ret = -ENOSYS;
2165 return ret;
2169 asmlinkage long sys_futex(u32 __user *uaddr, int op, u32 val,
2170 struct timespec __user *utime, u32 __user *uaddr2,
2171 u32 val3)
2173 struct timespec ts;
2174 ktime_t t, *tp = NULL;
2175 u32 val2 = 0;
2176 int cmd = op & FUTEX_CMD_MASK;
2178 if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI ||
2179 cmd == FUTEX_WAIT_BITSET)) {
2180 if (copy_from_user(&ts, utime, sizeof(ts)) != 0)
2181 return -EFAULT;
2182 if (!timespec_valid(&ts))
2183 return -EINVAL;
2185 t = timespec_to_ktime(ts);
2186 if (cmd == FUTEX_WAIT)
2187 t = ktime_add_safe(ktime_get(), t);
2188 tp = &t;
2191 * requeue parameter in 'utime' if cmd == FUTEX_REQUEUE.
2192 * number of waiters to wake in 'utime' if cmd == FUTEX_WAKE_OP.
2194 if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE ||
2195 cmd == FUTEX_WAKE_OP)
2196 val2 = (u32) (unsigned long) utime;
2198 return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
2201 static int futexfs_get_sb(struct file_system_type *fs_type,
2202 int flags, const char *dev_name, void *data,
2203 struct vfsmount *mnt)
2205 return get_sb_pseudo(fs_type, "futex", NULL, FUTEXFS_SUPER_MAGIC, mnt);
2208 static struct file_system_type futex_fs_type = {
2209 .name = "futexfs",
2210 .get_sb = futexfs_get_sb,
2211 .kill_sb = kill_anon_super,
2214 static int __init futex_init(void)
2216 u32 curval;
2217 int i;
2220 * This will fail and we want it. Some arch implementations do
2221 * runtime detection of the futex_atomic_cmpxchg_inatomic()
2222 * functionality. We want to know that before we call in any
2223 * of the complex code paths. Also we want to prevent
2224 * registration of robust lists in that case. NULL is
2225 * guaranteed to fault and we get -EFAULT on functional
2226 * implementation, the non functional ones will return
2227 * -ENOSYS.
2229 curval = cmpxchg_futex_value_locked(NULL, 0, 0);
2230 if (curval == -EFAULT)
2231 futex_cmpxchg_enabled = 1;
2233 for (i = 0; i < ARRAY_SIZE(futex_queues); i++) {
2234 plist_head_init(&futex_queues[i].chain, &futex_queues[i].lock);
2235 spin_lock_init(&futex_queues[i].lock);
2238 i = register_filesystem(&futex_fs_type);
2239 if (i)
2240 return i;
2242 futex_mnt = kern_mount(&futex_fs_type);
2243 if (IS_ERR(futex_mnt)) {
2244 unregister_filesystem(&futex_fs_type);
2245 return PTR_ERR(futex_mnt);
2248 return 0;
2250 __initcall(futex_init);