at v6.2-rc6 8.8 kB view raw
1/* SPDX-License-Identifier: GPL-2.0+ */ 2/* 3 * Sleepable Read-Copy Update mechanism for mutual exclusion 4 * 5 * Copyright (C) IBM Corporation, 2006 6 * Copyright (C) Fujitsu, 2012 7 * 8 * Author: Paul McKenney <paulmck@linux.ibm.com> 9 * Lai Jiangshan <laijs@cn.fujitsu.com> 10 * 11 * For detailed explanation of Read-Copy Update mechanism see - 12 * Documentation/RCU/ *.txt 13 * 14 */ 15 16#ifndef _LINUX_SRCU_H 17#define _LINUX_SRCU_H 18 19#include <linux/mutex.h> 20#include <linux/rcupdate.h> 21#include <linux/workqueue.h> 22#include <linux/rcu_segcblist.h> 23 24struct srcu_struct; 25 26#ifdef CONFIG_DEBUG_LOCK_ALLOC 27 28int __init_srcu_struct(struct srcu_struct *ssp, const char *name, 29 struct lock_class_key *key); 30 31#define init_srcu_struct(ssp) \ 32({ \ 33 static struct lock_class_key __srcu_key; \ 34 \ 35 __init_srcu_struct((ssp), #ssp, &__srcu_key); \ 36}) 37 38#define __SRCU_DEP_MAP_INIT(srcu_name) .dep_map = { .name = #srcu_name }, 39#else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */ 40 41int init_srcu_struct(struct srcu_struct *ssp); 42 43#define __SRCU_DEP_MAP_INIT(srcu_name) 44#endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */ 45 46#ifdef CONFIG_TINY_SRCU 47#include <linux/srcutiny.h> 48#elif defined(CONFIG_TREE_SRCU) 49#include <linux/srcutree.h> 50#else 51#error "Unknown SRCU implementation specified to kernel configuration" 52#endif 53 54void call_srcu(struct srcu_struct *ssp, struct rcu_head *head, 55 void (*func)(struct rcu_head *head)); 56void cleanup_srcu_struct(struct srcu_struct *ssp); 57int __srcu_read_lock(struct srcu_struct *ssp) __acquires(ssp); 58void __srcu_read_unlock(struct srcu_struct *ssp, int idx) __releases(ssp); 59void synchronize_srcu(struct srcu_struct *ssp); 60unsigned long get_state_synchronize_srcu(struct srcu_struct *ssp); 61unsigned long start_poll_synchronize_srcu(struct srcu_struct *ssp); 62bool poll_state_synchronize_srcu(struct srcu_struct *ssp, unsigned long cookie); 63 64#ifdef CONFIG_NEED_SRCU_NMI_SAFE 65int __srcu_read_lock_nmisafe(struct srcu_struct *ssp) __acquires(ssp); 66void __srcu_read_unlock_nmisafe(struct srcu_struct *ssp, int idx) __releases(ssp); 67#else 68static inline int __srcu_read_lock_nmisafe(struct srcu_struct *ssp) 69{ 70 return __srcu_read_lock(ssp); 71} 72static inline void __srcu_read_unlock_nmisafe(struct srcu_struct *ssp, int idx) 73{ 74 __srcu_read_unlock(ssp, idx); 75} 76#endif /* CONFIG_NEED_SRCU_NMI_SAFE */ 77 78void srcu_init(void); 79 80#ifdef CONFIG_DEBUG_LOCK_ALLOC 81 82/** 83 * srcu_read_lock_held - might we be in SRCU read-side critical section? 84 * @ssp: The srcu_struct structure to check 85 * 86 * If CONFIG_DEBUG_LOCK_ALLOC is selected, returns nonzero iff in an SRCU 87 * read-side critical section. In absence of CONFIG_DEBUG_LOCK_ALLOC, 88 * this assumes we are in an SRCU read-side critical section unless it can 89 * prove otherwise. 90 * 91 * Checks debug_lockdep_rcu_enabled() to prevent false positives during boot 92 * and while lockdep is disabled. 93 * 94 * Note that SRCU is based on its own statemachine and it doesn't 95 * relies on normal RCU, it can be called from the CPU which 96 * is in the idle loop from an RCU point of view or offline. 97 */ 98static inline int srcu_read_lock_held(const struct srcu_struct *ssp) 99{ 100 if (!debug_lockdep_rcu_enabled()) 101 return 1; 102 return lock_is_held(&ssp->dep_map); 103} 104 105#else /* #ifdef CONFIG_DEBUG_LOCK_ALLOC */ 106 107static inline int srcu_read_lock_held(const struct srcu_struct *ssp) 108{ 109 return 1; 110} 111 112#endif /* #else #ifdef CONFIG_DEBUG_LOCK_ALLOC */ 113 114#define SRCU_NMI_UNKNOWN 0x0 115#define SRCU_NMI_UNSAFE 0x1 116#define SRCU_NMI_SAFE 0x2 117 118#if defined(CONFIG_PROVE_RCU) && defined(CONFIG_TREE_SRCU) 119void srcu_check_nmi_safety(struct srcu_struct *ssp, bool nmi_safe); 120#else 121static inline void srcu_check_nmi_safety(struct srcu_struct *ssp, 122 bool nmi_safe) { } 123#endif 124 125 126/** 127 * srcu_dereference_check - fetch SRCU-protected pointer for later dereferencing 128 * @p: the pointer to fetch and protect for later dereferencing 129 * @ssp: pointer to the srcu_struct, which is used to check that we 130 * really are in an SRCU read-side critical section. 131 * @c: condition to check for update-side use 132 * 133 * If PROVE_RCU is enabled, invoking this outside of an RCU read-side 134 * critical section will result in an RCU-lockdep splat, unless @c evaluates 135 * to 1. The @c argument will normally be a logical expression containing 136 * lockdep_is_held() calls. 137 */ 138#define srcu_dereference_check(p, ssp, c) \ 139 __rcu_dereference_check((p), __UNIQUE_ID(rcu), \ 140 (c) || srcu_read_lock_held(ssp), __rcu) 141 142/** 143 * srcu_dereference - fetch SRCU-protected pointer for later dereferencing 144 * @p: the pointer to fetch and protect for later dereferencing 145 * @ssp: pointer to the srcu_struct, which is used to check that we 146 * really are in an SRCU read-side critical section. 147 * 148 * Makes rcu_dereference_check() do the dirty work. If PROVE_RCU 149 * is enabled, invoking this outside of an RCU read-side critical 150 * section will result in an RCU-lockdep splat. 151 */ 152#define srcu_dereference(p, ssp) srcu_dereference_check((p), (ssp), 0) 153 154/** 155 * srcu_dereference_notrace - no tracing and no lockdep calls from here 156 * @p: the pointer to fetch and protect for later dereferencing 157 * @ssp: pointer to the srcu_struct, which is used to check that we 158 * really are in an SRCU read-side critical section. 159 */ 160#define srcu_dereference_notrace(p, ssp) srcu_dereference_check((p), (ssp), 1) 161 162/** 163 * srcu_read_lock - register a new reader for an SRCU-protected structure. 164 * @ssp: srcu_struct in which to register the new reader. 165 * 166 * Enter an SRCU read-side critical section. Note that SRCU read-side 167 * critical sections may be nested. However, it is illegal to 168 * call anything that waits on an SRCU grace period for the same 169 * srcu_struct, whether directly or indirectly. Please note that 170 * one way to indirectly wait on an SRCU grace period is to acquire 171 * a mutex that is held elsewhere while calling synchronize_srcu() or 172 * synchronize_srcu_expedited(). 173 * 174 * Note that srcu_read_lock() and the matching srcu_read_unlock() must 175 * occur in the same context, for example, it is illegal to invoke 176 * srcu_read_unlock() in an irq handler if the matching srcu_read_lock() 177 * was invoked in process context. 178 */ 179static inline int srcu_read_lock(struct srcu_struct *ssp) __acquires(ssp) 180{ 181 int retval; 182 183 srcu_check_nmi_safety(ssp, false); 184 retval = __srcu_read_lock(ssp); 185 rcu_lock_acquire(&(ssp)->dep_map); 186 return retval; 187} 188 189/** 190 * srcu_read_lock_nmisafe - register a new reader for an SRCU-protected structure. 191 * @ssp: srcu_struct in which to register the new reader. 192 * 193 * Enter an SRCU read-side critical section, but in an NMI-safe manner. 194 * See srcu_read_lock() for more information. 195 */ 196static inline int srcu_read_lock_nmisafe(struct srcu_struct *ssp) __acquires(ssp) 197{ 198 int retval; 199 200 srcu_check_nmi_safety(ssp, true); 201 retval = __srcu_read_lock_nmisafe(ssp); 202 rcu_lock_acquire(&(ssp)->dep_map); 203 return retval; 204} 205 206/* Used by tracing, cannot be traced and cannot invoke lockdep. */ 207static inline notrace int 208srcu_read_lock_notrace(struct srcu_struct *ssp) __acquires(ssp) 209{ 210 int retval; 211 212 srcu_check_nmi_safety(ssp, false); 213 retval = __srcu_read_lock(ssp); 214 return retval; 215} 216 217/** 218 * srcu_read_unlock - unregister a old reader from an SRCU-protected structure. 219 * @ssp: srcu_struct in which to unregister the old reader. 220 * @idx: return value from corresponding srcu_read_lock(). 221 * 222 * Exit an SRCU read-side critical section. 223 */ 224static inline void srcu_read_unlock(struct srcu_struct *ssp, int idx) 225 __releases(ssp) 226{ 227 WARN_ON_ONCE(idx & ~0x1); 228 srcu_check_nmi_safety(ssp, false); 229 rcu_lock_release(&(ssp)->dep_map); 230 __srcu_read_unlock(ssp, idx); 231} 232 233/** 234 * srcu_read_unlock_nmisafe - unregister a old reader from an SRCU-protected structure. 235 * @ssp: srcu_struct in which to unregister the old reader. 236 * @idx: return value from corresponding srcu_read_lock(). 237 * 238 * Exit an SRCU read-side critical section, but in an NMI-safe manner. 239 */ 240static inline void srcu_read_unlock_nmisafe(struct srcu_struct *ssp, int idx) 241 __releases(ssp) 242{ 243 WARN_ON_ONCE(idx & ~0x1); 244 srcu_check_nmi_safety(ssp, true); 245 rcu_lock_release(&(ssp)->dep_map); 246 __srcu_read_unlock_nmisafe(ssp, idx); 247} 248 249/* Used by tracing, cannot be traced and cannot call lockdep. */ 250static inline notrace void 251srcu_read_unlock_notrace(struct srcu_struct *ssp, int idx) __releases(ssp) 252{ 253 srcu_check_nmi_safety(ssp, false); 254 __srcu_read_unlock(ssp, idx); 255} 256 257/** 258 * smp_mb__after_srcu_read_unlock - ensure full ordering after srcu_read_unlock 259 * 260 * Converts the preceding srcu_read_unlock into a two-way memory barrier. 261 * 262 * Call this after srcu_read_unlock, to guarantee that all memory operations 263 * that occur after smp_mb__after_srcu_read_unlock will appear to happen after 264 * the preceding srcu_read_unlock. 265 */ 266static inline void smp_mb__after_srcu_read_unlock(void) 267{ 268 /* __srcu_read_unlock has smp_mb() internally so nothing to do here. */ 269} 270 271#endif