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