Merge tag 'drm-misc-fixes-2020-11-12' of git://anongit.freedesktop.org/drm/drm-misc...
[linux-2.6-microblaze.git] / kernel / futex.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
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  *
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  *
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  *
20  *  PRIVATE futexes by Eric Dumazet
21  *  Copyright (C) 2007 Eric Dumazet <dada1@cosmosbay.com>
22  *
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  *
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!"
33  */
34 #include <linux/compat.h>
35 #include <linux/jhash.h>
36 #include <linux/pagemap.h>
37 #include <linux/syscalls.h>
38 #include <linux/hugetlb.h>
39 #include <linux/freezer.h>
40 #include <linux/memblock.h>
41 #include <linux/fault-inject.h>
42 #include <linux/time_namespace.h>
43
44 #include <asm/futex.h>
45
46 #include "locking/rtmutex_common.h"
47
48 /*
49  * READ this before attempting to hack on futexes!
50  *
51  * Basic futex operation and ordering guarantees
52  * =============================================
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
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.
60  *
61  * The waker side modifies the user space value of the futex and calls
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.
65  *
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:
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.
91  *
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
97  * val = *futex;
98  * sys_futex(WAIT, futex, val);
99  *   futex_wait(futex, val);
100  *
101  *   waiters++; (a)
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)
112  *   if (uval == val)
113  *     queue();
114  *     unlock(hash_bucket(futex));
115  *     schedule();                         if (waiters)
116  *                                           lock(hash_bucket(futex));
117  *   else                                    wake_waiters(futex);
118  *     waiters--; (b)                        unlock(hash_bucket(futex));
119  *
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
122  * to futex and the waiters read (see hb_waiters_pending()).
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.
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.
146  */
147
148 #ifdef CONFIG_HAVE_FUTEX_CMPXCHG
149 #define futex_cmpxchg_enabled 1
150 #else
151 static int  __read_mostly futex_cmpxchg_enabled;
152 #endif
153
154 /*
155  * Futex flags used to encode options to functions and preserve them across
156  * restarts.
157  */
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
167 #define FLAGS_CLOCKRT           0x02
168 #define FLAGS_HAS_TIMEOUT       0x04
169
170 /*
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;
186         refcount_t refcount;
187
188         union futex_key key;
189 } __randomize_layout;
190
191 /**
192  * struct futex_q - The hashed futex queue entry, one per waiting task
193  * @list:               priority-sorted list of tasks waiting on this futex
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  *
202  * We use this hashed waitqueue, instead of a normal wait_queue_entry_t, so
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.
206  * It is considered woken when plist_node_empty(&q->list) || q->lock_ptr == 0.
207  * The order of wakeup is always to make the first condition true, then
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().
212  */
213 struct futex_q {
214         struct plist_node list;
215
216         struct task_struct *task;
217         spinlock_t *lock_ptr;
218         union futex_key key;
219         struct futex_pi_state *pi_state;
220         struct rt_mutex_waiter *rt_waiter;
221         union futex_key *requeue_pi_key;
222         u32 bitset;
223 } __randomize_layout;
224
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
231 /*
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.
235  */
236 struct futex_hash_bucket {
237         atomic_t waiters;
238         spinlock_t lock;
239         struct plist_head chain;
240 } ____cacheline_aligned_in_smp;
241
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)
253
254
255 /*
256  * Fault injections for futexes.
257  */
258 #ifdef CONFIG_FAIL_FUTEX
259
260 static struct {
261         struct fault_attr attr;
262
263         bool ignore_private;
264 } fail_futex = {
265         .attr = FAULT_ATTR_INITIALIZER,
266         .ignore_private = false,
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
275 static bool should_fail_futex(bool fshared)
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
295         debugfs_create_bool("ignore-private", mode, dir,
296                             &fail_futex.ignore_private);
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
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
317 /*
318  * Reflects a new waiter being added to the waitqueue.
319  */
320 static inline void hb_waiters_inc(struct futex_hash_bucket *hb)
321 {
322 #ifdef CONFIG_SMP
323         atomic_inc(&hb->waiters);
324         /*
325          * Full barrier (A), see the ordering comment above.
326          */
327         smp_mb__after_atomic();
328 #endif
329 }
330
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
345         /*
346          * Full barrier (B), see the ordering comment above.
347          */
348         smp_mb();
349         return atomic_read(&hb->waiters);
350 #else
351         return 1;
352 #endif
353 }
354
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.
361  */
362 static struct futex_hash_bucket *hash_futex(union futex_key *key)
363 {
364         u32 hash = jhash2((u32 *)key, offsetof(typeof(*key), both.offset) / 4,
365                           key->both.offset);
366
367         return &futex_queues[hash & (futex_hashsize - 1)];
368 }
369
370
371 /**
372  * match_futex - Check whether two futex keys are equal
373  * @key1:       Pointer to key1
374  * @key2:       Pointer to key2
375  *
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 {
380         return (key1 && key2
381                 && key1->both.word == key2->both.word
382                 && key1->both.ptr == key2->both.ptr
383                 && key1->both.offset == key2->both.offset);
384 }
385
386 enum futex_access {
387         FUTEX_READ,
388         FUTEX_WRITE
389 };
390
391 /**
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
408         hrtimer_init_sleeper_on_stack(timeout, (flags & FLAGS_CLOCKRT) ?
409                                       CLOCK_REALTIME : CLOCK_MONOTONIC,
410                                       HRTIMER_MODE_ABS);
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
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
460 /**
461  * get_futex_key() - Get parameters which are the keys for a futex
462  * @uaddr:      virtual address of the futex
463  * @fshared:    false for a PROCESS_PRIVATE futex, true for PROCESS_SHARED
464  * @key:        address where result is stored.
465  * @rw:         mapping needs to be read/write (values: FUTEX_READ,
466  *              FUTEX_WRITE)
467  *
468  * Return: a negative error code or 0
469  *
470  * The key words are stored in @key on success.
471  *
472  * For shared mappings (when @fshared), the key is:
473  *
474  *   ( inode->i_sequence, page->index, offset_within_page )
475  *
476  * [ also see get_inode_sequence_number() ]
477  *
478  * For private mappings (or when !@fshared), the key is:
479  *
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.
484  *
485  * lock_page() might sleep, the caller should not hold a spinlock.
486  */
487 static int get_futex_key(u32 __user *uaddr, bool fshared, union futex_key *key,
488                          enum futex_access rw)
489 {
490         unsigned long address = (unsigned long)uaddr;
491         struct mm_struct *mm = current->mm;
492         struct page *page, *tail;
493         struct address_space *mapping;
494         int err, ro = 0;
495
496         /*
497          * The futex address must be "naturally" aligned.
498          */
499         key->both.offset = address % PAGE_SIZE;
500         if (unlikely((address % sizeof(u32)) != 0))
501                 return -EINVAL;
502         address -= key->both.offset;
503
504         if (unlikely(!access_ok(uaddr, sizeof(u32))))
505                 return -EFAULT;
506
507         if (unlikely(should_fail_futex(fshared)))
508                 return -EFAULT;
509
510         /*
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) {
518                 key->private.mm = mm;
519                 key->private.address = address;
520                 return 0;
521         }
522
523 again:
524         /* Ignore any VERIFY_READ mapping (futex common case) */
525         if (unlikely(should_fail_futex(true)))
526                 return -EFAULT;
527
528         err = get_user_pages_fast(address, 1, FOLL_WRITE, &page);
529         /*
530          * If write access is not required (eg. FUTEX_WAIT), try
531          * and get read-only access.
532          */
533         if (err == -EFAULT && rw == FUTEX_READ) {
534                 err = get_user_pages_fast(address, 1, 0, &page);
535                 ro = 1;
536         }
537         if (err < 0)
538                 return err;
539         else
540                 err = 0;
541
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
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.
559          */
560         tail = page;
561         page = compound_head(page);
562         mapping = READ_ONCE(page->mapping);
563
564         /*
565          * If page->mapping is NULL, then it cannot be a PageAnon
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:
577          * an unlikely race, but we do need to retry for page->mapping.
578          */
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;
589                 unlock_page(page);
590                 put_page(page);
591
592                 if (shmem_swizzled)
593                         goto again;
594
595                 return -EFAULT;
596         }
597
598         /*
599          * Private mappings are handled in a simple way.
600          *
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          *
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
606          * the object not the particular process.
607          */
608         if (PageAnon(page)) {
609                 /*
610                  * A RO anonymous page will never change and thus doesn't make
611                  * sense for futex operations.
612                  */
613                 if (unlikely(should_fail_futex(true)) || ro) {
614                         err = -EFAULT;
615                         goto out;
616                 }
617
618                 key->both.offset |= FUT_OFF_MMSHARED; /* ref taken on mm */
619                 key->private.mm = mm;
620                 key->private.address = address;
621
622         } else {
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
653                 key->both.offset |= FUT_OFF_INODE; /* inode-based key */
654                 key->shared.i_seq = get_inode_sequence_number(inode);
655                 key->shared.pgoff = basepage_index(tail);
656                 rcu_read_unlock();
657         }
658
659 out:
660         put_page(page);
661         return err;
662 }
663
664 /**
665  * fault_in_user_writeable() - Fault in user address and verify RW access
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  *
671  * We have no generic implementation of a non-destructive write to the
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 {
678         struct mm_struct *mm = current->mm;
679         int ret;
680
681         mmap_read_lock(mm);
682         ret = fixup_user_fault(mm, (unsigned long)uaddr,
683                                FAULT_FLAG_WRITE, NULL);
684         mmap_read_unlock(mm);
685
686         return ret < 0 ? ret : 0;
687 }
688
689 /**
690  * futex_top_waiter() - Return the highest priority waiter on a futex
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)
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
708 static int cmpxchg_futex_value_locked(u32 *curval, u32 __user *uaddr,
709                                       u32 uval, u32 newval)
710 {
711         int ret;
712
713         pagefault_disable();
714         ret = futex_atomic_cmpxchg_inatomic(curval, uaddr, uval, newval);
715         pagefault_enable();
716
717         return ret;
718 }
719
720 static int get_futex_value_locked(u32 *dest, u32 __user *from)
721 {
722         int ret;
723
724         pagefault_disable();
725         ret = __get_user(*dest, from);
726         pagefault_enable();
727
728         return ret ? -EFAULT : 0;
729 }
730
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
742         pi_state = kzalloc(sizeof(*pi_state), GFP_KERNEL);
743
744         if (!pi_state)
745                 return -ENOMEM;
746
747         INIT_LIST_HEAD(&pi_state->list);
748         /* pi_mutex gets initialized later */
749         pi_state->owner = NULL;
750         refcount_set(&pi_state->refcount, 1);
751         pi_state->key = FUTEX_KEY_INIT;
752
753         current->pi_state_cache = pi_state;
754
755         return 0;
756 }
757
758 static struct futex_pi_state *alloc_pi_state(void)
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
768 static void get_pi_state(struct futex_pi_state *pi_state)
769 {
770         WARN_ON_ONCE(!refcount_inc_not_zero(&pi_state->refcount));
771 }
772
773 /*
774  * Drops a reference to the pi_state object and frees or caches it
775  * when the last reference is gone.
776  */
777 static void put_pi_state(struct futex_pi_state *pi_state)
778 {
779         if (!pi_state)
780                 return;
781
782         if (!refcount_dec_and_test(&pi_state->refcount))
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) {
790                 struct task_struct *owner;
791
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);
801         }
802
803         if (current->pi_state_cache) {
804                 kfree(pi_state);
805         } else {
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;
812                 refcount_set(&pi_state->refcount, 1);
813                 current->pi_state_cache = pi_state;
814         }
815 }
816
817 #ifdef CONFIG_FUTEX_PI
818
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  */
824 static void exit_pi_state_list(struct task_struct *curr)
825 {
826         struct list_head *next, *head = &curr->pi_state_list;
827         struct futex_pi_state *pi_state;
828         struct futex_hash_bucket *hb;
829         union futex_key key = FUTEX_KEY_INIT;
830
831         if (!futex_cmpxchg_enabled)
832                 return;
833         /*
834          * We are a ZOMBIE and nobody can enqueue itself on
835          * pi_state_list anymore, but we have to be careful
836          * versus waiters unqueueing themselves:
837          */
838         raw_spin_lock_irq(&curr->pi_lock);
839         while (!list_empty(head)) {
840                 next = head->next;
841                 pi_state = list_entry(next, struct futex_pi_state, list);
842                 key = pi_state->key;
843                 hb = hash_futex(&key);
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                  */
855                 if (!refcount_inc_not_zero(&pi_state->refcount)) {
856                         raw_spin_unlock_irq(&curr->pi_lock);
857                         cpu_relax();
858                         raw_spin_lock_irq(&curr->pi_lock);
859                         continue;
860                 }
861                 raw_spin_unlock_irq(&curr->pi_lock);
862
863                 spin_lock(&hb->lock);
864                 raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock);
865                 raw_spin_lock(&curr->pi_lock);
866                 /*
867                  * We dropped the pi-lock, so re-check whether this
868                  * task still owns the PI-state:
869                  */
870                 if (head->next != next) {
871                         /* retain curr->pi_lock for the loop invariant */
872                         raw_spin_unlock(&pi_state->pi_mutex.wait_lock);
873                         spin_unlock(&hb->lock);
874                         put_pi_state(pi_state);
875                         continue;
876                 }
877
878                 WARN_ON(pi_state->owner != curr);
879                 WARN_ON(list_empty(&pi_state->list));
880                 list_del_init(&pi_state->list);
881                 pi_state->owner = NULL;
882
883                 raw_spin_unlock(&curr->pi_lock);
884                 raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
885                 spin_unlock(&hb->lock);
886
887                 rt_mutex_futex_unlock(&pi_state->pi_mutex);
888                 put_pi_state(pi_state);
889
890                 raw_spin_lock_irq(&curr->pi_lock);
891         }
892         raw_spin_unlock_irq(&curr->pi_lock);
893 }
894 #else
895 static inline void exit_pi_state_list(struct task_struct *curr) { }
896 #endif
897
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
920  *      came here due to a stale FUTEX_WAITERS/FUTEX_OWNER_DIED bit.
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.
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  *
979  */
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  */
986 static int attach_to_pi_state(u32 __user *uaddr, u32 uval,
987                               struct futex_pi_state *pi_state,
988                               struct futex_pi_state **ps)
989 {
990         pid_t pid = uval & FUTEX_TID_MASK;
991         u32 uval2;
992         int ret;
993
994         /*
995          * Userspace might have messed up non-PI and PI futexes [3]
996          */
997         if (unlikely(!pi_state))
998                 return -EINVAL;
999
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.
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.
1011          */
1012         WARN_ON(!refcount_read(&pi_state->refcount));
1013
1014         /*
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         /*
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)
1047                                 goto out_einval;
1048                         /*
1049                          * Take a ref on the state and return success. [4]
1050                          */
1051                         goto out_attach;
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)
1063                         goto out_attach;
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)
1070                         goto out_einval;
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))
1079                 goto out_einval;
1080
1081 out_attach:
1082         get_pi_state(pi_state);
1083         raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
1084         *ps = pi_state;
1085         return 0;
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;
1102 }
1103
1104 /**
1105  * wait_for_owner_exiting - Block until the owner has exited
1106  * @ret: owner's current futex lock status
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
1135 static int handle_exit_race(u32 __user *uaddr, u32 uval,
1136                             struct task_struct *tsk)
1137 {
1138         u32 uval2;
1139
1140         /*
1141          * If the futex exit state is not yet FUTEX_STATE_DEAD, tell the
1142          * caller that the alleged owner is busy.
1143          */
1144         if (tsk && tsk->futex_state != FUTEX_STATE_DEAD)
1145                 return -EBUSY;
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();
1163          *  tsk->futex_state =               } else {
1164          *      FUTEX_STATE_DEAD;              if (tsk->futex_state !=
1165          *                                        FUTEX_STATE_DEAD)
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
1191 /*
1192  * Lookup the task for the TID provided from user space and attach to
1193  * it after doing proper sanity checks.
1194  */
1195 static int attach_to_pi_owner(u32 __user *uaddr, u32 uval, union futex_key *key,
1196                               struct futex_pi_state **ps,
1197                               struct task_struct **exiting)
1198 {
1199         pid_t pid = uval & FUTEX_TID_MASK;
1200         struct futex_pi_state *pi_state;
1201         struct task_struct *p;
1202
1203         /*
1204          * We are the first waiter - try to look up the real owner and attach
1205          * the new pi_state to it, but bail out when TID = 0 [1]
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
1209          */
1210         if (!pid)
1211                 return -EAGAIN;
1212         p = find_get_task_by_vpid(pid);
1213         if (!p)
1214                 return handle_exit_race(uaddr, uval, NULL);
1215
1216         if (unlikely(p->flags & PF_KTHREAD)) {
1217                 put_task_struct(p);
1218                 return -EPERM;
1219         }
1220
1221         /*
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:
1225          */
1226         raw_spin_lock_irq(&p->pi_lock);
1227         if (unlikely(p->futex_state != FUTEX_STATE_OK)) {
1228                 /*
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:
1232                  */
1233                 int ret = handle_exit_race(uaddr, uval, p);
1234
1235                 raw_spin_unlock_irq(&p->pi_lock);
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);
1249                 return ret;
1250         }
1251
1252         /*
1253          * No existing pi state. First waiter. [2]
1254          *
1255          * This creates pi_state, we have hb->lock held, this means nothing can
1256          * observe this state, wait_lock is irrelevant.
1257          */
1258         pi_state = alloc_pi_state();
1259
1260         /*
1261          * Initialize the pi_mutex in locked state and make @p
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: */
1267         pi_state->key = *key;
1268
1269         WARN_ON(!list_empty(&pi_state->list));
1270         list_add(&pi_state->list, &p->pi_state_list);
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          */
1275         pi_state->owner = p;
1276         raw_spin_unlock_irq(&p->pi_lock);
1277
1278         put_task_struct(p);
1279
1280         *ps = pi_state;
1281
1282         return 0;
1283 }
1284
1285 static int lookup_pi_state(u32 __user *uaddr, u32 uval,
1286                            struct futex_hash_bucket *hb,
1287                            union futex_key *key, struct futex_pi_state **ps,
1288                            struct task_struct **exiting)
1289 {
1290         struct futex_q *top_waiter = futex_top_waiter(hb, key);
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          */
1296         if (top_waiter)
1297                 return attach_to_pi_state(uaddr, uval, top_waiter->pi_state, ps);
1298
1299         /*
1300          * We are the first waiter - try to look up the owner based on
1301          * @uval and attach to it.
1302          */
1303         return attach_to_pi_owner(uaddr, uval, key, ps, exiting);
1304 }
1305
1306 static int lock_pi_update_atomic(u32 __user *uaddr, u32 uval, u32 newval)
1307 {
1308         int err;
1309         u32 curval;
1310
1311         if (unlikely(should_fail_futex(true)))
1312                 return -EFAULT;
1313
1314         err = cmpxchg_futex_value_locked(&curval, uaddr, uval, newval);
1315         if (unlikely(err))
1316                 return err;
1317
1318         /* If user space value changed, let the caller retry */
1319         return curval != uval ? -EAGAIN : 0;
1320 }
1321
1322 /**
1323  * futex_lock_pi_atomic() - Atomic work required to acquire a pi aware futex
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.
1331  * @exiting:            Pointer to store the task pointer of the owner task
1332  *                      which is in the middle of exiting
1333  * @set_waiters:        force setting the FUTEX_WAITERS bit (1) or not (0)
1334  *
1335  * Return:
1336  *  -  0 - ready to wait;
1337  *  -  1 - acquired the lock;
1338  *  - <0 - error
1339  *
1340  * The hb->lock and futex_key refs shall be held by the caller.
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.
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,
1349                                 struct task_struct *task,
1350                                 struct task_struct **exiting,
1351                                 int set_waiters)
1352 {
1353         u32 uval, newval, vpid = task_pid_vnr(task);
1354         struct futex_q *top_waiter;
1355         int ret;
1356
1357         /*
1358          * Read the user space value first so we can validate a few
1359          * things before proceeding further.
1360          */
1361         if (get_futex_value_locked(&uval, uaddr))
1362                 return -EFAULT;
1363
1364         if (unlikely(should_fail_futex(true)))
1365                 return -EFAULT;
1366
1367         /*
1368          * Detect deadlocks.
1369          */
1370         if ((unlikely((uval & FUTEX_TID_MASK) == vpid)))
1371                 return -EDEADLK;
1372
1373         if ((unlikely(should_fail_futex(true))))
1374                 return -EDEADLK;
1375
1376         /*
1377          * Lookup existing state first. If it exists, try to attach to
1378          * its pi_state.
1379          */
1380         top_waiter = futex_top_waiter(hb, key);
1381         if (top_waiter)
1382                 return attach_to_pi_state(uaddr, uval, top_waiter->pi_state, ps);
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)) {
1391                 /*
1392                  * We take over the futex. No other waiters and the user space
1393                  * TID is 0. We preserve the owner died bit.
1394                  */
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;
1405         }
1406
1407         /*
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.
1411          */
1412         newval = uval | FUTEX_WAITERS;
1413         ret = lock_pi_update_atomic(uaddr, uval, newval);
1414         if (ret)
1415                 return ret;
1416         /*
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.
1420          */
1421         return attach_to_pi_owner(uaddr, newval, key, ps, exiting);
1422 }
1423
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
1434         if (WARN_ON_SMP(!q->lock_ptr) || WARN_ON(plist_node_empty(&q->list)))
1435                 return;
1436         lockdep_assert_held(q->lock_ptr);
1437
1438         hb = container_of(q->lock_ptr, struct futex_hash_bucket, lock);
1439         plist_del(&q->list, &hb->chain);
1440         hb_waiters_dec(hb);
1441 }
1442
1443 /*
1444  * The hash bucket lock must be held when this is called.
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.
1448  */
1449 static void mark_wake_futex(struct wake_q_head *wake_q, struct futex_q *q)
1450 {
1451         struct task_struct *p = q->task;
1452
1453         if (WARN(q->pi_state || q->rt_waiter, "refusing to wake PI futex\n"))
1454                 return;
1455
1456         get_task_struct(p);
1457         __unqueue_futex(q);
1458         /*
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().
1464          */
1465         smp_store_release(&q->lock_ptr, NULL);
1466
1467         /*
1468          * Queue the task for later wakeup for after we've released
1469          * the hb->lock.
1470          */
1471         wake_q_add_safe(wake_q, p);
1472 }
1473
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)
1478 {
1479         u32 curval, newval;
1480         struct task_struct *new_owner;
1481         bool postunlock = false;
1482         DEFINE_WAKE_Q(wake_q);
1483         int ret = 0;
1484
1485         new_owner = rt_mutex_next_owner(&pi_state->pi_mutex);
1486         if (WARN_ON_ONCE(!new_owner)) {
1487                 /*
1488                  * As per the comment in futex_unlock_pi() this should not happen.
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;
1497         }
1498
1499         /*
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.
1503          */
1504         newval = FUTEX_WAITERS | task_pid_vnr(new_owner);
1505
1506         if (unlikely(should_fail_futex(true))) {
1507                 ret = -EFAULT;
1508                 goto out_unlock;
1509         }
1510
1511         ret = cmpxchg_futex_value_locked(&curval, uaddr, uval, newval);
1512         if (!ret && (curval != uval)) {
1513                 /*
1514                  * If a unconditional UNLOCK_PI operation (user space did not
1515                  * try the TID->0 transition) raced with a waiter setting the
1516                  * FUTEX_WAITERS flag between get_user() and locking the hash
1517                  * bucket lock, retry the operation.
1518                  */
1519                 if ((FUTEX_TID_MASK & curval) == uval)
1520                         ret = -EAGAIN;
1521                 else
1522                         ret = -EINVAL;
1523         }
1524
1525         if (ret)
1526                 goto out_unlock;
1527
1528         /*
1529          * This is a point of no return; once we modify the uval there is no
1530          * going back and subsequent operations must not fail.
1531          */
1532
1533         raw_spin_lock(&pi_state->owner->pi_lock);
1534         WARN_ON(list_empty(&pi_state->list));
1535         list_del_init(&pi_state->list);
1536         raw_spin_unlock(&pi_state->owner->pi_lock);
1537
1538         raw_spin_lock(&new_owner->pi_lock);
1539         WARN_ON(!list_empty(&pi_state->list));
1540         list_add(&pi_state->list, &new_owner->pi_state_list);
1541         pi_state->owner = new_owner;
1542         raw_spin_unlock(&new_owner->pi_lock);
1543
1544         postunlock = __rt_mutex_futex_unlock(&pi_state->pi_mutex, &wake_q);
1545
1546 out_unlock:
1547         raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
1548
1549         if (postunlock)
1550                 rt_mutex_postunlock(&wake_q);
1551
1552         return ret;
1553 }
1554
1555 /*
1556  * Express the locking dependencies for lockdep:
1557  */
1558 static inline void
1559 double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
1560 {
1561         if (hb1 <= hb2) {
1562                 spin_lock(&hb1->lock);
1563                 if (hb1 < hb2)
1564                         spin_lock_nested(&hb2->lock, SINGLE_DEPTH_NESTING);
1565         } else { /* hb1 > hb2 */
1566                 spin_lock(&hb2->lock);
1567                 spin_lock_nested(&hb1->lock, SINGLE_DEPTH_NESTING);
1568         }
1569 }
1570
1571 static inline void
1572 double_unlock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2)
1573 {
1574         spin_unlock(&hb1->lock);
1575         if (hb1 != hb2)
1576                 spin_unlock(&hb2->lock);
1577 }
1578
1579 /*
1580  * Wake up waiters matching bitset queued on this futex (uaddr).
1581  */
1582 static int
1583 futex_wake(u32 __user *uaddr, unsigned int flags, int nr_wake, u32 bitset)
1584 {
1585         struct futex_hash_bucket *hb;
1586         struct futex_q *this, *next;
1587         union futex_key key = FUTEX_KEY_INIT;
1588         int ret;
1589         DEFINE_WAKE_Q(wake_q);
1590
1591         if (!bitset)
1592                 return -EINVAL;
1593
1594         ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, FUTEX_READ);
1595         if (unlikely(ret != 0))
1596                 return ret;
1597
1598         hb = hash_futex(&key);
1599
1600         /* Make sure we really have tasks to wakeup */
1601         if (!hb_waiters_pending(hb))
1602                 return ret;
1603
1604         spin_lock(&hb->lock);
1605
1606         plist_for_each_entry_safe(this, next, &hb->chain, list) {
1607                 if (match_futex (&this->key, &key)) {
1608                         if (this->pi_state || this->rt_waiter) {
1609                                 ret = -EINVAL;
1610                                 break;
1611                         }
1612
1613                         /* Check if one of the bits is set in both bitsets */
1614                         if (!(this->bitset & bitset))
1615                                 continue;
1616
1617                         mark_wake_futex(&wake_q, this);
1618                         if (++ret >= nr_wake)
1619                                 break;
1620                 }
1621         }
1622
1623         spin_unlock(&hb->lock);
1624         wake_up_q(&wake_q);
1625         return ret;
1626 }
1627
1628 static int futex_atomic_op_inuser(unsigned int encoded_op, u32 __user *uaddr)
1629 {
1630         unsigned int op =         (encoded_op & 0x70000000) >> 28;
1631         unsigned int cmp =        (encoded_op & 0x0f000000) >> 24;
1632         int oparg = sign_extend32((encoded_op & 0x00fff000) >> 12, 11);
1633         int cmparg = sign_extend32(encoded_op & 0x00000fff, 11);
1634         int oldval, ret;
1635
1636         if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28)) {
1637                 if (oparg < 0 || oparg > 31) {
1638                         char comm[sizeof(current->comm)];
1639                         /*
1640                          * kill this print and return -EINVAL when userspace
1641                          * is sane again
1642                          */
1643                         pr_info_ratelimited("futex_wake_op: %s tries to shift op by %d; fix this program\n",
1644                                         get_task_comm(comm, current), oparg);
1645                         oparg &= 31;
1646                 }
1647                 oparg = 1 << oparg;
1648         }
1649
1650         pagefault_disable();
1651         ret = arch_futex_atomic_op_inuser(op, oparg, &oldval, uaddr);
1652         pagefault_enable();
1653         if (ret)
1654                 return ret;
1655
1656         switch (cmp) {
1657         case FUTEX_OP_CMP_EQ:
1658                 return oldval == cmparg;
1659         case FUTEX_OP_CMP_NE:
1660                 return oldval != cmparg;
1661         case FUTEX_OP_CMP_LT:
1662                 return oldval < cmparg;
1663         case FUTEX_OP_CMP_GE:
1664                 return oldval >= cmparg;
1665         case FUTEX_OP_CMP_LE:
1666                 return oldval <= cmparg;
1667         case FUTEX_OP_CMP_GT:
1668                 return oldval > cmparg;
1669         default:
1670                 return -ENOSYS;
1671         }
1672 }
1673
1674 /*
1675  * Wake up all waiters hashed on the physical page that is mapped
1676  * to this virtual address:
1677  */
1678 static int
1679 futex_wake_op(u32 __user *uaddr1, unsigned int flags, u32 __user *uaddr2,
1680               int nr_wake, int nr_wake2, int op)
1681 {
1682         union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
1683         struct futex_hash_bucket *hb1, *hb2;
1684         struct futex_q *this, *next;
1685         int ret, op_ret;
1686         DEFINE_WAKE_Q(wake_q);
1687
1688 retry:
1689         ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, FUTEX_READ);
1690         if (unlikely(ret != 0))
1691                 return ret;
1692         ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, FUTEX_WRITE);
1693         if (unlikely(ret != 0))
1694                 return ret;
1695
1696         hb1 = hash_futex(&key1);
1697         hb2 = hash_futex(&key2);
1698
1699 retry_private:
1700         double_lock_hb(hb1, hb2);
1701         op_ret = futex_atomic_op_inuser(op, uaddr2);
1702         if (unlikely(op_ret < 0)) {
1703                 double_unlock_hb(hb1, hb2);
1704
1705                 if (!IS_ENABLED(CONFIG_MMU) ||
1706                     unlikely(op_ret != -EFAULT && op_ret != -EAGAIN)) {
1707                         /*
1708                          * we don't get EFAULT from MMU faults if we don't have
1709                          * an MMU, but we might get them from range checking
1710                          */
1711                         ret = op_ret;
1712                         return ret;
1713                 }
1714
1715                 if (op_ret == -EFAULT) {
1716                         ret = fault_in_user_writeable(uaddr2);
1717                         if (ret)
1718                                 return ret;
1719                 }
1720
1721                 if (!(flags & FLAGS_SHARED)) {
1722                         cond_resched();
1723                         goto retry_private;
1724                 }
1725
1726                 cond_resched();
1727                 goto retry;
1728         }
1729
1730         plist_for_each_entry_safe(this, next, &hb1->chain, list) {
1731                 if (match_futex (&this->key, &key1)) {
1732                         if (this->pi_state || this->rt_waiter) {
1733                                 ret = -EINVAL;
1734                                 goto out_unlock;
1735                         }
1736                         mark_wake_futex(&wake_q, this);
1737                         if (++ret >= nr_wake)
1738                                 break;
1739                 }
1740         }
1741
1742         if (op_ret > 0) {
1743                 op_ret = 0;
1744                 plist_for_each_entry_safe(this, next, &hb2->chain, list) {
1745                         if (match_futex (&this->key, &key2)) {
1746                                 if (this->pi_state || this->rt_waiter) {
1747                                         ret = -EINVAL;
1748                                         goto out_unlock;
1749                                 }
1750                                 mark_wake_futex(&wake_q, this);
1751                                 if (++op_ret >= nr_wake2)
1752                                         break;
1753                         }
1754                 }
1755                 ret += op_ret;
1756         }
1757
1758 out_unlock:
1759         double_unlock_hb(hb1, hb2);
1760         wake_up_q(&wake_q);
1761         return ret;
1762 }
1763
1764 /**
1765  * requeue_futex() - Requeue a futex_q from one hb to another
1766  * @q:          the futex_q to requeue
1767  * @hb1:        the source hash_bucket
1768  * @hb2:        the target hash_bucket
1769  * @key2:       the new key for the requeued futex_q
1770  */
1771 static inline
1772 void requeue_futex(struct futex_q *q, struct futex_hash_bucket *hb1,
1773                    struct futex_hash_bucket *hb2, union futex_key *key2)
1774 {
1775
1776         /*
1777          * If key1 and key2 hash to the same bucket, no need to
1778          * requeue.
1779          */
1780         if (likely(&hb1->chain != &hb2->chain)) {
1781                 plist_del(&q->list, &hb1->chain);
1782                 hb_waiters_dec(hb1);
1783                 hb_waiters_inc(hb2);
1784                 plist_add(&q->list, &hb2->chain);
1785                 q->lock_ptr = &hb2->lock;
1786         }
1787         q->key = *key2;
1788 }
1789
1790 /**
1791  * requeue_pi_wake_futex() - Wake a task that acquired the lock during requeue
1792  * @q:          the futex_q
1793  * @key:        the key of the requeue target futex
1794  * @hb:         the hash_bucket of the requeue target futex
1795  *
1796  * During futex_requeue, with requeue_pi=1, it is possible to acquire the
1797  * target futex if it is uncontended or via a lock steal.  Set the futex_q key
1798  * to the requeue target futex so the waiter can detect the wakeup on the right
1799  * futex, but remove it from the hb and NULL the rt_waiter so it can detect
1800  * atomic lock acquisition.  Set the q->lock_ptr to the requeue target hb->lock
1801  * to protect access to the pi_state to fixup the owner later.  Must be called
1802  * with both q->lock_ptr and hb->lock held.
1803  */
1804 static inline
1805 void requeue_pi_wake_futex(struct futex_q *q, union futex_key *key,
1806                            struct futex_hash_bucket *hb)
1807 {
1808         q->key = *key;
1809
1810         __unqueue_futex(q);
1811
1812         WARN_ON(!q->rt_waiter);
1813         q->rt_waiter = NULL;
1814
1815         q->lock_ptr = &hb->lock;
1816
1817         wake_up_state(q->task, TASK_NORMAL);
1818 }
1819
1820 /**
1821  * futex_proxy_trylock_atomic() - Attempt an atomic lock for the top waiter
1822  * @pifutex:            the user address of the to futex
1823  * @hb1:                the from futex hash bucket, must be locked by the caller
1824  * @hb2:                the to futex hash bucket, must be locked by the caller
1825  * @key1:               the from futex key
1826  * @key2:               the to futex key
1827  * @ps:                 address to store the pi_state pointer
1828  * @exiting:            Pointer to store the task pointer of the owner task
1829  *                      which is in the middle of exiting
1830  * @set_waiters:        force setting the FUTEX_WAITERS bit (1) or not (0)
1831  *
1832  * Try and get the lock on behalf of the top waiter if we can do it atomically.
1833  * Wake the top waiter if we succeed.  If the caller specified set_waiters,
1834  * then direct futex_lock_pi_atomic() to force setting the FUTEX_WAITERS bit.
1835  * hb1 and hb2 must be held by the caller.
1836  *
1837  * @exiting is only set when the return value is -EBUSY. If so, this holds
1838  * a refcount on the exiting task on return and the caller needs to drop it
1839  * after waiting for the exit to complete.
1840  *
1841  * Return:
1842  *  -  0 - failed to acquire the lock atomically;
1843  *  - >0 - acquired the lock, return value is vpid of the top_waiter
1844  *  - <0 - error
1845  */
1846 static int
1847 futex_proxy_trylock_atomic(u32 __user *pifutex, struct futex_hash_bucket *hb1,
1848                            struct futex_hash_bucket *hb2, union futex_key *key1,
1849                            union futex_key *key2, struct futex_pi_state **ps,
1850                            struct task_struct **exiting, int set_waiters)
1851 {
1852         struct futex_q *top_waiter = NULL;
1853         u32 curval;
1854         int ret, vpid;
1855
1856         if (get_futex_value_locked(&curval, pifutex))
1857                 return -EFAULT;
1858
1859         if (unlikely(should_fail_futex(true)))
1860                 return -EFAULT;
1861
1862         /*
1863          * Find the top_waiter and determine if there are additional waiters.
1864          * If the caller intends to requeue more than 1 waiter to pifutex,
1865          * force futex_lock_pi_atomic() to set the FUTEX_WAITERS bit now,
1866          * as we have means to handle the possible fault.  If not, don't set
1867          * the bit unecessarily as it will force the subsequent unlock to enter
1868          * the kernel.
1869          */
1870         top_waiter = futex_top_waiter(hb1, key1);
1871
1872         /* There are no waiters, nothing for us to do. */
1873         if (!top_waiter)
1874                 return 0;
1875
1876         /* Ensure we requeue to the expected futex. */
1877         if (!match_futex(top_waiter->requeue_pi_key, key2))
1878                 return -EINVAL;
1879
1880         /*
1881          * Try to take the lock for top_waiter.  Set the FUTEX_WAITERS bit in
1882          * the contended case or if set_waiters is 1.  The pi_state is returned
1883          * in ps in contended cases.
1884          */
1885         vpid = task_pid_vnr(top_waiter->task);
1886         ret = futex_lock_pi_atomic(pifutex, hb2, key2, ps, top_waiter->task,
1887                                    exiting, set_waiters);
1888         if (ret == 1) {
1889                 requeue_pi_wake_futex(top_waiter, key2, hb2);
1890                 return vpid;
1891         }
1892         return ret;
1893 }
1894
1895 /**
1896  * futex_requeue() - Requeue waiters from uaddr1 to uaddr2
1897  * @uaddr1:     source futex user address
1898  * @flags:      futex flags (FLAGS_SHARED, etc.)
1899  * @uaddr2:     target futex user address
1900  * @nr_wake:    number of waiters to wake (must be 1 for requeue_pi)
1901  * @nr_requeue: number of waiters to requeue (0-INT_MAX)
1902  * @cmpval:     @uaddr1 expected value (or %NULL)
1903  * @requeue_pi: if we are attempting to requeue from a non-pi futex to a
1904  *              pi futex (pi to pi requeue is not supported)
1905  *
1906  * Requeue waiters on uaddr1 to uaddr2. In the requeue_pi case, try to acquire
1907  * uaddr2 atomically on behalf of the top waiter.
1908  *
1909  * Return:
1910  *  - >=0 - on success, the number of tasks requeued or woken;
1911  *  -  <0 - on error
1912  */
1913 static int futex_requeue(u32 __user *uaddr1, unsigned int flags,
1914                          u32 __user *uaddr2, int nr_wake, int nr_requeue,
1915                          u32 *cmpval, int requeue_pi)
1916 {
1917         union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT;
1918         int task_count = 0, ret;
1919         struct futex_pi_state *pi_state = NULL;
1920         struct futex_hash_bucket *hb1, *hb2;
1921         struct futex_q *this, *next;
1922         DEFINE_WAKE_Q(wake_q);
1923
1924         if (nr_wake < 0 || nr_requeue < 0)
1925                 return -EINVAL;
1926
1927         /*
1928          * When PI not supported: return -ENOSYS if requeue_pi is true,
1929          * consequently the compiler knows requeue_pi is always false past
1930          * this point which will optimize away all the conditional code
1931          * further down.
1932          */
1933         if (!IS_ENABLED(CONFIG_FUTEX_PI) && requeue_pi)
1934                 return -ENOSYS;
1935
1936         if (requeue_pi) {
1937                 /*
1938                  * Requeue PI only works on two distinct uaddrs. This
1939                  * check is only valid for private futexes. See below.
1940                  */
1941                 if (uaddr1 == uaddr2)
1942                         return -EINVAL;
1943
1944                 /*
1945                  * requeue_pi requires a pi_state, try to allocate it now
1946                  * without any locks in case it fails.
1947                  */
1948                 if (refill_pi_state_cache())
1949                         return -ENOMEM;
1950                 /*
1951                  * requeue_pi must wake as many tasks as it can, up to nr_wake
1952                  * + nr_requeue, since it acquires the rt_mutex prior to
1953                  * returning to userspace, so as to not leave the rt_mutex with
1954                  * waiters and no owner.  However, second and third wake-ups
1955                  * cannot be predicted as they involve race conditions with the
1956                  * first wake and a fault while looking up the pi_state.  Both
1957                  * pthread_cond_signal() and pthread_cond_broadcast() should
1958                  * use nr_wake=1.
1959                  */
1960                 if (nr_wake != 1)
1961                         return -EINVAL;
1962         }
1963
1964 retry:
1965         ret = get_futex_key(uaddr1, flags & FLAGS_SHARED, &key1, FUTEX_READ);
1966         if (unlikely(ret != 0))
1967                 return ret;
1968         ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2,
1969                             requeue_pi ? FUTEX_WRITE : FUTEX_READ);
1970         if (unlikely(ret != 0))
1971                 return ret;
1972
1973         /*
1974          * The check above which compares uaddrs is not sufficient for
1975          * shared futexes. We need to compare the keys:
1976          */
1977         if (requeue_pi && match_futex(&key1, &key2))
1978                 return -EINVAL;
1979
1980         hb1 = hash_futex(&key1);
1981         hb2 = hash_futex(&key2);
1982
1983 retry_private:
1984         hb_waiters_inc(hb2);
1985         double_lock_hb(hb1, hb2);
1986
1987         if (likely(cmpval != NULL)) {
1988                 u32 curval;
1989
1990                 ret = get_futex_value_locked(&curval, uaddr1);
1991
1992                 if (unlikely(ret)) {
1993                         double_unlock_hb(hb1, hb2);
1994                         hb_waiters_dec(hb2);
1995
1996                         ret = get_user(curval, uaddr1);
1997                         if (ret)
1998                                 return ret;
1999
2000                         if (!(flags & FLAGS_SHARED))
2001                                 goto retry_private;
2002
2003                         goto retry;
2004                 }
2005                 if (curval != *cmpval) {
2006                         ret = -EAGAIN;
2007                         goto out_unlock;
2008                 }
2009         }
2010
2011         if (requeue_pi && (task_count - nr_wake < nr_requeue)) {
2012                 struct task_struct *exiting = NULL;
2013
2014                 /*
2015                  * Attempt to acquire uaddr2 and wake the top waiter. If we
2016                  * intend to requeue waiters, force setting the FUTEX_WAITERS
2017                  * bit.  We force this here where we are able to easily handle
2018                  * faults rather in the requeue loop below.
2019                  */
2020                 ret = futex_proxy_trylock_atomic(uaddr2, hb1, hb2, &key1,
2021                                                  &key2, &pi_state,
2022                                                  &exiting, nr_requeue);
2023
2024                 /*
2025                  * At this point the top_waiter has either taken uaddr2 or is
2026                  * waiting on it.  If the former, then the pi_state will not
2027                  * exist yet, look it up one more time to ensure we have a
2028                  * reference to it. If the lock was taken, ret contains the
2029                  * vpid of the top waiter task.
2030                  * If the lock was not taken, we have pi_state and an initial
2031                  * refcount on it. In case of an error we have nothing.
2032                  */
2033                 if (ret > 0) {
2034                         WARN_ON(pi_state);
2035                         task_count++;
2036                         /*
2037                          * If we acquired the lock, then the user space value
2038                          * of uaddr2 should be vpid. It cannot be changed by
2039                          * the top waiter as it is blocked on hb2 lock if it
2040                          * tries to do so. If something fiddled with it behind
2041                          * our back the pi state lookup might unearth it. So
2042                          * we rather use the known value than rereading and
2043                          * handing potential crap to lookup_pi_state.
2044                          *
2045                          * If that call succeeds then we have pi_state and an
2046                          * initial refcount on it.
2047                          */
2048                         ret = lookup_pi_state(uaddr2, ret, hb2, &key2,
2049                                               &pi_state, &exiting);
2050                 }
2051
2052                 switch (ret) {
2053                 case 0:
2054                         /* We hold a reference on the pi state. */
2055                         break;
2056
2057                         /* If the above failed, then pi_state is NULL */
2058                 case -EFAULT:
2059                         double_unlock_hb(hb1, hb2);
2060                         hb_waiters_dec(hb2);
2061                         ret = fault_in_user_writeable(uaddr2);
2062                         if (!ret)
2063                                 goto retry;
2064                         return ret;
2065                 case -EBUSY:
2066                 case -EAGAIN:
2067                         /*
2068                          * Two reasons for this:
2069                          * - EBUSY: Owner is exiting and we just wait for the
2070                          *   exit to complete.
2071                          * - EAGAIN: The user space value changed.
2072                          */
2073                         double_unlock_hb(hb1, hb2);
2074                         hb_waiters_dec(hb2);
2075                         /*
2076                          * Handle the case where the owner is in the middle of
2077                          * exiting. Wait for the exit to complete otherwise
2078                          * this task might loop forever, aka. live lock.
2079                          */
2080                         wait_for_owner_exiting(ret, exiting);
2081                         cond_resched();
2082                         goto retry;
2083                 default:
2084                         goto out_unlock;
2085                 }
2086         }
2087
2088         plist_for_each_entry_safe(this, next, &hb1->chain, list) {
2089                 if (task_count - nr_wake >= nr_requeue)
2090                         break;
2091
2092                 if (!match_futex(&this->key, &key1))
2093                         continue;
2094
2095                 /*
2096                  * FUTEX_WAIT_REQEUE_PI and FUTEX_CMP_REQUEUE_PI should always
2097                  * be paired with each other and no other futex ops.
2098                  *
2099                  * We should never be requeueing a futex_q with a pi_state,
2100                  * which is awaiting a futex_unlock_pi().
2101                  */
2102                 if ((requeue_pi && !this->rt_waiter) ||
2103                     (!requeue_pi && this->rt_waiter) ||
2104                     this->pi_state) {
2105                         ret = -EINVAL;
2106                         break;
2107                 }
2108
2109                 /*
2110                  * Wake nr_wake waiters.  For requeue_pi, if we acquired the
2111                  * lock, we already woke the top_waiter.  If not, it will be
2112                  * woken by futex_unlock_pi().
2113                  */
2114                 if (++task_count <= nr_wake && !requeue_pi) {
2115                         mark_wake_futex(&wake_q, this);
2116                         continue;
2117                 }
2118
2119                 /* Ensure we requeue to the expected futex for requeue_pi. */
2120                 if (requeue_pi && !match_futex(this->requeue_pi_key, &key2)) {
2121                         ret = -EINVAL;
2122                         break;
2123                 }
2124
2125                 /*
2126                  * Requeue nr_requeue waiters and possibly one more in the case
2127                  * of requeue_pi if we couldn't acquire the lock atomically.
2128                  */
2129                 if (requeue_pi) {
2130                         /*
2131                          * Prepare the waiter to take the rt_mutex. Take a
2132                          * refcount on the pi_state and store the pointer in
2133                          * the futex_q object of the waiter.
2134                          */
2135                         get_pi_state(pi_state);
2136                         this->pi_state = pi_state;
2137                         ret = rt_mutex_start_proxy_lock(&pi_state->pi_mutex,
2138                                                         this->rt_waiter,
2139                                                         this->task);
2140                         if (ret == 1) {
2141                                 /*
2142                                  * We got the lock. We do neither drop the
2143                                  * refcount on pi_state nor clear
2144                                  * this->pi_state because the waiter needs the
2145                                  * pi_state for cleaning up the user space
2146                                  * value. It will drop the refcount after
2147                                  * doing so.
2148                                  */
2149                                 requeue_pi_wake_futex(this, &key2, hb2);
2150                                 continue;
2151                         } else if (ret) {
2152                                 /*
2153                                  * rt_mutex_start_proxy_lock() detected a
2154                                  * potential deadlock when we tried to queue
2155                                  * that waiter. Drop the pi_state reference
2156                                  * which we took above and remove the pointer
2157                                  * to the state from the waiters futex_q
2158                                  * object.
2159                                  */
2160                                 this->pi_state = NULL;
2161                                 put_pi_state(pi_state);
2162                                 /*
2163                                  * We stop queueing more waiters and let user
2164                                  * space deal with the mess.
2165                                  */
2166                                 break;
2167                         }
2168                 }
2169                 requeue_futex(this, hb1, hb2, &key2);
2170         }
2171
2172         /*
2173          * We took an extra initial reference to the pi_state either
2174          * in futex_proxy_trylock_atomic() or in lookup_pi_state(). We
2175          * need to drop it here again.
2176          */
2177         put_pi_state(pi_state);
2178
2179 out_unlock:
2180         double_unlock_hb(hb1, hb2);
2181         wake_up_q(&wake_q);
2182         hb_waiters_dec(hb2);
2183         return ret ? ret : task_count;
2184 }
2185
2186 /* The key must be already stored in q->key. */
2187 static inline struct futex_hash_bucket *queue_lock(struct futex_q *q)
2188         __acquires(&hb->lock)
2189 {
2190         struct futex_hash_bucket *hb;
2191
2192         hb = hash_futex(&q->key);
2193
2194         /*
2195          * Increment the counter before taking the lock so that
2196          * a potential waker won't miss a to-be-slept task that is
2197          * waiting for the spinlock. This is safe as all queue_lock()
2198          * users end up calling queue_me(). Similarly, for housekeeping,
2199          * decrement the counter at queue_unlock() when some error has
2200          * occurred and we don't end up adding the task to the list.
2201          */
2202         hb_waiters_inc(hb); /* implies smp_mb(); (A) */
2203
2204         q->lock_ptr = &hb->lock;
2205
2206         spin_lock(&hb->lock);
2207         return hb;
2208 }
2209
2210 static inline void
2211 queue_unlock(struct futex_hash_bucket *hb)
2212         __releases(&hb->lock)
2213 {
2214         spin_unlock(&hb->lock);
2215         hb_waiters_dec(hb);
2216 }
2217
2218 static inline void __queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
2219 {
2220         int prio;
2221
2222         /*
2223          * The priority used to register this element is
2224          * - either the real thread-priority for the real-time threads
2225          * (i.e. threads with a priority lower than MAX_RT_PRIO)
2226          * - or MAX_RT_PRIO for non-RT threads.
2227          * Thus, all RT-threads are woken first in priority order, and
2228          * the others are woken last, in FIFO order.
2229          */
2230         prio = min(current->normal_prio, MAX_RT_PRIO);
2231
2232         plist_node_init(&q->list, prio);
2233         plist_add(&q->list, &hb->chain);
2234         q->task = current;
2235 }
2236
2237 /**
2238  * queue_me() - Enqueue the futex_q on the futex_hash_bucket
2239  * @q:  The futex_q to enqueue
2240  * @hb: The destination hash bucket
2241  *
2242  * The hb->lock must be held by the caller, and is released here. A call to
2243  * queue_me() is typically paired with exactly one call to unqueue_me().  The
2244  * exceptions involve the PI related operations, which may use unqueue_me_pi()
2245  * or nothing if the unqueue is done as part of the wake process and the unqueue
2246  * state is implicit in the state of woken task (see futex_wait_requeue_pi() for
2247  * an example).
2248  */
2249 static inline void queue_me(struct futex_q *q, struct futex_hash_bucket *hb)
2250         __releases(&hb->lock)
2251 {
2252         __queue_me(q, hb);
2253         spin_unlock(&hb->lock);
2254 }
2255
2256 /**
2257  * unqueue_me() - Remove the futex_q from its futex_hash_bucket
2258  * @q:  The futex_q to unqueue
2259  *
2260  * The q->lock_ptr must not be held by the caller. A call to unqueue_me() must
2261  * be paired with exactly one earlier call to queue_me().
2262  *
2263  * Return:
2264  *  - 1 - if the futex_q was still queued (and we removed unqueued it);
2265  *  - 0 - if the futex_q was already removed by the waking thread
2266  */
2267 static int unqueue_me(struct futex_q *q)
2268 {
2269         spinlock_t *lock_ptr;
2270         int ret = 0;
2271
2272         /* In the common case we don't take the spinlock, which is nice. */
2273 retry:
2274         /*
2275          * q->lock_ptr can change between this read and the following spin_lock.
2276          * Use READ_ONCE to forbid the compiler from reloading q->lock_ptr and
2277          * optimizing lock_ptr out of the logic below.
2278          */
2279         lock_ptr = READ_ONCE(q->lock_ptr);
2280         if (lock_ptr != NULL) {
2281                 spin_lock(lock_ptr);
2282                 /*
2283                  * q->lock_ptr can change between reading it and
2284                  * spin_lock(), causing us to take the wrong lock.  This
2285                  * corrects the race condition.
2286                  *
2287                  * Reasoning goes like this: if we have the wrong lock,
2288                  * q->lock_ptr must have changed (maybe several times)
2289                  * between reading it and the spin_lock().  It can
2290                  * change again after the spin_lock() but only if it was
2291                  * already changed before the spin_lock().  It cannot,
2292                  * however, change back to the original value.  Therefore
2293                  * we can detect whether we acquired the correct lock.
2294                  */
2295                 if (unlikely(lock_ptr != q->lock_ptr)) {
2296                         spin_unlock(lock_ptr);
2297                         goto retry;
2298                 }
2299                 __unqueue_futex(q);
2300
2301                 BUG_ON(q->pi_state);
2302
2303                 spin_unlock(lock_ptr);
2304                 ret = 1;
2305         }
2306
2307         return ret;
2308 }
2309
2310 /*
2311  * PI futexes can not be requeued and must remove themself from the
2312  * hash bucket. The hash bucket lock (i.e. lock_ptr) is held on entry
2313  * and dropped here.
2314  */
2315 static void unqueue_me_pi(struct futex_q *q)
2316         __releases(q->lock_ptr)
2317 {
2318         __unqueue_futex(q);
2319
2320         BUG_ON(!q->pi_state);
2321         put_pi_state(q->pi_state);
2322         q->pi_state = NULL;
2323
2324         spin_unlock(q->lock_ptr);
2325 }
2326
2327 static int fixup_pi_state_owner(u32 __user *uaddr, struct futex_q *q,
2328                                 struct task_struct *argowner)
2329 {
2330         struct futex_pi_state *pi_state = q->pi_state;
2331         u32 uval, curval, newval;
2332         struct task_struct *oldowner, *newowner;
2333         u32 newtid;
2334         int ret, err = 0;
2335
2336         lockdep_assert_held(q->lock_ptr);
2337
2338         raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock);
2339
2340         oldowner = pi_state->owner;
2341
2342         /*
2343          * We are here because either:
2344          *
2345          *  - we stole the lock and pi_state->owner needs updating to reflect
2346          *    that (@argowner == current),
2347          *
2348          * or:
2349          *
2350          *  - someone stole our lock and we need to fix things to point to the
2351          *    new owner (@argowner == NULL).
2352          *
2353          * Either way, we have to replace the TID in the user space variable.
2354          * This must be atomic as we have to preserve the owner died bit here.
2355          *
2356          * Note: We write the user space value _before_ changing the pi_state
2357          * because we can fault here. Imagine swapped out pages or a fork
2358          * that marked all the anonymous memory readonly for cow.
2359          *
2360          * Modifying pi_state _before_ the user space value would leave the
2361          * pi_state in an inconsistent state when we fault here, because we
2362          * need to drop the locks to handle the fault. This might be observed
2363          * in the PID check in lookup_pi_state.
2364          */
2365 retry:
2366         if (!argowner) {
2367                 if (oldowner != current) {
2368                         /*
2369                          * We raced against a concurrent self; things are
2370                          * already fixed up. Nothing to do.
2371                          */
2372                         ret = 0;
2373                         goto out_unlock;
2374                 }
2375
2376                 if (__rt_mutex_futex_trylock(&pi_state->pi_mutex)) {
2377                         /* We got the lock after all, nothing to fix. */
2378                         ret = 0;
2379                         goto out_unlock;
2380                 }
2381
2382                 /*
2383                  * The trylock just failed, so either there is an owner or
2384                  * there is a higher priority waiter than this one.
2385                  */
2386                 newowner = rt_mutex_owner(&pi_state->pi_mutex);
2387                 /*
2388                  * If the higher priority waiter has not yet taken over the
2389                  * rtmutex then newowner is NULL. We can't return here with
2390                  * that state because it's inconsistent vs. the user space
2391                  * state. So drop the locks and try again. It's a valid
2392                  * situation and not any different from the other retry
2393                  * conditions.
2394                  */
2395                 if (unlikely(!newowner)) {
2396                         err = -EAGAIN;
2397                         goto handle_err;
2398                 }
2399         } else {
2400                 WARN_ON_ONCE(argowner != current);
2401                 if (oldowner == current) {
2402                         /*
2403                          * We raced against a concurrent self; things are
2404                          * already fixed up. Nothing to do.
2405                          */
2406                         ret = 0;
2407                         goto out_unlock;
2408                 }
2409                 newowner = argowner;
2410         }
2411
2412         newtid = task_pid_vnr(newowner) | FUTEX_WAITERS;
2413         /* Owner died? */
2414         if (!pi_state->owner)
2415                 newtid |= FUTEX_OWNER_DIED;
2416
2417         err = get_futex_value_locked(&uval, uaddr);
2418         if (err)
2419                 goto handle_err;
2420
2421         for (;;) {
2422                 newval = (uval & FUTEX_OWNER_DIED) | newtid;
2423
2424                 err = cmpxchg_futex_value_locked(&curval, uaddr, uval, newval);
2425                 if (err)
2426                         goto handle_err;
2427
2428                 if (curval == uval)
2429                         break;
2430                 uval = curval;
2431         }
2432
2433         /*
2434          * We fixed up user space. Now we need to fix the pi_state
2435          * itself.
2436          */
2437         if (pi_state->owner != NULL) {
2438                 raw_spin_lock(&pi_state->owner->pi_lock);
2439                 WARN_ON(list_empty(&pi_state->list));
2440                 list_del_init(&pi_state->list);
2441                 raw_spin_unlock(&pi_state->owner->pi_lock);
2442         }
2443
2444         pi_state->owner = newowner;
2445
2446         raw_spin_lock(&newowner->pi_lock);
2447         WARN_ON(!list_empty(&pi_state->list));
2448         list_add(&pi_state->list, &newowner->pi_state_list);
2449         raw_spin_unlock(&newowner->pi_lock);
2450         raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
2451
2452         return 0;
2453
2454         /*
2455          * In order to reschedule or handle a page fault, we need to drop the
2456          * locks here. In the case of a fault, this gives the other task
2457          * (either the highest priority waiter itself or the task which stole
2458          * the rtmutex) the chance to try the fixup of the pi_state. So once we
2459          * are back from handling the fault we need to check the pi_state after
2460          * reacquiring the locks and before trying to do another fixup. When
2461          * the fixup has been done already we simply return.
2462          *
2463          * Note: we hold both hb->lock and pi_mutex->wait_lock. We can safely
2464          * drop hb->lock since the caller owns the hb -> futex_q relation.
2465          * Dropping the pi_mutex->wait_lock requires the state revalidate.
2466          */
2467 handle_err:
2468         raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
2469         spin_unlock(q->lock_ptr);
2470
2471         switch (err) {
2472         case -EFAULT:
2473                 ret = fault_in_user_writeable(uaddr);
2474                 break;
2475
2476         case -EAGAIN:
2477                 cond_resched();
2478                 ret = 0;
2479                 break;
2480
2481         default:
2482                 WARN_ON_ONCE(1);
2483                 ret = err;
2484                 break;
2485         }
2486
2487         spin_lock(q->lock_ptr);
2488         raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock);
2489
2490         /*
2491          * Check if someone else fixed it for us:
2492          */
2493         if (pi_state->owner != oldowner) {
2494                 ret = 0;
2495                 goto out_unlock;
2496         }
2497
2498         if (ret)
2499                 goto out_unlock;
2500
2501         goto retry;
2502
2503 out_unlock:
2504         raw_spin_unlock_irq(&pi_state->pi_mutex.wait_lock);
2505         return ret;
2506 }
2507
2508 static long futex_wait_restart(struct restart_block *restart);
2509
2510 /**
2511  * fixup_owner() - Post lock pi_state and corner case management
2512  * @uaddr:      user address of the futex
2513  * @q:          futex_q (contains pi_state and access to the rt_mutex)
2514  * @locked:     if the attempt to take the rt_mutex succeeded (1) or not (0)
2515  *
2516  * After attempting to lock an rt_mutex, this function is called to cleanup
2517  * the pi_state owner as well as handle race conditions that may allow us to
2518  * acquire the lock. Must be called with the hb lock held.
2519  *
2520  * Return:
2521  *  -  1 - success, lock taken;
2522  *  -  0 - success, lock not taken;
2523  *  - <0 - on error (-EFAULT)
2524  */
2525 static int fixup_owner(u32 __user *uaddr, struct futex_q *q, int locked)
2526 {
2527         int ret = 0;
2528
2529         if (locked) {
2530                 /*
2531                  * Got the lock. We might not be the anticipated owner if we
2532                  * did a lock-steal - fix up the PI-state in that case:
2533                  *
2534                  * Speculative pi_state->owner read (we don't hold wait_lock);
2535                  * since we own the lock pi_state->owner == current is the
2536                  * stable state, anything else needs more attention.
2537                  */
2538                 if (q->pi_state->owner != current)
2539                         ret = fixup_pi_state_owner(uaddr, q, current);
2540                 return ret ? ret : locked;
2541         }
2542
2543         /*
2544          * If we didn't get the lock; check if anybody stole it from us. In
2545          * that case, we need to fix up the uval to point to them instead of
2546          * us, otherwise bad things happen. [10]
2547          *
2548          * Another speculative read; pi_state->owner == current is unstable
2549          * but needs our attention.
2550          */
2551         if (q->pi_state->owner == current) {
2552                 ret = fixup_pi_state_owner(uaddr, q, NULL);
2553                 return ret;
2554         }
2555
2556         /*
2557          * Paranoia check. If we did not take the lock, then we should not be
2558          * the owner of the rt_mutex.
2559          */
2560         if (rt_mutex_owner(&q->pi_state->pi_mutex) == current) {
2561                 printk(KERN_ERR "fixup_owner: ret = %d pi-mutex: %p "
2562                                 "pi-state %p\n", ret,
2563                                 q->pi_state->pi_mutex.owner,
2564                                 q->pi_state->owner);
2565         }
2566
2567         return ret;
2568 }
2569
2570 /**
2571  * futex_wait_queue_me() - queue_me() and wait for wakeup, timeout, or signal
2572  * @hb:         the futex hash bucket, must be locked by the caller
2573  * @q:          the futex_q to queue up on
2574  * @timeout:    the prepared hrtimer_sleeper, or null for no timeout
2575  */
2576 static void futex_wait_queue_me(struct futex_hash_bucket *hb, struct futex_q *q,
2577                                 struct hrtimer_sleeper *timeout)
2578 {
2579         /*
2580          * The task state is guaranteed to be set before another task can
2581          * wake it. set_current_state() is implemented using smp_store_mb() and
2582          * queue_me() calls spin_unlock() upon completion, both serializing
2583          * access to the hash list and forcing another memory barrier.
2584          */
2585         set_current_state(TASK_INTERRUPTIBLE);
2586         queue_me(q, hb);
2587
2588         /* Arm the timer */
2589         if (timeout)
2590                 hrtimer_sleeper_start_expires(timeout, HRTIMER_MODE_ABS);
2591
2592         /*
2593          * If we have been removed from the hash list, then another task
2594          * has tried to wake us, and we can skip the call to schedule().
2595          */
2596         if (likely(!plist_node_empty(&q->list))) {
2597                 /*
2598                  * If the timer has already expired, current will already be
2599                  * flagged for rescheduling. Only call schedule if there
2600                  * is no timeout, or if it has yet to expire.
2601                  */
2602                 if (!timeout || timeout->task)
2603                         freezable_schedule();
2604         }
2605         __set_current_state(TASK_RUNNING);
2606 }
2607
2608 /**
2609  * futex_wait_setup() - Prepare to wait on a futex
2610  * @uaddr:      the futex userspace address
2611  * @val:        the expected value
2612  * @flags:      futex flags (FLAGS_SHARED, etc.)
2613  * @q:          the associated futex_q
2614  * @hb:         storage for hash_bucket pointer to be returned to caller
2615  *
2616  * Setup the futex_q and locate the hash_bucket.  Get the futex value and
2617  * compare it with the expected value.  Handle atomic faults internally.
2618  * Return with the hb lock held and a q.key reference on success, and unlocked
2619  * with no q.key reference on failure.
2620  *
2621  * Return:
2622  *  -  0 - uaddr contains val and hb has been locked;
2623  *  - <1 - -EFAULT or -EWOULDBLOCK (uaddr does not contain val) and hb is unlocked
2624  */
2625 static int futex_wait_setup(u32 __user *uaddr, u32 val, unsigned int flags,
2626                            struct futex_q *q, struct futex_hash_bucket **hb)
2627 {
2628         u32 uval;
2629         int ret;
2630
2631         /*
2632          * Access the page AFTER the hash-bucket is locked.
2633          * Order is important:
2634          *
2635          *   Userspace waiter: val = var; if (cond(val)) futex_wait(&var, val);
2636          *   Userspace waker:  if (cond(var)) { var = new; futex_wake(&var); }
2637          *
2638          * The basic logical guarantee of a futex is that it blocks ONLY
2639          * if cond(var) is known to be true at the time of blocking, for
2640          * any cond.  If we locked the hash-bucket after testing *uaddr, that
2641          * would open a race condition where we could block indefinitely with
2642          * cond(var) false, which would violate the guarantee.
2643          *
2644          * On the other hand, we insert q and release the hash-bucket only
2645          * after testing *uaddr.  This guarantees that futex_wait() will NOT
2646          * absorb a wakeup if *uaddr does not match the desired values
2647          * while the syscall executes.
2648          */
2649 retry:
2650         ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q->key, FUTEX_READ);
2651         if (unlikely(ret != 0))
2652                 return ret;
2653
2654 retry_private:
2655         *hb = queue_lock(q);
2656
2657         ret = get_futex_value_locked(&uval, uaddr);
2658
2659         if (ret) {
2660                 queue_unlock(*hb);
2661
2662                 ret = get_user(uval, uaddr);
2663                 if (ret)
2664                         return ret;
2665
2666                 if (!(flags & FLAGS_SHARED))
2667                         goto retry_private;
2668
2669                 goto retry;
2670         }
2671
2672         if (uval != val) {
2673                 queue_unlock(*hb);
2674                 ret = -EWOULDBLOCK;
2675         }
2676
2677         return ret;
2678 }
2679
2680 static int futex_wait(u32 __user *uaddr, unsigned int flags, u32 val,
2681                       ktime_t *abs_time, u32 bitset)
2682 {
2683         struct hrtimer_sleeper timeout, *to;
2684         struct restart_block *restart;
2685         struct futex_hash_bucket *hb;
2686         struct futex_q q = futex_q_init;
2687         int ret;
2688
2689         if (!bitset)
2690                 return -EINVAL;
2691         q.bitset = bitset;
2692
2693         to = futex_setup_timer(abs_time, &timeout, flags,
2694                                current->timer_slack_ns);
2695 retry:
2696         /*
2697          * Prepare to wait on uaddr. On success, holds hb lock and increments
2698          * q.key refs.
2699          */
2700         ret = futex_wait_setup(uaddr, val, flags, &q, &hb);
2701         if (ret)
2702                 goto out;
2703
2704         /* queue_me and wait for wakeup, timeout, or a signal. */
2705         futex_wait_queue_me(hb, &q, to);
2706
2707         /* If we were woken (and unqueued), we succeeded, whatever. */
2708         ret = 0;
2709         /* unqueue_me() drops q.key ref */
2710         if (!unqueue_me(&q))
2711                 goto out;
2712         ret = -ETIMEDOUT;
2713         if (to && !to->task)
2714                 goto out;
2715
2716         /*
2717          * We expect signal_pending(current), but we might be the
2718          * victim of a spurious wakeup as well.
2719          */
2720         if (!signal_pending(current))
2721                 goto retry;
2722
2723         ret = -ERESTARTSYS;
2724         if (!abs_time)
2725                 goto out;
2726
2727         restart = &current->restart_block;
2728         restart->fn = futex_wait_restart;
2729         restart->futex.uaddr = uaddr;
2730         restart->futex.val = val;
2731         restart->futex.time = *abs_time;
2732         restart->futex.bitset = bitset;
2733         restart->futex.flags = flags | FLAGS_HAS_TIMEOUT;
2734
2735         ret = -ERESTART_RESTARTBLOCK;
2736
2737 out:
2738         if (to) {
2739                 hrtimer_cancel(&to->timer);
2740                 destroy_hrtimer_on_stack(&to->timer);
2741         }
2742         return ret;
2743 }
2744
2745
2746 static long futex_wait_restart(struct restart_block *restart)
2747 {
2748         u32 __user *uaddr = restart->futex.uaddr;
2749         ktime_t t, *tp = NULL;
2750
2751         if (restart->futex.flags & FLAGS_HAS_TIMEOUT) {
2752                 t = restart->futex.time;
2753                 tp = &t;
2754         }
2755         restart->fn = do_no_restart_syscall;
2756
2757         return (long)futex_wait(uaddr, restart->futex.flags,
2758                                 restart->futex.val, tp, restart->futex.bitset);
2759 }
2760
2761
2762 /*
2763  * Userspace tried a 0 -> TID atomic transition of the futex value
2764  * and failed. The kernel side here does the whole locking operation:
2765  * if there are waiters then it will block as a consequence of relying
2766  * on rt-mutexes, it does PI, etc. (Due to races the kernel might see
2767  * a 0 value of the futex too.).
2768  *
2769  * Also serves as futex trylock_pi()'ing, and due semantics.
2770  */
2771 static int futex_lock_pi(u32 __user *uaddr, unsigned int flags,
2772                          ktime_t *time, int trylock)
2773 {
2774         struct hrtimer_sleeper timeout, *to;
2775         struct futex_pi_state *pi_state = NULL;
2776         struct task_struct *exiting = NULL;
2777         struct rt_mutex_waiter rt_waiter;
2778         struct futex_hash_bucket *hb;
2779         struct futex_q q = futex_q_init;
2780         int res, ret;
2781
2782         if (!IS_ENABLED(CONFIG_FUTEX_PI))
2783                 return -ENOSYS;
2784
2785         if (refill_pi_state_cache())
2786                 return -ENOMEM;
2787
2788         to = futex_setup_timer(time, &timeout, FLAGS_CLOCKRT, 0);
2789
2790 retry:
2791         ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &q.key, FUTEX_WRITE);
2792         if (unlikely(ret != 0))
2793                 goto out;
2794
2795 retry_private:
2796         hb = queue_lock(&q);
2797
2798         ret = futex_lock_pi_atomic(uaddr, hb, &q.key, &q.pi_state, current,
2799                                    &exiting, 0);
2800         if (unlikely(ret)) {
2801                 /*
2802                  * Atomic work succeeded and we got the lock,
2803                  * or failed. Either way, we do _not_ block.
2804                  */
2805                 switch (ret) {
2806                 case 1:
2807                         /* We got the lock. */
2808                         ret = 0;
2809                         goto out_unlock_put_key;
2810                 case -EFAULT:
2811                         goto uaddr_faulted;
2812                 case -EBUSY:
2813                 case -EAGAIN:
2814                         /*
2815                          * Two reasons for this:
2816                          * - EBUSY: Task is exiting and we just wait for the
2817                          *   exit to complete.
2818                          * - EAGAIN: The user space value changed.
2819                          */
2820                         queue_unlock(hb);
2821                         /*
2822                          * Handle the case where the owner is in the middle of
2823                          * exiting. Wait for the exit to complete otherwise
2824                          * this task might loop forever, aka. live lock.
2825                          */
2826                         wait_for_owner_exiting(ret, exiting);
2827                         cond_resched();
2828                         goto retry;
2829                 default:
2830                         goto out_unlock_put_key;
2831                 }
2832         }
2833
2834         WARN_ON(!q.pi_state);
2835
2836         /*
2837          * Only actually queue now that the atomic ops are done:
2838          */
2839         __queue_me(&q, hb);
2840
2841         if (trylock) {
2842                 ret = rt_mutex_futex_trylock(&q.pi_state->pi_mutex);
2843                 /* Fixup the trylock return value: */
2844                 ret = ret ? 0 : -EWOULDBLOCK;
2845                 goto no_block;
2846         }
2847
2848         rt_mutex_init_waiter(&rt_waiter);
2849
2850         /*
2851          * On PREEMPT_RT_FULL, when hb->lock becomes an rt_mutex, we must not
2852          * hold it while doing rt_mutex_start_proxy(), because then it will
2853          * include hb->lock in the blocking chain, even through we'll not in
2854          * fact hold it while blocking. This will lead it to report -EDEADLK
2855          * and BUG when futex_unlock_pi() interleaves with this.
2856          *
2857          * Therefore acquire wait_lock while holding hb->lock, but drop the
2858          * latter before calling __rt_mutex_start_proxy_lock(). This
2859          * interleaves with futex_unlock_pi() -- which does a similar lock
2860          * handoff -- such that the latter can observe the futex_q::pi_state
2861          * before __rt_mutex_start_proxy_lock() is done.
2862          */
2863         raw_spin_lock_irq(&q.pi_state->pi_mutex.wait_lock);
2864         spin_unlock(q.lock_ptr);
2865         /*
2866          * __rt_mutex_start_proxy_lock() unconditionally enqueues the @rt_waiter
2867          * such that futex_unlock_pi() is guaranteed to observe the waiter when
2868          * it sees the futex_q::pi_state.
2869          */
2870         ret = __rt_mutex_start_proxy_lock(&q.pi_state->pi_mutex, &rt_waiter, current);
2871         raw_spin_unlock_irq(&q.pi_state->pi_mutex.wait_lock);
2872
2873         if (ret) {
2874                 if (ret == 1)
2875                         ret = 0;
2876                 goto cleanup;
2877         }
2878
2879         if (unlikely(to))
2880                 hrtimer_sleeper_start_expires(to, HRTIMER_MODE_ABS);
2881
2882         ret = rt_mutex_wait_proxy_lock(&q.pi_state->pi_mutex, to, &rt_waiter);
2883
2884 cleanup:
2885         spin_lock(q.lock_ptr);
2886         /*
2887          * If we failed to acquire the lock (deadlock/signal/timeout), we must
2888          * first acquire the hb->lock before removing the lock from the
2889          * rt_mutex waitqueue, such that we can keep the hb and rt_mutex wait
2890          * lists consistent.
2891          *
2892          * In particular; it is important that futex_unlock_pi() can not
2893          * observe this inconsistency.
2894          */
2895         if (ret && !rt_mutex_cleanup_proxy_lock(&q.pi_state->pi_mutex, &rt_waiter))
2896                 ret = 0;
2897
2898 no_block:
2899         /*
2900          * Fixup the pi_state owner and possibly acquire the lock if we
2901          * haven't already.
2902          */
2903         res = fixup_owner(uaddr, &q, !ret);
2904         /*
2905          * If fixup_owner() returned an error, proprogate that.  If it acquired
2906          * the lock, clear our -ETIMEDOUT or -EINTR.
2907          */
2908         if (res)
2909                 ret = (res < 0) ? res : 0;
2910
2911         /*
2912          * If fixup_owner() faulted and was unable to handle the fault, unlock
2913          * it and return the fault to userspace.
2914          */
2915         if (ret && (rt_mutex_owner(&q.pi_state->pi_mutex) == current)) {
2916                 pi_state = q.pi_state;
2917                 get_pi_state(pi_state);
2918         }
2919
2920         /* Unqueue and drop the lock */
2921         unqueue_me_pi(&q);
2922
2923         if (pi_state) {
2924                 rt_mutex_futex_unlock(&pi_state->pi_mutex);
2925                 put_pi_state(pi_state);
2926         }
2927
2928         goto out;
2929
2930 out_unlock_put_key:
2931         queue_unlock(hb);
2932
2933 out:
2934         if (to) {
2935                 hrtimer_cancel(&to->timer);
2936                 destroy_hrtimer_on_stack(&to->timer);
2937         }
2938         return ret != -EINTR ? ret : -ERESTARTNOINTR;
2939
2940 uaddr_faulted:
2941         queue_unlock(hb);
2942
2943         ret = fault_in_user_writeable(uaddr);
2944         if (ret)
2945                 goto out;
2946
2947         if (!(flags & FLAGS_SHARED))
2948                 goto retry_private;
2949
2950         goto retry;
2951 }
2952
2953 /*
2954  * Userspace attempted a TID -> 0 atomic transition, and failed.
2955  * This is the in-kernel slowpath: we look up the PI state (if any),
2956  * and do the rt-mutex unlock.
2957  */
2958 static int futex_unlock_pi(u32 __user *uaddr, unsigned int flags)
2959 {
2960         u32 curval, uval, vpid = task_pid_vnr(current);
2961         union futex_key key = FUTEX_KEY_INIT;
2962         struct futex_hash_bucket *hb;
2963         struct futex_q *top_waiter;
2964         int ret;
2965
2966         if (!IS_ENABLED(CONFIG_FUTEX_PI))
2967                 return -ENOSYS;
2968
2969 retry:
2970         if (get_user(uval, uaddr))
2971                 return -EFAULT;
2972         /*
2973          * We release only a lock we actually own:
2974          */
2975         if ((uval & FUTEX_TID_MASK) != vpid)
2976                 return -EPERM;
2977
2978         ret = get_futex_key(uaddr, flags & FLAGS_SHARED, &key, FUTEX_WRITE);
2979         if (ret)
2980                 return ret;
2981
2982         hb = hash_futex(&key);
2983         spin_lock(&hb->lock);
2984
2985         /*
2986          * Check waiters first. We do not trust user space values at
2987          * all and we at least want to know if user space fiddled
2988          * with the futex value instead of blindly unlocking.
2989          */
2990         top_waiter = futex_top_waiter(hb, &key);
2991         if (top_waiter) {
2992                 struct futex_pi_state *pi_state = top_waiter->pi_state;
2993
2994                 ret = -EINVAL;
2995                 if (!pi_state)
2996                         goto out_unlock;
2997
2998                 /*
2999                  * If current does not own the pi_state then the futex is
3000                  * inconsistent and user space fiddled with the futex value.
3001                  */
3002                 if (pi_state->owner != current)
3003                         goto out_unlock;
3004
3005                 get_pi_state(pi_state);
3006                 /*
3007                  * By taking wait_lock while still holding hb->lock, we ensure
3008                  * there is no point where we hold neither; and therefore
3009                  * wake_futex_pi() must observe a state consistent with what we
3010                  * observed.
3011                  *
3012                  * In particular; this forces __rt_mutex_start_proxy() to
3013                  * complete such that we're guaranteed to observe the
3014                  * rt_waiter. Also see the WARN in wake_futex_pi().
3015                  */
3016                 raw_spin_lock_irq(&pi_state->pi_mutex.wait_lock);
3017                 spin_unlock(&hb->lock);
3018
3019                 /* drops pi_state->pi_mutex.wait_lock */
3020                 ret = wake_futex_pi(uaddr, uval, pi_state);
3021
3022                 put_pi_state(pi_state);
3023
3024                 /*
3025                  * Success, we're done! No tricky corner cases.
3026                  */
3027                 if (!ret)
3028                         goto out_putkey;
3029                 /*
3030                  * The atomic access to the futex value generated a
3031                  * pagefault, so retry the user-access and the wakeup:
3032                  */
3033                 if (ret == -EFAULT)
3034                         goto pi_faulted;
3035                 /*
3036                  * A unconditional UNLOCK_PI op raced against a waiter
3037                  * setting the FUTEX_WAITERS bit. Try again.
3038                  */
3039                 if (ret == -EAGAIN)
3040                         goto pi_retry;
3041                 /*
3042                  * wake_futex_pi has detected invalid state. Tell user
3043                  * space.
3044                  */
3045                 goto out_putkey;
3046         }
3047
3048         /*
3049          * We have no kernel internal state, i.e. no waiters in the
3050          * kernel. Waiters which are about to queue themselves are stuck
3051          * on hb->lock. So we can safely ignore them. We do neither
3052          * preserve the WAITERS bit not the OWNER_DIED one. We are the
3053          * owner.
3054          */
3055         if ((ret = cmpxchg_futex_value_locked(&curval, uaddr, uval, 0))) {
3056                 spin_unlock(&hb->lock);
3057                 switch (ret) {
3058                 case -EFAULT:
3059                         goto pi_faulted;
3060
3061                 case -EAGAIN:
3062                         goto pi_retry;
3063
3064                 default:
3065                         WARN_ON_ONCE(1);
3066                         goto out_putkey;
3067                 }
3068         }
3069
3070         /*
3071          * If uval has changed, let user space handle it.
3072          */
3073         ret = (curval == uval) ? 0 : -EAGAIN;
3074
3075 out_unlock:
3076         spin_unlock(&hb->lock);
3077 out_putkey:
3078         return ret;
3079
3080 pi_retry:
3081         cond_resched();
3082         goto retry;
3083
3084 pi_faulted:
3085
3086         ret = fault_in_user_writeable(uaddr);
3087         if (!ret)
3088                 goto retry;
3089
3090         return ret;
3091 }
3092
3093 /**
3094  * handle_early_requeue_pi_wakeup() - Detect early wakeup on the initial futex
3095  * @hb:         the hash_bucket futex_q was original enqueued on
3096  * @q:          the futex_q woken while waiting to be requeued
3097  * @key2:       the futex_key of the requeue target futex
3098  * @timeout:    the timeout associated with the wait (NULL if none)
3099  *
3100  * Detect if the task was woken on the initial futex as opposed to the requeue
3101  * target futex.  If so, determine if it was a timeout or a signal that caused
3102  * the wakeup and return the appropriate error code to the caller.  Must be
3103  * called with the hb lock held.
3104  *
3105  * Return:
3106  *  -  0 = no early wakeup detected;
3107  *  - <0 = -ETIMEDOUT or -ERESTARTNOINTR
3108  */
3109 static inline
3110 int handle_early_requeue_pi_wakeup(struct futex_hash_bucket *hb,
3111                                    struct futex_q *q, union futex_key *key2,
3112                                    struct hrtimer_sleeper *timeout)
3113 {
3114         int ret = 0;
3115
3116         /*
3117          * With the hb lock held, we avoid races while we process the wakeup.
3118          * We only need to hold hb (and not hb2) to ensure atomicity as the
3119          * wakeup code can't change q.key from uaddr to uaddr2 if we hold hb.
3120          * It can't be requeued from uaddr2 to something else since we don't
3121          * support a PI aware source futex for requeue.
3122          */
3123         if (!match_futex(&q->key, key2)) {
3124                 WARN_ON(q->lock_ptr && (&hb->lock != q->lock_ptr));
3125                 /*
3126                  * We were woken prior to requeue by a timeout or a signal.
3127                  * Unqueue the futex_q and determine which it was.
3128                  */
3129                 plist_del(&q->list, &hb->chain);
3130                 hb_waiters_dec(hb);
3131
3132                 /* Handle spurious wakeups gracefully */
3133                 ret = -EWOULDBLOCK;
3134                 if (timeout && !timeout->task)
3135                         ret = -ETIMEDOUT;
3136                 else if (signal_pending(current))
3137                         ret = -ERESTARTNOINTR;
3138         }
3139         return ret;
3140 }
3141
3142 /**
3143  * futex_wait_requeue_pi() - Wait on uaddr and take uaddr2
3144  * @uaddr:      the futex we initially wait on (non-pi)
3145  * @flags:      futex flags (FLAGS_SHARED, FLAGS_CLOCKRT, etc.), they must be
3146  *              the same type, no requeueing from private to shared, etc.
3147  * @val:        the expected value of uaddr
3148  * @abs_time:   absolute timeout
3149  * @bitset:     32 bit wakeup bitset set by userspace, defaults to all
3150  * @uaddr2:     the pi futex we will take prior to returning to user-space
3151  *
3152  * The caller will wait on uaddr and will be requeued by futex_requeue() to
3153  * uaddr2 which must be PI aware and unique from uaddr.  Normal wakeup will wake
3154  * on uaddr2 and complete the acquisition of the rt_mutex prior to returning to
3155  * userspace.  This ensures the rt_mutex maintains an owner when it has waiters;
3156  * without one, the pi logic would not know which task to boost/deboost, if
3157  * there was a need to.
3158  *
3159  * We call schedule in futex_wait_queue_me() when we enqueue and return there
3160  * via the following--
3161  * 1) wakeup on uaddr2 after an atomic lock acquisition by futex_requeue()
3162  * 2) wakeup on uaddr2 after a requeue
3163  * 3) signal
3164  * 4) timeout
3165  *
3166  * If 3, cleanup and return -ERESTARTNOINTR.
3167  *
3168  * If 2, we may then block on trying to take the rt_mutex and return via:
3169  * 5) successful lock
3170  * 6) signal
3171  * 7) timeout
3172  * 8) other lock acquisition failure
3173  *
3174  * If 6, return -EWOULDBLOCK (restarting the syscall would do the same).
3175  *
3176  * If 4 or 7, we cleanup and return with -ETIMEDOUT.
3177  *
3178  * Return:
3179  *  -  0 - On success;
3180  *  - <0 - On error
3181  */
3182 static int futex_wait_requeue_pi(u32 __user *uaddr, unsigned int flags,
3183                                  u32 val, ktime_t *abs_time, u32 bitset,
3184                                  u32 __user *uaddr2)
3185 {
3186         struct hrtimer_sleeper timeout, *to;
3187         struct futex_pi_state *pi_state = NULL;
3188         struct rt_mutex_waiter rt_waiter;
3189         struct futex_hash_bucket *hb;
3190         union futex_key key2 = FUTEX_KEY_INIT;
3191         struct futex_q q = futex_q_init;
3192         int res, ret;
3193
3194         if (!IS_ENABLED(CONFIG_FUTEX_PI))
3195                 return -ENOSYS;
3196
3197         if (uaddr == uaddr2)
3198                 return -EINVAL;
3199
3200         if (!bitset)
3201                 return -EINVAL;
3202
3203         to = futex_setup_timer(abs_time, &timeout, flags,
3204                                current->timer_slack_ns);
3205
3206         /*
3207          * The waiter is allocated on our stack, manipulated by the requeue
3208          * code while we sleep on uaddr.
3209          */
3210         rt_mutex_init_waiter(&rt_waiter);
3211
3212         ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, FUTEX_WRITE);
3213         if (unlikely(ret != 0))
3214                 goto out;
3215
3216         q.bitset = bitset;
3217         q.rt_waiter = &rt_waiter;
3218         q.requeue_pi_key = &key2;
3219
3220         /*
3221          * Prepare to wait on uaddr. On success, increments q.key (key1) ref
3222          * count.
3223          */
3224         ret = futex_wait_setup(uaddr, val, flags, &q, &hb);
3225         if (ret)
3226                 goto out;
3227
3228         /*
3229          * The check above which compares uaddrs is not sufficient for
3230          * shared futexes. We need to compare the keys:
3231          */
3232         if (match_futex(&q.key, &key2)) {
3233                 queue_unlock(hb);
3234                 ret = -EINVAL;
3235                 goto out;
3236         }
3237
3238         /* Queue the futex_q, drop the hb lock, wait for wakeup. */
3239         futex_wait_queue_me(hb, &q, to);
3240
3241         spin_lock(&hb->lock);
3242         ret = handle_early_requeue_pi_wakeup(hb, &q, &key2, to);
3243         spin_unlock(&hb->lock);
3244         if (ret)
3245                 goto out;
3246
3247         /*
3248          * In order for us to be here, we know our q.key == key2, and since
3249          * we took the hb->lock above, we also know that futex_requeue() has
3250          * completed and we no longer have to concern ourselves with a wakeup
3251          * race with the atomic proxy lock acquisition by the requeue code. The
3252          * futex_requeue dropped our key1 reference and incremented our key2
3253          * reference count.
3254          */
3255
3256         /* Check if the requeue code acquired the second futex for us. */
3257         if (!q.rt_waiter) {
3258                 /*
3259                  * Got the lock. We might not be the anticipated owner if we
3260                  * did a lock-steal - fix up the PI-state in that case.
3261                  */
3262                 if (q.pi_state && (q.pi_state->owner != current)) {
3263                         spin_lock(q.lock_ptr);
3264                         ret = fixup_pi_state_owner(uaddr2, &q, current);
3265                         if (ret && rt_mutex_owner(&q.pi_state->pi_mutex) == current) {
3266                                 pi_state = q.pi_state;
3267                                 get_pi_state(pi_state);
3268                         }
3269                         /*
3270                          * Drop the reference to the pi state which
3271                          * the requeue_pi() code acquired for us.
3272                          */
3273                         put_pi_state(q.pi_state);
3274                         spin_unlock(q.lock_ptr);
3275                 }
3276         } else {
3277                 struct rt_mutex *pi_mutex;
3278
3279                 /*
3280                  * We have been woken up by futex_unlock_pi(), a timeout, or a
3281                  * signal.  futex_unlock_pi() will not destroy the lock_ptr nor
3282                  * the pi_state.
3283                  */
3284                 WARN_ON(!q.pi_state);
3285                 pi_mutex = &q.pi_state->pi_mutex;
3286                 ret = rt_mutex_wait_proxy_lock(pi_mutex, to, &rt_waiter);
3287
3288                 spin_lock(q.lock_ptr);
3289                 if (ret && !rt_mutex_cleanup_proxy_lock(pi_mutex, &rt_waiter))
3290                         ret = 0;
3291
3292                 debug_rt_mutex_free_waiter(&rt_waiter);
3293                 /*
3294                  * Fixup the pi_state owner and possibly acquire the lock if we
3295                  * haven't already.
3296                  */
3297                 res = fixup_owner(uaddr2, &q, !ret);
3298                 /*
3299                  * If fixup_owner() returned an error, proprogate that.  If it
3300                  * acquired the lock, clear -ETIMEDOUT or -EINTR.
3301                  */
3302                 if (res)
3303                         ret = (res < 0) ? res : 0;
3304
3305                 /*
3306                  * If fixup_pi_state_owner() faulted and was unable to handle
3307                  * the fault, unlock the rt_mutex and return the fault to
3308                  * userspace.
3309                  */
3310                 if (ret && rt_mutex_owner(&q.pi_state->pi_mutex) == current) {
3311                         pi_state = q.pi_state;
3312                         get_pi_state(pi_state);
3313                 }
3314
3315                 /* Unqueue and drop the lock. */
3316                 unqueue_me_pi(&q);
3317         }
3318
3319         if (pi_state) {
3320                 rt_mutex_futex_unlock(&pi_state->pi_mutex);
3321                 put_pi_state(pi_state);
3322         }
3323
3324         if (ret == -EINTR) {
3325                 /*
3326                  * We've already been requeued, but cannot restart by calling
3327                  * futex_lock_pi() directly. We could restart this syscall, but
3328                  * it would detect that the user space "val" changed and return
3329                  * -EWOULDBLOCK.  Save the overhead of the restart and return
3330                  * -EWOULDBLOCK directly.
3331                  */
3332                 ret = -EWOULDBLOCK;
3333         }
3334
3335 out:
3336         if (to) {
3337                 hrtimer_cancel(&to->timer);
3338                 destroy_hrtimer_on_stack(&to->timer);
3339         }
3340         return ret;
3341 }
3342
3343 /*
3344  * Support for robust futexes: the kernel cleans up held futexes at
3345  * thread exit time.
3346  *
3347  * Implementation: user-space maintains a per-thread list of locks it
3348  * is holding. Upon do_exit(), the kernel carefully walks this list,
3349  * and marks all locks that are owned by this thread with the
3350  * FUTEX_OWNER_DIED bit, and wakes up a waiter (if any). The list is
3351  * always manipulated with the lock held, so the list is private and
3352  * per-thread. Userspace also maintains a per-thread 'list_op_pending'
3353  * field, to allow the kernel to clean up if the thread dies after
3354  * acquiring the lock, but just before it could have added itself to
3355  * the list. There can only be one such pending lock.
3356  */
3357
3358 /**
3359  * sys_set_robust_list() - Set the robust-futex list head of a task
3360  * @head:       pointer to the list-head
3361  * @len:        length of the list-head, as userspace expects
3362  */
3363 SYSCALL_DEFINE2(set_robust_list, struct robust_list_head __user *, head,
3364                 size_t, len)
3365 {
3366         if (!futex_cmpxchg_enabled)
3367                 return -ENOSYS;
3368         /*
3369          * The kernel knows only one size for now:
3370          */
3371         if (unlikely(len != sizeof(*head)))
3372                 return -EINVAL;
3373
3374         current->robust_list = head;
3375
3376         return 0;
3377 }
3378
3379 /**
3380  * sys_get_robust_list() - Get the robust-futex list head of a task
3381  * @pid:        pid of the process [zero for current task]
3382  * @head_ptr:   pointer to a list-head pointer, the kernel fills it in
3383  * @len_ptr:    pointer to a length field, the kernel fills in the header size
3384  */
3385 SYSCALL_DEFINE3(get_robust_list, int, pid,
3386                 struct robust_list_head __user * __user *, head_ptr,
3387                 size_t __user *, len_ptr)
3388 {
3389         struct robust_list_head __user *head;
3390         unsigned long ret;
3391         struct task_struct *p;
3392
3393         if (!futex_cmpxchg_enabled)
3394                 return -ENOSYS;
3395
3396         rcu_read_lock();
3397
3398         ret = -ESRCH;
3399         if (!pid)
3400                 p = current;
3401         else {
3402                 p = find_task_by_vpid(pid);
3403                 if (!p)
3404                         goto err_unlock;
3405         }
3406
3407         ret = -EPERM;
3408         if (!ptrace_may_access(p, PTRACE_MODE_READ_REALCREDS))
3409                 goto err_unlock;
3410
3411         head = p->robust_list;
3412         rcu_read_unlock();
3413
3414         if (put_user(sizeof(*head), len_ptr))
3415                 return -EFAULT;
3416         return put_user(head, head_ptr);
3417
3418 err_unlock:
3419         rcu_read_unlock();
3420
3421         return ret;
3422 }
3423
3424 /* Constants for the pending_op argument of handle_futex_death */
3425 #define HANDLE_DEATH_PENDING    true
3426 #define HANDLE_DEATH_LIST       false
3427
3428 /*
3429  * Process a futex-list entry, check whether it's owned by the
3430  * dying task, and do notification if so:
3431  */
3432 static int handle_futex_death(u32 __user *uaddr, struct task_struct *curr,
3433                               bool pi, bool pending_op)
3434 {
3435         u32 uval, nval, mval;
3436         int err;
3437
3438         /* Futex address must be 32bit aligned */
3439         if ((((unsigned long)uaddr) % sizeof(*uaddr)) != 0)
3440                 return -1;
3441
3442 retry:
3443         if (get_user(uval, uaddr))
3444                 return -1;
3445
3446         /*
3447          * Special case for regular (non PI) futexes. The unlock path in
3448          * user space has two race scenarios:
3449          *
3450          * 1. The unlock path releases the user space futex value and
3451          *    before it can execute the futex() syscall to wake up
3452          *    waiters it is killed.
3453          *
3454          * 2. A woken up waiter is killed before it can acquire the
3455          *    futex in user space.
3456          *
3457          * In both cases the TID validation below prevents a wakeup of
3458          * potential waiters which can cause these waiters to block
3459          * forever.
3460          *
3461          * In both cases the following conditions are met:
3462          *
3463          *      1) task->robust_list->list_op_pending != NULL
3464          *         @pending_op == true
3465          *      2) User space futex value == 0
3466          *      3) Regular futex: @pi == false
3467          *
3468          * If these conditions are met, it is safe to attempt waking up a
3469          * potential waiter without touching the user space futex value and
3470          * trying to set the OWNER_DIED bit. The user space futex value is
3471          * uncontended and the rest of the user space mutex state is
3472          * consistent, so a woken waiter will just take over the
3473          * uncontended futex. Setting the OWNER_DIED bit would create
3474          * inconsistent state and malfunction of the user space owner died
3475          * handling.
3476          */
3477         if (pending_op && !pi && !uval) {
3478                 futex_wake(uaddr, 1, 1, FUTEX_BITSET_MATCH_ANY);
3479                 return 0;
3480         }
3481
3482         if ((uval & FUTEX_TID_MASK) != task_pid_vnr(curr))
3483                 return 0;
3484
3485         /*
3486          * Ok, this dying thread is truly holding a futex
3487          * of interest. Set the OWNER_DIED bit atomically
3488          * via cmpxchg, and if the value had FUTEX_WAITERS
3489          * set, wake up a waiter (if any). (We have to do a
3490          * futex_wake() even if OWNER_DIED is already set -
3491          * to handle the rare but possible case of recursive
3492          * thread-death.) The rest of the cleanup is done in
3493          * userspace.
3494          */
3495         mval = (uval & FUTEX_WAITERS) | FUTEX_OWNER_DIED;
3496
3497         /*
3498          * We are not holding a lock here, but we want to have
3499          * the pagefault_disable/enable() protection because
3500          * we want to handle the fault gracefully. If the
3501          * access fails we try to fault in the futex with R/W
3502          * verification via get_user_pages. get_user() above
3503          * does not guarantee R/W access. If that fails we
3504          * give up and leave the futex locked.
3505          */
3506         if ((err = cmpxchg_futex_value_locked(&nval, uaddr, uval, mval))) {
3507                 switch (err) {
3508                 case -EFAULT:
3509                         if (fault_in_user_writeable(uaddr))
3510                                 return -1;
3511                         goto retry;
3512
3513                 case -EAGAIN:
3514                         cond_resched();
3515                         goto retry;
3516
3517                 default:
3518                         WARN_ON_ONCE(1);
3519                         return err;
3520                 }
3521         }
3522
3523         if (nval != uval)
3524                 goto retry;
3525
3526         /*
3527          * Wake robust non-PI futexes here. The wakeup of
3528          * PI futexes happens in exit_pi_state():
3529          */
3530         if (!pi && (uval & FUTEX_WAITERS))
3531                 futex_wake(uaddr, 1, 1, FUTEX_BITSET_MATCH_ANY);
3532
3533         return 0;
3534 }
3535
3536 /*
3537  * Fetch a robust-list pointer. Bit 0 signals PI futexes:
3538  */
3539 static inline int fetch_robust_entry(struct robust_list __user **entry,
3540                                      struct robust_list __user * __user *head,
3541                                      unsigned int *pi)
3542 {
3543         unsigned long uentry;
3544
3545         if (get_user(uentry, (unsigned long __user *)head))
3546                 return -EFAULT;
3547
3548         *entry = (void __user *)(uentry & ~1UL);
3549         *pi = uentry & 1;
3550
3551         return 0;
3552 }
3553
3554 /*
3555  * Walk curr->robust_list (very carefully, it's a userspace list!)
3556  * and mark any locks found there dead, and notify any waiters.
3557  *
3558  * We silently return on any sign of list-walking problem.
3559  */
3560 static void exit_robust_list(struct task_struct *curr)
3561 {
3562         struct robust_list_head __user *head = curr->robust_list;
3563         struct robust_list __user *entry, *next_entry, *pending;
3564         unsigned int limit = ROBUST_LIST_LIMIT, pi, pip;
3565         unsigned int next_pi;
3566         unsigned long futex_offset;
3567         int rc;
3568
3569         if (!futex_cmpxchg_enabled)
3570                 return;
3571
3572         /*
3573          * Fetch the list head (which was registered earlier, via
3574          * sys_set_robust_list()):
3575          */
3576         if (fetch_robust_entry(&entry, &head->list.next, &pi))
3577                 return;
3578         /*
3579          * Fetch the relative futex offset:
3580          */
3581         if (get_user(futex_offset, &head->futex_offset))
3582                 return;
3583         /*
3584          * Fetch any possibly pending lock-add first, and handle it
3585          * if it exists:
3586          */
3587         if (fetch_robust_entry(&pending, &head->list_op_pending, &pip))
3588                 return;
3589
3590         next_entry = NULL;      /* avoid warning with gcc */
3591         while (entry != &head->list) {
3592                 /*
3593                  * Fetch the next entry in the list before calling
3594                  * handle_futex_death:
3595                  */
3596                 rc = fetch_robust_entry(&next_entry, &entry->next, &next_pi);
3597                 /*
3598                  * A pending lock might already be on the list, so
3599                  * don't process it twice:
3600                  */
3601                 if (entry != pending) {
3602                         if (handle_futex_death((void __user *)entry + futex_offset,
3603                                                 curr, pi, HANDLE_DEATH_LIST))
3604                                 return;
3605                 }
3606                 if (rc)
3607                         return;
3608                 entry = next_entry;
3609                 pi = next_pi;
3610                 /*
3611                  * Avoid excessively long or circular lists:
3612                  */
3613                 if (!--limit)
3614                         break;
3615
3616                 cond_resched();
3617         }
3618
3619         if (pending) {
3620                 handle_futex_death((void __user *)pending + futex_offset,
3621                                    curr, pip, HANDLE_DEATH_PENDING);
3622         }
3623 }
3624
3625 static void futex_cleanup(struct task_struct *tsk)
3626 {
3627         if (unlikely(tsk->robust_list)) {
3628                 exit_robust_list(tsk);
3629                 tsk->robust_list = NULL;
3630         }
3631
3632 #ifdef CONFIG_COMPAT
3633         if (unlikely(tsk->compat_robust_list)) {
3634                 compat_exit_robust_list(tsk);
3635                 tsk->compat_robust_list = NULL;
3636         }
3637 #endif
3638
3639         if (unlikely(!list_empty(&tsk->pi_state_list)))
3640                 exit_pi_state_list(tsk);
3641 }
3642
3643 /**
3644  * futex_exit_recursive - Set the tasks futex state to FUTEX_STATE_DEAD
3645  * @tsk:        task to set the state on
3646  *
3647  * Set the futex exit state of the task lockless. The futex waiter code
3648  * observes that state when a task is exiting and loops until the task has
3649  * actually finished the futex cleanup. The worst case for this is that the
3650  * waiter runs through the wait loop until the state becomes visible.
3651  *
3652  * This is called from the recursive fault handling path in do_exit().
3653  *
3654  * This is best effort. Either the futex exit code has run already or
3655  * not. If the OWNER_DIED bit has been set on the futex then the waiter can
3656  * take it over. If not, the problem is pushed back to user space. If the
3657  * futex exit code did not run yet, then an already queued waiter might
3658  * block forever, but there is nothing which can be done about that.
3659  */
3660 void futex_exit_recursive(struct task_struct *tsk)
3661 {
3662         /* If the state is FUTEX_STATE_EXITING then futex_exit_mutex is held */
3663         if (tsk->futex_state == FUTEX_STATE_EXITING)
3664                 mutex_unlock(&tsk->futex_exit_mutex);
3665         tsk->futex_state = FUTEX_STATE_DEAD;
3666 }
3667
3668 static void futex_cleanup_begin(struct task_struct *tsk)
3669 {
3670         /*
3671          * Prevent various race issues against a concurrent incoming waiter
3672          * including live locks by forcing the waiter to block on
3673          * tsk->futex_exit_mutex when it observes FUTEX_STATE_EXITING in
3674          * attach_to_pi_owner().
3675          */
3676         mutex_lock(&tsk->futex_exit_mutex);
3677
3678         /*
3679          * Switch the state to FUTEX_STATE_EXITING under tsk->pi_lock.
3680          *
3681          * This ensures that all subsequent checks of tsk->futex_state in
3682          * attach_to_pi_owner() must observe FUTEX_STATE_EXITING with
3683          * tsk->pi_lock held.
3684          *
3685          * It guarantees also that a pi_state which was queued right before
3686          * the state change under tsk->pi_lock by a concurrent waiter must
3687          * be observed in exit_pi_state_list().
3688          */
3689         raw_spin_lock_irq(&tsk->pi_lock);
3690         tsk->futex_state = FUTEX_STATE_EXITING;
3691         raw_spin_unlock_irq(&tsk->pi_lock);
3692 }
3693
3694 static void futex_cleanup_end(struct task_struct *tsk, int state)
3695 {
3696         /*
3697          * Lockless store. The only side effect is that an observer might
3698          * take another loop until it becomes visible.
3699          */
3700         tsk->futex_state = state;
3701         /*
3702          * Drop the exit protection. This unblocks waiters which observed
3703          * FUTEX_STATE_EXITING to reevaluate the state.
3704          */
3705         mutex_unlock(&tsk->futex_exit_mutex);
3706 }
3707
3708 void futex_exec_release(struct task_struct *tsk)
3709 {
3710         /*
3711          * The state handling is done for consistency, but in the case of
3712          * exec() there is no way to prevent futher damage as the PID stays
3713          * the same. But for the unlikely and arguably buggy case that a
3714          * futex is held on exec(), this provides at least as much state
3715          * consistency protection which is possible.
3716          */
3717         futex_cleanup_begin(tsk);
3718         futex_cleanup(tsk);
3719         /*
3720          * Reset the state to FUTEX_STATE_OK. The task is alive and about
3721          * exec a new binary.
3722          */
3723         futex_cleanup_end(tsk, FUTEX_STATE_OK);
3724 }
3725
3726 void futex_exit_release(struct task_struct *tsk)
3727 {
3728         futex_cleanup_begin(tsk);
3729         futex_cleanup(tsk);
3730         futex_cleanup_end(tsk, FUTEX_STATE_DEAD);
3731 }
3732
3733 long do_futex(u32 __user *uaddr, int op, u32 val, ktime_t *timeout,
3734                 u32 __user *uaddr2, u32 val2, u32 val3)
3735 {
3736         int cmd = op & FUTEX_CMD_MASK;
3737         unsigned int flags = 0;
3738
3739         if (!(op & FUTEX_PRIVATE_FLAG))
3740                 flags |= FLAGS_SHARED;
3741
3742         if (op & FUTEX_CLOCK_REALTIME) {
3743                 flags |= FLAGS_CLOCKRT;
3744                 if (cmd != FUTEX_WAIT && cmd != FUTEX_WAIT_BITSET && \
3745                     cmd != FUTEX_WAIT_REQUEUE_PI)
3746                         return -ENOSYS;
3747         }
3748
3749         switch (cmd) {
3750         case FUTEX_LOCK_PI:
3751         case FUTEX_UNLOCK_PI:
3752         case FUTEX_TRYLOCK_PI:
3753         case FUTEX_WAIT_REQUEUE_PI:
3754         case FUTEX_CMP_REQUEUE_PI:
3755                 if (!futex_cmpxchg_enabled)
3756                         return -ENOSYS;
3757         }
3758
3759         switch (cmd) {
3760         case FUTEX_WAIT:
3761                 val3 = FUTEX_BITSET_MATCH_ANY;
3762                 fallthrough;
3763         case FUTEX_WAIT_BITSET:
3764                 return futex_wait(uaddr, flags, val, timeout, val3);
3765         case FUTEX_WAKE:
3766                 val3 = FUTEX_BITSET_MATCH_ANY;
3767                 fallthrough;
3768         case FUTEX_WAKE_BITSET:
3769                 return futex_wake(uaddr, flags, val, val3);
3770         case FUTEX_REQUEUE:
3771                 return futex_requeue(uaddr, flags, uaddr2, val, val2, NULL, 0);
3772         case FUTEX_CMP_REQUEUE:
3773                 return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 0);
3774         case FUTEX_WAKE_OP:
3775                 return futex_wake_op(uaddr, flags, uaddr2, val, val2, val3);
3776         case FUTEX_LOCK_PI:
3777                 return futex_lock_pi(uaddr, flags, timeout, 0);
3778         case FUTEX_UNLOCK_PI:
3779                 return futex_unlock_pi(uaddr, flags);
3780         case FUTEX_TRYLOCK_PI:
3781                 return futex_lock_pi(uaddr, flags, NULL, 1);
3782         case FUTEX_WAIT_REQUEUE_PI:
3783                 val3 = FUTEX_BITSET_MATCH_ANY;
3784                 return futex_wait_requeue_pi(uaddr, flags, val, timeout, val3,
3785                                              uaddr2);
3786         case FUTEX_CMP_REQUEUE_PI:
3787                 return futex_requeue(uaddr, flags, uaddr2, val, val2, &val3, 1);
3788         }
3789         return -ENOSYS;
3790 }
3791
3792
3793 SYSCALL_DEFINE6(futex, u32 __user *, uaddr, int, op, u32, val,
3794                 struct __kernel_timespec __user *, utime, u32 __user *, uaddr2,
3795                 u32, val3)
3796 {
3797         struct timespec64 ts;
3798         ktime_t t, *tp = NULL;
3799         u32 val2 = 0;
3800         int cmd = op & FUTEX_CMD_MASK;
3801
3802         if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI ||
3803                       cmd == FUTEX_WAIT_BITSET ||
3804                       cmd == FUTEX_WAIT_REQUEUE_PI)) {
3805                 if (unlikely(should_fail_futex(!(op & FUTEX_PRIVATE_FLAG))))
3806                         return -EFAULT;
3807                 if (get_timespec64(&ts, utime))
3808                         return -EFAULT;
3809                 if (!timespec64_valid(&ts))
3810                         return -EINVAL;
3811
3812                 t = timespec64_to_ktime(ts);
3813                 if (cmd == FUTEX_WAIT)
3814                         t = ktime_add_safe(ktime_get(), t);
3815                 else if (!(op & FUTEX_CLOCK_REALTIME))
3816                         t = timens_ktime_to_host(CLOCK_MONOTONIC, t);
3817                 tp = &t;
3818         }
3819         /*
3820          * requeue parameter in 'utime' if cmd == FUTEX_*_REQUEUE_*.
3821          * number of waiters to wake in 'utime' if cmd == FUTEX_WAKE_OP.
3822          */
3823         if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE ||
3824             cmd == FUTEX_CMP_REQUEUE_PI || cmd == FUTEX_WAKE_OP)
3825                 val2 = (u32) (unsigned long) utime;
3826
3827         return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
3828 }
3829
3830 #ifdef CONFIG_COMPAT
3831 /*
3832  * Fetch a robust-list pointer. Bit 0 signals PI futexes:
3833  */
3834 static inline int
3835 compat_fetch_robust_entry(compat_uptr_t *uentry, struct robust_list __user **entry,
3836                    compat_uptr_t __user *head, unsigned int *pi)
3837 {
3838         if (get_user(*uentry, head))
3839                 return -EFAULT;
3840
3841         *entry = compat_ptr((*uentry) & ~1);
3842         *pi = (unsigned int)(*uentry) & 1;
3843
3844         return 0;
3845 }
3846
3847 static void __user *futex_uaddr(struct robust_list __user *entry,
3848                                 compat_long_t futex_offset)
3849 {
3850         compat_uptr_t base = ptr_to_compat(entry);
3851         void __user *uaddr = compat_ptr(base + futex_offset);
3852
3853         return uaddr;
3854 }
3855
3856 /*
3857  * Walk curr->robust_list (very carefully, it's a userspace list!)
3858  * and mark any locks found there dead, and notify any waiters.
3859  *
3860  * We silently return on any sign of list-walking problem.
3861  */
3862 static void compat_exit_robust_list(struct task_struct *curr)
3863 {
3864         struct compat_robust_list_head __user *head = curr->compat_robust_list;
3865         struct robust_list __user *entry, *next_entry, *pending;
3866         unsigned int limit = ROBUST_LIST_LIMIT, pi, pip;
3867         unsigned int next_pi;
3868         compat_uptr_t uentry, next_uentry, upending;
3869         compat_long_t futex_offset;
3870         int rc;
3871
3872         if (!futex_cmpxchg_enabled)
3873                 return;
3874
3875         /*
3876          * Fetch the list head (which was registered earlier, via
3877          * sys_set_robust_list()):
3878          */
3879         if (compat_fetch_robust_entry(&uentry, &entry, &head->list.next, &pi))
3880                 return;
3881         /*
3882          * Fetch the relative futex offset:
3883          */
3884         if (get_user(futex_offset, &head->futex_offset))
3885                 return;
3886         /*
3887          * Fetch any possibly pending lock-add first, and handle it
3888          * if it exists:
3889          */
3890         if (compat_fetch_robust_entry(&upending, &pending,
3891                                &head->list_op_pending, &pip))
3892                 return;
3893
3894         next_entry = NULL;      /* avoid warning with gcc */
3895         while (entry != (struct robust_list __user *) &head->list) {
3896                 /*
3897                  * Fetch the next entry in the list before calling
3898                  * handle_futex_death:
3899                  */
3900                 rc = compat_fetch_robust_entry(&next_uentry, &next_entry,
3901                         (compat_uptr_t __user *)&entry->next, &next_pi);
3902                 /*
3903                  * A pending lock might already be on the list, so
3904                  * dont process it twice:
3905                  */
3906                 if (entry != pending) {
3907                         void __user *uaddr = futex_uaddr(entry, futex_offset);
3908
3909                         if (handle_futex_death(uaddr, curr, pi,
3910                                                HANDLE_DEATH_LIST))
3911                                 return;
3912                 }
3913                 if (rc)
3914                         return;
3915                 uentry = next_uentry;
3916                 entry = next_entry;
3917                 pi = next_pi;
3918                 /*
3919                  * Avoid excessively long or circular lists:
3920                  */
3921                 if (!--limit)
3922                         break;
3923
3924                 cond_resched();
3925         }
3926         if (pending) {
3927                 void __user *uaddr = futex_uaddr(pending, futex_offset);
3928
3929                 handle_futex_death(uaddr, curr, pip, HANDLE_DEATH_PENDING);
3930         }
3931 }
3932
3933 COMPAT_SYSCALL_DEFINE2(set_robust_list,
3934                 struct compat_robust_list_head __user *, head,
3935                 compat_size_t, len)
3936 {
3937         if (!futex_cmpxchg_enabled)
3938                 return -ENOSYS;
3939
3940         if (unlikely(len != sizeof(*head)))
3941                 return -EINVAL;
3942
3943         current->compat_robust_list = head;
3944
3945         return 0;
3946 }
3947
3948 COMPAT_SYSCALL_DEFINE3(get_robust_list, int, pid,
3949                         compat_uptr_t __user *, head_ptr,
3950                         compat_size_t __user *, len_ptr)
3951 {
3952         struct compat_robust_list_head __user *head;
3953         unsigned long ret;
3954         struct task_struct *p;
3955
3956         if (!futex_cmpxchg_enabled)
3957                 return -ENOSYS;
3958
3959         rcu_read_lock();
3960
3961         ret = -ESRCH;
3962         if (!pid)
3963                 p = current;
3964         else {
3965                 p = find_task_by_vpid(pid);
3966                 if (!p)
3967                         goto err_unlock;
3968         }
3969
3970         ret = -EPERM;
3971         if (!ptrace_may_access(p, PTRACE_MODE_READ_REALCREDS))
3972                 goto err_unlock;
3973
3974         head = p->compat_robust_list;
3975         rcu_read_unlock();
3976
3977         if (put_user(sizeof(*head), len_ptr))
3978                 return -EFAULT;
3979         return put_user(ptr_to_compat(head), head_ptr);
3980
3981 err_unlock:
3982         rcu_read_unlock();
3983
3984         return ret;
3985 }
3986 #endif /* CONFIG_COMPAT */
3987
3988 #ifdef CONFIG_COMPAT_32BIT_TIME
3989 SYSCALL_DEFINE6(futex_time32, u32 __user *, uaddr, int, op, u32, val,
3990                 struct old_timespec32 __user *, utime, u32 __user *, uaddr2,
3991                 u32, val3)
3992 {
3993         struct timespec64 ts;
3994         ktime_t t, *tp = NULL;
3995         int val2 = 0;
3996         int cmd = op & FUTEX_CMD_MASK;
3997
3998         if (utime && (cmd == FUTEX_WAIT || cmd == FUTEX_LOCK_PI ||
3999                       cmd == FUTEX_WAIT_BITSET ||
4000                       cmd == FUTEX_WAIT_REQUEUE_PI)) {
4001                 if (get_old_timespec32(&ts, utime))
4002                         return -EFAULT;
4003                 if (!timespec64_valid(&ts))
4004                         return -EINVAL;
4005
4006                 t = timespec64_to_ktime(ts);
4007                 if (cmd == FUTEX_WAIT)
4008                         t = ktime_add_safe(ktime_get(), t);
4009                 else if (!(op & FUTEX_CLOCK_REALTIME))
4010                         t = timens_ktime_to_host(CLOCK_MONOTONIC, t);
4011                 tp = &t;
4012         }
4013         if (cmd == FUTEX_REQUEUE || cmd == FUTEX_CMP_REQUEUE ||
4014             cmd == FUTEX_CMP_REQUEUE_PI || cmd == FUTEX_WAKE_OP)
4015                 val2 = (int) (unsigned long) utime;
4016
4017         return do_futex(uaddr, op, val, tp, uaddr2, val2, val3);
4018 }
4019 #endif /* CONFIG_COMPAT_32BIT_TIME */
4020
4021 static void __init futex_detect_cmpxchg(void)
4022 {
4023 #ifndef CONFIG_HAVE_FUTEX_CMPXCHG
4024         u32 curval;
4025
4026         /*
4027          * This will fail and we want it. Some arch implementations do
4028          * runtime detection of the futex_atomic_cmpxchg_inatomic()
4029          * functionality. We want to know that before we call in any
4030          * of the complex code paths. Also we want to prevent
4031          * registration of robust lists in that case. NULL is
4032          * guaranteed to fault and we get -EFAULT on functional
4033          * implementation, the non-functional ones will return
4034          * -ENOSYS.
4035          */
4036         if (cmpxchg_futex_value_locked(&curval, NULL, 0, 0) == -EFAULT)
4037                 futex_cmpxchg_enabled = 1;
4038 #endif
4039 }
4040
4041 static int __init futex_init(void)
4042 {
4043         unsigned int futex_shift;
4044         unsigned long i;
4045
4046 #if CONFIG_BASE_SMALL
4047         futex_hashsize = 16;
4048 #else
4049         futex_hashsize = roundup_pow_of_two(256 * num_possible_cpus());
4050 #endif
4051
4052         futex_queues = alloc_large_system_hash("futex", sizeof(*futex_queues),
4053                                                futex_hashsize, 0,
4054                                                futex_hashsize < 256 ? HASH_SMALL : 0,
4055                                                &futex_shift, NULL,
4056                                                futex_hashsize, futex_hashsize);
4057         futex_hashsize = 1UL << futex_shift;
4058
4059         futex_detect_cmpxchg();
4060
4061         for (i = 0; i < futex_hashsize; i++) {
4062                 atomic_set(&futex_queues[i].waiters, 0);
4063                 plist_head_init(&futex_queues[i].chain);
4064                 spin_lock_init(&futex_queues[i].lock);
4065         }
4066
4067         return 0;
4068 }
4069 core_initcall(futex_init);