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