]> Git Repo - linux.git/blame - kernel/futex.c
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
[linux.git] / kernel / futex.c
CommitLineData
1da177e4
LT
1/*
2 * Fast Userspace Mutexes (which I call "Futexes!").
3 * (C) Rusty Russell, IBM 2002
4 *
5 * Generalized futexes, futex requeueing, misc fixes by Ingo Molnar
6 * (C) Copyright 2003 Red Hat Inc, All Rights Reserved
7 *
8 * Removed page pinning, fix privately mapped COW pages and other cleanups
9 * (C) Copyright 2003, 2004 Jamie Lokier
10 *
0771dfef
IM
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.
14 *
c87e2837
IM
15 * PI-futex support started by Ingo Molnar and Thomas Gleixner
16 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <[email protected]>
17 * Copyright (C) 2006 Timesys Corp., Thomas Gleixner <[email protected]>
18 *
34f01cc1
ED
19 * PRIVATE futexes by Eric Dumazet
20 * Copyright (C) 2007 Eric Dumazet <[email protected]>
21 *
1da177e4
LT
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.
25 *
26 * "The futexes are also cursed."
27 * "But they come in a choice of three flavours!"
28 *
29 * This program is free software; you can redistribute it and/or modify
30 * it under the terms of the GNU General Public License as published by
31 * the Free Software Foundation; either version 2 of the License, or
32 * (at your option) any later version.
33 *
34 * This program is distributed in the hope that it will be useful,
35 * but WITHOUT ANY WARRANTY; without even the implied warranty of
36 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37 * GNU General Public License for more details.
38 *
39 * You should have received a copy of the GNU General Public License
40 * along with this program; if not, write to the Free Software
41 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
42 */
43#include <linux/slab.h>
44#include <linux/poll.h>
45#include <linux/fs.h>
46#include <linux/file.h>
47#include <linux/jhash.h>
48#include <linux/init.h>
49#include <linux/futex.h>
50#include <linux/mount.h>
51#include <linux/pagemap.h>
52#include <linux/syscalls.h>
7ed20e1a 53#include <linux/signal.h>
9adef58b 54#include <linux/module.h>
4732efbe 55#include <asm/futex.h>
1da177e4 56
c87e2837
IM
57#include "rtmutex_common.h"
58
1da177e4
LT
59#define FUTEX_HASHBITS (CONFIG_BASE_SMALL ? 4 : 8)
60
c87e2837
IM
61/*
62 * Priority Inheritance state:
63 */
64struct futex_pi_state {
65 /*
66 * list of 'owned' pi_state instances - these have to be
67 * cleaned up in do_exit() if the task exits prematurely:
68 */
69 struct list_head list;
70
71 /*
72 * The PI object:
73 */
74 struct rt_mutex pi_mutex;
75
76 struct task_struct *owner;
77 atomic_t refcount;
78
79 union futex_key key;
80};
81
1da177e4
LT
82/*
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).
85 *
86 * A futex_q has a woken state, just like tasks have TASK_RUNNING.
ec92d082 87 * It is considered woken when plist_node_empty(&q->list) || q->lock_ptr == 0.
1da177e4
LT
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.
90 */
91struct futex_q {
ec92d082 92 struct plist_node list;
1da177e4
LT
93 wait_queue_head_t waiters;
94
e2970f2f 95 /* Which hash list lock to use: */
1da177e4
LT
96 spinlock_t *lock_ptr;
97
e2970f2f 98 /* Key which the futex is hashed on: */
1da177e4
LT
99 union futex_key key;
100
e2970f2f 101 /* For fd, sigio sent using these: */
1da177e4
LT
102 int fd;
103 struct file *filp;
c87e2837
IM
104
105 /* Optional priority inheritance state: */
106 struct futex_pi_state *pi_state;
107 struct task_struct *task;
1da177e4
LT
108};
109
110/*
111 * Split the global futex_lock into every hash list lock.
112 */
113struct futex_hash_bucket {
ec92d082
PP
114 spinlock_t lock;
115 struct plist_head chain;
1da177e4
LT
116};
117
118static struct futex_hash_bucket futex_queues[1<<FUTEX_HASHBITS];
119
120/* Futex-fs vfsmount entry: */
121static struct vfsmount *futex_mnt;
122
123/*
124 * We hash on the keys returned from get_futex_key (see below).
125 */
126static struct futex_hash_bucket *hash_futex(union futex_key *key)
127{
128 u32 hash = jhash2((u32*)&key->both.word,
129 (sizeof(key->both.word)+sizeof(key->both.ptr))/4,
130 key->both.offset);
131 return &futex_queues[hash & ((1 << FUTEX_HASHBITS)-1)];
132}
133
134/*
135 * Return 1 if two futex_keys are equal, 0 otherwise.
136 */
137static inline int match_futex(union futex_key *key1, union futex_key *key2)
138{
139 return (key1->both.word == key2->both.word
140 && key1->both.ptr == key2->both.ptr
141 && key1->both.offset == key2->both.offset);
142}
143
34f01cc1
ED
144/**
145 * get_futex_key - Get parameters which are the keys for a futex.
146 * @uaddr: virtual address of the futex
147 * @shared: NULL for a PROCESS_PRIVATE futex,
148 * &current->mm->mmap_sem for a PROCESS_SHARED futex
149 * @key: address where result is stored.
150 *
151 * Returns a negative error code or 0
152 * The key words are stored in *key on success.
1da177e4 153 *
f3a43f3f 154 * For shared mappings, it's (page->index, vma->vm_file->f_path.dentry->d_inode,
1da177e4
LT
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.
157 *
34f01cc1
ED
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.
1da177e4 161 */
34f01cc1
ED
162int get_futex_key(u32 __user *uaddr, struct rw_semaphore *fshared,
163 union futex_key *key)
1da177e4 164{
e2970f2f 165 unsigned long address = (unsigned long)uaddr;
1da177e4
LT
166 struct mm_struct *mm = current->mm;
167 struct vm_area_struct *vma;
168 struct page *page;
169 int err;
170
171 /*
172 * The futex address must be "naturally" aligned.
173 */
e2970f2f 174 key->both.offset = address % PAGE_SIZE;
34f01cc1 175 if (unlikely((address % sizeof(u32)) != 0))
1da177e4 176 return -EINVAL;
e2970f2f 177 address -= key->both.offset;
1da177e4 178
34f01cc1
ED
179 /*
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()
185 */
186 if (!fshared) {
187 if (unlikely(!access_ok(VERIFY_WRITE, uaddr, sizeof(u32))))
188 return -EFAULT;
189 key->private.mm = mm;
190 key->private.address = address;
191 return 0;
192 }
1da177e4
LT
193 /*
194 * The futex is hashed differently depending on whether
195 * it's in a shared or private mapping. So check vma first.
196 */
e2970f2f 197 vma = find_extend_vma(mm, address);
1da177e4
LT
198 if (unlikely(!vma))
199 return -EFAULT;
200
201 /*
202 * Permissions.
203 */
204 if (unlikely((vma->vm_flags & (VM_IO|VM_READ)) != VM_READ))
205 return (vma->vm_flags & VM_IO) ? -EPERM : -EACCES;
206
207 /*
208 * Private mappings are handled in a simple way.
209 *
210 * NOTE: When userspace waits on a MAP_SHARED mapping, even if
211 * it's a read-only handle, it's expected that futexes attach to
212 * the object not the particular process. Therefore we use
213 * VM_MAYSHARE here, not VM_SHARED which is restricted to shared
214 * mappings of _writable_ handles.
215 */
216 if (likely(!(vma->vm_flags & VM_MAYSHARE))) {
34f01cc1 217 key->both.offset |= FUT_OFF_MMSHARED; /* reference taken on mm */
1da177e4 218 key->private.mm = mm;
e2970f2f 219 key->private.address = address;
1da177e4
LT
220 return 0;
221 }
222
223 /*
224 * Linear file mappings are also simple.
225 */
f3a43f3f 226 key->shared.inode = vma->vm_file->f_path.dentry->d_inode;
34f01cc1 227 key->both.offset |= FUT_OFF_INODE; /* inode-based key. */
1da177e4 228 if (likely(!(vma->vm_flags & VM_NONLINEAR))) {
e2970f2f 229 key->shared.pgoff = (((address - vma->vm_start) >> PAGE_SHIFT)
1da177e4
LT
230 + vma->vm_pgoff);
231 return 0;
232 }
233
234 /*
235 * We could walk the page table to read the non-linear
236 * pte, and get the page index without fetching the page
237 * from swap. But that's a lot of code to duplicate here
238 * for a rare case, so we simply fetch the page.
239 */
e2970f2f 240 err = get_user_pages(current, mm, address, 1, 0, 0, &page, NULL);
1da177e4
LT
241 if (err >= 0) {
242 key->shared.pgoff =
243 page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
244 put_page(page);
245 return 0;
246 }
247 return err;
248}
9adef58b 249EXPORT_SYMBOL_GPL(get_futex_key);
1da177e4
LT
250
251/*
252 * Take a reference to the resource addressed by a key.
253 * Can be called while holding spinlocks.
254 *
1da177e4 255 */
9adef58b 256inline void get_futex_key_refs(union futex_key *key)
1da177e4 257{
34f01cc1
ED
258 if (key->both.ptr == 0)
259 return;
260 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
261 case FUT_OFF_INODE:
1da177e4 262 atomic_inc(&key->shared.inode->i_count);
34f01cc1
ED
263 break;
264 case FUT_OFF_MMSHARED:
1da177e4 265 atomic_inc(&key->private.mm->mm_count);
34f01cc1 266 break;
1da177e4
LT
267 }
268}
9adef58b 269EXPORT_SYMBOL_GPL(get_futex_key_refs);
1da177e4
LT
270
271/*
272 * Drop a reference to the resource addressed by a key.
273 * The hash bucket spinlock must not be held.
274 */
9adef58b 275void drop_futex_key_refs(union futex_key *key)
1da177e4 276{
34f01cc1
ED
277 if (key->both.ptr == 0)
278 return;
279 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
280 case FUT_OFF_INODE:
1da177e4 281 iput(key->shared.inode);
34f01cc1
ED
282 break;
283 case FUT_OFF_MMSHARED:
1da177e4 284 mmdrop(key->private.mm);
34f01cc1 285 break;
1da177e4
LT
286 }
287}
9adef58b 288EXPORT_SYMBOL_GPL(drop_futex_key_refs);
1da177e4 289
e2970f2f 290static inline int get_futex_value_locked(u32 *dest, u32 __user *from)
1da177e4
LT
291{
292 int ret;
293
a866374a 294 pagefault_disable();
e2970f2f 295 ret = __copy_from_user_inatomic(dest, from, sizeof(u32));
a866374a 296 pagefault_enable();
1da177e4
LT
297
298 return ret ? -EFAULT : 0;
299}
300
c87e2837 301/*
34f01cc1
ED
302 * Fault handling.
303 * if fshared is non NULL, current->mm->mmap_sem is already held
c87e2837 304 */
34f01cc1
ED
305static int futex_handle_fault(unsigned long address,
306 struct rw_semaphore *fshared, int attempt)
c87e2837
IM
307{
308 struct vm_area_struct * vma;
309 struct mm_struct *mm = current->mm;
34f01cc1 310 int ret = -EFAULT;
c87e2837 311
34f01cc1
ED
312 if (attempt > 2)
313 return ret;
c87e2837 314
34f01cc1
ED
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;
329 }
c87e2837 330 }
34f01cc1
ED
331 if (!fshared)
332 up_read(&mm->mmap_sem);
333 return ret;
c87e2837
IM
334}
335
336/*
337 * PI code:
338 */
339static int refill_pi_state_cache(void)
340{
341 struct futex_pi_state *pi_state;
342
343 if (likely(current->pi_state_cache))
344 return 0;
345
4668edc3 346 pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL);
c87e2837
IM
347
348 if (!pi_state)
349 return -ENOMEM;
350
c87e2837
IM
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);
355
356 current->pi_state_cache = pi_state;
357
358 return 0;
359}
360
361static struct futex_pi_state * alloc_pi_state(void)
362{
363 struct futex_pi_state *pi_state = current->pi_state_cache;
364
365 WARN_ON(!pi_state);
366 current->pi_state_cache = NULL;
367
368 return pi_state;
369}
370
371static void free_pi_state(struct futex_pi_state *pi_state)
372{
373 if (!atomic_dec_and_test(&pi_state->refcount))
374 return;
375
376 /*
377 * If pi_state->owner is NULL, the owner is most probably dying
378 * and has cleaned up the pi_state already
379 */
380 if (pi_state->owner) {
381 spin_lock_irq(&pi_state->owner->pi_lock);
382 list_del_init(&pi_state->list);
383 spin_unlock_irq(&pi_state->owner->pi_lock);
384
385 rt_mutex_proxy_unlock(&pi_state->pi_mutex, pi_state->owner);
386 }
387
388 if (current->pi_state_cache)
389 kfree(pi_state);
390 else {
391 /*
392 * pi_state->list is already empty.
393 * clear pi_state->owner.
394 * refcount is at 0 - put it back to 1.
395 */
396 pi_state->owner = NULL;
397 atomic_set(&pi_state->refcount, 1);
398 current->pi_state_cache = pi_state;
399 }
400}
401
402/*
403 * Look up the task based on what TID userspace gave us.
404 * We dont trust it.
405 */
406static struct task_struct * futex_find_get_task(pid_t pid)
407{
408 struct task_struct *p;
409
d359b549 410 rcu_read_lock();
c87e2837
IM
411 p = find_task_by_pid(pid);
412 if (!p)
413 goto out_unlock;
414 if ((current->euid != p->euid) && (current->euid != p->uid)) {
415 p = NULL;
416 goto out_unlock;
417 }
c87e2837
IM
418 get_task_struct(p);
419out_unlock:
d359b549 420 rcu_read_unlock();
c87e2837
IM
421
422 return p;
423}
424
425/*
426 * This task is holding PI mutexes at exit time => bad.
427 * Kernel cleans up PI-state, but userspace is likely hosed.
428 * (Robust-futex cleanup is separate and might save the day for userspace.)
429 */
430void exit_pi_state_list(struct task_struct *curr)
431{
c87e2837
IM
432 struct list_head *next, *head = &curr->pi_state_list;
433 struct futex_pi_state *pi_state;
627371d7 434 struct futex_hash_bucket *hb;
c87e2837
IM
435 union futex_key key;
436
437 /*
438 * We are a ZOMBIE and nobody can enqueue itself on
439 * pi_state_list anymore, but we have to be careful
627371d7 440 * versus waiters unqueueing themselves:
c87e2837
IM
441 */
442 spin_lock_irq(&curr->pi_lock);
443 while (!list_empty(head)) {
444
445 next = head->next;
446 pi_state = list_entry(next, struct futex_pi_state, list);
447 key = pi_state->key;
627371d7 448 hb = hash_futex(&key);
c87e2837
IM
449 spin_unlock_irq(&curr->pi_lock);
450
c87e2837
IM
451 spin_lock(&hb->lock);
452
453 spin_lock_irq(&curr->pi_lock);
627371d7
IM
454 /*
455 * We dropped the pi-lock, so re-check whether this
456 * task still owns the PI-state:
457 */
c87e2837
IM
458 if (head->next != next) {
459 spin_unlock(&hb->lock);
460 continue;
461 }
462
c87e2837 463 WARN_ON(pi_state->owner != curr);
627371d7
IM
464 WARN_ON(list_empty(&pi_state->list));
465 list_del_init(&pi_state->list);
c87e2837
IM
466 pi_state->owner = NULL;
467 spin_unlock_irq(&curr->pi_lock);
468
469 rt_mutex_unlock(&pi_state->pi_mutex);
470
471 spin_unlock(&hb->lock);
472
473 spin_lock_irq(&curr->pi_lock);
474 }
475 spin_unlock_irq(&curr->pi_lock);
476}
477
478static int
d0aa7a70
PP
479lookup_pi_state(u32 uval, struct futex_hash_bucket *hb,
480 union futex_key *key, struct futex_pi_state **ps)
c87e2837
IM
481{
482 struct futex_pi_state *pi_state = NULL;
483 struct futex_q *this, *next;
ec92d082 484 struct plist_head *head;
c87e2837 485 struct task_struct *p;
778e9a9c 486 pid_t pid = uval & FUTEX_TID_MASK;
c87e2837
IM
487
488 head = &hb->chain;
489
ec92d082 490 plist_for_each_entry_safe(this, next, head, list) {
d0aa7a70 491 if (match_futex(&this->key, key)) {
c87e2837
IM
492 /*
493 * Another waiter already exists - bump up
494 * the refcount and return its pi_state:
495 */
496 pi_state = this->pi_state;
06a9ec29
TG
497 /*
498 * Userspace might have messed up non PI and PI futexes
499 */
500 if (unlikely(!pi_state))
501 return -EINVAL;
502
627371d7 503 WARN_ON(!atomic_read(&pi_state->refcount));
778e9a9c
AK
504 WARN_ON(pid && pi_state->owner &&
505 pi_state->owner->pid != pid);
627371d7 506
c87e2837 507 atomic_inc(&pi_state->refcount);
d0aa7a70 508 *ps = pi_state;
c87e2837
IM
509
510 return 0;
511 }
512 }
513
514 /*
e3f2ddea 515 * We are the first waiter - try to look up the real owner and attach
778e9a9c 516 * the new pi_state to it, but bail out when TID = 0
c87e2837 517 */
778e9a9c 518 if (!pid)
e3f2ddea 519 return -ESRCH;
c87e2837 520 p = futex_find_get_task(pid);
778e9a9c
AK
521 if (IS_ERR(p))
522 return PTR_ERR(p);
523
524 /*
525 * We need to look at the task state flags to figure out,
526 * whether the task is exiting. To protect against the do_exit
527 * change of the task flags, we do this protected by
528 * p->pi_lock:
529 */
530 spin_lock_irq(&p->pi_lock);
531 if (unlikely(p->flags & PF_EXITING)) {
532 /*
533 * The task is on the way out. When PF_EXITPIDONE is
534 * set, we know that the task has finished the
535 * cleanup:
536 */
537 int ret = (p->flags & PF_EXITPIDONE) ? -ESRCH : -EAGAIN;
538
539 spin_unlock_irq(&p->pi_lock);
540 put_task_struct(p);
541 return ret;
542 }
c87e2837
IM
543
544 pi_state = alloc_pi_state();
545
546 /*
547 * Initialize the pi_mutex in locked state and make 'p'
548 * the owner of it:
549 */
550 rt_mutex_init_proxy_locked(&pi_state->pi_mutex, p);
551
552 /* Store the key for possible exit cleanups: */
d0aa7a70 553 pi_state->key = *key;
c87e2837 554
627371d7 555 WARN_ON(!list_empty(&pi_state->list));
c87e2837
IM
556 list_add(&pi_state->list, &p->pi_state_list);
557 pi_state->owner = p;
558 spin_unlock_irq(&p->pi_lock);
559
560 put_task_struct(p);
561
d0aa7a70 562 *ps = pi_state;
c87e2837
IM
563
564 return 0;
565}
566
1da177e4
LT
567/*
568 * The hash bucket lock must be held when this is called.
569 * Afterwards, the futex_q must not be accessed.
570 */
571static void wake_futex(struct futex_q *q)
572{
ec92d082 573 plist_del(&q->list, &q->list.plist);
1da177e4
LT
574 if (q->filp)
575 send_sigio(&q->filp->f_owner, q->fd, POLL_IN);
576 /*
577 * The lock in wake_up_all() is a crucial memory barrier after the
ec92d082 578 * plist_del() and also before assigning to q->lock_ptr.
1da177e4
LT
579 */
580 wake_up_all(&q->waiters);
581 /*
582 * The waiting task can free the futex_q as soon as this is written,
583 * without taking any locks. This must come last.
8e31108b
AM
584 *
585 * A memory barrier is required here to prevent the following store
586 * to lock_ptr from getting ahead of the wakeup. Clearing the lock
587 * at the end of wake_up_all() does not prevent this store from
588 * moving.
1da177e4 589 */
ccdea2f8 590 smp_wmb();
1da177e4
LT
591 q->lock_ptr = NULL;
592}
593
c87e2837
IM
594static int wake_futex_pi(u32 __user *uaddr, u32 uval, struct futex_q *this)
595{
596 struct task_struct *new_owner;
597 struct futex_pi_state *pi_state = this->pi_state;
598 u32 curval, newval;
599
600 if (!pi_state)
601 return -EINVAL;
602
21778867 603 spin_lock(&pi_state->pi_mutex.wait_lock);
c87e2837
IM
604 new_owner = rt_mutex_next_owner(&pi_state->pi_mutex);
605
606 /*
607 * This happens when we have stolen the lock and the original
608 * pending owner did not enqueue itself back on the rt_mutex.
609 * Thats not a tragedy. We know that way, that a lock waiter
610 * is on the fly. We make the futex_q waiter the pending owner.
611 */
612 if (!new_owner)
613 new_owner = this->task;
614
615 /*
616 * We pass it to the next owner. (The WAITERS bit is always
617 * kept enabled while there is PI state around. We must also
618 * preserve the owner died bit.)
619 */
e3f2ddea 620 if (!(uval & FUTEX_OWNER_DIED)) {
778e9a9c
AK
621 int ret = 0;
622
e3f2ddea
IM
623 newval = FUTEX_WAITERS | new_owner->pid;
624
a866374a 625 pagefault_disable();
e3f2ddea 626 curval = futex_atomic_cmpxchg_inatomic(uaddr, uval, newval);
a866374a 627 pagefault_enable();
778e9a9c 628
e3f2ddea 629 if (curval == -EFAULT)
778e9a9c 630 ret = -EFAULT;
e3f2ddea 631 if (curval != uval)
778e9a9c
AK
632 ret = -EINVAL;
633 if (ret) {
634 spin_unlock(&pi_state->pi_mutex.wait_lock);
635 return ret;
636 }
e3f2ddea 637 }
c87e2837 638
627371d7
IM
639 spin_lock_irq(&pi_state->owner->pi_lock);
640 WARN_ON(list_empty(&pi_state->list));
641 list_del_init(&pi_state->list);
642 spin_unlock_irq(&pi_state->owner->pi_lock);
643
644 spin_lock_irq(&new_owner->pi_lock);
645 WARN_ON(!list_empty(&pi_state->list));
c87e2837
IM
646 list_add(&pi_state->list, &new_owner->pi_state_list);
647 pi_state->owner = new_owner;
627371d7
IM
648 spin_unlock_irq(&new_owner->pi_lock);
649
21778867 650 spin_unlock(&pi_state->pi_mutex.wait_lock);
c87e2837
IM
651 rt_mutex_unlock(&pi_state->pi_mutex);
652
653 return 0;
654}
655
656static int unlock_futex_pi(u32 __user *uaddr, u32 uval)
657{
658 u32 oldval;
659
660 /*
661 * There is no waiter, so we unlock the futex. The owner died
662 * bit has not to be preserved here. We are the owner:
663 */
a866374a 664 pagefault_disable();
c87e2837 665 oldval = futex_atomic_cmpxchg_inatomic(uaddr, uval, 0);
a866374a 666 pagefault_enable();
c87e2837
IM
667
668 if (oldval == -EFAULT)
669 return oldval;
670 if (oldval != uval)
671 return -EAGAIN;
672
673 return 0;
674}
675
8b8f319f
IM
676/*
677 * Express the locking dependencies for lockdep:
678 */
679static inline void
680double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
681{
682 if (hb1 <= hb2) {
683 spin_lock(&hb1->lock);
684 if (hb1 < hb2)
685 spin_lock_nested(&hb2->lock, SINGLE_DEPTH_NESTING);
686 } else { /* hb1 > hb2 */
687 spin_lock(&hb2->lock);
688 spin_lock_nested(&hb1->lock, SINGLE_DEPTH_NESTING);
689 }
690}
691
1da177e4
LT
692/*
693 * Wake up all waiters hashed on the physical page that is mapped
694 * to this virtual address:
695 */
34f01cc1
ED
696static int futex_wake(u32 __user *uaddr, struct rw_semaphore *fshared,
697 int nr_wake)
1da177e4 698{
e2970f2f 699 struct futex_hash_bucket *hb;
1da177e4 700 struct futex_q *this, *next;
ec92d082 701 struct plist_head *head;
e2970f2f 702 union futex_key key;
1da177e4
LT
703 int ret;
704
34f01cc1
ED
705 if (fshared)
706 down_read(fshared);
1da177e4 707
34f01cc1 708 ret = get_futex_key(uaddr, fshared, &key);
1da177e4
LT
709 if (unlikely(ret != 0))
710 goto out;
711
e2970f2f
IM
712 hb = hash_futex(&key);
713 spin_lock(&hb->lock);
714 head = &hb->chain;
1da177e4 715
ec92d082 716 plist_for_each_entry_safe(this, next, head, list) {
1da177e4 717 if (match_futex (&this->key, &key)) {
ed6f7b10
IM
718 if (this->pi_state) {
719 ret = -EINVAL;
720 break;
721 }
1da177e4
LT
722 wake_futex(this);
723 if (++ret >= nr_wake)
724 break;
725 }
726 }
727
e2970f2f 728 spin_unlock(&hb->lock);
1da177e4 729out:
34f01cc1
ED
730 if (fshared)
731 up_read(fshared);
1da177e4
LT
732 return ret;
733}
734
4732efbe
JJ
735/*
736 * Wake up all waiters hashed on the physical page that is mapped
737 * to this virtual address:
738 */
e2970f2f 739static int
34f01cc1
ED
740futex_wake_op(u32 __user *uaddr1, struct rw_semaphore *fshared,
741 u32 __user *uaddr2,
e2970f2f 742 int nr_wake, int nr_wake2, int op)
4732efbe
JJ
743{
744 union futex_key key1, key2;
e2970f2f 745 struct futex_hash_bucket *hb1, *hb2;
ec92d082 746 struct plist_head *head;
4732efbe
JJ
747 struct futex_q *this, *next;
748 int ret, op_ret, attempt = 0;
749
750retryfull:
34f01cc1
ED
751 if (fshared)
752 down_read(fshared);
4732efbe 753
34f01cc1 754 ret = get_futex_key(uaddr1, fshared, &key1);
4732efbe
JJ
755 if (unlikely(ret != 0))
756 goto out;
34f01cc1 757 ret = get_futex_key(uaddr2, fshared, &key2);
4732efbe
JJ
758 if (unlikely(ret != 0))
759 goto out;
760
e2970f2f
IM
761 hb1 = hash_futex(&key1);
762 hb2 = hash_futex(&key2);
4732efbe
JJ
763
764retry:
8b8f319f 765 double_lock_hb(hb1, hb2);
4732efbe 766
e2970f2f 767 op_ret = futex_atomic_op_inuser(op, uaddr2);
4732efbe 768 if (unlikely(op_ret < 0)) {
e2970f2f 769 u32 dummy;
4732efbe 770
e2970f2f
IM
771 spin_unlock(&hb1->lock);
772 if (hb1 != hb2)
773 spin_unlock(&hb2->lock);
4732efbe 774
7ee1dd3f 775#ifndef CONFIG_MMU
e2970f2f
IM
776 /*
777 * we don't get EFAULT from MMU faults if we don't have an MMU,
778 * but we might get them from range checking
779 */
7ee1dd3f
DH
780 ret = op_ret;
781 goto out;
782#endif
783
796f8d9b
DG
784 if (unlikely(op_ret != -EFAULT)) {
785 ret = op_ret;
786 goto out;
787 }
788
e2970f2f
IM
789 /*
790 * futex_atomic_op_inuser needs to both read and write
4732efbe
JJ
791 * *(int __user *)uaddr2, but we can't modify it
792 * non-atomically. Therefore, if get_user below is not
793 * enough, we need to handle the fault ourselves, while
e2970f2f
IM
794 * still holding the mmap_sem.
795 */
4732efbe 796 if (attempt++) {
34f01cc1
ED
797 ret = futex_handle_fault((unsigned long)uaddr2,
798 fshared, attempt);
799 if (ret)
4732efbe 800 goto out;
4732efbe
JJ
801 goto retry;
802 }
803
e2970f2f
IM
804 /*
805 * If we would have faulted, release mmap_sem,
806 * fault it in and start all over again.
807 */
34f01cc1
ED
808 if (fshared)
809 up_read(fshared);
4732efbe 810
e2970f2f 811 ret = get_user(dummy, uaddr2);
4732efbe
JJ
812 if (ret)
813 return ret;
814
815 goto retryfull;
816 }
817
e2970f2f 818 head = &hb1->chain;
4732efbe 819
ec92d082 820 plist_for_each_entry_safe(this, next, head, list) {
4732efbe
JJ
821 if (match_futex (&this->key, &key1)) {
822 wake_futex(this);
823 if (++ret >= nr_wake)
824 break;
825 }
826 }
827
828 if (op_ret > 0) {
e2970f2f 829 head = &hb2->chain;
4732efbe
JJ
830
831 op_ret = 0;
ec92d082 832 plist_for_each_entry_safe(this, next, head, list) {
4732efbe
JJ
833 if (match_futex (&this->key, &key2)) {
834 wake_futex(this);
835 if (++op_ret >= nr_wake2)
836 break;
837 }
838 }
839 ret += op_ret;
840 }
841
e2970f2f
IM
842 spin_unlock(&hb1->lock);
843 if (hb1 != hb2)
844 spin_unlock(&hb2->lock);
4732efbe 845out:
34f01cc1
ED
846 if (fshared)
847 up_read(fshared);
4732efbe
JJ
848 return ret;
849}
850
1da177e4
LT
851/*
852 * Requeue all waiters hashed on one physical page to another
853 * physical page.
854 */
34f01cc1
ED
855static int futex_requeue(u32 __user *uaddr1, struct rw_semaphore *fshared,
856 u32 __user *uaddr2,
e2970f2f 857 int nr_wake, int nr_requeue, u32 *cmpval)
1da177e4
LT
858{
859 union futex_key key1, key2;
e2970f2f 860 struct futex_hash_bucket *hb1, *hb2;
ec92d082 861 struct plist_head *head1;
1da177e4
LT
862 struct futex_q *this, *next;
863 int ret, drop_count = 0;
864
865 retry:
34f01cc1
ED
866 if (fshared)
867 down_read(fshared);
1da177e4 868
34f01cc1 869 ret = get_futex_key(uaddr1, fshared, &key1);
1da177e4
LT
870 if (unlikely(ret != 0))
871 goto out;
34f01cc1 872 ret = get_futex_key(uaddr2, fshared, &key2);
1da177e4
LT
873 if (unlikely(ret != 0))
874 goto out;
875
e2970f2f
IM
876 hb1 = hash_futex(&key1);
877 hb2 = hash_futex(&key2);
1da177e4 878
8b8f319f 879 double_lock_hb(hb1, hb2);
1da177e4 880
e2970f2f
IM
881 if (likely(cmpval != NULL)) {
882 u32 curval;
1da177e4 883
e2970f2f 884 ret = get_futex_value_locked(&curval, uaddr1);
1da177e4
LT
885
886 if (unlikely(ret)) {
e2970f2f
IM
887 spin_unlock(&hb1->lock);
888 if (hb1 != hb2)
889 spin_unlock(&hb2->lock);
1da177e4 890
e2970f2f
IM
891 /*
892 * If we would have faulted, release mmap_sem, fault
1da177e4
LT
893 * it in and start all over again.
894 */
34f01cc1
ED
895 if (fshared)
896 up_read(fshared);
1da177e4 897
e2970f2f 898 ret = get_user(curval, uaddr1);
1da177e4
LT
899
900 if (!ret)
901 goto retry;
902
903 return ret;
904 }
e2970f2f 905 if (curval != *cmpval) {
1da177e4
LT
906 ret = -EAGAIN;
907 goto out_unlock;
908 }
909 }
910
e2970f2f 911 head1 = &hb1->chain;
ec92d082 912 plist_for_each_entry_safe(this, next, head1, list) {
1da177e4
LT
913 if (!match_futex (&this->key, &key1))
914 continue;
915 if (++ret <= nr_wake) {
916 wake_futex(this);
917 } else {
59e0e0ac
SD
918 /*
919 * If key1 and key2 hash to the same bucket, no need to
920 * requeue.
921 */
922 if (likely(head1 != &hb2->chain)) {
ec92d082
PP
923 plist_del(&this->list, &hb1->chain);
924 plist_add(&this->list, &hb2->chain);
59e0e0ac 925 this->lock_ptr = &hb2->lock;
ec92d082
PP
926#ifdef CONFIG_DEBUG_PI_LIST
927 this->list.plist.lock = &hb2->lock;
928#endif
778e9a9c 929 }
1da177e4 930 this->key = key2;
9adef58b 931 get_futex_key_refs(&key2);
1da177e4
LT
932 drop_count++;
933
934 if (ret - nr_wake >= nr_requeue)
935 break;
1da177e4
LT
936 }
937 }
938
939out_unlock:
e2970f2f
IM
940 spin_unlock(&hb1->lock);
941 if (hb1 != hb2)
942 spin_unlock(&hb2->lock);
1da177e4 943
9adef58b 944 /* drop_futex_key_refs() must be called outside the spinlocks. */
1da177e4 945 while (--drop_count >= 0)
9adef58b 946 drop_futex_key_refs(&key1);
1da177e4
LT
947
948out:
34f01cc1
ED
949 if (fshared)
950 up_read(fshared);
1da177e4
LT
951 return ret;
952}
953
954/* The key must be already stored in q->key. */
955static inline struct futex_hash_bucket *
956queue_lock(struct futex_q *q, int fd, struct file *filp)
957{
e2970f2f 958 struct futex_hash_bucket *hb;
1da177e4
LT
959
960 q->fd = fd;
961 q->filp = filp;
962
963 init_waitqueue_head(&q->waiters);
964
9adef58b 965 get_futex_key_refs(&q->key);
e2970f2f
IM
966 hb = hash_futex(&q->key);
967 q->lock_ptr = &hb->lock;
1da177e4 968
e2970f2f
IM
969 spin_lock(&hb->lock);
970 return hb;
1da177e4
LT
971}
972
e2970f2f 973static inline void __queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
1da177e4 974{
ec92d082
PP
975 int prio;
976
977 /*
978 * The priority used to register this element is
979 * - either the real thread-priority for the real-time threads
980 * (i.e. threads with a priority lower than MAX_RT_PRIO)
981 * - or MAX_RT_PRIO for non-RT threads.
982 * Thus, all RT-threads are woken first in priority order, and
983 * the others are woken last, in FIFO order.
984 */
985 prio = min(current->normal_prio, MAX_RT_PRIO);
986
987 plist_node_init(&q->list, prio);
988#ifdef CONFIG_DEBUG_PI_LIST
989 q->list.plist.lock = &hb->lock;
990#endif
991 plist_add(&q->list, &hb->chain);
c87e2837 992 q->task = current;
e2970f2f 993 spin_unlock(&hb->lock);
1da177e4
LT
994}
995
996static inline void
e2970f2f 997queue_unlock(struct futex_q *q, struct futex_hash_bucket *hb)
1da177e4 998{
e2970f2f 999 spin_unlock(&hb->lock);
9adef58b 1000 drop_futex_key_refs(&q->key);
1da177e4
LT
1001}
1002
1003/*
1004 * queue_me and unqueue_me must be called as a pair, each
1005 * exactly once. They are called with the hashed spinlock held.
1006 */
1007
1008/* The key must be already stored in q->key. */
1009static void queue_me(struct futex_q *q, int fd, struct file *filp)
1010{
e2970f2f
IM
1011 struct futex_hash_bucket *hb;
1012
1013 hb = queue_lock(q, fd, filp);
1014 __queue_me(q, hb);
1da177e4
LT
1015}
1016
1017/* Return 1 if we were still queued (ie. 0 means we were woken) */
1018static int unqueue_me(struct futex_q *q)
1019{
1da177e4 1020 spinlock_t *lock_ptr;
e2970f2f 1021 int ret = 0;
1da177e4
LT
1022
1023 /* In the common case we don't take the spinlock, which is nice. */
1024 retry:
1025 lock_ptr = q->lock_ptr;
e91467ec 1026 barrier();
1da177e4
LT
1027 if (lock_ptr != 0) {
1028 spin_lock(lock_ptr);
1029 /*
1030 * q->lock_ptr can change between reading it and
1031 * spin_lock(), causing us to take the wrong lock. This
1032 * corrects the race condition.
1033 *
1034 * Reasoning goes like this: if we have the wrong lock,
1035 * q->lock_ptr must have changed (maybe several times)
1036 * between reading it and the spin_lock(). It can
1037 * change again after the spin_lock() but only if it was
1038 * already changed before the spin_lock(). It cannot,
1039 * however, change back to the original value. Therefore
1040 * we can detect whether we acquired the correct lock.
1041 */
1042 if (unlikely(lock_ptr != q->lock_ptr)) {
1043 spin_unlock(lock_ptr);
1044 goto retry;
1045 }
ec92d082
PP
1046 WARN_ON(plist_node_empty(&q->list));
1047 plist_del(&q->list, &q->list.plist);
c87e2837
IM
1048
1049 BUG_ON(q->pi_state);
1050
1da177e4
LT
1051 spin_unlock(lock_ptr);
1052 ret = 1;
1053 }
1054
9adef58b 1055 drop_futex_key_refs(&q->key);
1da177e4
LT
1056 return ret;
1057}
1058
c87e2837
IM
1059/*
1060 * PI futexes can not be requeued and must remove themself from the
d0aa7a70
PP
1061 * hash bucket. The hash bucket lock (i.e. lock_ptr) is held on entry
1062 * and dropped here.
c87e2837 1063 */
d0aa7a70 1064static void unqueue_me_pi(struct futex_q *q)
c87e2837 1065{
ec92d082
PP
1066 WARN_ON(plist_node_empty(&q->list));
1067 plist_del(&q->list, &q->list.plist);
c87e2837
IM
1068
1069 BUG_ON(!q->pi_state);
1070 free_pi_state(q->pi_state);
1071 q->pi_state = NULL;
1072
d0aa7a70 1073 spin_unlock(q->lock_ptr);
c87e2837 1074
9adef58b 1075 drop_futex_key_refs(&q->key);
c87e2837
IM
1076}
1077
d0aa7a70
PP
1078/*
1079 * Fixup the pi_state owner with current.
1080 *
778e9a9c
AK
1081 * Must be called with hash bucket lock held and mm->sem held for non
1082 * private futexes.
d0aa7a70 1083 */
778e9a9c 1084static int fixup_pi_state_owner(u32 __user *uaddr, struct futex_q *q,
d0aa7a70
PP
1085 struct task_struct *curr)
1086{
1087 u32 newtid = curr->pid | FUTEX_WAITERS;
1088 struct futex_pi_state *pi_state = q->pi_state;
1089 u32 uval, curval, newval;
1090 int ret;
1091
1092 /* Owner died? */
1093 if (pi_state->owner != NULL) {
1094 spin_lock_irq(&pi_state->owner->pi_lock);
1095 WARN_ON(list_empty(&pi_state->list));
1096 list_del_init(&pi_state->list);
1097 spin_unlock_irq(&pi_state->owner->pi_lock);
1098 } else
1099 newtid |= FUTEX_OWNER_DIED;
1100
1101 pi_state->owner = curr;
1102
1103 spin_lock_irq(&curr->pi_lock);
1104 WARN_ON(!list_empty(&pi_state->list));
1105 list_add(&pi_state->list, &curr->pi_state_list);
1106 spin_unlock_irq(&curr->pi_lock);
1107
d0aa7a70
PP
1108 /*
1109 * We own it, so we have to replace the pending owner
1110 * TID. This must be atomic as we have preserve the
1111 * owner died bit here.
1112 */
778e9a9c
AK
1113 ret = get_futex_value_locked(&uval, uaddr);
1114
d0aa7a70
PP
1115 while (!ret) {
1116 newval = (uval & FUTEX_OWNER_DIED) | newtid;
778e9a9c
AK
1117
1118 pagefault_disable();
d0aa7a70
PP
1119 curval = futex_atomic_cmpxchg_inatomic(uaddr,
1120 uval, newval);
778e9a9c
AK
1121 pagefault_enable();
1122
d0aa7a70 1123 if (curval == -EFAULT)
778e9a9c 1124 ret = -EFAULT;
d0aa7a70
PP
1125 if (curval == uval)
1126 break;
1127 uval = curval;
1128 }
1129 return ret;
1130}
1131
34f01cc1
ED
1132/*
1133 * In case we must use restart_block to restart a futex_wait,
1134 * we encode in the 'arg3' shared capability
1135 */
1136#define ARG3_SHARED 1
1137
72c1bbf3 1138static long futex_wait_restart(struct restart_block *restart);
34f01cc1
ED
1139static int futex_wait(u32 __user *uaddr, struct rw_semaphore *fshared,
1140 u32 val, ktime_t *abs_time)
1da177e4 1141{
c87e2837
IM
1142 struct task_struct *curr = current;
1143 DECLARE_WAITQUEUE(wait, curr);
e2970f2f 1144 struct futex_hash_bucket *hb;
1da177e4 1145 struct futex_q q;
e2970f2f
IM
1146 u32 uval;
1147 int ret;
bd197234 1148 struct hrtimer_sleeper t;
c19384b5 1149 int rem = 0;
1da177e4 1150
c87e2837 1151 q.pi_state = NULL;
1da177e4 1152 retry:
34f01cc1
ED
1153 if (fshared)
1154 down_read(fshared);
1da177e4 1155
34f01cc1 1156 ret = get_futex_key(uaddr, fshared, &q.key);
1da177e4
LT
1157 if (unlikely(ret != 0))
1158 goto out_release_sem;
1159
e2970f2f 1160 hb = queue_lock(&q, -1, NULL);
1da177e4
LT
1161
1162 /*
1163 * Access the page AFTER the futex is queued.
1164 * Order is important:
1165 *
1166 * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
1167 * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); }
1168 *
1169 * The basic logical guarantee of a futex is that it blocks ONLY
1170 * if cond(var) is known to be true at the time of blocking, for
1171 * any cond. If we queued after testing *uaddr, that would open
1172 * a race condition where we could block indefinitely with
1173 * cond(var) false, which would violate the guarantee.
1174 *
1175 * A consequence is that futex_wait() can return zero and absorb
1176 * a wakeup when *uaddr != val on entry to the syscall. This is
1177 * rare, but normal.
1178 *
34f01cc1
ED
1179 * for shared futexes, we hold the mmap semaphore, so the mapping
1180 * cannot have changed since we looked it up in get_futex_key.
1da177e4 1181 */
e2970f2f 1182 ret = get_futex_value_locked(&uval, uaddr);
1da177e4
LT
1183
1184 if (unlikely(ret)) {
e2970f2f 1185 queue_unlock(&q, hb);
1da177e4 1186
e2970f2f
IM
1187 /*
1188 * If we would have faulted, release mmap_sem, fault it in and
1da177e4
LT
1189 * start all over again.
1190 */
34f01cc1
ED
1191 if (fshared)
1192 up_read(fshared);
1da177e4 1193
e2970f2f 1194 ret = get_user(uval, uaddr);
1da177e4
LT
1195
1196 if (!ret)
1197 goto retry;
1198 return ret;
1199 }
c87e2837
IM
1200 ret = -EWOULDBLOCK;
1201 if (uval != val)
1202 goto out_unlock_release_sem;
1da177e4
LT
1203
1204 /* Only actually queue if *uaddr contained val. */
e2970f2f 1205 __queue_me(&q, hb);
1da177e4
LT
1206
1207 /*
1208 * Now the futex is queued and we have checked the data, we
1209 * don't want to hold mmap_sem while we sleep.
c87e2837 1210 */
34f01cc1
ED
1211 if (fshared)
1212 up_read(fshared);
1da177e4
LT
1213
1214 /*
1215 * There might have been scheduling since the queue_me(), as we
1216 * cannot hold a spinlock across the get_user() in case it
1217 * faults, and we cannot just set TASK_INTERRUPTIBLE state when
1218 * queueing ourselves into the futex hash. This code thus has to
1219 * rely on the futex_wake() code removing us from hash when it
1220 * wakes us up.
1221 */
1222
1223 /* add_wait_queue is the barrier after __set_current_state. */
1224 __set_current_state(TASK_INTERRUPTIBLE);
1225 add_wait_queue(&q.waiters, &wait);
1226 /*
ec92d082 1227 * !plist_node_empty() is safe here without any lock.
1da177e4
LT
1228 * q.lock_ptr != 0 is not safe, because of ordering against wakeup.
1229 */
ec92d082 1230 if (likely(!plist_node_empty(&q.list))) {
c19384b5
PP
1231 if (!abs_time)
1232 schedule();
1233 else {
1234 hrtimer_init(&t.timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
1235 hrtimer_init_sleeper(&t, current);
1236 t.timer.expires = *abs_time;
1237
1238 hrtimer_start(&t.timer, t.timer.expires, HRTIMER_MODE_ABS);
1239
1240 /*
1241 * the timer could have already expired, in which
1242 * case current would be flagged for rescheduling.
1243 * Don't bother calling schedule.
1244 */
1245 if (likely(t.task))
1246 schedule();
1247
1248 hrtimer_cancel(&t.timer);
72c1bbf3 1249
c19384b5
PP
1250 /* Flag if a timeout occured */
1251 rem = (t.task == NULL);
1252 }
72c1bbf3 1253 }
1da177e4
LT
1254 __set_current_state(TASK_RUNNING);
1255
1256 /*
1257 * NOTE: we don't remove ourselves from the waitqueue because
1258 * we are the only user of it.
1259 */
1260
1261 /* If we were woken (and unqueued), we succeeded, whatever. */
1262 if (!unqueue_me(&q))
1263 return 0;
c19384b5 1264 if (rem)
1da177e4 1265 return -ETIMEDOUT;
72c1bbf3 1266
e2970f2f
IM
1267 /*
1268 * We expect signal_pending(current), but another thread may
1269 * have handled it for us already.
1270 */
c19384b5 1271 if (!abs_time)
72c1bbf3
NP
1272 return -ERESTARTSYS;
1273 else {
1274 struct restart_block *restart;
1275 restart = &current_thread_info()->restart_block;
1276 restart->fn = futex_wait_restart;
1277 restart->arg0 = (unsigned long)uaddr;
1278 restart->arg1 = (unsigned long)val;
c19384b5 1279 restart->arg2 = (unsigned long)abs_time;
34f01cc1
ED
1280 restart->arg3 = 0;
1281 if (fshared)
1282 restart->arg3 |= ARG3_SHARED;
72c1bbf3
NP
1283 return -ERESTART_RESTARTBLOCK;
1284 }
1da177e4 1285
c87e2837
IM
1286 out_unlock_release_sem:
1287 queue_unlock(&q, hb);
1288
1da177e4 1289 out_release_sem:
34f01cc1
ED
1290 if (fshared)
1291 up_read(fshared);
c87e2837
IM
1292 return ret;
1293}
1294
72c1bbf3
NP
1295
1296static long futex_wait_restart(struct restart_block *restart)
1297{
1298 u32 __user *uaddr = (u32 __user *)restart->arg0;
1299 u32 val = (u32)restart->arg1;
c19384b5 1300 ktime_t *abs_time = (ktime_t *)restart->arg2;
34f01cc1 1301 struct rw_semaphore *fshared = NULL;
72c1bbf3
NP
1302
1303 restart->fn = do_no_restart_syscall;
34f01cc1
ED
1304 if (restart->arg3 & ARG3_SHARED)
1305 fshared = &current->mm->mmap_sem;
1306 return (long)futex_wait(uaddr, fshared, val, abs_time);
72c1bbf3
NP
1307}
1308
1309
c87e2837
IM
1310/*
1311 * Userspace tried a 0 -> TID atomic transition of the futex value
1312 * and failed. The kernel side here does the whole locking operation:
1313 * if there are waiters then it will block, it does PI, etc. (Due to
1314 * races the kernel might see a 0 value of the futex too.)
1315 */
34f01cc1
ED
1316static int futex_lock_pi(u32 __user *uaddr, struct rw_semaphore *fshared,
1317 int detect, ktime_t *time, int trylock)
c87e2837 1318{
c5780e97 1319 struct hrtimer_sleeper timeout, *to = NULL;
c87e2837
IM
1320 struct task_struct *curr = current;
1321 struct futex_hash_bucket *hb;
1322 u32 uval, newval, curval;
1323 struct futex_q q;
778e9a9c 1324 int ret, lock_taken, ownerdied = 0, attempt = 0;
c87e2837
IM
1325
1326 if (refill_pi_state_cache())
1327 return -ENOMEM;
1328
c19384b5 1329 if (time) {
c5780e97 1330 to = &timeout;
c9cb2e3d 1331 hrtimer_init(&to->timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
c5780e97 1332 hrtimer_init_sleeper(to, current);
c19384b5 1333 to->timer.expires = *time;
c5780e97
TG
1334 }
1335
c87e2837
IM
1336 q.pi_state = NULL;
1337 retry:
34f01cc1
ED
1338 if (fshared)
1339 down_read(fshared);
c87e2837 1340
34f01cc1 1341 ret = get_futex_key(uaddr, fshared, &q.key);
c87e2837
IM
1342 if (unlikely(ret != 0))
1343 goto out_release_sem;
1344
778e9a9c 1345 retry_unlocked:
c87e2837
IM
1346 hb = queue_lock(&q, -1, NULL);
1347
1348 retry_locked:
778e9a9c 1349 ret = lock_taken = 0;
d0aa7a70 1350
c87e2837
IM
1351 /*
1352 * To avoid races, we attempt to take the lock here again
1353 * (by doing a 0 -> TID atomic cmpxchg), while holding all
1354 * the locks. It will most likely not succeed.
1355 */
1356 newval = current->pid;
1357
a866374a 1358 pagefault_disable();
c87e2837 1359 curval = futex_atomic_cmpxchg_inatomic(uaddr, 0, newval);
a866374a 1360 pagefault_enable();
c87e2837
IM
1361
1362 if (unlikely(curval == -EFAULT))
1363 goto uaddr_faulted;
1364
778e9a9c
AK
1365 /*
1366 * Detect deadlocks. In case of REQUEUE_PI this is a valid
1367 * situation and we return success to user space.
1368 */
c87e2837 1369 if (unlikely((curval & FUTEX_TID_MASK) == current->pid)) {
bd197234 1370 ret = -EDEADLK;
c87e2837
IM
1371 goto out_unlock_release_sem;
1372 }
1373
1374 /*
778e9a9c 1375 * Surprise - we got the lock. Just return to userspace:
c87e2837
IM
1376 */
1377 if (unlikely(!curval))
1378 goto out_unlock_release_sem;
1379
1380 uval = curval;
778e9a9c 1381
d0aa7a70 1382 /*
778e9a9c
AK
1383 * Set the WAITERS flag, so the owner will know it has someone
1384 * to wake at next unlock
d0aa7a70 1385 */
778e9a9c
AK
1386 newval = curval | FUTEX_WAITERS;
1387
1388 /*
1389 * There are two cases, where a futex might have no owner (the
bd197234
TG
1390 * owner TID is 0): OWNER_DIED. We take over the futex in this
1391 * case. We also do an unconditional take over, when the owner
1392 * of the futex died.
778e9a9c
AK
1393 *
1394 * This is safe as we are protected by the hash bucket lock !
1395 */
1396 if (unlikely(ownerdied || !(curval & FUTEX_TID_MASK))) {
bd197234 1397 /* Keep the OWNER_DIED bit */
778e9a9c
AK
1398 newval = (curval & ~FUTEX_TID_MASK) | current->pid;
1399 ownerdied = 0;
1400 lock_taken = 1;
1401 }
c87e2837 1402
a866374a 1403 pagefault_disable();
c87e2837 1404 curval = futex_atomic_cmpxchg_inatomic(uaddr, uval, newval);
a866374a 1405 pagefault_enable();
c87e2837
IM
1406
1407 if (unlikely(curval == -EFAULT))
1408 goto uaddr_faulted;
1409 if (unlikely(curval != uval))
1410 goto retry_locked;
1411
778e9a9c 1412 /*
bd197234 1413 * We took the lock due to owner died take over.
778e9a9c 1414 */
bd197234 1415 if (unlikely(lock_taken))
d0aa7a70 1416 goto out_unlock_release_sem;
d0aa7a70 1417
c87e2837
IM
1418 /*
1419 * We dont have the lock. Look up the PI state (or create it if
1420 * we are the first waiter):
1421 */
d0aa7a70 1422 ret = lookup_pi_state(uval, hb, &q.key, &q.pi_state);
c87e2837
IM
1423
1424 if (unlikely(ret)) {
778e9a9c 1425 switch (ret) {
c87e2837 1426
778e9a9c
AK
1427 case -EAGAIN:
1428 /*
1429 * Task is exiting and we just wait for the
1430 * exit to complete.
1431 */
1432 queue_unlock(&q, hb);
1433 if (fshared)
1434 up_read(fshared);
1435 cond_resched();
1436 goto retry;
c87e2837 1437
778e9a9c
AK
1438 case -ESRCH:
1439 /*
1440 * No owner found for this futex. Check if the
1441 * OWNER_DIED bit is set to figure out whether
1442 * this is a robust futex or not.
1443 */
1444 if (get_futex_value_locked(&curval, uaddr))
c87e2837 1445 goto uaddr_faulted;
778e9a9c
AK
1446
1447 /*
1448 * We simply start over in case of a robust
1449 * futex. The code above will take the futex
1450 * and return happy.
1451 */
1452 if (curval & FUTEX_OWNER_DIED) {
1453 ownerdied = 1;
c87e2837 1454 goto retry_locked;
778e9a9c
AK
1455 }
1456 default:
1457 goto out_unlock_release_sem;
c87e2837 1458 }
c87e2837
IM
1459 }
1460
1461 /*
1462 * Only actually queue now that the atomic ops are done:
1463 */
1464 __queue_me(&q, hb);
1465
1466 /*
1467 * Now the futex is queued and we have checked the data, we
1468 * don't want to hold mmap_sem while we sleep.
1469 */
34f01cc1
ED
1470 if (fshared)
1471 up_read(fshared);
c87e2837
IM
1472
1473 WARN_ON(!q.pi_state);
1474 /*
1475 * Block on the PI mutex:
1476 */
1477 if (!trylock)
1478 ret = rt_mutex_timed_lock(&q.pi_state->pi_mutex, to, 1);
1479 else {
1480 ret = rt_mutex_trylock(&q.pi_state->pi_mutex);
1481 /* Fixup the trylock return value: */
1482 ret = ret ? 0 : -EWOULDBLOCK;
1483 }
1484
34f01cc1
ED
1485 if (fshared)
1486 down_read(fshared);
a99e4e41 1487 spin_lock(q.lock_ptr);
c87e2837 1488
778e9a9c
AK
1489 if (!ret) {
1490 /*
1491 * Got the lock. We might not be the anticipated owner
1492 * if we did a lock-steal - fix up the PI-state in
1493 * that case:
1494 */
1495 if (q.pi_state->owner != curr)
1496 ret = fixup_pi_state_owner(uaddr, &q, curr);
1497 } else {
c87e2837
IM
1498 /*
1499 * Catch the rare case, where the lock was released
778e9a9c
AK
1500 * when we were on the way back before we locked the
1501 * hash bucket.
c87e2837 1502 */
778e9a9c
AK
1503 if (q.pi_state->owner == curr &&
1504 rt_mutex_trylock(&q.pi_state->pi_mutex)) {
1505 ret = 0;
1506 } else {
1507 /*
1508 * Paranoia check. If we did not take the lock
1509 * in the trylock above, then we should not be
1510 * the owner of the rtmutex, neither the real
1511 * nor the pending one:
1512 */
1513 if (rt_mutex_owner(&q.pi_state->pi_mutex) == curr)
1514 printk(KERN_ERR "futex_lock_pi: ret = %d "
1515 "pi-mutex: %p pi-state %p\n", ret,
1516 q.pi_state->pi_mutex.owner,
1517 q.pi_state->owner);
c87e2837 1518 }
c87e2837
IM
1519 }
1520
778e9a9c
AK
1521 /* Unqueue and drop the lock */
1522 unqueue_me_pi(&q);
1523 if (fshared)
1524 up_read(fshared);
c87e2837 1525
c5780e97 1526 return ret != -EINTR ? ret : -ERESTARTNOINTR;
c87e2837
IM
1527
1528 out_unlock_release_sem:
1529 queue_unlock(&q, hb);
1530
1531 out_release_sem:
34f01cc1
ED
1532 if (fshared)
1533 up_read(fshared);
c87e2837
IM
1534 return ret;
1535
1536 uaddr_faulted:
1537 /*
1538 * We have to r/w *(int __user *)uaddr, but we can't modify it
1539 * non-atomically. Therefore, if get_user below is not
1540 * enough, we need to handle the fault ourselves, while
1541 * still holding the mmap_sem.
778e9a9c
AK
1542 *
1543 * ... and hb->lock. :-) --ANK
c87e2837 1544 */
778e9a9c
AK
1545 queue_unlock(&q, hb);
1546
c87e2837 1547 if (attempt++) {
34f01cc1
ED
1548 ret = futex_handle_fault((unsigned long)uaddr, fshared,
1549 attempt);
1550 if (ret)
778e9a9c
AK
1551 goto out_release_sem;
1552 goto retry_unlocked;
c87e2837
IM
1553 }
1554
34f01cc1
ED
1555 if (fshared)
1556 up_read(fshared);
c87e2837
IM
1557
1558 ret = get_user(uval, uaddr);
1559 if (!ret && (uval != -EFAULT))
1560 goto retry;
1561
1562 return ret;
1563}
1564
c87e2837
IM
1565/*
1566 * Userspace attempted a TID -> 0 atomic transition, and failed.
1567 * This is the in-kernel slowpath: we look up the PI state (if any),
1568 * and do the rt-mutex unlock.
1569 */
34f01cc1 1570static int futex_unlock_pi(u32 __user *uaddr, struct rw_semaphore *fshared)
c87e2837
IM
1571{
1572 struct futex_hash_bucket *hb;
1573 struct futex_q *this, *next;
1574 u32 uval;
ec92d082 1575 struct plist_head *head;
c87e2837
IM
1576 union futex_key key;
1577 int ret, attempt = 0;
1578
1579retry:
1580 if (get_user(uval, uaddr))
1581 return -EFAULT;
1582 /*
1583 * We release only a lock we actually own:
1584 */
1585 if ((uval & FUTEX_TID_MASK) != current->pid)
1586 return -EPERM;
1587 /*
1588 * First take all the futex related locks:
1589 */
34f01cc1
ED
1590 if (fshared)
1591 down_read(fshared);
c87e2837 1592
34f01cc1 1593 ret = get_futex_key(uaddr, fshared, &key);
c87e2837
IM
1594 if (unlikely(ret != 0))
1595 goto out;
1596
1597 hb = hash_futex(&key);
778e9a9c 1598retry_unlocked:
c87e2837
IM
1599 spin_lock(&hb->lock);
1600
c87e2837
IM
1601 /*
1602 * To avoid races, try to do the TID -> 0 atomic transition
1603 * again. If it succeeds then we can return without waking
1604 * anyone else up:
1605 */
e3f2ddea 1606 if (!(uval & FUTEX_OWNER_DIED)) {
a866374a 1607 pagefault_disable();
e3f2ddea 1608 uval = futex_atomic_cmpxchg_inatomic(uaddr, current->pid, 0);
a866374a 1609 pagefault_enable();
e3f2ddea 1610 }
c87e2837
IM
1611
1612 if (unlikely(uval == -EFAULT))
1613 goto pi_faulted;
1614 /*
1615 * Rare case: we managed to release the lock atomically,
1616 * no need to wake anyone else up:
1617 */
1618 if (unlikely(uval == current->pid))
1619 goto out_unlock;
1620
1621 /*
1622 * Ok, other tasks may need to be woken up - check waiters
1623 * and do the wakeup if necessary:
1624 */
1625 head = &hb->chain;
1626
ec92d082 1627 plist_for_each_entry_safe(this, next, head, list) {
c87e2837
IM
1628 if (!match_futex (&this->key, &key))
1629 continue;
1630 ret = wake_futex_pi(uaddr, uval, this);
1631 /*
1632 * The atomic access to the futex value
1633 * generated a pagefault, so retry the
1634 * user-access and the wakeup:
1635 */
1636 if (ret == -EFAULT)
1637 goto pi_faulted;
1638 goto out_unlock;
1639 }
1640 /*
1641 * No waiters - kernel unlocks the futex:
1642 */
e3f2ddea
IM
1643 if (!(uval & FUTEX_OWNER_DIED)) {
1644 ret = unlock_futex_pi(uaddr, uval);
1645 if (ret == -EFAULT)
1646 goto pi_faulted;
1647 }
c87e2837
IM
1648
1649out_unlock:
1650 spin_unlock(&hb->lock);
1651out:
34f01cc1
ED
1652 if (fshared)
1653 up_read(fshared);
c87e2837
IM
1654
1655 return ret;
1656
1657pi_faulted:
1658 /*
1659 * We have to r/w *(int __user *)uaddr, but we can't modify it
1660 * non-atomically. Therefore, if get_user below is not
1661 * enough, we need to handle the fault ourselves, while
1662 * still holding the mmap_sem.
778e9a9c
AK
1663 *
1664 * ... and hb->lock. --ANK
c87e2837 1665 */
778e9a9c
AK
1666 spin_unlock(&hb->lock);
1667
c87e2837 1668 if (attempt++) {
34f01cc1
ED
1669 ret = futex_handle_fault((unsigned long)uaddr, fshared,
1670 attempt);
1671 if (ret)
778e9a9c
AK
1672 goto out;
1673 goto retry_unlocked;
c87e2837
IM
1674 }
1675
34f01cc1
ED
1676 if (fshared)
1677 up_read(fshared);
c87e2837
IM
1678
1679 ret = get_user(uval, uaddr);
1680 if (!ret && (uval != -EFAULT))
1681 goto retry;
1682
1da177e4
LT
1683 return ret;
1684}
1685
1686static int futex_close(struct inode *inode, struct file *filp)
1687{
1688 struct futex_q *q = filp->private_data;
1689
1690 unqueue_me(q);
1691 kfree(q);
e2970f2f 1692
1da177e4
LT
1693 return 0;
1694}
1695
1696/* This is one-shot: once it's gone off you need a new fd */
1697static unsigned int futex_poll(struct file *filp,
1698 struct poll_table_struct *wait)
1699{
1700 struct futex_q *q = filp->private_data;
1701 int ret = 0;
1702
1703 poll_wait(filp, &q->waiters, wait);
1704
1705 /*
ec92d082 1706 * plist_node_empty() is safe here without any lock.
1da177e4
LT
1707 * q->lock_ptr != 0 is not safe, because of ordering against wakeup.
1708 */
ec92d082 1709 if (plist_node_empty(&q->list))
1da177e4
LT
1710 ret = POLLIN | POLLRDNORM;
1711
1712 return ret;
1713}
1714
15ad7cdc 1715static const struct file_operations futex_fops = {
1da177e4
LT
1716 .release = futex_close,
1717 .poll = futex_poll,
1718};
1719
1720/*
1721 * Signal allows caller to avoid the race which would occur if they
1722 * set the sigio stuff up afterwards.
1723 */
e2970f2f 1724static int futex_fd(u32 __user *uaddr, int signal)
1da177e4
LT
1725{
1726 struct futex_q *q;
1727 struct file *filp;
1728 int ret, err;
34f01cc1 1729 struct rw_semaphore *fshared;
19c6b6ed
AM
1730 static unsigned long printk_interval;
1731
1732 if (printk_timed_ratelimit(&printk_interval, 60 * 60 * 1000)) {
1733 printk(KERN_WARNING "Process `%s' used FUTEX_FD, which "
1734 "will be removed from the kernel in June 2007\n",
1735 current->comm);
1736 }
1da177e4
LT
1737
1738 ret = -EINVAL;
7ed20e1a 1739 if (!valid_signal(signal))
1da177e4
LT
1740 goto out;
1741
1742 ret = get_unused_fd();
1743 if (ret < 0)
1744 goto out;
1745 filp = get_empty_filp();
1746 if (!filp) {
1747 put_unused_fd(ret);
1748 ret = -ENFILE;
1749 goto out;
1750 }
1751 filp->f_op = &futex_fops;
f3a43f3f
JJS
1752 filp->f_path.mnt = mntget(futex_mnt);
1753 filp->f_path.dentry = dget(futex_mnt->mnt_root);
1754 filp->f_mapping = filp->f_path.dentry->d_inode->i_mapping;
1da177e4
LT
1755
1756 if (signal) {
609d7fa9 1757 err = __f_setown(filp, task_pid(current), PIDTYPE_PID, 1);
1da177e4 1758 if (err < 0) {
39ed3fde 1759 goto error;
1da177e4
LT
1760 }
1761 filp->f_owner.signum = signal;
1762 }
1763
1764 q = kmalloc(sizeof(*q), GFP_KERNEL);
1765 if (!q) {
39ed3fde
PE
1766 err = -ENOMEM;
1767 goto error;
1da177e4 1768 }
c87e2837 1769 q->pi_state = NULL;
1da177e4 1770
34f01cc1
ED
1771 fshared = &current->mm->mmap_sem;
1772 down_read(fshared);
1773 err = get_futex_key(uaddr, fshared, &q->key);
1da177e4
LT
1774
1775 if (unlikely(err != 0)) {
34f01cc1 1776 up_read(fshared);
1da177e4 1777 kfree(q);
39ed3fde 1778 goto error;
1da177e4
LT
1779 }
1780
1781 /*
1782 * queue_me() must be called before releasing mmap_sem, because
1783 * key->shared.inode needs to be referenced while holding it.
1784 */
1785 filp->private_data = q;
1786
1787 queue_me(q, ret, filp);
34f01cc1 1788 up_read(fshared);
1da177e4
LT
1789
1790 /* Now we map fd to filp, so userspace can access it */
1791 fd_install(ret, filp);
1792out:
1793 return ret;
39ed3fde
PE
1794error:
1795 put_unused_fd(ret);
1796 put_filp(filp);
1797 ret = err;
1798 goto out;
1da177e4
LT
1799}
1800
0771dfef
IM
1801/*
1802 * Support for robust futexes: the kernel cleans up held futexes at
1803 * thread exit time.
1804 *
1805 * Implementation: user-space maintains a per-thread list of locks it
1806 * is holding. Upon do_exit(), the kernel carefully walks this list,
1807 * and marks all locks that are owned by this thread with the
c87e2837 1808 * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is
0771dfef
IM
1809 * always manipulated with the lock held, so the list is private and
1810 * per-thread. Userspace also maintains a per-thread 'list_op_pending'
1811 * field, to allow the kernel to clean up if the thread dies after
1812 * acquiring the lock, but just before it could have added itself to
1813 * the list. There can only be one such pending lock.
1814 */
1815
1816/**
1817 * sys_set_robust_list - set the robust-futex list head of a task
1818 * @head: pointer to the list-head
1819 * @len: length of the list-head, as userspace expects
1820 */
1821asmlinkage long
1822sys_set_robust_list(struct robust_list_head __user *head,
1823 size_t len)
1824{
1825 /*
1826 * The kernel knows only one size for now:
1827 */
1828 if (unlikely(len != sizeof(*head)))
1829 return -EINVAL;
1830
1831 current->robust_list = head;
1832
1833 return 0;
1834}
1835
1836/**
1837 * sys_get_robust_list - get the robust-futex list head of a task
1838 * @pid: pid of the process [zero for current task]
1839 * @head_ptr: pointer to a list-head pointer, the kernel fills it in
1840 * @len_ptr: pointer to a length field, the kernel fills in the header size
1841 */
1842asmlinkage long
ba46df98 1843sys_get_robust_list(int pid, struct robust_list_head __user * __user *head_ptr,
0771dfef
IM
1844 size_t __user *len_ptr)
1845{
ba46df98 1846 struct robust_list_head __user *head;
0771dfef
IM
1847 unsigned long ret;
1848
1849 if (!pid)
1850 head = current->robust_list;
1851 else {
1852 struct task_struct *p;
1853
1854 ret = -ESRCH;
aaa2a97e 1855 rcu_read_lock();
0771dfef
IM
1856 p = find_task_by_pid(pid);
1857 if (!p)
1858 goto err_unlock;
1859 ret = -EPERM;
1860 if ((current->euid != p->euid) && (current->euid != p->uid) &&
1861 !capable(CAP_SYS_PTRACE))
1862 goto err_unlock;
1863 head = p->robust_list;
aaa2a97e 1864 rcu_read_unlock();
0771dfef
IM
1865 }
1866
1867 if (put_user(sizeof(*head), len_ptr))
1868 return -EFAULT;
1869 return put_user(head, head_ptr);
1870
1871err_unlock:
aaa2a97e 1872 rcu_read_unlock();
0771dfef
IM
1873
1874 return ret;
1875}
1876
1877/*
1878 * Process a futex-list entry, check whether it's owned by the
1879 * dying task, and do notification if so:
1880 */
e3f2ddea 1881int handle_futex_death(u32 __user *uaddr, struct task_struct *curr, int pi)
0771dfef 1882{
e3f2ddea 1883 u32 uval, nval, mval;
0771dfef 1884
8f17d3a5
IM
1885retry:
1886 if (get_user(uval, uaddr))
0771dfef
IM
1887 return -1;
1888
8f17d3a5 1889 if ((uval & FUTEX_TID_MASK) == curr->pid) {
0771dfef
IM
1890 /*
1891 * Ok, this dying thread is truly holding a futex
1892 * of interest. Set the OWNER_DIED bit atomically
1893 * via cmpxchg, and if the value had FUTEX_WAITERS
1894 * set, wake up a waiter (if any). (We have to do a
1895 * futex_wake() even if OWNER_DIED is already set -
1896 * to handle the rare but possible case of recursive
1897 * thread-death.) The rest of the cleanup is done in
1898 * userspace.
1899 */
e3f2ddea
IM
1900 mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED;
1901 nval = futex_atomic_cmpxchg_inatomic(uaddr, uval, mval);
1902
c87e2837
IM
1903 if (nval == -EFAULT)
1904 return -1;
1905
1906 if (nval != uval)
8f17d3a5 1907 goto retry;
0771dfef 1908
e3f2ddea
IM
1909 /*
1910 * Wake robust non-PI futexes here. The wakeup of
1911 * PI futexes happens in exit_pi_state():
1912 */
1913 if (!pi) {
1914 if (uval & FUTEX_WAITERS)
34f01cc1 1915 futex_wake(uaddr, &curr->mm->mmap_sem, 1);
e3f2ddea 1916 }
0771dfef
IM
1917 }
1918 return 0;
1919}
1920
e3f2ddea
IM
1921/*
1922 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
1923 */
1924static inline int fetch_robust_entry(struct robust_list __user **entry,
ba46df98
AV
1925 struct robust_list __user * __user *head,
1926 int *pi)
e3f2ddea
IM
1927{
1928 unsigned long uentry;
1929
ba46df98 1930 if (get_user(uentry, (unsigned long __user *)head))
e3f2ddea
IM
1931 return -EFAULT;
1932
ba46df98 1933 *entry = (void __user *)(uentry & ~1UL);
e3f2ddea
IM
1934 *pi = uentry & 1;
1935
1936 return 0;
1937}
1938
0771dfef
IM
1939/*
1940 * Walk curr->robust_list (very carefully, it's a userspace list!)
1941 * and mark any locks found there dead, and notify any waiters.
1942 *
1943 * We silently return on any sign of list-walking problem.
1944 */
1945void exit_robust_list(struct task_struct *curr)
1946{
1947 struct robust_list_head __user *head = curr->robust_list;
1948 struct robust_list __user *entry, *pending;
e3f2ddea 1949 unsigned int limit = ROBUST_LIST_LIMIT, pi, pip;
0771dfef
IM
1950 unsigned long futex_offset;
1951
1952 /*
1953 * Fetch the list head (which was registered earlier, via
1954 * sys_set_robust_list()):
1955 */
e3f2ddea 1956 if (fetch_robust_entry(&entry, &head->list.next, &pi))
0771dfef
IM
1957 return;
1958 /*
1959 * Fetch the relative futex offset:
1960 */
1961 if (get_user(futex_offset, &head->futex_offset))
1962 return;
1963 /*
1964 * Fetch any possibly pending lock-add first, and handle it
1965 * if it exists:
1966 */
e3f2ddea 1967 if (fetch_robust_entry(&pending, &head->list_op_pending, &pip))
0771dfef 1968 return;
e3f2ddea 1969
0771dfef 1970 if (pending)
34f01cc1
ED
1971 handle_futex_death((void __user *)pending + futex_offset,
1972 curr, pip);
0771dfef
IM
1973
1974 while (entry != &head->list) {
1975 /*
1976 * A pending lock might already be on the list, so
c87e2837 1977 * don't process it twice:
0771dfef
IM
1978 */
1979 if (entry != pending)
ba46df98 1980 if (handle_futex_death((void __user *)entry + futex_offset,
e3f2ddea 1981 curr, pi))
0771dfef 1982 return;
0771dfef
IM
1983 /*
1984 * Fetch the next entry in the list:
1985 */
e3f2ddea 1986 if (fetch_robust_entry(&entry, &entry->next, &pi))
0771dfef
IM
1987 return;
1988 /*
1989 * Avoid excessively long or circular lists:
1990 */
1991 if (!--limit)
1992 break;
1993
1994 cond_resched();
1995 }
1996}
1997
c19384b5 1998long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout,
e2970f2f 1999 u32 __user *uaddr2, u32 val2, u32 val3)
1da177e4
LT
2000{
2001 int ret;
34f01cc1
ED
2002 int cmd = op & FUTEX_CMD_MASK;
2003 struct rw_semaphore *fshared = NULL;
2004
2005 if (!(op & FUTEX_PRIVATE_FLAG))
2006 fshared = &current->mm->mmap_sem;
1da177e4 2007
34f01cc1 2008 switch (cmd) {
1da177e4 2009 case FUTEX_WAIT:
34f01cc1 2010 ret = futex_wait(uaddr, fshared, val, timeout);
1da177e4
LT
2011 break;
2012 case FUTEX_WAKE:
34f01cc1 2013 ret = futex_wake(uaddr, fshared, val);
1da177e4
LT
2014 break;
2015 case FUTEX_FD:
2016 /* non-zero val means F_SETOWN(getpid()) & F_SETSIG(val) */
2017 ret = futex_fd(uaddr, val);
2018 break;
2019 case FUTEX_REQUEUE:
34f01cc1 2020 ret = futex_requeue(uaddr, fshared, uaddr2, val, val2, NULL);
1da177e4
LT
2021 break;
2022 case FUTEX_CMP_REQUEUE:
34f01cc1 2023 ret = futex_requeue(uaddr, fshared, uaddr2, val, val2, &val3);
1da177e4 2024 break;
4732efbe 2025 case FUTEX_WAKE_OP:
34f01cc1 2026 ret = futex_wake_op(uaddr, fshared, uaddr2, val, val2, val3);
4732efbe 2027 break;
c87e2837 2028 case FUTEX_LOCK_PI:
34f01cc1 2029 ret = futex_lock_pi(uaddr, fshared, val, timeout, 0);
c87e2837
IM
2030 break;
2031 case FUTEX_UNLOCK_PI:
34f01cc1 2032 ret = futex_unlock_pi(uaddr, fshared);
c87e2837
IM
2033 break;
2034 case FUTEX_TRYLOCK_PI:
34f01cc1 2035 ret = futex_lock_pi(uaddr, fshared, 0, timeout, 1);
c87e2837 2036 break;
1da177e4
LT
2037 default:
2038 ret = -ENOSYS;
2039 }
2040 return ret;
2041}
2042
2043
e2970f2f 2044asmlinkage long sys_futex(u32 __user *uaddr, int op, u32 val,
1da177e4 2045 struct timespec __user *utime, u32 __user *uaddr2,
e2970f2f 2046 u32 val3)
1da177e4 2047{
c19384b5
PP
2048 struct timespec ts;
2049 ktime_t t, *tp = NULL;
e2970f2f 2050 u32 val2 = 0;
34f01cc1 2051 int cmd = op & FUTEX_CMD_MASK;
1da177e4 2052
34f01cc1 2053 if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI)) {
c19384b5 2054 if (copy_from_user(&ts, utime, sizeof(ts)) != 0)
1da177e4 2055 return -EFAULT;
c19384b5 2056 if (!timespec_valid(&ts))
9741ef96 2057 return -EINVAL;
c19384b5
PP
2058
2059 t = timespec_to_ktime(ts);
34f01cc1 2060 if (cmd == FUTEX_WAIT)
c19384b5
PP
2061 t = ktime_add(ktime_get(), t);
2062 tp = &t;
1da177e4
LT
2063 }
2064 /*
34f01cc1 2065 * requeue parameter in 'utime' if cmd == FUTEX_REQUEUE.
1da177e4 2066 */
bd197234 2067 if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE)
e2970f2f 2068 val2 = (u32) (unsigned long) utime;
1da177e4 2069
c19384b5 2070 return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
1da177e4
LT
2071}
2072
454e2398
DH
2073static int futexfs_get_sb(struct file_system_type *fs_type,
2074 int flags, const char *dev_name, void *data,
2075 struct vfsmount *mnt)
1da177e4 2076{
454e2398 2077 return get_sb_pseudo(fs_type, "futex", NULL, 0xBAD1DEA, mnt);
1da177e4
LT
2078}
2079
2080static struct file_system_type futex_fs_type = {
2081 .name = "futexfs",
2082 .get_sb = futexfs_get_sb,
2083 .kill_sb = kill_anon_super,
2084};
2085
2086static int __init init(void)
2087{
95362fa9
AM
2088 int i = register_filesystem(&futex_fs_type);
2089
2090 if (i)
2091 return i;
1da177e4 2092
1da177e4 2093 futex_mnt = kern_mount(&futex_fs_type);
95362fa9
AM
2094 if (IS_ERR(futex_mnt)) {
2095 unregister_filesystem(&futex_fs_type);
2096 return PTR_ERR(futex_mnt);
2097 }
1da177e4
LT
2098
2099 for (i = 0; i < ARRAY_SIZE(futex_queues); i++) {
ec92d082 2100 plist_head_init(&futex_queues[i].chain, &futex_queues[i].lock);
1da177e4
LT
2101 spin_lock_init(&futex_queues[i].lock);
2102 }
2103 return 0;
2104}
2105__initcall(init);
This page took 0.764732 seconds and 4 git commands to generate.