Version 0.8.11
[userspace-rcu.git] / urcu.c
... / ...
CommitLineData
1/*
2 * urcu.c
3 *
4 * Userspace RCU library
5 *
6 * Copyright (c) 2009 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 * Copyright (c) 2009 Paul E. McKenney, IBM Corporation.
8 *
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.
13 *
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.
18 *
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
22 *
23 * IBM's contributions to this file may be relicensed under LGPLv2 or later.
24 */
25
26#define _BSD_SOURCE
27#define _GNU_SOURCE
28#define _LGPL_SOURCE
29#define _DEFAULT_SOURCE
30#include <stdio.h>
31#include <pthread.h>
32#include <signal.h>
33#include <assert.h>
34#include <stdlib.h>
35#include <stdint.h>
36#include <string.h>
37#include <errno.h>
38#include <poll.h>
39
40#include "urcu/wfcqueue.h"
41#include "urcu/map/urcu.h"
42#include "urcu/static/urcu.h"
43#include "urcu-pointer.h"
44#include "urcu/tls-compat.h"
45
46#include "urcu-die.h"
47#include "urcu-wait.h"
48
49/* Do not #define _LGPL_SOURCE to ensure we can emit the wrapper symbols */
50#undef _LGPL_SOURCE
51#include "urcu.h"
52#define _LGPL_SOURCE
53
54/*
55 * If a reader is really non-cooperative and refuses to commit its
56 * rcu_active_readers count to memory (there is no barrier in the reader
57 * per-se), kick it after 10 loops waiting for it.
58 */
59#define KICK_READER_LOOPS 10
60
61/*
62 * Active attempts to check for reader Q.S. before calling futex().
63 */
64#define RCU_QS_ACTIVE_ATTEMPTS 100
65
66/*
67 * The ABI of sys_membarrier changed after its original implementation.
68 * Disable it for now. Use RCU_MB flavor instead.
69 */
70#define membarrier(...) -ENOSYS
71
72#define MEMBARRIER_EXPEDITED (1 << 0)
73#define MEMBARRIER_DELAYED (1 << 1)
74#define MEMBARRIER_QUERY (1 << 16)
75
76#ifdef RCU_MEMBARRIER
77static int init_done;
78int rcu_has_sys_membarrier;
79
80void __attribute__((constructor)) rcu_init(void);
81#endif
82
83#ifdef RCU_MB
84void rcu_init(void)
85{
86}
87#endif
88
89#ifdef RCU_SIGNAL
90static int init_done;
91
92void __attribute__((constructor)) rcu_init(void);
93void __attribute__((destructor)) rcu_exit(void);
94#endif
95
96/*
97 * rcu_gp_lock ensures mutual exclusion between threads calling
98 * synchronize_rcu().
99 */
100static pthread_mutex_t rcu_gp_lock = PTHREAD_MUTEX_INITIALIZER;
101/*
102 * rcu_registry_lock ensures mutual exclusion between threads
103 * registering and unregistering themselves to/from the registry, and
104 * with threads reading that registry from synchronize_rcu(). However,
105 * this lock is not held all the way through the completion of awaiting
106 * for the grace period. It is sporadically released between iterations
107 * on the registry.
108 * rcu_registry_lock may nest inside rcu_gp_lock.
109 */
110static pthread_mutex_t rcu_registry_lock = PTHREAD_MUTEX_INITIALIZER;
111struct rcu_gp rcu_gp = { .ctr = RCU_GP_COUNT };
112
113/*
114 * Written to only by each individual reader. Read by both the reader and the
115 * writers.
116 */
117__DEFINE_URCU_TLS_GLOBAL(struct rcu_reader, rcu_reader);
118
119static CDS_LIST_HEAD(registry);
120
121/*
122 * Queue keeping threads awaiting to wait for a grace period. Contains
123 * struct gp_waiters_thread objects.
124 */
125static DEFINE_URCU_WAIT_QUEUE(gp_waiters);
126
127static void mutex_lock(pthread_mutex_t *mutex)
128{
129 int ret;
130
131#ifndef DISTRUST_SIGNALS_EXTREME
132 ret = pthread_mutex_lock(mutex);
133 if (ret)
134 urcu_die(ret);
135#else /* #ifndef DISTRUST_SIGNALS_EXTREME */
136 while ((ret = pthread_mutex_trylock(mutex)) != 0) {
137 if (ret != EBUSY && ret != EINTR)
138 urcu_die(ret);
139 if (CMM_LOAD_SHARED(URCU_TLS(rcu_reader).need_mb)) {
140 cmm_smp_mb();
141 _CMM_STORE_SHARED(URCU_TLS(rcu_reader).need_mb, 0);
142 cmm_smp_mb();
143 }
144 poll(NULL,0,10);
145 }
146#endif /* #else #ifndef DISTRUST_SIGNALS_EXTREME */
147}
148
149static void mutex_unlock(pthread_mutex_t *mutex)
150{
151 int ret;
152
153 ret = pthread_mutex_unlock(mutex);
154 if (ret)
155 urcu_die(ret);
156}
157
158#ifdef RCU_MEMBARRIER
159static void smp_mb_master(int group)
160{
161 if (caa_likely(rcu_has_sys_membarrier))
162 (void) membarrier(MEMBARRIER_EXPEDITED);
163 else
164 cmm_smp_mb();
165}
166#endif
167
168#ifdef RCU_MB
169static void smp_mb_master(int group)
170{
171 cmm_smp_mb();
172}
173#endif
174
175#ifdef RCU_SIGNAL
176static void force_mb_all_readers(void)
177{
178 struct rcu_reader *index;
179
180 /*
181 * Ask for each threads to execute a cmm_smp_mb() so we can consider the
182 * compiler barriers around rcu read lock as real memory barriers.
183 */
184 if (cds_list_empty(&registry))
185 return;
186 /*
187 * pthread_kill has a cmm_smp_mb(). But beware, we assume it performs
188 * a cache flush on architectures with non-coherent cache. Let's play
189 * safe and don't assume anything : we use cmm_smp_mc() to make sure the
190 * cache flush is enforced.
191 */
192 cds_list_for_each_entry(index, &registry, node) {
193 CMM_STORE_SHARED(index->need_mb, 1);
194 pthread_kill(index->tid, SIGRCU);
195 }
196 /*
197 * Wait for sighandler (and thus mb()) to execute on every thread.
198 *
199 * Note that the pthread_kill() will never be executed on systems
200 * that correctly deliver signals in a timely manner. However, it
201 * is not uncommon for kernels to have bugs that can result in
202 * lost or unduly delayed signals.
203 *
204 * If you are seeing the below pthread_kill() executing much at
205 * all, we suggest testing the underlying kernel and filing the
206 * relevant bug report. For Linux kernels, we recommend getting
207 * the Linux Test Project (LTP).
208 */
209 cds_list_for_each_entry(index, &registry, node) {
210 while (CMM_LOAD_SHARED(index->need_mb)) {
211 pthread_kill(index->tid, SIGRCU);
212 poll(NULL, 0, 1);
213 }
214 }
215 cmm_smp_mb(); /* read ->need_mb before ending the barrier */
216}
217
218static void smp_mb_master(int group)
219{
220 force_mb_all_readers();
221}
222#endif /* #ifdef RCU_SIGNAL */
223
224/*
225 * synchronize_rcu() waiting. Single thread.
226 * Always called with rcu_registry lock held. Releases this lock and
227 * grabs it again. Holds the lock when it returns.
228 */
229static void wait_gp(void)
230{
231 /*
232 * Read reader_gp before read futex. smp_mb_master() needs to
233 * be called with the rcu registry lock held in RCU_SIGNAL
234 * flavor.
235 */
236 smp_mb_master(RCU_MB_GROUP);
237 /* Temporarily unlock the registry lock. */
238 mutex_unlock(&rcu_registry_lock);
239 if (uatomic_read(&rcu_gp.futex) != -1)
240 goto end;
241 while (futex_async(&rcu_gp.futex, FUTEX_WAIT, -1,
242 NULL, NULL, 0)) {
243 switch (errno) {
244 case EWOULDBLOCK:
245 /* Value already changed. */
246 goto end;
247 case EINTR:
248 /* Retry if interrupted by signal. */
249 break; /* Get out of switch. */
250 default:
251 /* Unexpected error. */
252 urcu_die(errno);
253 }
254 }
255end:
256 /*
257 * Re-lock the registry lock before the next loop.
258 */
259 mutex_lock(&rcu_registry_lock);
260}
261
262/*
263 * Always called with rcu_registry lock held. Releases this lock between
264 * iterations and grabs it again. Holds the lock when it returns.
265 */
266static void wait_for_readers(struct cds_list_head *input_readers,
267 struct cds_list_head *cur_snap_readers,
268 struct cds_list_head *qsreaders)
269{
270 unsigned int wait_loops = 0;
271 struct rcu_reader *index, *tmp;
272#ifdef HAS_INCOHERENT_CACHES
273 unsigned int wait_gp_loops = 0;
274#endif /* HAS_INCOHERENT_CACHES */
275
276 /*
277 * Wait for each thread URCU_TLS(rcu_reader).ctr to either
278 * indicate quiescence (not nested), or observe the current
279 * rcu_gp.ctr value.
280 */
281 for (;;) {
282 if (wait_loops < RCU_QS_ACTIVE_ATTEMPTS)
283 wait_loops++;
284 if (wait_loops >= RCU_QS_ACTIVE_ATTEMPTS) {
285 uatomic_dec(&rcu_gp.futex);
286 /* Write futex before read reader_gp */
287 smp_mb_master(RCU_MB_GROUP);
288 }
289
290 cds_list_for_each_entry_safe(index, tmp, input_readers, node) {
291 switch (rcu_reader_state(&index->ctr)) {
292 case RCU_READER_ACTIVE_CURRENT:
293 if (cur_snap_readers) {
294 cds_list_move(&index->node,
295 cur_snap_readers);
296 break;
297 }
298 /* Fall-through */
299 case RCU_READER_INACTIVE:
300 cds_list_move(&index->node, qsreaders);
301 break;
302 case RCU_READER_ACTIVE_OLD:
303 /*
304 * Old snapshot. Leaving node in
305 * input_readers will make us busy-loop
306 * until the snapshot becomes current or
307 * the reader becomes inactive.
308 */
309 break;
310 }
311 }
312
313#ifndef HAS_INCOHERENT_CACHES
314 if (cds_list_empty(input_readers)) {
315 if (wait_loops >= RCU_QS_ACTIVE_ATTEMPTS) {
316 /* Read reader_gp before write futex */
317 smp_mb_master(RCU_MB_GROUP);
318 uatomic_set(&rcu_gp.futex, 0);
319 }
320 break;
321 } else {
322 if (wait_loops >= RCU_QS_ACTIVE_ATTEMPTS) {
323 /* wait_gp unlocks/locks registry lock. */
324 wait_gp();
325 } else {
326 /* Temporarily unlock the registry lock. */
327 mutex_unlock(&rcu_registry_lock);
328 caa_cpu_relax();
329 /*
330 * Re-lock the registry lock before the
331 * next loop.
332 */
333 mutex_lock(&rcu_registry_lock);
334 }
335 }
336#else /* #ifndef HAS_INCOHERENT_CACHES */
337 /*
338 * BUSY-LOOP. Force the reader thread to commit its
339 * URCU_TLS(rcu_reader).ctr update to memory if we wait
340 * for too long.
341 */
342 if (cds_list_empty(input_readers)) {
343 if (wait_loops >= RCU_QS_ACTIVE_ATTEMPTS) {
344 /* Read reader_gp before write futex */
345 smp_mb_master(RCU_MB_GROUP);
346 uatomic_set(&rcu_gp.futex, 0);
347 }
348 break;
349 } else {
350 if (wait_gp_loops == KICK_READER_LOOPS) {
351 smp_mb_master(RCU_MB_GROUP);
352 wait_gp_loops = 0;
353 }
354 if (wait_loops >= RCU_QS_ACTIVE_ATTEMPTS) {
355 /* wait_gp unlocks/locks registry lock. */
356 wait_gp();
357 wait_gp_loops++;
358 } else {
359 /* Temporarily unlock the registry lock. */
360 mutex_unlock(&rcu_registry_lock);
361 caa_cpu_relax();
362 /*
363 * Re-lock the registry lock before the
364 * next loop.
365 */
366 mutex_lock(&rcu_registry_lock);
367 }
368 }
369#endif /* #else #ifndef HAS_INCOHERENT_CACHES */
370 }
371}
372
373void synchronize_rcu(void)
374{
375 CDS_LIST_HEAD(cur_snap_readers);
376 CDS_LIST_HEAD(qsreaders);
377 DEFINE_URCU_WAIT_NODE(wait, URCU_WAIT_WAITING);
378 struct urcu_waiters waiters;
379
380 /*
381 * Add ourself to gp_waiters queue of threads awaiting to wait
382 * for a grace period. Proceed to perform the grace period only
383 * if we are the first thread added into the queue.
384 * The implicit memory barrier before urcu_wait_add()
385 * orders prior memory accesses of threads put into the wait
386 * queue before their insertion into the wait queue.
387 */
388 if (urcu_wait_add(&gp_waiters, &wait) != 0) {
389 /* Not first in queue: will be awakened by another thread. */
390 urcu_adaptative_busy_wait(&wait);
391 /* Order following memory accesses after grace period. */
392 cmm_smp_mb();
393 return;
394 }
395 /* We won't need to wake ourself up */
396 urcu_wait_set_state(&wait, URCU_WAIT_RUNNING);
397
398 mutex_lock(&rcu_gp_lock);
399
400 /*
401 * Move all waiters into our local queue.
402 */
403 urcu_move_waiters(&waiters, &gp_waiters);
404
405 mutex_lock(&rcu_registry_lock);
406
407 if (cds_list_empty(&registry))
408 goto out;
409
410 /*
411 * All threads should read qparity before accessing data structure
412 * where new ptr points to. Must be done within rcu_registry_lock
413 * because it iterates on reader threads.
414 */
415 /* Write new ptr before changing the qparity */
416 smp_mb_master(RCU_MB_GROUP);
417
418 /*
419 * Wait for readers to observe original parity or be quiescent.
420 * wait_for_readers() can release and grab again rcu_registry_lock
421 * interally.
422 */
423 wait_for_readers(&registry, &cur_snap_readers, &qsreaders);
424
425 /*
426 * Must finish waiting for quiescent state for original parity before
427 * committing next rcu_gp.ctr update to memory. Failure to do so could
428 * result in the writer waiting forever while new readers are always
429 * accessing data (no progress). Enforce compiler-order of load
430 * URCU_TLS(rcu_reader).ctr before store to rcu_gp.ctr.
431 */
432 cmm_barrier();
433
434 /*
435 * Adding a cmm_smp_mb() which is _not_ formally required, but makes the
436 * model easier to understand. It does not have a big performance impact
437 * anyway, given this is the write-side.
438 */
439 cmm_smp_mb();
440
441 /* Switch parity: 0 -> 1, 1 -> 0 */
442 CMM_STORE_SHARED(rcu_gp.ctr, rcu_gp.ctr ^ RCU_GP_CTR_PHASE);
443
444 /*
445 * Must commit rcu_gp.ctr update to memory before waiting for quiescent
446 * state. Failure to do so could result in the writer waiting forever
447 * while new readers are always accessing data (no progress). Enforce
448 * compiler-order of store to rcu_gp.ctr before load rcu_reader ctr.
449 */
450 cmm_barrier();
451
452 /*
453 *
454 * Adding a cmm_smp_mb() which is _not_ formally required, but makes the
455 * model easier to understand. It does not have a big performance impact
456 * anyway, given this is the write-side.
457 */
458 cmm_smp_mb();
459
460 /*
461 * Wait for readers to observe new parity or be quiescent.
462 * wait_for_readers() can release and grab again rcu_registry_lock
463 * interally.
464 */
465 wait_for_readers(&cur_snap_readers, NULL, &qsreaders);
466
467 /*
468 * Put quiescent reader list back into registry.
469 */
470 cds_list_splice(&qsreaders, &registry);
471
472 /*
473 * Finish waiting for reader threads before letting the old ptr
474 * being freed. Must be done within rcu_registry_lock because it
475 * iterates on reader threads.
476 */
477 smp_mb_master(RCU_MB_GROUP);
478out:
479 mutex_unlock(&rcu_registry_lock);
480 mutex_unlock(&rcu_gp_lock);
481
482 /*
483 * Wakeup waiters only after we have completed the grace period
484 * and have ensured the memory barriers at the end of the grace
485 * period have been issued.
486 */
487 urcu_wake_all_waiters(&waiters);
488}
489
490/*
491 * library wrappers to be used by non-LGPL compatible source code.
492 */
493
494void rcu_read_lock(void)
495{
496 _rcu_read_lock();
497}
498
499void rcu_read_unlock(void)
500{
501 _rcu_read_unlock();
502}
503
504int rcu_read_ongoing(void)
505{
506 return _rcu_read_ongoing();
507}
508
509void rcu_register_thread(void)
510{
511 URCU_TLS(rcu_reader).tid = pthread_self();
512 assert(URCU_TLS(rcu_reader).need_mb == 0);
513 assert(!(URCU_TLS(rcu_reader).ctr & RCU_GP_CTR_NEST_MASK));
514
515 mutex_lock(&rcu_registry_lock);
516 rcu_init(); /* In case gcc does not support constructor attribute */
517 cds_list_add(&URCU_TLS(rcu_reader).node, &registry);
518 mutex_unlock(&rcu_registry_lock);
519}
520
521void rcu_unregister_thread(void)
522{
523 mutex_lock(&rcu_registry_lock);
524 cds_list_del(&URCU_TLS(rcu_reader).node);
525 mutex_unlock(&rcu_registry_lock);
526}
527
528#ifdef RCU_MEMBARRIER
529void rcu_init(void)
530{
531 if (init_done)
532 return;
533 init_done = 1;
534 if (!membarrier(MEMBARRIER_EXPEDITED | MEMBARRIER_QUERY))
535 rcu_has_sys_membarrier = 1;
536}
537#endif
538
539#ifdef RCU_SIGNAL
540static void sigrcu_handler(int signo, siginfo_t *siginfo, void *context)
541{
542 /*
543 * Executing this cmm_smp_mb() is the only purpose of this signal handler.
544 * It punctually promotes cmm_barrier() into cmm_smp_mb() on every thread it is
545 * executed on.
546 */
547 cmm_smp_mb();
548 _CMM_STORE_SHARED(URCU_TLS(rcu_reader).need_mb, 0);
549 cmm_smp_mb();
550}
551
552/*
553 * rcu_init constructor. Called when the library is linked, but also when
554 * reader threads are calling rcu_register_thread().
555 * Should only be called by a single thread at a given time. This is ensured by
556 * holing the rcu_registry_lock from rcu_register_thread() or by running
557 * at library load time, which should not be executed by multiple
558 * threads nor concurrently with rcu_register_thread() anyway.
559 */
560void rcu_init(void)
561{
562 struct sigaction act;
563 int ret;
564
565 if (init_done)
566 return;
567 init_done = 1;
568
569 act.sa_sigaction = sigrcu_handler;
570 act.sa_flags = SA_SIGINFO | SA_RESTART;
571 sigemptyset(&act.sa_mask);
572 ret = sigaction(SIGRCU, &act, NULL);
573 if (ret)
574 urcu_die(errno);
575}
576
577void rcu_exit(void)
578{
579 /*
580 * Don't unregister the SIGRCU signal handler anymore, because
581 * call_rcu threads could still be using it shortly before the
582 * application exits.
583 * Assertion disabled because call_rcu threads are now rcu
584 * readers, and left running at exit.
585 * assert(cds_list_empty(&registry));
586 */
587}
588
589#endif /* #ifdef RCU_SIGNAL */
590
591DEFINE_RCU_FLAVOR(rcu_flavor);
592
593#include "urcu-call-rcu-impl.h"
594#include "urcu-defer-impl.h"
This page took 0.024001 seconds and 4 git commands to generate.