Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Fast Userspace Mutexes (which I call "Futexes!"). |
| 4 | * (C) Rusty Russell, IBM 2002 |
| 5 | * |
| 6 | * Generalized futexes, futex requeueing, misc fixes by Ingo Molnar |
| 7 | * (C) Copyright 2003 Red Hat Inc, All Rights Reserved |
| 8 | * |
| 9 | * Removed page pinning, fix privately mapped COW pages and other cleanups |
| 10 | * (C) Copyright 2003, 2004 Jamie Lokier |
| 11 | * |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 12 | * Robust futex support started by Ingo Molnar |
| 13 | * (C) Copyright 2006 Red Hat Inc, All Rights Reserved |
| 14 | * Thanks to Thomas Gleixner for suggestions, analysis and fixes. |
| 15 | * |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 16 | * PI-futex support started by Ingo Molnar and Thomas Gleixner |
| 17 | * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com> |
| 18 | * Copyright (C) 2006 Timesys Corp., Thomas Gleixner <tglx@timesys.com> |
| 19 | * |
Eric Dumazet | 34f01cc | 2007-05-09 02:35:04 -0700 | [diff] [blame] | 20 | * PRIVATE futexes by Eric Dumazet |
| 21 | * Copyright (C) 2007 Eric Dumazet <dada1@cosmosbay.com> |
| 22 | * |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 23 | * Requeue-PI support by Darren Hart <dvhltc@us.ibm.com> |
| 24 | * Copyright (C) IBM Corporation, 2009 |
| 25 | * Thanks to Thomas Gleixner for conceptual design and careful reviews. |
| 26 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | * Thanks to Ben LaHaise for yelling "hashed waitqueues" loudly |
| 28 | * enough at me, Linus for the original (flawed) idea, Matthew |
| 29 | * Kirkwood for proof-of-concept implementation. |
| 30 | * |
| 31 | * "The futexes are also cursed." |
| 32 | * "But they come in a choice of three flavours!" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | */ |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 34 | #include <linux/compat.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/jhash.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/pagemap.h> |
| 37 | #include <linux/syscalls.h> |
Zhang Yi | 13d60f4 | 2013-06-25 21:19:31 +0800 | [diff] [blame] | 38 | #include <linux/hugetlb.h> |
Colin Cross | 88c8004 | 2013-05-01 18:35:05 -0700 | [diff] [blame] | 39 | #include <linux/freezer.h> |
Mike Rapoport | 57c8a66 | 2018-10-30 15:09:49 -0700 | [diff] [blame] | 40 | #include <linux/memblock.h> |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 41 | #include <linux/fault-inject.h> |
Andrei Vagin | c2f7d08 | 2020-10-15 09:00:19 -0700 | [diff] [blame^] | 42 | #include <linux/time_namespace.h> |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 43 | |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 44 | #include <asm/futex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Peter Zijlstra | 1696a8b | 2013-10-31 18:18:19 +0100 | [diff] [blame] | 46 | #include "locking/rtmutex_common.h" |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 47 | |
Thomas Gleixner | 99b60ce | 2014-01-12 15:31:24 -0800 | [diff] [blame] | 48 | /* |
Davidlohr Bueso | d7e8af1 | 2014-04-09 11:55:07 -0700 | [diff] [blame] | 49 | * READ this before attempting to hack on futexes! |
| 50 | * |
| 51 | * Basic futex operation and ordering guarantees |
| 52 | * ============================================= |
Thomas Gleixner | 99b60ce | 2014-01-12 15:31:24 -0800 | [diff] [blame] | 53 | * |
| 54 | * The waiter reads the futex value in user space and calls |
| 55 | * futex_wait(). This function computes the hash bucket and acquires |
| 56 | * the hash bucket lock. After that it reads the futex user space value |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 57 | * again and verifies that the data has not changed. If it has not changed |
| 58 | * it enqueues itself into the hash bucket, releases the hash bucket lock |
| 59 | * and schedules. |
Thomas Gleixner | 99b60ce | 2014-01-12 15:31:24 -0800 | [diff] [blame] | 60 | * |
| 61 | * The waker side modifies the user space value of the futex and calls |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 62 | * futex_wake(). This function computes the hash bucket and acquires the |
| 63 | * hash bucket lock. Then it looks for waiters on that futex in the hash |
| 64 | * bucket and wakes them. |
Thomas Gleixner | 99b60ce | 2014-01-12 15:31:24 -0800 | [diff] [blame] | 65 | * |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 66 | * In futex wake up scenarios where no tasks are blocked on a futex, taking |
| 67 | * the hb spinlock can be avoided and simply return. In order for this |
| 68 | * optimization to work, ordering guarantees must exist so that the waiter |
| 69 | * being added to the list is acknowledged when the list is concurrently being |
| 70 | * checked by the waker, avoiding scenarios like the following: |
Thomas Gleixner | 99b60ce | 2014-01-12 15:31:24 -0800 | [diff] [blame] | 71 | * |
| 72 | * CPU 0 CPU 1 |
| 73 | * val = *futex; |
| 74 | * sys_futex(WAIT, futex, val); |
| 75 | * futex_wait(futex, val); |
| 76 | * uval = *futex; |
| 77 | * *futex = newval; |
| 78 | * sys_futex(WAKE, futex); |
| 79 | * futex_wake(futex); |
| 80 | * if (queue_empty()) |
| 81 | * return; |
| 82 | * if (uval == val) |
| 83 | * lock(hash_bucket(futex)); |
| 84 | * queue(); |
| 85 | * unlock(hash_bucket(futex)); |
| 86 | * schedule(); |
| 87 | * |
| 88 | * This would cause the waiter on CPU 0 to wait forever because it |
| 89 | * missed the transition of the user space value from val to newval |
| 90 | * and the waker did not find the waiter in the hash bucket queue. |
Thomas Gleixner | 99b60ce | 2014-01-12 15:31:24 -0800 | [diff] [blame] | 91 | * |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 92 | * The correct serialization ensures that a waiter either observes |
| 93 | * the changed user space value before blocking or is woken by a |
| 94 | * concurrent waker: |
| 95 | * |
| 96 | * CPU 0 CPU 1 |
Thomas Gleixner | 99b60ce | 2014-01-12 15:31:24 -0800 | [diff] [blame] | 97 | * val = *futex; |
| 98 | * sys_futex(WAIT, futex, val); |
| 99 | * futex_wait(futex, val); |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 100 | * |
Davidlohr Bueso | d7e8af1 | 2014-04-09 11:55:07 -0700 | [diff] [blame] | 101 | * waiters++; (a) |
Davidlohr Bueso | 8ad7b37 | 2016-02-09 11:15:13 -0800 | [diff] [blame] | 102 | * smp_mb(); (A) <-- paired with -. |
| 103 | * | |
| 104 | * lock(hash_bucket(futex)); | |
| 105 | * | |
| 106 | * uval = *futex; | |
| 107 | * | *futex = newval; |
| 108 | * | sys_futex(WAKE, futex); |
| 109 | * | futex_wake(futex); |
| 110 | * | |
| 111 | * `--------> smp_mb(); (B) |
Thomas Gleixner | 99b60ce | 2014-01-12 15:31:24 -0800 | [diff] [blame] | 112 | * if (uval == val) |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 113 | * queue(); |
Thomas Gleixner | 99b60ce | 2014-01-12 15:31:24 -0800 | [diff] [blame] | 114 | * unlock(hash_bucket(futex)); |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 115 | * schedule(); if (waiters) |
| 116 | * lock(hash_bucket(futex)); |
Davidlohr Bueso | d7e8af1 | 2014-04-09 11:55:07 -0700 | [diff] [blame] | 117 | * else wake_waiters(futex); |
| 118 | * waiters--; (b) unlock(hash_bucket(futex)); |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 119 | * |
Davidlohr Bueso | d7e8af1 | 2014-04-09 11:55:07 -0700 | [diff] [blame] | 120 | * Where (A) orders the waiters increment and the futex value read through |
| 121 | * atomic operations (see hb_waiters_inc) and where (B) orders the write |
Peter Zijlstra | 4b39f99 | 2020-03-04 13:24:24 +0100 | [diff] [blame] | 122 | * to futex and the waiters read (see hb_waiters_pending()). |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 123 | * |
| 124 | * This yields the following case (where X:=waiters, Y:=futex): |
| 125 | * |
| 126 | * X = Y = 0 |
| 127 | * |
| 128 | * w[X]=1 w[Y]=1 |
| 129 | * MB MB |
| 130 | * r[Y]=y r[X]=x |
| 131 | * |
| 132 | * Which guarantees that x==0 && y==0 is impossible; which translates back into |
| 133 | * the guarantee that we cannot both miss the futex variable change and the |
| 134 | * enqueue. |
Davidlohr Bueso | d7e8af1 | 2014-04-09 11:55:07 -0700 | [diff] [blame] | 135 | * |
| 136 | * Note that a new waiter is accounted for in (a) even when it is possible that |
| 137 | * the wait call can return error, in which case we backtrack from it in (b). |
| 138 | * Refer to the comment in queue_lock(). |
| 139 | * |
| 140 | * Similarly, in order to account for waiters being requeued on another |
| 141 | * address we always increment the waiters for the destination bucket before |
| 142 | * acquiring the lock. It then decrements them again after releasing it - |
| 143 | * the code that actually moves the futex(es) between hash buckets (requeue_futex) |
| 144 | * will do the additional required waiter count housekeeping. This is done for |
| 145 | * double_lock_hb() and double_unlock_hb(), respectively. |
Thomas Gleixner | 99b60ce | 2014-01-12 15:31:24 -0800 | [diff] [blame] | 146 | */ |
| 147 | |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 148 | #ifdef CONFIG_HAVE_FUTEX_CMPXCHG |
| 149 | #define futex_cmpxchg_enabled 1 |
| 150 | #else |
| 151 | static int __read_mostly futex_cmpxchg_enabled; |
Heiko Carstens | 03b8c7b | 2014-03-02 13:09:47 +0100 | [diff] [blame] | 152 | #endif |
Thomas Gleixner | a0c1e90 | 2008-02-23 15:23:57 -0800 | [diff] [blame] | 153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | /* |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 155 | * Futex flags used to encode options to functions and preserve them across |
| 156 | * restarts. |
| 157 | */ |
Thomas Gleixner | 784bdf3 | 2016-07-29 16:32:30 +0200 | [diff] [blame] | 158 | #ifdef CONFIG_MMU |
| 159 | # define FLAGS_SHARED 0x01 |
| 160 | #else |
| 161 | /* |
| 162 | * NOMMU does not have per process address space. Let the compiler optimize |
| 163 | * code away. |
| 164 | */ |
| 165 | # define FLAGS_SHARED 0x00 |
| 166 | #endif |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 167 | #define FLAGS_CLOCKRT 0x02 |
| 168 | #define FLAGS_HAS_TIMEOUT 0x04 |
| 169 | |
| 170 | /* |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 171 | * Priority Inheritance state: |
| 172 | */ |
| 173 | struct futex_pi_state { |
| 174 | /* |
| 175 | * list of 'owned' pi_state instances - these have to be |
| 176 | * cleaned up in do_exit() if the task exits prematurely: |
| 177 | */ |
| 178 | struct list_head list; |
| 179 | |
| 180 | /* |
| 181 | * The PI object: |
| 182 | */ |
| 183 | struct rt_mutex pi_mutex; |
| 184 | |
| 185 | struct task_struct *owner; |
Elena Reshetova | 49262de | 2019-02-05 14:24:27 +0200 | [diff] [blame] | 186 | refcount_t refcount; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 187 | |
| 188 | union futex_key key; |
Kees Cook | 3859a27 | 2016-10-28 01:22:25 -0700 | [diff] [blame] | 189 | } __randomize_layout; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 190 | |
Darren Hart | d8d88fb | 2009-09-21 22:30:30 -0700 | [diff] [blame] | 191 | /** |
| 192 | * struct futex_q - The hashed futex queue entry, one per waiting task |
Randy Dunlap | fb62db2 | 2010-10-13 11:02:34 -0700 | [diff] [blame] | 193 | * @list: priority-sorted list of tasks waiting on this futex |
Darren Hart | d8d88fb | 2009-09-21 22:30:30 -0700 | [diff] [blame] | 194 | * @task: the task waiting on the futex |
| 195 | * @lock_ptr: the hash bucket lock |
| 196 | * @key: the key the futex is hashed on |
| 197 | * @pi_state: optional priority inheritance state |
| 198 | * @rt_waiter: rt_waiter storage for use with requeue_pi |
| 199 | * @requeue_pi_key: the requeue_pi target futex key |
| 200 | * @bitset: bitset for the optional bitmasked wakeup |
| 201 | * |
Ingo Molnar | ac6424b | 2017-06-20 12:06:13 +0200 | [diff] [blame] | 202 | * We use this hashed waitqueue, instead of a normal wait_queue_entry_t, so |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | * we can wake only the relevant ones (hashed queues may be shared). |
| 204 | * |
| 205 | * A futex_q has a woken state, just like tasks have TASK_RUNNING. |
Pierre Peiffer | ec92d08 | 2007-05-09 02:35:00 -0700 | [diff] [blame] | 206 | * It is considered woken when plist_node_empty(&q->list) || q->lock_ptr == 0. |
Randy Dunlap | fb62db2 | 2010-10-13 11:02:34 -0700 | [diff] [blame] | 207 | * The order of wakeup is always to make the first condition true, then |
Darren Hart | d8d88fb | 2009-09-21 22:30:30 -0700 | [diff] [blame] | 208 | * the second. |
| 209 | * |
| 210 | * PI futexes are typically woken before they are removed from the hash list via |
| 211 | * the rt_mutex code. See unqueue_me_pi(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | */ |
| 213 | struct futex_q { |
Pierre Peiffer | ec92d08 | 2007-05-09 02:35:00 -0700 | [diff] [blame] | 214 | struct plist_node list; |
Darren Hart | d8d88fb | 2009-09-21 22:30:30 -0700 | [diff] [blame] | 215 | |
Thomas Gleixner | f1a11e0 | 2009-05-05 19:21:40 +0200 | [diff] [blame] | 216 | struct task_struct *task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | spinlock_t *lock_ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | union futex_key key; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 219 | struct futex_pi_state *pi_state; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 220 | struct rt_mutex_waiter *rt_waiter; |
Darren Hart | 84bc4af | 2009-08-13 17:36:53 -0700 | [diff] [blame] | 221 | union futex_key *requeue_pi_key; |
Thomas Gleixner | cd68998 | 2008-02-01 17:45:14 +0100 | [diff] [blame] | 222 | u32 bitset; |
Kees Cook | 3859a27 | 2016-10-28 01:22:25 -0700 | [diff] [blame] | 223 | } __randomize_layout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
Darren Hart | 5bdb05f | 2010-11-08 13:40:28 -0800 | [diff] [blame] | 225 | static const struct futex_q futex_q_init = { |
| 226 | /* list gets initialized in queue_me()*/ |
| 227 | .key = FUTEX_KEY_INIT, |
| 228 | .bitset = FUTEX_BITSET_MATCH_ANY |
| 229 | }; |
| 230 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | /* |
Darren Hart | b2d0994 | 2009-03-12 00:55:37 -0700 | [diff] [blame] | 232 | * Hash buckets are shared by all the futex_keys that hash to the same |
| 233 | * location. Each key may have multiple futex_q structures, one for each task |
| 234 | * waiting on a futex. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | */ |
| 236 | struct futex_hash_bucket { |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 237 | atomic_t waiters; |
Pierre Peiffer | ec92d08 | 2007-05-09 02:35:00 -0700 | [diff] [blame] | 238 | spinlock_t lock; |
| 239 | struct plist_head chain; |
Davidlohr Bueso | a52b89e | 2014-01-12 15:31:23 -0800 | [diff] [blame] | 240 | } ____cacheline_aligned_in_smp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
Rasmus Villemoes | ac742d3 | 2015-09-09 23:36:40 +0200 | [diff] [blame] | 242 | /* |
| 243 | * The base of the bucket array and its size are always used together |
| 244 | * (after initialization only in hash_futex()), so ensure that they |
| 245 | * reside in the same cacheline. |
| 246 | */ |
| 247 | static struct { |
| 248 | struct futex_hash_bucket *queues; |
| 249 | unsigned long hashsize; |
| 250 | } __futex_data __read_mostly __aligned(2*sizeof(long)); |
| 251 | #define futex_queues (__futex_data.queues) |
| 252 | #define futex_hashsize (__futex_data.hashsize) |
Davidlohr Bueso | a52b89e | 2014-01-12 15:31:23 -0800 | [diff] [blame] | 253 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 255 | /* |
| 256 | * Fault injections for futexes. |
| 257 | */ |
| 258 | #ifdef CONFIG_FAIL_FUTEX |
| 259 | |
| 260 | static struct { |
| 261 | struct fault_attr attr; |
| 262 | |
Viresh Kumar | 621a5f7 | 2015-09-26 15:04:07 -0700 | [diff] [blame] | 263 | bool ignore_private; |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 264 | } fail_futex = { |
| 265 | .attr = FAULT_ATTR_INITIALIZER, |
Viresh Kumar | 621a5f7 | 2015-09-26 15:04:07 -0700 | [diff] [blame] | 266 | .ignore_private = false, |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 267 | }; |
| 268 | |
| 269 | static int __init setup_fail_futex(char *str) |
| 270 | { |
| 271 | return setup_fault_attr(&fail_futex.attr, str); |
| 272 | } |
| 273 | __setup("fail_futex=", setup_fail_futex); |
| 274 | |
kbuild test robot | 5d285a7 | 2015-07-21 01:40:45 +0800 | [diff] [blame] | 275 | static bool should_fail_futex(bool fshared) |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 276 | { |
| 277 | if (fail_futex.ignore_private && !fshared) |
| 278 | return false; |
| 279 | |
| 280 | return should_fail(&fail_futex.attr, 1); |
| 281 | } |
| 282 | |
| 283 | #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS |
| 284 | |
| 285 | static int __init fail_futex_debugfs(void) |
| 286 | { |
| 287 | umode_t mode = S_IFREG | S_IRUSR | S_IWUSR; |
| 288 | struct dentry *dir; |
| 289 | |
| 290 | dir = fault_create_debugfs_attr("fail_futex", NULL, |
| 291 | &fail_futex.attr); |
| 292 | if (IS_ERR(dir)) |
| 293 | return PTR_ERR(dir); |
| 294 | |
Greg Kroah-Hartman | 0365aeb | 2019-01-22 16:21:39 +0100 | [diff] [blame] | 295 | debugfs_create_bool("ignore-private", mode, dir, |
| 296 | &fail_futex.ignore_private); |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 297 | return 0; |
| 298 | } |
| 299 | |
| 300 | late_initcall(fail_futex_debugfs); |
| 301 | |
| 302 | #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */ |
| 303 | |
| 304 | #else |
| 305 | static inline bool should_fail_futex(bool fshared) |
| 306 | { |
| 307 | return false; |
| 308 | } |
| 309 | #endif /* CONFIG_FAIL_FUTEX */ |
| 310 | |
Thomas Gleixner | ba31c1a4 | 2019-11-06 22:55:36 +0100 | [diff] [blame] | 311 | #ifdef CONFIG_COMPAT |
| 312 | static void compat_exit_robust_list(struct task_struct *curr); |
| 313 | #else |
| 314 | static inline void compat_exit_robust_list(struct task_struct *curr) { } |
| 315 | #endif |
| 316 | |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 317 | /* |
| 318 | * Reflects a new waiter being added to the waitqueue. |
| 319 | */ |
| 320 | static inline void hb_waiters_inc(struct futex_hash_bucket *hb) |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 321 | { |
| 322 | #ifdef CONFIG_SMP |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 323 | atomic_inc(&hb->waiters); |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 324 | /* |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 325 | * Full barrier (A), see the ordering comment above. |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 326 | */ |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 327 | smp_mb__after_atomic(); |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 328 | #endif |
| 329 | } |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 330 | |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 331 | /* |
| 332 | * Reflects a waiter being removed from the waitqueue by wakeup |
| 333 | * paths. |
| 334 | */ |
| 335 | static inline void hb_waiters_dec(struct futex_hash_bucket *hb) |
| 336 | { |
| 337 | #ifdef CONFIG_SMP |
| 338 | atomic_dec(&hb->waiters); |
| 339 | #endif |
| 340 | } |
| 341 | |
| 342 | static inline int hb_waiters_pending(struct futex_hash_bucket *hb) |
| 343 | { |
| 344 | #ifdef CONFIG_SMP |
Peter Zijlstra | 4b39f99 | 2020-03-04 13:24:24 +0100 | [diff] [blame] | 345 | /* |
| 346 | * Full barrier (B), see the ordering comment above. |
| 347 | */ |
| 348 | smp_mb(); |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 349 | return atomic_read(&hb->waiters); |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 350 | #else |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 351 | return 1; |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 352 | #endif |
| 353 | } |
| 354 | |
Thomas Gleixner | e8b61b3 | 2016-06-01 10:43:29 +0200 | [diff] [blame] | 355 | /** |
| 356 | * hash_futex - Return the hash bucket in the global hash |
| 357 | * @key: Pointer to the futex key for which the hash is calculated |
| 358 | * |
| 359 | * We hash on the keys returned from get_futex_key (see below) and return the |
| 360 | * corresponding hash bucket in the global hash. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | */ |
| 362 | static struct futex_hash_bucket *hash_futex(union futex_key *key) |
| 363 | { |
Thomas Gleixner | 8d67743 | 2020-03-08 19:07:17 +0100 | [diff] [blame] | 364 | u32 hash = jhash2((u32 *)key, offsetof(typeof(*key), both.offset) / 4, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | key->both.offset); |
Thomas Gleixner | 8d67743 | 2020-03-08 19:07:17 +0100 | [diff] [blame] | 366 | |
Davidlohr Bueso | a52b89e | 2014-01-12 15:31:23 -0800 | [diff] [blame] | 367 | return &futex_queues[hash & (futex_hashsize - 1)]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | } |
| 369 | |
Thomas Gleixner | e8b61b3 | 2016-06-01 10:43:29 +0200 | [diff] [blame] | 370 | |
| 371 | /** |
| 372 | * match_futex - Check whether two futex keys are equal |
| 373 | * @key1: Pointer to key1 |
| 374 | * @key2: Pointer to key2 |
| 375 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | * Return 1 if two futex_keys are equal, 0 otherwise. |
| 377 | */ |
| 378 | static inline int match_futex(union futex_key *key1, union futex_key *key2) |
| 379 | { |
Darren Hart | 2bc8720 | 2009-10-14 10:12:39 -0700 | [diff] [blame] | 380 | return (key1 && key2 |
| 381 | && key1->both.word == key2->both.word |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | && key1->both.ptr == key2->both.ptr |
| 383 | && key1->both.offset == key2->both.offset); |
| 384 | } |
| 385 | |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 386 | enum futex_access { |
| 387 | FUTEX_READ, |
| 388 | FUTEX_WRITE |
| 389 | }; |
| 390 | |
Eric Dumazet | 34f01cc | 2007-05-09 02:35:04 -0700 | [diff] [blame] | 391 | /** |
Waiman Long | 5ca584d | 2019-05-28 12:03:45 -0400 | [diff] [blame] | 392 | * futex_setup_timer - set up the sleeping hrtimer. |
| 393 | * @time: ptr to the given timeout value |
| 394 | * @timeout: the hrtimer_sleeper structure to be set up |
| 395 | * @flags: futex flags |
| 396 | * @range_ns: optional range in ns |
| 397 | * |
| 398 | * Return: Initialized hrtimer_sleeper structure or NULL if no timeout |
| 399 | * value given |
| 400 | */ |
| 401 | static inline struct hrtimer_sleeper * |
| 402 | futex_setup_timer(ktime_t *time, struct hrtimer_sleeper *timeout, |
| 403 | int flags, u64 range_ns) |
| 404 | { |
| 405 | if (!time) |
| 406 | return NULL; |
| 407 | |
Sebastian Andrzej Siewior | dbc1625 | 2019-07-26 20:30:50 +0200 | [diff] [blame] | 408 | hrtimer_init_sleeper_on_stack(timeout, (flags & FLAGS_CLOCKRT) ? |
| 409 | CLOCK_REALTIME : CLOCK_MONOTONIC, |
| 410 | HRTIMER_MODE_ABS); |
Waiman Long | 5ca584d | 2019-05-28 12:03:45 -0400 | [diff] [blame] | 411 | /* |
| 412 | * If range_ns is 0, calling hrtimer_set_expires_range_ns() is |
| 413 | * effectively the same as calling hrtimer_set_expires(). |
| 414 | */ |
| 415 | hrtimer_set_expires_range_ns(&timeout->timer, *time, range_ns); |
| 416 | |
| 417 | return timeout; |
| 418 | } |
| 419 | |
Peter Zijlstra | 8019ad1 | 2020-03-04 11:28:31 +0100 | [diff] [blame] | 420 | /* |
| 421 | * Generate a machine wide unique identifier for this inode. |
| 422 | * |
| 423 | * This relies on u64 not wrapping in the life-time of the machine; which with |
| 424 | * 1ns resolution means almost 585 years. |
| 425 | * |
| 426 | * This further relies on the fact that a well formed program will not unmap |
| 427 | * the file while it has a (shared) futex waiting on it. This mapping will have |
| 428 | * a file reference which pins the mount and inode. |
| 429 | * |
| 430 | * If for some reason an inode gets evicted and read back in again, it will get |
| 431 | * a new sequence number and will _NOT_ match, even though it is the exact same |
| 432 | * file. |
| 433 | * |
| 434 | * It is important that match_futex() will never have a false-positive, esp. |
| 435 | * for PI futexes that can mess up the state. The above argues that false-negatives |
| 436 | * are only possible for malformed programs. |
| 437 | */ |
| 438 | static u64 get_inode_sequence_number(struct inode *inode) |
| 439 | { |
| 440 | static atomic64_t i_seq; |
| 441 | u64 old; |
| 442 | |
| 443 | /* Does the inode already have a sequence number? */ |
| 444 | old = atomic64_read(&inode->i_sequence); |
| 445 | if (likely(old)) |
| 446 | return old; |
| 447 | |
| 448 | for (;;) { |
| 449 | u64 new = atomic64_add_return(1, &i_seq); |
| 450 | if (WARN_ON_ONCE(!new)) |
| 451 | continue; |
| 452 | |
| 453 | old = atomic64_cmpxchg_relaxed(&inode->i_sequence, 0, new); |
| 454 | if (old) |
| 455 | return old; |
| 456 | return new; |
| 457 | } |
| 458 | } |
| 459 | |
Waiman Long | 5ca584d | 2019-05-28 12:03:45 -0400 | [diff] [blame] | 460 | /** |
Darren Hart | d96ee56 | 2009-09-21 22:30:22 -0700 | [diff] [blame] | 461 | * get_futex_key() - Get parameters which are the keys for a futex |
| 462 | * @uaddr: virtual address of the futex |
André Almeida | 9261308 | 2020-07-02 17:28:43 -0300 | [diff] [blame] | 463 | * @fshared: false for a PROCESS_PRIVATE futex, true for PROCESS_SHARED |
Darren Hart | d96ee56 | 2009-09-21 22:30:22 -0700 | [diff] [blame] | 464 | * @key: address where result is stored. |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 465 | * @rw: mapping needs to be read/write (values: FUTEX_READ, |
| 466 | * FUTEX_WRITE) |
Eric Dumazet | 34f01cc | 2007-05-09 02:35:04 -0700 | [diff] [blame] | 467 | * |
Randy Dunlap | 6c23cbb | 2013-03-05 10:00:24 -0800 | [diff] [blame] | 468 | * Return: a negative error code or 0 |
| 469 | * |
Mauro Carvalho Chehab | 7b4ff1a | 2017-05-11 10:17:45 -0300 | [diff] [blame] | 470 | * The key words are stored in @key on success. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | * |
Peter Zijlstra | 8019ad1 | 2020-03-04 11:28:31 +0100 | [diff] [blame] | 472 | * For shared mappings (when @fshared), the key is: |
Mauro Carvalho Chehab | 03c109d | 2020-04-14 18:48:58 +0200 | [diff] [blame] | 473 | * |
Peter Zijlstra | 8019ad1 | 2020-03-04 11:28:31 +0100 | [diff] [blame] | 474 | * ( inode->i_sequence, page->index, offset_within_page ) |
Mauro Carvalho Chehab | 03c109d | 2020-04-14 18:48:58 +0200 | [diff] [blame] | 475 | * |
Peter Zijlstra | 8019ad1 | 2020-03-04 11:28:31 +0100 | [diff] [blame] | 476 | * [ also see get_inode_sequence_number() ] |
| 477 | * |
| 478 | * For private mappings (or when !@fshared), the key is: |
Mauro Carvalho Chehab | 03c109d | 2020-04-14 18:48:58 +0200 | [diff] [blame] | 479 | * |
Peter Zijlstra | 8019ad1 | 2020-03-04 11:28:31 +0100 | [diff] [blame] | 480 | * ( current->mm, address, 0 ) |
| 481 | * |
| 482 | * This allows (cross process, where applicable) identification of the futex |
| 483 | * without keeping the page pinned for the duration of the FUTEX_WAIT. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | * |
Darren Hart | b2d0994 | 2009-03-12 00:55:37 -0700 | [diff] [blame] | 485 | * lock_page() might sleep, the caller should not hold a spinlock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | */ |
André Almeida | 9261308 | 2020-07-02 17:28:43 -0300 | [diff] [blame] | 487 | static int get_futex_key(u32 __user *uaddr, bool fshared, union futex_key *key, |
| 488 | enum futex_access rw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | { |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 490 | unsigned long address = (unsigned long)uaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | struct mm_struct *mm = current->mm; |
Mel Gorman | 077fa7a | 2016-06-08 14:25:22 +0100 | [diff] [blame] | 492 | struct page *page, *tail; |
Kirill A. Shutemov | 14d27ab | 2016-01-15 16:53:00 -0800 | [diff] [blame] | 493 | struct address_space *mapping; |
Shawn Bohrer | 9ea7150 | 2011-06-30 11:21:32 -0500 | [diff] [blame] | 494 | int err, ro = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | /* |
| 497 | * The futex address must be "naturally" aligned. |
| 498 | */ |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 499 | key->both.offset = address % PAGE_SIZE; |
Eric Dumazet | 34f01cc | 2007-05-09 02:35:04 -0700 | [diff] [blame] | 500 | if (unlikely((address % sizeof(u32)) != 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | return -EINVAL; |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 502 | address -= key->both.offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 504 | if (unlikely(!access_ok(uaddr, sizeof(u32)))) |
Linus Torvalds | 5cdec2d | 2013-12-12 09:53:51 -0800 | [diff] [blame] | 505 | return -EFAULT; |
| 506 | |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 507 | if (unlikely(should_fail_futex(fshared))) |
| 508 | return -EFAULT; |
| 509 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | /* |
Eric Dumazet | 34f01cc | 2007-05-09 02:35:04 -0700 | [diff] [blame] | 511 | * PROCESS_PRIVATE futexes are fast. |
| 512 | * As the mm cannot disappear under us and the 'key' only needs |
| 513 | * virtual address, we dont even have to find the underlying vma. |
| 514 | * Note : We do have to check 'uaddr' is a valid user address, |
| 515 | * but access_ok() should be faster than find_vma() |
| 516 | */ |
| 517 | if (!fshared) { |
Eric Dumazet | 34f01cc | 2007-05-09 02:35:04 -0700 | [diff] [blame] | 518 | key->private.mm = mm; |
| 519 | key->private.address = address; |
| 520 | return 0; |
| 521 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 523 | again: |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 524 | /* Ignore any VERIFY_READ mapping (futex common case) */ |
André Almeida | 9261308 | 2020-07-02 17:28:43 -0300 | [diff] [blame] | 525 | if (unlikely(should_fail_futex(true))) |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 526 | return -EFAULT; |
| 527 | |
Ira Weiny | 73b0140 | 2019-05-13 17:17:11 -0700 | [diff] [blame] | 528 | err = get_user_pages_fast(address, 1, FOLL_WRITE, &page); |
Shawn Bohrer | 9ea7150 | 2011-06-30 11:21:32 -0500 | [diff] [blame] | 529 | /* |
| 530 | * If write access is not required (eg. FUTEX_WAIT), try |
| 531 | * and get read-only access. |
| 532 | */ |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 533 | if (err == -EFAULT && rw == FUTEX_READ) { |
Shawn Bohrer | 9ea7150 | 2011-06-30 11:21:32 -0500 | [diff] [blame] | 534 | err = get_user_pages_fast(address, 1, 0, &page); |
| 535 | ro = 1; |
| 536 | } |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 537 | if (err < 0) |
| 538 | return err; |
Shawn Bohrer | 9ea7150 | 2011-06-30 11:21:32 -0500 | [diff] [blame] | 539 | else |
| 540 | err = 0; |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 541 | |
Mel Gorman | 65d8fc7 | 2016-02-09 11:15:14 -0800 | [diff] [blame] | 542 | /* |
| 543 | * The treatment of mapping from this point on is critical. The page |
| 544 | * lock protects many things but in this context the page lock |
| 545 | * stabilizes mapping, prevents inode freeing in the shared |
| 546 | * file-backed region case and guards against movement to swap cache. |
| 547 | * |
| 548 | * Strictly speaking the page lock is not needed in all cases being |
| 549 | * considered here and page lock forces unnecessarily serialization |
| 550 | * From this point on, mapping will be re-verified if necessary and |
| 551 | * page lock will be acquired only if it is unavoidable |
Mel Gorman | 077fa7a | 2016-06-08 14:25:22 +0100 | [diff] [blame] | 552 | * |
| 553 | * Mapping checks require the head page for any compound page so the |
| 554 | * head page and mapping is looked up now. For anonymous pages, it |
| 555 | * does not matter if the page splits in the future as the key is |
| 556 | * based on the address. For filesystem-backed pages, the tail is |
| 557 | * required as the index of the page determines the key. For |
| 558 | * base pages, there is no tail page and tail == page. |
Mel Gorman | 65d8fc7 | 2016-02-09 11:15:14 -0800 | [diff] [blame] | 559 | */ |
Mel Gorman | 077fa7a | 2016-06-08 14:25:22 +0100 | [diff] [blame] | 560 | tail = page; |
Mel Gorman | 65d8fc7 | 2016-02-09 11:15:14 -0800 | [diff] [blame] | 561 | page = compound_head(page); |
| 562 | mapping = READ_ONCE(page->mapping); |
| 563 | |
Hugh Dickins | e6780f7 | 2011-12-31 11:44:01 -0800 | [diff] [blame] | 564 | /* |
Kirill A. Shutemov | 14d27ab | 2016-01-15 16:53:00 -0800 | [diff] [blame] | 565 | * If page->mapping is NULL, then it cannot be a PageAnon |
Hugh Dickins | e6780f7 | 2011-12-31 11:44:01 -0800 | [diff] [blame] | 566 | * page; but it might be the ZERO_PAGE or in the gate area or |
| 567 | * in a special mapping (all cases which we are happy to fail); |
| 568 | * or it may have been a good file page when get_user_pages_fast |
| 569 | * found it, but truncated or holepunched or subjected to |
| 570 | * invalidate_complete_page2 before we got the page lock (also |
| 571 | * cases which we are happy to fail). And we hold a reference, |
| 572 | * so refcount care in invalidate_complete_page's remove_mapping |
| 573 | * prevents drop_caches from setting mapping to NULL beneath us. |
| 574 | * |
| 575 | * The case we do have to guard against is when memory pressure made |
| 576 | * shmem_writepage move it from filecache to swapcache beneath us: |
Kirill A. Shutemov | 14d27ab | 2016-01-15 16:53:00 -0800 | [diff] [blame] | 577 | * an unlikely race, but we do need to retry for page->mapping. |
Hugh Dickins | e6780f7 | 2011-12-31 11:44:01 -0800 | [diff] [blame] | 578 | */ |
Mel Gorman | 65d8fc7 | 2016-02-09 11:15:14 -0800 | [diff] [blame] | 579 | if (unlikely(!mapping)) { |
| 580 | int shmem_swizzled; |
| 581 | |
| 582 | /* |
| 583 | * Page lock is required to identify which special case above |
| 584 | * applies. If this is really a shmem page then the page lock |
| 585 | * will prevent unexpected transitions. |
| 586 | */ |
| 587 | lock_page(page); |
| 588 | shmem_swizzled = PageSwapCache(page) || page->mapping; |
Kirill A. Shutemov | 14d27ab | 2016-01-15 16:53:00 -0800 | [diff] [blame] | 589 | unlock_page(page); |
| 590 | put_page(page); |
Mel Gorman | 65d8fc7 | 2016-02-09 11:15:14 -0800 | [diff] [blame] | 591 | |
Hugh Dickins | e6780f7 | 2011-12-31 11:44:01 -0800 | [diff] [blame] | 592 | if (shmem_swizzled) |
| 593 | goto again; |
Mel Gorman | 65d8fc7 | 2016-02-09 11:15:14 -0800 | [diff] [blame] | 594 | |
Hugh Dickins | e6780f7 | 2011-12-31 11:44:01 -0800 | [diff] [blame] | 595 | return -EFAULT; |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 596 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | |
| 598 | /* |
| 599 | * Private mappings are handled in a simple way. |
| 600 | * |
Mel Gorman | 65d8fc7 | 2016-02-09 11:15:14 -0800 | [diff] [blame] | 601 | * If the futex key is stored on an anonymous page, then the associated |
| 602 | * object is the mm which is implicitly pinned by the calling process. |
| 603 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | * NOTE: When userspace waits on a MAP_SHARED mapping, even if |
| 605 | * it's a read-only handle, it's expected that futexes attach to |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 606 | * the object not the particular process. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | */ |
Kirill A. Shutemov | 14d27ab | 2016-01-15 16:53:00 -0800 | [diff] [blame] | 608 | if (PageAnon(page)) { |
Shawn Bohrer | 9ea7150 | 2011-06-30 11:21:32 -0500 | [diff] [blame] | 609 | /* |
| 610 | * A RO anonymous page will never change and thus doesn't make |
| 611 | * sense for futex operations. |
| 612 | */ |
André Almeida | 9261308 | 2020-07-02 17:28:43 -0300 | [diff] [blame] | 613 | if (unlikely(should_fail_futex(true)) || ro) { |
Shawn Bohrer | 9ea7150 | 2011-06-30 11:21:32 -0500 | [diff] [blame] | 614 | err = -EFAULT; |
| 615 | goto out; |
| 616 | } |
| 617 | |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 618 | key->both.offset |= FUT_OFF_MMSHARED; /* ref taken on mm */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | key->private.mm = mm; |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 620 | key->private.address = address; |
Mel Gorman | 65d8fc7 | 2016-02-09 11:15:14 -0800 | [diff] [blame] | 621 | |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 622 | } else { |
Mel Gorman | 65d8fc7 | 2016-02-09 11:15:14 -0800 | [diff] [blame] | 623 | struct inode *inode; |
| 624 | |
| 625 | /* |
| 626 | * The associated futex object in this case is the inode and |
| 627 | * the page->mapping must be traversed. Ordinarily this should |
| 628 | * be stabilised under page lock but it's not strictly |
| 629 | * necessary in this case as we just want to pin the inode, not |
| 630 | * update the radix tree or anything like that. |
| 631 | * |
| 632 | * The RCU read lock is taken as the inode is finally freed |
| 633 | * under RCU. If the mapping still matches expectations then the |
| 634 | * mapping->host can be safely accessed as being a valid inode. |
| 635 | */ |
| 636 | rcu_read_lock(); |
| 637 | |
| 638 | if (READ_ONCE(page->mapping) != mapping) { |
| 639 | rcu_read_unlock(); |
| 640 | put_page(page); |
| 641 | |
| 642 | goto again; |
| 643 | } |
| 644 | |
| 645 | inode = READ_ONCE(mapping->host); |
| 646 | if (!inode) { |
| 647 | rcu_read_unlock(); |
| 648 | put_page(page); |
| 649 | |
| 650 | goto again; |
| 651 | } |
| 652 | |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 653 | key->both.offset |= FUT_OFF_INODE; /* inode-based key */ |
Peter Zijlstra | 8019ad1 | 2020-03-04 11:28:31 +0100 | [diff] [blame] | 654 | key->shared.i_seq = get_inode_sequence_number(inode); |
Mel Gorman | 077fa7a | 2016-06-08 14:25:22 +0100 | [diff] [blame] | 655 | key->shared.pgoff = basepage_index(tail); |
Mel Gorman | 65d8fc7 | 2016-02-09 11:15:14 -0800 | [diff] [blame] | 656 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | } |
| 658 | |
Shawn Bohrer | 9ea7150 | 2011-06-30 11:21:32 -0500 | [diff] [blame] | 659 | out: |
Kirill A. Shutemov | 14d27ab | 2016-01-15 16:53:00 -0800 | [diff] [blame] | 660 | put_page(page); |
Shawn Bohrer | 9ea7150 | 2011-06-30 11:21:32 -0500 | [diff] [blame] | 661 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | } |
| 663 | |
Darren Hart | d96ee56 | 2009-09-21 22:30:22 -0700 | [diff] [blame] | 664 | /** |
| 665 | * fault_in_user_writeable() - Fault in user address and verify RW access |
Thomas Gleixner | d072599 | 2009-06-11 23:15:43 +0200 | [diff] [blame] | 666 | * @uaddr: pointer to faulting user space address |
| 667 | * |
| 668 | * Slow path to fixup the fault we just took in the atomic write |
| 669 | * access to @uaddr. |
| 670 | * |
Randy Dunlap | fb62db2 | 2010-10-13 11:02:34 -0700 | [diff] [blame] | 671 | * We have no generic implementation of a non-destructive write to the |
Thomas Gleixner | d072599 | 2009-06-11 23:15:43 +0200 | [diff] [blame] | 672 | * user address. We know that we faulted in the atomic pagefault |
| 673 | * disabled section so we can as well avoid the #PF overhead by |
| 674 | * calling get_user_pages() right away. |
| 675 | */ |
| 676 | static int fault_in_user_writeable(u32 __user *uaddr) |
| 677 | { |
Andi Kleen | 722d017 | 2009-12-08 13:19:42 +0100 | [diff] [blame] | 678 | struct mm_struct *mm = current->mm; |
| 679 | int ret; |
| 680 | |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 681 | mmap_read_lock(mm); |
Peter Xu | 64019a2 | 2020-08-11 18:39:01 -0700 | [diff] [blame] | 682 | ret = fixup_user_fault(mm, (unsigned long)uaddr, |
Dominik Dingel | 4a9e1cd | 2016-01-15 16:57:04 -0800 | [diff] [blame] | 683 | FAULT_FLAG_WRITE, NULL); |
Michel Lespinasse | d8ed45c | 2020-06-08 21:33:25 -0700 | [diff] [blame] | 684 | mmap_read_unlock(mm); |
Andi Kleen | 722d017 | 2009-12-08 13:19:42 +0100 | [diff] [blame] | 685 | |
Thomas Gleixner | d072599 | 2009-06-11 23:15:43 +0200 | [diff] [blame] | 686 | return ret < 0 ? ret : 0; |
| 687 | } |
| 688 | |
Darren Hart | 4b1c486 | 2009-04-03 13:39:42 -0700 | [diff] [blame] | 689 | /** |
| 690 | * futex_top_waiter() - Return the highest priority waiter on a futex |
Darren Hart | d96ee56 | 2009-09-21 22:30:22 -0700 | [diff] [blame] | 691 | * @hb: the hash bucket the futex_q's reside in |
| 692 | * @key: the futex key (to distinguish it from other futex futex_q's) |
Darren Hart | 4b1c486 | 2009-04-03 13:39:42 -0700 | [diff] [blame] | 693 | * |
| 694 | * Must be called with the hb lock held. |
| 695 | */ |
| 696 | static struct futex_q *futex_top_waiter(struct futex_hash_bucket *hb, |
| 697 | union futex_key *key) |
| 698 | { |
| 699 | struct futex_q *this; |
| 700 | |
| 701 | plist_for_each_entry(this, &hb->chain, list) { |
| 702 | if (match_futex(&this->key, key)) |
| 703 | return this; |
| 704 | } |
| 705 | return NULL; |
| 706 | } |
| 707 | |
Michel Lespinasse | 37a9d91 | 2011-03-10 18:48:51 -0800 | [diff] [blame] | 708 | static int cmpxchg_futex_value_locked(u32 *curval, u32 __user *uaddr, |
| 709 | u32 uval, u32 newval) |
Thomas Gleixner | 36cf3b5 | 2007-07-15 23:41:20 -0700 | [diff] [blame] | 710 | { |
Michel Lespinasse | 37a9d91 | 2011-03-10 18:48:51 -0800 | [diff] [blame] | 711 | int ret; |
Thomas Gleixner | 36cf3b5 | 2007-07-15 23:41:20 -0700 | [diff] [blame] | 712 | |
| 713 | pagefault_disable(); |
Michel Lespinasse | 37a9d91 | 2011-03-10 18:48:51 -0800 | [diff] [blame] | 714 | ret = futex_atomic_cmpxchg_inatomic(curval, uaddr, uval, newval); |
Thomas Gleixner | 36cf3b5 | 2007-07-15 23:41:20 -0700 | [diff] [blame] | 715 | pagefault_enable(); |
| 716 | |
Michel Lespinasse | 37a9d91 | 2011-03-10 18:48:51 -0800 | [diff] [blame] | 717 | return ret; |
Thomas Gleixner | 36cf3b5 | 2007-07-15 23:41:20 -0700 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | static int get_futex_value_locked(u32 *dest, u32 __user *from) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | { |
| 722 | int ret; |
| 723 | |
Peter Zijlstra | a866374 | 2006-12-06 20:32:20 -0800 | [diff] [blame] | 724 | pagefault_disable(); |
Linus Torvalds | bd28b14 | 2016-05-22 17:21:27 -0700 | [diff] [blame] | 725 | ret = __get_user(*dest, from); |
Peter Zijlstra | a866374 | 2006-12-06 20:32:20 -0800 | [diff] [blame] | 726 | pagefault_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | |
| 728 | return ret ? -EFAULT : 0; |
| 729 | } |
| 730 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 731 | |
| 732 | /* |
| 733 | * PI code: |
| 734 | */ |
| 735 | static int refill_pi_state_cache(void) |
| 736 | { |
| 737 | struct futex_pi_state *pi_state; |
| 738 | |
| 739 | if (likely(current->pi_state_cache)) |
| 740 | return 0; |
| 741 | |
Burman Yan | 4668edc | 2006-12-06 20:38:51 -0800 | [diff] [blame] | 742 | pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 743 | |
| 744 | if (!pi_state) |
| 745 | return -ENOMEM; |
| 746 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 747 | INIT_LIST_HEAD(&pi_state->list); |
| 748 | /* pi_mutex gets initialized later */ |
| 749 | pi_state->owner = NULL; |
Elena Reshetova | 49262de | 2019-02-05 14:24:27 +0200 | [diff] [blame] | 750 | refcount_set(&pi_state->refcount, 1); |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 751 | pi_state->key = FUTEX_KEY_INIT; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 752 | |
| 753 | current->pi_state_cache = pi_state; |
| 754 | |
| 755 | return 0; |
| 756 | } |
| 757 | |
Peter Zijlstra | bf92cf3 | 2017-03-22 11:35:53 +0100 | [diff] [blame] | 758 | static struct futex_pi_state *alloc_pi_state(void) |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 759 | { |
| 760 | struct futex_pi_state *pi_state = current->pi_state_cache; |
| 761 | |
| 762 | WARN_ON(!pi_state); |
| 763 | current->pi_state_cache = NULL; |
| 764 | |
| 765 | return pi_state; |
| 766 | } |
| 767 | |
Peter Zijlstra | bf92cf3 | 2017-03-22 11:35:53 +0100 | [diff] [blame] | 768 | static void get_pi_state(struct futex_pi_state *pi_state) |
| 769 | { |
Elena Reshetova | 49262de | 2019-02-05 14:24:27 +0200 | [diff] [blame] | 770 | WARN_ON_ONCE(!refcount_inc_not_zero(&pi_state->refcount)); |
Peter Zijlstra | bf92cf3 | 2017-03-22 11:35:53 +0100 | [diff] [blame] | 771 | } |
| 772 | |
Brian Silverman | 30a6b80 | 2014-10-25 20:20:37 -0400 | [diff] [blame] | 773 | /* |
Thomas Gleixner | 29e9ee5 | 2015-12-19 20:07:39 +0000 | [diff] [blame] | 774 | * Drops a reference to the pi_state object and frees or caches it |
| 775 | * when the last reference is gone. |
Brian Silverman | 30a6b80 | 2014-10-25 20:20:37 -0400 | [diff] [blame] | 776 | */ |
Thomas Gleixner | 29e9ee5 | 2015-12-19 20:07:39 +0000 | [diff] [blame] | 777 | static void put_pi_state(struct futex_pi_state *pi_state) |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 778 | { |
Brian Silverman | 30a6b80 | 2014-10-25 20:20:37 -0400 | [diff] [blame] | 779 | if (!pi_state) |
| 780 | return; |
| 781 | |
Elena Reshetova | 49262de | 2019-02-05 14:24:27 +0200 | [diff] [blame] | 782 | if (!refcount_dec_and_test(&pi_state->refcount)) |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 783 | return; |
| 784 | |
| 785 | /* |
| 786 | * If pi_state->owner is NULL, the owner is most probably dying |
| 787 | * and has cleaned up the pi_state already |
| 788 | */ |
| 789 | if (pi_state->owner) { |
Peter Zijlstra | c74aef2 | 2017-09-22 17:48:06 +0200 | [diff] [blame] | 790 | struct task_struct *owner; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 791 | |
Peter Zijlstra | c74aef2 | 2017-09-22 17:48:06 +0200 | [diff] [blame] | 792 | raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock); |
| 793 | owner = pi_state->owner; |
| 794 | if (owner) { |
| 795 | raw_spin_lock(&owner->pi_lock); |
| 796 | list_del_init(&pi_state->list); |
| 797 | raw_spin_unlock(&owner->pi_lock); |
| 798 | } |
| 799 | rt_mutex_proxy_unlock(&pi_state->pi_mutex, owner); |
| 800 | raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 801 | } |
| 802 | |
Peter Zijlstra | c74aef2 | 2017-09-22 17:48:06 +0200 | [diff] [blame] | 803 | if (current->pi_state_cache) { |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 804 | kfree(pi_state); |
Peter Zijlstra | c74aef2 | 2017-09-22 17:48:06 +0200 | [diff] [blame] | 805 | } else { |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 806 | /* |
| 807 | * pi_state->list is already empty. |
| 808 | * clear pi_state->owner. |
| 809 | * refcount is at 0 - put it back to 1. |
| 810 | */ |
| 811 | pi_state->owner = NULL; |
Elena Reshetova | 49262de | 2019-02-05 14:24:27 +0200 | [diff] [blame] | 812 | refcount_set(&pi_state->refcount, 1); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 813 | current->pi_state_cache = pi_state; |
| 814 | } |
| 815 | } |
| 816 | |
Nicolas Pitre | bc2eecd | 2017-08-01 00:31:32 -0400 | [diff] [blame] | 817 | #ifdef CONFIG_FUTEX_PI |
| 818 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 819 | /* |
| 820 | * This task is holding PI mutexes at exit time => bad. |
| 821 | * Kernel cleans up PI-state, but userspace is likely hosed. |
| 822 | * (Robust-futex cleanup is separate and might save the day for userspace.) |
| 823 | */ |
Thomas Gleixner | ba31c1a4 | 2019-11-06 22:55:36 +0100 | [diff] [blame] | 824 | static void exit_pi_state_list(struct task_struct *curr) |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 825 | { |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 826 | struct list_head *next, *head = &curr->pi_state_list; |
| 827 | struct futex_pi_state *pi_state; |
Ingo Molnar | 627371d | 2006-07-29 05:16:20 +0200 | [diff] [blame] | 828 | struct futex_hash_bucket *hb; |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 829 | union futex_key key = FUTEX_KEY_INIT; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 830 | |
Thomas Gleixner | a0c1e90 | 2008-02-23 15:23:57 -0800 | [diff] [blame] | 831 | if (!futex_cmpxchg_enabled) |
| 832 | return; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 833 | /* |
| 834 | * We are a ZOMBIE and nobody can enqueue itself on |
| 835 | * pi_state_list anymore, but we have to be careful |
Ingo Molnar | 627371d | 2006-07-29 05:16:20 +0200 | [diff] [blame] | 836 | * versus waiters unqueueing themselves: |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 837 | */ |
Thomas Gleixner | 1d61548 | 2009-11-17 14:54:03 +0100 | [diff] [blame] | 838 | raw_spin_lock_irq(&curr->pi_lock); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 839 | while (!list_empty(head)) { |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 840 | next = head->next; |
| 841 | pi_state = list_entry(next, struct futex_pi_state, list); |
| 842 | key = pi_state->key; |
Ingo Molnar | 627371d | 2006-07-29 05:16:20 +0200 | [diff] [blame] | 843 | hb = hash_futex(&key); |
Peter Zijlstra | 153fbd1 | 2017-10-31 11:18:53 +0100 | [diff] [blame] | 844 | |
| 845 | /* |
| 846 | * We can race against put_pi_state() removing itself from the |
| 847 | * list (a waiter going away). put_pi_state() will first |
| 848 | * decrement the reference count and then modify the list, so |
| 849 | * its possible to see the list entry but fail this reference |
| 850 | * acquire. |
| 851 | * |
| 852 | * In that case; drop the locks to let put_pi_state() make |
| 853 | * progress and retry the loop. |
| 854 | */ |
Elena Reshetova | 49262de | 2019-02-05 14:24:27 +0200 | [diff] [blame] | 855 | if (!refcount_inc_not_zero(&pi_state->refcount)) { |
Peter Zijlstra | 153fbd1 | 2017-10-31 11:18:53 +0100 | [diff] [blame] | 856 | raw_spin_unlock_irq(&curr->pi_lock); |
| 857 | cpu_relax(); |
| 858 | raw_spin_lock_irq(&curr->pi_lock); |
| 859 | continue; |
| 860 | } |
Thomas Gleixner | 1d61548 | 2009-11-17 14:54:03 +0100 | [diff] [blame] | 861 | raw_spin_unlock_irq(&curr->pi_lock); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 862 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 863 | spin_lock(&hb->lock); |
Peter Zijlstra | c74aef2 | 2017-09-22 17:48:06 +0200 | [diff] [blame] | 864 | raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock); |
| 865 | raw_spin_lock(&curr->pi_lock); |
Ingo Molnar | 627371d | 2006-07-29 05:16:20 +0200 | [diff] [blame] | 866 | /* |
| 867 | * We dropped the pi-lock, so re-check whether this |
| 868 | * task still owns the PI-state: |
| 869 | */ |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 870 | if (head->next != next) { |
Peter Zijlstra | 153fbd1 | 2017-10-31 11:18:53 +0100 | [diff] [blame] | 871 | /* retain curr->pi_lock for the loop invariant */ |
Peter Zijlstra | c74aef2 | 2017-09-22 17:48:06 +0200 | [diff] [blame] | 872 | raw_spin_unlock(&pi_state->pi_mutex.wait_lock); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 873 | spin_unlock(&hb->lock); |
Peter Zijlstra | 153fbd1 | 2017-10-31 11:18:53 +0100 | [diff] [blame] | 874 | put_pi_state(pi_state); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 875 | continue; |
| 876 | } |
| 877 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 878 | WARN_ON(pi_state->owner != curr); |
Ingo Molnar | 627371d | 2006-07-29 05:16:20 +0200 | [diff] [blame] | 879 | WARN_ON(list_empty(&pi_state->list)); |
| 880 | list_del_init(&pi_state->list); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 881 | pi_state->owner = NULL; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 882 | |
Peter Zijlstra | 153fbd1 | 2017-10-31 11:18:53 +0100 | [diff] [blame] | 883 | raw_spin_unlock(&curr->pi_lock); |
Peter Zijlstra | c74aef2 | 2017-09-22 17:48:06 +0200 | [diff] [blame] | 884 | raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 885 | spin_unlock(&hb->lock); |
| 886 | |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 887 | rt_mutex_futex_unlock(&pi_state->pi_mutex); |
| 888 | put_pi_state(pi_state); |
| 889 | |
Thomas Gleixner | 1d61548 | 2009-11-17 14:54:03 +0100 | [diff] [blame] | 890 | raw_spin_lock_irq(&curr->pi_lock); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 891 | } |
Thomas Gleixner | 1d61548 | 2009-11-17 14:54:03 +0100 | [diff] [blame] | 892 | raw_spin_unlock_irq(&curr->pi_lock); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 893 | } |
Thomas Gleixner | ba31c1a4 | 2019-11-06 22:55:36 +0100 | [diff] [blame] | 894 | #else |
| 895 | static inline void exit_pi_state_list(struct task_struct *curr) { } |
Nicolas Pitre | bc2eecd | 2017-08-01 00:31:32 -0400 | [diff] [blame] | 896 | #endif |
| 897 | |
Thomas Gleixner | 54a2178 | 2014-06-03 12:27:08 +0000 | [diff] [blame] | 898 | /* |
| 899 | * We need to check the following states: |
| 900 | * |
| 901 | * Waiter | pi_state | pi->owner | uTID | uODIED | ? |
| 902 | * |
| 903 | * [1] NULL | --- | --- | 0 | 0/1 | Valid |
| 904 | * [2] NULL | --- | --- | >0 | 0/1 | Valid |
| 905 | * |
| 906 | * [3] Found | NULL | -- | Any | 0/1 | Invalid |
| 907 | * |
| 908 | * [4] Found | Found | NULL | 0 | 1 | Valid |
| 909 | * [5] Found | Found | NULL | >0 | 1 | Invalid |
| 910 | * |
| 911 | * [6] Found | Found | task | 0 | 1 | Valid |
| 912 | * |
| 913 | * [7] Found | Found | NULL | Any | 0 | Invalid |
| 914 | * |
| 915 | * [8] Found | Found | task | ==taskTID | 0/1 | Valid |
| 916 | * [9] Found | Found | task | 0 | 0 | Invalid |
| 917 | * [10] Found | Found | task | !=taskTID | 0/1 | Invalid |
| 918 | * |
| 919 | * [1] Indicates that the kernel can acquire the futex atomically. We |
Randy Dunlap | 7b7b8a2 | 2020-10-15 20:10:28 -0700 | [diff] [blame] | 920 | * came here due to a stale FUTEX_WAITERS/FUTEX_OWNER_DIED bit. |
Thomas Gleixner | 54a2178 | 2014-06-03 12:27:08 +0000 | [diff] [blame] | 921 | * |
| 922 | * [2] Valid, if TID does not belong to a kernel thread. If no matching |
| 923 | * thread is found then it indicates that the owner TID has died. |
| 924 | * |
| 925 | * [3] Invalid. The waiter is queued on a non PI futex |
| 926 | * |
| 927 | * [4] Valid state after exit_robust_list(), which sets the user space |
| 928 | * value to FUTEX_WAITERS | FUTEX_OWNER_DIED. |
| 929 | * |
| 930 | * [5] The user space value got manipulated between exit_robust_list() |
| 931 | * and exit_pi_state_list() |
| 932 | * |
| 933 | * [6] Valid state after exit_pi_state_list() which sets the new owner in |
| 934 | * the pi_state but cannot access the user space value. |
| 935 | * |
| 936 | * [7] pi_state->owner can only be NULL when the OWNER_DIED bit is set. |
| 937 | * |
| 938 | * [8] Owner and user space value match |
| 939 | * |
| 940 | * [9] There is no transient state which sets the user space TID to 0 |
| 941 | * except exit_robust_list(), but this is indicated by the |
| 942 | * FUTEX_OWNER_DIED bit. See [4] |
| 943 | * |
| 944 | * [10] There is no transient state which leaves owner and user space |
| 945 | * TID out of sync. |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 946 | * |
| 947 | * |
| 948 | * Serialization and lifetime rules: |
| 949 | * |
| 950 | * hb->lock: |
| 951 | * |
| 952 | * hb -> futex_q, relation |
| 953 | * futex_q -> pi_state, relation |
| 954 | * |
| 955 | * (cannot be raw because hb can contain arbitrary amount |
| 956 | * of futex_q's) |
| 957 | * |
| 958 | * pi_mutex->wait_lock: |
| 959 | * |
| 960 | * {uval, pi_state} |
| 961 | * |
| 962 | * (and pi_mutex 'obviously') |
| 963 | * |
| 964 | * p->pi_lock: |
| 965 | * |
| 966 | * p->pi_state_list -> pi_state->list, relation |
| 967 | * |
| 968 | * pi_state->refcount: |
| 969 | * |
| 970 | * pi_state lifetime |
| 971 | * |
| 972 | * |
| 973 | * Lock order: |
| 974 | * |
| 975 | * hb->lock |
| 976 | * pi_mutex->wait_lock |
| 977 | * p->pi_lock |
| 978 | * |
Thomas Gleixner | 54a2178 | 2014-06-03 12:27:08 +0000 | [diff] [blame] | 979 | */ |
Thomas Gleixner | e60cbc5 | 2014-06-11 20:45:39 +0000 | [diff] [blame] | 980 | |
| 981 | /* |
| 982 | * Validate that the existing waiter has a pi_state and sanity check |
| 983 | * the pi_state against the user space value. If correct, attach to |
| 984 | * it. |
| 985 | */ |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 986 | static int attach_to_pi_state(u32 __user *uaddr, u32 uval, |
| 987 | struct futex_pi_state *pi_state, |
Thomas Gleixner | e60cbc5 | 2014-06-11 20:45:39 +0000 | [diff] [blame] | 988 | struct futex_pi_state **ps) |
| 989 | { |
| 990 | pid_t pid = uval & FUTEX_TID_MASK; |
Peter Zijlstra | 94ffac5 | 2017-04-07 09:04:07 +0200 | [diff] [blame] | 991 | u32 uval2; |
| 992 | int ret; |
Thomas Gleixner | e60cbc5 | 2014-06-11 20:45:39 +0000 | [diff] [blame] | 993 | |
| 994 | /* |
| 995 | * Userspace might have messed up non-PI and PI futexes [3] |
| 996 | */ |
| 997 | if (unlikely(!pi_state)) |
| 998 | return -EINVAL; |
| 999 | |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1000 | /* |
| 1001 | * We get here with hb->lock held, and having found a |
| 1002 | * futex_top_waiter(). This means that futex_lock_pi() of said futex_q |
| 1003 | * has dropped the hb->lock in between queue_me() and unqueue_me_pi(), |
| 1004 | * which in turn means that futex_lock_pi() still has a reference on |
| 1005 | * our pi_state. |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 1006 | * |
| 1007 | * The waiter holding a reference on @pi_state also protects against |
| 1008 | * the unlocked put_pi_state() in futex_unlock_pi(), futex_lock_pi() |
| 1009 | * and futex_wait_requeue_pi() as it cannot go to 0 and consequently |
| 1010 | * free pi_state before we can take a reference ourselves. |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1011 | */ |
Elena Reshetova | 49262de | 2019-02-05 14:24:27 +0200 | [diff] [blame] | 1012 | WARN_ON(!refcount_read(&pi_state->refcount)); |
Thomas Gleixner | e60cbc5 | 2014-06-11 20:45:39 +0000 | [diff] [blame] | 1013 | |
| 1014 | /* |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1015 | * Now that we have a pi_state, we can acquire wait_lock |
| 1016 | * and do the state validation. |
| 1017 | */ |
| 1018 | raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock); |
| 1019 | |
| 1020 | /* |
| 1021 | * Since {uval, pi_state} is serialized by wait_lock, and our current |
| 1022 | * uval was read without holding it, it can have changed. Verify it |
| 1023 | * still is what we expect it to be, otherwise retry the entire |
| 1024 | * operation. |
| 1025 | */ |
| 1026 | if (get_futex_value_locked(&uval2, uaddr)) |
| 1027 | goto out_efault; |
| 1028 | |
| 1029 | if (uval != uval2) |
| 1030 | goto out_eagain; |
| 1031 | |
| 1032 | /* |
Thomas Gleixner | e60cbc5 | 2014-06-11 20:45:39 +0000 | [diff] [blame] | 1033 | * Handle the owner died case: |
| 1034 | */ |
| 1035 | if (uval & FUTEX_OWNER_DIED) { |
| 1036 | /* |
| 1037 | * exit_pi_state_list sets owner to NULL and wakes the |
| 1038 | * topmost waiter. The task which acquires the |
| 1039 | * pi_state->rt_mutex will fixup owner. |
| 1040 | */ |
| 1041 | if (!pi_state->owner) { |
| 1042 | /* |
| 1043 | * No pi state owner, but the user space TID |
| 1044 | * is not 0. Inconsistent state. [5] |
| 1045 | */ |
| 1046 | if (pid) |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1047 | goto out_einval; |
Thomas Gleixner | e60cbc5 | 2014-06-11 20:45:39 +0000 | [diff] [blame] | 1048 | /* |
| 1049 | * Take a ref on the state and return success. [4] |
| 1050 | */ |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1051 | goto out_attach; |
Thomas Gleixner | e60cbc5 | 2014-06-11 20:45:39 +0000 | [diff] [blame] | 1052 | } |
| 1053 | |
| 1054 | /* |
| 1055 | * If TID is 0, then either the dying owner has not |
| 1056 | * yet executed exit_pi_state_list() or some waiter |
| 1057 | * acquired the rtmutex in the pi state, but did not |
| 1058 | * yet fixup the TID in user space. |
| 1059 | * |
| 1060 | * Take a ref on the state and return success. [6] |
| 1061 | */ |
| 1062 | if (!pid) |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1063 | goto out_attach; |
Thomas Gleixner | e60cbc5 | 2014-06-11 20:45:39 +0000 | [diff] [blame] | 1064 | } else { |
| 1065 | /* |
| 1066 | * If the owner died bit is not set, then the pi_state |
| 1067 | * must have an owner. [7] |
| 1068 | */ |
| 1069 | if (!pi_state->owner) |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1070 | goto out_einval; |
Thomas Gleixner | e60cbc5 | 2014-06-11 20:45:39 +0000 | [diff] [blame] | 1071 | } |
| 1072 | |
| 1073 | /* |
| 1074 | * Bail out if user space manipulated the futex value. If pi |
| 1075 | * state exists then the owner TID must be the same as the |
| 1076 | * user space TID. [9/10] |
| 1077 | */ |
| 1078 | if (pid != task_pid_vnr(pi_state->owner)) |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1079 | goto out_einval; |
| 1080 | |
| 1081 | out_attach: |
Peter Zijlstra | bf92cf3 | 2017-03-22 11:35:53 +0100 | [diff] [blame] | 1082 | get_pi_state(pi_state); |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1083 | raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock); |
Thomas Gleixner | e60cbc5 | 2014-06-11 20:45:39 +0000 | [diff] [blame] | 1084 | *ps = pi_state; |
| 1085 | return 0; |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1086 | |
| 1087 | out_einval: |
| 1088 | ret = -EINVAL; |
| 1089 | goto out_error; |
| 1090 | |
| 1091 | out_eagain: |
| 1092 | ret = -EAGAIN; |
| 1093 | goto out_error; |
| 1094 | |
| 1095 | out_efault: |
| 1096 | ret = -EFAULT; |
| 1097 | goto out_error; |
| 1098 | |
| 1099 | out_error: |
| 1100 | raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock); |
| 1101 | return ret; |
Thomas Gleixner | e60cbc5 | 2014-06-11 20:45:39 +0000 | [diff] [blame] | 1102 | } |
| 1103 | |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1104 | /** |
| 1105 | * wait_for_owner_exiting - Block until the owner has exited |
Randy Dunlap | 51bfb1d | 2019-12-08 20:26:55 -0800 | [diff] [blame] | 1106 | * @ret: owner's current futex lock status |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1107 | * @exiting: Pointer to the exiting task |
| 1108 | * |
| 1109 | * Caller must hold a refcount on @exiting. |
| 1110 | */ |
| 1111 | static void wait_for_owner_exiting(int ret, struct task_struct *exiting) |
| 1112 | { |
| 1113 | if (ret != -EBUSY) { |
| 1114 | WARN_ON_ONCE(exiting); |
| 1115 | return; |
| 1116 | } |
| 1117 | |
| 1118 | if (WARN_ON_ONCE(ret == -EBUSY && !exiting)) |
| 1119 | return; |
| 1120 | |
| 1121 | mutex_lock(&exiting->futex_exit_mutex); |
| 1122 | /* |
| 1123 | * No point in doing state checking here. If the waiter got here |
| 1124 | * while the task was in exec()->exec_futex_release() then it can |
| 1125 | * have any FUTEX_STATE_* value when the waiter has acquired the |
| 1126 | * mutex. OK, if running, EXITING or DEAD if it reached exit() |
| 1127 | * already. Highly unlikely and not a problem. Just one more round |
| 1128 | * through the futex maze. |
| 1129 | */ |
| 1130 | mutex_unlock(&exiting->futex_exit_mutex); |
| 1131 | |
| 1132 | put_task_struct(exiting); |
| 1133 | } |
| 1134 | |
Thomas Gleixner | da791a6 | 2018-12-10 14:35:14 +0100 | [diff] [blame] | 1135 | static int handle_exit_race(u32 __user *uaddr, u32 uval, |
| 1136 | struct task_struct *tsk) |
| 1137 | { |
| 1138 | u32 uval2; |
| 1139 | |
| 1140 | /* |
Thomas Gleixner | ac31c7f | 2019-11-06 22:55:45 +0100 | [diff] [blame] | 1141 | * If the futex exit state is not yet FUTEX_STATE_DEAD, tell the |
| 1142 | * caller that the alleged owner is busy. |
Thomas Gleixner | da791a6 | 2018-12-10 14:35:14 +0100 | [diff] [blame] | 1143 | */ |
Thomas Gleixner | 3d4775d | 2019-11-06 22:55:37 +0100 | [diff] [blame] | 1144 | if (tsk && tsk->futex_state != FUTEX_STATE_DEAD) |
Thomas Gleixner | ac31c7f | 2019-11-06 22:55:45 +0100 | [diff] [blame] | 1145 | return -EBUSY; |
Thomas Gleixner | da791a6 | 2018-12-10 14:35:14 +0100 | [diff] [blame] | 1146 | |
| 1147 | /* |
| 1148 | * Reread the user space value to handle the following situation: |
| 1149 | * |
| 1150 | * CPU0 CPU1 |
| 1151 | * |
| 1152 | * sys_exit() sys_futex() |
| 1153 | * do_exit() futex_lock_pi() |
| 1154 | * futex_lock_pi_atomic() |
| 1155 | * exit_signals(tsk) No waiters: |
| 1156 | * tsk->flags |= PF_EXITING; *uaddr == 0x00000PID |
| 1157 | * mm_release(tsk) Set waiter bit |
| 1158 | * exit_robust_list(tsk) { *uaddr = 0x80000PID; |
| 1159 | * Set owner died attach_to_pi_owner() { |
| 1160 | * *uaddr = 0xC0000000; tsk = get_task(PID); |
| 1161 | * } if (!tsk->flags & PF_EXITING) { |
| 1162 | * ... attach(); |
Thomas Gleixner | 3d4775d | 2019-11-06 22:55:37 +0100 | [diff] [blame] | 1163 | * tsk->futex_state = } else { |
| 1164 | * FUTEX_STATE_DEAD; if (tsk->futex_state != |
| 1165 | * FUTEX_STATE_DEAD) |
Thomas Gleixner | da791a6 | 2018-12-10 14:35:14 +0100 | [diff] [blame] | 1166 | * return -EAGAIN; |
| 1167 | * return -ESRCH; <--- FAIL |
| 1168 | * } |
| 1169 | * |
| 1170 | * Returning ESRCH unconditionally is wrong here because the |
| 1171 | * user space value has been changed by the exiting task. |
| 1172 | * |
| 1173 | * The same logic applies to the case where the exiting task is |
| 1174 | * already gone. |
| 1175 | */ |
| 1176 | if (get_futex_value_locked(&uval2, uaddr)) |
| 1177 | return -EFAULT; |
| 1178 | |
| 1179 | /* If the user space value has changed, try again. */ |
| 1180 | if (uval2 != uval) |
| 1181 | return -EAGAIN; |
| 1182 | |
| 1183 | /* |
| 1184 | * The exiting task did not have a robust list, the robust list was |
| 1185 | * corrupted or the user space value in *uaddr is simply bogus. |
| 1186 | * Give up and tell user space. |
| 1187 | */ |
| 1188 | return -ESRCH; |
| 1189 | } |
| 1190 | |
Thomas Gleixner | 04e1b2e | 2014-06-11 20:45:40 +0000 | [diff] [blame] | 1191 | /* |
| 1192 | * Lookup the task for the TID provided from user space and attach to |
| 1193 | * it after doing proper sanity checks. |
| 1194 | */ |
Thomas Gleixner | da791a6 | 2018-12-10 14:35:14 +0100 | [diff] [blame] | 1195 | static int attach_to_pi_owner(u32 __user *uaddr, u32 uval, union futex_key *key, |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1196 | struct futex_pi_state **ps, |
| 1197 | struct task_struct **exiting) |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1198 | { |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 1199 | pid_t pid = uval & FUTEX_TID_MASK; |
Thomas Gleixner | 04e1b2e | 2014-06-11 20:45:40 +0000 | [diff] [blame] | 1200 | struct futex_pi_state *pi_state; |
| 1201 | struct task_struct *p; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1202 | |
| 1203 | /* |
Ingo Molnar | e3f2dde | 2006-07-29 05:17:57 +0200 | [diff] [blame] | 1204 | * We are the first waiter - try to look up the real owner and attach |
Thomas Gleixner | 54a2178 | 2014-06-03 12:27:08 +0000 | [diff] [blame] | 1205 | * the new pi_state to it, but bail out when TID = 0 [1] |
Thomas Gleixner | da791a6 | 2018-12-10 14:35:14 +0100 | [diff] [blame] | 1206 | * |
| 1207 | * The !pid check is paranoid. None of the call sites should end up |
| 1208 | * with pid == 0, but better safe than sorry. Let the caller retry |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1209 | */ |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 1210 | if (!pid) |
Thomas Gleixner | da791a6 | 2018-12-10 14:35:14 +0100 | [diff] [blame] | 1211 | return -EAGAIN; |
Mike Rapoport | 2ee0826 | 2018-02-06 15:40:17 -0800 | [diff] [blame] | 1212 | p = find_get_task_by_vpid(pid); |
Michal Hocko | 7a0ea09 | 2010-06-30 09:51:19 +0200 | [diff] [blame] | 1213 | if (!p) |
Thomas Gleixner | da791a6 | 2018-12-10 14:35:14 +0100 | [diff] [blame] | 1214 | return handle_exit_race(uaddr, uval, NULL); |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 1215 | |
Oleg Nesterov | a212946 | 2015-02-02 15:05:36 +0100 | [diff] [blame] | 1216 | if (unlikely(p->flags & PF_KTHREAD)) { |
Thomas Gleixner | f0d71b3 | 2014-05-12 20:45:35 +0000 | [diff] [blame] | 1217 | put_task_struct(p); |
| 1218 | return -EPERM; |
| 1219 | } |
| 1220 | |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 1221 | /* |
Thomas Gleixner | 3d4775d | 2019-11-06 22:55:37 +0100 | [diff] [blame] | 1222 | * We need to look at the task state to figure out, whether the |
| 1223 | * task is exiting. To protect against the change of the task state |
| 1224 | * in futex_exit_release(), we do this protected by p->pi_lock: |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 1225 | */ |
Thomas Gleixner | 1d61548 | 2009-11-17 14:54:03 +0100 | [diff] [blame] | 1226 | raw_spin_lock_irq(&p->pi_lock); |
Thomas Gleixner | 3d4775d | 2019-11-06 22:55:37 +0100 | [diff] [blame] | 1227 | if (unlikely(p->futex_state != FUTEX_STATE_OK)) { |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 1228 | /* |
Thomas Gleixner | 3d4775d | 2019-11-06 22:55:37 +0100 | [diff] [blame] | 1229 | * The task is on the way out. When the futex state is |
| 1230 | * FUTEX_STATE_DEAD, we know that the task has finished |
| 1231 | * the cleanup: |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 1232 | */ |
Thomas Gleixner | da791a6 | 2018-12-10 14:35:14 +0100 | [diff] [blame] | 1233 | int ret = handle_exit_race(uaddr, uval, p); |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 1234 | |
Thomas Gleixner | 1d61548 | 2009-11-17 14:54:03 +0100 | [diff] [blame] | 1235 | raw_spin_unlock_irq(&p->pi_lock); |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1236 | /* |
| 1237 | * If the owner task is between FUTEX_STATE_EXITING and |
| 1238 | * FUTEX_STATE_DEAD then store the task pointer and keep |
| 1239 | * the reference on the task struct. The calling code will |
| 1240 | * drop all locks, wait for the task to reach |
| 1241 | * FUTEX_STATE_DEAD and then drop the refcount. This is |
| 1242 | * required to prevent a live lock when the current task |
| 1243 | * preempted the exiting task between the two states. |
| 1244 | */ |
| 1245 | if (ret == -EBUSY) |
| 1246 | *exiting = p; |
| 1247 | else |
| 1248 | put_task_struct(p); |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 1249 | return ret; |
| 1250 | } |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1251 | |
Thomas Gleixner | 54a2178 | 2014-06-03 12:27:08 +0000 | [diff] [blame] | 1252 | /* |
| 1253 | * No existing pi state. First waiter. [2] |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1254 | * |
| 1255 | * This creates pi_state, we have hb->lock held, this means nothing can |
| 1256 | * observe this state, wait_lock is irrelevant. |
Thomas Gleixner | 54a2178 | 2014-06-03 12:27:08 +0000 | [diff] [blame] | 1257 | */ |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1258 | pi_state = alloc_pi_state(); |
| 1259 | |
| 1260 | /* |
Thomas Gleixner | 04e1b2e | 2014-06-11 20:45:40 +0000 | [diff] [blame] | 1261 | * Initialize the pi_mutex in locked state and make @p |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1262 | * the owner of it: |
| 1263 | */ |
| 1264 | rt_mutex_init_proxy_locked(&pi_state->pi_mutex, p); |
| 1265 | |
| 1266 | /* Store the key for possible exit cleanups: */ |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 1267 | pi_state->key = *key; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1268 | |
Ingo Molnar | 627371d | 2006-07-29 05:16:20 +0200 | [diff] [blame] | 1269 | WARN_ON(!list_empty(&pi_state->list)); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1270 | list_add(&pi_state->list, &p->pi_state_list); |
Peter Zijlstra | c74aef2 | 2017-09-22 17:48:06 +0200 | [diff] [blame] | 1271 | /* |
| 1272 | * Assignment without holding pi_state->pi_mutex.wait_lock is safe |
| 1273 | * because there is no concurrency as the object is not published yet. |
| 1274 | */ |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1275 | pi_state->owner = p; |
Thomas Gleixner | 1d61548 | 2009-11-17 14:54:03 +0100 | [diff] [blame] | 1276 | raw_spin_unlock_irq(&p->pi_lock); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1277 | |
| 1278 | put_task_struct(p); |
| 1279 | |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 1280 | *ps = pi_state; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1281 | |
| 1282 | return 0; |
| 1283 | } |
| 1284 | |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1285 | static int lookup_pi_state(u32 __user *uaddr, u32 uval, |
| 1286 | struct futex_hash_bucket *hb, |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1287 | union futex_key *key, struct futex_pi_state **ps, |
| 1288 | struct task_struct **exiting) |
Thomas Gleixner | 04e1b2e | 2014-06-11 20:45:40 +0000 | [diff] [blame] | 1289 | { |
Peter Zijlstra | 499f5ac | 2017-03-22 11:35:48 +0100 | [diff] [blame] | 1290 | struct futex_q *top_waiter = futex_top_waiter(hb, key); |
Thomas Gleixner | 04e1b2e | 2014-06-11 20:45:40 +0000 | [diff] [blame] | 1291 | |
| 1292 | /* |
| 1293 | * If there is a waiter on that futex, validate it and |
| 1294 | * attach to the pi_state when the validation succeeds. |
| 1295 | */ |
Peter Zijlstra | 499f5ac | 2017-03-22 11:35:48 +0100 | [diff] [blame] | 1296 | if (top_waiter) |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1297 | return attach_to_pi_state(uaddr, uval, top_waiter->pi_state, ps); |
Thomas Gleixner | 04e1b2e | 2014-06-11 20:45:40 +0000 | [diff] [blame] | 1298 | |
| 1299 | /* |
| 1300 | * We are the first waiter - try to look up the owner based on |
| 1301 | * @uval and attach to it. |
| 1302 | */ |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1303 | return attach_to_pi_owner(uaddr, uval, key, ps, exiting); |
Thomas Gleixner | 04e1b2e | 2014-06-11 20:45:40 +0000 | [diff] [blame] | 1304 | } |
| 1305 | |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1306 | static int lock_pi_update_atomic(u32 __user *uaddr, u32 uval, u32 newval) |
| 1307 | { |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 1308 | int err; |
Kees Cook | 3f649ab | 2020-06-03 13:09:38 -0700 | [diff] [blame] | 1309 | u32 curval; |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1310 | |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 1311 | if (unlikely(should_fail_futex(true))) |
| 1312 | return -EFAULT; |
| 1313 | |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 1314 | err = cmpxchg_futex_value_locked(&curval, uaddr, uval, newval); |
| 1315 | if (unlikely(err)) |
| 1316 | return err; |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1317 | |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1318 | /* If user space value changed, let the caller retry */ |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1319 | return curval != uval ? -EAGAIN : 0; |
| 1320 | } |
| 1321 | |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1322 | /** |
Darren Hart | d96ee56 | 2009-09-21 22:30:22 -0700 | [diff] [blame] | 1323 | * futex_lock_pi_atomic() - Atomic work required to acquire a pi aware futex |
Darren Hart | bab5bc9 | 2009-04-07 23:23:50 -0700 | [diff] [blame] | 1324 | * @uaddr: the pi futex user address |
| 1325 | * @hb: the pi futex hash bucket |
| 1326 | * @key: the futex key associated with uaddr and hb |
| 1327 | * @ps: the pi_state pointer where we store the result of the |
| 1328 | * lookup |
| 1329 | * @task: the task to perform the atomic lock work for. This will |
| 1330 | * be "current" except in the case of requeue pi. |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1331 | * @exiting: Pointer to store the task pointer of the owner task |
| 1332 | * which is in the middle of exiting |
Darren Hart | bab5bc9 | 2009-04-07 23:23:50 -0700 | [diff] [blame] | 1333 | * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0) |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1334 | * |
Randy Dunlap | 6c23cbb | 2013-03-05 10:00:24 -0800 | [diff] [blame] | 1335 | * Return: |
Mauro Carvalho Chehab | 7b4ff1a | 2017-05-11 10:17:45 -0300 | [diff] [blame] | 1336 | * - 0 - ready to wait; |
| 1337 | * - 1 - acquired the lock; |
| 1338 | * - <0 - error |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1339 | * |
| 1340 | * The hb->lock and futex_key refs shall be held by the caller. |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1341 | * |
| 1342 | * @exiting is only set when the return value is -EBUSY. If so, this holds |
| 1343 | * a refcount on the exiting task on return and the caller needs to drop it |
| 1344 | * after waiting for the exit to complete. |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1345 | */ |
| 1346 | static int futex_lock_pi_atomic(u32 __user *uaddr, struct futex_hash_bucket *hb, |
| 1347 | union futex_key *key, |
| 1348 | struct futex_pi_state **ps, |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1349 | struct task_struct *task, |
| 1350 | struct task_struct **exiting, |
| 1351 | int set_waiters) |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1352 | { |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1353 | u32 uval, newval, vpid = task_pid_vnr(task); |
Peter Zijlstra | 499f5ac | 2017-03-22 11:35:48 +0100 | [diff] [blame] | 1354 | struct futex_q *top_waiter; |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1355 | int ret; |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1356 | |
| 1357 | /* |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1358 | * Read the user space value first so we can validate a few |
| 1359 | * things before proceeding further. |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1360 | */ |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1361 | if (get_futex_value_locked(&uval, uaddr)) |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1362 | return -EFAULT; |
| 1363 | |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 1364 | if (unlikely(should_fail_futex(true))) |
| 1365 | return -EFAULT; |
| 1366 | |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1367 | /* |
| 1368 | * Detect deadlocks. |
| 1369 | */ |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1370 | if ((unlikely((uval & FUTEX_TID_MASK) == vpid))) |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1371 | return -EDEADLK; |
| 1372 | |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 1373 | if ((unlikely(should_fail_futex(true)))) |
| 1374 | return -EDEADLK; |
| 1375 | |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1376 | /* |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1377 | * Lookup existing state first. If it exists, try to attach to |
| 1378 | * its pi_state. |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1379 | */ |
Peter Zijlstra | 499f5ac | 2017-03-22 11:35:48 +0100 | [diff] [blame] | 1380 | top_waiter = futex_top_waiter(hb, key); |
| 1381 | if (top_waiter) |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1382 | return attach_to_pi_state(uaddr, uval, top_waiter->pi_state, ps); |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1383 | |
| 1384 | /* |
| 1385 | * No waiter and user TID is 0. We are here because the |
| 1386 | * waiters or the owner died bit is set or called from |
| 1387 | * requeue_cmp_pi or for whatever reason something took the |
| 1388 | * syscall. |
| 1389 | */ |
| 1390 | if (!(uval & FUTEX_TID_MASK)) { |
Thomas Gleixner | b3eaa9f | 2014-06-03 12:27:06 +0000 | [diff] [blame] | 1391 | /* |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1392 | * We take over the futex. No other waiters and the user space |
| 1393 | * TID is 0. We preserve the owner died bit. |
Thomas Gleixner | b3eaa9f | 2014-06-03 12:27:06 +0000 | [diff] [blame] | 1394 | */ |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1395 | newval = uval & FUTEX_OWNER_DIED; |
| 1396 | newval |= vpid; |
| 1397 | |
| 1398 | /* The futex requeue_pi code can enforce the waiters bit */ |
| 1399 | if (set_waiters) |
| 1400 | newval |= FUTEX_WAITERS; |
| 1401 | |
| 1402 | ret = lock_pi_update_atomic(uaddr, uval, newval); |
| 1403 | /* If the take over worked, return 1 */ |
| 1404 | return ret < 0 ? ret : 1; |
Thomas Gleixner | b3eaa9f | 2014-06-03 12:27:06 +0000 | [diff] [blame] | 1405 | } |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1406 | |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1407 | /* |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1408 | * First waiter. Set the waiters bit before attaching ourself to |
| 1409 | * the owner. If owner tries to unlock, it will be forced into |
| 1410 | * the kernel and blocked on hb->lock. |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1411 | */ |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1412 | newval = uval | FUTEX_WAITERS; |
| 1413 | ret = lock_pi_update_atomic(uaddr, uval, newval); |
| 1414 | if (ret) |
| 1415 | return ret; |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1416 | /* |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 1417 | * If the update of the user space value succeeded, we try to |
| 1418 | * attach to the owner. If that fails, no harm done, we only |
| 1419 | * set the FUTEX_WAITERS bit in the user space variable. |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1420 | */ |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1421 | return attach_to_pi_owner(uaddr, newval, key, ps, exiting); |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 1422 | } |
| 1423 | |
Lai Jiangshan | 2e12978 | 2010-12-22 14:18:50 +0800 | [diff] [blame] | 1424 | /** |
| 1425 | * __unqueue_futex() - Remove the futex_q from its futex_hash_bucket |
| 1426 | * @q: The futex_q to unqueue |
| 1427 | * |
| 1428 | * The q->lock_ptr must not be NULL and must be held by the caller. |
| 1429 | */ |
| 1430 | static void __unqueue_futex(struct futex_q *q) |
| 1431 | { |
| 1432 | struct futex_hash_bucket *hb; |
| 1433 | |
Lance Roy | 4de1a29 | 2018-10-02 22:38:57 -0700 | [diff] [blame] | 1434 | if (WARN_ON_SMP(!q->lock_ptr) || WARN_ON(plist_node_empty(&q->list))) |
Lai Jiangshan | 2e12978 | 2010-12-22 14:18:50 +0800 | [diff] [blame] | 1435 | return; |
Lance Roy | 4de1a29 | 2018-10-02 22:38:57 -0700 | [diff] [blame] | 1436 | lockdep_assert_held(q->lock_ptr); |
Lai Jiangshan | 2e12978 | 2010-12-22 14:18:50 +0800 | [diff] [blame] | 1437 | |
| 1438 | hb = container_of(q->lock_ptr, struct futex_hash_bucket, lock); |
| 1439 | plist_del(&q->list, &hb->chain); |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 1440 | hb_waiters_dec(hb); |
Lai Jiangshan | 2e12978 | 2010-12-22 14:18:50 +0800 | [diff] [blame] | 1441 | } |
| 1442 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1443 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | * The hash bucket lock must be held when this is called. |
Davidlohr Bueso | 1d0dcb3 | 2015-05-01 08:27:51 -0700 | [diff] [blame] | 1445 | * Afterwards, the futex_q must not be accessed. Callers |
| 1446 | * must ensure to later call wake_up_q() for the actual |
| 1447 | * wakeups to occur. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | */ |
Davidlohr Bueso | 1d0dcb3 | 2015-05-01 08:27:51 -0700 | [diff] [blame] | 1449 | static void mark_wake_futex(struct wake_q_head *wake_q, struct futex_q *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | { |
Thomas Gleixner | f1a11e0 | 2009-05-05 19:21:40 +0200 | [diff] [blame] | 1451 | struct task_struct *p = q->task; |
| 1452 | |
Darren Hart | aa10990 | 2012-11-26 16:29:56 -0800 | [diff] [blame] | 1453 | if (WARN(q->pi_state || q->rt_waiter, "refusing to wake PI futex\n")) |
| 1454 | return; |
| 1455 | |
Peter Zijlstra | b061c38 | 2018-11-29 14:44:49 +0100 | [diff] [blame] | 1456 | get_task_struct(p); |
Lai Jiangshan | 2e12978 | 2010-12-22 14:18:50 +0800 | [diff] [blame] | 1457 | __unqueue_futex(q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | /* |
Darren Hart (VMware) | 38fcd06 | 2017-04-14 15:31:38 -0700 | [diff] [blame] | 1459 | * The waiting task can free the futex_q as soon as q->lock_ptr = NULL |
| 1460 | * is written, without taking any locks. This is possible in the event |
| 1461 | * of a spurious wakeup, for example. A memory barrier is required here |
| 1462 | * to prevent the following store to lock_ptr from getting ahead of the |
| 1463 | * plist_del in __unqueue_futex(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1464 | */ |
Peter Zijlstra | 1b367ec | 2017-03-22 11:35:49 +0100 | [diff] [blame] | 1465 | smp_store_release(&q->lock_ptr, NULL); |
Peter Zijlstra | b061c38 | 2018-11-29 14:44:49 +0100 | [diff] [blame] | 1466 | |
| 1467 | /* |
| 1468 | * Queue the task for later wakeup for after we've released |
Davidlohr Bueso | 7514590 | 2019-10-22 20:34:50 -0700 | [diff] [blame] | 1469 | * the hb->lock. |
Peter Zijlstra | b061c38 | 2018-11-29 14:44:49 +0100 | [diff] [blame] | 1470 | */ |
Davidlohr Bueso | 07879c6 | 2018-12-18 11:53:52 -0800 | [diff] [blame] | 1471 | wake_q_add_safe(wake_q, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | } |
| 1473 | |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 1474 | /* |
| 1475 | * Caller must hold a reference on @pi_state. |
| 1476 | */ |
| 1477 | static int wake_futex_pi(u32 __user *uaddr, u32 uval, struct futex_pi_state *pi_state) |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1478 | { |
Kees Cook | 3f649ab | 2020-06-03 13:09:38 -0700 | [diff] [blame] | 1479 | u32 curval, newval; |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 1480 | struct task_struct *new_owner; |
Peter Zijlstra | aa2bfe5 | 2017-03-23 15:56:10 +0100 | [diff] [blame] | 1481 | bool postunlock = false; |
Waiman Long | 194a6b5 | 2016-11-17 11:46:38 -0500 | [diff] [blame] | 1482 | DEFINE_WAKE_Q(wake_q); |
Thomas Gleixner | 13fbca4 | 2014-06-03 12:27:07 +0000 | [diff] [blame] | 1483 | int ret = 0; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1484 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1485 | new_owner = rt_mutex_next_owner(&pi_state->pi_mutex); |
Peter Zijlstra | bebe5b5 | 2017-03-22 11:35:59 +0100 | [diff] [blame] | 1486 | if (WARN_ON_ONCE(!new_owner)) { |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 1487 | /* |
Peter Zijlstra | bebe5b5 | 2017-03-22 11:35:59 +0100 | [diff] [blame] | 1488 | * As per the comment in futex_unlock_pi() this should not happen. |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 1489 | * |
| 1490 | * When this happens, give up our locks and try again, giving |
| 1491 | * the futex_lock_pi() instance time to complete, either by |
| 1492 | * waiting on the rtmutex or removing itself from the futex |
| 1493 | * queue. |
| 1494 | */ |
| 1495 | ret = -EAGAIN; |
| 1496 | goto out_unlock; |
Peter Zijlstra | 73d786b | 2017-03-22 11:35:54 +0100 | [diff] [blame] | 1497 | } |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1498 | |
| 1499 | /* |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 1500 | * We pass it to the next owner. The WAITERS bit is always kept |
| 1501 | * enabled while there is PI state around. We cleanup the owner |
| 1502 | * died bit, because we are the owner. |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1503 | */ |
Thomas Gleixner | 13fbca4 | 2014-06-03 12:27:07 +0000 | [diff] [blame] | 1504 | newval = FUTEX_WAITERS | task_pid_vnr(new_owner); |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 1505 | |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 1506 | if (unlikely(should_fail_futex(true))) |
| 1507 | ret = -EFAULT; |
| 1508 | |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 1509 | ret = cmpxchg_futex_value_locked(&curval, uaddr, uval, newval); |
| 1510 | if (!ret && (curval != uval)) { |
Sebastian Andrzej Siewior | 89e9e66 | 2016-04-15 14:35:39 +0200 | [diff] [blame] | 1511 | /* |
| 1512 | * If a unconditional UNLOCK_PI operation (user space did not |
| 1513 | * try the TID->0 transition) raced with a waiter setting the |
| 1514 | * FUTEX_WAITERS flag between get_user() and locking the hash |
| 1515 | * bucket lock, retry the operation. |
| 1516 | */ |
| 1517 | if ((FUTEX_TID_MASK & curval) == uval) |
| 1518 | ret = -EAGAIN; |
| 1519 | else |
| 1520 | ret = -EINVAL; |
| 1521 | } |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 1522 | |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 1523 | if (ret) |
| 1524 | goto out_unlock; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1525 | |
Peter Zijlstra | 94ffac5 | 2017-04-07 09:04:07 +0200 | [diff] [blame] | 1526 | /* |
| 1527 | * This is a point of no return; once we modify the uval there is no |
| 1528 | * going back and subsequent operations must not fail. |
| 1529 | */ |
| 1530 | |
Thomas Gleixner | b4abf91 | 2016-01-13 11:25:38 +0100 | [diff] [blame] | 1531 | raw_spin_lock(&pi_state->owner->pi_lock); |
Ingo Molnar | 627371d | 2006-07-29 05:16:20 +0200 | [diff] [blame] | 1532 | WARN_ON(list_empty(&pi_state->list)); |
| 1533 | list_del_init(&pi_state->list); |
Thomas Gleixner | b4abf91 | 2016-01-13 11:25:38 +0100 | [diff] [blame] | 1534 | raw_spin_unlock(&pi_state->owner->pi_lock); |
Ingo Molnar | 627371d | 2006-07-29 05:16:20 +0200 | [diff] [blame] | 1535 | |
Thomas Gleixner | b4abf91 | 2016-01-13 11:25:38 +0100 | [diff] [blame] | 1536 | raw_spin_lock(&new_owner->pi_lock); |
Ingo Molnar | 627371d | 2006-07-29 05:16:20 +0200 | [diff] [blame] | 1537 | WARN_ON(!list_empty(&pi_state->list)); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1538 | list_add(&pi_state->list, &new_owner->pi_state_list); |
| 1539 | pi_state->owner = new_owner; |
Thomas Gleixner | b4abf91 | 2016-01-13 11:25:38 +0100 | [diff] [blame] | 1540 | raw_spin_unlock(&new_owner->pi_lock); |
Ingo Molnar | 627371d | 2006-07-29 05:16:20 +0200 | [diff] [blame] | 1541 | |
Peter Zijlstra | aa2bfe5 | 2017-03-23 15:56:10 +0100 | [diff] [blame] | 1542 | postunlock = __rt_mutex_futex_unlock(&pi_state->pi_mutex, &wake_q); |
Peter Zijlstra | 5293c2e | 2017-03-22 11:35:51 +0100 | [diff] [blame] | 1543 | |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 1544 | out_unlock: |
Peter Zijlstra | 5293c2e | 2017-03-22 11:35:51 +0100 | [diff] [blame] | 1545 | raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock); |
Peter Zijlstra | 5293c2e | 2017-03-22 11:35:51 +0100 | [diff] [blame] | 1546 | |
Peter Zijlstra | aa2bfe5 | 2017-03-23 15:56:10 +0100 | [diff] [blame] | 1547 | if (postunlock) |
| 1548 | rt_mutex_postunlock(&wake_q); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1549 | |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 1550 | return ret; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 1551 | } |
| 1552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | /* |
Ingo Molnar | 8b8f319 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 1554 | * Express the locking dependencies for lockdep: |
| 1555 | */ |
| 1556 | static inline void |
| 1557 | double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2) |
| 1558 | { |
| 1559 | if (hb1 <= hb2) { |
| 1560 | spin_lock(&hb1->lock); |
| 1561 | if (hb1 < hb2) |
| 1562 | spin_lock_nested(&hb2->lock, SINGLE_DEPTH_NESTING); |
| 1563 | } else { /* hb1 > hb2 */ |
| 1564 | spin_lock(&hb2->lock); |
| 1565 | spin_lock_nested(&hb1->lock, SINGLE_DEPTH_NESTING); |
| 1566 | } |
| 1567 | } |
| 1568 | |
Darren Hart | 5eb3dc6 | 2009-03-12 00:55:52 -0700 | [diff] [blame] | 1569 | static inline void |
| 1570 | double_unlock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2) |
| 1571 | { |
Darren Hart | f061d35 | 2009-03-12 15:11:18 -0700 | [diff] [blame] | 1572 | spin_unlock(&hb1->lock); |
Ingo Molnar | 88f502f | 2009-03-13 10:32:07 +0100 | [diff] [blame] | 1573 | if (hb1 != hb2) |
| 1574 | spin_unlock(&hb2->lock); |
Darren Hart | 5eb3dc6 | 2009-03-12 00:55:52 -0700 | [diff] [blame] | 1575 | } |
| 1576 | |
Ingo Molnar | 8b8f319 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 1577 | /* |
Darren Hart | b2d0994 | 2009-03-12 00:55:37 -0700 | [diff] [blame] | 1578 | * Wake up waiters matching bitset queued on this futex (uaddr). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | */ |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 1580 | static int |
| 1581 | futex_wake(u32 __user *uaddr, unsigned int flags, int nr_wake, u32 bitset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | { |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 1583 | struct futex_hash_bucket *hb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | struct futex_q *this, *next; |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 1585 | union futex_key key = FUTEX_KEY_INIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | int ret; |
Waiman Long | 194a6b5 | 2016-11-17 11:46:38 -0500 | [diff] [blame] | 1587 | DEFINE_WAKE_Q(wake_q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1588 | |
Thomas Gleixner | cd68998 | 2008-02-01 17:45:14 +0100 | [diff] [blame] | 1589 | if (!bitset) |
| 1590 | return -EINVAL; |
| 1591 | |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 1592 | ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, FUTEX_READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 | if (unlikely(ret != 0)) |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 1594 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 1596 | hb = hash_futex(&key); |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 1597 | |
| 1598 | /* Make sure we really have tasks to wakeup */ |
| 1599 | if (!hb_waiters_pending(hb)) |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 1600 | return ret; |
Davidlohr Bueso | b0c29f7 | 2014-01-12 15:31:25 -0800 | [diff] [blame] | 1601 | |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 1602 | spin_lock(&hb->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | |
Jason Low | 0d00c7b | 2014-01-12 15:31:22 -0800 | [diff] [blame] | 1604 | plist_for_each_entry_safe(this, next, &hb->chain, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | if (match_futex (&this->key, &key)) { |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1606 | if (this->pi_state || this->rt_waiter) { |
Ingo Molnar | ed6f7b1 | 2006-07-01 04:35:46 -0700 | [diff] [blame] | 1607 | ret = -EINVAL; |
| 1608 | break; |
| 1609 | } |
Thomas Gleixner | cd68998 | 2008-02-01 17:45:14 +0100 | [diff] [blame] | 1610 | |
| 1611 | /* Check if one of the bits is set in both bitsets */ |
| 1612 | if (!(this->bitset & bitset)) |
| 1613 | continue; |
| 1614 | |
Davidlohr Bueso | 1d0dcb3 | 2015-05-01 08:27:51 -0700 | [diff] [blame] | 1615 | mark_wake_futex(&wake_q, this); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | if (++ret >= nr_wake) |
| 1617 | break; |
| 1618 | } |
| 1619 | } |
| 1620 | |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 1621 | spin_unlock(&hb->lock); |
Davidlohr Bueso | 1d0dcb3 | 2015-05-01 08:27:51 -0700 | [diff] [blame] | 1622 | wake_up_q(&wake_q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | return ret; |
| 1624 | } |
| 1625 | |
Jiri Slaby | 30d6e0a | 2017-08-24 09:31:05 +0200 | [diff] [blame] | 1626 | static int futex_atomic_op_inuser(unsigned int encoded_op, u32 __user *uaddr) |
| 1627 | { |
| 1628 | unsigned int op = (encoded_op & 0x70000000) >> 28; |
| 1629 | unsigned int cmp = (encoded_op & 0x0f000000) >> 24; |
Jiri Slaby | d70ef22 | 2017-11-30 15:35:44 +0100 | [diff] [blame] | 1630 | int oparg = sign_extend32((encoded_op & 0x00fff000) >> 12, 11); |
| 1631 | int cmparg = sign_extend32(encoded_op & 0x00000fff, 11); |
Jiri Slaby | 30d6e0a | 2017-08-24 09:31:05 +0200 | [diff] [blame] | 1632 | int oldval, ret; |
| 1633 | |
| 1634 | if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28)) { |
Jiri Slaby | e78c38f6 | 2017-10-23 13:41:51 +0200 | [diff] [blame] | 1635 | if (oparg < 0 || oparg > 31) { |
| 1636 | char comm[sizeof(current->comm)]; |
| 1637 | /* |
| 1638 | * kill this print and return -EINVAL when userspace |
| 1639 | * is sane again |
| 1640 | */ |
| 1641 | pr_info_ratelimited("futex_wake_op: %s tries to shift op by %d; fix this program\n", |
| 1642 | get_task_comm(comm, current), oparg); |
| 1643 | oparg &= 31; |
| 1644 | } |
Jiri Slaby | 30d6e0a | 2017-08-24 09:31:05 +0200 | [diff] [blame] | 1645 | oparg = 1 << oparg; |
| 1646 | } |
| 1647 | |
Al Viro | a08971e | 2020-02-16 10:17:27 -0500 | [diff] [blame] | 1648 | pagefault_disable(); |
Jiri Slaby | 30d6e0a | 2017-08-24 09:31:05 +0200 | [diff] [blame] | 1649 | ret = arch_futex_atomic_op_inuser(op, oparg, &oldval, uaddr); |
Al Viro | a08971e | 2020-02-16 10:17:27 -0500 | [diff] [blame] | 1650 | pagefault_enable(); |
Jiri Slaby | 30d6e0a | 2017-08-24 09:31:05 +0200 | [diff] [blame] | 1651 | if (ret) |
| 1652 | return ret; |
| 1653 | |
| 1654 | switch (cmp) { |
| 1655 | case FUTEX_OP_CMP_EQ: |
| 1656 | return oldval == cmparg; |
| 1657 | case FUTEX_OP_CMP_NE: |
| 1658 | return oldval != cmparg; |
| 1659 | case FUTEX_OP_CMP_LT: |
| 1660 | return oldval < cmparg; |
| 1661 | case FUTEX_OP_CMP_GE: |
| 1662 | return oldval >= cmparg; |
| 1663 | case FUTEX_OP_CMP_LE: |
| 1664 | return oldval <= cmparg; |
| 1665 | case FUTEX_OP_CMP_GT: |
| 1666 | return oldval > cmparg; |
| 1667 | default: |
| 1668 | return -ENOSYS; |
| 1669 | } |
| 1670 | } |
| 1671 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | /* |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1673 | * Wake up all waiters hashed on the physical page that is mapped |
| 1674 | * to this virtual address: |
| 1675 | */ |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 1676 | static int |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 1677 | futex_wake_op(u32 __user *uaddr1, unsigned int flags, u32 __user *uaddr2, |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 1678 | int nr_wake, int nr_wake2, int op) |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1679 | { |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 1680 | union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT; |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 1681 | struct futex_hash_bucket *hb1, *hb2; |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1682 | struct futex_q *this, *next; |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 1683 | int ret, op_ret; |
Waiman Long | 194a6b5 | 2016-11-17 11:46:38 -0500 | [diff] [blame] | 1684 | DEFINE_WAKE_Q(wake_q); |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1685 | |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 1686 | retry: |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 1687 | ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, FUTEX_READ); |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1688 | if (unlikely(ret != 0)) |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 1689 | return ret; |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 1690 | ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, FUTEX_WRITE); |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1691 | if (unlikely(ret != 0)) |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 1692 | return ret; |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1693 | |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 1694 | hb1 = hash_futex(&key1); |
| 1695 | hb2 = hash_futex(&key2); |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1696 | |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 1697 | retry_private: |
Thomas Gleixner | eaaea80 | 2009-10-04 09:34:17 +0200 | [diff] [blame] | 1698 | double_lock_hb(hb1, hb2); |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 1699 | op_ret = futex_atomic_op_inuser(op, uaddr2); |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1700 | if (unlikely(op_ret < 0)) { |
Darren Hart | 5eb3dc6 | 2009-03-12 00:55:52 -0700 | [diff] [blame] | 1701 | double_unlock_hb(hb1, hb2); |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1702 | |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 1703 | if (!IS_ENABLED(CONFIG_MMU) || |
| 1704 | unlikely(op_ret != -EFAULT && op_ret != -EAGAIN)) { |
| 1705 | /* |
| 1706 | * we don't get EFAULT from MMU faults if we don't have |
| 1707 | * an MMU, but we might get them from range checking |
| 1708 | */ |
David Gibson | 796f8d9 | 2005-11-07 00:59:33 -0800 | [diff] [blame] | 1709 | ret = op_ret; |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 1710 | return ret; |
David Gibson | 796f8d9 | 2005-11-07 00:59:33 -0800 | [diff] [blame] | 1711 | } |
| 1712 | |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 1713 | if (op_ret == -EFAULT) { |
| 1714 | ret = fault_in_user_writeable(uaddr2); |
| 1715 | if (ret) |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 1716 | return ret; |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 1717 | } |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1718 | |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 1719 | if (!(flags & FLAGS_SHARED)) { |
| 1720 | cond_resched(); |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 1721 | goto retry_private; |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 1722 | } |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 1723 | |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 1724 | cond_resched(); |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 1725 | goto retry; |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1726 | } |
| 1727 | |
Jason Low | 0d00c7b | 2014-01-12 15:31:22 -0800 | [diff] [blame] | 1728 | plist_for_each_entry_safe(this, next, &hb1->chain, list) { |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1729 | if (match_futex (&this->key, &key1)) { |
Darren Hart | aa10990 | 2012-11-26 16:29:56 -0800 | [diff] [blame] | 1730 | if (this->pi_state || this->rt_waiter) { |
| 1731 | ret = -EINVAL; |
| 1732 | goto out_unlock; |
| 1733 | } |
Davidlohr Bueso | 1d0dcb3 | 2015-05-01 08:27:51 -0700 | [diff] [blame] | 1734 | mark_wake_futex(&wake_q, this); |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1735 | if (++ret >= nr_wake) |
| 1736 | break; |
| 1737 | } |
| 1738 | } |
| 1739 | |
| 1740 | if (op_ret > 0) { |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1741 | op_ret = 0; |
Jason Low | 0d00c7b | 2014-01-12 15:31:22 -0800 | [diff] [blame] | 1742 | plist_for_each_entry_safe(this, next, &hb2->chain, list) { |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1743 | if (match_futex (&this->key, &key2)) { |
Darren Hart | aa10990 | 2012-11-26 16:29:56 -0800 | [diff] [blame] | 1744 | if (this->pi_state || this->rt_waiter) { |
| 1745 | ret = -EINVAL; |
| 1746 | goto out_unlock; |
| 1747 | } |
Davidlohr Bueso | 1d0dcb3 | 2015-05-01 08:27:51 -0700 | [diff] [blame] | 1748 | mark_wake_futex(&wake_q, this); |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1749 | if (++op_ret >= nr_wake2) |
| 1750 | break; |
| 1751 | } |
| 1752 | } |
| 1753 | ret += op_ret; |
| 1754 | } |
| 1755 | |
Darren Hart | aa10990 | 2012-11-26 16:29:56 -0800 | [diff] [blame] | 1756 | out_unlock: |
Darren Hart | 5eb3dc6 | 2009-03-12 00:55:52 -0700 | [diff] [blame] | 1757 | double_unlock_hb(hb1, hb2); |
Davidlohr Bueso | 1d0dcb3 | 2015-05-01 08:27:51 -0700 | [diff] [blame] | 1758 | wake_up_q(&wake_q); |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 1759 | return ret; |
| 1760 | } |
| 1761 | |
Darren Hart | 9121e47 | 2009-04-03 13:40:31 -0700 | [diff] [blame] | 1762 | /** |
| 1763 | * requeue_futex() - Requeue a futex_q from one hb to another |
| 1764 | * @q: the futex_q to requeue |
| 1765 | * @hb1: the source hash_bucket |
| 1766 | * @hb2: the target hash_bucket |
| 1767 | * @key2: the new key for the requeued futex_q |
| 1768 | */ |
| 1769 | static inline |
| 1770 | void requeue_futex(struct futex_q *q, struct futex_hash_bucket *hb1, |
| 1771 | struct futex_hash_bucket *hb2, union futex_key *key2) |
| 1772 | { |
| 1773 | |
| 1774 | /* |
| 1775 | * If key1 and key2 hash to the same bucket, no need to |
| 1776 | * requeue. |
| 1777 | */ |
| 1778 | if (likely(&hb1->chain != &hb2->chain)) { |
| 1779 | plist_del(&q->list, &hb1->chain); |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 1780 | hb_waiters_dec(hb1); |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 1781 | hb_waiters_inc(hb2); |
Davidlohr Bueso | fe1bce9 | 2016-04-20 20:09:24 -0700 | [diff] [blame] | 1782 | plist_add(&q->list, &hb2->chain); |
Darren Hart | 9121e47 | 2009-04-03 13:40:31 -0700 | [diff] [blame] | 1783 | q->lock_ptr = &hb2->lock; |
Darren Hart | 9121e47 | 2009-04-03 13:40:31 -0700 | [diff] [blame] | 1784 | } |
Darren Hart | 9121e47 | 2009-04-03 13:40:31 -0700 | [diff] [blame] | 1785 | q->key = *key2; |
| 1786 | } |
| 1787 | |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1788 | /** |
| 1789 | * requeue_pi_wake_futex() - Wake a task that acquired the lock during requeue |
Darren Hart | d96ee56 | 2009-09-21 22:30:22 -0700 | [diff] [blame] | 1790 | * @q: the futex_q |
| 1791 | * @key: the key of the requeue target futex |
| 1792 | * @hb: the hash_bucket of the requeue target futex |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1793 | * |
| 1794 | * During futex_requeue, with requeue_pi=1, it is possible to acquire the |
| 1795 | * target futex if it is uncontended or via a lock steal. Set the futex_q key |
| 1796 | * to the requeue target futex so the waiter can detect the wakeup on the right |
| 1797 | * futex, but remove it from the hb and NULL the rt_waiter so it can detect |
Darren Hart | beda2c7 | 2009-08-09 15:34:39 -0700 | [diff] [blame] | 1798 | * atomic lock acquisition. Set the q->lock_ptr to the requeue target hb->lock |
| 1799 | * to protect access to the pi_state to fixup the owner later. Must be called |
| 1800 | * with both q->lock_ptr and hb->lock held. |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1801 | */ |
| 1802 | static inline |
Darren Hart | beda2c7 | 2009-08-09 15:34:39 -0700 | [diff] [blame] | 1803 | void requeue_pi_wake_futex(struct futex_q *q, union futex_key *key, |
| 1804 | struct futex_hash_bucket *hb) |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1805 | { |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1806 | q->key = *key; |
| 1807 | |
Lai Jiangshan | 2e12978 | 2010-12-22 14:18:50 +0800 | [diff] [blame] | 1808 | __unqueue_futex(q); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1809 | |
| 1810 | WARN_ON(!q->rt_waiter); |
| 1811 | q->rt_waiter = NULL; |
| 1812 | |
Darren Hart | beda2c7 | 2009-08-09 15:34:39 -0700 | [diff] [blame] | 1813 | q->lock_ptr = &hb->lock; |
Darren Hart | beda2c7 | 2009-08-09 15:34:39 -0700 | [diff] [blame] | 1814 | |
Thomas Gleixner | f1a11e0 | 2009-05-05 19:21:40 +0200 | [diff] [blame] | 1815 | wake_up_state(q->task, TASK_NORMAL); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1816 | } |
| 1817 | |
| 1818 | /** |
| 1819 | * futex_proxy_trylock_atomic() - Attempt an atomic lock for the top waiter |
Darren Hart | bab5bc9 | 2009-04-07 23:23:50 -0700 | [diff] [blame] | 1820 | * @pifutex: the user address of the to futex |
| 1821 | * @hb1: the from futex hash bucket, must be locked by the caller |
| 1822 | * @hb2: the to futex hash bucket, must be locked by the caller |
| 1823 | * @key1: the from futex key |
| 1824 | * @key2: the to futex key |
| 1825 | * @ps: address to store the pi_state pointer |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1826 | * @exiting: Pointer to store the task pointer of the owner task |
| 1827 | * which is in the middle of exiting |
Darren Hart | bab5bc9 | 2009-04-07 23:23:50 -0700 | [diff] [blame] | 1828 | * @set_waiters: force setting the FUTEX_WAITERS bit (1) or not (0) |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1829 | * |
| 1830 | * Try and get the lock on behalf of the top waiter if we can do it atomically. |
Darren Hart | bab5bc9 | 2009-04-07 23:23:50 -0700 | [diff] [blame] | 1831 | * Wake the top waiter if we succeed. If the caller specified set_waiters, |
| 1832 | * then direct futex_lock_pi_atomic() to force setting the FUTEX_WAITERS bit. |
| 1833 | * hb1 and hb2 must be held by the caller. |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1834 | * |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1835 | * @exiting is only set when the return value is -EBUSY. If so, this holds |
| 1836 | * a refcount on the exiting task on return and the caller needs to drop it |
| 1837 | * after waiting for the exit to complete. |
| 1838 | * |
Randy Dunlap | 6c23cbb | 2013-03-05 10:00:24 -0800 | [diff] [blame] | 1839 | * Return: |
Mauro Carvalho Chehab | 7b4ff1a | 2017-05-11 10:17:45 -0300 | [diff] [blame] | 1840 | * - 0 - failed to acquire the lock atomically; |
| 1841 | * - >0 - acquired the lock, return value is vpid of the top_waiter |
| 1842 | * - <0 - error |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1843 | */ |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1844 | static int |
| 1845 | futex_proxy_trylock_atomic(u32 __user *pifutex, struct futex_hash_bucket *hb1, |
| 1846 | struct futex_hash_bucket *hb2, union futex_key *key1, |
| 1847 | union futex_key *key2, struct futex_pi_state **ps, |
| 1848 | struct task_struct **exiting, int set_waiters) |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1849 | { |
Darren Hart | bab5bc9 | 2009-04-07 23:23:50 -0700 | [diff] [blame] | 1850 | struct futex_q *top_waiter = NULL; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1851 | u32 curval; |
Thomas Gleixner | 866293e | 2014-05-12 20:45:34 +0000 | [diff] [blame] | 1852 | int ret, vpid; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1853 | |
| 1854 | if (get_futex_value_locked(&curval, pifutex)) |
| 1855 | return -EFAULT; |
| 1856 | |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 1857 | if (unlikely(should_fail_futex(true))) |
| 1858 | return -EFAULT; |
| 1859 | |
Darren Hart | bab5bc9 | 2009-04-07 23:23:50 -0700 | [diff] [blame] | 1860 | /* |
| 1861 | * Find the top_waiter and determine if there are additional waiters. |
| 1862 | * If the caller intends to requeue more than 1 waiter to pifutex, |
| 1863 | * force futex_lock_pi_atomic() to set the FUTEX_WAITERS bit now, |
| 1864 | * as we have means to handle the possible fault. If not, don't set |
| 1865 | * the bit unecessarily as it will force the subsequent unlock to enter |
| 1866 | * the kernel. |
| 1867 | */ |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1868 | top_waiter = futex_top_waiter(hb1, key1); |
| 1869 | |
| 1870 | /* There are no waiters, nothing for us to do. */ |
| 1871 | if (!top_waiter) |
| 1872 | return 0; |
| 1873 | |
Darren Hart | 84bc4af | 2009-08-13 17:36:53 -0700 | [diff] [blame] | 1874 | /* Ensure we requeue to the expected futex. */ |
| 1875 | if (!match_futex(top_waiter->requeue_pi_key, key2)) |
| 1876 | return -EINVAL; |
| 1877 | |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1878 | /* |
Darren Hart | bab5bc9 | 2009-04-07 23:23:50 -0700 | [diff] [blame] | 1879 | * Try to take the lock for top_waiter. Set the FUTEX_WAITERS bit in |
| 1880 | * the contended case or if set_waiters is 1. The pi_state is returned |
| 1881 | * in ps in contended cases. |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1882 | */ |
Thomas Gleixner | 866293e | 2014-05-12 20:45:34 +0000 | [diff] [blame] | 1883 | vpid = task_pid_vnr(top_waiter->task); |
Darren Hart | bab5bc9 | 2009-04-07 23:23:50 -0700 | [diff] [blame] | 1884 | ret = futex_lock_pi_atomic(pifutex, hb2, key2, ps, top_waiter->task, |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 1885 | exiting, set_waiters); |
Thomas Gleixner | 866293e | 2014-05-12 20:45:34 +0000 | [diff] [blame] | 1886 | if (ret == 1) { |
Darren Hart | beda2c7 | 2009-08-09 15:34:39 -0700 | [diff] [blame] | 1887 | requeue_pi_wake_futex(top_waiter, key2, hb2); |
Thomas Gleixner | 866293e | 2014-05-12 20:45:34 +0000 | [diff] [blame] | 1888 | return vpid; |
| 1889 | } |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1890 | return ret; |
| 1891 | } |
| 1892 | |
| 1893 | /** |
| 1894 | * futex_requeue() - Requeue waiters from uaddr1 to uaddr2 |
Randy Dunlap | fb62db2 | 2010-10-13 11:02:34 -0700 | [diff] [blame] | 1895 | * @uaddr1: source futex user address |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 1896 | * @flags: futex flags (FLAGS_SHARED, etc.) |
Randy Dunlap | fb62db2 | 2010-10-13 11:02:34 -0700 | [diff] [blame] | 1897 | * @uaddr2: target futex user address |
| 1898 | * @nr_wake: number of waiters to wake (must be 1 for requeue_pi) |
| 1899 | * @nr_requeue: number of waiters to requeue (0-INT_MAX) |
| 1900 | * @cmpval: @uaddr1 expected value (or %NULL) |
| 1901 | * @requeue_pi: if we are attempting to requeue from a non-pi futex to a |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 1902 | * pi futex (pi to pi requeue is not supported) |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1903 | * |
| 1904 | * Requeue waiters on uaddr1 to uaddr2. In the requeue_pi case, try to acquire |
| 1905 | * uaddr2 atomically on behalf of the top waiter. |
| 1906 | * |
Randy Dunlap | 6c23cbb | 2013-03-05 10:00:24 -0800 | [diff] [blame] | 1907 | * Return: |
Mauro Carvalho Chehab | 7b4ff1a | 2017-05-11 10:17:45 -0300 | [diff] [blame] | 1908 | * - >=0 - on success, the number of tasks requeued or woken; |
| 1909 | * - <0 - on error |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | */ |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 1911 | static int futex_requeue(u32 __user *uaddr1, unsigned int flags, |
| 1912 | u32 __user *uaddr2, int nr_wake, int nr_requeue, |
| 1913 | u32 *cmpval, int requeue_pi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | { |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 1915 | union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT; |
Peter Zijlstra | 4b39f99 | 2020-03-04 13:24:24 +0100 | [diff] [blame] | 1916 | int task_count = 0, ret; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1917 | struct futex_pi_state *pi_state = NULL; |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 1918 | struct futex_hash_bucket *hb1, *hb2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1919 | struct futex_q *this, *next; |
Waiman Long | 194a6b5 | 2016-11-17 11:46:38 -0500 | [diff] [blame] | 1920 | DEFINE_WAKE_Q(wake_q); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1921 | |
Li Jinyue | fbe0e83 | 2017-12-14 17:04:54 +0800 | [diff] [blame] | 1922 | if (nr_wake < 0 || nr_requeue < 0) |
| 1923 | return -EINVAL; |
| 1924 | |
Nicolas Pitre | bc2eecd | 2017-08-01 00:31:32 -0400 | [diff] [blame] | 1925 | /* |
| 1926 | * When PI not supported: return -ENOSYS if requeue_pi is true, |
| 1927 | * consequently the compiler knows requeue_pi is always false past |
| 1928 | * this point which will optimize away all the conditional code |
| 1929 | * further down. |
| 1930 | */ |
| 1931 | if (!IS_ENABLED(CONFIG_FUTEX_PI) && requeue_pi) |
| 1932 | return -ENOSYS; |
| 1933 | |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1934 | if (requeue_pi) { |
| 1935 | /* |
Thomas Gleixner | e9c243a | 2014-06-03 12:27:06 +0000 | [diff] [blame] | 1936 | * Requeue PI only works on two distinct uaddrs. This |
| 1937 | * check is only valid for private futexes. See below. |
| 1938 | */ |
| 1939 | if (uaddr1 == uaddr2) |
| 1940 | return -EINVAL; |
| 1941 | |
| 1942 | /* |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 1943 | * requeue_pi requires a pi_state, try to allocate it now |
| 1944 | * without any locks in case it fails. |
| 1945 | */ |
| 1946 | if (refill_pi_state_cache()) |
| 1947 | return -ENOMEM; |
| 1948 | /* |
| 1949 | * requeue_pi must wake as many tasks as it can, up to nr_wake |
| 1950 | * + nr_requeue, since it acquires the rt_mutex prior to |
| 1951 | * returning to userspace, so as to not leave the rt_mutex with |
| 1952 | * waiters and no owner. However, second and third wake-ups |
| 1953 | * cannot be predicted as they involve race conditions with the |
| 1954 | * first wake and a fault while looking up the pi_state. Both |
| 1955 | * pthread_cond_signal() and pthread_cond_broadcast() should |
| 1956 | * use nr_wake=1. |
| 1957 | */ |
| 1958 | if (nr_wake != 1) |
| 1959 | return -EINVAL; |
| 1960 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | |
Darren Hart | 42d35d4 | 2008-12-29 15:49:53 -0800 | [diff] [blame] | 1962 | retry: |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 1963 | ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, FUTEX_READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | if (unlikely(ret != 0)) |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 1965 | return ret; |
Shawn Bohrer | 9ea7150 | 2011-06-30 11:21:32 -0500 | [diff] [blame] | 1966 | ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 1967 | requeue_pi ? FUTEX_WRITE : FUTEX_READ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | if (unlikely(ret != 0)) |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 1969 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1970 | |
Thomas Gleixner | e9c243a | 2014-06-03 12:27:06 +0000 | [diff] [blame] | 1971 | /* |
| 1972 | * The check above which compares uaddrs is not sufficient for |
| 1973 | * shared futexes. We need to compare the keys: |
| 1974 | */ |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 1975 | if (requeue_pi && match_futex(&key1, &key2)) |
| 1976 | return -EINVAL; |
Thomas Gleixner | e9c243a | 2014-06-03 12:27:06 +0000 | [diff] [blame] | 1977 | |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 1978 | hb1 = hash_futex(&key1); |
| 1979 | hb2 = hash_futex(&key2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 1981 | retry_private: |
Linus Torvalds | 69cd9eb | 2014-04-08 15:30:07 -0700 | [diff] [blame] | 1982 | hb_waiters_inc(hb2); |
Ingo Molnar | 8b8f319 | 2006-07-03 00:25:05 -0700 | [diff] [blame] | 1983 | double_lock_hb(hb1, hb2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 1985 | if (likely(cmpval != NULL)) { |
| 1986 | u32 curval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 1988 | ret = get_futex_value_locked(&curval, uaddr1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | |
| 1990 | if (unlikely(ret)) { |
Darren Hart | 5eb3dc6 | 2009-03-12 00:55:52 -0700 | [diff] [blame] | 1991 | double_unlock_hb(hb1, hb2); |
Linus Torvalds | 69cd9eb | 2014-04-08 15:30:07 -0700 | [diff] [blame] | 1992 | hb_waiters_dec(hb2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1993 | |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 1994 | ret = get_user(curval, uaddr1); |
| 1995 | if (ret) |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 1996 | return ret; |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 1997 | |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 1998 | if (!(flags & FLAGS_SHARED)) |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 1999 | goto retry_private; |
| 2000 | |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 2001 | goto retry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2002 | } |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 2003 | if (curval != *cmpval) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | ret = -EAGAIN; |
| 2005 | goto out_unlock; |
| 2006 | } |
| 2007 | } |
| 2008 | |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2009 | if (requeue_pi && (task_count - nr_wake < nr_requeue)) { |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 2010 | struct task_struct *exiting = NULL; |
| 2011 | |
Darren Hart | bab5bc9 | 2009-04-07 23:23:50 -0700 | [diff] [blame] | 2012 | /* |
| 2013 | * Attempt to acquire uaddr2 and wake the top waiter. If we |
| 2014 | * intend to requeue waiters, force setting the FUTEX_WAITERS |
| 2015 | * bit. We force this here where we are able to easily handle |
| 2016 | * faults rather in the requeue loop below. |
| 2017 | */ |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2018 | ret = futex_proxy_trylock_atomic(uaddr2, hb1, hb2, &key1, |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 2019 | &key2, &pi_state, |
| 2020 | &exiting, nr_requeue); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2021 | |
| 2022 | /* |
| 2023 | * At this point the top_waiter has either taken uaddr2 or is |
| 2024 | * waiting on it. If the former, then the pi_state will not |
| 2025 | * exist yet, look it up one more time to ensure we have a |
Thomas Gleixner | 866293e | 2014-05-12 20:45:34 +0000 | [diff] [blame] | 2026 | * reference to it. If the lock was taken, ret contains the |
| 2027 | * vpid of the top waiter task. |
Thomas Gleixner | ecb38b7 | 2015-12-19 20:07:39 +0000 | [diff] [blame] | 2028 | * If the lock was not taken, we have pi_state and an initial |
| 2029 | * refcount on it. In case of an error we have nothing. |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2030 | */ |
Thomas Gleixner | 866293e | 2014-05-12 20:45:34 +0000 | [diff] [blame] | 2031 | if (ret > 0) { |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2032 | WARN_ON(pi_state); |
| 2033 | task_count++; |
Thomas Gleixner | 866293e | 2014-05-12 20:45:34 +0000 | [diff] [blame] | 2034 | /* |
Thomas Gleixner | ecb38b7 | 2015-12-19 20:07:39 +0000 | [diff] [blame] | 2035 | * If we acquired the lock, then the user space value |
| 2036 | * of uaddr2 should be vpid. It cannot be changed by |
| 2037 | * the top waiter as it is blocked on hb2 lock if it |
| 2038 | * tries to do so. If something fiddled with it behind |
| 2039 | * our back the pi state lookup might unearth it. So |
| 2040 | * we rather use the known value than rereading and |
| 2041 | * handing potential crap to lookup_pi_state. |
| 2042 | * |
| 2043 | * If that call succeeds then we have pi_state and an |
| 2044 | * initial refcount on it. |
Thomas Gleixner | 866293e | 2014-05-12 20:45:34 +0000 | [diff] [blame] | 2045 | */ |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 2046 | ret = lookup_pi_state(uaddr2, ret, hb2, &key2, |
| 2047 | &pi_state, &exiting); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2048 | } |
| 2049 | |
| 2050 | switch (ret) { |
| 2051 | case 0: |
Thomas Gleixner | ecb38b7 | 2015-12-19 20:07:39 +0000 | [diff] [blame] | 2052 | /* We hold a reference on the pi state. */ |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2053 | break; |
Thomas Gleixner | 4959f2d | 2015-12-19 20:07:40 +0000 | [diff] [blame] | 2054 | |
| 2055 | /* If the above failed, then pi_state is NULL */ |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2056 | case -EFAULT: |
| 2057 | double_unlock_hb(hb1, hb2); |
Linus Torvalds | 69cd9eb | 2014-04-08 15:30:07 -0700 | [diff] [blame] | 2058 | hb_waiters_dec(hb2); |
Thomas Gleixner | d072599 | 2009-06-11 23:15:43 +0200 | [diff] [blame] | 2059 | ret = fault_in_user_writeable(uaddr2); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2060 | if (!ret) |
| 2061 | goto retry; |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 2062 | return ret; |
Thomas Gleixner | ac31c7f | 2019-11-06 22:55:45 +0100 | [diff] [blame] | 2063 | case -EBUSY: |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2064 | case -EAGAIN: |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 2065 | /* |
| 2066 | * Two reasons for this: |
Thomas Gleixner | ac31c7f | 2019-11-06 22:55:45 +0100 | [diff] [blame] | 2067 | * - EBUSY: Owner is exiting and we just wait for the |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 2068 | * exit to complete. |
Thomas Gleixner | ac31c7f | 2019-11-06 22:55:45 +0100 | [diff] [blame] | 2069 | * - EAGAIN: The user space value changed. |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 2070 | */ |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2071 | double_unlock_hb(hb1, hb2); |
Linus Torvalds | 69cd9eb | 2014-04-08 15:30:07 -0700 | [diff] [blame] | 2072 | hb_waiters_dec(hb2); |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 2073 | /* |
| 2074 | * Handle the case where the owner is in the middle of |
| 2075 | * exiting. Wait for the exit to complete otherwise |
| 2076 | * this task might loop forever, aka. live lock. |
| 2077 | */ |
| 2078 | wait_for_owner_exiting(ret, exiting); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2079 | cond_resched(); |
| 2080 | goto retry; |
| 2081 | default: |
| 2082 | goto out_unlock; |
| 2083 | } |
| 2084 | } |
| 2085 | |
Jason Low | 0d00c7b | 2014-01-12 15:31:22 -0800 | [diff] [blame] | 2086 | plist_for_each_entry_safe(this, next, &hb1->chain, list) { |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2087 | if (task_count - nr_wake >= nr_requeue) |
| 2088 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2089 | |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2090 | if (!match_futex(&this->key, &key1)) |
| 2091 | continue; |
| 2092 | |
Darren Hart | 392741e | 2009-08-07 15:20:48 -0700 | [diff] [blame] | 2093 | /* |
| 2094 | * FUTEX_WAIT_REQEUE_PI and FUTEX_CMP_REQUEUE_PI should always |
| 2095 | * be paired with each other and no other futex ops. |
Darren Hart | aa10990 | 2012-11-26 16:29:56 -0800 | [diff] [blame] | 2096 | * |
| 2097 | * We should never be requeueing a futex_q with a pi_state, |
| 2098 | * which is awaiting a futex_unlock_pi(). |
Darren Hart | 392741e | 2009-08-07 15:20:48 -0700 | [diff] [blame] | 2099 | */ |
| 2100 | if ((requeue_pi && !this->rt_waiter) || |
Darren Hart | aa10990 | 2012-11-26 16:29:56 -0800 | [diff] [blame] | 2101 | (!requeue_pi && this->rt_waiter) || |
| 2102 | this->pi_state) { |
Darren Hart | 392741e | 2009-08-07 15:20:48 -0700 | [diff] [blame] | 2103 | ret = -EINVAL; |
| 2104 | break; |
| 2105 | } |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2106 | |
| 2107 | /* |
| 2108 | * Wake nr_wake waiters. For requeue_pi, if we acquired the |
| 2109 | * lock, we already woke the top_waiter. If not, it will be |
| 2110 | * woken by futex_unlock_pi(). |
| 2111 | */ |
| 2112 | if (++task_count <= nr_wake && !requeue_pi) { |
Davidlohr Bueso | 1d0dcb3 | 2015-05-01 08:27:51 -0700 | [diff] [blame] | 2113 | mark_wake_futex(&wake_q, this); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2114 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | } |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2116 | |
Darren Hart | 84bc4af | 2009-08-13 17:36:53 -0700 | [diff] [blame] | 2117 | /* Ensure we requeue to the expected futex for requeue_pi. */ |
| 2118 | if (requeue_pi && !match_futex(this->requeue_pi_key, &key2)) { |
| 2119 | ret = -EINVAL; |
| 2120 | break; |
| 2121 | } |
| 2122 | |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2123 | /* |
| 2124 | * Requeue nr_requeue waiters and possibly one more in the case |
| 2125 | * of requeue_pi if we couldn't acquire the lock atomically. |
| 2126 | */ |
| 2127 | if (requeue_pi) { |
Thomas Gleixner | ecb38b7 | 2015-12-19 20:07:39 +0000 | [diff] [blame] | 2128 | /* |
| 2129 | * Prepare the waiter to take the rt_mutex. Take a |
| 2130 | * refcount on the pi_state and store the pointer in |
| 2131 | * the futex_q object of the waiter. |
| 2132 | */ |
Peter Zijlstra | bf92cf3 | 2017-03-22 11:35:53 +0100 | [diff] [blame] | 2133 | get_pi_state(pi_state); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2134 | this->pi_state = pi_state; |
| 2135 | ret = rt_mutex_start_proxy_lock(&pi_state->pi_mutex, |
| 2136 | this->rt_waiter, |
Thomas Gleixner | c051b21 | 2014-05-22 03:25:50 +0000 | [diff] [blame] | 2137 | this->task); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2138 | if (ret == 1) { |
Thomas Gleixner | ecb38b7 | 2015-12-19 20:07:39 +0000 | [diff] [blame] | 2139 | /* |
| 2140 | * We got the lock. We do neither drop the |
| 2141 | * refcount on pi_state nor clear |
| 2142 | * this->pi_state because the waiter needs the |
| 2143 | * pi_state for cleaning up the user space |
| 2144 | * value. It will drop the refcount after |
| 2145 | * doing so. |
| 2146 | */ |
Darren Hart | beda2c7 | 2009-08-09 15:34:39 -0700 | [diff] [blame] | 2147 | requeue_pi_wake_futex(this, &key2, hb2); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2148 | continue; |
| 2149 | } else if (ret) { |
Thomas Gleixner | ecb38b7 | 2015-12-19 20:07:39 +0000 | [diff] [blame] | 2150 | /* |
| 2151 | * rt_mutex_start_proxy_lock() detected a |
| 2152 | * potential deadlock when we tried to queue |
| 2153 | * that waiter. Drop the pi_state reference |
| 2154 | * which we took above and remove the pointer |
| 2155 | * to the state from the waiters futex_q |
| 2156 | * object. |
| 2157 | */ |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2158 | this->pi_state = NULL; |
Thomas Gleixner | 29e9ee5 | 2015-12-19 20:07:39 +0000 | [diff] [blame] | 2159 | put_pi_state(pi_state); |
Thomas Gleixner | 885c2cb | 2015-12-19 20:07:41 +0000 | [diff] [blame] | 2160 | /* |
| 2161 | * We stop queueing more waiters and let user |
| 2162 | * space deal with the mess. |
| 2163 | */ |
| 2164 | break; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2165 | } |
| 2166 | } |
| 2167 | requeue_futex(this, hb1, hb2, &key2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | } |
| 2169 | |
Thomas Gleixner | ecb38b7 | 2015-12-19 20:07:39 +0000 | [diff] [blame] | 2170 | /* |
| 2171 | * We took an extra initial reference to the pi_state either |
| 2172 | * in futex_proxy_trylock_atomic() or in lookup_pi_state(). We |
| 2173 | * need to drop it here again. |
| 2174 | */ |
Thomas Gleixner | 29e9ee5 | 2015-12-19 20:07:39 +0000 | [diff] [blame] | 2175 | put_pi_state(pi_state); |
Thomas Gleixner | 885c2cb | 2015-12-19 20:07:41 +0000 | [diff] [blame] | 2176 | |
| 2177 | out_unlock: |
Darren Hart | 5eb3dc6 | 2009-03-12 00:55:52 -0700 | [diff] [blame] | 2178 | double_unlock_hb(hb1, hb2); |
Davidlohr Bueso | 1d0dcb3 | 2015-05-01 08:27:51 -0700 | [diff] [blame] | 2179 | wake_up_q(&wake_q); |
Linus Torvalds | 69cd9eb | 2014-04-08 15:30:07 -0700 | [diff] [blame] | 2180 | hb_waiters_dec(hb2); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 2181 | return ret ? ret : task_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | } |
| 2183 | |
| 2184 | /* The key must be already stored in q->key. */ |
Eric Sesterhenn | 82af7ac | 2008-01-25 10:40:46 +0100 | [diff] [blame] | 2185 | static inline struct futex_hash_bucket *queue_lock(struct futex_q *q) |
Namhyung Kim | 15e408c | 2010-09-14 21:43:48 +0900 | [diff] [blame] | 2186 | __acquires(&hb->lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2187 | { |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 2188 | struct futex_hash_bucket *hb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 2190 | hb = hash_futex(&q->key); |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 2191 | |
| 2192 | /* |
| 2193 | * Increment the counter before taking the lock so that |
| 2194 | * a potential waker won't miss a to-be-slept task that is |
| 2195 | * waiting for the spinlock. This is safe as all queue_lock() |
| 2196 | * users end up calling queue_me(). Similarly, for housekeeping, |
| 2197 | * decrement the counter at queue_unlock() when some error has |
| 2198 | * occurred and we don't end up adding the task to the list. |
| 2199 | */ |
Davidlohr Bueso | 6f568eb | 2019-02-06 10:56:02 -0800 | [diff] [blame] | 2200 | hb_waiters_inc(hb); /* implies smp_mb(); (A) */ |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 2201 | |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 2202 | q->lock_ptr = &hb->lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | |
Davidlohr Bueso | 6f568eb | 2019-02-06 10:56:02 -0800 | [diff] [blame] | 2204 | spin_lock(&hb->lock); |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 2205 | return hb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | } |
| 2207 | |
Darren Hart | d40d65c | 2009-09-21 22:30:15 -0700 | [diff] [blame] | 2208 | static inline void |
Jason Low | 0d00c7b | 2014-01-12 15:31:22 -0800 | [diff] [blame] | 2209 | queue_unlock(struct futex_hash_bucket *hb) |
Namhyung Kim | 15e408c | 2010-09-14 21:43:48 +0900 | [diff] [blame] | 2210 | __releases(&hb->lock) |
Darren Hart | d40d65c | 2009-09-21 22:30:15 -0700 | [diff] [blame] | 2211 | { |
| 2212 | spin_unlock(&hb->lock); |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 2213 | hb_waiters_dec(hb); |
Darren Hart | d40d65c | 2009-09-21 22:30:15 -0700 | [diff] [blame] | 2214 | } |
| 2215 | |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2216 | static inline void __queue_me(struct futex_q *q, struct futex_hash_bucket *hb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | { |
Pierre Peiffer | ec92d08 | 2007-05-09 02:35:00 -0700 | [diff] [blame] | 2218 | int prio; |
| 2219 | |
| 2220 | /* |
| 2221 | * The priority used to register this element is |
| 2222 | * - either the real thread-priority for the real-time threads |
| 2223 | * (i.e. threads with a priority lower than MAX_RT_PRIO) |
| 2224 | * - or MAX_RT_PRIO for non-RT threads. |
| 2225 | * Thus, all RT-threads are woken first in priority order, and |
| 2226 | * the others are woken last, in FIFO order. |
| 2227 | */ |
| 2228 | prio = min(current->normal_prio, MAX_RT_PRIO); |
| 2229 | |
| 2230 | plist_node_init(&q->list, prio); |
Pierre Peiffer | ec92d08 | 2007-05-09 02:35:00 -0700 | [diff] [blame] | 2231 | plist_add(&q->list, &hb->chain); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2232 | q->task = current; |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2233 | } |
| 2234 | |
| 2235 | /** |
| 2236 | * queue_me() - Enqueue the futex_q on the futex_hash_bucket |
| 2237 | * @q: The futex_q to enqueue |
| 2238 | * @hb: The destination hash bucket |
| 2239 | * |
| 2240 | * The hb->lock must be held by the caller, and is released here. A call to |
| 2241 | * queue_me() is typically paired with exactly one call to unqueue_me(). The |
| 2242 | * exceptions involve the PI related operations, which may use unqueue_me_pi() |
| 2243 | * or nothing if the unqueue is done as part of the wake process and the unqueue |
| 2244 | * state is implicit in the state of woken task (see futex_wait_requeue_pi() for |
| 2245 | * an example). |
| 2246 | */ |
| 2247 | static inline void queue_me(struct futex_q *q, struct futex_hash_bucket *hb) |
| 2248 | __releases(&hb->lock) |
| 2249 | { |
| 2250 | __queue_me(q, hb); |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 2251 | spin_unlock(&hb->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2252 | } |
| 2253 | |
Darren Hart | d40d65c | 2009-09-21 22:30:15 -0700 | [diff] [blame] | 2254 | /** |
| 2255 | * unqueue_me() - Remove the futex_q from its futex_hash_bucket |
| 2256 | * @q: The futex_q to unqueue |
| 2257 | * |
| 2258 | * The q->lock_ptr must not be held by the caller. A call to unqueue_me() must |
| 2259 | * be paired with exactly one earlier call to queue_me(). |
| 2260 | * |
Randy Dunlap | 6c23cbb | 2013-03-05 10:00:24 -0800 | [diff] [blame] | 2261 | * Return: |
Mauro Carvalho Chehab | 7b4ff1a | 2017-05-11 10:17:45 -0300 | [diff] [blame] | 2262 | * - 1 - if the futex_q was still queued (and we removed unqueued it); |
| 2263 | * - 0 - if the futex_q was already removed by the waking thread |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2265 | static int unqueue_me(struct futex_q *q) |
| 2266 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2267 | spinlock_t *lock_ptr; |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 2268 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2269 | |
| 2270 | /* In the common case we don't take the spinlock, which is nice. */ |
Darren Hart | 42d35d4 | 2008-12-29 15:49:53 -0800 | [diff] [blame] | 2271 | retry: |
Jianyu Zhan | 29b75eb | 2016-03-07 09:32:24 +0800 | [diff] [blame] | 2272 | /* |
| 2273 | * q->lock_ptr can change between this read and the following spin_lock. |
| 2274 | * Use READ_ONCE to forbid the compiler from reloading q->lock_ptr and |
| 2275 | * optimizing lock_ptr out of the logic below. |
| 2276 | */ |
| 2277 | lock_ptr = READ_ONCE(q->lock_ptr); |
Stephen Hemminger | c80544d | 2007-10-18 03:07:05 -0700 | [diff] [blame] | 2278 | if (lock_ptr != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | spin_lock(lock_ptr); |
| 2280 | /* |
| 2281 | * q->lock_ptr can change between reading it and |
| 2282 | * spin_lock(), causing us to take the wrong lock. This |
| 2283 | * corrects the race condition. |
| 2284 | * |
| 2285 | * Reasoning goes like this: if we have the wrong lock, |
| 2286 | * q->lock_ptr must have changed (maybe several times) |
| 2287 | * between reading it and the spin_lock(). It can |
| 2288 | * change again after the spin_lock() but only if it was |
| 2289 | * already changed before the spin_lock(). It cannot, |
| 2290 | * however, change back to the original value. Therefore |
| 2291 | * we can detect whether we acquired the correct lock. |
| 2292 | */ |
| 2293 | if (unlikely(lock_ptr != q->lock_ptr)) { |
| 2294 | spin_unlock(lock_ptr); |
| 2295 | goto retry; |
| 2296 | } |
Lai Jiangshan | 2e12978 | 2010-12-22 14:18:50 +0800 | [diff] [blame] | 2297 | __unqueue_futex(q); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2298 | |
| 2299 | BUG_ON(q->pi_state); |
| 2300 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2301 | spin_unlock(lock_ptr); |
| 2302 | ret = 1; |
| 2303 | } |
| 2304 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | return ret; |
| 2306 | } |
| 2307 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2308 | /* |
| 2309 | * PI futexes can not be requeued and must remove themself from the |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2310 | * hash bucket. The hash bucket lock (i.e. lock_ptr) is held on entry |
| 2311 | * and dropped here. |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2312 | */ |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2313 | static void unqueue_me_pi(struct futex_q *q) |
Namhyung Kim | 15e408c | 2010-09-14 21:43:48 +0900 | [diff] [blame] | 2314 | __releases(q->lock_ptr) |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2315 | { |
Lai Jiangshan | 2e12978 | 2010-12-22 14:18:50 +0800 | [diff] [blame] | 2316 | __unqueue_futex(q); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2317 | |
| 2318 | BUG_ON(!q->pi_state); |
Thomas Gleixner | 29e9ee5 | 2015-12-19 20:07:39 +0000 | [diff] [blame] | 2319 | put_pi_state(q->pi_state); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2320 | q->pi_state = NULL; |
| 2321 | |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2322 | spin_unlock(q->lock_ptr); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2323 | } |
| 2324 | |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 2325 | static int fixup_pi_state_owner(u32 __user *uaddr, struct futex_q *q, |
Peter Zijlstra | c1e2f0e | 2017-12-08 13:49:39 +0100 | [diff] [blame] | 2326 | struct task_struct *argowner) |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2327 | { |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2328 | struct futex_pi_state *pi_state = q->pi_state; |
Kees Cook | 3f649ab | 2020-06-03 13:09:38 -0700 | [diff] [blame] | 2329 | u32 uval, curval, newval; |
Peter Zijlstra | c1e2f0e | 2017-12-08 13:49:39 +0100 | [diff] [blame] | 2330 | struct task_struct *oldowner, *newowner; |
| 2331 | u32 newtid; |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 2332 | int ret, err = 0; |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2333 | |
Peter Zijlstra | c1e2f0e | 2017-12-08 13:49:39 +0100 | [diff] [blame] | 2334 | lockdep_assert_held(q->lock_ptr); |
| 2335 | |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 2336 | raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock); |
| 2337 | |
| 2338 | oldowner = pi_state->owner; |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2339 | |
| 2340 | /* |
Peter Zijlstra | c1e2f0e | 2017-12-08 13:49:39 +0100 | [diff] [blame] | 2341 | * We are here because either: |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 2342 | * |
Peter Zijlstra | c1e2f0e | 2017-12-08 13:49:39 +0100 | [diff] [blame] | 2343 | * - we stole the lock and pi_state->owner needs updating to reflect |
| 2344 | * that (@argowner == current), |
| 2345 | * |
| 2346 | * or: |
| 2347 | * |
| 2348 | * - someone stole our lock and we need to fix things to point to the |
| 2349 | * new owner (@argowner == NULL). |
| 2350 | * |
| 2351 | * Either way, we have to replace the TID in the user space variable. |
Lai Jiangshan | 8161239 | 2011-01-14 17:09:41 +0800 | [diff] [blame] | 2352 | * This must be atomic as we have to preserve the owner died bit here. |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2353 | * |
Darren Hart | b2d0994 | 2009-03-12 00:55:37 -0700 | [diff] [blame] | 2354 | * Note: We write the user space value _before_ changing the pi_state |
| 2355 | * because we can fault here. Imagine swapped out pages or a fork |
| 2356 | * that marked all the anonymous memory readonly for cow. |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2357 | * |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 2358 | * Modifying pi_state _before_ the user space value would leave the |
| 2359 | * pi_state in an inconsistent state when we fault here, because we |
| 2360 | * need to drop the locks to handle the fault. This might be observed |
| 2361 | * in the PID check in lookup_pi_state. |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2362 | */ |
| 2363 | retry: |
Peter Zijlstra | c1e2f0e | 2017-12-08 13:49:39 +0100 | [diff] [blame] | 2364 | if (!argowner) { |
| 2365 | if (oldowner != current) { |
| 2366 | /* |
| 2367 | * We raced against a concurrent self; things are |
| 2368 | * already fixed up. Nothing to do. |
| 2369 | */ |
| 2370 | ret = 0; |
| 2371 | goto out_unlock; |
| 2372 | } |
| 2373 | |
| 2374 | if (__rt_mutex_futex_trylock(&pi_state->pi_mutex)) { |
| 2375 | /* We got the lock after all, nothing to fix. */ |
| 2376 | ret = 0; |
| 2377 | goto out_unlock; |
| 2378 | } |
| 2379 | |
| 2380 | /* |
| 2381 | * Since we just failed the trylock; there must be an owner. |
| 2382 | */ |
| 2383 | newowner = rt_mutex_owner(&pi_state->pi_mutex); |
| 2384 | BUG_ON(!newowner); |
| 2385 | } else { |
| 2386 | WARN_ON_ONCE(argowner != current); |
| 2387 | if (oldowner == current) { |
| 2388 | /* |
| 2389 | * We raced against a concurrent self; things are |
| 2390 | * already fixed up. Nothing to do. |
| 2391 | */ |
| 2392 | ret = 0; |
| 2393 | goto out_unlock; |
| 2394 | } |
| 2395 | newowner = argowner; |
| 2396 | } |
| 2397 | |
| 2398 | newtid = task_pid_vnr(newowner) | FUTEX_WAITERS; |
Peter Zijlstra | a97cb0e | 2018-01-22 11:39:47 +0100 | [diff] [blame] | 2399 | /* Owner died? */ |
| 2400 | if (!pi_state->owner) |
| 2401 | newtid |= FUTEX_OWNER_DIED; |
Peter Zijlstra | c1e2f0e | 2017-12-08 13:49:39 +0100 | [diff] [blame] | 2402 | |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 2403 | err = get_futex_value_locked(&uval, uaddr); |
| 2404 | if (err) |
| 2405 | goto handle_err; |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2406 | |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 2407 | for (;;) { |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2408 | newval = (uval & FUTEX_OWNER_DIED) | newtid; |
| 2409 | |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 2410 | err = cmpxchg_futex_value_locked(&curval, uaddr, uval, newval); |
| 2411 | if (err) |
| 2412 | goto handle_err; |
| 2413 | |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2414 | if (curval == uval) |
| 2415 | break; |
| 2416 | uval = curval; |
| 2417 | } |
| 2418 | |
| 2419 | /* |
| 2420 | * We fixed up user space. Now we need to fix the pi_state |
| 2421 | * itself. |
| 2422 | */ |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2423 | if (pi_state->owner != NULL) { |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 2424 | raw_spin_lock(&pi_state->owner->pi_lock); |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2425 | WARN_ON(list_empty(&pi_state->list)); |
| 2426 | list_del_init(&pi_state->list); |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 2427 | raw_spin_unlock(&pi_state->owner->pi_lock); |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2428 | } |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2429 | |
Thomas Gleixner | cdf71a1 | 2008-01-08 19:47:38 +0100 | [diff] [blame] | 2430 | pi_state->owner = newowner; |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2431 | |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 2432 | raw_spin_lock(&newowner->pi_lock); |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2433 | WARN_ON(!list_empty(&pi_state->list)); |
Thomas Gleixner | cdf71a1 | 2008-01-08 19:47:38 +0100 | [diff] [blame] | 2434 | list_add(&pi_state->list, &newowner->pi_state_list); |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 2435 | raw_spin_unlock(&newowner->pi_lock); |
| 2436 | raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock); |
| 2437 | |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2438 | return 0; |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2439 | |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2440 | /* |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 2441 | * In order to reschedule or handle a page fault, we need to drop the |
| 2442 | * locks here. In the case of a fault, this gives the other task |
| 2443 | * (either the highest priority waiter itself or the task which stole |
| 2444 | * the rtmutex) the chance to try the fixup of the pi_state. So once we |
| 2445 | * are back from handling the fault we need to check the pi_state after |
| 2446 | * reacquiring the locks and before trying to do another fixup. When |
| 2447 | * the fixup has been done already we simply return. |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 2448 | * |
| 2449 | * Note: we hold both hb->lock and pi_mutex->wait_lock. We can safely |
| 2450 | * drop hb->lock since the caller owns the hb -> futex_q relation. |
| 2451 | * Dropping the pi_mutex->wait_lock requires the state revalidate. |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2452 | */ |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 2453 | handle_err: |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 2454 | raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock); |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2455 | spin_unlock(q->lock_ptr); |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 2456 | |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 2457 | switch (err) { |
| 2458 | case -EFAULT: |
| 2459 | ret = fault_in_user_writeable(uaddr); |
| 2460 | break; |
| 2461 | |
| 2462 | case -EAGAIN: |
| 2463 | cond_resched(); |
| 2464 | ret = 0; |
| 2465 | break; |
| 2466 | |
| 2467 | default: |
| 2468 | WARN_ON_ONCE(1); |
| 2469 | ret = err; |
| 2470 | break; |
| 2471 | } |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 2472 | |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2473 | spin_lock(q->lock_ptr); |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 2474 | raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock); |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 2475 | |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2476 | /* |
| 2477 | * Check if someone else fixed it for us: |
| 2478 | */ |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 2479 | if (pi_state->owner != oldowner) { |
| 2480 | ret = 0; |
| 2481 | goto out_unlock; |
| 2482 | } |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2483 | |
| 2484 | if (ret) |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 2485 | goto out_unlock; |
Thomas Gleixner | 1b7558e | 2008-06-23 11:21:58 +0200 | [diff] [blame] | 2486 | |
| 2487 | goto retry; |
Peter Zijlstra | 734009e | 2017-03-22 11:35:52 +0100 | [diff] [blame] | 2488 | |
| 2489 | out_unlock: |
| 2490 | raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock); |
| 2491 | return ret; |
Pierre Peiffer | d0aa7a7 | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2492 | } |
| 2493 | |
Nick Piggin | 72c1bbf | 2007-05-08 00:26:43 -0700 | [diff] [blame] | 2494 | static long futex_wait_restart(struct restart_block *restart); |
Thomas Gleixner | 36cf3b5 | 2007-07-15 23:41:20 -0700 | [diff] [blame] | 2495 | |
Darren Hart | ca5f952 | 2009-04-03 13:39:33 -0700 | [diff] [blame] | 2496 | /** |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2497 | * fixup_owner() - Post lock pi_state and corner case management |
| 2498 | * @uaddr: user address of the futex |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2499 | * @q: futex_q (contains pi_state and access to the rt_mutex) |
| 2500 | * @locked: if the attempt to take the rt_mutex succeeded (1) or not (0) |
| 2501 | * |
| 2502 | * After attempting to lock an rt_mutex, this function is called to cleanup |
| 2503 | * the pi_state owner as well as handle race conditions that may allow us to |
| 2504 | * acquire the lock. Must be called with the hb lock held. |
| 2505 | * |
Randy Dunlap | 6c23cbb | 2013-03-05 10:00:24 -0800 | [diff] [blame] | 2506 | * Return: |
Mauro Carvalho Chehab | 7b4ff1a | 2017-05-11 10:17:45 -0300 | [diff] [blame] | 2507 | * - 1 - success, lock taken; |
| 2508 | * - 0 - success, lock not taken; |
| 2509 | * - <0 - on error (-EFAULT) |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2510 | */ |
Thomas Gleixner | ae791a2 | 2010-11-10 13:30:36 +0100 | [diff] [blame] | 2511 | static int fixup_owner(u32 __user *uaddr, struct futex_q *q, int locked) |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2512 | { |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2513 | int ret = 0; |
| 2514 | |
| 2515 | if (locked) { |
| 2516 | /* |
| 2517 | * Got the lock. We might not be the anticipated owner if we |
| 2518 | * did a lock-steal - fix up the PI-state in that case: |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 2519 | * |
Peter Zijlstra | c1e2f0e | 2017-12-08 13:49:39 +0100 | [diff] [blame] | 2520 | * Speculative pi_state->owner read (we don't hold wait_lock); |
| 2521 | * since we own the lock pi_state->owner == current is the |
| 2522 | * stable state, anything else needs more attention. |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2523 | */ |
| 2524 | if (q->pi_state->owner != current) |
Thomas Gleixner | ae791a2 | 2010-11-10 13:30:36 +0100 | [diff] [blame] | 2525 | ret = fixup_pi_state_owner(uaddr, q, current); |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 2526 | return ret ? ret : locked; |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2527 | } |
| 2528 | |
| 2529 | /* |
Peter Zijlstra | c1e2f0e | 2017-12-08 13:49:39 +0100 | [diff] [blame] | 2530 | * If we didn't get the lock; check if anybody stole it from us. In |
| 2531 | * that case, we need to fix up the uval to point to them instead of |
| 2532 | * us, otherwise bad things happen. [10] |
| 2533 | * |
| 2534 | * Another speculative read; pi_state->owner == current is unstable |
| 2535 | * but needs our attention. |
| 2536 | */ |
| 2537 | if (q->pi_state->owner == current) { |
| 2538 | ret = fixup_pi_state_owner(uaddr, q, NULL); |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 2539 | return ret; |
Peter Zijlstra | c1e2f0e | 2017-12-08 13:49:39 +0100 | [diff] [blame] | 2540 | } |
| 2541 | |
| 2542 | /* |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2543 | * Paranoia check. If we did not take the lock, then we should not be |
Lai Jiangshan | 8161239 | 2011-01-14 17:09:41 +0800 | [diff] [blame] | 2544 | * the owner of the rt_mutex. |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2545 | */ |
Peter Zijlstra | 73d786b | 2017-03-22 11:35:54 +0100 | [diff] [blame] | 2546 | if (rt_mutex_owner(&q->pi_state->pi_mutex) == current) { |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2547 | printk(KERN_ERR "fixup_owner: ret = %d pi-mutex: %p " |
| 2548 | "pi-state %p\n", ret, |
| 2549 | q->pi_state->pi_mutex.owner, |
| 2550 | q->pi_state->owner); |
Peter Zijlstra | 73d786b | 2017-03-22 11:35:54 +0100 | [diff] [blame] | 2551 | } |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2552 | |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 2553 | return ret; |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2554 | } |
| 2555 | |
| 2556 | /** |
Darren Hart | ca5f952 | 2009-04-03 13:39:33 -0700 | [diff] [blame] | 2557 | * futex_wait_queue_me() - queue_me() and wait for wakeup, timeout, or signal |
| 2558 | * @hb: the futex hash bucket, must be locked by the caller |
| 2559 | * @q: the futex_q to queue up on |
| 2560 | * @timeout: the prepared hrtimer_sleeper, or null for no timeout |
Darren Hart | ca5f952 | 2009-04-03 13:39:33 -0700 | [diff] [blame] | 2561 | */ |
| 2562 | static void futex_wait_queue_me(struct futex_hash_bucket *hb, struct futex_q *q, |
Thomas Gleixner | f1a11e0 | 2009-05-05 19:21:40 +0200 | [diff] [blame] | 2563 | struct hrtimer_sleeper *timeout) |
Darren Hart | ca5f952 | 2009-04-03 13:39:33 -0700 | [diff] [blame] | 2564 | { |
Darren Hart | 9beba3c | 2009-09-24 11:54:47 -0700 | [diff] [blame] | 2565 | /* |
| 2566 | * The task state is guaranteed to be set before another task can |
Peter Zijlstra | b92b8b3 | 2015-05-12 10:51:55 +0200 | [diff] [blame] | 2567 | * wake it. set_current_state() is implemented using smp_store_mb() and |
Darren Hart | 9beba3c | 2009-09-24 11:54:47 -0700 | [diff] [blame] | 2568 | * queue_me() calls spin_unlock() upon completion, both serializing |
| 2569 | * access to the hash list and forcing another memory barrier. |
| 2570 | */ |
Thomas Gleixner | f1a11e0 | 2009-05-05 19:21:40 +0200 | [diff] [blame] | 2571 | set_current_state(TASK_INTERRUPTIBLE); |
Darren Hart | 0729e19 | 2009-09-21 22:30:38 -0700 | [diff] [blame] | 2572 | queue_me(q, hb); |
Darren Hart | ca5f952 | 2009-04-03 13:39:33 -0700 | [diff] [blame] | 2573 | |
| 2574 | /* Arm the timer */ |
Thomas Gleixner | 2e4b0d3 | 2015-04-14 21:09:13 +0000 | [diff] [blame] | 2575 | if (timeout) |
Thomas Gleixner | 9dd8813 | 2019-07-30 21:16:55 +0200 | [diff] [blame] | 2576 | hrtimer_sleeper_start_expires(timeout, HRTIMER_MODE_ABS); |
Darren Hart | ca5f952 | 2009-04-03 13:39:33 -0700 | [diff] [blame] | 2577 | |
| 2578 | /* |
Darren Hart | 0729e19 | 2009-09-21 22:30:38 -0700 | [diff] [blame] | 2579 | * If we have been removed from the hash list, then another task |
| 2580 | * has tried to wake us, and we can skip the call to schedule(). |
Darren Hart | ca5f952 | 2009-04-03 13:39:33 -0700 | [diff] [blame] | 2581 | */ |
| 2582 | if (likely(!plist_node_empty(&q->list))) { |
| 2583 | /* |
| 2584 | * If the timer has already expired, current will already be |
| 2585 | * flagged for rescheduling. Only call schedule if there |
| 2586 | * is no timeout, or if it has yet to expire. |
| 2587 | */ |
| 2588 | if (!timeout || timeout->task) |
Colin Cross | 88c8004 | 2013-05-01 18:35:05 -0700 | [diff] [blame] | 2589 | freezable_schedule(); |
Darren Hart | ca5f952 | 2009-04-03 13:39:33 -0700 | [diff] [blame] | 2590 | } |
| 2591 | __set_current_state(TASK_RUNNING); |
| 2592 | } |
| 2593 | |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2594 | /** |
| 2595 | * futex_wait_setup() - Prepare to wait on a futex |
| 2596 | * @uaddr: the futex userspace address |
| 2597 | * @val: the expected value |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 2598 | * @flags: futex flags (FLAGS_SHARED, etc.) |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2599 | * @q: the associated futex_q |
| 2600 | * @hb: storage for hash_bucket pointer to be returned to caller |
| 2601 | * |
| 2602 | * Setup the futex_q and locate the hash_bucket. Get the futex value and |
| 2603 | * compare it with the expected value. Handle atomic faults internally. |
| 2604 | * Return with the hb lock held and a q.key reference on success, and unlocked |
| 2605 | * with no q.key reference on failure. |
| 2606 | * |
Randy Dunlap | 6c23cbb | 2013-03-05 10:00:24 -0800 | [diff] [blame] | 2607 | * Return: |
Mauro Carvalho Chehab | 7b4ff1a | 2017-05-11 10:17:45 -0300 | [diff] [blame] | 2608 | * - 0 - uaddr contains val and hb has been locked; |
| 2609 | * - <1 - -EFAULT or -EWOULDBLOCK (uaddr does not contain val) and hb is unlocked |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2610 | */ |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 2611 | static int futex_wait_setup(u32 __user *uaddr, u32 val, unsigned int flags, |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2612 | struct futex_q *q, struct futex_hash_bucket **hb) |
| 2613 | { |
| 2614 | u32 uval; |
| 2615 | int ret; |
| 2616 | |
| 2617 | /* |
| 2618 | * Access the page AFTER the hash-bucket is locked. |
| 2619 | * Order is important: |
| 2620 | * |
| 2621 | * Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val); |
| 2622 | * Userspace waker: if (cond(var)) { var = new; futex_wake(&var); } |
| 2623 | * |
| 2624 | * The basic logical guarantee of a futex is that it blocks ONLY |
| 2625 | * if cond(var) is known to be true at the time of blocking, for |
Michel Lespinasse | 8fe8f54 | 2011-03-06 18:07:50 -0800 | [diff] [blame] | 2626 | * any cond. If we locked the hash-bucket after testing *uaddr, that |
| 2627 | * would open a race condition where we could block indefinitely with |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2628 | * cond(var) false, which would violate the guarantee. |
| 2629 | * |
Michel Lespinasse | 8fe8f54 | 2011-03-06 18:07:50 -0800 | [diff] [blame] | 2630 | * On the other hand, we insert q and release the hash-bucket only |
| 2631 | * after testing *uaddr. This guarantees that futex_wait() will NOT |
| 2632 | * absorb a wakeup if *uaddr does not match the desired values |
| 2633 | * while the syscall executes. |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2634 | */ |
| 2635 | retry: |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 2636 | ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q->key, FUTEX_READ); |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2637 | if (unlikely(ret != 0)) |
Darren Hart | a5a2a0c | 2009-04-10 09:50:05 -0700 | [diff] [blame] | 2638 | return ret; |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2639 | |
| 2640 | retry_private: |
| 2641 | *hb = queue_lock(q); |
| 2642 | |
| 2643 | ret = get_futex_value_locked(&uval, uaddr); |
| 2644 | |
| 2645 | if (ret) { |
Jason Low | 0d00c7b | 2014-01-12 15:31:22 -0800 | [diff] [blame] | 2646 | queue_unlock(*hb); |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2647 | |
| 2648 | ret = get_user(uval, uaddr); |
| 2649 | if (ret) |
André Almeida | d7c5ed7 | 2020-07-02 17:28:41 -0300 | [diff] [blame] | 2650 | return ret; |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2651 | |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 2652 | if (!(flags & FLAGS_SHARED)) |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2653 | goto retry_private; |
| 2654 | |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2655 | goto retry; |
| 2656 | } |
| 2657 | |
| 2658 | if (uval != val) { |
Jason Low | 0d00c7b | 2014-01-12 15:31:22 -0800 | [diff] [blame] | 2659 | queue_unlock(*hb); |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2660 | ret = -EWOULDBLOCK; |
| 2661 | } |
| 2662 | |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2663 | return ret; |
| 2664 | } |
| 2665 | |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 2666 | static int futex_wait(u32 __user *uaddr, unsigned int flags, u32 val, |
| 2667 | ktime_t *abs_time, u32 bitset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2668 | { |
Waiman Long | 5ca584d | 2019-05-28 12:03:45 -0400 | [diff] [blame] | 2669 | struct hrtimer_sleeper timeout, *to; |
Peter Zijlstra | 2fff78c | 2009-02-11 18:10:10 +0100 | [diff] [blame] | 2670 | struct restart_block *restart; |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 2671 | struct futex_hash_bucket *hb; |
Darren Hart | 5bdb05f | 2010-11-08 13:40:28 -0800 | [diff] [blame] | 2672 | struct futex_q q = futex_q_init; |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 2673 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2674 | |
Thomas Gleixner | cd68998 | 2008-02-01 17:45:14 +0100 | [diff] [blame] | 2675 | if (!bitset) |
| 2676 | return -EINVAL; |
Thomas Gleixner | cd68998 | 2008-02-01 17:45:14 +0100 | [diff] [blame] | 2677 | q.bitset = bitset; |
Darren Hart | ca5f952 | 2009-04-03 13:39:33 -0700 | [diff] [blame] | 2678 | |
Waiman Long | 5ca584d | 2019-05-28 12:03:45 -0400 | [diff] [blame] | 2679 | to = futex_setup_timer(abs_time, &timeout, flags, |
| 2680 | current->timer_slack_ns); |
Thomas Gleixner | d58e657 | 2009-10-13 20:40:43 +0200 | [diff] [blame] | 2681 | retry: |
Darren Hart | 7ada876 | 2010-10-17 08:35:04 -0700 | [diff] [blame] | 2682 | /* |
| 2683 | * Prepare to wait on uaddr. On success, holds hb lock and increments |
| 2684 | * q.key refs. |
| 2685 | */ |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 2686 | ret = futex_wait_setup(uaddr, val, flags, &q, &hb); |
Darren Hart | f801073 | 2009-04-03 13:40:40 -0700 | [diff] [blame] | 2687 | if (ret) |
Darren Hart | 42d35d4 | 2008-12-29 15:49:53 -0800 | [diff] [blame] | 2688 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2689 | |
Darren Hart | ca5f952 | 2009-04-03 13:39:33 -0700 | [diff] [blame] | 2690 | /* queue_me and wait for wakeup, timeout, or a signal. */ |
Thomas Gleixner | f1a11e0 | 2009-05-05 19:21:40 +0200 | [diff] [blame] | 2691 | futex_wait_queue_me(hb, &q, to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2692 | |
| 2693 | /* If we were woken (and unqueued), we succeeded, whatever. */ |
Peter Zijlstra | 2fff78c | 2009-02-11 18:10:10 +0100 | [diff] [blame] | 2694 | ret = 0; |
Darren Hart | 7ada876 | 2010-10-17 08:35:04 -0700 | [diff] [blame] | 2695 | /* unqueue_me() drops q.key ref */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2696 | if (!unqueue_me(&q)) |
Darren Hart | 7ada876 | 2010-10-17 08:35:04 -0700 | [diff] [blame] | 2697 | goto out; |
Peter Zijlstra | 2fff78c | 2009-02-11 18:10:10 +0100 | [diff] [blame] | 2698 | ret = -ETIMEDOUT; |
Darren Hart | ca5f952 | 2009-04-03 13:39:33 -0700 | [diff] [blame] | 2699 | if (to && !to->task) |
Darren Hart | 7ada876 | 2010-10-17 08:35:04 -0700 | [diff] [blame] | 2700 | goto out; |
Nick Piggin | 72c1bbf | 2007-05-08 00:26:43 -0700 | [diff] [blame] | 2701 | |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 2702 | /* |
Thomas Gleixner | d58e657 | 2009-10-13 20:40:43 +0200 | [diff] [blame] | 2703 | * We expect signal_pending(current), but we might be the |
| 2704 | * victim of a spurious wakeup as well. |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 2705 | */ |
Darren Hart | 7ada876 | 2010-10-17 08:35:04 -0700 | [diff] [blame] | 2706 | if (!signal_pending(current)) |
Thomas Gleixner | d58e657 | 2009-10-13 20:40:43 +0200 | [diff] [blame] | 2707 | goto retry; |
Thomas Gleixner | d58e657 | 2009-10-13 20:40:43 +0200 | [diff] [blame] | 2708 | |
Peter Zijlstra | 2fff78c | 2009-02-11 18:10:10 +0100 | [diff] [blame] | 2709 | ret = -ERESTARTSYS; |
Pierre Peiffer | c19384b | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 2710 | if (!abs_time) |
Darren Hart | 7ada876 | 2010-10-17 08:35:04 -0700 | [diff] [blame] | 2711 | goto out; |
Steven Rostedt | ce6bd42 | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 2712 | |
Andy Lutomirski | f56141e | 2015-02-12 15:01:14 -0800 | [diff] [blame] | 2713 | restart = ¤t->restart_block; |
Peter Zijlstra | 2fff78c | 2009-02-11 18:10:10 +0100 | [diff] [blame] | 2714 | restart->fn = futex_wait_restart; |
Namhyung Kim | a3c74c5 | 2010-09-14 21:43:47 +0900 | [diff] [blame] | 2715 | restart->futex.uaddr = uaddr; |
Peter Zijlstra | 2fff78c | 2009-02-11 18:10:10 +0100 | [diff] [blame] | 2716 | restart->futex.val = val; |
Thomas Gleixner | 2456e85 | 2016-12-25 11:38:40 +0100 | [diff] [blame] | 2717 | restart->futex.time = *abs_time; |
Peter Zijlstra | 2fff78c | 2009-02-11 18:10:10 +0100 | [diff] [blame] | 2718 | restart->futex.bitset = bitset; |
Darren Hart | 0cd9c64 | 2011-04-14 15:41:57 -0700 | [diff] [blame] | 2719 | restart->futex.flags = flags | FLAGS_HAS_TIMEOUT; |
Peter Zijlstra | 2fff78c | 2009-02-11 18:10:10 +0100 | [diff] [blame] | 2720 | |
| 2721 | ret = -ERESTART_RESTARTBLOCK; |
| 2722 | |
Darren Hart | 42d35d4 | 2008-12-29 15:49:53 -0800 | [diff] [blame] | 2723 | out: |
Darren Hart | ca5f952 | 2009-04-03 13:39:33 -0700 | [diff] [blame] | 2724 | if (to) { |
| 2725 | hrtimer_cancel(&to->timer); |
| 2726 | destroy_hrtimer_on_stack(&to->timer); |
| 2727 | } |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2728 | return ret; |
| 2729 | } |
| 2730 | |
Nick Piggin | 72c1bbf | 2007-05-08 00:26:43 -0700 | [diff] [blame] | 2731 | |
| 2732 | static long futex_wait_restart(struct restart_block *restart) |
| 2733 | { |
Namhyung Kim | a3c74c5 | 2010-09-14 21:43:47 +0900 | [diff] [blame] | 2734 | u32 __user *uaddr = restart->futex.uaddr; |
Darren Hart | a72188d | 2009-04-03 13:40:22 -0700 | [diff] [blame] | 2735 | ktime_t t, *tp = NULL; |
Nick Piggin | 72c1bbf | 2007-05-08 00:26:43 -0700 | [diff] [blame] | 2736 | |
Darren Hart | a72188d | 2009-04-03 13:40:22 -0700 | [diff] [blame] | 2737 | if (restart->futex.flags & FLAGS_HAS_TIMEOUT) { |
Thomas Gleixner | 2456e85 | 2016-12-25 11:38:40 +0100 | [diff] [blame] | 2738 | t = restart->futex.time; |
Darren Hart | a72188d | 2009-04-03 13:40:22 -0700 | [diff] [blame] | 2739 | tp = &t; |
| 2740 | } |
Nick Piggin | 72c1bbf | 2007-05-08 00:26:43 -0700 | [diff] [blame] | 2741 | restart->fn = do_no_restart_syscall; |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 2742 | |
| 2743 | return (long)futex_wait(uaddr, restart->futex.flags, |
| 2744 | restart->futex.val, tp, restart->futex.bitset); |
Nick Piggin | 72c1bbf | 2007-05-08 00:26:43 -0700 | [diff] [blame] | 2745 | } |
| 2746 | |
| 2747 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2748 | /* |
| 2749 | * Userspace tried a 0 -> TID atomic transition of the futex value |
| 2750 | * and failed. The kernel side here does the whole locking operation: |
Davidlohr Bueso | 767f509 | 2015-06-29 23:26:01 -0700 | [diff] [blame] | 2751 | * if there are waiters then it will block as a consequence of relying |
| 2752 | * on rt-mutexes, it does PI, etc. (Due to races the kernel might see |
| 2753 | * a 0 value of the futex too.). |
| 2754 | * |
| 2755 | * Also serves as futex trylock_pi()'ing, and due semantics. |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2756 | */ |
Michael Kerrisk | 996636d | 2015-01-16 20:28:06 +0100 | [diff] [blame] | 2757 | static int futex_lock_pi(u32 __user *uaddr, unsigned int flags, |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 2758 | ktime_t *time, int trylock) |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2759 | { |
Waiman Long | 5ca584d | 2019-05-28 12:03:45 -0400 | [diff] [blame] | 2760 | struct hrtimer_sleeper timeout, *to; |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 2761 | struct futex_pi_state *pi_state = NULL; |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 2762 | struct task_struct *exiting = NULL; |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2763 | struct rt_mutex_waiter rt_waiter; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2764 | struct futex_hash_bucket *hb; |
Darren Hart | 5bdb05f | 2010-11-08 13:40:28 -0800 | [diff] [blame] | 2765 | struct futex_q q = futex_q_init; |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2766 | int res, ret; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2767 | |
Nicolas Pitre | bc2eecd | 2017-08-01 00:31:32 -0400 | [diff] [blame] | 2768 | if (!IS_ENABLED(CONFIG_FUTEX_PI)) |
| 2769 | return -ENOSYS; |
| 2770 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2771 | if (refill_pi_state_cache()) |
| 2772 | return -ENOMEM; |
| 2773 | |
Waiman Long | 5ca584d | 2019-05-28 12:03:45 -0400 | [diff] [blame] | 2774 | to = futex_setup_timer(time, &timeout, FLAGS_CLOCKRT, 0); |
Thomas Gleixner | c5780e9 | 2006-09-08 09:47:15 -0700 | [diff] [blame] | 2775 | |
Darren Hart | 42d35d4 | 2008-12-29 15:49:53 -0800 | [diff] [blame] | 2776 | retry: |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 2777 | ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q.key, FUTEX_WRITE); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2778 | if (unlikely(ret != 0)) |
Darren Hart | 42d35d4 | 2008-12-29 15:49:53 -0800 | [diff] [blame] | 2779 | goto out; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2780 | |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 2781 | retry_private: |
Eric Sesterhenn | 82af7ac | 2008-01-25 10:40:46 +0100 | [diff] [blame] | 2782 | hb = queue_lock(&q); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2783 | |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 2784 | ret = futex_lock_pi_atomic(uaddr, hb, &q.key, &q.pi_state, current, |
| 2785 | &exiting, 0); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2786 | if (unlikely(ret)) { |
Davidlohr Bueso | 767f509 | 2015-06-29 23:26:01 -0700 | [diff] [blame] | 2787 | /* |
| 2788 | * Atomic work succeeded and we got the lock, |
| 2789 | * or failed. Either way, we do _not_ block. |
| 2790 | */ |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 2791 | switch (ret) { |
Darren Hart | 1a52084 | 2009-04-03 13:39:52 -0700 | [diff] [blame] | 2792 | case 1: |
| 2793 | /* We got the lock. */ |
| 2794 | ret = 0; |
| 2795 | goto out_unlock_put_key; |
| 2796 | case -EFAULT: |
| 2797 | goto uaddr_faulted; |
Thomas Gleixner | ac31c7f | 2019-11-06 22:55:45 +0100 | [diff] [blame] | 2798 | case -EBUSY: |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 2799 | case -EAGAIN: |
| 2800 | /* |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 2801 | * Two reasons for this: |
Thomas Gleixner | ac31c7f | 2019-11-06 22:55:45 +0100 | [diff] [blame] | 2802 | * - EBUSY: Task is exiting and we just wait for the |
Thomas Gleixner | af54d6a | 2014-06-11 20:45:41 +0000 | [diff] [blame] | 2803 | * exit to complete. |
Thomas Gleixner | ac31c7f | 2019-11-06 22:55:45 +0100 | [diff] [blame] | 2804 | * - EAGAIN: The user space value changed. |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 2805 | */ |
Jason Low | 0d00c7b | 2014-01-12 15:31:22 -0800 | [diff] [blame] | 2806 | queue_unlock(hb); |
Thomas Gleixner | 3ef240e | 2019-11-06 22:55:46 +0100 | [diff] [blame] | 2807 | /* |
| 2808 | * Handle the case where the owner is in the middle of |
| 2809 | * exiting. Wait for the exit to complete otherwise |
| 2810 | * this task might loop forever, aka. live lock. |
| 2811 | */ |
| 2812 | wait_for_owner_exiting(ret, exiting); |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 2813 | cond_resched(); |
| 2814 | goto retry; |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 2815 | default: |
Darren Hart | 42d35d4 | 2008-12-29 15:49:53 -0800 | [diff] [blame] | 2816 | goto out_unlock_put_key; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2817 | } |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2818 | } |
| 2819 | |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2820 | WARN_ON(!q.pi_state); |
| 2821 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2822 | /* |
| 2823 | * Only actually queue now that the atomic ops are done: |
| 2824 | */ |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2825 | __queue_me(&q, hb); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2826 | |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2827 | if (trylock) { |
Peter Zijlstra | 5293c2e | 2017-03-22 11:35:51 +0100 | [diff] [blame] | 2828 | ret = rt_mutex_futex_trylock(&q.pi_state->pi_mutex); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2829 | /* Fixup the trylock return value: */ |
| 2830 | ret = ret ? 0 : -EWOULDBLOCK; |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2831 | goto no_block; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2832 | } |
| 2833 | |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2834 | rt_mutex_init_waiter(&rt_waiter); |
Peter Zijlstra | 56222b2 | 2017-03-22 11:36:00 +0100 | [diff] [blame] | 2835 | |
| 2836 | /* |
| 2837 | * On PREEMPT_RT_FULL, when hb->lock becomes an rt_mutex, we must not |
| 2838 | * hold it while doing rt_mutex_start_proxy(), because then it will |
| 2839 | * include hb->lock in the blocking chain, even through we'll not in |
| 2840 | * fact hold it while blocking. This will lead it to report -EDEADLK |
| 2841 | * and BUG when futex_unlock_pi() interleaves with this. |
| 2842 | * |
| 2843 | * Therefore acquire wait_lock while holding hb->lock, but drop the |
Thomas Gleixner | 1a1fb98 | 2019-01-29 23:15:12 +0100 | [diff] [blame] | 2844 | * latter before calling __rt_mutex_start_proxy_lock(). This |
| 2845 | * interleaves with futex_unlock_pi() -- which does a similar lock |
| 2846 | * handoff -- such that the latter can observe the futex_q::pi_state |
| 2847 | * before __rt_mutex_start_proxy_lock() is done. |
Peter Zijlstra | 56222b2 | 2017-03-22 11:36:00 +0100 | [diff] [blame] | 2848 | */ |
| 2849 | raw_spin_lock_irq(&q.pi_state->pi_mutex.wait_lock); |
| 2850 | spin_unlock(q.lock_ptr); |
Thomas Gleixner | 1a1fb98 | 2019-01-29 23:15:12 +0100 | [diff] [blame] | 2851 | /* |
| 2852 | * __rt_mutex_start_proxy_lock() unconditionally enqueues the @rt_waiter |
| 2853 | * such that futex_unlock_pi() is guaranteed to observe the waiter when |
| 2854 | * it sees the futex_q::pi_state. |
| 2855 | */ |
Peter Zijlstra | 56222b2 | 2017-03-22 11:36:00 +0100 | [diff] [blame] | 2856 | ret = __rt_mutex_start_proxy_lock(&q.pi_state->pi_mutex, &rt_waiter, current); |
| 2857 | raw_spin_unlock_irq(&q.pi_state->pi_mutex.wait_lock); |
| 2858 | |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2859 | if (ret) { |
| 2860 | if (ret == 1) |
| 2861 | ret = 0; |
Thomas Gleixner | 1a1fb98 | 2019-01-29 23:15:12 +0100 | [diff] [blame] | 2862 | goto cleanup; |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2863 | } |
| 2864 | |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2865 | if (unlikely(to)) |
Thomas Gleixner | 9dd8813 | 2019-07-30 21:16:55 +0200 | [diff] [blame] | 2866 | hrtimer_sleeper_start_expires(to, HRTIMER_MODE_ABS); |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2867 | |
| 2868 | ret = rt_mutex_wait_proxy_lock(&q.pi_state->pi_mutex, to, &rt_waiter); |
| 2869 | |
Thomas Gleixner | 1a1fb98 | 2019-01-29 23:15:12 +0100 | [diff] [blame] | 2870 | cleanup: |
Vernon Mauery | a99e4e4 | 2006-07-01 04:35:42 -0700 | [diff] [blame] | 2871 | spin_lock(q.lock_ptr); |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2872 | /* |
Thomas Gleixner | 1a1fb98 | 2019-01-29 23:15:12 +0100 | [diff] [blame] | 2873 | * If we failed to acquire the lock (deadlock/signal/timeout), we must |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2874 | * first acquire the hb->lock before removing the lock from the |
Thomas Gleixner | 1a1fb98 | 2019-01-29 23:15:12 +0100 | [diff] [blame] | 2875 | * rt_mutex waitqueue, such that we can keep the hb and rt_mutex wait |
| 2876 | * lists consistent. |
Peter Zijlstra | 56222b2 | 2017-03-22 11:36:00 +0100 | [diff] [blame] | 2877 | * |
| 2878 | * In particular; it is important that futex_unlock_pi() can not |
| 2879 | * observe this inconsistency. |
Peter Zijlstra | cfafcd1 | 2017-03-22 11:35:58 +0100 | [diff] [blame] | 2880 | */ |
| 2881 | if (ret && !rt_mutex_cleanup_proxy_lock(&q.pi_state->pi_mutex, &rt_waiter)) |
| 2882 | ret = 0; |
| 2883 | |
| 2884 | no_block: |
| 2885 | /* |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2886 | * Fixup the pi_state owner and possibly acquire the lock if we |
| 2887 | * haven't already. |
| 2888 | */ |
Thomas Gleixner | ae791a2 | 2010-11-10 13:30:36 +0100 | [diff] [blame] | 2889 | res = fixup_owner(uaddr, &q, !ret); |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2890 | /* |
| 2891 | * If fixup_owner() returned an error, proprogate that. If it acquired |
| 2892 | * the lock, clear our -ETIMEDOUT or -EINTR. |
| 2893 | */ |
| 2894 | if (res) |
| 2895 | ret = (res < 0) ? res : 0; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2896 | |
Darren Hart | e8f6386 | 2009-03-12 00:56:06 -0700 | [diff] [blame] | 2897 | /* |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2898 | * If fixup_owner() faulted and was unable to handle the fault, unlock |
| 2899 | * it and return the fault to userspace. |
Darren Hart | e8f6386 | 2009-03-12 00:56:06 -0700 | [diff] [blame] | 2900 | */ |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 2901 | if (ret && (rt_mutex_owner(&q.pi_state->pi_mutex) == current)) { |
| 2902 | pi_state = q.pi_state; |
| 2903 | get_pi_state(pi_state); |
| 2904 | } |
Darren Hart | e8f6386 | 2009-03-12 00:56:06 -0700 | [diff] [blame] | 2905 | |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 2906 | /* Unqueue and drop the lock */ |
| 2907 | unqueue_me_pi(&q); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2908 | |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 2909 | if (pi_state) { |
| 2910 | rt_mutex_futex_unlock(&pi_state->pi_mutex); |
| 2911 | put_pi_state(pi_state); |
| 2912 | } |
| 2913 | |
André Almeida | 9180bd4 | 2020-07-02 17:28:40 -0300 | [diff] [blame] | 2914 | goto out; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2915 | |
Darren Hart | 42d35d4 | 2008-12-29 15:49:53 -0800 | [diff] [blame] | 2916 | out_unlock_put_key: |
Jason Low | 0d00c7b | 2014-01-12 15:31:22 -0800 | [diff] [blame] | 2917 | queue_unlock(hb); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2918 | |
Darren Hart | 42d35d4 | 2008-12-29 15:49:53 -0800 | [diff] [blame] | 2919 | out: |
Thomas Gleixner | 97181f9 | 2017-04-10 18:03:36 +0200 | [diff] [blame] | 2920 | if (to) { |
| 2921 | hrtimer_cancel(&to->timer); |
Thomas Gleixner | 237fc6e | 2008-04-30 00:55:04 -0700 | [diff] [blame] | 2922 | destroy_hrtimer_on_stack(&to->timer); |
Thomas Gleixner | 97181f9 | 2017-04-10 18:03:36 +0200 | [diff] [blame] | 2923 | } |
Darren Hart | dd97399 | 2009-04-03 13:40:02 -0700 | [diff] [blame] | 2924 | return ret != -EINTR ? ret : -ERESTARTNOINTR; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2925 | |
Darren Hart | 42d35d4 | 2008-12-29 15:49:53 -0800 | [diff] [blame] | 2926 | uaddr_faulted: |
Jason Low | 0d00c7b | 2014-01-12 15:31:22 -0800 | [diff] [blame] | 2927 | queue_unlock(hb); |
Alexey Kuznetsov | 778e9a9 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 2928 | |
Thomas Gleixner | d072599 | 2009-06-11 23:15:43 +0200 | [diff] [blame] | 2929 | ret = fault_in_user_writeable(uaddr); |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 2930 | if (ret) |
André Almeida | 9180bd4 | 2020-07-02 17:28:40 -0300 | [diff] [blame] | 2931 | goto out; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2932 | |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 2933 | if (!(flags & FLAGS_SHARED)) |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 2934 | goto retry_private; |
| 2935 | |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 2936 | goto retry; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2937 | } |
| 2938 | |
| 2939 | /* |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2940 | * Userspace attempted a TID -> 0 atomic transition, and failed. |
| 2941 | * This is the in-kernel slowpath: we look up the PI state (if any), |
| 2942 | * and do the rt-mutex unlock. |
| 2943 | */ |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 2944 | static int futex_unlock_pi(u32 __user *uaddr, unsigned int flags) |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2945 | { |
Kees Cook | 3f649ab | 2020-06-03 13:09:38 -0700 | [diff] [blame] | 2946 | u32 curval, uval, vpid = task_pid_vnr(current); |
Peter Zijlstra | 38d47c1 | 2008-09-26 19:32:20 +0200 | [diff] [blame] | 2947 | union futex_key key = FUTEX_KEY_INIT; |
Thomas Gleixner | ccf9e6a | 2014-06-11 20:45:38 +0000 | [diff] [blame] | 2948 | struct futex_hash_bucket *hb; |
Peter Zijlstra | 499f5ac | 2017-03-22 11:35:48 +0100 | [diff] [blame] | 2949 | struct futex_q *top_waiter; |
Darren Hart | e4dc5b7 | 2009-03-12 00:56:13 -0700 | [diff] [blame] | 2950 | int ret; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2951 | |
Nicolas Pitre | bc2eecd | 2017-08-01 00:31:32 -0400 | [diff] [blame] | 2952 | if (!IS_ENABLED(CONFIG_FUTEX_PI)) |
| 2953 | return -ENOSYS; |
| 2954 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2955 | retry: |
| 2956 | if (get_user(uval, uaddr)) |
| 2957 | return -EFAULT; |
| 2958 | /* |
| 2959 | * We release only a lock we actually own: |
| 2960 | */ |
Thomas Gleixner | c0c9ed1 | 2011-03-11 11:51:22 +0100 | [diff] [blame] | 2961 | if ((uval & FUTEX_TID_MASK) != vpid) |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2962 | return -EPERM; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2963 | |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 2964 | ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, FUTEX_WRITE); |
Thomas Gleixner | ccf9e6a | 2014-06-11 20:45:38 +0000 | [diff] [blame] | 2965 | if (ret) |
| 2966 | return ret; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2967 | |
| 2968 | hb = hash_futex(&key); |
| 2969 | spin_lock(&hb->lock); |
| 2970 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2971 | /* |
Thomas Gleixner | ccf9e6a | 2014-06-11 20:45:38 +0000 | [diff] [blame] | 2972 | * Check waiters first. We do not trust user space values at |
| 2973 | * all and we at least want to know if user space fiddled |
| 2974 | * with the futex value instead of blindly unlocking. |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 2975 | */ |
Peter Zijlstra | 499f5ac | 2017-03-22 11:35:48 +0100 | [diff] [blame] | 2976 | top_waiter = futex_top_waiter(hb, &key); |
| 2977 | if (top_waiter) { |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 2978 | struct futex_pi_state *pi_state = top_waiter->pi_state; |
| 2979 | |
| 2980 | ret = -EINVAL; |
| 2981 | if (!pi_state) |
| 2982 | goto out_unlock; |
| 2983 | |
Sebastian Andrzej Siewior | 802ab58 | 2015-06-17 10:33:50 +0200 | [diff] [blame] | 2984 | /* |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 2985 | * If current does not own the pi_state then the futex is |
| 2986 | * inconsistent and user space fiddled with the futex value. |
| 2987 | */ |
| 2988 | if (pi_state->owner != current) |
| 2989 | goto out_unlock; |
| 2990 | |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 2991 | get_pi_state(pi_state); |
Peter Zijlstra | bebe5b5 | 2017-03-22 11:35:59 +0100 | [diff] [blame] | 2992 | /* |
Peter Zijlstra | bebe5b5 | 2017-03-22 11:35:59 +0100 | [diff] [blame] | 2993 | * By taking wait_lock while still holding hb->lock, we ensure |
| 2994 | * there is no point where we hold neither; and therefore |
| 2995 | * wake_futex_pi() must observe a state consistent with what we |
| 2996 | * observed. |
Thomas Gleixner | 1a1fb98 | 2019-01-29 23:15:12 +0100 | [diff] [blame] | 2997 | * |
| 2998 | * In particular; this forces __rt_mutex_start_proxy() to |
| 2999 | * complete such that we're guaranteed to observe the |
| 3000 | * rt_waiter. Also see the WARN in wake_futex_pi(). |
Peter Zijlstra | bebe5b5 | 2017-03-22 11:35:59 +0100 | [diff] [blame] | 3001 | */ |
| 3002 | raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock); |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 3003 | spin_unlock(&hb->lock); |
| 3004 | |
Peter Zijlstra | c74aef2 | 2017-09-22 17:48:06 +0200 | [diff] [blame] | 3005 | /* drops pi_state->pi_mutex.wait_lock */ |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 3006 | ret = wake_futex_pi(uaddr, uval, pi_state); |
| 3007 | |
| 3008 | put_pi_state(pi_state); |
| 3009 | |
| 3010 | /* |
| 3011 | * Success, we're done! No tricky corner cases. |
Sebastian Andrzej Siewior | 802ab58 | 2015-06-17 10:33:50 +0200 | [diff] [blame] | 3012 | */ |
| 3013 | if (!ret) |
| 3014 | goto out_putkey; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3015 | /* |
Thomas Gleixner | ccf9e6a | 2014-06-11 20:45:38 +0000 | [diff] [blame] | 3016 | * The atomic access to the futex value generated a |
| 3017 | * pagefault, so retry the user-access and the wakeup: |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3018 | */ |
| 3019 | if (ret == -EFAULT) |
| 3020 | goto pi_faulted; |
Sebastian Andrzej Siewior | 802ab58 | 2015-06-17 10:33:50 +0200 | [diff] [blame] | 3021 | /* |
Sebastian Andrzej Siewior | 89e9e66 | 2016-04-15 14:35:39 +0200 | [diff] [blame] | 3022 | * A unconditional UNLOCK_PI op raced against a waiter |
| 3023 | * setting the FUTEX_WAITERS bit. Try again. |
| 3024 | */ |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 3025 | if (ret == -EAGAIN) |
| 3026 | goto pi_retry; |
Sebastian Andrzej Siewior | 89e9e66 | 2016-04-15 14:35:39 +0200 | [diff] [blame] | 3027 | /* |
Sebastian Andrzej Siewior | 802ab58 | 2015-06-17 10:33:50 +0200 | [diff] [blame] | 3028 | * wake_futex_pi has detected invalid state. Tell user |
| 3029 | * space. |
| 3030 | */ |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 3031 | goto out_putkey; |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3032 | } |
Thomas Gleixner | ccf9e6a | 2014-06-11 20:45:38 +0000 | [diff] [blame] | 3033 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3034 | /* |
Thomas Gleixner | ccf9e6a | 2014-06-11 20:45:38 +0000 | [diff] [blame] | 3035 | * We have no kernel internal state, i.e. no waiters in the |
| 3036 | * kernel. Waiters which are about to queue themselves are stuck |
| 3037 | * on hb->lock. So we can safely ignore them. We do neither |
| 3038 | * preserve the WAITERS bit not the OWNER_DIED one. We are the |
| 3039 | * owner. |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3040 | */ |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 3041 | if ((ret = cmpxchg_futex_value_locked(&curval, uaddr, uval, 0))) { |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 3042 | spin_unlock(&hb->lock); |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 3043 | switch (ret) { |
| 3044 | case -EFAULT: |
| 3045 | goto pi_faulted; |
| 3046 | |
| 3047 | case -EAGAIN: |
| 3048 | goto pi_retry; |
| 3049 | |
| 3050 | default: |
| 3051 | WARN_ON_ONCE(1); |
| 3052 | goto out_putkey; |
| 3053 | } |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 3054 | } |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3055 | |
Thomas Gleixner | ccf9e6a | 2014-06-11 20:45:38 +0000 | [diff] [blame] | 3056 | /* |
| 3057 | * If uval has changed, let user space handle it. |
| 3058 | */ |
| 3059 | ret = (curval == uval) ? 0 : -EAGAIN; |
| 3060 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3061 | out_unlock: |
| 3062 | spin_unlock(&hb->lock); |
Sebastian Andrzej Siewior | 802ab58 | 2015-06-17 10:33:50 +0200 | [diff] [blame] | 3063 | out_putkey: |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3064 | return ret; |
| 3065 | |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 3066 | pi_retry: |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 3067 | cond_resched(); |
| 3068 | goto retry; |
| 3069 | |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3070 | pi_faulted: |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3071 | |
Thomas Gleixner | d072599 | 2009-06-11 23:15:43 +0200 | [diff] [blame] | 3072 | ret = fault_in_user_writeable(uaddr); |
Darren Hart | b568636 | 2008-12-18 15:06:34 -0800 | [diff] [blame] | 3073 | if (!ret) |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3074 | goto retry; |
| 3075 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3076 | return ret; |
| 3077 | } |
| 3078 | |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3079 | /** |
| 3080 | * handle_early_requeue_pi_wakeup() - Detect early wakeup on the initial futex |
| 3081 | * @hb: the hash_bucket futex_q was original enqueued on |
| 3082 | * @q: the futex_q woken while waiting to be requeued |
| 3083 | * @key2: the futex_key of the requeue target futex |
| 3084 | * @timeout: the timeout associated with the wait (NULL if none) |
| 3085 | * |
| 3086 | * Detect if the task was woken on the initial futex as opposed to the requeue |
| 3087 | * target futex. If so, determine if it was a timeout or a signal that caused |
| 3088 | * the wakeup and return the appropriate error code to the caller. Must be |
| 3089 | * called with the hb lock held. |
| 3090 | * |
Randy Dunlap | 6c23cbb | 2013-03-05 10:00:24 -0800 | [diff] [blame] | 3091 | * Return: |
Mauro Carvalho Chehab | 7b4ff1a | 2017-05-11 10:17:45 -0300 | [diff] [blame] | 3092 | * - 0 = no early wakeup detected; |
| 3093 | * - <0 = -ETIMEDOUT or -ERESTARTNOINTR |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3094 | */ |
| 3095 | static inline |
| 3096 | int handle_early_requeue_pi_wakeup(struct futex_hash_bucket *hb, |
| 3097 | struct futex_q *q, union futex_key *key2, |
| 3098 | struct hrtimer_sleeper *timeout) |
| 3099 | { |
| 3100 | int ret = 0; |
| 3101 | |
| 3102 | /* |
| 3103 | * With the hb lock held, we avoid races while we process the wakeup. |
| 3104 | * We only need to hold hb (and not hb2) to ensure atomicity as the |
| 3105 | * wakeup code can't change q.key from uaddr to uaddr2 if we hold hb. |
| 3106 | * It can't be requeued from uaddr2 to something else since we don't |
| 3107 | * support a PI aware source futex for requeue. |
| 3108 | */ |
| 3109 | if (!match_futex(&q->key, key2)) { |
| 3110 | WARN_ON(q->lock_ptr && (&hb->lock != q->lock_ptr)); |
| 3111 | /* |
| 3112 | * We were woken prior to requeue by a timeout or a signal. |
| 3113 | * Unqueue the futex_q and determine which it was. |
| 3114 | */ |
Lai Jiangshan | 2e12978 | 2010-12-22 14:18:50 +0800 | [diff] [blame] | 3115 | plist_del(&q->list, &hb->chain); |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 3116 | hb_waiters_dec(hb); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3117 | |
Thomas Gleixner | d58e657 | 2009-10-13 20:40:43 +0200 | [diff] [blame] | 3118 | /* Handle spurious wakeups gracefully */ |
Thomas Gleixner | 11df6dd | 2009-10-28 20:26:48 +0100 | [diff] [blame] | 3119 | ret = -EWOULDBLOCK; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3120 | if (timeout && !timeout->task) |
| 3121 | ret = -ETIMEDOUT; |
Thomas Gleixner | d58e657 | 2009-10-13 20:40:43 +0200 | [diff] [blame] | 3122 | else if (signal_pending(current)) |
Thomas Gleixner | 1c840c1 | 2009-05-20 09:22:40 +0200 | [diff] [blame] | 3123 | ret = -ERESTARTNOINTR; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3124 | } |
| 3125 | return ret; |
| 3126 | } |
| 3127 | |
| 3128 | /** |
| 3129 | * futex_wait_requeue_pi() - Wait on uaddr and take uaddr2 |
Darren Hart | 56ec160 | 2009-09-21 22:29:59 -0700 | [diff] [blame] | 3130 | * @uaddr: the futex we initially wait on (non-pi) |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 3131 | * @flags: futex flags (FLAGS_SHARED, FLAGS_CLOCKRT, etc.), they must be |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 3132 | * the same type, no requeueing from private to shared, etc. |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3133 | * @val: the expected value of uaddr |
| 3134 | * @abs_time: absolute timeout |
Darren Hart | 56ec160 | 2009-09-21 22:29:59 -0700 | [diff] [blame] | 3135 | * @bitset: 32 bit wakeup bitset set by userspace, defaults to all |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3136 | * @uaddr2: the pi futex we will take prior to returning to user-space |
| 3137 | * |
| 3138 | * The caller will wait on uaddr and will be requeued by futex_requeue() to |
Darren Hart | 6f7b0a2 | 2012-07-20 11:53:31 -0700 | [diff] [blame] | 3139 | * uaddr2 which must be PI aware and unique from uaddr. Normal wakeup will wake |
| 3140 | * on uaddr2 and complete the acquisition of the rt_mutex prior to returning to |
| 3141 | * userspace. This ensures the rt_mutex maintains an owner when it has waiters; |
| 3142 | * without one, the pi logic would not know which task to boost/deboost, if |
| 3143 | * there was a need to. |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3144 | * |
| 3145 | * We call schedule in futex_wait_queue_me() when we enqueue and return there |
Randy Dunlap | 6c23cbb | 2013-03-05 10:00:24 -0800 | [diff] [blame] | 3146 | * via the following-- |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3147 | * 1) wakeup on uaddr2 after an atomic lock acquisition by futex_requeue() |
Darren Hart | cc6db4e | 2009-07-31 16:20:10 -0700 | [diff] [blame] | 3148 | * 2) wakeup on uaddr2 after a requeue |
| 3149 | * 3) signal |
| 3150 | * 4) timeout |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3151 | * |
Darren Hart | cc6db4e | 2009-07-31 16:20:10 -0700 | [diff] [blame] | 3152 | * If 3, cleanup and return -ERESTARTNOINTR. |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3153 | * |
| 3154 | * If 2, we may then block on trying to take the rt_mutex and return via: |
| 3155 | * 5) successful lock |
| 3156 | * 6) signal |
| 3157 | * 7) timeout |
| 3158 | * 8) other lock acquisition failure |
| 3159 | * |
Darren Hart | cc6db4e | 2009-07-31 16:20:10 -0700 | [diff] [blame] | 3160 | * If 6, return -EWOULDBLOCK (restarting the syscall would do the same). |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3161 | * |
| 3162 | * If 4 or 7, we cleanup and return with -ETIMEDOUT. |
| 3163 | * |
Randy Dunlap | 6c23cbb | 2013-03-05 10:00:24 -0800 | [diff] [blame] | 3164 | * Return: |
Mauro Carvalho Chehab | 7b4ff1a | 2017-05-11 10:17:45 -0300 | [diff] [blame] | 3165 | * - 0 - On success; |
| 3166 | * - <0 - On error |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3167 | */ |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 3168 | static int futex_wait_requeue_pi(u32 __user *uaddr, unsigned int flags, |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3169 | u32 val, ktime_t *abs_time, u32 bitset, |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 3170 | u32 __user *uaddr2) |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3171 | { |
Waiman Long | 5ca584d | 2019-05-28 12:03:45 -0400 | [diff] [blame] | 3172 | struct hrtimer_sleeper timeout, *to; |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 3173 | struct futex_pi_state *pi_state = NULL; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3174 | struct rt_mutex_waiter rt_waiter; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3175 | struct futex_hash_bucket *hb; |
Darren Hart | 5bdb05f | 2010-11-08 13:40:28 -0800 | [diff] [blame] | 3176 | union futex_key key2 = FUTEX_KEY_INIT; |
| 3177 | struct futex_q q = futex_q_init; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3178 | int res, ret; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3179 | |
Nicolas Pitre | bc2eecd | 2017-08-01 00:31:32 -0400 | [diff] [blame] | 3180 | if (!IS_ENABLED(CONFIG_FUTEX_PI)) |
| 3181 | return -ENOSYS; |
| 3182 | |
Darren Hart | 6f7b0a2 | 2012-07-20 11:53:31 -0700 | [diff] [blame] | 3183 | if (uaddr == uaddr2) |
| 3184 | return -EINVAL; |
| 3185 | |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3186 | if (!bitset) |
| 3187 | return -EINVAL; |
| 3188 | |
Waiman Long | 5ca584d | 2019-05-28 12:03:45 -0400 | [diff] [blame] | 3189 | to = futex_setup_timer(abs_time, &timeout, flags, |
| 3190 | current->timer_slack_ns); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3191 | |
| 3192 | /* |
| 3193 | * The waiter is allocated on our stack, manipulated by the requeue |
| 3194 | * code while we sleep on uaddr. |
| 3195 | */ |
Peter Zijlstra | 5080935 | 2017-03-22 11:35:56 +0100 | [diff] [blame] | 3196 | rt_mutex_init_waiter(&rt_waiter); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3197 | |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 3198 | ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, FUTEX_WRITE); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3199 | if (unlikely(ret != 0)) |
| 3200 | goto out; |
| 3201 | |
Darren Hart | 84bc4af | 2009-08-13 17:36:53 -0700 | [diff] [blame] | 3202 | q.bitset = bitset; |
| 3203 | q.rt_waiter = &rt_waiter; |
| 3204 | q.requeue_pi_key = &key2; |
| 3205 | |
Darren Hart | 7ada876 | 2010-10-17 08:35:04 -0700 | [diff] [blame] | 3206 | /* |
| 3207 | * Prepare to wait on uaddr. On success, increments q.key (key1) ref |
| 3208 | * count. |
| 3209 | */ |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 3210 | ret = futex_wait_setup(uaddr, val, flags, &q, &hb); |
Thomas Gleixner | c8b15a7 | 2009-05-20 09:18:50 +0200 | [diff] [blame] | 3211 | if (ret) |
André Almeida | 9180bd4 | 2020-07-02 17:28:40 -0300 | [diff] [blame] | 3212 | goto out; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3213 | |
Thomas Gleixner | e9c243a | 2014-06-03 12:27:06 +0000 | [diff] [blame] | 3214 | /* |
| 3215 | * The check above which compares uaddrs is not sufficient for |
| 3216 | * shared futexes. We need to compare the keys: |
| 3217 | */ |
| 3218 | if (match_futex(&q.key, &key2)) { |
Thomas Gleixner | 13c42c2 | 2014-09-11 23:44:35 +0200 | [diff] [blame] | 3219 | queue_unlock(hb); |
Thomas Gleixner | e9c243a | 2014-06-03 12:27:06 +0000 | [diff] [blame] | 3220 | ret = -EINVAL; |
André Almeida | 9180bd4 | 2020-07-02 17:28:40 -0300 | [diff] [blame] | 3221 | goto out; |
Thomas Gleixner | e9c243a | 2014-06-03 12:27:06 +0000 | [diff] [blame] | 3222 | } |
| 3223 | |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3224 | /* Queue the futex_q, drop the hb lock, wait for wakeup. */ |
Thomas Gleixner | f1a11e0 | 2009-05-05 19:21:40 +0200 | [diff] [blame] | 3225 | futex_wait_queue_me(hb, &q, to); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3226 | |
| 3227 | spin_lock(&hb->lock); |
| 3228 | ret = handle_early_requeue_pi_wakeup(hb, &q, &key2, to); |
| 3229 | spin_unlock(&hb->lock); |
| 3230 | if (ret) |
André Almeida | 9180bd4 | 2020-07-02 17:28:40 -0300 | [diff] [blame] | 3231 | goto out; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3232 | |
| 3233 | /* |
| 3234 | * In order for us to be here, we know our q.key == key2, and since |
| 3235 | * we took the hb->lock above, we also know that futex_requeue() has |
| 3236 | * completed and we no longer have to concern ourselves with a wakeup |
Darren Hart | 7ada876 | 2010-10-17 08:35:04 -0700 | [diff] [blame] | 3237 | * race with the atomic proxy lock acquisition by the requeue code. The |
| 3238 | * futex_requeue dropped our key1 reference and incremented our key2 |
| 3239 | * reference count. |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3240 | */ |
| 3241 | |
| 3242 | /* Check if the requeue code acquired the second futex for us. */ |
| 3243 | if (!q.rt_waiter) { |
| 3244 | /* |
| 3245 | * Got the lock. We might not be the anticipated owner if we |
| 3246 | * did a lock-steal - fix up the PI-state in that case. |
| 3247 | */ |
| 3248 | if (q.pi_state && (q.pi_state->owner != current)) { |
| 3249 | spin_lock(q.lock_ptr); |
Thomas Gleixner | ae791a2 | 2010-11-10 13:30:36 +0100 | [diff] [blame] | 3250 | ret = fixup_pi_state_owner(uaddr2, &q, current); |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 3251 | if (ret && rt_mutex_owner(&q.pi_state->pi_mutex) == current) { |
| 3252 | pi_state = q.pi_state; |
| 3253 | get_pi_state(pi_state); |
| 3254 | } |
Thomas Gleixner | fb75a42 | 2015-12-19 20:07:38 +0000 | [diff] [blame] | 3255 | /* |
| 3256 | * Drop the reference to the pi state which |
| 3257 | * the requeue_pi() code acquired for us. |
| 3258 | */ |
Thomas Gleixner | 29e9ee5 | 2015-12-19 20:07:39 +0000 | [diff] [blame] | 3259 | put_pi_state(q.pi_state); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3260 | spin_unlock(q.lock_ptr); |
| 3261 | } |
| 3262 | } else { |
Peter Zijlstra | c236c8e | 2017-03-04 10:27:18 +0100 | [diff] [blame] | 3263 | struct rt_mutex *pi_mutex; |
| 3264 | |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3265 | /* |
| 3266 | * We have been woken up by futex_unlock_pi(), a timeout, or a |
| 3267 | * signal. futex_unlock_pi() will not destroy the lock_ptr nor |
| 3268 | * the pi_state. |
| 3269 | */ |
Darren Hart | f27071c | 2012-07-20 11:53:30 -0700 | [diff] [blame] | 3270 | WARN_ON(!q.pi_state); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3271 | pi_mutex = &q.pi_state->pi_mutex; |
Peter Zijlstra | 38d589f | 2017-03-22 11:35:57 +0100 | [diff] [blame] | 3272 | ret = rt_mutex_wait_proxy_lock(pi_mutex, to, &rt_waiter); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3273 | |
| 3274 | spin_lock(q.lock_ptr); |
Peter Zijlstra | 38d589f | 2017-03-22 11:35:57 +0100 | [diff] [blame] | 3275 | if (ret && !rt_mutex_cleanup_proxy_lock(pi_mutex, &rt_waiter)) |
| 3276 | ret = 0; |
| 3277 | |
| 3278 | debug_rt_mutex_free_waiter(&rt_waiter); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3279 | /* |
| 3280 | * Fixup the pi_state owner and possibly acquire the lock if we |
| 3281 | * haven't already. |
| 3282 | */ |
Thomas Gleixner | ae791a2 | 2010-11-10 13:30:36 +0100 | [diff] [blame] | 3283 | res = fixup_owner(uaddr2, &q, !ret); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3284 | /* |
| 3285 | * If fixup_owner() returned an error, proprogate that. If it |
Darren Hart | 56ec160 | 2009-09-21 22:29:59 -0700 | [diff] [blame] | 3286 | * acquired the lock, clear -ETIMEDOUT or -EINTR. |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3287 | */ |
| 3288 | if (res) |
| 3289 | ret = (res < 0) ? res : 0; |
| 3290 | |
Peter Zijlstra | c236c8e | 2017-03-04 10:27:18 +0100 | [diff] [blame] | 3291 | /* |
| 3292 | * If fixup_pi_state_owner() faulted and was unable to handle |
| 3293 | * the fault, unlock the rt_mutex and return the fault to |
| 3294 | * userspace. |
| 3295 | */ |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 3296 | if (ret && rt_mutex_owner(&q.pi_state->pi_mutex) == current) { |
| 3297 | pi_state = q.pi_state; |
| 3298 | get_pi_state(pi_state); |
| 3299 | } |
Peter Zijlstra | c236c8e | 2017-03-04 10:27:18 +0100 | [diff] [blame] | 3300 | |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3301 | /* Unqueue and drop the lock. */ |
| 3302 | unqueue_me_pi(&q); |
| 3303 | } |
| 3304 | |
Peter Zijlstra | 16ffa12 | 2017-03-22 11:35:55 +0100 | [diff] [blame] | 3305 | if (pi_state) { |
| 3306 | rt_mutex_futex_unlock(&pi_state->pi_mutex); |
| 3307 | put_pi_state(pi_state); |
| 3308 | } |
| 3309 | |
Peter Zijlstra | c236c8e | 2017-03-04 10:27:18 +0100 | [diff] [blame] | 3310 | if (ret == -EINTR) { |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3311 | /* |
Darren Hart | cc6db4e | 2009-07-31 16:20:10 -0700 | [diff] [blame] | 3312 | * We've already been requeued, but cannot restart by calling |
| 3313 | * futex_lock_pi() directly. We could restart this syscall, but |
| 3314 | * it would detect that the user space "val" changed and return |
| 3315 | * -EWOULDBLOCK. Save the overhead of the restart and return |
| 3316 | * -EWOULDBLOCK directly. |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3317 | */ |
Thomas Gleixner | 2070887 | 2009-05-19 23:04:59 +0200 | [diff] [blame] | 3318 | ret = -EWOULDBLOCK; |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3319 | } |
| 3320 | |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3321 | out: |
| 3322 | if (to) { |
| 3323 | hrtimer_cancel(&to->timer); |
| 3324 | destroy_hrtimer_on_stack(&to->timer); |
| 3325 | } |
| 3326 | return ret; |
| 3327 | } |
| 3328 | |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3329 | /* |
| 3330 | * Support for robust futexes: the kernel cleans up held futexes at |
| 3331 | * thread exit time. |
| 3332 | * |
| 3333 | * Implementation: user-space maintains a per-thread list of locks it |
| 3334 | * is holding. Upon do_exit(), the kernel carefully walks this list, |
| 3335 | * and marks all locks that are owned by this thread with the |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3336 | * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3337 | * always manipulated with the lock held, so the list is private and |
| 3338 | * per-thread. Userspace also maintains a per-thread 'list_op_pending' |
| 3339 | * field, to allow the kernel to clean up if the thread dies after |
| 3340 | * acquiring the lock, but just before it could have added itself to |
| 3341 | * the list. There can only be one such pending lock. |
| 3342 | */ |
| 3343 | |
| 3344 | /** |
Darren Hart | d96ee56 | 2009-09-21 22:30:22 -0700 | [diff] [blame] | 3345 | * sys_set_robust_list() - Set the robust-futex list head of a task |
| 3346 | * @head: pointer to the list-head |
| 3347 | * @len: length of the list-head, as userspace expects |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3348 | */ |
Heiko Carstens | 836f92a | 2009-01-14 14:14:33 +0100 | [diff] [blame] | 3349 | SYSCALL_DEFINE2(set_robust_list, struct robust_list_head __user *, head, |
| 3350 | size_t, len) |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3351 | { |
Thomas Gleixner | a0c1e90 | 2008-02-23 15:23:57 -0800 | [diff] [blame] | 3352 | if (!futex_cmpxchg_enabled) |
| 3353 | return -ENOSYS; |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3354 | /* |
| 3355 | * The kernel knows only one size for now: |
| 3356 | */ |
| 3357 | if (unlikely(len != sizeof(*head))) |
| 3358 | return -EINVAL; |
| 3359 | |
| 3360 | current->robust_list = head; |
| 3361 | |
| 3362 | return 0; |
| 3363 | } |
| 3364 | |
| 3365 | /** |
Darren Hart | d96ee56 | 2009-09-21 22:30:22 -0700 | [diff] [blame] | 3366 | * sys_get_robust_list() - Get the robust-futex list head of a task |
| 3367 | * @pid: pid of the process [zero for current task] |
| 3368 | * @head_ptr: pointer to a list-head pointer, the kernel fills it in |
| 3369 | * @len_ptr: pointer to a length field, the kernel fills in the header size |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3370 | */ |
Heiko Carstens | 836f92a | 2009-01-14 14:14:33 +0100 | [diff] [blame] | 3371 | SYSCALL_DEFINE3(get_robust_list, int, pid, |
| 3372 | struct robust_list_head __user * __user *, head_ptr, |
| 3373 | size_t __user *, len_ptr) |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3374 | { |
Al Viro | ba46df9 | 2006-10-10 22:46:07 +0100 | [diff] [blame] | 3375 | struct robust_list_head __user *head; |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3376 | unsigned long ret; |
Kees Cook | bdbb776 | 2012-03-19 16:12:53 -0700 | [diff] [blame] | 3377 | struct task_struct *p; |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3378 | |
Thomas Gleixner | a0c1e90 | 2008-02-23 15:23:57 -0800 | [diff] [blame] | 3379 | if (!futex_cmpxchg_enabled) |
| 3380 | return -ENOSYS; |
| 3381 | |
Kees Cook | bdbb776 | 2012-03-19 16:12:53 -0700 | [diff] [blame] | 3382 | rcu_read_lock(); |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3383 | |
Kees Cook | bdbb776 | 2012-03-19 16:12:53 -0700 | [diff] [blame] | 3384 | ret = -ESRCH; |
| 3385 | if (!pid) |
| 3386 | p = current; |
| 3387 | else { |
Pavel Emelyanov | 228ebcb | 2007-10-18 23:40:16 -0700 | [diff] [blame] | 3388 | p = find_task_by_vpid(pid); |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3389 | if (!p) |
| 3390 | goto err_unlock; |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3391 | } |
| 3392 | |
Kees Cook | bdbb776 | 2012-03-19 16:12:53 -0700 | [diff] [blame] | 3393 | ret = -EPERM; |
Jann Horn | caaee62 | 2016-01-20 15:00:04 -0800 | [diff] [blame] | 3394 | if (!ptrace_may_access(p, PTRACE_MODE_READ_REALCREDS)) |
Kees Cook | bdbb776 | 2012-03-19 16:12:53 -0700 | [diff] [blame] | 3395 | goto err_unlock; |
| 3396 | |
| 3397 | head = p->robust_list; |
| 3398 | rcu_read_unlock(); |
| 3399 | |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3400 | if (put_user(sizeof(*head), len_ptr)) |
| 3401 | return -EFAULT; |
| 3402 | return put_user(head, head_ptr); |
| 3403 | |
| 3404 | err_unlock: |
Oleg Nesterov | aaa2a97 | 2006-09-29 02:00:55 -0700 | [diff] [blame] | 3405 | rcu_read_unlock(); |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3406 | |
| 3407 | return ret; |
| 3408 | } |
| 3409 | |
Yang Tao | ca16d5b | 2019-11-06 22:55:35 +0100 | [diff] [blame] | 3410 | /* Constants for the pending_op argument of handle_futex_death */ |
| 3411 | #define HANDLE_DEATH_PENDING true |
| 3412 | #define HANDLE_DEATH_LIST false |
| 3413 | |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3414 | /* |
| 3415 | * Process a futex-list entry, check whether it's owned by the |
| 3416 | * dying task, and do notification if so: |
| 3417 | */ |
Yang Tao | ca16d5b | 2019-11-06 22:55:35 +0100 | [diff] [blame] | 3418 | static int handle_futex_death(u32 __user *uaddr, struct task_struct *curr, |
| 3419 | bool pi, bool pending_op) |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3420 | { |
Kees Cook | 3f649ab | 2020-06-03 13:09:38 -0700 | [diff] [blame] | 3421 | u32 uval, nval, mval; |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 3422 | int err; |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3423 | |
Chen Jie | 5a07168 | 2019-03-15 03:44:38 +0000 | [diff] [blame] | 3424 | /* Futex address must be 32bit aligned */ |
| 3425 | if ((((unsigned long)uaddr) % sizeof(*uaddr)) != 0) |
| 3426 | return -1; |
| 3427 | |
Ingo Molnar | 8f17d3a | 2006-03-27 01:16:27 -0800 | [diff] [blame] | 3428 | retry: |
| 3429 | if (get_user(uval, uaddr)) |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3430 | return -1; |
| 3431 | |
Yang Tao | ca16d5b | 2019-11-06 22:55:35 +0100 | [diff] [blame] | 3432 | /* |
| 3433 | * Special case for regular (non PI) futexes. The unlock path in |
| 3434 | * user space has two race scenarios: |
| 3435 | * |
| 3436 | * 1. The unlock path releases the user space futex value and |
| 3437 | * before it can execute the futex() syscall to wake up |
| 3438 | * waiters it is killed. |
| 3439 | * |
| 3440 | * 2. A woken up waiter is killed before it can acquire the |
| 3441 | * futex in user space. |
| 3442 | * |
| 3443 | * In both cases the TID validation below prevents a wakeup of |
| 3444 | * potential waiters which can cause these waiters to block |
| 3445 | * forever. |
| 3446 | * |
| 3447 | * In both cases the following conditions are met: |
| 3448 | * |
| 3449 | * 1) task->robust_list->list_op_pending != NULL |
| 3450 | * @pending_op == true |
| 3451 | * 2) User space futex value == 0 |
| 3452 | * 3) Regular futex: @pi == false |
| 3453 | * |
| 3454 | * If these conditions are met, it is safe to attempt waking up a |
| 3455 | * potential waiter without touching the user space futex value and |
| 3456 | * trying to set the OWNER_DIED bit. The user space futex value is |
| 3457 | * uncontended and the rest of the user space mutex state is |
| 3458 | * consistent, so a woken waiter will just take over the |
| 3459 | * uncontended futex. Setting the OWNER_DIED bit would create |
| 3460 | * inconsistent state and malfunction of the user space owner died |
| 3461 | * handling. |
| 3462 | */ |
| 3463 | if (pending_op && !pi && !uval) { |
| 3464 | futex_wake(uaddr, 1, 1, FUTEX_BITSET_MATCH_ANY); |
| 3465 | return 0; |
| 3466 | } |
| 3467 | |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 3468 | if ((uval & FUTEX_TID_MASK) != task_pid_vnr(curr)) |
| 3469 | return 0; |
| 3470 | |
| 3471 | /* |
| 3472 | * Ok, this dying thread is truly holding a futex |
| 3473 | * of interest. Set the OWNER_DIED bit atomically |
| 3474 | * via cmpxchg, and if the value had FUTEX_WAITERS |
| 3475 | * set, wake up a waiter (if any). (We have to do a |
| 3476 | * futex_wake() even if OWNER_DIED is already set - |
| 3477 | * to handle the rare but possible case of recursive |
| 3478 | * thread-death.) The rest of the cleanup is done in |
| 3479 | * userspace. |
| 3480 | */ |
| 3481 | mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED; |
| 3482 | |
| 3483 | /* |
| 3484 | * We are not holding a lock here, but we want to have |
| 3485 | * the pagefault_disable/enable() protection because |
| 3486 | * we want to handle the fault gracefully. If the |
| 3487 | * access fails we try to fault in the futex with R/W |
| 3488 | * verification via get_user_pages. get_user() above |
| 3489 | * does not guarantee R/W access. If that fails we |
| 3490 | * give up and leave the futex locked. |
| 3491 | */ |
| 3492 | if ((err = cmpxchg_futex_value_locked(&nval, uaddr, uval, mval))) { |
| 3493 | switch (err) { |
| 3494 | case -EFAULT: |
Thomas Gleixner | 6e0aa9f | 2011-03-14 10:34:35 +0100 | [diff] [blame] | 3495 | if (fault_in_user_writeable(uaddr)) |
| 3496 | return -1; |
| 3497 | goto retry; |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 3498 | |
| 3499 | case -EAGAIN: |
| 3500 | cond_resched(); |
Ingo Molnar | 8f17d3a | 2006-03-27 01:16:27 -0800 | [diff] [blame] | 3501 | goto retry; |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3502 | |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 3503 | default: |
| 3504 | WARN_ON_ONCE(1); |
| 3505 | return err; |
| 3506 | } |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3507 | } |
Will Deacon | 6b4f4bc | 2019-02-28 11:58:08 +0000 | [diff] [blame] | 3508 | |
| 3509 | if (nval != uval) |
| 3510 | goto retry; |
| 3511 | |
| 3512 | /* |
| 3513 | * Wake robust non-PI futexes here. The wakeup of |
| 3514 | * PI futexes happens in exit_pi_state(): |
| 3515 | */ |
| 3516 | if (!pi && (uval & FUTEX_WAITERS)) |
| 3517 | futex_wake(uaddr, 1, 1, FUTEX_BITSET_MATCH_ANY); |
| 3518 | |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3519 | return 0; |
| 3520 | } |
| 3521 | |
| 3522 | /* |
Ingo Molnar | e3f2dde | 2006-07-29 05:17:57 +0200 | [diff] [blame] | 3523 | * Fetch a robust-list pointer. Bit 0 signals PI futexes: |
| 3524 | */ |
| 3525 | static inline int fetch_robust_entry(struct robust_list __user **entry, |
Al Viro | ba46df9 | 2006-10-10 22:46:07 +0100 | [diff] [blame] | 3526 | struct robust_list __user * __user *head, |
Namhyung Kim | 1dcc41b | 2010-09-14 21:43:46 +0900 | [diff] [blame] | 3527 | unsigned int *pi) |
Ingo Molnar | e3f2dde | 2006-07-29 05:17:57 +0200 | [diff] [blame] | 3528 | { |
| 3529 | unsigned long uentry; |
| 3530 | |
Al Viro | ba46df9 | 2006-10-10 22:46:07 +0100 | [diff] [blame] | 3531 | if (get_user(uentry, (unsigned long __user *)head)) |
Ingo Molnar | e3f2dde | 2006-07-29 05:17:57 +0200 | [diff] [blame] | 3532 | return -EFAULT; |
| 3533 | |
Al Viro | ba46df9 | 2006-10-10 22:46:07 +0100 | [diff] [blame] | 3534 | *entry = (void __user *)(uentry & ~1UL); |
Ingo Molnar | e3f2dde | 2006-07-29 05:17:57 +0200 | [diff] [blame] | 3535 | *pi = uentry & 1; |
| 3536 | |
| 3537 | return 0; |
| 3538 | } |
| 3539 | |
| 3540 | /* |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3541 | * Walk curr->robust_list (very carefully, it's a userspace list!) |
| 3542 | * and mark any locks found there dead, and notify any waiters. |
| 3543 | * |
| 3544 | * We silently return on any sign of list-walking problem. |
| 3545 | */ |
Thomas Gleixner | ba31c1a4 | 2019-11-06 22:55:36 +0100 | [diff] [blame] | 3546 | static void exit_robust_list(struct task_struct *curr) |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3547 | { |
| 3548 | struct robust_list_head __user *head = curr->robust_list; |
Martin Schwidefsky | 9f96cb1 | 2007-10-01 01:20:13 -0700 | [diff] [blame] | 3549 | struct robust_list __user *entry, *next_entry, *pending; |
Darren Hart | 4c115e9 | 2010-11-04 15:00:00 -0400 | [diff] [blame] | 3550 | unsigned int limit = ROBUST_LIST_LIMIT, pi, pip; |
Kees Cook | 3f649ab | 2020-06-03 13:09:38 -0700 | [diff] [blame] | 3551 | unsigned int next_pi; |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3552 | unsigned long futex_offset; |
Martin Schwidefsky | 9f96cb1 | 2007-10-01 01:20:13 -0700 | [diff] [blame] | 3553 | int rc; |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3554 | |
Thomas Gleixner | a0c1e90 | 2008-02-23 15:23:57 -0800 | [diff] [blame] | 3555 | if (!futex_cmpxchg_enabled) |
| 3556 | return; |
| 3557 | |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3558 | /* |
| 3559 | * Fetch the list head (which was registered earlier, via |
| 3560 | * sys_set_robust_list()): |
| 3561 | */ |
Ingo Molnar | e3f2dde | 2006-07-29 05:17:57 +0200 | [diff] [blame] | 3562 | if (fetch_robust_entry(&entry, &head->list.next, &pi)) |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3563 | return; |
| 3564 | /* |
| 3565 | * Fetch the relative futex offset: |
| 3566 | */ |
| 3567 | if (get_user(futex_offset, &head->futex_offset)) |
| 3568 | return; |
| 3569 | /* |
| 3570 | * Fetch any possibly pending lock-add first, and handle it |
| 3571 | * if it exists: |
| 3572 | */ |
Ingo Molnar | e3f2dde | 2006-07-29 05:17:57 +0200 | [diff] [blame] | 3573 | if (fetch_robust_entry(&pending, &head->list_op_pending, &pip)) |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3574 | return; |
Ingo Molnar | e3f2dde | 2006-07-29 05:17:57 +0200 | [diff] [blame] | 3575 | |
Martin Schwidefsky | 9f96cb1 | 2007-10-01 01:20:13 -0700 | [diff] [blame] | 3576 | next_entry = NULL; /* avoid warning with gcc */ |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3577 | while (entry != &head->list) { |
| 3578 | /* |
Martin Schwidefsky | 9f96cb1 | 2007-10-01 01:20:13 -0700 | [diff] [blame] | 3579 | * Fetch the next entry in the list before calling |
| 3580 | * handle_futex_death: |
| 3581 | */ |
| 3582 | rc = fetch_robust_entry(&next_entry, &entry->next, &next_pi); |
| 3583 | /* |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3584 | * A pending lock might already be on the list, so |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3585 | * don't process it twice: |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3586 | */ |
Yang Tao | ca16d5b | 2019-11-06 22:55:35 +0100 | [diff] [blame] | 3587 | if (entry != pending) { |
Al Viro | ba46df9 | 2006-10-10 22:46:07 +0100 | [diff] [blame] | 3588 | if (handle_futex_death((void __user *)entry + futex_offset, |
Yang Tao | ca16d5b | 2019-11-06 22:55:35 +0100 | [diff] [blame] | 3589 | curr, pi, HANDLE_DEATH_LIST)) |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3590 | return; |
Yang Tao | ca16d5b | 2019-11-06 22:55:35 +0100 | [diff] [blame] | 3591 | } |
Martin Schwidefsky | 9f96cb1 | 2007-10-01 01:20:13 -0700 | [diff] [blame] | 3592 | if (rc) |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3593 | return; |
Martin Schwidefsky | 9f96cb1 | 2007-10-01 01:20:13 -0700 | [diff] [blame] | 3594 | entry = next_entry; |
| 3595 | pi = next_pi; |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3596 | /* |
| 3597 | * Avoid excessively long or circular lists: |
| 3598 | */ |
| 3599 | if (!--limit) |
| 3600 | break; |
| 3601 | |
| 3602 | cond_resched(); |
| 3603 | } |
Martin Schwidefsky | 9f96cb1 | 2007-10-01 01:20:13 -0700 | [diff] [blame] | 3604 | |
Yang Tao | ca16d5b | 2019-11-06 22:55:35 +0100 | [diff] [blame] | 3605 | if (pending) { |
Martin Schwidefsky | 9f96cb1 | 2007-10-01 01:20:13 -0700 | [diff] [blame] | 3606 | handle_futex_death((void __user *)pending + futex_offset, |
Yang Tao | ca16d5b | 2019-11-06 22:55:35 +0100 | [diff] [blame] | 3607 | curr, pip, HANDLE_DEATH_PENDING); |
| 3608 | } |
Ingo Molnar | 0771dfe | 2006-03-27 01:16:22 -0800 | [diff] [blame] | 3609 | } |
| 3610 | |
Thomas Gleixner | af8cbda | 2019-11-06 22:55:43 +0100 | [diff] [blame] | 3611 | static void futex_cleanup(struct task_struct *tsk) |
Thomas Gleixner | ba31c1a4 | 2019-11-06 22:55:36 +0100 | [diff] [blame] | 3612 | { |
| 3613 | if (unlikely(tsk->robust_list)) { |
| 3614 | exit_robust_list(tsk); |
| 3615 | tsk->robust_list = NULL; |
| 3616 | } |
| 3617 | |
| 3618 | #ifdef CONFIG_COMPAT |
| 3619 | if (unlikely(tsk->compat_robust_list)) { |
| 3620 | compat_exit_robust_list(tsk); |
| 3621 | tsk->compat_robust_list = NULL; |
| 3622 | } |
| 3623 | #endif |
| 3624 | |
| 3625 | if (unlikely(!list_empty(&tsk->pi_state_list))) |
| 3626 | exit_pi_state_list(tsk); |
| 3627 | } |
| 3628 | |
Thomas Gleixner | 18f6943 | 2019-11-06 22:55:41 +0100 | [diff] [blame] | 3629 | /** |
| 3630 | * futex_exit_recursive - Set the tasks futex state to FUTEX_STATE_DEAD |
| 3631 | * @tsk: task to set the state on |
| 3632 | * |
| 3633 | * Set the futex exit state of the task lockless. The futex waiter code |
| 3634 | * observes that state when a task is exiting and loops until the task has |
| 3635 | * actually finished the futex cleanup. The worst case for this is that the |
| 3636 | * waiter runs through the wait loop until the state becomes visible. |
| 3637 | * |
| 3638 | * This is called from the recursive fault handling path in do_exit(). |
| 3639 | * |
| 3640 | * This is best effort. Either the futex exit code has run already or |
| 3641 | * not. If the OWNER_DIED bit has been set on the futex then the waiter can |
| 3642 | * take it over. If not, the problem is pushed back to user space. If the |
| 3643 | * futex exit code did not run yet, then an already queued waiter might |
| 3644 | * block forever, but there is nothing which can be done about that. |
| 3645 | */ |
| 3646 | void futex_exit_recursive(struct task_struct *tsk) |
| 3647 | { |
Thomas Gleixner | 3f186d9 | 2019-11-06 22:55:44 +0100 | [diff] [blame] | 3648 | /* If the state is FUTEX_STATE_EXITING then futex_exit_mutex is held */ |
| 3649 | if (tsk->futex_state == FUTEX_STATE_EXITING) |
| 3650 | mutex_unlock(&tsk->futex_exit_mutex); |
Thomas Gleixner | 18f6943 | 2019-11-06 22:55:41 +0100 | [diff] [blame] | 3651 | tsk->futex_state = FUTEX_STATE_DEAD; |
| 3652 | } |
| 3653 | |
Thomas Gleixner | af8cbda | 2019-11-06 22:55:43 +0100 | [diff] [blame] | 3654 | static void futex_cleanup_begin(struct task_struct *tsk) |
Thomas Gleixner | 150d715 | 2019-11-06 22:55:39 +0100 | [diff] [blame] | 3655 | { |
Thomas Gleixner | 18f6943 | 2019-11-06 22:55:41 +0100 | [diff] [blame] | 3656 | /* |
Thomas Gleixner | 3f186d9 | 2019-11-06 22:55:44 +0100 | [diff] [blame] | 3657 | * Prevent various race issues against a concurrent incoming waiter |
| 3658 | * including live locks by forcing the waiter to block on |
| 3659 | * tsk->futex_exit_mutex when it observes FUTEX_STATE_EXITING in |
| 3660 | * attach_to_pi_owner(). |
| 3661 | */ |
| 3662 | mutex_lock(&tsk->futex_exit_mutex); |
| 3663 | |
| 3664 | /* |
Thomas Gleixner | 4a8e991 | 2019-11-06 22:55:42 +0100 | [diff] [blame] | 3665 | * Switch the state to FUTEX_STATE_EXITING under tsk->pi_lock. |
| 3666 | * |
| 3667 | * This ensures that all subsequent checks of tsk->futex_state in |
| 3668 | * attach_to_pi_owner() must observe FUTEX_STATE_EXITING with |
| 3669 | * tsk->pi_lock held. |
| 3670 | * |
| 3671 | * It guarantees also that a pi_state which was queued right before |
| 3672 | * the state change under tsk->pi_lock by a concurrent waiter must |
| 3673 | * be observed in exit_pi_state_list(). |
Thomas Gleixner | 18f6943 | 2019-11-06 22:55:41 +0100 | [diff] [blame] | 3674 | */ |
| 3675 | raw_spin_lock_irq(&tsk->pi_lock); |
Thomas Gleixner | 4a8e991 | 2019-11-06 22:55:42 +0100 | [diff] [blame] | 3676 | tsk->futex_state = FUTEX_STATE_EXITING; |
Thomas Gleixner | 18f6943 | 2019-11-06 22:55:41 +0100 | [diff] [blame] | 3677 | raw_spin_unlock_irq(&tsk->pi_lock); |
Thomas Gleixner | af8cbda | 2019-11-06 22:55:43 +0100 | [diff] [blame] | 3678 | } |
Thomas Gleixner | 18f6943 | 2019-11-06 22:55:41 +0100 | [diff] [blame] | 3679 | |
Thomas Gleixner | af8cbda | 2019-11-06 22:55:43 +0100 | [diff] [blame] | 3680 | static void futex_cleanup_end(struct task_struct *tsk, int state) |
| 3681 | { |
| 3682 | /* |
| 3683 | * Lockless store. The only side effect is that an observer might |
| 3684 | * take another loop until it becomes visible. |
| 3685 | */ |
| 3686 | tsk->futex_state = state; |
Thomas Gleixner | 3f186d9 | 2019-11-06 22:55:44 +0100 | [diff] [blame] | 3687 | /* |
| 3688 | * Drop the exit protection. This unblocks waiters which observed |
| 3689 | * FUTEX_STATE_EXITING to reevaluate the state. |
| 3690 | */ |
| 3691 | mutex_unlock(&tsk->futex_exit_mutex); |
Thomas Gleixner | af8cbda | 2019-11-06 22:55:43 +0100 | [diff] [blame] | 3692 | } |
Thomas Gleixner | 18f6943 | 2019-11-06 22:55:41 +0100 | [diff] [blame] | 3693 | |
Thomas Gleixner | af8cbda | 2019-11-06 22:55:43 +0100 | [diff] [blame] | 3694 | void futex_exec_release(struct task_struct *tsk) |
| 3695 | { |
| 3696 | /* |
| 3697 | * The state handling is done for consistency, but in the case of |
| 3698 | * exec() there is no way to prevent futher damage as the PID stays |
| 3699 | * the same. But for the unlikely and arguably buggy case that a |
| 3700 | * futex is held on exec(), this provides at least as much state |
| 3701 | * consistency protection which is possible. |
| 3702 | */ |
| 3703 | futex_cleanup_begin(tsk); |
| 3704 | futex_cleanup(tsk); |
| 3705 | /* |
| 3706 | * Reset the state to FUTEX_STATE_OK. The task is alive and about |
| 3707 | * exec a new binary. |
| 3708 | */ |
| 3709 | futex_cleanup_end(tsk, FUTEX_STATE_OK); |
| 3710 | } |
| 3711 | |
| 3712 | void futex_exit_release(struct task_struct *tsk) |
| 3713 | { |
| 3714 | futex_cleanup_begin(tsk); |
| 3715 | futex_cleanup(tsk); |
| 3716 | futex_cleanup_end(tsk, FUTEX_STATE_DEAD); |
Thomas Gleixner | 150d715 | 2019-11-06 22:55:39 +0100 | [diff] [blame] | 3717 | } |
| 3718 | |
Pierre Peiffer | c19384b | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 3719 | long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout, |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 3720 | u32 __user *uaddr2, u32 val2, u32 val3) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3721 | { |
Thomas Gleixner | 81b4053 | 2012-02-15 12:17:09 +0100 | [diff] [blame] | 3722 | int cmd = op & FUTEX_CMD_MASK; |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 3723 | unsigned int flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3724 | |
Eric Dumazet | 34f01cc | 2007-05-09 02:35:04 -0700 | [diff] [blame] | 3725 | if (!(op & FUTEX_PRIVATE_FLAG)) |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 3726 | flags |= FLAGS_SHARED; |
Eric Dumazet | 34f01cc | 2007-05-09 02:35:04 -0700 | [diff] [blame] | 3727 | |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 3728 | if (op & FUTEX_CLOCK_REALTIME) { |
| 3729 | flags |= FLAGS_CLOCKRT; |
Darren Hart | 337f130 | 2015-12-18 13:36:37 -0800 | [diff] [blame] | 3730 | if (cmd != FUTEX_WAIT && cmd != FUTEX_WAIT_BITSET && \ |
| 3731 | cmd != FUTEX_WAIT_REQUEUE_PI) |
Darren Hart | b41277d | 2010-11-08 13:10:09 -0800 | [diff] [blame] | 3732 | return -ENOSYS; |
| 3733 | } |
Eric Dumazet | 34f01cc | 2007-05-09 02:35:04 -0700 | [diff] [blame] | 3734 | |
| 3735 | switch (cmd) { |
Thomas Gleixner | 59263b5 | 2012-02-15 12:08:34 +0100 | [diff] [blame] | 3736 | case FUTEX_LOCK_PI: |
| 3737 | case FUTEX_UNLOCK_PI: |
| 3738 | case FUTEX_TRYLOCK_PI: |
| 3739 | case FUTEX_WAIT_REQUEUE_PI: |
| 3740 | case FUTEX_CMP_REQUEUE_PI: |
| 3741 | if (!futex_cmpxchg_enabled) |
| 3742 | return -ENOSYS; |
| 3743 | } |
| 3744 | |
| 3745 | switch (cmd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3746 | case FUTEX_WAIT: |
Thomas Gleixner | cd68998 | 2008-02-01 17:45:14 +0100 | [diff] [blame] | 3747 | val3 = FUTEX_BITSET_MATCH_ANY; |
Miaohe Lin | 405fa8a | 2020-08-13 08:21:17 -0400 | [diff] [blame] | 3748 | fallthrough; |
Thomas Gleixner | cd68998 | 2008-02-01 17:45:14 +0100 | [diff] [blame] | 3749 | case FUTEX_WAIT_BITSET: |
Thomas Gleixner | 81b4053 | 2012-02-15 12:17:09 +0100 | [diff] [blame] | 3750 | return futex_wait(uaddr, flags, val, timeout, val3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3751 | case FUTEX_WAKE: |
Thomas Gleixner | cd68998 | 2008-02-01 17:45:14 +0100 | [diff] [blame] | 3752 | val3 = FUTEX_BITSET_MATCH_ANY; |
Miaohe Lin | 405fa8a | 2020-08-13 08:21:17 -0400 | [diff] [blame] | 3753 | fallthrough; |
Thomas Gleixner | cd68998 | 2008-02-01 17:45:14 +0100 | [diff] [blame] | 3754 | case FUTEX_WAKE_BITSET: |
Thomas Gleixner | 81b4053 | 2012-02-15 12:17:09 +0100 | [diff] [blame] | 3755 | return futex_wake(uaddr, flags, val, val3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3756 | case FUTEX_REQUEUE: |
Thomas Gleixner | 81b4053 | 2012-02-15 12:17:09 +0100 | [diff] [blame] | 3757 | return futex_requeue(uaddr, flags, uaddr2, val, val2, NULL, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3758 | case FUTEX_CMP_REQUEUE: |
Thomas Gleixner | 81b4053 | 2012-02-15 12:17:09 +0100 | [diff] [blame] | 3759 | return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 0); |
Jakub Jelinek | 4732efbe | 2005-09-06 15:16:25 -0700 | [diff] [blame] | 3760 | case FUTEX_WAKE_OP: |
Thomas Gleixner | 81b4053 | 2012-02-15 12:17:09 +0100 | [diff] [blame] | 3761 | return futex_wake_op(uaddr, flags, uaddr2, val, val2, val3); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3762 | case FUTEX_LOCK_PI: |
Michael Kerrisk | 996636d | 2015-01-16 20:28:06 +0100 | [diff] [blame] | 3763 | return futex_lock_pi(uaddr, flags, timeout, 0); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3764 | case FUTEX_UNLOCK_PI: |
Thomas Gleixner | 81b4053 | 2012-02-15 12:17:09 +0100 | [diff] [blame] | 3765 | return futex_unlock_pi(uaddr, flags); |
Ingo Molnar | c87e283 | 2006-06-27 02:54:58 -0700 | [diff] [blame] | 3766 | case FUTEX_TRYLOCK_PI: |
Michael Kerrisk | 996636d | 2015-01-16 20:28:06 +0100 | [diff] [blame] | 3767 | return futex_lock_pi(uaddr, flags, NULL, 1); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3768 | case FUTEX_WAIT_REQUEUE_PI: |
| 3769 | val3 = FUTEX_BITSET_MATCH_ANY; |
Thomas Gleixner | 81b4053 | 2012-02-15 12:17:09 +0100 | [diff] [blame] | 3770 | return futex_wait_requeue_pi(uaddr, flags, val, timeout, val3, |
| 3771 | uaddr2); |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3772 | case FUTEX_CMP_REQUEUE_PI: |
Thomas Gleixner | 81b4053 | 2012-02-15 12:17:09 +0100 | [diff] [blame] | 3773 | return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3774 | } |
Thomas Gleixner | 81b4053 | 2012-02-15 12:17:09 +0100 | [diff] [blame] | 3775 | return -ENOSYS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3776 | } |
| 3777 | |
| 3778 | |
Heiko Carstens | 17da2bd | 2009-01-14 14:14:10 +0100 | [diff] [blame] | 3779 | SYSCALL_DEFINE6(futex, u32 __user *, uaddr, int, op, u32, val, |
Arnd Bergmann | bec2f7c | 2018-04-17 17:23:35 +0200 | [diff] [blame] | 3780 | struct __kernel_timespec __user *, utime, u32 __user *, uaddr2, |
Heiko Carstens | 17da2bd | 2009-01-14 14:14:10 +0100 | [diff] [blame] | 3781 | u32, val3) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3782 | { |
Arnd Bergmann | bec2f7c | 2018-04-17 17:23:35 +0200 | [diff] [blame] | 3783 | struct timespec64 ts; |
Pierre Peiffer | c19384b | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 3784 | ktime_t t, *tp = NULL; |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 3785 | u32 val2 = 0; |
Eric Dumazet | 34f01cc | 2007-05-09 02:35:04 -0700 | [diff] [blame] | 3786 | int cmd = op & FUTEX_CMD_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3787 | |
Thomas Gleixner | cd68998 | 2008-02-01 17:45:14 +0100 | [diff] [blame] | 3788 | if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI || |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3789 | cmd == FUTEX_WAIT_BITSET || |
| 3790 | cmd == FUTEX_WAIT_REQUEUE_PI)) { |
Davidlohr Bueso | ab51fba | 2015-06-29 23:26:02 -0700 | [diff] [blame] | 3791 | if (unlikely(should_fail_futex(!(op & FUTEX_PRIVATE_FLAG)))) |
| 3792 | return -EFAULT; |
Arnd Bergmann | bec2f7c | 2018-04-17 17:23:35 +0200 | [diff] [blame] | 3793 | if (get_timespec64(&ts, utime)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3794 | return -EFAULT; |
Arnd Bergmann | bec2f7c | 2018-04-17 17:23:35 +0200 | [diff] [blame] | 3795 | if (!timespec64_valid(&ts)) |
Thomas Gleixner | 9741ef96 | 2006-03-31 02:31:32 -0800 | [diff] [blame] | 3796 | return -EINVAL; |
Pierre Peiffer | c19384b | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 3797 | |
Arnd Bergmann | bec2f7c | 2018-04-17 17:23:35 +0200 | [diff] [blame] | 3798 | t = timespec64_to_ktime(ts); |
Eric Dumazet | 34f01cc | 2007-05-09 02:35:04 -0700 | [diff] [blame] | 3799 | if (cmd == FUTEX_WAIT) |
Thomas Gleixner | 5a7780e | 2008-02-13 09:20:43 +0100 | [diff] [blame] | 3800 | t = ktime_add_safe(ktime_get(), t); |
Andrei Vagin | c2f7d08 | 2020-10-15 09:00:19 -0700 | [diff] [blame^] | 3801 | else if (!(op & FUTEX_CLOCK_REALTIME)) |
| 3802 | t = timens_ktime_to_host(CLOCK_MONOTONIC, t); |
Pierre Peiffer | c19384b | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 3803 | tp = &t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3804 | } |
| 3805 | /* |
Darren Hart | 52400ba | 2009-04-03 13:40:49 -0700 | [diff] [blame] | 3806 | * requeue parameter in 'utime' if cmd == FUTEX_*_REQUEUE_*. |
Andreas Schwab | f54f098 | 2007-07-31 00:38:51 -0700 | [diff] [blame] | 3807 | * number of waiters to wake in 'utime' if cmd == FUTEX_WAKE_OP. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3808 | */ |
Andreas Schwab | f54f098 | 2007-07-31 00:38:51 -0700 | [diff] [blame] | 3809 | if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE || |
Darren Hart | ba9c22f | 2009-04-20 22:22:22 -0700 | [diff] [blame] | 3810 | cmd == FUTEX_CMP_REQUEUE_PI || cmd == FUTEX_WAKE_OP) |
Ingo Molnar | e2970f2 | 2006-06-27 02:54:47 -0700 | [diff] [blame] | 3811 | val2 = (u32) (unsigned long) utime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3812 | |
Pierre Peiffer | c19384b | 2007-05-09 02:35:02 -0700 | [diff] [blame] | 3813 | return do_futex(uaddr, op, val, tp, uaddr2, val2, val3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3814 | } |
| 3815 | |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 3816 | #ifdef CONFIG_COMPAT |
| 3817 | /* |
| 3818 | * Fetch a robust-list pointer. Bit 0 signals PI futexes: |
| 3819 | */ |
| 3820 | static inline int |
| 3821 | compat_fetch_robust_entry(compat_uptr_t *uentry, struct robust_list __user **entry, |
| 3822 | compat_uptr_t __user *head, unsigned int *pi) |
| 3823 | { |
| 3824 | if (get_user(*uentry, head)) |
| 3825 | return -EFAULT; |
| 3826 | |
| 3827 | *entry = compat_ptr((*uentry) & ~1); |
| 3828 | *pi = (unsigned int)(*uentry) & 1; |
| 3829 | |
| 3830 | return 0; |
| 3831 | } |
| 3832 | |
| 3833 | static void __user *futex_uaddr(struct robust_list __user *entry, |
| 3834 | compat_long_t futex_offset) |
| 3835 | { |
| 3836 | compat_uptr_t base = ptr_to_compat(entry); |
| 3837 | void __user *uaddr = compat_ptr(base + futex_offset); |
| 3838 | |
| 3839 | return uaddr; |
| 3840 | } |
| 3841 | |
| 3842 | /* |
| 3843 | * Walk curr->robust_list (very carefully, it's a userspace list!) |
| 3844 | * and mark any locks found there dead, and notify any waiters. |
| 3845 | * |
| 3846 | * We silently return on any sign of list-walking problem. |
| 3847 | */ |
Thomas Gleixner | ba31c1a4 | 2019-11-06 22:55:36 +0100 | [diff] [blame] | 3848 | static void compat_exit_robust_list(struct task_struct *curr) |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 3849 | { |
| 3850 | struct compat_robust_list_head __user *head = curr->compat_robust_list; |
| 3851 | struct robust_list __user *entry, *next_entry, *pending; |
| 3852 | unsigned int limit = ROBUST_LIST_LIMIT, pi, pip; |
Kees Cook | 3f649ab | 2020-06-03 13:09:38 -0700 | [diff] [blame] | 3853 | unsigned int next_pi; |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 3854 | compat_uptr_t uentry, next_uentry, upending; |
| 3855 | compat_long_t futex_offset; |
| 3856 | int rc; |
| 3857 | |
| 3858 | if (!futex_cmpxchg_enabled) |
| 3859 | return; |
| 3860 | |
| 3861 | /* |
| 3862 | * Fetch the list head (which was registered earlier, via |
| 3863 | * sys_set_robust_list()): |
| 3864 | */ |
| 3865 | if (compat_fetch_robust_entry(&uentry, &entry, &head->list.next, &pi)) |
| 3866 | return; |
| 3867 | /* |
| 3868 | * Fetch the relative futex offset: |
| 3869 | */ |
| 3870 | if (get_user(futex_offset, &head->futex_offset)) |
| 3871 | return; |
| 3872 | /* |
| 3873 | * Fetch any possibly pending lock-add first, and handle it |
| 3874 | * if it exists: |
| 3875 | */ |
| 3876 | if (compat_fetch_robust_entry(&upending, &pending, |
| 3877 | &head->list_op_pending, &pip)) |
| 3878 | return; |
| 3879 | |
| 3880 | next_entry = NULL; /* avoid warning with gcc */ |
| 3881 | while (entry != (struct robust_list __user *) &head->list) { |
| 3882 | /* |
| 3883 | * Fetch the next entry in the list before calling |
| 3884 | * handle_futex_death: |
| 3885 | */ |
| 3886 | rc = compat_fetch_robust_entry(&next_uentry, &next_entry, |
| 3887 | (compat_uptr_t __user *)&entry->next, &next_pi); |
| 3888 | /* |
| 3889 | * A pending lock might already be on the list, so |
| 3890 | * dont process it twice: |
| 3891 | */ |
| 3892 | if (entry != pending) { |
| 3893 | void __user *uaddr = futex_uaddr(entry, futex_offset); |
| 3894 | |
Yang Tao | ca16d5b | 2019-11-06 22:55:35 +0100 | [diff] [blame] | 3895 | if (handle_futex_death(uaddr, curr, pi, |
| 3896 | HANDLE_DEATH_LIST)) |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 3897 | return; |
| 3898 | } |
| 3899 | if (rc) |
| 3900 | return; |
| 3901 | uentry = next_uentry; |
| 3902 | entry = next_entry; |
| 3903 | pi = next_pi; |
| 3904 | /* |
| 3905 | * Avoid excessively long or circular lists: |
| 3906 | */ |
| 3907 | if (!--limit) |
| 3908 | break; |
| 3909 | |
| 3910 | cond_resched(); |
| 3911 | } |
| 3912 | if (pending) { |
| 3913 | void __user *uaddr = futex_uaddr(pending, futex_offset); |
| 3914 | |
Yang Tao | ca16d5b | 2019-11-06 22:55:35 +0100 | [diff] [blame] | 3915 | handle_futex_death(uaddr, curr, pip, HANDLE_DEATH_PENDING); |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 3916 | } |
| 3917 | } |
| 3918 | |
| 3919 | COMPAT_SYSCALL_DEFINE2(set_robust_list, |
| 3920 | struct compat_robust_list_head __user *, head, |
| 3921 | compat_size_t, len) |
| 3922 | { |
| 3923 | if (!futex_cmpxchg_enabled) |
| 3924 | return -ENOSYS; |
| 3925 | |
| 3926 | if (unlikely(len != sizeof(*head))) |
| 3927 | return -EINVAL; |
| 3928 | |
| 3929 | current->compat_robust_list = head; |
| 3930 | |
| 3931 | return 0; |
| 3932 | } |
| 3933 | |
| 3934 | COMPAT_SYSCALL_DEFINE3(get_robust_list, int, pid, |
| 3935 | compat_uptr_t __user *, head_ptr, |
| 3936 | compat_size_t __user *, len_ptr) |
| 3937 | { |
| 3938 | struct compat_robust_list_head __user *head; |
| 3939 | unsigned long ret; |
| 3940 | struct task_struct *p; |
| 3941 | |
| 3942 | if (!futex_cmpxchg_enabled) |
| 3943 | return -ENOSYS; |
| 3944 | |
| 3945 | rcu_read_lock(); |
| 3946 | |
| 3947 | ret = -ESRCH; |
| 3948 | if (!pid) |
| 3949 | p = current; |
| 3950 | else { |
| 3951 | p = find_task_by_vpid(pid); |
| 3952 | if (!p) |
| 3953 | goto err_unlock; |
| 3954 | } |
| 3955 | |
| 3956 | ret = -EPERM; |
| 3957 | if (!ptrace_may_access(p, PTRACE_MODE_READ_REALCREDS)) |
| 3958 | goto err_unlock; |
| 3959 | |
| 3960 | head = p->compat_robust_list; |
| 3961 | rcu_read_unlock(); |
| 3962 | |
| 3963 | if (put_user(sizeof(*head), len_ptr)) |
| 3964 | return -EFAULT; |
| 3965 | return put_user(ptr_to_compat(head), head_ptr); |
| 3966 | |
| 3967 | err_unlock: |
| 3968 | rcu_read_unlock(); |
| 3969 | |
| 3970 | return ret; |
| 3971 | } |
Arnd Bergmann | bec2f7c | 2018-04-17 17:23:35 +0200 | [diff] [blame] | 3972 | #endif /* CONFIG_COMPAT */ |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 3973 | |
Arnd Bergmann | bec2f7c | 2018-04-17 17:23:35 +0200 | [diff] [blame] | 3974 | #ifdef CONFIG_COMPAT_32BIT_TIME |
Arnd Bergmann | 8dabe72 | 2019-01-07 00:33:08 +0100 | [diff] [blame] | 3975 | SYSCALL_DEFINE6(futex_time32, u32 __user *, uaddr, int, op, u32, val, |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 3976 | struct old_timespec32 __user *, utime, u32 __user *, uaddr2, |
| 3977 | u32, val3) |
| 3978 | { |
Arnd Bergmann | bec2f7c | 2018-04-17 17:23:35 +0200 | [diff] [blame] | 3979 | struct timespec64 ts; |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 3980 | ktime_t t, *tp = NULL; |
| 3981 | int val2 = 0; |
| 3982 | int cmd = op & FUTEX_CMD_MASK; |
| 3983 | |
| 3984 | if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI || |
| 3985 | cmd == FUTEX_WAIT_BITSET || |
| 3986 | cmd == FUTEX_WAIT_REQUEUE_PI)) { |
Arnd Bergmann | bec2f7c | 2018-04-17 17:23:35 +0200 | [diff] [blame] | 3987 | if (get_old_timespec32(&ts, utime)) |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 3988 | return -EFAULT; |
Arnd Bergmann | bec2f7c | 2018-04-17 17:23:35 +0200 | [diff] [blame] | 3989 | if (!timespec64_valid(&ts)) |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 3990 | return -EINVAL; |
| 3991 | |
Arnd Bergmann | bec2f7c | 2018-04-17 17:23:35 +0200 | [diff] [blame] | 3992 | t = timespec64_to_ktime(ts); |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 3993 | if (cmd == FUTEX_WAIT) |
| 3994 | t = ktime_add_safe(ktime_get(), t); |
Andrei Vagin | c2f7d08 | 2020-10-15 09:00:19 -0700 | [diff] [blame^] | 3995 | else if (!(op & FUTEX_CLOCK_REALTIME)) |
| 3996 | t = timens_ktime_to_host(CLOCK_MONOTONIC, t); |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 3997 | tp = &t; |
| 3998 | } |
| 3999 | if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE || |
| 4000 | cmd == FUTEX_CMP_REQUEUE_PI || cmd == FUTEX_WAKE_OP) |
| 4001 | val2 = (int) (unsigned long) utime; |
| 4002 | |
| 4003 | return do_futex(uaddr, op, val, tp, uaddr2, val2, val3); |
| 4004 | } |
Arnd Bergmann | bec2f7c | 2018-04-17 17:23:35 +0200 | [diff] [blame] | 4005 | #endif /* CONFIG_COMPAT_32BIT_TIME */ |
Arnd Bergmann | 04e7712 | 2018-04-17 16:31:07 +0200 | [diff] [blame] | 4006 | |
Heiko Carstens | 03b8c7b | 2014-03-02 13:09:47 +0100 | [diff] [blame] | 4007 | static void __init futex_detect_cmpxchg(void) |
| 4008 | { |
| 4009 | #ifndef CONFIG_HAVE_FUTEX_CMPXCHG |
| 4010 | u32 curval; |
| 4011 | |
| 4012 | /* |
| 4013 | * This will fail and we want it. Some arch implementations do |
| 4014 | * runtime detection of the futex_atomic_cmpxchg_inatomic() |
| 4015 | * functionality. We want to know that before we call in any |
| 4016 | * of the complex code paths. Also we want to prevent |
| 4017 | * registration of robust lists in that case. NULL is |
| 4018 | * guaranteed to fault and we get -EFAULT on functional |
| 4019 | * implementation, the non-functional ones will return |
| 4020 | * -ENOSYS. |
| 4021 | */ |
| 4022 | if (cmpxchg_futex_value_locked(&curval, NULL, 0, 0) == -EFAULT) |
| 4023 | futex_cmpxchg_enabled = 1; |
| 4024 | #endif |
| 4025 | } |
| 4026 | |
Benjamin Herrenschmidt | f6d107f | 2008-03-27 14:52:15 +1100 | [diff] [blame] | 4027 | static int __init futex_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4028 | { |
Heiko Carstens | 63b1a81 | 2014-01-16 14:54:50 +0100 | [diff] [blame] | 4029 | unsigned int futex_shift; |
Davidlohr Bueso | a52b89e | 2014-01-12 15:31:23 -0800 | [diff] [blame] | 4030 | unsigned long i; |
| 4031 | |
| 4032 | #if CONFIG_BASE_SMALL |
| 4033 | futex_hashsize = 16; |
| 4034 | #else |
| 4035 | futex_hashsize = roundup_pow_of_two(256 * num_possible_cpus()); |
| 4036 | #endif |
| 4037 | |
| 4038 | futex_queues = alloc_large_system_hash("futex", sizeof(*futex_queues), |
| 4039 | futex_hashsize, 0, |
| 4040 | futex_hashsize < 256 ? HASH_SMALL : 0, |
Heiko Carstens | 63b1a81 | 2014-01-16 14:54:50 +0100 | [diff] [blame] | 4041 | &futex_shift, NULL, |
| 4042 | futex_hashsize, futex_hashsize); |
| 4043 | futex_hashsize = 1UL << futex_shift; |
Heiko Carstens | 03b8c7b | 2014-03-02 13:09:47 +0100 | [diff] [blame] | 4044 | |
| 4045 | futex_detect_cmpxchg(); |
Thomas Gleixner | a0c1e90 | 2008-02-23 15:23:57 -0800 | [diff] [blame] | 4046 | |
Davidlohr Bueso | a52b89e | 2014-01-12 15:31:23 -0800 | [diff] [blame] | 4047 | for (i = 0; i < futex_hashsize; i++) { |
Linus Torvalds | 11d4616 | 2014-03-20 22:11:17 -0700 | [diff] [blame] | 4048 | atomic_set(&futex_queues[i].waiters, 0); |
Dima Zavin | 732375c | 2011-07-07 17:27:59 -0700 | [diff] [blame] | 4049 | plist_head_init(&futex_queues[i].chain); |
Thomas Gleixner | 3e4ab74 | 2008-02-23 15:23:55 -0800 | [diff] [blame] | 4050 | spin_lock_init(&futex_queues[i].lock); |
| 4051 | } |
| 4052 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4053 | return 0; |
| 4054 | } |
Yang Yang | 25f71d1 | 2016-12-30 16:17:55 +0800 | [diff] [blame] | 4055 | core_initcall(futex_init); |