urcu: Add extra "engineering safety factor" memory barrier in update_counter_and_wait()
[urcu.git] / urcu.c
CommitLineData
b257a10b
MD
1/*
2 * urcu.c
3 *
4 * Userspace RCU library
5 *
af02d47e
MD
6 * Copyright (c) 2009 Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
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
fdf01eed 26#define _BSD_SOURCE
27b012e2
MD
27#include <stdio.h>
28#include <pthread.h>
29#include <signal.h>
30#include <assert.h>
f69f195a
MD
31#include <stdlib.h>
32#include <string.h>
09a9f986 33#include <errno.h>
e8043c1b 34#include <poll.h>
27b012e2 35
121a5d44
MD
36#include "urcu-static.h"
37/* Do not #define _LGPL_SOURCE to ensure we can emit the wrapper symbols */
27b012e2
MD
38#include "urcu.h"
39
fdf01eed 40#ifdef RCU_MEMBARRIER
834a45ba 41static int init_done;
fdf01eed 42int has_sys_membarrier;
834a45ba 43
02be5561 44void __attribute__((constructor)) rcu_init(void);
fdf01eed
MD
45#endif
46
47#ifdef RCU_MB
02be5561 48void rcu_init(void)
e90a6e9c
MD
49{
50}
51#endif
8a5fb4c9 52
fdf01eed
MD
53#ifdef RCU_SIGNAL
54static int init_done;
55
56void __attribute__((constructor)) rcu_init(void);
57void __attribute__((destructor)) rcu_exit(void);
58#endif
59
6abb4bd5 60static pthread_mutex_t rcu_gp_lock = PTHREAD_MUTEX_INITIALIZER;
27b012e2 61
bc6c15bb
MD
62int gp_futex;
63
128166c9
MD
64/*
65 * Global grace period counter.
02be5561 66 * Contains the current RCU_GP_CTR_PHASE.
afb8f2c9 67 * Also has a RCU_GP_COUNT of 1, to accelerate the reader fast path.
b0d5e790 68 * Written to only by writer with mutex taken. Read by both writer and readers.
128166c9 69 */
27d65bc5 70unsigned long rcu_gp_ctr = RCU_GP_COUNT;
27b012e2 71
b0d5e790
MD
72/*
73 * Written to only by each individual reader. Read by both the reader and the
74 * writers.
75 */
02be5561 76struct rcu_reader __thread rcu_reader;
27b012e2 77
cf380c2f 78#ifdef DEBUG_YIELD
9d335088
MD
79unsigned int yield_active;
80unsigned int __thread rand_yield;
cf380c2f
MD
81#endif
82
e3b0cef0 83static LIST_HEAD(registry);
27b012e2 84
6abb4bd5 85static void mutex_lock(pthread_mutex_t *mutex)
41718ff9
MD
86{
87 int ret;
09a9f986
PM
88
89#ifndef DISTRUST_SIGNALS_EXTREME
6abb4bd5 90 ret = pthread_mutex_lock(mutex);
41718ff9
MD
91 if (ret) {
92 perror("Error in pthread mutex lock");
93 exit(-1);
94 }
09a9f986 95#else /* #ifndef DISTRUST_SIGNALS_EXTREME */
6abb4bd5 96 while ((ret = pthread_mutex_trylock(mutex)) != 0) {
09a9f986
PM
97 if (ret != EBUSY && ret != EINTR) {
98 printf("ret = %d, errno = %d\n", ret, errno);
99 perror("Error in pthread mutex lock");
100 exit(-1);
101 }
0d342f2f 102 if (LOAD_SHARED(rcu_reader.need_mb)) {
09a9f986 103 smp_mb();
0d342f2f 104 _STORE_SHARED(rcu_reader.need_mb, 0);
09a9f986
PM
105 smp_mb();
106 }
107 poll(NULL,0,10);
108 }
109#endif /* #else #ifndef DISTRUST_SIGNALS_EXTREME */
41718ff9
MD
110}
111
6abb4bd5 112static void mutex_unlock(pthread_mutex_t *mutex)
41718ff9
MD
113{
114 int ret;
115
6abb4bd5 116 ret = pthread_mutex_unlock(mutex);
41718ff9
MD
117 if (ret) {
118 perror("Error in pthread mutex unlock");
119 exit(-1);
120 }
121}
122
fdf01eed 123#ifdef RCU_MEMBARRIER
25cc6d18 124static void smp_mb_master(int group)
fdf01eed
MD
125{
126 if (likely(has_sys_membarrier))
f0708810 127 membarrier(MEMBARRIER_EXPEDITED);
fdf01eed
MD
128 else
129 smp_mb();
130}
131#endif
132
02be5561 133#ifdef RCU_MB
25cc6d18 134static void smp_mb_master(int group)
40e140c9
MD
135{
136 smp_mb();
137}
fdf01eed
MD
138#endif
139
140#ifdef RCU_SIGNAL
78ff9419 141static void force_mb_all_readers(void)
27b012e2 142{
02be5561 143 struct rcu_reader *index;
e3b0cef0 144
27b012e2 145 /*
b715b99e 146 * Ask for each threads to execute a smp_mb() so we can consider the
27b012e2
MD
147 * compiler barriers around rcu read lock as real memory barriers.
148 */
e3b0cef0 149 if (list_empty(&registry))
27b012e2 150 return;
3a86deba
MD
151 /*
152 * pthread_kill has a smp_mb(). But beware, we assume it performs
157dca95
MD
153 * a cache flush on architectures with non-coherent cache. Let's play
154 * safe and don't assume anything : we use smp_mc() to make sure the
155 * cache flush is enforced.
3a86deba 156 */
e3b0cef0 157 list_for_each_entry(index, &registry, head) {
0d342f2f 158 STORE_SHARED(index->need_mb, 1);
02be5561 159 pthread_kill(index->tid, SIGRCU);
09a9f986 160 }
27b012e2
MD
161 /*
162 * Wait for sighandler (and thus mb()) to execute on every thread.
09a9f986
PM
163 *
164 * Note that the pthread_kill() will never be executed on systems
165 * that correctly deliver signals in a timely manner. However, it
166 * is not uncommon for kernels to have bugs that can result in
167 * lost or unduly delayed signals.
168 *
169 * If you are seeing the below pthread_kill() executing much at
170 * all, we suggest testing the underlying kernel and filing the
171 * relevant bug report. For Linux kernels, we recommend getting
172 * the Linux Test Project (LTP).
27b012e2 173 */
e3b0cef0 174 list_for_each_entry(index, &registry, head) {
0d342f2f 175 while (LOAD_SHARED(index->need_mb)) {
02be5561 176 pthread_kill(index->tid, SIGRCU);
09a9f986
PM
177 poll(NULL, 0, 1);
178 }
179 }
180 smp_mb(); /* read ->need_mb before ending the barrier */
27b012e2 181}
9d7e3f89 182
25cc6d18 183static void smp_mb_master(int group)
9d7e3f89
MD
184{
185 force_mb_all_readers();
186}
fdf01eed 187#endif /* #ifdef RCU_SIGNAL */
27b012e2 188
bc6c15bb
MD
189/*
190 * synchronize_rcu() waiting. Single thread.
191 */
cfe78e25 192static void wait_gp(void)
bc6c15bb 193{
cfe78e25 194 /* Read reader_gp before read futex */
25cc6d18 195 smp_mb_master(RCU_MB_GROUP);
cfe78e25 196 if (uatomic_read(&gp_futex) == -1)
0854ccff 197 futex_async(&gp_futex, FUTEX_WAIT, -1,
cfe78e25 198 NULL, NULL, 0);
bc6c15bb
MD
199}
200
2dfb8b5e 201void update_counter_and_wait(void)
27b012e2 202{
cfe78e25
MD
203 LIST_HEAD(qsreaders);
204 int wait_loops = 0;
02be5561 205 struct rcu_reader *index, *tmp;
27b012e2 206
32c15e4e 207 /* Switch parity: 0 -> 1, 1 -> 0 */
2dfb8b5e
MD
208 STORE_SHARED(rcu_gp_ctr, rcu_gp_ctr ^ RCU_GP_CTR_PHASE);
209
210 /*
211 * Must commit qparity update to memory before waiting for other parity
212 * quiescent state. Failure to do so could result in the writer waiting
213 * forever while new readers are always accessing data (no progress).
214 * Ensured by STORE_SHARED and LOAD_SHARED.
215 */
216
217 /*
935b11ff
MD
218 * Enforce compiler-order of store to rcu_gp_ctr before before
219 * load rcu_reader ctr.
220 * This ensures synchronize_rcu() cannot be starved by readers.
221 *
2dfb8b5e
MD
222 * Adding a smp_mb() which is _not_ formally required, but makes the
223 * model easier to understand. It does not have a big performance impact
224 * anyway, given this is the write-side.
225 */
226 smp_mb();
227
40e140c9 228 /*
02be5561 229 * Wait for each thread rcu_reader.ctr count to become 0.
27b012e2 230 */
cfe78e25
MD
231 for (;;) {
232 wait_loops++;
233 if (wait_loops == RCU_QS_ACTIVE_ATTEMPTS) {
234 uatomic_dec(&gp_futex);
235 /* Write futex before read reader_gp */
25cc6d18 236 smp_mb_master(RCU_MB_GROUP);
cfe78e25
MD
237 }
238
23758cc9 239 list_for_each_entry_safe(index, tmp, &registry, head) {
b95a001f 240 if (!rcu_gp_ongoing(&index->ctr))
cfe78e25
MD
241 list_move(&index->head, &qsreaders);
242 }
243
e8043c1b 244#ifndef HAS_INCOHERENT_CACHES
cfe78e25
MD
245 if (list_empty(&registry)) {
246 if (wait_loops == RCU_QS_ACTIVE_ATTEMPTS) {
247 /* Read reader_gp before write futex */
25cc6d18 248 smp_mb_master(RCU_MB_GROUP);
cfe78e25 249 uatomic_set(&gp_futex, 0);
bc6c15bb 250 }
cfe78e25
MD
251 break;
252 } else {
253 if (wait_loops == RCU_QS_ACTIVE_ATTEMPTS)
254 wait_gp();
255 else
256 cpu_relax();
bc6c15bb 257 }
e8043c1b 258#else /* #ifndef HAS_INCOHERENT_CACHES */
27b012e2 259 /*
40e140c9 260 * BUSY-LOOP. Force the reader thread to commit its
02be5561 261 * rcu_reader.ctr update to memory if we wait for too long.
27b012e2 262 */
cfe78e25
MD
263 if (list_empty(&registry)) {
264 if (wait_loops == RCU_QS_ACTIVE_ATTEMPTS) {
265 /* Read reader_gp before write futex */
25cc6d18 266 smp_mb_master(RCU_MB_GROUP);
cfe78e25
MD
267 uatomic_set(&gp_futex, 0);
268 }
269 break;
270 } else {
271 switch (wait_loops) {
bc6c15bb 272 case RCU_QS_ACTIVE_ATTEMPTS:
cfe78e25
MD
273 wait_gp();
274 break; /* only escape switch */
bc6c15bb 275 case KICK_READER_LOOPS:
25cc6d18 276 smp_mb_master(RCU_MB_GROUP);
40e140c9 277 wait_loops = 0;
cfe78e25 278 break; /* only escape switch */
bc6c15bb 279 default:
3b55dbf4 280 cpu_relax();
40e140c9
MD
281 }
282 }
e8043c1b 283#endif /* #else #ifndef HAS_INCOHERENT_CACHES */
27b012e2 284 }
cfe78e25 285 /* put back the reader list in the registry */
23758cc9 286 list_splice(&qsreaders, &registry);
27b012e2
MD
287}
288
9598a481 289void synchronize_rcu(void)
2bc59bd7 290{
6abb4bd5 291 mutex_lock(&rcu_gp_lock);
135530fd 292
2dfb8b5e
MD
293 if (list_empty(&registry))
294 goto out;
295
9598a481 296 /* All threads should read qparity before accessing data structure
6abb4bd5
MD
297 * where new ptr points to. Must be done within rcu_gp_lock because it
298 * iterates on reader threads.*/
9598a481 299 /* Write new ptr before changing the qparity */
25cc6d18 300 smp_mb_master(RCU_MB_GROUP);
9598a481 301
9598a481
MD
302 /*
303 * Wait for previous parity to be empty of readers.
304 */
2dfb8b5e 305 update_counter_and_wait(); /* 0 -> 1, wait readers in parity 0 */
9598a481
MD
306
307 /*
308 * Must finish waiting for quiescent state for parity 0 before
309 * committing qparity update to memory. Failure to do so could result in
310 * the writer waiting forever while new readers are always accessing
311 * data (no progress).
b0d5e790 312 * Ensured by STORE_SHARED and LOAD_SHARED.
9598a481 313 */
9598a481 314
5dba80f9
MD
315 /*
316 * Adding a smp_mb() which is _not_ formally required, but makes the
317 * model easier to understand. It does not have a big performance impact
318 * anyway, given this is the write-side.
319 */
320 smp_mb();
67c2d80b 321
9598a481
MD
322 /*
323 * Wait for previous parity to be empty of readers.
324 */
2dfb8b5e 325 update_counter_and_wait(); /* 1 -> 0, wait readers in parity 1 */
9598a481 326
9598a481 327 /* Finish waiting for reader threads before letting the old ptr being
6abb4bd5
MD
328 * freed. Must be done within rcu_gp_lock because it iterates on reader
329 * threads. */
25cc6d18 330 smp_mb_master(RCU_MB_GROUP);
2dfb8b5e 331out:
6abb4bd5 332 mutex_unlock(&rcu_gp_lock);
2bc59bd7
PM
333}
334
121a5d44
MD
335/*
336 * library wrappers to be used by non-LGPL compatible source code.
337 */
338
339void rcu_read_lock(void)
340{
341 _rcu_read_lock();
342}
343
344void rcu_read_unlock(void)
345{
346 _rcu_read_unlock();
347}
348
121a5d44 349void rcu_register_thread(void)
27b012e2 350{
02be5561
MD
351 rcu_reader.tid = pthread_self();
352 assert(rcu_reader.need_mb == 0);
4b5be3be 353 assert(!(rcu_reader.ctr & RCU_GP_CTR_NEST_MASK));
02be5561 354
6abb4bd5 355 mutex_lock(&rcu_gp_lock);
02be5561
MD
356 rcu_init(); /* In case gcc does not support constructor attribute */
357 list_add(&rcu_reader.head, &registry);
6abb4bd5 358 mutex_unlock(&rcu_gp_lock);
27b012e2
MD
359}
360
121a5d44 361void rcu_unregister_thread(void)
27b012e2 362{
6abb4bd5 363 mutex_lock(&rcu_gp_lock);
02be5561 364 list_del(&rcu_reader.head);
6abb4bd5 365 mutex_unlock(&rcu_gp_lock);
27b012e2
MD
366}
367
fdf01eed
MD
368#ifdef RCU_MEMBARRIER
369void rcu_init(void)
370{
371 if (init_done)
372 return;
373 init_done = 1;
cf5271ee 374 if (!membarrier(MEMBARRIER_EXPEDITED | MEMBARRIER_QUERY))
fdf01eed
MD
375 has_sys_membarrier = 1;
376}
377#endif
378
379#ifdef RCU_SIGNAL
02be5561 380static void sigrcu_handler(int signo, siginfo_t *siginfo, void *context)
27b012e2 381{
40e140c9
MD
382 /*
383 * Executing this smp_mb() is the only purpose of this signal handler.
384 * It punctually promotes barrier() into smp_mb() on every thread it is
385 * executed on.
386 */
b715b99e 387 smp_mb();
0d342f2f 388 _STORE_SHARED(rcu_reader.need_mb, 0);
09a9f986 389 smp_mb();
27b012e2
MD
390}
391
8a5fb4c9 392/*
02be5561 393 * rcu_init constructor. Called when the library is linked, but also when
8a5fb4c9
MD
394 * reader threads are calling rcu_register_thread().
395 * Should only be called by a single thread at a given time. This is ensured by
6abb4bd5
MD
396 * holing the rcu_gp_lock from rcu_register_thread() or by running at library
397 * load time, which should not be executed by multiple threads nor concurrently
398 * with rcu_register_thread() anyway.
8a5fb4c9 399 */
02be5561 400void rcu_init(void)
27b012e2
MD
401{
402 struct sigaction act;
403 int ret;
404
8a5fb4c9
MD
405 if (init_done)
406 return;
407 init_done = 1;
408
02be5561 409 act.sa_sigaction = sigrcu_handler;
dd052bd3 410 act.sa_flags = SA_SIGINFO | SA_RESTART;
c297c21c 411 sigemptyset(&act.sa_mask);
02be5561 412 ret = sigaction(SIGRCU, &act, NULL);
f69f195a
MD
413 if (ret) {
414 perror("Error in sigaction");
27b012e2
MD
415 exit(-1);
416 }
417}
418
02be5561 419void rcu_exit(void)
27b012e2
MD
420{
421 struct sigaction act;
422 int ret;
423
02be5561 424 ret = sigaction(SIGRCU, NULL, &act);
f69f195a
MD
425 if (ret) {
426 perror("Error in sigaction");
27b012e2
MD
427 exit(-1);
428 }
02be5561 429 assert(act.sa_sigaction == sigrcu_handler);
e3b0cef0 430 assert(list_empty(&registry));
27b012e2 431}
fdf01eed 432#endif /* #ifdef RCU_SIGNAL */
This page took 0.047923 seconds and 4 git commands to generate.