4 * Userspace RCU library - batch memory reclamation with kernel API
6 * Copyright (c) 2010 Paul E. McKenney <paulmck@linux.vnet.ibm.com>
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.
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.
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
38 #include "urcu/wfqueue.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"
46 /* Data structure that identifies a call_rcu thread. */
48 struct call_rcu_data
{
49 struct cds_wfq_queue cbs
;
52 unsigned long qlen
; /* maintained for debugging. */
55 struct cds_list_head list
;
56 } __attribute__((aligned(CAA_CACHE_LINE_SIZE
)));
59 * List of all call_rcu_data structures to keep valgrind happy.
60 * Protected by call_rcu_mutex.
63 CDS_LIST_HEAD(call_rcu_data_list
);
65 /* Link a thread using call_rcu() to its call_rcu thread. */
67 static DEFINE_URCU_TLS(struct call_rcu_data
*, thread_call_rcu_data
);
69 /* Guard call_rcu thread creation. */
71 static pthread_mutex_t call_rcu_mutex
= PTHREAD_MUTEX_INITIALIZER
;
73 /* If a given thread does not have its own call_rcu thread, this is default. */
75 static struct call_rcu_data
*default_call_rcu_data
;
78 * If the sched_getcpu() and sysconf(_SC_NPROCESSORS_CONF) calls are
79 * available, then we can have call_rcu threads assigned to individual
80 * CPUs rather than only to specific threads.
83 #if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF)
86 * Pointer to array of pointers to per-CPU call_rcu_data structures
87 * and # CPUs. per_cpu_call_rcu_data is a RCU-protected pointer to an
88 * array of RCU-protected pointers to call_rcu_data. call_rcu acts as a
89 * RCU read-side and reads per_cpu_call_rcu_data and the per-cpu pointer
90 * without mutex. The call_rcu_mutex protects updates.
93 static struct call_rcu_data
**per_cpu_call_rcu_data
;
96 static void maxcpus_reset(void)
101 /* Allocate the array if it has not already been allocated. */
103 static void alloc_cpu_call_rcu_data(void)
105 struct call_rcu_data
**p
;
106 static int warned
= 0;
110 maxcpus
= sysconf(_SC_NPROCESSORS_CONF
);
114 p
= malloc(maxcpus
* sizeof(*per_cpu_call_rcu_data
));
116 memset(p
, '\0', maxcpus
* sizeof(*per_cpu_call_rcu_data
));
117 rcu_set_pointer(&per_cpu_call_rcu_data
, p
);
120 fprintf(stderr
, "[error] liburcu: unable to allocate per-CPU pointer array\n");
126 #else /* #if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF) */
129 * per_cpu_call_rcu_data should be constant, but some functions below, used both
130 * for cases where cpu number is available and not available, assume it it not
133 static struct call_rcu_data
**per_cpu_call_rcu_data
= NULL
;
134 static const long maxcpus
= -1;
136 static void maxcpus_reset(void)
140 static void alloc_cpu_call_rcu_data(void)
144 static int sched_getcpu(void)
149 #endif /* #else #if defined(HAVE_SCHED_GETCPU) && defined(HAVE_SYSCONF) */
151 /* Acquire the specified pthread mutex. */
153 static void call_rcu_lock(pthread_mutex_t
*pmp
)
157 ret
= pthread_mutex_lock(pmp
);
162 /* Release the specified pthread mutex. */
164 static void call_rcu_unlock(pthread_mutex_t
*pmp
)
168 ret
= pthread_mutex_unlock(pmp
);
173 #if HAVE_SCHED_SETAFFINITY
175 int set_thread_cpu_affinity(struct call_rcu_data
*crdp
)
179 if (crdp
->cpu_affinity
< 0)
183 CPU_SET(crdp
->cpu_affinity
, &mask
);
184 #if SCHED_SETAFFINITY_ARGS == 2
185 return sched_setaffinity(0, &mask
);
187 return sched_setaffinity(0, sizeof(mask
), &mask
);
192 int set_thread_cpu_affinity(struct call_rcu_data
*crdp
)
198 static void call_rcu_wait(struct call_rcu_data
*crdp
)
200 /* Read call_rcu list before read futex */
202 if (uatomic_read(&crdp
->futex
) == -1)
203 futex_async(&crdp
->futex
, FUTEX_WAIT
, -1,
207 static void call_rcu_wake_up(struct call_rcu_data
*crdp
)
209 /* Write to call_rcu list before reading/writing futex */
211 if (caa_unlikely(uatomic_read(&crdp
->futex
) == -1)) {
212 uatomic_set(&crdp
->futex
, 0);
213 futex_async(&crdp
->futex
, FUTEX_WAKE
, 1,
218 /* This is the code run by each call_rcu thread. */
220 static void *call_rcu_thread(void *arg
)
222 unsigned long cbcount
;
223 struct cds_wfq_node
*cbs
;
224 struct cds_wfq_node
**cbs_tail
;
225 struct call_rcu_data
*crdp
= (struct call_rcu_data
*)arg
;
226 struct rcu_head
*rhp
;
227 int rt
= !!(uatomic_read(&crdp
->flags
) & URCU_CALL_RCU_RT
);
230 ret
= set_thread_cpu_affinity(crdp
);
235 * If callbacks take a read-side lock, we need to be registered.
237 rcu_register_thread();
239 URCU_TLS(thread_call_rcu_data
) = crdp
;
241 uatomic_dec(&crdp
->futex
);
242 /* Decrement futex before reading call_rcu list */
246 if (&crdp
->cbs
.head
!= _CMM_LOAD_SHARED(crdp
->cbs
.tail
)) {
247 while ((cbs
= _CMM_LOAD_SHARED(crdp
->cbs
.head
)) == NULL
)
249 _CMM_STORE_SHARED(crdp
->cbs
.head
, NULL
);
250 cbs_tail
= (struct cds_wfq_node
**)
251 uatomic_xchg(&crdp
->cbs
.tail
, &crdp
->cbs
.head
);
255 while (cbs
->next
== NULL
&&
256 &cbs
->next
!= cbs_tail
)
258 if (cbs
== &crdp
->cbs
.dummy
) {
262 rhp
= (struct rcu_head
*)cbs
;
266 } while (cbs
!= NULL
);
267 uatomic_sub(&crdp
->qlen
, cbcount
);
269 if (uatomic_read(&crdp
->flags
) & URCU_CALL_RCU_STOP
)
271 rcu_thread_offline();
274 == _CMM_LOAD_SHARED(crdp
->cbs
.tail
)) {
277 uatomic_dec(&crdp
->futex
);
279 * Decrement futex before reading
293 * Read call_rcu list before write futex.
296 uatomic_set(&crdp
->futex
, 0);
298 uatomic_or(&crdp
->flags
, URCU_CALL_RCU_STOPPED
);
299 rcu_unregister_thread();
304 * Create both a call_rcu thread and the corresponding call_rcu_data
305 * structure, linking the structure in as specified. Caller must hold
309 static void call_rcu_data_init(struct call_rcu_data
**crdpp
,
313 struct call_rcu_data
*crdp
;
316 crdp
= malloc(sizeof(*crdp
));
319 memset(crdp
, '\0', sizeof(*crdp
));
320 cds_wfq_init(&crdp
->cbs
);
324 cds_list_add(&crdp
->list
, &call_rcu_data_list
);
325 crdp
->cpu_affinity
= cpu_affinity
;
326 cmm_smp_mb(); /* Structure initialized before pointer is planted. */
328 ret
= pthread_create(&crdp
->tid
, NULL
, call_rcu_thread
, crdp
);
334 * Return a pointer to the call_rcu_data structure for the specified
335 * CPU, returning NULL if there is none. We cannot automatically
336 * created it because the platform we are running on might not define
339 * The call to this function and use of the returned call_rcu_data
340 * should be protected by RCU read-side lock.
343 struct call_rcu_data
*get_cpu_call_rcu_data(int cpu
)
345 static int warned
= 0;
346 struct call_rcu_data
**pcpu_crdp
;
348 pcpu_crdp
= rcu_dereference(per_cpu_call_rcu_data
);
349 if (pcpu_crdp
== NULL
)
351 if (!warned
&& maxcpus
> 0 && (cpu
< 0 || maxcpus
<= cpu
)) {
352 fprintf(stderr
, "[error] liburcu: get CPU # out of range\n");
355 if (cpu
< 0 || maxcpus
<= cpu
)
357 return rcu_dereference(pcpu_crdp
[cpu
]);
361 * Return the tid corresponding to the call_rcu thread whose
362 * call_rcu_data structure is specified.
365 pthread_t
get_call_rcu_thread(struct call_rcu_data
*crdp
)
371 * Create a call_rcu_data structure (with thread) and return a pointer.
374 static struct call_rcu_data
*__create_call_rcu_data(unsigned long flags
,
377 struct call_rcu_data
*crdp
;
379 call_rcu_data_init(&crdp
, flags
, cpu_affinity
);
383 struct call_rcu_data
*create_call_rcu_data(unsigned long flags
,
386 struct call_rcu_data
*crdp
;
388 call_rcu_lock(&call_rcu_mutex
);
389 crdp
= __create_call_rcu_data(flags
, cpu_affinity
);
390 call_rcu_unlock(&call_rcu_mutex
);
395 * Set the specified CPU to use the specified call_rcu_data structure.
397 * Use NULL to remove a CPU's call_rcu_data structure, but it is
398 * the caller's responsibility to dispose of the removed structure.
399 * Use get_cpu_call_rcu_data() to obtain a pointer to the old structure
400 * (prior to NULLing it out, of course).
402 * The caller must wait for a grace-period to pass between return from
403 * set_cpu_call_rcu_data() and call to call_rcu_data_free() passing the
404 * previous call rcu data as argument.
407 int set_cpu_call_rcu_data(int cpu
, struct call_rcu_data
*crdp
)
409 static int warned
= 0;
411 call_rcu_lock(&call_rcu_mutex
);
412 alloc_cpu_call_rcu_data();
413 if (cpu
< 0 || maxcpus
<= cpu
) {
415 fprintf(stderr
, "[error] liburcu: set CPU # out of range\n");
418 call_rcu_unlock(&call_rcu_mutex
);
423 if (per_cpu_call_rcu_data
== NULL
) {
424 call_rcu_unlock(&call_rcu_mutex
);
429 if (per_cpu_call_rcu_data
[cpu
] != NULL
&& crdp
!= NULL
) {
430 call_rcu_unlock(&call_rcu_mutex
);
435 rcu_set_pointer(&per_cpu_call_rcu_data
[cpu
], crdp
);
436 call_rcu_unlock(&call_rcu_mutex
);
441 * Return a pointer to the default call_rcu_data structure, creating
442 * one if need be. Because we never free call_rcu_data structures,
443 * we don't need to be in an RCU read-side critical section.
446 struct call_rcu_data
*get_default_call_rcu_data(void)
448 if (default_call_rcu_data
!= NULL
)
449 return rcu_dereference(default_call_rcu_data
);
450 call_rcu_lock(&call_rcu_mutex
);
451 if (default_call_rcu_data
!= NULL
) {
452 call_rcu_unlock(&call_rcu_mutex
);
453 return default_call_rcu_data
;
455 call_rcu_data_init(&default_call_rcu_data
, 0, -1);
456 call_rcu_unlock(&call_rcu_mutex
);
457 return default_call_rcu_data
;
461 * Return the call_rcu_data structure that applies to the currently
462 * running thread. Any call_rcu_data structure assigned specifically
463 * to this thread has first priority, followed by any call_rcu_data
464 * structure assigned to the CPU on which the thread is running,
465 * followed by the default call_rcu_data structure. If there is not
466 * yet a default call_rcu_data structure, one will be created.
468 * Calls to this function and use of the returned call_rcu_data should
469 * be protected by RCU read-side lock.
471 struct call_rcu_data
*get_call_rcu_data(void)
473 struct call_rcu_data
*crd
;
475 if (URCU_TLS(thread_call_rcu_data
) != NULL
)
476 return URCU_TLS(thread_call_rcu_data
);
479 crd
= get_cpu_call_rcu_data(sched_getcpu());
484 return get_default_call_rcu_data();
488 * Return a pointer to this task's call_rcu_data if there is one.
491 struct call_rcu_data
*get_thread_call_rcu_data(void)
493 return URCU_TLS(thread_call_rcu_data
);
497 * Set this task's call_rcu_data structure as specified, regardless
498 * of whether or not this task already had one. (This allows switching
499 * to and from real-time call_rcu threads, for example.)
501 * Use NULL to remove a thread's call_rcu_data structure, but it is
502 * the caller's responsibility to dispose of the removed structure.
503 * Use get_thread_call_rcu_data() to obtain a pointer to the old structure
504 * (prior to NULLing it out, of course).
507 void set_thread_call_rcu_data(struct call_rcu_data
*crdp
)
509 URCU_TLS(thread_call_rcu_data
) = crdp
;
513 * Create a separate call_rcu thread for each CPU. This does not
514 * replace a pre-existing call_rcu thread -- use the set_cpu_call_rcu_data()
515 * function if you want that behavior. Should be paired with
516 * free_all_cpu_call_rcu_data() to teardown these call_rcu worker
520 int create_all_cpu_call_rcu_data(unsigned long flags
)
523 struct call_rcu_data
*crdp
;
526 call_rcu_lock(&call_rcu_mutex
);
527 alloc_cpu_call_rcu_data();
528 call_rcu_unlock(&call_rcu_mutex
);
533 if (per_cpu_call_rcu_data
== NULL
) {
537 for (i
= 0; i
< maxcpus
; i
++) {
538 call_rcu_lock(&call_rcu_mutex
);
539 if (get_cpu_call_rcu_data(i
)) {
540 call_rcu_unlock(&call_rcu_mutex
);
543 crdp
= __create_call_rcu_data(flags
, i
);
545 call_rcu_unlock(&call_rcu_mutex
);
549 call_rcu_unlock(&call_rcu_mutex
);
550 if ((ret
= set_cpu_call_rcu_data(i
, crdp
)) != 0) {
551 call_rcu_data_free(crdp
);
553 /* it has been created by other thread */
564 * Wake up the call_rcu thread corresponding to the specified
565 * call_rcu_data structure.
567 static void wake_call_rcu_thread(struct call_rcu_data
*crdp
)
569 if (!(_CMM_LOAD_SHARED(crdp
->flags
) & URCU_CALL_RCU_RT
))
570 call_rcu_wake_up(crdp
);
574 * Schedule a function to be invoked after a following grace period.
575 * This is the only function that must be called -- the others are
576 * only present to allow applications to tune their use of RCU for
577 * maximum performance.
579 * Note that unless a call_rcu thread has not already been created,
580 * the first invocation of call_rcu() will create one. So, if you
581 * need the first invocation of call_rcu() to be fast, make sure
582 * to create a call_rcu thread first. One way to accomplish this is
583 * "get_call_rcu_data();", and another is create_all_cpu_call_rcu_data().
585 * call_rcu must be called by registered RCU read-side threads.
588 void call_rcu(struct rcu_head
*head
,
589 void (*func
)(struct rcu_head
*head
))
591 struct call_rcu_data
*crdp
;
593 cds_wfq_node_init(&head
->next
);
595 /* Holding rcu read-side lock across use of per-cpu crdp */
597 crdp
= get_call_rcu_data();
598 cds_wfq_enqueue(&crdp
->cbs
, &head
->next
);
599 uatomic_inc(&crdp
->qlen
);
600 wake_call_rcu_thread(crdp
);
605 * Free up the specified call_rcu_data structure, terminating the
606 * associated call_rcu thread. The caller must have previously
607 * removed the call_rcu_data structure from per-thread or per-CPU
608 * usage. For example, set_cpu_call_rcu_data(cpu, NULL) for per-CPU
609 * call_rcu_data structures or set_thread_call_rcu_data(NULL) for
610 * per-thread call_rcu_data structures.
612 * We silently refuse to free up the default call_rcu_data structure
613 * because that is where we put any leftover callbacks. Note that
614 * the possibility of self-spawning callbacks makes it impossible
615 * to execute all the callbacks in finite time without putting any
616 * newly spawned callbacks somewhere else. The "somewhere else" of
617 * last resort is the default call_rcu_data structure.
619 * We also silently refuse to free NULL pointers. This simplifies
622 * The caller must wait for a grace-period to pass between return from
623 * set_cpu_call_rcu_data() and call to call_rcu_data_free() passing the
624 * previous call rcu data as argument.
626 void call_rcu_data_free(struct call_rcu_data
*crdp
)
628 struct cds_wfq_node
*cbs
;
629 struct cds_wfq_node
**cbs_tail
;
630 struct cds_wfq_node
**cbs_endprev
;
632 if (crdp
== NULL
|| crdp
== default_call_rcu_data
) {
635 if ((uatomic_read(&crdp
->flags
) & URCU_CALL_RCU_STOPPED
) == 0) {
636 uatomic_or(&crdp
->flags
, URCU_CALL_RCU_STOP
);
637 wake_call_rcu_thread(crdp
);
638 while ((uatomic_read(&crdp
->flags
) & URCU_CALL_RCU_STOPPED
) == 0)
641 if (&crdp
->cbs
.head
!= _CMM_LOAD_SHARED(crdp
->cbs
.tail
)) {
642 while ((cbs
= _CMM_LOAD_SHARED(crdp
->cbs
.head
)) == NULL
)
644 _CMM_STORE_SHARED(crdp
->cbs
.head
, NULL
);
645 cbs_tail
= (struct cds_wfq_node
**)
646 uatomic_xchg(&crdp
->cbs
.tail
, &crdp
->cbs
.head
);
647 /* Create default call rcu data if need be */
648 (void) get_default_call_rcu_data();
649 cbs_endprev
= (struct cds_wfq_node
**)
650 uatomic_xchg(&default_call_rcu_data
->cbs
.tail
,
652 _CMM_STORE_SHARED(*cbs_endprev
, cbs
);
653 uatomic_add(&default_call_rcu_data
->qlen
,
654 uatomic_read(&crdp
->qlen
));
655 wake_call_rcu_thread(default_call_rcu_data
);
658 call_rcu_lock(&call_rcu_mutex
);
659 cds_list_del(&crdp
->list
);
660 call_rcu_unlock(&call_rcu_mutex
);
666 * Clean up all the per-CPU call_rcu threads.
668 void free_all_cpu_call_rcu_data(void)
671 struct call_rcu_data
**crdp
;
672 static int warned
= 0;
677 crdp
= malloc(sizeof(*crdp
) * maxcpus
);
680 fprintf(stderr
, "[error] liburcu: unable to allocate per-CPU pointer array\n");
686 for (cpu
= 0; cpu
< maxcpus
; cpu
++) {
687 crdp
[cpu
] = get_cpu_call_rcu_data(cpu
);
688 if (crdp
[cpu
] == NULL
)
690 set_cpu_call_rcu_data(cpu
, NULL
);
693 * Wait for call_rcu sites acting as RCU readers of the
694 * call_rcu_data to become quiescent.
697 for (cpu
= 0; cpu
< maxcpus
; cpu
++) {
698 if (crdp
[cpu
] == NULL
)
700 call_rcu_data_free(crdp
[cpu
]);
706 * Acquire the call_rcu_mutex in order to ensure that the child sees
707 * all of the call_rcu() data structures in a consistent state.
708 * Suitable for pthread_atfork() and friends.
710 void call_rcu_before_fork(void)
712 call_rcu_lock(&call_rcu_mutex
);
716 * Clean up call_rcu data structures in the parent of a successful fork()
717 * that is not followed by exec() in the child. Suitable for
718 * pthread_atfork() and friends.
720 void call_rcu_after_fork_parent(void)
722 call_rcu_unlock(&call_rcu_mutex
);
726 * Clean up call_rcu data structures in the child of a successful fork()
727 * that is not followed by exec(). Suitable for pthread_atfork() and
730 void call_rcu_after_fork_child(void)
732 struct call_rcu_data
*crdp
, *next
;
734 /* Release the mutex. */
735 call_rcu_unlock(&call_rcu_mutex
);
737 /* Do nothing when call_rcu() has not been used */
738 if (cds_list_empty(&call_rcu_data_list
))
742 * Allocate a new default call_rcu_data structure in order
743 * to get a working call_rcu thread to go with it.
745 default_call_rcu_data
= NULL
;
746 (void)get_default_call_rcu_data();
748 /* Cleanup call_rcu_data pointers before use */
750 free(per_cpu_call_rcu_data
);
751 rcu_set_pointer(&per_cpu_call_rcu_data
, NULL
);
752 URCU_TLS(thread_call_rcu_data
) = NULL
;
754 /* Dispose of all of the rest of the call_rcu_data structures. */
755 cds_list_for_each_entry_safe(crdp
, next
, &call_rcu_data_list
, list
) {
756 if (crdp
== default_call_rcu_data
)
758 uatomic_set(&crdp
->flags
, URCU_CALL_RCU_STOPPED
);
759 call_rcu_data_free(crdp
);