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