blob: 09b3b1b54e02037ce75ce1f05ab61b83e4bae14f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Read-Copy Update mechanism for mutual exclusion
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
Paul E. McKenney01c1c662008-01-25 21:08:24 +010018 * Copyright IBM Corporation, 2001
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 *
20 * Authors: Dipankar Sarma <dipankar@in.ibm.com>
21 * Manfred Spraul <manfred@colorfullife.com>
Paul E. McKenneya71fca52009-09-18 10:28:19 -070022 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * Based on the original work by Paul McKenney <paulmck@us.ibm.com>
24 * and inputs from Rusty Russell, Andrea Arcangeli and Andi Kleen.
25 * Papers:
26 * http://www.rdrop.com/users/paulmck/paper/rclockpdcsproof.pdf
27 * http://lse.sourceforge.net/locking/rclock_OLS.2001.05.01c.sc.pdf (OLS2001)
28 *
29 * For detailed explanation of Read-Copy Update mechanism see -
Paul E. McKenneya71fca52009-09-18 10:28:19 -070030 * http://lse.sourceforge.net/locking/rcupdate.html
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 *
32 */
33#include <linux/types.h>
34#include <linux/kernel.h>
35#include <linux/init.h>
36#include <linux/spinlock.h>
37#include <linux/smp.h>
38#include <linux/interrupt.h>
39#include <linux/sched.h>
Arun Sharma60063492011-07-26 16:09:06 -070040#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/percpu.h>
43#include <linux/notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/cpu.h>
Ingo Molnar9331b312006-03-23 03:00:19 -080045#include <linux/mutex.h>
Paul E. McKenney01c1c662008-01-25 21:08:24 +010046#include <linux/module.h>
Paul E. McKenneye3818b82010-03-15 17:03:43 -070047#include <linux/hardirq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Paul E. McKenney162cc272009-09-23 16:18:13 -070049#ifdef CONFIG_DEBUG_LOCK_ALLOC
50static struct lock_class_key rcu_lock_key;
51struct lockdep_map rcu_lock_map =
52 STATIC_LOCKDEP_MAP_INIT("rcu_read_lock", &rcu_lock_key);
53EXPORT_SYMBOL_GPL(rcu_lock_map);
Paul E. McKenney632ee202010-02-22 17:04:45 -080054
55static struct lock_class_key rcu_bh_lock_key;
56struct lockdep_map rcu_bh_lock_map =
57 STATIC_LOCKDEP_MAP_INIT("rcu_read_lock_bh", &rcu_bh_lock_key);
58EXPORT_SYMBOL_GPL(rcu_bh_lock_map);
59
60static struct lock_class_key rcu_sched_lock_key;
61struct lockdep_map rcu_sched_lock_map =
62 STATIC_LOCKDEP_MAP_INIT("rcu_read_lock_sched", &rcu_sched_lock_key);
63EXPORT_SYMBOL_GPL(rcu_sched_lock_map);
Paul E. McKenney162cc272009-09-23 16:18:13 -070064#endif
65
Paul E. McKenneye3818b82010-03-15 17:03:43 -070066#ifdef CONFIG_DEBUG_LOCK_ALLOC
67
Paul E. McKenneybc293d62010-04-15 12:50:39 -070068int debug_lockdep_rcu_enabled(void)
69{
70 return rcu_scheduler_active && debug_locks &&
71 current->lockdep_recursion == 0;
72}
73EXPORT_SYMBOL_GPL(debug_lockdep_rcu_enabled);
74
Paul E. McKenneye3818b82010-03-15 17:03:43 -070075/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -070076 * rcu_read_lock_bh_held() - might we be in RCU-bh read-side critical section?
Paul E. McKenneye3818b82010-03-15 17:03:43 -070077 *
78 * Check for bottom half being disabled, which covers both the
79 * CONFIG_PROVE_RCU and not cases. Note that if someone uses
80 * rcu_read_lock_bh(), but then later enables BH, lockdep (if enabled)
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -070081 * will show the situation. This is useful for debug checks in functions
82 * that require that they be called within an RCU read-side critical
83 * section.
Paul E. McKenneye3818b82010-03-15 17:03:43 -070084 *
85 * Check debug_lockdep_rcu_enabled() to prevent false positives during boot.
86 */
87int rcu_read_lock_bh_held(void)
88{
89 if (!debug_lockdep_rcu_enabled())
90 return 1;
Paul E. McKenney773e3f92010-10-05 14:03:02 -070091 return in_softirq() || irqs_disabled();
Paul E. McKenneye3818b82010-03-15 17:03:43 -070092}
93EXPORT_SYMBOL_GPL(rcu_read_lock_bh_held);
94
95#endif /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
96
Paul E. McKenney2c428182011-05-26 22:14:36 -070097struct rcu_synchronize {
98 struct rcu_head head;
99 struct completion completion;
100};
101
Paul E. McKenneyd9f1bb62010-02-25 14:06:47 -0800102/*
Paul E. McKenneyfbf6bfc2008-02-13 15:03:15 -0800103 * Awaken the corresponding synchronize_rcu() instance now that a
104 * grace period has elapsed.
105 */
Paul E. McKenney2c428182011-05-26 22:14:36 -0700106static void wakeme_after_rcu(struct rcu_head *head)
Dipankar Sarma21a1ea92006-03-07 21:55:33 -0800107{
Paul E. McKenney01c1c662008-01-25 21:08:24 +0100108 struct rcu_synchronize *rcu;
109
110 rcu = container_of(head, struct rcu_synchronize, head);
111 complete(&rcu->completion);
Dipankar Sarma21a1ea92006-03-07 21:55:33 -0800112}
Paul E. McKenneyee84b822010-05-06 09:28:41 -0700113
Paul E. McKenney2c428182011-05-26 22:14:36 -0700114void wait_rcu_gp(call_rcu_func_t crf)
115{
116 struct rcu_synchronize rcu;
117
118 init_rcu_head_on_stack(&rcu.head);
119 init_completion(&rcu.completion);
120 /* Will wake me after RCU finished. */
121 crf(&rcu.head, wakeme_after_rcu);
122 /* Wait for it. */
123 wait_for_completion(&rcu.completion);
124 destroy_rcu_head_on_stack(&rcu.head);
125}
126EXPORT_SYMBOL_GPL(wait_rcu_gp);
127
Paul E. McKenneyee84b822010-05-06 09:28:41 -0700128#ifdef CONFIG_PROVE_RCU
129/*
130 * wrapper function to avoid #include problems.
131 */
132int rcu_my_thread_group_empty(void)
133{
134 return thread_group_empty(current);
135}
136EXPORT_SYMBOL_GPL(rcu_my_thread_group_empty);
137#endif /* #ifdef CONFIG_PROVE_RCU */
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400138
139#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
140static inline void debug_init_rcu_head(struct rcu_head *head)
141{
142 debug_object_init(head, &rcuhead_debug_descr);
143}
144
145static inline void debug_rcu_head_free(struct rcu_head *head)
146{
147 debug_object_free(head, &rcuhead_debug_descr);
148}
149
150/*
151 * fixup_init is called when:
152 * - an active object is initialized
153 */
154static int rcuhead_fixup_init(void *addr, enum debug_obj_state state)
155{
156 struct rcu_head *head = addr;
157
158 switch (state) {
159 case ODEBUG_STATE_ACTIVE:
160 /*
161 * Ensure that queued callbacks are all executed.
162 * If we detect that we are nested in a RCU read-side critical
163 * section, we should simply fail, otherwise we would deadlock.
Mathieu Desnoyersfc2ecf72011-02-23 09:42:14 -0800164 * In !PREEMPT configurations, there is no way to tell if we are
165 * in a RCU read-side critical section or not, so we never
166 * attempt any fixup and just print a warning.
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400167 */
Mathieu Desnoyersfc2ecf72011-02-23 09:42:14 -0800168#ifndef CONFIG_PREEMPT
Paul E. McKenney108aae22011-02-23 09:56:00 -0800169 WARN_ON_ONCE(1);
Mathieu Desnoyersfc2ecf72011-02-23 09:42:14 -0800170 return 0;
171#endif
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400172 if (rcu_preempt_depth() != 0 || preempt_count() != 0 ||
173 irqs_disabled()) {
Paul E. McKenney108aae22011-02-23 09:56:00 -0800174 WARN_ON_ONCE(1);
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400175 return 0;
176 }
177 rcu_barrier();
178 rcu_barrier_sched();
179 rcu_barrier_bh();
180 debug_object_init(head, &rcuhead_debug_descr);
181 return 1;
182 default:
183 return 0;
184 }
185}
186
187/*
188 * fixup_activate is called when:
189 * - an active object is activated
190 * - an unknown object is activated (might be a statically initialized object)
191 * Activation is performed internally by call_rcu().
192 */
193static int rcuhead_fixup_activate(void *addr, enum debug_obj_state state)
194{
195 struct rcu_head *head = addr;
196
197 switch (state) {
198
199 case ODEBUG_STATE_NOTAVAILABLE:
200 /*
201 * This is not really a fixup. We just make sure that it is
202 * tracked in the object tracker.
203 */
204 debug_object_init(head, &rcuhead_debug_descr);
205 debug_object_activate(head, &rcuhead_debug_descr);
206 return 0;
207
208 case ODEBUG_STATE_ACTIVE:
209 /*
210 * Ensure that queued callbacks are all executed.
211 * If we detect that we are nested in a RCU read-side critical
212 * section, we should simply fail, otherwise we would deadlock.
Mathieu Desnoyersfc2ecf72011-02-23 09:42:14 -0800213 * In !PREEMPT configurations, there is no way to tell if we are
214 * in a RCU read-side critical section or not, so we never
215 * attempt any fixup and just print a warning.
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400216 */
Mathieu Desnoyersfc2ecf72011-02-23 09:42:14 -0800217#ifndef CONFIG_PREEMPT
Paul E. McKenney108aae22011-02-23 09:56:00 -0800218 WARN_ON_ONCE(1);
Mathieu Desnoyersfc2ecf72011-02-23 09:42:14 -0800219 return 0;
220#endif
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400221 if (rcu_preempt_depth() != 0 || preempt_count() != 0 ||
222 irqs_disabled()) {
Paul E. McKenney108aae22011-02-23 09:56:00 -0800223 WARN_ON_ONCE(1);
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400224 return 0;
225 }
226 rcu_barrier();
227 rcu_barrier_sched();
228 rcu_barrier_bh();
229 debug_object_activate(head, &rcuhead_debug_descr);
230 return 1;
231 default:
232 return 0;
233 }
234}
235
236/*
237 * fixup_free is called when:
238 * - an active object is freed
239 */
240static int rcuhead_fixup_free(void *addr, enum debug_obj_state state)
241{
242 struct rcu_head *head = addr;
243
244 switch (state) {
245 case ODEBUG_STATE_ACTIVE:
246 /*
247 * Ensure that queued callbacks are all executed.
248 * If we detect that we are nested in a RCU read-side critical
249 * section, we should simply fail, otherwise we would deadlock.
Mathieu Desnoyersfc2ecf72011-02-23 09:42:14 -0800250 * In !PREEMPT configurations, there is no way to tell if we are
251 * in a RCU read-side critical section or not, so we never
252 * attempt any fixup and just print a warning.
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400253 */
Mathieu Desnoyersfc2ecf72011-02-23 09:42:14 -0800254#ifndef CONFIG_PREEMPT
Paul E. McKenney108aae22011-02-23 09:56:00 -0800255 WARN_ON_ONCE(1);
Mathieu Desnoyersfc2ecf72011-02-23 09:42:14 -0800256 return 0;
257#endif
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400258 if (rcu_preempt_depth() != 0 || preempt_count() != 0 ||
259 irqs_disabled()) {
Paul E. McKenney108aae22011-02-23 09:56:00 -0800260 WARN_ON_ONCE(1);
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400261 return 0;
262 }
263 rcu_barrier();
264 rcu_barrier_sched();
265 rcu_barrier_bh();
266 debug_object_free(head, &rcuhead_debug_descr);
267 return 1;
Mathieu Desnoyers551d55a2010-04-17 08:48:42 -0400268 default:
269 return 0;
270 }
271}
272
273/**
274 * init_rcu_head_on_stack() - initialize on-stack rcu_head for debugobjects
275 * @head: pointer to rcu_head structure to be initialized
276 *
277 * This function informs debugobjects of a new rcu_head structure that
278 * has been allocated as an auto variable on the stack. This function
279 * is not required for rcu_head structures that are statically defined or
280 * that are dynamically allocated on the heap. This function has no
281 * effect for !CONFIG_DEBUG_OBJECTS_RCU_HEAD kernel builds.
282 */
283void init_rcu_head_on_stack(struct rcu_head *head)
284{
285 debug_object_init_on_stack(head, &rcuhead_debug_descr);
286}
287EXPORT_SYMBOL_GPL(init_rcu_head_on_stack);
288
289/**
290 * destroy_rcu_head_on_stack() - destroy on-stack rcu_head for debugobjects
291 * @head: pointer to rcu_head structure to be initialized
292 *
293 * This function informs debugobjects that an on-stack rcu_head structure
294 * is about to go out of scope. As with init_rcu_head_on_stack(), this
295 * function is not required for rcu_head structures that are statically
296 * defined or that are dynamically allocated on the heap. Also as with
297 * init_rcu_head_on_stack(), this function has no effect for
298 * !CONFIG_DEBUG_OBJECTS_RCU_HEAD kernel builds.
299 */
300void destroy_rcu_head_on_stack(struct rcu_head *head)
301{
302 debug_object_free(head, &rcuhead_debug_descr);
303}
304EXPORT_SYMBOL_GPL(destroy_rcu_head_on_stack);
305
306struct debug_obj_descr rcuhead_debug_descr = {
307 .name = "rcu_head",
308 .fixup_init = rcuhead_fixup_init,
309 .fixup_activate = rcuhead_fixup_activate,
310 .fixup_free = rcuhead_fixup_free,
311};
312EXPORT_SYMBOL_GPL(rcuhead_debug_descr);
313#endif /* #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD */