whatisRCU.rst 49 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313
  1. .. _whatisrcu_doc:
  2. What is RCU? -- "Read, Copy, Update"
  3. ======================================
  4. Please note that the "What is RCU?" LWN series is an excellent place
  5. to start learning about RCU:
  6. | 1. What is RCU, Fundamentally? https://lwn.net/Articles/262464/
  7. | 2. What is RCU? Part 2: Usage https://lwn.net/Articles/263130/
  8. | 3. RCU part 3: the RCU API https://lwn.net/Articles/264090/
  9. | 4. The RCU API, 2010 Edition https://lwn.net/Articles/418853/
  10. | 2010 Big API Table https://lwn.net/Articles/419086/
  11. | 5. The RCU API, 2014 Edition https://lwn.net/Articles/609904/
  12. | 2014 Big API Table https://lwn.net/Articles/609973/
  13. | 6. The RCU API, 2019 Edition https://lwn.net/Articles/777036/
  14. | 2019 Big API Table https://lwn.net/Articles/777165/
  15. For those preferring video:
  16. | 1. Unraveling RCU Mysteries: Fundamentals https://www.linuxfoundation.org/webinars/unraveling-rcu-usage-mysteries
  17. | 2. Unraveling RCU Mysteries: Additional Use Cases https://www.linuxfoundation.org/webinars/unraveling-rcu-usage-mysteries-additional-use-cases
  18. What is RCU?
  19. RCU is a synchronization mechanism that was added to the Linux kernel
  20. during the 2.5 development effort that is optimized for read-mostly
  21. situations. Although RCU is actually quite simple, making effective use
  22. of it requires you to think differently about your code. Another part
  23. of the problem is the mistaken assumption that there is "one true way" to
  24. describe and to use RCU. Instead, the experience has been that different
  25. people must take different paths to arrive at an understanding of RCU,
  26. depending on their experiences and use cases. This document provides
  27. several different paths, as follows:
  28. :ref:`1. RCU OVERVIEW <1_whatisRCU>`
  29. :ref:`2. WHAT IS RCU'S CORE API? <2_whatisRCU>`
  30. :ref:`3. WHAT ARE SOME EXAMPLE USES OF CORE RCU API? <3_whatisRCU>`
  31. :ref:`4. WHAT IF MY UPDATING THREAD CANNOT BLOCK? <4_whatisRCU>`
  32. :ref:`5. WHAT ARE SOME SIMPLE IMPLEMENTATIONS OF RCU? <5_whatisRCU>`
  33. :ref:`6. ANALOGY WITH READER-WRITER LOCKING <6_whatisRCU>`
  34. :ref:`7. ANALOGY WITH REFERENCE COUNTING <7_whatisRCU>`
  35. :ref:`8. FULL LIST OF RCU APIs <8_whatisRCU>`
  36. :ref:`9. ANSWERS TO QUICK QUIZZES <9_whatisRCU>`
  37. People who prefer starting with a conceptual overview should focus on
  38. Section 1, though most readers will profit by reading this section at
  39. some point. People who prefer to start with an API that they can then
  40. experiment with should focus on Section 2. People who prefer to start
  41. with example uses should focus on Sections 3 and 4. People who need to
  42. understand the RCU implementation should focus on Section 5, then dive
  43. into the kernel source code. People who reason best by analogy should
  44. focus on Section 6 and 7. Section 8 serves as an index to the docbook
  45. API documentation, and Section 9 is the traditional answer key.
  46. So, start with the section that makes the most sense to you and your
  47. preferred method of learning. If you need to know everything about
  48. everything, feel free to read the whole thing -- but if you are really
  49. that type of person, you have perused the source code and will therefore
  50. never need this document anyway. ;-)
  51. .. _1_whatisRCU:
  52. 1. RCU OVERVIEW
  53. ----------------
  54. The basic idea behind RCU is to split updates into "removal" and
  55. "reclamation" phases. The removal phase removes references to data items
  56. within a data structure (possibly by replacing them with references to
  57. new versions of these data items), and can run concurrently with readers.
  58. The reason that it is safe to run the removal phase concurrently with
  59. readers is the semantics of modern CPUs guarantee that readers will see
  60. either the old or the new version of the data structure rather than a
  61. partially updated reference. The reclamation phase does the work of reclaiming
  62. (e.g., freeing) the data items removed from the data structure during the
  63. removal phase. Because reclaiming data items can disrupt any readers
  64. concurrently referencing those data items, the reclamation phase must
  65. not start until readers no longer hold references to those data items.
  66. Splitting the update into removal and reclamation phases permits the
  67. updater to perform the removal phase immediately, and to defer the
  68. reclamation phase until all readers active during the removal phase have
  69. completed, either by blocking until they finish or by registering a
  70. callback that is invoked after they finish. Only readers that are active
  71. during the removal phase need be considered, because any reader starting
  72. after the removal phase will be unable to gain a reference to the removed
  73. data items, and therefore cannot be disrupted by the reclamation phase.
  74. So the typical RCU update sequence goes something like the following:
  75. a. Remove pointers to a data structure, so that subsequent
  76. readers cannot gain a reference to it.
  77. b. Wait for all previous readers to complete their RCU read-side
  78. critical sections.
  79. c. At this point, there cannot be any readers who hold references
  80. to the data structure, so it now may safely be reclaimed
  81. (e.g., kfree()d).
  82. Step (b) above is the key idea underlying RCU's deferred destruction.
  83. The ability to wait until all readers are done allows RCU readers to
  84. use much lighter-weight synchronization, in some cases, absolutely no
  85. synchronization at all. In contrast, in more conventional lock-based
  86. schemes, readers must use heavy-weight synchronization in order to
  87. prevent an updater from deleting the data structure out from under them.
  88. This is because lock-based updaters typically update data items in place,
  89. and must therefore exclude readers. In contrast, RCU-based updaters
  90. typically take advantage of the fact that writes to single aligned
  91. pointers are atomic on modern CPUs, allowing atomic insertion, removal,
  92. and replacement of data items in a linked structure without disrupting
  93. readers. Concurrent RCU readers can then continue accessing the old
  94. versions, and can dispense with the atomic operations, memory barriers,
  95. and communications cache misses that are so expensive on present-day
  96. SMP computer systems, even in absence of lock contention.
  97. In the three-step procedure shown above, the updater is performing both
  98. the removal and the reclamation step, but it is often helpful for an
  99. entirely different thread to do the reclamation, as is in fact the case
  100. in the Linux kernel's directory-entry cache (dcache). Even if the same
  101. thread performs both the update step (step (a) above) and the reclamation
  102. step (step (c) above), it is often helpful to think of them separately.
  103. For example, RCU readers and updaters need not communicate at all,
  104. but RCU provides implicit low-overhead communication between readers
  105. and reclaimers, namely, in step (b) above.
  106. So how the heck can a reclaimer tell when a reader is done, given
  107. that readers are not doing any sort of synchronization operations???
  108. Read on to learn about how RCU's API makes this easy.
  109. .. _2_whatisRCU:
  110. 2. WHAT IS RCU'S CORE API?
  111. ---------------------------
  112. The core RCU API is quite small:
  113. a. rcu_read_lock()
  114. b. rcu_read_unlock()
  115. c. synchronize_rcu() / call_rcu()
  116. d. rcu_assign_pointer()
  117. e. rcu_dereference()
  118. There are many other members of the RCU API, but the rest can be
  119. expressed in terms of these five, though most implementations instead
  120. express synchronize_rcu() in terms of the call_rcu() callback API.
  121. The five core RCU APIs are described below, the other 18 will be enumerated
  122. later. See the kernel docbook documentation for more info, or look directly
  123. at the function header comments.
  124. rcu_read_lock()
  125. ^^^^^^^^^^^^^^^
  126. void rcu_read_lock(void);
  127. This temporal primitive is used by a reader to inform the
  128. reclaimer that the reader is entering an RCU read-side critical
  129. section. It is illegal to block while in an RCU read-side
  130. critical section, though kernels built with CONFIG_PREEMPT_RCU
  131. can preempt RCU read-side critical sections. Any RCU-protected
  132. data structure accessed during an RCU read-side critical section
  133. is guaranteed to remain unreclaimed for the full duration of that
  134. critical section. Reference counts may be used in conjunction
  135. with RCU to maintain longer-term references to data structures.
  136. Note that anything that disables bottom halves, preemption,
  137. or interrupts also enters an RCU read-side critical section.
  138. Acquiring a spinlock also enters an RCU read-side critical
  139. sections, even for spinlocks that do not disable preemption,
  140. as is the case in kernels built with CONFIG_PREEMPT_RT=y.
  141. Sleeplocks do *not* enter RCU read-side critical sections.
  142. rcu_read_unlock()
  143. ^^^^^^^^^^^^^^^^^
  144. void rcu_read_unlock(void);
  145. This temporal primitives is used by a reader to inform the
  146. reclaimer that the reader is exiting an RCU read-side critical
  147. section. Anything that enables bottom halves, preemption,
  148. or interrupts also exits an RCU read-side critical section.
  149. Releasing a spinlock also exits an RCU read-side critical section.
  150. Note that RCU read-side critical sections may be nested and/or
  151. overlapping.
  152. synchronize_rcu()
  153. ^^^^^^^^^^^^^^^^^
  154. void synchronize_rcu(void);
  155. This temporal primitive marks the end of updater code and the
  156. beginning of reclaimer code. It does this by blocking until
  157. all pre-existing RCU read-side critical sections on all CPUs
  158. have completed. Note that synchronize_rcu() will **not**
  159. necessarily wait for any subsequent RCU read-side critical
  160. sections to complete. For example, consider the following
  161. sequence of events::
  162. CPU 0 CPU 1 CPU 2
  163. ----------------- ------------------------- ---------------
  164. 1. rcu_read_lock()
  165. 2. enters synchronize_rcu()
  166. 3. rcu_read_lock()
  167. 4. rcu_read_unlock()
  168. 5. exits synchronize_rcu()
  169. 6. rcu_read_unlock()
  170. To reiterate, synchronize_rcu() waits only for ongoing RCU
  171. read-side critical sections to complete, not necessarily for
  172. any that begin after synchronize_rcu() is invoked.
  173. Of course, synchronize_rcu() does not necessarily return
  174. **immediately** after the last pre-existing RCU read-side critical
  175. section completes. For one thing, there might well be scheduling
  176. delays. For another thing, many RCU implementations process
  177. requests in batches in order to improve efficiencies, which can
  178. further delay synchronize_rcu().
  179. Since synchronize_rcu() is the API that must figure out when
  180. readers are done, its implementation is key to RCU. For RCU
  181. to be useful in all but the most read-intensive situations,
  182. synchronize_rcu()'s overhead must also be quite small.
  183. The call_rcu() API is an asynchronous callback form of
  184. synchronize_rcu(), and is described in more detail in a later
  185. section. Instead of blocking, it registers a function and
  186. argument which are invoked after all ongoing RCU read-side
  187. critical sections have completed. This callback variant is
  188. particularly useful in situations where it is illegal to block
  189. or where update-side performance is critically important.
  190. However, the call_rcu() API should not be used lightly, as use
  191. of the synchronize_rcu() API generally results in simpler code.
  192. In addition, the synchronize_rcu() API has the nice property
  193. of automatically limiting update rate should grace periods
  194. be delayed. This property results in system resilience in face
  195. of denial-of-service attacks. Code using call_rcu() should limit
  196. update rate in order to gain this same sort of resilience. See
  197. checklist.rst for some approaches to limiting the update rate.
  198. rcu_assign_pointer()
  199. ^^^^^^^^^^^^^^^^^^^^
  200. void rcu_assign_pointer(p, typeof(p) v);
  201. Yes, rcu_assign_pointer() **is** implemented as a macro, though
  202. it would be cool to be able to declare a function in this manner.
  203. (And there has been some discussion of adding overloaded functions
  204. to the C language, so who knows?)
  205. The updater uses this spatial macro to assign a new value to an
  206. RCU-protected pointer, in order to safely communicate the change
  207. in value from the updater to the reader. This is a spatial (as
  208. opposed to temporal) macro. It does not evaluate to an rvalue,
  209. but it does provide any compiler directives and memory-barrier
  210. instructions required for a given compile or CPU architecture.
  211. Its ordering properties are that of a store-release operation,
  212. that is, any prior loads and stores required to initialize the
  213. structure are ordered before the store that publishes the pointer
  214. to that structure.
  215. Perhaps just as important, rcu_assign_pointer() serves to document
  216. (1) which pointers are protected by RCU and (2) the point at which
  217. a given structure becomes accessible to other CPUs. That said,
  218. rcu_assign_pointer() is most frequently used indirectly, via
  219. the _rcu list-manipulation primitives such as list_add_rcu().
  220. rcu_dereference()
  221. ^^^^^^^^^^^^^^^^^
  222. typeof(p) rcu_dereference(p);
  223. Like rcu_assign_pointer(), rcu_dereference() must be implemented
  224. as a macro.
  225. The reader uses the spatial rcu_dereference() macro to fetch
  226. an RCU-protected pointer, which returns a value that may
  227. then be safely dereferenced. Note that rcu_dereference()
  228. does not actually dereference the pointer, instead, it
  229. protects the pointer for later dereferencing. It also
  230. executes any needed memory-barrier instructions for a given
  231. CPU architecture. Currently, only Alpha needs memory barriers
  232. within rcu_dereference() -- on other CPUs, it compiles to a
  233. volatile load. However, no mainstream C compilers respect
  234. address dependencies, so rcu_dereference() uses volatile casts,
  235. which, in combination with the coding guidelines listed in
  236. rcu_dereference.rst, prevent current compilers from breaking
  237. these dependencies.
  238. Common coding practice uses rcu_dereference() to copy an
  239. RCU-protected pointer to a local variable, then dereferences
  240. this local variable, for example as follows::
  241. p = rcu_dereference(head.next);
  242. return p->data;
  243. However, in this case, one could just as easily combine these
  244. into one statement::
  245. return rcu_dereference(head.next)->data;
  246. If you are going to be fetching multiple fields from the
  247. RCU-protected structure, using the local variable is of
  248. course preferred. Repeated rcu_dereference() calls look
  249. ugly, do not guarantee that the same pointer will be returned
  250. if an update happened while in the critical section, and incur
  251. unnecessary overhead on Alpha CPUs.
  252. Note that the value returned by rcu_dereference() is valid
  253. only within the enclosing RCU read-side critical section [1]_.
  254. For example, the following is **not** legal::
  255. rcu_read_lock();
  256. p = rcu_dereference(head.next);
  257. rcu_read_unlock();
  258. x = p->address; /* BUG!!! */
  259. rcu_read_lock();
  260. y = p->data; /* BUG!!! */
  261. rcu_read_unlock();
  262. Holding a reference from one RCU read-side critical section
  263. to another is just as illegal as holding a reference from
  264. one lock-based critical section to another! Similarly,
  265. using a reference outside of the critical section in which
  266. it was acquired is just as illegal as doing so with normal
  267. locking.
  268. As with rcu_assign_pointer(), an important function of
  269. rcu_dereference() is to document which pointers are protected by
  270. RCU, in particular, flagging a pointer that is subject to changing
  271. at any time, including immediately after the rcu_dereference().
  272. And, again like rcu_assign_pointer(), rcu_dereference() is
  273. typically used indirectly, via the _rcu list-manipulation
  274. primitives, such as list_for_each_entry_rcu() [2]_.
  275. .. [1] The variant rcu_dereference_protected() can be used outside
  276. of an RCU read-side critical section as long as the usage is
  277. protected by locks acquired by the update-side code. This variant
  278. avoids the lockdep warning that would happen when using (for
  279. example) rcu_dereference() without rcu_read_lock() protection.
  280. Using rcu_dereference_protected() also has the advantage
  281. of permitting compiler optimizations that rcu_dereference()
  282. must prohibit. The rcu_dereference_protected() variant takes
  283. a lockdep expression to indicate which locks must be acquired
  284. by the caller. If the indicated protection is not provided,
  285. a lockdep splat is emitted. See Design/Requirements/Requirements.rst
  286. and the API's code comments for more details and example usage.
  287. .. [2] If the list_for_each_entry_rcu() instance might be used by
  288. update-side code as well as by RCU readers, then an additional
  289. lockdep expression can be added to its list of arguments.
  290. For example, given an additional "lock_is_held(&mylock)" argument,
  291. the RCU lockdep code would complain only if this instance was
  292. invoked outside of an RCU read-side critical section and without
  293. the protection of mylock.
  294. The following diagram shows how each API communicates among the
  295. reader, updater, and reclaimer.
  296. ::
  297. rcu_assign_pointer()
  298. +--------+
  299. +---------------------->| reader |---------+
  300. | +--------+ |
  301. | | |
  302. | | | Protect:
  303. | | | rcu_read_lock()
  304. | | | rcu_read_unlock()
  305. | rcu_dereference() | |
  306. +---------+ | |
  307. | updater |<----------------+ |
  308. +---------+ V
  309. | +-----------+
  310. +----------------------------------->| reclaimer |
  311. +-----------+
  312. Defer:
  313. synchronize_rcu() & call_rcu()
  314. The RCU infrastructure observes the temporal sequence of rcu_read_lock(),
  315. rcu_read_unlock(), synchronize_rcu(), and call_rcu() invocations in
  316. order to determine when (1) synchronize_rcu() invocations may return
  317. to their callers and (2) call_rcu() callbacks may be invoked. Efficient
  318. implementations of the RCU infrastructure make heavy use of batching in
  319. order to amortize their overhead over many uses of the corresponding APIs.
  320. The rcu_assign_pointer() and rcu_dereference() invocations communicate
  321. spatial changes via stores to and loads from the RCU-protected pointer in
  322. question.
  323. There are at least three flavors of RCU usage in the Linux kernel. The diagram
  324. above shows the most common one. On the updater side, the rcu_assign_pointer(),
  325. synchronize_rcu() and call_rcu() primitives used are the same for all three
  326. flavors. However for protection (on the reader side), the primitives used vary
  327. depending on the flavor:
  328. a. rcu_read_lock() / rcu_read_unlock()
  329. rcu_dereference()
  330. b. rcu_read_lock_bh() / rcu_read_unlock_bh()
  331. local_bh_disable() / local_bh_enable()
  332. rcu_dereference_bh()
  333. c. rcu_read_lock_sched() / rcu_read_unlock_sched()
  334. preempt_disable() / preempt_enable()
  335. local_irq_save() / local_irq_restore()
  336. hardirq enter / hardirq exit
  337. NMI enter / NMI exit
  338. rcu_dereference_sched()
  339. These three flavors are used as follows:
  340. a. RCU applied to normal data structures.
  341. b. RCU applied to networking data structures that may be subjected
  342. to remote denial-of-service attacks.
  343. c. RCU applied to scheduler and interrupt/NMI-handler tasks.
  344. Again, most uses will be of (a). The (b) and (c) cases are important
  345. for specialized uses, but are relatively uncommon. The SRCU, RCU-Tasks,
  346. RCU-Tasks-Rude, and RCU-Tasks-Trace have similar relationships among
  347. their assorted primitives.
  348. .. _3_whatisRCU:
  349. 3. WHAT ARE SOME EXAMPLE USES OF CORE RCU API?
  350. -----------------------------------------------
  351. This section shows a simple use of the core RCU API to protect a
  352. global pointer to a dynamically allocated structure. More-typical
  353. uses of RCU may be found in listRCU.rst and NMI-RCU.rst.
  354. ::
  355. struct foo {
  356. int a;
  357. char b;
  358. long c;
  359. };
  360. DEFINE_SPINLOCK(foo_mutex);
  361. struct foo __rcu *gbl_foo;
  362. /*
  363. * Create a new struct foo that is the same as the one currently
  364. * pointed to by gbl_foo, except that field "a" is replaced
  365. * with "new_a". Points gbl_foo to the new structure, and
  366. * frees up the old structure after a grace period.
  367. *
  368. * Uses rcu_assign_pointer() to ensure that concurrent readers
  369. * see the initialized version of the new structure.
  370. *
  371. * Uses synchronize_rcu() to ensure that any readers that might
  372. * have references to the old structure complete before freeing
  373. * the old structure.
  374. */
  375. void foo_update_a(int new_a)
  376. {
  377. struct foo *new_fp;
  378. struct foo *old_fp;
  379. new_fp = kmalloc(sizeof(*new_fp), GFP_KERNEL);
  380. spin_lock(&foo_mutex);
  381. old_fp = rcu_dereference_protected(gbl_foo, lockdep_is_held(&foo_mutex));
  382. *new_fp = *old_fp;
  383. new_fp->a = new_a;
  384. rcu_assign_pointer(gbl_foo, new_fp);
  385. spin_unlock(&foo_mutex);
  386. synchronize_rcu();
  387. kfree(old_fp);
  388. }
  389. /*
  390. * Return the value of field "a" of the current gbl_foo
  391. * structure. Use rcu_read_lock() and rcu_read_unlock()
  392. * to ensure that the structure does not get deleted out
  393. * from under us, and use rcu_dereference() to ensure that
  394. * we see the initialized version of the structure (important
  395. * for DEC Alpha and for people reading the code).
  396. */
  397. int foo_get_a(void)
  398. {
  399. int retval;
  400. rcu_read_lock();
  401. retval = rcu_dereference(gbl_foo)->a;
  402. rcu_read_unlock();
  403. return retval;
  404. }
  405. So, to sum up:
  406. - Use rcu_read_lock() and rcu_read_unlock() to guard RCU
  407. read-side critical sections.
  408. - Within an RCU read-side critical section, use rcu_dereference()
  409. to dereference RCU-protected pointers.
  410. - Use some solid design (such as locks or semaphores) to
  411. keep concurrent updates from interfering with each other.
  412. - Use rcu_assign_pointer() to update an RCU-protected pointer.
  413. This primitive protects concurrent readers from the updater,
  414. **not** concurrent updates from each other! You therefore still
  415. need to use locking (or something similar) to keep concurrent
  416. rcu_assign_pointer() primitives from interfering with each other.
  417. - Use synchronize_rcu() **after** removing a data element from an
  418. RCU-protected data structure, but **before** reclaiming/freeing
  419. the data element, in order to wait for the completion of all
  420. RCU read-side critical sections that might be referencing that
  421. data item.
  422. See checklist.rst for additional rules to follow when using RCU.
  423. And again, more-typical uses of RCU may be found in listRCU.rst
  424. and NMI-RCU.rst.
  425. .. _4_whatisRCU:
  426. 4. WHAT IF MY UPDATING THREAD CANNOT BLOCK?
  427. --------------------------------------------
  428. In the example above, foo_update_a() blocks until a grace period elapses.
  429. This is quite simple, but in some cases one cannot afford to wait so
  430. long -- there might be other high-priority work to be done.
  431. In such cases, one uses call_rcu() rather than synchronize_rcu().
  432. The call_rcu() API is as follows::
  433. void call_rcu(struct rcu_head *head, rcu_callback_t func);
  434. This function invokes func(head) after a grace period has elapsed.
  435. This invocation might happen from either softirq or process context,
  436. so the function is not permitted to block. The foo struct needs to
  437. have an rcu_head structure added, perhaps as follows::
  438. struct foo {
  439. int a;
  440. char b;
  441. long c;
  442. struct rcu_head rcu;
  443. };
  444. The foo_update_a() function might then be written as follows::
  445. /*
  446. * Create a new struct foo that is the same as the one currently
  447. * pointed to by gbl_foo, except that field "a" is replaced
  448. * with "new_a". Points gbl_foo to the new structure, and
  449. * frees up the old structure after a grace period.
  450. *
  451. * Uses rcu_assign_pointer() to ensure that concurrent readers
  452. * see the initialized version of the new structure.
  453. *
  454. * Uses call_rcu() to ensure that any readers that might have
  455. * references to the old structure complete before freeing the
  456. * old structure.
  457. */
  458. void foo_update_a(int new_a)
  459. {
  460. struct foo *new_fp;
  461. struct foo *old_fp;
  462. new_fp = kmalloc(sizeof(*new_fp), GFP_KERNEL);
  463. spin_lock(&foo_mutex);
  464. old_fp = rcu_dereference_protected(gbl_foo, lockdep_is_held(&foo_mutex));
  465. *new_fp = *old_fp;
  466. new_fp->a = new_a;
  467. rcu_assign_pointer(gbl_foo, new_fp);
  468. spin_unlock(&foo_mutex);
  469. call_rcu(&old_fp->rcu, foo_reclaim);
  470. }
  471. The foo_reclaim() function might appear as follows::
  472. void foo_reclaim(struct rcu_head *rp)
  473. {
  474. struct foo *fp = container_of(rp, struct foo, rcu);
  475. foo_cleanup(fp->a);
  476. kfree(fp);
  477. }
  478. The container_of() primitive is a macro that, given a pointer into a
  479. struct, the type of the struct, and the pointed-to field within the
  480. struct, returns a pointer to the beginning of the struct.
  481. The use of call_rcu() permits the caller of foo_update_a() to
  482. immediately regain control, without needing to worry further about the
  483. old version of the newly updated element. It also clearly shows the
  484. RCU distinction between updater, namely foo_update_a(), and reclaimer,
  485. namely foo_reclaim().
  486. The summary of advice is the same as for the previous section, except
  487. that we are now using call_rcu() rather than synchronize_rcu():
  488. - Use call_rcu() **after** removing a data element from an
  489. RCU-protected data structure in order to register a callback
  490. function that will be invoked after the completion of all RCU
  491. read-side critical sections that might be referencing that
  492. data item.
  493. If the callback for call_rcu() is not doing anything more than calling
  494. kfree() on the structure, you can use kfree_rcu() instead of call_rcu()
  495. to avoid having to write your own callback::
  496. kfree_rcu(old_fp, rcu);
  497. If the occasional sleep is permitted, the single-argument form may
  498. be used, omitting the rcu_head structure from struct foo.
  499. kfree_rcu_mightsleep(old_fp);
  500. This variant almost never blocks, but might do so by invoking
  501. synchronize_rcu() in response to memory-allocation failure.
  502. Again, see checklist.rst for additional rules governing the use of RCU.
  503. .. _5_whatisRCU:
  504. 5. WHAT ARE SOME SIMPLE IMPLEMENTATIONS OF RCU?
  505. ------------------------------------------------
  506. One of the nice things about RCU is that it has extremely simple "toy"
  507. implementations that are a good first step towards understanding the
  508. production-quality implementations in the Linux kernel. This section
  509. presents two such "toy" implementations of RCU, one that is implemented
  510. in terms of familiar locking primitives, and another that more closely
  511. resembles "classic" RCU. Both are way too simple for real-world use,
  512. lacking both functionality and performance. However, they are useful
  513. in getting a feel for how RCU works. See kernel/rcu/update.c for a
  514. production-quality implementation, and see:
  515. https://docs.google.com/document/d/1X0lThx8OK0ZgLMqVoXiR4ZrGURHrXK6NyLRbeXe3Xac/edit
  516. for papers describing the Linux kernel RCU implementation. The OLS'01
  517. and OLS'02 papers are a good introduction, and the dissertation provides
  518. more details on the current implementation as of early 2004.
  519. 5A. "TOY" IMPLEMENTATION #1: LOCKING
  520. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  521. This section presents a "toy" RCU implementation that is based on
  522. familiar locking primitives. Its overhead makes it a non-starter for
  523. real-life use, as does its lack of scalability. It is also unsuitable
  524. for realtime use, since it allows scheduling latency to "bleed" from
  525. one read-side critical section to another. It also assumes recursive
  526. reader-writer locks: If you try this with non-recursive locks, and
  527. you allow nested rcu_read_lock() calls, you can deadlock.
  528. However, it is probably the easiest implementation to relate to, so is
  529. a good starting point.
  530. It is extremely simple::
  531. static DEFINE_RWLOCK(rcu_gp_mutex);
  532. void rcu_read_lock(void)
  533. {
  534. read_lock(&rcu_gp_mutex);
  535. }
  536. void rcu_read_unlock(void)
  537. {
  538. read_unlock(&rcu_gp_mutex);
  539. }
  540. void synchronize_rcu(void)
  541. {
  542. write_lock(&rcu_gp_mutex);
  543. smp_mb__after_spinlock();
  544. write_unlock(&rcu_gp_mutex);
  545. }
  546. [You can ignore rcu_assign_pointer() and rcu_dereference() without missing
  547. much. But here are simplified versions anyway. And whatever you do,
  548. don't forget about them when submitting patches making use of RCU!]::
  549. #define rcu_assign_pointer(p, v) \
  550. ({ \
  551. smp_store_release(&(p), (v)); \
  552. })
  553. #define rcu_dereference(p) \
  554. ({ \
  555. typeof(p) _________p1 = READ_ONCE(p); \
  556. (_________p1); \
  557. })
  558. The rcu_read_lock() and rcu_read_unlock() primitive read-acquire
  559. and release a global reader-writer lock. The synchronize_rcu()
  560. primitive write-acquires this same lock, then releases it. This means
  561. that once synchronize_rcu() exits, all RCU read-side critical sections
  562. that were in progress before synchronize_rcu() was called are guaranteed
  563. to have completed -- there is no way that synchronize_rcu() would have
  564. been able to write-acquire the lock otherwise. The smp_mb__after_spinlock()
  565. promotes synchronize_rcu() to a full memory barrier in compliance with
  566. the "Memory-Barrier Guarantees" listed in:
  567. Design/Requirements/Requirements.rst
  568. It is possible to nest rcu_read_lock(), since reader-writer locks may
  569. be recursively acquired. Note also that rcu_read_lock() is immune
  570. from deadlock (an important property of RCU). The reason for this is
  571. that the only thing that can block rcu_read_lock() is a synchronize_rcu().
  572. But synchronize_rcu() does not acquire any locks while holding rcu_gp_mutex,
  573. so there can be no deadlock cycle.
  574. .. _quiz_1:
  575. Quick Quiz #1:
  576. Why is this argument naive? How could a deadlock
  577. occur when using this algorithm in a real-world Linux
  578. kernel? How could this deadlock be avoided?
  579. :ref:`Answers to Quick Quiz <9_whatisRCU>`
  580. 5B. "TOY" EXAMPLE #2: CLASSIC RCU
  581. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  582. This section presents a "toy" RCU implementation that is based on
  583. "classic RCU". It is also short on performance (but only for updates) and
  584. on features such as hotplug CPU and the ability to run in CONFIG_PREEMPTION
  585. kernels. The definitions of rcu_dereference() and rcu_assign_pointer()
  586. are the same as those shown in the preceding section, so they are omitted.
  587. ::
  588. void rcu_read_lock(void) { }
  589. void rcu_read_unlock(void) { }
  590. void synchronize_rcu(void)
  591. {
  592. int cpu;
  593. for_each_possible_cpu(cpu)
  594. run_on(cpu);
  595. }
  596. Note that rcu_read_lock() and rcu_read_unlock() do absolutely nothing.
  597. This is the great strength of classic RCU in a non-preemptive kernel:
  598. read-side overhead is precisely zero, at least on non-Alpha CPUs.
  599. And there is absolutely no way that rcu_read_lock() can possibly
  600. participate in a deadlock cycle!
  601. The implementation of synchronize_rcu() simply schedules itself on each
  602. CPU in turn. The run_on() primitive can be implemented straightforwardly
  603. in terms of the sched_setaffinity() primitive. Of course, a somewhat less
  604. "toy" implementation would restore the affinity upon completion rather
  605. than just leaving all tasks running on the last CPU, but when I said
  606. "toy", I meant **toy**!
  607. So how the heck is this supposed to work???
  608. Remember that it is illegal to block while in an RCU read-side critical
  609. section. Therefore, if a given CPU executes a context switch, we know
  610. that it must have completed all preceding RCU read-side critical sections.
  611. Once **all** CPUs have executed a context switch, then **all** preceding
  612. RCU read-side critical sections will have completed.
  613. So, suppose that we remove a data item from its structure and then invoke
  614. synchronize_rcu(). Once synchronize_rcu() returns, we are guaranteed
  615. that there are no RCU read-side critical sections holding a reference
  616. to that data item, so we can safely reclaim it.
  617. .. _quiz_2:
  618. Quick Quiz #2:
  619. Give an example where Classic RCU's read-side
  620. overhead is **negative**.
  621. :ref:`Answers to Quick Quiz <9_whatisRCU>`
  622. .. _quiz_3:
  623. Quick Quiz #3:
  624. If it is illegal to block in an RCU read-side
  625. critical section, what the heck do you do in
  626. CONFIG_PREEMPT_RT, where normal spinlocks can block???
  627. :ref:`Answers to Quick Quiz <9_whatisRCU>`
  628. .. _6_whatisRCU:
  629. 6. ANALOGY WITH READER-WRITER LOCKING
  630. --------------------------------------
  631. Although RCU can be used in many different ways, a very common use of
  632. RCU is analogous to reader-writer locking. The following unified
  633. diff shows how closely related RCU and reader-writer locking can be.
  634. ::
  635. @@ -5,5 +5,5 @@ struct el {
  636. int data;
  637. /* Other data fields */
  638. };
  639. -rwlock_t listmutex;
  640. +spinlock_t listmutex;
  641. struct el head;
  642. @@ -13,15 +14,15 @@
  643. struct list_head *lp;
  644. struct el *p;
  645. - read_lock(&listmutex);
  646. - list_for_each_entry(p, head, lp) {
  647. + rcu_read_lock();
  648. + list_for_each_entry_rcu(p, head, lp) {
  649. if (p->key == key) {
  650. *result = p->data;
  651. - read_unlock(&listmutex);
  652. + rcu_read_unlock();
  653. return 1;
  654. }
  655. }
  656. - read_unlock(&listmutex);
  657. + rcu_read_unlock();
  658. return 0;
  659. }
  660. @@ -29,15 +30,16 @@
  661. {
  662. struct el *p;
  663. - write_lock(&listmutex);
  664. + spin_lock(&listmutex);
  665. list_for_each_entry(p, head, lp) {
  666. if (p->key == key) {
  667. - list_del(&p->list);
  668. - write_unlock(&listmutex);
  669. + list_del_rcu(&p->list);
  670. + spin_unlock(&listmutex);
  671. + synchronize_rcu();
  672. kfree(p);
  673. return 1;
  674. }
  675. }
  676. - write_unlock(&listmutex);
  677. + spin_unlock(&listmutex);
  678. return 0;
  679. }
  680. Or, for those who prefer a side-by-side listing::
  681. 1 struct el { 1 struct el {
  682. 2 struct list_head list; 2 struct list_head list;
  683. 3 long key; 3 long key;
  684. 4 spinlock_t mutex; 4 spinlock_t mutex;
  685. 5 int data; 5 int data;
  686. 6 /* Other data fields */ 6 /* Other data fields */
  687. 7 }; 7 };
  688. 8 rwlock_t listmutex; 8 spinlock_t listmutex;
  689. 9 struct el head; 9 struct el head;
  690. ::
  691. 1 int search(long key, int *result) 1 int search(long key, int *result)
  692. 2 { 2 {
  693. 3 struct list_head *lp; 3 struct list_head *lp;
  694. 4 struct el *p; 4 struct el *p;
  695. 5 5
  696. 6 read_lock(&listmutex); 6 rcu_read_lock();
  697. 7 list_for_each_entry(p, head, lp) { 7 list_for_each_entry_rcu(p, head, lp) {
  698. 8 if (p->key == key) { 8 if (p->key == key) {
  699. 9 *result = p->data; 9 *result = p->data;
  700. 10 read_unlock(&listmutex); 10 rcu_read_unlock();
  701. 11 return 1; 11 return 1;
  702. 12 } 12 }
  703. 13 } 13 }
  704. 14 read_unlock(&listmutex); 14 rcu_read_unlock();
  705. 15 return 0; 15 return 0;
  706. 16 } 16 }
  707. ::
  708. 1 int delete(long key) 1 int delete(long key)
  709. 2 { 2 {
  710. 3 struct el *p; 3 struct el *p;
  711. 4 4
  712. 5 write_lock(&listmutex); 5 spin_lock(&listmutex);
  713. 6 list_for_each_entry(p, head, lp) { 6 list_for_each_entry(p, head, lp) {
  714. 7 if (p->key == key) { 7 if (p->key == key) {
  715. 8 list_del(&p->list); 8 list_del_rcu(&p->list);
  716. 9 write_unlock(&listmutex); 9 spin_unlock(&listmutex);
  717. 10 synchronize_rcu();
  718. 10 kfree(p); 11 kfree(p);
  719. 11 return 1; 12 return 1;
  720. 12 } 13 }
  721. 13 } 14 }
  722. 14 write_unlock(&listmutex); 15 spin_unlock(&listmutex);
  723. 15 return 0; 16 return 0;
  724. 16 } 17 }
  725. Either way, the differences are quite small. Read-side locking moves
  726. to rcu_read_lock() and rcu_read_unlock, update-side locking moves from
  727. a reader-writer lock to a simple spinlock, and a synchronize_rcu()
  728. precedes the kfree().
  729. However, there is one potential catch: the read-side and update-side
  730. critical sections can now run concurrently. In many cases, this will
  731. not be a problem, but it is necessary to check carefully regardless.
  732. For example, if multiple independent list updates must be seen as
  733. a single atomic update, converting to RCU will require special care.
  734. Also, the presence of synchronize_rcu() means that the RCU version of
  735. delete() can now block. If this is a problem, there is a callback-based
  736. mechanism that never blocks, namely call_rcu() or kfree_rcu(), that can
  737. be used in place of synchronize_rcu().
  738. .. _7_whatisRCU:
  739. 7. ANALOGY WITH REFERENCE COUNTING
  740. -----------------------------------
  741. The reader-writer analogy (illustrated by the previous section) is not
  742. always the best way to think about using RCU. Another helpful analogy
  743. considers RCU an effective reference count on everything which is
  744. protected by RCU.
  745. A reference count typically does not prevent the referenced object's
  746. values from changing, but does prevent changes to type -- particularly the
  747. gross change of type that happens when that object's memory is freed and
  748. re-allocated for some other purpose. Once a type-safe reference to the
  749. object is obtained, some other mechanism is needed to ensure consistent
  750. access to the data in the object. This could involve taking a spinlock,
  751. but with RCU the typical approach is to perform reads with SMP-aware
  752. operations such as smp_load_acquire(), to perform updates with atomic
  753. read-modify-write operations, and to provide the necessary ordering.
  754. RCU provides a number of support functions that embed the required
  755. operations and ordering, such as the list_for_each_entry_rcu() macro
  756. used in the previous section.
  757. A more focused view of the reference counting behavior is that,
  758. between rcu_read_lock() and rcu_read_unlock(), any reference taken with
  759. rcu_dereference() on a pointer marked as ``__rcu`` can be treated as
  760. though a reference-count on that object has been temporarily increased.
  761. This prevents the object from changing type. Exactly what this means
  762. will depend on normal expectations of objects of that type, but it
  763. typically includes that spinlocks can still be safely locked, normal
  764. reference counters can be safely manipulated, and ``__rcu`` pointers
  765. can be safely dereferenced.
  766. Some operations that one might expect to see on an object for
  767. which an RCU reference is held include:
  768. - Copying out data that is guaranteed to be stable by the object's type.
  769. - Using kref_get_unless_zero() or similar to get a longer-term
  770. reference. This may fail of course.
  771. - Acquiring a spinlock in the object, and checking if the object still
  772. is the expected object and if so, manipulating it freely.
  773. The understanding that RCU provides a reference that only prevents a
  774. change of type is particularly visible with objects allocated from a
  775. slab cache marked ``SLAB_TYPESAFE_BY_RCU``. RCU operations may yield a
  776. reference to an object from such a cache that has been concurrently freed
  777. and the memory reallocated to a completely different object, though of
  778. the same type. In this case RCU doesn't even protect the identity of the
  779. object from changing, only its type. So the object found may not be the
  780. one expected, but it will be one where it is safe to take a reference
  781. (and then potentially acquiring a spinlock), allowing subsequent code
  782. to check whether the identity matches expectations. It is tempting
  783. to simply acquire the spinlock without first taking the reference, but
  784. unfortunately any spinlock in a ``SLAB_TYPESAFE_BY_RCU`` object must be
  785. initialized after each and every call to kmem_cache_alloc(), which renders
  786. reference-free spinlock acquisition completely unsafe. Therefore, when
  787. using ``SLAB_TYPESAFE_BY_RCU``, make proper use of a reference counter.
  788. (Those willing to initialize their locks in a kmem_cache constructor
  789. may also use locking, including cache-friendly sequence locking.)
  790. With traditional reference counting -- such as that implemented by the
  791. kref library in Linux -- there is typically code that runs when the last
  792. reference to an object is dropped. With kref, this is the function
  793. passed to kref_put(). When RCU is being used, such finalization code
  794. must not be run until all ``__rcu`` pointers referencing the object have
  795. been updated, and then a grace period has passed. Every remaining
  796. globally visible pointer to the object must be considered to be a
  797. potential counted reference, and the finalization code is typically run
  798. using call_rcu() only after all those pointers have been changed.
  799. To see how to choose between these two analogies -- of RCU as a
  800. reader-writer lock and RCU as a reference counting system -- it is useful
  801. to reflect on the scale of the thing being protected. The reader-writer
  802. lock analogy looks at larger multi-part objects such as a linked list
  803. and shows how RCU can facilitate concurrency while elements are added
  804. to, and removed from, the list. The reference-count analogy looks at
  805. the individual objects and looks at how they can be accessed safely
  806. within whatever whole they are a part of.
  807. .. _8_whatisRCU:
  808. 8. FULL LIST OF RCU APIs
  809. -------------------------
  810. The RCU APIs are documented in docbook-format header comments in the
  811. Linux-kernel source code, but it helps to have a full list of the
  812. APIs, since there does not appear to be a way to categorize them
  813. in docbook. Here is the list, by category.
  814. RCU list traversal::
  815. list_entry_rcu
  816. list_entry_lockless
  817. list_first_entry_rcu
  818. list_next_rcu
  819. list_for_each_entry_rcu
  820. list_for_each_entry_continue_rcu
  821. list_for_each_entry_from_rcu
  822. list_first_or_null_rcu
  823. list_next_or_null_rcu
  824. hlist_first_rcu
  825. hlist_next_rcu
  826. hlist_pprev_rcu
  827. hlist_for_each_entry_rcu
  828. hlist_for_each_entry_rcu_bh
  829. hlist_for_each_entry_from_rcu
  830. hlist_for_each_entry_continue_rcu
  831. hlist_for_each_entry_continue_rcu_bh
  832. hlist_nulls_first_rcu
  833. hlist_nulls_for_each_entry_rcu
  834. hlist_bl_first_rcu
  835. hlist_bl_for_each_entry_rcu
  836. RCU pointer/list update::
  837. rcu_assign_pointer
  838. list_add_rcu
  839. list_add_tail_rcu
  840. list_del_rcu
  841. list_replace_rcu
  842. hlist_add_behind_rcu
  843. hlist_add_before_rcu
  844. hlist_add_head_rcu
  845. hlist_add_tail_rcu
  846. hlist_del_rcu
  847. hlist_del_init_rcu
  848. hlist_replace_rcu
  849. list_splice_init_rcu
  850. list_splice_tail_init_rcu
  851. hlist_nulls_del_init_rcu
  852. hlist_nulls_del_rcu
  853. hlist_nulls_add_head_rcu
  854. hlist_bl_add_head_rcu
  855. hlist_bl_del_init_rcu
  856. hlist_bl_del_rcu
  857. hlist_bl_set_first_rcu
  858. RCU::
  859. Critical sections Grace period Barrier
  860. rcu_read_lock synchronize_net rcu_barrier
  861. rcu_read_unlock synchronize_rcu
  862. rcu_dereference synchronize_rcu_expedited
  863. rcu_read_lock_held call_rcu
  864. rcu_dereference_check kfree_rcu
  865. rcu_dereference_protected
  866. bh::
  867. Critical sections Grace period Barrier
  868. rcu_read_lock_bh call_rcu rcu_barrier
  869. rcu_read_unlock_bh synchronize_rcu
  870. [local_bh_disable] synchronize_rcu_expedited
  871. [and friends]
  872. rcu_dereference_bh
  873. rcu_dereference_bh_check
  874. rcu_dereference_bh_protected
  875. rcu_read_lock_bh_held
  876. sched::
  877. Critical sections Grace period Barrier
  878. rcu_read_lock_sched call_rcu rcu_barrier
  879. rcu_read_unlock_sched synchronize_rcu
  880. [preempt_disable] synchronize_rcu_expedited
  881. [and friends]
  882. rcu_read_lock_sched_notrace
  883. rcu_read_unlock_sched_notrace
  884. rcu_dereference_sched
  885. rcu_dereference_sched_check
  886. rcu_dereference_sched_protected
  887. rcu_read_lock_sched_held
  888. RCU-Tasks::
  889. Critical sections Grace period Barrier
  890. N/A call_rcu_tasks rcu_barrier_tasks
  891. synchronize_rcu_tasks
  892. RCU-Tasks-Rude::
  893. Critical sections Grace period Barrier
  894. N/A N/A
  895. synchronize_rcu_tasks_rude
  896. RCU-Tasks-Trace::
  897. Critical sections Grace period Barrier
  898. rcu_read_lock_trace call_rcu_tasks_trace rcu_barrier_tasks_trace
  899. rcu_read_unlock_trace synchronize_rcu_tasks_trace
  900. SRCU::
  901. Critical sections Grace period Barrier
  902. srcu_read_lock call_srcu srcu_barrier
  903. srcu_read_unlock synchronize_srcu
  904. srcu_dereference synchronize_srcu_expedited
  905. srcu_dereference_check
  906. srcu_read_lock_held
  907. SRCU: Initialization/cleanup::
  908. DEFINE_SRCU
  909. DEFINE_STATIC_SRCU
  910. init_srcu_struct
  911. cleanup_srcu_struct
  912. All: lockdep-checked RCU utility APIs::
  913. RCU_LOCKDEP_WARN
  914. rcu_sleep_check
  915. All: Unchecked RCU-protected pointer access::
  916. rcu_dereference_raw
  917. All: Unchecked RCU-protected pointer access with dereferencing prohibited::
  918. rcu_access_pointer
  919. See the comment headers in the source code (or the docbook generated
  920. from them) for more information.
  921. However, given that there are no fewer than four families of RCU APIs
  922. in the Linux kernel, how do you choose which one to use? The following
  923. list can be helpful:
  924. a. Will readers need to block? If so, you need SRCU.
  925. b. Will readers need to block and are you doing tracing, for
  926. example, ftrace or BPF? If so, you need RCU-tasks,
  927. RCU-tasks-rude, and/or RCU-tasks-trace.
  928. c. What about the -rt patchset? If readers would need to block in
  929. an non-rt kernel, you need SRCU. If readers would block when
  930. acquiring spinlocks in a -rt kernel, but not in a non-rt kernel,
  931. SRCU is not necessary. (The -rt patchset turns spinlocks into
  932. sleeplocks, hence this distinction.)
  933. d. Do you need to treat NMI handlers, hardirq handlers,
  934. and code segments with preemption disabled (whether
  935. via preempt_disable(), local_irq_save(), local_bh_disable(),
  936. or some other mechanism) as if they were explicit RCU readers?
  937. If so, RCU-sched readers are the only choice that will work
  938. for you, but since about v4.20 you use can use the vanilla RCU
  939. update primitives.
  940. e. Do you need RCU grace periods to complete even in the face of
  941. softirq monopolization of one or more of the CPUs? For example,
  942. is your code subject to network-based denial-of-service attacks?
  943. If so, you should disable softirq across your readers, for
  944. example, by using rcu_read_lock_bh(). Since about v4.20 you
  945. use can use the vanilla RCU update primitives.
  946. f. Is your workload too update-intensive for normal use of
  947. RCU, but inappropriate for other synchronization mechanisms?
  948. If so, consider SLAB_TYPESAFE_BY_RCU (which was originally
  949. named SLAB_DESTROY_BY_RCU). But please be careful!
  950. g. Do you need read-side critical sections that are respected even
  951. on CPUs that are deep in the idle loop, during entry to or exit
  952. from user-mode execution, or on an offlined CPU? If so, SRCU
  953. and RCU Tasks Trace are the only choices that will work for you,
  954. with SRCU being strongly preferred in almost all cases.
  955. h. Otherwise, use RCU.
  956. Of course, this all assumes that you have determined that RCU is in fact
  957. the right tool for your job.
  958. .. _9_whatisRCU:
  959. 9. ANSWERS TO QUICK QUIZZES
  960. ----------------------------
  961. Quick Quiz #1:
  962. Why is this argument naive? How could a deadlock
  963. occur when using this algorithm in a real-world Linux
  964. kernel? [Referring to the lock-based "toy" RCU
  965. algorithm.]
  966. Answer:
  967. Consider the following sequence of events:
  968. 1. CPU 0 acquires some unrelated lock, call it
  969. "problematic_lock", disabling irq via
  970. spin_lock_irqsave().
  971. 2. CPU 1 enters synchronize_rcu(), write-acquiring
  972. rcu_gp_mutex.
  973. 3. CPU 0 enters rcu_read_lock(), but must wait
  974. because CPU 1 holds rcu_gp_mutex.
  975. 4. CPU 1 is interrupted, and the irq handler
  976. attempts to acquire problematic_lock.
  977. The system is now deadlocked.
  978. One way to avoid this deadlock is to use an approach like
  979. that of CONFIG_PREEMPT_RT, where all normal spinlocks
  980. become blocking locks, and all irq handlers execute in
  981. the context of special tasks. In this case, in step 4
  982. above, the irq handler would block, allowing CPU 1 to
  983. release rcu_gp_mutex, avoiding the deadlock.
  984. Even in the absence of deadlock, this RCU implementation
  985. allows latency to "bleed" from readers to other
  986. readers through synchronize_rcu(). To see this,
  987. consider task A in an RCU read-side critical section
  988. (thus read-holding rcu_gp_mutex), task B blocked
  989. attempting to write-acquire rcu_gp_mutex, and
  990. task C blocked in rcu_read_lock() attempting to
  991. read_acquire rcu_gp_mutex. Task A's RCU read-side
  992. latency is holding up task C, albeit indirectly via
  993. task B.
  994. Realtime RCU implementations therefore use a counter-based
  995. approach where tasks in RCU read-side critical sections
  996. cannot be blocked by tasks executing synchronize_rcu().
  997. :ref:`Back to Quick Quiz #1 <quiz_1>`
  998. Quick Quiz #2:
  999. Give an example where Classic RCU's read-side
  1000. overhead is **negative**.
  1001. Answer:
  1002. Imagine a single-CPU system with a non-CONFIG_PREEMPTION
  1003. kernel where a routing table is used by process-context
  1004. code, but can be updated by irq-context code (for example,
  1005. by an "ICMP REDIRECT" packet). The usual way of handling
  1006. this would be to have the process-context code disable
  1007. interrupts while searching the routing table. Use of
  1008. RCU allows such interrupt-disabling to be dispensed with.
  1009. Thus, without RCU, you pay the cost of disabling interrupts,
  1010. and with RCU you don't.
  1011. One can argue that the overhead of RCU in this
  1012. case is negative with respect to the single-CPU
  1013. interrupt-disabling approach. Others might argue that
  1014. the overhead of RCU is merely zero, and that replacing
  1015. the positive overhead of the interrupt-disabling scheme
  1016. with the zero-overhead RCU scheme does not constitute
  1017. negative overhead.
  1018. In real life, of course, things are more complex. But
  1019. even the theoretical possibility of negative overhead for
  1020. a synchronization primitive is a bit unexpected. ;-)
  1021. :ref:`Back to Quick Quiz #2 <quiz_2>`
  1022. Quick Quiz #3:
  1023. If it is illegal to block in an RCU read-side
  1024. critical section, what the heck do you do in
  1025. CONFIG_PREEMPT_RT, where normal spinlocks can block???
  1026. Answer:
  1027. Just as CONFIG_PREEMPT_RT permits preemption of spinlock
  1028. critical sections, it permits preemption of RCU
  1029. read-side critical sections. It also permits
  1030. spinlocks blocking while in RCU read-side critical
  1031. sections.
  1032. Why the apparent inconsistency? Because it is
  1033. possible to use priority boosting to keep the RCU
  1034. grace periods short if need be (for example, if running
  1035. short of memory). In contrast, if blocking waiting
  1036. for (say) network reception, there is no way to know
  1037. what should be boosted. Especially given that the
  1038. process we need to boost might well be a human being
  1039. who just went out for a pizza or something. And although
  1040. a computer-operated cattle prod might arouse serious
  1041. interest, it might also provoke serious objections.
  1042. Besides, how does the computer know what pizza parlor
  1043. the human being went to???
  1044. :ref:`Back to Quick Quiz #3 <quiz_3>`
  1045. ACKNOWLEDGEMENTS
  1046. My thanks to the people who helped make this human-readable, including
  1047. Jon Walpole, Josh Triplett, Serge Hallyn, Suzanne Wood, and Alan Stern.
  1048. For more information, see http://www.rdrop.com/users/paulmck/RCU.