4 * Userspace RCU library, "bulletproof" version.
6 * Copyright (c) 2009 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.
38 #include "urcu/map/urcu-bp.h"
40 #include "urcu/static/urcu-bp.h"
41 /* Do not #define _LGPL_SOURCE to ensure we can emit the wrapper symbols */
45 #define MAP_ANONYMOUS MAP_ANON
50 #define MREMAP_MAYMOVE 1
51 #define MREMAP_FIXED 2
54 * mremap wrapper for non-Linux systems. Maps a RW, anonymous private mapping.
55 * This is not generic.
57 void *mremap(void *old_address
, size_t old_size
, size_t new_size
, int flags
)
61 assert(flags
& MREMAP_MAYMOVE
);
62 assert(!(flags
& MREMAP_FIXED
));
63 new_address
= mmap(old_address
, new_size
,
64 PROT_READ
| PROT_WRITE
,
65 MAP_ANONYMOUS
| MAP_PRIVATE
,
67 if (new_address
== MAP_FAILED
)
70 memcpy(new_address
, old_address
, old_size
);
71 munmap(old_address
, old_size
);
77 /* Sleep delay in us */
78 #define RCU_SLEEP_DELAY 1000
79 #define ARENA_INIT_ALLOC 16
81 void __attribute__((destructor
)) rcu_bp_exit(void);
83 static pthread_mutex_t rcu_gp_lock
= PTHREAD_MUTEX_INITIALIZER
;
86 unsigned int yield_active
;
87 unsigned int __thread rand_yield
;
91 * Global grace period counter.
92 * Contains the current RCU_GP_CTR_PHASE.
93 * Also has a RCU_GP_COUNT of 1, to accelerate the reader fast path.
94 * Written to only by writer with mutex taken. Read by both writer and readers.
96 long rcu_gp_ctr
= RCU_GP_COUNT
;
99 * Pointer to registry elements. Written to only by each individual reader. Read
100 * by both the reader and the writers.
102 struct rcu_reader __thread
*rcu_reader
;
104 static CDS_LIST_HEAD(registry
);
106 struct registry_arena
{
112 static struct registry_arena registry_arena
;
114 /* Saved fork signal mask, protected by rcu_gp_lock */
115 static sigset_t saved_fork_signal_mask
;
117 static void rcu_gc_registry(void);
119 static void mutex_lock(pthread_mutex_t
*mutex
)
123 #ifndef DISTRUST_SIGNALS_EXTREME
124 ret
= pthread_mutex_lock(mutex
);
126 perror("Error in pthread mutex lock");
129 #else /* #ifndef DISTRUST_SIGNALS_EXTREME */
130 while ((ret
= pthread_mutex_trylock(mutex
)) != 0) {
131 if (ret
!= EBUSY
&& ret
!= EINTR
) {
132 printf("ret = %d, errno = %d\n", ret
, errno
);
133 perror("Error in pthread mutex lock");
138 #endif /* #else #ifndef DISTRUST_SIGNALS_EXTREME */
141 static void mutex_unlock(pthread_mutex_t
*mutex
)
145 ret
= pthread_mutex_unlock(mutex
);
147 perror("Error in pthread mutex unlock");
152 void update_counter_and_wait(void)
154 CDS_LIST_HEAD(qsreaders
);
156 struct rcu_reader
*index
, *tmp
;
158 /* Switch parity: 0 -> 1, 1 -> 0 */
159 CMM_STORE_SHARED(rcu_gp_ctr
, rcu_gp_ctr
^ RCU_GP_CTR_PHASE
);
162 * Must commit qparity update to memory before waiting for other parity
163 * quiescent state. Failure to do so could result in the writer waiting
164 * forever while new readers are always accessing data (no progress).
165 * Ensured by CMM_STORE_SHARED and CMM_LOAD_SHARED.
169 * Adding a cmm_smp_mb() which is _not_ formally required, but makes the
170 * model easier to understand. It does not have a big performance impact
171 * anyway, given this is the write-side.
176 * Wait for each thread rcu_reader.ctr count to become 0.
180 cds_list_for_each_entry_safe(index
, tmp
, ®istry
, node
) {
181 if (!rcu_old_gp_ongoing(&index
->ctr
))
182 cds_list_move(&index
->node
, &qsreaders
);
185 if (cds_list_empty(®istry
)) {
188 if (wait_loops
== RCU_QS_ACTIVE_ATTEMPTS
)
189 usleep(RCU_SLEEP_DELAY
);
194 /* put back the reader list in the registry */
195 cds_list_splice(&qsreaders
, ®istry
);
198 void synchronize_rcu(void)
200 sigset_t newmask
, oldmask
;
203 ret
= sigemptyset(&newmask
);
205 ret
= pthread_sigmask(SIG_SETMASK
, &newmask
, &oldmask
);
208 mutex_lock(&rcu_gp_lock
);
210 if (cds_list_empty(®istry
))
213 /* All threads should read qparity before accessing data structure
214 * where new ptr points to. */
215 /* Write new ptr before changing the qparity */
218 /* Remove old registry elements */
222 * Wait for previous parity to be empty of readers.
224 update_counter_and_wait(); /* 0 -> 1, wait readers in parity 0 */
227 * Adding a cmm_smp_mb() which is _not_ formally required, but makes the
228 * model easier to understand. It does not have a big performance impact
229 * anyway, given this is the write-side.
234 * Wait for previous parity to be empty of readers.
236 update_counter_and_wait(); /* 1 -> 0, wait readers in parity 1 */
239 * Finish waiting for reader threads before letting the old ptr being
244 mutex_unlock(&rcu_gp_lock
);
245 ret
= pthread_sigmask(SIG_SETMASK
, &oldmask
, NULL
);
250 * library wrappers to be used by non-LGPL compatible source code.
253 void rcu_read_lock(void)
258 void rcu_read_unlock(void)
266 static void resize_arena(struct registry_arena
*arena
, size_t len
)
271 new_arena
= mmap(arena
->p
, len
,
272 PROT_READ
| PROT_WRITE
,
273 MAP_ANONYMOUS
| MAP_PRIVATE
,
276 new_arena
= mremap(arena
->p
, arena
->len
,
277 len
, MREMAP_MAYMOVE
);
278 assert(new_arena
!= MAP_FAILED
);
281 * re-used the same region ?
283 if (new_arena
== arena
->p
)
286 bzero(new_arena
+ arena
->len
, len
- arena
->len
);
287 arena
->p
= new_arena
;
290 /* Called with signals off and mutex locked */
291 static void add_thread(void)
293 struct rcu_reader
*rcu_reader_reg
;
295 if (registry_arena
.len
296 < registry_arena
.used
+ sizeof(struct rcu_reader
))
297 resize_arena(®istry_arena
,
298 max(registry_arena
.len
<< 1, ARENA_INIT_ALLOC
));
302 for (rcu_reader_reg
= registry_arena
.p
;
303 (void *)rcu_reader_reg
< registry_arena
.p
+ registry_arena
.len
;
305 if (!rcu_reader_reg
->alloc
)
308 rcu_reader_reg
->alloc
= 1;
309 registry_arena
.used
+= sizeof(struct rcu_reader
);
311 /* Add to registry */
312 rcu_reader_reg
->tid
= pthread_self();
313 assert(rcu_reader_reg
->ctr
== 0);
314 cds_list_add(&rcu_reader_reg
->node
, ®istry
);
315 rcu_reader
= rcu_reader_reg
;
318 /* Called with signals off and mutex locked */
319 static void rcu_gc_registry(void)
321 struct rcu_reader
*rcu_reader_reg
;
325 for (rcu_reader_reg
= registry_arena
.p
;
326 (void *)rcu_reader_reg
< registry_arena
.p
+ registry_arena
.len
;
328 if (!rcu_reader_reg
->alloc
)
330 tid
= rcu_reader_reg
->tid
;
331 ret
= pthread_kill(tid
, 0);
332 assert(ret
!= EINVAL
);
334 cds_list_del(&rcu_reader_reg
->node
);
335 rcu_reader_reg
->ctr
= 0;
336 rcu_reader_reg
->alloc
= 0;
337 registry_arena
.used
-= sizeof(struct rcu_reader
);
342 /* Disable signals, take mutex, add to registry */
343 void rcu_bp_register(void)
345 sigset_t newmask
, oldmask
;
348 ret
= sigemptyset(&newmask
);
350 ret
= pthread_sigmask(SIG_SETMASK
, &newmask
, &oldmask
);
354 * Check if a signal concurrently registered our thread since
355 * the check in rcu_read_lock(). */
359 mutex_lock(&rcu_gp_lock
);
361 mutex_unlock(&rcu_gp_lock
);
363 ret
= pthread_sigmask(SIG_SETMASK
, &oldmask
, NULL
);
369 munmap(registry_arena
.p
, registry_arena
.len
);
373 * Holding the rcu_gp_lock across fork will make sure we fork() don't race with
374 * a concurrent thread executing with this same lock held. This ensures that the
375 * registry is in a coherent state in the child.
377 void rcu_bp_before_fork(void)
379 sigset_t newmask
, oldmask
;
382 ret
= sigemptyset(&newmask
);
384 ret
= pthread_sigmask(SIG_SETMASK
, &newmask
, &oldmask
);
386 mutex_lock(&rcu_gp_lock
);
387 saved_fork_signal_mask
= oldmask
;
390 void rcu_bp_after_fork_parent(void)
395 oldmask
= saved_fork_signal_mask
;
396 mutex_unlock(&rcu_gp_lock
);
397 ret
= pthread_sigmask(SIG_SETMASK
, &oldmask
, NULL
);
401 void rcu_bp_after_fork_child(void)
407 oldmask
= saved_fork_signal_mask
;
408 mutex_unlock(&rcu_gp_lock
);
409 ret
= pthread_sigmask(SIG_SETMASK
, &oldmask
, NULL
);
413 #include "urcu-call-rcu-impl.h"
414 #include "urcu-defer-impl.h"