blob: 0d5fed02df16a43b8aa9b26ef379f4eb1386e62a [file] [log] [blame]
Paul E. McKenney8c366db2019-01-17 10:39:22 -08001/* SPDX-License-Identifier: GPL-2.0+ */
Paul E. McKenney621934e2006-10-04 02:17:02 -07002/*
3 * Sleepable Read-Copy Update mechanism for mutual exclusion
4 *
Paul E. McKenney621934e2006-10-04 02:17:02 -07005 * Copyright (C) IBM Corporation, 2006
Lai Jiangshan4e87b2d2012-10-13 01:14:14 +08006 * Copyright (C) Fujitsu, 2012
Paul E. McKenney621934e2006-10-04 02:17:02 -07007 *
Paul E. McKenney8c366db2019-01-17 10:39:22 -08008 * Author: Paul McKenney <paulmck@linux.ibm.com>
Lai Jiangshan4e87b2d2012-10-13 01:14:14 +08009 * Lai Jiangshan <laijs@cn.fujitsu.com>
Paul E. McKenney621934e2006-10-04 02:17:02 -070010 *
11 * For detailed explanation of Read-Copy Update mechanism see -
Paul E. McKenney8660b7d2017-03-13 16:48:18 -070012 * Documentation/RCU/ *.txt
Paul E. McKenney621934e2006-10-04 02:17:02 -070013 *
14 */
15
Alan Sterneabc0692006-10-04 02:17:04 -070016#ifndef _LINUX_SRCU_H
17#define _LINUX_SRCU_H
18
Paul E. McKenneyd14aada2010-04-19 22:24:22 -070019#include <linux/mutex.h>
Paul E. McKenneyff195cb2011-10-07 18:22:04 +020020#include <linux/rcupdate.h>
Lai Jiangshan931ea9d2012-03-19 16:12:13 +080021#include <linux/workqueue.h>
Paul E. McKenney8660b7d2017-03-13 16:48:18 -070022#include <linux/rcu_segcblist.h>
Paul E. McKenneyd14aada2010-04-19 22:24:22 -070023
Paul E. McKenneyd8be8172017-03-25 09:59:38 -070024struct srcu_struct;
Paul E. McKenneyc2a8ec02017-03-10 15:31:55 -080025
Paul E. McKenney632ee202010-02-22 17:04:45 -080026#ifdef CONFIG_DEBUG_LOCK_ALLOC
27
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070028int __init_srcu_struct(struct srcu_struct *ssp, const char *name,
Paul E. McKenney632ee202010-02-22 17:04:45 -080029 struct lock_class_key *key);
30
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070031#define init_srcu_struct(ssp) \
Paul E. McKenney632ee202010-02-22 17:04:45 -080032({ \
33 static struct lock_class_key __srcu_key; \
34 \
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070035 __init_srcu_struct((ssp), #ssp, &__srcu_key); \
Paul E. McKenney632ee202010-02-22 17:04:45 -080036})
37
Lai Jiangshan55c6659a2012-10-13 01:14:16 +080038#define __SRCU_DEP_MAP_INIT(srcu_name) .dep_map = { .name = #srcu_name },
Paul E. McKenney632ee202010-02-22 17:04:45 -080039#else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
40
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070041int init_srcu_struct(struct srcu_struct *ssp);
Paul E. McKenney632ee202010-02-22 17:04:45 -080042
Lai Jiangshan55c6659a2012-10-13 01:14:16 +080043#define __SRCU_DEP_MAP_INIT(srcu_name)
Paul E. McKenney632ee202010-02-22 17:04:45 -080044#endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */
45
Paul E. McKenneyd8be8172017-03-25 09:59:38 -070046#ifdef CONFIG_TINY_SRCU
47#include <linux/srcutiny.h>
48#elif defined(CONFIG_TREE_SRCU)
49#include <linux/srcutree.h>
Paul E. McKenney07f6e642017-04-28 13:53:04 -070050#elif defined(CONFIG_SRCU)
Paul E. McKenneyd8be8172017-03-25 09:59:38 -070051#error "Unknown SRCU implementation specified to kernel configuration"
Paul E. McKenney07f6e642017-04-28 13:53:04 -070052#else
Paul E. McKenney07f6e642017-04-28 13:53:04 -070053/* Dummy definition for things like notifiers. Actual use gets link error. */
54struct srcu_struct { };
Paul E. McKenneyd8be8172017-03-25 09:59:38 -070055#endif
Lai Jiangshan55c6659a2012-10-13 01:14:16 +080056
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070057void call_srcu(struct srcu_struct *ssp, struct rcu_head *head,
Lai Jiangshan931ea9d2012-03-19 16:12:13 +080058 void (*func)(struct rcu_head *head));
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070059void _cleanup_srcu_struct(struct srcu_struct *ssp, bool quiesced);
60int __srcu_read_lock(struct srcu_struct *ssp) __acquires(ssp);
61void __srcu_read_unlock(struct srcu_struct *ssp, int idx) __releases(ssp);
62void synchronize_srcu(struct srcu_struct *ssp);
Alan Sterneabc0692006-10-04 02:17:04 -070063
Paul E. McKenneyf7194ac2018-04-05 17:19:17 -070064/**
65 * cleanup_srcu_struct - deconstruct a sleep-RCU structure
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070066 * @ssp: structure to clean up.
Paul E. McKenneyf7194ac2018-04-05 17:19:17 -070067 *
68 * Must invoke this after you are finished using a given srcu_struct that
69 * was initialized via init_srcu_struct(), else you leak memory.
70 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070071static inline void cleanup_srcu_struct(struct srcu_struct *ssp)
Paul E. McKenneyf7194ac2018-04-05 17:19:17 -070072{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070073 _cleanup_srcu_struct(ssp, false);
Paul E. McKenneyf7194ac2018-04-05 17:19:17 -070074}
75
76/**
77 * cleanup_srcu_struct_quiesced - deconstruct a quiesced sleep-RCU structure
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070078 * @ssp: structure to clean up.
Paul E. McKenneyf7194ac2018-04-05 17:19:17 -070079 *
80 * Must invoke this after you are finished using a given srcu_struct that
81 * was initialized via init_srcu_struct(), else you leak memory. Also,
82 * all grace-period processing must have completed.
83 *
84 * "Completed" means that the last synchronize_srcu() and
85 * synchronize_srcu_expedited() calls must have returned before the call
86 * to cleanup_srcu_struct_quiesced(). It also means that the callback
87 * from the last call_srcu() must have been invoked before the call to
88 * cleanup_srcu_struct_quiesced(), but you can use srcu_barrier() to help
89 * with this last. Violating these rules will get you a WARN_ON() splat
90 * (with high probability, anyway), and will also cause the srcu_struct
91 * to be leaked.
92 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070093static inline void cleanup_srcu_struct_quiesced(struct srcu_struct *ssp)
Paul E. McKenneyf7194ac2018-04-05 17:19:17 -070094{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -070095 _cleanup_srcu_struct(ssp, true);
Paul E. McKenneyf7194ac2018-04-05 17:19:17 -070096}
97
Paul E. McKenney632ee202010-02-22 17:04:45 -080098#ifdef CONFIG_DEBUG_LOCK_ALLOC
99
100/**
101 * srcu_read_lock_held - might we be in SRCU read-side critical section?
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700102 * @ssp: The srcu_struct structure to check
Paul E. McKenney632ee202010-02-22 17:04:45 -0800103 *
Paul E. McKenneyd20200b2010-03-30 10:52:21 -0700104 * If CONFIG_DEBUG_LOCK_ALLOC is selected, returns nonzero iff in an SRCU
105 * read-side critical section. In absence of CONFIG_DEBUG_LOCK_ALLOC,
Paul E. McKenney632ee202010-02-22 17:04:45 -0800106 * this assumes we are in an SRCU read-side critical section unless it can
107 * prove otherwise.
Paul E. McKenneyff195cb2011-10-07 18:22:04 +0200108 *
Paul E. McKenney867f2362011-10-07 18:22:05 +0200109 * Checks debug_lockdep_rcu_enabled() to prevent false positives during boot
110 * and while lockdep is disabled.
111 *
Lai Jiangshan511a0862012-11-29 16:46:06 +0800112 * Note that SRCU is based on its own statemachine and it doesn't
113 * relies on normal RCU, it can be called from the CPU which
114 * is in the idle loop from an RCU point of view or offline.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800115 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700116static inline int srcu_read_lock_held(const struct srcu_struct *ssp)
Paul E. McKenney632ee202010-02-22 17:04:45 -0800117{
Paul E. McKenney867f2362011-10-07 18:22:05 +0200118 if (!debug_lockdep_rcu_enabled())
Paul E. McKenneyff195cb2011-10-07 18:22:04 +0200119 return 1;
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700120 return lock_is_held(&ssp->dep_map);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800121}
122
123#else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */
124
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700125static inline int srcu_read_lock_held(const struct srcu_struct *ssp)
Paul E. McKenney632ee202010-02-22 17:04:45 -0800126{
127 return 1;
128}
129
130#endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */
131
132/**
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700133 * srcu_dereference_check - fetch SRCU-protected pointer for later dereferencing
134 * @p: the pointer to fetch and protect for later dereferencing
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700135 * @ssp: pointer to the srcu_struct, which is used to check that we
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700136 * really are in an SRCU read-side critical section.
137 * @c: condition to check for update-side use
Paul E. McKenneyc26d34a2010-02-22 17:04:46 -0800138 *
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700139 * If PROVE_RCU is enabled, invoking this outside of an RCU read-side
140 * critical section will result in an RCU-lockdep splat, unless @c evaluates
141 * to 1. The @c argument will normally be a logical expression containing
142 * lockdep_is_held() calls.
Paul E. McKenneyc26d34a2010-02-22 17:04:46 -0800143 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700144#define srcu_dereference_check(p, ssp, c) \
145 __rcu_dereference_check((p), (c) || srcu_read_lock_held(ssp), __rcu)
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700146
147/**
148 * srcu_dereference - fetch SRCU-protected pointer for later dereferencing
149 * @p: the pointer to fetch and protect for later dereferencing
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700150 * @ssp: pointer to the srcu_struct, which is used to check that we
Paul E. McKenneyca5ecdd2010-04-28 14:39:09 -0700151 * really are in an SRCU read-side critical section.
152 *
153 * Makes rcu_dereference_check() do the dirty work. If PROVE_RCU
154 * is enabled, invoking this outside of an RCU read-side critical
155 * section will result in an RCU-lockdep splat.
156 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700157#define srcu_dereference(p, ssp) srcu_dereference_check((p), (ssp), 0)
Paul E. McKenneyc26d34a2010-02-22 17:04:46 -0800158
159/**
Joel Fernandes (Google)0b764a62018-06-28 11:21:44 -0700160 * srcu_dereference_notrace - no tracing and no lockdep calls from here
Randy Dunlapf3e763c2018-09-03 12:45:45 -0700161 * @p: the pointer to fetch and protect for later dereferencing
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700162 * @ssp: pointer to the srcu_struct, which is used to check that we
Randy Dunlapf3e763c2018-09-03 12:45:45 -0700163 * really are in an SRCU read-side critical section.
Joel Fernandes (Google)0b764a62018-06-28 11:21:44 -0700164 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700165#define srcu_dereference_notrace(p, ssp) srcu_dereference_check((p), (ssp), 1)
Joel Fernandes (Google)0b764a62018-06-28 11:21:44 -0700166
167/**
Paul E. McKenney632ee202010-02-22 17:04:45 -0800168 * srcu_read_lock - register a new reader for an SRCU-protected structure.
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700169 * @ssp: srcu_struct in which to register the new reader.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800170 *
171 * Enter an SRCU read-side critical section. Note that SRCU read-side
Paul E. McKenney73d4da42010-08-16 10:50:54 -0700172 * critical sections may be nested. However, it is illegal to
173 * call anything that waits on an SRCU grace period for the same
174 * srcu_struct, whether directly or indirectly. Please note that
175 * one way to indirectly wait on an SRCU grace period is to acquire
176 * a mutex that is held elsewhere while calling synchronize_srcu() or
177 * synchronize_srcu_expedited().
Paul E. McKenney3842a082011-11-28 10:42:42 -0800178 *
179 * Note that srcu_read_lock() and the matching srcu_read_unlock() must
180 * occur in the same context, for example, it is illegal to invoke
181 * srcu_read_unlock() in an irq handler if the matching srcu_read_lock()
182 * was invoked in process context.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800183 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700184static inline int srcu_read_lock(struct srcu_struct *ssp) __acquires(ssp)
Paul E. McKenney632ee202010-02-22 17:04:45 -0800185{
Paul E. McKenney49f59032015-09-01 00:42:57 -0700186 int retval;
Paul E. McKenney632ee202010-02-22 17:04:45 -0800187
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700188 retval = __srcu_read_lock(ssp);
189 rcu_lock_acquire(&(ssp)->dep_map);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800190 return retval;
191}
192
Paul McKenney1f45a4d2018-06-28 11:21:43 -0700193/* Used by tracing, cannot be traced and cannot invoke lockdep. */
194static inline notrace int
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700195srcu_read_lock_notrace(struct srcu_struct *ssp) __acquires(ssp)
Paul McKenney1f45a4d2018-06-28 11:21:43 -0700196{
197 int retval;
198
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700199 retval = __srcu_read_lock(ssp);
Paul McKenney1f45a4d2018-06-28 11:21:43 -0700200 return retval;
201}
202
Paul E. McKenney632ee202010-02-22 17:04:45 -0800203/**
204 * srcu_read_unlock - unregister a old reader from an SRCU-protected structure.
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700205 * @ssp: srcu_struct in which to unregister the old reader.
Paul E. McKenney632ee202010-02-22 17:04:45 -0800206 * @idx: return value from corresponding srcu_read_lock().
207 *
208 * Exit an SRCU read-side critical section.
209 */
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700210static inline void srcu_read_unlock(struct srcu_struct *ssp, int idx)
211 __releases(ssp)
Paul E. McKenney632ee202010-02-22 17:04:45 -0800212{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700213 rcu_lock_release(&(ssp)->dep_map);
214 __srcu_read_unlock(ssp, idx);
Paul E. McKenney632ee202010-02-22 17:04:45 -0800215}
216
Paul McKenney1f45a4d2018-06-28 11:21:43 -0700217/* Used by tracing, cannot be traced and cannot call lockdep. */
218static inline notrace void
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700219srcu_read_unlock_notrace(struct srcu_struct *ssp, int idx) __releases(ssp)
Paul McKenney1f45a4d2018-06-28 11:21:43 -0700220{
Paul E. McKenneyaacb5d92018-10-28 10:32:51 -0700221 __srcu_read_unlock(ssp, idx);
Paul McKenney1f45a4d2018-06-28 11:21:43 -0700222}
223
Michael S. Tsirkince332f62013-11-04 22:36:17 +0200224/**
225 * smp_mb__after_srcu_read_unlock - ensure full ordering after srcu_read_unlock
226 *
227 * Converts the preceding srcu_read_unlock into a two-way memory barrier.
228 *
229 * Call this after srcu_read_unlock, to guarantee that all memory operations
230 * that occur after smp_mb__after_srcu_read_unlock will appear to happen after
231 * the preceding srcu_read_unlock.
232 */
233static inline void smp_mb__after_srcu_read_unlock(void)
234{
235 /* __srcu_read_unlock has smp_mb() internally so nothing to do here. */
236}
237
Alan Sterneabc0692006-10-04 02:17:04 -0700238#endif