blob: 08ec814ad9d2fe95ae4303085cb1967265bd3758 [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 Jelinek4732efbe2005-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 Gleixner99b60ce2014-01-12 15:31:24 -080072/*
73 * Basic futex operation and ordering guarantees:
74 *
75 * The waiter reads the futex value in user space and calls
76 * futex_wait(). This function computes the hash bucket and acquires
77 * the hash bucket lock. After that it reads the futex user space value
Davidlohr Buesob0c29f72014-01-12 15:31:25 -080078 * again and verifies that the data has not changed. If it has not changed
79 * it enqueues itself into the hash bucket, releases the hash bucket lock
80 * and schedules.
Thomas Gleixner99b60ce2014-01-12 15:31:24 -080081 *
82 * The waker side modifies the user space value of the futex and calls
Davidlohr Buesob0c29f72014-01-12 15:31:25 -080083 * futex_wake(). This function computes the hash bucket and acquires the
84 * hash bucket lock. Then it looks for waiters on that futex in the hash
85 * bucket and wakes them.
Thomas Gleixner99b60ce2014-01-12 15:31:24 -080086 *
Davidlohr Buesob0c29f72014-01-12 15:31:25 -080087 * In futex wake up scenarios where no tasks are blocked on a futex, taking
88 * the hb spinlock can be avoided and simply return. In order for this
89 * optimization to work, ordering guarantees must exist so that the waiter
90 * being added to the list is acknowledged when the list is concurrently being
91 * checked by the waker, avoiding scenarios like the following:
Thomas Gleixner99b60ce2014-01-12 15:31:24 -080092 *
93 * CPU 0 CPU 1
94 * val = *futex;
95 * sys_futex(WAIT, futex, val);
96 * futex_wait(futex, val);
97 * uval = *futex;
98 * *futex = newval;
99 * sys_futex(WAKE, futex);
100 * futex_wake(futex);
101 * if (queue_empty())
102 * return;
103 * if (uval == val)
104 * lock(hash_bucket(futex));
105 * queue();
106 * unlock(hash_bucket(futex));
107 * schedule();
108 *
109 * This would cause the waiter on CPU 0 to wait forever because it
110 * missed the transition of the user space value from val to newval
111 * and the waker did not find the waiter in the hash bucket queue.
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800112 *
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800113 * The correct serialization ensures that a waiter either observes
114 * the changed user space value before blocking or is woken by a
115 * concurrent waker:
116 *
117 * CPU 0 CPU 1
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800118 * val = *futex;
119 * sys_futex(WAIT, futex, val);
120 * futex_wait(futex, val);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800121 *
122 * waiters++;
123 * mb(); (A) <-- paired with -.
124 * |
125 * lock(hash_bucket(futex)); |
126 * |
127 * uval = *futex; |
128 * | *futex = newval;
129 * | sys_futex(WAKE, futex);
130 * | futex_wake(futex);
131 * |
132 * `-------> mb(); (B)
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800133 * if (uval == val)
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800134 * queue();
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800135 * unlock(hash_bucket(futex));
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800136 * schedule(); if (waiters)
137 * lock(hash_bucket(futex));
138 * wake_waiters(futex);
139 * unlock(hash_bucket(futex));
140 *
141 * Where (A) orders the waiters increment and the futex value read -- this
142 * is guaranteed by the head counter in the hb spinlock; and where (B)
143 * orders the write to futex and the waiters read -- this is done by the
144 * barriers in get_futex_key_refs(), through either ihold or atomic_inc,
145 * depending on the futex type.
146 *
147 * This yields the following case (where X:=waiters, Y:=futex):
148 *
149 * X = Y = 0
150 *
151 * w[X]=1 w[Y]=1
152 * MB MB
153 * r[Y]=y r[X]=x
154 *
155 * Which guarantees that x==0 && y==0 is impossible; which translates back into
156 * the guarantee that we cannot both miss the futex variable change and the
157 * enqueue.
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800158 */
159
Thomas Gleixnera0c1e902008-02-23 15:23:57 -0800160int __read_mostly futex_cmpxchg_enabled;
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162/*
Darren Hartb41277d2010-11-08 13:10:09 -0800163 * Futex flags used to encode options to functions and preserve them across
164 * restarts.
165 */
166#define FLAGS_SHARED 0x01
167#define FLAGS_CLOCKRT 0x02
168#define FLAGS_HAS_TIMEOUT 0x04
169
170/*
Ingo Molnarc87e2832006-06-27 02:54:58 -0700171 * Priority Inheritance state:
172 */
173struct futex_pi_state {
174 /*
175 * list of 'owned' pi_state instances - these have to be
176 * cleaned up in do_exit() if the task exits prematurely:
177 */
178 struct list_head list;
179
180 /*
181 * The PI object:
182 */
183 struct rt_mutex pi_mutex;
184
185 struct task_struct *owner;
186 atomic_t refcount;
187
188 union futex_key key;
189};
190
Darren Hartd8d88fb2009-09-21 22:30:30 -0700191/**
192 * struct futex_q - The hashed futex queue entry, one per waiting task
Randy Dunlapfb62db22010-10-13 11:02:34 -0700193 * @list: priority-sorted list of tasks waiting on this futex
Darren Hartd8d88fb2009-09-21 22:30:30 -0700194 * @task: the task waiting on the futex
195 * @lock_ptr: the hash bucket lock
196 * @key: the key the futex is hashed on
197 * @pi_state: optional priority inheritance state
198 * @rt_waiter: rt_waiter storage for use with requeue_pi
199 * @requeue_pi_key: the requeue_pi target futex key
200 * @bitset: bitset for the optional bitmasked wakeup
201 *
202 * We use this hashed waitqueue, instead of a normal wait_queue_t, so
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 * we can wake only the relevant ones (hashed queues may be shared).
204 *
205 * A futex_q has a woken state, just like tasks have TASK_RUNNING.
Pierre Peifferec92d082007-05-09 02:35:00 -0700206 * It is considered woken when plist_node_empty(&q->list) || q->lock_ptr == 0.
Randy Dunlapfb62db22010-10-13 11:02:34 -0700207 * The order of wakeup is always to make the first condition true, then
Darren Hartd8d88fb2009-09-21 22:30:30 -0700208 * the second.
209 *
210 * PI futexes are typically woken before they are removed from the hash list via
211 * the rt_mutex code. See unqueue_me_pi().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 */
213struct futex_q {
Pierre Peifferec92d082007-05-09 02:35:00 -0700214 struct plist_node list;
Darren Hartd8d88fb2009-09-21 22:30:30 -0700215
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +0200216 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 spinlock_t *lock_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 union futex_key key;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700219 struct futex_pi_state *pi_state;
Darren Hart52400ba2009-04-03 13:40:49 -0700220 struct rt_mutex_waiter *rt_waiter;
Darren Hart84bc4af2009-08-13 17:36:53 -0700221 union futex_key *requeue_pi_key;
Thomas Gleixnercd689982008-02-01 17:45:14 +0100222 u32 bitset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223};
224
Darren Hart5bdb05f2010-11-08 13:40:28 -0800225static const struct futex_q futex_q_init = {
226 /* list gets initialized in queue_me()*/
227 .key = FUTEX_KEY_INIT,
228 .bitset = FUTEX_BITSET_MATCH_ANY
229};
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*
Darren Hartb2d09942009-03-12 00:55:37 -0700232 * Hash buckets are shared by all the futex_keys that hash to the same
233 * location. Each key may have multiple futex_q structures, one for each task
234 * waiting on a futex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 */
236struct futex_hash_bucket {
Linus Torvalds11d46162014-03-20 22:11:17 -0700237 atomic_t waiters;
Pierre Peifferec92d082007-05-09 02:35:00 -0700238 spinlock_t lock;
239 struct plist_head chain;
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -0800240} ____cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -0800242static unsigned long __read_mostly futex_hashsize;
243
244static struct futex_hash_bucket *futex_queues;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800246static inline void futex_get_mm(union futex_key *key)
247{
248 atomic_inc(&key->private.mm->mm_count);
249 /*
250 * Ensure futex_get_mm() implies a full barrier such that
251 * get_futex_key() implies a full barrier. This is relied upon
252 * as full barrier (B), see the ordering comment above.
253 */
254 smp_mb__after_atomic_inc();
255}
256
Linus Torvalds11d46162014-03-20 22:11:17 -0700257/*
258 * Reflects a new waiter being added to the waitqueue.
259 */
260static inline void hb_waiters_inc(struct futex_hash_bucket *hb)
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800261{
262#ifdef CONFIG_SMP
Linus Torvalds11d46162014-03-20 22:11:17 -0700263 atomic_inc(&hb->waiters);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800264 /*
Linus Torvalds11d46162014-03-20 22:11:17 -0700265 * Full barrier (A), see the ordering comment above.
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800266 */
Linus Torvalds11d46162014-03-20 22:11:17 -0700267 smp_mb__after_atomic_inc();
268#endif
269}
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800270
Linus Torvalds11d46162014-03-20 22:11:17 -0700271/*
272 * Reflects a waiter being removed from the waitqueue by wakeup
273 * paths.
274 */
275static inline void hb_waiters_dec(struct futex_hash_bucket *hb)
276{
277#ifdef CONFIG_SMP
278 atomic_dec(&hb->waiters);
279#endif
280}
281
282static inline int hb_waiters_pending(struct futex_hash_bucket *hb)
283{
284#ifdef CONFIG_SMP
285 return atomic_read(&hb->waiters);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800286#else
Linus Torvalds11d46162014-03-20 22:11:17 -0700287 return 1;
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800288#endif
289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/*
292 * We hash on the keys returned from get_futex_key (see below).
293 */
294static struct futex_hash_bucket *hash_futex(union futex_key *key)
295{
296 u32 hash = jhash2((u32*)&key->both.word,
297 (sizeof(key->both.word)+sizeof(key->both.ptr))/4,
298 key->both.offset);
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -0800299 return &futex_queues[hash & (futex_hashsize - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
302/*
303 * Return 1 if two futex_keys are equal, 0 otherwise.
304 */
305static inline int match_futex(union futex_key *key1, union futex_key *key2)
306{
Darren Hart2bc87202009-10-14 10:12:39 -0700307 return (key1 && key2
308 && key1->both.word == key2->both.word
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 && key1->both.ptr == key2->both.ptr
310 && key1->both.offset == key2->both.offset);
311}
312
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200313/*
314 * Take a reference to the resource addressed by a key.
315 * Can be called while holding spinlocks.
316 *
317 */
318static void get_futex_key_refs(union futex_key *key)
319{
320 if (!key->both.ptr)
321 return;
322
323 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
324 case FUT_OFF_INODE:
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800325 ihold(key->shared.inode); /* implies MB (B) */
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200326 break;
327 case FUT_OFF_MMSHARED:
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800328 futex_get_mm(key); /* implies MB (B) */
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200329 break;
330 }
331}
332
333/*
334 * Drop a reference to the resource addressed by a key.
335 * The hash bucket spinlock must not be held.
336 */
337static void drop_futex_key_refs(union futex_key *key)
338{
Darren Hart90621c42008-12-29 19:43:21 -0800339 if (!key->both.ptr) {
340 /* If we're here then we tried to put a key we failed to get */
341 WARN_ON_ONCE(1);
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200342 return;
Darren Hart90621c42008-12-29 19:43:21 -0800343 }
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200344
345 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
346 case FUT_OFF_INODE:
347 iput(key->shared.inode);
348 break;
349 case FUT_OFF_MMSHARED:
350 mmdrop(key->private.mm);
351 break;
352 }
353}
354
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700355/**
Darren Hartd96ee562009-09-21 22:30:22 -0700356 * get_futex_key() - Get parameters which are the keys for a futex
357 * @uaddr: virtual address of the futex
358 * @fshared: 0 for a PROCESS_PRIVATE futex, 1 for PROCESS_SHARED
359 * @key: address where result is stored.
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500360 * @rw: mapping needs to be read/write (values: VERIFY_READ,
361 * VERIFY_WRITE)
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700362 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -0800363 * Return: a negative error code or 0
364 *
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700365 * The key words are stored in *key on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 *
Al Viro6131ffa2013-02-27 16:59:05 -0500367 * For shared mappings, it's (page->index, file_inode(vma->vm_file),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 * offset_within_page). For private mappings, it's (uaddr, current->mm).
369 * We can usually work out the index without swapping in the page.
370 *
Darren Hartb2d09942009-03-12 00:55:37 -0700371 * lock_page() might sleep, the caller should not hold a spinlock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 */
Thomas Gleixner64d13042009-05-18 21:20:10 +0200373static int
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500374get_futex_key(u32 __user *uaddr, int fshared, union futex_key *key, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Ingo Molnare2970f22006-06-27 02:54:47 -0700376 unsigned long address = (unsigned long)uaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 struct mm_struct *mm = current->mm;
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800378 struct page *page, *page_head;
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500379 int err, ro = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 /*
382 * The futex address must be "naturally" aligned.
383 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700384 key->both.offset = address % PAGE_SIZE;
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700385 if (unlikely((address % sizeof(u32)) != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return -EINVAL;
Ingo Molnare2970f22006-06-27 02:54:47 -0700387 address -= key->both.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Linus Torvalds5cdec2d2013-12-12 09:53:51 -0800389 if (unlikely(!access_ok(rw, uaddr, sizeof(u32))))
390 return -EFAULT;
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /*
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700393 * PROCESS_PRIVATE futexes are fast.
394 * As the mm cannot disappear under us and the 'key' only needs
395 * virtual address, we dont even have to find the underlying vma.
396 * Note : We do have to check 'uaddr' is a valid user address,
397 * but access_ok() should be faster than find_vma()
398 */
399 if (!fshared) {
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700400 key->private.mm = mm;
401 key->private.address = address;
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800402 get_futex_key_refs(key); /* implies MB (B) */
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700403 return 0;
404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200406again:
KOSAKI Motohiro7485d0d2010-01-05 16:32:43 +0900407 err = get_user_pages_fast(address, 1, 1, &page);
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500408 /*
409 * If write access is not required (eg. FUTEX_WAIT), try
410 * and get read-only access.
411 */
412 if (err == -EFAULT && rw == VERIFY_READ) {
413 err = get_user_pages_fast(address, 1, 0, &page);
414 ro = 1;
415 }
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200416 if (err < 0)
417 return err;
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500418 else
419 err = 0;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200420
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800421#ifdef CONFIG_TRANSPARENT_HUGEPAGE
422 page_head = page;
423 if (unlikely(PageTail(page))) {
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200424 put_page(page);
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800425 /* serialize against __split_huge_page_splitting() */
426 local_irq_disable();
Linus Torvaldsf12d5bf2013-12-12 09:38:42 -0800427 if (likely(__get_user_pages_fast(address, 1, !ro, &page) == 1)) {
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800428 page_head = compound_head(page);
429 /*
430 * page_head is valid pointer but we must pin
431 * it before taking the PG_lock and/or
432 * PG_compound_lock. The moment we re-enable
433 * irqs __split_huge_page_splitting() can
434 * return and the head page can be freed from
435 * under us. We can't take the PG_lock and/or
436 * PG_compound_lock on a page that could be
437 * freed from under us.
438 */
439 if (page != page_head) {
440 get_page(page_head);
441 put_page(page);
442 }
443 local_irq_enable();
444 } else {
445 local_irq_enable();
446 goto again;
447 }
448 }
449#else
450 page_head = compound_head(page);
451 if (page != page_head) {
452 get_page(page_head);
453 put_page(page);
454 }
455#endif
456
457 lock_page(page_head);
Hugh Dickinse6780f72011-12-31 11:44:01 -0800458
459 /*
460 * If page_head->mapping is NULL, then it cannot be a PageAnon
461 * page; but it might be the ZERO_PAGE or in the gate area or
462 * in a special mapping (all cases which we are happy to fail);
463 * or it may have been a good file page when get_user_pages_fast
464 * found it, but truncated or holepunched or subjected to
465 * invalidate_complete_page2 before we got the page lock (also
466 * cases which we are happy to fail). And we hold a reference,
467 * so refcount care in invalidate_complete_page's remove_mapping
468 * prevents drop_caches from setting mapping to NULL beneath us.
469 *
470 * The case we do have to guard against is when memory pressure made
471 * shmem_writepage move it from filecache to swapcache beneath us:
472 * an unlikely race, but we do need to retry for page_head->mapping.
473 */
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800474 if (!page_head->mapping) {
Hugh Dickinse6780f72011-12-31 11:44:01 -0800475 int shmem_swizzled = PageSwapCache(page_head);
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800476 unlock_page(page_head);
477 put_page(page_head);
Hugh Dickinse6780f72011-12-31 11:44:01 -0800478 if (shmem_swizzled)
479 goto again;
480 return -EFAULT;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 /*
484 * Private mappings are handled in a simple way.
485 *
486 * NOTE: When userspace waits on a MAP_SHARED mapping, even if
487 * it's a read-only handle, it's expected that futexes attach to
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200488 * the object not the particular process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 */
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800490 if (PageAnon(page_head)) {
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500491 /*
492 * A RO anonymous page will never change and thus doesn't make
493 * sense for futex operations.
494 */
495 if (ro) {
496 err = -EFAULT;
497 goto out;
498 }
499
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200500 key->both.offset |= FUT_OFF_MMSHARED; /* ref taken on mm */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 key->private.mm = mm;
Ingo Molnare2970f22006-06-27 02:54:47 -0700502 key->private.address = address;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200503 } else {
504 key->both.offset |= FUT_OFF_INODE; /* inode-based key */
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800505 key->shared.inode = page_head->mapping->host;
Zhang Yi13d60f42013-06-25 21:19:31 +0800506 key->shared.pgoff = basepage_index(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800509 get_futex_key_refs(key); /* implies MB (B) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500511out:
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800512 unlock_page(page_head);
513 put_page(page_head);
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500514 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
Thomas Gleixnerae791a22010-11-10 13:30:36 +0100517static inline void put_futex_key(union futex_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200519 drop_futex_key_refs(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
Darren Hartd96ee562009-09-21 22:30:22 -0700522/**
523 * fault_in_user_writeable() - Fault in user address and verify RW access
Thomas Gleixnerd0725992009-06-11 23:15:43 +0200524 * @uaddr: pointer to faulting user space address
525 *
526 * Slow path to fixup the fault we just took in the atomic write
527 * access to @uaddr.
528 *
Randy Dunlapfb62db22010-10-13 11:02:34 -0700529 * We have no generic implementation of a non-destructive write to the
Thomas Gleixnerd0725992009-06-11 23:15:43 +0200530 * user address. We know that we faulted in the atomic pagefault
531 * disabled section so we can as well avoid the #PF overhead by
532 * calling get_user_pages() right away.
533 */
534static int fault_in_user_writeable(u32 __user *uaddr)
535{
Andi Kleen722d0172009-12-08 13:19:42 +0100536 struct mm_struct *mm = current->mm;
537 int ret;
538
539 down_read(&mm->mmap_sem);
Benjamin Herrenschmidt2efaca92011-07-25 17:12:32 -0700540 ret = fixup_user_fault(current, mm, (unsigned long)uaddr,
541 FAULT_FLAG_WRITE);
Andi Kleen722d0172009-12-08 13:19:42 +0100542 up_read(&mm->mmap_sem);
543
Thomas Gleixnerd0725992009-06-11 23:15:43 +0200544 return ret < 0 ? ret : 0;
545}
546
Darren Hart4b1c4862009-04-03 13:39:42 -0700547/**
548 * futex_top_waiter() - Return the highest priority waiter on a futex
Darren Hartd96ee562009-09-21 22:30:22 -0700549 * @hb: the hash bucket the futex_q's reside in
550 * @key: the futex key (to distinguish it from other futex futex_q's)
Darren Hart4b1c4862009-04-03 13:39:42 -0700551 *
552 * Must be called with the hb lock held.
553 */
554static struct futex_q *futex_top_waiter(struct futex_hash_bucket *hb,
555 union futex_key *key)
556{
557 struct futex_q *this;
558
559 plist_for_each_entry(this, &hb->chain, list) {
560 if (match_futex(&this->key, key))
561 return this;
562 }
563 return NULL;
564}
565
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800566static int cmpxchg_futex_value_locked(u32 *curval, u32 __user *uaddr,
567 u32 uval, u32 newval)
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700568{
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800569 int ret;
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700570
571 pagefault_disable();
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800572 ret = futex_atomic_cmpxchg_inatomic(curval, uaddr, uval, newval);
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700573 pagefault_enable();
574
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800575 return ret;
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700576}
577
578static int get_futex_value_locked(u32 *dest, u32 __user *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 int ret;
581
Peter Zijlstraa8663742006-12-06 20:32:20 -0800582 pagefault_disable();
Ingo Molnare2970f22006-06-27 02:54:47 -0700583 ret = __copy_from_user_inatomic(dest, from, sizeof(u32));
Peter Zijlstraa8663742006-12-06 20:32:20 -0800584 pagefault_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 return ret ? -EFAULT : 0;
587}
588
Ingo Molnarc87e2832006-06-27 02:54:58 -0700589
590/*
591 * PI code:
592 */
593static int refill_pi_state_cache(void)
594{
595 struct futex_pi_state *pi_state;
596
597 if (likely(current->pi_state_cache))
598 return 0;
599
Burman Yan4668edc2006-12-06 20:38:51 -0800600 pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700601
602 if (!pi_state)
603 return -ENOMEM;
604
Ingo Molnarc87e2832006-06-27 02:54:58 -0700605 INIT_LIST_HEAD(&pi_state->list);
606 /* pi_mutex gets initialized later */
607 pi_state->owner = NULL;
608 atomic_set(&pi_state->refcount, 1);
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200609 pi_state->key = FUTEX_KEY_INIT;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700610
611 current->pi_state_cache = pi_state;
612
613 return 0;
614}
615
616static struct futex_pi_state * alloc_pi_state(void)
617{
618 struct futex_pi_state *pi_state = current->pi_state_cache;
619
620 WARN_ON(!pi_state);
621 current->pi_state_cache = NULL;
622
623 return pi_state;
624}
625
626static void free_pi_state(struct futex_pi_state *pi_state)
627{
628 if (!atomic_dec_and_test(&pi_state->refcount))
629 return;
630
631 /*
632 * If pi_state->owner is NULL, the owner is most probably dying
633 * and has cleaned up the pi_state already
634 */
635 if (pi_state->owner) {
Thomas Gleixner1d615482009-11-17 14:54:03 +0100636 raw_spin_lock_irq(&pi_state->owner->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700637 list_del_init(&pi_state->list);
Thomas Gleixner1d615482009-11-17 14:54:03 +0100638 raw_spin_unlock_irq(&pi_state->owner->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700639
640 rt_mutex_proxy_unlock(&pi_state->pi_mutex, pi_state->owner);
641 }
642
643 if (current->pi_state_cache)
644 kfree(pi_state);
645 else {
646 /*
647 * pi_state->list is already empty.
648 * clear pi_state->owner.
649 * refcount is at 0 - put it back to 1.
650 */
651 pi_state->owner = NULL;
652 atomic_set(&pi_state->refcount, 1);
653 current->pi_state_cache = pi_state;
654 }
655}
656
657/*
658 * Look up the task based on what TID userspace gave us.
659 * We dont trust it.
660 */
661static struct task_struct * futex_find_get_task(pid_t pid)
662{
663 struct task_struct *p;
664
Oleg Nesterovd359b542006-09-29 02:00:55 -0700665 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700666 p = find_task_by_vpid(pid);
Michal Hocko7a0ea092010-06-30 09:51:19 +0200667 if (p)
668 get_task_struct(p);
Thomas Gleixnera06381f2007-06-23 11:48:40 +0200669
Oleg Nesterovd359b542006-09-29 02:00:55 -0700670 rcu_read_unlock();
Ingo Molnarc87e2832006-06-27 02:54:58 -0700671
672 return p;
673}
674
675/*
676 * This task is holding PI mutexes at exit time => bad.
677 * Kernel cleans up PI-state, but userspace is likely hosed.
678 * (Robust-futex cleanup is separate and might save the day for userspace.)
679 */
680void exit_pi_state_list(struct task_struct *curr)
681{
Ingo Molnarc87e2832006-06-27 02:54:58 -0700682 struct list_head *next, *head = &curr->pi_state_list;
683 struct futex_pi_state *pi_state;
Ingo Molnar627371d2006-07-29 05:16:20 +0200684 struct futex_hash_bucket *hb;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200685 union futex_key key = FUTEX_KEY_INIT;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700686
Thomas Gleixnera0c1e902008-02-23 15:23:57 -0800687 if (!futex_cmpxchg_enabled)
688 return;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700689 /*
690 * We are a ZOMBIE and nobody can enqueue itself on
691 * pi_state_list anymore, but we have to be careful
Ingo Molnar627371d2006-07-29 05:16:20 +0200692 * versus waiters unqueueing themselves:
Ingo Molnarc87e2832006-06-27 02:54:58 -0700693 */
Thomas Gleixner1d615482009-11-17 14:54:03 +0100694 raw_spin_lock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700695 while (!list_empty(head)) {
696
697 next = head->next;
698 pi_state = list_entry(next, struct futex_pi_state, list);
699 key = pi_state->key;
Ingo Molnar627371d2006-07-29 05:16:20 +0200700 hb = hash_futex(&key);
Thomas Gleixner1d615482009-11-17 14:54:03 +0100701 raw_spin_unlock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700702
Ingo Molnarc87e2832006-06-27 02:54:58 -0700703 spin_lock(&hb->lock);
704
Thomas Gleixner1d615482009-11-17 14:54:03 +0100705 raw_spin_lock_irq(&curr->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +0200706 /*
707 * We dropped the pi-lock, so re-check whether this
708 * task still owns the PI-state:
709 */
Ingo Molnarc87e2832006-06-27 02:54:58 -0700710 if (head->next != next) {
711 spin_unlock(&hb->lock);
712 continue;
713 }
714
Ingo Molnarc87e2832006-06-27 02:54:58 -0700715 WARN_ON(pi_state->owner != curr);
Ingo Molnar627371d2006-07-29 05:16:20 +0200716 WARN_ON(list_empty(&pi_state->list));
717 list_del_init(&pi_state->list);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700718 pi_state->owner = NULL;
Thomas Gleixner1d615482009-11-17 14:54:03 +0100719 raw_spin_unlock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700720
721 rt_mutex_unlock(&pi_state->pi_mutex);
722
723 spin_unlock(&hb->lock);
724
Thomas Gleixner1d615482009-11-17 14:54:03 +0100725 raw_spin_lock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700726 }
Thomas Gleixner1d615482009-11-17 14:54:03 +0100727 raw_spin_unlock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700728}
729
730static int
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700731lookup_pi_state(u32 uval, struct futex_hash_bucket *hb,
732 union futex_key *key, struct futex_pi_state **ps)
Ingo Molnarc87e2832006-06-27 02:54:58 -0700733{
734 struct futex_pi_state *pi_state = NULL;
735 struct futex_q *this, *next;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700736 struct task_struct *p;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700737 pid_t pid = uval & FUTEX_TID_MASK;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700738
Jason Low0d00c7b2014-01-12 15:31:22 -0800739 plist_for_each_entry_safe(this, next, &hb->chain, list) {
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700740 if (match_futex(&this->key, key)) {
Ingo Molnarc87e2832006-06-27 02:54:58 -0700741 /*
742 * Another waiter already exists - bump up
743 * the refcount and return its pi_state:
744 */
745 pi_state = this->pi_state;
Thomas Gleixner06a9ec22006-07-10 04:44:30 -0700746 /*
Randy Dunlapfb62db22010-10-13 11:02:34 -0700747 * Userspace might have messed up non-PI and PI futexes
Thomas Gleixner06a9ec22006-07-10 04:44:30 -0700748 */
749 if (unlikely(!pi_state))
750 return -EINVAL;
751
Ingo Molnar627371d2006-07-29 05:16:20 +0200752 WARN_ON(!atomic_read(&pi_state->refcount));
Thomas Gleixner59647b62010-02-03 09:33:05 +0100753
754 /*
755 * When pi_state->owner is NULL then the owner died
756 * and another waiter is on the fly. pi_state->owner
757 * is fixed up by the task which acquires
758 * pi_state->rt_mutex.
759 *
760 * We do not check for pid == 0 which can happen when
761 * the owner died and robust_list_exit() cleared the
762 * TID.
763 */
764 if (pid && pi_state->owner) {
765 /*
766 * Bail out if user space manipulated the
767 * futex value.
768 */
769 if (pid != task_pid_vnr(pi_state->owner))
770 return -EINVAL;
771 }
Ingo Molnar627371d2006-07-29 05:16:20 +0200772
Ingo Molnarc87e2832006-06-27 02:54:58 -0700773 atomic_inc(&pi_state->refcount);
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700774 *ps = pi_state;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700775
776 return 0;
777 }
778 }
779
780 /*
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200781 * We are the first waiter - try to look up the real owner and attach
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700782 * the new pi_state to it, but bail out when TID = 0
Ingo Molnarc87e2832006-06-27 02:54:58 -0700783 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700784 if (!pid)
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200785 return -ESRCH;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700786 p = futex_find_get_task(pid);
Michal Hocko7a0ea092010-06-30 09:51:19 +0200787 if (!p)
788 return -ESRCH;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700789
790 /*
791 * We need to look at the task state flags to figure out,
792 * whether the task is exiting. To protect against the do_exit
793 * change of the task flags, we do this protected by
794 * p->pi_lock:
795 */
Thomas Gleixner1d615482009-11-17 14:54:03 +0100796 raw_spin_lock_irq(&p->pi_lock);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700797 if (unlikely(p->flags & PF_EXITING)) {
798 /*
799 * The task is on the way out. When PF_EXITPIDONE is
800 * set, we know that the task has finished the
801 * cleanup:
802 */
803 int ret = (p->flags & PF_EXITPIDONE) ? -ESRCH : -EAGAIN;
804
Thomas Gleixner1d615482009-11-17 14:54:03 +0100805 raw_spin_unlock_irq(&p->pi_lock);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700806 put_task_struct(p);
807 return ret;
808 }
Ingo Molnarc87e2832006-06-27 02:54:58 -0700809
810 pi_state = alloc_pi_state();
811
812 /*
813 * Initialize the pi_mutex in locked state and make 'p'
814 * the owner of it:
815 */
816 rt_mutex_init_proxy_locked(&pi_state->pi_mutex, p);
817
818 /* Store the key for possible exit cleanups: */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700819 pi_state->key = *key;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700820
Ingo Molnar627371d2006-07-29 05:16:20 +0200821 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -0700822 list_add(&pi_state->list, &p->pi_state_list);
823 pi_state->owner = p;
Thomas Gleixner1d615482009-11-17 14:54:03 +0100824 raw_spin_unlock_irq(&p->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700825
826 put_task_struct(p);
827
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700828 *ps = pi_state;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700829
830 return 0;
831}
832
Darren Hart1a520842009-04-03 13:39:52 -0700833/**
Darren Hartd96ee562009-09-21 22:30:22 -0700834 * futex_lock_pi_atomic() - Atomic work required to acquire a pi aware futex
Darren Hartbab5bc92009-04-07 23:23:50 -0700835 * @uaddr: the pi futex user address
836 * @hb: the pi futex hash bucket
837 * @key: the futex key associated with uaddr and hb
838 * @ps: the pi_state pointer where we store the result of the
839 * lookup
840 * @task: the task to perform the atomic lock work for. This will
841 * be "current" except in the case of requeue pi.
842 * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0)
Darren Hart1a520842009-04-03 13:39:52 -0700843 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -0800844 * Return:
845 * 0 - ready to wait;
846 * 1 - acquired the lock;
Darren Hart1a520842009-04-03 13:39:52 -0700847 * <0 - error
848 *
849 * The hb->lock and futex_key refs shall be held by the caller.
850 */
851static int futex_lock_pi_atomic(u32 __user *uaddr, struct futex_hash_bucket *hb,
852 union futex_key *key,
853 struct futex_pi_state **ps,
Darren Hartbab5bc92009-04-07 23:23:50 -0700854 struct task_struct *task, int set_waiters)
Darren Hart1a520842009-04-03 13:39:52 -0700855{
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200856 int lock_taken, ret, force_take = 0;
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +0100857 u32 uval, newval, curval, vpid = task_pid_vnr(task);
Darren Hart1a520842009-04-03 13:39:52 -0700858
859retry:
860 ret = lock_taken = 0;
861
862 /*
863 * To avoid races, we attempt to take the lock here again
864 * (by doing a 0 -> TID atomic cmpxchg), while holding all
865 * the locks. It will most likely not succeed.
866 */
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +0100867 newval = vpid;
Darren Hartbab5bc92009-04-07 23:23:50 -0700868 if (set_waiters)
869 newval |= FUTEX_WAITERS;
Darren Hart1a520842009-04-03 13:39:52 -0700870
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800871 if (unlikely(cmpxchg_futex_value_locked(&curval, uaddr, 0, newval)))
Darren Hart1a520842009-04-03 13:39:52 -0700872 return -EFAULT;
873
874 /*
875 * Detect deadlocks.
876 */
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +0100877 if ((unlikely((curval & FUTEX_TID_MASK) == vpid)))
Darren Hart1a520842009-04-03 13:39:52 -0700878 return -EDEADLK;
879
880 /*
881 * Surprise - we got the lock. Just return to userspace:
882 */
883 if (unlikely(!curval))
884 return 1;
885
886 uval = curval;
887
888 /*
889 * Set the FUTEX_WAITERS flag, so the owner will know it has someone
890 * to wake at the next unlock.
891 */
892 newval = curval | FUTEX_WAITERS;
893
894 /*
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200895 * Should we force take the futex? See below.
Darren Hart1a520842009-04-03 13:39:52 -0700896 */
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200897 if (unlikely(force_take)) {
898 /*
899 * Keep the OWNER_DIED and the WAITERS bit and set the
900 * new TID value.
901 */
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +0100902 newval = (curval & ~FUTEX_TID_MASK) | vpid;
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200903 force_take = 0;
Darren Hart1a520842009-04-03 13:39:52 -0700904 lock_taken = 1;
905 }
906
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800907 if (unlikely(cmpxchg_futex_value_locked(&curval, uaddr, uval, newval)))
Darren Hart1a520842009-04-03 13:39:52 -0700908 return -EFAULT;
909 if (unlikely(curval != uval))
910 goto retry;
911
912 /*
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200913 * We took the lock due to forced take over.
Darren Hart1a520842009-04-03 13:39:52 -0700914 */
915 if (unlikely(lock_taken))
916 return 1;
917
918 /*
919 * We dont have the lock. Look up the PI state (or create it if
920 * we are the first waiter):
921 */
922 ret = lookup_pi_state(uval, hb, key, ps);
923
924 if (unlikely(ret)) {
925 switch (ret) {
926 case -ESRCH:
927 /*
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200928 * We failed to find an owner for this
929 * futex. So we have no pi_state to block
930 * on. This can happen in two cases:
931 *
932 * 1) The owner died
933 * 2) A stale FUTEX_WAITERS bit
934 *
935 * Re-read the futex value.
Darren Hart1a520842009-04-03 13:39:52 -0700936 */
937 if (get_futex_value_locked(&curval, uaddr))
938 return -EFAULT;
939
940 /*
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200941 * If the owner died or we have a stale
942 * WAITERS bit the owner TID in the user space
943 * futex is 0.
Darren Hart1a520842009-04-03 13:39:52 -0700944 */
Thomas Gleixner59fa6242012-10-23 22:29:38 +0200945 if (!(curval & FUTEX_TID_MASK)) {
946 force_take = 1;
Darren Hart1a520842009-04-03 13:39:52 -0700947 goto retry;
948 }
949 default:
950 break;
951 }
952 }
953
954 return ret;
955}
956
Lai Jiangshan2e129782010-12-22 14:18:50 +0800957/**
958 * __unqueue_futex() - Remove the futex_q from its futex_hash_bucket
959 * @q: The futex_q to unqueue
960 *
961 * The q->lock_ptr must not be NULL and must be held by the caller.
962 */
963static void __unqueue_futex(struct futex_q *q)
964{
965 struct futex_hash_bucket *hb;
966
Steven Rostedt29096202011-03-17 15:21:07 -0400967 if (WARN_ON_SMP(!q->lock_ptr || !spin_is_locked(q->lock_ptr))
968 || WARN_ON(plist_node_empty(&q->list)))
Lai Jiangshan2e129782010-12-22 14:18:50 +0800969 return;
970
971 hb = container_of(q->lock_ptr, struct futex_hash_bucket, lock);
972 plist_del(&q->list, &hb->chain);
Linus Torvalds11d46162014-03-20 22:11:17 -0700973 hb_waiters_dec(hb);
Lai Jiangshan2e129782010-12-22 14:18:50 +0800974}
975
Ingo Molnarc87e2832006-06-27 02:54:58 -0700976/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 * The hash bucket lock must be held when this is called.
978 * Afterwards, the futex_q must not be accessed.
979 */
980static void wake_futex(struct futex_q *q)
981{
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +0200982 struct task_struct *p = q->task;
983
Darren Hartaa109902012-11-26 16:29:56 -0800984 if (WARN(q->pi_state || q->rt_waiter, "refusing to wake PI futex\n"))
985 return;
986
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +0200987 /*
988 * We set q->lock_ptr = NULL _before_ we wake up the task. If
Randy Dunlapfb62db22010-10-13 11:02:34 -0700989 * a non-futex wake up happens on another CPU then the task
990 * might exit and p would dereference a non-existing task
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +0200991 * struct. Prevent this by holding a reference on p across the
992 * wake up.
993 */
994 get_task_struct(p);
995
Lai Jiangshan2e129782010-12-22 14:18:50 +0800996 __unqueue_futex(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 /*
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +0200998 * The waiting task can free the futex_q as soon as
999 * q->lock_ptr = NULL is written, without taking any locks. A
1000 * memory barrier is required here to prevent the following
1001 * store to lock_ptr from getting ahead of the plist_del.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 */
Ralf Baechleccdea2f2006-12-06 20:40:26 -08001003 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 q->lock_ptr = NULL;
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001005
1006 wake_up_state(p, TASK_NORMAL);
1007 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
Ingo Molnarc87e2832006-06-27 02:54:58 -07001010static int wake_futex_pi(u32 __user *uaddr, u32 uval, struct futex_q *this)
1011{
1012 struct task_struct *new_owner;
1013 struct futex_pi_state *pi_state = this->pi_state;
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +03001014 u32 uninitialized_var(curval), newval;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001015
1016 if (!pi_state)
1017 return -EINVAL;
1018
Thomas Gleixner51246bf2010-02-02 11:40:27 +01001019 /*
1020 * If current does not own the pi_state then the futex is
1021 * inconsistent and user space fiddled with the futex value.
1022 */
1023 if (pi_state->owner != current)
1024 return -EINVAL;
1025
Thomas Gleixnerd209d742009-11-17 18:22:11 +01001026 raw_spin_lock(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001027 new_owner = rt_mutex_next_owner(&pi_state->pi_mutex);
1028
1029 /*
Steven Rostedtf123c982011-01-06 15:08:29 -05001030 * It is possible that the next waiter (the one that brought
1031 * this owner to the kernel) timed out and is no longer
1032 * waiting on the lock.
Ingo Molnarc87e2832006-06-27 02:54:58 -07001033 */
1034 if (!new_owner)
1035 new_owner = this->task;
1036
1037 /*
1038 * We pass it to the next owner. (The WAITERS bit is always
1039 * kept enabled while there is PI state around. We must also
1040 * preserve the owner died bit.)
1041 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001042 if (!(uval & FUTEX_OWNER_DIED)) {
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001043 int ret = 0;
1044
Pavel Emelyanovb4888932007-10-18 23:40:14 -07001045 newval = FUTEX_WAITERS | task_pid_vnr(new_owner);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001046
Michel Lespinasse37a9d912011-03-10 18:48:51 -08001047 if (cmpxchg_futex_value_locked(&curval, uaddr, uval, newval))
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001048 ret = -EFAULT;
Thomas Gleixnercde898f2007-12-05 15:46:09 +01001049 else if (curval != uval)
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001050 ret = -EINVAL;
1051 if (ret) {
Thomas Gleixnerd209d742009-11-17 18:22:11 +01001052 raw_spin_unlock(&pi_state->pi_mutex.wait_lock);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001053 return ret;
1054 }
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001055 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001056
Thomas Gleixner1d615482009-11-17 14:54:03 +01001057 raw_spin_lock_irq(&pi_state->owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001058 WARN_ON(list_empty(&pi_state->list));
1059 list_del_init(&pi_state->list);
Thomas Gleixner1d615482009-11-17 14:54:03 +01001060 raw_spin_unlock_irq(&pi_state->owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001061
Thomas Gleixner1d615482009-11-17 14:54:03 +01001062 raw_spin_lock_irq(&new_owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001063 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -07001064 list_add(&pi_state->list, &new_owner->pi_state_list);
1065 pi_state->owner = new_owner;
Thomas Gleixner1d615482009-11-17 14:54:03 +01001066 raw_spin_unlock_irq(&new_owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001067
Thomas Gleixnerd209d742009-11-17 18:22:11 +01001068 raw_spin_unlock(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001069 rt_mutex_unlock(&pi_state->pi_mutex);
1070
1071 return 0;
1072}
1073
1074static int unlock_futex_pi(u32 __user *uaddr, u32 uval)
1075{
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +03001076 u32 uninitialized_var(oldval);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001077
1078 /*
1079 * There is no waiter, so we unlock the futex. The owner died
1080 * bit has not to be preserved here. We are the owner:
1081 */
Michel Lespinasse37a9d912011-03-10 18:48:51 -08001082 if (cmpxchg_futex_value_locked(&oldval, uaddr, uval, 0))
1083 return -EFAULT;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001084 if (oldval != uval)
1085 return -EAGAIN;
1086
1087 return 0;
1088}
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090/*
Ingo Molnar8b8f3192006-07-03 00:25:05 -07001091 * Express the locking dependencies for lockdep:
1092 */
1093static inline void
1094double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
1095{
1096 if (hb1 <= hb2) {
1097 spin_lock(&hb1->lock);
1098 if (hb1 < hb2)
1099 spin_lock_nested(&hb2->lock, SINGLE_DEPTH_NESTING);
1100 } else { /* hb1 > hb2 */
1101 spin_lock(&hb2->lock);
1102 spin_lock_nested(&hb1->lock, SINGLE_DEPTH_NESTING);
1103 }
1104}
1105
Darren Hart5eb3dc62009-03-12 00:55:52 -07001106static inline void
1107double_unlock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
1108{
Darren Hartf061d352009-03-12 15:11:18 -07001109 spin_unlock(&hb1->lock);
Ingo Molnar88f502f2009-03-13 10:32:07 +01001110 if (hb1 != hb2)
1111 spin_unlock(&hb2->lock);
Darren Hart5eb3dc62009-03-12 00:55:52 -07001112}
1113
Ingo Molnar8b8f3192006-07-03 00:25:05 -07001114/*
Darren Hartb2d09942009-03-12 00:55:37 -07001115 * Wake up waiters matching bitset queued on this futex (uaddr).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 */
Darren Hartb41277d2010-11-08 13:10:09 -08001117static int
1118futex_wake(u32 __user *uaddr, unsigned int flags, int nr_wake, u32 bitset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Ingo Molnare2970f22006-06-27 02:54:47 -07001120 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 struct futex_q *this, *next;
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001122 union futex_key key = FUTEX_KEY_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 int ret;
1124
Thomas Gleixnercd689982008-02-01 17:45:14 +01001125 if (!bitset)
1126 return -EINVAL;
1127
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001128 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 if (unlikely(ret != 0))
1130 goto out;
1131
Ingo Molnare2970f22006-06-27 02:54:47 -07001132 hb = hash_futex(&key);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -08001133
1134 /* Make sure we really have tasks to wakeup */
1135 if (!hb_waiters_pending(hb))
1136 goto out_put_key;
1137
Ingo Molnare2970f22006-06-27 02:54:47 -07001138 spin_lock(&hb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Jason Low0d00c7b2014-01-12 15:31:22 -08001140 plist_for_each_entry_safe(this, next, &hb->chain, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 if (match_futex (&this->key, &key)) {
Darren Hart52400ba2009-04-03 13:40:49 -07001142 if (this->pi_state || this->rt_waiter) {
Ingo Molnared6f7b12006-07-01 04:35:46 -07001143 ret = -EINVAL;
1144 break;
1145 }
Thomas Gleixnercd689982008-02-01 17:45:14 +01001146
1147 /* Check if one of the bits is set in both bitsets */
1148 if (!(this->bitset & bitset))
1149 continue;
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 wake_futex(this);
1152 if (++ret >= nr_wake)
1153 break;
1154 }
1155 }
1156
Ingo Molnare2970f22006-06-27 02:54:47 -07001157 spin_unlock(&hb->lock);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -08001158out_put_key:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001159 put_futex_key(&key);
Darren Hart42d35d42008-12-29 15:49:53 -08001160out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 return ret;
1162}
1163
1164/*
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001165 * Wake up all waiters hashed on the physical page that is mapped
1166 * to this virtual address:
1167 */
Ingo Molnare2970f22006-06-27 02:54:47 -07001168static int
Darren Hartb41277d2010-11-08 13:10:09 -08001169futex_wake_op(u32 __user *uaddr1, unsigned int flags, u32 __user *uaddr2,
Ingo Molnare2970f22006-06-27 02:54:47 -07001170 int nr_wake, int nr_wake2, int op)
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001171{
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001172 union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
Ingo Molnare2970f22006-06-27 02:54:47 -07001173 struct futex_hash_bucket *hb1, *hb2;
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001174 struct futex_q *this, *next;
Darren Harte4dc5b72009-03-12 00:56:13 -07001175 int ret, op_ret;
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001176
Darren Harte4dc5b72009-03-12 00:56:13 -07001177retry:
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001178 ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, VERIFY_READ);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001179 if (unlikely(ret != 0))
1180 goto out;
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001181 ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, VERIFY_WRITE);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001182 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08001183 goto out_put_key1;
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001184
Ingo Molnare2970f22006-06-27 02:54:47 -07001185 hb1 = hash_futex(&key1);
1186 hb2 = hash_futex(&key2);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001187
Darren Harte4dc5b72009-03-12 00:56:13 -07001188retry_private:
Thomas Gleixnereaaea802009-10-04 09:34:17 +02001189 double_lock_hb(hb1, hb2);
Ingo Molnare2970f22006-06-27 02:54:47 -07001190 op_ret = futex_atomic_op_inuser(op, uaddr2);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001191 if (unlikely(op_ret < 0)) {
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001192
Darren Hart5eb3dc62009-03-12 00:55:52 -07001193 double_unlock_hb(hb1, hb2);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001194
David Howells7ee1dd32006-01-06 00:11:44 -08001195#ifndef CONFIG_MMU
Ingo Molnare2970f22006-06-27 02:54:47 -07001196 /*
1197 * we don't get EFAULT from MMU faults if we don't have an MMU,
1198 * but we might get them from range checking
1199 */
David Howells7ee1dd32006-01-06 00:11:44 -08001200 ret = op_ret;
Darren Hart42d35d42008-12-29 15:49:53 -08001201 goto out_put_keys;
David Howells7ee1dd32006-01-06 00:11:44 -08001202#endif
1203
David Gibson796f8d92005-11-07 00:59:33 -08001204 if (unlikely(op_ret != -EFAULT)) {
1205 ret = op_ret;
Darren Hart42d35d42008-12-29 15:49:53 -08001206 goto out_put_keys;
David Gibson796f8d92005-11-07 00:59:33 -08001207 }
1208
Thomas Gleixnerd0725992009-06-11 23:15:43 +02001209 ret = fault_in_user_writeable(uaddr2);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001210 if (ret)
Darren Hartde87fcc2009-03-12 00:55:46 -07001211 goto out_put_keys;
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001212
Darren Hartb41277d2010-11-08 13:10:09 -08001213 if (!(flags & FLAGS_SHARED))
Darren Harte4dc5b72009-03-12 00:56:13 -07001214 goto retry_private;
1215
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001216 put_futex_key(&key2);
1217 put_futex_key(&key1);
Darren Harte4dc5b72009-03-12 00:56:13 -07001218 goto retry;
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001219 }
1220
Jason Low0d00c7b2014-01-12 15:31:22 -08001221 plist_for_each_entry_safe(this, next, &hb1->chain, list) {
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001222 if (match_futex (&this->key, &key1)) {
Darren Hartaa109902012-11-26 16:29:56 -08001223 if (this->pi_state || this->rt_waiter) {
1224 ret = -EINVAL;
1225 goto out_unlock;
1226 }
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001227 wake_futex(this);
1228 if (++ret >= nr_wake)
1229 break;
1230 }
1231 }
1232
1233 if (op_ret > 0) {
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001234 op_ret = 0;
Jason Low0d00c7b2014-01-12 15:31:22 -08001235 plist_for_each_entry_safe(this, next, &hb2->chain, list) {
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001236 if (match_futex (&this->key, &key2)) {
Darren Hartaa109902012-11-26 16:29:56 -08001237 if (this->pi_state || this->rt_waiter) {
1238 ret = -EINVAL;
1239 goto out_unlock;
1240 }
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001241 wake_futex(this);
1242 if (++op_ret >= nr_wake2)
1243 break;
1244 }
1245 }
1246 ret += op_ret;
1247 }
1248
Darren Hartaa109902012-11-26 16:29:56 -08001249out_unlock:
Darren Hart5eb3dc62009-03-12 00:55:52 -07001250 double_unlock_hb(hb1, hb2);
Darren Hart42d35d42008-12-29 15:49:53 -08001251out_put_keys:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001252 put_futex_key(&key2);
Darren Hart42d35d42008-12-29 15:49:53 -08001253out_put_key1:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001254 put_futex_key(&key1);
Darren Hart42d35d42008-12-29 15:49:53 -08001255out:
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001256 return ret;
1257}
1258
Darren Hart9121e472009-04-03 13:40:31 -07001259/**
1260 * requeue_futex() - Requeue a futex_q from one hb to another
1261 * @q: the futex_q to requeue
1262 * @hb1: the source hash_bucket
1263 * @hb2: the target hash_bucket
1264 * @key2: the new key for the requeued futex_q
1265 */
1266static inline
1267void requeue_futex(struct futex_q *q, struct futex_hash_bucket *hb1,
1268 struct futex_hash_bucket *hb2, union futex_key *key2)
1269{
1270
1271 /*
1272 * If key1 and key2 hash to the same bucket, no need to
1273 * requeue.
1274 */
1275 if (likely(&hb1->chain != &hb2->chain)) {
1276 plist_del(&q->list, &hb1->chain);
Linus Torvalds11d46162014-03-20 22:11:17 -07001277 hb_waiters_dec(hb1);
Darren Hart9121e472009-04-03 13:40:31 -07001278 plist_add(&q->list, &hb2->chain);
Linus Torvalds11d46162014-03-20 22:11:17 -07001279 hb_waiters_inc(hb2);
Darren Hart9121e472009-04-03 13:40:31 -07001280 q->lock_ptr = &hb2->lock;
Darren Hart9121e472009-04-03 13:40:31 -07001281 }
1282 get_futex_key_refs(key2);
1283 q->key = *key2;
1284}
1285
Darren Hart52400ba2009-04-03 13:40:49 -07001286/**
1287 * requeue_pi_wake_futex() - Wake a task that acquired the lock during requeue
Darren Hartd96ee562009-09-21 22:30:22 -07001288 * @q: the futex_q
1289 * @key: the key of the requeue target futex
1290 * @hb: the hash_bucket of the requeue target futex
Darren Hart52400ba2009-04-03 13:40:49 -07001291 *
1292 * During futex_requeue, with requeue_pi=1, it is possible to acquire the
1293 * target futex if it is uncontended or via a lock steal. Set the futex_q key
1294 * to the requeue target futex so the waiter can detect the wakeup on the right
1295 * futex, but remove it from the hb and NULL the rt_waiter so it can detect
Darren Hartbeda2c72009-08-09 15:34:39 -07001296 * atomic lock acquisition. Set the q->lock_ptr to the requeue target hb->lock
1297 * to protect access to the pi_state to fixup the owner later. Must be called
1298 * with both q->lock_ptr and hb->lock held.
Darren Hart52400ba2009-04-03 13:40:49 -07001299 */
1300static inline
Darren Hartbeda2c72009-08-09 15:34:39 -07001301void requeue_pi_wake_futex(struct futex_q *q, union futex_key *key,
1302 struct futex_hash_bucket *hb)
Darren Hart52400ba2009-04-03 13:40:49 -07001303{
Darren Hart52400ba2009-04-03 13:40:49 -07001304 get_futex_key_refs(key);
1305 q->key = *key;
1306
Lai Jiangshan2e129782010-12-22 14:18:50 +08001307 __unqueue_futex(q);
Darren Hart52400ba2009-04-03 13:40:49 -07001308
1309 WARN_ON(!q->rt_waiter);
1310 q->rt_waiter = NULL;
1311
Darren Hartbeda2c72009-08-09 15:34:39 -07001312 q->lock_ptr = &hb->lock;
Darren Hartbeda2c72009-08-09 15:34:39 -07001313
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001314 wake_up_state(q->task, TASK_NORMAL);
Darren Hart52400ba2009-04-03 13:40:49 -07001315}
1316
1317/**
1318 * futex_proxy_trylock_atomic() - Attempt an atomic lock for the top waiter
Darren Hartbab5bc92009-04-07 23:23:50 -07001319 * @pifutex: the user address of the to futex
1320 * @hb1: the from futex hash bucket, must be locked by the caller
1321 * @hb2: the to futex hash bucket, must be locked by the caller
1322 * @key1: the from futex key
1323 * @key2: the to futex key
1324 * @ps: address to store the pi_state pointer
1325 * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0)
Darren Hart52400ba2009-04-03 13:40:49 -07001326 *
1327 * Try and get the lock on behalf of the top waiter if we can do it atomically.
Darren Hartbab5bc92009-04-07 23:23:50 -07001328 * Wake the top waiter if we succeed. If the caller specified set_waiters,
1329 * then direct futex_lock_pi_atomic() to force setting the FUTEX_WAITERS bit.
1330 * hb1 and hb2 must be held by the caller.
Darren Hart52400ba2009-04-03 13:40:49 -07001331 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001332 * Return:
1333 * 0 - failed to acquire the lock atomically;
1334 * 1 - acquired the lock;
Darren Hart52400ba2009-04-03 13:40:49 -07001335 * <0 - error
1336 */
1337static int futex_proxy_trylock_atomic(u32 __user *pifutex,
1338 struct futex_hash_bucket *hb1,
1339 struct futex_hash_bucket *hb2,
1340 union futex_key *key1, union futex_key *key2,
Darren Hartbab5bc92009-04-07 23:23:50 -07001341 struct futex_pi_state **ps, int set_waiters)
Darren Hart52400ba2009-04-03 13:40:49 -07001342{
Darren Hartbab5bc92009-04-07 23:23:50 -07001343 struct futex_q *top_waiter = NULL;
Darren Hart52400ba2009-04-03 13:40:49 -07001344 u32 curval;
1345 int ret;
1346
1347 if (get_futex_value_locked(&curval, pifutex))
1348 return -EFAULT;
1349
Darren Hartbab5bc92009-04-07 23:23:50 -07001350 /*
1351 * Find the top_waiter and determine if there are additional waiters.
1352 * If the caller intends to requeue more than 1 waiter to pifutex,
1353 * force futex_lock_pi_atomic() to set the FUTEX_WAITERS bit now,
1354 * as we have means to handle the possible fault. If not, don't set
1355 * the bit unecessarily as it will force the subsequent unlock to enter
1356 * the kernel.
1357 */
Darren Hart52400ba2009-04-03 13:40:49 -07001358 top_waiter = futex_top_waiter(hb1, key1);
1359
1360 /* There are no waiters, nothing for us to do. */
1361 if (!top_waiter)
1362 return 0;
1363
Darren Hart84bc4af2009-08-13 17:36:53 -07001364 /* Ensure we requeue to the expected futex. */
1365 if (!match_futex(top_waiter->requeue_pi_key, key2))
1366 return -EINVAL;
1367
Darren Hart52400ba2009-04-03 13:40:49 -07001368 /*
Darren Hartbab5bc92009-04-07 23:23:50 -07001369 * Try to take the lock for top_waiter. Set the FUTEX_WAITERS bit in
1370 * the contended case or if set_waiters is 1. The pi_state is returned
1371 * in ps in contended cases.
Darren Hart52400ba2009-04-03 13:40:49 -07001372 */
Darren Hartbab5bc92009-04-07 23:23:50 -07001373 ret = futex_lock_pi_atomic(pifutex, hb2, key2, ps, top_waiter->task,
1374 set_waiters);
Darren Hart52400ba2009-04-03 13:40:49 -07001375 if (ret == 1)
Darren Hartbeda2c72009-08-09 15:34:39 -07001376 requeue_pi_wake_futex(top_waiter, key2, hb2);
Darren Hart52400ba2009-04-03 13:40:49 -07001377
1378 return ret;
1379}
1380
1381/**
1382 * futex_requeue() - Requeue waiters from uaddr1 to uaddr2
Randy Dunlapfb62db22010-10-13 11:02:34 -07001383 * @uaddr1: source futex user address
Darren Hartb41277d2010-11-08 13:10:09 -08001384 * @flags: futex flags (FLAGS_SHARED, etc.)
Randy Dunlapfb62db22010-10-13 11:02:34 -07001385 * @uaddr2: target futex user address
1386 * @nr_wake: number of waiters to wake (must be 1 for requeue_pi)
1387 * @nr_requeue: number of waiters to requeue (0-INT_MAX)
1388 * @cmpval: @uaddr1 expected value (or %NULL)
1389 * @requeue_pi: if we are attempting to requeue from a non-pi futex to a
Darren Hartb41277d2010-11-08 13:10:09 -08001390 * pi futex (pi to pi requeue is not supported)
Darren Hart52400ba2009-04-03 13:40:49 -07001391 *
1392 * Requeue waiters on uaddr1 to uaddr2. In the requeue_pi case, try to acquire
1393 * uaddr2 atomically on behalf of the top waiter.
1394 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001395 * Return:
1396 * >=0 - on success, the number of tasks requeued or woken;
Darren Hart52400ba2009-04-03 13:40:49 -07001397 * <0 - on error
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 */
Darren Hartb41277d2010-11-08 13:10:09 -08001399static int futex_requeue(u32 __user *uaddr1, unsigned int flags,
1400 u32 __user *uaddr2, int nr_wake, int nr_requeue,
1401 u32 *cmpval, int requeue_pi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001403 union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
Darren Hart52400ba2009-04-03 13:40:49 -07001404 int drop_count = 0, task_count = 0, ret;
1405 struct futex_pi_state *pi_state = NULL;
Ingo Molnare2970f22006-06-27 02:54:47 -07001406 struct futex_hash_bucket *hb1, *hb2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 struct futex_q *this, *next;
Darren Hart52400ba2009-04-03 13:40:49 -07001408 u32 curval2;
1409
1410 if (requeue_pi) {
1411 /*
1412 * requeue_pi requires a pi_state, try to allocate it now
1413 * without any locks in case it fails.
1414 */
1415 if (refill_pi_state_cache())
1416 return -ENOMEM;
1417 /*
1418 * requeue_pi must wake as many tasks as it can, up to nr_wake
1419 * + nr_requeue, since it acquires the rt_mutex prior to
1420 * returning to userspace, so as to not leave the rt_mutex with
1421 * waiters and no owner. However, second and third wake-ups
1422 * cannot be predicted as they involve race conditions with the
1423 * first wake and a fault while looking up the pi_state. Both
1424 * pthread_cond_signal() and pthread_cond_broadcast() should
1425 * use nr_wake=1.
1426 */
1427 if (nr_wake != 1)
1428 return -EINVAL;
1429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Darren Hart42d35d42008-12-29 15:49:53 -08001431retry:
Darren Hart52400ba2009-04-03 13:40:49 -07001432 if (pi_state != NULL) {
1433 /*
1434 * We will have to lookup the pi_state again, so free this one
1435 * to keep the accounting correct.
1436 */
1437 free_pi_state(pi_state);
1438 pi_state = NULL;
1439 }
1440
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001441 ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 if (unlikely(ret != 0))
1443 goto out;
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001444 ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2,
1445 requeue_pi ? VERIFY_WRITE : VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08001447 goto out_put_key1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Ingo Molnare2970f22006-06-27 02:54:47 -07001449 hb1 = hash_futex(&key1);
1450 hb2 = hash_futex(&key2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Darren Harte4dc5b72009-03-12 00:56:13 -07001452retry_private:
Ingo Molnar8b8f3192006-07-03 00:25:05 -07001453 double_lock_hb(hb1, hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Ingo Molnare2970f22006-06-27 02:54:47 -07001455 if (likely(cmpval != NULL)) {
1456 u32 curval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Ingo Molnare2970f22006-06-27 02:54:47 -07001458 ret = get_futex_value_locked(&curval, uaddr1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 if (unlikely(ret)) {
Darren Hart5eb3dc62009-03-12 00:55:52 -07001461 double_unlock_hb(hb1, hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Darren Harte4dc5b72009-03-12 00:56:13 -07001463 ret = get_user(curval, uaddr1);
1464 if (ret)
1465 goto out_put_keys;
1466
Darren Hartb41277d2010-11-08 13:10:09 -08001467 if (!(flags & FLAGS_SHARED))
Darren Harte4dc5b72009-03-12 00:56:13 -07001468 goto retry_private;
1469
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001470 put_futex_key(&key2);
1471 put_futex_key(&key1);
Darren Harte4dc5b72009-03-12 00:56:13 -07001472 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
Ingo Molnare2970f22006-06-27 02:54:47 -07001474 if (curval != *cmpval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 ret = -EAGAIN;
1476 goto out_unlock;
1477 }
1478 }
1479
Darren Hart52400ba2009-04-03 13:40:49 -07001480 if (requeue_pi && (task_count - nr_wake < nr_requeue)) {
Darren Hartbab5bc92009-04-07 23:23:50 -07001481 /*
1482 * Attempt to acquire uaddr2 and wake the top waiter. If we
1483 * intend to requeue waiters, force setting the FUTEX_WAITERS
1484 * bit. We force this here where we are able to easily handle
1485 * faults rather in the requeue loop below.
1486 */
Darren Hart52400ba2009-04-03 13:40:49 -07001487 ret = futex_proxy_trylock_atomic(uaddr2, hb1, hb2, &key1,
Darren Hartbab5bc92009-04-07 23:23:50 -07001488 &key2, &pi_state, nr_requeue);
Darren Hart52400ba2009-04-03 13:40:49 -07001489
1490 /*
1491 * At this point the top_waiter has either taken uaddr2 or is
1492 * waiting on it. If the former, then the pi_state will not
1493 * exist yet, look it up one more time to ensure we have a
1494 * reference to it.
1495 */
1496 if (ret == 1) {
1497 WARN_ON(pi_state);
Darren Hart89061d32009-10-15 15:30:48 -07001498 drop_count++;
Darren Hart52400ba2009-04-03 13:40:49 -07001499 task_count++;
1500 ret = get_futex_value_locked(&curval2, uaddr2);
1501 if (!ret)
1502 ret = lookup_pi_state(curval2, hb2, &key2,
1503 &pi_state);
1504 }
1505
1506 switch (ret) {
1507 case 0:
1508 break;
1509 case -EFAULT:
1510 double_unlock_hb(hb1, hb2);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001511 put_futex_key(&key2);
1512 put_futex_key(&key1);
Thomas Gleixnerd0725992009-06-11 23:15:43 +02001513 ret = fault_in_user_writeable(uaddr2);
Darren Hart52400ba2009-04-03 13:40:49 -07001514 if (!ret)
1515 goto retry;
1516 goto out;
1517 case -EAGAIN:
1518 /* The owner was exiting, try again. */
1519 double_unlock_hb(hb1, hb2);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001520 put_futex_key(&key2);
1521 put_futex_key(&key1);
Darren Hart52400ba2009-04-03 13:40:49 -07001522 cond_resched();
1523 goto retry;
1524 default:
1525 goto out_unlock;
1526 }
1527 }
1528
Jason Low0d00c7b2014-01-12 15:31:22 -08001529 plist_for_each_entry_safe(this, next, &hb1->chain, list) {
Darren Hart52400ba2009-04-03 13:40:49 -07001530 if (task_count - nr_wake >= nr_requeue)
1531 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Darren Hart52400ba2009-04-03 13:40:49 -07001533 if (!match_futex(&this->key, &key1))
1534 continue;
1535
Darren Hart392741e2009-08-07 15:20:48 -07001536 /*
1537 * FUTEX_WAIT_REQEUE_PI and FUTEX_CMP_REQUEUE_PI should always
1538 * be paired with each other and no other futex ops.
Darren Hartaa109902012-11-26 16:29:56 -08001539 *
1540 * We should never be requeueing a futex_q with a pi_state,
1541 * which is awaiting a futex_unlock_pi().
Darren Hart392741e2009-08-07 15:20:48 -07001542 */
1543 if ((requeue_pi && !this->rt_waiter) ||
Darren Hartaa109902012-11-26 16:29:56 -08001544 (!requeue_pi && this->rt_waiter) ||
1545 this->pi_state) {
Darren Hart392741e2009-08-07 15:20:48 -07001546 ret = -EINVAL;
1547 break;
1548 }
Darren Hart52400ba2009-04-03 13:40:49 -07001549
1550 /*
1551 * Wake nr_wake waiters. For requeue_pi, if we acquired the
1552 * lock, we already woke the top_waiter. If not, it will be
1553 * woken by futex_unlock_pi().
1554 */
1555 if (++task_count <= nr_wake && !requeue_pi) {
1556 wake_futex(this);
1557 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
Darren Hart52400ba2009-04-03 13:40:49 -07001559
Darren Hart84bc4af2009-08-13 17:36:53 -07001560 /* Ensure we requeue to the expected futex for requeue_pi. */
1561 if (requeue_pi && !match_futex(this->requeue_pi_key, &key2)) {
1562 ret = -EINVAL;
1563 break;
1564 }
1565
Darren Hart52400ba2009-04-03 13:40:49 -07001566 /*
1567 * Requeue nr_requeue waiters and possibly one more in the case
1568 * of requeue_pi if we couldn't acquire the lock atomically.
1569 */
1570 if (requeue_pi) {
1571 /* Prepare the waiter to take the rt_mutex. */
1572 atomic_inc(&pi_state->refcount);
1573 this->pi_state = pi_state;
1574 ret = rt_mutex_start_proxy_lock(&pi_state->pi_mutex,
1575 this->rt_waiter,
1576 this->task, 1);
1577 if (ret == 1) {
1578 /* We got the lock. */
Darren Hartbeda2c72009-08-09 15:34:39 -07001579 requeue_pi_wake_futex(this, &key2, hb2);
Darren Hart89061d32009-10-15 15:30:48 -07001580 drop_count++;
Darren Hart52400ba2009-04-03 13:40:49 -07001581 continue;
1582 } else if (ret) {
1583 /* -EDEADLK */
1584 this->pi_state = NULL;
1585 free_pi_state(pi_state);
1586 goto out_unlock;
1587 }
1588 }
1589 requeue_futex(this, hb1, hb2, &key2);
1590 drop_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 }
1592
1593out_unlock:
Darren Hart5eb3dc62009-03-12 00:55:52 -07001594 double_unlock_hb(hb1, hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Darren Hartcd84a422009-04-02 14:19:38 -07001596 /*
1597 * drop_futex_key_refs() must be called outside the spinlocks. During
1598 * the requeue we moved futex_q's from the hash bucket at key1 to the
1599 * one at key2 and updated their key pointer. We no longer need to
1600 * hold the references to key1.
1601 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 while (--drop_count >= 0)
Rusty Russell9adef582007-05-08 00:26:42 -07001603 drop_futex_key_refs(&key1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Darren Hart42d35d42008-12-29 15:49:53 -08001605out_put_keys:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001606 put_futex_key(&key2);
Darren Hart42d35d42008-12-29 15:49:53 -08001607out_put_key1:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001608 put_futex_key(&key1);
Darren Hart42d35d42008-12-29 15:49:53 -08001609out:
Darren Hart52400ba2009-04-03 13:40:49 -07001610 if (pi_state != NULL)
1611 free_pi_state(pi_state);
1612 return ret ? ret : task_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
1615/* The key must be already stored in q->key. */
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01001616static inline struct futex_hash_bucket *queue_lock(struct futex_q *q)
Namhyung Kim15e408c2010-09-14 21:43:48 +09001617 __acquires(&hb->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Ingo Molnare2970f22006-06-27 02:54:47 -07001619 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Ingo Molnare2970f22006-06-27 02:54:47 -07001621 hb = hash_futex(&q->key);
Linus Torvalds11d46162014-03-20 22:11:17 -07001622
1623 /*
1624 * Increment the counter before taking the lock so that
1625 * a potential waker won't miss a to-be-slept task that is
1626 * waiting for the spinlock. This is safe as all queue_lock()
1627 * users end up calling queue_me(). Similarly, for housekeeping,
1628 * decrement the counter at queue_unlock() when some error has
1629 * occurred and we don't end up adding the task to the list.
1630 */
1631 hb_waiters_inc(hb);
1632
Ingo Molnare2970f22006-06-27 02:54:47 -07001633 q->lock_ptr = &hb->lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Davidlohr Buesob0c29f72014-01-12 15:31:25 -08001635 spin_lock(&hb->lock); /* implies MB (A) */
Ingo Molnare2970f22006-06-27 02:54:47 -07001636 return hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637}
1638
Darren Hartd40d65c2009-09-21 22:30:15 -07001639static inline void
Jason Low0d00c7b2014-01-12 15:31:22 -08001640queue_unlock(struct futex_hash_bucket *hb)
Namhyung Kim15e408c2010-09-14 21:43:48 +09001641 __releases(&hb->lock)
Darren Hartd40d65c2009-09-21 22:30:15 -07001642{
1643 spin_unlock(&hb->lock);
Linus Torvalds11d46162014-03-20 22:11:17 -07001644 hb_waiters_dec(hb);
Darren Hartd40d65c2009-09-21 22:30:15 -07001645}
1646
1647/**
1648 * queue_me() - Enqueue the futex_q on the futex_hash_bucket
1649 * @q: The futex_q to enqueue
1650 * @hb: The destination hash bucket
1651 *
1652 * The hb->lock must be held by the caller, and is released here. A call to
1653 * queue_me() is typically paired with exactly one call to unqueue_me(). The
1654 * exceptions involve the PI related operations, which may use unqueue_me_pi()
1655 * or nothing if the unqueue is done as part of the wake process and the unqueue
1656 * state is implicit in the state of woken task (see futex_wait_requeue_pi() for
1657 * an example).
1658 */
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01001659static inline void queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
Namhyung Kim15e408c2010-09-14 21:43:48 +09001660 __releases(&hb->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661{
Pierre Peifferec92d082007-05-09 02:35:00 -07001662 int prio;
1663
1664 /*
1665 * The priority used to register this element is
1666 * - either the real thread-priority for the real-time threads
1667 * (i.e. threads with a priority lower than MAX_RT_PRIO)
1668 * - or MAX_RT_PRIO for non-RT threads.
1669 * Thus, all RT-threads are woken first in priority order, and
1670 * the others are woken last, in FIFO order.
1671 */
1672 prio = min(current->normal_prio, MAX_RT_PRIO);
1673
1674 plist_node_init(&q->list, prio);
Pierre Peifferec92d082007-05-09 02:35:00 -07001675 plist_add(&q->list, &hb->chain);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001676 q->task = current;
Ingo Molnare2970f22006-06-27 02:54:47 -07001677 spin_unlock(&hb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678}
1679
Darren Hartd40d65c2009-09-21 22:30:15 -07001680/**
1681 * unqueue_me() - Remove the futex_q from its futex_hash_bucket
1682 * @q: The futex_q to unqueue
1683 *
1684 * The q->lock_ptr must not be held by the caller. A call to unqueue_me() must
1685 * be paired with exactly one earlier call to queue_me().
1686 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001687 * Return:
1688 * 1 - if the futex_q was still queued (and we removed unqueued it);
Darren Hartd40d65c2009-09-21 22:30:15 -07001689 * 0 - if the futex_q was already removed by the waking thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691static int unqueue_me(struct futex_q *q)
1692{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 spinlock_t *lock_ptr;
Ingo Molnare2970f22006-06-27 02:54:47 -07001694 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696 /* In the common case we don't take the spinlock, which is nice. */
Darren Hart42d35d42008-12-29 15:49:53 -08001697retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 lock_ptr = q->lock_ptr;
Christian Borntraegere91467e2006-08-05 12:13:52 -07001699 barrier();
Stephen Hemmingerc80544d2007-10-18 03:07:05 -07001700 if (lock_ptr != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 spin_lock(lock_ptr);
1702 /*
1703 * q->lock_ptr can change between reading it and
1704 * spin_lock(), causing us to take the wrong lock. This
1705 * corrects the race condition.
1706 *
1707 * Reasoning goes like this: if we have the wrong lock,
1708 * q->lock_ptr must have changed (maybe several times)
1709 * between reading it and the spin_lock(). It can
1710 * change again after the spin_lock() but only if it was
1711 * already changed before the spin_lock(). It cannot,
1712 * however, change back to the original value. Therefore
1713 * we can detect whether we acquired the correct lock.
1714 */
1715 if (unlikely(lock_ptr != q->lock_ptr)) {
1716 spin_unlock(lock_ptr);
1717 goto retry;
1718 }
Lai Jiangshan2e129782010-12-22 14:18:50 +08001719 __unqueue_futex(q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001720
1721 BUG_ON(q->pi_state);
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 spin_unlock(lock_ptr);
1724 ret = 1;
1725 }
1726
Rusty Russell9adef582007-05-08 00:26:42 -07001727 drop_futex_key_refs(&q->key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 return ret;
1729}
1730
Ingo Molnarc87e2832006-06-27 02:54:58 -07001731/*
1732 * PI futexes can not be requeued and must remove themself from the
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001733 * hash bucket. The hash bucket lock (i.e. lock_ptr) is held on entry
1734 * and dropped here.
Ingo Molnarc87e2832006-06-27 02:54:58 -07001735 */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001736static void unqueue_me_pi(struct futex_q *q)
Namhyung Kim15e408c2010-09-14 21:43:48 +09001737 __releases(q->lock_ptr)
Ingo Molnarc87e2832006-06-27 02:54:58 -07001738{
Lai Jiangshan2e129782010-12-22 14:18:50 +08001739 __unqueue_futex(q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001740
1741 BUG_ON(!q->pi_state);
1742 free_pi_state(q->pi_state);
1743 q->pi_state = NULL;
1744
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001745 spin_unlock(q->lock_ptr);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001746}
1747
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001748/*
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001749 * Fixup the pi_state owner with the new owner.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001750 *
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001751 * Must be called with hash bucket lock held and mm->sem held for non
1752 * private futexes.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001753 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001754static int fixup_pi_state_owner(u32 __user *uaddr, struct futex_q *q,
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001755 struct task_struct *newowner)
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001756{
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001757 u32 newtid = task_pid_vnr(newowner) | FUTEX_WAITERS;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001758 struct futex_pi_state *pi_state = q->pi_state;
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001759 struct task_struct *oldowner = pi_state->owner;
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +03001760 u32 uval, uninitialized_var(curval), newval;
Darren Harte4dc5b72009-03-12 00:56:13 -07001761 int ret;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001762
1763 /* Owner died? */
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001764 if (!pi_state->owner)
1765 newtid |= FUTEX_OWNER_DIED;
1766
1767 /*
1768 * We are here either because we stole the rtmutex from the
Lai Jiangshan81612392011-01-14 17:09:41 +08001769 * previous highest priority waiter or we are the highest priority
1770 * waiter but failed to get the rtmutex the first time.
1771 * We have to replace the newowner TID in the user space variable.
1772 * This must be atomic as we have to preserve the owner died bit here.
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001773 *
Darren Hartb2d09942009-03-12 00:55:37 -07001774 * Note: We write the user space value _before_ changing the pi_state
1775 * because we can fault here. Imagine swapped out pages or a fork
1776 * that marked all the anonymous memory readonly for cow.
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001777 *
1778 * Modifying pi_state _before_ the user space value would
1779 * leave the pi_state in an inconsistent state when we fault
1780 * here, because we need to drop the hash bucket lock to
1781 * handle the fault. This might be observed in the PID check
1782 * in lookup_pi_state.
1783 */
1784retry:
1785 if (get_futex_value_locked(&uval, uaddr))
1786 goto handle_fault;
1787
1788 while (1) {
1789 newval = (uval & FUTEX_OWNER_DIED) | newtid;
1790
Michel Lespinasse37a9d912011-03-10 18:48:51 -08001791 if (cmpxchg_futex_value_locked(&curval, uaddr, uval, newval))
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001792 goto handle_fault;
1793 if (curval == uval)
1794 break;
1795 uval = curval;
1796 }
1797
1798 /*
1799 * We fixed up user space. Now we need to fix the pi_state
1800 * itself.
1801 */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001802 if (pi_state->owner != NULL) {
Thomas Gleixner1d615482009-11-17 14:54:03 +01001803 raw_spin_lock_irq(&pi_state->owner->pi_lock);
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001804 WARN_ON(list_empty(&pi_state->list));
1805 list_del_init(&pi_state->list);
Thomas Gleixner1d615482009-11-17 14:54:03 +01001806 raw_spin_unlock_irq(&pi_state->owner->pi_lock);
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001807 }
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001808
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001809 pi_state->owner = newowner;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001810
Thomas Gleixner1d615482009-11-17 14:54:03 +01001811 raw_spin_lock_irq(&newowner->pi_lock);
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001812 WARN_ON(!list_empty(&pi_state->list));
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001813 list_add(&pi_state->list, &newowner->pi_state_list);
Thomas Gleixner1d615482009-11-17 14:54:03 +01001814 raw_spin_unlock_irq(&newowner->pi_lock);
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001815 return 0;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001816
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001817 /*
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001818 * To handle the page fault we need to drop the hash bucket
Lai Jiangshan81612392011-01-14 17:09:41 +08001819 * lock here. That gives the other task (either the highest priority
1820 * waiter itself or the task which stole the rtmutex) the
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001821 * chance to try the fixup of the pi_state. So once we are
1822 * back from handling the fault we need to check the pi_state
1823 * after reacquiring the hash bucket lock and before trying to
1824 * do another fixup. When the fixup has been done already we
1825 * simply return.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001826 */
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001827handle_fault:
1828 spin_unlock(q->lock_ptr);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001829
Thomas Gleixnerd0725992009-06-11 23:15:43 +02001830 ret = fault_in_user_writeable(uaddr);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001831
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001832 spin_lock(q->lock_ptr);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001833
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001834 /*
1835 * Check if someone else fixed it for us:
1836 */
1837 if (pi_state->owner != oldowner)
1838 return 0;
1839
1840 if (ret)
1841 return ret;
1842
1843 goto retry;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001844}
1845
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001846static long futex_wait_restart(struct restart_block *restart);
Thomas Gleixner36cf3b52007-07-15 23:41:20 -07001847
Darren Hartca5f9522009-04-03 13:39:33 -07001848/**
Darren Hartdd973992009-04-03 13:40:02 -07001849 * fixup_owner() - Post lock pi_state and corner case management
1850 * @uaddr: user address of the futex
Darren Hartdd973992009-04-03 13:40:02 -07001851 * @q: futex_q (contains pi_state and access to the rt_mutex)
1852 * @locked: if the attempt to take the rt_mutex succeeded (1) or not (0)
1853 *
1854 * After attempting to lock an rt_mutex, this function is called to cleanup
1855 * the pi_state owner as well as handle race conditions that may allow us to
1856 * acquire the lock. Must be called with the hb lock held.
1857 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001858 * Return:
1859 * 1 - success, lock taken;
1860 * 0 - success, lock not taken;
Darren Hartdd973992009-04-03 13:40:02 -07001861 * <0 - on error (-EFAULT)
1862 */
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001863static int fixup_owner(u32 __user *uaddr, struct futex_q *q, int locked)
Darren Hartdd973992009-04-03 13:40:02 -07001864{
1865 struct task_struct *owner;
1866 int ret = 0;
1867
1868 if (locked) {
1869 /*
1870 * Got the lock. We might not be the anticipated owner if we
1871 * did a lock-steal - fix up the PI-state in that case:
1872 */
1873 if (q->pi_state->owner != current)
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001874 ret = fixup_pi_state_owner(uaddr, q, current);
Darren Hartdd973992009-04-03 13:40:02 -07001875 goto out;
1876 }
1877
1878 /*
1879 * Catch the rare case, where the lock was released when we were on the
1880 * way back before we locked the hash bucket.
1881 */
1882 if (q->pi_state->owner == current) {
1883 /*
1884 * Try to get the rt_mutex now. This might fail as some other
1885 * task acquired the rt_mutex after we removed ourself from the
1886 * rt_mutex waiters list.
1887 */
1888 if (rt_mutex_trylock(&q->pi_state->pi_mutex)) {
1889 locked = 1;
1890 goto out;
1891 }
1892
1893 /*
1894 * pi_state is incorrect, some other task did a lock steal and
1895 * we returned due to timeout or signal without taking the
Lai Jiangshan81612392011-01-14 17:09:41 +08001896 * rt_mutex. Too late.
Darren Hartdd973992009-04-03 13:40:02 -07001897 */
Lai Jiangshan81612392011-01-14 17:09:41 +08001898 raw_spin_lock(&q->pi_state->pi_mutex.wait_lock);
Darren Hartdd973992009-04-03 13:40:02 -07001899 owner = rt_mutex_owner(&q->pi_state->pi_mutex);
Lai Jiangshan81612392011-01-14 17:09:41 +08001900 if (!owner)
1901 owner = rt_mutex_next_owner(&q->pi_state->pi_mutex);
1902 raw_spin_unlock(&q->pi_state->pi_mutex.wait_lock);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001903 ret = fixup_pi_state_owner(uaddr, q, owner);
Darren Hartdd973992009-04-03 13:40:02 -07001904 goto out;
1905 }
1906
1907 /*
1908 * Paranoia check. If we did not take the lock, then we should not be
Lai Jiangshan81612392011-01-14 17:09:41 +08001909 * the owner of the rt_mutex.
Darren Hartdd973992009-04-03 13:40:02 -07001910 */
1911 if (rt_mutex_owner(&q->pi_state->pi_mutex) == current)
1912 printk(KERN_ERR "fixup_owner: ret = %d pi-mutex: %p "
1913 "pi-state %p\n", ret,
1914 q->pi_state->pi_mutex.owner,
1915 q->pi_state->owner);
1916
1917out:
1918 return ret ? ret : locked;
1919}
1920
1921/**
Darren Hartca5f9522009-04-03 13:39:33 -07001922 * futex_wait_queue_me() - queue_me() and wait for wakeup, timeout, or signal
1923 * @hb: the futex hash bucket, must be locked by the caller
1924 * @q: the futex_q to queue up on
1925 * @timeout: the prepared hrtimer_sleeper, or null for no timeout
Darren Hartca5f9522009-04-03 13:39:33 -07001926 */
1927static void futex_wait_queue_me(struct futex_hash_bucket *hb, struct futex_q *q,
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001928 struct hrtimer_sleeper *timeout)
Darren Hartca5f9522009-04-03 13:39:33 -07001929{
Darren Hart9beba3c2009-09-24 11:54:47 -07001930 /*
1931 * The task state is guaranteed to be set before another task can
1932 * wake it. set_current_state() is implemented using set_mb() and
1933 * queue_me() calls spin_unlock() upon completion, both serializing
1934 * access to the hash list and forcing another memory barrier.
1935 */
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001936 set_current_state(TASK_INTERRUPTIBLE);
Darren Hart0729e192009-09-21 22:30:38 -07001937 queue_me(q, hb);
Darren Hartca5f9522009-04-03 13:39:33 -07001938
1939 /* Arm the timer */
1940 if (timeout) {
1941 hrtimer_start_expires(&timeout->timer, HRTIMER_MODE_ABS);
1942 if (!hrtimer_active(&timeout->timer))
1943 timeout->task = NULL;
1944 }
1945
1946 /*
Darren Hart0729e192009-09-21 22:30:38 -07001947 * If we have been removed from the hash list, then another task
1948 * has tried to wake us, and we can skip the call to schedule().
Darren Hartca5f9522009-04-03 13:39:33 -07001949 */
1950 if (likely(!plist_node_empty(&q->list))) {
1951 /*
1952 * If the timer has already expired, current will already be
1953 * flagged for rescheduling. Only call schedule if there
1954 * is no timeout, or if it has yet to expire.
1955 */
1956 if (!timeout || timeout->task)
Colin Cross88c80042013-05-01 18:35:05 -07001957 freezable_schedule();
Darren Hartca5f9522009-04-03 13:39:33 -07001958 }
1959 __set_current_state(TASK_RUNNING);
1960}
1961
Darren Hartf8010732009-04-03 13:40:40 -07001962/**
1963 * futex_wait_setup() - Prepare to wait on a futex
1964 * @uaddr: the futex userspace address
1965 * @val: the expected value
Darren Hartb41277d2010-11-08 13:10:09 -08001966 * @flags: futex flags (FLAGS_SHARED, etc.)
Darren Hartf8010732009-04-03 13:40:40 -07001967 * @q: the associated futex_q
1968 * @hb: storage for hash_bucket pointer to be returned to caller
1969 *
1970 * Setup the futex_q and locate the hash_bucket. Get the futex value and
1971 * compare it with the expected value. Handle atomic faults internally.
1972 * Return with the hb lock held and a q.key reference on success, and unlocked
1973 * with no q.key reference on failure.
1974 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001975 * Return:
1976 * 0 - uaddr contains val and hb has been locked;
Bart Van Asscheca4a04c2011-07-17 09:01:00 +02001977 * <1 - -EFAULT or -EWOULDBLOCK (uaddr does not contain val) and hb is unlocked
Darren Hartf8010732009-04-03 13:40:40 -07001978 */
Darren Hartb41277d2010-11-08 13:10:09 -08001979static int futex_wait_setup(u32 __user *uaddr, u32 val, unsigned int flags,
Darren Hartf8010732009-04-03 13:40:40 -07001980 struct futex_q *q, struct futex_hash_bucket **hb)
1981{
1982 u32 uval;
1983 int ret;
1984
1985 /*
1986 * Access the page AFTER the hash-bucket is locked.
1987 * Order is important:
1988 *
1989 * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
1990 * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); }
1991 *
1992 * The basic logical guarantee of a futex is that it blocks ONLY
1993 * if cond(var) is known to be true at the time of blocking, for
Michel Lespinasse8fe8f542011-03-06 18:07:50 -08001994 * any cond. If we locked the hash-bucket after testing *uaddr, that
1995 * would open a race condition where we could block indefinitely with
Darren Hartf8010732009-04-03 13:40:40 -07001996 * cond(var) false, which would violate the guarantee.
1997 *
Michel Lespinasse8fe8f542011-03-06 18:07:50 -08001998 * On the other hand, we insert q and release the hash-bucket only
1999 * after testing *uaddr. This guarantees that futex_wait() will NOT
2000 * absorb a wakeup if *uaddr does not match the desired values
2001 * while the syscall executes.
Darren Hartf8010732009-04-03 13:40:40 -07002002 */
2003retry:
Shawn Bohrer9ea71502011-06-30 11:21:32 -05002004 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q->key, VERIFY_READ);
Darren Hartf8010732009-04-03 13:40:40 -07002005 if (unlikely(ret != 0))
Darren Harta5a2a0c2009-04-10 09:50:05 -07002006 return ret;
Darren Hartf8010732009-04-03 13:40:40 -07002007
2008retry_private:
2009 *hb = queue_lock(q);
2010
2011 ret = get_futex_value_locked(&uval, uaddr);
2012
2013 if (ret) {
Jason Low0d00c7b2014-01-12 15:31:22 -08002014 queue_unlock(*hb);
Darren Hartf8010732009-04-03 13:40:40 -07002015
2016 ret = get_user(uval, uaddr);
2017 if (ret)
2018 goto out;
2019
Darren Hartb41277d2010-11-08 13:10:09 -08002020 if (!(flags & FLAGS_SHARED))
Darren Hartf8010732009-04-03 13:40:40 -07002021 goto retry_private;
2022
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002023 put_futex_key(&q->key);
Darren Hartf8010732009-04-03 13:40:40 -07002024 goto retry;
2025 }
2026
2027 if (uval != val) {
Jason Low0d00c7b2014-01-12 15:31:22 -08002028 queue_unlock(*hb);
Darren Hartf8010732009-04-03 13:40:40 -07002029 ret = -EWOULDBLOCK;
2030 }
2031
2032out:
2033 if (ret)
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002034 put_futex_key(&q->key);
Darren Hartf8010732009-04-03 13:40:40 -07002035 return ret;
2036}
2037
Darren Hartb41277d2010-11-08 13:10:09 -08002038static int futex_wait(u32 __user *uaddr, unsigned int flags, u32 val,
2039 ktime_t *abs_time, u32 bitset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
Darren Hartca5f9522009-04-03 13:39:33 -07002041 struct hrtimer_sleeper timeout, *to = NULL;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002042 struct restart_block *restart;
Ingo Molnare2970f22006-06-27 02:54:47 -07002043 struct futex_hash_bucket *hb;
Darren Hart5bdb05f2010-11-08 13:40:28 -08002044 struct futex_q q = futex_q_init;
Ingo Molnare2970f22006-06-27 02:54:47 -07002045 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Thomas Gleixnercd689982008-02-01 17:45:14 +01002047 if (!bitset)
2048 return -EINVAL;
Thomas Gleixnercd689982008-02-01 17:45:14 +01002049 q.bitset = bitset;
Darren Hartca5f9522009-04-03 13:39:33 -07002050
2051 if (abs_time) {
2052 to = &timeout;
2053
Darren Hartb41277d2010-11-08 13:10:09 -08002054 hrtimer_init_on_stack(&to->timer, (flags & FLAGS_CLOCKRT) ?
2055 CLOCK_REALTIME : CLOCK_MONOTONIC,
2056 HRTIMER_MODE_ABS);
Darren Hartca5f9522009-04-03 13:39:33 -07002057 hrtimer_init_sleeper(to, current);
2058 hrtimer_set_expires_range_ns(&to->timer, *abs_time,
2059 current->timer_slack_ns);
2060 }
2061
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002062retry:
Darren Hart7ada8762010-10-17 08:35:04 -07002063 /*
2064 * Prepare to wait on uaddr. On success, holds hb lock and increments
2065 * q.key refs.
2066 */
Darren Hartb41277d2010-11-08 13:10:09 -08002067 ret = futex_wait_setup(uaddr, val, flags, &q, &hb);
Darren Hartf8010732009-04-03 13:40:40 -07002068 if (ret)
Darren Hart42d35d42008-12-29 15:49:53 -08002069 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Darren Hartca5f9522009-04-03 13:39:33 -07002071 /* queue_me and wait for wakeup, timeout, or a signal. */
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02002072 futex_wait_queue_me(hb, &q, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074 /* If we were woken (and unqueued), we succeeded, whatever. */
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002075 ret = 0;
Darren Hart7ada8762010-10-17 08:35:04 -07002076 /* unqueue_me() drops q.key ref */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 if (!unqueue_me(&q))
Darren Hart7ada8762010-10-17 08:35:04 -07002078 goto out;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002079 ret = -ETIMEDOUT;
Darren Hartca5f9522009-04-03 13:39:33 -07002080 if (to && !to->task)
Darren Hart7ada8762010-10-17 08:35:04 -07002081 goto out;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002082
Ingo Molnare2970f22006-06-27 02:54:47 -07002083 /*
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002084 * We expect signal_pending(current), but we might be the
2085 * victim of a spurious wakeup as well.
Ingo Molnare2970f22006-06-27 02:54:47 -07002086 */
Darren Hart7ada8762010-10-17 08:35:04 -07002087 if (!signal_pending(current))
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002088 goto retry;
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002089
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002090 ret = -ERESTARTSYS;
Pierre Peifferc19384b2007-05-09 02:35:02 -07002091 if (!abs_time)
Darren Hart7ada8762010-10-17 08:35:04 -07002092 goto out;
Steven Rostedtce6bd422007-12-05 15:46:09 +01002093
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002094 restart = &current_thread_info()->restart_block;
2095 restart->fn = futex_wait_restart;
Namhyung Kima3c74c52010-09-14 21:43:47 +09002096 restart->futex.uaddr = uaddr;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002097 restart->futex.val = val;
2098 restart->futex.time = abs_time->tv64;
2099 restart->futex.bitset = bitset;
Darren Hart0cd9c642011-04-14 15:41:57 -07002100 restart->futex.flags = flags | FLAGS_HAS_TIMEOUT;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002101
2102 ret = -ERESTART_RESTARTBLOCK;
2103
Darren Hart42d35d42008-12-29 15:49:53 -08002104out:
Darren Hartca5f9522009-04-03 13:39:33 -07002105 if (to) {
2106 hrtimer_cancel(&to->timer);
2107 destroy_hrtimer_on_stack(&to->timer);
2108 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07002109 return ret;
2110}
2111
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002112
2113static long futex_wait_restart(struct restart_block *restart)
2114{
Namhyung Kima3c74c52010-09-14 21:43:47 +09002115 u32 __user *uaddr = restart->futex.uaddr;
Darren Harta72188d2009-04-03 13:40:22 -07002116 ktime_t t, *tp = NULL;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002117
Darren Harta72188d2009-04-03 13:40:22 -07002118 if (restart->futex.flags & FLAGS_HAS_TIMEOUT) {
2119 t.tv64 = restart->futex.time;
2120 tp = &t;
2121 }
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002122 restart->fn = do_no_restart_syscall;
Darren Hartb41277d2010-11-08 13:10:09 -08002123
2124 return (long)futex_wait(uaddr, restart->futex.flags,
2125 restart->futex.val, tp, restart->futex.bitset);
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002126}
2127
2128
Ingo Molnarc87e2832006-06-27 02:54:58 -07002129/*
2130 * Userspace tried a 0 -> TID atomic transition of the futex value
2131 * and failed. The kernel side here does the whole locking operation:
2132 * if there are waiters then it will block, it does PI, etc. (Due to
2133 * races the kernel might see a 0 value of the futex too.)
2134 */
Darren Hartb41277d2010-11-08 13:10:09 -08002135static int futex_lock_pi(u32 __user *uaddr, unsigned int flags, int detect,
2136 ktime_t *time, int trylock)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002137{
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07002138 struct hrtimer_sleeper timeout, *to = NULL;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002139 struct futex_hash_bucket *hb;
Darren Hart5bdb05f2010-11-08 13:40:28 -08002140 struct futex_q q = futex_q_init;
Darren Hartdd973992009-04-03 13:40:02 -07002141 int res, ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002142
2143 if (refill_pi_state_cache())
2144 return -ENOMEM;
2145
Pierre Peifferc19384b2007-05-09 02:35:02 -07002146 if (time) {
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07002147 to = &timeout;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07002148 hrtimer_init_on_stack(&to->timer, CLOCK_REALTIME,
2149 HRTIMER_MODE_ABS);
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07002150 hrtimer_init_sleeper(to, current);
Arjan van de Vencc584b22008-09-01 15:02:30 -07002151 hrtimer_set_expires(&to->timer, *time);
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07002152 }
2153
Darren Hart42d35d42008-12-29 15:49:53 -08002154retry:
Shawn Bohrer9ea71502011-06-30 11:21:32 -05002155 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q.key, VERIFY_WRITE);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002156 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08002157 goto out;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002158
Darren Harte4dc5b72009-03-12 00:56:13 -07002159retry_private:
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01002160 hb = queue_lock(&q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002161
Darren Hartbab5bc92009-04-07 23:23:50 -07002162 ret = futex_lock_pi_atomic(uaddr, hb, &q.key, &q.pi_state, current, 0);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002163 if (unlikely(ret)) {
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002164 switch (ret) {
Darren Hart1a520842009-04-03 13:39:52 -07002165 case 1:
2166 /* We got the lock. */
2167 ret = 0;
2168 goto out_unlock_put_key;
2169 case -EFAULT:
2170 goto uaddr_faulted;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002171 case -EAGAIN:
2172 /*
2173 * Task is exiting and we just wait for the
2174 * exit to complete.
2175 */
Jason Low0d00c7b2014-01-12 15:31:22 -08002176 queue_unlock(hb);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002177 put_futex_key(&q.key);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002178 cond_resched();
2179 goto retry;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002180 default:
Darren Hart42d35d42008-12-29 15:49:53 -08002181 goto out_unlock_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002182 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07002183 }
2184
2185 /*
2186 * Only actually queue now that the atomic ops are done:
2187 */
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01002188 queue_me(&q, hb);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002189
Ingo Molnarc87e2832006-06-27 02:54:58 -07002190 WARN_ON(!q.pi_state);
2191 /*
2192 * Block on the PI mutex:
2193 */
2194 if (!trylock)
2195 ret = rt_mutex_timed_lock(&q.pi_state->pi_mutex, to, 1);
2196 else {
2197 ret = rt_mutex_trylock(&q.pi_state->pi_mutex);
2198 /* Fixup the trylock return value: */
2199 ret = ret ? 0 : -EWOULDBLOCK;
2200 }
2201
Vernon Mauerya99e4e42006-07-01 04:35:42 -07002202 spin_lock(q.lock_ptr);
Darren Hartdd973992009-04-03 13:40:02 -07002203 /*
2204 * Fixup the pi_state owner and possibly acquire the lock if we
2205 * haven't already.
2206 */
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002207 res = fixup_owner(uaddr, &q, !ret);
Darren Hartdd973992009-04-03 13:40:02 -07002208 /*
2209 * If fixup_owner() returned an error, proprogate that. If it acquired
2210 * the lock, clear our -ETIMEDOUT or -EINTR.
2211 */
2212 if (res)
2213 ret = (res < 0) ? res : 0;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002214
Darren Harte8f63862009-03-12 00:56:06 -07002215 /*
Darren Hartdd973992009-04-03 13:40:02 -07002216 * If fixup_owner() faulted and was unable to handle the fault, unlock
2217 * it and return the fault to userspace.
Darren Harte8f63862009-03-12 00:56:06 -07002218 */
2219 if (ret && (rt_mutex_owner(&q.pi_state->pi_mutex) == current))
2220 rt_mutex_unlock(&q.pi_state->pi_mutex);
2221
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002222 /* Unqueue and drop the lock */
2223 unqueue_me_pi(&q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002224
Mikael Pettersson5ecb01c2010-01-23 22:36:29 +01002225 goto out_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002226
Darren Hart42d35d42008-12-29 15:49:53 -08002227out_unlock_put_key:
Jason Low0d00c7b2014-01-12 15:31:22 -08002228 queue_unlock(hb);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002229
Darren Hart42d35d42008-12-29 15:49:53 -08002230out_put_key:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002231 put_futex_key(&q.key);
Darren Hart42d35d42008-12-29 15:49:53 -08002232out:
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07002233 if (to)
2234 destroy_hrtimer_on_stack(&to->timer);
Darren Hartdd973992009-04-03 13:40:02 -07002235 return ret != -EINTR ? ret : -ERESTARTNOINTR;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002236
Darren Hart42d35d42008-12-29 15:49:53 -08002237uaddr_faulted:
Jason Low0d00c7b2014-01-12 15:31:22 -08002238 queue_unlock(hb);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002239
Thomas Gleixnerd0725992009-06-11 23:15:43 +02002240 ret = fault_in_user_writeable(uaddr);
Darren Harte4dc5b72009-03-12 00:56:13 -07002241 if (ret)
2242 goto out_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002243
Darren Hartb41277d2010-11-08 13:10:09 -08002244 if (!(flags & FLAGS_SHARED))
Darren Harte4dc5b72009-03-12 00:56:13 -07002245 goto retry_private;
2246
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002247 put_futex_key(&q.key);
Darren Harte4dc5b72009-03-12 00:56:13 -07002248 goto retry;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002249}
2250
2251/*
Ingo Molnarc87e2832006-06-27 02:54:58 -07002252 * Userspace attempted a TID -> 0 atomic transition, and failed.
2253 * This is the in-kernel slowpath: we look up the PI state (if any),
2254 * and do the rt-mutex unlock.
2255 */
Darren Hartb41277d2010-11-08 13:10:09 -08002256static int futex_unlock_pi(u32 __user *uaddr, unsigned int flags)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002257{
2258 struct futex_hash_bucket *hb;
2259 struct futex_q *this, *next;
Peter Zijlstra38d47c12008-09-26 19:32:20 +02002260 union futex_key key = FUTEX_KEY_INIT;
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +01002261 u32 uval, vpid = task_pid_vnr(current);
Darren Harte4dc5b72009-03-12 00:56:13 -07002262 int ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002263
2264retry:
2265 if (get_user(uval, uaddr))
2266 return -EFAULT;
2267 /*
2268 * We release only a lock we actually own:
2269 */
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +01002270 if ((uval & FUTEX_TID_MASK) != vpid)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002271 return -EPERM;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002272
Shawn Bohrer9ea71502011-06-30 11:21:32 -05002273 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, VERIFY_WRITE);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002274 if (unlikely(ret != 0))
2275 goto out;
2276
2277 hb = hash_futex(&key);
2278 spin_lock(&hb->lock);
2279
Ingo Molnarc87e2832006-06-27 02:54:58 -07002280 /*
2281 * To avoid races, try to do the TID -> 0 atomic transition
2282 * again. If it succeeds then we can return without waking
2283 * anyone else up:
2284 */
Michel Lespinasse37a9d912011-03-10 18:48:51 -08002285 if (!(uval & FUTEX_OWNER_DIED) &&
2286 cmpxchg_futex_value_locked(&uval, uaddr, vpid, 0))
Ingo Molnarc87e2832006-06-27 02:54:58 -07002287 goto pi_faulted;
2288 /*
2289 * Rare case: we managed to release the lock atomically,
2290 * no need to wake anyone else up:
2291 */
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +01002292 if (unlikely(uval == vpid))
Ingo Molnarc87e2832006-06-27 02:54:58 -07002293 goto out_unlock;
2294
2295 /*
2296 * Ok, other tasks may need to be woken up - check waiters
2297 * and do the wakeup if necessary:
2298 */
Jason Low0d00c7b2014-01-12 15:31:22 -08002299 plist_for_each_entry_safe(this, next, &hb->chain, list) {
Ingo Molnarc87e2832006-06-27 02:54:58 -07002300 if (!match_futex (&this->key, &key))
2301 continue;
2302 ret = wake_futex_pi(uaddr, uval, this);
2303 /*
2304 * The atomic access to the futex value
2305 * generated a pagefault, so retry the
2306 * user-access and the wakeup:
2307 */
2308 if (ret == -EFAULT)
2309 goto pi_faulted;
2310 goto out_unlock;
2311 }
2312 /*
2313 * No waiters - kernel unlocks the futex:
2314 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002315 if (!(uval & FUTEX_OWNER_DIED)) {
2316 ret = unlock_futex_pi(uaddr, uval);
2317 if (ret == -EFAULT)
2318 goto pi_faulted;
2319 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07002320
2321out_unlock:
2322 spin_unlock(&hb->lock);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002323 put_futex_key(&key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002324
Darren Hart42d35d42008-12-29 15:49:53 -08002325out:
Ingo Molnarc87e2832006-06-27 02:54:58 -07002326 return ret;
2327
2328pi_faulted:
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002329 spin_unlock(&hb->lock);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002330 put_futex_key(&key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002331
Thomas Gleixnerd0725992009-06-11 23:15:43 +02002332 ret = fault_in_user_writeable(uaddr);
Darren Hartb5686362008-12-18 15:06:34 -08002333 if (!ret)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002334 goto retry;
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 return ret;
2337}
2338
Darren Hart52400ba2009-04-03 13:40:49 -07002339/**
2340 * handle_early_requeue_pi_wakeup() - Detect early wakeup on the initial futex
2341 * @hb: the hash_bucket futex_q was original enqueued on
2342 * @q: the futex_q woken while waiting to be requeued
2343 * @key2: the futex_key of the requeue target futex
2344 * @timeout: the timeout associated with the wait (NULL if none)
2345 *
2346 * Detect if the task was woken on the initial futex as opposed to the requeue
2347 * target futex. If so, determine if it was a timeout or a signal that caused
2348 * the wakeup and return the appropriate error code to the caller. Must be
2349 * called with the hb lock held.
2350 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08002351 * Return:
2352 * 0 = no early wakeup detected;
2353 * <0 = -ETIMEDOUT or -ERESTARTNOINTR
Darren Hart52400ba2009-04-03 13:40:49 -07002354 */
2355static inline
2356int handle_early_requeue_pi_wakeup(struct futex_hash_bucket *hb,
2357 struct futex_q *q, union futex_key *key2,
2358 struct hrtimer_sleeper *timeout)
2359{
2360 int ret = 0;
2361
2362 /*
2363 * With the hb lock held, we avoid races while we process the wakeup.
2364 * We only need to hold hb (and not hb2) to ensure atomicity as the
2365 * wakeup code can't change q.key from uaddr to uaddr2 if we hold hb.
2366 * It can't be requeued from uaddr2 to something else since we don't
2367 * support a PI aware source futex for requeue.
2368 */
2369 if (!match_futex(&q->key, key2)) {
2370 WARN_ON(q->lock_ptr && (&hb->lock != q->lock_ptr));
2371 /*
2372 * We were woken prior to requeue by a timeout or a signal.
2373 * Unqueue the futex_q and determine which it was.
2374 */
Lai Jiangshan2e129782010-12-22 14:18:50 +08002375 plist_del(&q->list, &hb->chain);
Linus Torvalds11d46162014-03-20 22:11:17 -07002376 hb_waiters_dec(hb);
Darren Hart52400ba2009-04-03 13:40:49 -07002377
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002378 /* Handle spurious wakeups gracefully */
Thomas Gleixner11df6dd2009-10-28 20:26:48 +01002379 ret = -EWOULDBLOCK;
Darren Hart52400ba2009-04-03 13:40:49 -07002380 if (timeout && !timeout->task)
2381 ret = -ETIMEDOUT;
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002382 else if (signal_pending(current))
Thomas Gleixner1c840c12009-05-20 09:22:40 +02002383 ret = -ERESTARTNOINTR;
Darren Hart52400ba2009-04-03 13:40:49 -07002384 }
2385 return ret;
2386}
2387
2388/**
2389 * futex_wait_requeue_pi() - Wait on uaddr and take uaddr2
Darren Hart56ec1602009-09-21 22:29:59 -07002390 * @uaddr: the futex we initially wait on (non-pi)
Darren Hartb41277d2010-11-08 13:10:09 -08002391 * @flags: futex flags (FLAGS_SHARED, FLAGS_CLOCKRT, etc.), they must be
Darren Hart52400ba2009-04-03 13:40:49 -07002392 * the same type, no requeueing from private to shared, etc.
2393 * @val: the expected value of uaddr
2394 * @abs_time: absolute timeout
Darren Hart56ec1602009-09-21 22:29:59 -07002395 * @bitset: 32 bit wakeup bitset set by userspace, defaults to all
Darren Hart52400ba2009-04-03 13:40:49 -07002396 * @uaddr2: the pi futex we will take prior to returning to user-space
2397 *
2398 * The caller will wait on uaddr and will be requeued by futex_requeue() to
Darren Hart6f7b0a22012-07-20 11:53:31 -07002399 * uaddr2 which must be PI aware and unique from uaddr. Normal wakeup will wake
2400 * on uaddr2 and complete the acquisition of the rt_mutex prior to returning to
2401 * userspace. This ensures the rt_mutex maintains an owner when it has waiters;
2402 * without one, the pi logic would not know which task to boost/deboost, if
2403 * there was a need to.
Darren Hart52400ba2009-04-03 13:40:49 -07002404 *
2405 * We call schedule in futex_wait_queue_me() when we enqueue and return there
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08002406 * via the following--
Darren Hart52400ba2009-04-03 13:40:49 -07002407 * 1) wakeup on uaddr2 after an atomic lock acquisition by futex_requeue()
Darren Hartcc6db4e2009-07-31 16:20:10 -07002408 * 2) wakeup on uaddr2 after a requeue
2409 * 3) signal
2410 * 4) timeout
Darren Hart52400ba2009-04-03 13:40:49 -07002411 *
Darren Hartcc6db4e2009-07-31 16:20:10 -07002412 * If 3, cleanup and return -ERESTARTNOINTR.
Darren Hart52400ba2009-04-03 13:40:49 -07002413 *
2414 * If 2, we may then block on trying to take the rt_mutex and return via:
2415 * 5) successful lock
2416 * 6) signal
2417 * 7) timeout
2418 * 8) other lock acquisition failure
2419 *
Darren Hartcc6db4e2009-07-31 16:20:10 -07002420 * If 6, return -EWOULDBLOCK (restarting the syscall would do the same).
Darren Hart52400ba2009-04-03 13:40:49 -07002421 *
2422 * If 4 or 7, we cleanup and return with -ETIMEDOUT.
2423 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08002424 * Return:
2425 * 0 - On success;
Darren Hart52400ba2009-04-03 13:40:49 -07002426 * <0 - On error
2427 */
Darren Hartb41277d2010-11-08 13:10:09 -08002428static int futex_wait_requeue_pi(u32 __user *uaddr, unsigned int flags,
Darren Hart52400ba2009-04-03 13:40:49 -07002429 u32 val, ktime_t *abs_time, u32 bitset,
Darren Hartb41277d2010-11-08 13:10:09 -08002430 u32 __user *uaddr2)
Darren Hart52400ba2009-04-03 13:40:49 -07002431{
2432 struct hrtimer_sleeper timeout, *to = NULL;
2433 struct rt_mutex_waiter rt_waiter;
2434 struct rt_mutex *pi_mutex = NULL;
Darren Hart52400ba2009-04-03 13:40:49 -07002435 struct futex_hash_bucket *hb;
Darren Hart5bdb05f2010-11-08 13:40:28 -08002436 union futex_key key2 = FUTEX_KEY_INIT;
2437 struct futex_q q = futex_q_init;
Darren Hart52400ba2009-04-03 13:40:49 -07002438 int res, ret;
Darren Hart52400ba2009-04-03 13:40:49 -07002439
Darren Hart6f7b0a22012-07-20 11:53:31 -07002440 if (uaddr == uaddr2)
2441 return -EINVAL;
2442
Darren Hart52400ba2009-04-03 13:40:49 -07002443 if (!bitset)
2444 return -EINVAL;
2445
2446 if (abs_time) {
2447 to = &timeout;
Darren Hartb41277d2010-11-08 13:10:09 -08002448 hrtimer_init_on_stack(&to->timer, (flags & FLAGS_CLOCKRT) ?
2449 CLOCK_REALTIME : CLOCK_MONOTONIC,
2450 HRTIMER_MODE_ABS);
Darren Hart52400ba2009-04-03 13:40:49 -07002451 hrtimer_init_sleeper(to, current);
2452 hrtimer_set_expires_range_ns(&to->timer, *abs_time,
2453 current->timer_slack_ns);
2454 }
2455
2456 /*
2457 * The waiter is allocated on our stack, manipulated by the requeue
2458 * code while we sleep on uaddr.
2459 */
2460 debug_rt_mutex_init_waiter(&rt_waiter);
Peter Zijlstrafb00aca2013-11-07 14:43:43 +01002461 RB_CLEAR_NODE(&rt_waiter.pi_tree_entry);
2462 RB_CLEAR_NODE(&rt_waiter.tree_entry);
Darren Hart52400ba2009-04-03 13:40:49 -07002463 rt_waiter.task = NULL;
2464
Shawn Bohrer9ea71502011-06-30 11:21:32 -05002465 ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, VERIFY_WRITE);
Darren Hart52400ba2009-04-03 13:40:49 -07002466 if (unlikely(ret != 0))
2467 goto out;
2468
Darren Hart84bc4af2009-08-13 17:36:53 -07002469 q.bitset = bitset;
2470 q.rt_waiter = &rt_waiter;
2471 q.requeue_pi_key = &key2;
2472
Darren Hart7ada8762010-10-17 08:35:04 -07002473 /*
2474 * Prepare to wait on uaddr. On success, increments q.key (key1) ref
2475 * count.
2476 */
Darren Hartb41277d2010-11-08 13:10:09 -08002477 ret = futex_wait_setup(uaddr, val, flags, &q, &hb);
Thomas Gleixnerc8b15a72009-05-20 09:18:50 +02002478 if (ret)
2479 goto out_key2;
Darren Hart52400ba2009-04-03 13:40:49 -07002480
2481 /* Queue the futex_q, drop the hb lock, wait for wakeup. */
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02002482 futex_wait_queue_me(hb, &q, to);
Darren Hart52400ba2009-04-03 13:40:49 -07002483
2484 spin_lock(&hb->lock);
2485 ret = handle_early_requeue_pi_wakeup(hb, &q, &key2, to);
2486 spin_unlock(&hb->lock);
2487 if (ret)
2488 goto out_put_keys;
2489
2490 /*
2491 * In order for us to be here, we know our q.key == key2, and since
2492 * we took the hb->lock above, we also know that futex_requeue() has
2493 * completed and we no longer have to concern ourselves with a wakeup
Darren Hart7ada8762010-10-17 08:35:04 -07002494 * race with the atomic proxy lock acquisition by the requeue code. The
2495 * futex_requeue dropped our key1 reference and incremented our key2
2496 * reference count.
Darren Hart52400ba2009-04-03 13:40:49 -07002497 */
2498
2499 /* Check if the requeue code acquired the second futex for us. */
2500 if (!q.rt_waiter) {
2501 /*
2502 * Got the lock. We might not be the anticipated owner if we
2503 * did a lock-steal - fix up the PI-state in that case.
2504 */
2505 if (q.pi_state && (q.pi_state->owner != current)) {
2506 spin_lock(q.lock_ptr);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002507 ret = fixup_pi_state_owner(uaddr2, &q, current);
Darren Hart52400ba2009-04-03 13:40:49 -07002508 spin_unlock(q.lock_ptr);
2509 }
2510 } else {
2511 /*
2512 * We have been woken up by futex_unlock_pi(), a timeout, or a
2513 * signal. futex_unlock_pi() will not destroy the lock_ptr nor
2514 * the pi_state.
2515 */
Darren Hartf27071c2012-07-20 11:53:30 -07002516 WARN_ON(!q.pi_state);
Darren Hart52400ba2009-04-03 13:40:49 -07002517 pi_mutex = &q.pi_state->pi_mutex;
2518 ret = rt_mutex_finish_proxy_lock(pi_mutex, to, &rt_waiter, 1);
2519 debug_rt_mutex_free_waiter(&rt_waiter);
2520
2521 spin_lock(q.lock_ptr);
2522 /*
2523 * Fixup the pi_state owner and possibly acquire the lock if we
2524 * haven't already.
2525 */
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002526 res = fixup_owner(uaddr2, &q, !ret);
Darren Hart52400ba2009-04-03 13:40:49 -07002527 /*
2528 * If fixup_owner() returned an error, proprogate that. If it
Darren Hart56ec1602009-09-21 22:29:59 -07002529 * acquired the lock, clear -ETIMEDOUT or -EINTR.
Darren Hart52400ba2009-04-03 13:40:49 -07002530 */
2531 if (res)
2532 ret = (res < 0) ? res : 0;
2533
2534 /* Unqueue and drop the lock. */
2535 unqueue_me_pi(&q);
2536 }
2537
2538 /*
2539 * If fixup_pi_state_owner() faulted and was unable to handle the
2540 * fault, unlock the rt_mutex and return the fault to userspace.
2541 */
2542 if (ret == -EFAULT) {
Darren Hartb6070a82012-07-20 11:53:29 -07002543 if (pi_mutex && rt_mutex_owner(pi_mutex) == current)
Darren Hart52400ba2009-04-03 13:40:49 -07002544 rt_mutex_unlock(pi_mutex);
2545 } else if (ret == -EINTR) {
Darren Hart52400ba2009-04-03 13:40:49 -07002546 /*
Darren Hartcc6db4e2009-07-31 16:20:10 -07002547 * We've already been requeued, but cannot restart by calling
2548 * futex_lock_pi() directly. We could restart this syscall, but
2549 * it would detect that the user space "val" changed and return
2550 * -EWOULDBLOCK. Save the overhead of the restart and return
2551 * -EWOULDBLOCK directly.
Darren Hart52400ba2009-04-03 13:40:49 -07002552 */
Thomas Gleixner20708872009-05-19 23:04:59 +02002553 ret = -EWOULDBLOCK;
Darren Hart52400ba2009-04-03 13:40:49 -07002554 }
2555
2556out_put_keys:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002557 put_futex_key(&q.key);
Thomas Gleixnerc8b15a72009-05-20 09:18:50 +02002558out_key2:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002559 put_futex_key(&key2);
Darren Hart52400ba2009-04-03 13:40:49 -07002560
2561out:
2562 if (to) {
2563 hrtimer_cancel(&to->timer);
2564 destroy_hrtimer_on_stack(&to->timer);
2565 }
2566 return ret;
2567}
2568
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002569/*
2570 * Support for robust futexes: the kernel cleans up held futexes at
2571 * thread exit time.
2572 *
2573 * Implementation: user-space maintains a per-thread list of locks it
2574 * is holding. Upon do_exit(), the kernel carefully walks this list,
2575 * and marks all locks that are owned by this thread with the
Ingo Molnarc87e2832006-06-27 02:54:58 -07002576 * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002577 * always manipulated with the lock held, so the list is private and
2578 * per-thread. Userspace also maintains a per-thread 'list_op_pending'
2579 * field, to allow the kernel to clean up if the thread dies after
2580 * acquiring the lock, but just before it could have added itself to
2581 * the list. There can only be one such pending lock.
2582 */
2583
2584/**
Darren Hartd96ee562009-09-21 22:30:22 -07002585 * sys_set_robust_list() - Set the robust-futex list head of a task
2586 * @head: pointer to the list-head
2587 * @len: length of the list-head, as userspace expects
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002588 */
Heiko Carstens836f92a2009-01-14 14:14:33 +01002589SYSCALL_DEFINE2(set_robust_list, struct robust_list_head __user *, head,
2590 size_t, len)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002591{
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002592 if (!futex_cmpxchg_enabled)
2593 return -ENOSYS;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002594 /*
2595 * The kernel knows only one size for now:
2596 */
2597 if (unlikely(len != sizeof(*head)))
2598 return -EINVAL;
2599
2600 current->robust_list = head;
2601
2602 return 0;
2603}
2604
2605/**
Darren Hartd96ee562009-09-21 22:30:22 -07002606 * sys_get_robust_list() - Get the robust-futex list head of a task
2607 * @pid: pid of the process [zero for current task]
2608 * @head_ptr: pointer to a list-head pointer, the kernel fills it in
2609 * @len_ptr: pointer to a length field, the kernel fills in the header size
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002610 */
Heiko Carstens836f92a2009-01-14 14:14:33 +01002611SYSCALL_DEFINE3(get_robust_list, int, pid,
2612 struct robust_list_head __user * __user *, head_ptr,
2613 size_t __user *, len_ptr)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002614{
Al Viroba46df92006-10-10 22:46:07 +01002615 struct robust_list_head __user *head;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002616 unsigned long ret;
Kees Cookbdbb7762012-03-19 16:12:53 -07002617 struct task_struct *p;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002618
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002619 if (!futex_cmpxchg_enabled)
2620 return -ENOSYS;
2621
Kees Cookbdbb7762012-03-19 16:12:53 -07002622 rcu_read_lock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002623
Kees Cookbdbb7762012-03-19 16:12:53 -07002624 ret = -ESRCH;
2625 if (!pid)
2626 p = current;
2627 else {
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07002628 p = find_task_by_vpid(pid);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002629 if (!p)
2630 goto err_unlock;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002631 }
2632
Kees Cookbdbb7762012-03-19 16:12:53 -07002633 ret = -EPERM;
2634 if (!ptrace_may_access(p, PTRACE_MODE_READ))
2635 goto err_unlock;
2636
2637 head = p->robust_list;
2638 rcu_read_unlock();
2639
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002640 if (put_user(sizeof(*head), len_ptr))
2641 return -EFAULT;
2642 return put_user(head, head_ptr);
2643
2644err_unlock:
Oleg Nesterovaaa2a972006-09-29 02:00:55 -07002645 rcu_read_unlock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002646
2647 return ret;
2648}
2649
2650/*
2651 * Process a futex-list entry, check whether it's owned by the
2652 * dying task, and do notification if so:
2653 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002654int handle_futex_death(u32 __user *uaddr, struct task_struct *curr, int pi)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002655{
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +03002656 u32 uval, uninitialized_var(nval), mval;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002657
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08002658retry:
2659 if (get_user(uval, uaddr))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002660 return -1;
2661
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002662 if ((uval & FUTEX_TID_MASK) == task_pid_vnr(curr)) {
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002663 /*
2664 * Ok, this dying thread is truly holding a futex
2665 * of interest. Set the OWNER_DIED bit atomically
2666 * via cmpxchg, and if the value had FUTEX_WAITERS
2667 * set, wake up a waiter (if any). (We have to do a
2668 * futex_wake() even if OWNER_DIED is already set -
2669 * to handle the rare but possible case of recursive
2670 * thread-death.) The rest of the cleanup is done in
2671 * userspace.
2672 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002673 mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED;
Thomas Gleixner6e0aa9f2011-03-14 10:34:35 +01002674 /*
2675 * We are not holding a lock here, but we want to have
2676 * the pagefault_disable/enable() protection because
2677 * we want to handle the fault gracefully. If the
2678 * access fails we try to fault in the futex with R/W
2679 * verification via get_user_pages. get_user() above
2680 * does not guarantee R/W access. If that fails we
2681 * give up and leave the futex locked.
2682 */
2683 if (cmpxchg_futex_value_locked(&nval, uaddr, uval, mval)) {
2684 if (fault_in_user_writeable(uaddr))
2685 return -1;
2686 goto retry;
2687 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07002688 if (nval != uval)
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08002689 goto retry;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002690
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002691 /*
2692 * Wake robust non-PI futexes here. The wakeup of
2693 * PI futexes happens in exit_pi_state():
2694 */
Thomas Gleixner36cf3b52007-07-15 23:41:20 -07002695 if (!pi && (uval & FUTEX_WAITERS))
Peter Zijlstrac2f9f202008-09-26 19:32:23 +02002696 futex_wake(uaddr, 1, 1, FUTEX_BITSET_MATCH_ANY);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002697 }
2698 return 0;
2699}
2700
2701/*
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002702 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
2703 */
2704static inline int fetch_robust_entry(struct robust_list __user **entry,
Al Viroba46df92006-10-10 22:46:07 +01002705 struct robust_list __user * __user *head,
Namhyung Kim1dcc41b2010-09-14 21:43:46 +09002706 unsigned int *pi)
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002707{
2708 unsigned long uentry;
2709
Al Viroba46df92006-10-10 22:46:07 +01002710 if (get_user(uentry, (unsigned long __user *)head))
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002711 return -EFAULT;
2712
Al Viroba46df92006-10-10 22:46:07 +01002713 *entry = (void __user *)(uentry & ~1UL);
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002714 *pi = uentry & 1;
2715
2716 return 0;
2717}
2718
2719/*
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002720 * Walk curr->robust_list (very carefully, it's a userspace list!)
2721 * and mark any locks found there dead, and notify any waiters.
2722 *
2723 * We silently return on any sign of list-walking problem.
2724 */
2725void exit_robust_list(struct task_struct *curr)
2726{
2727 struct robust_list_head __user *head = curr->robust_list;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002728 struct robust_list __user *entry, *next_entry, *pending;
Darren Hart4c115e92010-11-04 15:00:00 -04002729 unsigned int limit = ROBUST_LIST_LIMIT, pi, pip;
2730 unsigned int uninitialized_var(next_pi);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002731 unsigned long futex_offset;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002732 int rc;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002733
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002734 if (!futex_cmpxchg_enabled)
2735 return;
2736
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002737 /*
2738 * Fetch the list head (which was registered earlier, via
2739 * sys_set_robust_list()):
2740 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002741 if (fetch_robust_entry(&entry, &head->list.next, &pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002742 return;
2743 /*
2744 * Fetch the relative futex offset:
2745 */
2746 if (get_user(futex_offset, &head->futex_offset))
2747 return;
2748 /*
2749 * Fetch any possibly pending lock-add first, and handle it
2750 * if it exists:
2751 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002752 if (fetch_robust_entry(&pending, &head->list_op_pending, &pip))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002753 return;
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002754
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002755 next_entry = NULL; /* avoid warning with gcc */
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002756 while (entry != &head->list) {
2757 /*
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002758 * Fetch the next entry in the list before calling
2759 * handle_futex_death:
2760 */
2761 rc = fetch_robust_entry(&next_entry, &entry->next, &next_pi);
2762 /*
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002763 * A pending lock might already be on the list, so
Ingo Molnarc87e2832006-06-27 02:54:58 -07002764 * don't process it twice:
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002765 */
2766 if (entry != pending)
Al Viroba46df92006-10-10 22:46:07 +01002767 if (handle_futex_death((void __user *)entry + futex_offset,
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002768 curr, pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002769 return;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002770 if (rc)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002771 return;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002772 entry = next_entry;
2773 pi = next_pi;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002774 /*
2775 * Avoid excessively long or circular lists:
2776 */
2777 if (!--limit)
2778 break;
2779
2780 cond_resched();
2781 }
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002782
2783 if (pending)
2784 handle_futex_death((void __user *)pending + futex_offset,
2785 curr, pip);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002786}
2787
Pierre Peifferc19384b2007-05-09 02:35:02 -07002788long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout,
Ingo Molnare2970f22006-06-27 02:54:47 -07002789 u32 __user *uaddr2, u32 val2, u32 val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790{
Thomas Gleixner81b40532012-02-15 12:17:09 +01002791 int cmd = op & FUTEX_CMD_MASK;
Darren Hartb41277d2010-11-08 13:10:09 -08002792 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002794 if (!(op & FUTEX_PRIVATE_FLAG))
Darren Hartb41277d2010-11-08 13:10:09 -08002795 flags |= FLAGS_SHARED;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002796
Darren Hartb41277d2010-11-08 13:10:09 -08002797 if (op & FUTEX_CLOCK_REALTIME) {
2798 flags |= FLAGS_CLOCKRT;
2799 if (cmd != FUTEX_WAIT_BITSET && cmd != FUTEX_WAIT_REQUEUE_PI)
2800 return -ENOSYS;
2801 }
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002802
2803 switch (cmd) {
Thomas Gleixner59263b52012-02-15 12:08:34 +01002804 case FUTEX_LOCK_PI:
2805 case FUTEX_UNLOCK_PI:
2806 case FUTEX_TRYLOCK_PI:
2807 case FUTEX_WAIT_REQUEUE_PI:
2808 case FUTEX_CMP_REQUEUE_PI:
2809 if (!futex_cmpxchg_enabled)
2810 return -ENOSYS;
2811 }
2812
2813 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 case FUTEX_WAIT:
Thomas Gleixnercd689982008-02-01 17:45:14 +01002815 val3 = FUTEX_BITSET_MATCH_ANY;
2816 case FUTEX_WAIT_BITSET:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002817 return futex_wait(uaddr, flags, val, timeout, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 case FUTEX_WAKE:
Thomas Gleixnercd689982008-02-01 17:45:14 +01002819 val3 = FUTEX_BITSET_MATCH_ANY;
2820 case FUTEX_WAKE_BITSET:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002821 return futex_wake(uaddr, flags, val, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 case FUTEX_REQUEUE:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002823 return futex_requeue(uaddr, flags, uaddr2, val, val2, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 case FUTEX_CMP_REQUEUE:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002825 return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 0);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07002826 case FUTEX_WAKE_OP:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002827 return futex_wake_op(uaddr, flags, uaddr2, val, val2, val3);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002828 case FUTEX_LOCK_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002829 return futex_lock_pi(uaddr, flags, val, timeout, 0);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002830 case FUTEX_UNLOCK_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002831 return futex_unlock_pi(uaddr, flags);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002832 case FUTEX_TRYLOCK_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002833 return futex_lock_pi(uaddr, flags, 0, timeout, 1);
Darren Hart52400ba2009-04-03 13:40:49 -07002834 case FUTEX_WAIT_REQUEUE_PI:
2835 val3 = FUTEX_BITSET_MATCH_ANY;
Thomas Gleixner81b40532012-02-15 12:17:09 +01002836 return futex_wait_requeue_pi(uaddr, flags, val, timeout, val3,
2837 uaddr2);
Darren Hart52400ba2009-04-03 13:40:49 -07002838 case FUTEX_CMP_REQUEUE_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002839 return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 }
Thomas Gleixner81b40532012-02-15 12:17:09 +01002841 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842}
2843
2844
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002845SYSCALL_DEFINE6(futex, u32 __user *, uaddr, int, op, u32, val,
2846 struct timespec __user *, utime, u32 __user *, uaddr2,
2847 u32, val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848{
Pierre Peifferc19384b2007-05-09 02:35:02 -07002849 struct timespec ts;
2850 ktime_t t, *tp = NULL;
Ingo Molnare2970f22006-06-27 02:54:47 -07002851 u32 val2 = 0;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002852 int cmd = op & FUTEX_CMD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853
Thomas Gleixnercd689982008-02-01 17:45:14 +01002854 if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI ||
Darren Hart52400ba2009-04-03 13:40:49 -07002855 cmd == FUTEX_WAIT_BITSET ||
2856 cmd == FUTEX_WAIT_REQUEUE_PI)) {
Pierre Peifferc19384b2007-05-09 02:35:02 -07002857 if (copy_from_user(&ts, utime, sizeof(ts)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 return -EFAULT;
Pierre Peifferc19384b2007-05-09 02:35:02 -07002859 if (!timespec_valid(&ts))
Thomas Gleixner9741ef962006-03-31 02:31:32 -08002860 return -EINVAL;
Pierre Peifferc19384b2007-05-09 02:35:02 -07002861
2862 t = timespec_to_ktime(ts);
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002863 if (cmd == FUTEX_WAIT)
Thomas Gleixner5a7780e2008-02-13 09:20:43 +01002864 t = ktime_add_safe(ktime_get(), t);
Pierre Peifferc19384b2007-05-09 02:35:02 -07002865 tp = &t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 }
2867 /*
Darren Hart52400ba2009-04-03 13:40:49 -07002868 * requeue parameter in 'utime' if cmd == FUTEX_*_REQUEUE_*.
Andreas Schwabf54f0982007-07-31 00:38:51 -07002869 * number of waiters to wake in 'utime' if cmd == FUTEX_WAKE_OP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 */
Andreas Schwabf54f0982007-07-31 00:38:51 -07002871 if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE ||
Darren Hartba9c22f2009-04-20 22:22:22 -07002872 cmd == FUTEX_CMP_REQUEUE_PI || cmd == FUTEX_WAKE_OP)
Ingo Molnare2970f22006-06-27 02:54:47 -07002873 val2 = (u32) (unsigned long) utime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874
Pierre Peifferc19384b2007-05-09 02:35:02 -07002875 return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876}
2877
Benjamin Herrenschmidtf6d107f2008-03-27 14:52:15 +11002878static int __init futex_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879{
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002880 u32 curval;
Heiko Carstens63b1a812014-01-16 14:54:50 +01002881 unsigned int futex_shift;
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -08002882 unsigned long i;
2883
2884#if CONFIG_BASE_SMALL
2885 futex_hashsize = 16;
2886#else
2887 futex_hashsize = roundup_pow_of_two(256 * num_possible_cpus());
2888#endif
2889
2890 futex_queues = alloc_large_system_hash("futex", sizeof(*futex_queues),
2891 futex_hashsize, 0,
2892 futex_hashsize < 256 ? HASH_SMALL : 0,
Heiko Carstens63b1a812014-01-16 14:54:50 +01002893 &futex_shift, NULL,
2894 futex_hashsize, futex_hashsize);
2895 futex_hashsize = 1UL << futex_shift;
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002896 /*
2897 * This will fail and we want it. Some arch implementations do
2898 * runtime detection of the futex_atomic_cmpxchg_inatomic()
2899 * functionality. We want to know that before we call in any
2900 * of the complex code paths. Also we want to prevent
2901 * registration of robust lists in that case. NULL is
2902 * guaranteed to fault and we get -EFAULT on functional
Randy Dunlapfb62db22010-10-13 11:02:34 -07002903 * implementation, the non-functional ones will return
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002904 * -ENOSYS.
2905 */
Michel Lespinasse37a9d912011-03-10 18:48:51 -08002906 if (cmpxchg_futex_value_locked(&curval, NULL, 0, 0) == -EFAULT)
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002907 futex_cmpxchg_enabled = 1;
2908
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -08002909 for (i = 0; i < futex_hashsize; i++) {
Linus Torvalds11d46162014-03-20 22:11:17 -07002910 atomic_set(&futex_queues[i].waiters, 0);
Dima Zavin732375c2011-07-07 17:27:59 -07002911 plist_head_init(&futex_queues[i].chain);
Thomas Gleixner3e4ab742008-02-23 15:23:55 -08002912 spin_lock_init(&futex_queues[i].lock);
2913 }
2914
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 return 0;
2916}
Benjamin Herrenschmidtf6d107f2008-03-27 14:52:15 +11002917__initcall(futex_init);