robust-futex-ABI.txt 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. ====================
  2. The robust futex ABI
  3. ====================
  4. :Author: Started by Paul Jackson <pj@sgi.com>
  5. Robust_futexes provide a mechanism that is used in addition to normal
  6. futexes, for kernel assist of cleanup of held locks on task exit.
  7. The interesting data as to what futexes a thread is holding is kept on a
  8. linked list in user space, where it can be updated efficiently as locks
  9. are taken and dropped, without kernel intervention. The only additional
  10. kernel intervention required for robust_futexes above and beyond what is
  11. required for futexes is:
  12. 1) a one time call, per thread, to tell the kernel where its list of
  13. held robust_futexes begins, and
  14. 2) internal kernel code at exit, to handle any listed locks held
  15. by the exiting thread.
  16. The existing normal futexes already provide a "Fast Userspace Locking"
  17. mechanism, which handles uncontested locking without needing a system
  18. call, and handles contested locking by maintaining a list of waiting
  19. threads in the kernel. Options on the sys_futex(2) system call support
  20. waiting on a particular futex, and waking up the next waiter on a
  21. particular futex.
  22. For robust_futexes to work, the user code (typically in a library such
  23. as glibc linked with the application) has to manage and place the
  24. necessary list elements exactly as the kernel expects them. If it fails
  25. to do so, then improperly listed locks will not be cleaned up on exit,
  26. probably causing deadlock or other such failure of the other threads
  27. waiting on the same locks.
  28. A thread that anticipates possibly using robust_futexes should first
  29. issue the system call::
  30. asmlinkage long
  31. sys_set_robust_list(struct robust_list_head __user *head, size_t len);
  32. The pointer 'head' points to a structure in the threads address space
  33. consisting of three words. Each word is 32 bits on 32 bit arch's, or 64
  34. bits on 64 bit arch's, and local byte order. Each thread should have
  35. its own thread private 'head'.
  36. If a thread is running in 32 bit compatibility mode on a 64 native arch
  37. kernel, then it can actually have two such structures - one using 32 bit
  38. words for 32 bit compatibility mode, and one using 64 bit words for 64
  39. bit native mode. The kernel, if it is a 64 bit kernel supporting 32 bit
  40. compatibility mode, will attempt to process both lists on each task
  41. exit, if the corresponding sys_set_robust_list() call has been made to
  42. setup that list.
  43. The first word in the memory structure at 'head' contains a
  44. pointer to a single linked list of 'lock entries', one per lock,
  45. as described below. If the list is empty, the pointer will point
  46. to itself, 'head'. The last 'lock entry' points back to the 'head'.
  47. The second word, called 'offset', specifies the offset from the
  48. address of the associated 'lock entry', plus or minus, of what will
  49. be called the 'lock word', from that 'lock entry'. The 'lock word'
  50. is always a 32 bit word, unlike the other words above. The 'lock
  51. word' holds 3 flag bits in the upper 3 bits, and the thread id (TID)
  52. of the thread holding the lock in the bottom 29 bits. See further
  53. below for a description of the flag bits.
  54. The third word, called 'list_op_pending', contains transient copy of
  55. the address of the 'lock entry', during list insertion and removal,
  56. and is needed to correctly resolve races should a thread exit while
  57. in the middle of a locking or unlocking operation.
  58. Each 'lock entry' on the single linked list starting at 'head' consists
  59. of just a single word, pointing to the next 'lock entry', or back to
  60. 'head' if there are no more entries. In addition, nearby to each 'lock
  61. entry', at an offset from the 'lock entry' specified by the 'offset'
  62. word, is one 'lock word'.
  63. The 'lock word' is always 32 bits, and is intended to be the same 32 bit
  64. lock variable used by the futex mechanism, in conjunction with
  65. robust_futexes. The kernel will only be able to wakeup the next thread
  66. waiting for a lock on a threads exit if that next thread used the futex
  67. mechanism to register the address of that 'lock word' with the kernel.
  68. For each futex lock currently held by a thread, if it wants this
  69. robust_futex support for exit cleanup of that lock, it should have one
  70. 'lock entry' on this list, with its associated 'lock word' at the
  71. specified 'offset'. Should a thread die while holding any such locks,
  72. the kernel will walk this list, mark any such locks with a bit
  73. indicating their holder died, and wakeup the next thread waiting for
  74. that lock using the futex mechanism.
  75. When a thread has invoked the above system call to indicate it
  76. anticipates using robust_futexes, the kernel stores the passed in 'head'
  77. pointer for that task. The task may retrieve that value later on by
  78. using the system call::
  79. asmlinkage long
  80. sys_get_robust_list(int pid, struct robust_list_head __user **head_ptr,
  81. size_t __user *len_ptr);
  82. It is anticipated that threads will use robust_futexes embedded in
  83. larger, user level locking structures, one per lock. The kernel
  84. robust_futex mechanism doesn't care what else is in that structure, so
  85. long as the 'offset' to the 'lock word' is the same for all
  86. robust_futexes used by that thread. The thread should link those locks
  87. it currently holds using the 'lock entry' pointers. It may also have
  88. other links between the locks, such as the reverse side of a double
  89. linked list, but that doesn't matter to the kernel.
  90. By keeping its locks linked this way, on a list starting with a 'head'
  91. pointer known to the kernel, the kernel can provide to a thread the
  92. essential service available for robust_futexes, which is to help clean
  93. up locks held at the time of (a perhaps unexpectedly) exit.
  94. Actual locking and unlocking, during normal operations, is handled
  95. entirely by user level code in the contending threads, and by the
  96. existing futex mechanism to wait for, and wakeup, locks. The kernels
  97. only essential involvement in robust_futexes is to remember where the
  98. list 'head' is, and to walk the list on thread exit, handling locks
  99. still held by the departing thread, as described below.
  100. There may exist thousands of futex lock structures in a threads shared
  101. memory, on various data structures, at a given point in time. Only those
  102. lock structures for locks currently held by that thread should be on
  103. that thread's robust_futex linked lock list a given time.
  104. A given futex lock structure in a user shared memory region may be held
  105. at different times by any of the threads with access to that region. The
  106. thread currently holding such a lock, if any, is marked with the threads
  107. TID in the lower 29 bits of the 'lock word'.
  108. When adding or removing a lock from its list of held locks, in order for
  109. the kernel to correctly handle lock cleanup regardless of when the task
  110. exits (perhaps it gets an unexpected signal 9 in the middle of
  111. manipulating this list), the user code must observe the following
  112. protocol on 'lock entry' insertion and removal:
  113. On insertion:
  114. 1) set the 'list_op_pending' word to the address of the 'lock entry'
  115. to be inserted,
  116. 2) acquire the futex lock,
  117. 3) add the lock entry, with its thread id (TID) in the bottom 29 bits
  118. of the 'lock word', to the linked list starting at 'head', and
  119. 4) clear the 'list_op_pending' word.
  120. On removal:
  121. 1) set the 'list_op_pending' word to the address of the 'lock entry'
  122. to be removed,
  123. 2) remove the lock entry for this lock from the 'head' list,
  124. 3) release the futex lock, and
  125. 4) clear the 'lock_op_pending' word.
  126. On exit, the kernel will consider the address stored in
  127. 'list_op_pending' and the address of each 'lock word' found by walking
  128. the list starting at 'head'. For each such address, if the bottom 29
  129. bits of the 'lock word' at offset 'offset' from that address equals the
  130. exiting threads TID, then the kernel will do two things:
  131. 1) if bit 31 (0x80000000) is set in that word, then attempt a futex
  132. wakeup on that address, which will waken the next thread that has
  133. used to the futex mechanism to wait on that address, and
  134. 2) atomically set bit 30 (0x40000000) in the 'lock word'.
  135. In the above, bit 31 was set by futex waiters on that lock to indicate
  136. they were waiting, and bit 30 is set by the kernel to indicate that the
  137. lock owner died holding the lock.
  138. The kernel exit code will silently stop scanning the list further if at
  139. any point:
  140. 1) the 'head' pointer or an subsequent linked list pointer
  141. is not a valid address of a user space word
  142. 2) the calculated location of the 'lock word' (address plus
  143. 'offset') is not the valid address of a 32 bit user space
  144. word
  145. 3) if the list contains more than 1 million (subject to
  146. future kernel configuration changes) elements.
  147. When the kernel sees a list entry whose 'lock word' doesn't have the
  148. current threads TID in the lower 29 bits, it does nothing with that
  149. entry, and goes on to the next entry.
  150. Bit 29 (0x20000000) of the 'lock word' is reserved for future use.