blob: f3a3a071283cea232512370c2b9f5c87a0b440bf [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/*
Davidlohr Buesod7e8af12014-04-09 11:55:07 -070073 * READ this before attempting to hack on futexes!
74 *
75 * Basic futex operation and ordering guarantees
76 * =============================================
Thomas Gleixner99b60ce2014-01-12 15:31:24 -080077 *
78 * The waiter reads the futex value in user space and calls
79 * futex_wait(). This function computes the hash bucket and acquires
80 * the hash bucket lock. After that it reads the futex user space value
Davidlohr Buesob0c29f72014-01-12 15:31:25 -080081 * again and verifies that the data has not changed. If it has not changed
82 * it enqueues itself into the hash bucket, releases the hash bucket lock
83 * and schedules.
Thomas Gleixner99b60ce2014-01-12 15:31:24 -080084 *
85 * The waker side modifies the user space value of the futex and calls
Davidlohr Buesob0c29f72014-01-12 15:31:25 -080086 * futex_wake(). This function computes the hash bucket and acquires the
87 * hash bucket lock. Then it looks for waiters on that futex in the hash
88 * bucket and wakes them.
Thomas Gleixner99b60ce2014-01-12 15:31:24 -080089 *
Davidlohr Buesob0c29f72014-01-12 15:31:25 -080090 * In futex wake up scenarios where no tasks are blocked on a futex, taking
91 * the hb spinlock can be avoided and simply return. In order for this
92 * optimization to work, ordering guarantees must exist so that the waiter
93 * being added to the list is acknowledged when the list is concurrently being
94 * checked by the waker, avoiding scenarios like the following:
Thomas Gleixner99b60ce2014-01-12 15:31:24 -080095 *
96 * CPU 0 CPU 1
97 * val = *futex;
98 * sys_futex(WAIT, futex, val);
99 * futex_wait(futex, val);
100 * uval = *futex;
101 * *futex = newval;
102 * sys_futex(WAKE, futex);
103 * futex_wake(futex);
104 * if (queue_empty())
105 * return;
106 * if (uval == val)
107 * lock(hash_bucket(futex));
108 * queue();
109 * unlock(hash_bucket(futex));
110 * schedule();
111 *
112 * This would cause the waiter on CPU 0 to wait forever because it
113 * missed the transition of the user space value from val to newval
114 * and the waker did not find the waiter in the hash bucket queue.
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800115 *
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800116 * The correct serialization ensures that a waiter either observes
117 * the changed user space value before blocking or is woken by a
118 * concurrent waker:
119 *
120 * CPU 0 CPU 1
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800121 * val = *futex;
122 * sys_futex(WAIT, futex, val);
123 * futex_wait(futex, val);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800124 *
Davidlohr Buesod7e8af12014-04-09 11:55:07 -0700125 * waiters++; (a)
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800126 * mb(); (A) <-- paired with -.
127 * |
128 * lock(hash_bucket(futex)); |
129 * |
130 * uval = *futex; |
131 * | *futex = newval;
132 * | sys_futex(WAKE, futex);
133 * | futex_wake(futex);
134 * |
135 * `-------> mb(); (B)
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800136 * if (uval == val)
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800137 * queue();
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800138 * unlock(hash_bucket(futex));
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800139 * schedule(); if (waiters)
140 * lock(hash_bucket(futex));
Davidlohr Buesod7e8af12014-04-09 11:55:07 -0700141 * else wake_waiters(futex);
142 * waiters--; (b) unlock(hash_bucket(futex));
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800143 *
Davidlohr Buesod7e8af12014-04-09 11:55:07 -0700144 * Where (A) orders the waiters increment and the futex value read through
145 * atomic operations (see hb_waiters_inc) and where (B) orders the write
146 * to futex and the waiters read -- this is done by the barriers in
147 * get_futex_key_refs(), through either ihold or atomic_inc, depending on the
148 * futex type.
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800149 *
150 * This yields the following case (where X:=waiters, Y:=futex):
151 *
152 * X = Y = 0
153 *
154 * w[X]=1 w[Y]=1
155 * MB MB
156 * r[Y]=y r[X]=x
157 *
158 * Which guarantees that x==0 && y==0 is impossible; which translates back into
159 * the guarantee that we cannot both miss the futex variable change and the
160 * enqueue.
Davidlohr Buesod7e8af12014-04-09 11:55:07 -0700161 *
162 * Note that a new waiter is accounted for in (a) even when it is possible that
163 * the wait call can return error, in which case we backtrack from it in (b).
164 * Refer to the comment in queue_lock().
165 *
166 * Similarly, in order to account for waiters being requeued on another
167 * address we always increment the waiters for the destination bucket before
168 * acquiring the lock. It then decrements them again after releasing it -
169 * the code that actually moves the futex(es) between hash buckets (requeue_futex)
170 * will do the additional required waiter count housekeeping. This is done for
171 * double_lock_hb() and double_unlock_hb(), respectively.
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800172 */
173
Heiko Carstens03b8c7b2014-03-02 13:09:47 +0100174#ifndef CONFIG_HAVE_FUTEX_CMPXCHG
Thomas Gleixnera0c1e902008-02-23 15:23:57 -0800175int __read_mostly futex_cmpxchg_enabled;
Heiko Carstens03b8c7b2014-03-02 13:09:47 +0100176#endif
Thomas Gleixnera0c1e902008-02-23 15:23:57 -0800177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178/*
Darren Hartb41277d2010-11-08 13:10:09 -0800179 * Futex flags used to encode options to functions and preserve them across
180 * restarts.
181 */
182#define FLAGS_SHARED 0x01
183#define FLAGS_CLOCKRT 0x02
184#define FLAGS_HAS_TIMEOUT 0x04
185
186/*
Ingo Molnarc87e2832006-06-27 02:54:58 -0700187 * Priority Inheritance state:
188 */
189struct futex_pi_state {
190 /*
191 * list of 'owned' pi_state instances - these have to be
192 * cleaned up in do_exit() if the task exits prematurely:
193 */
194 struct list_head list;
195
196 /*
197 * The PI object:
198 */
199 struct rt_mutex pi_mutex;
200
201 struct task_struct *owner;
202 atomic_t refcount;
203
204 union futex_key key;
205};
206
Darren Hartd8d88fb2009-09-21 22:30:30 -0700207/**
208 * struct futex_q - The hashed futex queue entry, one per waiting task
Randy Dunlapfb62db22010-10-13 11:02:34 -0700209 * @list: priority-sorted list of tasks waiting on this futex
Darren Hartd8d88fb2009-09-21 22:30:30 -0700210 * @task: the task waiting on the futex
211 * @lock_ptr: the hash bucket lock
212 * @key: the key the futex is hashed on
213 * @pi_state: optional priority inheritance state
214 * @rt_waiter: rt_waiter storage for use with requeue_pi
215 * @requeue_pi_key: the requeue_pi target futex key
216 * @bitset: bitset for the optional bitmasked wakeup
217 *
218 * We use this hashed waitqueue, instead of a normal wait_queue_t, so
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 * we can wake only the relevant ones (hashed queues may be shared).
220 *
221 * A futex_q has a woken state, just like tasks have TASK_RUNNING.
Pierre Peifferec92d082007-05-09 02:35:00 -0700222 * It is considered woken when plist_node_empty(&q->list) || q->lock_ptr == 0.
Randy Dunlapfb62db22010-10-13 11:02:34 -0700223 * The order of wakeup is always to make the first condition true, then
Darren Hartd8d88fb2009-09-21 22:30:30 -0700224 * the second.
225 *
226 * PI futexes are typically woken before they are removed from the hash list via
227 * the rt_mutex code. See unqueue_me_pi().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 */
229struct futex_q {
Pierre Peifferec92d082007-05-09 02:35:00 -0700230 struct plist_node list;
Darren Hartd8d88fb2009-09-21 22:30:30 -0700231
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +0200232 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 spinlock_t *lock_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 union futex_key key;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700235 struct futex_pi_state *pi_state;
Darren Hart52400ba2009-04-03 13:40:49 -0700236 struct rt_mutex_waiter *rt_waiter;
Darren Hart84bc4af2009-08-13 17:36:53 -0700237 union futex_key *requeue_pi_key;
Thomas Gleixnercd689982008-02-01 17:45:14 +0100238 u32 bitset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239};
240
Darren Hart5bdb05f2010-11-08 13:40:28 -0800241static const struct futex_q futex_q_init = {
242 /* list gets initialized in queue_me()*/
243 .key = FUTEX_KEY_INIT,
244 .bitset = FUTEX_BITSET_MATCH_ANY
245};
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247/*
Darren Hartb2d09942009-03-12 00:55:37 -0700248 * Hash buckets are shared by all the futex_keys that hash to the same
249 * location. Each key may have multiple futex_q structures, one for each task
250 * waiting on a futex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 */
252struct futex_hash_bucket {
Linus Torvalds11d46162014-03-20 22:11:17 -0700253 atomic_t waiters;
Pierre Peifferec92d082007-05-09 02:35:00 -0700254 spinlock_t lock;
255 struct plist_head chain;
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -0800256} ____cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -0800258static unsigned long __read_mostly futex_hashsize;
259
260static struct futex_hash_bucket *futex_queues;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800262static inline void futex_get_mm(union futex_key *key)
263{
264 atomic_inc(&key->private.mm->mm_count);
265 /*
266 * Ensure futex_get_mm() implies a full barrier such that
267 * get_futex_key() implies a full barrier. This is relied upon
268 * as full barrier (B), see the ordering comment above.
269 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100270 smp_mb__after_atomic();
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800271}
272
Linus Torvalds11d46162014-03-20 22:11:17 -0700273/*
274 * Reflects a new waiter being added to the waitqueue.
275 */
276static inline void hb_waiters_inc(struct futex_hash_bucket *hb)
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800277{
278#ifdef CONFIG_SMP
Linus Torvalds11d46162014-03-20 22:11:17 -0700279 atomic_inc(&hb->waiters);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800280 /*
Linus Torvalds11d46162014-03-20 22:11:17 -0700281 * Full barrier (A), see the ordering comment above.
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800282 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100283 smp_mb__after_atomic();
Linus Torvalds11d46162014-03-20 22:11:17 -0700284#endif
285}
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800286
Linus Torvalds11d46162014-03-20 22:11:17 -0700287/*
288 * Reflects a waiter being removed from the waitqueue by wakeup
289 * paths.
290 */
291static inline void hb_waiters_dec(struct futex_hash_bucket *hb)
292{
293#ifdef CONFIG_SMP
294 atomic_dec(&hb->waiters);
295#endif
296}
297
298static inline int hb_waiters_pending(struct futex_hash_bucket *hb)
299{
300#ifdef CONFIG_SMP
301 return atomic_read(&hb->waiters);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800302#else
Linus Torvalds11d46162014-03-20 22:11:17 -0700303 return 1;
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800304#endif
305}
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/*
308 * We hash on the keys returned from get_futex_key (see below).
309 */
310static struct futex_hash_bucket *hash_futex(union futex_key *key)
311{
312 u32 hash = jhash2((u32*)&key->both.word,
313 (sizeof(key->both.word)+sizeof(key->both.ptr))/4,
314 key->both.offset);
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -0800315 return &futex_queues[hash & (futex_hashsize - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318/*
319 * Return 1 if two futex_keys are equal, 0 otherwise.
320 */
321static inline int match_futex(union futex_key *key1, union futex_key *key2)
322{
Darren Hart2bc87202009-10-14 10:12:39 -0700323 return (key1 && key2
324 && key1->both.word == key2->both.word
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 && key1->both.ptr == key2->both.ptr
326 && key1->both.offset == key2->both.offset);
327}
328
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200329/*
330 * Take a reference to the resource addressed by a key.
331 * Can be called while holding spinlocks.
332 *
333 */
334static void get_futex_key_refs(union futex_key *key)
335{
336 if (!key->both.ptr)
337 return;
338
339 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
340 case FUT_OFF_INODE:
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800341 ihold(key->shared.inode); /* implies MB (B) */
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200342 break;
343 case FUT_OFF_MMSHARED:
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800344 futex_get_mm(key); /* implies MB (B) */
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200345 break;
Catalin Marinas76835b0e2014-10-17 17:38:49 +0100346 default:
347 smp_mb(); /* explicit MB (B) */
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200348 }
349}
350
351/*
352 * Drop a reference to the resource addressed by a key.
353 * The hash bucket spinlock must not be held.
354 */
355static void drop_futex_key_refs(union futex_key *key)
356{
Darren Hart90621c42008-12-29 19:43:21 -0800357 if (!key->both.ptr) {
358 /* If we're here then we tried to put a key we failed to get */
359 WARN_ON_ONCE(1);
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200360 return;
Darren Hart90621c42008-12-29 19:43:21 -0800361 }
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200362
363 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
364 case FUT_OFF_INODE:
365 iput(key->shared.inode);
366 break;
367 case FUT_OFF_MMSHARED:
368 mmdrop(key->private.mm);
369 break;
370 }
371}
372
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700373/**
Darren Hartd96ee562009-09-21 22:30:22 -0700374 * get_futex_key() - Get parameters which are the keys for a futex
375 * @uaddr: virtual address of the futex
376 * @fshared: 0 for a PROCESS_PRIVATE futex, 1 for PROCESS_SHARED
377 * @key: address where result is stored.
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500378 * @rw: mapping needs to be read/write (values: VERIFY_READ,
379 * VERIFY_WRITE)
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700380 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -0800381 * Return: a negative error code or 0
382 *
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700383 * The key words are stored in *key on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 *
Al Viro6131ffa2013-02-27 16:59:05 -0500385 * For shared mappings, it's (page->index, file_inode(vma->vm_file),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 * offset_within_page). For private mappings, it's (uaddr, current->mm).
387 * We can usually work out the index without swapping in the page.
388 *
Darren Hartb2d09942009-03-12 00:55:37 -0700389 * lock_page() might sleep, the caller should not hold a spinlock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 */
Thomas Gleixner64d13042009-05-18 21:20:10 +0200391static int
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500392get_futex_key(u32 __user *uaddr, int fshared, union futex_key *key, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Ingo Molnare2970f22006-06-27 02:54:47 -0700394 unsigned long address = (unsigned long)uaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 struct mm_struct *mm = current->mm;
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800396 struct page *page, *page_head;
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500397 int err, ro = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 /*
400 * The futex address must be "naturally" aligned.
401 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700402 key->both.offset = address % PAGE_SIZE;
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700403 if (unlikely((address % sizeof(u32)) != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return -EINVAL;
Ingo Molnare2970f22006-06-27 02:54:47 -0700405 address -= key->both.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Linus Torvalds5cdec2d2013-12-12 09:53:51 -0800407 if (unlikely(!access_ok(rw, uaddr, sizeof(u32))))
408 return -EFAULT;
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 /*
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700411 * PROCESS_PRIVATE futexes are fast.
412 * As the mm cannot disappear under us and the 'key' only needs
413 * virtual address, we dont even have to find the underlying vma.
414 * Note : We do have to check 'uaddr' is a valid user address,
415 * but access_ok() should be faster than find_vma()
416 */
417 if (!fshared) {
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700418 key->private.mm = mm;
419 key->private.address = address;
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800420 get_futex_key_refs(key); /* implies MB (B) */
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700421 return 0;
422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200424again:
KOSAKI Motohiro7485d0d2010-01-05 16:32:43 +0900425 err = get_user_pages_fast(address, 1, 1, &page);
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500426 /*
427 * If write access is not required (eg. FUTEX_WAIT), try
428 * and get read-only access.
429 */
430 if (err == -EFAULT && rw == VERIFY_READ) {
431 err = get_user_pages_fast(address, 1, 0, &page);
432 ro = 1;
433 }
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200434 if (err < 0)
435 return err;
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500436 else
437 err = 0;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200438
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800439#ifdef CONFIG_TRANSPARENT_HUGEPAGE
440 page_head = page;
441 if (unlikely(PageTail(page))) {
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200442 put_page(page);
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800443 /* serialize against __split_huge_page_splitting() */
444 local_irq_disable();
Linus Torvaldsf12d5bf2013-12-12 09:38:42 -0800445 if (likely(__get_user_pages_fast(address, 1, !ro, &page) == 1)) {
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800446 page_head = compound_head(page);
447 /*
448 * page_head is valid pointer but we must pin
449 * it before taking the PG_lock and/or
450 * PG_compound_lock. The moment we re-enable
451 * irqs __split_huge_page_splitting() can
452 * return and the head page can be freed from
453 * under us. We can't take the PG_lock and/or
454 * PG_compound_lock on a page that could be
455 * freed from under us.
456 */
457 if (page != page_head) {
458 get_page(page_head);
459 put_page(page);
460 }
461 local_irq_enable();
462 } else {
463 local_irq_enable();
464 goto again;
465 }
466 }
467#else
468 page_head = compound_head(page);
469 if (page != page_head) {
470 get_page(page_head);
471 put_page(page);
472 }
473#endif
474
475 lock_page(page_head);
Hugh Dickinse6780f72011-12-31 11:44:01 -0800476
477 /*
478 * If page_head->mapping is NULL, then it cannot be a PageAnon
479 * page; but it might be the ZERO_PAGE or in the gate area or
480 * in a special mapping (all cases which we are happy to fail);
481 * or it may have been a good file page when get_user_pages_fast
482 * found it, but truncated or holepunched or subjected to
483 * invalidate_complete_page2 before we got the page lock (also
484 * cases which we are happy to fail). And we hold a reference,
485 * so refcount care in invalidate_complete_page's remove_mapping
486 * prevents drop_caches from setting mapping to NULL beneath us.
487 *
488 * The case we do have to guard against is when memory pressure made
489 * shmem_writepage move it from filecache to swapcache beneath us:
490 * an unlikely race, but we do need to retry for page_head->mapping.
491 */
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800492 if (!page_head->mapping) {
Hugh Dickinse6780f72011-12-31 11:44:01 -0800493 int shmem_swizzled = PageSwapCache(page_head);
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800494 unlock_page(page_head);
495 put_page(page_head);
Hugh Dickinse6780f72011-12-31 11:44:01 -0800496 if (shmem_swizzled)
497 goto again;
498 return -EFAULT;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 /*
502 * Private mappings are handled in a simple way.
503 *
504 * NOTE: When userspace waits on a MAP_SHARED mapping, even if
505 * it's a read-only handle, it's expected that futexes attach to
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200506 * the object not the particular process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 */
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800508 if (PageAnon(page_head)) {
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500509 /*
510 * A RO anonymous page will never change and thus doesn't make
511 * sense for futex operations.
512 */
513 if (ro) {
514 err = -EFAULT;
515 goto out;
516 }
517
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200518 key->both.offset |= FUT_OFF_MMSHARED; /* ref taken on mm */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 key->private.mm = mm;
Ingo Molnare2970f22006-06-27 02:54:47 -0700520 key->private.address = address;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200521 } else {
522 key->both.offset |= FUT_OFF_INODE; /* inode-based key */
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800523 key->shared.inode = page_head->mapping->host;
Zhang Yi13d60f42013-06-25 21:19:31 +0800524 key->shared.pgoff = basepage_index(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800527 get_futex_key_refs(key); /* implies MB (B) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500529out:
Andrea Arcangelia5b338f2011-01-13 15:46:34 -0800530 unlock_page(page_head);
531 put_page(page_head);
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500532 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
Thomas Gleixnerae791a22010-11-10 13:30:36 +0100535static inline void put_futex_key(union futex_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200537 drop_futex_key_refs(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
Darren Hartd96ee562009-09-21 22:30:22 -0700540/**
541 * fault_in_user_writeable() - Fault in user address and verify RW access
Thomas Gleixnerd0725992009-06-11 23:15:43 +0200542 * @uaddr: pointer to faulting user space address
543 *
544 * Slow path to fixup the fault we just took in the atomic write
545 * access to @uaddr.
546 *
Randy Dunlapfb62db22010-10-13 11:02:34 -0700547 * We have no generic implementation of a non-destructive write to the
Thomas Gleixnerd0725992009-06-11 23:15:43 +0200548 * user address. We know that we faulted in the atomic pagefault
549 * disabled section so we can as well avoid the #PF overhead by
550 * calling get_user_pages() right away.
551 */
552static int fault_in_user_writeable(u32 __user *uaddr)
553{
Andi Kleen722d0172009-12-08 13:19:42 +0100554 struct mm_struct *mm = current->mm;
555 int ret;
556
557 down_read(&mm->mmap_sem);
Benjamin Herrenschmidt2efaca92011-07-25 17:12:32 -0700558 ret = fixup_user_fault(current, mm, (unsigned long)uaddr,
559 FAULT_FLAG_WRITE);
Andi Kleen722d0172009-12-08 13:19:42 +0100560 up_read(&mm->mmap_sem);
561
Thomas Gleixnerd0725992009-06-11 23:15:43 +0200562 return ret < 0 ? ret : 0;
563}
564
Darren Hart4b1c4862009-04-03 13:39:42 -0700565/**
566 * futex_top_waiter() - Return the highest priority waiter on a futex
Darren Hartd96ee562009-09-21 22:30:22 -0700567 * @hb: the hash bucket the futex_q's reside in
568 * @key: the futex key (to distinguish it from other futex futex_q's)
Darren Hart4b1c4862009-04-03 13:39:42 -0700569 *
570 * Must be called with the hb lock held.
571 */
572static struct futex_q *futex_top_waiter(struct futex_hash_bucket *hb,
573 union futex_key *key)
574{
575 struct futex_q *this;
576
577 plist_for_each_entry(this, &hb->chain, list) {
578 if (match_futex(&this->key, key))
579 return this;
580 }
581 return NULL;
582}
583
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800584static int cmpxchg_futex_value_locked(u32 *curval, u32 __user *uaddr,
585 u32 uval, u32 newval)
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700586{
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800587 int ret;
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700588
589 pagefault_disable();
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800590 ret = futex_atomic_cmpxchg_inatomic(curval, uaddr, uval, newval);
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700591 pagefault_enable();
592
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800593 return ret;
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700594}
595
596static int get_futex_value_locked(u32 *dest, u32 __user *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598 int ret;
599
Peter Zijlstraa8663742006-12-06 20:32:20 -0800600 pagefault_disable();
Ingo Molnare2970f22006-06-27 02:54:47 -0700601 ret = __copy_from_user_inatomic(dest, from, sizeof(u32));
Peter Zijlstraa8663742006-12-06 20:32:20 -0800602 pagefault_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 return ret ? -EFAULT : 0;
605}
606
Ingo Molnarc87e2832006-06-27 02:54:58 -0700607
608/*
609 * PI code:
610 */
611static int refill_pi_state_cache(void)
612{
613 struct futex_pi_state *pi_state;
614
615 if (likely(current->pi_state_cache))
616 return 0;
617
Burman Yan4668edc2006-12-06 20:38:51 -0800618 pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700619
620 if (!pi_state)
621 return -ENOMEM;
622
Ingo Molnarc87e2832006-06-27 02:54:58 -0700623 INIT_LIST_HEAD(&pi_state->list);
624 /* pi_mutex gets initialized later */
625 pi_state->owner = NULL;
626 atomic_set(&pi_state->refcount, 1);
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200627 pi_state->key = FUTEX_KEY_INIT;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700628
629 current->pi_state_cache = pi_state;
630
631 return 0;
632}
633
634static struct futex_pi_state * alloc_pi_state(void)
635{
636 struct futex_pi_state *pi_state = current->pi_state_cache;
637
638 WARN_ON(!pi_state);
639 current->pi_state_cache = NULL;
640
641 return pi_state;
642}
643
644static void free_pi_state(struct futex_pi_state *pi_state)
645{
646 if (!atomic_dec_and_test(&pi_state->refcount))
647 return;
648
649 /*
650 * If pi_state->owner is NULL, the owner is most probably dying
651 * and has cleaned up the pi_state already
652 */
653 if (pi_state->owner) {
Thomas Gleixner1d615482009-11-17 14:54:03 +0100654 raw_spin_lock_irq(&pi_state->owner->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700655 list_del_init(&pi_state->list);
Thomas Gleixner1d615482009-11-17 14:54:03 +0100656 raw_spin_unlock_irq(&pi_state->owner->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700657
658 rt_mutex_proxy_unlock(&pi_state->pi_mutex, pi_state->owner);
659 }
660
661 if (current->pi_state_cache)
662 kfree(pi_state);
663 else {
664 /*
665 * pi_state->list is already empty.
666 * clear pi_state->owner.
667 * refcount is at 0 - put it back to 1.
668 */
669 pi_state->owner = NULL;
670 atomic_set(&pi_state->refcount, 1);
671 current->pi_state_cache = pi_state;
672 }
673}
674
675/*
676 * Look up the task based on what TID userspace gave us.
677 * We dont trust it.
678 */
679static struct task_struct * futex_find_get_task(pid_t pid)
680{
681 struct task_struct *p;
682
Oleg Nesterovd359b542006-09-29 02:00:55 -0700683 rcu_read_lock();
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700684 p = find_task_by_vpid(pid);
Michal Hocko7a0ea092010-06-30 09:51:19 +0200685 if (p)
686 get_task_struct(p);
Thomas Gleixnera06381f2007-06-23 11:48:40 +0200687
Oleg Nesterovd359b542006-09-29 02:00:55 -0700688 rcu_read_unlock();
Ingo Molnarc87e2832006-06-27 02:54:58 -0700689
690 return p;
691}
692
693/*
694 * This task is holding PI mutexes at exit time => bad.
695 * Kernel cleans up PI-state, but userspace is likely hosed.
696 * (Robust-futex cleanup is separate and might save the day for userspace.)
697 */
698void exit_pi_state_list(struct task_struct *curr)
699{
Ingo Molnarc87e2832006-06-27 02:54:58 -0700700 struct list_head *next, *head = &curr->pi_state_list;
701 struct futex_pi_state *pi_state;
Ingo Molnar627371d2006-07-29 05:16:20 +0200702 struct futex_hash_bucket *hb;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200703 union futex_key key = FUTEX_KEY_INIT;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700704
Thomas Gleixnera0c1e902008-02-23 15:23:57 -0800705 if (!futex_cmpxchg_enabled)
706 return;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700707 /*
708 * We are a ZOMBIE and nobody can enqueue itself on
709 * pi_state_list anymore, but we have to be careful
Ingo Molnar627371d2006-07-29 05:16:20 +0200710 * versus waiters unqueueing themselves:
Ingo Molnarc87e2832006-06-27 02:54:58 -0700711 */
Thomas Gleixner1d615482009-11-17 14:54:03 +0100712 raw_spin_lock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700713 while (!list_empty(head)) {
714
715 next = head->next;
716 pi_state = list_entry(next, struct futex_pi_state, list);
717 key = pi_state->key;
Ingo Molnar627371d2006-07-29 05:16:20 +0200718 hb = hash_futex(&key);
Thomas Gleixner1d615482009-11-17 14:54:03 +0100719 raw_spin_unlock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700720
Ingo Molnarc87e2832006-06-27 02:54:58 -0700721 spin_lock(&hb->lock);
722
Thomas Gleixner1d615482009-11-17 14:54:03 +0100723 raw_spin_lock_irq(&curr->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +0200724 /*
725 * We dropped the pi-lock, so re-check whether this
726 * task still owns the PI-state:
727 */
Ingo Molnarc87e2832006-06-27 02:54:58 -0700728 if (head->next != next) {
729 spin_unlock(&hb->lock);
730 continue;
731 }
732
Ingo Molnarc87e2832006-06-27 02:54:58 -0700733 WARN_ON(pi_state->owner != curr);
Ingo Molnar627371d2006-07-29 05:16:20 +0200734 WARN_ON(list_empty(&pi_state->list));
735 list_del_init(&pi_state->list);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700736 pi_state->owner = NULL;
Thomas Gleixner1d615482009-11-17 14:54:03 +0100737 raw_spin_unlock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700738
739 rt_mutex_unlock(&pi_state->pi_mutex);
740
741 spin_unlock(&hb->lock);
742
Thomas Gleixner1d615482009-11-17 14:54:03 +0100743 raw_spin_lock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700744 }
Thomas Gleixner1d615482009-11-17 14:54:03 +0100745 raw_spin_unlock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700746}
747
Thomas Gleixner54a21782014-06-03 12:27:08 +0000748/*
749 * We need to check the following states:
750 *
751 * Waiter | pi_state | pi->owner | uTID | uODIED | ?
752 *
753 * [1] NULL | --- | --- | 0 | 0/1 | Valid
754 * [2] NULL | --- | --- | >0 | 0/1 | Valid
755 *
756 * [3] Found | NULL | -- | Any | 0/1 | Invalid
757 *
758 * [4] Found | Found | NULL | 0 | 1 | Valid
759 * [5] Found | Found | NULL | >0 | 1 | Invalid
760 *
761 * [6] Found | Found | task | 0 | 1 | Valid
762 *
763 * [7] Found | Found | NULL | Any | 0 | Invalid
764 *
765 * [8] Found | Found | task | ==taskTID | 0/1 | Valid
766 * [9] Found | Found | task | 0 | 0 | Invalid
767 * [10] Found | Found | task | !=taskTID | 0/1 | Invalid
768 *
769 * [1] Indicates that the kernel can acquire the futex atomically. We
770 * came came here due to a stale FUTEX_WAITERS/FUTEX_OWNER_DIED bit.
771 *
772 * [2] Valid, if TID does not belong to a kernel thread. If no matching
773 * thread is found then it indicates that the owner TID has died.
774 *
775 * [3] Invalid. The waiter is queued on a non PI futex
776 *
777 * [4] Valid state after exit_robust_list(), which sets the user space
778 * value to FUTEX_WAITERS | FUTEX_OWNER_DIED.
779 *
780 * [5] The user space value got manipulated between exit_robust_list()
781 * and exit_pi_state_list()
782 *
783 * [6] Valid state after exit_pi_state_list() which sets the new owner in
784 * the pi_state but cannot access the user space value.
785 *
786 * [7] pi_state->owner can only be NULL when the OWNER_DIED bit is set.
787 *
788 * [8] Owner and user space value match
789 *
790 * [9] There is no transient state which sets the user space TID to 0
791 * except exit_robust_list(), but this is indicated by the
792 * FUTEX_OWNER_DIED bit. See [4]
793 *
794 * [10] There is no transient state which leaves owner and user space
795 * TID out of sync.
796 */
Thomas Gleixnere60cbc52014-06-11 20:45:39 +0000797
798/*
799 * Validate that the existing waiter has a pi_state and sanity check
800 * the pi_state against the user space value. If correct, attach to
801 * it.
802 */
803static int attach_to_pi_state(u32 uval, struct futex_pi_state *pi_state,
804 struct futex_pi_state **ps)
805{
806 pid_t pid = uval & FUTEX_TID_MASK;
807
808 /*
809 * Userspace might have messed up non-PI and PI futexes [3]
810 */
811 if (unlikely(!pi_state))
812 return -EINVAL;
813
814 WARN_ON(!atomic_read(&pi_state->refcount));
815
816 /*
817 * Handle the owner died case:
818 */
819 if (uval & FUTEX_OWNER_DIED) {
820 /*
821 * exit_pi_state_list sets owner to NULL and wakes the
822 * topmost waiter. The task which acquires the
823 * pi_state->rt_mutex will fixup owner.
824 */
825 if (!pi_state->owner) {
826 /*
827 * No pi state owner, but the user space TID
828 * is not 0. Inconsistent state. [5]
829 */
830 if (pid)
831 return -EINVAL;
832 /*
833 * Take a ref on the state and return success. [4]
834 */
835 goto out_state;
836 }
837
838 /*
839 * If TID is 0, then either the dying owner has not
840 * yet executed exit_pi_state_list() or some waiter
841 * acquired the rtmutex in the pi state, but did not
842 * yet fixup the TID in user space.
843 *
844 * Take a ref on the state and return success. [6]
845 */
846 if (!pid)
847 goto out_state;
848 } else {
849 /*
850 * If the owner died bit is not set, then the pi_state
851 * must have an owner. [7]
852 */
853 if (!pi_state->owner)
854 return -EINVAL;
855 }
856
857 /*
858 * Bail out if user space manipulated the futex value. If pi
859 * state exists then the owner TID must be the same as the
860 * user space TID. [9/10]
861 */
862 if (pid != task_pid_vnr(pi_state->owner))
863 return -EINVAL;
864out_state:
865 atomic_inc(&pi_state->refcount);
866 *ps = pi_state;
867 return 0;
868}
869
Thomas Gleixner04e1b2e2014-06-11 20:45:40 +0000870/*
871 * Lookup the task for the TID provided from user space and attach to
872 * it after doing proper sanity checks.
873 */
874static int attach_to_pi_owner(u32 uval, union futex_key *key,
875 struct futex_pi_state **ps)
Ingo Molnarc87e2832006-06-27 02:54:58 -0700876{
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700877 pid_t pid = uval & FUTEX_TID_MASK;
Thomas Gleixner04e1b2e2014-06-11 20:45:40 +0000878 struct futex_pi_state *pi_state;
879 struct task_struct *p;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700880
881 /*
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200882 * We are the first waiter - try to look up the real owner and attach
Thomas Gleixner54a21782014-06-03 12:27:08 +0000883 * the new pi_state to it, but bail out when TID = 0 [1]
Ingo Molnarc87e2832006-06-27 02:54:58 -0700884 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700885 if (!pid)
Ingo Molnare3f2dde2006-07-29 05:17:57 +0200886 return -ESRCH;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700887 p = futex_find_get_task(pid);
Michal Hocko7a0ea092010-06-30 09:51:19 +0200888 if (!p)
889 return -ESRCH;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700890
Thomas Gleixnerf0d71b32014-05-12 20:45:35 +0000891 if (!p->mm) {
892 put_task_struct(p);
893 return -EPERM;
894 }
895
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700896 /*
897 * We need to look at the task state flags to figure out,
898 * whether the task is exiting. To protect against the do_exit
899 * change of the task flags, we do this protected by
900 * p->pi_lock:
901 */
Thomas Gleixner1d615482009-11-17 14:54:03 +0100902 raw_spin_lock_irq(&p->pi_lock);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700903 if (unlikely(p->flags & PF_EXITING)) {
904 /*
905 * The task is on the way out. When PF_EXITPIDONE is
906 * set, we know that the task has finished the
907 * cleanup:
908 */
909 int ret = (p->flags & PF_EXITPIDONE) ? -ESRCH : -EAGAIN;
910
Thomas Gleixner1d615482009-11-17 14:54:03 +0100911 raw_spin_unlock_irq(&p->pi_lock);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -0700912 put_task_struct(p);
913 return ret;
914 }
Ingo Molnarc87e2832006-06-27 02:54:58 -0700915
Thomas Gleixner54a21782014-06-03 12:27:08 +0000916 /*
917 * No existing pi state. First waiter. [2]
918 */
Ingo Molnarc87e2832006-06-27 02:54:58 -0700919 pi_state = alloc_pi_state();
920
921 /*
Thomas Gleixner04e1b2e2014-06-11 20:45:40 +0000922 * Initialize the pi_mutex in locked state and make @p
Ingo Molnarc87e2832006-06-27 02:54:58 -0700923 * the owner of it:
924 */
925 rt_mutex_init_proxy_locked(&pi_state->pi_mutex, p);
926
927 /* Store the key for possible exit cleanups: */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700928 pi_state->key = *key;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700929
Ingo Molnar627371d2006-07-29 05:16:20 +0200930 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -0700931 list_add(&pi_state->list, &p->pi_state_list);
932 pi_state->owner = p;
Thomas Gleixner1d615482009-11-17 14:54:03 +0100933 raw_spin_unlock_irq(&p->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700934
935 put_task_struct(p);
936
Pierre Peifferd0aa7a72007-05-09 02:35:02 -0700937 *ps = pi_state;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700938
939 return 0;
940}
941
Thomas Gleixner04e1b2e2014-06-11 20:45:40 +0000942static int lookup_pi_state(u32 uval, struct futex_hash_bucket *hb,
943 union futex_key *key, struct futex_pi_state **ps)
944{
945 struct futex_q *match = futex_top_waiter(hb, key);
946
947 /*
948 * If there is a waiter on that futex, validate it and
949 * attach to the pi_state when the validation succeeds.
950 */
951 if (match)
952 return attach_to_pi_state(uval, match->pi_state, ps);
953
954 /*
955 * We are the first waiter - try to look up the owner based on
956 * @uval and attach to it.
957 */
958 return attach_to_pi_owner(uval, key, ps);
959}
960
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +0000961static int lock_pi_update_atomic(u32 __user *uaddr, u32 uval, u32 newval)
962{
963 u32 uninitialized_var(curval);
964
965 if (unlikely(cmpxchg_futex_value_locked(&curval, uaddr, uval, newval)))
966 return -EFAULT;
967
968 /*If user space value changed, let the caller retry */
969 return curval != uval ? -EAGAIN : 0;
970}
971
Darren Hart1a520842009-04-03 13:39:52 -0700972/**
Darren Hartd96ee562009-09-21 22:30:22 -0700973 * futex_lock_pi_atomic() - Atomic work required to acquire a pi aware futex
Darren Hartbab5bc92009-04-07 23:23:50 -0700974 * @uaddr: the pi futex user address
975 * @hb: the pi futex hash bucket
976 * @key: the futex key associated with uaddr and hb
977 * @ps: the pi_state pointer where we store the result of the
978 * lookup
979 * @task: the task to perform the atomic lock work for. This will
980 * be "current" except in the case of requeue pi.
981 * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0)
Darren Hart1a520842009-04-03 13:39:52 -0700982 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -0800983 * Return:
984 * 0 - ready to wait;
985 * 1 - acquired the lock;
Darren Hart1a520842009-04-03 13:39:52 -0700986 * <0 - error
987 *
988 * The hb->lock and futex_key refs shall be held by the caller.
989 */
990static int futex_lock_pi_atomic(u32 __user *uaddr, struct futex_hash_bucket *hb,
991 union futex_key *key,
992 struct futex_pi_state **ps,
Darren Hartbab5bc92009-04-07 23:23:50 -0700993 struct task_struct *task, int set_waiters)
Darren Hart1a520842009-04-03 13:39:52 -0700994{
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +0000995 u32 uval, newval, vpid = task_pid_vnr(task);
996 struct futex_q *match;
997 int ret;
Darren Hart1a520842009-04-03 13:39:52 -0700998
999 /*
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001000 * Read the user space value first so we can validate a few
1001 * things before proceeding further.
Darren Hart1a520842009-04-03 13:39:52 -07001002 */
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001003 if (get_futex_value_locked(&uval, uaddr))
Darren Hart1a520842009-04-03 13:39:52 -07001004 return -EFAULT;
1005
1006 /*
1007 * Detect deadlocks.
1008 */
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001009 if ((unlikely((uval & FUTEX_TID_MASK) == vpid)))
Darren Hart1a520842009-04-03 13:39:52 -07001010 return -EDEADLK;
1011
1012 /*
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001013 * Lookup existing state first. If it exists, try to attach to
1014 * its pi_state.
Darren Hart1a520842009-04-03 13:39:52 -07001015 */
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001016 match = futex_top_waiter(hb, key);
1017 if (match)
1018 return attach_to_pi_state(uval, match->pi_state, ps);
1019
1020 /*
1021 * No waiter and user TID is 0. We are here because the
1022 * waiters or the owner died bit is set or called from
1023 * requeue_cmp_pi or for whatever reason something took the
1024 * syscall.
1025 */
1026 if (!(uval & FUTEX_TID_MASK)) {
Thomas Gleixnerb3eaa9f2014-06-03 12:27:06 +00001027 /*
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001028 * We take over the futex. No other waiters and the user space
1029 * TID is 0. We preserve the owner died bit.
Thomas Gleixnerb3eaa9f2014-06-03 12:27:06 +00001030 */
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001031 newval = uval & FUTEX_OWNER_DIED;
1032 newval |= vpid;
1033
1034 /* The futex requeue_pi code can enforce the waiters bit */
1035 if (set_waiters)
1036 newval |= FUTEX_WAITERS;
1037
1038 ret = lock_pi_update_atomic(uaddr, uval, newval);
1039 /* If the take over worked, return 1 */
1040 return ret < 0 ? ret : 1;
Thomas Gleixnerb3eaa9f2014-06-03 12:27:06 +00001041 }
Darren Hart1a520842009-04-03 13:39:52 -07001042
Darren Hart1a520842009-04-03 13:39:52 -07001043 /*
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001044 * First waiter. Set the waiters bit before attaching ourself to
1045 * the owner. If owner tries to unlock, it will be forced into
1046 * the kernel and blocked on hb->lock.
Darren Hart1a520842009-04-03 13:39:52 -07001047 */
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001048 newval = uval | FUTEX_WAITERS;
1049 ret = lock_pi_update_atomic(uaddr, uval, newval);
1050 if (ret)
1051 return ret;
Darren Hart1a520842009-04-03 13:39:52 -07001052 /*
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001053 * If the update of the user space value succeeded, we try to
1054 * attach to the owner. If that fails, no harm done, we only
1055 * set the FUTEX_WAITERS bit in the user space variable.
Darren Hart1a520842009-04-03 13:39:52 -07001056 */
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001057 return attach_to_pi_owner(uval, key, ps);
Darren Hart1a520842009-04-03 13:39:52 -07001058}
1059
Lai Jiangshan2e129782010-12-22 14:18:50 +08001060/**
1061 * __unqueue_futex() - Remove the futex_q from its futex_hash_bucket
1062 * @q: The futex_q to unqueue
1063 *
1064 * The q->lock_ptr must not be NULL and must be held by the caller.
1065 */
1066static void __unqueue_futex(struct futex_q *q)
1067{
1068 struct futex_hash_bucket *hb;
1069
Steven Rostedt29096202011-03-17 15:21:07 -04001070 if (WARN_ON_SMP(!q->lock_ptr || !spin_is_locked(q->lock_ptr))
1071 || WARN_ON(plist_node_empty(&q->list)))
Lai Jiangshan2e129782010-12-22 14:18:50 +08001072 return;
1073
1074 hb = container_of(q->lock_ptr, struct futex_hash_bucket, lock);
1075 plist_del(&q->list, &hb->chain);
Linus Torvalds11d46162014-03-20 22:11:17 -07001076 hb_waiters_dec(hb);
Lai Jiangshan2e129782010-12-22 14:18:50 +08001077}
1078
Ingo Molnarc87e2832006-06-27 02:54:58 -07001079/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 * The hash bucket lock must be held when this is called.
1081 * Afterwards, the futex_q must not be accessed.
1082 */
1083static void wake_futex(struct futex_q *q)
1084{
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001085 struct task_struct *p = q->task;
1086
Darren Hartaa109902012-11-26 16:29:56 -08001087 if (WARN(q->pi_state || q->rt_waiter, "refusing to wake PI futex\n"))
1088 return;
1089
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001090 /*
1091 * We set q->lock_ptr = NULL _before_ we wake up the task. If
Randy Dunlapfb62db22010-10-13 11:02:34 -07001092 * a non-futex wake up happens on another CPU then the task
1093 * might exit and p would dereference a non-existing task
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001094 * struct. Prevent this by holding a reference on p across the
1095 * wake up.
1096 */
1097 get_task_struct(p);
1098
Lai Jiangshan2e129782010-12-22 14:18:50 +08001099 __unqueue_futex(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 /*
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001101 * The waiting task can free the futex_q as soon as
1102 * q->lock_ptr = NULL is written, without taking any locks. A
1103 * memory barrier is required here to prevent the following
1104 * store to lock_ptr from getting ahead of the plist_del.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 */
Ralf Baechleccdea2f2006-12-06 20:40:26 -08001106 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 q->lock_ptr = NULL;
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001108
1109 wake_up_state(p, TASK_NORMAL);
1110 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
1112
Ingo Molnarc87e2832006-06-27 02:54:58 -07001113static int wake_futex_pi(u32 __user *uaddr, u32 uval, struct futex_q *this)
1114{
1115 struct task_struct *new_owner;
1116 struct futex_pi_state *pi_state = this->pi_state;
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +03001117 u32 uninitialized_var(curval), newval;
Thomas Gleixner13fbca42014-06-03 12:27:07 +00001118 int ret = 0;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001119
1120 if (!pi_state)
1121 return -EINVAL;
1122
Thomas Gleixner51246bf2010-02-02 11:40:27 +01001123 /*
1124 * If current does not own the pi_state then the futex is
1125 * inconsistent and user space fiddled with the futex value.
1126 */
1127 if (pi_state->owner != current)
1128 return -EINVAL;
1129
Thomas Gleixnerd209d742009-11-17 18:22:11 +01001130 raw_spin_lock(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001131 new_owner = rt_mutex_next_owner(&pi_state->pi_mutex);
1132
1133 /*
Steven Rostedtf123c982011-01-06 15:08:29 -05001134 * It is possible that the next waiter (the one that brought
1135 * this owner to the kernel) timed out and is no longer
1136 * waiting on the lock.
Ingo Molnarc87e2832006-06-27 02:54:58 -07001137 */
1138 if (!new_owner)
1139 new_owner = this->task;
1140
1141 /*
Thomas Gleixner13fbca42014-06-03 12:27:07 +00001142 * We pass it to the next owner. The WAITERS bit is always
1143 * kept enabled while there is PI state around. We cleanup the
1144 * owner died bit, because we are the owner.
Ingo Molnarc87e2832006-06-27 02:54:58 -07001145 */
Thomas Gleixner13fbca42014-06-03 12:27:07 +00001146 newval = FUTEX_WAITERS | task_pid_vnr(new_owner);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001147
Thomas Gleixner13fbca42014-06-03 12:27:07 +00001148 if (cmpxchg_futex_value_locked(&curval, uaddr, uval, newval))
1149 ret = -EFAULT;
1150 else if (curval != uval)
1151 ret = -EINVAL;
1152 if (ret) {
1153 raw_spin_unlock(&pi_state->pi_mutex.wait_lock);
1154 return ret;
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001155 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001156
Thomas Gleixner1d615482009-11-17 14:54:03 +01001157 raw_spin_lock_irq(&pi_state->owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001158 WARN_ON(list_empty(&pi_state->list));
1159 list_del_init(&pi_state->list);
Thomas Gleixner1d615482009-11-17 14:54:03 +01001160 raw_spin_unlock_irq(&pi_state->owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001161
Thomas Gleixner1d615482009-11-17 14:54:03 +01001162 raw_spin_lock_irq(&new_owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001163 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -07001164 list_add(&pi_state->list, &new_owner->pi_state_list);
1165 pi_state->owner = new_owner;
Thomas Gleixner1d615482009-11-17 14:54:03 +01001166 raw_spin_unlock_irq(&new_owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001167
Thomas Gleixnerd209d742009-11-17 18:22:11 +01001168 raw_spin_unlock(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001169 rt_mutex_unlock(&pi_state->pi_mutex);
1170
1171 return 0;
1172}
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174/*
Ingo Molnar8b8f3192006-07-03 00:25:05 -07001175 * Express the locking dependencies for lockdep:
1176 */
1177static inline void
1178double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
1179{
1180 if (hb1 <= hb2) {
1181 spin_lock(&hb1->lock);
1182 if (hb1 < hb2)
1183 spin_lock_nested(&hb2->lock, SINGLE_DEPTH_NESTING);
1184 } else { /* hb1 > hb2 */
1185 spin_lock(&hb2->lock);
1186 spin_lock_nested(&hb1->lock, SINGLE_DEPTH_NESTING);
1187 }
1188}
1189
Darren Hart5eb3dc62009-03-12 00:55:52 -07001190static inline void
1191double_unlock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
1192{
Darren Hartf061d352009-03-12 15:11:18 -07001193 spin_unlock(&hb1->lock);
Ingo Molnar88f502f2009-03-13 10:32:07 +01001194 if (hb1 != hb2)
1195 spin_unlock(&hb2->lock);
Darren Hart5eb3dc62009-03-12 00:55:52 -07001196}
1197
Ingo Molnar8b8f3192006-07-03 00:25:05 -07001198/*
Darren Hartb2d09942009-03-12 00:55:37 -07001199 * Wake up waiters matching bitset queued on this futex (uaddr).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 */
Darren Hartb41277d2010-11-08 13:10:09 -08001201static int
1202futex_wake(u32 __user *uaddr, unsigned int flags, int nr_wake, u32 bitset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
Ingo Molnare2970f22006-06-27 02:54:47 -07001204 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 struct futex_q *this, *next;
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001206 union futex_key key = FUTEX_KEY_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 int ret;
1208
Thomas Gleixnercd689982008-02-01 17:45:14 +01001209 if (!bitset)
1210 return -EINVAL;
1211
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001212 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (unlikely(ret != 0))
1214 goto out;
1215
Ingo Molnare2970f22006-06-27 02:54:47 -07001216 hb = hash_futex(&key);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -08001217
1218 /* Make sure we really have tasks to wakeup */
1219 if (!hb_waiters_pending(hb))
1220 goto out_put_key;
1221
Ingo Molnare2970f22006-06-27 02:54:47 -07001222 spin_lock(&hb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Jason Low0d00c7b2014-01-12 15:31:22 -08001224 plist_for_each_entry_safe(this, next, &hb->chain, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (match_futex (&this->key, &key)) {
Darren Hart52400ba2009-04-03 13:40:49 -07001226 if (this->pi_state || this->rt_waiter) {
Ingo Molnared6f7b12006-07-01 04:35:46 -07001227 ret = -EINVAL;
1228 break;
1229 }
Thomas Gleixnercd689982008-02-01 17:45:14 +01001230
1231 /* Check if one of the bits is set in both bitsets */
1232 if (!(this->bitset & bitset))
1233 continue;
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 wake_futex(this);
1236 if (++ret >= nr_wake)
1237 break;
1238 }
1239 }
1240
Ingo Molnare2970f22006-06-27 02:54:47 -07001241 spin_unlock(&hb->lock);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -08001242out_put_key:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001243 put_futex_key(&key);
Darren Hart42d35d42008-12-29 15:49:53 -08001244out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return ret;
1246}
1247
1248/*
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001249 * Wake up all waiters hashed on the physical page that is mapped
1250 * to this virtual address:
1251 */
Ingo Molnare2970f22006-06-27 02:54:47 -07001252static int
Darren Hartb41277d2010-11-08 13:10:09 -08001253futex_wake_op(u32 __user *uaddr1, unsigned int flags, u32 __user *uaddr2,
Ingo Molnare2970f22006-06-27 02:54:47 -07001254 int nr_wake, int nr_wake2, int op)
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001255{
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001256 union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
Ingo Molnare2970f22006-06-27 02:54:47 -07001257 struct futex_hash_bucket *hb1, *hb2;
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001258 struct futex_q *this, *next;
Darren Harte4dc5b72009-03-12 00:56:13 -07001259 int ret, op_ret;
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001260
Darren Harte4dc5b72009-03-12 00:56:13 -07001261retry:
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001262 ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, VERIFY_READ);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001263 if (unlikely(ret != 0))
1264 goto out;
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001265 ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, VERIFY_WRITE);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001266 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08001267 goto out_put_key1;
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001268
Ingo Molnare2970f22006-06-27 02:54:47 -07001269 hb1 = hash_futex(&key1);
1270 hb2 = hash_futex(&key2);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001271
Darren Harte4dc5b72009-03-12 00:56:13 -07001272retry_private:
Thomas Gleixnereaaea802009-10-04 09:34:17 +02001273 double_lock_hb(hb1, hb2);
Ingo Molnare2970f22006-06-27 02:54:47 -07001274 op_ret = futex_atomic_op_inuser(op, uaddr2);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001275 if (unlikely(op_ret < 0)) {
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001276
Darren Hart5eb3dc62009-03-12 00:55:52 -07001277 double_unlock_hb(hb1, hb2);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001278
David Howells7ee1dd32006-01-06 00:11:44 -08001279#ifndef CONFIG_MMU
Ingo Molnare2970f22006-06-27 02:54:47 -07001280 /*
1281 * we don't get EFAULT from MMU faults if we don't have an MMU,
1282 * but we might get them from range checking
1283 */
David Howells7ee1dd32006-01-06 00:11:44 -08001284 ret = op_ret;
Darren Hart42d35d42008-12-29 15:49:53 -08001285 goto out_put_keys;
David Howells7ee1dd32006-01-06 00:11:44 -08001286#endif
1287
David Gibson796f8d92005-11-07 00:59:33 -08001288 if (unlikely(op_ret != -EFAULT)) {
1289 ret = op_ret;
Darren Hart42d35d42008-12-29 15:49:53 -08001290 goto out_put_keys;
David Gibson796f8d92005-11-07 00:59:33 -08001291 }
1292
Thomas Gleixnerd0725992009-06-11 23:15:43 +02001293 ret = fault_in_user_writeable(uaddr2);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001294 if (ret)
Darren Hartde87fcc2009-03-12 00:55:46 -07001295 goto out_put_keys;
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001296
Darren Hartb41277d2010-11-08 13:10:09 -08001297 if (!(flags & FLAGS_SHARED))
Darren Harte4dc5b72009-03-12 00:56:13 -07001298 goto retry_private;
1299
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001300 put_futex_key(&key2);
1301 put_futex_key(&key1);
Darren Harte4dc5b72009-03-12 00:56:13 -07001302 goto retry;
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001303 }
1304
Jason Low0d00c7b2014-01-12 15:31:22 -08001305 plist_for_each_entry_safe(this, next, &hb1->chain, list) {
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001306 if (match_futex (&this->key, &key1)) {
Darren Hartaa109902012-11-26 16:29:56 -08001307 if (this->pi_state || this->rt_waiter) {
1308 ret = -EINVAL;
1309 goto out_unlock;
1310 }
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001311 wake_futex(this);
1312 if (++ret >= nr_wake)
1313 break;
1314 }
1315 }
1316
1317 if (op_ret > 0) {
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001318 op_ret = 0;
Jason Low0d00c7b2014-01-12 15:31:22 -08001319 plist_for_each_entry_safe(this, next, &hb2->chain, list) {
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001320 if (match_futex (&this->key, &key2)) {
Darren Hartaa109902012-11-26 16:29:56 -08001321 if (this->pi_state || this->rt_waiter) {
1322 ret = -EINVAL;
1323 goto out_unlock;
1324 }
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001325 wake_futex(this);
1326 if (++op_ret >= nr_wake2)
1327 break;
1328 }
1329 }
1330 ret += op_ret;
1331 }
1332
Darren Hartaa109902012-11-26 16:29:56 -08001333out_unlock:
Darren Hart5eb3dc62009-03-12 00:55:52 -07001334 double_unlock_hb(hb1, hb2);
Darren Hart42d35d42008-12-29 15:49:53 -08001335out_put_keys:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001336 put_futex_key(&key2);
Darren Hart42d35d42008-12-29 15:49:53 -08001337out_put_key1:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001338 put_futex_key(&key1);
Darren Hart42d35d42008-12-29 15:49:53 -08001339out:
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001340 return ret;
1341}
1342
Darren Hart9121e472009-04-03 13:40:31 -07001343/**
1344 * requeue_futex() - Requeue a futex_q from one hb to another
1345 * @q: the futex_q to requeue
1346 * @hb1: the source hash_bucket
1347 * @hb2: the target hash_bucket
1348 * @key2: the new key for the requeued futex_q
1349 */
1350static inline
1351void requeue_futex(struct futex_q *q, struct futex_hash_bucket *hb1,
1352 struct futex_hash_bucket *hb2, union futex_key *key2)
1353{
1354
1355 /*
1356 * If key1 and key2 hash to the same bucket, no need to
1357 * requeue.
1358 */
1359 if (likely(&hb1->chain != &hb2->chain)) {
1360 plist_del(&q->list, &hb1->chain);
Linus Torvalds11d46162014-03-20 22:11:17 -07001361 hb_waiters_dec(hb1);
Darren Hart9121e472009-04-03 13:40:31 -07001362 plist_add(&q->list, &hb2->chain);
Linus Torvalds11d46162014-03-20 22:11:17 -07001363 hb_waiters_inc(hb2);
Darren Hart9121e472009-04-03 13:40:31 -07001364 q->lock_ptr = &hb2->lock;
Darren Hart9121e472009-04-03 13:40:31 -07001365 }
1366 get_futex_key_refs(key2);
1367 q->key = *key2;
1368}
1369
Darren Hart52400ba2009-04-03 13:40:49 -07001370/**
1371 * requeue_pi_wake_futex() - Wake a task that acquired the lock during requeue
Darren Hartd96ee562009-09-21 22:30:22 -07001372 * @q: the futex_q
1373 * @key: the key of the requeue target futex
1374 * @hb: the hash_bucket of the requeue target futex
Darren Hart52400ba2009-04-03 13:40:49 -07001375 *
1376 * During futex_requeue, with requeue_pi=1, it is possible to acquire the
1377 * target futex if it is uncontended or via a lock steal. Set the futex_q key
1378 * to the requeue target futex so the waiter can detect the wakeup on the right
1379 * futex, but remove it from the hb and NULL the rt_waiter so it can detect
Darren Hartbeda2c72009-08-09 15:34:39 -07001380 * atomic lock acquisition. Set the q->lock_ptr to the requeue target hb->lock
1381 * to protect access to the pi_state to fixup the owner later. Must be called
1382 * with both q->lock_ptr and hb->lock held.
Darren Hart52400ba2009-04-03 13:40:49 -07001383 */
1384static inline
Darren Hartbeda2c72009-08-09 15:34:39 -07001385void requeue_pi_wake_futex(struct futex_q *q, union futex_key *key,
1386 struct futex_hash_bucket *hb)
Darren Hart52400ba2009-04-03 13:40:49 -07001387{
Darren Hart52400ba2009-04-03 13:40:49 -07001388 get_futex_key_refs(key);
1389 q->key = *key;
1390
Lai Jiangshan2e129782010-12-22 14:18:50 +08001391 __unqueue_futex(q);
Darren Hart52400ba2009-04-03 13:40:49 -07001392
1393 WARN_ON(!q->rt_waiter);
1394 q->rt_waiter = NULL;
1395
Darren Hartbeda2c72009-08-09 15:34:39 -07001396 q->lock_ptr = &hb->lock;
Darren Hartbeda2c72009-08-09 15:34:39 -07001397
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001398 wake_up_state(q->task, TASK_NORMAL);
Darren Hart52400ba2009-04-03 13:40:49 -07001399}
1400
1401/**
1402 * futex_proxy_trylock_atomic() - Attempt an atomic lock for the top waiter
Darren Hartbab5bc92009-04-07 23:23:50 -07001403 * @pifutex: the user address of the to futex
1404 * @hb1: the from futex hash bucket, must be locked by the caller
1405 * @hb2: the to futex hash bucket, must be locked by the caller
1406 * @key1: the from futex key
1407 * @key2: the to futex key
1408 * @ps: address to store the pi_state pointer
1409 * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0)
Darren Hart52400ba2009-04-03 13:40:49 -07001410 *
1411 * Try and get the lock on behalf of the top waiter if we can do it atomically.
Darren Hartbab5bc92009-04-07 23:23:50 -07001412 * Wake the top waiter if we succeed. If the caller specified set_waiters,
1413 * then direct futex_lock_pi_atomic() to force setting the FUTEX_WAITERS bit.
1414 * hb1 and hb2 must be held by the caller.
Darren Hart52400ba2009-04-03 13:40:49 -07001415 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001416 * Return:
1417 * 0 - failed to acquire the lock atomically;
Thomas Gleixner866293e2014-05-12 20:45:34 +00001418 * >0 - acquired the lock, return value is vpid of the top_waiter
Darren Hart52400ba2009-04-03 13:40:49 -07001419 * <0 - error
1420 */
1421static int futex_proxy_trylock_atomic(u32 __user *pifutex,
1422 struct futex_hash_bucket *hb1,
1423 struct futex_hash_bucket *hb2,
1424 union futex_key *key1, union futex_key *key2,
Darren Hartbab5bc92009-04-07 23:23:50 -07001425 struct futex_pi_state **ps, int set_waiters)
Darren Hart52400ba2009-04-03 13:40:49 -07001426{
Darren Hartbab5bc92009-04-07 23:23:50 -07001427 struct futex_q *top_waiter = NULL;
Darren Hart52400ba2009-04-03 13:40:49 -07001428 u32 curval;
Thomas Gleixner866293e2014-05-12 20:45:34 +00001429 int ret, vpid;
Darren Hart52400ba2009-04-03 13:40:49 -07001430
1431 if (get_futex_value_locked(&curval, pifutex))
1432 return -EFAULT;
1433
Darren Hartbab5bc92009-04-07 23:23:50 -07001434 /*
1435 * Find the top_waiter and determine if there are additional waiters.
1436 * If the caller intends to requeue more than 1 waiter to pifutex,
1437 * force futex_lock_pi_atomic() to set the FUTEX_WAITERS bit now,
1438 * as we have means to handle the possible fault. If not, don't set
1439 * the bit unecessarily as it will force the subsequent unlock to enter
1440 * the kernel.
1441 */
Darren Hart52400ba2009-04-03 13:40:49 -07001442 top_waiter = futex_top_waiter(hb1, key1);
1443
1444 /* There are no waiters, nothing for us to do. */
1445 if (!top_waiter)
1446 return 0;
1447
Darren Hart84bc4af2009-08-13 17:36:53 -07001448 /* Ensure we requeue to the expected futex. */
1449 if (!match_futex(top_waiter->requeue_pi_key, key2))
1450 return -EINVAL;
1451
Darren Hart52400ba2009-04-03 13:40:49 -07001452 /*
Darren Hartbab5bc92009-04-07 23:23:50 -07001453 * Try to take the lock for top_waiter. Set the FUTEX_WAITERS bit in
1454 * the contended case or if set_waiters is 1. The pi_state is returned
1455 * in ps in contended cases.
Darren Hart52400ba2009-04-03 13:40:49 -07001456 */
Thomas Gleixner866293e2014-05-12 20:45:34 +00001457 vpid = task_pid_vnr(top_waiter->task);
Darren Hartbab5bc92009-04-07 23:23:50 -07001458 ret = futex_lock_pi_atomic(pifutex, hb2, key2, ps, top_waiter->task,
1459 set_waiters);
Thomas Gleixner866293e2014-05-12 20:45:34 +00001460 if (ret == 1) {
Darren Hartbeda2c72009-08-09 15:34:39 -07001461 requeue_pi_wake_futex(top_waiter, key2, hb2);
Thomas Gleixner866293e2014-05-12 20:45:34 +00001462 return vpid;
1463 }
Darren Hart52400ba2009-04-03 13:40:49 -07001464 return ret;
1465}
1466
1467/**
1468 * futex_requeue() - Requeue waiters from uaddr1 to uaddr2
Randy Dunlapfb62db22010-10-13 11:02:34 -07001469 * @uaddr1: source futex user address
Darren Hartb41277d2010-11-08 13:10:09 -08001470 * @flags: futex flags (FLAGS_SHARED, etc.)
Randy Dunlapfb62db22010-10-13 11:02:34 -07001471 * @uaddr2: target futex user address
1472 * @nr_wake: number of waiters to wake (must be 1 for requeue_pi)
1473 * @nr_requeue: number of waiters to requeue (0-INT_MAX)
1474 * @cmpval: @uaddr1 expected value (or %NULL)
1475 * @requeue_pi: if we are attempting to requeue from a non-pi futex to a
Darren Hartb41277d2010-11-08 13:10:09 -08001476 * pi futex (pi to pi requeue is not supported)
Darren Hart52400ba2009-04-03 13:40:49 -07001477 *
1478 * Requeue waiters on uaddr1 to uaddr2. In the requeue_pi case, try to acquire
1479 * uaddr2 atomically on behalf of the top waiter.
1480 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001481 * Return:
1482 * >=0 - on success, the number of tasks requeued or woken;
Darren Hart52400ba2009-04-03 13:40:49 -07001483 * <0 - on error
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 */
Darren Hartb41277d2010-11-08 13:10:09 -08001485static int futex_requeue(u32 __user *uaddr1, unsigned int flags,
1486 u32 __user *uaddr2, int nr_wake, int nr_requeue,
1487 u32 *cmpval, int requeue_pi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001489 union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
Darren Hart52400ba2009-04-03 13:40:49 -07001490 int drop_count = 0, task_count = 0, ret;
1491 struct futex_pi_state *pi_state = NULL;
Ingo Molnare2970f22006-06-27 02:54:47 -07001492 struct futex_hash_bucket *hb1, *hb2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 struct futex_q *this, *next;
Darren Hart52400ba2009-04-03 13:40:49 -07001494
1495 if (requeue_pi) {
1496 /*
Thomas Gleixnere9c243a2014-06-03 12:27:06 +00001497 * Requeue PI only works on two distinct uaddrs. This
1498 * check is only valid for private futexes. See below.
1499 */
1500 if (uaddr1 == uaddr2)
1501 return -EINVAL;
1502
1503 /*
Darren Hart52400ba2009-04-03 13:40:49 -07001504 * requeue_pi requires a pi_state, try to allocate it now
1505 * without any locks in case it fails.
1506 */
1507 if (refill_pi_state_cache())
1508 return -ENOMEM;
1509 /*
1510 * requeue_pi must wake as many tasks as it can, up to nr_wake
1511 * + nr_requeue, since it acquires the rt_mutex prior to
1512 * returning to userspace, so as to not leave the rt_mutex with
1513 * waiters and no owner. However, second and third wake-ups
1514 * cannot be predicted as they involve race conditions with the
1515 * first wake and a fault while looking up the pi_state. Both
1516 * pthread_cond_signal() and pthread_cond_broadcast() should
1517 * use nr_wake=1.
1518 */
1519 if (nr_wake != 1)
1520 return -EINVAL;
1521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Darren Hart42d35d42008-12-29 15:49:53 -08001523retry:
Darren Hart52400ba2009-04-03 13:40:49 -07001524 if (pi_state != NULL) {
1525 /*
1526 * We will have to lookup the pi_state again, so free this one
1527 * to keep the accounting correct.
1528 */
1529 free_pi_state(pi_state);
1530 pi_state = NULL;
1531 }
1532
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001533 ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 if (unlikely(ret != 0))
1535 goto out;
Shawn Bohrer9ea71502011-06-30 11:21:32 -05001536 ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2,
1537 requeue_pi ? VERIFY_WRITE : VERIFY_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08001539 goto out_put_key1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Thomas Gleixnere9c243a2014-06-03 12:27:06 +00001541 /*
1542 * The check above which compares uaddrs is not sufficient for
1543 * shared futexes. We need to compare the keys:
1544 */
1545 if (requeue_pi && match_futex(&key1, &key2)) {
1546 ret = -EINVAL;
1547 goto out_put_keys;
1548 }
1549
Ingo Molnare2970f22006-06-27 02:54:47 -07001550 hb1 = hash_futex(&key1);
1551 hb2 = hash_futex(&key2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Darren Harte4dc5b72009-03-12 00:56:13 -07001553retry_private:
Linus Torvalds69cd9eb2014-04-08 15:30:07 -07001554 hb_waiters_inc(hb2);
Ingo Molnar8b8f3192006-07-03 00:25:05 -07001555 double_lock_hb(hb1, hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Ingo Molnare2970f22006-06-27 02:54:47 -07001557 if (likely(cmpval != NULL)) {
1558 u32 curval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Ingo Molnare2970f22006-06-27 02:54:47 -07001560 ret = get_futex_value_locked(&curval, uaddr1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562 if (unlikely(ret)) {
Darren Hart5eb3dc62009-03-12 00:55:52 -07001563 double_unlock_hb(hb1, hb2);
Linus Torvalds69cd9eb2014-04-08 15:30:07 -07001564 hb_waiters_dec(hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Darren Harte4dc5b72009-03-12 00:56:13 -07001566 ret = get_user(curval, uaddr1);
1567 if (ret)
1568 goto out_put_keys;
1569
Darren Hartb41277d2010-11-08 13:10:09 -08001570 if (!(flags & FLAGS_SHARED))
Darren Harte4dc5b72009-03-12 00:56:13 -07001571 goto retry_private;
1572
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001573 put_futex_key(&key2);
1574 put_futex_key(&key1);
Darren Harte4dc5b72009-03-12 00:56:13 -07001575 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 }
Ingo Molnare2970f22006-06-27 02:54:47 -07001577 if (curval != *cmpval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 ret = -EAGAIN;
1579 goto out_unlock;
1580 }
1581 }
1582
Darren Hart52400ba2009-04-03 13:40:49 -07001583 if (requeue_pi && (task_count - nr_wake < nr_requeue)) {
Darren Hartbab5bc92009-04-07 23:23:50 -07001584 /*
1585 * Attempt to acquire uaddr2 and wake the top waiter. If we
1586 * intend to requeue waiters, force setting the FUTEX_WAITERS
1587 * bit. We force this here where we are able to easily handle
1588 * faults rather in the requeue loop below.
1589 */
Darren Hart52400ba2009-04-03 13:40:49 -07001590 ret = futex_proxy_trylock_atomic(uaddr2, hb1, hb2, &key1,
Darren Hartbab5bc92009-04-07 23:23:50 -07001591 &key2, &pi_state, nr_requeue);
Darren Hart52400ba2009-04-03 13:40:49 -07001592
1593 /*
1594 * At this point the top_waiter has either taken uaddr2 or is
1595 * waiting on it. If the former, then the pi_state will not
1596 * exist yet, look it up one more time to ensure we have a
Thomas Gleixner866293e2014-05-12 20:45:34 +00001597 * reference to it. If the lock was taken, ret contains the
1598 * vpid of the top waiter task.
Darren Hart52400ba2009-04-03 13:40:49 -07001599 */
Thomas Gleixner866293e2014-05-12 20:45:34 +00001600 if (ret > 0) {
Darren Hart52400ba2009-04-03 13:40:49 -07001601 WARN_ON(pi_state);
Darren Hart89061d32009-10-15 15:30:48 -07001602 drop_count++;
Darren Hart52400ba2009-04-03 13:40:49 -07001603 task_count++;
Thomas Gleixner866293e2014-05-12 20:45:34 +00001604 /*
1605 * If we acquired the lock, then the user
1606 * space value of uaddr2 should be vpid. It
1607 * cannot be changed by the top waiter as it
1608 * is blocked on hb2 lock if it tries to do
1609 * so. If something fiddled with it behind our
1610 * back the pi state lookup might unearth
1611 * it. So we rather use the known value than
1612 * rereading and handing potential crap to
1613 * lookup_pi_state.
1614 */
Thomas Gleixner54a21782014-06-03 12:27:08 +00001615 ret = lookup_pi_state(ret, hb2, &key2, &pi_state);
Darren Hart52400ba2009-04-03 13:40:49 -07001616 }
1617
1618 switch (ret) {
1619 case 0:
1620 break;
1621 case -EFAULT:
1622 double_unlock_hb(hb1, hb2);
Linus Torvalds69cd9eb2014-04-08 15:30:07 -07001623 hb_waiters_dec(hb2);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001624 put_futex_key(&key2);
1625 put_futex_key(&key1);
Thomas Gleixnerd0725992009-06-11 23:15:43 +02001626 ret = fault_in_user_writeable(uaddr2);
Darren Hart52400ba2009-04-03 13:40:49 -07001627 if (!ret)
1628 goto retry;
1629 goto out;
1630 case -EAGAIN:
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001631 /*
1632 * Two reasons for this:
1633 * - Owner is exiting and we just wait for the
1634 * exit to complete.
1635 * - The user space value changed.
1636 */
Darren Hart52400ba2009-04-03 13:40:49 -07001637 double_unlock_hb(hb1, hb2);
Linus Torvalds69cd9eb2014-04-08 15:30:07 -07001638 hb_waiters_dec(hb2);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001639 put_futex_key(&key2);
1640 put_futex_key(&key1);
Darren Hart52400ba2009-04-03 13:40:49 -07001641 cond_resched();
1642 goto retry;
1643 default:
1644 goto out_unlock;
1645 }
1646 }
1647
Jason Low0d00c7b2014-01-12 15:31:22 -08001648 plist_for_each_entry_safe(this, next, &hb1->chain, list) {
Darren Hart52400ba2009-04-03 13:40:49 -07001649 if (task_count - nr_wake >= nr_requeue)
1650 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Darren Hart52400ba2009-04-03 13:40:49 -07001652 if (!match_futex(&this->key, &key1))
1653 continue;
1654
Darren Hart392741e2009-08-07 15:20:48 -07001655 /*
1656 * FUTEX_WAIT_REQEUE_PI and FUTEX_CMP_REQUEUE_PI should always
1657 * be paired with each other and no other futex ops.
Darren Hartaa109902012-11-26 16:29:56 -08001658 *
1659 * We should never be requeueing a futex_q with a pi_state,
1660 * which is awaiting a futex_unlock_pi().
Darren Hart392741e2009-08-07 15:20:48 -07001661 */
1662 if ((requeue_pi && !this->rt_waiter) ||
Darren Hartaa109902012-11-26 16:29:56 -08001663 (!requeue_pi && this->rt_waiter) ||
1664 this->pi_state) {
Darren Hart392741e2009-08-07 15:20:48 -07001665 ret = -EINVAL;
1666 break;
1667 }
Darren Hart52400ba2009-04-03 13:40:49 -07001668
1669 /*
1670 * Wake nr_wake waiters. For requeue_pi, if we acquired the
1671 * lock, we already woke the top_waiter. If not, it will be
1672 * woken by futex_unlock_pi().
1673 */
1674 if (++task_count <= nr_wake && !requeue_pi) {
1675 wake_futex(this);
1676 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
Darren Hart52400ba2009-04-03 13:40:49 -07001678
Darren Hart84bc4af2009-08-13 17:36:53 -07001679 /* Ensure we requeue to the expected futex for requeue_pi. */
1680 if (requeue_pi && !match_futex(this->requeue_pi_key, &key2)) {
1681 ret = -EINVAL;
1682 break;
1683 }
1684
Darren Hart52400ba2009-04-03 13:40:49 -07001685 /*
1686 * Requeue nr_requeue waiters and possibly one more in the case
1687 * of requeue_pi if we couldn't acquire the lock atomically.
1688 */
1689 if (requeue_pi) {
1690 /* Prepare the waiter to take the rt_mutex. */
1691 atomic_inc(&pi_state->refcount);
1692 this->pi_state = pi_state;
1693 ret = rt_mutex_start_proxy_lock(&pi_state->pi_mutex,
1694 this->rt_waiter,
Thomas Gleixnerc051b212014-05-22 03:25:50 +00001695 this->task);
Darren Hart52400ba2009-04-03 13:40:49 -07001696 if (ret == 1) {
1697 /* We got the lock. */
Darren Hartbeda2c72009-08-09 15:34:39 -07001698 requeue_pi_wake_futex(this, &key2, hb2);
Darren Hart89061d32009-10-15 15:30:48 -07001699 drop_count++;
Darren Hart52400ba2009-04-03 13:40:49 -07001700 continue;
1701 } else if (ret) {
1702 /* -EDEADLK */
1703 this->pi_state = NULL;
1704 free_pi_state(pi_state);
1705 goto out_unlock;
1706 }
1707 }
1708 requeue_futex(this, hb1, hb2, &key2);
1709 drop_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 }
1711
1712out_unlock:
Darren Hart5eb3dc62009-03-12 00:55:52 -07001713 double_unlock_hb(hb1, hb2);
Linus Torvalds69cd9eb2014-04-08 15:30:07 -07001714 hb_waiters_dec(hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Darren Hartcd84a422009-04-02 14:19:38 -07001716 /*
1717 * drop_futex_key_refs() must be called outside the spinlocks. During
1718 * the requeue we moved futex_q's from the hash bucket at key1 to the
1719 * one at key2 and updated their key pointer. We no longer need to
1720 * hold the references to key1.
1721 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 while (--drop_count >= 0)
Rusty Russell9adef582007-05-08 00:26:42 -07001723 drop_futex_key_refs(&key1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Darren Hart42d35d42008-12-29 15:49:53 -08001725out_put_keys:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001726 put_futex_key(&key2);
Darren Hart42d35d42008-12-29 15:49:53 -08001727out_put_key1:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001728 put_futex_key(&key1);
Darren Hart42d35d42008-12-29 15:49:53 -08001729out:
Darren Hart52400ba2009-04-03 13:40:49 -07001730 if (pi_state != NULL)
1731 free_pi_state(pi_state);
1732 return ret ? ret : task_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733}
1734
1735/* The key must be already stored in q->key. */
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01001736static inline struct futex_hash_bucket *queue_lock(struct futex_q *q)
Namhyung Kim15e408c2010-09-14 21:43:48 +09001737 __acquires(&hb->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738{
Ingo Molnare2970f22006-06-27 02:54:47 -07001739 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Ingo Molnare2970f22006-06-27 02:54:47 -07001741 hb = hash_futex(&q->key);
Linus Torvalds11d46162014-03-20 22:11:17 -07001742
1743 /*
1744 * Increment the counter before taking the lock so that
1745 * a potential waker won't miss a to-be-slept task that is
1746 * waiting for the spinlock. This is safe as all queue_lock()
1747 * users end up calling queue_me(). Similarly, for housekeeping,
1748 * decrement the counter at queue_unlock() when some error has
1749 * occurred and we don't end up adding the task to the list.
1750 */
1751 hb_waiters_inc(hb);
1752
Ingo Molnare2970f22006-06-27 02:54:47 -07001753 q->lock_ptr = &hb->lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Davidlohr Buesob0c29f72014-01-12 15:31:25 -08001755 spin_lock(&hb->lock); /* implies MB (A) */
Ingo Molnare2970f22006-06-27 02:54:47 -07001756 return hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757}
1758
Darren Hartd40d65c2009-09-21 22:30:15 -07001759static inline void
Jason Low0d00c7b2014-01-12 15:31:22 -08001760queue_unlock(struct futex_hash_bucket *hb)
Namhyung Kim15e408c2010-09-14 21:43:48 +09001761 __releases(&hb->lock)
Darren Hartd40d65c2009-09-21 22:30:15 -07001762{
1763 spin_unlock(&hb->lock);
Linus Torvalds11d46162014-03-20 22:11:17 -07001764 hb_waiters_dec(hb);
Darren Hartd40d65c2009-09-21 22:30:15 -07001765}
1766
1767/**
1768 * queue_me() - Enqueue the futex_q on the futex_hash_bucket
1769 * @q: The futex_q to enqueue
1770 * @hb: The destination hash bucket
1771 *
1772 * The hb->lock must be held by the caller, and is released here. A call to
1773 * queue_me() is typically paired with exactly one call to unqueue_me(). The
1774 * exceptions involve the PI related operations, which may use unqueue_me_pi()
1775 * or nothing if the unqueue is done as part of the wake process and the unqueue
1776 * state is implicit in the state of woken task (see futex_wait_requeue_pi() for
1777 * an example).
1778 */
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01001779static inline void queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
Namhyung Kim15e408c2010-09-14 21:43:48 +09001780 __releases(&hb->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
Pierre Peifferec92d082007-05-09 02:35:00 -07001782 int prio;
1783
1784 /*
1785 * The priority used to register this element is
1786 * - either the real thread-priority for the real-time threads
1787 * (i.e. threads with a priority lower than MAX_RT_PRIO)
1788 * - or MAX_RT_PRIO for non-RT threads.
1789 * Thus, all RT-threads are woken first in priority order, and
1790 * the others are woken last, in FIFO order.
1791 */
1792 prio = min(current->normal_prio, MAX_RT_PRIO);
1793
1794 plist_node_init(&q->list, prio);
Pierre Peifferec92d082007-05-09 02:35:00 -07001795 plist_add(&q->list, &hb->chain);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001796 q->task = current;
Ingo Molnare2970f22006-06-27 02:54:47 -07001797 spin_unlock(&hb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798}
1799
Darren Hartd40d65c2009-09-21 22:30:15 -07001800/**
1801 * unqueue_me() - Remove the futex_q from its futex_hash_bucket
1802 * @q: The futex_q to unqueue
1803 *
1804 * The q->lock_ptr must not be held by the caller. A call to unqueue_me() must
1805 * be paired with exactly one earlier call to queue_me().
1806 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001807 * Return:
1808 * 1 - if the futex_q was still queued (and we removed unqueued it);
Darren Hartd40d65c2009-09-21 22:30:15 -07001809 * 0 - if the futex_q was already removed by the waking thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811static int unqueue_me(struct futex_q *q)
1812{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 spinlock_t *lock_ptr;
Ingo Molnare2970f22006-06-27 02:54:47 -07001814 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
1816 /* In the common case we don't take the spinlock, which is nice. */
Darren Hart42d35d42008-12-29 15:49:53 -08001817retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 lock_ptr = q->lock_ptr;
Christian Borntraegere91467e2006-08-05 12:13:52 -07001819 barrier();
Stephen Hemmingerc80544d2007-10-18 03:07:05 -07001820 if (lock_ptr != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 spin_lock(lock_ptr);
1822 /*
1823 * q->lock_ptr can change between reading it and
1824 * spin_lock(), causing us to take the wrong lock. This
1825 * corrects the race condition.
1826 *
1827 * Reasoning goes like this: if we have the wrong lock,
1828 * q->lock_ptr must have changed (maybe several times)
1829 * between reading it and the spin_lock(). It can
1830 * change again after the spin_lock() but only if it was
1831 * already changed before the spin_lock(). It cannot,
1832 * however, change back to the original value. Therefore
1833 * we can detect whether we acquired the correct lock.
1834 */
1835 if (unlikely(lock_ptr != q->lock_ptr)) {
1836 spin_unlock(lock_ptr);
1837 goto retry;
1838 }
Lai Jiangshan2e129782010-12-22 14:18:50 +08001839 __unqueue_futex(q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001840
1841 BUG_ON(q->pi_state);
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 spin_unlock(lock_ptr);
1844 ret = 1;
1845 }
1846
Rusty Russell9adef582007-05-08 00:26:42 -07001847 drop_futex_key_refs(&q->key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 return ret;
1849}
1850
Ingo Molnarc87e2832006-06-27 02:54:58 -07001851/*
1852 * PI futexes can not be requeued and must remove themself from the
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001853 * hash bucket. The hash bucket lock (i.e. lock_ptr) is held on entry
1854 * and dropped here.
Ingo Molnarc87e2832006-06-27 02:54:58 -07001855 */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001856static void unqueue_me_pi(struct futex_q *q)
Namhyung Kim15e408c2010-09-14 21:43:48 +09001857 __releases(q->lock_ptr)
Ingo Molnarc87e2832006-06-27 02:54:58 -07001858{
Lai Jiangshan2e129782010-12-22 14:18:50 +08001859 __unqueue_futex(q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001860
1861 BUG_ON(!q->pi_state);
1862 free_pi_state(q->pi_state);
1863 q->pi_state = NULL;
1864
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001865 spin_unlock(q->lock_ptr);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001866}
1867
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001868/*
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001869 * Fixup the pi_state owner with the new owner.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001870 *
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001871 * Must be called with hash bucket lock held and mm->sem held for non
1872 * private futexes.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001873 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001874static int fixup_pi_state_owner(u32 __user *uaddr, struct futex_q *q,
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001875 struct task_struct *newowner)
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001876{
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001877 u32 newtid = task_pid_vnr(newowner) | FUTEX_WAITERS;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001878 struct futex_pi_state *pi_state = q->pi_state;
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001879 struct task_struct *oldowner = pi_state->owner;
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +03001880 u32 uval, uninitialized_var(curval), newval;
Darren Harte4dc5b72009-03-12 00:56:13 -07001881 int ret;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001882
1883 /* Owner died? */
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001884 if (!pi_state->owner)
1885 newtid |= FUTEX_OWNER_DIED;
1886
1887 /*
1888 * We are here either because we stole the rtmutex from the
Lai Jiangshan81612392011-01-14 17:09:41 +08001889 * previous highest priority waiter or we are the highest priority
1890 * waiter but failed to get the rtmutex the first time.
1891 * We have to replace the newowner TID in the user space variable.
1892 * This must be atomic as we have to preserve the owner died bit here.
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001893 *
Darren Hartb2d09942009-03-12 00:55:37 -07001894 * Note: We write the user space value _before_ changing the pi_state
1895 * because we can fault here. Imagine swapped out pages or a fork
1896 * that marked all the anonymous memory readonly for cow.
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001897 *
1898 * Modifying pi_state _before_ the user space value would
1899 * leave the pi_state in an inconsistent state when we fault
1900 * here, because we need to drop the hash bucket lock to
1901 * handle the fault. This might be observed in the PID check
1902 * in lookup_pi_state.
1903 */
1904retry:
1905 if (get_futex_value_locked(&uval, uaddr))
1906 goto handle_fault;
1907
1908 while (1) {
1909 newval = (uval & FUTEX_OWNER_DIED) | newtid;
1910
Michel Lespinasse37a9d912011-03-10 18:48:51 -08001911 if (cmpxchg_futex_value_locked(&curval, uaddr, uval, newval))
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001912 goto handle_fault;
1913 if (curval == uval)
1914 break;
1915 uval = curval;
1916 }
1917
1918 /*
1919 * We fixed up user space. Now we need to fix the pi_state
1920 * itself.
1921 */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001922 if (pi_state->owner != NULL) {
Thomas Gleixner1d615482009-11-17 14:54:03 +01001923 raw_spin_lock_irq(&pi_state->owner->pi_lock);
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001924 WARN_ON(list_empty(&pi_state->list));
1925 list_del_init(&pi_state->list);
Thomas Gleixner1d615482009-11-17 14:54:03 +01001926 raw_spin_unlock_irq(&pi_state->owner->pi_lock);
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001927 }
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001928
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001929 pi_state->owner = newowner;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001930
Thomas Gleixner1d615482009-11-17 14:54:03 +01001931 raw_spin_lock_irq(&newowner->pi_lock);
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001932 WARN_ON(!list_empty(&pi_state->list));
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01001933 list_add(&pi_state->list, &newowner->pi_state_list);
Thomas Gleixner1d615482009-11-17 14:54:03 +01001934 raw_spin_unlock_irq(&newowner->pi_lock);
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001935 return 0;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001936
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001937 /*
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001938 * To handle the page fault we need to drop the hash bucket
Lai Jiangshan81612392011-01-14 17:09:41 +08001939 * lock here. That gives the other task (either the highest priority
1940 * waiter itself or the task which stole the rtmutex) the
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001941 * chance to try the fixup of the pi_state. So once we are
1942 * back from handling the fault we need to check the pi_state
1943 * after reacquiring the hash bucket lock and before trying to
1944 * do another fixup. When the fixup has been done already we
1945 * simply return.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001946 */
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001947handle_fault:
1948 spin_unlock(q->lock_ptr);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001949
Thomas Gleixnerd0725992009-06-11 23:15:43 +02001950 ret = fault_in_user_writeable(uaddr);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001951
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001952 spin_lock(q->lock_ptr);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001953
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02001954 /*
1955 * Check if someone else fixed it for us:
1956 */
1957 if (pi_state->owner != oldowner)
1958 return 0;
1959
1960 if (ret)
1961 return ret;
1962
1963 goto retry;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001964}
1965
Nick Piggin72c1bbf2007-05-08 00:26:43 -07001966static long futex_wait_restart(struct restart_block *restart);
Thomas Gleixner36cf3b52007-07-15 23:41:20 -07001967
Darren Hartca5f9522009-04-03 13:39:33 -07001968/**
Darren Hartdd973992009-04-03 13:40:02 -07001969 * fixup_owner() - Post lock pi_state and corner case management
1970 * @uaddr: user address of the futex
Darren Hartdd973992009-04-03 13:40:02 -07001971 * @q: futex_q (contains pi_state and access to the rt_mutex)
1972 * @locked: if the attempt to take the rt_mutex succeeded (1) or not (0)
1973 *
1974 * After attempting to lock an rt_mutex, this function is called to cleanup
1975 * the pi_state owner as well as handle race conditions that may allow us to
1976 * acquire the lock. Must be called with the hb lock held.
1977 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001978 * Return:
1979 * 1 - success, lock taken;
1980 * 0 - success, lock not taken;
Darren Hartdd973992009-04-03 13:40:02 -07001981 * <0 - on error (-EFAULT)
1982 */
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001983static int fixup_owner(u32 __user *uaddr, struct futex_q *q, int locked)
Darren Hartdd973992009-04-03 13:40:02 -07001984{
1985 struct task_struct *owner;
1986 int ret = 0;
1987
1988 if (locked) {
1989 /*
1990 * Got the lock. We might not be the anticipated owner if we
1991 * did a lock-steal - fix up the PI-state in that case:
1992 */
1993 if (q->pi_state->owner != current)
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001994 ret = fixup_pi_state_owner(uaddr, q, current);
Darren Hartdd973992009-04-03 13:40:02 -07001995 goto out;
1996 }
1997
1998 /*
1999 * Catch the rare case, where the lock was released when we were on the
2000 * way back before we locked the hash bucket.
2001 */
2002 if (q->pi_state->owner == current) {
2003 /*
2004 * Try to get the rt_mutex now. This might fail as some other
2005 * task acquired the rt_mutex after we removed ourself from the
2006 * rt_mutex waiters list.
2007 */
2008 if (rt_mutex_trylock(&q->pi_state->pi_mutex)) {
2009 locked = 1;
2010 goto out;
2011 }
2012
2013 /*
2014 * pi_state is incorrect, some other task did a lock steal and
2015 * we returned due to timeout or signal without taking the
Lai Jiangshan81612392011-01-14 17:09:41 +08002016 * rt_mutex. Too late.
Darren Hartdd973992009-04-03 13:40:02 -07002017 */
Lai Jiangshan81612392011-01-14 17:09:41 +08002018 raw_spin_lock(&q->pi_state->pi_mutex.wait_lock);
Darren Hartdd973992009-04-03 13:40:02 -07002019 owner = rt_mutex_owner(&q->pi_state->pi_mutex);
Lai Jiangshan81612392011-01-14 17:09:41 +08002020 if (!owner)
2021 owner = rt_mutex_next_owner(&q->pi_state->pi_mutex);
2022 raw_spin_unlock(&q->pi_state->pi_mutex.wait_lock);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002023 ret = fixup_pi_state_owner(uaddr, q, owner);
Darren Hartdd973992009-04-03 13:40:02 -07002024 goto out;
2025 }
2026
2027 /*
2028 * Paranoia check. If we did not take the lock, then we should not be
Lai Jiangshan81612392011-01-14 17:09:41 +08002029 * the owner of the rt_mutex.
Darren Hartdd973992009-04-03 13:40:02 -07002030 */
2031 if (rt_mutex_owner(&q->pi_state->pi_mutex) == current)
2032 printk(KERN_ERR "fixup_owner: ret = %d pi-mutex: %p "
2033 "pi-state %p\n", ret,
2034 q->pi_state->pi_mutex.owner,
2035 q->pi_state->owner);
2036
2037out:
2038 return ret ? ret : locked;
2039}
2040
2041/**
Darren Hartca5f9522009-04-03 13:39:33 -07002042 * futex_wait_queue_me() - queue_me() and wait for wakeup, timeout, or signal
2043 * @hb: the futex hash bucket, must be locked by the caller
2044 * @q: the futex_q to queue up on
2045 * @timeout: the prepared hrtimer_sleeper, or null for no timeout
Darren Hartca5f9522009-04-03 13:39:33 -07002046 */
2047static void futex_wait_queue_me(struct futex_hash_bucket *hb, struct futex_q *q,
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02002048 struct hrtimer_sleeper *timeout)
Darren Hartca5f9522009-04-03 13:39:33 -07002049{
Darren Hart9beba3c2009-09-24 11:54:47 -07002050 /*
2051 * The task state is guaranteed to be set before another task can
2052 * wake it. set_current_state() is implemented using set_mb() and
2053 * queue_me() calls spin_unlock() upon completion, both serializing
2054 * access to the hash list and forcing another memory barrier.
2055 */
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02002056 set_current_state(TASK_INTERRUPTIBLE);
Darren Hart0729e192009-09-21 22:30:38 -07002057 queue_me(q, hb);
Darren Hartca5f9522009-04-03 13:39:33 -07002058
2059 /* Arm the timer */
2060 if (timeout) {
2061 hrtimer_start_expires(&timeout->timer, HRTIMER_MODE_ABS);
2062 if (!hrtimer_active(&timeout->timer))
2063 timeout->task = NULL;
2064 }
2065
2066 /*
Darren Hart0729e192009-09-21 22:30:38 -07002067 * If we have been removed from the hash list, then another task
2068 * has tried to wake us, and we can skip the call to schedule().
Darren Hartca5f9522009-04-03 13:39:33 -07002069 */
2070 if (likely(!plist_node_empty(&q->list))) {
2071 /*
2072 * If the timer has already expired, current will already be
2073 * flagged for rescheduling. Only call schedule if there
2074 * is no timeout, or if it has yet to expire.
2075 */
2076 if (!timeout || timeout->task)
Colin Cross88c80042013-05-01 18:35:05 -07002077 freezable_schedule();
Darren Hartca5f9522009-04-03 13:39:33 -07002078 }
2079 __set_current_state(TASK_RUNNING);
2080}
2081
Darren Hartf8010732009-04-03 13:40:40 -07002082/**
2083 * futex_wait_setup() - Prepare to wait on a futex
2084 * @uaddr: the futex userspace address
2085 * @val: the expected value
Darren Hartb41277d2010-11-08 13:10:09 -08002086 * @flags: futex flags (FLAGS_SHARED, etc.)
Darren Hartf8010732009-04-03 13:40:40 -07002087 * @q: the associated futex_q
2088 * @hb: storage for hash_bucket pointer to be returned to caller
2089 *
2090 * Setup the futex_q and locate the hash_bucket. Get the futex value and
2091 * compare it with the expected value. Handle atomic faults internally.
2092 * Return with the hb lock held and a q.key reference on success, and unlocked
2093 * with no q.key reference on failure.
2094 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08002095 * Return:
2096 * 0 - uaddr contains val and hb has been locked;
Bart Van Asscheca4a04c2011-07-17 09:01:00 +02002097 * <1 - -EFAULT or -EWOULDBLOCK (uaddr does not contain val) and hb is unlocked
Darren Hartf8010732009-04-03 13:40:40 -07002098 */
Darren Hartb41277d2010-11-08 13:10:09 -08002099static int futex_wait_setup(u32 __user *uaddr, u32 val, unsigned int flags,
Darren Hartf8010732009-04-03 13:40:40 -07002100 struct futex_q *q, struct futex_hash_bucket **hb)
2101{
2102 u32 uval;
2103 int ret;
2104
2105 /*
2106 * Access the page AFTER the hash-bucket is locked.
2107 * Order is important:
2108 *
2109 * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
2110 * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); }
2111 *
2112 * The basic logical guarantee of a futex is that it blocks ONLY
2113 * if cond(var) is known to be true at the time of blocking, for
Michel Lespinasse8fe8f542011-03-06 18:07:50 -08002114 * any cond. If we locked the hash-bucket after testing *uaddr, that
2115 * would open a race condition where we could block indefinitely with
Darren Hartf8010732009-04-03 13:40:40 -07002116 * cond(var) false, which would violate the guarantee.
2117 *
Michel Lespinasse8fe8f542011-03-06 18:07:50 -08002118 * On the other hand, we insert q and release the hash-bucket only
2119 * after testing *uaddr. This guarantees that futex_wait() will NOT
2120 * absorb a wakeup if *uaddr does not match the desired values
2121 * while the syscall executes.
Darren Hartf8010732009-04-03 13:40:40 -07002122 */
2123retry:
Shawn Bohrer9ea71502011-06-30 11:21:32 -05002124 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q->key, VERIFY_READ);
Darren Hartf8010732009-04-03 13:40:40 -07002125 if (unlikely(ret != 0))
Darren Harta5a2a0c2009-04-10 09:50:05 -07002126 return ret;
Darren Hartf8010732009-04-03 13:40:40 -07002127
2128retry_private:
2129 *hb = queue_lock(q);
2130
2131 ret = get_futex_value_locked(&uval, uaddr);
2132
2133 if (ret) {
Jason Low0d00c7b2014-01-12 15:31:22 -08002134 queue_unlock(*hb);
Darren Hartf8010732009-04-03 13:40:40 -07002135
2136 ret = get_user(uval, uaddr);
2137 if (ret)
2138 goto out;
2139
Darren Hartb41277d2010-11-08 13:10:09 -08002140 if (!(flags & FLAGS_SHARED))
Darren Hartf8010732009-04-03 13:40:40 -07002141 goto retry_private;
2142
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002143 put_futex_key(&q->key);
Darren Hartf8010732009-04-03 13:40:40 -07002144 goto retry;
2145 }
2146
2147 if (uval != val) {
Jason Low0d00c7b2014-01-12 15:31:22 -08002148 queue_unlock(*hb);
Darren Hartf8010732009-04-03 13:40:40 -07002149 ret = -EWOULDBLOCK;
2150 }
2151
2152out:
2153 if (ret)
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002154 put_futex_key(&q->key);
Darren Hartf8010732009-04-03 13:40:40 -07002155 return ret;
2156}
2157
Darren Hartb41277d2010-11-08 13:10:09 -08002158static int futex_wait(u32 __user *uaddr, unsigned int flags, u32 val,
2159 ktime_t *abs_time, u32 bitset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160{
Darren Hartca5f9522009-04-03 13:39:33 -07002161 struct hrtimer_sleeper timeout, *to = NULL;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002162 struct restart_block *restart;
Ingo Molnare2970f22006-06-27 02:54:47 -07002163 struct futex_hash_bucket *hb;
Darren Hart5bdb05f2010-11-08 13:40:28 -08002164 struct futex_q q = futex_q_init;
Ingo Molnare2970f22006-06-27 02:54:47 -07002165 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Thomas Gleixnercd689982008-02-01 17:45:14 +01002167 if (!bitset)
2168 return -EINVAL;
Thomas Gleixnercd689982008-02-01 17:45:14 +01002169 q.bitset = bitset;
Darren Hartca5f9522009-04-03 13:39:33 -07002170
2171 if (abs_time) {
2172 to = &timeout;
2173
Darren Hartb41277d2010-11-08 13:10:09 -08002174 hrtimer_init_on_stack(&to->timer, (flags & FLAGS_CLOCKRT) ?
2175 CLOCK_REALTIME : CLOCK_MONOTONIC,
2176 HRTIMER_MODE_ABS);
Darren Hartca5f9522009-04-03 13:39:33 -07002177 hrtimer_init_sleeper(to, current);
2178 hrtimer_set_expires_range_ns(&to->timer, *abs_time,
2179 current->timer_slack_ns);
2180 }
2181
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002182retry:
Darren Hart7ada8762010-10-17 08:35:04 -07002183 /*
2184 * Prepare to wait on uaddr. On success, holds hb lock and increments
2185 * q.key refs.
2186 */
Darren Hartb41277d2010-11-08 13:10:09 -08002187 ret = futex_wait_setup(uaddr, val, flags, &q, &hb);
Darren Hartf8010732009-04-03 13:40:40 -07002188 if (ret)
Darren Hart42d35d42008-12-29 15:49:53 -08002189 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Darren Hartca5f9522009-04-03 13:39:33 -07002191 /* queue_me and wait for wakeup, timeout, or a signal. */
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02002192 futex_wait_queue_me(hb, &q, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
2194 /* If we were woken (and unqueued), we succeeded, whatever. */
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002195 ret = 0;
Darren Hart7ada8762010-10-17 08:35:04 -07002196 /* unqueue_me() drops q.key ref */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 if (!unqueue_me(&q))
Darren Hart7ada8762010-10-17 08:35:04 -07002198 goto out;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002199 ret = -ETIMEDOUT;
Darren Hartca5f9522009-04-03 13:39:33 -07002200 if (to && !to->task)
Darren Hart7ada8762010-10-17 08:35:04 -07002201 goto out;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002202
Ingo Molnare2970f22006-06-27 02:54:47 -07002203 /*
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002204 * We expect signal_pending(current), but we might be the
2205 * victim of a spurious wakeup as well.
Ingo Molnare2970f22006-06-27 02:54:47 -07002206 */
Darren Hart7ada8762010-10-17 08:35:04 -07002207 if (!signal_pending(current))
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002208 goto retry;
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002209
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002210 ret = -ERESTARTSYS;
Pierre Peifferc19384b2007-05-09 02:35:02 -07002211 if (!abs_time)
Darren Hart7ada8762010-10-17 08:35:04 -07002212 goto out;
Steven Rostedtce6bd422007-12-05 15:46:09 +01002213
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002214 restart = &current_thread_info()->restart_block;
2215 restart->fn = futex_wait_restart;
Namhyung Kima3c74c52010-09-14 21:43:47 +09002216 restart->futex.uaddr = uaddr;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002217 restart->futex.val = val;
2218 restart->futex.time = abs_time->tv64;
2219 restart->futex.bitset = bitset;
Darren Hart0cd9c642011-04-14 15:41:57 -07002220 restart->futex.flags = flags | FLAGS_HAS_TIMEOUT;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002221
2222 ret = -ERESTART_RESTARTBLOCK;
2223
Darren Hart42d35d42008-12-29 15:49:53 -08002224out:
Darren Hartca5f9522009-04-03 13:39:33 -07002225 if (to) {
2226 hrtimer_cancel(&to->timer);
2227 destroy_hrtimer_on_stack(&to->timer);
2228 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07002229 return ret;
2230}
2231
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002232
2233static long futex_wait_restart(struct restart_block *restart)
2234{
Namhyung Kima3c74c52010-09-14 21:43:47 +09002235 u32 __user *uaddr = restart->futex.uaddr;
Darren Harta72188d2009-04-03 13:40:22 -07002236 ktime_t t, *tp = NULL;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002237
Darren Harta72188d2009-04-03 13:40:22 -07002238 if (restart->futex.flags & FLAGS_HAS_TIMEOUT) {
2239 t.tv64 = restart->futex.time;
2240 tp = &t;
2241 }
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002242 restart->fn = do_no_restart_syscall;
Darren Hartb41277d2010-11-08 13:10:09 -08002243
2244 return (long)futex_wait(uaddr, restart->futex.flags,
2245 restart->futex.val, tp, restart->futex.bitset);
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002246}
2247
2248
Ingo Molnarc87e2832006-06-27 02:54:58 -07002249/*
2250 * Userspace tried a 0 -> TID atomic transition of the futex value
2251 * and failed. The kernel side here does the whole locking operation:
2252 * if there are waiters then it will block, it does PI, etc. (Due to
2253 * races the kernel might see a 0 value of the futex too.)
2254 */
Darren Hartb41277d2010-11-08 13:10:09 -08002255static int futex_lock_pi(u32 __user *uaddr, unsigned int flags, int detect,
2256 ktime_t *time, int trylock)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002257{
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07002258 struct hrtimer_sleeper timeout, *to = NULL;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002259 struct futex_hash_bucket *hb;
Darren Hart5bdb05f2010-11-08 13:40:28 -08002260 struct futex_q q = futex_q_init;
Darren Hartdd973992009-04-03 13:40:02 -07002261 int res, ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002262
2263 if (refill_pi_state_cache())
2264 return -ENOMEM;
2265
Pierre Peifferc19384b2007-05-09 02:35:02 -07002266 if (time) {
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07002267 to = &timeout;
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07002268 hrtimer_init_on_stack(&to->timer, CLOCK_REALTIME,
2269 HRTIMER_MODE_ABS);
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07002270 hrtimer_init_sleeper(to, current);
Arjan van de Vencc584b22008-09-01 15:02:30 -07002271 hrtimer_set_expires(&to->timer, *time);
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07002272 }
2273
Darren Hart42d35d42008-12-29 15:49:53 -08002274retry:
Shawn Bohrer9ea71502011-06-30 11:21:32 -05002275 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q.key, VERIFY_WRITE);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002276 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08002277 goto out;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002278
Darren Harte4dc5b72009-03-12 00:56:13 -07002279retry_private:
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01002280 hb = queue_lock(&q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002281
Darren Hartbab5bc92009-04-07 23:23:50 -07002282 ret = futex_lock_pi_atomic(uaddr, hb, &q.key, &q.pi_state, current, 0);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002283 if (unlikely(ret)) {
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002284 switch (ret) {
Darren Hart1a520842009-04-03 13:39:52 -07002285 case 1:
2286 /* We got the lock. */
2287 ret = 0;
2288 goto out_unlock_put_key;
2289 case -EFAULT:
2290 goto uaddr_faulted;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002291 case -EAGAIN:
2292 /*
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00002293 * Two reasons for this:
2294 * - Task is exiting and we just wait for the
2295 * exit to complete.
2296 * - The user space value changed.
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002297 */
Jason Low0d00c7b2014-01-12 15:31:22 -08002298 queue_unlock(hb);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002299 put_futex_key(&q.key);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002300 cond_resched();
2301 goto retry;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002302 default:
Darren Hart42d35d42008-12-29 15:49:53 -08002303 goto out_unlock_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002304 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07002305 }
2306
2307 /*
2308 * Only actually queue now that the atomic ops are done:
2309 */
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01002310 queue_me(&q, hb);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002311
Ingo Molnarc87e2832006-06-27 02:54:58 -07002312 WARN_ON(!q.pi_state);
2313 /*
2314 * Block on the PI mutex:
2315 */
Thomas Gleixnerc051b212014-05-22 03:25:50 +00002316 if (!trylock) {
2317 ret = rt_mutex_timed_futex_lock(&q.pi_state->pi_mutex, to);
2318 } else {
Ingo Molnarc87e2832006-06-27 02:54:58 -07002319 ret = rt_mutex_trylock(&q.pi_state->pi_mutex);
2320 /* Fixup the trylock return value: */
2321 ret = ret ? 0 : -EWOULDBLOCK;
2322 }
2323
Vernon Mauerya99e4e42006-07-01 04:35:42 -07002324 spin_lock(q.lock_ptr);
Darren Hartdd973992009-04-03 13:40:02 -07002325 /*
2326 * Fixup the pi_state owner and possibly acquire the lock if we
2327 * haven't already.
2328 */
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002329 res = fixup_owner(uaddr, &q, !ret);
Darren Hartdd973992009-04-03 13:40:02 -07002330 /*
2331 * If fixup_owner() returned an error, proprogate that. If it acquired
2332 * the lock, clear our -ETIMEDOUT or -EINTR.
2333 */
2334 if (res)
2335 ret = (res < 0) ? res : 0;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002336
Darren Harte8f63862009-03-12 00:56:06 -07002337 /*
Darren Hartdd973992009-04-03 13:40:02 -07002338 * If fixup_owner() faulted and was unable to handle the fault, unlock
2339 * it and return the fault to userspace.
Darren Harte8f63862009-03-12 00:56:06 -07002340 */
2341 if (ret && (rt_mutex_owner(&q.pi_state->pi_mutex) == current))
2342 rt_mutex_unlock(&q.pi_state->pi_mutex);
2343
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002344 /* Unqueue and drop the lock */
2345 unqueue_me_pi(&q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002346
Mikael Pettersson5ecb01c2010-01-23 22:36:29 +01002347 goto out_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002348
Darren Hart42d35d42008-12-29 15:49:53 -08002349out_unlock_put_key:
Jason Low0d00c7b2014-01-12 15:31:22 -08002350 queue_unlock(hb);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002351
Darren Hart42d35d42008-12-29 15:49:53 -08002352out_put_key:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002353 put_futex_key(&q.key);
Darren Hart42d35d42008-12-29 15:49:53 -08002354out:
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07002355 if (to)
2356 destroy_hrtimer_on_stack(&to->timer);
Darren Hartdd973992009-04-03 13:40:02 -07002357 return ret != -EINTR ? ret : -ERESTARTNOINTR;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002358
Darren Hart42d35d42008-12-29 15:49:53 -08002359uaddr_faulted:
Jason Low0d00c7b2014-01-12 15:31:22 -08002360 queue_unlock(hb);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002361
Thomas Gleixnerd0725992009-06-11 23:15:43 +02002362 ret = fault_in_user_writeable(uaddr);
Darren Harte4dc5b72009-03-12 00:56:13 -07002363 if (ret)
2364 goto out_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002365
Darren Hartb41277d2010-11-08 13:10:09 -08002366 if (!(flags & FLAGS_SHARED))
Darren Harte4dc5b72009-03-12 00:56:13 -07002367 goto retry_private;
2368
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002369 put_futex_key(&q.key);
Darren Harte4dc5b72009-03-12 00:56:13 -07002370 goto retry;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002371}
2372
2373/*
Ingo Molnarc87e2832006-06-27 02:54:58 -07002374 * Userspace attempted a TID -> 0 atomic transition, and failed.
2375 * This is the in-kernel slowpath: we look up the PI state (if any),
2376 * and do the rt-mutex unlock.
2377 */
Darren Hartb41277d2010-11-08 13:10:09 -08002378static int futex_unlock_pi(u32 __user *uaddr, unsigned int flags)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002379{
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00002380 u32 uninitialized_var(curval), uval, vpid = task_pid_vnr(current);
Peter Zijlstra38d47c12008-09-26 19:32:20 +02002381 union futex_key key = FUTEX_KEY_INIT;
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00002382 struct futex_hash_bucket *hb;
2383 struct futex_q *match;
Darren Harte4dc5b72009-03-12 00:56:13 -07002384 int ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002385
2386retry:
2387 if (get_user(uval, uaddr))
2388 return -EFAULT;
2389 /*
2390 * We release only a lock we actually own:
2391 */
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +01002392 if ((uval & FUTEX_TID_MASK) != vpid)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002393 return -EPERM;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002394
Shawn Bohrer9ea71502011-06-30 11:21:32 -05002395 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, VERIFY_WRITE);
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00002396 if (ret)
2397 return ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002398
2399 hb = hash_futex(&key);
2400 spin_lock(&hb->lock);
2401
Ingo Molnarc87e2832006-06-27 02:54:58 -07002402 /*
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00002403 * Check waiters first. We do not trust user space values at
2404 * all and we at least want to know if user space fiddled
2405 * with the futex value instead of blindly unlocking.
Ingo Molnarc87e2832006-06-27 02:54:58 -07002406 */
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00002407 match = futex_top_waiter(hb, &key);
2408 if (match) {
2409 ret = wake_futex_pi(uaddr, uval, match);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002410 /*
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00002411 * The atomic access to the futex value generated a
2412 * pagefault, so retry the user-access and the wakeup:
Ingo Molnarc87e2832006-06-27 02:54:58 -07002413 */
2414 if (ret == -EFAULT)
2415 goto pi_faulted;
2416 goto out_unlock;
2417 }
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00002418
Ingo Molnarc87e2832006-06-27 02:54:58 -07002419 /*
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00002420 * We have no kernel internal state, i.e. no waiters in the
2421 * kernel. Waiters which are about to queue themselves are stuck
2422 * on hb->lock. So we can safely ignore them. We do neither
2423 * preserve the WAITERS bit not the OWNER_DIED one. We are the
2424 * owner.
Ingo Molnarc87e2832006-06-27 02:54:58 -07002425 */
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00002426 if (cmpxchg_futex_value_locked(&curval, uaddr, uval, 0))
Thomas Gleixner13fbca42014-06-03 12:27:07 +00002427 goto pi_faulted;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002428
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00002429 /*
2430 * If uval has changed, let user space handle it.
2431 */
2432 ret = (curval == uval) ? 0 : -EAGAIN;
2433
Ingo Molnarc87e2832006-06-27 02:54:58 -07002434out_unlock:
2435 spin_unlock(&hb->lock);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002436 put_futex_key(&key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002437 return ret;
2438
2439pi_faulted:
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002440 spin_unlock(&hb->lock);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002441 put_futex_key(&key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002442
Thomas Gleixnerd0725992009-06-11 23:15:43 +02002443 ret = fault_in_user_writeable(uaddr);
Darren Hartb5686362008-12-18 15:06:34 -08002444 if (!ret)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002445 goto retry;
2446
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 return ret;
2448}
2449
Darren Hart52400ba2009-04-03 13:40:49 -07002450/**
2451 * handle_early_requeue_pi_wakeup() - Detect early wakeup on the initial futex
2452 * @hb: the hash_bucket futex_q was original enqueued on
2453 * @q: the futex_q woken while waiting to be requeued
2454 * @key2: the futex_key of the requeue target futex
2455 * @timeout: the timeout associated with the wait (NULL if none)
2456 *
2457 * Detect if the task was woken on the initial futex as opposed to the requeue
2458 * target futex. If so, determine if it was a timeout or a signal that caused
2459 * the wakeup and return the appropriate error code to the caller. Must be
2460 * called with the hb lock held.
2461 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08002462 * Return:
2463 * 0 = no early wakeup detected;
2464 * <0 = -ETIMEDOUT or -ERESTARTNOINTR
Darren Hart52400ba2009-04-03 13:40:49 -07002465 */
2466static inline
2467int handle_early_requeue_pi_wakeup(struct futex_hash_bucket *hb,
2468 struct futex_q *q, union futex_key *key2,
2469 struct hrtimer_sleeper *timeout)
2470{
2471 int ret = 0;
2472
2473 /*
2474 * With the hb lock held, we avoid races while we process the wakeup.
2475 * We only need to hold hb (and not hb2) to ensure atomicity as the
2476 * wakeup code can't change q.key from uaddr to uaddr2 if we hold hb.
2477 * It can't be requeued from uaddr2 to something else since we don't
2478 * support a PI aware source futex for requeue.
2479 */
2480 if (!match_futex(&q->key, key2)) {
2481 WARN_ON(q->lock_ptr && (&hb->lock != q->lock_ptr));
2482 /*
2483 * We were woken prior to requeue by a timeout or a signal.
2484 * Unqueue the futex_q and determine which it was.
2485 */
Lai Jiangshan2e129782010-12-22 14:18:50 +08002486 plist_del(&q->list, &hb->chain);
Linus Torvalds11d46162014-03-20 22:11:17 -07002487 hb_waiters_dec(hb);
Darren Hart52400ba2009-04-03 13:40:49 -07002488
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002489 /* Handle spurious wakeups gracefully */
Thomas Gleixner11df6dd2009-10-28 20:26:48 +01002490 ret = -EWOULDBLOCK;
Darren Hart52400ba2009-04-03 13:40:49 -07002491 if (timeout && !timeout->task)
2492 ret = -ETIMEDOUT;
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002493 else if (signal_pending(current))
Thomas Gleixner1c840c12009-05-20 09:22:40 +02002494 ret = -ERESTARTNOINTR;
Darren Hart52400ba2009-04-03 13:40:49 -07002495 }
2496 return ret;
2497}
2498
2499/**
2500 * futex_wait_requeue_pi() - Wait on uaddr and take uaddr2
Darren Hart56ec1602009-09-21 22:29:59 -07002501 * @uaddr: the futex we initially wait on (non-pi)
Darren Hartb41277d2010-11-08 13:10:09 -08002502 * @flags: futex flags (FLAGS_SHARED, FLAGS_CLOCKRT, etc.), they must be
Darren Hart52400ba2009-04-03 13:40:49 -07002503 * the same type, no requeueing from private to shared, etc.
2504 * @val: the expected value of uaddr
2505 * @abs_time: absolute timeout
Darren Hart56ec1602009-09-21 22:29:59 -07002506 * @bitset: 32 bit wakeup bitset set by userspace, defaults to all
Darren Hart52400ba2009-04-03 13:40:49 -07002507 * @uaddr2: the pi futex we will take prior to returning to user-space
2508 *
2509 * The caller will wait on uaddr and will be requeued by futex_requeue() to
Darren Hart6f7b0a22012-07-20 11:53:31 -07002510 * uaddr2 which must be PI aware and unique from uaddr. Normal wakeup will wake
2511 * on uaddr2 and complete the acquisition of the rt_mutex prior to returning to
2512 * userspace. This ensures the rt_mutex maintains an owner when it has waiters;
2513 * without one, the pi logic would not know which task to boost/deboost, if
2514 * there was a need to.
Darren Hart52400ba2009-04-03 13:40:49 -07002515 *
2516 * We call schedule in futex_wait_queue_me() when we enqueue and return there
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08002517 * via the following--
Darren Hart52400ba2009-04-03 13:40:49 -07002518 * 1) wakeup on uaddr2 after an atomic lock acquisition by futex_requeue()
Darren Hartcc6db4e2009-07-31 16:20:10 -07002519 * 2) wakeup on uaddr2 after a requeue
2520 * 3) signal
2521 * 4) timeout
Darren Hart52400ba2009-04-03 13:40:49 -07002522 *
Darren Hartcc6db4e2009-07-31 16:20:10 -07002523 * If 3, cleanup and return -ERESTARTNOINTR.
Darren Hart52400ba2009-04-03 13:40:49 -07002524 *
2525 * If 2, we may then block on trying to take the rt_mutex and return via:
2526 * 5) successful lock
2527 * 6) signal
2528 * 7) timeout
2529 * 8) other lock acquisition failure
2530 *
Darren Hartcc6db4e2009-07-31 16:20:10 -07002531 * If 6, return -EWOULDBLOCK (restarting the syscall would do the same).
Darren Hart52400ba2009-04-03 13:40:49 -07002532 *
2533 * If 4 or 7, we cleanup and return with -ETIMEDOUT.
2534 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08002535 * Return:
2536 * 0 - On success;
Darren Hart52400ba2009-04-03 13:40:49 -07002537 * <0 - On error
2538 */
Darren Hartb41277d2010-11-08 13:10:09 -08002539static int futex_wait_requeue_pi(u32 __user *uaddr, unsigned int flags,
Darren Hart52400ba2009-04-03 13:40:49 -07002540 u32 val, ktime_t *abs_time, u32 bitset,
Darren Hartb41277d2010-11-08 13:10:09 -08002541 u32 __user *uaddr2)
Darren Hart52400ba2009-04-03 13:40:49 -07002542{
2543 struct hrtimer_sleeper timeout, *to = NULL;
2544 struct rt_mutex_waiter rt_waiter;
2545 struct rt_mutex *pi_mutex = NULL;
Darren Hart52400ba2009-04-03 13:40:49 -07002546 struct futex_hash_bucket *hb;
Darren Hart5bdb05f2010-11-08 13:40:28 -08002547 union futex_key key2 = FUTEX_KEY_INIT;
2548 struct futex_q q = futex_q_init;
Darren Hart52400ba2009-04-03 13:40:49 -07002549 int res, ret;
Darren Hart52400ba2009-04-03 13:40:49 -07002550
Darren Hart6f7b0a22012-07-20 11:53:31 -07002551 if (uaddr == uaddr2)
2552 return -EINVAL;
2553
Darren Hart52400ba2009-04-03 13:40:49 -07002554 if (!bitset)
2555 return -EINVAL;
2556
2557 if (abs_time) {
2558 to = &timeout;
Darren Hartb41277d2010-11-08 13:10:09 -08002559 hrtimer_init_on_stack(&to->timer, (flags & FLAGS_CLOCKRT) ?
2560 CLOCK_REALTIME : CLOCK_MONOTONIC,
2561 HRTIMER_MODE_ABS);
Darren Hart52400ba2009-04-03 13:40:49 -07002562 hrtimer_init_sleeper(to, current);
2563 hrtimer_set_expires_range_ns(&to->timer, *abs_time,
2564 current->timer_slack_ns);
2565 }
2566
2567 /*
2568 * The waiter is allocated on our stack, manipulated by the requeue
2569 * code while we sleep on uaddr.
2570 */
2571 debug_rt_mutex_init_waiter(&rt_waiter);
Peter Zijlstrafb00aca2013-11-07 14:43:43 +01002572 RB_CLEAR_NODE(&rt_waiter.pi_tree_entry);
2573 RB_CLEAR_NODE(&rt_waiter.tree_entry);
Darren Hart52400ba2009-04-03 13:40:49 -07002574 rt_waiter.task = NULL;
2575
Shawn Bohrer9ea71502011-06-30 11:21:32 -05002576 ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, VERIFY_WRITE);
Darren Hart52400ba2009-04-03 13:40:49 -07002577 if (unlikely(ret != 0))
2578 goto out;
2579
Darren Hart84bc4af2009-08-13 17:36:53 -07002580 q.bitset = bitset;
2581 q.rt_waiter = &rt_waiter;
2582 q.requeue_pi_key = &key2;
2583
Darren Hart7ada8762010-10-17 08:35:04 -07002584 /*
2585 * Prepare to wait on uaddr. On success, increments q.key (key1) ref
2586 * count.
2587 */
Darren Hartb41277d2010-11-08 13:10:09 -08002588 ret = futex_wait_setup(uaddr, val, flags, &q, &hb);
Thomas Gleixnerc8b15a72009-05-20 09:18:50 +02002589 if (ret)
2590 goto out_key2;
Darren Hart52400ba2009-04-03 13:40:49 -07002591
Thomas Gleixnere9c243a2014-06-03 12:27:06 +00002592 /*
2593 * The check above which compares uaddrs is not sufficient for
2594 * shared futexes. We need to compare the keys:
2595 */
2596 if (match_futex(&q.key, &key2)) {
Thomas Gleixner13c42c22014-09-11 23:44:35 +02002597 queue_unlock(hb);
Thomas Gleixnere9c243a2014-06-03 12:27:06 +00002598 ret = -EINVAL;
2599 goto out_put_keys;
2600 }
2601
Darren Hart52400ba2009-04-03 13:40:49 -07002602 /* Queue the futex_q, drop the hb lock, wait for wakeup. */
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02002603 futex_wait_queue_me(hb, &q, to);
Darren Hart52400ba2009-04-03 13:40:49 -07002604
2605 spin_lock(&hb->lock);
2606 ret = handle_early_requeue_pi_wakeup(hb, &q, &key2, to);
2607 spin_unlock(&hb->lock);
2608 if (ret)
2609 goto out_put_keys;
2610
2611 /*
2612 * In order for us to be here, we know our q.key == key2, and since
2613 * we took the hb->lock above, we also know that futex_requeue() has
2614 * completed and we no longer have to concern ourselves with a wakeup
Darren Hart7ada8762010-10-17 08:35:04 -07002615 * race with the atomic proxy lock acquisition by the requeue code. The
2616 * futex_requeue dropped our key1 reference and incremented our key2
2617 * reference count.
Darren Hart52400ba2009-04-03 13:40:49 -07002618 */
2619
2620 /* Check if the requeue code acquired the second futex for us. */
2621 if (!q.rt_waiter) {
2622 /*
2623 * Got the lock. We might not be the anticipated owner if we
2624 * did a lock-steal - fix up the PI-state in that case.
2625 */
2626 if (q.pi_state && (q.pi_state->owner != current)) {
2627 spin_lock(q.lock_ptr);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002628 ret = fixup_pi_state_owner(uaddr2, &q, current);
Darren Hart52400ba2009-04-03 13:40:49 -07002629 spin_unlock(q.lock_ptr);
2630 }
2631 } else {
2632 /*
2633 * We have been woken up by futex_unlock_pi(), a timeout, or a
2634 * signal. futex_unlock_pi() will not destroy the lock_ptr nor
2635 * the pi_state.
2636 */
Darren Hartf27071c2012-07-20 11:53:30 -07002637 WARN_ON(!q.pi_state);
Darren Hart52400ba2009-04-03 13:40:49 -07002638 pi_mutex = &q.pi_state->pi_mutex;
Thomas Gleixnerc051b212014-05-22 03:25:50 +00002639 ret = rt_mutex_finish_proxy_lock(pi_mutex, to, &rt_waiter);
Darren Hart52400ba2009-04-03 13:40:49 -07002640 debug_rt_mutex_free_waiter(&rt_waiter);
2641
2642 spin_lock(q.lock_ptr);
2643 /*
2644 * Fixup the pi_state owner and possibly acquire the lock if we
2645 * haven't already.
2646 */
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002647 res = fixup_owner(uaddr2, &q, !ret);
Darren Hart52400ba2009-04-03 13:40:49 -07002648 /*
2649 * If fixup_owner() returned an error, proprogate that. If it
Darren Hart56ec1602009-09-21 22:29:59 -07002650 * acquired the lock, clear -ETIMEDOUT or -EINTR.
Darren Hart52400ba2009-04-03 13:40:49 -07002651 */
2652 if (res)
2653 ret = (res < 0) ? res : 0;
2654
2655 /* Unqueue and drop the lock. */
2656 unqueue_me_pi(&q);
2657 }
2658
2659 /*
2660 * If fixup_pi_state_owner() faulted and was unable to handle the
2661 * fault, unlock the rt_mutex and return the fault to userspace.
2662 */
2663 if (ret == -EFAULT) {
Darren Hartb6070a82012-07-20 11:53:29 -07002664 if (pi_mutex && rt_mutex_owner(pi_mutex) == current)
Darren Hart52400ba2009-04-03 13:40:49 -07002665 rt_mutex_unlock(pi_mutex);
2666 } else if (ret == -EINTR) {
Darren Hart52400ba2009-04-03 13:40:49 -07002667 /*
Darren Hartcc6db4e2009-07-31 16:20:10 -07002668 * We've already been requeued, but cannot restart by calling
2669 * futex_lock_pi() directly. We could restart this syscall, but
2670 * it would detect that the user space "val" changed and return
2671 * -EWOULDBLOCK. Save the overhead of the restart and return
2672 * -EWOULDBLOCK directly.
Darren Hart52400ba2009-04-03 13:40:49 -07002673 */
Thomas Gleixner20708872009-05-19 23:04:59 +02002674 ret = -EWOULDBLOCK;
Darren Hart52400ba2009-04-03 13:40:49 -07002675 }
2676
2677out_put_keys:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002678 put_futex_key(&q.key);
Thomas Gleixnerc8b15a72009-05-20 09:18:50 +02002679out_key2:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002680 put_futex_key(&key2);
Darren Hart52400ba2009-04-03 13:40:49 -07002681
2682out:
2683 if (to) {
2684 hrtimer_cancel(&to->timer);
2685 destroy_hrtimer_on_stack(&to->timer);
2686 }
2687 return ret;
2688}
2689
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002690/*
2691 * Support for robust futexes: the kernel cleans up held futexes at
2692 * thread exit time.
2693 *
2694 * Implementation: user-space maintains a per-thread list of locks it
2695 * is holding. Upon do_exit(), the kernel carefully walks this list,
2696 * and marks all locks that are owned by this thread with the
Ingo Molnarc87e2832006-06-27 02:54:58 -07002697 * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002698 * always manipulated with the lock held, so the list is private and
2699 * per-thread. Userspace also maintains a per-thread 'list_op_pending'
2700 * field, to allow the kernel to clean up if the thread dies after
2701 * acquiring the lock, but just before it could have added itself to
2702 * the list. There can only be one such pending lock.
2703 */
2704
2705/**
Darren Hartd96ee562009-09-21 22:30:22 -07002706 * sys_set_robust_list() - Set the robust-futex list head of a task
2707 * @head: pointer to the list-head
2708 * @len: length of the list-head, as userspace expects
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002709 */
Heiko Carstens836f92a2009-01-14 14:14:33 +01002710SYSCALL_DEFINE2(set_robust_list, struct robust_list_head __user *, head,
2711 size_t, len)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002712{
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002713 if (!futex_cmpxchg_enabled)
2714 return -ENOSYS;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002715 /*
2716 * The kernel knows only one size for now:
2717 */
2718 if (unlikely(len != sizeof(*head)))
2719 return -EINVAL;
2720
2721 current->robust_list = head;
2722
2723 return 0;
2724}
2725
2726/**
Darren Hartd96ee562009-09-21 22:30:22 -07002727 * sys_get_robust_list() - Get the robust-futex list head of a task
2728 * @pid: pid of the process [zero for current task]
2729 * @head_ptr: pointer to a list-head pointer, the kernel fills it in
2730 * @len_ptr: pointer to a length field, the kernel fills in the header size
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002731 */
Heiko Carstens836f92a2009-01-14 14:14:33 +01002732SYSCALL_DEFINE3(get_robust_list, int, pid,
2733 struct robust_list_head __user * __user *, head_ptr,
2734 size_t __user *, len_ptr)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002735{
Al Viroba46df92006-10-10 22:46:07 +01002736 struct robust_list_head __user *head;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002737 unsigned long ret;
Kees Cookbdbb7762012-03-19 16:12:53 -07002738 struct task_struct *p;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002739
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002740 if (!futex_cmpxchg_enabled)
2741 return -ENOSYS;
2742
Kees Cookbdbb7762012-03-19 16:12:53 -07002743 rcu_read_lock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002744
Kees Cookbdbb7762012-03-19 16:12:53 -07002745 ret = -ESRCH;
2746 if (!pid)
2747 p = current;
2748 else {
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07002749 p = find_task_by_vpid(pid);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002750 if (!p)
2751 goto err_unlock;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002752 }
2753
Kees Cookbdbb7762012-03-19 16:12:53 -07002754 ret = -EPERM;
2755 if (!ptrace_may_access(p, PTRACE_MODE_READ))
2756 goto err_unlock;
2757
2758 head = p->robust_list;
2759 rcu_read_unlock();
2760
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002761 if (put_user(sizeof(*head), len_ptr))
2762 return -EFAULT;
2763 return put_user(head, head_ptr);
2764
2765err_unlock:
Oleg Nesterovaaa2a972006-09-29 02:00:55 -07002766 rcu_read_unlock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002767
2768 return ret;
2769}
2770
2771/*
2772 * Process a futex-list entry, check whether it's owned by the
2773 * dying task, and do notification if so:
2774 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002775int handle_futex_death(u32 __user *uaddr, struct task_struct *curr, int pi)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002776{
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +03002777 u32 uval, uninitialized_var(nval), mval;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002778
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08002779retry:
2780 if (get_user(uval, uaddr))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002781 return -1;
2782
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002783 if ((uval & FUTEX_TID_MASK) == task_pid_vnr(curr)) {
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002784 /*
2785 * Ok, this dying thread is truly holding a futex
2786 * of interest. Set the OWNER_DIED bit atomically
2787 * via cmpxchg, and if the value had FUTEX_WAITERS
2788 * set, wake up a waiter (if any). (We have to do a
2789 * futex_wake() even if OWNER_DIED is already set -
2790 * to handle the rare but possible case of recursive
2791 * thread-death.) The rest of the cleanup is done in
2792 * userspace.
2793 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002794 mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED;
Thomas Gleixner6e0aa9f2011-03-14 10:34:35 +01002795 /*
2796 * We are not holding a lock here, but we want to have
2797 * the pagefault_disable/enable() protection because
2798 * we want to handle the fault gracefully. If the
2799 * access fails we try to fault in the futex with R/W
2800 * verification via get_user_pages. get_user() above
2801 * does not guarantee R/W access. If that fails we
2802 * give up and leave the futex locked.
2803 */
2804 if (cmpxchg_futex_value_locked(&nval, uaddr, uval, mval)) {
2805 if (fault_in_user_writeable(uaddr))
2806 return -1;
2807 goto retry;
2808 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07002809 if (nval != uval)
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08002810 goto retry;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002811
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002812 /*
2813 * Wake robust non-PI futexes here. The wakeup of
2814 * PI futexes happens in exit_pi_state():
2815 */
Thomas Gleixner36cf3b52007-07-15 23:41:20 -07002816 if (!pi && (uval & FUTEX_WAITERS))
Peter Zijlstrac2f9f202008-09-26 19:32:23 +02002817 futex_wake(uaddr, 1, 1, FUTEX_BITSET_MATCH_ANY);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002818 }
2819 return 0;
2820}
2821
2822/*
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002823 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
2824 */
2825static inline int fetch_robust_entry(struct robust_list __user **entry,
Al Viroba46df92006-10-10 22:46:07 +01002826 struct robust_list __user * __user *head,
Namhyung Kim1dcc41b2010-09-14 21:43:46 +09002827 unsigned int *pi)
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002828{
2829 unsigned long uentry;
2830
Al Viroba46df92006-10-10 22:46:07 +01002831 if (get_user(uentry, (unsigned long __user *)head))
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002832 return -EFAULT;
2833
Al Viroba46df92006-10-10 22:46:07 +01002834 *entry = (void __user *)(uentry & ~1UL);
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002835 *pi = uentry & 1;
2836
2837 return 0;
2838}
2839
2840/*
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002841 * Walk curr->robust_list (very carefully, it's a userspace list!)
2842 * and mark any locks found there dead, and notify any waiters.
2843 *
2844 * We silently return on any sign of list-walking problem.
2845 */
2846void exit_robust_list(struct task_struct *curr)
2847{
2848 struct robust_list_head __user *head = curr->robust_list;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002849 struct robust_list __user *entry, *next_entry, *pending;
Darren Hart4c115e92010-11-04 15:00:00 -04002850 unsigned int limit = ROBUST_LIST_LIMIT, pi, pip;
2851 unsigned int uninitialized_var(next_pi);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002852 unsigned long futex_offset;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002853 int rc;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002854
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08002855 if (!futex_cmpxchg_enabled)
2856 return;
2857
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002858 /*
2859 * Fetch the list head (which was registered earlier, via
2860 * sys_set_robust_list()):
2861 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002862 if (fetch_robust_entry(&entry, &head->list.next, &pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002863 return;
2864 /*
2865 * Fetch the relative futex offset:
2866 */
2867 if (get_user(futex_offset, &head->futex_offset))
2868 return;
2869 /*
2870 * Fetch any possibly pending lock-add first, and handle it
2871 * if it exists:
2872 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002873 if (fetch_robust_entry(&pending, &head->list_op_pending, &pip))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002874 return;
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002875
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002876 next_entry = NULL; /* avoid warning with gcc */
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002877 while (entry != &head->list) {
2878 /*
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002879 * Fetch the next entry in the list before calling
2880 * handle_futex_death:
2881 */
2882 rc = fetch_robust_entry(&next_entry, &entry->next, &next_pi);
2883 /*
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002884 * A pending lock might already be on the list, so
Ingo Molnarc87e2832006-06-27 02:54:58 -07002885 * don't process it twice:
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002886 */
2887 if (entry != pending)
Al Viroba46df92006-10-10 22:46:07 +01002888 if (handle_futex_death((void __user *)entry + futex_offset,
Ingo Molnare3f2dde2006-07-29 05:17:57 +02002889 curr, pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002890 return;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002891 if (rc)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002892 return;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002893 entry = next_entry;
2894 pi = next_pi;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002895 /*
2896 * Avoid excessively long or circular lists:
2897 */
2898 if (!--limit)
2899 break;
2900
2901 cond_resched();
2902 }
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07002903
2904 if (pending)
2905 handle_futex_death((void __user *)pending + futex_offset,
2906 curr, pip);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08002907}
2908
Pierre Peifferc19384b2007-05-09 02:35:02 -07002909long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout,
Ingo Molnare2970f22006-06-27 02:54:47 -07002910 u32 __user *uaddr2, u32 val2, u32 val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911{
Thomas Gleixner81b40532012-02-15 12:17:09 +01002912 int cmd = op & FUTEX_CMD_MASK;
Darren Hartb41277d2010-11-08 13:10:09 -08002913 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002915 if (!(op & FUTEX_PRIVATE_FLAG))
Darren Hartb41277d2010-11-08 13:10:09 -08002916 flags |= FLAGS_SHARED;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002917
Darren Hartb41277d2010-11-08 13:10:09 -08002918 if (op & FUTEX_CLOCK_REALTIME) {
2919 flags |= FLAGS_CLOCKRT;
2920 if (cmd != FUTEX_WAIT_BITSET && cmd != FUTEX_WAIT_REQUEUE_PI)
2921 return -ENOSYS;
2922 }
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002923
2924 switch (cmd) {
Thomas Gleixner59263b52012-02-15 12:08:34 +01002925 case FUTEX_LOCK_PI:
2926 case FUTEX_UNLOCK_PI:
2927 case FUTEX_TRYLOCK_PI:
2928 case FUTEX_WAIT_REQUEUE_PI:
2929 case FUTEX_CMP_REQUEUE_PI:
2930 if (!futex_cmpxchg_enabled)
2931 return -ENOSYS;
2932 }
2933
2934 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 case FUTEX_WAIT:
Thomas Gleixnercd689982008-02-01 17:45:14 +01002936 val3 = FUTEX_BITSET_MATCH_ANY;
2937 case FUTEX_WAIT_BITSET:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002938 return futex_wait(uaddr, flags, val, timeout, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 case FUTEX_WAKE:
Thomas Gleixnercd689982008-02-01 17:45:14 +01002940 val3 = FUTEX_BITSET_MATCH_ANY;
2941 case FUTEX_WAKE_BITSET:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002942 return futex_wake(uaddr, flags, val, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 case FUTEX_REQUEUE:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002944 return futex_requeue(uaddr, flags, uaddr2, val, val2, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 case FUTEX_CMP_REQUEUE:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002946 return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 0);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07002947 case FUTEX_WAKE_OP:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002948 return futex_wake_op(uaddr, flags, uaddr2, val, val2, val3);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002949 case FUTEX_LOCK_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002950 return futex_lock_pi(uaddr, flags, val, timeout, 0);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002951 case FUTEX_UNLOCK_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002952 return futex_unlock_pi(uaddr, flags);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002953 case FUTEX_TRYLOCK_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002954 return futex_lock_pi(uaddr, flags, 0, timeout, 1);
Darren Hart52400ba2009-04-03 13:40:49 -07002955 case FUTEX_WAIT_REQUEUE_PI:
2956 val3 = FUTEX_BITSET_MATCH_ANY;
Thomas Gleixner81b40532012-02-15 12:17:09 +01002957 return futex_wait_requeue_pi(uaddr, flags, val, timeout, val3,
2958 uaddr2);
Darren Hart52400ba2009-04-03 13:40:49 -07002959 case FUTEX_CMP_REQUEUE_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01002960 return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 }
Thomas Gleixner81b40532012-02-15 12:17:09 +01002962 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963}
2964
2965
Heiko Carstens17da2bd2009-01-14 14:14:10 +01002966SYSCALL_DEFINE6(futex, u32 __user *, uaddr, int, op, u32, val,
2967 struct timespec __user *, utime, u32 __user *, uaddr2,
2968 u32, val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969{
Pierre Peifferc19384b2007-05-09 02:35:02 -07002970 struct timespec ts;
2971 ktime_t t, *tp = NULL;
Ingo Molnare2970f22006-06-27 02:54:47 -07002972 u32 val2 = 0;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002973 int cmd = op & FUTEX_CMD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
Thomas Gleixnercd689982008-02-01 17:45:14 +01002975 if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI ||
Darren Hart52400ba2009-04-03 13:40:49 -07002976 cmd == FUTEX_WAIT_BITSET ||
2977 cmd == FUTEX_WAIT_REQUEUE_PI)) {
Pierre Peifferc19384b2007-05-09 02:35:02 -07002978 if (copy_from_user(&ts, utime, sizeof(ts)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 return -EFAULT;
Pierre Peifferc19384b2007-05-09 02:35:02 -07002980 if (!timespec_valid(&ts))
Thomas Gleixner9741ef962006-03-31 02:31:32 -08002981 return -EINVAL;
Pierre Peifferc19384b2007-05-09 02:35:02 -07002982
2983 t = timespec_to_ktime(ts);
Eric Dumazet34f01cc2007-05-09 02:35:04 -07002984 if (cmd == FUTEX_WAIT)
Thomas Gleixner5a7780e2008-02-13 09:20:43 +01002985 t = ktime_add_safe(ktime_get(), t);
Pierre Peifferc19384b2007-05-09 02:35:02 -07002986 tp = &t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 }
2988 /*
Darren Hart52400ba2009-04-03 13:40:49 -07002989 * requeue parameter in 'utime' if cmd == FUTEX_*_REQUEUE_*.
Andreas Schwabf54f0982007-07-31 00:38:51 -07002990 * number of waiters to wake in 'utime' if cmd == FUTEX_WAKE_OP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 */
Andreas Schwabf54f0982007-07-31 00:38:51 -07002992 if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE ||
Darren Hartba9c22f2009-04-20 22:22:22 -07002993 cmd == FUTEX_CMP_REQUEUE_PI || cmd == FUTEX_WAKE_OP)
Ingo Molnare2970f22006-06-27 02:54:47 -07002994 val2 = (u32) (unsigned long) utime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Pierre Peifferc19384b2007-05-09 02:35:02 -07002996 return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997}
2998
Heiko Carstens03b8c7b2014-03-02 13:09:47 +01002999static void __init futex_detect_cmpxchg(void)
3000{
3001#ifndef CONFIG_HAVE_FUTEX_CMPXCHG
3002 u32 curval;
3003
3004 /*
3005 * This will fail and we want it. Some arch implementations do
3006 * runtime detection of the futex_atomic_cmpxchg_inatomic()
3007 * functionality. We want to know that before we call in any
3008 * of the complex code paths. Also we want to prevent
3009 * registration of robust lists in that case. NULL is
3010 * guaranteed to fault and we get -EFAULT on functional
3011 * implementation, the non-functional ones will return
3012 * -ENOSYS.
3013 */
3014 if (cmpxchg_futex_value_locked(&curval, NULL, 0, 0) == -EFAULT)
3015 futex_cmpxchg_enabled = 1;
3016#endif
3017}
3018
Benjamin Herrenschmidtf6d107f2008-03-27 14:52:15 +11003019static int __init futex_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020{
Heiko Carstens63b1a812014-01-16 14:54:50 +01003021 unsigned int futex_shift;
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -08003022 unsigned long i;
3023
3024#if CONFIG_BASE_SMALL
3025 futex_hashsize = 16;
3026#else
3027 futex_hashsize = roundup_pow_of_two(256 * num_possible_cpus());
3028#endif
3029
3030 futex_queues = alloc_large_system_hash("futex", sizeof(*futex_queues),
3031 futex_hashsize, 0,
3032 futex_hashsize < 256 ? HASH_SMALL : 0,
Heiko Carstens63b1a812014-01-16 14:54:50 +01003033 &futex_shift, NULL,
3034 futex_hashsize, futex_hashsize);
3035 futex_hashsize = 1UL << futex_shift;
Heiko Carstens03b8c7b2014-03-02 13:09:47 +01003036
3037 futex_detect_cmpxchg();
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08003038
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -08003039 for (i = 0; i < futex_hashsize; i++) {
Linus Torvalds11d46162014-03-20 22:11:17 -07003040 atomic_set(&futex_queues[i].waiters, 0);
Dima Zavin732375c2011-07-07 17:27:59 -07003041 plist_head_init(&futex_queues[i].chain);
Thomas Gleixner3e4ab742008-02-23 15:23:55 -08003042 spin_lock_init(&futex_queues[i].lock);
3043 }
3044
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 return 0;
3046}
Benjamin Herrenschmidtf6d107f2008-03-27 14:52:15 +11003047__initcall(futex_init);