0001 ========================================
0002 A description of what robust futexes are
0003 ========================================
0004
0005 :Started by: Ingo Molnar <mingo@redhat.com>
0006
0007 Background
0008 ----------
0009
0010 what are robust futexes? To answer that, we first need to understand
0011 what futexes are: normal futexes are special types of locks that in the
0012 noncontended case can be acquired/released from userspace without having
0013 to enter the kernel.
0014
0015 A futex is in essence a user-space address, e.g. a 32-bit lock variable
0016 field. If userspace notices contention (the lock is already owned and
0017 someone else wants to grab it too) then the lock is marked with a value
0018 that says "there's a waiter pending", and the sys_futex(FUTEX_WAIT)
0019 syscall is used to wait for the other guy to release it. The kernel
0020 creates a 'futex queue' internally, so that it can later on match up the
0021 waiter with the waker - without them having to know about each other.
0022 When the owner thread releases the futex, it notices (via the variable
0023 value) that there were waiter(s) pending, and does the
0024 sys_futex(FUTEX_WAKE) syscall to wake them up. Once all waiters have
0025 taken and released the lock, the futex is again back to 'uncontended'
0026 state, and there's no in-kernel state associated with it. The kernel
0027 completely forgets that there ever was a futex at that address. This
0028 method makes futexes very lightweight and scalable.
0029
0030 "Robustness" is about dealing with crashes while holding a lock: if a
0031 process exits prematurely while holding a pthread_mutex_t lock that is
0032 also shared with some other process (e.g. yum segfaults while holding a
0033 pthread_mutex_t, or yum is kill -9-ed), then waiters for that lock need
0034 to be notified that the last owner of the lock exited in some irregular
0035 way.
0036
0037 To solve such types of problems, "robust mutex" userspace APIs were
0038 created: pthread_mutex_lock() returns an error value if the owner exits
0039 prematurely - and the new owner can decide whether the data protected by
0040 the lock can be recovered safely.
0041
0042 There is a big conceptual problem with futex based mutexes though: it is
0043 the kernel that destroys the owner task (e.g. due to a SEGFAULT), but
0044 the kernel cannot help with the cleanup: if there is no 'futex queue'
0045 (and in most cases there is none, futexes being fast lightweight locks)
0046 then the kernel has no information to clean up after the held lock!
0047 Userspace has no chance to clean up after the lock either - userspace is
0048 the one that crashes, so it has no opportunity to clean up. Catch-22.
0049
0050 In practice, when e.g. yum is kill -9-ed (or segfaults), a system reboot
0051 is needed to release that futex based lock. This is one of the leading
0052 bugreports against yum.
0053
0054 To solve this problem, the traditional approach was to extend the vma
0055 (virtual memory area descriptor) concept to have a notion of 'pending
0056 robust futexes attached to this area'. This approach requires 3 new
0057 syscall variants to sys_futex(): FUTEX_REGISTER, FUTEX_DEREGISTER and
0058 FUTEX_RECOVER. At do_exit() time, all vmas are searched to see whether
0059 they have a robust_head set. This approach has two fundamental problems
0060 left:
0061
0062 - it has quite complex locking and race scenarios. The vma-based
0063 approach had been pending for years, but they are still not completely
0064 reliable.
0065
0066 - they have to scan _every_ vma at sys_exit() time, per thread!
0067
0068 The second disadvantage is a real killer: pthread_exit() takes around 1
0069 microsecond on Linux, but with thousands (or tens of thousands) of vmas
0070 every pthread_exit() takes a millisecond or more, also totally
0071 destroying the CPU's L1 and L2 caches!
0072
0073 This is very much noticeable even for normal process sys_exit_group()
0074 calls: the kernel has to do the vma scanning unconditionally! (this is
0075 because the kernel has no knowledge about how many robust futexes there
0076 are to be cleaned up, because a robust futex might have been registered
0077 in another task, and the futex variable might have been simply mmap()-ed
0078 into this process's address space).
0079
0080 This huge overhead forced the creation of CONFIG_FUTEX_ROBUST so that
0081 normal kernels can turn it off, but worse than that: the overhead makes
0082 robust futexes impractical for any type of generic Linux distribution.
0083
0084 So something had to be done.
0085
0086 New approach to robust futexes
0087 ------------------------------
0088
0089 At the heart of this new approach there is a per-thread private list of
0090 robust locks that userspace is holding (maintained by glibc) - which
0091 userspace list is registered with the kernel via a new syscall [this
0092 registration happens at most once per thread lifetime]. At do_exit()
0093 time, the kernel checks this user-space list: are there any robust futex
0094 locks to be cleaned up?
0095
0096 In the common case, at do_exit() time, there is no list registered, so
0097 the cost of robust futexes is just a simple current->robust_list != NULL
0098 comparison. If the thread has registered a list, then normally the list
0099 is empty. If the thread/process crashed or terminated in some incorrect
0100 way then the list might be non-empty: in this case the kernel carefully
0101 walks the list [not trusting it], and marks all locks that are owned by
0102 this thread with the FUTEX_OWNER_DIED bit, and wakes up one waiter (if
0103 any).
0104
0105 The list is guaranteed to be private and per-thread at do_exit() time,
0106 so it can be accessed by the kernel in a lockless way.
0107
0108 There is one race possible though: since adding to and removing from the
0109 list is done after the futex is acquired by glibc, there is a few
0110 instructions window for the thread (or process) to die there, leaving
0111 the futex hung. To protect against this possibility, userspace (glibc)
0112 also maintains a simple per-thread 'list_op_pending' field, to allow the
0113 kernel to clean up if the thread dies after acquiring the lock, but just
0114 before it could have added itself to the list. Glibc sets this
0115 list_op_pending field before it tries to acquire the futex, and clears
0116 it after the list-add (or list-remove) has finished.
0117
0118 That's all that is needed - all the rest of robust-futex cleanup is done
0119 in userspace [just like with the previous patches].
0120
0121 Ulrich Drepper has implemented the necessary glibc support for this new
0122 mechanism, which fully enables robust mutexes.
0123
0124 Key differences of this userspace-list based approach, compared to the
0125 vma based method:
0126
0127 - it's much, much faster: at thread exit time, there's no need to loop
0128 over every vma (!), which the VM-based method has to do. Only a very
0129 simple 'is the list empty' op is done.
0130
0131 - no VM changes are needed - 'struct address_space' is left alone.
0132
0133 - no registration of individual locks is needed: robust mutexes don't
0134 need any extra per-lock syscalls. Robust mutexes thus become a very
0135 lightweight primitive - so they don't force the application designer
0136 to do a hard choice between performance and robustness - robust
0137 mutexes are just as fast.
0138
0139 - no per-lock kernel allocation happens.
0140
0141 - no resource limits are needed.
0142
0143 - no kernel-space recovery call (FUTEX_RECOVER) is needed.
0144
0145 - the implementation and the locking is "obvious", and there are no
0146 interactions with the VM.
0147
0148 Performance
0149 -----------
0150
0151 I have benchmarked the time needed for the kernel to process a list of 1
0152 million (!) held locks, using the new method [on a 2GHz CPU]:
0153
0154 - with FUTEX_WAIT set [contended mutex]: 130 msecs
0155 - without FUTEX_WAIT set [uncontended mutex]: 30 msecs
0156
0157 I have also measured an approach where glibc does the lock notification
0158 [which it currently does for !pshared robust mutexes], and that took 256
0159 msecs - clearly slower, due to the 1 million FUTEX_WAKE syscalls
0160 userspace had to do.
0161
0162 (1 million held locks are unheard of - we expect at most a handful of
0163 locks to be held at a time. Nevertheless it's nice to know that this
0164 approach scales nicely.)
0165
0166 Implementation details
0167 ----------------------
0168
0169 The patch adds two new syscalls: one to register the userspace list, and
0170 one to query the registered list pointer::
0171
0172 asmlinkage long
0173 sys_set_robust_list(struct robust_list_head __user *head,
0174 size_t len);
0175
0176 asmlinkage long
0177 sys_get_robust_list(int pid, struct robust_list_head __user **head_ptr,
0178 size_t __user *len_ptr);
0179
0180 List registration is very fast: the pointer is simply stored in
0181 current->robust_list. [Note that in the future, if robust futexes become
0182 widespread, we could extend sys_clone() to register a robust-list head
0183 for new threads, without the need of another syscall.]
0184
0185 So there is virtually zero overhead for tasks not using robust futexes,
0186 and even for robust futex users, there is only one extra syscall per
0187 thread lifetime, and the cleanup operation, if it happens, is fast and
0188 straightforward. The kernel doesn't have any internal distinction between
0189 robust and normal futexes.
0190
0191 If a futex is found to be held at exit time, the kernel sets the
0192 following bit of the futex word::
0193
0194 #define FUTEX_OWNER_DIED 0x40000000
0195
0196 and wakes up the next futex waiter (if any). User-space does the rest of
0197 the cleanup.
0198
0199 Otherwise, robust futexes are acquired by glibc by putting the TID into
0200 the futex field atomically. Waiters set the FUTEX_WAITERS bit::
0201
0202 #define FUTEX_WAITERS 0x80000000
0203
0204 and the remaining bits are for the TID.
0205
0206 Testing, architecture support
0207 -----------------------------
0208
0209 I've tested the new syscalls on x86 and x86_64, and have made sure the
0210 parsing of the userspace list is robust [ ;-) ] even if the list is
0211 deliberately corrupted.
0212
0213 i386 and x86_64 syscalls are wired up at the moment, and Ulrich has
0214 tested the new glibc code (on x86_64 and i386), and it works for his
0215 robust-mutex testcases.
0216
0217 All other architectures should build just fine too - but they won't have
0218 the new syscalls yet.
0219
0220 Architectures need to implement the new futex_atomic_cmpxchg_inatomic()
0221 inline function before writing up the syscalls.