blob: 49bf20a8c5128fecc8d7dbd8532db897ba0bdbd7 [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 */
Arnd Bergmann04e77122018-04-17 16:31:07 +020047#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/slab.h>
49#include <linux/poll.h>
50#include <linux/fs.h>
51#include <linux/file.h>
52#include <linux/jhash.h>
53#include <linux/init.h>
54#include <linux/futex.h>
55#include <linux/mount.h>
56#include <linux/pagemap.h>
57#include <linux/syscalls.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070058#include <linux/signal.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040059#include <linux/export.h>
Andrey Mirkinfd5eea42007-10-16 23:30:13 -070060#include <linux/magic.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070061#include <linux/pid.h>
62#include <linux/nsproxy.h>
Kees Cookbdbb7762012-03-19 16:12:53 -070063#include <linux/ptrace.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060064#include <linux/sched/rt.h>
Ingo Molnar84f001e2017-02-01 16:36:40 +010065#include <linux/sched/wake_q.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010066#include <linux/sched/mm.h>
Zhang Yi13d60f42013-06-25 21:19:31 +080067#include <linux/hugetlb.h>
Colin Cross88c80042013-05-01 18:35:05 -070068#include <linux/freezer.h>
Mike Rapoport57c8a662018-10-30 15:09:49 -070069#include <linux/memblock.h>
Davidlohr Buesoab51fba2015-06-29 23:26:02 -070070#include <linux/fault-inject.h>
Elena Reshetova49262de2019-02-05 14:24:27 +020071#include <linux/refcount.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070072
Jakub Jelinek4732efbe2005-09-06 15:16:25 -070073#include <asm/futex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Peter Zijlstra1696a8b2013-10-31 18:18:19 +010075#include "locking/rtmutex_common.h"
Ingo Molnarc87e2832006-06-27 02:54:58 -070076
Thomas Gleixner99b60ce2014-01-12 15:31:24 -080077/*
Davidlohr Buesod7e8af12014-04-09 11:55:07 -070078 * READ this before attempting to hack on futexes!
79 *
80 * Basic futex operation and ordering guarantees
81 * =============================================
Thomas Gleixner99b60ce2014-01-12 15:31:24 -080082 *
83 * The waiter reads the futex value in user space and calls
84 * futex_wait(). This function computes the hash bucket and acquires
85 * the hash bucket lock. After that it reads the futex user space value
Davidlohr Buesob0c29f72014-01-12 15:31:25 -080086 * again and verifies that the data has not changed. If it has not changed
87 * it enqueues itself into the hash bucket, releases the hash bucket lock
88 * and schedules.
Thomas Gleixner99b60ce2014-01-12 15:31:24 -080089 *
90 * The waker side modifies the user space value of the futex and calls
Davidlohr Buesob0c29f72014-01-12 15:31:25 -080091 * futex_wake(). This function computes the hash bucket and acquires the
92 * hash bucket lock. Then it looks for waiters on that futex in the hash
93 * bucket and wakes them.
Thomas Gleixner99b60ce2014-01-12 15:31:24 -080094 *
Davidlohr Buesob0c29f72014-01-12 15:31:25 -080095 * In futex wake up scenarios where no tasks are blocked on a futex, taking
96 * the hb spinlock can be avoided and simply return. In order for this
97 * optimization to work, ordering guarantees must exist so that the waiter
98 * being added to the list is acknowledged when the list is concurrently being
99 * checked by the waker, avoiding scenarios like the following:
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800100 *
101 * CPU 0 CPU 1
102 * val = *futex;
103 * sys_futex(WAIT, futex, val);
104 * futex_wait(futex, val);
105 * uval = *futex;
106 * *futex = newval;
107 * sys_futex(WAKE, futex);
108 * futex_wake(futex);
109 * if (queue_empty())
110 * return;
111 * if (uval == val)
112 * lock(hash_bucket(futex));
113 * queue();
114 * unlock(hash_bucket(futex));
115 * schedule();
116 *
117 * This would cause the waiter on CPU 0 to wait forever because it
118 * missed the transition of the user space value from val to newval
119 * and the waker did not find the waiter in the hash bucket queue.
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800120 *
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800121 * The correct serialization ensures that a waiter either observes
122 * the changed user space value before blocking or is woken by a
123 * concurrent waker:
124 *
125 * CPU 0 CPU 1
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800126 * val = *futex;
127 * sys_futex(WAIT, futex, val);
128 * futex_wait(futex, val);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800129 *
Davidlohr Buesod7e8af12014-04-09 11:55:07 -0700130 * waiters++; (a)
Davidlohr Bueso8ad7b372016-02-09 11:15:13 -0800131 * smp_mb(); (A) <-- paired with -.
132 * |
133 * lock(hash_bucket(futex)); |
134 * |
135 * uval = *futex; |
136 * | *futex = newval;
137 * | sys_futex(WAKE, futex);
138 * | futex_wake(futex);
139 * |
140 * `--------> smp_mb(); (B)
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800141 * if (uval == val)
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800142 * queue();
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800143 * unlock(hash_bucket(futex));
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800144 * schedule(); if (waiters)
145 * lock(hash_bucket(futex));
Davidlohr Buesod7e8af12014-04-09 11:55:07 -0700146 * else wake_waiters(futex);
147 * waiters--; (b) unlock(hash_bucket(futex));
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800148 *
Davidlohr Buesod7e8af12014-04-09 11:55:07 -0700149 * Where (A) orders the waiters increment and the futex value read through
150 * atomic operations (see hb_waiters_inc) and where (B) orders the write
Davidlohr Bueso993b2ff2014-10-23 20:27:00 -0700151 * to futex and the waiters read -- this is done by the barriers for both
152 * shared and private futexes in get_futex_key_refs().
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800153 *
154 * This yields the following case (where X:=waiters, Y:=futex):
155 *
156 * X = Y = 0
157 *
158 * w[X]=1 w[Y]=1
159 * MB MB
160 * r[Y]=y r[X]=x
161 *
162 * Which guarantees that x==0 && y==0 is impossible; which translates back into
163 * the guarantee that we cannot both miss the futex variable change and the
164 * enqueue.
Davidlohr Buesod7e8af12014-04-09 11:55:07 -0700165 *
166 * Note that a new waiter is accounted for in (a) even when it is possible that
167 * the wait call can return error, in which case we backtrack from it in (b).
168 * Refer to the comment in queue_lock().
169 *
170 * Similarly, in order to account for waiters being requeued on another
171 * address we always increment the waiters for the destination bucket before
172 * acquiring the lock. It then decrements them again after releasing it -
173 * the code that actually moves the futex(es) between hash buckets (requeue_futex)
174 * will do the additional required waiter count housekeeping. This is done for
175 * double_lock_hb() and double_unlock_hb(), respectively.
Thomas Gleixner99b60ce2014-01-12 15:31:24 -0800176 */
177
Arnd Bergmann04e77122018-04-17 16:31:07 +0200178#ifdef CONFIG_HAVE_FUTEX_CMPXCHG
179#define futex_cmpxchg_enabled 1
180#else
181static int __read_mostly futex_cmpxchg_enabled;
Heiko Carstens03b8c7b2014-03-02 13:09:47 +0100182#endif
Thomas Gleixnera0c1e902008-02-23 15:23:57 -0800183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/*
Darren Hartb41277d2010-11-08 13:10:09 -0800185 * Futex flags used to encode options to functions and preserve them across
186 * restarts.
187 */
Thomas Gleixner784bdf32016-07-29 16:32:30 +0200188#ifdef CONFIG_MMU
189# define FLAGS_SHARED 0x01
190#else
191/*
192 * NOMMU does not have per process address space. Let the compiler optimize
193 * code away.
194 */
195# define FLAGS_SHARED 0x00
196#endif
Darren Hartb41277d2010-11-08 13:10:09 -0800197#define FLAGS_CLOCKRT 0x02
198#define FLAGS_HAS_TIMEOUT 0x04
199
200/*
Ingo Molnarc87e2832006-06-27 02:54:58 -0700201 * Priority Inheritance state:
202 */
203struct futex_pi_state {
204 /*
205 * list of 'owned' pi_state instances - these have to be
206 * cleaned up in do_exit() if the task exits prematurely:
207 */
208 struct list_head list;
209
210 /*
211 * The PI object:
212 */
213 struct rt_mutex pi_mutex;
214
215 struct task_struct *owner;
Elena Reshetova49262de2019-02-05 14:24:27 +0200216 refcount_t refcount;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700217
218 union futex_key key;
Kees Cook3859a272016-10-28 01:22:25 -0700219} __randomize_layout;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700220
Darren Hartd8d88fb2009-09-21 22:30:30 -0700221/**
222 * struct futex_q - The hashed futex queue entry, one per waiting task
Randy Dunlapfb62db22010-10-13 11:02:34 -0700223 * @list: priority-sorted list of tasks waiting on this futex
Darren Hartd8d88fb2009-09-21 22:30:30 -0700224 * @task: the task waiting on the futex
225 * @lock_ptr: the hash bucket lock
226 * @key: the key the futex is hashed on
227 * @pi_state: optional priority inheritance state
228 * @rt_waiter: rt_waiter storage for use with requeue_pi
229 * @requeue_pi_key: the requeue_pi target futex key
230 * @bitset: bitset for the optional bitmasked wakeup
231 *
Ingo Molnarac6424b2017-06-20 12:06:13 +0200232 * We use this hashed waitqueue, instead of a normal wait_queue_entry_t, so
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 * we can wake only the relevant ones (hashed queues may be shared).
234 *
235 * A futex_q has a woken state, just like tasks have TASK_RUNNING.
Pierre Peifferec92d082007-05-09 02:35:00 -0700236 * It is considered woken when plist_node_empty(&q->list) || q->lock_ptr == 0.
Randy Dunlapfb62db22010-10-13 11:02:34 -0700237 * The order of wakeup is always to make the first condition true, then
Darren Hartd8d88fb2009-09-21 22:30:30 -0700238 * the second.
239 *
240 * PI futexes are typically woken before they are removed from the hash list via
241 * the rt_mutex code. See unqueue_me_pi().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 */
243struct futex_q {
Pierre Peifferec92d082007-05-09 02:35:00 -0700244 struct plist_node list;
Darren Hartd8d88fb2009-09-21 22:30:30 -0700245
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +0200246 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 spinlock_t *lock_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 union futex_key key;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700249 struct futex_pi_state *pi_state;
Darren Hart52400ba2009-04-03 13:40:49 -0700250 struct rt_mutex_waiter *rt_waiter;
Darren Hart84bc4af2009-08-13 17:36:53 -0700251 union futex_key *requeue_pi_key;
Thomas Gleixnercd689982008-02-01 17:45:14 +0100252 u32 bitset;
Kees Cook3859a272016-10-28 01:22:25 -0700253} __randomize_layout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Darren Hart5bdb05f2010-11-08 13:40:28 -0800255static const struct futex_q futex_q_init = {
256 /* list gets initialized in queue_me()*/
257 .key = FUTEX_KEY_INIT,
258 .bitset = FUTEX_BITSET_MATCH_ANY
259};
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/*
Darren Hartb2d09942009-03-12 00:55:37 -0700262 * Hash buckets are shared by all the futex_keys that hash to the same
263 * location. Each key may have multiple futex_q structures, one for each task
264 * waiting on a futex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 */
266struct futex_hash_bucket {
Linus Torvalds11d46162014-03-20 22:11:17 -0700267 atomic_t waiters;
Pierre Peifferec92d082007-05-09 02:35:00 -0700268 spinlock_t lock;
269 struct plist_head chain;
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -0800270} ____cacheline_aligned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Rasmus Villemoesac742d32015-09-09 23:36:40 +0200272/*
273 * The base of the bucket array and its size are always used together
274 * (after initialization only in hash_futex()), so ensure that they
275 * reside in the same cacheline.
276 */
277static struct {
278 struct futex_hash_bucket *queues;
279 unsigned long hashsize;
280} __futex_data __read_mostly __aligned(2*sizeof(long));
281#define futex_queues (__futex_data.queues)
282#define futex_hashsize (__futex_data.hashsize)
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -0800283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Davidlohr Buesoab51fba2015-06-29 23:26:02 -0700285/*
286 * Fault injections for futexes.
287 */
288#ifdef CONFIG_FAIL_FUTEX
289
290static struct {
291 struct fault_attr attr;
292
Viresh Kumar621a5f72015-09-26 15:04:07 -0700293 bool ignore_private;
Davidlohr Buesoab51fba2015-06-29 23:26:02 -0700294} fail_futex = {
295 .attr = FAULT_ATTR_INITIALIZER,
Viresh Kumar621a5f72015-09-26 15:04:07 -0700296 .ignore_private = false,
Davidlohr Buesoab51fba2015-06-29 23:26:02 -0700297};
298
299static int __init setup_fail_futex(char *str)
300{
301 return setup_fault_attr(&fail_futex.attr, str);
302}
303__setup("fail_futex=", setup_fail_futex);
304
kbuild test robot5d285a72015-07-21 01:40:45 +0800305static bool should_fail_futex(bool fshared)
Davidlohr Buesoab51fba2015-06-29 23:26:02 -0700306{
307 if (fail_futex.ignore_private && !fshared)
308 return false;
309
310 return should_fail(&fail_futex.attr, 1);
311}
312
313#ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
314
315static int __init fail_futex_debugfs(void)
316{
317 umode_t mode = S_IFREG | S_IRUSR | S_IWUSR;
318 struct dentry *dir;
319
320 dir = fault_create_debugfs_attr("fail_futex", NULL,
321 &fail_futex.attr);
322 if (IS_ERR(dir))
323 return PTR_ERR(dir);
324
Greg Kroah-Hartman0365aeb2019-01-22 16:21:39 +0100325 debugfs_create_bool("ignore-private", mode, dir,
326 &fail_futex.ignore_private);
Davidlohr Buesoab51fba2015-06-29 23:26:02 -0700327 return 0;
328}
329
330late_initcall(fail_futex_debugfs);
331
332#endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */
333
334#else
335static inline bool should_fail_futex(bool fshared)
336{
337 return false;
338}
339#endif /* CONFIG_FAIL_FUTEX */
340
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800341static inline void futex_get_mm(union futex_key *key)
342{
Vegard Nossumf1f10072017-02-27 14:30:07 -0800343 mmgrab(key->private.mm);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800344 /*
345 * Ensure futex_get_mm() implies a full barrier such that
346 * get_futex_key() implies a full barrier. This is relied upon
Davidlohr Bueso8ad7b372016-02-09 11:15:13 -0800347 * as smp_mb(); (B), see the ordering comment above.
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800348 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100349 smp_mb__after_atomic();
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800350}
351
Linus Torvalds11d46162014-03-20 22:11:17 -0700352/*
353 * Reflects a new waiter being added to the waitqueue.
354 */
355static inline void hb_waiters_inc(struct futex_hash_bucket *hb)
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800356{
357#ifdef CONFIG_SMP
Linus Torvalds11d46162014-03-20 22:11:17 -0700358 atomic_inc(&hb->waiters);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800359 /*
Linus Torvalds11d46162014-03-20 22:11:17 -0700360 * Full barrier (A), see the ordering comment above.
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800361 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100362 smp_mb__after_atomic();
Linus Torvalds11d46162014-03-20 22:11:17 -0700363#endif
364}
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800365
Linus Torvalds11d46162014-03-20 22:11:17 -0700366/*
367 * Reflects a waiter being removed from the waitqueue by wakeup
368 * paths.
369 */
370static inline void hb_waiters_dec(struct futex_hash_bucket *hb)
371{
372#ifdef CONFIG_SMP
373 atomic_dec(&hb->waiters);
374#endif
375}
376
377static inline int hb_waiters_pending(struct futex_hash_bucket *hb)
378{
379#ifdef CONFIG_SMP
380 return atomic_read(&hb->waiters);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800381#else
Linus Torvalds11d46162014-03-20 22:11:17 -0700382 return 1;
Davidlohr Buesob0c29f72014-01-12 15:31:25 -0800383#endif
384}
385
Thomas Gleixnere8b61b32016-06-01 10:43:29 +0200386/**
387 * hash_futex - Return the hash bucket in the global hash
388 * @key: Pointer to the futex key for which the hash is calculated
389 *
390 * We hash on the keys returned from get_futex_key (see below) and return the
391 * corresponding hash bucket in the global hash.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 */
393static struct futex_hash_bucket *hash_futex(union futex_key *key)
394{
395 u32 hash = jhash2((u32*)&key->both.word,
396 (sizeof(key->both.word)+sizeof(key->both.ptr))/4,
397 key->both.offset);
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -0800398 return &futex_queues[hash & (futex_hashsize - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Thomas Gleixnere8b61b32016-06-01 10:43:29 +0200401
402/**
403 * match_futex - Check whether two futex keys are equal
404 * @key1: Pointer to key1
405 * @key2: Pointer to key2
406 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 * Return 1 if two futex_keys are equal, 0 otherwise.
408 */
409static inline int match_futex(union futex_key *key1, union futex_key *key2)
410{
Darren Hart2bc87202009-10-14 10:12:39 -0700411 return (key1 && key2
412 && key1->both.word == key2->both.word
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 && key1->both.ptr == key2->both.ptr
414 && key1->both.offset == key2->both.offset);
415}
416
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200417/*
418 * Take a reference to the resource addressed by a key.
419 * Can be called while holding spinlocks.
420 *
421 */
422static void get_futex_key_refs(union futex_key *key)
423{
424 if (!key->both.ptr)
425 return;
426
Thomas Gleixner784bdf32016-07-29 16:32:30 +0200427 /*
428 * On MMU less systems futexes are always "private" as there is no per
429 * process address space. We need the smp wmb nevertheless - yes,
430 * arch/blackfin has MMU less SMP ...
431 */
432 if (!IS_ENABLED(CONFIG_MMU)) {
433 smp_mb(); /* explicit smp_mb(); (B) */
434 return;
435 }
436
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200437 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
438 case FUT_OFF_INODE:
Davidlohr Bueso8ad7b372016-02-09 11:15:13 -0800439 ihold(key->shared.inode); /* implies smp_mb(); (B) */
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200440 break;
441 case FUT_OFF_MMSHARED:
Davidlohr Bueso8ad7b372016-02-09 11:15:13 -0800442 futex_get_mm(key); /* implies smp_mb(); (B) */
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200443 break;
Catalin Marinas76835b0e2014-10-17 17:38:49 +0100444 default:
Davidlohr Bueso993b2ff2014-10-23 20:27:00 -0700445 /*
446 * Private futexes do not hold reference on an inode or
447 * mm, therefore the only purpose of calling get_futex_key_refs
448 * is because we need the barrier for the lockless waiter check.
449 */
Davidlohr Bueso8ad7b372016-02-09 11:15:13 -0800450 smp_mb(); /* explicit smp_mb(); (B) */
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200451 }
452}
453
454/*
455 * Drop a reference to the resource addressed by a key.
Davidlohr Bueso993b2ff2014-10-23 20:27:00 -0700456 * The hash bucket spinlock must not be held. This is
457 * a no-op for private futexes, see comment in the get
458 * counterpart.
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200459 */
460static void drop_futex_key_refs(union futex_key *key)
461{
Darren Hart90621c42008-12-29 19:43:21 -0800462 if (!key->both.ptr) {
463 /* If we're here then we tried to put a key we failed to get */
464 WARN_ON_ONCE(1);
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200465 return;
Darren Hart90621c42008-12-29 19:43:21 -0800466 }
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200467
Thomas Gleixner784bdf32016-07-29 16:32:30 +0200468 if (!IS_ENABLED(CONFIG_MMU))
469 return;
470
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200471 switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) {
472 case FUT_OFF_INODE:
473 iput(key->shared.inode);
474 break;
475 case FUT_OFF_MMSHARED:
476 mmdrop(key->private.mm);
477 break;
478 }
479}
480
Linus Torvalds96d4f262019-01-03 18:57:57 -0800481enum futex_access {
482 FUTEX_READ,
483 FUTEX_WRITE
484};
485
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700486/**
Waiman Long5ca584d2019-05-28 12:03:45 -0400487 * futex_setup_timer - set up the sleeping hrtimer.
488 * @time: ptr to the given timeout value
489 * @timeout: the hrtimer_sleeper structure to be set up
490 * @flags: futex flags
491 * @range_ns: optional range in ns
492 *
493 * Return: Initialized hrtimer_sleeper structure or NULL if no timeout
494 * value given
495 */
496static inline struct hrtimer_sleeper *
497futex_setup_timer(ktime_t *time, struct hrtimer_sleeper *timeout,
498 int flags, u64 range_ns)
499{
500 if (!time)
501 return NULL;
502
503 hrtimer_init_on_stack(&timeout->timer, (flags & FLAGS_CLOCKRT) ?
504 CLOCK_REALTIME : CLOCK_MONOTONIC,
505 HRTIMER_MODE_ABS);
506 hrtimer_init_sleeper(timeout, current);
507
508 /*
509 * If range_ns is 0, calling hrtimer_set_expires_range_ns() is
510 * effectively the same as calling hrtimer_set_expires().
511 */
512 hrtimer_set_expires_range_ns(&timeout->timer, *time, range_ns);
513
514 return timeout;
515}
516
517/**
Darren Hartd96ee562009-09-21 22:30:22 -0700518 * get_futex_key() - Get parameters which are the keys for a futex
519 * @uaddr: virtual address of the futex
520 * @fshared: 0 for a PROCESS_PRIVATE futex, 1 for PROCESS_SHARED
521 * @key: address where result is stored.
Linus Torvalds96d4f262019-01-03 18:57:57 -0800522 * @rw: mapping needs to be read/write (values: FUTEX_READ,
523 * FUTEX_WRITE)
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700524 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -0800525 * Return: a negative error code or 0
526 *
Mauro Carvalho Chehab7b4ff1a2017-05-11 10:17:45 -0300527 * The key words are stored in @key on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 *
Al Viro6131ffa2013-02-27 16:59:05 -0500529 * For shared mappings, it's (page->index, file_inode(vma->vm_file),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * offset_within_page). For private mappings, it's (uaddr, current->mm).
531 * We can usually work out the index without swapping in the page.
532 *
Darren Hartb2d09942009-03-12 00:55:37 -0700533 * lock_page() might sleep, the caller should not hold a spinlock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 */
Thomas Gleixner64d13042009-05-18 21:20:10 +0200535static int
Linus Torvalds96d4f262019-01-03 18:57:57 -0800536get_futex_key(u32 __user *uaddr, int fshared, union futex_key *key, enum futex_access rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
Ingo Molnare2970f22006-06-27 02:54:47 -0700538 unsigned long address = (unsigned long)uaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 struct mm_struct *mm = current->mm;
Mel Gorman077fa7a2016-06-08 14:25:22 +0100540 struct page *page, *tail;
Kirill A. Shutemov14d27ab2016-01-15 16:53:00 -0800541 struct address_space *mapping;
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500542 int err, ro = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 /*
545 * The futex address must be "naturally" aligned.
546 */
Ingo Molnare2970f22006-06-27 02:54:47 -0700547 key->both.offset = address % PAGE_SIZE;
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700548 if (unlikely((address % sizeof(u32)) != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return -EINVAL;
Ingo Molnare2970f22006-06-27 02:54:47 -0700550 address -= key->both.offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Linus Torvalds96d4f262019-01-03 18:57:57 -0800552 if (unlikely(!access_ok(uaddr, sizeof(u32))))
Linus Torvalds5cdec2d2013-12-12 09:53:51 -0800553 return -EFAULT;
554
Davidlohr Buesoab51fba2015-06-29 23:26:02 -0700555 if (unlikely(should_fail_futex(fshared)))
556 return -EFAULT;
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /*
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700559 * PROCESS_PRIVATE futexes are fast.
560 * As the mm cannot disappear under us and the 'key' only needs
561 * virtual address, we dont even have to find the underlying vma.
562 * Note : We do have to check 'uaddr' is a valid user address,
563 * but access_ok() should be faster than find_vma()
564 */
565 if (!fshared) {
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700566 key->private.mm = mm;
567 key->private.address = address;
Davidlohr Bueso8ad7b372016-02-09 11:15:13 -0800568 get_futex_key_refs(key); /* implies smp_mb(); (B) */
Eric Dumazet34f01cc2007-05-09 02:35:04 -0700569 return 0;
570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200572again:
Davidlohr Buesoab51fba2015-06-29 23:26:02 -0700573 /* Ignore any VERIFY_READ mapping (futex common case) */
574 if (unlikely(should_fail_futex(fshared)))
575 return -EFAULT;
576
Ira Weiny73b01402019-05-13 17:17:11 -0700577 err = get_user_pages_fast(address, 1, FOLL_WRITE, &page);
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500578 /*
579 * If write access is not required (eg. FUTEX_WAIT), try
580 * and get read-only access.
581 */
Linus Torvalds96d4f262019-01-03 18:57:57 -0800582 if (err == -EFAULT && rw == FUTEX_READ) {
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500583 err = get_user_pages_fast(address, 1, 0, &page);
584 ro = 1;
585 }
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200586 if (err < 0)
587 return err;
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500588 else
589 err = 0;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200590
Mel Gorman65d8fc72016-02-09 11:15:14 -0800591 /*
592 * The treatment of mapping from this point on is critical. The page
593 * lock protects many things but in this context the page lock
594 * stabilizes mapping, prevents inode freeing in the shared
595 * file-backed region case and guards against movement to swap cache.
596 *
597 * Strictly speaking the page lock is not needed in all cases being
598 * considered here and page lock forces unnecessarily serialization
599 * From this point on, mapping will be re-verified if necessary and
600 * page lock will be acquired only if it is unavoidable
Mel Gorman077fa7a2016-06-08 14:25:22 +0100601 *
602 * Mapping checks require the head page for any compound page so the
603 * head page and mapping is looked up now. For anonymous pages, it
604 * does not matter if the page splits in the future as the key is
605 * based on the address. For filesystem-backed pages, the tail is
606 * required as the index of the page determines the key. For
607 * base pages, there is no tail page and tail == page.
Mel Gorman65d8fc72016-02-09 11:15:14 -0800608 */
Mel Gorman077fa7a2016-06-08 14:25:22 +0100609 tail = page;
Mel Gorman65d8fc72016-02-09 11:15:14 -0800610 page = compound_head(page);
611 mapping = READ_ONCE(page->mapping);
612
Hugh Dickinse6780f72011-12-31 11:44:01 -0800613 /*
Kirill A. Shutemov14d27ab2016-01-15 16:53:00 -0800614 * If page->mapping is NULL, then it cannot be a PageAnon
Hugh Dickinse6780f72011-12-31 11:44:01 -0800615 * page; but it might be the ZERO_PAGE or in the gate area or
616 * in a special mapping (all cases which we are happy to fail);
617 * or it may have been a good file page when get_user_pages_fast
618 * found it, but truncated or holepunched or subjected to
619 * invalidate_complete_page2 before we got the page lock (also
620 * cases which we are happy to fail). And we hold a reference,
621 * so refcount care in invalidate_complete_page's remove_mapping
622 * prevents drop_caches from setting mapping to NULL beneath us.
623 *
624 * The case we do have to guard against is when memory pressure made
625 * shmem_writepage move it from filecache to swapcache beneath us:
Kirill A. Shutemov14d27ab2016-01-15 16:53:00 -0800626 * an unlikely race, but we do need to retry for page->mapping.
Hugh Dickinse6780f72011-12-31 11:44:01 -0800627 */
Mel Gorman65d8fc72016-02-09 11:15:14 -0800628 if (unlikely(!mapping)) {
629 int shmem_swizzled;
630
631 /*
632 * Page lock is required to identify which special case above
633 * applies. If this is really a shmem page then the page lock
634 * will prevent unexpected transitions.
635 */
636 lock_page(page);
637 shmem_swizzled = PageSwapCache(page) || page->mapping;
Kirill A. Shutemov14d27ab2016-01-15 16:53:00 -0800638 unlock_page(page);
639 put_page(page);
Mel Gorman65d8fc72016-02-09 11:15:14 -0800640
Hugh Dickinse6780f72011-12-31 11:44:01 -0800641 if (shmem_swizzled)
642 goto again;
Mel Gorman65d8fc72016-02-09 11:15:14 -0800643
Hugh Dickinse6780f72011-12-31 11:44:01 -0800644 return -EFAULT;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 /*
648 * Private mappings are handled in a simple way.
649 *
Mel Gorman65d8fc72016-02-09 11:15:14 -0800650 * If the futex key is stored on an anonymous page, then the associated
651 * object is the mm which is implicitly pinned by the calling process.
652 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 * NOTE: When userspace waits on a MAP_SHARED mapping, even if
654 * it's a read-only handle, it's expected that futexes attach to
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200655 * the object not the particular process.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
Kirill A. Shutemov14d27ab2016-01-15 16:53:00 -0800657 if (PageAnon(page)) {
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500658 /*
659 * A RO anonymous page will never change and thus doesn't make
660 * sense for futex operations.
661 */
Davidlohr Buesoab51fba2015-06-29 23:26:02 -0700662 if (unlikely(should_fail_futex(fshared)) || ro) {
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500663 err = -EFAULT;
664 goto out;
665 }
666
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200667 key->both.offset |= FUT_OFF_MMSHARED; /* ref taken on mm */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 key->private.mm = mm;
Ingo Molnare2970f22006-06-27 02:54:47 -0700669 key->private.address = address;
Mel Gorman65d8fc72016-02-09 11:15:14 -0800670
671 get_futex_key_refs(key); /* implies smp_mb(); (B) */
672
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200673 } else {
Mel Gorman65d8fc72016-02-09 11:15:14 -0800674 struct inode *inode;
675
676 /*
677 * The associated futex object in this case is the inode and
678 * the page->mapping must be traversed. Ordinarily this should
679 * be stabilised under page lock but it's not strictly
680 * necessary in this case as we just want to pin the inode, not
681 * update the radix tree or anything like that.
682 *
683 * The RCU read lock is taken as the inode is finally freed
684 * under RCU. If the mapping still matches expectations then the
685 * mapping->host can be safely accessed as being a valid inode.
686 */
687 rcu_read_lock();
688
689 if (READ_ONCE(page->mapping) != mapping) {
690 rcu_read_unlock();
691 put_page(page);
692
693 goto again;
694 }
695
696 inode = READ_ONCE(mapping->host);
697 if (!inode) {
698 rcu_read_unlock();
699 put_page(page);
700
701 goto again;
702 }
703
704 /*
705 * Take a reference unless it is about to be freed. Previously
706 * this reference was taken by ihold under the page lock
707 * pinning the inode in place so i_lock was unnecessary. The
708 * only way for this check to fail is if the inode was
Mel Gorman48fb6f42017-08-09 08:27:11 +0100709 * truncated in parallel which is almost certainly an
710 * application bug. In such a case, just retry.
Mel Gorman65d8fc72016-02-09 11:15:14 -0800711 *
712 * We are not calling into get_futex_key_refs() in file-backed
713 * cases, therefore a successful atomic_inc return below will
714 * guarantee that get_futex_key() will still imply smp_mb(); (B).
715 */
Mel Gorman48fb6f42017-08-09 08:27:11 +0100716 if (!atomic_inc_not_zero(&inode->i_count)) {
Mel Gorman65d8fc72016-02-09 11:15:14 -0800717 rcu_read_unlock();
718 put_page(page);
719
720 goto again;
721 }
722
723 /* Should be impossible but lets be paranoid for now */
724 if (WARN_ON_ONCE(inode->i_mapping != mapping)) {
725 err = -EFAULT;
726 rcu_read_unlock();
727 iput(inode);
728
729 goto out;
730 }
731
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200732 key->both.offset |= FUT_OFF_INODE; /* inode-based key */
Mel Gorman65d8fc72016-02-09 11:15:14 -0800733 key->shared.inode = inode;
Mel Gorman077fa7a2016-06-08 14:25:22 +0100734 key->shared.pgoff = basepage_index(tail);
Mel Gorman65d8fc72016-02-09 11:15:14 -0800735 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
737
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500738out:
Kirill A. Shutemov14d27ab2016-01-15 16:53:00 -0800739 put_page(page);
Shawn Bohrer9ea71502011-06-30 11:21:32 -0500740 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
Thomas Gleixnerae791a22010-11-10 13:30:36 +0100743static inline void put_futex_key(union futex_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200745 drop_futex_key_refs(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
Darren Hartd96ee562009-09-21 22:30:22 -0700748/**
749 * fault_in_user_writeable() - Fault in user address and verify RW access
Thomas Gleixnerd0725992009-06-11 23:15:43 +0200750 * @uaddr: pointer to faulting user space address
751 *
752 * Slow path to fixup the fault we just took in the atomic write
753 * access to @uaddr.
754 *
Randy Dunlapfb62db22010-10-13 11:02:34 -0700755 * We have no generic implementation of a non-destructive write to the
Thomas Gleixnerd0725992009-06-11 23:15:43 +0200756 * user address. We know that we faulted in the atomic pagefault
757 * disabled section so we can as well avoid the #PF overhead by
758 * calling get_user_pages() right away.
759 */
760static int fault_in_user_writeable(u32 __user *uaddr)
761{
Andi Kleen722d0172009-12-08 13:19:42 +0100762 struct mm_struct *mm = current->mm;
763 int ret;
764
765 down_read(&mm->mmap_sem);
Benjamin Herrenschmidt2efaca92011-07-25 17:12:32 -0700766 ret = fixup_user_fault(current, mm, (unsigned long)uaddr,
Dominik Dingel4a9e1cd2016-01-15 16:57:04 -0800767 FAULT_FLAG_WRITE, NULL);
Andi Kleen722d0172009-12-08 13:19:42 +0100768 up_read(&mm->mmap_sem);
769
Thomas Gleixnerd0725992009-06-11 23:15:43 +0200770 return ret < 0 ? ret : 0;
771}
772
Darren Hart4b1c4862009-04-03 13:39:42 -0700773/**
774 * futex_top_waiter() - Return the highest priority waiter on a futex
Darren Hartd96ee562009-09-21 22:30:22 -0700775 * @hb: the hash bucket the futex_q's reside in
776 * @key: the futex key (to distinguish it from other futex futex_q's)
Darren Hart4b1c4862009-04-03 13:39:42 -0700777 *
778 * Must be called with the hb lock held.
779 */
780static struct futex_q *futex_top_waiter(struct futex_hash_bucket *hb,
781 union futex_key *key)
782{
783 struct futex_q *this;
784
785 plist_for_each_entry(this, &hb->chain, list) {
786 if (match_futex(&this->key, key))
787 return this;
788 }
789 return NULL;
790}
791
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800792static int cmpxchg_futex_value_locked(u32 *curval, u32 __user *uaddr,
793 u32 uval, u32 newval)
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700794{
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800795 int ret;
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700796
797 pagefault_disable();
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800798 ret = futex_atomic_cmpxchg_inatomic(curval, uaddr, uval, newval);
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700799 pagefault_enable();
800
Michel Lespinasse37a9d912011-03-10 18:48:51 -0800801 return ret;
Thomas Gleixner36cf3b52007-07-15 23:41:20 -0700802}
803
804static int get_futex_value_locked(u32 *dest, u32 __user *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
806 int ret;
807
Peter Zijlstraa8663742006-12-06 20:32:20 -0800808 pagefault_disable();
Linus Torvaldsbd28b142016-05-22 17:21:27 -0700809 ret = __get_user(*dest, from);
Peter Zijlstraa8663742006-12-06 20:32:20 -0800810 pagefault_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 return ret ? -EFAULT : 0;
813}
814
Ingo Molnarc87e2832006-06-27 02:54:58 -0700815
816/*
817 * PI code:
818 */
819static int refill_pi_state_cache(void)
820{
821 struct futex_pi_state *pi_state;
822
823 if (likely(current->pi_state_cache))
824 return 0;
825
Burman Yan4668edc2006-12-06 20:38:51 -0800826 pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700827
828 if (!pi_state)
829 return -ENOMEM;
830
Ingo Molnarc87e2832006-06-27 02:54:58 -0700831 INIT_LIST_HEAD(&pi_state->list);
832 /* pi_mutex gets initialized later */
833 pi_state->owner = NULL;
Elena Reshetova49262de2019-02-05 14:24:27 +0200834 refcount_set(&pi_state->refcount, 1);
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200835 pi_state->key = FUTEX_KEY_INIT;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700836
837 current->pi_state_cache = pi_state;
838
839 return 0;
840}
841
Peter Zijlstrabf92cf32017-03-22 11:35:53 +0100842static struct futex_pi_state *alloc_pi_state(void)
Ingo Molnarc87e2832006-06-27 02:54:58 -0700843{
844 struct futex_pi_state *pi_state = current->pi_state_cache;
845
846 WARN_ON(!pi_state);
847 current->pi_state_cache = NULL;
848
849 return pi_state;
850}
851
Peter Zijlstrabf92cf32017-03-22 11:35:53 +0100852static void get_pi_state(struct futex_pi_state *pi_state)
853{
Elena Reshetova49262de2019-02-05 14:24:27 +0200854 WARN_ON_ONCE(!refcount_inc_not_zero(&pi_state->refcount));
Peter Zijlstrabf92cf32017-03-22 11:35:53 +0100855}
856
Brian Silverman30a6b802014-10-25 20:20:37 -0400857/*
Thomas Gleixner29e9ee52015-12-19 20:07:39 +0000858 * Drops a reference to the pi_state object and frees or caches it
859 * when the last reference is gone.
Brian Silverman30a6b802014-10-25 20:20:37 -0400860 */
Thomas Gleixner29e9ee52015-12-19 20:07:39 +0000861static void put_pi_state(struct futex_pi_state *pi_state)
Ingo Molnarc87e2832006-06-27 02:54:58 -0700862{
Brian Silverman30a6b802014-10-25 20:20:37 -0400863 if (!pi_state)
864 return;
865
Elena Reshetova49262de2019-02-05 14:24:27 +0200866 if (!refcount_dec_and_test(&pi_state->refcount))
Ingo Molnarc87e2832006-06-27 02:54:58 -0700867 return;
868
869 /*
870 * If pi_state->owner is NULL, the owner is most probably dying
871 * and has cleaned up the pi_state already
872 */
873 if (pi_state->owner) {
Peter Zijlstrac74aef22017-09-22 17:48:06 +0200874 struct task_struct *owner;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700875
Peter Zijlstrac74aef22017-09-22 17:48:06 +0200876 raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock);
877 owner = pi_state->owner;
878 if (owner) {
879 raw_spin_lock(&owner->pi_lock);
880 list_del_init(&pi_state->list);
881 raw_spin_unlock(&owner->pi_lock);
882 }
883 rt_mutex_proxy_unlock(&pi_state->pi_mutex, owner);
884 raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700885 }
886
Peter Zijlstrac74aef22017-09-22 17:48:06 +0200887 if (current->pi_state_cache) {
Ingo Molnarc87e2832006-06-27 02:54:58 -0700888 kfree(pi_state);
Peter Zijlstrac74aef22017-09-22 17:48:06 +0200889 } else {
Ingo Molnarc87e2832006-06-27 02:54:58 -0700890 /*
891 * pi_state->list is already empty.
892 * clear pi_state->owner.
893 * refcount is at 0 - put it back to 1.
894 */
895 pi_state->owner = NULL;
Elena Reshetova49262de2019-02-05 14:24:27 +0200896 refcount_set(&pi_state->refcount, 1);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700897 current->pi_state_cache = pi_state;
898 }
899}
900
Nicolas Pitrebc2eecd2017-08-01 00:31:32 -0400901#ifdef CONFIG_FUTEX_PI
902
Ingo Molnarc87e2832006-06-27 02:54:58 -0700903/*
904 * This task is holding PI mutexes at exit time => bad.
905 * Kernel cleans up PI-state, but userspace is likely hosed.
906 * (Robust-futex cleanup is separate and might save the day for userspace.)
907 */
908void exit_pi_state_list(struct task_struct *curr)
909{
Ingo Molnarc87e2832006-06-27 02:54:58 -0700910 struct list_head *next, *head = &curr->pi_state_list;
911 struct futex_pi_state *pi_state;
Ingo Molnar627371d2006-07-29 05:16:20 +0200912 struct futex_hash_bucket *hb;
Peter Zijlstra38d47c12008-09-26 19:32:20 +0200913 union futex_key key = FUTEX_KEY_INIT;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700914
Thomas Gleixnera0c1e902008-02-23 15:23:57 -0800915 if (!futex_cmpxchg_enabled)
916 return;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700917 /*
918 * We are a ZOMBIE and nobody can enqueue itself on
919 * pi_state_list anymore, but we have to be careful
Ingo Molnar627371d2006-07-29 05:16:20 +0200920 * versus waiters unqueueing themselves:
Ingo Molnarc87e2832006-06-27 02:54:58 -0700921 */
Thomas Gleixner1d615482009-11-17 14:54:03 +0100922 raw_spin_lock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700923 while (!list_empty(head)) {
Ingo Molnarc87e2832006-06-27 02:54:58 -0700924 next = head->next;
925 pi_state = list_entry(next, struct futex_pi_state, list);
926 key = pi_state->key;
Ingo Molnar627371d2006-07-29 05:16:20 +0200927 hb = hash_futex(&key);
Peter Zijlstra153fbd12017-10-31 11:18:53 +0100928
929 /*
930 * We can race against put_pi_state() removing itself from the
931 * list (a waiter going away). put_pi_state() will first
932 * decrement the reference count and then modify the list, so
933 * its possible to see the list entry but fail this reference
934 * acquire.
935 *
936 * In that case; drop the locks to let put_pi_state() make
937 * progress and retry the loop.
938 */
Elena Reshetova49262de2019-02-05 14:24:27 +0200939 if (!refcount_inc_not_zero(&pi_state->refcount)) {
Peter Zijlstra153fbd12017-10-31 11:18:53 +0100940 raw_spin_unlock_irq(&curr->pi_lock);
941 cpu_relax();
942 raw_spin_lock_irq(&curr->pi_lock);
943 continue;
944 }
Thomas Gleixner1d615482009-11-17 14:54:03 +0100945 raw_spin_unlock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700946
Ingo Molnarc87e2832006-06-27 02:54:58 -0700947 spin_lock(&hb->lock);
Peter Zijlstrac74aef22017-09-22 17:48:06 +0200948 raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock);
949 raw_spin_lock(&curr->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +0200950 /*
951 * We dropped the pi-lock, so re-check whether this
952 * task still owns the PI-state:
953 */
Ingo Molnarc87e2832006-06-27 02:54:58 -0700954 if (head->next != next) {
Peter Zijlstra153fbd12017-10-31 11:18:53 +0100955 /* retain curr->pi_lock for the loop invariant */
Peter Zijlstrac74aef22017-09-22 17:48:06 +0200956 raw_spin_unlock(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700957 spin_unlock(&hb->lock);
Peter Zijlstra153fbd12017-10-31 11:18:53 +0100958 put_pi_state(pi_state);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700959 continue;
960 }
961
Ingo Molnarc87e2832006-06-27 02:54:58 -0700962 WARN_ON(pi_state->owner != curr);
Ingo Molnar627371d2006-07-29 05:16:20 +0200963 WARN_ON(list_empty(&pi_state->list));
964 list_del_init(&pi_state->list);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700965 pi_state->owner = NULL;
Ingo Molnarc87e2832006-06-27 02:54:58 -0700966
Peter Zijlstra153fbd12017-10-31 11:18:53 +0100967 raw_spin_unlock(&curr->pi_lock);
Peter Zijlstrac74aef22017-09-22 17:48:06 +0200968 raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700969 spin_unlock(&hb->lock);
970
Peter Zijlstra16ffa122017-03-22 11:35:55 +0100971 rt_mutex_futex_unlock(&pi_state->pi_mutex);
972 put_pi_state(pi_state);
973
Thomas Gleixner1d615482009-11-17 14:54:03 +0100974 raw_spin_lock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700975 }
Thomas Gleixner1d615482009-11-17 14:54:03 +0100976 raw_spin_unlock_irq(&curr->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -0700977}
978
Nicolas Pitrebc2eecd2017-08-01 00:31:32 -0400979#endif
980
Thomas Gleixner54a21782014-06-03 12:27:08 +0000981/*
982 * We need to check the following states:
983 *
984 * Waiter | pi_state | pi->owner | uTID | uODIED | ?
985 *
986 * [1] NULL | --- | --- | 0 | 0/1 | Valid
987 * [2] NULL | --- | --- | >0 | 0/1 | Valid
988 *
989 * [3] Found | NULL | -- | Any | 0/1 | Invalid
990 *
991 * [4] Found | Found | NULL | 0 | 1 | Valid
992 * [5] Found | Found | NULL | >0 | 1 | Invalid
993 *
994 * [6] Found | Found | task | 0 | 1 | Valid
995 *
996 * [7] Found | Found | NULL | Any | 0 | Invalid
997 *
998 * [8] Found | Found | task | ==taskTID | 0/1 | Valid
999 * [9] Found | Found | task | 0 | 0 | Invalid
1000 * [10] Found | Found | task | !=taskTID | 0/1 | Invalid
1001 *
1002 * [1] Indicates that the kernel can acquire the futex atomically. We
1003 * came came here due to a stale FUTEX_WAITERS/FUTEX_OWNER_DIED bit.
1004 *
1005 * [2] Valid, if TID does not belong to a kernel thread. If no matching
1006 * thread is found then it indicates that the owner TID has died.
1007 *
1008 * [3] Invalid. The waiter is queued on a non PI futex
1009 *
1010 * [4] Valid state after exit_robust_list(), which sets the user space
1011 * value to FUTEX_WAITERS | FUTEX_OWNER_DIED.
1012 *
1013 * [5] The user space value got manipulated between exit_robust_list()
1014 * and exit_pi_state_list()
1015 *
1016 * [6] Valid state after exit_pi_state_list() which sets the new owner in
1017 * the pi_state but cannot access the user space value.
1018 *
1019 * [7] pi_state->owner can only be NULL when the OWNER_DIED bit is set.
1020 *
1021 * [8] Owner and user space value match
1022 *
1023 * [9] There is no transient state which sets the user space TID to 0
1024 * except exit_robust_list(), but this is indicated by the
1025 * FUTEX_OWNER_DIED bit. See [4]
1026 *
1027 * [10] There is no transient state which leaves owner and user space
1028 * TID out of sync.
Peter Zijlstra734009e2017-03-22 11:35:52 +01001029 *
1030 *
1031 * Serialization and lifetime rules:
1032 *
1033 * hb->lock:
1034 *
1035 * hb -> futex_q, relation
1036 * futex_q -> pi_state, relation
1037 *
1038 * (cannot be raw because hb can contain arbitrary amount
1039 * of futex_q's)
1040 *
1041 * pi_mutex->wait_lock:
1042 *
1043 * {uval, pi_state}
1044 *
1045 * (and pi_mutex 'obviously')
1046 *
1047 * p->pi_lock:
1048 *
1049 * p->pi_state_list -> pi_state->list, relation
1050 *
1051 * pi_state->refcount:
1052 *
1053 * pi_state lifetime
1054 *
1055 *
1056 * Lock order:
1057 *
1058 * hb->lock
1059 * pi_mutex->wait_lock
1060 * p->pi_lock
1061 *
Thomas Gleixner54a21782014-06-03 12:27:08 +00001062 */
Thomas Gleixnere60cbc52014-06-11 20:45:39 +00001063
1064/*
1065 * Validate that the existing waiter has a pi_state and sanity check
1066 * the pi_state against the user space value. If correct, attach to
1067 * it.
1068 */
Peter Zijlstra734009e2017-03-22 11:35:52 +01001069static int attach_to_pi_state(u32 __user *uaddr, u32 uval,
1070 struct futex_pi_state *pi_state,
Thomas Gleixnere60cbc52014-06-11 20:45:39 +00001071 struct futex_pi_state **ps)
1072{
1073 pid_t pid = uval & FUTEX_TID_MASK;
Peter Zijlstra94ffac52017-04-07 09:04:07 +02001074 u32 uval2;
1075 int ret;
Thomas Gleixnere60cbc52014-06-11 20:45:39 +00001076
1077 /*
1078 * Userspace might have messed up non-PI and PI futexes [3]
1079 */
1080 if (unlikely(!pi_state))
1081 return -EINVAL;
1082
Peter Zijlstra734009e2017-03-22 11:35:52 +01001083 /*
1084 * We get here with hb->lock held, and having found a
1085 * futex_top_waiter(). This means that futex_lock_pi() of said futex_q
1086 * has dropped the hb->lock in between queue_me() and unqueue_me_pi(),
1087 * which in turn means that futex_lock_pi() still has a reference on
1088 * our pi_state.
Peter Zijlstra16ffa122017-03-22 11:35:55 +01001089 *
1090 * The waiter holding a reference on @pi_state also protects against
1091 * the unlocked put_pi_state() in futex_unlock_pi(), futex_lock_pi()
1092 * and futex_wait_requeue_pi() as it cannot go to 0 and consequently
1093 * free pi_state before we can take a reference ourselves.
Peter Zijlstra734009e2017-03-22 11:35:52 +01001094 */
Elena Reshetova49262de2019-02-05 14:24:27 +02001095 WARN_ON(!refcount_read(&pi_state->refcount));
Thomas Gleixnere60cbc52014-06-11 20:45:39 +00001096
1097 /*
Peter Zijlstra734009e2017-03-22 11:35:52 +01001098 * Now that we have a pi_state, we can acquire wait_lock
1099 * and do the state validation.
1100 */
1101 raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock);
1102
1103 /*
1104 * Since {uval, pi_state} is serialized by wait_lock, and our current
1105 * uval was read without holding it, it can have changed. Verify it
1106 * still is what we expect it to be, otherwise retry the entire
1107 * operation.
1108 */
1109 if (get_futex_value_locked(&uval2, uaddr))
1110 goto out_efault;
1111
1112 if (uval != uval2)
1113 goto out_eagain;
1114
1115 /*
Thomas Gleixnere60cbc52014-06-11 20:45:39 +00001116 * Handle the owner died case:
1117 */
1118 if (uval & FUTEX_OWNER_DIED) {
1119 /*
1120 * exit_pi_state_list sets owner to NULL and wakes the
1121 * topmost waiter. The task which acquires the
1122 * pi_state->rt_mutex will fixup owner.
1123 */
1124 if (!pi_state->owner) {
1125 /*
1126 * No pi state owner, but the user space TID
1127 * is not 0. Inconsistent state. [5]
1128 */
1129 if (pid)
Peter Zijlstra734009e2017-03-22 11:35:52 +01001130 goto out_einval;
Thomas Gleixnere60cbc52014-06-11 20:45:39 +00001131 /*
1132 * Take a ref on the state and return success. [4]
1133 */
Peter Zijlstra734009e2017-03-22 11:35:52 +01001134 goto out_attach;
Thomas Gleixnere60cbc52014-06-11 20:45:39 +00001135 }
1136
1137 /*
1138 * If TID is 0, then either the dying owner has not
1139 * yet executed exit_pi_state_list() or some waiter
1140 * acquired the rtmutex in the pi state, but did not
1141 * yet fixup the TID in user space.
1142 *
1143 * Take a ref on the state and return success. [6]
1144 */
1145 if (!pid)
Peter Zijlstra734009e2017-03-22 11:35:52 +01001146 goto out_attach;
Thomas Gleixnere60cbc52014-06-11 20:45:39 +00001147 } else {
1148 /*
1149 * If the owner died bit is not set, then the pi_state
1150 * must have an owner. [7]
1151 */
1152 if (!pi_state->owner)
Peter Zijlstra734009e2017-03-22 11:35:52 +01001153 goto out_einval;
Thomas Gleixnere60cbc52014-06-11 20:45:39 +00001154 }
1155
1156 /*
1157 * Bail out if user space manipulated the futex value. If pi
1158 * state exists then the owner TID must be the same as the
1159 * user space TID. [9/10]
1160 */
1161 if (pid != task_pid_vnr(pi_state->owner))
Peter Zijlstra734009e2017-03-22 11:35:52 +01001162 goto out_einval;
1163
1164out_attach:
Peter Zijlstrabf92cf32017-03-22 11:35:53 +01001165 get_pi_state(pi_state);
Peter Zijlstra734009e2017-03-22 11:35:52 +01001166 raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
Thomas Gleixnere60cbc52014-06-11 20:45:39 +00001167 *ps = pi_state;
1168 return 0;
Peter Zijlstra734009e2017-03-22 11:35:52 +01001169
1170out_einval:
1171 ret = -EINVAL;
1172 goto out_error;
1173
1174out_eagain:
1175 ret = -EAGAIN;
1176 goto out_error;
1177
1178out_efault:
1179 ret = -EFAULT;
1180 goto out_error;
1181
1182out_error:
1183 raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
1184 return ret;
Thomas Gleixnere60cbc52014-06-11 20:45:39 +00001185}
1186
Thomas Gleixnerda791a62018-12-10 14:35:14 +01001187static int handle_exit_race(u32 __user *uaddr, u32 uval,
1188 struct task_struct *tsk)
1189{
1190 u32 uval2;
1191
1192 /*
1193 * If PF_EXITPIDONE is not yet set, then try again.
1194 */
1195 if (tsk && !(tsk->flags & PF_EXITPIDONE))
1196 return -EAGAIN;
1197
1198 /*
1199 * Reread the user space value to handle the following situation:
1200 *
1201 * CPU0 CPU1
1202 *
1203 * sys_exit() sys_futex()
1204 * do_exit() futex_lock_pi()
1205 * futex_lock_pi_atomic()
1206 * exit_signals(tsk) No waiters:
1207 * tsk->flags |= PF_EXITING; *uaddr == 0x00000PID
1208 * mm_release(tsk) Set waiter bit
1209 * exit_robust_list(tsk) { *uaddr = 0x80000PID;
1210 * Set owner died attach_to_pi_owner() {
1211 * *uaddr = 0xC0000000; tsk = get_task(PID);
1212 * } if (!tsk->flags & PF_EXITING) {
1213 * ... attach();
1214 * tsk->flags |= PF_EXITPIDONE; } else {
1215 * if (!(tsk->flags & PF_EXITPIDONE))
1216 * return -EAGAIN;
1217 * return -ESRCH; <--- FAIL
1218 * }
1219 *
1220 * Returning ESRCH unconditionally is wrong here because the
1221 * user space value has been changed by the exiting task.
1222 *
1223 * The same logic applies to the case where the exiting task is
1224 * already gone.
1225 */
1226 if (get_futex_value_locked(&uval2, uaddr))
1227 return -EFAULT;
1228
1229 /* If the user space value has changed, try again. */
1230 if (uval2 != uval)
1231 return -EAGAIN;
1232
1233 /*
1234 * The exiting task did not have a robust list, the robust list was
1235 * corrupted or the user space value in *uaddr is simply bogus.
1236 * Give up and tell user space.
1237 */
1238 return -ESRCH;
1239}
1240
Thomas Gleixner04e1b2e2014-06-11 20:45:40 +00001241/*
1242 * Lookup the task for the TID provided from user space and attach to
1243 * it after doing proper sanity checks.
1244 */
Thomas Gleixnerda791a62018-12-10 14:35:14 +01001245static int attach_to_pi_owner(u32 __user *uaddr, u32 uval, union futex_key *key,
Thomas Gleixner04e1b2e2014-06-11 20:45:40 +00001246 struct futex_pi_state **ps)
Ingo Molnarc87e2832006-06-27 02:54:58 -07001247{
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001248 pid_t pid = uval & FUTEX_TID_MASK;
Thomas Gleixner04e1b2e2014-06-11 20:45:40 +00001249 struct futex_pi_state *pi_state;
1250 struct task_struct *p;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001251
1252 /*
Ingo Molnare3f2dde2006-07-29 05:17:57 +02001253 * We are the first waiter - try to look up the real owner and attach
Thomas Gleixner54a21782014-06-03 12:27:08 +00001254 * the new pi_state to it, but bail out when TID = 0 [1]
Thomas Gleixnerda791a62018-12-10 14:35:14 +01001255 *
1256 * The !pid check is paranoid. None of the call sites should end up
1257 * with pid == 0, but better safe than sorry. Let the caller retry
Ingo Molnarc87e2832006-06-27 02:54:58 -07001258 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001259 if (!pid)
Thomas Gleixnerda791a62018-12-10 14:35:14 +01001260 return -EAGAIN;
Mike Rapoport2ee08262018-02-06 15:40:17 -08001261 p = find_get_task_by_vpid(pid);
Michal Hocko7a0ea092010-06-30 09:51:19 +02001262 if (!p)
Thomas Gleixnerda791a62018-12-10 14:35:14 +01001263 return handle_exit_race(uaddr, uval, NULL);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001264
Oleg Nesterova2129462015-02-02 15:05:36 +01001265 if (unlikely(p->flags & PF_KTHREAD)) {
Thomas Gleixnerf0d71b32014-05-12 20:45:35 +00001266 put_task_struct(p);
1267 return -EPERM;
1268 }
1269
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001270 /*
1271 * We need to look at the task state flags to figure out,
1272 * whether the task is exiting. To protect against the do_exit
1273 * change of the task flags, we do this protected by
1274 * p->pi_lock:
1275 */
Thomas Gleixner1d615482009-11-17 14:54:03 +01001276 raw_spin_lock_irq(&p->pi_lock);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001277 if (unlikely(p->flags & PF_EXITING)) {
1278 /*
1279 * The task is on the way out. When PF_EXITPIDONE is
1280 * set, we know that the task has finished the
1281 * cleanup:
1282 */
Thomas Gleixnerda791a62018-12-10 14:35:14 +01001283 int ret = handle_exit_race(uaddr, uval, p);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001284
Thomas Gleixner1d615482009-11-17 14:54:03 +01001285 raw_spin_unlock_irq(&p->pi_lock);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001286 put_task_struct(p);
1287 return ret;
1288 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001289
Thomas Gleixner54a21782014-06-03 12:27:08 +00001290 /*
1291 * No existing pi state. First waiter. [2]
Peter Zijlstra734009e2017-03-22 11:35:52 +01001292 *
1293 * This creates pi_state, we have hb->lock held, this means nothing can
1294 * observe this state, wait_lock is irrelevant.
Thomas Gleixner54a21782014-06-03 12:27:08 +00001295 */
Ingo Molnarc87e2832006-06-27 02:54:58 -07001296 pi_state = alloc_pi_state();
1297
1298 /*
Thomas Gleixner04e1b2e2014-06-11 20:45:40 +00001299 * Initialize the pi_mutex in locked state and make @p
Ingo Molnarc87e2832006-06-27 02:54:58 -07001300 * the owner of it:
1301 */
1302 rt_mutex_init_proxy_locked(&pi_state->pi_mutex, p);
1303
1304 /* Store the key for possible exit cleanups: */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001305 pi_state->key = *key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001306
Ingo Molnar627371d2006-07-29 05:16:20 +02001307 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -07001308 list_add(&pi_state->list, &p->pi_state_list);
Peter Zijlstrac74aef22017-09-22 17:48:06 +02001309 /*
1310 * Assignment without holding pi_state->pi_mutex.wait_lock is safe
1311 * because there is no concurrency as the object is not published yet.
1312 */
Ingo Molnarc87e2832006-06-27 02:54:58 -07001313 pi_state->owner = p;
Thomas Gleixner1d615482009-11-17 14:54:03 +01001314 raw_spin_unlock_irq(&p->pi_lock);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001315
1316 put_task_struct(p);
1317
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07001318 *ps = pi_state;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001319
1320 return 0;
1321}
1322
Peter Zijlstra734009e2017-03-22 11:35:52 +01001323static int lookup_pi_state(u32 __user *uaddr, u32 uval,
1324 struct futex_hash_bucket *hb,
Thomas Gleixner04e1b2e2014-06-11 20:45:40 +00001325 union futex_key *key, struct futex_pi_state **ps)
1326{
Peter Zijlstra499f5ac2017-03-22 11:35:48 +01001327 struct futex_q *top_waiter = futex_top_waiter(hb, key);
Thomas Gleixner04e1b2e2014-06-11 20:45:40 +00001328
1329 /*
1330 * If there is a waiter on that futex, validate it and
1331 * attach to the pi_state when the validation succeeds.
1332 */
Peter Zijlstra499f5ac2017-03-22 11:35:48 +01001333 if (top_waiter)
Peter Zijlstra734009e2017-03-22 11:35:52 +01001334 return attach_to_pi_state(uaddr, uval, top_waiter->pi_state, ps);
Thomas Gleixner04e1b2e2014-06-11 20:45:40 +00001335
1336 /*
1337 * We are the first waiter - try to look up the owner based on
1338 * @uval and attach to it.
1339 */
Thomas Gleixnerda791a62018-12-10 14:35:14 +01001340 return attach_to_pi_owner(uaddr, uval, key, ps);
Thomas Gleixner04e1b2e2014-06-11 20:45:40 +00001341}
1342
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001343static int lock_pi_update_atomic(u32 __user *uaddr, u32 uval, u32 newval)
1344{
Will Deacon6b4f4bc2019-02-28 11:58:08 +00001345 int err;
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001346 u32 uninitialized_var(curval);
1347
Davidlohr Buesoab51fba2015-06-29 23:26:02 -07001348 if (unlikely(should_fail_futex(true)))
1349 return -EFAULT;
1350
Will Deacon6b4f4bc2019-02-28 11:58:08 +00001351 err = cmpxchg_futex_value_locked(&curval, uaddr, uval, newval);
1352 if (unlikely(err))
1353 return err;
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001354
Peter Zijlstra734009e2017-03-22 11:35:52 +01001355 /* If user space value changed, let the caller retry */
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001356 return curval != uval ? -EAGAIN : 0;
1357}
1358
Darren Hart1a520842009-04-03 13:39:52 -07001359/**
Darren Hartd96ee562009-09-21 22:30:22 -07001360 * futex_lock_pi_atomic() - Atomic work required to acquire a pi aware futex
Darren Hartbab5bc92009-04-07 23:23:50 -07001361 * @uaddr: the pi futex user address
1362 * @hb: the pi futex hash bucket
1363 * @key: the futex key associated with uaddr and hb
1364 * @ps: the pi_state pointer where we store the result of the
1365 * lookup
1366 * @task: the task to perform the atomic lock work for. This will
1367 * be "current" except in the case of requeue pi.
1368 * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0)
Darren Hart1a520842009-04-03 13:39:52 -07001369 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001370 * Return:
Mauro Carvalho Chehab7b4ff1a2017-05-11 10:17:45 -03001371 * - 0 - ready to wait;
1372 * - 1 - acquired the lock;
1373 * - <0 - error
Darren Hart1a520842009-04-03 13:39:52 -07001374 *
1375 * The hb->lock and futex_key refs shall be held by the caller.
1376 */
1377static int futex_lock_pi_atomic(u32 __user *uaddr, struct futex_hash_bucket *hb,
1378 union futex_key *key,
1379 struct futex_pi_state **ps,
Darren Hartbab5bc92009-04-07 23:23:50 -07001380 struct task_struct *task, int set_waiters)
Darren Hart1a520842009-04-03 13:39:52 -07001381{
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001382 u32 uval, newval, vpid = task_pid_vnr(task);
Peter Zijlstra499f5ac2017-03-22 11:35:48 +01001383 struct futex_q *top_waiter;
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001384 int ret;
Darren Hart1a520842009-04-03 13:39:52 -07001385
1386 /*
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001387 * Read the user space value first so we can validate a few
1388 * things before proceeding further.
Darren Hart1a520842009-04-03 13:39:52 -07001389 */
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001390 if (get_futex_value_locked(&uval, uaddr))
Darren Hart1a520842009-04-03 13:39:52 -07001391 return -EFAULT;
1392
Davidlohr Buesoab51fba2015-06-29 23:26:02 -07001393 if (unlikely(should_fail_futex(true)))
1394 return -EFAULT;
1395
Darren Hart1a520842009-04-03 13:39:52 -07001396 /*
1397 * Detect deadlocks.
1398 */
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001399 if ((unlikely((uval & FUTEX_TID_MASK) == vpid)))
Darren Hart1a520842009-04-03 13:39:52 -07001400 return -EDEADLK;
1401
Davidlohr Buesoab51fba2015-06-29 23:26:02 -07001402 if ((unlikely(should_fail_futex(true))))
1403 return -EDEADLK;
1404
Darren Hart1a520842009-04-03 13:39:52 -07001405 /*
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001406 * Lookup existing state first. If it exists, try to attach to
1407 * its pi_state.
Darren Hart1a520842009-04-03 13:39:52 -07001408 */
Peter Zijlstra499f5ac2017-03-22 11:35:48 +01001409 top_waiter = futex_top_waiter(hb, key);
1410 if (top_waiter)
Peter Zijlstra734009e2017-03-22 11:35:52 +01001411 return attach_to_pi_state(uaddr, uval, top_waiter->pi_state, ps);
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001412
1413 /*
1414 * No waiter and user TID is 0. We are here because the
1415 * waiters or the owner died bit is set or called from
1416 * requeue_cmp_pi or for whatever reason something took the
1417 * syscall.
1418 */
1419 if (!(uval & FUTEX_TID_MASK)) {
Thomas Gleixnerb3eaa9f2014-06-03 12:27:06 +00001420 /*
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001421 * We take over the futex. No other waiters and the user space
1422 * TID is 0. We preserve the owner died bit.
Thomas Gleixnerb3eaa9f2014-06-03 12:27:06 +00001423 */
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001424 newval = uval & FUTEX_OWNER_DIED;
1425 newval |= vpid;
1426
1427 /* The futex requeue_pi code can enforce the waiters bit */
1428 if (set_waiters)
1429 newval |= FUTEX_WAITERS;
1430
1431 ret = lock_pi_update_atomic(uaddr, uval, newval);
1432 /* If the take over worked, return 1 */
1433 return ret < 0 ? ret : 1;
Thomas Gleixnerb3eaa9f2014-06-03 12:27:06 +00001434 }
Darren Hart1a520842009-04-03 13:39:52 -07001435
Darren Hart1a520842009-04-03 13:39:52 -07001436 /*
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001437 * First waiter. Set the waiters bit before attaching ourself to
1438 * the owner. If owner tries to unlock, it will be forced into
1439 * the kernel and blocked on hb->lock.
Darren Hart1a520842009-04-03 13:39:52 -07001440 */
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001441 newval = uval | FUTEX_WAITERS;
1442 ret = lock_pi_update_atomic(uaddr, uval, newval);
1443 if (ret)
1444 return ret;
Darren Hart1a520842009-04-03 13:39:52 -07001445 /*
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00001446 * If the update of the user space value succeeded, we try to
1447 * attach to the owner. If that fails, no harm done, we only
1448 * set the FUTEX_WAITERS bit in the user space variable.
Darren Hart1a520842009-04-03 13:39:52 -07001449 */
Thomas Gleixnerda791a62018-12-10 14:35:14 +01001450 return attach_to_pi_owner(uaddr, newval, key, ps);
Darren Hart1a520842009-04-03 13:39:52 -07001451}
1452
Lai Jiangshan2e129782010-12-22 14:18:50 +08001453/**
1454 * __unqueue_futex() - Remove the futex_q from its futex_hash_bucket
1455 * @q: The futex_q to unqueue
1456 *
1457 * The q->lock_ptr must not be NULL and must be held by the caller.
1458 */
1459static void __unqueue_futex(struct futex_q *q)
1460{
1461 struct futex_hash_bucket *hb;
1462
Lance Roy4de1a292018-10-02 22:38:57 -07001463 if (WARN_ON_SMP(!q->lock_ptr) || WARN_ON(plist_node_empty(&q->list)))
Lai Jiangshan2e129782010-12-22 14:18:50 +08001464 return;
Lance Roy4de1a292018-10-02 22:38:57 -07001465 lockdep_assert_held(q->lock_ptr);
Lai Jiangshan2e129782010-12-22 14:18:50 +08001466
1467 hb = container_of(q->lock_ptr, struct futex_hash_bucket, lock);
1468 plist_del(&q->list, &hb->chain);
Linus Torvalds11d46162014-03-20 22:11:17 -07001469 hb_waiters_dec(hb);
Lai Jiangshan2e129782010-12-22 14:18:50 +08001470}
1471
Ingo Molnarc87e2832006-06-27 02:54:58 -07001472/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 * The hash bucket lock must be held when this is called.
Davidlohr Bueso1d0dcb32015-05-01 08:27:51 -07001474 * Afterwards, the futex_q must not be accessed. Callers
1475 * must ensure to later call wake_up_q() for the actual
1476 * wakeups to occur.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 */
Davidlohr Bueso1d0dcb32015-05-01 08:27:51 -07001478static void mark_wake_futex(struct wake_q_head *wake_q, struct futex_q *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001480 struct task_struct *p = q->task;
1481
Darren Hartaa109902012-11-26 16:29:56 -08001482 if (WARN(q->pi_state || q->rt_waiter, "refusing to wake PI futex\n"))
1483 return;
1484
Peter Zijlstrab061c382018-11-29 14:44:49 +01001485 get_task_struct(p);
Lai Jiangshan2e129782010-12-22 14:18:50 +08001486 __unqueue_futex(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 /*
Darren Hart (VMware)38fcd062017-04-14 15:31:38 -07001488 * The waiting task can free the futex_q as soon as q->lock_ptr = NULL
1489 * is written, without taking any locks. This is possible in the event
1490 * of a spurious wakeup, for example. A memory barrier is required here
1491 * to prevent the following store to lock_ptr from getting ahead of the
1492 * plist_del in __unqueue_futex().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 */
Peter Zijlstra1b367ec2017-03-22 11:35:49 +01001494 smp_store_release(&q->lock_ptr, NULL);
Peter Zijlstrab061c382018-11-29 14:44:49 +01001495
1496 /*
1497 * Queue the task for later wakeup for after we've released
1498 * the hb->lock. wake_q_add() grabs reference to p.
1499 */
Davidlohr Bueso07879c62018-12-18 11:53:52 -08001500 wake_q_add_safe(wake_q, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
Peter Zijlstra16ffa122017-03-22 11:35:55 +01001503/*
1504 * Caller must hold a reference on @pi_state.
1505 */
1506static int wake_futex_pi(u32 __user *uaddr, u32 uval, struct futex_pi_state *pi_state)
Ingo Molnarc87e2832006-06-27 02:54:58 -07001507{
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +03001508 u32 uninitialized_var(curval), newval;
Peter Zijlstra16ffa122017-03-22 11:35:55 +01001509 struct task_struct *new_owner;
Peter Zijlstraaa2bfe52017-03-23 15:56:10 +01001510 bool postunlock = false;
Waiman Long194a6b52016-11-17 11:46:38 -05001511 DEFINE_WAKE_Q(wake_q);
Thomas Gleixner13fbca42014-06-03 12:27:07 +00001512 int ret = 0;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001513
Ingo Molnarc87e2832006-06-27 02:54:58 -07001514 new_owner = rt_mutex_next_owner(&pi_state->pi_mutex);
Peter Zijlstrabebe5b52017-03-22 11:35:59 +01001515 if (WARN_ON_ONCE(!new_owner)) {
Peter Zijlstra16ffa122017-03-22 11:35:55 +01001516 /*
Peter Zijlstrabebe5b52017-03-22 11:35:59 +01001517 * As per the comment in futex_unlock_pi() this should not happen.
Peter Zijlstra16ffa122017-03-22 11:35:55 +01001518 *
1519 * When this happens, give up our locks and try again, giving
1520 * the futex_lock_pi() instance time to complete, either by
1521 * waiting on the rtmutex or removing itself from the futex
1522 * queue.
1523 */
1524 ret = -EAGAIN;
1525 goto out_unlock;
Peter Zijlstra73d786b2017-03-22 11:35:54 +01001526 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07001527
1528 /*
Peter Zijlstra16ffa122017-03-22 11:35:55 +01001529 * We pass it to the next owner. The WAITERS bit is always kept
1530 * enabled while there is PI state around. We cleanup the owner
1531 * died bit, because we are the owner.
Ingo Molnarc87e2832006-06-27 02:54:58 -07001532 */
Thomas Gleixner13fbca42014-06-03 12:27:07 +00001533 newval = FUTEX_WAITERS | task_pid_vnr(new_owner);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07001534
Davidlohr Buesoab51fba2015-06-29 23:26:02 -07001535 if (unlikely(should_fail_futex(true)))
1536 ret = -EFAULT;
1537
Will Deacon6b4f4bc2019-02-28 11:58:08 +00001538 ret = cmpxchg_futex_value_locked(&curval, uaddr, uval, newval);
1539 if (!ret && (curval != uval)) {
Sebastian Andrzej Siewior89e9e662016-04-15 14:35:39 +02001540 /*
1541 * If a unconditional UNLOCK_PI operation (user space did not
1542 * try the TID->0 transition) raced with a waiter setting the
1543 * FUTEX_WAITERS flag between get_user() and locking the hash
1544 * bucket lock, retry the operation.
1545 */
1546 if ((FUTEX_TID_MASK & curval) == uval)
1547 ret = -EAGAIN;
1548 else
1549 ret = -EINVAL;
1550 }
Peter Zijlstra734009e2017-03-22 11:35:52 +01001551
Peter Zijlstra16ffa122017-03-22 11:35:55 +01001552 if (ret)
1553 goto out_unlock;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001554
Peter Zijlstra94ffac52017-04-07 09:04:07 +02001555 /*
1556 * This is a point of no return; once we modify the uval there is no
1557 * going back and subsequent operations must not fail.
1558 */
1559
Thomas Gleixnerb4abf912016-01-13 11:25:38 +01001560 raw_spin_lock(&pi_state->owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001561 WARN_ON(list_empty(&pi_state->list));
1562 list_del_init(&pi_state->list);
Thomas Gleixnerb4abf912016-01-13 11:25:38 +01001563 raw_spin_unlock(&pi_state->owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001564
Thomas Gleixnerb4abf912016-01-13 11:25:38 +01001565 raw_spin_lock(&new_owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001566 WARN_ON(!list_empty(&pi_state->list));
Ingo Molnarc87e2832006-06-27 02:54:58 -07001567 list_add(&pi_state->list, &new_owner->pi_state_list);
1568 pi_state->owner = new_owner;
Thomas Gleixnerb4abf912016-01-13 11:25:38 +01001569 raw_spin_unlock(&new_owner->pi_lock);
Ingo Molnar627371d2006-07-29 05:16:20 +02001570
Peter Zijlstraaa2bfe52017-03-23 15:56:10 +01001571 postunlock = __rt_mutex_futex_unlock(&pi_state->pi_mutex, &wake_q);
Peter Zijlstra5293c2e2017-03-22 11:35:51 +01001572
Peter Zijlstra16ffa122017-03-22 11:35:55 +01001573out_unlock:
Peter Zijlstra5293c2e2017-03-22 11:35:51 +01001574 raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
Peter Zijlstra5293c2e2017-03-22 11:35:51 +01001575
Peter Zijlstraaa2bfe52017-03-23 15:56:10 +01001576 if (postunlock)
1577 rt_mutex_postunlock(&wake_q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07001578
Peter Zijlstra16ffa122017-03-22 11:35:55 +01001579 return ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -07001580}
1581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582/*
Ingo Molnar8b8f3192006-07-03 00:25:05 -07001583 * Express the locking dependencies for lockdep:
1584 */
1585static inline void
1586double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
1587{
1588 if (hb1 <= hb2) {
1589 spin_lock(&hb1->lock);
1590 if (hb1 < hb2)
1591 spin_lock_nested(&hb2->lock, SINGLE_DEPTH_NESTING);
1592 } else { /* hb1 > hb2 */
1593 spin_lock(&hb2->lock);
1594 spin_lock_nested(&hb1->lock, SINGLE_DEPTH_NESTING);
1595 }
1596}
1597
Darren Hart5eb3dc62009-03-12 00:55:52 -07001598static inline void
1599double_unlock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
1600{
Darren Hartf061d352009-03-12 15:11:18 -07001601 spin_unlock(&hb1->lock);
Ingo Molnar88f502f2009-03-13 10:32:07 +01001602 if (hb1 != hb2)
1603 spin_unlock(&hb2->lock);
Darren Hart5eb3dc62009-03-12 00:55:52 -07001604}
1605
Ingo Molnar8b8f3192006-07-03 00:25:05 -07001606/*
Darren Hartb2d09942009-03-12 00:55:37 -07001607 * Wake up waiters matching bitset queued on this futex (uaddr).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 */
Darren Hartb41277d2010-11-08 13:10:09 -08001609static int
1610futex_wake(u32 __user *uaddr, unsigned int flags, int nr_wake, u32 bitset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
Ingo Molnare2970f22006-06-27 02:54:47 -07001612 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 struct futex_q *this, *next;
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001614 union futex_key key = FUTEX_KEY_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 int ret;
Waiman Long194a6b52016-11-17 11:46:38 -05001616 DEFINE_WAKE_Q(wake_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Thomas Gleixnercd689982008-02-01 17:45:14 +01001618 if (!bitset)
1619 return -EINVAL;
1620
Linus Torvalds96d4f262019-01-03 18:57:57 -08001621 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, FUTEX_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 if (unlikely(ret != 0))
1623 goto out;
1624
Ingo Molnare2970f22006-06-27 02:54:47 -07001625 hb = hash_futex(&key);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -08001626
1627 /* Make sure we really have tasks to wakeup */
1628 if (!hb_waiters_pending(hb))
1629 goto out_put_key;
1630
Ingo Molnare2970f22006-06-27 02:54:47 -07001631 spin_lock(&hb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Jason Low0d00c7b2014-01-12 15:31:22 -08001633 plist_for_each_entry_safe(this, next, &hb->chain, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (match_futex (&this->key, &key)) {
Darren Hart52400ba2009-04-03 13:40:49 -07001635 if (this->pi_state || this->rt_waiter) {
Ingo Molnared6f7b12006-07-01 04:35:46 -07001636 ret = -EINVAL;
1637 break;
1638 }
Thomas Gleixnercd689982008-02-01 17:45:14 +01001639
1640 /* Check if one of the bits is set in both bitsets */
1641 if (!(this->bitset & bitset))
1642 continue;
1643
Davidlohr Bueso1d0dcb32015-05-01 08:27:51 -07001644 mark_wake_futex(&wake_q, this);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (++ret >= nr_wake)
1646 break;
1647 }
1648 }
1649
Ingo Molnare2970f22006-06-27 02:54:47 -07001650 spin_unlock(&hb->lock);
Davidlohr Bueso1d0dcb32015-05-01 08:27:51 -07001651 wake_up_q(&wake_q);
Davidlohr Buesob0c29f72014-01-12 15:31:25 -08001652out_put_key:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001653 put_futex_key(&key);
Darren Hart42d35d42008-12-29 15:49:53 -08001654out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 return ret;
1656}
1657
Jiri Slaby30d6e0a2017-08-24 09:31:05 +02001658static int futex_atomic_op_inuser(unsigned int encoded_op, u32 __user *uaddr)
1659{
1660 unsigned int op = (encoded_op & 0x70000000) >> 28;
1661 unsigned int cmp = (encoded_op & 0x0f000000) >> 24;
Jiri Slabyd70ef222017-11-30 15:35:44 +01001662 int oparg = sign_extend32((encoded_op & 0x00fff000) >> 12, 11);
1663 int cmparg = sign_extend32(encoded_op & 0x00000fff, 11);
Jiri Slaby30d6e0a2017-08-24 09:31:05 +02001664 int oldval, ret;
1665
1666 if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28)) {
Jiri Slabye78c38f62017-10-23 13:41:51 +02001667 if (oparg < 0 || oparg > 31) {
1668 char comm[sizeof(current->comm)];
1669 /*
1670 * kill this print and return -EINVAL when userspace
1671 * is sane again
1672 */
1673 pr_info_ratelimited("futex_wake_op: %s tries to shift op by %d; fix this program\n",
1674 get_task_comm(comm, current), oparg);
1675 oparg &= 31;
1676 }
Jiri Slaby30d6e0a2017-08-24 09:31:05 +02001677 oparg = 1 << oparg;
1678 }
1679
Linus Torvalds96d4f262019-01-03 18:57:57 -08001680 if (!access_ok(uaddr, sizeof(u32)))
Jiri Slaby30d6e0a2017-08-24 09:31:05 +02001681 return -EFAULT;
1682
1683 ret = arch_futex_atomic_op_inuser(op, oparg, &oldval, uaddr);
1684 if (ret)
1685 return ret;
1686
1687 switch (cmp) {
1688 case FUTEX_OP_CMP_EQ:
1689 return oldval == cmparg;
1690 case FUTEX_OP_CMP_NE:
1691 return oldval != cmparg;
1692 case FUTEX_OP_CMP_LT:
1693 return oldval < cmparg;
1694 case FUTEX_OP_CMP_GE:
1695 return oldval >= cmparg;
1696 case FUTEX_OP_CMP_LE:
1697 return oldval <= cmparg;
1698 case FUTEX_OP_CMP_GT:
1699 return oldval > cmparg;
1700 default:
1701 return -ENOSYS;
1702 }
1703}
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705/*
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001706 * Wake up all waiters hashed on the physical page that is mapped
1707 * to this virtual address:
1708 */
Ingo Molnare2970f22006-06-27 02:54:47 -07001709static int
Darren Hartb41277d2010-11-08 13:10:09 -08001710futex_wake_op(u32 __user *uaddr1, unsigned int flags, u32 __user *uaddr2,
Ingo Molnare2970f22006-06-27 02:54:47 -07001711 int nr_wake, int nr_wake2, int op)
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001712{
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001713 union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
Ingo Molnare2970f22006-06-27 02:54:47 -07001714 struct futex_hash_bucket *hb1, *hb2;
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001715 struct futex_q *this, *next;
Darren Harte4dc5b72009-03-12 00:56:13 -07001716 int ret, op_ret;
Waiman Long194a6b52016-11-17 11:46:38 -05001717 DEFINE_WAKE_Q(wake_q);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001718
Darren Harte4dc5b72009-03-12 00:56:13 -07001719retry:
Linus Torvalds96d4f262019-01-03 18:57:57 -08001720 ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, FUTEX_READ);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001721 if (unlikely(ret != 0))
1722 goto out;
Linus Torvalds96d4f262019-01-03 18:57:57 -08001723 ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, FUTEX_WRITE);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001724 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08001725 goto out_put_key1;
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001726
Ingo Molnare2970f22006-06-27 02:54:47 -07001727 hb1 = hash_futex(&key1);
1728 hb2 = hash_futex(&key2);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001729
Darren Harte4dc5b72009-03-12 00:56:13 -07001730retry_private:
Thomas Gleixnereaaea802009-10-04 09:34:17 +02001731 double_lock_hb(hb1, hb2);
Ingo Molnare2970f22006-06-27 02:54:47 -07001732 op_ret = futex_atomic_op_inuser(op, uaddr2);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001733 if (unlikely(op_ret < 0)) {
Darren Hart5eb3dc62009-03-12 00:55:52 -07001734 double_unlock_hb(hb1, hb2);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001735
Will Deacon6b4f4bc2019-02-28 11:58:08 +00001736 if (!IS_ENABLED(CONFIG_MMU) ||
1737 unlikely(op_ret != -EFAULT && op_ret != -EAGAIN)) {
1738 /*
1739 * we don't get EFAULT from MMU faults if we don't have
1740 * an MMU, but we might get them from range checking
1741 */
David Gibson796f8d92005-11-07 00:59:33 -08001742 ret = op_ret;
Darren Hart42d35d42008-12-29 15:49:53 -08001743 goto out_put_keys;
David Gibson796f8d92005-11-07 00:59:33 -08001744 }
1745
Will Deacon6b4f4bc2019-02-28 11:58:08 +00001746 if (op_ret == -EFAULT) {
1747 ret = fault_in_user_writeable(uaddr2);
1748 if (ret)
1749 goto out_put_keys;
1750 }
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001751
Will Deacon6b4f4bc2019-02-28 11:58:08 +00001752 if (!(flags & FLAGS_SHARED)) {
1753 cond_resched();
Darren Harte4dc5b72009-03-12 00:56:13 -07001754 goto retry_private;
Will Deacon6b4f4bc2019-02-28 11:58:08 +00001755 }
Darren Harte4dc5b72009-03-12 00:56:13 -07001756
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001757 put_futex_key(&key2);
1758 put_futex_key(&key1);
Will Deacon6b4f4bc2019-02-28 11:58:08 +00001759 cond_resched();
Darren Harte4dc5b72009-03-12 00:56:13 -07001760 goto retry;
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001761 }
1762
Jason Low0d00c7b2014-01-12 15:31:22 -08001763 plist_for_each_entry_safe(this, next, &hb1->chain, list) {
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001764 if (match_futex (&this->key, &key1)) {
Darren Hartaa109902012-11-26 16:29:56 -08001765 if (this->pi_state || this->rt_waiter) {
1766 ret = -EINVAL;
1767 goto out_unlock;
1768 }
Davidlohr Bueso1d0dcb32015-05-01 08:27:51 -07001769 mark_wake_futex(&wake_q, this);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001770 if (++ret >= nr_wake)
1771 break;
1772 }
1773 }
1774
1775 if (op_ret > 0) {
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001776 op_ret = 0;
Jason Low0d00c7b2014-01-12 15:31:22 -08001777 plist_for_each_entry_safe(this, next, &hb2->chain, list) {
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001778 if (match_futex (&this->key, &key2)) {
Darren Hartaa109902012-11-26 16:29:56 -08001779 if (this->pi_state || this->rt_waiter) {
1780 ret = -EINVAL;
1781 goto out_unlock;
1782 }
Davidlohr Bueso1d0dcb32015-05-01 08:27:51 -07001783 mark_wake_futex(&wake_q, this);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001784 if (++op_ret >= nr_wake2)
1785 break;
1786 }
1787 }
1788 ret += op_ret;
1789 }
1790
Darren Hartaa109902012-11-26 16:29:56 -08001791out_unlock:
Darren Hart5eb3dc62009-03-12 00:55:52 -07001792 double_unlock_hb(hb1, hb2);
Davidlohr Bueso1d0dcb32015-05-01 08:27:51 -07001793 wake_up_q(&wake_q);
Darren Hart42d35d42008-12-29 15:49:53 -08001794out_put_keys:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001795 put_futex_key(&key2);
Darren Hart42d35d42008-12-29 15:49:53 -08001796out_put_key1:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01001797 put_futex_key(&key1);
Darren Hart42d35d42008-12-29 15:49:53 -08001798out:
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07001799 return ret;
1800}
1801
Darren Hart9121e472009-04-03 13:40:31 -07001802/**
1803 * requeue_futex() - Requeue a futex_q from one hb to another
1804 * @q: the futex_q to requeue
1805 * @hb1: the source hash_bucket
1806 * @hb2: the target hash_bucket
1807 * @key2: the new key for the requeued futex_q
1808 */
1809static inline
1810void requeue_futex(struct futex_q *q, struct futex_hash_bucket *hb1,
1811 struct futex_hash_bucket *hb2, union futex_key *key2)
1812{
1813
1814 /*
1815 * If key1 and key2 hash to the same bucket, no need to
1816 * requeue.
1817 */
1818 if (likely(&hb1->chain != &hb2->chain)) {
1819 plist_del(&q->list, &hb1->chain);
Linus Torvalds11d46162014-03-20 22:11:17 -07001820 hb_waiters_dec(hb1);
Linus Torvalds11d46162014-03-20 22:11:17 -07001821 hb_waiters_inc(hb2);
Davidlohr Buesofe1bce92016-04-20 20:09:24 -07001822 plist_add(&q->list, &hb2->chain);
Darren Hart9121e472009-04-03 13:40:31 -07001823 q->lock_ptr = &hb2->lock;
Darren Hart9121e472009-04-03 13:40:31 -07001824 }
1825 get_futex_key_refs(key2);
1826 q->key = *key2;
1827}
1828
Darren Hart52400ba2009-04-03 13:40:49 -07001829/**
1830 * requeue_pi_wake_futex() - Wake a task that acquired the lock during requeue
Darren Hartd96ee562009-09-21 22:30:22 -07001831 * @q: the futex_q
1832 * @key: the key of the requeue target futex
1833 * @hb: the hash_bucket of the requeue target futex
Darren Hart52400ba2009-04-03 13:40:49 -07001834 *
1835 * During futex_requeue, with requeue_pi=1, it is possible to acquire the
1836 * target futex if it is uncontended or via a lock steal. Set the futex_q key
1837 * to the requeue target futex so the waiter can detect the wakeup on the right
1838 * futex, but remove it from the hb and NULL the rt_waiter so it can detect
Darren Hartbeda2c72009-08-09 15:34:39 -07001839 * atomic lock acquisition. Set the q->lock_ptr to the requeue target hb->lock
1840 * to protect access to the pi_state to fixup the owner later. Must be called
1841 * with both q->lock_ptr and hb->lock held.
Darren Hart52400ba2009-04-03 13:40:49 -07001842 */
1843static inline
Darren Hartbeda2c72009-08-09 15:34:39 -07001844void requeue_pi_wake_futex(struct futex_q *q, union futex_key *key,
1845 struct futex_hash_bucket *hb)
Darren Hart52400ba2009-04-03 13:40:49 -07001846{
Darren Hart52400ba2009-04-03 13:40:49 -07001847 get_futex_key_refs(key);
1848 q->key = *key;
1849
Lai Jiangshan2e129782010-12-22 14:18:50 +08001850 __unqueue_futex(q);
Darren Hart52400ba2009-04-03 13:40:49 -07001851
1852 WARN_ON(!q->rt_waiter);
1853 q->rt_waiter = NULL;
1854
Darren Hartbeda2c72009-08-09 15:34:39 -07001855 q->lock_ptr = &hb->lock;
Darren Hartbeda2c72009-08-09 15:34:39 -07001856
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02001857 wake_up_state(q->task, TASK_NORMAL);
Darren Hart52400ba2009-04-03 13:40:49 -07001858}
1859
1860/**
1861 * futex_proxy_trylock_atomic() - Attempt an atomic lock for the top waiter
Darren Hartbab5bc92009-04-07 23:23:50 -07001862 * @pifutex: the user address of the to futex
1863 * @hb1: the from futex hash bucket, must be locked by the caller
1864 * @hb2: the to futex hash bucket, must be locked by the caller
1865 * @key1: the from futex key
1866 * @key2: the to futex key
1867 * @ps: address to store the pi_state pointer
1868 * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0)
Darren Hart52400ba2009-04-03 13:40:49 -07001869 *
1870 * Try and get the lock on behalf of the top waiter if we can do it atomically.
Darren Hartbab5bc92009-04-07 23:23:50 -07001871 * Wake the top waiter if we succeed. If the caller specified set_waiters,
1872 * then direct futex_lock_pi_atomic() to force setting the FUTEX_WAITERS bit.
1873 * hb1 and hb2 must be held by the caller.
Darren Hart52400ba2009-04-03 13:40:49 -07001874 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001875 * Return:
Mauro Carvalho Chehab7b4ff1a2017-05-11 10:17:45 -03001876 * - 0 - failed to acquire the lock atomically;
1877 * - >0 - acquired the lock, return value is vpid of the top_waiter
1878 * - <0 - error
Darren Hart52400ba2009-04-03 13:40:49 -07001879 */
1880static int futex_proxy_trylock_atomic(u32 __user *pifutex,
1881 struct futex_hash_bucket *hb1,
1882 struct futex_hash_bucket *hb2,
1883 union futex_key *key1, union futex_key *key2,
Darren Hartbab5bc92009-04-07 23:23:50 -07001884 struct futex_pi_state **ps, int set_waiters)
Darren Hart52400ba2009-04-03 13:40:49 -07001885{
Darren Hartbab5bc92009-04-07 23:23:50 -07001886 struct futex_q *top_waiter = NULL;
Darren Hart52400ba2009-04-03 13:40:49 -07001887 u32 curval;
Thomas Gleixner866293e2014-05-12 20:45:34 +00001888 int ret, vpid;
Darren Hart52400ba2009-04-03 13:40:49 -07001889
1890 if (get_futex_value_locked(&curval, pifutex))
1891 return -EFAULT;
1892
Davidlohr Buesoab51fba2015-06-29 23:26:02 -07001893 if (unlikely(should_fail_futex(true)))
1894 return -EFAULT;
1895
Darren Hartbab5bc92009-04-07 23:23:50 -07001896 /*
1897 * Find the top_waiter and determine if there are additional waiters.
1898 * If the caller intends to requeue more than 1 waiter to pifutex,
1899 * force futex_lock_pi_atomic() to set the FUTEX_WAITERS bit now,
1900 * as we have means to handle the possible fault. If not, don't set
1901 * the bit unecessarily as it will force the subsequent unlock to enter
1902 * the kernel.
1903 */
Darren Hart52400ba2009-04-03 13:40:49 -07001904 top_waiter = futex_top_waiter(hb1, key1);
1905
1906 /* There are no waiters, nothing for us to do. */
1907 if (!top_waiter)
1908 return 0;
1909
Darren Hart84bc4af2009-08-13 17:36:53 -07001910 /* Ensure we requeue to the expected futex. */
1911 if (!match_futex(top_waiter->requeue_pi_key, key2))
1912 return -EINVAL;
1913
Darren Hart52400ba2009-04-03 13:40:49 -07001914 /*
Darren Hartbab5bc92009-04-07 23:23:50 -07001915 * Try to take the lock for top_waiter. Set the FUTEX_WAITERS bit in
1916 * the contended case or if set_waiters is 1. The pi_state is returned
1917 * in ps in contended cases.
Darren Hart52400ba2009-04-03 13:40:49 -07001918 */
Thomas Gleixner866293e2014-05-12 20:45:34 +00001919 vpid = task_pid_vnr(top_waiter->task);
Darren Hartbab5bc92009-04-07 23:23:50 -07001920 ret = futex_lock_pi_atomic(pifutex, hb2, key2, ps, top_waiter->task,
1921 set_waiters);
Thomas Gleixner866293e2014-05-12 20:45:34 +00001922 if (ret == 1) {
Darren Hartbeda2c72009-08-09 15:34:39 -07001923 requeue_pi_wake_futex(top_waiter, key2, hb2);
Thomas Gleixner866293e2014-05-12 20:45:34 +00001924 return vpid;
1925 }
Darren Hart52400ba2009-04-03 13:40:49 -07001926 return ret;
1927}
1928
1929/**
1930 * futex_requeue() - Requeue waiters from uaddr1 to uaddr2
Randy Dunlapfb62db22010-10-13 11:02:34 -07001931 * @uaddr1: source futex user address
Darren Hartb41277d2010-11-08 13:10:09 -08001932 * @flags: futex flags (FLAGS_SHARED, etc.)
Randy Dunlapfb62db22010-10-13 11:02:34 -07001933 * @uaddr2: target futex user address
1934 * @nr_wake: number of waiters to wake (must be 1 for requeue_pi)
1935 * @nr_requeue: number of waiters to requeue (0-INT_MAX)
1936 * @cmpval: @uaddr1 expected value (or %NULL)
1937 * @requeue_pi: if we are attempting to requeue from a non-pi futex to a
Darren Hartb41277d2010-11-08 13:10:09 -08001938 * pi futex (pi to pi requeue is not supported)
Darren Hart52400ba2009-04-03 13:40:49 -07001939 *
1940 * Requeue waiters on uaddr1 to uaddr2. In the requeue_pi case, try to acquire
1941 * uaddr2 atomically on behalf of the top waiter.
1942 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08001943 * Return:
Mauro Carvalho Chehab7b4ff1a2017-05-11 10:17:45 -03001944 * - >=0 - on success, the number of tasks requeued or woken;
1945 * - <0 - on error
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 */
Darren Hartb41277d2010-11-08 13:10:09 -08001947static int futex_requeue(u32 __user *uaddr1, unsigned int flags,
1948 u32 __user *uaddr2, int nr_wake, int nr_requeue,
1949 u32 *cmpval, int requeue_pi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950{
Peter Zijlstra38d47c12008-09-26 19:32:20 +02001951 union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
Darren Hart52400ba2009-04-03 13:40:49 -07001952 int drop_count = 0, task_count = 0, ret;
1953 struct futex_pi_state *pi_state = NULL;
Ingo Molnare2970f22006-06-27 02:54:47 -07001954 struct futex_hash_bucket *hb1, *hb2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 struct futex_q *this, *next;
Waiman Long194a6b52016-11-17 11:46:38 -05001956 DEFINE_WAKE_Q(wake_q);
Darren Hart52400ba2009-04-03 13:40:49 -07001957
Li Jinyuefbe0e832017-12-14 17:04:54 +08001958 if (nr_wake < 0 || nr_requeue < 0)
1959 return -EINVAL;
1960
Nicolas Pitrebc2eecd2017-08-01 00:31:32 -04001961 /*
1962 * When PI not supported: return -ENOSYS if requeue_pi is true,
1963 * consequently the compiler knows requeue_pi is always false past
1964 * this point which will optimize away all the conditional code
1965 * further down.
1966 */
1967 if (!IS_ENABLED(CONFIG_FUTEX_PI) && requeue_pi)
1968 return -ENOSYS;
1969
Darren Hart52400ba2009-04-03 13:40:49 -07001970 if (requeue_pi) {
1971 /*
Thomas Gleixnere9c243a2014-06-03 12:27:06 +00001972 * Requeue PI only works on two distinct uaddrs. This
1973 * check is only valid for private futexes. See below.
1974 */
1975 if (uaddr1 == uaddr2)
1976 return -EINVAL;
1977
1978 /*
Darren Hart52400ba2009-04-03 13:40:49 -07001979 * requeue_pi requires a pi_state, try to allocate it now
1980 * without any locks in case it fails.
1981 */
1982 if (refill_pi_state_cache())
1983 return -ENOMEM;
1984 /*
1985 * requeue_pi must wake as many tasks as it can, up to nr_wake
1986 * + nr_requeue, since it acquires the rt_mutex prior to
1987 * returning to userspace, so as to not leave the rt_mutex with
1988 * waiters and no owner. However, second and third wake-ups
1989 * cannot be predicted as they involve race conditions with the
1990 * first wake and a fault while looking up the pi_state. Both
1991 * pthread_cond_signal() and pthread_cond_broadcast() should
1992 * use nr_wake=1.
1993 */
1994 if (nr_wake != 1)
1995 return -EINVAL;
1996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Darren Hart42d35d42008-12-29 15:49:53 -08001998retry:
Linus Torvalds96d4f262019-01-03 18:57:57 -08001999 ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, FUTEX_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 if (unlikely(ret != 0))
2001 goto out;
Shawn Bohrer9ea71502011-06-30 11:21:32 -05002002 ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2,
Linus Torvalds96d4f262019-01-03 18:57:57 -08002003 requeue_pi ? FUTEX_WRITE : FUTEX_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08002005 goto out_put_key1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Thomas Gleixnere9c243a2014-06-03 12:27:06 +00002007 /*
2008 * The check above which compares uaddrs is not sufficient for
2009 * shared futexes. We need to compare the keys:
2010 */
2011 if (requeue_pi && match_futex(&key1, &key2)) {
2012 ret = -EINVAL;
2013 goto out_put_keys;
2014 }
2015
Ingo Molnare2970f22006-06-27 02:54:47 -07002016 hb1 = hash_futex(&key1);
2017 hb2 = hash_futex(&key2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Darren Harte4dc5b72009-03-12 00:56:13 -07002019retry_private:
Linus Torvalds69cd9eb2014-04-08 15:30:07 -07002020 hb_waiters_inc(hb2);
Ingo Molnar8b8f3192006-07-03 00:25:05 -07002021 double_lock_hb(hb1, hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Ingo Molnare2970f22006-06-27 02:54:47 -07002023 if (likely(cmpval != NULL)) {
2024 u32 curval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Ingo Molnare2970f22006-06-27 02:54:47 -07002026 ret = get_futex_value_locked(&curval, uaddr1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 if (unlikely(ret)) {
Darren Hart5eb3dc62009-03-12 00:55:52 -07002029 double_unlock_hb(hb1, hb2);
Linus Torvalds69cd9eb2014-04-08 15:30:07 -07002030 hb_waiters_dec(hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Darren Harte4dc5b72009-03-12 00:56:13 -07002032 ret = get_user(curval, uaddr1);
2033 if (ret)
2034 goto out_put_keys;
2035
Darren Hartb41277d2010-11-08 13:10:09 -08002036 if (!(flags & FLAGS_SHARED))
Darren Harte4dc5b72009-03-12 00:56:13 -07002037 goto retry_private;
2038
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002039 put_futex_key(&key2);
2040 put_futex_key(&key1);
Darren Harte4dc5b72009-03-12 00:56:13 -07002041 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 }
Ingo Molnare2970f22006-06-27 02:54:47 -07002043 if (curval != *cmpval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 ret = -EAGAIN;
2045 goto out_unlock;
2046 }
2047 }
2048
Darren Hart52400ba2009-04-03 13:40:49 -07002049 if (requeue_pi && (task_count - nr_wake < nr_requeue)) {
Darren Hartbab5bc92009-04-07 23:23:50 -07002050 /*
2051 * Attempt to acquire uaddr2 and wake the top waiter. If we
2052 * intend to requeue waiters, force setting the FUTEX_WAITERS
2053 * bit. We force this here where we are able to easily handle
2054 * faults rather in the requeue loop below.
2055 */
Darren Hart52400ba2009-04-03 13:40:49 -07002056 ret = futex_proxy_trylock_atomic(uaddr2, hb1, hb2, &key1,
Darren Hartbab5bc92009-04-07 23:23:50 -07002057 &key2, &pi_state, nr_requeue);
Darren Hart52400ba2009-04-03 13:40:49 -07002058
2059 /*
2060 * At this point the top_waiter has either taken uaddr2 or is
2061 * waiting on it. If the former, then the pi_state will not
2062 * exist yet, look it up one more time to ensure we have a
Thomas Gleixner866293e2014-05-12 20:45:34 +00002063 * reference to it. If the lock was taken, ret contains the
2064 * vpid of the top waiter task.
Thomas Gleixnerecb38b72015-12-19 20:07:39 +00002065 * If the lock was not taken, we have pi_state and an initial
2066 * refcount on it. In case of an error we have nothing.
Darren Hart52400ba2009-04-03 13:40:49 -07002067 */
Thomas Gleixner866293e2014-05-12 20:45:34 +00002068 if (ret > 0) {
Darren Hart52400ba2009-04-03 13:40:49 -07002069 WARN_ON(pi_state);
Darren Hart89061d32009-10-15 15:30:48 -07002070 drop_count++;
Darren Hart52400ba2009-04-03 13:40:49 -07002071 task_count++;
Thomas Gleixner866293e2014-05-12 20:45:34 +00002072 /*
Thomas Gleixnerecb38b72015-12-19 20:07:39 +00002073 * If we acquired the lock, then the user space value
2074 * of uaddr2 should be vpid. It cannot be changed by
2075 * the top waiter as it is blocked on hb2 lock if it
2076 * tries to do so. If something fiddled with it behind
2077 * our back the pi state lookup might unearth it. So
2078 * we rather use the known value than rereading and
2079 * handing potential crap to lookup_pi_state.
2080 *
2081 * If that call succeeds then we have pi_state and an
2082 * initial refcount on it.
Thomas Gleixner866293e2014-05-12 20:45:34 +00002083 */
Peter Zijlstra734009e2017-03-22 11:35:52 +01002084 ret = lookup_pi_state(uaddr2, ret, hb2, &key2, &pi_state);
Darren Hart52400ba2009-04-03 13:40:49 -07002085 }
2086
2087 switch (ret) {
2088 case 0:
Thomas Gleixnerecb38b72015-12-19 20:07:39 +00002089 /* We hold a reference on the pi state. */
Darren Hart52400ba2009-04-03 13:40:49 -07002090 break;
Thomas Gleixner4959f2d2015-12-19 20:07:40 +00002091
2092 /* If the above failed, then pi_state is NULL */
Darren Hart52400ba2009-04-03 13:40:49 -07002093 case -EFAULT:
2094 double_unlock_hb(hb1, hb2);
Linus Torvalds69cd9eb2014-04-08 15:30:07 -07002095 hb_waiters_dec(hb2);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002096 put_futex_key(&key2);
2097 put_futex_key(&key1);
Thomas Gleixnerd0725992009-06-11 23:15:43 +02002098 ret = fault_in_user_writeable(uaddr2);
Darren Hart52400ba2009-04-03 13:40:49 -07002099 if (!ret)
2100 goto retry;
2101 goto out;
2102 case -EAGAIN:
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00002103 /*
2104 * Two reasons for this:
2105 * - Owner is exiting and we just wait for the
2106 * exit to complete.
2107 * - The user space value changed.
2108 */
Darren Hart52400ba2009-04-03 13:40:49 -07002109 double_unlock_hb(hb1, hb2);
Linus Torvalds69cd9eb2014-04-08 15:30:07 -07002110 hb_waiters_dec(hb2);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002111 put_futex_key(&key2);
2112 put_futex_key(&key1);
Darren Hart52400ba2009-04-03 13:40:49 -07002113 cond_resched();
2114 goto retry;
2115 default:
2116 goto out_unlock;
2117 }
2118 }
2119
Jason Low0d00c7b2014-01-12 15:31:22 -08002120 plist_for_each_entry_safe(this, next, &hb1->chain, list) {
Darren Hart52400ba2009-04-03 13:40:49 -07002121 if (task_count - nr_wake >= nr_requeue)
2122 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Darren Hart52400ba2009-04-03 13:40:49 -07002124 if (!match_futex(&this->key, &key1))
2125 continue;
2126
Darren Hart392741e2009-08-07 15:20:48 -07002127 /*
2128 * FUTEX_WAIT_REQEUE_PI and FUTEX_CMP_REQUEUE_PI should always
2129 * be paired with each other and no other futex ops.
Darren Hartaa109902012-11-26 16:29:56 -08002130 *
2131 * We should never be requeueing a futex_q with a pi_state,
2132 * which is awaiting a futex_unlock_pi().
Darren Hart392741e2009-08-07 15:20:48 -07002133 */
2134 if ((requeue_pi && !this->rt_waiter) ||
Darren Hartaa109902012-11-26 16:29:56 -08002135 (!requeue_pi && this->rt_waiter) ||
2136 this->pi_state) {
Darren Hart392741e2009-08-07 15:20:48 -07002137 ret = -EINVAL;
2138 break;
2139 }
Darren Hart52400ba2009-04-03 13:40:49 -07002140
2141 /*
2142 * Wake nr_wake waiters. For requeue_pi, if we acquired the
2143 * lock, we already woke the top_waiter. If not, it will be
2144 * woken by futex_unlock_pi().
2145 */
2146 if (++task_count <= nr_wake && !requeue_pi) {
Davidlohr Bueso1d0dcb32015-05-01 08:27:51 -07002147 mark_wake_futex(&wake_q, this);
Darren Hart52400ba2009-04-03 13:40:49 -07002148 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
Darren Hart52400ba2009-04-03 13:40:49 -07002150
Darren Hart84bc4af2009-08-13 17:36:53 -07002151 /* Ensure we requeue to the expected futex for requeue_pi. */
2152 if (requeue_pi && !match_futex(this->requeue_pi_key, &key2)) {
2153 ret = -EINVAL;
2154 break;
2155 }
2156
Darren Hart52400ba2009-04-03 13:40:49 -07002157 /*
2158 * Requeue nr_requeue waiters and possibly one more in the case
2159 * of requeue_pi if we couldn't acquire the lock atomically.
2160 */
2161 if (requeue_pi) {
Thomas Gleixnerecb38b72015-12-19 20:07:39 +00002162 /*
2163 * Prepare the waiter to take the rt_mutex. Take a
2164 * refcount on the pi_state and store the pointer in
2165 * the futex_q object of the waiter.
2166 */
Peter Zijlstrabf92cf32017-03-22 11:35:53 +01002167 get_pi_state(pi_state);
Darren Hart52400ba2009-04-03 13:40:49 -07002168 this->pi_state = pi_state;
2169 ret = rt_mutex_start_proxy_lock(&pi_state->pi_mutex,
2170 this->rt_waiter,
Thomas Gleixnerc051b212014-05-22 03:25:50 +00002171 this->task);
Darren Hart52400ba2009-04-03 13:40:49 -07002172 if (ret == 1) {
Thomas Gleixnerecb38b72015-12-19 20:07:39 +00002173 /*
2174 * We got the lock. We do neither drop the
2175 * refcount on pi_state nor clear
2176 * this->pi_state because the waiter needs the
2177 * pi_state for cleaning up the user space
2178 * value. It will drop the refcount after
2179 * doing so.
2180 */
Darren Hartbeda2c72009-08-09 15:34:39 -07002181 requeue_pi_wake_futex(this, &key2, hb2);
Darren Hart89061d32009-10-15 15:30:48 -07002182 drop_count++;
Darren Hart52400ba2009-04-03 13:40:49 -07002183 continue;
2184 } else if (ret) {
Thomas Gleixnerecb38b72015-12-19 20:07:39 +00002185 /*
2186 * rt_mutex_start_proxy_lock() detected a
2187 * potential deadlock when we tried to queue
2188 * that waiter. Drop the pi_state reference
2189 * which we took above and remove the pointer
2190 * to the state from the waiters futex_q
2191 * object.
2192 */
Darren Hart52400ba2009-04-03 13:40:49 -07002193 this->pi_state = NULL;
Thomas Gleixner29e9ee52015-12-19 20:07:39 +00002194 put_pi_state(pi_state);
Thomas Gleixner885c2cb2015-12-19 20:07:41 +00002195 /*
2196 * We stop queueing more waiters and let user
2197 * space deal with the mess.
2198 */
2199 break;
Darren Hart52400ba2009-04-03 13:40:49 -07002200 }
2201 }
2202 requeue_futex(this, hb1, hb2, &key2);
2203 drop_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 }
2205
Thomas Gleixnerecb38b72015-12-19 20:07:39 +00002206 /*
2207 * We took an extra initial reference to the pi_state either
2208 * in futex_proxy_trylock_atomic() or in lookup_pi_state(). We
2209 * need to drop it here again.
2210 */
Thomas Gleixner29e9ee52015-12-19 20:07:39 +00002211 put_pi_state(pi_state);
Thomas Gleixner885c2cb2015-12-19 20:07:41 +00002212
2213out_unlock:
Darren Hart5eb3dc62009-03-12 00:55:52 -07002214 double_unlock_hb(hb1, hb2);
Davidlohr Bueso1d0dcb32015-05-01 08:27:51 -07002215 wake_up_q(&wake_q);
Linus Torvalds69cd9eb2014-04-08 15:30:07 -07002216 hb_waiters_dec(hb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Darren Hartcd84a422009-04-02 14:19:38 -07002218 /*
2219 * drop_futex_key_refs() must be called outside the spinlocks. During
2220 * the requeue we moved futex_q's from the hash bucket at key1 to the
2221 * one at key2 and updated their key pointer. We no longer need to
2222 * hold the references to key1.
2223 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 while (--drop_count >= 0)
Rusty Russell9adef582007-05-08 00:26:42 -07002225 drop_futex_key_refs(&key1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Darren Hart42d35d42008-12-29 15:49:53 -08002227out_put_keys:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002228 put_futex_key(&key2);
Darren Hart42d35d42008-12-29 15:49:53 -08002229out_put_key1:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002230 put_futex_key(&key1);
Darren Hart42d35d42008-12-29 15:49:53 -08002231out:
Darren Hart52400ba2009-04-03 13:40:49 -07002232 return ret ? ret : task_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233}
2234
2235/* The key must be already stored in q->key. */
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01002236static inline struct futex_hash_bucket *queue_lock(struct futex_q *q)
Namhyung Kim15e408c2010-09-14 21:43:48 +09002237 __acquires(&hb->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238{
Ingo Molnare2970f22006-06-27 02:54:47 -07002239 struct futex_hash_bucket *hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Ingo Molnare2970f22006-06-27 02:54:47 -07002241 hb = hash_futex(&q->key);
Linus Torvalds11d46162014-03-20 22:11:17 -07002242
2243 /*
2244 * Increment the counter before taking the lock so that
2245 * a potential waker won't miss a to-be-slept task that is
2246 * waiting for the spinlock. This is safe as all queue_lock()
2247 * users end up calling queue_me(). Similarly, for housekeeping,
2248 * decrement the counter at queue_unlock() when some error has
2249 * occurred and we don't end up adding the task to the list.
2250 */
Davidlohr Bueso6f568eb2019-02-06 10:56:02 -08002251 hb_waiters_inc(hb); /* implies smp_mb(); (A) */
Linus Torvalds11d46162014-03-20 22:11:17 -07002252
Ingo Molnare2970f22006-06-27 02:54:47 -07002253 q->lock_ptr = &hb->lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Davidlohr Bueso6f568eb2019-02-06 10:56:02 -08002255 spin_lock(&hb->lock);
Ingo Molnare2970f22006-06-27 02:54:47 -07002256 return hb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257}
2258
Darren Hartd40d65c2009-09-21 22:30:15 -07002259static inline void
Jason Low0d00c7b2014-01-12 15:31:22 -08002260queue_unlock(struct futex_hash_bucket *hb)
Namhyung Kim15e408c2010-09-14 21:43:48 +09002261 __releases(&hb->lock)
Darren Hartd40d65c2009-09-21 22:30:15 -07002262{
2263 spin_unlock(&hb->lock);
Linus Torvalds11d46162014-03-20 22:11:17 -07002264 hb_waiters_dec(hb);
Darren Hartd40d65c2009-09-21 22:30:15 -07002265}
2266
Peter Zijlstracfafcd12017-03-22 11:35:58 +01002267static inline void __queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268{
Pierre Peifferec92d082007-05-09 02:35:00 -07002269 int prio;
2270
2271 /*
2272 * The priority used to register this element is
2273 * - either the real thread-priority for the real-time threads
2274 * (i.e. threads with a priority lower than MAX_RT_PRIO)
2275 * - or MAX_RT_PRIO for non-RT threads.
2276 * Thus, all RT-threads are woken first in priority order, and
2277 * the others are woken last, in FIFO order.
2278 */
2279 prio = min(current->normal_prio, MAX_RT_PRIO);
2280
2281 plist_node_init(&q->list, prio);
Pierre Peifferec92d082007-05-09 02:35:00 -07002282 plist_add(&q->list, &hb->chain);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002283 q->task = current;
Peter Zijlstracfafcd12017-03-22 11:35:58 +01002284}
2285
2286/**
2287 * queue_me() - Enqueue the futex_q on the futex_hash_bucket
2288 * @q: The futex_q to enqueue
2289 * @hb: The destination hash bucket
2290 *
2291 * The hb->lock must be held by the caller, and is released here. A call to
2292 * queue_me() is typically paired with exactly one call to unqueue_me(). The
2293 * exceptions involve the PI related operations, which may use unqueue_me_pi()
2294 * or nothing if the unqueue is done as part of the wake process and the unqueue
2295 * state is implicit in the state of woken task (see futex_wait_requeue_pi() for
2296 * an example).
2297 */
2298static inline void queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
2299 __releases(&hb->lock)
2300{
2301 __queue_me(q, hb);
Ingo Molnare2970f22006-06-27 02:54:47 -07002302 spin_unlock(&hb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303}
2304
Darren Hartd40d65c2009-09-21 22:30:15 -07002305/**
2306 * unqueue_me() - Remove the futex_q from its futex_hash_bucket
2307 * @q: The futex_q to unqueue
2308 *
2309 * The q->lock_ptr must not be held by the caller. A call to unqueue_me() must
2310 * be paired with exactly one earlier call to queue_me().
2311 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08002312 * Return:
Mauro Carvalho Chehab7b4ff1a2017-05-11 10:17:45 -03002313 * - 1 - if the futex_q was still queued (and we removed unqueued it);
2314 * - 0 - if the futex_q was already removed by the waking thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316static int unqueue_me(struct futex_q *q)
2317{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 spinlock_t *lock_ptr;
Ingo Molnare2970f22006-06-27 02:54:47 -07002319 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
2321 /* In the common case we don't take the spinlock, which is nice. */
Darren Hart42d35d42008-12-29 15:49:53 -08002322retry:
Jianyu Zhan29b75eb2016-03-07 09:32:24 +08002323 /*
2324 * q->lock_ptr can change between this read and the following spin_lock.
2325 * Use READ_ONCE to forbid the compiler from reloading q->lock_ptr and
2326 * optimizing lock_ptr out of the logic below.
2327 */
2328 lock_ptr = READ_ONCE(q->lock_ptr);
Stephen Hemmingerc80544d2007-10-18 03:07:05 -07002329 if (lock_ptr != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 spin_lock(lock_ptr);
2331 /*
2332 * q->lock_ptr can change between reading it and
2333 * spin_lock(), causing us to take the wrong lock. This
2334 * corrects the race condition.
2335 *
2336 * Reasoning goes like this: if we have the wrong lock,
2337 * q->lock_ptr must have changed (maybe several times)
2338 * between reading it and the spin_lock(). It can
2339 * change again after the spin_lock() but only if it was
2340 * already changed before the spin_lock(). It cannot,
2341 * however, change back to the original value. Therefore
2342 * we can detect whether we acquired the correct lock.
2343 */
2344 if (unlikely(lock_ptr != q->lock_ptr)) {
2345 spin_unlock(lock_ptr);
2346 goto retry;
2347 }
Lai Jiangshan2e129782010-12-22 14:18:50 +08002348 __unqueue_futex(q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002349
2350 BUG_ON(q->pi_state);
2351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 spin_unlock(lock_ptr);
2353 ret = 1;
2354 }
2355
Rusty Russell9adef582007-05-08 00:26:42 -07002356 drop_futex_key_refs(&q->key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 return ret;
2358}
2359
Ingo Molnarc87e2832006-06-27 02:54:58 -07002360/*
2361 * PI futexes can not be requeued and must remove themself from the
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002362 * hash bucket. The hash bucket lock (i.e. lock_ptr) is held on entry
2363 * and dropped here.
Ingo Molnarc87e2832006-06-27 02:54:58 -07002364 */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002365static void unqueue_me_pi(struct futex_q *q)
Namhyung Kim15e408c2010-09-14 21:43:48 +09002366 __releases(q->lock_ptr)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002367{
Lai Jiangshan2e129782010-12-22 14:18:50 +08002368 __unqueue_futex(q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002369
2370 BUG_ON(!q->pi_state);
Thomas Gleixner29e9ee52015-12-19 20:07:39 +00002371 put_pi_state(q->pi_state);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002372 q->pi_state = NULL;
2373
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002374 spin_unlock(q->lock_ptr);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002375}
2376
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002377static int fixup_pi_state_owner(u32 __user *uaddr, struct futex_q *q,
Peter Zijlstrac1e2f0e2017-12-08 13:49:39 +01002378 struct task_struct *argowner)
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002379{
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002380 struct futex_pi_state *pi_state = q->pi_state;
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +03002381 u32 uval, uninitialized_var(curval), newval;
Peter Zijlstrac1e2f0e2017-12-08 13:49:39 +01002382 struct task_struct *oldowner, *newowner;
2383 u32 newtid;
Will Deacon6b4f4bc2019-02-28 11:58:08 +00002384 int ret, err = 0;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002385
Peter Zijlstrac1e2f0e2017-12-08 13:49:39 +01002386 lockdep_assert_held(q->lock_ptr);
2387
Peter Zijlstra734009e2017-03-22 11:35:52 +01002388 raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock);
2389
2390 oldowner = pi_state->owner;
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002391
2392 /*
Peter Zijlstrac1e2f0e2017-12-08 13:49:39 +01002393 * We are here because either:
Peter Zijlstra16ffa122017-03-22 11:35:55 +01002394 *
Peter Zijlstrac1e2f0e2017-12-08 13:49:39 +01002395 * - we stole the lock and pi_state->owner needs updating to reflect
2396 * that (@argowner == current),
2397 *
2398 * or:
2399 *
2400 * - someone stole our lock and we need to fix things to point to the
2401 * new owner (@argowner == NULL).
2402 *
2403 * Either way, we have to replace the TID in the user space variable.
Lai Jiangshan81612392011-01-14 17:09:41 +08002404 * This must be atomic as we have to preserve the owner died bit here.
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002405 *
Darren Hartb2d09942009-03-12 00:55:37 -07002406 * Note: We write the user space value _before_ changing the pi_state
2407 * because we can fault here. Imagine swapped out pages or a fork
2408 * that marked all the anonymous memory readonly for cow.
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002409 *
Peter Zijlstra734009e2017-03-22 11:35:52 +01002410 * Modifying pi_state _before_ the user space value would leave the
2411 * pi_state in an inconsistent state when we fault here, because we
2412 * need to drop the locks to handle the fault. This might be observed
2413 * in the PID check in lookup_pi_state.
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002414 */
2415retry:
Peter Zijlstrac1e2f0e2017-12-08 13:49:39 +01002416 if (!argowner) {
2417 if (oldowner != current) {
2418 /*
2419 * We raced against a concurrent self; things are
2420 * already fixed up. Nothing to do.
2421 */
2422 ret = 0;
2423 goto out_unlock;
2424 }
2425
2426 if (__rt_mutex_futex_trylock(&pi_state->pi_mutex)) {
2427 /* We got the lock after all, nothing to fix. */
2428 ret = 0;
2429 goto out_unlock;
2430 }
2431
2432 /*
2433 * Since we just failed the trylock; there must be an owner.
2434 */
2435 newowner = rt_mutex_owner(&pi_state->pi_mutex);
2436 BUG_ON(!newowner);
2437 } else {
2438 WARN_ON_ONCE(argowner != current);
2439 if (oldowner == current) {
2440 /*
2441 * We raced against a concurrent self; things are
2442 * already fixed up. Nothing to do.
2443 */
2444 ret = 0;
2445 goto out_unlock;
2446 }
2447 newowner = argowner;
2448 }
2449
2450 newtid = task_pid_vnr(newowner) | FUTEX_WAITERS;
Peter Zijlstraa97cb0e2018-01-22 11:39:47 +01002451 /* Owner died? */
2452 if (!pi_state->owner)
2453 newtid |= FUTEX_OWNER_DIED;
Peter Zijlstrac1e2f0e2017-12-08 13:49:39 +01002454
Will Deacon6b4f4bc2019-02-28 11:58:08 +00002455 err = get_futex_value_locked(&uval, uaddr);
2456 if (err)
2457 goto handle_err;
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002458
Peter Zijlstra16ffa122017-03-22 11:35:55 +01002459 for (;;) {
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002460 newval = (uval & FUTEX_OWNER_DIED) | newtid;
2461
Will Deacon6b4f4bc2019-02-28 11:58:08 +00002462 err = cmpxchg_futex_value_locked(&curval, uaddr, uval, newval);
2463 if (err)
2464 goto handle_err;
2465
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002466 if (curval == uval)
2467 break;
2468 uval = curval;
2469 }
2470
2471 /*
2472 * We fixed up user space. Now we need to fix the pi_state
2473 * itself.
2474 */
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002475 if (pi_state->owner != NULL) {
Peter Zijlstra734009e2017-03-22 11:35:52 +01002476 raw_spin_lock(&pi_state->owner->pi_lock);
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002477 WARN_ON(list_empty(&pi_state->list));
2478 list_del_init(&pi_state->list);
Peter Zijlstra734009e2017-03-22 11:35:52 +01002479 raw_spin_unlock(&pi_state->owner->pi_lock);
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002480 }
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002481
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01002482 pi_state->owner = newowner;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002483
Peter Zijlstra734009e2017-03-22 11:35:52 +01002484 raw_spin_lock(&newowner->pi_lock);
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002485 WARN_ON(!list_empty(&pi_state->list));
Thomas Gleixnercdf71a12008-01-08 19:47:38 +01002486 list_add(&pi_state->list, &newowner->pi_state_list);
Peter Zijlstra734009e2017-03-22 11:35:52 +01002487 raw_spin_unlock(&newowner->pi_lock);
2488 raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
2489
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002490 return 0;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002491
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002492 /*
Will Deacon6b4f4bc2019-02-28 11:58:08 +00002493 * In order to reschedule or handle a page fault, we need to drop the
2494 * locks here. In the case of a fault, this gives the other task
2495 * (either the highest priority waiter itself or the task which stole
2496 * the rtmutex) the chance to try the fixup of the pi_state. So once we
2497 * are back from handling the fault we need to check the pi_state after
2498 * reacquiring the locks and before trying to do another fixup. When
2499 * the fixup has been done already we simply return.
Peter Zijlstra734009e2017-03-22 11:35:52 +01002500 *
2501 * Note: we hold both hb->lock and pi_mutex->wait_lock. We can safely
2502 * drop hb->lock since the caller owns the hb -> futex_q relation.
2503 * Dropping the pi_mutex->wait_lock requires the state revalidate.
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002504 */
Will Deacon6b4f4bc2019-02-28 11:58:08 +00002505handle_err:
Peter Zijlstra734009e2017-03-22 11:35:52 +01002506 raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002507 spin_unlock(q->lock_ptr);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002508
Will Deacon6b4f4bc2019-02-28 11:58:08 +00002509 switch (err) {
2510 case -EFAULT:
2511 ret = fault_in_user_writeable(uaddr);
2512 break;
2513
2514 case -EAGAIN:
2515 cond_resched();
2516 ret = 0;
2517 break;
2518
2519 default:
2520 WARN_ON_ONCE(1);
2521 ret = err;
2522 break;
2523 }
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002524
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002525 spin_lock(q->lock_ptr);
Peter Zijlstra734009e2017-03-22 11:35:52 +01002526 raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002527
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002528 /*
2529 * Check if someone else fixed it for us:
2530 */
Peter Zijlstra734009e2017-03-22 11:35:52 +01002531 if (pi_state->owner != oldowner) {
2532 ret = 0;
2533 goto out_unlock;
2534 }
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002535
2536 if (ret)
Peter Zijlstra734009e2017-03-22 11:35:52 +01002537 goto out_unlock;
Thomas Gleixner1b7558e2008-06-23 11:21:58 +02002538
2539 goto retry;
Peter Zijlstra734009e2017-03-22 11:35:52 +01002540
2541out_unlock:
2542 raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
2543 return ret;
Pierre Peifferd0aa7a72007-05-09 02:35:02 -07002544}
2545
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002546static long futex_wait_restart(struct restart_block *restart);
Thomas Gleixner36cf3b52007-07-15 23:41:20 -07002547
Darren Hartca5f9522009-04-03 13:39:33 -07002548/**
Darren Hartdd973992009-04-03 13:40:02 -07002549 * fixup_owner() - Post lock pi_state and corner case management
2550 * @uaddr: user address of the futex
Darren Hartdd973992009-04-03 13:40:02 -07002551 * @q: futex_q (contains pi_state and access to the rt_mutex)
2552 * @locked: if the attempt to take the rt_mutex succeeded (1) or not (0)
2553 *
2554 * After attempting to lock an rt_mutex, this function is called to cleanup
2555 * the pi_state owner as well as handle race conditions that may allow us to
2556 * acquire the lock. Must be called with the hb lock held.
2557 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08002558 * Return:
Mauro Carvalho Chehab7b4ff1a2017-05-11 10:17:45 -03002559 * - 1 - success, lock taken;
2560 * - 0 - success, lock not taken;
2561 * - <0 - on error (-EFAULT)
Darren Hartdd973992009-04-03 13:40:02 -07002562 */
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002563static int fixup_owner(u32 __user *uaddr, struct futex_q *q, int locked)
Darren Hartdd973992009-04-03 13:40:02 -07002564{
Darren Hartdd973992009-04-03 13:40:02 -07002565 int ret = 0;
2566
2567 if (locked) {
2568 /*
2569 * Got the lock. We might not be the anticipated owner if we
2570 * did a lock-steal - fix up the PI-state in that case:
Peter Zijlstra16ffa122017-03-22 11:35:55 +01002571 *
Peter Zijlstrac1e2f0e2017-12-08 13:49:39 +01002572 * Speculative pi_state->owner read (we don't hold wait_lock);
2573 * since we own the lock pi_state->owner == current is the
2574 * stable state, anything else needs more attention.
Darren Hartdd973992009-04-03 13:40:02 -07002575 */
2576 if (q->pi_state->owner != current)
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002577 ret = fixup_pi_state_owner(uaddr, q, current);
Darren Hartdd973992009-04-03 13:40:02 -07002578 goto out;
2579 }
2580
2581 /*
Peter Zijlstrac1e2f0e2017-12-08 13:49:39 +01002582 * If we didn't get the lock; check if anybody stole it from us. In
2583 * that case, we need to fix up the uval to point to them instead of
2584 * us, otherwise bad things happen. [10]
2585 *
2586 * Another speculative read; pi_state->owner == current is unstable
2587 * but needs our attention.
2588 */
2589 if (q->pi_state->owner == current) {
2590 ret = fixup_pi_state_owner(uaddr, q, NULL);
2591 goto out;
2592 }
2593
2594 /*
Darren Hartdd973992009-04-03 13:40:02 -07002595 * Paranoia check. If we did not take the lock, then we should not be
Lai Jiangshan81612392011-01-14 17:09:41 +08002596 * the owner of the rt_mutex.
Darren Hartdd973992009-04-03 13:40:02 -07002597 */
Peter Zijlstra73d786b2017-03-22 11:35:54 +01002598 if (rt_mutex_owner(&q->pi_state->pi_mutex) == current) {
Darren Hartdd973992009-04-03 13:40:02 -07002599 printk(KERN_ERR "fixup_owner: ret = %d pi-mutex: %p "
2600 "pi-state %p\n", ret,
2601 q->pi_state->pi_mutex.owner,
2602 q->pi_state->owner);
Peter Zijlstra73d786b2017-03-22 11:35:54 +01002603 }
Darren Hartdd973992009-04-03 13:40:02 -07002604
2605out:
2606 return ret ? ret : locked;
2607}
2608
2609/**
Darren Hartca5f9522009-04-03 13:39:33 -07002610 * futex_wait_queue_me() - queue_me() and wait for wakeup, timeout, or signal
2611 * @hb: the futex hash bucket, must be locked by the caller
2612 * @q: the futex_q to queue up on
2613 * @timeout: the prepared hrtimer_sleeper, or null for no timeout
Darren Hartca5f9522009-04-03 13:39:33 -07002614 */
2615static void futex_wait_queue_me(struct futex_hash_bucket *hb, struct futex_q *q,
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02002616 struct hrtimer_sleeper *timeout)
Darren Hartca5f9522009-04-03 13:39:33 -07002617{
Darren Hart9beba3c2009-09-24 11:54:47 -07002618 /*
2619 * The task state is guaranteed to be set before another task can
Peter Zijlstrab92b8b32015-05-12 10:51:55 +02002620 * wake it. set_current_state() is implemented using smp_store_mb() and
Darren Hart9beba3c2009-09-24 11:54:47 -07002621 * queue_me() calls spin_unlock() upon completion, both serializing
2622 * access to the hash list and forcing another memory barrier.
2623 */
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02002624 set_current_state(TASK_INTERRUPTIBLE);
Darren Hart0729e192009-09-21 22:30:38 -07002625 queue_me(q, hb);
Darren Hartca5f9522009-04-03 13:39:33 -07002626
2627 /* Arm the timer */
Thomas Gleixner2e4b0d32015-04-14 21:09:13 +00002628 if (timeout)
Darren Hartca5f9522009-04-03 13:39:33 -07002629 hrtimer_start_expires(&timeout->timer, HRTIMER_MODE_ABS);
Darren Hartca5f9522009-04-03 13:39:33 -07002630
2631 /*
Darren Hart0729e192009-09-21 22:30:38 -07002632 * If we have been removed from the hash list, then another task
2633 * has tried to wake us, and we can skip the call to schedule().
Darren Hartca5f9522009-04-03 13:39:33 -07002634 */
2635 if (likely(!plist_node_empty(&q->list))) {
2636 /*
2637 * If the timer has already expired, current will already be
2638 * flagged for rescheduling. Only call schedule if there
2639 * is no timeout, or if it has yet to expire.
2640 */
2641 if (!timeout || timeout->task)
Colin Cross88c80042013-05-01 18:35:05 -07002642 freezable_schedule();
Darren Hartca5f9522009-04-03 13:39:33 -07002643 }
2644 __set_current_state(TASK_RUNNING);
2645}
2646
Darren Hartf8010732009-04-03 13:40:40 -07002647/**
2648 * futex_wait_setup() - Prepare to wait on a futex
2649 * @uaddr: the futex userspace address
2650 * @val: the expected value
Darren Hartb41277d2010-11-08 13:10:09 -08002651 * @flags: futex flags (FLAGS_SHARED, etc.)
Darren Hartf8010732009-04-03 13:40:40 -07002652 * @q: the associated futex_q
2653 * @hb: storage for hash_bucket pointer to be returned to caller
2654 *
2655 * Setup the futex_q and locate the hash_bucket. Get the futex value and
2656 * compare it with the expected value. Handle atomic faults internally.
2657 * Return with the hb lock held and a q.key reference on success, and unlocked
2658 * with no q.key reference on failure.
2659 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08002660 * Return:
Mauro Carvalho Chehab7b4ff1a2017-05-11 10:17:45 -03002661 * - 0 - uaddr contains val and hb has been locked;
2662 * - <1 - -EFAULT or -EWOULDBLOCK (uaddr does not contain val) and hb is unlocked
Darren Hartf8010732009-04-03 13:40:40 -07002663 */
Darren Hartb41277d2010-11-08 13:10:09 -08002664static int futex_wait_setup(u32 __user *uaddr, u32 val, unsigned int flags,
Darren Hartf8010732009-04-03 13:40:40 -07002665 struct futex_q *q, struct futex_hash_bucket **hb)
2666{
2667 u32 uval;
2668 int ret;
2669
2670 /*
2671 * Access the page AFTER the hash-bucket is locked.
2672 * Order is important:
2673 *
2674 * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
2675 * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); }
2676 *
2677 * The basic logical guarantee of a futex is that it blocks ONLY
2678 * if cond(var) is known to be true at the time of blocking, for
Michel Lespinasse8fe8f542011-03-06 18:07:50 -08002679 * any cond. If we locked the hash-bucket after testing *uaddr, that
2680 * would open a race condition where we could block indefinitely with
Darren Hartf8010732009-04-03 13:40:40 -07002681 * cond(var) false, which would violate the guarantee.
2682 *
Michel Lespinasse8fe8f542011-03-06 18:07:50 -08002683 * On the other hand, we insert q and release the hash-bucket only
2684 * after testing *uaddr. This guarantees that futex_wait() will NOT
2685 * absorb a wakeup if *uaddr does not match the desired values
2686 * while the syscall executes.
Darren Hartf8010732009-04-03 13:40:40 -07002687 */
2688retry:
Linus Torvalds96d4f262019-01-03 18:57:57 -08002689 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q->key, FUTEX_READ);
Darren Hartf8010732009-04-03 13:40:40 -07002690 if (unlikely(ret != 0))
Darren Harta5a2a0c2009-04-10 09:50:05 -07002691 return ret;
Darren Hartf8010732009-04-03 13:40:40 -07002692
2693retry_private:
2694 *hb = queue_lock(q);
2695
2696 ret = get_futex_value_locked(&uval, uaddr);
2697
2698 if (ret) {
Jason Low0d00c7b2014-01-12 15:31:22 -08002699 queue_unlock(*hb);
Darren Hartf8010732009-04-03 13:40:40 -07002700
2701 ret = get_user(uval, uaddr);
2702 if (ret)
2703 goto out;
2704
Darren Hartb41277d2010-11-08 13:10:09 -08002705 if (!(flags & FLAGS_SHARED))
Darren Hartf8010732009-04-03 13:40:40 -07002706 goto retry_private;
2707
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002708 put_futex_key(&q->key);
Darren Hartf8010732009-04-03 13:40:40 -07002709 goto retry;
2710 }
2711
2712 if (uval != val) {
Jason Low0d00c7b2014-01-12 15:31:22 -08002713 queue_unlock(*hb);
Darren Hartf8010732009-04-03 13:40:40 -07002714 ret = -EWOULDBLOCK;
2715 }
2716
2717out:
2718 if (ret)
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002719 put_futex_key(&q->key);
Darren Hartf8010732009-04-03 13:40:40 -07002720 return ret;
2721}
2722
Darren Hartb41277d2010-11-08 13:10:09 -08002723static int futex_wait(u32 __user *uaddr, unsigned int flags, u32 val,
2724 ktime_t *abs_time, u32 bitset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725{
Waiman Long5ca584d2019-05-28 12:03:45 -04002726 struct hrtimer_sleeper timeout, *to;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002727 struct restart_block *restart;
Ingo Molnare2970f22006-06-27 02:54:47 -07002728 struct futex_hash_bucket *hb;
Darren Hart5bdb05f2010-11-08 13:40:28 -08002729 struct futex_q q = futex_q_init;
Ingo Molnare2970f22006-06-27 02:54:47 -07002730 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
Thomas Gleixnercd689982008-02-01 17:45:14 +01002732 if (!bitset)
2733 return -EINVAL;
Thomas Gleixnercd689982008-02-01 17:45:14 +01002734 q.bitset = bitset;
Darren Hartca5f9522009-04-03 13:39:33 -07002735
Waiman Long5ca584d2019-05-28 12:03:45 -04002736 to = futex_setup_timer(abs_time, &timeout, flags,
2737 current->timer_slack_ns);
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002738retry:
Darren Hart7ada8762010-10-17 08:35:04 -07002739 /*
2740 * Prepare to wait on uaddr. On success, holds hb lock and increments
2741 * q.key refs.
2742 */
Darren Hartb41277d2010-11-08 13:10:09 -08002743 ret = futex_wait_setup(uaddr, val, flags, &q, &hb);
Darren Hartf8010732009-04-03 13:40:40 -07002744 if (ret)
Darren Hart42d35d42008-12-29 15:49:53 -08002745 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Darren Hartca5f9522009-04-03 13:39:33 -07002747 /* queue_me and wait for wakeup, timeout, or a signal. */
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02002748 futex_wait_queue_me(hb, &q, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
2750 /* If we were woken (and unqueued), we succeeded, whatever. */
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002751 ret = 0;
Darren Hart7ada8762010-10-17 08:35:04 -07002752 /* unqueue_me() drops q.key ref */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 if (!unqueue_me(&q))
Darren Hart7ada8762010-10-17 08:35:04 -07002754 goto out;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002755 ret = -ETIMEDOUT;
Darren Hartca5f9522009-04-03 13:39:33 -07002756 if (to && !to->task)
Darren Hart7ada8762010-10-17 08:35:04 -07002757 goto out;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002758
Ingo Molnare2970f22006-06-27 02:54:47 -07002759 /*
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002760 * We expect signal_pending(current), but we might be the
2761 * victim of a spurious wakeup as well.
Ingo Molnare2970f22006-06-27 02:54:47 -07002762 */
Darren Hart7ada8762010-10-17 08:35:04 -07002763 if (!signal_pending(current))
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002764 goto retry;
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02002765
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002766 ret = -ERESTARTSYS;
Pierre Peifferc19384b2007-05-09 02:35:02 -07002767 if (!abs_time)
Darren Hart7ada8762010-10-17 08:35:04 -07002768 goto out;
Steven Rostedtce6bd422007-12-05 15:46:09 +01002769
Andy Lutomirskif56141e2015-02-12 15:01:14 -08002770 restart = &current->restart_block;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002771 restart->fn = futex_wait_restart;
Namhyung Kima3c74c52010-09-14 21:43:47 +09002772 restart->futex.uaddr = uaddr;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002773 restart->futex.val = val;
Thomas Gleixner2456e852016-12-25 11:38:40 +01002774 restart->futex.time = *abs_time;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002775 restart->futex.bitset = bitset;
Darren Hart0cd9c642011-04-14 15:41:57 -07002776 restart->futex.flags = flags | FLAGS_HAS_TIMEOUT;
Peter Zijlstra2fff78c2009-02-11 18:10:10 +01002777
2778 ret = -ERESTART_RESTARTBLOCK;
2779
Darren Hart42d35d42008-12-29 15:49:53 -08002780out:
Darren Hartca5f9522009-04-03 13:39:33 -07002781 if (to) {
2782 hrtimer_cancel(&to->timer);
2783 destroy_hrtimer_on_stack(&to->timer);
2784 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07002785 return ret;
2786}
2787
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002788
2789static long futex_wait_restart(struct restart_block *restart)
2790{
Namhyung Kima3c74c52010-09-14 21:43:47 +09002791 u32 __user *uaddr = restart->futex.uaddr;
Darren Harta72188d2009-04-03 13:40:22 -07002792 ktime_t t, *tp = NULL;
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002793
Darren Harta72188d2009-04-03 13:40:22 -07002794 if (restart->futex.flags & FLAGS_HAS_TIMEOUT) {
Thomas Gleixner2456e852016-12-25 11:38:40 +01002795 t = restart->futex.time;
Darren Harta72188d2009-04-03 13:40:22 -07002796 tp = &t;
2797 }
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002798 restart->fn = do_no_restart_syscall;
Darren Hartb41277d2010-11-08 13:10:09 -08002799
2800 return (long)futex_wait(uaddr, restart->futex.flags,
2801 restart->futex.val, tp, restart->futex.bitset);
Nick Piggin72c1bbf2007-05-08 00:26:43 -07002802}
2803
2804
Ingo Molnarc87e2832006-06-27 02:54:58 -07002805/*
2806 * Userspace tried a 0 -> TID atomic transition of the futex value
2807 * and failed. The kernel side here does the whole locking operation:
Davidlohr Bueso767f5092015-06-29 23:26:01 -07002808 * if there are waiters then it will block as a consequence of relying
2809 * on rt-mutexes, it does PI, etc. (Due to races the kernel might see
2810 * a 0 value of the futex too.).
2811 *
2812 * Also serves as futex trylock_pi()'ing, and due semantics.
Ingo Molnarc87e2832006-06-27 02:54:58 -07002813 */
Michael Kerrisk996636d2015-01-16 20:28:06 +01002814static int futex_lock_pi(u32 __user *uaddr, unsigned int flags,
Darren Hartb41277d2010-11-08 13:10:09 -08002815 ktime_t *time, int trylock)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002816{
Waiman Long5ca584d2019-05-28 12:03:45 -04002817 struct hrtimer_sleeper timeout, *to;
Peter Zijlstra16ffa122017-03-22 11:35:55 +01002818 struct futex_pi_state *pi_state = NULL;
Peter Zijlstracfafcd12017-03-22 11:35:58 +01002819 struct rt_mutex_waiter rt_waiter;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002820 struct futex_hash_bucket *hb;
Darren Hart5bdb05f2010-11-08 13:40:28 -08002821 struct futex_q q = futex_q_init;
Darren Hartdd973992009-04-03 13:40:02 -07002822 int res, ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002823
Nicolas Pitrebc2eecd2017-08-01 00:31:32 -04002824 if (!IS_ENABLED(CONFIG_FUTEX_PI))
2825 return -ENOSYS;
2826
Ingo Molnarc87e2832006-06-27 02:54:58 -07002827 if (refill_pi_state_cache())
2828 return -ENOMEM;
2829
Waiman Long5ca584d2019-05-28 12:03:45 -04002830 to = futex_setup_timer(time, &timeout, FLAGS_CLOCKRT, 0);
Thomas Gleixnerc5780e92006-09-08 09:47:15 -07002831
Darren Hart42d35d42008-12-29 15:49:53 -08002832retry:
Linus Torvalds96d4f262019-01-03 18:57:57 -08002833 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q.key, FUTEX_WRITE);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002834 if (unlikely(ret != 0))
Darren Hart42d35d42008-12-29 15:49:53 -08002835 goto out;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002836
Darren Harte4dc5b72009-03-12 00:56:13 -07002837retry_private:
Eric Sesterhenn82af7ac2008-01-25 10:40:46 +01002838 hb = queue_lock(&q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002839
Darren Hartbab5bc92009-04-07 23:23:50 -07002840 ret = futex_lock_pi_atomic(uaddr, hb, &q.key, &q.pi_state, current, 0);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002841 if (unlikely(ret)) {
Davidlohr Bueso767f5092015-06-29 23:26:01 -07002842 /*
2843 * Atomic work succeeded and we got the lock,
2844 * or failed. Either way, we do _not_ block.
2845 */
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002846 switch (ret) {
Darren Hart1a520842009-04-03 13:39:52 -07002847 case 1:
2848 /* We got the lock. */
2849 ret = 0;
2850 goto out_unlock_put_key;
2851 case -EFAULT:
2852 goto uaddr_faulted;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002853 case -EAGAIN:
2854 /*
Thomas Gleixneraf54d6a2014-06-11 20:45:41 +00002855 * Two reasons for this:
2856 * - Task is exiting and we just wait for the
2857 * exit to complete.
2858 * - The user space value changed.
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002859 */
Jason Low0d00c7b2014-01-12 15:31:22 -08002860 queue_unlock(hb);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002861 put_futex_key(&q.key);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002862 cond_resched();
2863 goto retry;
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002864 default:
Darren Hart42d35d42008-12-29 15:49:53 -08002865 goto out_unlock_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002866 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07002867 }
2868
Peter Zijlstracfafcd12017-03-22 11:35:58 +01002869 WARN_ON(!q.pi_state);
2870
Ingo Molnarc87e2832006-06-27 02:54:58 -07002871 /*
2872 * Only actually queue now that the atomic ops are done:
2873 */
Peter Zijlstracfafcd12017-03-22 11:35:58 +01002874 __queue_me(&q, hb);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002875
Peter Zijlstracfafcd12017-03-22 11:35:58 +01002876 if (trylock) {
Peter Zijlstra5293c2e2017-03-22 11:35:51 +01002877 ret = rt_mutex_futex_trylock(&q.pi_state->pi_mutex);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002878 /* Fixup the trylock return value: */
2879 ret = ret ? 0 : -EWOULDBLOCK;
Peter Zijlstracfafcd12017-03-22 11:35:58 +01002880 goto no_block;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002881 }
2882
Peter Zijlstracfafcd12017-03-22 11:35:58 +01002883 rt_mutex_init_waiter(&rt_waiter);
Peter Zijlstra56222b22017-03-22 11:36:00 +01002884
2885 /*
2886 * On PREEMPT_RT_FULL, when hb->lock becomes an rt_mutex, we must not
2887 * hold it while doing rt_mutex_start_proxy(), because then it will
2888 * include hb->lock in the blocking chain, even through we'll not in
2889 * fact hold it while blocking. This will lead it to report -EDEADLK
2890 * and BUG when futex_unlock_pi() interleaves with this.
2891 *
2892 * Therefore acquire wait_lock while holding hb->lock, but drop the
Thomas Gleixner1a1fb982019-01-29 23:15:12 +01002893 * latter before calling __rt_mutex_start_proxy_lock(). This
2894 * interleaves with futex_unlock_pi() -- which does a similar lock
2895 * handoff -- such that the latter can observe the futex_q::pi_state
2896 * before __rt_mutex_start_proxy_lock() is done.
Peter Zijlstra56222b22017-03-22 11:36:00 +01002897 */
2898 raw_spin_lock_irq(&q.pi_state->pi_mutex.wait_lock);
2899 spin_unlock(q.lock_ptr);
Thomas Gleixner1a1fb982019-01-29 23:15:12 +01002900 /*
2901 * __rt_mutex_start_proxy_lock() unconditionally enqueues the @rt_waiter
2902 * such that futex_unlock_pi() is guaranteed to observe the waiter when
2903 * it sees the futex_q::pi_state.
2904 */
Peter Zijlstra56222b22017-03-22 11:36:00 +01002905 ret = __rt_mutex_start_proxy_lock(&q.pi_state->pi_mutex, &rt_waiter, current);
2906 raw_spin_unlock_irq(&q.pi_state->pi_mutex.wait_lock);
2907
Peter Zijlstracfafcd12017-03-22 11:35:58 +01002908 if (ret) {
2909 if (ret == 1)
2910 ret = 0;
Thomas Gleixner1a1fb982019-01-29 23:15:12 +01002911 goto cleanup;
Peter Zijlstracfafcd12017-03-22 11:35:58 +01002912 }
2913
Peter Zijlstracfafcd12017-03-22 11:35:58 +01002914 if (unlikely(to))
2915 hrtimer_start_expires(&to->timer, HRTIMER_MODE_ABS);
2916
2917 ret = rt_mutex_wait_proxy_lock(&q.pi_state->pi_mutex, to, &rt_waiter);
2918
Thomas Gleixner1a1fb982019-01-29 23:15:12 +01002919cleanup:
Vernon Mauerya99e4e42006-07-01 04:35:42 -07002920 spin_lock(q.lock_ptr);
Darren Hartdd973992009-04-03 13:40:02 -07002921 /*
Thomas Gleixner1a1fb982019-01-29 23:15:12 +01002922 * If we failed to acquire the lock (deadlock/signal/timeout), we must
Peter Zijlstracfafcd12017-03-22 11:35:58 +01002923 * first acquire the hb->lock before removing the lock from the
Thomas Gleixner1a1fb982019-01-29 23:15:12 +01002924 * rt_mutex waitqueue, such that we can keep the hb and rt_mutex wait
2925 * lists consistent.
Peter Zijlstra56222b22017-03-22 11:36:00 +01002926 *
2927 * In particular; it is important that futex_unlock_pi() can not
2928 * observe this inconsistency.
Peter Zijlstracfafcd12017-03-22 11:35:58 +01002929 */
2930 if (ret && !rt_mutex_cleanup_proxy_lock(&q.pi_state->pi_mutex, &rt_waiter))
2931 ret = 0;
2932
2933no_block:
2934 /*
Darren Hartdd973992009-04-03 13:40:02 -07002935 * Fixup the pi_state owner and possibly acquire the lock if we
2936 * haven't already.
2937 */
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002938 res = fixup_owner(uaddr, &q, !ret);
Darren Hartdd973992009-04-03 13:40:02 -07002939 /*
2940 * If fixup_owner() returned an error, proprogate that. If it acquired
2941 * the lock, clear our -ETIMEDOUT or -EINTR.
2942 */
2943 if (res)
2944 ret = (res < 0) ? res : 0;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002945
Darren Harte8f63862009-03-12 00:56:06 -07002946 /*
Darren Hartdd973992009-04-03 13:40:02 -07002947 * If fixup_owner() faulted and was unable to handle the fault, unlock
2948 * it and return the fault to userspace.
Darren Harte8f63862009-03-12 00:56:06 -07002949 */
Peter Zijlstra16ffa122017-03-22 11:35:55 +01002950 if (ret && (rt_mutex_owner(&q.pi_state->pi_mutex) == current)) {
2951 pi_state = q.pi_state;
2952 get_pi_state(pi_state);
2953 }
Darren Harte8f63862009-03-12 00:56:06 -07002954
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002955 /* Unqueue and drop the lock */
2956 unqueue_me_pi(&q);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002957
Peter Zijlstra16ffa122017-03-22 11:35:55 +01002958 if (pi_state) {
2959 rt_mutex_futex_unlock(&pi_state->pi_mutex);
2960 put_pi_state(pi_state);
2961 }
2962
Mikael Pettersson5ecb01c2010-01-23 22:36:29 +01002963 goto out_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002964
Darren Hart42d35d42008-12-29 15:49:53 -08002965out_unlock_put_key:
Jason Low0d00c7b2014-01-12 15:31:22 -08002966 queue_unlock(hb);
Ingo Molnarc87e2832006-06-27 02:54:58 -07002967
Darren Hart42d35d42008-12-29 15:49:53 -08002968out_put_key:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002969 put_futex_key(&q.key);
Darren Hart42d35d42008-12-29 15:49:53 -08002970out:
Thomas Gleixner97181f92017-04-10 18:03:36 +02002971 if (to) {
2972 hrtimer_cancel(&to->timer);
Thomas Gleixner237fc6e2008-04-30 00:55:04 -07002973 destroy_hrtimer_on_stack(&to->timer);
Thomas Gleixner97181f92017-04-10 18:03:36 +02002974 }
Darren Hartdd973992009-04-03 13:40:02 -07002975 return ret != -EINTR ? ret : -ERESTARTNOINTR;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002976
Darren Hart42d35d42008-12-29 15:49:53 -08002977uaddr_faulted:
Jason Low0d00c7b2014-01-12 15:31:22 -08002978 queue_unlock(hb);
Alexey Kuznetsov778e9a92007-06-08 13:47:00 -07002979
Thomas Gleixnerd0725992009-06-11 23:15:43 +02002980 ret = fault_in_user_writeable(uaddr);
Darren Harte4dc5b72009-03-12 00:56:13 -07002981 if (ret)
2982 goto out_put_key;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002983
Darren Hartb41277d2010-11-08 13:10:09 -08002984 if (!(flags & FLAGS_SHARED))
Darren Harte4dc5b72009-03-12 00:56:13 -07002985 goto retry_private;
2986
Thomas Gleixnerae791a22010-11-10 13:30:36 +01002987 put_futex_key(&q.key);
Darren Harte4dc5b72009-03-12 00:56:13 -07002988 goto retry;
Ingo Molnarc87e2832006-06-27 02:54:58 -07002989}
2990
2991/*
Ingo Molnarc87e2832006-06-27 02:54:58 -07002992 * Userspace attempted a TID -> 0 atomic transition, and failed.
2993 * This is the in-kernel slowpath: we look up the PI state (if any),
2994 * and do the rt-mutex unlock.
2995 */
Darren Hartb41277d2010-11-08 13:10:09 -08002996static int futex_unlock_pi(u32 __user *uaddr, unsigned int flags)
Ingo Molnarc87e2832006-06-27 02:54:58 -07002997{
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00002998 u32 uninitialized_var(curval), uval, vpid = task_pid_vnr(current);
Peter Zijlstra38d47c12008-09-26 19:32:20 +02002999 union futex_key key = FUTEX_KEY_INIT;
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00003000 struct futex_hash_bucket *hb;
Peter Zijlstra499f5ac2017-03-22 11:35:48 +01003001 struct futex_q *top_waiter;
Darren Harte4dc5b72009-03-12 00:56:13 -07003002 int ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -07003003
Nicolas Pitrebc2eecd2017-08-01 00:31:32 -04003004 if (!IS_ENABLED(CONFIG_FUTEX_PI))
3005 return -ENOSYS;
3006
Ingo Molnarc87e2832006-06-27 02:54:58 -07003007retry:
3008 if (get_user(uval, uaddr))
3009 return -EFAULT;
3010 /*
3011 * We release only a lock we actually own:
3012 */
Thomas Gleixnerc0c9ed12011-03-11 11:51:22 +01003013 if ((uval & FUTEX_TID_MASK) != vpid)
Ingo Molnarc87e2832006-06-27 02:54:58 -07003014 return -EPERM;
Ingo Molnarc87e2832006-06-27 02:54:58 -07003015
Linus Torvalds96d4f262019-01-03 18:57:57 -08003016 ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, FUTEX_WRITE);
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00003017 if (ret)
3018 return ret;
Ingo Molnarc87e2832006-06-27 02:54:58 -07003019
3020 hb = hash_futex(&key);
3021 spin_lock(&hb->lock);
3022
Ingo Molnarc87e2832006-06-27 02:54:58 -07003023 /*
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00003024 * Check waiters first. We do not trust user space values at
3025 * all and we at least want to know if user space fiddled
3026 * with the futex value instead of blindly unlocking.
Ingo Molnarc87e2832006-06-27 02:54:58 -07003027 */
Peter Zijlstra499f5ac2017-03-22 11:35:48 +01003028 top_waiter = futex_top_waiter(hb, &key);
3029 if (top_waiter) {
Peter Zijlstra16ffa122017-03-22 11:35:55 +01003030 struct futex_pi_state *pi_state = top_waiter->pi_state;
3031
3032 ret = -EINVAL;
3033 if (!pi_state)
3034 goto out_unlock;
3035
Sebastian Andrzej Siewior802ab582015-06-17 10:33:50 +02003036 /*
Peter Zijlstra16ffa122017-03-22 11:35:55 +01003037 * If current does not own the pi_state then the futex is
3038 * inconsistent and user space fiddled with the futex value.
3039 */
3040 if (pi_state->owner != current)
3041 goto out_unlock;
3042
Peter Zijlstra16ffa122017-03-22 11:35:55 +01003043 get_pi_state(pi_state);
Peter Zijlstrabebe5b52017-03-22 11:35:59 +01003044 /*
Peter Zijlstrabebe5b52017-03-22 11:35:59 +01003045 * By taking wait_lock while still holding hb->lock, we ensure
3046 * there is no point where we hold neither; and therefore
3047 * wake_futex_pi() must observe a state consistent with what we
3048 * observed.
Thomas Gleixner1a1fb982019-01-29 23:15:12 +01003049 *
3050 * In particular; this forces __rt_mutex_start_proxy() to
3051 * complete such that we're guaranteed to observe the
3052 * rt_waiter. Also see the WARN in wake_futex_pi().
Peter Zijlstrabebe5b52017-03-22 11:35:59 +01003053 */
3054 raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock);
Peter Zijlstra16ffa122017-03-22 11:35:55 +01003055 spin_unlock(&hb->lock);
3056
Peter Zijlstrac74aef22017-09-22 17:48:06 +02003057 /* drops pi_state->pi_mutex.wait_lock */
Peter Zijlstra16ffa122017-03-22 11:35:55 +01003058 ret = wake_futex_pi(uaddr, uval, pi_state);
3059
3060 put_pi_state(pi_state);
3061
3062 /*
3063 * Success, we're done! No tricky corner cases.
Sebastian Andrzej Siewior802ab582015-06-17 10:33:50 +02003064 */
3065 if (!ret)
3066 goto out_putkey;
Ingo Molnarc87e2832006-06-27 02:54:58 -07003067 /*
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00003068 * The atomic access to the futex value generated a
3069 * pagefault, so retry the user-access and the wakeup:
Ingo Molnarc87e2832006-06-27 02:54:58 -07003070 */
3071 if (ret == -EFAULT)
3072 goto pi_faulted;
Sebastian Andrzej Siewior802ab582015-06-17 10:33:50 +02003073 /*
Sebastian Andrzej Siewior89e9e662016-04-15 14:35:39 +02003074 * A unconditional UNLOCK_PI op raced against a waiter
3075 * setting the FUTEX_WAITERS bit. Try again.
3076 */
Will Deacon6b4f4bc2019-02-28 11:58:08 +00003077 if (ret == -EAGAIN)
3078 goto pi_retry;
Sebastian Andrzej Siewior89e9e662016-04-15 14:35:39 +02003079 /*
Sebastian Andrzej Siewior802ab582015-06-17 10:33:50 +02003080 * wake_futex_pi has detected invalid state. Tell user
3081 * space.
3082 */
Peter Zijlstra16ffa122017-03-22 11:35:55 +01003083 goto out_putkey;
Ingo Molnarc87e2832006-06-27 02:54:58 -07003084 }
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00003085
Ingo Molnarc87e2832006-06-27 02:54:58 -07003086 /*
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00003087 * We have no kernel internal state, i.e. no waiters in the
3088 * kernel. Waiters which are about to queue themselves are stuck
3089 * on hb->lock. So we can safely ignore them. We do neither
3090 * preserve the WAITERS bit not the OWNER_DIED one. We are the
3091 * owner.
Ingo Molnarc87e2832006-06-27 02:54:58 -07003092 */
Will Deacon6b4f4bc2019-02-28 11:58:08 +00003093 if ((ret = cmpxchg_futex_value_locked(&curval, uaddr, uval, 0))) {
Peter Zijlstra16ffa122017-03-22 11:35:55 +01003094 spin_unlock(&hb->lock);
Will Deacon6b4f4bc2019-02-28 11:58:08 +00003095 switch (ret) {
3096 case -EFAULT:
3097 goto pi_faulted;
3098
3099 case -EAGAIN:
3100 goto pi_retry;
3101
3102 default:
3103 WARN_ON_ONCE(1);
3104 goto out_putkey;
3105 }
Peter Zijlstra16ffa122017-03-22 11:35:55 +01003106 }
Ingo Molnarc87e2832006-06-27 02:54:58 -07003107
Thomas Gleixnerccf9e6a2014-06-11 20:45:38 +00003108 /*
3109 * If uval has changed, let user space handle it.
3110 */
3111 ret = (curval == uval) ? 0 : -EAGAIN;
3112
Ingo Molnarc87e2832006-06-27 02:54:58 -07003113out_unlock:
3114 spin_unlock(&hb->lock);
Sebastian Andrzej Siewior802ab582015-06-17 10:33:50 +02003115out_putkey:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01003116 put_futex_key(&key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07003117 return ret;
3118
Will Deacon6b4f4bc2019-02-28 11:58:08 +00003119pi_retry:
3120 put_futex_key(&key);
3121 cond_resched();
3122 goto retry;
3123
Ingo Molnarc87e2832006-06-27 02:54:58 -07003124pi_faulted:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01003125 put_futex_key(&key);
Ingo Molnarc87e2832006-06-27 02:54:58 -07003126
Thomas Gleixnerd0725992009-06-11 23:15:43 +02003127 ret = fault_in_user_writeable(uaddr);
Darren Hartb5686362008-12-18 15:06:34 -08003128 if (!ret)
Ingo Molnarc87e2832006-06-27 02:54:58 -07003129 goto retry;
3130
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 return ret;
3132}
3133
Darren Hart52400ba2009-04-03 13:40:49 -07003134/**
3135 * handle_early_requeue_pi_wakeup() - Detect early wakeup on the initial futex
3136 * @hb: the hash_bucket futex_q was original enqueued on
3137 * @q: the futex_q woken while waiting to be requeued
3138 * @key2: the futex_key of the requeue target futex
3139 * @timeout: the timeout associated with the wait (NULL if none)
3140 *
3141 * Detect if the task was woken on the initial futex as opposed to the requeue
3142 * target futex. If so, determine if it was a timeout or a signal that caused
3143 * the wakeup and return the appropriate error code to the caller. Must be
3144 * called with the hb lock held.
3145 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08003146 * Return:
Mauro Carvalho Chehab7b4ff1a2017-05-11 10:17:45 -03003147 * - 0 = no early wakeup detected;
3148 * - <0 = -ETIMEDOUT or -ERESTARTNOINTR
Darren Hart52400ba2009-04-03 13:40:49 -07003149 */
3150static inline
3151int handle_early_requeue_pi_wakeup(struct futex_hash_bucket *hb,
3152 struct futex_q *q, union futex_key *key2,
3153 struct hrtimer_sleeper *timeout)
3154{
3155 int ret = 0;
3156
3157 /*
3158 * With the hb lock held, we avoid races while we process the wakeup.
3159 * We only need to hold hb (and not hb2) to ensure atomicity as the
3160 * wakeup code can't change q.key from uaddr to uaddr2 if we hold hb.
3161 * It can't be requeued from uaddr2 to something else since we don't
3162 * support a PI aware source futex for requeue.
3163 */
3164 if (!match_futex(&q->key, key2)) {
3165 WARN_ON(q->lock_ptr && (&hb->lock != q->lock_ptr));
3166 /*
3167 * We were woken prior to requeue by a timeout or a signal.
3168 * Unqueue the futex_q and determine which it was.
3169 */
Lai Jiangshan2e129782010-12-22 14:18:50 +08003170 plist_del(&q->list, &hb->chain);
Linus Torvalds11d46162014-03-20 22:11:17 -07003171 hb_waiters_dec(hb);
Darren Hart52400ba2009-04-03 13:40:49 -07003172
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02003173 /* Handle spurious wakeups gracefully */
Thomas Gleixner11df6dd2009-10-28 20:26:48 +01003174 ret = -EWOULDBLOCK;
Darren Hart52400ba2009-04-03 13:40:49 -07003175 if (timeout && !timeout->task)
3176 ret = -ETIMEDOUT;
Thomas Gleixnerd58e6572009-10-13 20:40:43 +02003177 else if (signal_pending(current))
Thomas Gleixner1c840c12009-05-20 09:22:40 +02003178 ret = -ERESTARTNOINTR;
Darren Hart52400ba2009-04-03 13:40:49 -07003179 }
3180 return ret;
3181}
3182
3183/**
3184 * futex_wait_requeue_pi() - Wait on uaddr and take uaddr2
Darren Hart56ec1602009-09-21 22:29:59 -07003185 * @uaddr: the futex we initially wait on (non-pi)
Darren Hartb41277d2010-11-08 13:10:09 -08003186 * @flags: futex flags (FLAGS_SHARED, FLAGS_CLOCKRT, etc.), they must be
Davidlohr Buesoab51fba2015-06-29 23:26:02 -07003187 * the same type, no requeueing from private to shared, etc.
Darren Hart52400ba2009-04-03 13:40:49 -07003188 * @val: the expected value of uaddr
3189 * @abs_time: absolute timeout
Darren Hart56ec1602009-09-21 22:29:59 -07003190 * @bitset: 32 bit wakeup bitset set by userspace, defaults to all
Darren Hart52400ba2009-04-03 13:40:49 -07003191 * @uaddr2: the pi futex we will take prior to returning to user-space
3192 *
3193 * The caller will wait on uaddr and will be requeued by futex_requeue() to
Darren Hart6f7b0a22012-07-20 11:53:31 -07003194 * uaddr2 which must be PI aware and unique from uaddr. Normal wakeup will wake
3195 * on uaddr2 and complete the acquisition of the rt_mutex prior to returning to
3196 * userspace. This ensures the rt_mutex maintains an owner when it has waiters;
3197 * without one, the pi logic would not know which task to boost/deboost, if
3198 * there was a need to.
Darren Hart52400ba2009-04-03 13:40:49 -07003199 *
3200 * We call schedule in futex_wait_queue_me() when we enqueue and return there
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08003201 * via the following--
Darren Hart52400ba2009-04-03 13:40:49 -07003202 * 1) wakeup on uaddr2 after an atomic lock acquisition by futex_requeue()
Darren Hartcc6db4e2009-07-31 16:20:10 -07003203 * 2) wakeup on uaddr2 after a requeue
3204 * 3) signal
3205 * 4) timeout
Darren Hart52400ba2009-04-03 13:40:49 -07003206 *
Darren Hartcc6db4e2009-07-31 16:20:10 -07003207 * If 3, cleanup and return -ERESTARTNOINTR.
Darren Hart52400ba2009-04-03 13:40:49 -07003208 *
3209 * If 2, we may then block on trying to take the rt_mutex and return via:
3210 * 5) successful lock
3211 * 6) signal
3212 * 7) timeout
3213 * 8) other lock acquisition failure
3214 *
Darren Hartcc6db4e2009-07-31 16:20:10 -07003215 * If 6, return -EWOULDBLOCK (restarting the syscall would do the same).
Darren Hart52400ba2009-04-03 13:40:49 -07003216 *
3217 * If 4 or 7, we cleanup and return with -ETIMEDOUT.
3218 *
Randy Dunlap6c23cbb2013-03-05 10:00:24 -08003219 * Return:
Mauro Carvalho Chehab7b4ff1a2017-05-11 10:17:45 -03003220 * - 0 - On success;
3221 * - <0 - On error
Darren Hart52400ba2009-04-03 13:40:49 -07003222 */
Darren Hartb41277d2010-11-08 13:10:09 -08003223static int futex_wait_requeue_pi(u32 __user *uaddr, unsigned int flags,
Darren Hart52400ba2009-04-03 13:40:49 -07003224 u32 val, ktime_t *abs_time, u32 bitset,
Darren Hartb41277d2010-11-08 13:10:09 -08003225 u32 __user *uaddr2)
Darren Hart52400ba2009-04-03 13:40:49 -07003226{
Waiman Long5ca584d2019-05-28 12:03:45 -04003227 struct hrtimer_sleeper timeout, *to;
Peter Zijlstra16ffa122017-03-22 11:35:55 +01003228 struct futex_pi_state *pi_state = NULL;
Darren Hart52400ba2009-04-03 13:40:49 -07003229 struct rt_mutex_waiter rt_waiter;
Darren Hart52400ba2009-04-03 13:40:49 -07003230 struct futex_hash_bucket *hb;
Darren Hart5bdb05f2010-11-08 13:40:28 -08003231 union futex_key key2 = FUTEX_KEY_INIT;
3232 struct futex_q q = futex_q_init;
Darren Hart52400ba2009-04-03 13:40:49 -07003233 int res, ret;
Darren Hart52400ba2009-04-03 13:40:49 -07003234
Nicolas Pitrebc2eecd2017-08-01 00:31:32 -04003235 if (!IS_ENABLED(CONFIG_FUTEX_PI))
3236 return -ENOSYS;
3237
Darren Hart6f7b0a22012-07-20 11:53:31 -07003238 if (uaddr == uaddr2)
3239 return -EINVAL;
3240
Darren Hart52400ba2009-04-03 13:40:49 -07003241 if (!bitset)
3242 return -EINVAL;
3243
Waiman Long5ca584d2019-05-28 12:03:45 -04003244 to = futex_setup_timer(abs_time, &timeout, flags,
3245 current->timer_slack_ns);
Darren Hart52400ba2009-04-03 13:40:49 -07003246
3247 /*
3248 * The waiter is allocated on our stack, manipulated by the requeue
3249 * code while we sleep on uaddr.
3250 */
Peter Zijlstra50809352017-03-22 11:35:56 +01003251 rt_mutex_init_waiter(&rt_waiter);
Darren Hart52400ba2009-04-03 13:40:49 -07003252
Linus Torvalds96d4f262019-01-03 18:57:57 -08003253 ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, FUTEX_WRITE);
Darren Hart52400ba2009-04-03 13:40:49 -07003254 if (unlikely(ret != 0))
3255 goto out;
3256
Darren Hart84bc4af2009-08-13 17:36:53 -07003257 q.bitset = bitset;
3258 q.rt_waiter = &rt_waiter;
3259 q.requeue_pi_key = &key2;
3260
Darren Hart7ada8762010-10-17 08:35:04 -07003261 /*
3262 * Prepare to wait on uaddr. On success, increments q.key (key1) ref
3263 * count.
3264 */
Darren Hartb41277d2010-11-08 13:10:09 -08003265 ret = futex_wait_setup(uaddr, val, flags, &q, &hb);
Thomas Gleixnerc8b15a72009-05-20 09:18:50 +02003266 if (ret)
3267 goto out_key2;
Darren Hart52400ba2009-04-03 13:40:49 -07003268
Thomas Gleixnere9c243a2014-06-03 12:27:06 +00003269 /*
3270 * The check above which compares uaddrs is not sufficient for
3271 * shared futexes. We need to compare the keys:
3272 */
3273 if (match_futex(&q.key, &key2)) {
Thomas Gleixner13c42c22014-09-11 23:44:35 +02003274 queue_unlock(hb);
Thomas Gleixnere9c243a2014-06-03 12:27:06 +00003275 ret = -EINVAL;
3276 goto out_put_keys;
3277 }
3278
Darren Hart52400ba2009-04-03 13:40:49 -07003279 /* Queue the futex_q, drop the hb lock, wait for wakeup. */
Thomas Gleixnerf1a11e02009-05-05 19:21:40 +02003280 futex_wait_queue_me(hb, &q, to);
Darren Hart52400ba2009-04-03 13:40:49 -07003281
3282 spin_lock(&hb->lock);
3283 ret = handle_early_requeue_pi_wakeup(hb, &q, &key2, to);
3284 spin_unlock(&hb->lock);
3285 if (ret)
3286 goto out_put_keys;
3287
3288 /*
3289 * In order for us to be here, we know our q.key == key2, and since
3290 * we took the hb->lock above, we also know that futex_requeue() has
3291 * completed and we no longer have to concern ourselves with a wakeup
Darren Hart7ada8762010-10-17 08:35:04 -07003292 * race with the atomic proxy lock acquisition by the requeue code. The
3293 * futex_requeue dropped our key1 reference and incremented our key2
3294 * reference count.
Darren Hart52400ba2009-04-03 13:40:49 -07003295 */
3296
3297 /* Check if the requeue code acquired the second futex for us. */
3298 if (!q.rt_waiter) {
3299 /*
3300 * Got the lock. We might not be the anticipated owner if we
3301 * did a lock-steal - fix up the PI-state in that case.
3302 */
3303 if (q.pi_state && (q.pi_state->owner != current)) {
3304 spin_lock(q.lock_ptr);
Thomas Gleixnerae791a22010-11-10 13:30:36 +01003305 ret = fixup_pi_state_owner(uaddr2, &q, current);
Peter Zijlstra16ffa122017-03-22 11:35:55 +01003306 if (ret && rt_mutex_owner(&q.pi_state->pi_mutex) == current) {
3307 pi_state = q.pi_state;
3308 get_pi_state(pi_state);
3309 }
Thomas Gleixnerfb75a422015-12-19 20:07:38 +00003310 /*
3311 * Drop the reference to the pi state which
3312 * the requeue_pi() code acquired for us.
3313 */
Thomas Gleixner29e9ee52015-12-19 20:07:39 +00003314 put_pi_state(q.pi_state);
Darren Hart52400ba2009-04-03 13:40:49 -07003315 spin_unlock(q.lock_ptr);
3316 }
3317 } else {
Peter Zijlstrac236c8e2017-03-04 10:27:18 +01003318 struct rt_mutex *pi_mutex;
3319
Darren Hart52400ba2009-04-03 13:40:49 -07003320 /*
3321 * We have been woken up by futex_unlock_pi(), a timeout, or a
3322 * signal. futex_unlock_pi() will not destroy the lock_ptr nor
3323 * the pi_state.
3324 */
Darren Hartf27071c2012-07-20 11:53:30 -07003325 WARN_ON(!q.pi_state);
Darren Hart52400ba2009-04-03 13:40:49 -07003326 pi_mutex = &q.pi_state->pi_mutex;
Peter Zijlstra38d589f2017-03-22 11:35:57 +01003327 ret = rt_mutex_wait_proxy_lock(pi_mutex, to, &rt_waiter);
Darren Hart52400ba2009-04-03 13:40:49 -07003328
3329 spin_lock(q.lock_ptr);
Peter Zijlstra38d589f2017-03-22 11:35:57 +01003330 if (ret && !rt_mutex_cleanup_proxy_lock(pi_mutex, &rt_waiter))
3331 ret = 0;
3332
3333 debug_rt_mutex_free_waiter(&rt_waiter);
Darren Hart52400ba2009-04-03 13:40:49 -07003334 /*
3335 * Fixup the pi_state owner and possibly acquire the lock if we
3336 * haven't already.
3337 */
Thomas Gleixnerae791a22010-11-10 13:30:36 +01003338 res = fixup_owner(uaddr2, &q, !ret);
Darren Hart52400ba2009-04-03 13:40:49 -07003339 /*
3340 * If fixup_owner() returned an error, proprogate that. If it
Darren Hart56ec1602009-09-21 22:29:59 -07003341 * acquired the lock, clear -ETIMEDOUT or -EINTR.
Darren Hart52400ba2009-04-03 13:40:49 -07003342 */
3343 if (res)
3344 ret = (res < 0) ? res : 0;
3345
Peter Zijlstrac236c8e2017-03-04 10:27:18 +01003346 /*
3347 * If fixup_pi_state_owner() faulted and was unable to handle
3348 * the fault, unlock the rt_mutex and return the fault to
3349 * userspace.
3350 */
Peter Zijlstra16ffa122017-03-22 11:35:55 +01003351 if (ret && rt_mutex_owner(&q.pi_state->pi_mutex) == current) {
3352 pi_state = q.pi_state;
3353 get_pi_state(pi_state);
3354 }
Peter Zijlstrac236c8e2017-03-04 10:27:18 +01003355
Darren Hart52400ba2009-04-03 13:40:49 -07003356 /* Unqueue and drop the lock. */
3357 unqueue_me_pi(&q);
3358 }
3359
Peter Zijlstra16ffa122017-03-22 11:35:55 +01003360 if (pi_state) {
3361 rt_mutex_futex_unlock(&pi_state->pi_mutex);
3362 put_pi_state(pi_state);
3363 }
3364
Peter Zijlstrac236c8e2017-03-04 10:27:18 +01003365 if (ret == -EINTR) {
Darren Hart52400ba2009-04-03 13:40:49 -07003366 /*
Darren Hartcc6db4e2009-07-31 16:20:10 -07003367 * We've already been requeued, but cannot restart by calling
3368 * futex_lock_pi() directly. We could restart this syscall, but
3369 * it would detect that the user space "val" changed and return
3370 * -EWOULDBLOCK. Save the overhead of the restart and return
3371 * -EWOULDBLOCK directly.
Darren Hart52400ba2009-04-03 13:40:49 -07003372 */
Thomas Gleixner20708872009-05-19 23:04:59 +02003373 ret = -EWOULDBLOCK;
Darren Hart52400ba2009-04-03 13:40:49 -07003374 }
3375
3376out_put_keys:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01003377 put_futex_key(&q.key);
Thomas Gleixnerc8b15a72009-05-20 09:18:50 +02003378out_key2:
Thomas Gleixnerae791a22010-11-10 13:30:36 +01003379 put_futex_key(&key2);
Darren Hart52400ba2009-04-03 13:40:49 -07003380
3381out:
3382 if (to) {
3383 hrtimer_cancel(&to->timer);
3384 destroy_hrtimer_on_stack(&to->timer);
3385 }
3386 return ret;
3387}
3388
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003389/*
3390 * Support for robust futexes: the kernel cleans up held futexes at
3391 * thread exit time.
3392 *
3393 * Implementation: user-space maintains a per-thread list of locks it
3394 * is holding. Upon do_exit(), the kernel carefully walks this list,
3395 * and marks all locks that are owned by this thread with the
Ingo Molnarc87e2832006-06-27 02:54:58 -07003396 * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003397 * always manipulated with the lock held, so the list is private and
3398 * per-thread. Userspace also maintains a per-thread 'list_op_pending'
3399 * field, to allow the kernel to clean up if the thread dies after
3400 * acquiring the lock, but just before it could have added itself to
3401 * the list. There can only be one such pending lock.
3402 */
3403
3404/**
Darren Hartd96ee562009-09-21 22:30:22 -07003405 * sys_set_robust_list() - Set the robust-futex list head of a task
3406 * @head: pointer to the list-head
3407 * @len: length of the list-head, as userspace expects
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003408 */
Heiko Carstens836f92a2009-01-14 14:14:33 +01003409SYSCALL_DEFINE2(set_robust_list, struct robust_list_head __user *, head,
3410 size_t, len)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003411{
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08003412 if (!futex_cmpxchg_enabled)
3413 return -ENOSYS;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003414 /*
3415 * The kernel knows only one size for now:
3416 */
3417 if (unlikely(len != sizeof(*head)))
3418 return -EINVAL;
3419
3420 current->robust_list = head;
3421
3422 return 0;
3423}
3424
3425/**
Darren Hartd96ee562009-09-21 22:30:22 -07003426 * sys_get_robust_list() - Get the robust-futex list head of a task
3427 * @pid: pid of the process [zero for current task]
3428 * @head_ptr: pointer to a list-head pointer, the kernel fills it in
3429 * @len_ptr: pointer to a length field, the kernel fills in the header size
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003430 */
Heiko Carstens836f92a2009-01-14 14:14:33 +01003431SYSCALL_DEFINE3(get_robust_list, int, pid,
3432 struct robust_list_head __user * __user *, head_ptr,
3433 size_t __user *, len_ptr)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003434{
Al Viroba46df92006-10-10 22:46:07 +01003435 struct robust_list_head __user *head;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003436 unsigned long ret;
Kees Cookbdbb7762012-03-19 16:12:53 -07003437 struct task_struct *p;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003438
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08003439 if (!futex_cmpxchg_enabled)
3440 return -ENOSYS;
3441
Kees Cookbdbb7762012-03-19 16:12:53 -07003442 rcu_read_lock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003443
Kees Cookbdbb7762012-03-19 16:12:53 -07003444 ret = -ESRCH;
3445 if (!pid)
3446 p = current;
3447 else {
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07003448 p = find_task_by_vpid(pid);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003449 if (!p)
3450 goto err_unlock;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003451 }
3452
Kees Cookbdbb7762012-03-19 16:12:53 -07003453 ret = -EPERM;
Jann Horncaaee622016-01-20 15:00:04 -08003454 if (!ptrace_may_access(p, PTRACE_MODE_READ_REALCREDS))
Kees Cookbdbb7762012-03-19 16:12:53 -07003455 goto err_unlock;
3456
3457 head = p->robust_list;
3458 rcu_read_unlock();
3459
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003460 if (put_user(sizeof(*head), len_ptr))
3461 return -EFAULT;
3462 return put_user(head, head_ptr);
3463
3464err_unlock:
Oleg Nesterovaaa2a972006-09-29 02:00:55 -07003465 rcu_read_unlock();
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003466
3467 return ret;
3468}
3469
3470/*
3471 * Process a futex-list entry, check whether it's owned by the
3472 * dying task, and do notification if so:
3473 */
Arnd Bergmann04e77122018-04-17 16:31:07 +02003474static int handle_futex_death(u32 __user *uaddr, struct task_struct *curr, int pi)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003475{
Vitaliy Ivanov7cfdaf32011-07-07 15:10:31 +03003476 u32 uval, uninitialized_var(nval), mval;
Will Deacon6b4f4bc2019-02-28 11:58:08 +00003477 int err;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003478
Chen Jie5a071682019-03-15 03:44:38 +00003479 /* Futex address must be 32bit aligned */
3480 if ((((unsigned long)uaddr) % sizeof(*uaddr)) != 0)
3481 return -1;
3482
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08003483retry:
3484 if (get_user(uval, uaddr))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003485 return -1;
3486
Will Deacon6b4f4bc2019-02-28 11:58:08 +00003487 if ((uval & FUTEX_TID_MASK) != task_pid_vnr(curr))
3488 return 0;
3489
3490 /*
3491 * Ok, this dying thread is truly holding a futex
3492 * of interest. Set the OWNER_DIED bit atomically
3493 * via cmpxchg, and if the value had FUTEX_WAITERS
3494 * set, wake up a waiter (if any). (We have to do a
3495 * futex_wake() even if OWNER_DIED is already set -
3496 * to handle the rare but possible case of recursive
3497 * thread-death.) The rest of the cleanup is done in
3498 * userspace.
3499 */
3500 mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED;
3501
3502 /*
3503 * We are not holding a lock here, but we want to have
3504 * the pagefault_disable/enable() protection because
3505 * we want to handle the fault gracefully. If the
3506 * access fails we try to fault in the futex with R/W
3507 * verification via get_user_pages. get_user() above
3508 * does not guarantee R/W access. If that fails we
3509 * give up and leave the futex locked.
3510 */
3511 if ((err = cmpxchg_futex_value_locked(&nval, uaddr, uval, mval))) {
3512 switch (err) {
3513 case -EFAULT:
Thomas Gleixner6e0aa9f2011-03-14 10:34:35 +01003514 if (fault_in_user_writeable(uaddr))
3515 return -1;
3516 goto retry;
Will Deacon6b4f4bc2019-02-28 11:58:08 +00003517
3518 case -EAGAIN:
3519 cond_resched();
Ingo Molnar8f17d3a2006-03-27 01:16:27 -08003520 goto retry;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003521
Will Deacon6b4f4bc2019-02-28 11:58:08 +00003522 default:
3523 WARN_ON_ONCE(1);
3524 return err;
3525 }
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003526 }
Will Deacon6b4f4bc2019-02-28 11:58:08 +00003527
3528 if (nval != uval)
3529 goto retry;
3530
3531 /*
3532 * Wake robust non-PI futexes here. The wakeup of
3533 * PI futexes happens in exit_pi_state():
3534 */
3535 if (!pi && (uval & FUTEX_WAITERS))
3536 futex_wake(uaddr, 1, 1, FUTEX_BITSET_MATCH_ANY);
3537
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003538 return 0;
3539}
3540
3541/*
Ingo Molnare3f2dde2006-07-29 05:17:57 +02003542 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
3543 */
3544static inline int fetch_robust_entry(struct robust_list __user **entry,
Al Viroba46df92006-10-10 22:46:07 +01003545 struct robust_list __user * __user *head,
Namhyung Kim1dcc41b2010-09-14 21:43:46 +09003546 unsigned int *pi)
Ingo Molnare3f2dde2006-07-29 05:17:57 +02003547{
3548 unsigned long uentry;
3549
Al Viroba46df92006-10-10 22:46:07 +01003550 if (get_user(uentry, (unsigned long __user *)head))
Ingo Molnare3f2dde2006-07-29 05:17:57 +02003551 return -EFAULT;
3552
Al Viroba46df92006-10-10 22:46:07 +01003553 *entry = (void __user *)(uentry & ~1UL);
Ingo Molnare3f2dde2006-07-29 05:17:57 +02003554 *pi = uentry & 1;
3555
3556 return 0;
3557}
3558
3559/*
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003560 * Walk curr->robust_list (very carefully, it's a userspace list!)
3561 * and mark any locks found there dead, and notify any waiters.
3562 *
3563 * We silently return on any sign of list-walking problem.
3564 */
3565void exit_robust_list(struct task_struct *curr)
3566{
3567 struct robust_list_head __user *head = curr->robust_list;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07003568 struct robust_list __user *entry, *next_entry, *pending;
Darren Hart4c115e92010-11-04 15:00:00 -04003569 unsigned int limit = ROBUST_LIST_LIMIT, pi, pip;
3570 unsigned int uninitialized_var(next_pi);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003571 unsigned long futex_offset;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07003572 int rc;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003573
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08003574 if (!futex_cmpxchg_enabled)
3575 return;
3576
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003577 /*
3578 * Fetch the list head (which was registered earlier, via
3579 * sys_set_robust_list()):
3580 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02003581 if (fetch_robust_entry(&entry, &head->list.next, &pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003582 return;
3583 /*
3584 * Fetch the relative futex offset:
3585 */
3586 if (get_user(futex_offset, &head->futex_offset))
3587 return;
3588 /*
3589 * Fetch any possibly pending lock-add first, and handle it
3590 * if it exists:
3591 */
Ingo Molnare3f2dde2006-07-29 05:17:57 +02003592 if (fetch_robust_entry(&pending, &head->list_op_pending, &pip))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003593 return;
Ingo Molnare3f2dde2006-07-29 05:17:57 +02003594
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07003595 next_entry = NULL; /* avoid warning with gcc */
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003596 while (entry != &head->list) {
3597 /*
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07003598 * Fetch the next entry in the list before calling
3599 * handle_futex_death:
3600 */
3601 rc = fetch_robust_entry(&next_entry, &entry->next, &next_pi);
3602 /*
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003603 * A pending lock might already be on the list, so
Ingo Molnarc87e2832006-06-27 02:54:58 -07003604 * don't process it twice:
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003605 */
3606 if (entry != pending)
Al Viroba46df92006-10-10 22:46:07 +01003607 if (handle_futex_death((void __user *)entry + futex_offset,
Ingo Molnare3f2dde2006-07-29 05:17:57 +02003608 curr, pi))
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003609 return;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07003610 if (rc)
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003611 return;
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07003612 entry = next_entry;
3613 pi = next_pi;
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003614 /*
3615 * Avoid excessively long or circular lists:
3616 */
3617 if (!--limit)
3618 break;
3619
3620 cond_resched();
3621 }
Martin Schwidefsky9f96cb12007-10-01 01:20:13 -07003622
3623 if (pending)
3624 handle_futex_death((void __user *)pending + futex_offset,
3625 curr, pip);
Ingo Molnar0771dfe2006-03-27 01:16:22 -08003626}
3627
Pierre Peifferc19384b2007-05-09 02:35:02 -07003628long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout,
Ingo Molnare2970f22006-06-27 02:54:47 -07003629 u32 __user *uaddr2, u32 val2, u32 val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630{
Thomas Gleixner81b40532012-02-15 12:17:09 +01003631 int cmd = op & FUTEX_CMD_MASK;
Darren Hartb41277d2010-11-08 13:10:09 -08003632 unsigned int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
Eric Dumazet34f01cc2007-05-09 02:35:04 -07003634 if (!(op & FUTEX_PRIVATE_FLAG))
Darren Hartb41277d2010-11-08 13:10:09 -08003635 flags |= FLAGS_SHARED;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07003636
Darren Hartb41277d2010-11-08 13:10:09 -08003637 if (op & FUTEX_CLOCK_REALTIME) {
3638 flags |= FLAGS_CLOCKRT;
Darren Hart337f1302015-12-18 13:36:37 -08003639 if (cmd != FUTEX_WAIT && cmd != FUTEX_WAIT_BITSET && \
3640 cmd != FUTEX_WAIT_REQUEUE_PI)
Darren Hartb41277d2010-11-08 13:10:09 -08003641 return -ENOSYS;
3642 }
Eric Dumazet34f01cc2007-05-09 02:35:04 -07003643
3644 switch (cmd) {
Thomas Gleixner59263b52012-02-15 12:08:34 +01003645 case FUTEX_LOCK_PI:
3646 case FUTEX_UNLOCK_PI:
3647 case FUTEX_TRYLOCK_PI:
3648 case FUTEX_WAIT_REQUEUE_PI:
3649 case FUTEX_CMP_REQUEUE_PI:
3650 if (!futex_cmpxchg_enabled)
3651 return -ENOSYS;
3652 }
3653
3654 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 case FUTEX_WAIT:
Thomas Gleixnercd689982008-02-01 17:45:14 +01003656 val3 = FUTEX_BITSET_MATCH_ANY;
Gustavo A. R. Silvab6391862018-08-16 12:21:24 -05003657 /* fall through */
Thomas Gleixnercd689982008-02-01 17:45:14 +01003658 case FUTEX_WAIT_BITSET:
Thomas Gleixner81b40532012-02-15 12:17:09 +01003659 return futex_wait(uaddr, flags, val, timeout, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 case FUTEX_WAKE:
Thomas Gleixnercd689982008-02-01 17:45:14 +01003661 val3 = FUTEX_BITSET_MATCH_ANY;
Gustavo A. R. Silvab6391862018-08-16 12:21:24 -05003662 /* fall through */
Thomas Gleixnercd689982008-02-01 17:45:14 +01003663 case FUTEX_WAKE_BITSET:
Thomas Gleixner81b40532012-02-15 12:17:09 +01003664 return futex_wake(uaddr, flags, val, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 case FUTEX_REQUEUE:
Thomas Gleixner81b40532012-02-15 12:17:09 +01003666 return futex_requeue(uaddr, flags, uaddr2, val, val2, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 case FUTEX_CMP_REQUEUE:
Thomas Gleixner81b40532012-02-15 12:17:09 +01003668 return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 0);
Jakub Jelinek4732efbe2005-09-06 15:16:25 -07003669 case FUTEX_WAKE_OP:
Thomas Gleixner81b40532012-02-15 12:17:09 +01003670 return futex_wake_op(uaddr, flags, uaddr2, val, val2, val3);
Ingo Molnarc87e2832006-06-27 02:54:58 -07003671 case FUTEX_LOCK_PI:
Michael Kerrisk996636d2015-01-16 20:28:06 +01003672 return futex_lock_pi(uaddr, flags, timeout, 0);
Ingo Molnarc87e2832006-06-27 02:54:58 -07003673 case FUTEX_UNLOCK_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01003674 return futex_unlock_pi(uaddr, flags);
Ingo Molnarc87e2832006-06-27 02:54:58 -07003675 case FUTEX_TRYLOCK_PI:
Michael Kerrisk996636d2015-01-16 20:28:06 +01003676 return futex_lock_pi(uaddr, flags, NULL, 1);
Darren Hart52400ba2009-04-03 13:40:49 -07003677 case FUTEX_WAIT_REQUEUE_PI:
3678 val3 = FUTEX_BITSET_MATCH_ANY;
Thomas Gleixner81b40532012-02-15 12:17:09 +01003679 return futex_wait_requeue_pi(uaddr, flags, val, timeout, val3,
3680 uaddr2);
Darren Hart52400ba2009-04-03 13:40:49 -07003681 case FUTEX_CMP_REQUEUE_PI:
Thomas Gleixner81b40532012-02-15 12:17:09 +01003682 return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 }
Thomas Gleixner81b40532012-02-15 12:17:09 +01003684 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685}
3686
3687
Heiko Carstens17da2bd2009-01-14 14:14:10 +01003688SYSCALL_DEFINE6(futex, u32 __user *, uaddr, int, op, u32, val,
Arnd Bergmannbec2f7c2018-04-17 17:23:35 +02003689 struct __kernel_timespec __user *, utime, u32 __user *, uaddr2,
Heiko Carstens17da2bd2009-01-14 14:14:10 +01003690 u32, val3)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691{
Arnd Bergmannbec2f7c2018-04-17 17:23:35 +02003692 struct timespec64 ts;
Pierre Peifferc19384b2007-05-09 02:35:02 -07003693 ktime_t t, *tp = NULL;
Ingo Molnare2970f22006-06-27 02:54:47 -07003694 u32 val2 = 0;
Eric Dumazet34f01cc2007-05-09 02:35:04 -07003695 int cmd = op & FUTEX_CMD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696
Thomas Gleixnercd689982008-02-01 17:45:14 +01003697 if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI ||
Darren Hart52400ba2009-04-03 13:40:49 -07003698 cmd == FUTEX_WAIT_BITSET ||
3699 cmd == FUTEX_WAIT_REQUEUE_PI)) {
Davidlohr Buesoab51fba2015-06-29 23:26:02 -07003700 if (unlikely(should_fail_futex(!(op & FUTEX_PRIVATE_FLAG))))
3701 return -EFAULT;
Arnd Bergmannbec2f7c2018-04-17 17:23:35 +02003702 if (get_timespec64(&ts, utime))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 return -EFAULT;
Arnd Bergmannbec2f7c2018-04-17 17:23:35 +02003704 if (!timespec64_valid(&ts))
Thomas Gleixner9741ef962006-03-31 02:31:32 -08003705 return -EINVAL;
Pierre Peifferc19384b2007-05-09 02:35:02 -07003706
Arnd Bergmannbec2f7c2018-04-17 17:23:35 +02003707 t = timespec64_to_ktime(ts);
Eric Dumazet34f01cc2007-05-09 02:35:04 -07003708 if (cmd == FUTEX_WAIT)
Thomas Gleixner5a7780e2008-02-13 09:20:43 +01003709 t = ktime_add_safe(ktime_get(), t);
Pierre Peifferc19384b2007-05-09 02:35:02 -07003710 tp = &t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 }
3712 /*
Darren Hart52400ba2009-04-03 13:40:49 -07003713 * requeue parameter in 'utime' if cmd == FUTEX_*_REQUEUE_*.
Andreas Schwabf54f0982007-07-31 00:38:51 -07003714 * number of waiters to wake in 'utime' if cmd == FUTEX_WAKE_OP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 */
Andreas Schwabf54f0982007-07-31 00:38:51 -07003716 if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE ||
Darren Hartba9c22f2009-04-20 22:22:22 -07003717 cmd == FUTEX_CMP_REQUEUE_PI || cmd == FUTEX_WAKE_OP)
Ingo Molnare2970f22006-06-27 02:54:47 -07003718 val2 = (u32) (unsigned long) utime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719
Pierre Peifferc19384b2007-05-09 02:35:02 -07003720 return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721}
3722
Arnd Bergmann04e77122018-04-17 16:31:07 +02003723#ifdef CONFIG_COMPAT
3724/*
3725 * Fetch a robust-list pointer. Bit 0 signals PI futexes:
3726 */
3727static inline int
3728compat_fetch_robust_entry(compat_uptr_t *uentry, struct robust_list __user **entry,
3729 compat_uptr_t __user *head, unsigned int *pi)
3730{
3731 if (get_user(*uentry, head))
3732 return -EFAULT;
3733
3734 *entry = compat_ptr((*uentry) & ~1);
3735 *pi = (unsigned int)(*uentry) & 1;
3736
3737 return 0;
3738}
3739
3740static void __user *futex_uaddr(struct robust_list __user *entry,
3741 compat_long_t futex_offset)
3742{
3743 compat_uptr_t base = ptr_to_compat(entry);
3744 void __user *uaddr = compat_ptr(base + futex_offset);
3745
3746 return uaddr;
3747}
3748
3749/*
3750 * Walk curr->robust_list (very carefully, it's a userspace list!)
3751 * and mark any locks found there dead, and notify any waiters.
3752 *
3753 * We silently return on any sign of list-walking problem.
3754 */
3755void compat_exit_robust_list(struct task_struct *curr)
3756{
3757 struct compat_robust_list_head __user *head = curr->compat_robust_list;
3758 struct robust_list __user *entry, *next_entry, *pending;
3759 unsigned int limit = ROBUST_LIST_LIMIT, pi, pip;
3760 unsigned int uninitialized_var(next_pi);
3761 compat_uptr_t uentry, next_uentry, upending;
3762 compat_long_t futex_offset;
3763 int rc;
3764
3765 if (!futex_cmpxchg_enabled)
3766 return;
3767
3768 /*
3769 * Fetch the list head (which was registered earlier, via
3770 * sys_set_robust_list()):
3771 */
3772 if (compat_fetch_robust_entry(&uentry, &entry, &head->list.next, &pi))
3773 return;
3774 /*
3775 * Fetch the relative futex offset:
3776 */
3777 if (get_user(futex_offset, &head->futex_offset))
3778 return;
3779 /*
3780 * Fetch any possibly pending lock-add first, and handle it
3781 * if it exists:
3782 */
3783 if (compat_fetch_robust_entry(&upending, &pending,
3784 &head->list_op_pending, &pip))
3785 return;
3786
3787 next_entry = NULL; /* avoid warning with gcc */
3788 while (entry != (struct robust_list __user *) &head->list) {
3789 /*
3790 * Fetch the next entry in the list before calling
3791 * handle_futex_death:
3792 */
3793 rc = compat_fetch_robust_entry(&next_uentry, &next_entry,
3794 (compat_uptr_t __user *)&entry->next, &next_pi);
3795 /*
3796 * A pending lock might already be on the list, so
3797 * dont process it twice:
3798 */
3799 if (entry != pending) {
3800 void __user *uaddr = futex_uaddr(entry, futex_offset);
3801
3802 if (handle_futex_death(uaddr, curr, pi))
3803 return;
3804 }
3805 if (rc)
3806 return;
3807 uentry = next_uentry;
3808 entry = next_entry;
3809 pi = next_pi;
3810 /*
3811 * Avoid excessively long or circular lists:
3812 */
3813 if (!--limit)
3814 break;
3815
3816 cond_resched();
3817 }
3818 if (pending) {
3819 void __user *uaddr = futex_uaddr(pending, futex_offset);
3820
3821 handle_futex_death(uaddr, curr, pip);
3822 }
3823}
3824
3825COMPAT_SYSCALL_DEFINE2(set_robust_list,
3826 struct compat_robust_list_head __user *, head,
3827 compat_size_t, len)
3828{
3829 if (!futex_cmpxchg_enabled)
3830 return -ENOSYS;
3831
3832 if (unlikely(len != sizeof(*head)))
3833 return -EINVAL;
3834
3835 current->compat_robust_list = head;
3836
3837 return 0;
3838}
3839
3840COMPAT_SYSCALL_DEFINE3(get_robust_list, int, pid,
3841 compat_uptr_t __user *, head_ptr,
3842 compat_size_t __user *, len_ptr)
3843{
3844 struct compat_robust_list_head __user *head;
3845 unsigned long ret;
3846 struct task_struct *p;
3847
3848 if (!futex_cmpxchg_enabled)
3849 return -ENOSYS;
3850
3851 rcu_read_lock();
3852
3853 ret = -ESRCH;
3854 if (!pid)
3855 p = current;
3856 else {
3857 p = find_task_by_vpid(pid);
3858 if (!p)
3859 goto err_unlock;
3860 }
3861
3862 ret = -EPERM;
3863 if (!ptrace_may_access(p, PTRACE_MODE_READ_REALCREDS))
3864 goto err_unlock;
3865
3866 head = p->compat_robust_list;
3867 rcu_read_unlock();
3868
3869 if (put_user(sizeof(*head), len_ptr))
3870 return -EFAULT;
3871 return put_user(ptr_to_compat(head), head_ptr);
3872
3873err_unlock:
3874 rcu_read_unlock();
3875
3876 return ret;
3877}
Arnd Bergmannbec2f7c2018-04-17 17:23:35 +02003878#endif /* CONFIG_COMPAT */
Arnd Bergmann04e77122018-04-17 16:31:07 +02003879
Arnd Bergmannbec2f7c2018-04-17 17:23:35 +02003880#ifdef CONFIG_COMPAT_32BIT_TIME
Arnd Bergmann8dabe722019-01-07 00:33:08 +01003881SYSCALL_DEFINE6(futex_time32, u32 __user *, uaddr, int, op, u32, val,
Arnd Bergmann04e77122018-04-17 16:31:07 +02003882 struct old_timespec32 __user *, utime, u32 __user *, uaddr2,
3883 u32, val3)
3884{
Arnd Bergmannbec2f7c2018-04-17 17:23:35 +02003885 struct timespec64 ts;
Arnd Bergmann04e77122018-04-17 16:31:07 +02003886 ktime_t t, *tp = NULL;
3887 int val2 = 0;
3888 int cmd = op & FUTEX_CMD_MASK;
3889
3890 if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI ||
3891 cmd == FUTEX_WAIT_BITSET ||
3892 cmd == FUTEX_WAIT_REQUEUE_PI)) {
Arnd Bergmannbec2f7c2018-04-17 17:23:35 +02003893 if (get_old_timespec32(&ts, utime))
Arnd Bergmann04e77122018-04-17 16:31:07 +02003894 return -EFAULT;
Arnd Bergmannbec2f7c2018-04-17 17:23:35 +02003895 if (!timespec64_valid(&ts))
Arnd Bergmann04e77122018-04-17 16:31:07 +02003896 return -EINVAL;
3897
Arnd Bergmannbec2f7c2018-04-17 17:23:35 +02003898 t = timespec64_to_ktime(ts);
Arnd Bergmann04e77122018-04-17 16:31:07 +02003899 if (cmd == FUTEX_WAIT)
3900 t = ktime_add_safe(ktime_get(), t);
3901 tp = &t;
3902 }
3903 if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE ||
3904 cmd == FUTEX_CMP_REQUEUE_PI || cmd == FUTEX_WAKE_OP)
3905 val2 = (int) (unsigned long) utime;
3906
3907 return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
3908}
Arnd Bergmannbec2f7c2018-04-17 17:23:35 +02003909#endif /* CONFIG_COMPAT_32BIT_TIME */
Arnd Bergmann04e77122018-04-17 16:31:07 +02003910
Heiko Carstens03b8c7b2014-03-02 13:09:47 +01003911static void __init futex_detect_cmpxchg(void)
3912{
3913#ifndef CONFIG_HAVE_FUTEX_CMPXCHG
3914 u32 curval;
3915
3916 /*
3917 * This will fail and we want it. Some arch implementations do
3918 * runtime detection of the futex_atomic_cmpxchg_inatomic()
3919 * functionality. We want to know that before we call in any
3920 * of the complex code paths. Also we want to prevent
3921 * registration of robust lists in that case. NULL is
3922 * guaranteed to fault and we get -EFAULT on functional
3923 * implementation, the non-functional ones will return
3924 * -ENOSYS.
3925 */
3926 if (cmpxchg_futex_value_locked(&curval, NULL, 0, 0) == -EFAULT)
3927 futex_cmpxchg_enabled = 1;
3928#endif
3929}
3930
Benjamin Herrenschmidtf6d107f2008-03-27 14:52:15 +11003931static int __init futex_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932{
Heiko Carstens63b1a812014-01-16 14:54:50 +01003933 unsigned int futex_shift;
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -08003934 unsigned long i;
3935
3936#if CONFIG_BASE_SMALL
3937 futex_hashsize = 16;
3938#else
3939 futex_hashsize = roundup_pow_of_two(256 * num_possible_cpus());
3940#endif
3941
3942 futex_queues = alloc_large_system_hash("futex", sizeof(*futex_queues),
3943 futex_hashsize, 0,
3944 futex_hashsize < 256 ? HASH_SMALL : 0,
Heiko Carstens63b1a812014-01-16 14:54:50 +01003945 &futex_shift, NULL,
3946 futex_hashsize, futex_hashsize);
3947 futex_hashsize = 1UL << futex_shift;
Heiko Carstens03b8c7b2014-03-02 13:09:47 +01003948
3949 futex_detect_cmpxchg();
Thomas Gleixnera0c1e902008-02-23 15:23:57 -08003950
Davidlohr Buesoa52b89e2014-01-12 15:31:23 -08003951 for (i = 0; i < futex_hashsize; i++) {
Linus Torvalds11d46162014-03-20 22:11:17 -07003952 atomic_set(&futex_queues[i].waiters, 0);
Dima Zavin732375c2011-07-07 17:27:59 -07003953 plist_head_init(&futex_queues[i].chain);
Thomas Gleixner3e4ab742008-02-23 15:23:55 -08003954 spin_lock_init(&futex_queues[i].lock);
3955 }
3956
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 return 0;
3958}
Yang Yang25f71d12016-12-30 16:17:55 +08003959core_initcall(futex_init);