blob: 577481d5c59d27000723e1591e8f4696dca8afb8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Fast Userspace Mutexes (which I call "Futexes!").
3 * (C) Rusty Russell, IBM 2002
4 *
5 * Generalized futexes, futex requeueing, misc fixes by Ingo Molnar
6 * (C) Copyright 2003 Red Hat Inc, All Rights Reserved
7 *
8 * Removed page pinning, fix privately mapped COW pages and other cleanups
9 * (C) Copyright 2003, 2004 Jamie Lokier
10 *
Ingo Molnar0771dfe2006-03-27 01:16:22 -080011 * Robust futex support started by Ingo Molnar
12 * (C) Copyright 2006 Red Hat Inc, All Rights Reserved
13 * Thanks to Thomas Gleixner for suggestions, analysis and fixes.
14 *
Ingo Molnarc87e2832006-06-27 02:54:58 -070015 * PI-futex support started by Ingo Molnar and Thomas Gleixner
16 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
17 * Copyright (C) 2006 Timesys Corp., Thomas Gleixner <tglx@timesys.com>
18 *
Eric Dumazet34f01cc2007-05-09 02:35:04 -070019 * PRIVATE futexes by Eric Dumazet
20 * Copyright (C) 2007 Eric Dumazet <dada1@cosmosbay.com>
21 *
Darren Hart52400ba2009-04-03 13:40:49 -070022 * Requeue-PI support by Darren Hart <dvhltc@us.ibm.com>
23 * Copyright (C) IBM Corporation, 2009
24 * Thanks to Thomas Gleixner for conceptual design and careful reviews.
25 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 * Thanks to Ben LaHaise for yelling "hashed waitqueues" loudly
27 * enough at me, Linus for the original (flawed) idea, Matthew
28 * Kirkwood for proof-of-concept implementation.
29 *
30 * "The futexes are also cursed."
31 * "But they come in a choice of three flavours!"
32 *
33 * This program is free software; you can redistribute it and/or modify
34 * it under the terms of the GNU General Public License as published by
35 * the Free Software Foundation; either version 2 of the License, or
36 * (at your option) any later version.
37 *
38 * This program is distributed in the hope that it will be useful,
39 * but WITHOUT ANY WARRANTY; without even the implied warranty of
40 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 * GNU General Public License for more details.
42 *
43 * You should have received a copy of the GNU General Public License
44 * along with this program; if not, write to the Free Software
45 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
46 */
47#include <linux/slab.h>
48#include <linux/poll.h>
49#include <linux/fs.h>
50#include <linux/file.h>
51#include <linux/jhash.h>
52#include <linux/init.h>
53#include <linux/futex.h>
54#include <linux/mount.h>
55#include <linux/pagemap.h>
56#include <linux/syscalls.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070057#include <linux/signal.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040058#include <linux/export.h>
Andrey Mirkinfd5eea42007-10-16 23:30:13 -070059#include <linux/magic.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070060#include <linux/pid.h>
61#include <linux/nsproxy.h>
Kees Cookbdbb7762012-03-19 16:12:53 -070062#include <linux/ptrace.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060063#include <linux/sched/rt.h>
Zhang Yi13d60f42013-06-25 21:19:31 +080064#include <linux/hugetlb.h>
Colin Cross88c80042013-05-01 18:35:05 -070065#include <linux/freezer.h>
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -080066#include <linux/bootmem.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070067
Jakub Jelinek4732efb2005-09-06 15:16:25 -070068#include <asm/futex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Peter Zijlstra1696a8b2013-10-31 18:18:19 +010070#include "locking/rtmutex_common.h"
Ingo Molnarc87e2832006-06-27 02:54:58 -070071
Thomas Gleixnera0c1e902008-02-23 15:23:57 -080072int __read_mostly futex_cmpxchg_enabled;
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/*
Darren Hartb41277d2010-11-08 13:10:09 -080075 * Futex flags used to encode options to functions and preserve them across
76 * restarts.
77 */
78#define FLAGS_SHARED 0x01
79#define FLAGS_CLOCKRT 0x02
80#define FLAGS_HAS_TIMEOUT 0x04
81
82/*
Ingo Molnarc87e2832006-06-27 02:54:58 -070083 * Priority Inheritance state:
84 */
85struct futex_pi_state {
86 /*
87 * list of 'owned' pi_state instances - these have to be
88 * cleaned up in do_exit() if the task exits prematurely:
89 */
90 struct list_head list;
91
92 /*
93 * The PI object:
94 */
95 struct rt_mutex pi_mutex;
96
97 struct task_struct *owner;
98 atomic_t refcount;
99
100 union futex_key key;
101};
102
Darren Hartd8d88fb2009-09-21 22:30:30 -0700103/**
104 * struct futex_q - The hashed futex queue entry, one per waiting task
Randy Dunlapfb62db22010-10-13 11:02:34 -0700105 * @list: priority-sorted list of tasks waiting on this futex
Darren Hartd8d88fb2009-09-21 22:30:30 -0700106 * @task: the task waiting on the futex
107 * @lock_ptr: the hash bucket lock
108 * @key: the key the futex is hashed on
109 * @pi_state: optional priority inheritance state
110 * @rt_waiter: rt_waiter storage for use with requeue_pi
111 * @requeue_pi_key: the requeue_pi target futex key
112 * @bitset: bitset for the optional bitmasked wakeup
113 *
114 * We use this hashed waitqueue, instead of a normal wait_queue_t, so
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * we can wake only the relevant ones (hashed queues may be shared).
116 *
117 * A futex_q has a woken state, just like tasks have TASK_RUNNING.
Pierre Peifferec92d082007-05-09 02:35:00 -0700118 * It is considered woken when plist_node_empty(&q->list) || q->lock_ptr == 0.
Randy Dunlapfb62db22010-10-13 11:02:34 -0700119 * The order of wakeup is always to make the first condition true, then
Darren Hartd8d88fb2009-09-21 22:30:30 -0700120 * the second.
121 *
122 * PI futexes are typically woken before they are removed from the hash list via
123 * the rt_mutex code. See unqueue_me_pi().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 */
125struct futex_q {
Pierre Peifferec92d082007-05-09 02:35:00 -0700126 struct plist_node list;
Darren Hartd8d88fb2009-09-21 22:30:30 -0700127
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +0200128 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 spinlock_t *lock_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 union futex_key key;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700131 struct futex_pi_state *pi_state;
Darren Hart52400ba2009-04-03 13:40:49 -0700132 struct rt_mutex_waiter *rt_waiter;
Darren Hart84bc4af2009-08-13 17:36:53 -0700133 union futex_key *requeue_pi_key;
Thomas Gleixnercd689982008-02-01 17:45:14 +0100134 u32 bitset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
Darren Hart5bdb05f2010-11-08 13:40:28 -0800137static const struct futex_q futex_q_init = {
138 /* list gets initialized in queue_me()*/
139 .key = FUTEX_KEY_INIT,
140 .bitset = FUTEX_BITSET_MATCH_ANY
141};
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/*
Darren Hartb2d09942009-03-12 00:55:37 -0700144 * Hash buckets are shared by all the futex_keys that hash to the same
145 * location. Each key may have multiple futex_q structures, one for each task
146 * waiting on a futex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 */
148struct futex_hash_bucket {
Pierre Peifferec92d082007-05-09 02:35:00 -0700149 spinlock_t lock;
150 struct plist_head chain;
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -0800151} ____cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -0800153static unsigned long __read_mostly futex_hashsize;
154
155static struct futex_hash_bucket *futex_queues;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/*
158 * We hash on the keys returned from get_futex_key (see below).
159 */
160static struct futex_hash_bucket *hash_futex(union futex_key *key)
161{
162 u32 hash = jhash2((u32*)&key->both.word,
163 (sizeof(key->both.word)+sizeof(key->both.ptr))/4,
164 key->both.offset);
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -0800165 return &futex_queues[hash & (futex_hashsize - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
168/*
169 * Return 1 if two futex_keys are equal, 0 otherwise.
170 */
171static inline int match_futex(union futex_key *key1, union futex_key *key2)
172{
Darren Hart2bc87202009-10-14 10:12:39 -0700173 return (key1 && key2
174 && key1->both.word == key2->both.word
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 && key1->both.ptr == key2->both.ptr
176 && key1->both.offset == key2->both.offset);
177}
178
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200179/*
180 * Take a reference to the resource addressed by a key.
181 * Can be called while holding spinlocks.
182 *
183 */
184static void get_futex_key_refs(union futex_key *key)
185{
186 if (!key->both.ptr)
187 return;
188
189 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
190 case FUT_OFF_INODE:
Al Viro7de9c6ee2010-10-23 11:11:40 -0400191 ihold(key->shared.inode);
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200192 break;
193 case FUT_OFF_MMSHARED:
194 atomic_inc(&key->private.mm->mm_count);
195 break;
196 }
197}
198
199/*
200 * Drop a reference to the resource addressed by a key.
201 * The hash bucket spinlock must not be held.
202 */
203static void drop_futex_key_refs(union futex_key *key)
204{
Darren Hart90621c42008-12-29 19:43:21 -0800205 if (!key->both.ptr) {
206 /* If we're here then we tried to put a key we failed to get */
207 WARN_ON_ONCE(1);
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200208 return;
Darren Hart90621c42008-12-29 19:43:21 -0800209 }
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200210
211 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
212 case FUT_OFF_INODE:
213 iput(key->shared.inode);
214 break;
215 case FUT_OFF_MMSHARED:
216 mmdrop(key->private.mm);
217 break;
218 }
219}
220
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700221/**
Darren Hartd96ee562009-09-21 22:30:22 -0700222 * get_futex_key() - Get parameters which are the keys for a futex
223 * @uaddr: virtual address of the futex
224 * @fshared: 0 for a PROCESS_PRIVATE futex, 1 for PROCESS_SHARED
225 * @key: address where result is stored.
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500226 * @rw: mapping needs to be read/write (values: VERIFY_READ,
227 * VERIFY_WRITE)
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700228 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -0800229 * Return: a negative error code or 0
230 *
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700231 * The key words are stored in *key on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 *
Al Viro6131ffa2013-02-27 16:59:05 -0500233 * For shared mappings, it's (page->index, file_inode(vma->vm_file),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 * offset_within_page). For private mappings, it's (uaddr, current->mm).
235 * We can usually work out the index without swapping in the page.
236 *
Darren Hartb2d09942009-03-12 00:55:37 -0700237 * lock_page() might sleep, the caller should not hold a spinlock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 */
Thomas Gleixner64d13042009-05-18 21:20:10 +0200239static int
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500240get_futex_key(u32 __user *uaddr, int fshared, union futex_key *key, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Ingo Molnare2970f22006-06-27 02:54:47 -0700242 unsigned long address = (unsigned long)uaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 struct mm_struct *mm = current->mm;
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800244 struct page *page, *page_head;
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500245 int err, ro = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 /*
248 * The futex address must be "naturally" aligned.
249 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700250 key->both.offset = address % PAGE_SIZE;
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700251 if (unlikely((address % sizeof(u32)) != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return -EINVAL;
Ingo Molnare2970f22006-06-27 02:54:47 -0700253 address -= key->both.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Linus Torvalds5cdec2d2013-12-12 09:53:51 -0800255 if (unlikely(!access_ok(rw, uaddr, sizeof(u32))))
256 return -EFAULT;
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /*
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700259 * PROCESS_PRIVATE futexes are fast.
260 * As the mm cannot disappear under us and the 'key' only needs
261 * virtual address, we dont even have to find the underlying vma.
262 * Note : We do have to check 'uaddr' is a valid user address,
263 * but access_ok() should be faster than find_vma()
264 */
265 if (!fshared) {
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700266 key->private.mm = mm;
267 key->private.address = address;
Peter Zijlstra42569c32008-09-30 12:33:07 +0200268 get_futex_key_refs(key);
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700269 return 0;
270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200272again:
KOSAKI Motohiro7485d0d2010-01-05 16:32:43 +0900273 err = get_user_pages_fast(address, 1, 1, &page);
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500274 /*
275 * If write access is not required (eg. FUTEX_WAIT), try
276 * and get read-only access.
277 */
278 if (err == -EFAULT && rw == VERIFY_READ) {
279 err = get_user_pages_fast(address, 1, 0, &page);
280 ro = 1;
281 }
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200282 if (err < 0)
283 return err;
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500284 else
285 err = 0;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200286
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800287#ifdef CONFIG_TRANSPARENT_HUGEPAGE
288 page_head = page;
289 if (unlikely(PageTail(page))) {
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200290 put_page(page);
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800291 /* serialize against __split_huge_page_splitting() */
292 local_irq_disable();
Linus Torvaldsf12d5bf2013-12-12 09:38:42 -0800293 if (likely(__get_user_pages_fast(address, 1, !ro, &page) == 1)) {
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800294 page_head = compound_head(page);
295 /*
296 * page_head is valid pointer but we must pin
297 * it before taking the PG_lock and/or
298 * PG_compound_lock. The moment we re-enable
299 * irqs __split_huge_page_splitting() can
300 * return and the head page can be freed from
301 * under us. We can't take the PG_lock and/or
302 * PG_compound_lock on a page that could be
303 * freed from under us.
304 */
305 if (page != page_head) {
306 get_page(page_head);
307 put_page(page);
308 }
309 local_irq_enable();
310 } else {
311 local_irq_enable();
312 goto again;
313 }
314 }
315#else
316 page_head = compound_head(page);
317 if (page != page_head) {
318 get_page(page_head);
319 put_page(page);
320 }
321#endif
322
323 lock_page(page_head);
Hugh Dickinse6780f72011-12-31 11:44:01 -0800324
325 /*
326 * If page_head->mapping is NULL, then it cannot be a PageAnon
327 * page; but it might be the ZERO_PAGE or in the gate area or
328 * in a special mapping (all cases which we are happy to fail);
329 * or it may have been a good file page when get_user_pages_fast
330 * found it, but truncated or holepunched or subjected to
331 * invalidate_complete_page2 before we got the page lock (also
332 * cases which we are happy to fail). And we hold a reference,
333 * so refcount care in invalidate_complete_page's remove_mapping
334 * prevents drop_caches from setting mapping to NULL beneath us.
335 *
336 * The case we do have to guard against is when memory pressure made
337 * shmem_writepage move it from filecache to swapcache beneath us:
338 * an unlikely race, but we do need to retry for page_head->mapping.
339 */
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800340 if (!page_head->mapping) {
Hugh Dickinse6780f72011-12-31 11:44:01 -0800341 int shmem_swizzled = PageSwapCache(page_head);
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800342 unlock_page(page_head);
343 put_page(page_head);
Hugh Dickinse6780f72011-12-31 11:44:01 -0800344 if (shmem_swizzled)
345 goto again;
346 return -EFAULT;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 /*
350 * Private mappings are handled in a simple way.
351 *
352 * NOTE: When userspace waits on a MAP_SHARED mapping, even if
353 * it's a read-only handle, it's expected that futexes attach to
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200354 * the object not the particular process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 */
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800356 if (PageAnon(page_head)) {
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500357 /*
358 * A RO anonymous page will never change and thus doesn't make
359 * sense for futex operations.
360 */
361 if (ro) {
362 err = -EFAULT;
363 goto out;
364 }
365
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200366 key->both.offset |= FUT_OFF_MMSHARED; /* ref taken on mm */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 key->private.mm = mm;
Ingo Molnare2970f22006-06-27 02:54:47 -0700368 key->private.address = address;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200369 } else {
370 key->both.offset |= FUT_OFF_INODE; /* inode-based key */
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800371 key->shared.inode = page_head->mapping->host;
Zhang Yi13d60f42013-06-25 21:19:31 +0800372 key->shared.pgoff = basepage_index(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200375 get_futex_key_refs(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500377out:
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800378 unlock_page(page_head);
379 put_page(page_head);
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500380 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Thomas Gleixnerae791a22010-11-10 13:30:36 +0100383static inline void put_futex_key(union futex_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200385 drop_futex_key_refs(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Darren Hartd96ee562009-09-21 22:30:22 -0700388/**
389 * fault_in_user_writeable() - Fault in user address and verify RW access
Thomas Gleixnerd0725992009-06-11 23:15:43 +0200390 * @uaddr: pointer to faulting user space address
391 *
392 * Slow path to fixup the fault we just took in the atomic write
393 * access to @uaddr.
394 *
Randy Dunlapfb62db22010-10-13 11:02:34 -0700395 * We have no generic implementation of a non-destructive write to the
Thomas Gleixnerd0725992009-06-11 23:15:43 +0200396 * user address. We know that we faulted in the atomic pagefault
397 * disabled section so we can as well avoid the #PF overhead by
398 * calling get_user_pages() right away.
399 */
400static int fault_in_user_writeable(u32 __user *uaddr)
401{
Andi Kleen722d0172009-12-08 13:19:42 +0100402 struct mm_struct *mm = current->mm;
403 int ret;
404
405 down_read(&mm->mmap_sem);
Benjamin Herrenschmidt2efaca92011-07-25 17:12:32 -0700406 ret = fixup_user_fault(current, mm, (unsigned long)uaddr,
407 FAULT_FLAG_WRITE);
Andi Kleen722d0172009-12-08 13:19:42 +0100408 up_read(&mm->mmap_sem);
409
Thomas Gleixnerd0725992009-06-11 23:15:43 +0200410 return ret < 0 ? ret : 0;
411}
412
Darren Hart4b1c4862009-04-03 13:39:42 -0700413/**
414 * futex_top_waiter() - Return the highest priority waiter on a futex
Darren Hartd96ee562009-09-21 22:30:22 -0700415 * @hb: the hash bucket the futex_q's reside in
416 * @key: the futex key (to distinguish it from other futex futex_q's)
Darren Hart4b1c4862009-04-03 13:39:42 -0700417 *
418 * Must be called with the hb lock held.
419 */
420static struct futex_q *futex_top_waiter(struct futex_hash_bucket *hb,
421 union futex_key *key)
422{
423 struct futex_q *this;
424
425 plist_for_each_entry(this, &hb->chain, list) {
426 if (match_futex(&this->key, key))
427 return this;
428 }
429 return NULL;
430}
431
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800432static int cmpxchg_futex_value_locked(u32 *curval, u32 __user *uaddr,
433 u32 uval, u32 newval)
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700434{
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800435 int ret;
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700436
437 pagefault_disable();
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800438 ret = futex_atomic_cmpxchg_inatomic(curval, uaddr, uval, newval);
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700439 pagefault_enable();
440
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800441 return ret;
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700442}
443
444static int get_futex_value_locked(u32 *dest, u32 __user *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 int ret;
447
Peter Zijlstraa8663742006-12-06 20:32:20 -0800448 pagefault_disable();
Ingo Molnare2970f22006-06-27 02:54:47 -0700449 ret = __copy_from_user_inatomic(dest, from, sizeof(u32));
Peter Zijlstraa8663742006-12-06 20:32:20 -0800450 pagefault_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 return ret ? -EFAULT : 0;
453}
454
Ingo Molnarc87e2832006-06-27 02:54:58 -0700455
456/*
457 * PI code:
458 */
459static int refill_pi_state_cache(void)
460{
461 struct futex_pi_state *pi_state;
462
463 if (likely(current->pi_state_cache))
464 return 0;
465
Burman Yan4668edc2006-12-06 20:38:51 -0800466 pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700467
468 if (!pi_state)
469 return -ENOMEM;
470
Ingo Molnarc87e2832006-06-27 02:54:58 -0700471 INIT_LIST_HEAD(&pi_state->list);
472 /* pi_mutex gets initialized later */
473 pi_state->owner = NULL;
474 atomic_set(&pi_state->refcount, 1);
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200475 pi_state->key = FUTEX_KEY_INIT;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700476
477 current->pi_state_cache = pi_state;
478
479 return 0;
480}
481
482static struct futex_pi_state * alloc_pi_state(void)
483{
484 struct futex_pi_state *pi_state = current->pi_state_cache;
485
486 WARN_ON(!pi_state);
487 current->pi_state_cache = NULL;
488
489 return pi_state;
490}
491
492static void free_pi_state(struct futex_pi_state *pi_state)
493{
494 if (!atomic_dec_and_test(&pi_state->refcount))
495 return;
496
497 /*
498 * If pi_state->owner is NULL, the owner is most probably dying
499 * and has cleaned up the pi_state already
500 */
501 if (pi_state->owner) {
Thomas Gleixner1d615482009-11-17 14:54:03 +0100502 raw_spin_lock_irq(&pi_state->owner->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700503 list_del_init(&pi_state->list);
Thomas Gleixner1d615482009-11-17 14:54:03 +0100504 raw_spin_unlock_irq(&pi_state->owner->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700505
506 rt_mutex_proxy_unlock(&pi_state->pi_mutex, pi_state->owner);
507 }
508
509 if (current->pi_state_cache)
510 kfree(pi_state);
511 else {
512 /*
513 * pi_state->list is already empty.
514 * clear pi_state->owner.
515 * refcount is at 0 - put it back to 1.
516 */
517 pi_state->owner = NULL;
518 atomic_set(&pi_state->refcount, 1);
519 current->pi_state_cache = pi_state;
520 }
521}
522
523/*
524 * Look up the task based on what TID userspace gave us.
525 * We dont trust it.
526 */
527static struct task_struct * futex_find_get_task(pid_t pid)
528{
529 struct task_struct *p;
530
Oleg Nesterovd359b542006-09-29 02:00:55 -0700531 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700532 p = find_task_by_vpid(pid);
Michal Hocko7a0ea092010-06-30 09:51:19 +0200533 if (p)
534 get_task_struct(p);
Thomas Gleixnera06381f2007-06-23 11:48:40 +0200535
Oleg Nesterovd359b542006-09-29 02:00:55 -0700536 rcu_read_unlock();
Ingo Molnarc87e2832006-06-27 02:54:58 -0700537
538 return p;
539}
540
541/*
542 * This task is holding PI mutexes at exit time => bad.
543 * Kernel cleans up PI-state, but userspace is likely hosed.
544 * (Robust-futex cleanup is separate and might save the day for userspace.)
545 */
546void exit_pi_state_list(struct task_struct *curr)
547{
Ingo Molnarc87e2832006-06-27 02:54:58 -0700548 struct list_head *next, *head = &curr->pi_state_list;
549 struct futex_pi_state *pi_state;
Ingo Molnar627371d2006-07-29 05:16:20 +0200550 struct futex_hash_bucket *hb;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200551 union futex_key key = FUTEX_KEY_INIT;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700552
Thomas Gleixnera0c1e902008-02-23 15:23:57 -0800553 if (!futex_cmpxchg_enabled)
554 return;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700555 /*
556 * We are a ZOMBIE and nobody can enqueue itself on
557 * pi_state_list anymore, but we have to be careful
Ingo Molnar627371d2006-07-29 05:16:20 +0200558 * versus waiters unqueueing themselves:
Ingo Molnarc87e2832006-06-27 02:54:58 -0700559 */
Thomas Gleixner1d615482009-11-17 14:54:03 +0100560 raw_spin_lock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700561 while (!list_empty(head)) {
562
563 next = head->next;
564 pi_state = list_entry(next, struct futex_pi_state, list);
565 key = pi_state->key;
Ingo Molnar627371d2006-07-29 05:16:20 +0200566 hb = hash_futex(&key);
Thomas Gleixner1d615482009-11-17 14:54:03 +0100567 raw_spin_unlock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700568
Ingo Molnarc87e2832006-06-27 02:54:58 -0700569 spin_lock(&hb->lock);
570
Thomas Gleixner1d615482009-11-17 14:54:03 +0100571 raw_spin_lock_irq(&curr->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +0200572 /*
573 * We dropped the pi-lock, so re-check whether this
574 * task still owns the PI-state:
575 */
Ingo Molnarc87e2832006-06-27 02:54:58 -0700576 if (head->next != next) {
577 spin_unlock(&hb->lock);
578 continue;
579 }
580
Ingo Molnarc87e2832006-06-27 02:54:58 -0700581 WARN_ON(pi_state->owner != curr);
Ingo Molnar627371d2006-07-29 05:16:20 +0200582 WARN_ON(list_empty(&pi_state->list));
583 list_del_init(&pi_state->list);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700584 pi_state->owner = NULL;
Thomas Gleixner1d615482009-11-17 14:54:03 +0100585 raw_spin_unlock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700586
587 rt_mutex_unlock(&pi_state->pi_mutex);
588
589 spin_unlock(&hb->lock);
590
Thomas Gleixner1d615482009-11-17 14:54:03 +0100591 raw_spin_lock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700592 }
Thomas Gleixner1d615482009-11-17 14:54:03 +0100593 raw_spin_unlock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700594}
595
596static int
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700597lookup_pi_state(u32 uval, struct futex_hash_bucket *hb,
598 union futex_key *key, struct futex_pi_state **ps)
Ingo Molnarc87e2832006-06-27 02:54:58 -0700599{
600 struct futex_pi_state *pi_state = NULL;
601 struct futex_q *this, *next;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700602 struct task_struct *p;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700603 pid_t pid = uval & FUTEX_TID_MASK;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700604
Jason Low0d00c7b2014-01-12 15:31:22 -0800605 plist_for_each_entry_safe(this, next, &hb->chain, list) {
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700606 if (match_futex(&this->key, key)) {
Ingo Molnarc87e2832006-06-27 02:54:58 -0700607 /*
608 * Another waiter already exists - bump up
609 * the refcount and return its pi_state:
610 */
611 pi_state = this->pi_state;
Thomas Gleixner06a9ec22006-07-10 04:44:30 -0700612 /*
Randy Dunlapfb62db22010-10-13 11:02:34 -0700613 * Userspace might have messed up non-PI and PI futexes
Thomas Gleixner06a9ec22006-07-10 04:44:30 -0700614 */
615 if (unlikely(!pi_state))
616 return -EINVAL;
617
Ingo Molnar627371d2006-07-29 05:16:20 +0200618 WARN_ON(!atomic_read(&pi_state->refcount));
Thomas Gleixner59647b62010-02-03 09:33:05 +0100619
620 /*
621 * When pi_state->owner is NULL then the owner died
622 * and another waiter is on the fly. pi_state->owner
623 * is fixed up by the task which acquires
624 * pi_state->rt_mutex.
625 *
626 * We do not check for pid == 0 which can happen when
627 * the owner died and robust_list_exit() cleared the
628 * TID.
629 */
630 if (pid && pi_state->owner) {
631 /*
632 * Bail out if user space manipulated the
633 * futex value.
634 */
635 if (pid != task_pid_vnr(pi_state->owner))
636 return -EINVAL;
637 }
Ingo Molnar627371d2006-07-29 05:16:20 +0200638
Ingo Molnarc87e2832006-06-27 02:54:58 -0700639 atomic_inc(&pi_state->refcount);
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700640 *ps = pi_state;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700641
642 return 0;
643 }
644 }
645
646 /*
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200647 * We are the first waiter - try to look up the real owner and attach
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700648 * the new pi_state to it, but bail out when TID = 0
Ingo Molnarc87e2832006-06-27 02:54:58 -0700649 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700650 if (!pid)
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200651 return -ESRCH;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700652 p = futex_find_get_task(pid);
Michal Hocko7a0ea092010-06-30 09:51:19 +0200653 if (!p)
654 return -ESRCH;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700655
656 /*
657 * We need to look at the task state flags to figure out,
658 * whether the task is exiting. To protect against the do_exit
659 * change of the task flags, we do this protected by
660 * p->pi_lock:
661 */
Thomas Gleixner1d615482009-11-17 14:54:03 +0100662 raw_spin_lock_irq(&p->pi_lock);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700663 if (unlikely(p->flags & PF_EXITING)) {
664 /*
665 * The task is on the way out. When PF_EXITPIDONE is
666 * set, we know that the task has finished the
667 * cleanup:
668 */
669 int ret = (p->flags & PF_EXITPIDONE) ? -ESRCH : -EAGAIN;
670
Thomas Gleixner1d615482009-11-17 14:54:03 +0100671 raw_spin_unlock_irq(&p->pi_lock);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700672 put_task_struct(p);
673 return ret;
674 }
Ingo Molnarc87e2832006-06-27 02:54:58 -0700675
676 pi_state = alloc_pi_state();
677
678 /*
679 * Initialize the pi_mutex in locked state and make 'p'
680 * the owner of it:
681 */
682 rt_mutex_init_proxy_locked(&pi_state->pi_mutex, p);
683
684 /* Store the key for possible exit cleanups: */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700685 pi_state->key = *key;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700686
Ingo Molnar627371d2006-07-29 05:16:20 +0200687 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -0700688 list_add(&pi_state->list, &p->pi_state_list);
689 pi_state->owner = p;
Thomas Gleixner1d615482009-11-17 14:54:03 +0100690 raw_spin_unlock_irq(&p->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700691
692 put_task_struct(p);
693
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700694 *ps = pi_state;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700695
696 return 0;
697}
698
Darren Hart1a520842009-04-03 13:39:52 -0700699/**
Darren Hartd96ee562009-09-21 22:30:22 -0700700 * futex_lock_pi_atomic() - Atomic work required to acquire a pi aware futex
Darren Hartbab5bc92009-04-07 23:23:50 -0700701 * @uaddr: the pi futex user address
702 * @hb: the pi futex hash bucket
703 * @key: the futex key associated with uaddr and hb
704 * @ps: the pi_state pointer where we store the result of the
705 * lookup
706 * @task: the task to perform the atomic lock work for. This will
707 * be "current" except in the case of requeue pi.
708 * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0)
Darren Hart1a520842009-04-03 13:39:52 -0700709 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -0800710 * Return:
711 * 0 - ready to wait;
712 * 1 - acquired the lock;
Darren Hart1a520842009-04-03 13:39:52 -0700713 * <0 - error
714 *
715 * The hb->lock and futex_key refs shall be held by the caller.
716 */
717static int futex_lock_pi_atomic(u32 __user *uaddr, struct futex_hash_bucket *hb,
718 union futex_key *key,
719 struct futex_pi_state **ps,
Darren Hartbab5bc92009-04-07 23:23:50 -0700720 struct task_struct *task, int set_waiters)
Darren Hart1a520842009-04-03 13:39:52 -0700721{
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200722 int lock_taken, ret, force_take = 0;
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +0100723 u32 uval, newval, curval, vpid = task_pid_vnr(task);
Darren Hart1a520842009-04-03 13:39:52 -0700724
725retry:
726 ret = lock_taken = 0;
727
728 /*
729 * To avoid races, we attempt to take the lock here again
730 * (by doing a 0 -> TID atomic cmpxchg), while holding all
731 * the locks. It will most likely not succeed.
732 */
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +0100733 newval = vpid;
Darren Hartbab5bc92009-04-07 23:23:50 -0700734 if (set_waiters)
735 newval |= FUTEX_WAITERS;
Darren Hart1a520842009-04-03 13:39:52 -0700736
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800737 if (unlikely(cmpxchg_futex_value_locked(&curval, uaddr, 0, newval)))
Darren Hart1a520842009-04-03 13:39:52 -0700738 return -EFAULT;
739
740 /*
741 * Detect deadlocks.
742 */
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +0100743 if ((unlikely((curval & FUTEX_TID_MASK) == vpid)))
Darren Hart1a520842009-04-03 13:39:52 -0700744 return -EDEADLK;
745
746 /*
747 * Surprise - we got the lock. Just return to userspace:
748 */
749 if (unlikely(!curval))
750 return 1;
751
752 uval = curval;
753
754 /*
755 * Set the FUTEX_WAITERS flag, so the owner will know it has someone
756 * to wake at the next unlock.
757 */
758 newval = curval | FUTEX_WAITERS;
759
760 /*
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200761 * Should we force take the futex? See below.
Darren Hart1a520842009-04-03 13:39:52 -0700762 */
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200763 if (unlikely(force_take)) {
764 /*
765 * Keep the OWNER_DIED and the WAITERS bit and set the
766 * new TID value.
767 */
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +0100768 newval = (curval & ~FUTEX_TID_MASK) | vpid;
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200769 force_take = 0;
Darren Hart1a520842009-04-03 13:39:52 -0700770 lock_taken = 1;
771 }
772
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800773 if (unlikely(cmpxchg_futex_value_locked(&curval, uaddr, uval, newval)))
Darren Hart1a520842009-04-03 13:39:52 -0700774 return -EFAULT;
775 if (unlikely(curval != uval))
776 goto retry;
777
778 /*
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200779 * We took the lock due to forced take over.
Darren Hart1a520842009-04-03 13:39:52 -0700780 */
781 if (unlikely(lock_taken))
782 return 1;
783
784 /*
785 * We dont have the lock. Look up the PI state (or create it if
786 * we are the first waiter):
787 */
788 ret = lookup_pi_state(uval, hb, key, ps);
789
790 if (unlikely(ret)) {
791 switch (ret) {
792 case -ESRCH:
793 /*
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200794 * We failed to find an owner for this
795 * futex. So we have no pi_state to block
796 * on. This can happen in two cases:
797 *
798 * 1) The owner died
799 * 2) A stale FUTEX_WAITERS bit
800 *
801 * Re-read the futex value.
Darren Hart1a520842009-04-03 13:39:52 -0700802 */
803 if (get_futex_value_locked(&curval, uaddr))
804 return -EFAULT;
805
806 /*
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200807 * If the owner died or we have a stale
808 * WAITERS bit the owner TID in the user space
809 * futex is 0.
Darren Hart1a520842009-04-03 13:39:52 -0700810 */
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200811 if (!(curval & FUTEX_TID_MASK)) {
812 force_take = 1;
Darren Hart1a520842009-04-03 13:39:52 -0700813 goto retry;
814 }
815 default:
816 break;
817 }
818 }
819
820 return ret;
821}
822
Lai Jiangshan2e129782010-12-22 14:18:50 +0800823/**
824 * __unqueue_futex() - Remove the futex_q from its futex_hash_bucket
825 * @q: The futex_q to unqueue
826 *
827 * The q->lock_ptr must not be NULL and must be held by the caller.
828 */
829static void __unqueue_futex(struct futex_q *q)
830{
831 struct futex_hash_bucket *hb;
832
Steven Rostedt29096202011-03-17 15:21:07 -0400833 if (WARN_ON_SMP(!q->lock_ptr || !spin_is_locked(q->lock_ptr))
834 || WARN_ON(plist_node_empty(&q->list)))
Lai Jiangshan2e129782010-12-22 14:18:50 +0800835 return;
836
837 hb = container_of(q->lock_ptr, struct futex_hash_bucket, lock);
838 plist_del(&q->list, &hb->chain);
839}
840
Ingo Molnarc87e2832006-06-27 02:54:58 -0700841/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 * The hash bucket lock must be held when this is called.
843 * Afterwards, the futex_q must not be accessed.
844 */
845static void wake_futex(struct futex_q *q)
846{
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +0200847 struct task_struct *p = q->task;
848
Darren Hartaa109902012-11-26 16:29:56 -0800849 if (WARN(q->pi_state || q->rt_waiter, "refusing to wake PI futex\n"))
850 return;
851
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +0200852 /*
853 * We set q->lock_ptr = NULL _before_ we wake up the task. If
Randy Dunlapfb62db22010-10-13 11:02:34 -0700854 * a non-futex wake up happens on another CPU then the task
855 * might exit and p would dereference a non-existing task
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +0200856 * struct. Prevent this by holding a reference on p across the
857 * wake up.
858 */
859 get_task_struct(p);
860
Lai Jiangshan2e129782010-12-22 14:18:50 +0800861 __unqueue_futex(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 /*
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +0200863 * The waiting task can free the futex_q as soon as
864 * q->lock_ptr = NULL is written, without taking any locks. A
865 * memory barrier is required here to prevent the following
866 * store to lock_ptr from getting ahead of the plist_del.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 */
Ralf Baechleccdea2f2006-12-06 20:40:26 -0800868 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 q->lock_ptr = NULL;
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +0200870
871 wake_up_state(p, TASK_NORMAL);
872 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
Ingo Molnarc87e2832006-06-27 02:54:58 -0700875static int wake_futex_pi(u32 __user *uaddr, u32 uval, struct futex_q *this)
876{
877 struct task_struct *new_owner;
878 struct futex_pi_state *pi_state = this->pi_state;
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +0300879 u32 uninitialized_var(curval), newval;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700880
881 if (!pi_state)
882 return -EINVAL;
883
Thomas Gleixner51246bf2010-02-02 11:40:27 +0100884 /*
885 * If current does not own the pi_state then the futex is
886 * inconsistent and user space fiddled with the futex value.
887 */
888 if (pi_state->owner != current)
889 return -EINVAL;
890
Thomas Gleixnerd209d742009-11-17 18:22:11 +0100891 raw_spin_lock(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700892 new_owner = rt_mutex_next_owner(&pi_state->pi_mutex);
893
894 /*
Steven Rostedtf123c982011-01-06 15:08:29 -0500895 * It is possible that the next waiter (the one that brought
896 * this owner to the kernel) timed out and is no longer
897 * waiting on the lock.
Ingo Molnarc87e2832006-06-27 02:54:58 -0700898 */
899 if (!new_owner)
900 new_owner = this->task;
901
902 /*
903 * We pass it to the next owner. (The WAITERS bit is always
904 * kept enabled while there is PI state around. We must also
905 * preserve the owner died bit.)
906 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200907 if (!(uval & FUTEX_OWNER_DIED)) {
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700908 int ret = 0;
909
Pavel Emelyanovb4888932007-10-18 23:40:14 -0700910 newval = FUTEX_WAITERS | task_pid_vnr(new_owner);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700911
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800912 if (cmpxchg_futex_value_locked(&curval, uaddr, uval, newval))
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700913 ret = -EFAULT;
Thomas Gleixnercde898f2007-12-05 15:46:09 +0100914 else if (curval != uval)
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700915 ret = -EINVAL;
916 if (ret) {
Thomas Gleixnerd209d742009-11-17 18:22:11 +0100917 raw_spin_unlock(&pi_state->pi_mutex.wait_lock);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700918 return ret;
919 }
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200920 }
Ingo Molnarc87e2832006-06-27 02:54:58 -0700921
Thomas Gleixner1d615482009-11-17 14:54:03 +0100922 raw_spin_lock_irq(&pi_state->owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +0200923 WARN_ON(list_empty(&pi_state->list));
924 list_del_init(&pi_state->list);
Thomas Gleixner1d615482009-11-17 14:54:03 +0100925 raw_spin_unlock_irq(&pi_state->owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +0200926
Thomas Gleixner1d615482009-11-17 14:54:03 +0100927 raw_spin_lock_irq(&new_owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +0200928 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -0700929 list_add(&pi_state->list, &new_owner->pi_state_list);
930 pi_state->owner = new_owner;
Thomas Gleixner1d615482009-11-17 14:54:03 +0100931 raw_spin_unlock_irq(&new_owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +0200932
Thomas Gleixnerd209d742009-11-17 18:22:11 +0100933 raw_spin_unlock(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700934 rt_mutex_unlock(&pi_state->pi_mutex);
935
936 return 0;
937}
938
939static int unlock_futex_pi(u32 __user *uaddr, u32 uval)
940{
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +0300941 u32 uninitialized_var(oldval);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700942
943 /*
944 * There is no waiter, so we unlock the futex. The owner died
945 * bit has not to be preserved here. We are the owner:
946 */
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800947 if (cmpxchg_futex_value_locked(&oldval, uaddr, uval, 0))
948 return -EFAULT;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700949 if (oldval != uval)
950 return -EAGAIN;
951
952 return 0;
953}
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955/*
Ingo Molnar8b8f3192006-07-03 00:25:05 -0700956 * Express the locking dependencies for lockdep:
957 */
958static inline void
959double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
960{
961 if (hb1 <= hb2) {
962 spin_lock(&hb1->lock);
963 if (hb1 < hb2)
964 spin_lock_nested(&hb2->lock, SINGLE_DEPTH_NESTING);
965 } else { /* hb1 > hb2 */
966 spin_lock(&hb2->lock);
967 spin_lock_nested(&hb1->lock, SINGLE_DEPTH_NESTING);
968 }
969}
970
Darren Hart5eb3dc62009-03-12 00:55:52 -0700971static inline void
972double_unlock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
973{
Darren Hartf061d352009-03-12 15:11:18 -0700974 spin_unlock(&hb1->lock);
Ingo Molnar88f502f2009-03-13 10:32:07 +0100975 if (hb1 != hb2)
976 spin_unlock(&hb2->lock);
Darren Hart5eb3dc62009-03-12 00:55:52 -0700977}
978
Ingo Molnar8b8f3192006-07-03 00:25:05 -0700979/*
Darren Hartb2d09942009-03-12 00:55:37 -0700980 * Wake up waiters matching bitset queued on this futex (uaddr).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 */
Darren Hartb41277d2010-11-08 13:10:09 -0800982static int
983futex_wake(u32 __user *uaddr, unsigned int flags, int nr_wake, u32 bitset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
Ingo Molnare2970f22006-06-27 02:54:47 -0700985 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 struct futex_q *this, *next;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200987 union futex_key key = FUTEX_KEY_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 int ret;
989
Thomas Gleixnercd689982008-02-01 17:45:14 +0100990 if (!bitset)
991 return -EINVAL;
992
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500993 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (unlikely(ret != 0))
995 goto out;
996
Ingo Molnare2970f22006-06-27 02:54:47 -0700997 hb = hash_futex(&key);
998 spin_lock(&hb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Jason Low0d00c7b2014-01-12 15:31:22 -08001000 plist_for_each_entry_safe(this, next, &hb->chain, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 if (match_futex (&this->key, &key)) {
Darren Hart52400ba2009-04-03 13:40:49 -07001002 if (this->pi_state || this->rt_waiter) {
Ingo Molnared6f7b12006-07-01 04:35:46 -07001003 ret = -EINVAL;
1004 break;
1005 }
Thomas Gleixnercd689982008-02-01 17:45:14 +01001006
1007 /* Check if one of the bits is set in both bitsets */
1008 if (!(this->bitset & bitset))
1009 continue;
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 wake_futex(this);
1012 if (++ret >= nr_wake)
1013 break;
1014 }
1015 }
1016
Ingo Molnare2970f22006-06-27 02:54:47 -07001017 spin_unlock(&hb->lock);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001018 put_futex_key(&key);
Darren Hart42d35d42008-12-29 15:49:53 -08001019out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 return ret;
1021}
1022
1023/*
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001024 * Wake up all waiters hashed on the physical page that is mapped
1025 * to this virtual address:
1026 */
Ingo Molnare2970f22006-06-27 02:54:47 -07001027static int
Darren Hartb41277d2010-11-08 13:10:09 -08001028futex_wake_op(u32 __user *uaddr1, unsigned int flags, u32 __user *uaddr2,
Ingo Molnare2970f22006-06-27 02:54:47 -07001029 int nr_wake, int nr_wake2, int op)
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001030{
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001031 union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
Ingo Molnare2970f22006-06-27 02:54:47 -07001032 struct futex_hash_bucket *hb1, *hb2;
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001033 struct futex_q *this, *next;
Darren Harte4dc5b72009-03-12 00:56:13 -07001034 int ret, op_ret;
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001035
Darren Harte4dc5b72009-03-12 00:56:13 -07001036retry:
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001037 ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, VERIFY_READ);
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001038 if (unlikely(ret != 0))
1039 goto out;
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001040 ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, VERIFY_WRITE);
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001041 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08001042 goto out_put_key1;
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001043
Ingo Molnare2970f22006-06-27 02:54:47 -07001044 hb1 = hash_futex(&key1);
1045 hb2 = hash_futex(&key2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001046
Darren Harte4dc5b72009-03-12 00:56:13 -07001047retry_private:
Thomas Gleixnereaaea802009-10-04 09:34:17 +02001048 double_lock_hb(hb1, hb2);
Ingo Molnare2970f22006-06-27 02:54:47 -07001049 op_ret = futex_atomic_op_inuser(op, uaddr2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001050 if (unlikely(op_ret < 0)) {
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001051
Darren Hart5eb3dc62009-03-12 00:55:52 -07001052 double_unlock_hb(hb1, hb2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001053
David Howells7ee1dd32006-01-06 00:11:44 -08001054#ifndef CONFIG_MMU
Ingo Molnare2970f22006-06-27 02:54:47 -07001055 /*
1056 * we don't get EFAULT from MMU faults if we don't have an MMU,
1057 * but we might get them from range checking
1058 */
David Howells7ee1dd32006-01-06 00:11:44 -08001059 ret = op_ret;
Darren Hart42d35d42008-12-29 15:49:53 -08001060 goto out_put_keys;
David Howells7ee1dd32006-01-06 00:11:44 -08001061#endif
1062
David Gibson796f8d92005-11-07 00:59:33 -08001063 if (unlikely(op_ret != -EFAULT)) {
1064 ret = op_ret;
Darren Hart42d35d42008-12-29 15:49:53 -08001065 goto out_put_keys;
David Gibson796f8d92005-11-07 00:59:33 -08001066 }
1067
Thomas Gleixnerd0725992009-06-11 23:15:43 +02001068 ret = fault_in_user_writeable(uaddr2);
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001069 if (ret)
Darren Hartde87fcc2009-03-12 00:55:46 -07001070 goto out_put_keys;
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001071
Darren Hartb41277d2010-11-08 13:10:09 -08001072 if (!(flags & FLAGS_SHARED))
Darren Harte4dc5b72009-03-12 00:56:13 -07001073 goto retry_private;
1074
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001075 put_futex_key(&key2);
1076 put_futex_key(&key1);
Darren Harte4dc5b72009-03-12 00:56:13 -07001077 goto retry;
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001078 }
1079
Jason Low0d00c7b2014-01-12 15:31:22 -08001080 plist_for_each_entry_safe(this, next, &hb1->chain, list) {
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001081 if (match_futex (&this->key, &key1)) {
Darren Hartaa109902012-11-26 16:29:56 -08001082 if (this->pi_state || this->rt_waiter) {
1083 ret = -EINVAL;
1084 goto out_unlock;
1085 }
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001086 wake_futex(this);
1087 if (++ret >= nr_wake)
1088 break;
1089 }
1090 }
1091
1092 if (op_ret > 0) {
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001093 op_ret = 0;
Jason Low0d00c7b2014-01-12 15:31:22 -08001094 plist_for_each_entry_safe(this, next, &hb2->chain, list) {
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001095 if (match_futex (&this->key, &key2)) {
Darren Hartaa109902012-11-26 16:29:56 -08001096 if (this->pi_state || this->rt_waiter) {
1097 ret = -EINVAL;
1098 goto out_unlock;
1099 }
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001100 wake_futex(this);
1101 if (++op_ret >= nr_wake2)
1102 break;
1103 }
1104 }
1105 ret += op_ret;
1106 }
1107
Darren Hartaa109902012-11-26 16:29:56 -08001108out_unlock:
Darren Hart5eb3dc62009-03-12 00:55:52 -07001109 double_unlock_hb(hb1, hb2);
Darren Hart42d35d42008-12-29 15:49:53 -08001110out_put_keys:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001111 put_futex_key(&key2);
Darren Hart42d35d42008-12-29 15:49:53 -08001112out_put_key1:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001113 put_futex_key(&key1);
Darren Hart42d35d42008-12-29 15:49:53 -08001114out:
Jakub Jelinek4732efb2005-09-06 15:16:25 -07001115 return ret;
1116}
1117
Darren Hart9121e472009-04-03 13:40:31 -07001118/**
1119 * requeue_futex() - Requeue a futex_q from one hb to another
1120 * @q: the futex_q to requeue
1121 * @hb1: the source hash_bucket
1122 * @hb2: the target hash_bucket
1123 * @key2: the new key for the requeued futex_q
1124 */
1125static inline
1126void requeue_futex(struct futex_q *q, struct futex_hash_bucket *hb1,
1127 struct futex_hash_bucket *hb2, union futex_key *key2)
1128{
1129
1130 /*
1131 * If key1 and key2 hash to the same bucket, no need to
1132 * requeue.
1133 */
1134 if (likely(&hb1->chain != &hb2->chain)) {
1135 plist_del(&q->list, &hb1->chain);
1136 plist_add(&q->list, &hb2->chain);
1137 q->lock_ptr = &hb2->lock;
Darren Hart9121e472009-04-03 13:40:31 -07001138 }
1139 get_futex_key_refs(key2);
1140 q->key = *key2;
1141}
1142
Darren Hart52400ba2009-04-03 13:40:49 -07001143/**
1144 * requeue_pi_wake_futex() - Wake a task that acquired the lock during requeue
Darren Hartd96ee562009-09-21 22:30:22 -07001145 * @q: the futex_q
1146 * @key: the key of the requeue target futex
1147 * @hb: the hash_bucket of the requeue target futex
Darren Hart52400ba2009-04-03 13:40:49 -07001148 *
1149 * During futex_requeue, with requeue_pi=1, it is possible to acquire the
1150 * target futex if it is uncontended or via a lock steal. Set the futex_q key
1151 * to the requeue target futex so the waiter can detect the wakeup on the right
1152 * futex, but remove it from the hb and NULL the rt_waiter so it can detect
Darren Hartbeda2c72009-08-09 15:34:39 -07001153 * atomic lock acquisition. Set the q->lock_ptr to the requeue target hb->lock
1154 * to protect access to the pi_state to fixup the owner later. Must be called
1155 * with both q->lock_ptr and hb->lock held.
Darren Hart52400ba2009-04-03 13:40:49 -07001156 */
1157static inline
Darren Hartbeda2c72009-08-09 15:34:39 -07001158void requeue_pi_wake_futex(struct futex_q *q, union futex_key *key,
1159 struct futex_hash_bucket *hb)
Darren Hart52400ba2009-04-03 13:40:49 -07001160{
Darren Hart52400ba2009-04-03 13:40:49 -07001161 get_futex_key_refs(key);
1162 q->key = *key;
1163
Lai Jiangshan2e129782010-12-22 14:18:50 +08001164 __unqueue_futex(q);
Darren Hart52400ba2009-04-03 13:40:49 -07001165
1166 WARN_ON(!q->rt_waiter);
1167 q->rt_waiter = NULL;
1168
Darren Hartbeda2c72009-08-09 15:34:39 -07001169 q->lock_ptr = &hb->lock;
Darren Hartbeda2c72009-08-09 15:34:39 -07001170
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001171 wake_up_state(q->task, TASK_NORMAL);
Darren Hart52400ba2009-04-03 13:40:49 -07001172}
1173
1174/**
1175 * futex_proxy_trylock_atomic() - Attempt an atomic lock for the top waiter
Darren Hartbab5bc92009-04-07 23:23:50 -07001176 * @pifutex: the user address of the to futex
1177 * @hb1: the from futex hash bucket, must be locked by the caller
1178 * @hb2: the to futex hash bucket, must be locked by the caller
1179 * @key1: the from futex key
1180 * @key2: the to futex key
1181 * @ps: address to store the pi_state pointer
1182 * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0)
Darren Hart52400ba2009-04-03 13:40:49 -07001183 *
1184 * Try and get the lock on behalf of the top waiter if we can do it atomically.
Darren Hartbab5bc92009-04-07 23:23:50 -07001185 * Wake the top waiter if we succeed. If the caller specified set_waiters,
1186 * then direct futex_lock_pi_atomic() to force setting the FUTEX_WAITERS bit.
1187 * hb1 and hb2 must be held by the caller.
Darren Hart52400ba2009-04-03 13:40:49 -07001188 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001189 * Return:
1190 * 0 - failed to acquire the lock atomically;
1191 * 1 - acquired the lock;
Darren Hart52400ba2009-04-03 13:40:49 -07001192 * <0 - error
1193 */
1194static int futex_proxy_trylock_atomic(u32 __user *pifutex,
1195 struct futex_hash_bucket *hb1,
1196 struct futex_hash_bucket *hb2,
1197 union futex_key *key1, union futex_key *key2,
Darren Hartbab5bc92009-04-07 23:23:50 -07001198 struct futex_pi_state **ps, int set_waiters)
Darren Hart52400ba2009-04-03 13:40:49 -07001199{
Darren Hartbab5bc92009-04-07 23:23:50 -07001200 struct futex_q *top_waiter = NULL;
Darren Hart52400ba2009-04-03 13:40:49 -07001201 u32 curval;
1202 int ret;
1203
1204 if (get_futex_value_locked(&curval, pifutex))
1205 return -EFAULT;
1206
Darren Hartbab5bc92009-04-07 23:23:50 -07001207 /*
1208 * Find the top_waiter and determine if there are additional waiters.
1209 * If the caller intends to requeue more than 1 waiter to pifutex,
1210 * force futex_lock_pi_atomic() to set the FUTEX_WAITERS bit now,
1211 * as we have means to handle the possible fault. If not, don't set
1212 * the bit unecessarily as it will force the subsequent unlock to enter
1213 * the kernel.
1214 */
Darren Hart52400ba2009-04-03 13:40:49 -07001215 top_waiter = futex_top_waiter(hb1, key1);
1216
1217 /* There are no waiters, nothing for us to do. */
1218 if (!top_waiter)
1219 return 0;
1220
Darren Hart84bc4af2009-08-13 17:36:53 -07001221 /* Ensure we requeue to the expected futex. */
1222 if (!match_futex(top_waiter->requeue_pi_key, key2))
1223 return -EINVAL;
1224
Darren Hart52400ba2009-04-03 13:40:49 -07001225 /*
Darren Hartbab5bc92009-04-07 23:23:50 -07001226 * Try to take the lock for top_waiter. Set the FUTEX_WAITERS bit in
1227 * the contended case or if set_waiters is 1. The pi_state is returned
1228 * in ps in contended cases.
Darren Hart52400ba2009-04-03 13:40:49 -07001229 */
Darren Hartbab5bc92009-04-07 23:23:50 -07001230 ret = futex_lock_pi_atomic(pifutex, hb2, key2, ps, top_waiter->task,
1231 set_waiters);
Darren Hart52400ba2009-04-03 13:40:49 -07001232 if (ret == 1)
Darren Hartbeda2c72009-08-09 15:34:39 -07001233 requeue_pi_wake_futex(top_waiter, key2, hb2);
Darren Hart52400ba2009-04-03 13:40:49 -07001234
1235 return ret;
1236}
1237
1238/**
1239 * futex_requeue() - Requeue waiters from uaddr1 to uaddr2
Randy Dunlapfb62db22010-10-13 11:02:34 -07001240 * @uaddr1: source futex user address
Darren Hartb41277d2010-11-08 13:10:09 -08001241 * @flags: futex flags (FLAGS_SHARED, etc.)
Randy Dunlapfb62db22010-10-13 11:02:34 -07001242 * @uaddr2: target futex user address
1243 * @nr_wake: number of waiters to wake (must be 1 for requeue_pi)
1244 * @nr_requeue: number of waiters to requeue (0-INT_MAX)
1245 * @cmpval: @uaddr1 expected value (or %NULL)
1246 * @requeue_pi: if we are attempting to requeue from a non-pi futex to a
Darren Hartb41277d2010-11-08 13:10:09 -08001247 * pi futex (pi to pi requeue is not supported)
Darren Hart52400ba2009-04-03 13:40:49 -07001248 *
1249 * Requeue waiters on uaddr1 to uaddr2. In the requeue_pi case, try to acquire
1250 * uaddr2 atomically on behalf of the top waiter.
1251 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001252 * Return:
1253 * >=0 - on success, the number of tasks requeued or woken;
Darren Hart52400ba2009-04-03 13:40:49 -07001254 * <0 - on error
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 */
Darren Hartb41277d2010-11-08 13:10:09 -08001256static int futex_requeue(u32 __user *uaddr1, unsigned int flags,
1257 u32 __user *uaddr2, int nr_wake, int nr_requeue,
1258 u32 *cmpval, int requeue_pi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001260 union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
Darren Hart52400ba2009-04-03 13:40:49 -07001261 int drop_count = 0, task_count = 0, ret;
1262 struct futex_pi_state *pi_state = NULL;
Ingo Molnare2970f22006-06-27 02:54:47 -07001263 struct futex_hash_bucket *hb1, *hb2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 struct futex_q *this, *next;
Darren Hart52400ba2009-04-03 13:40:49 -07001265 u32 curval2;
1266
1267 if (requeue_pi) {
1268 /*
1269 * requeue_pi requires a pi_state, try to allocate it now
1270 * without any locks in case it fails.
1271 */
1272 if (refill_pi_state_cache())
1273 return -ENOMEM;
1274 /*
1275 * requeue_pi must wake as many tasks as it can, up to nr_wake
1276 * + nr_requeue, since it acquires the rt_mutex prior to
1277 * returning to userspace, so as to not leave the rt_mutex with
1278 * waiters and no owner. However, second and third wake-ups
1279 * cannot be predicted as they involve race conditions with the
1280 * first wake and a fault while looking up the pi_state. Both
1281 * pthread_cond_signal() and pthread_cond_broadcast() should
1282 * use nr_wake=1.
1283 */
1284 if (nr_wake != 1)
1285 return -EINVAL;
1286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Darren Hart42d35d42008-12-29 15:49:53 -08001288retry:
Darren Hart52400ba2009-04-03 13:40:49 -07001289 if (pi_state != NULL) {
1290 /*
1291 * We will have to lookup the pi_state again, so free this one
1292 * to keep the accounting correct.
1293 */
1294 free_pi_state(pi_state);
1295 pi_state = NULL;
1296 }
1297
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001298 ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 if (unlikely(ret != 0))
1300 goto out;
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001301 ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2,
1302 requeue_pi ? VERIFY_WRITE : VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08001304 goto out_put_key1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Ingo Molnare2970f22006-06-27 02:54:47 -07001306 hb1 = hash_futex(&key1);
1307 hb2 = hash_futex(&key2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Darren Harte4dc5b72009-03-12 00:56:13 -07001309retry_private:
Ingo Molnar8b8f3192006-07-03 00:25:05 -07001310 double_lock_hb(hb1, hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Ingo Molnare2970f22006-06-27 02:54:47 -07001312 if (likely(cmpval != NULL)) {
1313 u32 curval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Ingo Molnare2970f22006-06-27 02:54:47 -07001315 ret = get_futex_value_locked(&curval, uaddr1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 if (unlikely(ret)) {
Darren Hart5eb3dc62009-03-12 00:55:52 -07001318 double_unlock_hb(hb1, hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Darren Harte4dc5b72009-03-12 00:56:13 -07001320 ret = get_user(curval, uaddr1);
1321 if (ret)
1322 goto out_put_keys;
1323
Darren Hartb41277d2010-11-08 13:10:09 -08001324 if (!(flags & FLAGS_SHARED))
Darren Harte4dc5b72009-03-12 00:56:13 -07001325 goto retry_private;
1326
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001327 put_futex_key(&key2);
1328 put_futex_key(&key1);
Darren Harte4dc5b72009-03-12 00:56:13 -07001329 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
Ingo Molnare2970f22006-06-27 02:54:47 -07001331 if (curval != *cmpval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 ret = -EAGAIN;
1333 goto out_unlock;
1334 }
1335 }
1336
Darren Hart52400ba2009-04-03 13:40:49 -07001337 if (requeue_pi && (task_count - nr_wake < nr_requeue)) {
Darren Hartbab5bc92009-04-07 23:23:50 -07001338 /*
1339 * Attempt to acquire uaddr2 and wake the top waiter. If we
1340 * intend to requeue waiters, force setting the FUTEX_WAITERS
1341 * bit. We force this here where we are able to easily handle
1342 * faults rather in the requeue loop below.
1343 */
Darren Hart52400ba2009-04-03 13:40:49 -07001344 ret = futex_proxy_trylock_atomic(uaddr2, hb1, hb2, &key1,
Darren Hartbab5bc92009-04-07 23:23:50 -07001345 &key2, &pi_state, nr_requeue);
Darren Hart52400ba2009-04-03 13:40:49 -07001346
1347 /*
1348 * At this point the top_waiter has either taken uaddr2 or is
1349 * waiting on it. If the former, then the pi_state will not
1350 * exist yet, look it up one more time to ensure we have a
1351 * reference to it.
1352 */
1353 if (ret == 1) {
1354 WARN_ON(pi_state);
Darren Hart89061d32009-10-15 15:30:48 -07001355 drop_count++;
Darren Hart52400ba2009-04-03 13:40:49 -07001356 task_count++;
1357 ret = get_futex_value_locked(&curval2, uaddr2);
1358 if (!ret)
1359 ret = lookup_pi_state(curval2, hb2, &key2,
1360 &pi_state);
1361 }
1362
1363 switch (ret) {
1364 case 0:
1365 break;
1366 case -EFAULT:
1367 double_unlock_hb(hb1, hb2);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001368 put_futex_key(&key2);
1369 put_futex_key(&key1);
Thomas Gleixnerd0725992009-06-11 23:15:43 +02001370 ret = fault_in_user_writeable(uaddr2);
Darren Hart52400ba2009-04-03 13:40:49 -07001371 if (!ret)
1372 goto retry;
1373 goto out;
1374 case -EAGAIN:
1375 /* The owner was exiting, try again. */
1376 double_unlock_hb(hb1, hb2);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001377 put_futex_key(&key2);
1378 put_futex_key(&key1);
Darren Hart52400ba2009-04-03 13:40:49 -07001379 cond_resched();
1380 goto retry;
1381 default:
1382 goto out_unlock;
1383 }
1384 }
1385
Jason Low0d00c7b2014-01-12 15:31:22 -08001386 plist_for_each_entry_safe(this, next, &hb1->chain, list) {
Darren Hart52400ba2009-04-03 13:40:49 -07001387 if (task_count - nr_wake >= nr_requeue)
1388 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Darren Hart52400ba2009-04-03 13:40:49 -07001390 if (!match_futex(&this->key, &key1))
1391 continue;
1392
Darren Hart392741e2009-08-07 15:20:48 -07001393 /*
1394 * FUTEX_WAIT_REQEUE_PI and FUTEX_CMP_REQUEUE_PI should always
1395 * be paired with each other and no other futex ops.
Darren Hartaa109902012-11-26 16:29:56 -08001396 *
1397 * We should never be requeueing a futex_q with a pi_state,
1398 * which is awaiting a futex_unlock_pi().
Darren Hart392741e2009-08-07 15:20:48 -07001399 */
1400 if ((requeue_pi && !this->rt_waiter) ||
Darren Hartaa109902012-11-26 16:29:56 -08001401 (!requeue_pi && this->rt_waiter) ||
1402 this->pi_state) {
Darren Hart392741e2009-08-07 15:20:48 -07001403 ret = -EINVAL;
1404 break;
1405 }
Darren Hart52400ba2009-04-03 13:40:49 -07001406
1407 /*
1408 * Wake nr_wake waiters. For requeue_pi, if we acquired the
1409 * lock, we already woke the top_waiter. If not, it will be
1410 * woken by futex_unlock_pi().
1411 */
1412 if (++task_count <= nr_wake && !requeue_pi) {
1413 wake_futex(this);
1414 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
Darren Hart52400ba2009-04-03 13:40:49 -07001416
Darren Hart84bc4af2009-08-13 17:36:53 -07001417 /* Ensure we requeue to the expected futex for requeue_pi. */
1418 if (requeue_pi && !match_futex(this->requeue_pi_key, &key2)) {
1419 ret = -EINVAL;
1420 break;
1421 }
1422
Darren Hart52400ba2009-04-03 13:40:49 -07001423 /*
1424 * Requeue nr_requeue waiters and possibly one more in the case
1425 * of requeue_pi if we couldn't acquire the lock atomically.
1426 */
1427 if (requeue_pi) {
1428 /* Prepare the waiter to take the rt_mutex. */
1429 atomic_inc(&pi_state->refcount);
1430 this->pi_state = pi_state;
1431 ret = rt_mutex_start_proxy_lock(&pi_state->pi_mutex,
1432 this->rt_waiter,
1433 this->task, 1);
1434 if (ret == 1) {
1435 /* We got the lock. */
Darren Hartbeda2c72009-08-09 15:34:39 -07001436 requeue_pi_wake_futex(this, &key2, hb2);
Darren Hart89061d32009-10-15 15:30:48 -07001437 drop_count++;
Darren Hart52400ba2009-04-03 13:40:49 -07001438 continue;
1439 } else if (ret) {
1440 /* -EDEADLK */
1441 this->pi_state = NULL;
1442 free_pi_state(pi_state);
1443 goto out_unlock;
1444 }
1445 }
1446 requeue_futex(this, hb1, hb2, &key2);
1447 drop_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449
1450out_unlock:
Darren Hart5eb3dc62009-03-12 00:55:52 -07001451 double_unlock_hb(hb1, hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Darren Hartcd84a422009-04-02 14:19:38 -07001453 /*
1454 * drop_futex_key_refs() must be called outside the spinlocks. During
1455 * the requeue we moved futex_q's from the hash bucket at key1 to the
1456 * one at key2 and updated their key pointer. We no longer need to
1457 * hold the references to key1.
1458 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 while (--drop_count >= 0)
Rusty Russell9adef582007-05-08 00:26:42 -07001460 drop_futex_key_refs(&key1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Darren Hart42d35d42008-12-29 15:49:53 -08001462out_put_keys:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001463 put_futex_key(&key2);
Darren Hart42d35d42008-12-29 15:49:53 -08001464out_put_key1:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001465 put_futex_key(&key1);
Darren Hart42d35d42008-12-29 15:49:53 -08001466out:
Darren Hart52400ba2009-04-03 13:40:49 -07001467 if (pi_state != NULL)
1468 free_pi_state(pi_state);
1469 return ret ? ret : task_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
1472/* The key must be already stored in q->key. */
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01001473static inline struct futex_hash_bucket *queue_lock(struct futex_q *q)
Namhyung Kim15e408c2010-09-14 21:43:48 +09001474 __acquires(&hb->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Ingo Molnare2970f22006-06-27 02:54:47 -07001476 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Ingo Molnare2970f22006-06-27 02:54:47 -07001478 hb = hash_futex(&q->key);
1479 q->lock_ptr = &hb->lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Ingo Molnare2970f22006-06-27 02:54:47 -07001481 spin_lock(&hb->lock);
1482 return hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
Darren Hartd40d65c2009-09-21 22:30:15 -07001485static inline void
Jason Low0d00c7b2014-01-12 15:31:22 -08001486queue_unlock(struct futex_hash_bucket *hb)
Namhyung Kim15e408c2010-09-14 21:43:48 +09001487 __releases(&hb->lock)
Darren Hartd40d65c2009-09-21 22:30:15 -07001488{
1489 spin_unlock(&hb->lock);
Darren Hartd40d65c2009-09-21 22:30:15 -07001490}
1491
1492/**
1493 * queue_me() - Enqueue the futex_q on the futex_hash_bucket
1494 * @q: The futex_q to enqueue
1495 * @hb: The destination hash bucket
1496 *
1497 * The hb->lock must be held by the caller, and is released here. A call to
1498 * queue_me() is typically paired with exactly one call to unqueue_me(). The
1499 * exceptions involve the PI related operations, which may use unqueue_me_pi()
1500 * or nothing if the unqueue is done as part of the wake process and the unqueue
1501 * state is implicit in the state of woken task (see futex_wait_requeue_pi() for
1502 * an example).
1503 */
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01001504static inline void queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
Namhyung Kim15e408c2010-09-14 21:43:48 +09001505 __releases(&hb->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
Pierre Peifferec92d082007-05-09 02:35:00 -07001507 int prio;
1508
1509 /*
1510 * The priority used to register this element is
1511 * - either the real thread-priority for the real-time threads
1512 * (i.e. threads with a priority lower than MAX_RT_PRIO)
1513 * - or MAX_RT_PRIO for non-RT threads.
1514 * Thus, all RT-threads are woken first in priority order, and
1515 * the others are woken last, in FIFO order.
1516 */
1517 prio = min(current->normal_prio, MAX_RT_PRIO);
1518
1519 plist_node_init(&q->list, prio);
Pierre Peifferec92d082007-05-09 02:35:00 -07001520 plist_add(&q->list, &hb->chain);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001521 q->task = current;
Ingo Molnare2970f22006-06-27 02:54:47 -07001522 spin_unlock(&hb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
1524
Darren Hartd40d65c2009-09-21 22:30:15 -07001525/**
1526 * unqueue_me() - Remove the futex_q from its futex_hash_bucket
1527 * @q: The futex_q to unqueue
1528 *
1529 * The q->lock_ptr must not be held by the caller. A call to unqueue_me() must
1530 * be paired with exactly one earlier call to queue_me().
1531 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001532 * Return:
1533 * 1 - if the futex_q was still queued (and we removed unqueued it);
Darren Hartd40d65c2009-09-21 22:30:15 -07001534 * 0 - if the futex_q was already removed by the waking thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536static int unqueue_me(struct futex_q *q)
1537{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 spinlock_t *lock_ptr;
Ingo Molnare2970f22006-06-27 02:54:47 -07001539 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 /* In the common case we don't take the spinlock, which is nice. */
Darren Hart42d35d42008-12-29 15:49:53 -08001542retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 lock_ptr = q->lock_ptr;
Christian Borntraegere91467e2006-08-05 12:13:52 -07001544 barrier();
Stephen Hemmingerc80544d2007-10-18 03:07:05 -07001545 if (lock_ptr != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 spin_lock(lock_ptr);
1547 /*
1548 * q->lock_ptr can change between reading it and
1549 * spin_lock(), causing us to take the wrong lock. This
1550 * corrects the race condition.
1551 *
1552 * Reasoning goes like this: if we have the wrong lock,
1553 * q->lock_ptr must have changed (maybe several times)
1554 * between reading it and the spin_lock(). It can
1555 * change again after the spin_lock() but only if it was
1556 * already changed before the spin_lock(). It cannot,
1557 * however, change back to the original value. Therefore
1558 * we can detect whether we acquired the correct lock.
1559 */
1560 if (unlikely(lock_ptr != q->lock_ptr)) {
1561 spin_unlock(lock_ptr);
1562 goto retry;
1563 }
Lai Jiangshan2e129782010-12-22 14:18:50 +08001564 __unqueue_futex(q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001565
1566 BUG_ON(q->pi_state);
1567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 spin_unlock(lock_ptr);
1569 ret = 1;
1570 }
1571
Rusty Russell9adef582007-05-08 00:26:42 -07001572 drop_futex_key_refs(&q->key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 return ret;
1574}
1575
Ingo Molnarc87e2832006-06-27 02:54:58 -07001576/*
1577 * PI futexes can not be requeued and must remove themself from the
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001578 * hash bucket. The hash bucket lock (i.e. lock_ptr) is held on entry
1579 * and dropped here.
Ingo Molnarc87e2832006-06-27 02:54:58 -07001580 */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001581static void unqueue_me_pi(struct futex_q *q)
Namhyung Kim15e408c2010-09-14 21:43:48 +09001582 __releases(q->lock_ptr)
Ingo Molnarc87e2832006-06-27 02:54:58 -07001583{
Lai Jiangshan2e129782010-12-22 14:18:50 +08001584 __unqueue_futex(q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001585
1586 BUG_ON(!q->pi_state);
1587 free_pi_state(q->pi_state);
1588 q->pi_state = NULL;
1589
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001590 spin_unlock(q->lock_ptr);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001591}
1592
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001593/*
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001594 * Fixup the pi_state owner with the new owner.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001595 *
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001596 * Must be called with hash bucket lock held and mm->sem held for non
1597 * private futexes.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001598 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001599static int fixup_pi_state_owner(u32 __user *uaddr, struct futex_q *q,
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001600 struct task_struct *newowner)
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001601{
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001602 u32 newtid = task_pid_vnr(newowner) | FUTEX_WAITERS;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001603 struct futex_pi_state *pi_state = q->pi_state;
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001604 struct task_struct *oldowner = pi_state->owner;
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +03001605 u32 uval, uninitialized_var(curval), newval;
Darren Harte4dc5b72009-03-12 00:56:13 -07001606 int ret;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001607
1608 /* Owner died? */
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001609 if (!pi_state->owner)
1610 newtid |= FUTEX_OWNER_DIED;
1611
1612 /*
1613 * We are here either because we stole the rtmutex from the
Lai Jiangshan81612392011-01-14 17:09:41 +08001614 * previous highest priority waiter or we are the highest priority
1615 * waiter but failed to get the rtmutex the first time.
1616 * We have to replace the newowner TID in the user space variable.
1617 * This must be atomic as we have to preserve the owner died bit here.
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001618 *
Darren Hartb2d09942009-03-12 00:55:37 -07001619 * Note: We write the user space value _before_ changing the pi_state
1620 * because we can fault here. Imagine swapped out pages or a fork
1621 * that marked all the anonymous memory readonly for cow.
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001622 *
1623 * Modifying pi_state _before_ the user space value would
1624 * leave the pi_state in an inconsistent state when we fault
1625 * here, because we need to drop the hash bucket lock to
1626 * handle the fault. This might be observed in the PID check
1627 * in lookup_pi_state.
1628 */
1629retry:
1630 if (get_futex_value_locked(&uval, uaddr))
1631 goto handle_fault;
1632
1633 while (1) {
1634 newval = (uval & FUTEX_OWNER_DIED) | newtid;
1635
Michel Lespinasse37a9d912011-03-10 18:48:51 -08001636 if (cmpxchg_futex_value_locked(&curval, uaddr, uval, newval))
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001637 goto handle_fault;
1638 if (curval == uval)
1639 break;
1640 uval = curval;
1641 }
1642
1643 /*
1644 * We fixed up user space. Now we need to fix the pi_state
1645 * itself.
1646 */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001647 if (pi_state->owner != NULL) {
Thomas Gleixner1d615482009-11-17 14:54:03 +01001648 raw_spin_lock_irq(&pi_state->owner->pi_lock);
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001649 WARN_ON(list_empty(&pi_state->list));
1650 list_del_init(&pi_state->list);
Thomas Gleixner1d615482009-11-17 14:54:03 +01001651 raw_spin_unlock_irq(&pi_state->owner->pi_lock);
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001652 }
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001653
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001654 pi_state->owner = newowner;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001655
Thomas Gleixner1d615482009-11-17 14:54:03 +01001656 raw_spin_lock_irq(&newowner->pi_lock);
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001657 WARN_ON(!list_empty(&pi_state->list));
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001658 list_add(&pi_state->list, &newowner->pi_state_list);
Thomas Gleixner1d615482009-11-17 14:54:03 +01001659 raw_spin_unlock_irq(&newowner->pi_lock);
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001660 return 0;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001661
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001662 /*
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001663 * To handle the page fault we need to drop the hash bucket
Lai Jiangshan81612392011-01-14 17:09:41 +08001664 * lock here. That gives the other task (either the highest priority
1665 * waiter itself or the task which stole the rtmutex) the
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001666 * chance to try the fixup of the pi_state. So once we are
1667 * back from handling the fault we need to check the pi_state
1668 * after reacquiring the hash bucket lock and before trying to
1669 * do another fixup. When the fixup has been done already we
1670 * simply return.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001671 */
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001672handle_fault:
1673 spin_unlock(q->lock_ptr);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001674
Thomas Gleixnerd0725992009-06-11 23:15:43 +02001675 ret = fault_in_user_writeable(uaddr);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001676
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001677 spin_lock(q->lock_ptr);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001678
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001679 /*
1680 * Check if someone else fixed it for us:
1681 */
1682 if (pi_state->owner != oldowner)
1683 return 0;
1684
1685 if (ret)
1686 return ret;
1687
1688 goto retry;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001689}
1690
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001691static long futex_wait_restart(struct restart_block *restart);
Thomas Gleixner36cf3b52007-07-15 23:41:20 -07001692
Darren Hartca5f9522009-04-03 13:39:33 -07001693/**
Darren Hartdd973992009-04-03 13:40:02 -07001694 * fixup_owner() - Post lock pi_state and corner case management
1695 * @uaddr: user address of the futex
Darren Hartdd973992009-04-03 13:40:02 -07001696 * @q: futex_q (contains pi_state and access to the rt_mutex)
1697 * @locked: if the attempt to take the rt_mutex succeeded (1) or not (0)
1698 *
1699 * After attempting to lock an rt_mutex, this function is called to cleanup
1700 * the pi_state owner as well as handle race conditions that may allow us to
1701 * acquire the lock. Must be called with the hb lock held.
1702 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001703 * Return:
1704 * 1 - success, lock taken;
1705 * 0 - success, lock not taken;
Darren Hartdd973992009-04-03 13:40:02 -07001706 * <0 - on error (-EFAULT)
1707 */
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001708static int fixup_owner(u32 __user *uaddr, struct futex_q *q, int locked)
Darren Hartdd973992009-04-03 13:40:02 -07001709{
1710 struct task_struct *owner;
1711 int ret = 0;
1712
1713 if (locked) {
1714 /*
1715 * Got the lock. We might not be the anticipated owner if we
1716 * did a lock-steal - fix up the PI-state in that case:
1717 */
1718 if (q->pi_state->owner != current)
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001719 ret = fixup_pi_state_owner(uaddr, q, current);
Darren Hartdd973992009-04-03 13:40:02 -07001720 goto out;
1721 }
1722
1723 /*
1724 * Catch the rare case, where the lock was released when we were on the
1725 * way back before we locked the hash bucket.
1726 */
1727 if (q->pi_state->owner == current) {
1728 /*
1729 * Try to get the rt_mutex now. This might fail as some other
1730 * task acquired the rt_mutex after we removed ourself from the
1731 * rt_mutex waiters list.
1732 */
1733 if (rt_mutex_trylock(&q->pi_state->pi_mutex)) {
1734 locked = 1;
1735 goto out;
1736 }
1737
1738 /*
1739 * pi_state is incorrect, some other task did a lock steal and
1740 * we returned due to timeout or signal without taking the
Lai Jiangshan81612392011-01-14 17:09:41 +08001741 * rt_mutex. Too late.
Darren Hartdd973992009-04-03 13:40:02 -07001742 */
Lai Jiangshan81612392011-01-14 17:09:41 +08001743 raw_spin_lock(&q->pi_state->pi_mutex.wait_lock);
Darren Hartdd973992009-04-03 13:40:02 -07001744 owner = rt_mutex_owner(&q->pi_state->pi_mutex);
Lai Jiangshan81612392011-01-14 17:09:41 +08001745 if (!owner)
1746 owner = rt_mutex_next_owner(&q->pi_state->pi_mutex);
1747 raw_spin_unlock(&q->pi_state->pi_mutex.wait_lock);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001748 ret = fixup_pi_state_owner(uaddr, q, owner);
Darren Hartdd973992009-04-03 13:40:02 -07001749 goto out;
1750 }
1751
1752 /*
1753 * Paranoia check. If we did not take the lock, then we should not be
Lai Jiangshan81612392011-01-14 17:09:41 +08001754 * the owner of the rt_mutex.
Darren Hartdd973992009-04-03 13:40:02 -07001755 */
1756 if (rt_mutex_owner(&q->pi_state->pi_mutex) == current)
1757 printk(KERN_ERR "fixup_owner: ret = %d pi-mutex: %p "
1758 "pi-state %p\n", ret,
1759 q->pi_state->pi_mutex.owner,
1760 q->pi_state->owner);
1761
1762out:
1763 return ret ? ret : locked;
1764}
1765
1766/**
Darren Hartca5f9522009-04-03 13:39:33 -07001767 * futex_wait_queue_me() - queue_me() and wait for wakeup, timeout, or signal
1768 * @hb: the futex hash bucket, must be locked by the caller
1769 * @q: the futex_q to queue up on
1770 * @timeout: the prepared hrtimer_sleeper, or null for no timeout
Darren Hartca5f9522009-04-03 13:39:33 -07001771 */
1772static void futex_wait_queue_me(struct futex_hash_bucket *hb, struct futex_q *q,
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001773 struct hrtimer_sleeper *timeout)
Darren Hartca5f9522009-04-03 13:39:33 -07001774{
Darren Hart9beba3c2009-09-24 11:54:47 -07001775 /*
1776 * The task state is guaranteed to be set before another task can
1777 * wake it. set_current_state() is implemented using set_mb() and
1778 * queue_me() calls spin_unlock() upon completion, both serializing
1779 * access to the hash list and forcing another memory barrier.
1780 */
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001781 set_current_state(TASK_INTERRUPTIBLE);
Darren Hart0729e192009-09-21 22:30:38 -07001782 queue_me(q, hb);
Darren Hartca5f9522009-04-03 13:39:33 -07001783
1784 /* Arm the timer */
1785 if (timeout) {
1786 hrtimer_start_expires(&timeout->timer, HRTIMER_MODE_ABS);
1787 if (!hrtimer_active(&timeout->timer))
1788 timeout->task = NULL;
1789 }
1790
1791 /*
Darren Hart0729e192009-09-21 22:30:38 -07001792 * If we have been removed from the hash list, then another task
1793 * has tried to wake us, and we can skip the call to schedule().
Darren Hartca5f9522009-04-03 13:39:33 -07001794 */
1795 if (likely(!plist_node_empty(&q->list))) {
1796 /*
1797 * If the timer has already expired, current will already be
1798 * flagged for rescheduling. Only call schedule if there
1799 * is no timeout, or if it has yet to expire.
1800 */
1801 if (!timeout || timeout->task)
Colin Cross88c80042013-05-01 18:35:05 -07001802 freezable_schedule();
Darren Hartca5f9522009-04-03 13:39:33 -07001803 }
1804 __set_current_state(TASK_RUNNING);
1805}
1806
Darren Hartf8010732009-04-03 13:40:40 -07001807/**
1808 * futex_wait_setup() - Prepare to wait on a futex
1809 * @uaddr: the futex userspace address
1810 * @val: the expected value
Darren Hartb41277d2010-11-08 13:10:09 -08001811 * @flags: futex flags (FLAGS_SHARED, etc.)
Darren Hartf8010732009-04-03 13:40:40 -07001812 * @q: the associated futex_q
1813 * @hb: storage for hash_bucket pointer to be returned to caller
1814 *
1815 * Setup the futex_q and locate the hash_bucket. Get the futex value and
1816 * compare it with the expected value. Handle atomic faults internally.
1817 * Return with the hb lock held and a q.key reference on success, and unlocked
1818 * with no q.key reference on failure.
1819 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001820 * Return:
1821 * 0 - uaddr contains val and hb has been locked;
Bart Van Asscheca4a04c2011-07-17 09:01:00 +02001822 * <1 - -EFAULT or -EWOULDBLOCK (uaddr does not contain val) and hb is unlocked
Darren Hartf8010732009-04-03 13:40:40 -07001823 */
Darren Hartb41277d2010-11-08 13:10:09 -08001824static int futex_wait_setup(u32 __user *uaddr, u32 val, unsigned int flags,
Darren Hartf8010732009-04-03 13:40:40 -07001825 struct futex_q *q, struct futex_hash_bucket **hb)
1826{
1827 u32 uval;
1828 int ret;
1829
1830 /*
1831 * Access the page AFTER the hash-bucket is locked.
1832 * Order is important:
1833 *
1834 * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
1835 * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); }
1836 *
1837 * The basic logical guarantee of a futex is that it blocks ONLY
1838 * if cond(var) is known to be true at the time of blocking, for
Michel Lespinasse8fe8f542011-03-06 18:07:50 -08001839 * any cond. If we locked the hash-bucket after testing *uaddr, that
1840 * would open a race condition where we could block indefinitely with
Darren Hartf8010732009-04-03 13:40:40 -07001841 * cond(var) false, which would violate the guarantee.
1842 *
Michel Lespinasse8fe8f542011-03-06 18:07:50 -08001843 * On the other hand, we insert q and release the hash-bucket only
1844 * after testing *uaddr. This guarantees that futex_wait() will NOT
1845 * absorb a wakeup if *uaddr does not match the desired values
1846 * while the syscall executes.
Darren Hartf8010732009-04-03 13:40:40 -07001847 */
1848retry:
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001849 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q->key, VERIFY_READ);
Darren Hartf8010732009-04-03 13:40:40 -07001850 if (unlikely(ret != 0))
Darren Harta5a2a0c2009-04-10 09:50:05 -07001851 return ret;
Darren Hartf8010732009-04-03 13:40:40 -07001852
1853retry_private:
1854 *hb = queue_lock(q);
1855
1856 ret = get_futex_value_locked(&uval, uaddr);
1857
1858 if (ret) {
Jason Low0d00c7b2014-01-12 15:31:22 -08001859 queue_unlock(*hb);
Darren Hartf8010732009-04-03 13:40:40 -07001860
1861 ret = get_user(uval, uaddr);
1862 if (ret)
1863 goto out;
1864
Darren Hartb41277d2010-11-08 13:10:09 -08001865 if (!(flags & FLAGS_SHARED))
Darren Hartf8010732009-04-03 13:40:40 -07001866 goto retry_private;
1867
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001868 put_futex_key(&q->key);
Darren Hartf8010732009-04-03 13:40:40 -07001869 goto retry;
1870 }
1871
1872 if (uval != val) {
Jason Low0d00c7b2014-01-12 15:31:22 -08001873 queue_unlock(*hb);
Darren Hartf8010732009-04-03 13:40:40 -07001874 ret = -EWOULDBLOCK;
1875 }
1876
1877out:
1878 if (ret)
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001879 put_futex_key(&q->key);
Darren Hartf8010732009-04-03 13:40:40 -07001880 return ret;
1881}
1882
Darren Hartb41277d2010-11-08 13:10:09 -08001883static int futex_wait(u32 __user *uaddr, unsigned int flags, u32 val,
1884 ktime_t *abs_time, u32 bitset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
Darren Hartca5f9522009-04-03 13:39:33 -07001886 struct hrtimer_sleeper timeout, *to = NULL;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001887 struct restart_block *restart;
Ingo Molnare2970f22006-06-27 02:54:47 -07001888 struct futex_hash_bucket *hb;
Darren Hart5bdb05f2010-11-08 13:40:28 -08001889 struct futex_q q = futex_q_init;
Ingo Molnare2970f22006-06-27 02:54:47 -07001890 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Thomas Gleixnercd689982008-02-01 17:45:14 +01001892 if (!bitset)
1893 return -EINVAL;
Thomas Gleixnercd689982008-02-01 17:45:14 +01001894 q.bitset = bitset;
Darren Hartca5f9522009-04-03 13:39:33 -07001895
1896 if (abs_time) {
1897 to = &timeout;
1898
Darren Hartb41277d2010-11-08 13:10:09 -08001899 hrtimer_init_on_stack(&to->timer, (flags & FLAGS_CLOCKRT) ?
1900 CLOCK_REALTIME : CLOCK_MONOTONIC,
1901 HRTIMER_MODE_ABS);
Darren Hartca5f9522009-04-03 13:39:33 -07001902 hrtimer_init_sleeper(to, current);
1903 hrtimer_set_expires_range_ns(&to->timer, *abs_time,
1904 current->timer_slack_ns);
1905 }
1906
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02001907retry:
Darren Hart7ada8762010-10-17 08:35:04 -07001908 /*
1909 * Prepare to wait on uaddr. On success, holds hb lock and increments
1910 * q.key refs.
1911 */
Darren Hartb41277d2010-11-08 13:10:09 -08001912 ret = futex_wait_setup(uaddr, val, flags, &q, &hb);
Darren Hartf8010732009-04-03 13:40:40 -07001913 if (ret)
Darren Hart42d35d42008-12-29 15:49:53 -08001914 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Darren Hartca5f9522009-04-03 13:39:33 -07001916 /* queue_me and wait for wakeup, timeout, or a signal. */
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001917 futex_wait_queue_me(hb, &q, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919 /* If we were woken (and unqueued), we succeeded, whatever. */
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001920 ret = 0;
Darren Hart7ada8762010-10-17 08:35:04 -07001921 /* unqueue_me() drops q.key ref */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if (!unqueue_me(&q))
Darren Hart7ada8762010-10-17 08:35:04 -07001923 goto out;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001924 ret = -ETIMEDOUT;
Darren Hartca5f9522009-04-03 13:39:33 -07001925 if (to && !to->task)
Darren Hart7ada8762010-10-17 08:35:04 -07001926 goto out;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001927
Ingo Molnare2970f22006-06-27 02:54:47 -07001928 /*
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02001929 * We expect signal_pending(current), but we might be the
1930 * victim of a spurious wakeup as well.
Ingo Molnare2970f22006-06-27 02:54:47 -07001931 */
Darren Hart7ada8762010-10-17 08:35:04 -07001932 if (!signal_pending(current))
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02001933 goto retry;
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02001934
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001935 ret = -ERESTARTSYS;
Pierre Peifferc19384b2007-05-09 02:35:02 -07001936 if (!abs_time)
Darren Hart7ada8762010-10-17 08:35:04 -07001937 goto out;
Steven Rostedtce6bd422007-12-05 15:46:09 +01001938
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001939 restart = &current_thread_info()->restart_block;
1940 restart->fn = futex_wait_restart;
Namhyung Kima3c74c52010-09-14 21:43:47 +09001941 restart->futex.uaddr = uaddr;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001942 restart->futex.val = val;
1943 restart->futex.time = abs_time->tv64;
1944 restart->futex.bitset = bitset;
Darren Hart0cd9c642011-04-14 15:41:57 -07001945 restart->futex.flags = flags | FLAGS_HAS_TIMEOUT;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01001946
1947 ret = -ERESTART_RESTARTBLOCK;
1948
Darren Hart42d35d42008-12-29 15:49:53 -08001949out:
Darren Hartca5f9522009-04-03 13:39:33 -07001950 if (to) {
1951 hrtimer_cancel(&to->timer);
1952 destroy_hrtimer_on_stack(&to->timer);
1953 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001954 return ret;
1955}
1956
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001957
1958static long futex_wait_restart(struct restart_block *restart)
1959{
Namhyung Kima3c74c52010-09-14 21:43:47 +09001960 u32 __user *uaddr = restart->futex.uaddr;
Darren Harta72188d2009-04-03 13:40:22 -07001961 ktime_t t, *tp = NULL;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001962
Darren Harta72188d2009-04-03 13:40:22 -07001963 if (restart->futex.flags & FLAGS_HAS_TIMEOUT) {
1964 t.tv64 = restart->futex.time;
1965 tp = &t;
1966 }
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001967 restart->fn = do_no_restart_syscall;
Darren Hartb41277d2010-11-08 13:10:09 -08001968
1969 return (long)futex_wait(uaddr, restart->futex.flags,
1970 restart->futex.val, tp, restart->futex.bitset);
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001971}
1972
1973
Ingo Molnarc87e2832006-06-27 02:54:58 -07001974/*
1975 * Userspace tried a 0 -> TID atomic transition of the futex value
1976 * and failed. The kernel side here does the whole locking operation:
1977 * if there are waiters then it will block, it does PI, etc. (Due to
1978 * races the kernel might see a 0 value of the futex too.)
1979 */
Darren Hartb41277d2010-11-08 13:10:09 -08001980static int futex_lock_pi(u32 __user *uaddr, unsigned int flags, int detect,
1981 ktime_t *time, int trylock)
Ingo Molnarc87e2832006-06-27 02:54:58 -07001982{
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001983 struct hrtimer_sleeper timeout, *to = NULL;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001984 struct futex_hash_bucket *hb;
Darren Hart5bdb05f2010-11-08 13:40:28 -08001985 struct futex_q q = futex_q_init;
Darren Hartdd973992009-04-03 13:40:02 -07001986 int res, ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001987
1988 if (refill_pi_state_cache())
1989 return -ENOMEM;
1990
Pierre Peifferc19384b2007-05-09 02:35:02 -07001991 if (time) {
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001992 to = &timeout;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07001993 hrtimer_init_on_stack(&to->timer, CLOCK_REALTIME,
1994 HRTIMER_MODE_ABS);
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001995 hrtimer_init_sleeper(to, current);
Arjan van de Vencc584b22008-09-01 15:02:30 -07001996 hrtimer_set_expires(&to->timer, *time);
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07001997 }
1998
Darren Hart42d35d42008-12-29 15:49:53 -08001999retry:
Shawn Bohrer9ea71502011-06-30 11:21:32 -05002000 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q.key, VERIFY_WRITE);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002001 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08002002 goto out;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002003
Darren Harte4dc5b72009-03-12 00:56:13 -07002004retry_private:
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01002005 hb = queue_lock(&q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002006
Darren Hartbab5bc92009-04-07 23:23:50 -07002007 ret = futex_lock_pi_atomic(uaddr, hb, &q.key, &q.pi_state, current, 0);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002008 if (unlikely(ret)) {
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002009 switch (ret) {
Darren Hart1a520842009-04-03 13:39:52 -07002010 case 1:
2011 /* We got the lock. */
2012 ret = 0;
2013 goto out_unlock_put_key;
2014 case -EFAULT:
2015 goto uaddr_faulted;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002016 case -EAGAIN:
2017 /*
2018 * Task is exiting and we just wait for the
2019 * exit to complete.
2020 */
Jason Low0d00c7b2014-01-12 15:31:22 -08002021 queue_unlock(hb);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002022 put_futex_key(&q.key);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002023 cond_resched();
2024 goto retry;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002025 default:
Darren Hart42d35d42008-12-29 15:49:53 -08002026 goto out_unlock_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002027 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07002028 }
2029
2030 /*
2031 * Only actually queue now that the atomic ops are done:
2032 */
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01002033 queue_me(&q, hb);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002034
Ingo Molnarc87e2832006-06-27 02:54:58 -07002035 WARN_ON(!q.pi_state);
2036 /*
2037 * Block on the PI mutex:
2038 */
2039 if (!trylock)
2040 ret = rt_mutex_timed_lock(&q.pi_state->pi_mutex, to, 1);
2041 else {
2042 ret = rt_mutex_trylock(&q.pi_state->pi_mutex);
2043 /* Fixup the trylock return value: */
2044 ret = ret ? 0 : -EWOULDBLOCK;
2045 }
2046
Vernon Mauerya99e4e42006-07-01 04:35:42 -07002047 spin_lock(q.lock_ptr);
Darren Hartdd973992009-04-03 13:40:02 -07002048 /*
2049 * Fixup the pi_state owner and possibly acquire the lock if we
2050 * haven't already.
2051 */
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002052 res = fixup_owner(uaddr, &q, !ret);
Darren Hartdd973992009-04-03 13:40:02 -07002053 /*
2054 * If fixup_owner() returned an error, proprogate that. If it acquired
2055 * the lock, clear our -ETIMEDOUT or -EINTR.
2056 */
2057 if (res)
2058 ret = (res < 0) ? res : 0;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002059
Darren Harte8f63862009-03-12 00:56:06 -07002060 /*
Darren Hartdd973992009-04-03 13:40:02 -07002061 * If fixup_owner() faulted and was unable to handle the fault, unlock
2062 * it and return the fault to userspace.
Darren Harte8f63862009-03-12 00:56:06 -07002063 */
2064 if (ret && (rt_mutex_owner(&q.pi_state->pi_mutex) == current))
2065 rt_mutex_unlock(&q.pi_state->pi_mutex);
2066
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002067 /* Unqueue and drop the lock */
2068 unqueue_me_pi(&q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002069
Mikael Pettersson5ecb01c2010-01-23 22:36:29 +01002070 goto out_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002071
Darren Hart42d35d42008-12-29 15:49:53 -08002072out_unlock_put_key:
Jason Low0d00c7b2014-01-12 15:31:22 -08002073 queue_unlock(hb);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002074
Darren Hart42d35d42008-12-29 15:49:53 -08002075out_put_key:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002076 put_futex_key(&q.key);
Darren Hart42d35d42008-12-29 15:49:53 -08002077out:
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07002078 if (to)
2079 destroy_hrtimer_on_stack(&to->timer);
Darren Hartdd973992009-04-03 13:40:02 -07002080 return ret != -EINTR ? ret : -ERESTARTNOINTR;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002081
Darren Hart42d35d42008-12-29 15:49:53 -08002082uaddr_faulted:
Jason Low0d00c7b2014-01-12 15:31:22 -08002083 queue_unlock(hb);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002084
Thomas Gleixnerd0725992009-06-11 23:15:43 +02002085 ret = fault_in_user_writeable(uaddr);
Darren Harte4dc5b72009-03-12 00:56:13 -07002086 if (ret)
2087 goto out_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002088
Darren Hartb41277d2010-11-08 13:10:09 -08002089 if (!(flags & FLAGS_SHARED))
Darren Harte4dc5b72009-03-12 00:56:13 -07002090 goto retry_private;
2091
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002092 put_futex_key(&q.key);
Darren Harte4dc5b72009-03-12 00:56:13 -07002093 goto retry;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002094}
2095
2096/*
Ingo Molnarc87e2832006-06-27 02:54:58 -07002097 * Userspace attempted a TID -> 0 atomic transition, and failed.
2098 * This is the in-kernel slowpath: we look up the PI state (if any),
2099 * and do the rt-mutex unlock.
2100 */
Darren Hartb41277d2010-11-08 13:10:09 -08002101static int futex_unlock_pi(u32 __user *uaddr, unsigned int flags)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002102{
2103 struct futex_hash_bucket *hb;
2104 struct futex_q *this, *next;
Peter Zijlstra38d47c12008-09-26 19:32:20 +02002105 union futex_key key = FUTEX_KEY_INIT;
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +01002106 u32 uval, vpid = task_pid_vnr(current);
Darren Harte4dc5b72009-03-12 00:56:13 -07002107 int ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002108
2109retry:
2110 if (get_user(uval, uaddr))
2111 return -EFAULT;
2112 /*
2113 * We release only a lock we actually own:
2114 */
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +01002115 if ((uval & FUTEX_TID_MASK) != vpid)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002116 return -EPERM;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002117
Shawn Bohrer9ea71502011-06-30 11:21:32 -05002118 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, VERIFY_WRITE);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002119 if (unlikely(ret != 0))
2120 goto out;
2121
2122 hb = hash_futex(&key);
2123 spin_lock(&hb->lock);
2124
Ingo Molnarc87e2832006-06-27 02:54:58 -07002125 /*
2126 * To avoid races, try to do the TID -> 0 atomic transition
2127 * again. If it succeeds then we can return without waking
2128 * anyone else up:
2129 */
Michel Lespinasse37a9d912011-03-10 18:48:51 -08002130 if (!(uval & FUTEX_OWNER_DIED) &&
2131 cmpxchg_futex_value_locked(&uval, uaddr, vpid, 0))
Ingo Molnarc87e2832006-06-27 02:54:58 -07002132 goto pi_faulted;
2133 /*
2134 * Rare case: we managed to release the lock atomically,
2135 * no need to wake anyone else up:
2136 */
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +01002137 if (unlikely(uval == vpid))
Ingo Molnarc87e2832006-06-27 02:54:58 -07002138 goto out_unlock;
2139
2140 /*
2141 * Ok, other tasks may need to be woken up - check waiters
2142 * and do the wakeup if necessary:
2143 */
Jason Low0d00c7b2014-01-12 15:31:22 -08002144 plist_for_each_entry_safe(this, next, &hb->chain, list) {
Ingo Molnarc87e2832006-06-27 02:54:58 -07002145 if (!match_futex (&this->key, &key))
2146 continue;
2147 ret = wake_futex_pi(uaddr, uval, this);
2148 /*
2149 * The atomic access to the futex value
2150 * generated a pagefault, so retry the
2151 * user-access and the wakeup:
2152 */
2153 if (ret == -EFAULT)
2154 goto pi_faulted;
2155 goto out_unlock;
2156 }
2157 /*
2158 * No waiters - kernel unlocks the futex:
2159 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002160 if (!(uval & FUTEX_OWNER_DIED)) {
2161 ret = unlock_futex_pi(uaddr, uval);
2162 if (ret == -EFAULT)
2163 goto pi_faulted;
2164 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07002165
2166out_unlock:
2167 spin_unlock(&hb->lock);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002168 put_futex_key(&key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002169
Darren Hart42d35d42008-12-29 15:49:53 -08002170out:
Ingo Molnarc87e2832006-06-27 02:54:58 -07002171 return ret;
2172
2173pi_faulted:
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002174 spin_unlock(&hb->lock);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002175 put_futex_key(&key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002176
Thomas Gleixnerd0725992009-06-11 23:15:43 +02002177 ret = fault_in_user_writeable(uaddr);
Darren Hartb5686362008-12-18 15:06:34 -08002178 if (!ret)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002179 goto retry;
2180
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 return ret;
2182}
2183
Darren Hart52400ba2009-04-03 13:40:49 -07002184/**
2185 * handle_early_requeue_pi_wakeup() - Detect early wakeup on the initial futex
2186 * @hb: the hash_bucket futex_q was original enqueued on
2187 * @q: the futex_q woken while waiting to be requeued
2188 * @key2: the futex_key of the requeue target futex
2189 * @timeout: the timeout associated with the wait (NULL if none)
2190 *
2191 * Detect if the task was woken on the initial futex as opposed to the requeue
2192 * target futex. If so, determine if it was a timeout or a signal that caused
2193 * the wakeup and return the appropriate error code to the caller. Must be
2194 * called with the hb lock held.
2195 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08002196 * Return:
2197 * 0 = no early wakeup detected;
2198 * <0 = -ETIMEDOUT or -ERESTARTNOINTR
Darren Hart52400ba2009-04-03 13:40:49 -07002199 */
2200static inline
2201int handle_early_requeue_pi_wakeup(struct futex_hash_bucket *hb,
2202 struct futex_q *q, union futex_key *key2,
2203 struct hrtimer_sleeper *timeout)
2204{
2205 int ret = 0;
2206
2207 /*
2208 * With the hb lock held, we avoid races while we process the wakeup.
2209 * We only need to hold hb (and not hb2) to ensure atomicity as the
2210 * wakeup code can't change q.key from uaddr to uaddr2 if we hold hb.
2211 * It can't be requeued from uaddr2 to something else since we don't
2212 * support a PI aware source futex for requeue.
2213 */
2214 if (!match_futex(&q->key, key2)) {
2215 WARN_ON(q->lock_ptr && (&hb->lock != q->lock_ptr));
2216 /*
2217 * We were woken prior to requeue by a timeout or a signal.
2218 * Unqueue the futex_q and determine which it was.
2219 */
Lai Jiangshan2e129782010-12-22 14:18:50 +08002220 plist_del(&q->list, &hb->chain);
Darren Hart52400ba2009-04-03 13:40:49 -07002221
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002222 /* Handle spurious wakeups gracefully */
Thomas Gleixner11df6dd2009-10-28 20:26:48 +01002223 ret = -EWOULDBLOCK;
Darren Hart52400ba2009-04-03 13:40:49 -07002224 if (timeout && !timeout->task)
2225 ret = -ETIMEDOUT;
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002226 else if (signal_pending(current))
Thomas Gleixner1c840c12009-05-20 09:22:40 +02002227 ret = -ERESTARTNOINTR;
Darren Hart52400ba2009-04-03 13:40:49 -07002228 }
2229 return ret;
2230}
2231
2232/**
2233 * futex_wait_requeue_pi() - Wait on uaddr and take uaddr2
Darren Hart56ec1602009-09-21 22:29:59 -07002234 * @uaddr: the futex we initially wait on (non-pi)
Darren Hartb41277d2010-11-08 13:10:09 -08002235 * @flags: futex flags (FLAGS_SHARED, FLAGS_CLOCKRT, etc.), they must be
Darren Hart52400ba2009-04-03 13:40:49 -07002236 * the same type, no requeueing from private to shared, etc.
2237 * @val: the expected value of uaddr
2238 * @abs_time: absolute timeout
Darren Hart56ec1602009-09-21 22:29:59 -07002239 * @bitset: 32 bit wakeup bitset set by userspace, defaults to all
Darren Hart52400ba2009-04-03 13:40:49 -07002240 * @uaddr2: the pi futex we will take prior to returning to user-space
2241 *
2242 * The caller will wait on uaddr and will be requeued by futex_requeue() to
Darren Hart6f7b0a22012-07-20 11:53:31 -07002243 * uaddr2 which must be PI aware and unique from uaddr. Normal wakeup will wake
2244 * on uaddr2 and complete the acquisition of the rt_mutex prior to returning to
2245 * userspace. This ensures the rt_mutex maintains an owner when it has waiters;
2246 * without one, the pi logic would not know which task to boost/deboost, if
2247 * there was a need to.
Darren Hart52400ba2009-04-03 13:40:49 -07002248 *
2249 * We call schedule in futex_wait_queue_me() when we enqueue and return there
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08002250 * via the following--
Darren Hart52400ba2009-04-03 13:40:49 -07002251 * 1) wakeup on uaddr2 after an atomic lock acquisition by futex_requeue()
Darren Hartcc6db4e2009-07-31 16:20:10 -07002252 * 2) wakeup on uaddr2 after a requeue
2253 * 3) signal
2254 * 4) timeout
Darren Hart52400ba2009-04-03 13:40:49 -07002255 *
Darren Hartcc6db4e2009-07-31 16:20:10 -07002256 * If 3, cleanup and return -ERESTARTNOINTR.
Darren Hart52400ba2009-04-03 13:40:49 -07002257 *
2258 * If 2, we may then block on trying to take the rt_mutex and return via:
2259 * 5) successful lock
2260 * 6) signal
2261 * 7) timeout
2262 * 8) other lock acquisition failure
2263 *
Darren Hartcc6db4e2009-07-31 16:20:10 -07002264 * If 6, return -EWOULDBLOCK (restarting the syscall would do the same).
Darren Hart52400ba2009-04-03 13:40:49 -07002265 *
2266 * If 4 or 7, we cleanup and return with -ETIMEDOUT.
2267 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08002268 * Return:
2269 * 0 - On success;
Darren Hart52400ba2009-04-03 13:40:49 -07002270 * <0 - On error
2271 */
Darren Hartb41277d2010-11-08 13:10:09 -08002272static int futex_wait_requeue_pi(u32 __user *uaddr, unsigned int flags,
Darren Hart52400ba2009-04-03 13:40:49 -07002273 u32 val, ktime_t *abs_time, u32 bitset,
Darren Hartb41277d2010-11-08 13:10:09 -08002274 u32 __user *uaddr2)
Darren Hart52400ba2009-04-03 13:40:49 -07002275{
2276 struct hrtimer_sleeper timeout, *to = NULL;
2277 struct rt_mutex_waiter rt_waiter;
2278 struct rt_mutex *pi_mutex = NULL;
Darren Hart52400ba2009-04-03 13:40:49 -07002279 struct futex_hash_bucket *hb;
Darren Hart5bdb05f2010-11-08 13:40:28 -08002280 union futex_key key2 = FUTEX_KEY_INIT;
2281 struct futex_q q = futex_q_init;
Darren Hart52400ba2009-04-03 13:40:49 -07002282 int res, ret;
Darren Hart52400ba2009-04-03 13:40:49 -07002283
Darren Hart6f7b0a22012-07-20 11:53:31 -07002284 if (uaddr == uaddr2)
2285 return -EINVAL;
2286
Darren Hart52400ba2009-04-03 13:40:49 -07002287 if (!bitset)
2288 return -EINVAL;
2289
2290 if (abs_time) {
2291 to = &timeout;
Darren Hartb41277d2010-11-08 13:10:09 -08002292 hrtimer_init_on_stack(&to->timer, (flags & FLAGS_CLOCKRT) ?
2293 CLOCK_REALTIME : CLOCK_MONOTONIC,
2294 HRTIMER_MODE_ABS);
Darren Hart52400ba2009-04-03 13:40:49 -07002295 hrtimer_init_sleeper(to, current);
2296 hrtimer_set_expires_range_ns(&to->timer, *abs_time,
2297 current->timer_slack_ns);
2298 }
2299
2300 /*
2301 * The waiter is allocated on our stack, manipulated by the requeue
2302 * code while we sleep on uaddr.
2303 */
2304 debug_rt_mutex_init_waiter(&rt_waiter);
2305 rt_waiter.task = NULL;
2306
Shawn Bohrer9ea71502011-06-30 11:21:32 -05002307 ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, VERIFY_WRITE);
Darren Hart52400ba2009-04-03 13:40:49 -07002308 if (unlikely(ret != 0))
2309 goto out;
2310
Darren Hart84bc4af2009-08-13 17:36:53 -07002311 q.bitset = bitset;
2312 q.rt_waiter = &rt_waiter;
2313 q.requeue_pi_key = &key2;
2314
Darren Hart7ada8762010-10-17 08:35:04 -07002315 /*
2316 * Prepare to wait on uaddr. On success, increments q.key (key1) ref
2317 * count.
2318 */
Darren Hartb41277d2010-11-08 13:10:09 -08002319 ret = futex_wait_setup(uaddr, val, flags, &q, &hb);
Thomas Gleixnerc8b15a72009-05-20 09:18:50 +02002320 if (ret)
2321 goto out_key2;
Darren Hart52400ba2009-04-03 13:40:49 -07002322
2323 /* Queue the futex_q, drop the hb lock, wait for wakeup. */
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02002324 futex_wait_queue_me(hb, &q, to);
Darren Hart52400ba2009-04-03 13:40:49 -07002325
2326 spin_lock(&hb->lock);
2327 ret = handle_early_requeue_pi_wakeup(hb, &q, &key2, to);
2328 spin_unlock(&hb->lock);
2329 if (ret)
2330 goto out_put_keys;
2331
2332 /*
2333 * In order for us to be here, we know our q.key == key2, and since
2334 * we took the hb->lock above, we also know that futex_requeue() has
2335 * completed and we no longer have to concern ourselves with a wakeup
Darren Hart7ada8762010-10-17 08:35:04 -07002336 * race with the atomic proxy lock acquisition by the requeue code. The
2337 * futex_requeue dropped our key1 reference and incremented our key2
2338 * reference count.
Darren Hart52400ba2009-04-03 13:40:49 -07002339 */
2340
2341 /* Check if the requeue code acquired the second futex for us. */
2342 if (!q.rt_waiter) {
2343 /*
2344 * Got the lock. We might not be the anticipated owner if we
2345 * did a lock-steal - fix up the PI-state in that case.
2346 */
2347 if (q.pi_state && (q.pi_state->owner != current)) {
2348 spin_lock(q.lock_ptr);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002349 ret = fixup_pi_state_owner(uaddr2, &q, current);
Darren Hart52400ba2009-04-03 13:40:49 -07002350 spin_unlock(q.lock_ptr);
2351 }
2352 } else {
2353 /*
2354 * We have been woken up by futex_unlock_pi(), a timeout, or a
2355 * signal. futex_unlock_pi() will not destroy the lock_ptr nor
2356 * the pi_state.
2357 */
Darren Hartf27071c2012-07-20 11:53:30 -07002358 WARN_ON(!q.pi_state);
Darren Hart52400ba2009-04-03 13:40:49 -07002359 pi_mutex = &q.pi_state->pi_mutex;
2360 ret = rt_mutex_finish_proxy_lock(pi_mutex, to, &rt_waiter, 1);
2361 debug_rt_mutex_free_waiter(&rt_waiter);
2362
2363 spin_lock(q.lock_ptr);
2364 /*
2365 * Fixup the pi_state owner and possibly acquire the lock if we
2366 * haven't already.
2367 */
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002368 res = fixup_owner(uaddr2, &q, !ret);
Darren Hart52400ba2009-04-03 13:40:49 -07002369 /*
2370 * If fixup_owner() returned an error, proprogate that. If it
Darren Hart56ec1602009-09-21 22:29:59 -07002371 * acquired the lock, clear -ETIMEDOUT or -EINTR.
Darren Hart52400ba2009-04-03 13:40:49 -07002372 */
2373 if (res)
2374 ret = (res < 0) ? res : 0;
2375
2376 /* Unqueue and drop the lock. */
2377 unqueue_me_pi(&q);
2378 }
2379
2380 /*
2381 * If fixup_pi_state_owner() faulted and was unable to handle the
2382 * fault, unlock the rt_mutex and return the fault to userspace.
2383 */
2384 if (ret == -EFAULT) {
Darren Hartb6070a82012-07-20 11:53:29 -07002385 if (pi_mutex && rt_mutex_owner(pi_mutex) == current)
Darren Hart52400ba2009-04-03 13:40:49 -07002386 rt_mutex_unlock(pi_mutex);
2387 } else if (ret == -EINTR) {
Darren Hart52400ba2009-04-03 13:40:49 -07002388 /*
Darren Hartcc6db4e2009-07-31 16:20:10 -07002389 * We've already been requeued, but cannot restart by calling
2390 * futex_lock_pi() directly. We could restart this syscall, but
2391 * it would detect that the user space "val" changed and return
2392 * -EWOULDBLOCK. Save the overhead of the restart and return
2393 * -EWOULDBLOCK directly.
Darren Hart52400ba2009-04-03 13:40:49 -07002394 */
Thomas Gleixner20708872009-05-19 23:04:59 +02002395 ret = -EWOULDBLOCK;
Darren Hart52400ba2009-04-03 13:40:49 -07002396 }
2397
2398out_put_keys:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002399 put_futex_key(&q.key);
Thomas Gleixnerc8b15a72009-05-20 09:18:50 +02002400out_key2:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002401 put_futex_key(&key2);
Darren Hart52400ba2009-04-03 13:40:49 -07002402
2403out:
2404 if (to) {
2405 hrtimer_cancel(&to->timer);
2406 destroy_hrtimer_on_stack(&to->timer);
2407 }
2408 return ret;
2409}
2410
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002411/*
2412 * Support for robust futexes: the kernel cleans up held futexes at
2413 * thread exit time.
2414 *
2415 * Implementation: user-space maintains a per-thread list of locks it
2416 * is holding. Upon do_exit(), the kernel carefully walks this list,
2417 * and marks all locks that are owned by this thread with the
Ingo Molnarc87e2832006-06-27 02:54:58 -07002418 * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002419 * always manipulated with the lock held, so the list is private and
2420 * per-thread. Userspace also maintains a per-thread 'list_op_pending'
2421 * field, to allow the kernel to clean up if the thread dies after
2422 * acquiring the lock, but just before it could have added itself to
2423 * the list. There can only be one such pending lock.
2424 */
2425
2426/**
Darren Hartd96ee562009-09-21 22:30:22 -07002427 * sys_set_robust_list() - Set the robust-futex list head of a task
2428 * @head: pointer to the list-head
2429 * @len: length of the list-head, as userspace expects
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002430 */
Heiko Carstens836f92a2009-01-14 14:14:33 +01002431SYSCALL_DEFINE2(set_robust_list, struct robust_list_head __user *, head,
2432 size_t, len)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002433{
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002434 if (!futex_cmpxchg_enabled)
2435 return -ENOSYS;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002436 /*
2437 * The kernel knows only one size for now:
2438 */
2439 if (unlikely(len != sizeof(*head)))
2440 return -EINVAL;
2441
2442 current->robust_list = head;
2443
2444 return 0;
2445}
2446
2447/**
Darren Hartd96ee562009-09-21 22:30:22 -07002448 * sys_get_robust_list() - Get the robust-futex list head of a task
2449 * @pid: pid of the process [zero for current task]
2450 * @head_ptr: pointer to a list-head pointer, the kernel fills it in
2451 * @len_ptr: pointer to a length field, the kernel fills in the header size
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002452 */
Heiko Carstens836f92a2009-01-14 14:14:33 +01002453SYSCALL_DEFINE3(get_robust_list, int, pid,
2454 struct robust_list_head __user * __user *, head_ptr,
2455 size_t __user *, len_ptr)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002456{
Al Viroba46df92006-10-10 22:46:07 +01002457 struct robust_list_head __user *head;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002458 unsigned long ret;
Kees Cookbdbb7762012-03-19 16:12:53 -07002459 struct task_struct *p;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002460
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002461 if (!futex_cmpxchg_enabled)
2462 return -ENOSYS;
2463
Kees Cookbdbb7762012-03-19 16:12:53 -07002464 rcu_read_lock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002465
Kees Cookbdbb7762012-03-19 16:12:53 -07002466 ret = -ESRCH;
2467 if (!pid)
2468 p = current;
2469 else {
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07002470 p = find_task_by_vpid(pid);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002471 if (!p)
2472 goto err_unlock;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002473 }
2474
Kees Cookbdbb7762012-03-19 16:12:53 -07002475 ret = -EPERM;
2476 if (!ptrace_may_access(p, PTRACE_MODE_READ))
2477 goto err_unlock;
2478
2479 head = p->robust_list;
2480 rcu_read_unlock();
2481
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002482 if (put_user(sizeof(*head), len_ptr))
2483 return -EFAULT;
2484 return put_user(head, head_ptr);
2485
2486err_unlock:
Oleg Nesterovaaa2a972006-09-29 02:00:55 -07002487 rcu_read_unlock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002488
2489 return ret;
2490}
2491
2492/*
2493 * Process a futex-list entry, check whether it's owned by the
2494 * dying task, and do notification if so:
2495 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002496int handle_futex_death(u32 __user *uaddr, struct task_struct *curr, int pi)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002497{
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +03002498 u32 uval, uninitialized_var(nval), mval;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002499
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08002500retry:
2501 if (get_user(uval, uaddr))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002502 return -1;
2503
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002504 if ((uval & FUTEX_TID_MASK) == task_pid_vnr(curr)) {
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002505 /*
2506 * Ok, this dying thread is truly holding a futex
2507 * of interest. Set the OWNER_DIED bit atomically
2508 * via cmpxchg, and if the value had FUTEX_WAITERS
2509 * set, wake up a waiter (if any). (We have to do a
2510 * futex_wake() even if OWNER_DIED is already set -
2511 * to handle the rare but possible case of recursive
2512 * thread-death.) The rest of the cleanup is done in
2513 * userspace.
2514 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002515 mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED;
Thomas Gleixner6e0aa9f2011-03-14 10:34:35 +01002516 /*
2517 * We are not holding a lock here, but we want to have
2518 * the pagefault_disable/enable() protection because
2519 * we want to handle the fault gracefully. If the
2520 * access fails we try to fault in the futex with R/W
2521 * verification via get_user_pages. get_user() above
2522 * does not guarantee R/W access. If that fails we
2523 * give up and leave the futex locked.
2524 */
2525 if (cmpxchg_futex_value_locked(&nval, uaddr, uval, mval)) {
2526 if (fault_in_user_writeable(uaddr))
2527 return -1;
2528 goto retry;
2529 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07002530 if (nval != uval)
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08002531 goto retry;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002532
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002533 /*
2534 * Wake robust non-PI futexes here. The wakeup of
2535 * PI futexes happens in exit_pi_state():
2536 */
Thomas Gleixner36cf3b52007-07-15 23:41:20 -07002537 if (!pi && (uval & FUTEX_WAITERS))
Peter Zijlstrac2f9f202008-09-26 19:32:23 +02002538 futex_wake(uaddr, 1, 1, FUTEX_BITSET_MATCH_ANY);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002539 }
2540 return 0;
2541}
2542
2543/*
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002544 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
2545 */
2546static inline int fetch_robust_entry(struct robust_list __user **entry,
Al Viroba46df92006-10-10 22:46:07 +01002547 struct robust_list __user * __user *head,
Namhyung Kim1dcc41b2010-09-14 21:43:46 +09002548 unsigned int *pi)
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002549{
2550 unsigned long uentry;
2551
Al Viroba46df92006-10-10 22:46:07 +01002552 if (get_user(uentry, (unsigned long __user *)head))
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002553 return -EFAULT;
2554
Al Viroba46df92006-10-10 22:46:07 +01002555 *entry = (void __user *)(uentry & ~1UL);
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002556 *pi = uentry & 1;
2557
2558 return 0;
2559}
2560
2561/*
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002562 * Walk curr->robust_list (very carefully, it's a userspace list!)
2563 * and mark any locks found there dead, and notify any waiters.
2564 *
2565 * We silently return on any sign of list-walking problem.
2566 */
2567void exit_robust_list(struct task_struct *curr)
2568{
2569 struct robust_list_head __user *head = curr->robust_list;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002570 struct robust_list __user *entry, *next_entry, *pending;
Darren Hart4c115e92010-11-04 15:00:00 -04002571 unsigned int limit = ROBUST_LIST_LIMIT, pi, pip;
2572 unsigned int uninitialized_var(next_pi);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002573 unsigned long futex_offset;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002574 int rc;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002575
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002576 if (!futex_cmpxchg_enabled)
2577 return;
2578
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002579 /*
2580 * Fetch the list head (which was registered earlier, via
2581 * sys_set_robust_list()):
2582 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002583 if (fetch_robust_entry(&entry, &head->list.next, &pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002584 return;
2585 /*
2586 * Fetch the relative futex offset:
2587 */
2588 if (get_user(futex_offset, &head->futex_offset))
2589 return;
2590 /*
2591 * Fetch any possibly pending lock-add first, and handle it
2592 * if it exists:
2593 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002594 if (fetch_robust_entry(&pending, &head->list_op_pending, &pip))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002595 return;
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002596
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002597 next_entry = NULL; /* avoid warning with gcc */
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002598 while (entry != &head->list) {
2599 /*
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002600 * Fetch the next entry in the list before calling
2601 * handle_futex_death:
2602 */
2603 rc = fetch_robust_entry(&next_entry, &entry->next, &next_pi);
2604 /*
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002605 * A pending lock might already be on the list, so
Ingo Molnarc87e2832006-06-27 02:54:58 -07002606 * don't process it twice:
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002607 */
2608 if (entry != pending)
Al Viroba46df92006-10-10 22:46:07 +01002609 if (handle_futex_death((void __user *)entry + futex_offset,
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002610 curr, pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002611 return;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002612 if (rc)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002613 return;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002614 entry = next_entry;
2615 pi = next_pi;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002616 /*
2617 * Avoid excessively long or circular lists:
2618 */
2619 if (!--limit)
2620 break;
2621
2622 cond_resched();
2623 }
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002624
2625 if (pending)
2626 handle_futex_death((void __user *)pending + futex_offset,
2627 curr, pip);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002628}
2629
Pierre Peifferc19384b2007-05-09 02:35:02 -07002630long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout,
Ingo Molnare2970f22006-06-27 02:54:47 -07002631 u32 __user *uaddr2, u32 val2, u32 val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
Thomas Gleixner81b40532012-02-15 12:17:09 +01002633 int cmd = op & FUTEX_CMD_MASK;
Darren Hartb41277d2010-11-08 13:10:09 -08002634 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002636 if (!(op & FUTEX_PRIVATE_FLAG))
Darren Hartb41277d2010-11-08 13:10:09 -08002637 flags |= FLAGS_SHARED;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002638
Darren Hartb41277d2010-11-08 13:10:09 -08002639 if (op & FUTEX_CLOCK_REALTIME) {
2640 flags |= FLAGS_CLOCKRT;
2641 if (cmd != FUTEX_WAIT_BITSET && cmd != FUTEX_WAIT_REQUEUE_PI)
2642 return -ENOSYS;
2643 }
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002644
2645 switch (cmd) {
Thomas Gleixner59263b52012-02-15 12:08:34 +01002646 case FUTEX_LOCK_PI:
2647 case FUTEX_UNLOCK_PI:
2648 case FUTEX_TRYLOCK_PI:
2649 case FUTEX_WAIT_REQUEUE_PI:
2650 case FUTEX_CMP_REQUEUE_PI:
2651 if (!futex_cmpxchg_enabled)
2652 return -ENOSYS;
2653 }
2654
2655 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 case FUTEX_WAIT:
Thomas Gleixnercd689982008-02-01 17:45:14 +01002657 val3 = FUTEX_BITSET_MATCH_ANY;
2658 case FUTEX_WAIT_BITSET:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002659 return futex_wait(uaddr, flags, val, timeout, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 case FUTEX_WAKE:
Thomas Gleixnercd689982008-02-01 17:45:14 +01002661 val3 = FUTEX_BITSET_MATCH_ANY;
2662 case FUTEX_WAKE_BITSET:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002663 return futex_wake(uaddr, flags, val, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 case FUTEX_REQUEUE:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002665 return futex_requeue(uaddr, flags, uaddr2, val, val2, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 case FUTEX_CMP_REQUEUE:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002667 return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 0);
Jakub Jelinek4732efb2005-09-06 15:16:25 -07002668 case FUTEX_WAKE_OP:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002669 return futex_wake_op(uaddr, flags, uaddr2, val, val2, val3);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002670 case FUTEX_LOCK_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002671 return futex_lock_pi(uaddr, flags, val, timeout, 0);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002672 case FUTEX_UNLOCK_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002673 return futex_unlock_pi(uaddr, flags);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002674 case FUTEX_TRYLOCK_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002675 return futex_lock_pi(uaddr, flags, 0, timeout, 1);
Darren Hart52400ba2009-04-03 13:40:49 -07002676 case FUTEX_WAIT_REQUEUE_PI:
2677 val3 = FUTEX_BITSET_MATCH_ANY;
Thomas Gleixner81b40532012-02-15 12:17:09 +01002678 return futex_wait_requeue_pi(uaddr, flags, val, timeout, val3,
2679 uaddr2);
Darren Hart52400ba2009-04-03 13:40:49 -07002680 case FUTEX_CMP_REQUEUE_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002681 return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 }
Thomas Gleixner81b40532012-02-15 12:17:09 +01002683 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684}
2685
2686
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002687SYSCALL_DEFINE6(futex, u32 __user *, uaddr, int, op, u32, val,
2688 struct timespec __user *, utime, u32 __user *, uaddr2,
2689 u32, val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690{
Pierre Peifferc19384b2007-05-09 02:35:02 -07002691 struct timespec ts;
2692 ktime_t t, *tp = NULL;
Ingo Molnare2970f22006-06-27 02:54:47 -07002693 u32 val2 = 0;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002694 int cmd = op & FUTEX_CMD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
Thomas Gleixnercd689982008-02-01 17:45:14 +01002696 if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI ||
Darren Hart52400ba2009-04-03 13:40:49 -07002697 cmd == FUTEX_WAIT_BITSET ||
2698 cmd == FUTEX_WAIT_REQUEUE_PI)) {
Pierre Peifferc19384b2007-05-09 02:35:02 -07002699 if (copy_from_user(&ts, utime, sizeof(ts)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 return -EFAULT;
Pierre Peifferc19384b2007-05-09 02:35:02 -07002701 if (!timespec_valid(&ts))
Thomas Gleixner9741ef962006-03-31 02:31:32 -08002702 return -EINVAL;
Pierre Peifferc19384b2007-05-09 02:35:02 -07002703
2704 t = timespec_to_ktime(ts);
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002705 if (cmd == FUTEX_WAIT)
Thomas Gleixner5a7780e2008-02-13 09:20:43 +01002706 t = ktime_add_safe(ktime_get(), t);
Pierre Peifferc19384b2007-05-09 02:35:02 -07002707 tp = &t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 }
2709 /*
Darren Hart52400ba2009-04-03 13:40:49 -07002710 * requeue parameter in 'utime' if cmd == FUTEX_*_REQUEUE_*.
Andreas Schwabf54f0982007-07-31 00:38:51 -07002711 * number of waiters to wake in 'utime' if cmd == FUTEX_WAKE_OP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 */
Andreas Schwabf54f0982007-07-31 00:38:51 -07002713 if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE ||
Darren Hartba9c22f2009-04-20 22:22:22 -07002714 cmd == FUTEX_CMP_REQUEUE_PI || cmd == FUTEX_WAKE_OP)
Ingo Molnare2970f22006-06-27 02:54:47 -07002715 val2 = (u32) (unsigned long) utime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Pierre Peifferc19384b2007-05-09 02:35:02 -07002717 return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718}
2719
Benjamin Herrenschmidtf6d107f2008-03-27 14:52:15 +11002720static int __init futex_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721{
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002722 u32 curval;
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -08002723 unsigned long i;
2724
2725#if CONFIG_BASE_SMALL
2726 futex_hashsize = 16;
2727#else
2728 futex_hashsize = roundup_pow_of_two(256 * num_possible_cpus());
2729#endif
2730
2731 futex_queues = alloc_large_system_hash("futex", sizeof(*futex_queues),
2732 futex_hashsize, 0,
2733 futex_hashsize < 256 ? HASH_SMALL : 0,
2734 NULL, NULL, futex_hashsize, futex_hashsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002736 /*
2737 * This will fail and we want it. Some arch implementations do
2738 * runtime detection of the futex_atomic_cmpxchg_inatomic()
2739 * functionality. We want to know that before we call in any
2740 * of the complex code paths. Also we want to prevent
2741 * registration of robust lists in that case. NULL is
2742 * guaranteed to fault and we get -EFAULT on functional
Randy Dunlapfb62db22010-10-13 11:02:34 -07002743 * implementation, the non-functional ones will return
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002744 * -ENOSYS.
2745 */
Michel Lespinasse37a9d912011-03-10 18:48:51 -08002746 if (cmpxchg_futex_value_locked(&curval, NULL, 0, 0) == -EFAULT)
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002747 futex_cmpxchg_enabled = 1;
2748
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -08002749 for (i = 0; i < futex_hashsize; i++) {
Dima Zavin732375c2011-07-07 17:27:59 -07002750 plist_head_init(&futex_queues[i].chain);
Thomas Gleixner3e4ab742008-02-23 15:23:55 -08002751 spin_lock_init(&futex_queues[i].lock);
2752 }
2753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 return 0;
2755}
Benjamin Herrenschmidtf6d107f2008-03-27 14:52:15 +11002756__initcall(futex_init);