blob: 600bc9d801f2834c5e56203ccb614527c6b0d421 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Fast Userspace Mutexes (which I call "Futexes!").
3 * (C) Rusty Russell, IBM 2002
4 *
5 * Generalized futexes, futex requeueing, misc fixes by Ingo Molnar
6 * (C) Copyright 2003 Red Hat Inc, All Rights Reserved
7 *
8 * Removed page pinning, fix privately mapped COW pages and other cleanups
9 * (C) Copyright 2003, 2004 Jamie Lokier
10 *
Ingo Molnar0771dfe2006-03-27 01:16:22 -080011 * Robust futex support started by Ingo Molnar
12 * (C) Copyright 2006 Red Hat Inc, All Rights Reserved
13 * Thanks to Thomas Gleixner for suggestions, analysis and fixes.
14 *
Ingo Molnarc87e2832006-06-27 02:54:58 -070015 * PI-futex support started by Ingo Molnar and Thomas Gleixner
16 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
17 * Copyright (C) 2006 Timesys Corp., Thomas Gleixner <tglx@timesys.com>
18 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * Thanks to Ben LaHaise for yelling "hashed waitqueues" loudly
20 * enough at me, Linus for the original (flawed) idea, Matthew
21 * Kirkwood for proof-of-concept implementation.
22 *
23 * "The futexes are also cursed."
24 * "But they come in a choice of three flavours!"
25 *
26 * This program is free software; you can redistribute it and/or modify
27 * it under the terms of the GNU General Public License as published by
28 * the Free Software Foundation; either version 2 of the License, or
29 * (at your option) any later version.
30 *
31 * This program is distributed in the hope that it will be useful,
32 * but WITHOUT ANY WARRANTY; without even the implied warranty of
33 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 * GNU General Public License for more details.
35 *
36 * You should have received a copy of the GNU General Public License
37 * along with this program; if not, write to the Free Software
38 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
39 */
40#include <linux/slab.h>
41#include <linux/poll.h>
42#include <linux/fs.h>
43#include <linux/file.h>
44#include <linux/jhash.h>
45#include <linux/init.h>
46#include <linux/futex.h>
47#include <linux/mount.h>
48#include <linux/pagemap.h>
49#include <linux/syscalls.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070050#include <linux/signal.h>
Rusty Russell9adef582007-05-08 00:26:42 -070051#include <linux/module.h>
Jakub Jelinek4732efb2005-09-06 15:16:25 -070052#include <asm/futex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Ingo Molnarc87e2832006-06-27 02:54:58 -070054#include "rtmutex_common.h"
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define FUTEX_HASHBITS (CONFIG_BASE_SMALL ? 4 : 8)
57
58/*
Ingo Molnarc87e2832006-06-27 02:54:58 -070059 * Priority Inheritance state:
60 */
61struct futex_pi_state {
62 /*
63 * list of 'owned' pi_state instances - these have to be
64 * cleaned up in do_exit() if the task exits prematurely:
65 */
66 struct list_head list;
67
68 /*
69 * The PI object:
70 */
71 struct rt_mutex pi_mutex;
72
73 struct task_struct *owner;
74 atomic_t refcount;
75
76 union futex_key key;
77};
78
79/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * We use this hashed waitqueue instead of a normal wait_queue_t, so
81 * we can wake only the relevant ones (hashed queues may be shared).
82 *
83 * A futex_q has a woken state, just like tasks have TASK_RUNNING.
84 * It is considered woken when list_empty(&q->list) || q->lock_ptr == 0.
85 * The order of wakup is always to make the first condition true, then
86 * wake up q->waiters, then make the second condition true.
87 */
88struct futex_q {
89 struct list_head list;
90 wait_queue_head_t waiters;
91
Ingo Molnare2970f22006-06-27 02:54:47 -070092 /* Which hash list lock to use: */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 spinlock_t *lock_ptr;
94
Ingo Molnare2970f22006-06-27 02:54:47 -070095 /* Key which the futex is hashed on: */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 union futex_key key;
97
Ingo Molnare2970f22006-06-27 02:54:47 -070098 /* For fd, sigio sent using these: */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 int fd;
100 struct file *filp;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700101
102 /* Optional priority inheritance state: */
103 struct futex_pi_state *pi_state;
104 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
107/*
108 * Split the global futex_lock into every hash list lock.
109 */
110struct futex_hash_bucket {
111 spinlock_t lock;
112 struct list_head chain;
113};
114
115static struct futex_hash_bucket futex_queues[1<<FUTEX_HASHBITS];
116
117/* Futex-fs vfsmount entry: */
118static struct vfsmount *futex_mnt;
119
120/*
121 * We hash on the keys returned from get_futex_key (see below).
122 */
123static struct futex_hash_bucket *hash_futex(union futex_key *key)
124{
125 u32 hash = jhash2((u32*)&key->both.word,
126 (sizeof(key->both.word)+sizeof(key->both.ptr))/4,
127 key->both.offset);
128 return &futex_queues[hash & ((1 << FUTEX_HASHBITS)-1)];
129}
130
131/*
132 * Return 1 if two futex_keys are equal, 0 otherwise.
133 */
134static inline int match_futex(union futex_key *key1, union futex_key *key2)
135{
136 return (key1->both.word == key2->both.word
137 && key1->both.ptr == key2->both.ptr
138 && key1->both.offset == key2->both.offset);
139}
140
141/*
142 * Get parameters which are the keys for a futex.
143 *
Josef "Jeff" Sipekf3a43f32006-12-08 02:36:43 -0800144 * For shared mappings, it's (page->index, vma->vm_file->f_path.dentry->d_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 * offset_within_page). For private mappings, it's (uaddr, current->mm).
146 * We can usually work out the index without swapping in the page.
147 *
148 * Returns: 0, or negative error code.
149 * The key words are stored in *key on success.
150 *
151 * Should be called with &current->mm->mmap_sem but NOT any spinlocks.
152 */
Rusty Russell9adef582007-05-08 00:26:42 -0700153int get_futex_key(u32 __user *uaddr, union futex_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Ingo Molnare2970f22006-06-27 02:54:47 -0700155 unsigned long address = (unsigned long)uaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 struct mm_struct *mm = current->mm;
157 struct vm_area_struct *vma;
158 struct page *page;
159 int err;
160
161 /*
162 * The futex address must be "naturally" aligned.
163 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700164 key->both.offset = address % PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (unlikely((key->both.offset % sizeof(u32)) != 0))
166 return -EINVAL;
Ingo Molnare2970f22006-06-27 02:54:47 -0700167 address -= key->both.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 /*
170 * The futex is hashed differently depending on whether
171 * it's in a shared or private mapping. So check vma first.
172 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700173 vma = find_extend_vma(mm, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (unlikely(!vma))
175 return -EFAULT;
176
177 /*
178 * Permissions.
179 */
180 if (unlikely((vma->vm_flags & (VM_IO|VM_READ)) != VM_READ))
181 return (vma->vm_flags & VM_IO) ? -EPERM : -EACCES;
182
183 /*
184 * Private mappings are handled in a simple way.
185 *
186 * NOTE: When userspace waits on a MAP_SHARED mapping, even if
187 * it's a read-only handle, it's expected that futexes attach to
188 * the object not the particular process. Therefore we use
189 * VM_MAYSHARE here, not VM_SHARED which is restricted to shared
190 * mappings of _writable_ handles.
191 */
192 if (likely(!(vma->vm_flags & VM_MAYSHARE))) {
193 key->private.mm = mm;
Ingo Molnare2970f22006-06-27 02:54:47 -0700194 key->private.address = address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return 0;
196 }
197
198 /*
199 * Linear file mappings are also simple.
200 */
Josef "Jeff" Sipekf3a43f32006-12-08 02:36:43 -0800201 key->shared.inode = vma->vm_file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 key->both.offset++; /* Bit 0 of offset indicates inode-based key. */
203 if (likely(!(vma->vm_flags & VM_NONLINEAR))) {
Ingo Molnare2970f22006-06-27 02:54:47 -0700204 key->shared.pgoff = (((address - vma->vm_start) >> PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 + vma->vm_pgoff);
206 return 0;
207 }
208
209 /*
210 * We could walk the page table to read the non-linear
211 * pte, and get the page index without fetching the page
212 * from swap. But that's a lot of code to duplicate here
213 * for a rare case, so we simply fetch the page.
214 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700215 err = get_user_pages(current, mm, address, 1, 0, 0, &page, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (err >= 0) {
217 key->shared.pgoff =
218 page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
219 put_page(page);
220 return 0;
221 }
222 return err;
223}
Rusty Russell9adef582007-05-08 00:26:42 -0700224EXPORT_SYMBOL_GPL(get_futex_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226/*
227 * Take a reference to the resource addressed by a key.
228 * Can be called while holding spinlocks.
229 *
230 * NOTE: mmap_sem MUST be held between get_futex_key() and calling this
231 * function, if it is called at all. mmap_sem keeps key->shared.inode valid.
232 */
Rusty Russell9adef582007-05-08 00:26:42 -0700233inline void get_futex_key_refs(union futex_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 if (key->both.ptr != 0) {
236 if (key->both.offset & 1)
237 atomic_inc(&key->shared.inode->i_count);
238 else
239 atomic_inc(&key->private.mm->mm_count);
240 }
241}
Rusty Russell9adef582007-05-08 00:26:42 -0700242EXPORT_SYMBOL_GPL(get_futex_key_refs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244/*
245 * Drop a reference to the resource addressed by a key.
246 * The hash bucket spinlock must not be held.
247 */
Rusty Russell9adef582007-05-08 00:26:42 -0700248void drop_futex_key_refs(union futex_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 if (key->both.ptr != 0) {
251 if (key->both.offset & 1)
252 iput(key->shared.inode);
253 else
254 mmdrop(key->private.mm);
255 }
256}
Rusty Russell9adef582007-05-08 00:26:42 -0700257EXPORT_SYMBOL_GPL(drop_futex_key_refs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Ingo Molnare2970f22006-06-27 02:54:47 -0700259static inline int get_futex_value_locked(u32 *dest, u32 __user *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
261 int ret;
262
Peter Zijlstraa8663742006-12-06 20:32:20 -0800263 pagefault_disable();
Ingo Molnare2970f22006-06-27 02:54:47 -0700264 ret = __copy_from_user_inatomic(dest, from, sizeof(u32));
Peter Zijlstraa8663742006-12-06 20:32:20 -0800265 pagefault_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 return ret ? -EFAULT : 0;
268}
269
270/*
Ingo Molnarc87e2832006-06-27 02:54:58 -0700271 * Fault handling. Called with current->mm->mmap_sem held.
272 */
273static int futex_handle_fault(unsigned long address, int attempt)
274{
275 struct vm_area_struct * vma;
276 struct mm_struct *mm = current->mm;
277
john stultze579dcb2006-08-13 23:24:24 -0700278 if (attempt > 2 || !(vma = find_vma(mm, address)) ||
Ingo Molnarc87e2832006-06-27 02:54:58 -0700279 vma->vm_start > address || !(vma->vm_flags & VM_WRITE))
280 return -EFAULT;
281
282 switch (handle_mm_fault(mm, vma, address, 1)) {
283 case VM_FAULT_MINOR:
284 current->min_flt++;
285 break;
286 case VM_FAULT_MAJOR:
287 current->maj_flt++;
288 break;
289 default:
290 return -EFAULT;
291 }
292 return 0;
293}
294
295/*
296 * PI code:
297 */
298static int refill_pi_state_cache(void)
299{
300 struct futex_pi_state *pi_state;
301
302 if (likely(current->pi_state_cache))
303 return 0;
304
Burman Yan4668edc2006-12-06 20:38:51 -0800305 pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700306
307 if (!pi_state)
308 return -ENOMEM;
309
Ingo Molnarc87e2832006-06-27 02:54:58 -0700310 INIT_LIST_HEAD(&pi_state->list);
311 /* pi_mutex gets initialized later */
312 pi_state->owner = NULL;
313 atomic_set(&pi_state->refcount, 1);
314
315 current->pi_state_cache = pi_state;
316
317 return 0;
318}
319
320static struct futex_pi_state * alloc_pi_state(void)
321{
322 struct futex_pi_state *pi_state = current->pi_state_cache;
323
324 WARN_ON(!pi_state);
325 current->pi_state_cache = NULL;
326
327 return pi_state;
328}
329
330static void free_pi_state(struct futex_pi_state *pi_state)
331{
332 if (!atomic_dec_and_test(&pi_state->refcount))
333 return;
334
335 /*
336 * If pi_state->owner is NULL, the owner is most probably dying
337 * and has cleaned up the pi_state already
338 */
339 if (pi_state->owner) {
340 spin_lock_irq(&pi_state->owner->pi_lock);
341 list_del_init(&pi_state->list);
342 spin_unlock_irq(&pi_state->owner->pi_lock);
343
344 rt_mutex_proxy_unlock(&pi_state->pi_mutex, pi_state->owner);
345 }
346
347 if (current->pi_state_cache)
348 kfree(pi_state);
349 else {
350 /*
351 * pi_state->list is already empty.
352 * clear pi_state->owner.
353 * refcount is at 0 - put it back to 1.
354 */
355 pi_state->owner = NULL;
356 atomic_set(&pi_state->refcount, 1);
357 current->pi_state_cache = pi_state;
358 }
359}
360
361/*
362 * Look up the task based on what TID userspace gave us.
363 * We dont trust it.
364 */
365static struct task_struct * futex_find_get_task(pid_t pid)
366{
367 struct task_struct *p;
368
Oleg Nesterovd359b542006-09-29 02:00:55 -0700369 rcu_read_lock();
Ingo Molnarc87e2832006-06-27 02:54:58 -0700370 p = find_task_by_pid(pid);
371 if (!p)
372 goto out_unlock;
373 if ((current->euid != p->euid) && (current->euid != p->uid)) {
374 p = NULL;
375 goto out_unlock;
376 }
Oleg Nesterovd015bae2006-08-27 01:23:40 -0700377 if (p->exit_state != 0) {
Ingo Molnarc87e2832006-06-27 02:54:58 -0700378 p = NULL;
379 goto out_unlock;
380 }
381 get_task_struct(p);
382out_unlock:
Oleg Nesterovd359b542006-09-29 02:00:55 -0700383 rcu_read_unlock();
Ingo Molnarc87e2832006-06-27 02:54:58 -0700384
385 return p;
386}
387
388/*
389 * This task is holding PI mutexes at exit time => bad.
390 * Kernel cleans up PI-state, but userspace is likely hosed.
391 * (Robust-futex cleanup is separate and might save the day for userspace.)
392 */
393void exit_pi_state_list(struct task_struct *curr)
394{
Ingo Molnarc87e2832006-06-27 02:54:58 -0700395 struct list_head *next, *head = &curr->pi_state_list;
396 struct futex_pi_state *pi_state;
Ingo Molnar627371d2006-07-29 05:16:20 +0200397 struct futex_hash_bucket *hb;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700398 union futex_key key;
399
400 /*
401 * We are a ZOMBIE and nobody can enqueue itself on
402 * pi_state_list anymore, but we have to be careful
Ingo Molnar627371d2006-07-29 05:16:20 +0200403 * versus waiters unqueueing themselves:
Ingo Molnarc87e2832006-06-27 02:54:58 -0700404 */
405 spin_lock_irq(&curr->pi_lock);
406 while (!list_empty(head)) {
407
408 next = head->next;
409 pi_state = list_entry(next, struct futex_pi_state, list);
410 key = pi_state->key;
Ingo Molnar627371d2006-07-29 05:16:20 +0200411 hb = hash_futex(&key);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700412 spin_unlock_irq(&curr->pi_lock);
413
Ingo Molnarc87e2832006-06-27 02:54:58 -0700414 spin_lock(&hb->lock);
415
416 spin_lock_irq(&curr->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +0200417 /*
418 * We dropped the pi-lock, so re-check whether this
419 * task still owns the PI-state:
420 */
Ingo Molnarc87e2832006-06-27 02:54:58 -0700421 if (head->next != next) {
422 spin_unlock(&hb->lock);
423 continue;
424 }
425
Ingo Molnarc87e2832006-06-27 02:54:58 -0700426 WARN_ON(pi_state->owner != curr);
Ingo Molnar627371d2006-07-29 05:16:20 +0200427 WARN_ON(list_empty(&pi_state->list));
428 list_del_init(&pi_state->list);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700429 pi_state->owner = NULL;
430 spin_unlock_irq(&curr->pi_lock);
431
432 rt_mutex_unlock(&pi_state->pi_mutex);
433
434 spin_unlock(&hb->lock);
435
436 spin_lock_irq(&curr->pi_lock);
437 }
438 spin_unlock_irq(&curr->pi_lock);
439}
440
441static int
442lookup_pi_state(u32 uval, struct futex_hash_bucket *hb, struct futex_q *me)
443{
444 struct futex_pi_state *pi_state = NULL;
445 struct futex_q *this, *next;
446 struct list_head *head;
447 struct task_struct *p;
448 pid_t pid;
449
450 head = &hb->chain;
451
452 list_for_each_entry_safe(this, next, head, list) {
Ingo Molnar627371d2006-07-29 05:16:20 +0200453 if (match_futex(&this->key, &me->key)) {
Ingo Molnarc87e2832006-06-27 02:54:58 -0700454 /*
455 * Another waiter already exists - bump up
456 * the refcount and return its pi_state:
457 */
458 pi_state = this->pi_state;
Thomas Gleixner06a9ec22006-07-10 04:44:30 -0700459 /*
460 * Userspace might have messed up non PI and PI futexes
461 */
462 if (unlikely(!pi_state))
463 return -EINVAL;
464
Ingo Molnar627371d2006-07-29 05:16:20 +0200465 WARN_ON(!atomic_read(&pi_state->refcount));
466
Ingo Molnarc87e2832006-06-27 02:54:58 -0700467 atomic_inc(&pi_state->refcount);
468 me->pi_state = pi_state;
469
470 return 0;
471 }
472 }
473
474 /*
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200475 * We are the first waiter - try to look up the real owner and attach
476 * the new pi_state to it, but bail out when the owner died bit is set
477 * and TID = 0:
Ingo Molnarc87e2832006-06-27 02:54:58 -0700478 */
479 pid = uval & FUTEX_TID_MASK;
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200480 if (!pid && (uval & FUTEX_OWNER_DIED))
481 return -ESRCH;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700482 p = futex_find_get_task(pid);
483 if (!p)
484 return -ESRCH;
485
486 pi_state = alloc_pi_state();
487
488 /*
489 * Initialize the pi_mutex in locked state and make 'p'
490 * the owner of it:
491 */
492 rt_mutex_init_proxy_locked(&pi_state->pi_mutex, p);
493
494 /* Store the key for possible exit cleanups: */
495 pi_state->key = me->key;
496
497 spin_lock_irq(&p->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +0200498 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -0700499 list_add(&pi_state->list, &p->pi_state_list);
500 pi_state->owner = p;
501 spin_unlock_irq(&p->pi_lock);
502
503 put_task_struct(p);
504
505 me->pi_state = pi_state;
506
507 return 0;
508}
509
510/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 * The hash bucket lock must be held when this is called.
512 * Afterwards, the futex_q must not be accessed.
513 */
514static void wake_futex(struct futex_q *q)
515{
516 list_del_init(&q->list);
517 if (q->filp)
518 send_sigio(&q->filp->f_owner, q->fd, POLL_IN);
519 /*
520 * The lock in wake_up_all() is a crucial memory barrier after the
521 * list_del_init() and also before assigning to q->lock_ptr.
522 */
523 wake_up_all(&q->waiters);
524 /*
525 * The waiting task can free the futex_q as soon as this is written,
526 * without taking any locks. This must come last.
Andrew Morton8e311082005-12-23 19:54:46 -0800527 *
528 * A memory barrier is required here to prevent the following store
529 * to lock_ptr from getting ahead of the wakeup. Clearing the lock
530 * at the end of wake_up_all() does not prevent this store from
531 * moving.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 */
Ralf Baechleccdea2f2006-12-06 20:40:26 -0800533 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 q->lock_ptr = NULL;
535}
536
Ingo Molnarc87e2832006-06-27 02:54:58 -0700537static int wake_futex_pi(u32 __user *uaddr, u32 uval, struct futex_q *this)
538{
539 struct task_struct *new_owner;
540 struct futex_pi_state *pi_state = this->pi_state;
541 u32 curval, newval;
542
543 if (!pi_state)
544 return -EINVAL;
545
Ingo Molnar217788672007-03-16 13:38:31 -0800546 spin_lock(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700547 new_owner = rt_mutex_next_owner(&pi_state->pi_mutex);
548
549 /*
550 * This happens when we have stolen the lock and the original
551 * pending owner did not enqueue itself back on the rt_mutex.
552 * Thats not a tragedy. We know that way, that a lock waiter
553 * is on the fly. We make the futex_q waiter the pending owner.
554 */
555 if (!new_owner)
556 new_owner = this->task;
557
558 /*
559 * We pass it to the next owner. (The WAITERS bit is always
560 * kept enabled while there is PI state around. We must also
561 * preserve the owner died bit.)
562 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200563 if (!(uval & FUTEX_OWNER_DIED)) {
564 newval = FUTEX_WAITERS | new_owner->pid;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700565
Peter Zijlstraa8663742006-12-06 20:32:20 -0800566 pagefault_disable();
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200567 curval = futex_atomic_cmpxchg_inatomic(uaddr, uval, newval);
Peter Zijlstraa8663742006-12-06 20:32:20 -0800568 pagefault_enable();
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200569 if (curval == -EFAULT)
570 return -EFAULT;
571 if (curval != uval)
572 return -EINVAL;
573 }
Ingo Molnarc87e2832006-06-27 02:54:58 -0700574
Ingo Molnar627371d2006-07-29 05:16:20 +0200575 spin_lock_irq(&pi_state->owner->pi_lock);
576 WARN_ON(list_empty(&pi_state->list));
577 list_del_init(&pi_state->list);
578 spin_unlock_irq(&pi_state->owner->pi_lock);
579
580 spin_lock_irq(&new_owner->pi_lock);
581 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -0700582 list_add(&pi_state->list, &new_owner->pi_state_list);
583 pi_state->owner = new_owner;
Ingo Molnar627371d2006-07-29 05:16:20 +0200584 spin_unlock_irq(&new_owner->pi_lock);
585
Ingo Molnar217788672007-03-16 13:38:31 -0800586 spin_unlock(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700587 rt_mutex_unlock(&pi_state->pi_mutex);
588
589 return 0;
590}
591
592static int unlock_futex_pi(u32 __user *uaddr, u32 uval)
593{
594 u32 oldval;
595
596 /*
597 * There is no waiter, so we unlock the futex. The owner died
598 * bit has not to be preserved here. We are the owner:
599 */
Peter Zijlstraa8663742006-12-06 20:32:20 -0800600 pagefault_disable();
Ingo Molnarc87e2832006-06-27 02:54:58 -0700601 oldval = futex_atomic_cmpxchg_inatomic(uaddr, uval, 0);
Peter Zijlstraa8663742006-12-06 20:32:20 -0800602 pagefault_enable();
Ingo Molnarc87e2832006-06-27 02:54:58 -0700603
604 if (oldval == -EFAULT)
605 return oldval;
606 if (oldval != uval)
607 return -EAGAIN;
608
609 return 0;
610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612/*
Ingo Molnar8b8f3192006-07-03 00:25:05 -0700613 * Express the locking dependencies for lockdep:
614 */
615static inline void
616double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
617{
618 if (hb1 <= hb2) {
619 spin_lock(&hb1->lock);
620 if (hb1 < hb2)
621 spin_lock_nested(&hb2->lock, SINGLE_DEPTH_NESTING);
622 } else { /* hb1 > hb2 */
623 spin_lock(&hb2->lock);
624 spin_lock_nested(&hb1->lock, SINGLE_DEPTH_NESTING);
625 }
626}
627
628/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 * Wake up all waiters hashed on the physical page that is mapped
630 * to this virtual address:
631 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700632static int futex_wake(u32 __user *uaddr, int nr_wake)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Ingo Molnare2970f22006-06-27 02:54:47 -0700634 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 struct futex_q *this, *next;
Ingo Molnare2970f22006-06-27 02:54:47 -0700636 struct list_head *head;
637 union futex_key key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 int ret;
639
640 down_read(&current->mm->mmap_sem);
641
642 ret = get_futex_key(uaddr, &key);
643 if (unlikely(ret != 0))
644 goto out;
645
Ingo Molnare2970f22006-06-27 02:54:47 -0700646 hb = hash_futex(&key);
647 spin_lock(&hb->lock);
648 head = &hb->chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 list_for_each_entry_safe(this, next, head, list) {
651 if (match_futex (&this->key, &key)) {
Ingo Molnared6f7b12006-07-01 04:35:46 -0700652 if (this->pi_state) {
653 ret = -EINVAL;
654 break;
655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 wake_futex(this);
657 if (++ret >= nr_wake)
658 break;
659 }
660 }
661
Ingo Molnare2970f22006-06-27 02:54:47 -0700662 spin_unlock(&hb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663out:
664 up_read(&current->mm->mmap_sem);
665 return ret;
666}
667
668/*
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700669 * Wake up all waiters hashed on the physical page that is mapped
670 * to this virtual address:
671 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700672static int
673futex_wake_op(u32 __user *uaddr1, u32 __user *uaddr2,
674 int nr_wake, int nr_wake2, int op)
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700675{
676 union futex_key key1, key2;
Ingo Molnare2970f22006-06-27 02:54:47 -0700677 struct futex_hash_bucket *hb1, *hb2;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700678 struct list_head *head;
679 struct futex_q *this, *next;
680 int ret, op_ret, attempt = 0;
681
682retryfull:
683 down_read(&current->mm->mmap_sem);
684
685 ret = get_futex_key(uaddr1, &key1);
686 if (unlikely(ret != 0))
687 goto out;
688 ret = get_futex_key(uaddr2, &key2);
689 if (unlikely(ret != 0))
690 goto out;
691
Ingo Molnare2970f22006-06-27 02:54:47 -0700692 hb1 = hash_futex(&key1);
693 hb2 = hash_futex(&key2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700694
695retry:
Ingo Molnar8b8f3192006-07-03 00:25:05 -0700696 double_lock_hb(hb1, hb2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700697
Ingo Molnare2970f22006-06-27 02:54:47 -0700698 op_ret = futex_atomic_op_inuser(op, uaddr2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700699 if (unlikely(op_ret < 0)) {
Ingo Molnare2970f22006-06-27 02:54:47 -0700700 u32 dummy;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700701
Ingo Molnare2970f22006-06-27 02:54:47 -0700702 spin_unlock(&hb1->lock);
703 if (hb1 != hb2)
704 spin_unlock(&hb2->lock);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700705
David Howells7ee1dd32006-01-06 00:11:44 -0800706#ifndef CONFIG_MMU
Ingo Molnare2970f22006-06-27 02:54:47 -0700707 /*
708 * we don't get EFAULT from MMU faults if we don't have an MMU,
709 * but we might get them from range checking
710 */
David Howells7ee1dd32006-01-06 00:11:44 -0800711 ret = op_ret;
712 goto out;
713#endif
714
David Gibson796f8d92005-11-07 00:59:33 -0800715 if (unlikely(op_ret != -EFAULT)) {
716 ret = op_ret;
717 goto out;
718 }
719
Ingo Molnare2970f22006-06-27 02:54:47 -0700720 /*
721 * futex_atomic_op_inuser needs to both read and write
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700722 * *(int __user *)uaddr2, but we can't modify it
723 * non-atomically. Therefore, if get_user below is not
724 * enough, we need to handle the fault ourselves, while
Ingo Molnare2970f22006-06-27 02:54:47 -0700725 * still holding the mmap_sem.
726 */
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700727 if (attempt++) {
Ingo Molnarc87e2832006-06-27 02:54:58 -0700728 if (futex_handle_fault((unsigned long)uaddr2,
john stultze579dcb2006-08-13 23:24:24 -0700729 attempt)) {
730 ret = -EFAULT;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700731 goto out;
john stultze579dcb2006-08-13 23:24:24 -0700732 }
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700733 goto retry;
734 }
735
Ingo Molnare2970f22006-06-27 02:54:47 -0700736 /*
737 * If we would have faulted, release mmap_sem,
738 * fault it in and start all over again.
739 */
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700740 up_read(&current->mm->mmap_sem);
741
Ingo Molnare2970f22006-06-27 02:54:47 -0700742 ret = get_user(dummy, uaddr2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700743 if (ret)
744 return ret;
745
746 goto retryfull;
747 }
748
Ingo Molnare2970f22006-06-27 02:54:47 -0700749 head = &hb1->chain;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700750
751 list_for_each_entry_safe(this, next, head, list) {
752 if (match_futex (&this->key, &key1)) {
753 wake_futex(this);
754 if (++ret >= nr_wake)
755 break;
756 }
757 }
758
759 if (op_ret > 0) {
Ingo Molnare2970f22006-06-27 02:54:47 -0700760 head = &hb2->chain;
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700761
762 op_ret = 0;
763 list_for_each_entry_safe(this, next, head, list) {
764 if (match_futex (&this->key, &key2)) {
765 wake_futex(this);
766 if (++op_ret >= nr_wake2)
767 break;
768 }
769 }
770 ret += op_ret;
771 }
772
Ingo Molnare2970f22006-06-27 02:54:47 -0700773 spin_unlock(&hb1->lock);
774 if (hb1 != hb2)
775 spin_unlock(&hb2->lock);
Jakub Jelinek4732efb2005-09-06 15:16:25 -0700776out:
777 up_read(&current->mm->mmap_sem);
778 return ret;
779}
780
781/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 * Requeue all waiters hashed on one physical page to another
783 * physical page.
784 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700785static int futex_requeue(u32 __user *uaddr1, u32 __user *uaddr2,
786 int nr_wake, int nr_requeue, u32 *cmpval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
788 union futex_key key1, key2;
Ingo Molnare2970f22006-06-27 02:54:47 -0700789 struct futex_hash_bucket *hb1, *hb2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 struct list_head *head1;
791 struct futex_q *this, *next;
792 int ret, drop_count = 0;
793
794 retry:
795 down_read(&current->mm->mmap_sem);
796
797 ret = get_futex_key(uaddr1, &key1);
798 if (unlikely(ret != 0))
799 goto out;
800 ret = get_futex_key(uaddr2, &key2);
801 if (unlikely(ret != 0))
802 goto out;
803
Ingo Molnare2970f22006-06-27 02:54:47 -0700804 hb1 = hash_futex(&key1);
805 hb2 = hash_futex(&key2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Ingo Molnar8b8f3192006-07-03 00:25:05 -0700807 double_lock_hb(hb1, hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Ingo Molnare2970f22006-06-27 02:54:47 -0700809 if (likely(cmpval != NULL)) {
810 u32 curval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Ingo Molnare2970f22006-06-27 02:54:47 -0700812 ret = get_futex_value_locked(&curval, uaddr1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 if (unlikely(ret)) {
Ingo Molnare2970f22006-06-27 02:54:47 -0700815 spin_unlock(&hb1->lock);
816 if (hb1 != hb2)
817 spin_unlock(&hb2->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Ingo Molnare2970f22006-06-27 02:54:47 -0700819 /*
820 * If we would have faulted, release mmap_sem, fault
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 * it in and start all over again.
822 */
823 up_read(&current->mm->mmap_sem);
824
Ingo Molnare2970f22006-06-27 02:54:47 -0700825 ret = get_user(curval, uaddr1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 if (!ret)
828 goto retry;
829
830 return ret;
831 }
Ingo Molnare2970f22006-06-27 02:54:47 -0700832 if (curval != *cmpval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 ret = -EAGAIN;
834 goto out_unlock;
835 }
836 }
837
Ingo Molnare2970f22006-06-27 02:54:47 -0700838 head1 = &hb1->chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 list_for_each_entry_safe(this, next, head1, list) {
840 if (!match_futex (&this->key, &key1))
841 continue;
842 if (++ret <= nr_wake) {
843 wake_futex(this);
844 } else {
Sebastien Dugue59e0e0a2006-06-27 02:55:03 -0700845 /*
846 * If key1 and key2 hash to the same bucket, no need to
847 * requeue.
848 */
849 if (likely(head1 != &hb2->chain)) {
850 list_move_tail(&this->list, &hb2->chain);
851 this->lock_ptr = &hb2->lock;
852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 this->key = key2;
Rusty Russell9adef582007-05-08 00:26:42 -0700854 get_futex_key_refs(&key2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 drop_count++;
856
857 if (ret - nr_wake >= nr_requeue)
858 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
860 }
861
862out_unlock:
Ingo Molnare2970f22006-06-27 02:54:47 -0700863 spin_unlock(&hb1->lock);
864 if (hb1 != hb2)
865 spin_unlock(&hb2->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Rusty Russell9adef582007-05-08 00:26:42 -0700867 /* drop_futex_key_refs() must be called outside the spinlocks. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 while (--drop_count >= 0)
Rusty Russell9adef582007-05-08 00:26:42 -0700869 drop_futex_key_refs(&key1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871out:
872 up_read(&current->mm->mmap_sem);
873 return ret;
874}
875
876/* The key must be already stored in q->key. */
877static inline struct futex_hash_bucket *
878queue_lock(struct futex_q *q, int fd, struct file *filp)
879{
Ingo Molnare2970f22006-06-27 02:54:47 -0700880 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 q->fd = fd;
883 q->filp = filp;
884
885 init_waitqueue_head(&q->waiters);
886
Rusty Russell9adef582007-05-08 00:26:42 -0700887 get_futex_key_refs(&q->key);
Ingo Molnare2970f22006-06-27 02:54:47 -0700888 hb = hash_futex(&q->key);
889 q->lock_ptr = &hb->lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Ingo Molnare2970f22006-06-27 02:54:47 -0700891 spin_lock(&hb->lock);
892 return hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893}
894
Ingo Molnare2970f22006-06-27 02:54:47 -0700895static inline void __queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Ingo Molnare2970f22006-06-27 02:54:47 -0700897 list_add_tail(&q->list, &hb->chain);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700898 q->task = current;
Ingo Molnare2970f22006-06-27 02:54:47 -0700899 spin_unlock(&hb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
902static inline void
Ingo Molnare2970f22006-06-27 02:54:47 -0700903queue_unlock(struct futex_q *q, struct futex_hash_bucket *hb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Ingo Molnare2970f22006-06-27 02:54:47 -0700905 spin_unlock(&hb->lock);
Rusty Russell9adef582007-05-08 00:26:42 -0700906 drop_futex_key_refs(&q->key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
909/*
910 * queue_me and unqueue_me must be called as a pair, each
911 * exactly once. They are called with the hashed spinlock held.
912 */
913
914/* The key must be already stored in q->key. */
915static void queue_me(struct futex_q *q, int fd, struct file *filp)
916{
Ingo Molnare2970f22006-06-27 02:54:47 -0700917 struct futex_hash_bucket *hb;
918
919 hb = queue_lock(q, fd, filp);
920 __queue_me(q, hb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
923/* Return 1 if we were still queued (ie. 0 means we were woken) */
924static int unqueue_me(struct futex_q *q)
925{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 spinlock_t *lock_ptr;
Ingo Molnare2970f22006-06-27 02:54:47 -0700927 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 /* In the common case we don't take the spinlock, which is nice. */
930 retry:
931 lock_ptr = q->lock_ptr;
Christian Borntraegere91467e2006-08-05 12:13:52 -0700932 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (lock_ptr != 0) {
934 spin_lock(lock_ptr);
935 /*
936 * q->lock_ptr can change between reading it and
937 * spin_lock(), causing us to take the wrong lock. This
938 * corrects the race condition.
939 *
940 * Reasoning goes like this: if we have the wrong lock,
941 * q->lock_ptr must have changed (maybe several times)
942 * between reading it and the spin_lock(). It can
943 * change again after the spin_lock() but only if it was
944 * already changed before the spin_lock(). It cannot,
945 * however, change back to the original value. Therefore
946 * we can detect whether we acquired the correct lock.
947 */
948 if (unlikely(lock_ptr != q->lock_ptr)) {
949 spin_unlock(lock_ptr);
950 goto retry;
951 }
952 WARN_ON(list_empty(&q->list));
953 list_del(&q->list);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700954
955 BUG_ON(q->pi_state);
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 spin_unlock(lock_ptr);
958 ret = 1;
959 }
960
Rusty Russell9adef582007-05-08 00:26:42 -0700961 drop_futex_key_refs(&q->key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return ret;
963}
964
Ingo Molnarc87e2832006-06-27 02:54:58 -0700965/*
966 * PI futexes can not be requeued and must remove themself from the
967 * hash bucket. The hash bucket lock is held on entry and dropped here.
968 */
969static void unqueue_me_pi(struct futex_q *q, struct futex_hash_bucket *hb)
970{
971 WARN_ON(list_empty(&q->list));
972 list_del(&q->list);
973
974 BUG_ON(!q->pi_state);
975 free_pi_state(q->pi_state);
976 q->pi_state = NULL;
977
978 spin_unlock(&hb->lock);
979
Rusty Russell9adef582007-05-08 00:26:42 -0700980 drop_futex_key_refs(&q->key);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700981}
982
Nick Piggin72c1bbf2007-05-08 00:26:43 -0700983static long futex_wait_restart(struct restart_block *restart);
984static int futex_wait_abstime(u32 __user *uaddr, u32 val,
985 int timed, unsigned long abs_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
Ingo Molnarc87e2832006-06-27 02:54:58 -0700987 struct task_struct *curr = current;
988 DECLARE_WAITQUEUE(wait, curr);
Ingo Molnare2970f22006-06-27 02:54:47 -0700989 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 struct futex_q q;
Nick Piggin72c1bbf2007-05-08 00:26:43 -0700991 unsigned long time_left = 0;
Ingo Molnare2970f22006-06-27 02:54:47 -0700992 u32 uval;
993 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Ingo Molnarc87e2832006-06-27 02:54:58 -0700995 q.pi_state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 retry:
Ingo Molnarc87e2832006-06-27 02:54:58 -0700997 down_read(&curr->mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 ret = get_futex_key(uaddr, &q.key);
1000 if (unlikely(ret != 0))
1001 goto out_release_sem;
1002
Ingo Molnare2970f22006-06-27 02:54:47 -07001003 hb = queue_lock(&q, -1, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 /*
1006 * Access the page AFTER the futex is queued.
1007 * Order is important:
1008 *
1009 * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
1010 * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); }
1011 *
1012 * The basic logical guarantee of a futex is that it blocks ONLY
1013 * if cond(var) is known to be true at the time of blocking, for
1014 * any cond. If we queued after testing *uaddr, that would open
1015 * a race condition where we could block indefinitely with
1016 * cond(var) false, which would violate the guarantee.
1017 *
1018 * A consequence is that futex_wait() can return zero and absorb
1019 * a wakeup when *uaddr != val on entry to the syscall. This is
1020 * rare, but normal.
1021 *
1022 * We hold the mmap semaphore, so the mapping cannot have changed
1023 * since we looked it up in get_futex_key.
1024 */
Ingo Molnare2970f22006-06-27 02:54:47 -07001025 ret = get_futex_value_locked(&uval, uaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 if (unlikely(ret)) {
Ingo Molnare2970f22006-06-27 02:54:47 -07001028 queue_unlock(&q, hb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Ingo Molnare2970f22006-06-27 02:54:47 -07001030 /*
1031 * If we would have faulted, release mmap_sem, fault it in and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 * start all over again.
1033 */
Ingo Molnarc87e2832006-06-27 02:54:58 -07001034 up_read(&curr->mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Ingo Molnare2970f22006-06-27 02:54:47 -07001036 ret = get_user(uval, uaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 if (!ret)
1039 goto retry;
1040 return ret;
1041 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001042 ret = -EWOULDBLOCK;
1043 if (uval != val)
1044 goto out_unlock_release_sem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046 /* Only actually queue if *uaddr contained val. */
Ingo Molnare2970f22006-06-27 02:54:47 -07001047 __queue_me(&q, hb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049 /*
1050 * Now the futex is queued and we have checked the data, we
1051 * don't want to hold mmap_sem while we sleep.
Ingo Molnarc87e2832006-06-27 02:54:58 -07001052 */
1053 up_read(&curr->mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 /*
1056 * There might have been scheduling since the queue_me(), as we
1057 * cannot hold a spinlock across the get_user() in case it
1058 * faults, and we cannot just set TASK_INTERRUPTIBLE state when
1059 * queueing ourselves into the futex hash. This code thus has to
1060 * rely on the futex_wake() code removing us from hash when it
1061 * wakes us up.
1062 */
1063
1064 /* add_wait_queue is the barrier after __set_current_state. */
1065 __set_current_state(TASK_INTERRUPTIBLE);
1066 add_wait_queue(&q.waiters, &wait);
1067 /*
1068 * !list_empty() is safe here without any lock.
1069 * q.lock_ptr != 0 is not safe, because of ordering against wakeup.
1070 */
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001071 time_left = 0;
1072 if (likely(!list_empty(&q.list))) {
1073 unsigned long rel_time;
1074
1075 if (timed) {
1076 unsigned long now = jiffies;
1077 if (time_after(now, abs_time))
1078 rel_time = 0;
1079 else
1080 rel_time = abs_time - now;
1081 } else
1082 rel_time = MAX_SCHEDULE_TIMEOUT;
1083
1084 time_left = schedule_timeout(rel_time);
1085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 __set_current_state(TASK_RUNNING);
1087
1088 /*
1089 * NOTE: we don't remove ourselves from the waitqueue because
1090 * we are the only user of it.
1091 */
1092
1093 /* If we were woken (and unqueued), we succeeded, whatever. */
1094 if (!unqueue_me(&q))
1095 return 0;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001096 if (time_left == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 return -ETIMEDOUT;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001098
Ingo Molnare2970f22006-06-27 02:54:47 -07001099 /*
1100 * We expect signal_pending(current), but another thread may
1101 * have handled it for us already.
1102 */
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001103 if (time_left == MAX_SCHEDULE_TIMEOUT)
1104 return -ERESTARTSYS;
1105 else {
1106 struct restart_block *restart;
1107 restart = &current_thread_info()->restart_block;
1108 restart->fn = futex_wait_restart;
1109 restart->arg0 = (unsigned long)uaddr;
1110 restart->arg1 = (unsigned long)val;
1111 restart->arg2 = (unsigned long)timed;
1112 restart->arg3 = abs_time;
1113 return -ERESTART_RESTARTBLOCK;
1114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Ingo Molnarc87e2832006-06-27 02:54:58 -07001116 out_unlock_release_sem:
1117 queue_unlock(&q, hb);
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 out_release_sem:
Ingo Molnarc87e2832006-06-27 02:54:58 -07001120 up_read(&curr->mm->mmap_sem);
1121 return ret;
1122}
1123
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001124static int futex_wait(u32 __user *uaddr, u32 val, unsigned long rel_time)
1125{
1126 int timed = (rel_time != MAX_SCHEDULE_TIMEOUT);
1127 return futex_wait_abstime(uaddr, val, timed, jiffies+rel_time);
1128}
1129
1130static long futex_wait_restart(struct restart_block *restart)
1131{
1132 u32 __user *uaddr = (u32 __user *)restart->arg0;
1133 u32 val = (u32)restart->arg1;
1134 int timed = (int)restart->arg2;
1135 unsigned long abs_time = restart->arg3;
1136
1137 restart->fn = do_no_restart_syscall;
1138 return (long)futex_wait_abstime(uaddr, val, timed, abs_time);
1139}
1140
1141
Ingo Molnarc87e2832006-06-27 02:54:58 -07001142/*
1143 * Userspace tried a 0 -> TID atomic transition of the futex value
1144 * and failed. The kernel side here does the whole locking operation:
1145 * if there are waiters then it will block, it does PI, etc. (Due to
1146 * races the kernel might see a 0 value of the futex too.)
1147 */
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001148static int futex_lock_pi(u32 __user *uaddr, int detect, unsigned long sec,
1149 long nsec, int trylock)
Ingo Molnarc87e2832006-06-27 02:54:58 -07001150{
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001151 struct hrtimer_sleeper timeout, *to = NULL;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001152 struct task_struct *curr = current;
1153 struct futex_hash_bucket *hb;
1154 u32 uval, newval, curval;
1155 struct futex_q q;
1156 int ret, attempt = 0;
1157
1158 if (refill_pi_state_cache())
1159 return -ENOMEM;
1160
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001161 if (sec != MAX_SCHEDULE_TIMEOUT) {
1162 to = &timeout;
Thomas Gleixnerc9cb2e32007-02-16 01:27:49 -08001163 hrtimer_init(&to->timer, CLOCK_REALTIME, HRTIMER_MODE_ABS);
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001164 hrtimer_init_sleeper(to, current);
1165 to->timer.expires = ktime_set(sec, nsec);
1166 }
1167
Ingo Molnarc87e2832006-06-27 02:54:58 -07001168 q.pi_state = NULL;
1169 retry:
1170 down_read(&curr->mm->mmap_sem);
1171
1172 ret = get_futex_key(uaddr, &q.key);
1173 if (unlikely(ret != 0))
1174 goto out_release_sem;
1175
1176 hb = queue_lock(&q, -1, NULL);
1177
1178 retry_locked:
1179 /*
1180 * To avoid races, we attempt to take the lock here again
1181 * (by doing a 0 -> TID atomic cmpxchg), while holding all
1182 * the locks. It will most likely not succeed.
1183 */
1184 newval = current->pid;
1185
Peter Zijlstraa8663742006-12-06 20:32:20 -08001186 pagefault_disable();
Ingo Molnarc87e2832006-06-27 02:54:58 -07001187 curval = futex_atomic_cmpxchg_inatomic(uaddr, 0, newval);
Peter Zijlstraa8663742006-12-06 20:32:20 -08001188 pagefault_enable();
Ingo Molnarc87e2832006-06-27 02:54:58 -07001189
1190 if (unlikely(curval == -EFAULT))
1191 goto uaddr_faulted;
1192
1193 /* We own the lock already */
1194 if (unlikely((curval & FUTEX_TID_MASK) == current->pid)) {
1195 if (!detect && 0)
1196 force_sig(SIGKILL, current);
1197 ret = -EDEADLK;
1198 goto out_unlock_release_sem;
1199 }
1200
1201 /*
1202 * Surprise - we got the lock. Just return
1203 * to userspace:
1204 */
1205 if (unlikely(!curval))
1206 goto out_unlock_release_sem;
1207
1208 uval = curval;
1209 newval = uval | FUTEX_WAITERS;
1210
Peter Zijlstraa8663742006-12-06 20:32:20 -08001211 pagefault_disable();
Ingo Molnarc87e2832006-06-27 02:54:58 -07001212 curval = futex_atomic_cmpxchg_inatomic(uaddr, uval, newval);
Peter Zijlstraa8663742006-12-06 20:32:20 -08001213 pagefault_enable();
Ingo Molnarc87e2832006-06-27 02:54:58 -07001214
1215 if (unlikely(curval == -EFAULT))
1216 goto uaddr_faulted;
1217 if (unlikely(curval != uval))
1218 goto retry_locked;
1219
1220 /*
1221 * We dont have the lock. Look up the PI state (or create it if
1222 * we are the first waiter):
1223 */
1224 ret = lookup_pi_state(uval, hb, &q);
1225
1226 if (unlikely(ret)) {
1227 /*
1228 * There were no waiters and the owner task lookup
1229 * failed. When the OWNER_DIED bit is set, then we
1230 * know that this is a robust futex and we actually
1231 * take the lock. This is safe as we are protected by
1232 * the hash bucket lock. We also set the waiters bit
1233 * unconditionally here, to simplify glibc handling of
1234 * multiple tasks racing to acquire the lock and
1235 * cleanup the problems which were left by the dead
1236 * owner.
1237 */
1238 if (curval & FUTEX_OWNER_DIED) {
1239 uval = newval;
1240 newval = current->pid |
1241 FUTEX_OWNER_DIED | FUTEX_WAITERS;
1242
Peter Zijlstraa8663742006-12-06 20:32:20 -08001243 pagefault_disable();
Ingo Molnarc87e2832006-06-27 02:54:58 -07001244 curval = futex_atomic_cmpxchg_inatomic(uaddr,
1245 uval, newval);
Peter Zijlstraa8663742006-12-06 20:32:20 -08001246 pagefault_enable();
Ingo Molnarc87e2832006-06-27 02:54:58 -07001247
1248 if (unlikely(curval == -EFAULT))
1249 goto uaddr_faulted;
1250 if (unlikely(curval != uval))
1251 goto retry_locked;
1252 ret = 0;
1253 }
1254 goto out_unlock_release_sem;
1255 }
1256
1257 /*
1258 * Only actually queue now that the atomic ops are done:
1259 */
1260 __queue_me(&q, hb);
1261
1262 /*
1263 * Now the futex is queued and we have checked the data, we
1264 * don't want to hold mmap_sem while we sleep.
1265 */
1266 up_read(&curr->mm->mmap_sem);
1267
1268 WARN_ON(!q.pi_state);
1269 /*
1270 * Block on the PI mutex:
1271 */
1272 if (!trylock)
1273 ret = rt_mutex_timed_lock(&q.pi_state->pi_mutex, to, 1);
1274 else {
1275 ret = rt_mutex_trylock(&q.pi_state->pi_mutex);
1276 /* Fixup the trylock return value: */
1277 ret = ret ? 0 : -EWOULDBLOCK;
1278 }
1279
1280 down_read(&curr->mm->mmap_sem);
Vernon Mauerya99e4e42006-07-01 04:35:42 -07001281 spin_lock(q.lock_ptr);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001282
1283 /*
1284 * Got the lock. We might not be the anticipated owner if we
1285 * did a lock-steal - fix up the PI-state in that case.
1286 */
1287 if (!ret && q.pi_state->owner != curr) {
1288 u32 newtid = current->pid | FUTEX_WAITERS;
1289
1290 /* Owner died? */
1291 if (q.pi_state->owner != NULL) {
1292 spin_lock_irq(&q.pi_state->owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001293 WARN_ON(list_empty(&q.pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -07001294 list_del_init(&q.pi_state->list);
1295 spin_unlock_irq(&q.pi_state->owner->pi_lock);
1296 } else
1297 newtid |= FUTEX_OWNER_DIED;
1298
1299 q.pi_state->owner = current;
1300
1301 spin_lock_irq(&current->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001302 WARN_ON(!list_empty(&q.pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -07001303 list_add(&q.pi_state->list, &current->pi_state_list);
1304 spin_unlock_irq(&current->pi_lock);
1305
1306 /* Unqueue and drop the lock */
1307 unqueue_me_pi(&q, hb);
1308 up_read(&curr->mm->mmap_sem);
1309 /*
1310 * We own it, so we have to replace the pending owner
1311 * TID. This must be atomic as we have preserve the
1312 * owner died bit here.
1313 */
1314 ret = get_user(uval, uaddr);
1315 while (!ret) {
1316 newval = (uval & FUTEX_OWNER_DIED) | newtid;
1317 curval = futex_atomic_cmpxchg_inatomic(uaddr,
1318 uval, newval);
1319 if (curval == -EFAULT)
1320 ret = -EFAULT;
1321 if (curval == uval)
1322 break;
1323 uval = curval;
1324 }
1325 } else {
1326 /*
1327 * Catch the rare case, where the lock was released
1328 * when we were on the way back before we locked
1329 * the hash bucket.
1330 */
1331 if (ret && q.pi_state->owner == curr) {
1332 if (rt_mutex_trylock(&q.pi_state->pi_mutex))
1333 ret = 0;
1334 }
1335 /* Unqueue and drop the lock */
1336 unqueue_me_pi(&q, hb);
1337 up_read(&curr->mm->mmap_sem);
1338 }
1339
1340 if (!detect && ret == -EDEADLK && 0)
1341 force_sig(SIGKILL, current);
1342
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001343 return ret != -EINTR ? ret : -ERESTARTNOINTR;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001344
1345 out_unlock_release_sem:
1346 queue_unlock(&q, hb);
1347
1348 out_release_sem:
1349 up_read(&curr->mm->mmap_sem);
1350 return ret;
1351
1352 uaddr_faulted:
1353 /*
1354 * We have to r/w *(int __user *)uaddr, but we can't modify it
1355 * non-atomically. Therefore, if get_user below is not
1356 * enough, we need to handle the fault ourselves, while
1357 * still holding the mmap_sem.
1358 */
1359 if (attempt++) {
john stultze579dcb2006-08-13 23:24:24 -07001360 if (futex_handle_fault((unsigned long)uaddr, attempt)) {
1361 ret = -EFAULT;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001362 goto out_unlock_release_sem;
john stultze579dcb2006-08-13 23:24:24 -07001363 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001364 goto retry_locked;
1365 }
1366
1367 queue_unlock(&q, hb);
1368 up_read(&curr->mm->mmap_sem);
1369
1370 ret = get_user(uval, uaddr);
1371 if (!ret && (uval != -EFAULT))
1372 goto retry;
1373
1374 return ret;
1375}
1376
1377/*
Ingo Molnarc87e2832006-06-27 02:54:58 -07001378 * Userspace attempted a TID -> 0 atomic transition, and failed.
1379 * This is the in-kernel slowpath: we look up the PI state (if any),
1380 * and do the rt-mutex unlock.
1381 */
1382static int futex_unlock_pi(u32 __user *uaddr)
1383{
1384 struct futex_hash_bucket *hb;
1385 struct futex_q *this, *next;
1386 u32 uval;
1387 struct list_head *head;
1388 union futex_key key;
1389 int ret, attempt = 0;
1390
1391retry:
1392 if (get_user(uval, uaddr))
1393 return -EFAULT;
1394 /*
1395 * We release only a lock we actually own:
1396 */
1397 if ((uval & FUTEX_TID_MASK) != current->pid)
1398 return -EPERM;
1399 /*
1400 * First take all the futex related locks:
1401 */
1402 down_read(&current->mm->mmap_sem);
1403
1404 ret = get_futex_key(uaddr, &key);
1405 if (unlikely(ret != 0))
1406 goto out;
1407
1408 hb = hash_futex(&key);
1409 spin_lock(&hb->lock);
1410
1411retry_locked:
1412 /*
1413 * To avoid races, try to do the TID -> 0 atomic transition
1414 * again. If it succeeds then we can return without waking
1415 * anyone else up:
1416 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001417 if (!(uval & FUTEX_OWNER_DIED)) {
Peter Zijlstraa8663742006-12-06 20:32:20 -08001418 pagefault_disable();
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001419 uval = futex_atomic_cmpxchg_inatomic(uaddr, current->pid, 0);
Peter Zijlstraa8663742006-12-06 20:32:20 -08001420 pagefault_enable();
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001421 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001422
1423 if (unlikely(uval == -EFAULT))
1424 goto pi_faulted;
1425 /*
1426 * Rare case: we managed to release the lock atomically,
1427 * no need to wake anyone else up:
1428 */
1429 if (unlikely(uval == current->pid))
1430 goto out_unlock;
1431
1432 /*
1433 * Ok, other tasks may need to be woken up - check waiters
1434 * and do the wakeup if necessary:
1435 */
1436 head = &hb->chain;
1437
1438 list_for_each_entry_safe(this, next, head, list) {
1439 if (!match_futex (&this->key, &key))
1440 continue;
1441 ret = wake_futex_pi(uaddr, uval, this);
1442 /*
1443 * The atomic access to the futex value
1444 * generated a pagefault, so retry the
1445 * user-access and the wakeup:
1446 */
1447 if (ret == -EFAULT)
1448 goto pi_faulted;
1449 goto out_unlock;
1450 }
1451 /*
1452 * No waiters - kernel unlocks the futex:
1453 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001454 if (!(uval & FUTEX_OWNER_DIED)) {
1455 ret = unlock_futex_pi(uaddr, uval);
1456 if (ret == -EFAULT)
1457 goto pi_faulted;
1458 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001459
1460out_unlock:
1461 spin_unlock(&hb->lock);
1462out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 up_read(&current->mm->mmap_sem);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001464
1465 return ret;
1466
1467pi_faulted:
1468 /*
1469 * We have to r/w *(int __user *)uaddr, but we can't modify it
1470 * non-atomically. Therefore, if get_user below is not
1471 * enough, we need to handle the fault ourselves, while
1472 * still holding the mmap_sem.
1473 */
1474 if (attempt++) {
john stultze579dcb2006-08-13 23:24:24 -07001475 if (futex_handle_fault((unsigned long)uaddr, attempt)) {
1476 ret = -EFAULT;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001477 goto out_unlock;
john stultze579dcb2006-08-13 23:24:24 -07001478 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001479 goto retry_locked;
1480 }
1481
1482 spin_unlock(&hb->lock);
1483 up_read(&current->mm->mmap_sem);
1484
1485 ret = get_user(uval, uaddr);
1486 if (!ret && (uval != -EFAULT))
1487 goto retry;
1488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 return ret;
1490}
1491
1492static int futex_close(struct inode *inode, struct file *filp)
1493{
1494 struct futex_q *q = filp->private_data;
1495
1496 unqueue_me(q);
1497 kfree(q);
Ingo Molnare2970f22006-06-27 02:54:47 -07001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 return 0;
1500}
1501
1502/* This is one-shot: once it's gone off you need a new fd */
1503static unsigned int futex_poll(struct file *filp,
1504 struct poll_table_struct *wait)
1505{
1506 struct futex_q *q = filp->private_data;
1507 int ret = 0;
1508
1509 poll_wait(filp, &q->waiters, wait);
1510
1511 /*
1512 * list_empty() is safe here without any lock.
1513 * q->lock_ptr != 0 is not safe, because of ordering against wakeup.
1514 */
1515 if (list_empty(&q->list))
1516 ret = POLLIN | POLLRDNORM;
1517
1518 return ret;
1519}
1520
Helge Deller15ad7cd2006-12-06 20:40:36 -08001521static const struct file_operations futex_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 .release = futex_close,
1523 .poll = futex_poll,
1524};
1525
1526/*
1527 * Signal allows caller to avoid the race which would occur if they
1528 * set the sigio stuff up afterwards.
1529 */
Ingo Molnare2970f22006-06-27 02:54:47 -07001530static int futex_fd(u32 __user *uaddr, int signal)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
1532 struct futex_q *q;
1533 struct file *filp;
1534 int ret, err;
Andrew Morton19c6b6e2006-11-02 22:07:17 -08001535 static unsigned long printk_interval;
1536
1537 if (printk_timed_ratelimit(&printk_interval, 60 * 60 * 1000)) {
1538 printk(KERN_WARNING "Process `%s' used FUTEX_FD, which "
1539 "will be removed from the kernel in June 2007\n",
1540 current->comm);
1541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
1543 ret = -EINVAL;
Jesper Juhl7ed20e12005-05-01 08:59:14 -07001544 if (!valid_signal(signal))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 goto out;
1546
1547 ret = get_unused_fd();
1548 if (ret < 0)
1549 goto out;
1550 filp = get_empty_filp();
1551 if (!filp) {
1552 put_unused_fd(ret);
1553 ret = -ENFILE;
1554 goto out;
1555 }
1556 filp->f_op = &futex_fops;
Josef "Jeff" Sipekf3a43f32006-12-08 02:36:43 -08001557 filp->f_path.mnt = mntget(futex_mnt);
1558 filp->f_path.dentry = dget(futex_mnt->mnt_root);
1559 filp->f_mapping = filp->f_path.dentry->d_inode->i_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 if (signal) {
Eric W. Biederman609d7fa2006-10-02 02:17:15 -07001562 err = __f_setown(filp, task_pid(current), PIDTYPE_PID, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (err < 0) {
Pekka Enberg39ed3fd2005-09-06 15:17:44 -07001564 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566 filp->f_owner.signum = signal;
1567 }
1568
1569 q = kmalloc(sizeof(*q), GFP_KERNEL);
1570 if (!q) {
Pekka Enberg39ed3fd2005-09-06 15:17:44 -07001571 err = -ENOMEM;
1572 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001574 q->pi_state = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 down_read(&current->mm->mmap_sem);
1577 err = get_futex_key(uaddr, &q->key);
1578
1579 if (unlikely(err != 0)) {
1580 up_read(&current->mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 kfree(q);
Pekka Enberg39ed3fd2005-09-06 15:17:44 -07001582 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 }
1584
1585 /*
1586 * queue_me() must be called before releasing mmap_sem, because
1587 * key->shared.inode needs to be referenced while holding it.
1588 */
1589 filp->private_data = q;
1590
1591 queue_me(q, ret, filp);
1592 up_read(&current->mm->mmap_sem);
1593
1594 /* Now we map fd to filp, so userspace can access it */
1595 fd_install(ret, filp);
1596out:
1597 return ret;
Pekka Enberg39ed3fd2005-09-06 15:17:44 -07001598error:
1599 put_unused_fd(ret);
1600 put_filp(filp);
1601 ret = err;
1602 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603}
1604
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001605/*
1606 * Support for robust futexes: the kernel cleans up held futexes at
1607 * thread exit time.
1608 *
1609 * Implementation: user-space maintains a per-thread list of locks it
1610 * is holding. Upon do_exit(), the kernel carefully walks this list,
1611 * and marks all locks that are owned by this thread with the
Ingo Molnarc87e2832006-06-27 02:54:58 -07001612 * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001613 * always manipulated with the lock held, so the list is private and
1614 * per-thread. Userspace also maintains a per-thread 'list_op_pending'
1615 * field, to allow the kernel to clean up if the thread dies after
1616 * acquiring the lock, but just before it could have added itself to
1617 * the list. There can only be one such pending lock.
1618 */
1619
1620/**
1621 * sys_set_robust_list - set the robust-futex list head of a task
1622 * @head: pointer to the list-head
1623 * @len: length of the list-head, as userspace expects
1624 */
1625asmlinkage long
1626sys_set_robust_list(struct robust_list_head __user *head,
1627 size_t len)
1628{
1629 /*
1630 * The kernel knows only one size for now:
1631 */
1632 if (unlikely(len != sizeof(*head)))
1633 return -EINVAL;
1634
1635 current->robust_list = head;
1636
1637 return 0;
1638}
1639
1640/**
1641 * sys_get_robust_list - get the robust-futex list head of a task
1642 * @pid: pid of the process [zero for current task]
1643 * @head_ptr: pointer to a list-head pointer, the kernel fills it in
1644 * @len_ptr: pointer to a length field, the kernel fills in the header size
1645 */
1646asmlinkage long
Al Viroba46df92006-10-10 22:46:07 +01001647sys_get_robust_list(int pid, struct robust_list_head __user * __user *head_ptr,
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001648 size_t __user *len_ptr)
1649{
Al Viroba46df92006-10-10 22:46:07 +01001650 struct robust_list_head __user *head;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001651 unsigned long ret;
1652
1653 if (!pid)
1654 head = current->robust_list;
1655 else {
1656 struct task_struct *p;
1657
1658 ret = -ESRCH;
Oleg Nesterovaaa2a972006-09-29 02:00:55 -07001659 rcu_read_lock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001660 p = find_task_by_pid(pid);
1661 if (!p)
1662 goto err_unlock;
1663 ret = -EPERM;
1664 if ((current->euid != p->euid) && (current->euid != p->uid) &&
1665 !capable(CAP_SYS_PTRACE))
1666 goto err_unlock;
1667 head = p->robust_list;
Oleg Nesterovaaa2a972006-09-29 02:00:55 -07001668 rcu_read_unlock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001669 }
1670
1671 if (put_user(sizeof(*head), len_ptr))
1672 return -EFAULT;
1673 return put_user(head, head_ptr);
1674
1675err_unlock:
Oleg Nesterovaaa2a972006-09-29 02:00:55 -07001676 rcu_read_unlock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001677
1678 return ret;
1679}
1680
1681/*
1682 * Process a futex-list entry, check whether it's owned by the
1683 * dying task, and do notification if so:
1684 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001685int handle_futex_death(u32 __user *uaddr, struct task_struct *curr, int pi)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001686{
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001687 u32 uval, nval, mval;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001688
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08001689retry:
1690 if (get_user(uval, uaddr))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001691 return -1;
1692
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08001693 if ((uval & FUTEX_TID_MASK) == curr->pid) {
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001694 /*
1695 * Ok, this dying thread is truly holding a futex
1696 * of interest. Set the OWNER_DIED bit atomically
1697 * via cmpxchg, and if the value had FUTEX_WAITERS
1698 * set, wake up a waiter (if any). (We have to do a
1699 * futex_wake() even if OWNER_DIED is already set -
1700 * to handle the rare but possible case of recursive
1701 * thread-death.) The rest of the cleanup is done in
1702 * userspace.
1703 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001704 mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED;
1705 nval = futex_atomic_cmpxchg_inatomic(uaddr, uval, mval);
1706
Ingo Molnarc87e2832006-06-27 02:54:58 -07001707 if (nval == -EFAULT)
1708 return -1;
1709
1710 if (nval != uval)
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08001711 goto retry;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001712
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001713 /*
1714 * Wake robust non-PI futexes here. The wakeup of
1715 * PI futexes happens in exit_pi_state():
1716 */
1717 if (!pi) {
1718 if (uval & FUTEX_WAITERS)
1719 futex_wake(uaddr, 1);
1720 }
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001721 }
1722 return 0;
1723}
1724
1725/*
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001726 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
1727 */
1728static inline int fetch_robust_entry(struct robust_list __user **entry,
Al Viroba46df92006-10-10 22:46:07 +01001729 struct robust_list __user * __user *head,
1730 int *pi)
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001731{
1732 unsigned long uentry;
1733
Al Viroba46df92006-10-10 22:46:07 +01001734 if (get_user(uentry, (unsigned long __user *)head))
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001735 return -EFAULT;
1736
Al Viroba46df92006-10-10 22:46:07 +01001737 *entry = (void __user *)(uentry & ~1UL);
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001738 *pi = uentry & 1;
1739
1740 return 0;
1741}
1742
1743/*
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001744 * Walk curr->robust_list (very carefully, it's a userspace list!)
1745 * and mark any locks found there dead, and notify any waiters.
1746 *
1747 * We silently return on any sign of list-walking problem.
1748 */
1749void exit_robust_list(struct task_struct *curr)
1750{
1751 struct robust_list_head __user *head = curr->robust_list;
1752 struct robust_list __user *entry, *pending;
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001753 unsigned int limit = ROBUST_LIST_LIMIT, pi, pip;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001754 unsigned long futex_offset;
1755
1756 /*
1757 * Fetch the list head (which was registered earlier, via
1758 * sys_set_robust_list()):
1759 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001760 if (fetch_robust_entry(&entry, &head->list.next, &pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001761 return;
1762 /*
1763 * Fetch the relative futex offset:
1764 */
1765 if (get_user(futex_offset, &head->futex_offset))
1766 return;
1767 /*
1768 * Fetch any possibly pending lock-add first, and handle it
1769 * if it exists:
1770 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001771 if (fetch_robust_entry(&pending, &head->list_op_pending, &pip))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001772 return;
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001773
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001774 if (pending)
Al Viroba46df92006-10-10 22:46:07 +01001775 handle_futex_death((void __user *)pending + futex_offset, curr, pip);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001776
1777 while (entry != &head->list) {
1778 /*
1779 * A pending lock might already be on the list, so
Ingo Molnarc87e2832006-06-27 02:54:58 -07001780 * don't process it twice:
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001781 */
1782 if (entry != pending)
Al Viroba46df92006-10-10 22:46:07 +01001783 if (handle_futex_death((void __user *)entry + futex_offset,
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001784 curr, pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001785 return;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001786 /*
1787 * Fetch the next entry in the list:
1788 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001789 if (fetch_robust_entry(&entry, &entry->next, &pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08001790 return;
1791 /*
1792 * Avoid excessively long or circular lists:
1793 */
1794 if (!--limit)
1795 break;
1796
1797 cond_resched();
1798 }
1799}
1800
Ingo Molnare2970f22006-06-27 02:54:47 -07001801long do_futex(u32 __user *uaddr, int op, u32 val, unsigned long timeout,
1802 u32 __user *uaddr2, u32 val2, u32 val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
1804 int ret;
1805
1806 switch (op) {
1807 case FUTEX_WAIT:
1808 ret = futex_wait(uaddr, val, timeout);
1809 break;
1810 case FUTEX_WAKE:
1811 ret = futex_wake(uaddr, val);
1812 break;
1813 case FUTEX_FD:
1814 /* non-zero val means F_SETOWN(getpid()) & F_SETSIG(val) */
1815 ret = futex_fd(uaddr, val);
1816 break;
1817 case FUTEX_REQUEUE:
1818 ret = futex_requeue(uaddr, uaddr2, val, val2, NULL);
1819 break;
1820 case FUTEX_CMP_REQUEUE:
1821 ret = futex_requeue(uaddr, uaddr2, val, val2, &val3);
1822 break;
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001823 case FUTEX_WAKE_OP:
1824 ret = futex_wake_op(uaddr, uaddr2, val, val2, val3);
1825 break;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001826 case FUTEX_LOCK_PI:
1827 ret = futex_lock_pi(uaddr, val, timeout, val2, 0);
1828 break;
1829 case FUTEX_UNLOCK_PI:
1830 ret = futex_unlock_pi(uaddr);
1831 break;
1832 case FUTEX_TRYLOCK_PI:
1833 ret = futex_lock_pi(uaddr, 0, timeout, val2, 1);
1834 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 default:
1836 ret = -ENOSYS;
1837 }
1838 return ret;
1839}
1840
1841
Ingo Molnare2970f22006-06-27 02:54:47 -07001842asmlinkage long sys_futex(u32 __user *uaddr, int op, u32 val,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 struct timespec __user *utime, u32 __user *uaddr2,
Ingo Molnare2970f22006-06-27 02:54:47 -07001844 u32 val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845{
1846 struct timespec t;
1847 unsigned long timeout = MAX_SCHEDULE_TIMEOUT;
Ingo Molnare2970f22006-06-27 02:54:47 -07001848 u32 val2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Ingo Molnarc87e2832006-06-27 02:54:58 -07001850 if (utime && (op == FUTEX_WAIT || op == FUTEX_LOCK_PI)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 if (copy_from_user(&t, utime, sizeof(t)) != 0)
1852 return -EFAULT;
Thomas Gleixner9741ef92006-03-31 02:31:32 -08001853 if (!timespec_valid(&t))
1854 return -EINVAL;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001855 if (op == FUTEX_WAIT)
1856 timeout = timespec_to_jiffies(&t) + 1;
1857 else {
1858 timeout = t.tv_sec;
1859 val2 = t.tv_nsec;
1860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 }
1862 /*
1863 * requeue parameter in 'utime' if op == FUTEX_REQUEUE.
1864 */
Ingo Molnarc87e2832006-06-27 02:54:58 -07001865 if (op == FUTEX_REQUEUE || op == FUTEX_CMP_REQUEUE)
Ingo Molnare2970f22006-06-27 02:54:47 -07001866 val2 = (u32) (unsigned long) utime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Ingo Molnare2970f22006-06-27 02:54:47 -07001868 return do_futex(uaddr, op, val, timeout, uaddr2, val2, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869}
1870
David Howells454e2392006-06-23 02:02:57 -07001871static int futexfs_get_sb(struct file_system_type *fs_type,
1872 int flags, const char *dev_name, void *data,
1873 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
David Howells454e2392006-06-23 02:02:57 -07001875 return get_sb_pseudo(fs_type, "futex", NULL, 0xBAD1DEA, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876}
1877
1878static struct file_system_type futex_fs_type = {
1879 .name = "futexfs",
1880 .get_sb = futexfs_get_sb,
1881 .kill_sb = kill_anon_super,
1882};
1883
1884static int __init init(void)
1885{
Akinobu Mita95362fa2006-12-06 20:39:03 -08001886 int i = register_filesystem(&futex_fs_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Akinobu Mita95362fa2006-12-06 20:39:03 -08001888 if (i)
1889 return i;
1890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 futex_mnt = kern_mount(&futex_fs_type);
Akinobu Mita95362fa2006-12-06 20:39:03 -08001892 if (IS_ERR(futex_mnt)) {
1893 unregister_filesystem(&futex_fs_type);
1894 return PTR_ERR(futex_mnt);
1895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897 for (i = 0; i < ARRAY_SIZE(futex_queues); i++) {
1898 INIT_LIST_HEAD(&futex_queues[i].chain);
1899 spin_lock_init(&futex_queues[i].lock);
1900 }
1901 return 0;
1902}
1903__initcall(init);