MM: Fix macro argument substitution in PageHead() and PageTail()
[linux-2.6.22.y-op.git] / kernel / futex.c
blob592cf07aa2029bc8673497b18d0021642ab024d9
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 <asm/futex.h>
57 #include "rtmutex_common.h"
59 #define FUTEX_HASHBITS (CONFIG_BASE_SMALL ? 4 : 8)
62 * Priority Inheritance state:
64 struct futex_pi_state {
66 * list of 'owned' pi_state instances - these have to be
67 * cleaned up in do_exit() if the task exits prematurely:
69 struct list_head list;
72 * The PI object:
74 struct rt_mutex pi_mutex;
76 struct task_struct *owner;
77 atomic_t refcount;
79 union futex_key key;
83 * 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).
86 * A futex_q has a woken state, just like tasks have TASK_RUNNING.
87 * It is considered woken when plist_node_empty(&q->list) || q->lock_ptr == 0.
88 * The order of wakup is always to make the first condition true, then
89 * wake up q->waiters, then make the second condition true.
91 struct futex_q {
92 struct plist_node list;
93 wait_queue_head_t waiters;
95 /* Which hash list lock to use: */
96 spinlock_t *lock_ptr;
98 /* Key which the futex is hashed on: */
99 union futex_key key;
101 /* For fd, sigio sent using these: */
102 int fd;
103 struct file *filp;
105 /* Optional priority inheritance state: */
106 struct futex_pi_state *pi_state;
107 struct task_struct *task;
111 * Split the global futex_lock into every hash list lock.
113 struct futex_hash_bucket {
114 spinlock_t lock;
115 struct plist_head chain;
118 static struct futex_hash_bucket futex_queues[1<<FUTEX_HASHBITS];
120 /* Futex-fs vfsmount entry: */
121 static struct vfsmount *futex_mnt;
124 * We hash on the keys returned from get_futex_key (see below).
126 static struct futex_hash_bucket *hash_futex(union futex_key *key)
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)];
135 * Return 1 if two futex_keys are equal, 0 otherwise.
137 static inline int match_futex(union futex_key *key1, union futex_key *key2)
139 return (key1->both.word == key2->both.word
140 && key1->both.ptr == key2->both.ptr
141 && key1->both.offset == key2->both.offset);
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.
151 * Returns a negative error code or 0
152 * The key words are stored in *key on success.
154 * For shared mappings, it's (page->index, vma->vm_file->f_path.dentry->d_inode,
155 * offset_within_page). For private mappings, it's (uaddr, current->mm).
156 * We can usually work out the index without swapping in the page.
158 * 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.
162 int get_futex_key(u32 __user *uaddr, struct rw_semaphore *fshared,
163 union futex_key *key)
165 unsigned long address = (unsigned long)uaddr;
166 struct mm_struct *mm = current->mm;
167 struct vm_area_struct *vma;
168 struct page *page;
169 int err;
172 * The futex address must be "naturally" aligned.
174 key->both.offset = address % PAGE_SIZE;
175 if (unlikely((address % sizeof(u32)) != 0))
176 return -EINVAL;
177 address -= key->both.offset;
180 * 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()
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;
194 * The futex is hashed differently depending on whether
195 * it's in a shared or private mapping. So check vma first.
197 vma = find_extend_vma(mm, address);
198 if (unlikely(!vma))
199 return -EFAULT;
202 * Permissions.
204 if (unlikely((vma->vm_flags & (VM_IO|VM_READ)) != VM_READ))
205 return (vma->vm_flags & VM_IO) ? -EPERM : -EACCES;
208 * Private mappings are handled in a simple way.
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.
216 if (likely(!(vma->vm_flags & VM_MAYSHARE))) {
217 key->both.offset |= FUT_OFF_MMSHARED; /* reference taken on mm */
218 key->private.mm = mm;
219 key->private.address = address;
220 return 0;
224 * Linear file mappings are also simple.
226 key->shared.inode = vma->vm_file->f_path.dentry->d_inode;
227 key->both.offset |= FUT_OFF_INODE; /* inode-based key. */
228 if (likely(!(vma->vm_flags & VM_NONLINEAR))) {
229 key->shared.pgoff = (((address - vma->vm_start) >> PAGE_SHIFT)
230 + vma->vm_pgoff);
231 return 0;
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.
240 err = get_user_pages(current, mm, address, 1, 0, 0, &page, NULL);
241 if (err >= 0) {
242 key->shared.pgoff =
243 page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
244 put_page(page);
245 return 0;
247 return err;
249 EXPORT_SYMBOL_GPL(get_futex_key);
252 * Take a reference to the resource addressed by a key.
253 * Can be called while holding spinlocks.
256 inline void get_futex_key_refs(union futex_key *key)
258 if (key->both.ptr == 0)
259 return;
260 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
261 case FUT_OFF_INODE:
262 atomic_inc(&key->shared.inode->i_count);
263 break;
264 case FUT_OFF_MMSHARED:
265 atomic_inc(&key->private.mm->mm_count);
266 break;
269 EXPORT_SYMBOL_GPL(get_futex_key_refs);
272 * Drop a reference to the resource addressed by a key.
273 * The hash bucket spinlock must not be held.
275 void drop_futex_key_refs(union futex_key *key)
277 if (key->both.ptr == 0)
278 return;
279 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
280 case FUT_OFF_INODE:
281 iput(key->shared.inode);
282 break;
283 case FUT_OFF_MMSHARED:
284 mmdrop(key->private.mm);
285 break;
288 EXPORT_SYMBOL_GPL(drop_futex_key_refs);
290 static inline int get_futex_value_locked(u32 *dest, u32 __user *from)
292 int ret;
294 pagefault_disable();
295 ret = __copy_from_user_inatomic(dest, from, sizeof(u32));
296 pagefault_enable();
298 return ret ? -EFAULT : 0;
302 * Fault handling.
303 * if fshared is non NULL, current->mm->mmap_sem is already held
305 static int futex_handle_fault(unsigned long address,
306 struct rw_semaphore *fshared, int attempt)
308 struct vm_area_struct * vma;
309 struct mm_struct *mm = current->mm;
310 int ret = -EFAULT;
312 if (attempt > 2)
313 return ret;
315 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;
331 if (!fshared)
332 up_read(&mm->mmap_sem);
333 return ret;
337 * PI code:
339 static int refill_pi_state_cache(void)
341 struct futex_pi_state *pi_state;
343 if (likely(current->pi_state_cache))
344 return 0;
346 pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL);
348 if (!pi_state)
349 return -ENOMEM;
351 INIT_LIST_HEAD(&pi_state->list);
352 /* pi_mutex gets initialized later */
353 pi_state->owner = NULL;
354 atomic_set(&pi_state->refcount, 1);
356 current->pi_state_cache = pi_state;
358 return 0;
361 static struct futex_pi_state * alloc_pi_state(void)
363 struct futex_pi_state *pi_state = current->pi_state_cache;
365 WARN_ON(!pi_state);
366 current->pi_state_cache = NULL;
368 return pi_state;
371 static void free_pi_state(struct futex_pi_state *pi_state)
373 if (!atomic_dec_and_test(&pi_state->refcount))
374 return;
377 * If pi_state->owner is NULL, the owner is most probably dying
378 * and has cleaned up the pi_state already
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);
385 rt_mutex_proxy_unlock(&pi_state->pi_mutex, pi_state->owner);
388 if (current->pi_state_cache)
389 kfree(pi_state);
390 else {
392 * pi_state->list is already empty.
393 * clear pi_state->owner.
394 * refcount is at 0 - put it back to 1.
396 pi_state->owner = NULL;
397 atomic_set(&pi_state->refcount, 1);
398 current->pi_state_cache = pi_state;
403 * Look up the task based on what TID userspace gave us.
404 * We dont trust it.
406 static struct task_struct * futex_find_get_task(pid_t pid)
408 struct task_struct *p;
410 rcu_read_lock();
411 p = find_task_by_pid(pid);
413 if (!p || ((current->euid != p->euid) && (current->euid != p->uid)))
414 p = ERR_PTR(-ESRCH);
415 else
416 get_task_struct(p);
418 rcu_read_unlock();
420 return p;
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.)
428 void exit_pi_state_list(struct task_struct *curr)
430 struct list_head *next, *head = &curr->pi_state_list;
431 struct futex_pi_state *pi_state;
432 struct futex_hash_bucket *hb;
433 union futex_key key;
436 * We are a ZOMBIE and nobody can enqueue itself on
437 * pi_state_list anymore, but we have to be careful
438 * versus waiters unqueueing themselves:
440 spin_lock_irq(&curr->pi_lock);
441 while (!list_empty(head)) {
443 next = head->next;
444 pi_state = list_entry(next, struct futex_pi_state, list);
445 key = pi_state->key;
446 hb = hash_futex(&key);
447 spin_unlock_irq(&curr->pi_lock);
449 spin_lock(&hb->lock);
451 spin_lock_irq(&curr->pi_lock);
453 * We dropped the pi-lock, so re-check whether this
454 * task still owns the PI-state:
456 if (head->next != next) {
457 spin_unlock(&hb->lock);
458 continue;
461 WARN_ON(pi_state->owner != curr);
462 WARN_ON(list_empty(&pi_state->list));
463 list_del_init(&pi_state->list);
464 pi_state->owner = NULL;
465 spin_unlock_irq(&curr->pi_lock);
467 rt_mutex_unlock(&pi_state->pi_mutex);
469 spin_unlock(&hb->lock);
471 spin_lock_irq(&curr->pi_lock);
473 spin_unlock_irq(&curr->pi_lock);
476 static int
477 lookup_pi_state(u32 uval, struct futex_hash_bucket *hb,
478 union futex_key *key, struct futex_pi_state **ps)
480 struct futex_pi_state *pi_state = NULL;
481 struct futex_q *this, *next;
482 struct plist_head *head;
483 struct task_struct *p;
484 pid_t pid = uval & FUTEX_TID_MASK;
486 head = &hb->chain;
488 plist_for_each_entry_safe(this, next, head, list) {
489 if (match_futex(&this->key, key)) {
491 * Another waiter already exists - bump up
492 * the refcount and return its pi_state:
494 pi_state = this->pi_state;
496 * Userspace might have messed up non PI and PI futexes
498 if (unlikely(!pi_state))
499 return -EINVAL;
501 WARN_ON(!atomic_read(&pi_state->refcount));
502 WARN_ON(pid && pi_state->owner &&
503 pi_state->owner->pid != pid);
505 atomic_inc(&pi_state->refcount);
506 *ps = pi_state;
508 return 0;
513 * We are the first waiter - try to look up the real owner and attach
514 * the new pi_state to it, but bail out when TID = 0
516 if (!pid)
517 return -ESRCH;
518 p = futex_find_get_task(pid);
519 if (IS_ERR(p))
520 return PTR_ERR(p);
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:
528 spin_lock_irq(&p->pi_lock);
529 if (unlikely(p->flags & PF_EXITING)) {
531 * The task is on the way out. When PF_EXITPIDONE is
532 * set, we know that the task has finished the
533 * cleanup:
535 int ret = (p->flags & PF_EXITPIDONE) ? -ESRCH : -EAGAIN;
537 spin_unlock_irq(&p->pi_lock);
538 put_task_struct(p);
539 return ret;
542 pi_state = alloc_pi_state();
545 * Initialize the pi_mutex in locked state and make 'p'
546 * the owner of it:
548 rt_mutex_init_proxy_locked(&pi_state->pi_mutex, p);
550 /* Store the key for possible exit cleanups: */
551 pi_state->key = *key;
553 WARN_ON(!list_empty(&pi_state->list));
554 list_add(&pi_state->list, &p->pi_state_list);
555 pi_state->owner = p;
556 spin_unlock_irq(&p->pi_lock);
558 put_task_struct(p);
560 *ps = pi_state;
562 return 0;
566 * The hash bucket lock must be held when this is called.
567 * Afterwards, the futex_q must not be accessed.
569 static void wake_futex(struct futex_q *q)
571 plist_del(&q->list, &q->list.plist);
572 if (q->filp)
573 send_sigio(&q->filp->f_owner, q->fd, POLL_IN);
575 * The lock in wake_up_all() is a crucial memory barrier after the
576 * plist_del() and also before assigning to q->lock_ptr.
578 wake_up_all(&q->waiters);
580 * The waiting task can free the futex_q as soon as this is written,
581 * without taking any locks. This must come last.
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.
588 smp_wmb();
589 q->lock_ptr = NULL;
592 static int wake_futex_pi(u32 __user *uaddr, u32 uval, struct futex_q *this)
594 struct task_struct *new_owner;
595 struct futex_pi_state *pi_state = this->pi_state;
596 u32 curval, newval;
598 if (!pi_state)
599 return -EINVAL;
601 spin_lock(&pi_state->pi_mutex.wait_lock);
602 new_owner = rt_mutex_next_owner(&pi_state->pi_mutex);
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.
610 if (!new_owner)
611 new_owner = this->task;
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.)
618 if (!(uval & FUTEX_OWNER_DIED)) {
619 int ret = 0;
621 newval = FUTEX_WAITERS | new_owner->pid;
623 pagefault_disable();
624 curval = futex_atomic_cmpxchg_inatomic(uaddr, uval, newval);
625 pagefault_enable();
627 if (curval == -EFAULT)
628 ret = -EFAULT;
629 if (curval != uval)
630 ret = -EINVAL;
631 if (ret) {
632 spin_unlock(&pi_state->pi_mutex.wait_lock);
633 return ret;
637 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);
642 spin_lock_irq(&new_owner->pi_lock);
643 WARN_ON(!list_empty(&pi_state->list));
644 list_add(&pi_state->list, &new_owner->pi_state_list);
645 pi_state->owner = new_owner;
646 spin_unlock_irq(&new_owner->pi_lock);
648 spin_unlock(&pi_state->pi_mutex.wait_lock);
649 rt_mutex_unlock(&pi_state->pi_mutex);
651 return 0;
654 static int unlock_futex_pi(u32 __user *uaddr, u32 uval)
656 u32 oldval;
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:
662 pagefault_disable();
663 oldval = futex_atomic_cmpxchg_inatomic(uaddr, uval, 0);
664 pagefault_enable();
666 if (oldval == -EFAULT)
667 return oldval;
668 if (oldval != uval)
669 return -EAGAIN;
671 return 0;
675 * Express the locking dependencies for lockdep:
677 static inline void
678 double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
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);
691 * Wake up all waiters hashed on the physical page that is mapped
692 * to this virtual address:
694 static int futex_wake(u32 __user *uaddr, struct rw_semaphore *fshared,
695 int nr_wake)
697 struct futex_hash_bucket *hb;
698 struct futex_q *this, *next;
699 struct plist_head *head;
700 union futex_key key;
701 int ret;
703 if (fshared)
704 down_read(fshared);
706 ret = get_futex_key(uaddr, fshared, &key);
707 if (unlikely(ret != 0))
708 goto out;
710 hb = hash_futex(&key);
711 spin_lock(&hb->lock);
712 head = &hb->chain;
714 plist_for_each_entry_safe(this, next, head, list) {
715 if (match_futex (&this->key, &key)) {
716 if (this->pi_state) {
717 ret = -EINVAL;
718 break;
720 wake_futex(this);
721 if (++ret >= nr_wake)
722 break;
726 spin_unlock(&hb->lock);
727 out:
728 if (fshared)
729 up_read(fshared);
730 return ret;
734 * Wake up all waiters hashed on the physical page that is mapped
735 * to this virtual address:
737 static int
738 futex_wake_op(u32 __user *uaddr1, struct rw_semaphore *fshared,
739 u32 __user *uaddr2,
740 int nr_wake, int nr_wake2, int op)
742 union futex_key key1, key2;
743 struct futex_hash_bucket *hb1, *hb2;
744 struct plist_head *head;
745 struct futex_q *this, *next;
746 int ret, op_ret, attempt = 0;
748 retryfull:
749 if (fshared)
750 down_read(fshared);
752 ret = get_futex_key(uaddr1, fshared, &key1);
753 if (unlikely(ret != 0))
754 goto out;
755 ret = get_futex_key(uaddr2, fshared, &key2);
756 if (unlikely(ret != 0))
757 goto out;
759 hb1 = hash_futex(&key1);
760 hb2 = hash_futex(&key2);
762 retry:
763 double_lock_hb(hb1, hb2);
765 op_ret = futex_atomic_op_inuser(op, uaddr2);
766 if (unlikely(op_ret < 0)) {
767 u32 dummy;
769 spin_unlock(&hb1->lock);
770 if (hb1 != hb2)
771 spin_unlock(&hb2->lock);
773 #ifndef CONFIG_MMU
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
778 ret = op_ret;
779 goto out;
780 #endif
782 if (unlikely(op_ret != -EFAULT)) {
783 ret = op_ret;
784 goto out;
788 * futex_atomic_op_inuser needs to both read and write
789 * *(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
792 * still holding the mmap_sem.
794 if (attempt++) {
795 ret = futex_handle_fault((unsigned long)uaddr2,
796 fshared, attempt);
797 if (ret)
798 goto out;
799 goto retry;
803 * If we would have faulted, release mmap_sem,
804 * fault it in and start all over again.
806 if (fshared)
807 up_read(fshared);
809 ret = get_user(dummy, uaddr2);
810 if (ret)
811 return ret;
813 goto retryfull;
816 head = &hb1->chain;
818 plist_for_each_entry_safe(this, next, head, list) {
819 if (match_futex (&this->key, &key1)) {
820 wake_futex(this);
821 if (++ret >= nr_wake)
822 break;
826 if (op_ret > 0) {
827 head = &hb2->chain;
829 op_ret = 0;
830 plist_for_each_entry_safe(this, next, head, list) {
831 if (match_futex (&this->key, &key2)) {
832 wake_futex(this);
833 if (++op_ret >= nr_wake2)
834 break;
837 ret += op_ret;
840 spin_unlock(&hb1->lock);
841 if (hb1 != hb2)
842 spin_unlock(&hb2->lock);
843 out:
844 if (fshared)
845 up_read(fshared);
846 return ret;
850 * Requeue all waiters hashed on one physical page to another
851 * physical page.
853 static int futex_requeue(u32 __user *uaddr1, struct rw_semaphore *fshared,
854 u32 __user *uaddr2,
855 int nr_wake, int nr_requeue, u32 *cmpval)
857 union futex_key key1, key2;
858 struct futex_hash_bucket *hb1, *hb2;
859 struct plist_head *head1;
860 struct futex_q *this, *next;
861 int ret, drop_count = 0;
863 retry:
864 if (fshared)
865 down_read(fshared);
867 ret = get_futex_key(uaddr1, fshared, &key1);
868 if (unlikely(ret != 0))
869 goto out;
870 ret = get_futex_key(uaddr2, fshared, &key2);
871 if (unlikely(ret != 0))
872 goto out;
874 hb1 = hash_futex(&key1);
875 hb2 = hash_futex(&key2);
877 double_lock_hb(hb1, hb2);
879 if (likely(cmpval != NULL)) {
880 u32 curval;
882 ret = get_futex_value_locked(&curval, uaddr1);
884 if (unlikely(ret)) {
885 spin_unlock(&hb1->lock);
886 if (hb1 != hb2)
887 spin_unlock(&hb2->lock);
890 * If we would have faulted, release mmap_sem, fault
891 * it in and start all over again.
893 if (fshared)
894 up_read(fshared);
896 ret = get_user(curval, uaddr1);
898 if (!ret)
899 goto retry;
901 return ret;
903 if (curval != *cmpval) {
904 ret = -EAGAIN;
905 goto out_unlock;
909 head1 = &hb1->chain;
910 plist_for_each_entry_safe(this, next, head1, list) {
911 if (!match_futex (&this->key, &key1))
912 continue;
913 if (++ret <= nr_wake) {
914 wake_futex(this);
915 } else {
917 * If key1 and key2 hash to the same bucket, no need to
918 * requeue.
920 if (likely(head1 != &hb2->chain)) {
921 plist_del(&this->list, &hb1->chain);
922 plist_add(&this->list, &hb2->chain);
923 this->lock_ptr = &hb2->lock;
924 #ifdef CONFIG_DEBUG_PI_LIST
925 this->list.plist.lock = &hb2->lock;
926 #endif
928 this->key = key2;
929 get_futex_key_refs(&key2);
930 drop_count++;
932 if (ret - nr_wake >= nr_requeue)
933 break;
937 out_unlock:
938 spin_unlock(&hb1->lock);
939 if (hb1 != hb2)
940 spin_unlock(&hb2->lock);
942 /* drop_futex_key_refs() must be called outside the spinlocks. */
943 while (--drop_count >= 0)
944 drop_futex_key_refs(&key1);
946 out:
947 if (fshared)
948 up_read(fshared);
949 return ret;
952 /* The key must be already stored in q->key. */
953 static inline struct futex_hash_bucket *
954 queue_lock(struct futex_q *q, int fd, struct file *filp)
956 struct futex_hash_bucket *hb;
958 q->fd = fd;
959 q->filp = filp;
961 init_waitqueue_head(&q->waiters);
963 get_futex_key_refs(&q->key);
964 hb = hash_futex(&q->key);
965 q->lock_ptr = &hb->lock;
967 spin_lock(&hb->lock);
968 return hb;
971 static inline void __queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
973 int prio;
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.
983 prio = min(current->normal_prio, MAX_RT_PRIO);
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);
990 q->task = current;
991 spin_unlock(&hb->lock);
994 static inline void
995 queue_unlock(struct futex_q *q, struct futex_hash_bucket *hb)
997 spin_unlock(&hb->lock);
998 drop_futex_key_refs(&q->key);
1002 * queue_me and unqueue_me must be called as a pair, each
1003 * exactly once. They are called with the hashed spinlock held.
1006 /* The key must be already stored in q->key. */
1007 static void queue_me(struct futex_q *q, int fd, struct file *filp)
1009 struct futex_hash_bucket *hb;
1011 hb = queue_lock(q, fd, filp);
1012 __queue_me(q, hb);
1015 /* Return 1 if we were still queued (ie. 0 means we were woken) */
1016 static int unqueue_me(struct futex_q *q)
1018 spinlock_t *lock_ptr;
1019 int ret = 0;
1021 /* In the common case we don't take the spinlock, which is nice. */
1022 retry:
1023 lock_ptr = q->lock_ptr;
1024 barrier();
1025 if (lock_ptr != 0) {
1026 spin_lock(lock_ptr);
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.
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.
1040 if (unlikely(lock_ptr != q->lock_ptr)) {
1041 spin_unlock(lock_ptr);
1042 goto retry;
1044 WARN_ON(plist_node_empty(&q->list));
1045 plist_del(&q->list, &q->list.plist);
1047 BUG_ON(q->pi_state);
1049 spin_unlock(lock_ptr);
1050 ret = 1;
1053 drop_futex_key_refs(&q->key);
1054 return ret;
1058 * PI futexes can not be requeued and must remove themself from the
1059 * hash bucket. The hash bucket lock (i.e. lock_ptr) is held on entry
1060 * and dropped here.
1062 static void unqueue_me_pi(struct futex_q *q)
1064 WARN_ON(plist_node_empty(&q->list));
1065 plist_del(&q->list, &q->list.plist);
1067 BUG_ON(!q->pi_state);
1068 free_pi_state(q->pi_state);
1069 q->pi_state = NULL;
1071 spin_unlock(q->lock_ptr);
1073 drop_futex_key_refs(&q->key);
1077 * Fixup the pi_state owner with current.
1079 * Must be called with hash bucket lock held and mm->sem held for non
1080 * private futexes.
1082 static int fixup_pi_state_owner(u32 __user *uaddr, struct futex_q *q,
1083 struct task_struct *curr)
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;
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;
1099 pi_state->owner = curr;
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);
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.
1111 ret = get_futex_value_locked(&uval, uaddr);
1113 while (!ret) {
1114 newval = (uval & FUTEX_OWNER_DIED) | newtid;
1116 pagefault_disable();
1117 curval = futex_atomic_cmpxchg_inatomic(uaddr,
1118 uval, newval);
1119 pagefault_enable();
1121 if (curval == -EFAULT)
1122 ret = -EFAULT;
1123 if (curval == uval)
1124 break;
1125 uval = curval;
1127 return ret;
1131 * In case we must use restart_block to restart a futex_wait,
1132 * we encode in the 'flags' shared capability
1134 #define FLAGS_SHARED 1
1136 static long futex_wait_restart(struct restart_block *restart);
1137 static int futex_wait(u32 __user *uaddr, struct rw_semaphore *fshared,
1138 u32 val, ktime_t *abs_time)
1140 struct task_struct *curr = current;
1141 DECLARE_WAITQUEUE(wait, curr);
1142 struct futex_hash_bucket *hb;
1143 struct futex_q q;
1144 u32 uval;
1145 int ret;
1146 struct hrtimer_sleeper t;
1147 int rem = 0;
1149 q.pi_state = NULL;
1150 retry:
1151 if (fshared)
1152 down_read(fshared);
1154 ret = get_futex_key(uaddr, fshared, &q.key);
1155 if (unlikely(ret != 0))
1156 goto out_release_sem;
1158 hb = queue_lock(&q, -1, NULL);
1161 * Access the page AFTER the futex is queued.
1162 * Order is important:
1164 * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
1165 * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); }
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.
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.
1177 * for shared futexes, we hold the mmap semaphore, so the mapping
1178 * cannot have changed since we looked it up in get_futex_key.
1180 ret = get_futex_value_locked(&uval, uaddr);
1182 if (unlikely(ret)) {
1183 queue_unlock(&q, hb);
1186 * If we would have faulted, release mmap_sem, fault it in and
1187 * start all over again.
1189 if (fshared)
1190 up_read(fshared);
1192 ret = get_user(uval, uaddr);
1194 if (!ret)
1195 goto retry;
1196 return ret;
1198 ret = -EWOULDBLOCK;
1199 if (uval != val)
1200 goto out_unlock_release_sem;
1202 /* Only actually queue if *uaddr contained val. */
1203 __queue_me(&q, hb);
1206 * Now the futex is queued and we have checked the data, we
1207 * don't want to hold mmap_sem while we sleep.
1209 if (fshared)
1210 up_read(fshared);
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.
1221 /* add_wait_queue is the barrier after __set_current_state. */
1222 __set_current_state(TASK_INTERRUPTIBLE);
1223 add_wait_queue(&q.waiters, &wait);
1225 * !plist_node_empty() is safe here without any lock.
1226 * q.lock_ptr != 0 is not safe, because of ordering against wakeup.
1228 if (likely(!plist_node_empty(&q.list))) {
1229 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;
1236 hrtimer_start(&t.timer, t.timer.expires, HRTIMER_MODE_ABS);
1239 * the timer could have already expired, in which
1240 * case current would be flagged for rescheduling.
1241 * Don't bother calling schedule.
1243 if (likely(t.task))
1244 schedule();
1246 hrtimer_cancel(&t.timer);
1248 /* Flag if a timeout occured */
1249 rem = (t.task == NULL);
1252 __set_current_state(TASK_RUNNING);
1255 * NOTE: we don't remove ourselves from the waitqueue because
1256 * we are the only user of it.
1259 /* If we were woken (and unqueued), we succeeded, whatever. */
1260 if (!unqueue_me(&q))
1261 return 0;
1262 if (rem)
1263 return -ETIMEDOUT;
1266 * We expect signal_pending(current), but another thread may
1267 * have handled it for us already.
1269 if (!abs_time)
1270 return -ERESTARTSYS;
1271 else {
1272 struct restart_block *restart;
1273 restart = &current_thread_info()->restart_block;
1274 restart->fn = futex_wait_restart;
1275 restart->futex.uaddr = (u32 *)uaddr;
1276 restart->futex.val = val;
1277 restart->futex.time = abs_time->tv64;
1278 restart->futex.flags = 0;
1280 if (fshared)
1281 restart->futex.flags |= FLAGS_SHARED;
1282 return -ERESTART_RESTARTBLOCK;
1285 out_unlock_release_sem:
1286 queue_unlock(&q, hb);
1288 out_release_sem:
1289 if (fshared)
1290 up_read(fshared);
1291 return ret;
1295 static long futex_wait_restart(struct restart_block *restart)
1297 u32 __user *uaddr = (u32 __user *)restart->futex.uaddr;
1298 struct rw_semaphore *fshared = NULL;
1299 ktime_t t;
1301 t.tv64 = restart->futex.time;
1302 restart->fn = do_no_restart_syscall;
1303 if (restart->futex.flags & FLAGS_SHARED)
1304 fshared = &current->mm->mmap_sem;
1305 return (long)futex_wait(uaddr, fshared, restart->futex.val, &t);
1310 * Userspace tried a 0 -> TID atomic transition of the futex value
1311 * and failed. The kernel side here does the whole locking operation:
1312 * if there are waiters then it will block, it does PI, etc. (Due to
1313 * races the kernel might see a 0 value of the futex too.)
1315 static int futex_lock_pi(u32 __user *uaddr, struct rw_semaphore *fshared,
1316 int detect, ktime_t *time, int trylock)
1318 struct hrtimer_sleeper timeout, *to = NULL;
1319 struct task_struct *curr = current;
1320 struct futex_hash_bucket *hb;
1321 u32 uval, newval, curval;
1322 struct futex_q q;
1323 int ret, lock_taken, ownerdied = 0, attempt = 0;
1325 if (refill_pi_state_cache())
1326 return -ENOMEM;
1328 if (time) {
1329 to = &timeout;
1330 hrtimer_init(&to->timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
1331 hrtimer_init_sleeper(to, current);
1332 to->timer.expires = *time;
1335 q.pi_state = NULL;
1336 retry:
1337 if (fshared)
1338 down_read(fshared);
1340 ret = get_futex_key(uaddr, fshared, &q.key);
1341 if (unlikely(ret != 0))
1342 goto out_release_sem;
1344 retry_unlocked:
1345 hb = queue_lock(&q, -1, NULL);
1347 retry_locked:
1348 ret = lock_taken = 0;
1351 * To avoid races, we attempt to take the lock here again
1352 * (by doing a 0 -> TID atomic cmpxchg), while holding all
1353 * the locks. It will most likely not succeed.
1355 newval = current->pid;
1357 pagefault_disable();
1358 curval = futex_atomic_cmpxchg_inatomic(uaddr, 0, newval);
1359 pagefault_enable();
1361 if (unlikely(curval == -EFAULT))
1362 goto uaddr_faulted;
1365 * Detect deadlocks. In case of REQUEUE_PI this is a valid
1366 * situation and we return success to user space.
1368 if (unlikely((curval & FUTEX_TID_MASK) == current->pid)) {
1369 ret = -EDEADLK;
1370 goto out_unlock_release_sem;
1374 * Surprise - we got the lock. Just return to userspace:
1376 if (unlikely(!curval))
1377 goto out_unlock_release_sem;
1379 uval = curval;
1382 * Set the WAITERS flag, so the owner will know it has someone
1383 * to wake at next unlock
1385 newval = curval | FUTEX_WAITERS;
1388 * There are two cases, where a futex might have no owner (the
1389 * owner TID is 0): OWNER_DIED. We take over the futex in this
1390 * case. We also do an unconditional take over, when the owner
1391 * of the futex died.
1393 * This is safe as we are protected by the hash bucket lock !
1395 if (unlikely(ownerdied || !(curval & FUTEX_TID_MASK))) {
1396 /* Keep the OWNER_DIED bit */
1397 newval = (curval & ~FUTEX_TID_MASK) | current->pid;
1398 ownerdied = 0;
1399 lock_taken = 1;
1402 pagefault_disable();
1403 curval = futex_atomic_cmpxchg_inatomic(uaddr, uval, newval);
1404 pagefault_enable();
1406 if (unlikely(curval == -EFAULT))
1407 goto uaddr_faulted;
1408 if (unlikely(curval != uval))
1409 goto retry_locked;
1412 * We took the lock due to owner died take over.
1414 if (unlikely(lock_taken))
1415 goto out_unlock_release_sem;
1418 * We dont have the lock. Look up the PI state (or create it if
1419 * we are the first waiter):
1421 ret = lookup_pi_state(uval, hb, &q.key, &q.pi_state);
1423 if (unlikely(ret)) {
1424 switch (ret) {
1426 case -EAGAIN:
1428 * Task is exiting and we just wait for the
1429 * exit to complete.
1431 queue_unlock(&q, hb);
1432 if (fshared)
1433 up_read(fshared);
1434 cond_resched();
1435 goto retry;
1437 case -ESRCH:
1439 * No owner found for this futex. Check if the
1440 * OWNER_DIED bit is set to figure out whether
1441 * this is a robust futex or not.
1443 if (get_futex_value_locked(&curval, uaddr))
1444 goto uaddr_faulted;
1447 * We simply start over in case of a robust
1448 * futex. The code above will take the futex
1449 * and return happy.
1451 if (curval & FUTEX_OWNER_DIED) {
1452 ownerdied = 1;
1453 goto retry_locked;
1455 default:
1456 goto out_unlock_release_sem;
1461 * Only actually queue now that the atomic ops are done:
1463 __queue_me(&q, hb);
1466 * Now the futex is queued and we have checked the data, we
1467 * don't want to hold mmap_sem while we sleep.
1469 if (fshared)
1470 up_read(fshared);
1472 WARN_ON(!q.pi_state);
1474 * Block on the PI mutex:
1476 if (!trylock)
1477 ret = rt_mutex_timed_lock(&q.pi_state->pi_mutex, to, 1);
1478 else {
1479 ret = rt_mutex_trylock(&q.pi_state->pi_mutex);
1480 /* Fixup the trylock return value: */
1481 ret = ret ? 0 : -EWOULDBLOCK;
1484 if (fshared)
1485 down_read(fshared);
1486 spin_lock(q.lock_ptr);
1488 if (!ret) {
1490 * Got the lock. We might not be the anticipated owner
1491 * if we did a lock-steal - fix up the PI-state in
1492 * that case:
1494 if (q.pi_state->owner != curr)
1495 ret = fixup_pi_state_owner(uaddr, &q, curr);
1496 } else {
1498 * Catch the rare case, where the lock was released
1499 * when we were on the way back before we locked the
1500 * hash bucket.
1502 if (q.pi_state->owner == curr &&
1503 rt_mutex_trylock(&q.pi_state->pi_mutex)) {
1504 ret = 0;
1505 } else {
1507 * Paranoia check. If we did not take the lock
1508 * in the trylock above, then we should not be
1509 * the owner of the rtmutex, neither the real
1510 * nor the pending one:
1512 if (rt_mutex_owner(&q.pi_state->pi_mutex) == curr)
1513 printk(KERN_ERR "futex_lock_pi: ret = %d "
1514 "pi-mutex: %p pi-state %p\n", ret,
1515 q.pi_state->pi_mutex.owner,
1516 q.pi_state->owner);
1520 /* Unqueue and drop the lock */
1521 unqueue_me_pi(&q);
1522 if (fshared)
1523 up_read(fshared);
1525 return ret != -EINTR ? ret : -ERESTARTNOINTR;
1527 out_unlock_release_sem:
1528 queue_unlock(&q, hb);
1530 out_release_sem:
1531 if (fshared)
1532 up_read(fshared);
1533 return ret;
1535 uaddr_faulted:
1537 * We have to r/w *(int __user *)uaddr, but we can't modify it
1538 * non-atomically. Therefore, if get_user below is not
1539 * enough, we need to handle the fault ourselves, while
1540 * still holding the mmap_sem.
1542 * ... and hb->lock. :-) --ANK
1544 queue_unlock(&q, hb);
1546 if (attempt++) {
1547 ret = futex_handle_fault((unsigned long)uaddr, fshared,
1548 attempt);
1549 if (ret)
1550 goto out_release_sem;
1551 goto retry_unlocked;
1554 if (fshared)
1555 up_read(fshared);
1557 ret = get_user(uval, uaddr);
1558 if (!ret && (uval != -EFAULT))
1559 goto retry;
1561 return ret;
1565 * Userspace attempted a TID -> 0 atomic transition, and failed.
1566 * This is the in-kernel slowpath: we look up the PI state (if any),
1567 * and do the rt-mutex unlock.
1569 static int futex_unlock_pi(u32 __user *uaddr, struct rw_semaphore *fshared)
1571 struct futex_hash_bucket *hb;
1572 struct futex_q *this, *next;
1573 u32 uval;
1574 struct plist_head *head;
1575 union futex_key key;
1576 int ret, attempt = 0;
1578 retry:
1579 if (get_user(uval, uaddr))
1580 return -EFAULT;
1582 * We release only a lock we actually own:
1584 if ((uval & FUTEX_TID_MASK) != current->pid)
1585 return -EPERM;
1587 * First take all the futex related locks:
1589 if (fshared)
1590 down_read(fshared);
1592 ret = get_futex_key(uaddr, fshared, &key);
1593 if (unlikely(ret != 0))
1594 goto out;
1596 hb = hash_futex(&key);
1597 retry_unlocked:
1598 spin_lock(&hb->lock);
1601 * To avoid races, try to do the TID -> 0 atomic transition
1602 * again. If it succeeds then we can return without waking
1603 * anyone else up:
1605 if (!(uval & FUTEX_OWNER_DIED)) {
1606 pagefault_disable();
1607 uval = futex_atomic_cmpxchg_inatomic(uaddr, current->pid, 0);
1608 pagefault_enable();
1611 if (unlikely(uval == -EFAULT))
1612 goto pi_faulted;
1614 * Rare case: we managed to release the lock atomically,
1615 * no need to wake anyone else up:
1617 if (unlikely(uval == current->pid))
1618 goto out_unlock;
1621 * Ok, other tasks may need to be woken up - check waiters
1622 * and do the wakeup if necessary:
1624 head = &hb->chain;
1626 plist_for_each_entry_safe(this, next, head, list) {
1627 if (!match_futex (&this->key, &key))
1628 continue;
1629 ret = wake_futex_pi(uaddr, uval, this);
1631 * The atomic access to the futex value
1632 * generated a pagefault, so retry the
1633 * user-access and the wakeup:
1635 if (ret == -EFAULT)
1636 goto pi_faulted;
1637 goto out_unlock;
1640 * No waiters - kernel unlocks the futex:
1642 if (!(uval & FUTEX_OWNER_DIED)) {
1643 ret = unlock_futex_pi(uaddr, uval);
1644 if (ret == -EFAULT)
1645 goto pi_faulted;
1648 out_unlock:
1649 spin_unlock(&hb->lock);
1650 out:
1651 if (fshared)
1652 up_read(fshared);
1654 return ret;
1656 pi_faulted:
1658 * We have to r/w *(int __user *)uaddr, but we can't modify it
1659 * non-atomically. Therefore, if get_user below is not
1660 * enough, we need to handle the fault ourselves, while
1661 * still holding the mmap_sem.
1663 * ... and hb->lock. --ANK
1665 spin_unlock(&hb->lock);
1667 if (attempt++) {
1668 ret = futex_handle_fault((unsigned long)uaddr, fshared,
1669 attempt);
1670 if (ret)
1671 goto out;
1672 goto retry_unlocked;
1675 if (fshared)
1676 up_read(fshared);
1678 ret = get_user(uval, uaddr);
1679 if (!ret && (uval != -EFAULT))
1680 goto retry;
1682 return ret;
1685 static int futex_close(struct inode *inode, struct file *filp)
1687 struct futex_q *q = filp->private_data;
1689 unqueue_me(q);
1690 kfree(q);
1692 return 0;
1695 /* This is one-shot: once it's gone off you need a new fd */
1696 static unsigned int futex_poll(struct file *filp,
1697 struct poll_table_struct *wait)
1699 struct futex_q *q = filp->private_data;
1700 int ret = 0;
1702 poll_wait(filp, &q->waiters, wait);
1705 * plist_node_empty() is safe here without any lock.
1706 * q->lock_ptr != 0 is not safe, because of ordering against wakeup.
1708 if (plist_node_empty(&q->list))
1709 ret = POLLIN | POLLRDNORM;
1711 return ret;
1714 static const struct file_operations futex_fops = {
1715 .release = futex_close,
1716 .poll = futex_poll,
1720 * Signal allows caller to avoid the race which would occur if they
1721 * set the sigio stuff up afterwards.
1723 static int futex_fd(u32 __user *uaddr, int signal)
1725 struct futex_q *q;
1726 struct file *filp;
1727 int ret, err;
1728 struct rw_semaphore *fshared;
1729 static unsigned long printk_interval;
1731 if (printk_timed_ratelimit(&printk_interval, 60 * 60 * 1000)) {
1732 printk(KERN_WARNING "Process `%s' used FUTEX_FD, which "
1733 "will be removed from the kernel in June 2007\n",
1734 current->comm);
1737 ret = -EINVAL;
1738 if (!valid_signal(signal))
1739 goto out;
1741 ret = get_unused_fd();
1742 if (ret < 0)
1743 goto out;
1744 filp = get_empty_filp();
1745 if (!filp) {
1746 put_unused_fd(ret);
1747 ret = -ENFILE;
1748 goto out;
1750 filp->f_op = &futex_fops;
1751 filp->f_path.mnt = mntget(futex_mnt);
1752 filp->f_path.dentry = dget(futex_mnt->mnt_root);
1753 filp->f_mapping = filp->f_path.dentry->d_inode->i_mapping;
1755 if (signal) {
1756 err = __f_setown(filp, task_pid(current), PIDTYPE_PID, 1);
1757 if (err < 0) {
1758 goto error;
1760 filp->f_owner.signum = signal;
1763 q = kmalloc(sizeof(*q), GFP_KERNEL);
1764 if (!q) {
1765 err = -ENOMEM;
1766 goto error;
1768 q->pi_state = NULL;
1770 fshared = &current->mm->mmap_sem;
1771 down_read(fshared);
1772 err = get_futex_key(uaddr, fshared, &q->key);
1774 if (unlikely(err != 0)) {
1775 up_read(fshared);
1776 kfree(q);
1777 goto error;
1781 * queue_me() must be called before releasing mmap_sem, because
1782 * key->shared.inode needs to be referenced while holding it.
1784 filp->private_data = q;
1786 queue_me(q, ret, filp);
1787 up_read(fshared);
1789 /* Now we map fd to filp, so userspace can access it */
1790 fd_install(ret, filp);
1791 out:
1792 return ret;
1793 error:
1794 put_unused_fd(ret);
1795 put_filp(filp);
1796 ret = err;
1797 goto out;
1801 * Support for robust futexes: the kernel cleans up held futexes at
1802 * thread exit time.
1804 * Implementation: user-space maintains a per-thread list of locks it
1805 * is holding. Upon do_exit(), the kernel carefully walks this list,
1806 * and marks all locks that are owned by this thread with the
1807 * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is
1808 * always manipulated with the lock held, so the list is private and
1809 * per-thread. Userspace also maintains a per-thread 'list_op_pending'
1810 * field, to allow the kernel to clean up if the thread dies after
1811 * acquiring the lock, but just before it could have added itself to
1812 * the list. There can only be one such pending lock.
1816 * sys_set_robust_list - set the robust-futex list head of a task
1817 * @head: pointer to the list-head
1818 * @len: length of the list-head, as userspace expects
1820 asmlinkage long
1821 sys_set_robust_list(struct robust_list_head __user *head,
1822 size_t len)
1825 * The kernel knows only one size for now:
1827 if (unlikely(len != sizeof(*head)))
1828 return -EINVAL;
1830 current->robust_list = head;
1832 return 0;
1836 * sys_get_robust_list - get the robust-futex list head of a task
1837 * @pid: pid of the process [zero for current task]
1838 * @head_ptr: pointer to a list-head pointer, the kernel fills it in
1839 * @len_ptr: pointer to a length field, the kernel fills in the header size
1841 asmlinkage long
1842 sys_get_robust_list(int pid, struct robust_list_head __user * __user *head_ptr,
1843 size_t __user *len_ptr)
1845 struct robust_list_head __user *head;
1846 unsigned long ret;
1848 if (!pid)
1849 head = current->robust_list;
1850 else {
1851 struct task_struct *p;
1853 ret = -ESRCH;
1854 rcu_read_lock();
1855 p = find_task_by_pid(pid);
1856 if (!p)
1857 goto err_unlock;
1858 ret = -EPERM;
1859 if ((current->euid != p->euid) && (current->euid != p->uid) &&
1860 !capable(CAP_SYS_PTRACE))
1861 goto err_unlock;
1862 head = p->robust_list;
1863 rcu_read_unlock();
1866 if (put_user(sizeof(*head), len_ptr))
1867 return -EFAULT;
1868 return put_user(head, head_ptr);
1870 err_unlock:
1871 rcu_read_unlock();
1873 return ret;
1877 * Process a futex-list entry, check whether it's owned by the
1878 * dying task, and do notification if so:
1880 int handle_futex_death(u32 __user *uaddr, struct task_struct *curr, int pi)
1882 u32 uval, nval, mval;
1884 retry:
1885 if (get_user(uval, uaddr))
1886 return -1;
1888 if ((uval & FUTEX_TID_MASK) == curr->pid) {
1890 * Ok, this dying thread is truly holding a futex
1891 * of interest. Set the OWNER_DIED bit atomically
1892 * via cmpxchg, and if the value had FUTEX_WAITERS
1893 * set, wake up a waiter (if any). (We have to do a
1894 * futex_wake() even if OWNER_DIED is already set -
1895 * to handle the rare but possible case of recursive
1896 * thread-death.) The rest of the cleanup is done in
1897 * userspace.
1899 mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED;
1900 nval = futex_atomic_cmpxchg_inatomic(uaddr, uval, mval);
1902 if (nval == -EFAULT)
1903 return -1;
1905 if (nval != uval)
1906 goto retry;
1909 * Wake robust non-PI futexes here. The wakeup of
1910 * PI futexes happens in exit_pi_state():
1912 if (!pi) {
1913 if (uval & FUTEX_WAITERS)
1914 futex_wake(uaddr, &curr->mm->mmap_sem, 1);
1917 return 0;
1921 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
1923 static inline int fetch_robust_entry(struct robust_list __user **entry,
1924 struct robust_list __user * __user *head,
1925 int *pi)
1927 unsigned long uentry;
1929 if (get_user(uentry, (unsigned long __user *)head))
1930 return -EFAULT;
1932 *entry = (void __user *)(uentry & ~1UL);
1933 *pi = uentry & 1;
1935 return 0;
1939 * Walk curr->robust_list (very carefully, it's a userspace list!)
1940 * and mark any locks found there dead, and notify any waiters.
1942 * We silently return on any sign of list-walking problem.
1944 void exit_robust_list(struct task_struct *curr)
1946 struct robust_list_head __user *head = curr->robust_list;
1947 struct robust_list __user *entry, *pending;
1948 unsigned int limit = ROBUST_LIST_LIMIT, pi, pip;
1949 unsigned long futex_offset;
1952 * Fetch the list head (which was registered earlier, via
1953 * sys_set_robust_list()):
1955 if (fetch_robust_entry(&entry, &head->list.next, &pi))
1956 return;
1958 * Fetch the relative futex offset:
1960 if (get_user(futex_offset, &head->futex_offset))
1961 return;
1963 * Fetch any possibly pending lock-add first, and handle it
1964 * if it exists:
1966 if (fetch_robust_entry(&pending, &head->list_op_pending, &pip))
1967 return;
1969 if (pending)
1970 handle_futex_death((void __user *)pending + futex_offset,
1971 curr, pip);
1973 while (entry != &head->list) {
1975 * A pending lock might already be on the list, so
1976 * don't process it twice:
1978 if (entry != pending)
1979 if (handle_futex_death((void __user *)entry + futex_offset,
1980 curr, pi))
1981 return;
1983 * Fetch the next entry in the list:
1985 if (fetch_robust_entry(&entry, &entry->next, &pi))
1986 return;
1988 * Avoid excessively long or circular lists:
1990 if (!--limit)
1991 break;
1993 cond_resched();
1997 long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout,
1998 u32 __user *uaddr2, u32 val2, u32 val3)
2000 int ret;
2001 int cmd = op & FUTEX_CMD_MASK;
2002 struct rw_semaphore *fshared = NULL;
2004 if (!(op & FUTEX_PRIVATE_FLAG))
2005 fshared = &current->mm->mmap_sem;
2007 switch (cmd) {
2008 case FUTEX_WAIT:
2009 ret = futex_wait(uaddr, fshared, val, timeout);
2010 break;
2011 case FUTEX_WAKE:
2012 ret = futex_wake(uaddr, fshared, val);
2013 break;
2014 case FUTEX_FD:
2015 /* non-zero val means F_SETOWN(getpid()) & F_SETSIG(val) */
2016 ret = futex_fd(uaddr, val);
2017 break;
2018 case FUTEX_REQUEUE:
2019 ret = futex_requeue(uaddr, fshared, uaddr2, val, val2, NULL);
2020 break;
2021 case FUTEX_CMP_REQUEUE:
2022 ret = futex_requeue(uaddr, fshared, uaddr2, val, val2, &val3);
2023 break;
2024 case FUTEX_WAKE_OP:
2025 ret = futex_wake_op(uaddr, fshared, uaddr2, val, val2, val3);
2026 break;
2027 case FUTEX_LOCK_PI:
2028 ret = futex_lock_pi(uaddr, fshared, val, timeout, 0);
2029 break;
2030 case FUTEX_UNLOCK_PI:
2031 ret = futex_unlock_pi(uaddr, fshared);
2032 break;
2033 case FUTEX_TRYLOCK_PI:
2034 ret = futex_lock_pi(uaddr, fshared, 0, timeout, 1);
2035 break;
2036 default:
2037 ret = -ENOSYS;
2039 return ret;
2043 asmlinkage long sys_futex(u32 __user *uaddr, int op, u32 val,
2044 struct timespec __user *utime, u32 __user *uaddr2,
2045 u32 val3)
2047 struct timespec ts;
2048 ktime_t t, *tp = NULL;
2049 u32 val2 = 0;
2050 int cmd = op & FUTEX_CMD_MASK;
2052 if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI)) {
2053 if (copy_from_user(&ts, utime, sizeof(ts)) != 0)
2054 return -EFAULT;
2055 if (!timespec_valid(&ts))
2056 return -EINVAL;
2058 t = timespec_to_ktime(ts);
2059 if (cmd == FUTEX_WAIT)
2060 t = ktime_add(ktime_get(), t);
2061 tp = &t;
2064 * requeue parameter in 'utime' if cmd == FUTEX_REQUEUE.
2065 * number of waiters to wake in 'utime' if cmd == FUTEX_WAKE_OP.
2067 if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE ||
2068 cmd == FUTEX_WAKE_OP)
2069 val2 = (u32) (unsigned long) utime;
2071 return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
2074 static int futexfs_get_sb(struct file_system_type *fs_type,
2075 int flags, const char *dev_name, void *data,
2076 struct vfsmount *mnt)
2078 return get_sb_pseudo(fs_type, "futex", NULL, 0xBAD1DEA, mnt);
2081 static struct file_system_type futex_fs_type = {
2082 .name = "futexfs",
2083 .get_sb = futexfs_get_sb,
2084 .kill_sb = kill_anon_super,
2087 static int __init init(void)
2089 int i = register_filesystem(&futex_fs_type);
2091 if (i)
2092 return i;
2094 futex_mnt = kern_mount(&futex_fs_type);
2095 if (IS_ERR(futex_mnt)) {
2096 unregister_filesystem(&futex_fs_type);
2097 return PTR_ERR(futex_mnt);
2100 for (i = 0; i < ARRAY_SIZE(futex_queues); i++) {
2101 plist_head_init(&futex_queues[i].chain, &futex_queues[i].lock);
2102 spin_lock_init(&futex_queues[i].lock);
2104 return 0;
2106 __initcall(init);