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_PREEMPT_RCU
55
56
57
58
59
60
61void __rcu_read_lock(void)
62{
63 current->rcu_read_lock_nesting++;
64 barrier();
65}
66EXPORT_SYMBOL_GPL(__rcu_read_lock);
67
68
69
70
71
72
73
74
75void __rcu_read_unlock(void)
76{
77 struct task_struct *t = current;
78
79 if (t->rcu_read_lock_nesting != 1) {
80 --t->rcu_read_lock_nesting;
81 } else {
82 barrier();
83 t->rcu_read_lock_nesting = INT_MIN;
84 barrier();
85 if (unlikely(ACCESS_ONCE(t->rcu_read_unlock_special)))
86 rcu_read_unlock_special(t);
87 barrier();
88 t->rcu_read_lock_nesting = 0;
89 }
90#ifdef CONFIG_PROVE_LOCKING
91 {
92 int rrln = ACCESS_ONCE(t->rcu_read_lock_nesting);
93
94 WARN_ON_ONCE(rrln < 0 && rrln > INT_MIN / 2);
95 }
96#endif
97}
98EXPORT_SYMBOL_GPL(__rcu_read_unlock);
99
100
101
102
103
104
105
106void exit_rcu(void)
107{
108 struct task_struct *t = current;
109
110 if (likely(list_empty(¤t->rcu_node_entry)))
111 return;
112 t->rcu_read_lock_nesting = 1;
113 barrier();
114 t->rcu_read_unlock_special = RCU_READ_UNLOCK_BLOCKED;
115 __rcu_read_unlock();
116}
117
118#else
119
120void exit_rcu(void)
121{
122}
123
124#endif
125
126#ifdef CONFIG_DEBUG_LOCK_ALLOC
127static struct lock_class_key rcu_lock_key;
128struct lockdep_map rcu_lock_map =
129 STATIC_LOCKDEP_MAP_INIT("rcu_read_lock", &rcu_lock_key);
130EXPORT_SYMBOL_GPL(rcu_lock_map);
131
132static struct lock_class_key rcu_bh_lock_key;
133struct lockdep_map rcu_bh_lock_map =
134 STATIC_LOCKDEP_MAP_INIT("rcu_read_lock_bh", &rcu_bh_lock_key);
135EXPORT_SYMBOL_GPL(rcu_bh_lock_map);
136
137static struct lock_class_key rcu_sched_lock_key;
138struct lockdep_map rcu_sched_lock_map =
139 STATIC_LOCKDEP_MAP_INIT("rcu_read_lock_sched", &rcu_sched_lock_key);
140EXPORT_SYMBOL_GPL(rcu_sched_lock_map);
141#endif
142
143#ifdef CONFIG_DEBUG_LOCK_ALLOC
144
145int debug_lockdep_rcu_enabled(void)
146{
147 return rcu_scheduler_active && debug_locks &&
148 current->lockdep_recursion == 0;
149}
150EXPORT_SYMBOL_GPL(debug_lockdep_rcu_enabled);
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167int rcu_read_lock_bh_held(void)
168{
169 if (!debug_lockdep_rcu_enabled())
170 return 1;
171 if (rcu_is_cpu_idle())
172 return 0;
173 if (!rcu_lockdep_current_cpu_online())
174 return 0;
175 return in_softirq() || irqs_disabled();
176}
177EXPORT_SYMBOL_GPL(rcu_read_lock_bh_held);
178
179#endif
180
181struct rcu_synchronize {
182 struct rcu_head head;
183 struct completion completion;
184};
185
186
187
188
189
190static void wakeme_after_rcu(struct rcu_head *head)
191{
192 struct rcu_synchronize *rcu;
193
194 rcu = container_of(head, struct rcu_synchronize, head);
195 complete(&rcu->completion);
196}
197
198void wait_rcu_gp(call_rcu_func_t crf)
199{
200 struct rcu_synchronize rcu;
201
202 init_rcu_head_on_stack(&rcu.head);
203 init_completion(&rcu.completion);
204
205 crf(&rcu.head, wakeme_after_rcu);
206
207 wait_for_completion(&rcu.completion);
208 destroy_rcu_head_on_stack(&rcu.head);
209}
210EXPORT_SYMBOL_GPL(wait_rcu_gp);
211
212#ifdef CONFIG_PROVE_RCU
213
214
215
216int rcu_my_thread_group_empty(void)
217{
218 return thread_group_empty(current);
219}
220EXPORT_SYMBOL_GPL(rcu_my_thread_group_empty);
221#endif
222
223#ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
224static inline void debug_init_rcu_head(struct rcu_head *head)
225{
226 debug_object_init(head, &rcuhead_debug_descr);
227}
228
229static inline void debug_rcu_head_free(struct rcu_head *head)
230{
231 debug_object_free(head, &rcuhead_debug_descr);
232}
233
234
235
236
237
238static int rcuhead_fixup_init(void *addr, enum debug_obj_state state)
239{
240 struct rcu_head *head = addr;
241
242 switch (state) {
243 case ODEBUG_STATE_ACTIVE:
244
245
246
247
248
249
250
251
252#ifndef CONFIG_PREEMPT
253 WARN_ON_ONCE(1);
254 return 0;
255#endif
256 if (rcu_preempt_depth() != 0 || preempt_count() != 0 ||
257 irqs_disabled()) {
258 WARN_ON_ONCE(1);
259 return 0;
260 }
261 rcu_barrier();
262 rcu_barrier_sched();
263 rcu_barrier_bh();
264 debug_object_init(head, &rcuhead_debug_descr);
265 return 1;
266 default:
267 return 0;
268 }
269}
270
271
272
273
274
275
276
277static int rcuhead_fixup_activate(void *addr, enum debug_obj_state state)
278{
279 struct rcu_head *head = addr;
280
281 switch (state) {
282
283 case ODEBUG_STATE_NOTAVAILABLE:
284
285
286
287
288 debug_object_init(head, &rcuhead_debug_descr);
289 debug_object_activate(head, &rcuhead_debug_descr);
290 return 0;
291
292 case ODEBUG_STATE_ACTIVE:
293
294
295
296
297
298
299
300
301#ifndef CONFIG_PREEMPT
302 WARN_ON_ONCE(1);
303 return 0;
304#endif
305 if (rcu_preempt_depth() != 0 || preempt_count() != 0 ||
306 irqs_disabled()) {
307 WARN_ON_ONCE(1);
308 return 0;
309 }
310 rcu_barrier();
311 rcu_barrier_sched();
312 rcu_barrier_bh();
313 debug_object_activate(head, &rcuhead_debug_descr);
314 return 1;
315 default:
316 return 0;
317 }
318}
319
320
321
322
323
324static int rcuhead_fixup_free(void *addr, enum debug_obj_state state)
325{
326 struct rcu_head *head = addr;
327
328 switch (state) {
329 case ODEBUG_STATE_ACTIVE:
330
331
332
333
334
335
336
337
338#ifndef CONFIG_PREEMPT
339 WARN_ON_ONCE(1);
340 return 0;
341#endif
342 if (rcu_preempt_depth() != 0 || preempt_count() != 0 ||
343 irqs_disabled()) {
344 WARN_ON_ONCE(1);
345 return 0;
346 }
347 rcu_barrier();
348 rcu_barrier_sched();
349 rcu_barrier_bh();
350 debug_object_free(head, &rcuhead_debug_descr);
351 return 1;
352 default:
353 return 0;
354 }
355}
356
357
358
359
360
361
362
363
364
365
366
367void init_rcu_head_on_stack(struct rcu_head *head)
368{
369 debug_object_init_on_stack(head, &rcuhead_debug_descr);
370}
371EXPORT_SYMBOL_GPL(init_rcu_head_on_stack);
372
373
374
375
376
377
378
379
380
381
382
383
384void destroy_rcu_head_on_stack(struct rcu_head *head)
385{
386 debug_object_free(head, &rcuhead_debug_descr);
387}
388EXPORT_SYMBOL_GPL(destroy_rcu_head_on_stack);
389
390struct debug_obj_descr rcuhead_debug_descr = {
391 .name = "rcu_head",
392 .fixup_init = rcuhead_fixup_init,
393 .fixup_activate = rcuhead_fixup_activate,
394 .fixup_free = rcuhead_fixup_free,
395};
396EXPORT_SYMBOL_GPL(rcuhead_debug_descr);
397#endif
398
399#if defined(CONFIG_TREE_RCU) || defined(CONFIG_TREE_PREEMPT_RCU) || defined(CONFIG_RCU_TRACE)
400void do_trace_rcu_torture_read(char *rcutorturename, struct rcu_head *rhp)
401{
402 trace_rcu_torture_read(rcutorturename, rhp);
403}
404EXPORT_SYMBOL_GPL(do_trace_rcu_torture_read);
405#else
406#define do_trace_rcu_torture_read(rcutorturename, rhp) do { } while (0)
407#endif
408