4 * Userspace RCU library
6 * Copyright (c) 2009 Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
7 * Copyright (c) 2009 Paul E. McKenney, IBM Corporation.
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 * IBM's contributions to this file may be relicensed under LGPLv2 or later.
36 #include "urcu-static.h"
37 /* Do not #define _LGPL_SOURCE to ensure we can emit the wrapper symbols */
42 int has_sys_membarrier
;
44 void __attribute__((constructor
)) rcu_init(void);
56 void __attribute__((constructor
)) rcu_init(void);
57 void __attribute__((destructor
)) rcu_exit(void);
60 static pthread_mutex_t rcu_gp_lock
= PTHREAD_MUTEX_INITIALIZER
;
65 * Global grace period counter.
66 * Contains the current RCU_GP_CTR_PHASE.
67 * Also has a RCU_GP_COUNT of 1, to accelerate the reader fast path.
68 * Written to only by writer with mutex taken. Read by both writer and readers.
70 long rcu_gp_ctr
= RCU_GP_COUNT
;
73 * Written to only by each individual reader. Read by both the reader and the
76 struct rcu_reader __thread rcu_reader
;
79 unsigned int yield_active
;
80 unsigned int __thread rand_yield
;
83 static LIST_HEAD(registry
);
85 static void mutex_lock(pthread_mutex_t
*mutex
)
89 #ifndef DISTRUST_SIGNALS_EXTREME
90 ret
= pthread_mutex_lock(mutex
);
92 perror("Error in pthread mutex lock");
95 #else /* #ifndef DISTRUST_SIGNALS_EXTREME */
96 while ((ret
= pthread_mutex_trylock(mutex
)) != 0) {
97 if (ret
!= EBUSY
&& ret
!= EINTR
) {
98 printf("ret = %d, errno = %d\n", ret
, errno
);
99 perror("Error in pthread mutex lock");
102 if (rcu_reader
.need_mb
) {
104 rcu_reader
.need_mb
= 0;
109 #endif /* #else #ifndef DISTRUST_SIGNALS_EXTREME */
112 static void mutex_unlock(pthread_mutex_t
*mutex
)
116 ret
= pthread_mutex_unlock(mutex
);
118 perror("Error in pthread mutex unlock");
123 #ifdef RCU_MEMBARRIER
124 static void smp_mb_master(int group
)
126 if (likely(has_sys_membarrier
))
127 membarrier(MEMBARRIER_EXPEDITED
);
134 static void smp_mb_master(int group
)
141 static void force_mb_all_readers(void)
143 struct rcu_reader
*index
;
146 * Ask for each threads to execute a smp_mb() so we can consider the
147 * compiler barriers around rcu read lock as real memory barriers.
149 if (list_empty(®istry
))
152 * pthread_kill has a smp_mb(). But beware, we assume it performs
153 * a cache flush on architectures with non-coherent cache. Let's play
154 * safe and don't assume anything : we use smp_mc() to make sure the
155 * cache flush is enforced.
157 list_for_each_entry(index
, ®istry
, head
) {
159 smp_mc(); /* write need_mb before sending the signal */
160 pthread_kill(index
->tid
, SIGRCU
);
163 * Wait for sighandler (and thus mb()) to execute on every thread.
165 * Note that the pthread_kill() will never be executed on systems
166 * that correctly deliver signals in a timely manner. However, it
167 * is not uncommon for kernels to have bugs that can result in
168 * lost or unduly delayed signals.
170 * If you are seeing the below pthread_kill() executing much at
171 * all, we suggest testing the underlying kernel and filing the
172 * relevant bug report. For Linux kernels, we recommend getting
173 * the Linux Test Project (LTP).
175 list_for_each_entry(index
, ®istry
, head
) {
176 while (index
->need_mb
) {
177 pthread_kill(index
->tid
, SIGRCU
);
181 smp_mb(); /* read ->need_mb before ending the barrier */
184 static void smp_mb_master(int group
)
186 force_mb_all_readers();
188 #endif /* #ifdef RCU_SIGNAL */
191 * synchronize_rcu() waiting. Single thread.
193 static void wait_gp(void)
195 /* Read reader_gp before read futex */
196 smp_mb_master(RCU_MB_GROUP
);
197 if (uatomic_read(&gp_futex
) == -1)
198 futex_async(&gp_futex
, FUTEX_WAIT
, -1,
202 void update_counter_and_wait(void)
204 LIST_HEAD(qsreaders
);
206 struct rcu_reader
*index
, *tmp
;
208 /* Switch parity: 0 -> 1, 1 -> 0 */
209 STORE_SHARED(rcu_gp_ctr
, rcu_gp_ctr
^ RCU_GP_CTR_PHASE
);
212 * Must commit qparity update to memory before waiting for other parity
213 * quiescent state. Failure to do so could result in the writer waiting
214 * forever while new readers are always accessing data (no progress).
215 * Ensured by STORE_SHARED and LOAD_SHARED.
219 * Adding a smp_mb() which is _not_ formally required, but makes the
220 * model easier to understand. It does not have a big performance impact
221 * anyway, given this is the write-side.
226 * Wait for each thread rcu_reader.ctr count to become 0.
230 if (wait_loops
== RCU_QS_ACTIVE_ATTEMPTS
) {
231 uatomic_dec(&gp_futex
);
232 /* Write futex before read reader_gp */
233 smp_mb_master(RCU_MB_GROUP
);
236 list_for_each_entry_safe(index
, tmp
, ®istry
, head
) {
237 if (!rcu_old_gp_ongoing(&index
->ctr
))
238 list_move(&index
->head
, &qsreaders
);
241 #ifndef HAS_INCOHERENT_CACHES
242 if (list_empty(®istry
)) {
243 if (wait_loops
== RCU_QS_ACTIVE_ATTEMPTS
) {
244 /* Read reader_gp before write futex */
245 smp_mb_master(RCU_MB_GROUP
);
246 uatomic_set(&gp_futex
, 0);
250 if (wait_loops
== RCU_QS_ACTIVE_ATTEMPTS
)
255 #else /* #ifndef HAS_INCOHERENT_CACHES */
257 * BUSY-LOOP. Force the reader thread to commit its
258 * rcu_reader.ctr update to memory if we wait for too long.
260 if (list_empty(®istry
)) {
261 if (wait_loops
== RCU_QS_ACTIVE_ATTEMPTS
) {
262 /* Read reader_gp before write futex */
263 smp_mb_master(RCU_MB_GROUP
);
264 uatomic_set(&gp_futex
, 0);
268 switch (wait_loops
) {
269 case RCU_QS_ACTIVE_ATTEMPTS
:
271 break; /* only escape switch */
272 case KICK_READER_LOOPS
:
273 smp_mb_master(RCU_MB_GROUP
);
275 break; /* only escape switch */
280 #endif /* #else #ifndef HAS_INCOHERENT_CACHES */
282 /* put back the reader list in the registry */
283 list_splice(&qsreaders
, ®istry
);
286 void synchronize_rcu(void)
288 mutex_lock(&rcu_gp_lock
);
290 if (list_empty(®istry
))
293 /* All threads should read qparity before accessing data structure
294 * where new ptr points to. Must be done within rcu_gp_lock because it
295 * iterates on reader threads.*/
296 /* Write new ptr before changing the qparity */
297 smp_mb_master(RCU_MB_GROUP
);
300 * Wait for previous parity to be empty of readers.
302 update_counter_and_wait(); /* 0 -> 1, wait readers in parity 0 */
305 * Must finish waiting for quiescent state for parity 0 before
306 * committing qparity update to memory. Failure to do so could result in
307 * the writer waiting forever while new readers are always accessing
308 * data (no progress).
309 * Ensured by STORE_SHARED and LOAD_SHARED.
313 * Adding a smp_mb() which is _not_ formally required, but makes the
314 * model easier to understand. It does not have a big performance impact
315 * anyway, given this is the write-side.
320 * Wait for previous parity to be empty of readers.
322 update_counter_and_wait(); /* 1 -> 0, wait readers in parity 1 */
324 /* Finish waiting for reader threads before letting the old ptr being
325 * freed. Must be done within rcu_gp_lock because it iterates on reader
327 smp_mb_master(RCU_MB_GROUP
);
329 mutex_unlock(&rcu_gp_lock
);
333 * library wrappers to be used by non-LGPL compatible source code.
336 void rcu_read_lock(void)
341 void rcu_read_unlock(void)
346 void rcu_register_thread(void)
348 rcu_reader
.tid
= pthread_self();
349 assert(rcu_reader
.need_mb
== 0);
350 assert(rcu_reader
.ctr
== 0);
352 mutex_lock(&rcu_gp_lock
);
353 rcu_init(); /* In case gcc does not support constructor attribute */
354 list_add(&rcu_reader
.head
, ®istry
);
355 mutex_unlock(&rcu_gp_lock
);
358 void rcu_unregister_thread(void)
360 mutex_lock(&rcu_gp_lock
);
361 list_del(&rcu_reader
.head
);
362 mutex_unlock(&rcu_gp_lock
);
365 #ifdef RCU_MEMBARRIER
371 if (!membarrier(MEMBARRIER_EXPEDITED
| MEMBARRIER_QUERY
))
372 has_sys_membarrier
= 1;
377 static void sigrcu_handler(int signo
, siginfo_t
*siginfo
, void *context
)
380 * Executing this smp_mb() is the only purpose of this signal handler.
381 * It punctually promotes barrier() into smp_mb() on every thread it is
385 rcu_reader
.need_mb
= 0;
390 * rcu_init constructor. Called when the library is linked, but also when
391 * reader threads are calling rcu_register_thread().
392 * Should only be called by a single thread at a given time. This is ensured by
393 * holing the rcu_gp_lock from rcu_register_thread() or by running at library
394 * load time, which should not be executed by multiple threads nor concurrently
395 * with rcu_register_thread() anyway.
399 struct sigaction act
;
406 act
.sa_sigaction
= sigrcu_handler
;
407 act
.sa_flags
= SA_SIGINFO
| SA_RESTART
;
408 sigemptyset(&act
.sa_mask
);
409 ret
= sigaction(SIGRCU
, &act
, NULL
);
411 perror("Error in sigaction");
418 struct sigaction act
;
421 ret
= sigaction(SIGRCU
, NULL
, &act
);
423 perror("Error in sigaction");
426 assert(act
.sa_sigaction
== sigrcu_handler
);
427 assert(list_empty(®istry
));
429 #endif /* #ifdef RCU_SIGNAL */