whatisRCU.txt 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043
  1. Please note that the "What is RCU?" LWN series is an excellent place
  2. to start learning about RCU:
  3. 1. What is RCU, Fundamentally? http://lwn.net/Articles/262464/
  4. 2. What is RCU? Part 2: Usage http://lwn.net/Articles/263130/
  5. 3. RCU part 3: the RCU API http://lwn.net/Articles/264090/
  6. 4. The RCU API, 2010 Edition http://lwn.net/Articles/418853/
  7. 2010 Big API Table http://lwn.net/Articles/419086/
  8. 5. The RCU API, 2014 Edition http://lwn.net/Articles/609904/
  9. 2014 Big API Table http://lwn.net/Articles/609973/
  10. What is RCU?
  11. RCU is a synchronization mechanism that was added to the Linux kernel
  12. during the 2.5 development effort that is optimized for read-mostly
  13. situations. Although RCU is actually quite simple once you understand it,
  14. getting there can sometimes be a challenge. Part of the problem is that
  15. most of the past descriptions of RCU have been written with the mistaken
  16. assumption that there is "one true way" to describe RCU. Instead,
  17. the experience has been that different people must take different paths
  18. to arrive at an understanding of RCU. This document provides several
  19. different paths, as follows:
  20. 1. RCU OVERVIEW
  21. 2. WHAT IS RCU'S CORE API?
  22. 3. WHAT ARE SOME EXAMPLE USES OF CORE RCU API?
  23. 4. WHAT IF MY UPDATING THREAD CANNOT BLOCK?
  24. 5. WHAT ARE SOME SIMPLE IMPLEMENTATIONS OF RCU?
  25. 6. ANALOGY WITH READER-WRITER LOCKING
  26. 7. FULL LIST OF RCU APIs
  27. 8. ANSWERS TO QUICK QUIZZES
  28. People who prefer starting with a conceptual overview should focus on
  29. Section 1, though most readers will profit by reading this section at
  30. some point. People who prefer to start with an API that they can then
  31. experiment with should focus on Section 2. People who prefer to start
  32. with example uses should focus on Sections 3 and 4. People who need to
  33. understand the RCU implementation should focus on Section 5, then dive
  34. into the kernel source code. People who reason best by analogy should
  35. focus on Section 6. Section 7 serves as an index to the docbook API
  36. documentation, and Section 8 is the traditional answer key.
  37. So, start with the section that makes the most sense to you and your
  38. preferred method of learning. If you need to know everything about
  39. everything, feel free to read the whole thing -- but if you are really
  40. that type of person, you have perused the source code and will therefore
  41. never need this document anyway. ;-)
  42. 1. RCU OVERVIEW
  43. The basic idea behind RCU is to split updates into "removal" and
  44. "reclamation" phases. The removal phase removes references to data items
  45. within a data structure (possibly by replacing them with references to
  46. new versions of these data items), and can run concurrently with readers.
  47. The reason that it is safe to run the removal phase concurrently with
  48. readers is the semantics of modern CPUs guarantee that readers will see
  49. either the old or the new version of the data structure rather than a
  50. partially updated reference. The reclamation phase does the work of reclaiming
  51. (e.g., freeing) the data items removed from the data structure during the
  52. removal phase. Because reclaiming data items can disrupt any readers
  53. concurrently referencing those data items, the reclamation phase must
  54. not start until readers no longer hold references to those data items.
  55. Splitting the update into removal and reclamation phases permits the
  56. updater to perform the removal phase immediately, and to defer the
  57. reclamation phase until all readers active during the removal phase have
  58. completed, either by blocking until they finish or by registering a
  59. callback that is invoked after they finish. Only readers that are active
  60. during the removal phase need be considered, because any reader starting
  61. after the removal phase will be unable to gain a reference to the removed
  62. data items, and therefore cannot be disrupted by the reclamation phase.
  63. So the typical RCU update sequence goes something like the following:
  64. a. Remove pointers to a data structure, so that subsequent
  65. readers cannot gain a reference to it.
  66. b. Wait for all previous readers to complete their RCU read-side
  67. critical sections.
  68. c. At this point, there cannot be any readers who hold references
  69. to the data structure, so it now may safely be reclaimed
  70. (e.g., kfree()d).
  71. Step (b) above is the key idea underlying RCU's deferred destruction.
  72. The ability to wait until all readers are done allows RCU readers to
  73. use much lighter-weight synchronization, in some cases, absolutely no
  74. synchronization at all. In contrast, in more conventional lock-based
  75. schemes, readers must use heavy-weight synchronization in order to
  76. prevent an updater from deleting the data structure out from under them.
  77. This is because lock-based updaters typically update data items in place,
  78. and must therefore exclude readers. In contrast, RCU-based updaters
  79. typically take advantage of the fact that writes to single aligned
  80. pointers are atomic on modern CPUs, allowing atomic insertion, removal,
  81. and replacement of data items in a linked structure without disrupting
  82. readers. Concurrent RCU readers can then continue accessing the old
  83. versions, and can dispense with the atomic operations, memory barriers,
  84. and communications cache misses that are so expensive on present-day
  85. SMP computer systems, even in absence of lock contention.
  86. In the three-step procedure shown above, the updater is performing both
  87. the removal and the reclamation step, but it is often helpful for an
  88. entirely different thread to do the reclamation, as is in fact the case
  89. in the Linux kernel's directory-entry cache (dcache). Even if the same
  90. thread performs both the update step (step (a) above) and the reclamation
  91. step (step (c) above), it is often helpful to think of them separately.
  92. For example, RCU readers and updaters need not communicate at all,
  93. but RCU provides implicit low-overhead communication between readers
  94. and reclaimers, namely, in step (b) above.
  95. So how the heck can a reclaimer tell when a reader is done, given
  96. that readers are not doing any sort of synchronization operations???
  97. Read on to learn about how RCU's API makes this easy.
  98. 2. WHAT IS RCU'S CORE API?
  99. The core RCU API is quite small:
  100. a. rcu_read_lock()
  101. b. rcu_read_unlock()
  102. c. synchronize_rcu() / call_rcu()
  103. d. rcu_assign_pointer()
  104. e. rcu_dereference()
  105. There are many other members of the RCU API, but the rest can be
  106. expressed in terms of these five, though most implementations instead
  107. express synchronize_rcu() in terms of the call_rcu() callback API.
  108. The five core RCU APIs are described below, the other 18 will be enumerated
  109. later. See the kernel docbook documentation for more info, or look directly
  110. at the function header comments.
  111. rcu_read_lock()
  112. void rcu_read_lock(void);
  113. Used by a reader to inform the reclaimer that the reader is
  114. entering an RCU read-side critical section. It is illegal
  115. to block while in an RCU read-side critical section, though
  116. kernels built with CONFIG_PREEMPT_RCU can preempt RCU
  117. read-side critical sections. Any RCU-protected data structure
  118. accessed during an RCU read-side critical section is guaranteed to
  119. remain unreclaimed for the full duration of that critical section.
  120. Reference counts may be used in conjunction with RCU to maintain
  121. longer-term references to data structures.
  122. rcu_read_unlock()
  123. void rcu_read_unlock(void);
  124. Used by a reader to inform the reclaimer that the reader is
  125. exiting an RCU read-side critical section. Note that RCU
  126. read-side critical sections may be nested and/or overlapping.
  127. synchronize_rcu()
  128. void synchronize_rcu(void);
  129. Marks the end of updater code and the beginning of reclaimer
  130. code. It does this by blocking until all pre-existing RCU
  131. read-side critical sections on all CPUs have completed.
  132. Note that synchronize_rcu() will -not- necessarily wait for
  133. any subsequent RCU read-side critical sections to complete.
  134. For example, consider the following sequence of events:
  135. CPU 0 CPU 1 CPU 2
  136. ----------------- ------------------------- ---------------
  137. 1. rcu_read_lock()
  138. 2. enters synchronize_rcu()
  139. 3. rcu_read_lock()
  140. 4. rcu_read_unlock()
  141. 5. exits synchronize_rcu()
  142. 6. rcu_read_unlock()
  143. To reiterate, synchronize_rcu() waits only for ongoing RCU
  144. read-side critical sections to complete, not necessarily for
  145. any that begin after synchronize_rcu() is invoked.
  146. Of course, synchronize_rcu() does not necessarily return
  147. -immediately- after the last pre-existing RCU read-side critical
  148. section completes. For one thing, there might well be scheduling
  149. delays. For another thing, many RCU implementations process
  150. requests in batches in order to improve efficiencies, which can
  151. further delay synchronize_rcu().
  152. Since synchronize_rcu() is the API that must figure out when
  153. readers are done, its implementation is key to RCU. For RCU
  154. to be useful in all but the most read-intensive situations,
  155. synchronize_rcu()'s overhead must also be quite small.
  156. The call_rcu() API is a callback form of synchronize_rcu(),
  157. and is described in more detail in a later section. Instead of
  158. blocking, it registers a function and argument which are invoked
  159. after all ongoing RCU read-side critical sections have completed.
  160. This callback variant is particularly useful in situations where
  161. it is illegal to block or where update-side performance is
  162. critically important.
  163. However, the call_rcu() API should not be used lightly, as use
  164. of the synchronize_rcu() API generally results in simpler code.
  165. In addition, the synchronize_rcu() API has the nice property
  166. of automatically limiting update rate should grace periods
  167. be delayed. This property results in system resilience in face
  168. of denial-of-service attacks. Code using call_rcu() should limit
  169. update rate in order to gain this same sort of resilience. See
  170. checklist.txt for some approaches to limiting the update rate.
  171. rcu_assign_pointer()
  172. typeof(p) rcu_assign_pointer(p, typeof(p) v);
  173. Yes, rcu_assign_pointer() -is- implemented as a macro, though it
  174. would be cool to be able to declare a function in this manner.
  175. (Compiler experts will no doubt disagree.)
  176. The updater uses this function to assign a new value to an
  177. RCU-protected pointer, in order to safely communicate the change
  178. in value from the updater to the reader. This function returns
  179. the new value, and also executes any memory-barrier instructions
  180. required for a given CPU architecture.
  181. Perhaps just as important, it serves to document (1) which
  182. pointers are protected by RCU and (2) the point at which a
  183. given structure becomes accessible to other CPUs. That said,
  184. rcu_assign_pointer() is most frequently used indirectly, via
  185. the _rcu list-manipulation primitives such as list_add_rcu().
  186. rcu_dereference()
  187. typeof(p) rcu_dereference(p);
  188. Like rcu_assign_pointer(), rcu_dereference() must be implemented
  189. as a macro.
  190. The reader uses rcu_dereference() to fetch an RCU-protected
  191. pointer, which returns a value that may then be safely
  192. dereferenced. Note that rcu_deference() does not actually
  193. dereference the pointer, instead, it protects the pointer for
  194. later dereferencing. It also executes any needed memory-barrier
  195. instructions for a given CPU architecture. Currently, only Alpha
  196. needs memory barriers within rcu_dereference() -- on other CPUs,
  197. it compiles to nothing, not even a compiler directive.
  198. Common coding practice uses rcu_dereference() to copy an
  199. RCU-protected pointer to a local variable, then dereferences
  200. this local variable, for example as follows:
  201. p = rcu_dereference(head.next);
  202. return p->data;
  203. However, in this case, one could just as easily combine these
  204. into one statement:
  205. return rcu_dereference(head.next)->data;
  206. If you are going to be fetching multiple fields from the
  207. RCU-protected structure, using the local variable is of
  208. course preferred. Repeated rcu_dereference() calls look
  209. ugly, do not guarantee that the same pointer will be returned
  210. if an update happened while in the critical section, and incur
  211. unnecessary overhead on Alpha CPUs.
  212. Note that the value returned by rcu_dereference() is valid
  213. only within the enclosing RCU read-side critical section.
  214. For example, the following is -not- legal:
  215. rcu_read_lock();
  216. p = rcu_dereference(head.next);
  217. rcu_read_unlock();
  218. x = p->address; /* BUG!!! */
  219. rcu_read_lock();
  220. y = p->data; /* BUG!!! */
  221. rcu_read_unlock();
  222. Holding a reference from one RCU read-side critical section
  223. to another is just as illegal as holding a reference from
  224. one lock-based critical section to another! Similarly,
  225. using a reference outside of the critical section in which
  226. it was acquired is just as illegal as doing so with normal
  227. locking.
  228. As with rcu_assign_pointer(), an important function of
  229. rcu_dereference() is to document which pointers are protected by
  230. RCU, in particular, flagging a pointer that is subject to changing
  231. at any time, including immediately after the rcu_dereference().
  232. And, again like rcu_assign_pointer(), rcu_dereference() is
  233. typically used indirectly, via the _rcu list-manipulation
  234. primitives, such as list_for_each_entry_rcu().
  235. The following diagram shows how each API communicates among the
  236. reader, updater, and reclaimer.
  237. rcu_assign_pointer()
  238. +--------+
  239. +---------------------->| reader |---------+
  240. | +--------+ |
  241. | | |
  242. | | | Protect:
  243. | | | rcu_read_lock()
  244. | | | rcu_read_unlock()
  245. | rcu_dereference() | |
  246. +---------+ | |
  247. | updater |<---------------------+ |
  248. +---------+ V
  249. | +-----------+
  250. +----------------------------------->| reclaimer |
  251. +-----------+
  252. Defer:
  253. synchronize_rcu() & call_rcu()
  254. The RCU infrastructure observes the time sequence of rcu_read_lock(),
  255. rcu_read_unlock(), synchronize_rcu(), and call_rcu() invocations in
  256. order to determine when (1) synchronize_rcu() invocations may return
  257. to their callers and (2) call_rcu() callbacks may be invoked. Efficient
  258. implementations of the RCU infrastructure make heavy use of batching in
  259. order to amortize their overhead over many uses of the corresponding APIs.
  260. There are no fewer than three RCU mechanisms in the Linux kernel; the
  261. diagram above shows the first one, which is by far the most commonly used.
  262. The rcu_dereference() and rcu_assign_pointer() primitives are used for
  263. all three mechanisms, but different defer and protect primitives are
  264. used as follows:
  265. Defer Protect
  266. a. synchronize_rcu() rcu_read_lock() / rcu_read_unlock()
  267. call_rcu() rcu_dereference()
  268. b. synchronize_rcu_bh() rcu_read_lock_bh() / rcu_read_unlock_bh()
  269. call_rcu_bh() rcu_dereference_bh()
  270. c. synchronize_sched() rcu_read_lock_sched() / rcu_read_unlock_sched()
  271. call_rcu_sched() preempt_disable() / preempt_enable()
  272. local_irq_save() / local_irq_restore()
  273. hardirq enter / hardirq exit
  274. NMI enter / NMI exit
  275. rcu_dereference_sched()
  276. These three mechanisms are used as follows:
  277. a. RCU applied to normal data structures.
  278. b. RCU applied to networking data structures that may be subjected
  279. to remote denial-of-service attacks.
  280. c. RCU applied to scheduler and interrupt/NMI-handler tasks.
  281. Again, most uses will be of (a). The (b) and (c) cases are important
  282. for specialized uses, but are relatively uncommon.
  283. 3. WHAT ARE SOME EXAMPLE USES OF CORE RCU API?
  284. This section shows a simple use of the core RCU API to protect a
  285. global pointer to a dynamically allocated structure. More-typical
  286. uses of RCU may be found in listRCU.txt, arrayRCU.txt, and NMI-RCU.txt.
  287. struct foo {
  288. int a;
  289. char b;
  290. long c;
  291. };
  292. DEFINE_SPINLOCK(foo_mutex);
  293. struct foo __rcu *gbl_foo;
  294. /*
  295. * Create a new struct foo that is the same as the one currently
  296. * pointed to by gbl_foo, except that field "a" is replaced
  297. * with "new_a". Points gbl_foo to the new structure, and
  298. * frees up the old structure after a grace period.
  299. *
  300. * Uses rcu_assign_pointer() to ensure that concurrent readers
  301. * see the initialized version of the new structure.
  302. *
  303. * Uses synchronize_rcu() to ensure that any readers that might
  304. * have references to the old structure complete before freeing
  305. * the old structure.
  306. */
  307. void foo_update_a(int new_a)
  308. {
  309. struct foo *new_fp;
  310. struct foo *old_fp;
  311. new_fp = kmalloc(sizeof(*new_fp), GFP_KERNEL);
  312. spin_lock(&foo_mutex);
  313. old_fp = rcu_dereference_protected(gbl_foo, lockdep_is_held(&foo_mutex));
  314. *new_fp = *old_fp;
  315. new_fp->a = new_a;
  316. rcu_assign_pointer(gbl_foo, new_fp);
  317. spin_unlock(&foo_mutex);
  318. synchronize_rcu();
  319. kfree(old_fp);
  320. }
  321. /*
  322. * Return the value of field "a" of the current gbl_foo
  323. * structure. Use rcu_read_lock() and rcu_read_unlock()
  324. * to ensure that the structure does not get deleted out
  325. * from under us, and use rcu_dereference() to ensure that
  326. * we see the initialized version of the structure (important
  327. * for DEC Alpha and for people reading the code).
  328. */
  329. int foo_get_a(void)
  330. {
  331. int retval;
  332. rcu_read_lock();
  333. retval = rcu_dereference(gbl_foo)->a;
  334. rcu_read_unlock();
  335. return retval;
  336. }
  337. So, to sum up:
  338. o Use rcu_read_lock() and rcu_read_unlock() to guard RCU
  339. read-side critical sections.
  340. o Within an RCU read-side critical section, use rcu_dereference()
  341. to dereference RCU-protected pointers.
  342. o Use some solid scheme (such as locks or semaphores) to
  343. keep concurrent updates from interfering with each other.
  344. o Use rcu_assign_pointer() to update an RCU-protected pointer.
  345. This primitive protects concurrent readers from the updater,
  346. -not- concurrent updates from each other! You therefore still
  347. need to use locking (or something similar) to keep concurrent
  348. rcu_assign_pointer() primitives from interfering with each other.
  349. o Use synchronize_rcu() -after- removing a data element from an
  350. RCU-protected data structure, but -before- reclaiming/freeing
  351. the data element, in order to wait for the completion of all
  352. RCU read-side critical sections that might be referencing that
  353. data item.
  354. See checklist.txt for additional rules to follow when using RCU.
  355. And again, more-typical uses of RCU may be found in listRCU.txt,
  356. arrayRCU.txt, and NMI-RCU.txt.
  357. 4. WHAT IF MY UPDATING THREAD CANNOT BLOCK?
  358. In the example above, foo_update_a() blocks until a grace period elapses.
  359. This is quite simple, but in some cases one cannot afford to wait so
  360. long -- there might be other high-priority work to be done.
  361. In such cases, one uses call_rcu() rather than synchronize_rcu().
  362. The call_rcu() API is as follows:
  363. void call_rcu(struct rcu_head * head,
  364. void (*func)(struct rcu_head *head));
  365. This function invokes func(head) after a grace period has elapsed.
  366. This invocation might happen from either softirq or process context,
  367. so the function is not permitted to block. The foo struct needs to
  368. have an rcu_head structure added, perhaps as follows:
  369. struct foo {
  370. int a;
  371. char b;
  372. long c;
  373. struct rcu_head rcu;
  374. };
  375. The foo_update_a() function might then be written as follows:
  376. /*
  377. * Create a new struct foo that is the same as the one currently
  378. * pointed to by gbl_foo, except that field "a" is replaced
  379. * with "new_a". Points gbl_foo to the new structure, and
  380. * frees up the old structure after a grace period.
  381. *
  382. * Uses rcu_assign_pointer() to ensure that concurrent readers
  383. * see the initialized version of the new structure.
  384. *
  385. * Uses call_rcu() to ensure that any readers that might have
  386. * references to the old structure complete before freeing the
  387. * old structure.
  388. */
  389. void foo_update_a(int new_a)
  390. {
  391. struct foo *new_fp;
  392. struct foo *old_fp;
  393. new_fp = kmalloc(sizeof(*new_fp), GFP_KERNEL);
  394. spin_lock(&foo_mutex);
  395. old_fp = rcu_dereference_protected(gbl_foo, lockdep_is_held(&foo_mutex));
  396. *new_fp = *old_fp;
  397. new_fp->a = new_a;
  398. rcu_assign_pointer(gbl_foo, new_fp);
  399. spin_unlock(&foo_mutex);
  400. call_rcu(&old_fp->rcu, foo_reclaim);
  401. }
  402. The foo_reclaim() function might appear as follows:
  403. void foo_reclaim(struct rcu_head *rp)
  404. {
  405. struct foo *fp = container_of(rp, struct foo, rcu);
  406. foo_cleanup(fp->a);
  407. kfree(fp);
  408. }
  409. The container_of() primitive is a macro that, given a pointer into a
  410. struct, the type of the struct, and the pointed-to field within the
  411. struct, returns a pointer to the beginning of the struct.
  412. The use of call_rcu() permits the caller of foo_update_a() to
  413. immediately regain control, without needing to worry further about the
  414. old version of the newly updated element. It also clearly shows the
  415. RCU distinction between updater, namely foo_update_a(), and reclaimer,
  416. namely foo_reclaim().
  417. The summary of advice is the same as for the previous section, except
  418. that we are now using call_rcu() rather than synchronize_rcu():
  419. o Use call_rcu() -after- removing a data element from an
  420. RCU-protected data structure in order to register a callback
  421. function that will be invoked after the completion of all RCU
  422. read-side critical sections that might be referencing that
  423. data item.
  424. If the callback for call_rcu() is not doing anything more than calling
  425. kfree() on the structure, you can use kfree_rcu() instead of call_rcu()
  426. to avoid having to write your own callback:
  427. kfree_rcu(old_fp, rcu);
  428. Again, see checklist.txt for additional rules governing the use of RCU.
  429. 5. WHAT ARE SOME SIMPLE IMPLEMENTATIONS OF RCU?
  430. One of the nice things about RCU is that it has extremely simple "toy"
  431. implementations that are a good first step towards understanding the
  432. production-quality implementations in the Linux kernel. This section
  433. presents two such "toy" implementations of RCU, one that is implemented
  434. in terms of familiar locking primitives, and another that more closely
  435. resembles "classic" RCU. Both are way too simple for real-world use,
  436. lacking both functionality and performance. However, they are useful
  437. in getting a feel for how RCU works. See kernel/rcupdate.c for a
  438. production-quality implementation, and see:
  439. http://www.rdrop.com/users/paulmck/RCU
  440. for papers describing the Linux kernel RCU implementation. The OLS'01
  441. and OLS'02 papers are a good introduction, and the dissertation provides
  442. more details on the current implementation as of early 2004.
  443. 5A. "TOY" IMPLEMENTATION #1: LOCKING
  444. This section presents a "toy" RCU implementation that is based on
  445. familiar locking primitives. Its overhead makes it a non-starter for
  446. real-life use, as does its lack of scalability. It is also unsuitable
  447. for realtime use, since it allows scheduling latency to "bleed" from
  448. one read-side critical section to another.
  449. However, it is probably the easiest implementation to relate to, so is
  450. a good starting point.
  451. It is extremely simple:
  452. static DEFINE_RWLOCK(rcu_gp_mutex);
  453. void rcu_read_lock(void)
  454. {
  455. read_lock(&rcu_gp_mutex);
  456. }
  457. void rcu_read_unlock(void)
  458. {
  459. read_unlock(&rcu_gp_mutex);
  460. }
  461. void synchronize_rcu(void)
  462. {
  463. write_lock(&rcu_gp_mutex);
  464. write_unlock(&rcu_gp_mutex);
  465. }
  466. [You can ignore rcu_assign_pointer() and rcu_dereference() without
  467. missing much. But here they are anyway. And whatever you do, don't
  468. forget about them when submitting patches making use of RCU!]
  469. #define rcu_assign_pointer(p, v) ({ \
  470. smp_wmb(); \
  471. (p) = (v); \
  472. })
  473. #define rcu_dereference(p) ({ \
  474. typeof(p) _________p1 = p; \
  475. smp_read_barrier_depends(); \
  476. (_________p1); \
  477. })
  478. The rcu_read_lock() and rcu_read_unlock() primitive read-acquire
  479. and release a global reader-writer lock. The synchronize_rcu()
  480. primitive write-acquires this same lock, then immediately releases
  481. it. This means that once synchronize_rcu() exits, all RCU read-side
  482. critical sections that were in progress before synchronize_rcu() was
  483. called are guaranteed to have completed -- there is no way that
  484. synchronize_rcu() would have been able to write-acquire the lock
  485. otherwise.
  486. It is possible to nest rcu_read_lock(), since reader-writer locks may
  487. be recursively acquired. Note also that rcu_read_lock() is immune
  488. from deadlock (an important property of RCU). The reason for this is
  489. that the only thing that can block rcu_read_lock() is a synchronize_rcu().
  490. But synchronize_rcu() does not acquire any locks while holding rcu_gp_mutex,
  491. so there can be no deadlock cycle.
  492. Quick Quiz #1: Why is this argument naive? How could a deadlock
  493. occur when using this algorithm in a real-world Linux
  494. kernel? How could this deadlock be avoided?
  495. 5B. "TOY" EXAMPLE #2: CLASSIC RCU
  496. This section presents a "toy" RCU implementation that is based on
  497. "classic RCU". It is also short on performance (but only for updates) and
  498. on features such as hotplug CPU and the ability to run in CONFIG_PREEMPT
  499. kernels. The definitions of rcu_dereference() and rcu_assign_pointer()
  500. are the same as those shown in the preceding section, so they are omitted.
  501. void rcu_read_lock(void) { }
  502. void rcu_read_unlock(void) { }
  503. void synchronize_rcu(void)
  504. {
  505. int cpu;
  506. for_each_possible_cpu(cpu)
  507. run_on(cpu);
  508. }
  509. Note that rcu_read_lock() and rcu_read_unlock() do absolutely nothing.
  510. This is the great strength of classic RCU in a non-preemptive kernel:
  511. read-side overhead is precisely zero, at least on non-Alpha CPUs.
  512. And there is absolutely no way that rcu_read_lock() can possibly
  513. participate in a deadlock cycle!
  514. The implementation of synchronize_rcu() simply schedules itself on each
  515. CPU in turn. The run_on() primitive can be implemented straightforwardly
  516. in terms of the sched_setaffinity() primitive. Of course, a somewhat less
  517. "toy" implementation would restore the affinity upon completion rather
  518. than just leaving all tasks running on the last CPU, but when I said
  519. "toy", I meant -toy-!
  520. So how the heck is this supposed to work???
  521. Remember that it is illegal to block while in an RCU read-side critical
  522. section. Therefore, if a given CPU executes a context switch, we know
  523. that it must have completed all preceding RCU read-side critical sections.
  524. Once -all- CPUs have executed a context switch, then -all- preceding
  525. RCU read-side critical sections will have completed.
  526. So, suppose that we remove a data item from its structure and then invoke
  527. synchronize_rcu(). Once synchronize_rcu() returns, we are guaranteed
  528. that there are no RCU read-side critical sections holding a reference
  529. to that data item, so we can safely reclaim it.
  530. Quick Quiz #2: Give an example where Classic RCU's read-side
  531. overhead is -negative-.
  532. Quick Quiz #3: If it is illegal to block in an RCU read-side
  533. critical section, what the heck do you do in
  534. PREEMPT_RT, where normal spinlocks can block???
  535. 6. ANALOGY WITH READER-WRITER LOCKING
  536. Although RCU can be used in many different ways, a very common use of
  537. RCU is analogous to reader-writer locking. The following unified
  538. diff shows how closely related RCU and reader-writer locking can be.
  539. @@ -5,5 +5,5 @@ struct el {
  540. int data;
  541. /* Other data fields */
  542. };
  543. -rwlock_t listmutex;
  544. +spinlock_t listmutex;
  545. struct el head;
  546. @@ -13,15 +14,15 @@
  547. struct list_head *lp;
  548. struct el *p;
  549. - read_lock(&listmutex);
  550. - list_for_each_entry(p, head, lp) {
  551. + rcu_read_lock();
  552. + list_for_each_entry_rcu(p, head, lp) {
  553. if (p->key == key) {
  554. *result = p->data;
  555. - read_unlock(&listmutex);
  556. + rcu_read_unlock();
  557. return 1;
  558. }
  559. }
  560. - read_unlock(&listmutex);
  561. + rcu_read_unlock();
  562. return 0;
  563. }
  564. @@ -29,15 +30,16 @@
  565. {
  566. struct el *p;
  567. - write_lock(&listmutex);
  568. + spin_lock(&listmutex);
  569. list_for_each_entry(p, head, lp) {
  570. if (p->key == key) {
  571. - list_del(&p->list);
  572. - write_unlock(&listmutex);
  573. + list_del_rcu(&p->list);
  574. + spin_unlock(&listmutex);
  575. + synchronize_rcu();
  576. kfree(p);
  577. return 1;
  578. }
  579. }
  580. - write_unlock(&listmutex);
  581. + spin_unlock(&listmutex);
  582. return 0;
  583. }
  584. Or, for those who prefer a side-by-side listing:
  585. 1 struct el { 1 struct el {
  586. 2 struct list_head list; 2 struct list_head list;
  587. 3 long key; 3 long key;
  588. 4 spinlock_t mutex; 4 spinlock_t mutex;
  589. 5 int data; 5 int data;
  590. 6 /* Other data fields */ 6 /* Other data fields */
  591. 7 }; 7 };
  592. 8 rwlock_t listmutex; 8 spinlock_t listmutex;
  593. 9 struct el head; 9 struct el head;
  594. 1 int search(long key, int *result) 1 int search(long key, int *result)
  595. 2 { 2 {
  596. 3 struct list_head *lp; 3 struct list_head *lp;
  597. 4 struct el *p; 4 struct el *p;
  598. 5 5
  599. 6 read_lock(&listmutex); 6 rcu_read_lock();
  600. 7 list_for_each_entry(p, head, lp) { 7 list_for_each_entry_rcu(p, head, lp) {
  601. 8 if (p->key == key) { 8 if (p->key == key) {
  602. 9 *result = p->data; 9 *result = p->data;
  603. 10 read_unlock(&listmutex); 10 rcu_read_unlock();
  604. 11 return 1; 11 return 1;
  605. 12 } 12 }
  606. 13 } 13 }
  607. 14 read_unlock(&listmutex); 14 rcu_read_unlock();
  608. 15 return 0; 15 return 0;
  609. 16 } 16 }
  610. 1 int delete(long key) 1 int delete(long key)
  611. 2 { 2 {
  612. 3 struct el *p; 3 struct el *p;
  613. 4 4
  614. 5 write_lock(&listmutex); 5 spin_lock(&listmutex);
  615. 6 list_for_each_entry(p, head, lp) { 6 list_for_each_entry(p, head, lp) {
  616. 7 if (p->key == key) { 7 if (p->key == key) {
  617. 8 list_del(&p->list); 8 list_del_rcu(&p->list);
  618. 9 write_unlock(&listmutex); 9 spin_unlock(&listmutex);
  619. 10 synchronize_rcu();
  620. 10 kfree(p); 11 kfree(p);
  621. 11 return 1; 12 return 1;
  622. 12 } 13 }
  623. 13 } 14 }
  624. 14 write_unlock(&listmutex); 15 spin_unlock(&listmutex);
  625. 15 return 0; 16 return 0;
  626. 16 } 17 }
  627. Either way, the differences are quite small. Read-side locking moves
  628. to rcu_read_lock() and rcu_read_unlock, update-side locking moves from
  629. a reader-writer lock to a simple spinlock, and a synchronize_rcu()
  630. precedes the kfree().
  631. However, there is one potential catch: the read-side and update-side
  632. critical sections can now run concurrently. In many cases, this will
  633. not be a problem, but it is necessary to check carefully regardless.
  634. For example, if multiple independent list updates must be seen as
  635. a single atomic update, converting to RCU will require special care.
  636. Also, the presence of synchronize_rcu() means that the RCU version of
  637. delete() can now block. If this is a problem, there is a callback-based
  638. mechanism that never blocks, namely call_rcu() or kfree_rcu(), that can
  639. be used in place of synchronize_rcu().
  640. 7. FULL LIST OF RCU APIs
  641. The RCU APIs are documented in docbook-format header comments in the
  642. Linux-kernel source code, but it helps to have a full list of the
  643. APIs, since there does not appear to be a way to categorize them
  644. in docbook. Here is the list, by category.
  645. RCU list traversal:
  646. list_entry_rcu
  647. list_first_entry_rcu
  648. list_next_rcu
  649. list_for_each_entry_rcu
  650. list_for_each_entry_continue_rcu
  651. hlist_first_rcu
  652. hlist_next_rcu
  653. hlist_pprev_rcu
  654. hlist_for_each_entry_rcu
  655. hlist_for_each_entry_rcu_bh
  656. hlist_for_each_entry_continue_rcu
  657. hlist_for_each_entry_continue_rcu_bh
  658. hlist_nulls_first_rcu
  659. hlist_nulls_for_each_entry_rcu
  660. hlist_bl_first_rcu
  661. hlist_bl_for_each_entry_rcu
  662. RCU pointer/list update:
  663. rcu_assign_pointer
  664. list_add_rcu
  665. list_add_tail_rcu
  666. list_del_rcu
  667. list_replace_rcu
  668. hlist_add_behind_rcu
  669. hlist_add_before_rcu
  670. hlist_add_head_rcu
  671. hlist_del_rcu
  672. hlist_del_init_rcu
  673. hlist_replace_rcu
  674. list_splice_init_rcu()
  675. hlist_nulls_del_init_rcu
  676. hlist_nulls_del_rcu
  677. hlist_nulls_add_head_rcu
  678. hlist_bl_add_head_rcu
  679. hlist_bl_del_init_rcu
  680. hlist_bl_del_rcu
  681. hlist_bl_set_first_rcu
  682. RCU: Critical sections Grace period Barrier
  683. rcu_read_lock synchronize_net rcu_barrier
  684. rcu_read_unlock synchronize_rcu
  685. rcu_dereference synchronize_rcu_expedited
  686. rcu_read_lock_held call_rcu
  687. rcu_dereference_check kfree_rcu
  688. rcu_dereference_protected
  689. bh: Critical sections Grace period Barrier
  690. rcu_read_lock_bh call_rcu_bh rcu_barrier_bh
  691. rcu_read_unlock_bh synchronize_rcu_bh
  692. rcu_dereference_bh synchronize_rcu_bh_expedited
  693. rcu_dereference_bh_check
  694. rcu_dereference_bh_protected
  695. rcu_read_lock_bh_held
  696. sched: Critical sections Grace period Barrier
  697. rcu_read_lock_sched synchronize_sched rcu_barrier_sched
  698. rcu_read_unlock_sched call_rcu_sched
  699. [preempt_disable] synchronize_sched_expedited
  700. [and friends]
  701. rcu_read_lock_sched_notrace
  702. rcu_read_unlock_sched_notrace
  703. rcu_dereference_sched
  704. rcu_dereference_sched_check
  705. rcu_dereference_sched_protected
  706. rcu_read_lock_sched_held
  707. SRCU: Critical sections Grace period Barrier
  708. srcu_read_lock synchronize_srcu srcu_barrier
  709. srcu_read_unlock call_srcu
  710. srcu_dereference synchronize_srcu_expedited
  711. srcu_dereference_check
  712. srcu_read_lock_held
  713. SRCU: Initialization/cleanup
  714. init_srcu_struct
  715. cleanup_srcu_struct
  716. All: lockdep-checked RCU-protected pointer access
  717. rcu_access_pointer
  718. rcu_dereference_raw
  719. RCU_LOCKDEP_WARN
  720. rcu_sleep_check
  721. RCU_NONIDLE
  722. See the comment headers in the source code (or the docbook generated
  723. from them) for more information.
  724. However, given that there are no fewer than four families of RCU APIs
  725. in the Linux kernel, how do you choose which one to use? The following
  726. list can be helpful:
  727. a. Will readers need to block? If so, you need SRCU.
  728. b. What about the -rt patchset? If readers would need to block
  729. in an non-rt kernel, you need SRCU. If readers would block
  730. in a -rt kernel, but not in a non-rt kernel, SRCU is not
  731. necessary.
  732. c. Do you need to treat NMI handlers, hardirq handlers,
  733. and code segments with preemption disabled (whether
  734. via preempt_disable(), local_irq_save(), local_bh_disable(),
  735. or some other mechanism) as if they were explicit RCU readers?
  736. If so, RCU-sched is the only choice that will work for you.
  737. d. Do you need RCU grace periods to complete even in the face
  738. of softirq monopolization of one or more of the CPUs? For
  739. example, is your code subject to network-based denial-of-service
  740. attacks? If so, you need RCU-bh.
  741. e. Is your workload too update-intensive for normal use of
  742. RCU, but inappropriate for other synchronization mechanisms?
  743. If so, consider SLAB_DESTROY_BY_RCU. But please be careful!
  744. f. Do you need read-side critical sections that are respected
  745. even though they are in the middle of the idle loop, during
  746. user-mode execution, or on an offlined CPU? If so, SRCU is the
  747. only choice that will work for you.
  748. g. Otherwise, use RCU.
  749. Of course, this all assumes that you have determined that RCU is in fact
  750. the right tool for your job.
  751. 8. ANSWERS TO QUICK QUIZZES
  752. Quick Quiz #1: Why is this argument naive? How could a deadlock
  753. occur when using this algorithm in a real-world Linux
  754. kernel? [Referring to the lock-based "toy" RCU
  755. algorithm.]
  756. Answer: Consider the following sequence of events:
  757. 1. CPU 0 acquires some unrelated lock, call it
  758. "problematic_lock", disabling irq via
  759. spin_lock_irqsave().
  760. 2. CPU 1 enters synchronize_rcu(), write-acquiring
  761. rcu_gp_mutex.
  762. 3. CPU 0 enters rcu_read_lock(), but must wait
  763. because CPU 1 holds rcu_gp_mutex.
  764. 4. CPU 1 is interrupted, and the irq handler
  765. attempts to acquire problematic_lock.
  766. The system is now deadlocked.
  767. One way to avoid this deadlock is to use an approach like
  768. that of CONFIG_PREEMPT_RT, where all normal spinlocks
  769. become blocking locks, and all irq handlers execute in
  770. the context of special tasks. In this case, in step 4
  771. above, the irq handler would block, allowing CPU 1 to
  772. release rcu_gp_mutex, avoiding the deadlock.
  773. Even in the absence of deadlock, this RCU implementation
  774. allows latency to "bleed" from readers to other
  775. readers through synchronize_rcu(). To see this,
  776. consider task A in an RCU read-side critical section
  777. (thus read-holding rcu_gp_mutex), task B blocked
  778. attempting to write-acquire rcu_gp_mutex, and
  779. task C blocked in rcu_read_lock() attempting to
  780. read_acquire rcu_gp_mutex. Task A's RCU read-side
  781. latency is holding up task C, albeit indirectly via
  782. task B.
  783. Realtime RCU implementations therefore use a counter-based
  784. approach where tasks in RCU read-side critical sections
  785. cannot be blocked by tasks executing synchronize_rcu().
  786. Quick Quiz #2: Give an example where Classic RCU's read-side
  787. overhead is -negative-.
  788. Answer: Imagine a single-CPU system with a non-CONFIG_PREEMPT
  789. kernel where a routing table is used by process-context
  790. code, but can be updated by irq-context code (for example,
  791. by an "ICMP REDIRECT" packet). The usual way of handling
  792. this would be to have the process-context code disable
  793. interrupts while searching the routing table. Use of
  794. RCU allows such interrupt-disabling to be dispensed with.
  795. Thus, without RCU, you pay the cost of disabling interrupts,
  796. and with RCU you don't.
  797. One can argue that the overhead of RCU in this
  798. case is negative with respect to the single-CPU
  799. interrupt-disabling approach. Others might argue that
  800. the overhead of RCU is merely zero, and that replacing
  801. the positive overhead of the interrupt-disabling scheme
  802. with the zero-overhead RCU scheme does not constitute
  803. negative overhead.
  804. In real life, of course, things are more complex. But
  805. even the theoretical possibility of negative overhead for
  806. a synchronization primitive is a bit unexpected. ;-)
  807. Quick Quiz #3: If it is illegal to block in an RCU read-side
  808. critical section, what the heck do you do in
  809. PREEMPT_RT, where normal spinlocks can block???
  810. Answer: Just as PREEMPT_RT permits preemption of spinlock
  811. critical sections, it permits preemption of RCU
  812. read-side critical sections. It also permits
  813. spinlocks blocking while in RCU read-side critical
  814. sections.
  815. Why the apparent inconsistency? Because it is it
  816. possible to use priority boosting to keep the RCU
  817. grace periods short if need be (for example, if running
  818. short of memory). In contrast, if blocking waiting
  819. for (say) network reception, there is no way to know
  820. what should be boosted. Especially given that the
  821. process we need to boost might well be a human being
  822. who just went out for a pizza or something. And although
  823. a computer-operated cattle prod might arouse serious
  824. interest, it might also provoke serious objections.
  825. Besides, how does the computer know what pizza parlor
  826. the human being went to???
  827. ACKNOWLEDGEMENTS
  828. My thanks to the people who helped make this human-readable, including
  829. Jon Walpole, Josh Triplett, Serge Hallyn, Suzanne Wood, and Alan Stern.
  830. For more information, see http://www.rdrop.com/users/paulmck/RCU.