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