Fix: call_rcu: futex wait: handle spurious futex wakeups
[urcu.git] / src / urcu-call-rcu-impl.h
CommitLineData
b57aee66
PM
1/*
2 * urcu-call-rcu.c
3 *
4 * Userspace RCU library - batch memory reclamation with kernel API
5 *
6 * Copyright (c) 2010 Paul E. McKenney <paulmck@linux.vnet.ibm.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
5161f31e 23#define _LGPL_SOURCE
b57aee66
PM
24#include <stdio.h>
25#include <pthread.h>
26#include <signal.h>
b57aee66 27#include <stdlib.h>
6d841bc2 28#include <stdint.h>
b57aee66
PM
29#include <string.h>
30#include <errno.h>
31#include <poll.h>
32#include <sys/time.h>
b57aee66 33#include <unistd.h>
c1d2c60b 34#include <sched.h>
b57aee66 35
a47dd11c 36#include "compat-getcpu.h"
01477510 37#include <urcu/assert.h>
4477a870
MD
38#include <urcu/wfcqueue.h>
39#include <urcu/call-rcu.h>
40#include <urcu/pointer.h>
41#include <urcu/list.h>
42#include <urcu/futex.h>
43#include <urcu/tls-compat.h>
44#include <urcu/ref.h>
4a6d7378 45#include "urcu-die.h"
4477a870 46#include "urcu-utils.h"
b57aee66 47
8e3690db
MD
48#define SET_AFFINITY_CHECK_PERIOD (1U << 8) /* 256 */
49#define SET_AFFINITY_CHECK_PERIOD_MASK (SET_AFFINITY_CHECK_PERIOD - 1)
50
b57aee66
PM
51/* Data structure that identifies a call_rcu thread. */
52
53struct call_rcu_data {
5161f31e 54 /*
0b8ab7df
MD
55 * We do not align head on a different cache-line than tail
56 * mainly because call_rcu callback-invocation threads use
57 * batching ("splice") to get an entire list of callbacks, which
58 * effectively empties the queue, and requires to touch the tail
59 * anyway.
5161f31e 60 */
b9f893b6 61 struct cds_wfcq_tail cbs_tail;
0b8ab7df 62 struct cds_wfcq_head cbs_head;
b57aee66 63 unsigned long flags;
6d841bc2 64 int32_t futex;
73987721 65 unsigned long qlen; /* maintained for debugging. */
b57aee66 66 pthread_t tid;
c1d2c60b 67 int cpu_affinity;
8e3690db 68 unsigned long gp_count;
3c24913f 69 struct cds_list_head list;
b57aee66
PM
70} __attribute__((aligned(CAA_CACHE_LINE_SIZE)));
71
b7f721d9
MD
72struct call_rcu_completion {
73 int barrier_count;
74 int32_t futex;
81dd9134 75 struct urcu_ref ref;
b7f721d9
MD
76};
77
78struct call_rcu_completion_work {
79 struct rcu_head head;
80 struct call_rcu_completion *completion;
81};
82
3c24913f
PM
83/*
84 * List of all call_rcu_data structures to keep valgrind happy.
85 * Protected by call_rcu_mutex.
86 */
87
bab44e28 88static CDS_LIST_HEAD(call_rcu_data_list);
3c24913f 89
b57aee66
PM
90/* Link a thread using call_rcu() to its call_rcu thread. */
91
2f661865 92static DEFINE_URCU_TLS(struct call_rcu_data *, thread_call_rcu_data);
b57aee66 93
e85451a1
MD
94/*
95 * Guard call_rcu thread creation and atfork handlers.
96 */
b57aee66
PM
97static pthread_mutex_t call_rcu_mutex = PTHREAD_MUTEX_INITIALIZER;
98
99/* If a given thread does not have its own call_rcu thread, this is default. */
100
101static struct call_rcu_data *default_call_rcu_data;
102
d0ec0ed2
MD
103static struct urcu_atfork *registered_rculfhash_atfork;
104static unsigned long registered_rculfhash_atfork_refcount;
105
b57aee66
PM
106/*
107 * If the sched_getcpu() and sysconf(_SC_NPROCESSORS_CONF) calls are
108 * available, then we can have call_rcu threads assigned to individual
109 * CPUs rather than only to specific threads.
110 */
111
a47dd11c 112#if defined(HAVE_SYSCONF) && (defined(HAVE_SCHED_GETCPU) || defined(HAVE_GETCPUID))
b57aee66
PM
113
114/*
115 * Pointer to array of pointers to per-CPU call_rcu_data structures
618b2595
MD
116 * and # CPUs. per_cpu_call_rcu_data is a RCU-protected pointer to an
117 * array of RCU-protected pointers to call_rcu_data. call_rcu acts as a
118 * RCU read-side and reads per_cpu_call_rcu_data and the per-cpu pointer
119 * without mutex. The call_rcu_mutex protects updates.
b57aee66
PM
120 */
121
122static struct call_rcu_data **per_cpu_call_rcu_data;
123static long maxcpus;
124
60af049d
LJ
125static void maxcpus_reset(void)
126{
127 maxcpus = 0;
128}
129
b57aee66
PM
130/* Allocate the array if it has not already been allocated. */
131
132static void alloc_cpu_call_rcu_data(void)
133{
134 struct call_rcu_data **p;
135 static int warned = 0;
136
137 if (maxcpus != 0)
138 return;
139 maxcpus = sysconf(_SC_NPROCESSORS_CONF);
140 if (maxcpus <= 0) {
141 return;
142 }
143 p = malloc(maxcpus * sizeof(*per_cpu_call_rcu_data));
144 if (p != NULL) {
145 memset(p, '\0', maxcpus * sizeof(*per_cpu_call_rcu_data));
618b2595 146 rcu_set_pointer(&per_cpu_call_rcu_data, p);
b57aee66
PM
147 } else {
148 if (!warned) {
149 fprintf(stderr, "[error] liburcu: unable to allocate per-CPU pointer array\n");
150 }
151 warned = 1;
152 }
153}
154
63b495d8 155#else /* #if defined(HAVE_SYSCONF) && defined(HAVE_SCHED_GETCPU) */
b57aee66 156
f9437098
MD
157/*
158 * per_cpu_call_rcu_data should be constant, but some functions below, used both
159 * for cases where cpu number is available and not available, assume it it not
160 * constant.
161 */
162static struct call_rcu_data **per_cpu_call_rcu_data = NULL;
b57aee66
PM
163static const long maxcpus = -1;
164
60af049d
LJ
165static void maxcpus_reset(void)
166{
167}
168
b57aee66
PM
169static void alloc_cpu_call_rcu_data(void)
170{
171}
172
63b495d8 173#endif /* #else #if defined(HAVE_SYSCONF) && defined(HAVE_SCHED_GETCPU) */
b57aee66
PM
174
175/* Acquire the specified pthread mutex. */
176
177static void call_rcu_lock(pthread_mutex_t *pmp)
178{
4a6d7378
MD
179 int ret;
180
181 ret = pthread_mutex_lock(pmp);
182 if (ret)
183 urcu_die(ret);
b57aee66
PM
184}
185
186/* Release the specified pthread mutex. */
187
188static void call_rcu_unlock(pthread_mutex_t *pmp)
189{
4a6d7378
MD
190 int ret;
191
192 ret = pthread_mutex_unlock(pmp);
193 if (ret)
194 urcu_die(ret);
b57aee66
PM
195}
196
8e3690db
MD
197/*
198 * Periodically retry setting CPU affinity if we migrate.
199 * Losing affinity can be caused by CPU hotunplug/hotplug, or by
200 * cpuset(7).
201 */
2388c075 202#ifdef HAVE_SCHED_SETAFFINITY
c1d2c60b
MD
203static
204int set_thread_cpu_affinity(struct call_rcu_data *crdp)
205{
206 cpu_set_t mask;
8e3690db 207 int ret;
c1d2c60b
MD
208
209 if (crdp->cpu_affinity < 0)
210 return 0;
8e3690db
MD
211 if (++crdp->gp_count & SET_AFFINITY_CHECK_PERIOD_MASK)
212 return 0;
213 if (urcu_sched_getcpu() == crdp->cpu_affinity)
214 return 0;
c1d2c60b
MD
215
216 CPU_ZERO(&mask);
217 CPU_SET(crdp->cpu_affinity, &mask);
8e3690db 218 ret = sched_setaffinity(0, sizeof(mask), &mask);
0614a2e6 219
8e3690db
MD
220 /*
221 * EINVAL is fine: can be caused by hotunplugged CPUs, or by
222 * cpuset(7). This is why we should always retry if we detect
223 * migration.
224 */
225 if (ret && errno == EINVAL) {
226 ret = 0;
227 errno = 0;
228 }
229 return ret;
c1d2c60b
MD
230}
231#else
232static
a142df4e 233int set_thread_cpu_affinity(struct call_rcu_data *crdp __attribute__((unused)))
c1d2c60b
MD
234{
235 return 0;
236}
237#endif
238
03fe58b3
MD
239static void call_rcu_wait(struct call_rcu_data *crdp)
240{
241 /* Read call_rcu list before read futex */
242 cmm_smp_mb();
98d705dd
MD
243 while (uatomic_read(&crdp->futex) == -1) {
244 if (!futex_async(&crdp->futex, FUTEX_WAIT, -1, NULL, NULL, 0)) {
245 /*
246 * Prior queued wakeups queued by unrelated code
247 * using the same address can cause futex wait to
248 * return 0 even through the futex value is still
249 * -1 (spurious wakeups). Check the value again
250 * in user-space to validate whether it really
251 * differs from -1.
252 */
253 continue;
254 }
b0a841b4 255 switch (errno) {
98d705dd 256 case EAGAIN:
b0a841b4
MD
257 /* Value already changed. */
258 return;
259 case EINTR:
260 /* Retry if interrupted by signal. */
98d705dd 261 break; /* Get out of switch. Check again. */
b0a841b4
MD
262 default:
263 /* Unexpected error. */
264 urcu_die(errno);
265 }
266 }
03fe58b3
MD
267}
268
269static void call_rcu_wake_up(struct call_rcu_data *crdp)
270{
271 /* Write to call_rcu list before reading/writing futex */
272 cmm_smp_mb();
a0b7f7ea 273 if (caa_unlikely(uatomic_read(&crdp->futex) == -1)) {
03fe58b3 274 uatomic_set(&crdp->futex, 0);
b0a841b4
MD
275 if (futex_async(&crdp->futex, FUTEX_WAKE, 1,
276 NULL, NULL, 0) < 0)
277 urcu_die(errno);
03fe58b3
MD
278 }
279}
280
b7f721d9
MD
281static void call_rcu_completion_wait(struct call_rcu_completion *completion)
282{
283 /* Read completion barrier count before read futex */
284 cmm_smp_mb();
98d705dd
MD
285 while (uatomic_read(&completion->futex) == -1) {
286 if (!futex_async(&completion->futex, FUTEX_WAIT, -1, NULL, NULL, 0)) {
287 /*
288 * Prior queued wakeups queued by unrelated code
289 * using the same address can cause futex wait to
290 * return 0 even through the futex value is still
291 * -1 (spurious wakeups). Check the value again
292 * in user-space to validate whether it really
293 * differs from -1.
294 */
295 continue;
296 }
b0a841b4 297 switch (errno) {
98d705dd 298 case EAGAIN:
b0a841b4
MD
299 /* Value already changed. */
300 return;
301 case EINTR:
302 /* Retry if interrupted by signal. */
98d705dd 303 break; /* Get out of switch. Check again. */
b0a841b4
MD
304 default:
305 /* Unexpected error. */
306 urcu_die(errno);
307 }
308 }
b7f721d9
MD
309}
310
311static void call_rcu_completion_wake_up(struct call_rcu_completion *completion)
312{
313 /* Write to completion barrier count before reading/writing futex */
314 cmm_smp_mb();
315 if (caa_unlikely(uatomic_read(&completion->futex) == -1)) {
316 uatomic_set(&completion->futex, 0);
b0a841b4
MD
317 if (futex_async(&completion->futex, FUTEX_WAKE, 1,
318 NULL, NULL, 0) < 0)
319 urcu_die(errno);
b7f721d9
MD
320 }
321}
322
b57aee66
PM
323/* This is the code run by each call_rcu thread. */
324
325static void *call_rcu_thread(void *arg)
326{
327 unsigned long cbcount;
5161f31e 328 struct call_rcu_data *crdp = (struct call_rcu_data *) arg;
2870aa1e 329 int rt = !!(uatomic_read(&crdp->flags) & URCU_CALL_RCU_RT);
b57aee66 330
8e3690db 331 if (set_thread_cpu_affinity(crdp))
4a6d7378 332 urcu_die(errno);
c1d2c60b 333
765f3ead
MD
334 /*
335 * If callbacks take a read-side lock, we need to be registered.
336 */
337 rcu_register_thread();
338
bd252a04 339 URCU_TLS(thread_call_rcu_data) = crdp;
bc94ca9b
MD
340 if (!rt) {
341 uatomic_dec(&crdp->futex);
342 /* Decrement futex before reading call_rcu list */
343 cmm_smp_mb();
344 }
b57aee66 345 for (;;) {
5161f31e
MD
346 struct cds_wfcq_head cbs_tmp_head;
347 struct cds_wfcq_tail cbs_tmp_tail;
348 struct cds_wfcq_node *cbs, *cbs_tmp_n;
ae25b7e2 349 enum cds_wfcq_ret splice_ret;
5161f31e 350
8e3690db
MD
351 if (set_thread_cpu_affinity(crdp))
352 urcu_die(errno);
353
e85451a1
MD
354 if (uatomic_read(&crdp->flags) & URCU_CALL_RCU_PAUSE) {
355 /*
356 * Pause requested. Become quiescent: remove
357 * ourself from all global lists, and don't
358 * process any callback. The callback lists may
359 * still be non-empty though.
360 */
361 rcu_unregister_thread();
362 cmm_smp_mb__before_uatomic_or();
363 uatomic_or(&crdp->flags, URCU_CALL_RCU_PAUSED);
364 while ((uatomic_read(&crdp->flags) & URCU_CALL_RCU_PAUSE) != 0)
109105b7 365 (void) poll(NULL, 0, 1);
fc236e5e
KF
366 uatomic_and(&crdp->flags, ~URCU_CALL_RCU_PAUSED);
367 cmm_smp_mb__after_uatomic_and();
e85451a1
MD
368 rcu_register_thread();
369 }
370
5161f31e 371 cds_wfcq_init(&cbs_tmp_head, &cbs_tmp_tail);
ae25b7e2
MD
372 splice_ret = __cds_wfcq_splice_blocking(&cbs_tmp_head,
373 &cbs_tmp_tail, &crdp->cbs_head, &crdp->cbs_tail);
01477510
FD
374 urcu_posix_assert(splice_ret != CDS_WFCQ_RET_WOULDBLOCK);
375 urcu_posix_assert(splice_ret != CDS_WFCQ_RET_DEST_NON_EMPTY);
ae25b7e2 376 if (splice_ret != CDS_WFCQ_RET_SRC_EMPTY) {
b57aee66
PM
377 synchronize_rcu();
378 cbcount = 0;
5161f31e
MD
379 __cds_wfcq_for_each_blocking_safe(&cbs_tmp_head,
380 &cbs_tmp_tail, cbs, cbs_tmp_n) {
381 struct rcu_head *rhp;
382
383 rhp = caa_container_of(cbs,
384 struct rcu_head, next);
b57aee66
PM
385 rhp->func(rhp);
386 cbcount++;
5161f31e 387 }
b57aee66
PM
388 uatomic_sub(&crdp->qlen, cbcount);
389 }
bc94ca9b
MD
390 if (uatomic_read(&crdp->flags) & URCU_CALL_RCU_STOP)
391 break;
765f3ead 392 rcu_thread_offline();
bc94ca9b 393 if (!rt) {
5161f31e
MD
394 if (cds_wfcq_empty(&crdp->cbs_head,
395 &crdp->cbs_tail)) {
bc94ca9b 396 call_rcu_wait(crdp);
109105b7 397 (void) poll(NULL, 0, 10);
bc94ca9b 398 uatomic_dec(&crdp->futex);
c768e45e 399 /*
bc94ca9b
MD
400 * Decrement futex before reading
401 * call_rcu list.
c768e45e
MD
402 */
403 cmm_smp_mb();
ccbac24d 404 } else {
109105b7 405 (void) poll(NULL, 0, 10);
c768e45e 406 }
bc94ca9b 407 } else {
109105b7 408 (void) poll(NULL, 0, 10);
b57aee66 409 }
765f3ead 410 rcu_thread_online();
bc94ca9b
MD
411 }
412 if (!rt) {
413 /*
414 * Read call_rcu list before write futex.
415 */
416 cmm_smp_mb();
417 uatomic_set(&crdp->futex, 0);
b57aee66 418 }
2870aa1e 419 uatomic_or(&crdp->flags, URCU_CALL_RCU_STOPPED);
765f3ead 420 rcu_unregister_thread();
7106ddf8 421 return NULL;
b57aee66
PM
422}
423
424/*
425 * Create both a call_rcu thread and the corresponding call_rcu_data
3c24913f
PM
426 * structure, linking the structure in as specified. Caller must hold
427 * call_rcu_mutex.
b57aee66
PM
428 */
429
3c24913f 430static void call_rcu_data_init(struct call_rcu_data **crdpp,
c1d2c60b
MD
431 unsigned long flags,
432 int cpu_affinity)
b57aee66
PM
433{
434 struct call_rcu_data *crdp;
4a6d7378 435 int ret;
b57aee66
PM
436
437 crdp = malloc(sizeof(*crdp));
4a6d7378
MD
438 if (crdp == NULL)
439 urcu_die(errno);
b57aee66 440 memset(crdp, '\0', sizeof(*crdp));
5161f31e 441 cds_wfcq_init(&crdp->cbs_head, &crdp->cbs_tail);
b57aee66 442 crdp->qlen = 0;
263e3cf9
MD
443 crdp->futex = 0;
444 crdp->flags = flags;
3c24913f 445 cds_list_add(&crdp->list, &call_rcu_data_list);
c1d2c60b 446 crdp->cpu_affinity = cpu_affinity;
8e3690db 447 crdp->gp_count = 0;
b57aee66
PM
448 cmm_smp_mb(); /* Structure initialized before pointer is planted. */
449 *crdpp = crdp;
4a6d7378
MD
450 ret = pthread_create(&crdp->tid, NULL, call_rcu_thread, crdp);
451 if (ret)
452 urcu_die(ret);
b57aee66
PM
453}
454
455/*
456 * Return a pointer to the call_rcu_data structure for the specified
457 * CPU, returning NULL if there is none. We cannot automatically
458 * created it because the platform we are running on might not define
63b495d8 459 * urcu_sched_getcpu().
618b2595
MD
460 *
461 * The call to this function and use of the returned call_rcu_data
462 * should be protected by RCU read-side lock.
b57aee66
PM
463 */
464
465struct call_rcu_data *get_cpu_call_rcu_data(int cpu)
466{
467 static int warned = 0;
618b2595 468 struct call_rcu_data **pcpu_crdp;
b57aee66 469
618b2595
MD
470 pcpu_crdp = rcu_dereference(per_cpu_call_rcu_data);
471 if (pcpu_crdp == NULL)
b57aee66
PM
472 return NULL;
473 if (!warned && maxcpus > 0 && (cpu < 0 || maxcpus <= cpu)) {
474 fprintf(stderr, "[error] liburcu: get CPU # out of range\n");
475 warned = 1;
476 }
477 if (cpu < 0 || maxcpus <= cpu)
478 return NULL;
618b2595 479 return rcu_dereference(pcpu_crdp[cpu]);
b57aee66
PM
480}
481
482/*
483 * Return the tid corresponding to the call_rcu thread whose
484 * call_rcu_data structure is specified.
485 */
486
487pthread_t get_call_rcu_thread(struct call_rcu_data *crdp)
488{
489 return crdp->tid;
490}
491
492/*
493 * Create a call_rcu_data structure (with thread) and return a pointer.
494 */
495
c1d2c60b
MD
496static struct call_rcu_data *__create_call_rcu_data(unsigned long flags,
497 int cpu_affinity)
b57aee66
PM
498{
499 struct call_rcu_data *crdp;
500
c1d2c60b 501 call_rcu_data_init(&crdp, flags, cpu_affinity);
b57aee66
PM
502 return crdp;
503}
504
c1d2c60b
MD
505struct call_rcu_data *create_call_rcu_data(unsigned long flags,
506 int cpu_affinity)
3c24913f
PM
507{
508 struct call_rcu_data *crdp;
509
510 call_rcu_lock(&call_rcu_mutex);
c1d2c60b 511 crdp = __create_call_rcu_data(flags, cpu_affinity);
3c24913f
PM
512 call_rcu_unlock(&call_rcu_mutex);
513 return crdp;
514}
515
b57aee66
PM
516/*
517 * Set the specified CPU to use the specified call_rcu_data structure.
7106ddf8
PM
518 *
519 * Use NULL to remove a CPU's call_rcu_data structure, but it is
520 * the caller's responsibility to dispose of the removed structure.
521 * Use get_cpu_call_rcu_data() to obtain a pointer to the old structure
522 * (prior to NULLing it out, of course).
f9da0936
MD
523 *
524 * The caller must wait for a grace-period to pass between return from
525 * set_cpu_call_rcu_data() and call to call_rcu_data_free() passing the
526 * previous call rcu data as argument.
b57aee66
PM
527 */
528
529int set_cpu_call_rcu_data(int cpu, struct call_rcu_data *crdp)
530{
dcfc8165 531 static int warned = 0;
b57aee66
PM
532
533 call_rcu_lock(&call_rcu_mutex);
f3776786 534 alloc_cpu_call_rcu_data();
b57aee66
PM
535 if (cpu < 0 || maxcpus <= cpu) {
536 if (!warned) {
537 fprintf(stderr, "[error] liburcu: set CPU # out of range\n");
538 warned = 1;
539 }
540 call_rcu_unlock(&call_rcu_mutex);
541 errno = EINVAL;
542 return -EINVAL;
543 }
53a55535 544
b57aee66 545 if (per_cpu_call_rcu_data == NULL) {
3670fef2 546 call_rcu_unlock(&call_rcu_mutex);
b57aee66
PM
547 errno = ENOMEM;
548 return -ENOMEM;
549 }
53a55535
LJ
550
551 if (per_cpu_call_rcu_data[cpu] != NULL && crdp != NULL) {
552 call_rcu_unlock(&call_rcu_mutex);
553 errno = EEXIST;
554 return -EEXIST;
555 }
556
618b2595 557 rcu_set_pointer(&per_cpu_call_rcu_data[cpu], crdp);
3670fef2 558 call_rcu_unlock(&call_rcu_mutex);
b57aee66
PM
559 return 0;
560}
561
562/*
563 * Return a pointer to the default call_rcu_data structure, creating
564 * one if need be. Because we never free call_rcu_data structures,
565 * we don't need to be in an RCU read-side critical section.
566 */
567
568struct call_rcu_data *get_default_call_rcu_data(void)
569{
570 if (default_call_rcu_data != NULL)
571 return rcu_dereference(default_call_rcu_data);
572 call_rcu_lock(&call_rcu_mutex);
573 if (default_call_rcu_data != NULL) {
574 call_rcu_unlock(&call_rcu_mutex);
575 return default_call_rcu_data;
576 }
c1d2c60b 577 call_rcu_data_init(&default_call_rcu_data, 0, -1);
b57aee66
PM
578 call_rcu_unlock(&call_rcu_mutex);
579 return default_call_rcu_data;
580}
581
582/*
583 * Return the call_rcu_data structure that applies to the currently
584 * running thread. Any call_rcu_data structure assigned specifically
585 * to this thread has first priority, followed by any call_rcu_data
586 * structure assigned to the CPU on which the thread is running,
587 * followed by the default call_rcu_data structure. If there is not
588 * yet a default call_rcu_data structure, one will be created.
618b2595
MD
589 *
590 * Calls to this function and use of the returned call_rcu_data should
591 * be protected by RCU read-side lock.
b57aee66
PM
592 */
593struct call_rcu_data *get_call_rcu_data(void)
594{
9744f3bb 595 struct call_rcu_data *crd;
b57aee66 596
bd252a04
MD
597 if (URCU_TLS(thread_call_rcu_data) != NULL)
598 return URCU_TLS(thread_call_rcu_data);
9744f3bb
LJ
599
600 if (maxcpus > 0) {
63b495d8 601 crd = get_cpu_call_rcu_data(urcu_sched_getcpu());
9744f3bb
LJ
602 if (crd)
603 return crd;
b57aee66 604 }
9744f3bb 605
b57aee66
PM
606 return get_default_call_rcu_data();
607}
608
609/*
610 * Return a pointer to this task's call_rcu_data if there is one.
611 */
612
613struct call_rcu_data *get_thread_call_rcu_data(void)
614{
bd252a04 615 return URCU_TLS(thread_call_rcu_data);
b57aee66
PM
616}
617
618/*
619 * Set this task's call_rcu_data structure as specified, regardless
620 * of whether or not this task already had one. (This allows switching
621 * to and from real-time call_rcu threads, for example.)
7106ddf8
PM
622 *
623 * Use NULL to remove a thread's call_rcu_data structure, but it is
624 * the caller's responsibility to dispose of the removed structure.
625 * Use get_thread_call_rcu_data() to obtain a pointer to the old structure
626 * (prior to NULLing it out, of course).
b57aee66
PM
627 */
628
629void set_thread_call_rcu_data(struct call_rcu_data *crdp)
630{
bd252a04 631 URCU_TLS(thread_call_rcu_data) = crdp;
b57aee66
PM
632}
633
634/*
635 * Create a separate call_rcu thread for each CPU. This does not
636 * replace a pre-existing call_rcu thread -- use the set_cpu_call_rcu_data()
0938c541
MD
637 * function if you want that behavior. Should be paired with
638 * free_all_cpu_call_rcu_data() to teardown these call_rcu worker
639 * threads.
b57aee66
PM
640 */
641
642int create_all_cpu_call_rcu_data(unsigned long flags)
643{
644 int i;
645 struct call_rcu_data *crdp;
646 int ret;
647
648 call_rcu_lock(&call_rcu_mutex);
649 alloc_cpu_call_rcu_data();
650 call_rcu_unlock(&call_rcu_mutex);
651 if (maxcpus <= 0) {
652 errno = EINVAL;
653 return -EINVAL;
654 }
655 if (per_cpu_call_rcu_data == NULL) {
656 errno = ENOMEM;
657 return -ENOMEM;
658 }
659 for (i = 0; i < maxcpus; i++) {
660 call_rcu_lock(&call_rcu_mutex);
661 if (get_cpu_call_rcu_data(i)) {
662 call_rcu_unlock(&call_rcu_mutex);
663 continue;
664 }
c1d2c60b 665 crdp = __create_call_rcu_data(flags, i);
b57aee66
PM
666 if (crdp == NULL) {
667 call_rcu_unlock(&call_rcu_mutex);
668 errno = ENOMEM;
669 return -ENOMEM;
670 }
671 call_rcu_unlock(&call_rcu_mutex);
672 if ((ret = set_cpu_call_rcu_data(i, crdp)) != 0) {
356c8794
LJ
673 call_rcu_data_free(crdp);
674
675 /* it has been created by other thread */
676 if (ret == -EEXIST)
677 continue;
678
679 return ret;
b57aee66
PM
680 }
681 }
682 return 0;
683}
684
7106ddf8
PM
685/*
686 * Wake up the call_rcu thread corresponding to the specified
687 * call_rcu_data structure.
688 */
689static void wake_call_rcu_thread(struct call_rcu_data *crdp)
690{
263e3cf9
MD
691 if (!(_CMM_LOAD_SHARED(crdp->flags) & URCU_CALL_RCU_RT))
692 call_rcu_wake_up(crdp);
7106ddf8
PM
693}
694
b7f721d9
MD
695static void _call_rcu(struct rcu_head *head,
696 void (*func)(struct rcu_head *head),
697 struct call_rcu_data *crdp)
698{
699 cds_wfcq_node_init(&head->next);
700 head->func = func;
701 cds_wfcq_enqueue(&crdp->cbs_head, &crdp->cbs_tail, &head->next);
702 uatomic_inc(&crdp->qlen);
703 wake_call_rcu_thread(crdp);
704}
705
b57aee66
PM
706/*
707 * Schedule a function to be invoked after a following grace period.
708 * This is the only function that must be called -- the others are
709 * only present to allow applications to tune their use of RCU for
710 * maximum performance.
711 *
712 * Note that unless a call_rcu thread has not already been created,
713 * the first invocation of call_rcu() will create one. So, if you
714 * need the first invocation of call_rcu() to be fast, make sure
715 * to create a call_rcu thread first. One way to accomplish this is
716 * "get_call_rcu_data();", and another is create_all_cpu_call_rcu_data().
618b2595
MD
717 *
718 * call_rcu must be called by registered RCU read-side threads.
b57aee66 719 */
b57aee66
PM
720void call_rcu(struct rcu_head *head,
721 void (*func)(struct rcu_head *head))
722{
723 struct call_rcu_data *crdp;
724
618b2595 725 /* Holding rcu read-side lock across use of per-cpu crdp */
ffb4aaa7 726 _rcu_read_lock();
b57aee66 727 crdp = get_call_rcu_data();
b7f721d9 728 _call_rcu(head, func, crdp);
ffb4aaa7 729 _rcu_read_unlock();
7106ddf8
PM
730}
731
732/*
733 * Free up the specified call_rcu_data structure, terminating the
734 * associated call_rcu thread. The caller must have previously
735 * removed the call_rcu_data structure from per-thread or per-CPU
736 * usage. For example, set_cpu_call_rcu_data(cpu, NULL) for per-CPU
737 * call_rcu_data structures or set_thread_call_rcu_data(NULL) for
738 * per-thread call_rcu_data structures.
739 *
740 * We silently refuse to free up the default call_rcu_data structure
741 * because that is where we put any leftover callbacks. Note that
742 * the possibility of self-spawning callbacks makes it impossible
743 * to execute all the callbacks in finite time without putting any
744 * newly spawned callbacks somewhere else. The "somewhere else" of
745 * last resort is the default call_rcu_data structure.
746 *
747 * We also silently refuse to free NULL pointers. This simplifies
748 * the calling code.
f9da0936
MD
749 *
750 * The caller must wait for a grace-period to pass between return from
751 * set_cpu_call_rcu_data() and call to call_rcu_data_free() passing the
752 * previous call rcu data as argument.
03e5118f
MD
753 *
754 * Note: introducing __cds_wfcq_splice_blocking() in this function fixed
755 * a list corruption bug in the 0.7.x series. The equivalent fix
756 * appeared in 0.6.8 for the stable-0.6 branch.
7106ddf8
PM
757 */
758void call_rcu_data_free(struct call_rcu_data *crdp)
759{
7106ddf8
PM
760 if (crdp == NULL || crdp == default_call_rcu_data) {
761 return;
762 }
2870aa1e
PB
763 if ((uatomic_read(&crdp->flags) & URCU_CALL_RCU_STOPPED) == 0) {
764 uatomic_or(&crdp->flags, URCU_CALL_RCU_STOP);
7106ddf8 765 wake_call_rcu_thread(crdp);
2870aa1e 766 while ((uatomic_read(&crdp->flags) & URCU_CALL_RCU_STOPPED) == 0)
109105b7 767 (void) poll(NULL, 0, 1);
7106ddf8 768 }
51b98c3c 769 call_rcu_lock(&call_rcu_mutex);
5161f31e 770 if (!cds_wfcq_empty(&crdp->cbs_head, &crdp->cbs_tail)) {
51b98c3c
PM
771 call_rcu_unlock(&call_rcu_mutex);
772 /* Create default call rcu data if need be. */
773 /* CBs queued here will be handed to the default list. */
698d0778 774 (void) get_default_call_rcu_data();
51b98c3c 775 call_rcu_lock(&call_rcu_mutex);
5161f31e
MD
776 __cds_wfcq_splice_blocking(&default_call_rcu_data->cbs_head,
777 &default_call_rcu_data->cbs_tail,
778 &crdp->cbs_head, &crdp->cbs_tail);
7106ddf8
PM
779 uatomic_add(&default_call_rcu_data->qlen,
780 uatomic_read(&crdp->qlen));
1e92aa15 781 wake_call_rcu_thread(default_call_rcu_data);
7106ddf8 782 }
59dc9e9d
LJ
783
784 cds_list_del(&crdp->list);
b75dffe6
LJ
785 call_rcu_unlock(&call_rcu_mutex);
786
59dc9e9d 787 free(crdp);
7106ddf8
PM
788}
789
790/*
791 * Clean up all the per-CPU call_rcu threads.
792 */
793void free_all_cpu_call_rcu_data(void)
794{
795 int cpu;
618b2595
MD
796 struct call_rcu_data **crdp;
797 static int warned = 0;
7106ddf8
PM
798
799 if (maxcpus <= 0)
800 return;
618b2595
MD
801
802 crdp = malloc(sizeof(*crdp) * maxcpus);
803 if (!crdp) {
804 if (!warned) {
805 fprintf(stderr, "[error] liburcu: unable to allocate per-CPU pointer array\n");
806 }
807 warned = 1;
d31150b4 808 return;
618b2595
MD
809 }
810
7106ddf8 811 for (cpu = 0; cpu < maxcpus; cpu++) {
618b2595
MD
812 crdp[cpu] = get_cpu_call_rcu_data(cpu);
813 if (crdp[cpu] == NULL)
7106ddf8
PM
814 continue;
815 set_cpu_call_rcu_data(cpu, NULL);
7106ddf8 816 }
618b2595
MD
817 /*
818 * Wait for call_rcu sites acting as RCU readers of the
819 * call_rcu_data to become quiescent.
820 */
821 synchronize_rcu();
822 for (cpu = 0; cpu < maxcpus; cpu++) {
823 if (crdp[cpu] == NULL)
824 continue;
825 call_rcu_data_free(crdp[cpu]);
826 }
827 free(crdp);
7106ddf8
PM
828}
829
81dd9134
KF
830static
831void free_completion(struct urcu_ref *ref)
832{
833 struct call_rcu_completion *completion;
834
835 completion = caa_container_of(ref, struct call_rcu_completion, ref);
836 free(completion);
837}
838
b7f721d9
MD
839static
840void _rcu_barrier_complete(struct rcu_head *head)
841{
842 struct call_rcu_completion_work *work;
843 struct call_rcu_completion *completion;
844
845 work = caa_container_of(head, struct call_rcu_completion_work, head);
846 completion = work->completion;
81dd9134
KF
847 if (!uatomic_sub_return(&completion->barrier_count, 1))
848 call_rcu_completion_wake_up(completion);
849 urcu_ref_put(&completion->ref, free_completion);
b7f721d9
MD
850 free(work);
851}
852
853/*
854 * Wait for all in-flight call_rcu callbacks to complete execution.
855 */
856void rcu_barrier(void)
857{
858 struct call_rcu_data *crdp;
81dd9134 859 struct call_rcu_completion *completion;
63f0fc6d 860 int count = 0;
b7f721d9
MD
861 int was_online;
862
863 /* Put in offline state in QSBR. */
ffb4aaa7 864 was_online = _rcu_read_ongoing();
b7f721d9
MD
865 if (was_online)
866 rcu_thread_offline();
867 /*
868 * Calling a rcu_barrier() within a RCU read-side critical
869 * section is an error.
870 */
ffb4aaa7 871 if (_rcu_read_ongoing()) {
b7f721d9
MD
872 static int warned = 0;
873
874 if (!warned) {
875 fprintf(stderr, "[error] liburcu: rcu_barrier() called from within RCU read-side critical section.\n");
876 }
877 warned = 1;
878 goto online;
879 }
880
81dd9134
KF
881 completion = calloc(sizeof(*completion), 1);
882 if (!completion)
883 urcu_die(errno);
884
b7f721d9
MD
885 call_rcu_lock(&call_rcu_mutex);
886 cds_list_for_each_entry(crdp, &call_rcu_data_list, list)
887 count++;
888
81dd9134
KF
889 /* Referenced by rcu_barrier() and each call_rcu thread. */
890 urcu_ref_set(&completion->ref, count + 1);
891 completion->barrier_count = count;
b7f721d9
MD
892
893 cds_list_for_each_entry(crdp, &call_rcu_data_list, list) {
894 struct call_rcu_completion_work *work;
895
896 work = calloc(sizeof(*work), 1);
63f0fc6d
MD
897 if (!work)
898 urcu_die(errno);
81dd9134 899 work->completion = completion;
b7f721d9 900 _call_rcu(&work->head, _rcu_barrier_complete, crdp);
b7f721d9
MD
901 }
902 call_rcu_unlock(&call_rcu_mutex);
903
b7f721d9
MD
904 /* Wait for them */
905 for (;;) {
81dd9134 906 uatomic_dec(&completion->futex);
b7f721d9
MD
907 /* Decrement futex before reading barrier_count */
908 cmm_smp_mb();
81dd9134 909 if (!uatomic_read(&completion->barrier_count))
b7f721d9 910 break;
81dd9134 911 call_rcu_completion_wait(completion);
b7f721d9 912 }
81dd9134
KF
913
914 urcu_ref_put(&completion->ref, free_completion);
915
b7f721d9
MD
916online:
917 if (was_online)
918 rcu_thread_online();
919}
920
81ad2e19
PM
921/*
922 * Acquire the call_rcu_mutex in order to ensure that the child sees
e85451a1
MD
923 * all of the call_rcu() data structures in a consistent state. Ensure
924 * that all call_rcu threads are in a quiescent state across fork.
81ad2e19
PM
925 * Suitable for pthread_atfork() and friends.
926 */
927void call_rcu_before_fork(void)
928{
e85451a1 929 struct call_rcu_data *crdp;
d0ec0ed2 930 struct urcu_atfork *atfork;
e85451a1 931
81ad2e19 932 call_rcu_lock(&call_rcu_mutex);
e85451a1 933
d0ec0ed2
MD
934 atfork = registered_rculfhash_atfork;
935 if (atfork)
936 atfork->before_fork(atfork->priv);
937
e85451a1
MD
938 cds_list_for_each_entry(crdp, &call_rcu_data_list, list) {
939 uatomic_or(&crdp->flags, URCU_CALL_RCU_PAUSE);
940 cmm_smp_mb__after_uatomic_or();
941 wake_call_rcu_thread(crdp);
942 }
943 cds_list_for_each_entry(crdp, &call_rcu_data_list, list) {
944 while ((uatomic_read(&crdp->flags) & URCU_CALL_RCU_PAUSED) == 0)
109105b7 945 (void) poll(NULL, 0, 1);
e85451a1 946 }
81ad2e19
PM
947}
948
949/*
950 * Clean up call_rcu data structures in the parent of a successful fork()
951 * that is not followed by exec() in the child. Suitable for
952 * pthread_atfork() and friends.
953 */
954void call_rcu_after_fork_parent(void)
955{
e85451a1 956 struct call_rcu_data *crdp;
d0ec0ed2 957 struct urcu_atfork *atfork;
e85451a1
MD
958
959 cds_list_for_each_entry(crdp, &call_rcu_data_list, list)
960 uatomic_and(&crdp->flags, ~URCU_CALL_RCU_PAUSE);
fc236e5e
KF
961 cds_list_for_each_entry(crdp, &call_rcu_data_list, list) {
962 while ((uatomic_read(&crdp->flags) & URCU_CALL_RCU_PAUSED) != 0)
109105b7 963 (void) poll(NULL, 0, 1);
fc236e5e 964 }
d0ec0ed2
MD
965 atfork = registered_rculfhash_atfork;
966 if (atfork)
967 atfork->after_fork_parent(atfork->priv);
81ad2e19
PM
968 call_rcu_unlock(&call_rcu_mutex);
969}
970
7106ddf8
PM
971/*
972 * Clean up call_rcu data structures in the child of a successful fork()
81ad2e19
PM
973 * that is not followed by exec(). Suitable for pthread_atfork() and
974 * friends.
7106ddf8
PM
975 */
976void call_rcu_after_fork_child(void)
977{
077ff173 978 struct call_rcu_data *crdp, *next;
d0ec0ed2 979 struct urcu_atfork *atfork;
7106ddf8 980
81ad2e19
PM
981 /* Release the mutex. */
982 call_rcu_unlock(&call_rcu_mutex);
983
d0ec0ed2
MD
984 atfork = registered_rculfhash_atfork;
985 if (atfork)
986 atfork->after_fork_child(atfork->priv);
987
ad1b9909
LJ
988 /* Do nothing when call_rcu() has not been used */
989 if (cds_list_empty(&call_rcu_data_list))
990 return;
991
7106ddf8
PM
992 /*
993 * Allocate a new default call_rcu_data structure in order
994 * to get a working call_rcu thread to go with it.
995 */
996 default_call_rcu_data = NULL;
997 (void)get_default_call_rcu_data();
998
60af049d
LJ
999 /* Cleanup call_rcu_data pointers before use */
1000 maxcpus_reset();
1001 free(per_cpu_call_rcu_data);
618b2595 1002 rcu_set_pointer(&per_cpu_call_rcu_data, NULL);
bd252a04 1003 URCU_TLS(thread_call_rcu_data) = NULL;
60af049d 1004
e85451a1
MD
1005 /*
1006 * Dispose of all of the rest of the call_rcu_data structures.
1007 * Leftover call_rcu callbacks will be merged into the new
1008 * default call_rcu thread queue.
1009 */
077ff173 1010 cds_list_for_each_entry_safe(crdp, next, &call_rcu_data_list, list) {
7106ddf8 1011 if (crdp == default_call_rcu_data)
077ff173 1012 continue;
2870aa1e 1013 uatomic_set(&crdp->flags, URCU_CALL_RCU_STOPPED);
7106ddf8 1014 call_rcu_data_free(crdp);
b57aee66
PM
1015 }
1016}
d0ec0ed2
MD
1017
1018void urcu_register_rculfhash_atfork(struct urcu_atfork *atfork)
1019{
1020 call_rcu_lock(&call_rcu_mutex);
1021 if (registered_rculfhash_atfork_refcount++)
1022 goto end;
1023 registered_rculfhash_atfork = atfork;
1024end:
1025 call_rcu_unlock(&call_rcu_mutex);
1026}
1027
70469b43 1028void urcu_unregister_rculfhash_atfork(struct urcu_atfork *atfork __attribute__((unused)))
d0ec0ed2
MD
1029{
1030 call_rcu_lock(&call_rcu_mutex);
1031 if (--registered_rculfhash_atfork_refcount)
1032 goto end;
1033 registered_rculfhash_atfork = NULL;
1034end:
1035 call_rcu_unlock(&call_rcu_mutex);
1036}
This page took 0.092477 seconds and 4 git commands to generate.