1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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>
40#include <linux/atomic.h>
41#include <linux/bitops.h>
42#include <linux/percpu.h>
43#include <linux/notifier.h>
44#include <linux/cpu.h>
45#include <linux/mutex.h>
46#include <linux/export.h>
47#include <linux/hardirq.h>
48
49#define CREATE_TRACE_POINTS
50#include <trace/events/rcu.h>
51
52#include "rcu.h"
53
54#ifdef CONFIG_DEBUG_LOCK_ALLOC
55static struct lock_class_key rcu_lock_key;
56struct lockdep_map rcu_lock_map =
57 STATIC_LOCKDEP_MAP_INIT("rcu_read_lock", &rcu_lock_key);
58EXPORT_SYMBOL_GPL(rcu_lock_map);
59
60static struct lock_class_key rcu_bh_lock_key;
61struct lockdep_map rcu_bh_lock_map =
62 STATIC_LOCKDEP_MAP_INIT("rcu_read_lock_bh", &rcu_bh_lock_key);
63EXPORT_SYMBOL_GPL(rcu_bh_lock_map);
64
65static struct lock_class_key rcu_sched_lock_key;
66struct lockdep_map rcu_sched_lock_map =
67 STATIC_LOCKDEP_MAP_INIT("rcu_read_lock_sched", &rcu_sched_lock_key);
68EXPORT_SYMBOL_GPL(rcu_sched_lock_map);
69#endif
70
71#ifdef CONFIG_DEBUG_LOCK_ALLOC
72
73int debug_lockdep_rcu_enabled(void)
74{
75 return rcu_scheduler_active && debug_locks &&
76 current->lockdep_recursion == 0;
77}
78EXPORT_SYMBOL_GPL(debug_lockdep_rcu_enabled);
79
80
81
82
83
84
85
86
87
88
89
90
91
92int rcu_read_lock_bh_held(void)
93{
94 if (!debug_lockdep_rcu_enabled())
95 return 1;
96 if (rcu_is_cpu_idle())
97 return 0;
98 return in_softirq() || irqs_disabled();
99}
100EXPORT_SYMBOL_GPL(rcu_read_lock_bh_held);
101
102#endif
103
104struct rcu_synchronize {
105 struct rcu_head head;
106 struct completion completion;
107};
108
109
110
111
112
113static void wakeme_after_rcu(struct rcu_head *head)
114{
115 struct rcu_synchronize *rcu;
116
117 rcu = container_of(head, struct rcu_synchronize, head);
118 complete(&rcu->completion);
119}
120
121void wait_rcu_gp(call_rcu_func_t crf)
122{
123 struct rcu_synchronize rcu;
124
125 init_rcu_head_on_stack(&rcu.head);
126 init_completion(&rcu.completion);
127
128 crf(&rcu.head, wakeme_after_rcu);
129
130 wait_for_completion(&rcu.completion);
131 destroy_rcu_head_on_stack(&rcu.head);
132}
133EXPORT_SYMBOL_GPL(wait_rcu_gp);
134
135#ifdef CONFIG_PROVE_RCU
136
137
138
139int rcu_my_thread_group_empty(void)
140{
141 return thread_group_empty(current);
142}
143EXPORT_SYMBOL_GPL(rcu_my_thread_group_empty);
144#endif
145
146#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
147static inline void debug_init_rcu_head(struct rcu_head *head)
148{
149 debug_object_init(head, &rcuhead_debug_descr);
150}
151
152static inline void debug_rcu_head_free(struct rcu_head *head)
153{
154 debug_object_free(head, &rcuhead_debug_descr);
155}
156
157
158
159
160
161static int rcuhead_fixup_init(void *addr, enum debug_obj_state state)
162{
163 struct rcu_head *head = addr;
164
165 switch (state) {
166 case ODEBUG_STATE_ACTIVE:
167
168
169
170
171
172
173
174
175#ifndef CONFIG_PREEMPT
176 WARN_ON_ONCE(1);
177 return 0;
178#endif
179 if (rcu_preempt_depth() != 0 || preempt_count() != 0 ||
180 irqs_disabled()) {
181 WARN_ON_ONCE(1);
182 return 0;
183 }
184 rcu_barrier();
185 rcu_barrier_sched();
186 rcu_barrier_bh();
187 debug_object_init(head, &rcuhead_debug_descr);
188 return 1;
189 default:
190 return 0;
191 }
192}
193
194
195
196
197
198
199
200static int rcuhead_fixup_activate(void *addr, enum debug_obj_state state)
201{
202 struct rcu_head *head = addr;
203
204 switch (state) {
205
206 case ODEBUG_STATE_NOTAVAILABLE:
207
208
209
210
211 debug_object_init(head, &rcuhead_debug_descr);
212 debug_object_activate(head, &rcuhead_debug_descr);
213 return 0;
214
215 case ODEBUG_STATE_ACTIVE:
216
217
218
219
220
221
222
223
224#ifndef CONFIG_PREEMPT
225 WARN_ON_ONCE(1);
226 return 0;
227#endif
228 if (rcu_preempt_depth() != 0 || preempt_count() != 0 ||
229 irqs_disabled()) {
230 WARN_ON_ONCE(1);
231 return 0;
232 }
233 rcu_barrier();
234 rcu_barrier_sched();
235 rcu_barrier_bh();
236 debug_object_activate(head, &rcuhead_debug_descr);
237 return 1;
238 default:
239 return 0;
240 }
241}
242
243
244
245
246
247static int rcuhead_fixup_free(void *addr, enum debug_obj_state state)
248{
249 struct rcu_head *head = addr;
250
251 switch (state) {
252 case ODEBUG_STATE_ACTIVE:
253
254
255
256
257
258
259
260
261#ifndef CONFIG_PREEMPT
262 WARN_ON_ONCE(1);
263 return 0;
264#endif
265 if (rcu_preempt_depth() != 0 || preempt_count() != 0 ||
266 irqs_disabled()) {
267 WARN_ON_ONCE(1);
268 return 0;
269 }
270 rcu_barrier();
271 rcu_barrier_sched();
272 rcu_barrier_bh();
273 debug_object_free(head, &rcuhead_debug_descr);
274 return 1;
275 default:
276 return 0;
277 }
278}
279
280
281
282
283
284
285
286
287
288
289
290void init_rcu_head_on_stack(struct rcu_head *head)
291{
292 debug_object_init_on_stack(head, &rcuhead_debug_descr);
293}
294EXPORT_SYMBOL_GPL(init_rcu_head_on_stack);
295
296
297
298
299
300
301
302
303
304
305
306
307void destroy_rcu_head_on_stack(struct rcu_head *head)
308{
309 debug_object_free(head, &rcuhead_debug_descr);
310}
311EXPORT_SYMBOL_GPL(destroy_rcu_head_on_stack);
312
313struct debug_obj_descr rcuhead_debug_descr = {
314 .name = "rcu_head",
315 .fixup_init = rcuhead_fixup_init,
316 .fixup_activate = rcuhead_fixup_activate,
317 .fixup_free = rcuhead_fixup_free,
318};
319EXPORT_SYMBOL_GPL(rcuhead_debug_descr);
320#endif
321
322#if defined(CONFIG_TREE_RCU) || defined(CONFIG_TREE_PREEMPT_RCU) || defined(CONFIG_RCU_TRACE)
323void do_trace_rcu_torture_read(char *rcutorturename, struct rcu_head *rhp)
324{
325 trace_rcu_torture_read(rcutorturename, rhp);
326}
327EXPORT_SYMBOL_GPL(do_trace_rcu_torture_read);
328#else
329#define do_trace_rcu_torture_read(rcutorturename, rhp) do { } while (0)
330#endif
331