uatomic/x86: Remove redundant memory barriers
[urcu.git] / src / urcu-call-rcu-impl.h
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
23 #define _LGPL_SOURCE
24 #include <stdio.h>
25 #include <pthread.h>
26 #include <signal.h>
27 #include <stdlib.h>
28 #include <stdint.h>
29 #include <string.h>
30 #include <errno.h>
31 #include <poll.h>
32 #include <sys/time.h>
33 #include <unistd.h>
34 #include <sched.h>
35
36 #include "compat-getcpu.h"
37 #include <urcu/assert.h>
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>
45 #include "urcu-die.h"
46 #include "urcu-utils.h"
47 #include "compat-smp.h"
48
49 #define SET_AFFINITY_CHECK_PERIOD (1U << 8) /* 256 */
50 #define SET_AFFINITY_CHECK_PERIOD_MASK (SET_AFFINITY_CHECK_PERIOD - 1)
51
52 /* Data structure that identifies a call_rcu thread. */
53
54 struct call_rcu_data {
55 /*
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.
61 */
62 struct cds_wfcq_tail cbs_tail;
63 struct cds_wfcq_head cbs_head;
64 unsigned long flags;
65 int32_t futex;
66 unsigned long qlen; /* maintained for debugging. */
67 pthread_t tid;
68 int cpu_affinity;
69 unsigned long gp_count;
70 struct cds_list_head list;
71 } __attribute__((aligned(CAA_CACHE_LINE_SIZE)));
72
73 struct call_rcu_completion {
74 int barrier_count;
75 int32_t futex;
76 struct urcu_ref ref;
77 };
78
79 struct call_rcu_completion_work {
80 struct rcu_head head;
81 struct call_rcu_completion *completion;
82 };
83
84 /*
85 * List of all call_rcu_data structures to keep valgrind happy.
86 * Protected by call_rcu_mutex.
87 */
88
89 static CDS_LIST_HEAD(call_rcu_data_list);
90
91 /* Link a thread using call_rcu() to its call_rcu thread. */
92
93 static DEFINE_URCU_TLS(struct call_rcu_data *, thread_call_rcu_data);
94
95 /*
96 * Guard call_rcu thread creation and atfork handlers.
97 */
98 static 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
102 static struct call_rcu_data *default_call_rcu_data;
103
104 static struct urcu_atfork *registered_rculfhash_atfork;
105 static unsigned long registered_rculfhash_atfork_refcount;
106
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
113 #if defined(HAVE_SYSCONF) && (defined(HAVE_SCHED_GETCPU) || defined(HAVE_GETCPUID))
114
115 /*
116 * Pointer to array of pointers to per-CPU call_rcu_data structures
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.
121 */
122
123 static struct call_rcu_data **per_cpu_call_rcu_data;
124 static long cpus_array_len;
125
126 static void cpus_array_len_reset(void)
127 {
128 cpus_array_len = 0;
129 }
130
131 /* Allocate the array if it has not already been allocated. */
132
133 static void alloc_cpu_call_rcu_data(void)
134 {
135 struct call_rcu_data **p;
136 static int warned = 0;
137
138 if (cpus_array_len != 0)
139 return;
140 cpus_array_len = get_possible_cpus_array_len();
141 if (cpus_array_len <= 0) {
142 return;
143 }
144 p = malloc(cpus_array_len * sizeof(*per_cpu_call_rcu_data));
145 if (p != NULL) {
146 memset(p, '\0', cpus_array_len * sizeof(*per_cpu_call_rcu_data));
147 rcu_set_pointer(&per_cpu_call_rcu_data, p);
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
156 #else /* #if defined(HAVE_SYSCONF) && defined(HAVE_SCHED_GETCPU) */
157
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 */
163 static struct call_rcu_data **per_cpu_call_rcu_data = NULL;
164 static const long cpus_array_len = -1;
165
166 static void cpus_array_len_reset(void)
167 {
168 }
169
170 static void alloc_cpu_call_rcu_data(void)
171 {
172 }
173
174 #endif /* #else #if defined(HAVE_SYSCONF) && defined(HAVE_SCHED_GETCPU) */
175
176 /* Acquire the specified pthread mutex. */
177
178 static void call_rcu_lock(pthread_mutex_t *pmp)
179 {
180 int ret;
181
182 ret = pthread_mutex_lock(pmp);
183 if (ret)
184 urcu_die(ret);
185 }
186
187 /* Release the specified pthread mutex. */
188
189 static void call_rcu_unlock(pthread_mutex_t *pmp)
190 {
191 int ret;
192
193 ret = pthread_mutex_unlock(pmp);
194 if (ret)
195 urcu_die(ret);
196 }
197
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 */
203 #ifdef HAVE_SCHED_SETAFFINITY
204 static
205 int set_thread_cpu_affinity(struct call_rcu_data *crdp)
206 {
207 cpu_set_t mask;
208 int ret;
209
210 if (crdp->cpu_affinity < 0)
211 return 0;
212 if (++crdp->gp_count & SET_AFFINITY_CHECK_PERIOD_MASK)
213 return 0;
214 if (urcu_sched_getcpu() == crdp->cpu_affinity)
215 return 0;
216
217 CPU_ZERO(&mask);
218 CPU_SET(crdp->cpu_affinity, &mask);
219 ret = sched_setaffinity(0, sizeof(mask), &mask);
220
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;
231 }
232 #else
233 static
234 int set_thread_cpu_affinity(struct call_rcu_data *crdp __attribute__((unused)))
235 {
236 return 0;
237 }
238 #endif
239
240 static void call_rcu_wait(struct call_rcu_data *crdp)
241 {
242 /* Read call_rcu list before read futex */
243 cmm_smp_mb();
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 }
256 switch (errno) {
257 case EAGAIN:
258 /* Value already changed. */
259 return;
260 case EINTR:
261 /* Retry if interrupted by signal. */
262 break; /* Get out of switch. Check again. */
263 default:
264 /* Unexpected error. */
265 urcu_die(errno);
266 }
267 }
268 }
269
270 static 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();
274 if (caa_unlikely(uatomic_read(&crdp->futex) == -1)) {
275 uatomic_set(&crdp->futex, 0);
276 if (futex_async(&crdp->futex, FUTEX_WAKE, 1,
277 NULL, NULL, 0) < 0)
278 urcu_die(errno);
279 }
280 }
281
282 static void call_rcu_completion_wait(struct call_rcu_completion *completion)
283 {
284 /* Read completion barrier count before read futex */
285 cmm_smp_mb();
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 }
298 switch (errno) {
299 case EAGAIN:
300 /* Value already changed. */
301 return;
302 case EINTR:
303 /* Retry if interrupted by signal. */
304 break; /* Get out of switch. Check again. */
305 default:
306 /* Unexpected error. */
307 urcu_die(errno);
308 }
309 }
310 }
311
312 static 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);
318 if (futex_async(&completion->futex, FUTEX_WAKE, 1,
319 NULL, NULL, 0) < 0)
320 urcu_die(errno);
321 }
322 }
323
324 /* This is the code run by each call_rcu thread. */
325
326 static void *call_rcu_thread(void *arg)
327 {
328 unsigned long cbcount;
329 struct call_rcu_data *crdp = (struct call_rcu_data *) arg;
330 int rt = !!(uatomic_read(&crdp->flags) & URCU_CALL_RCU_RT);
331
332 if (set_thread_cpu_affinity(crdp))
333 urcu_die(errno);
334
335 /*
336 * If callbacks take a read-side lock, we need to be registered.
337 */
338 rcu_register_thread();
339
340 URCU_TLS(thread_call_rcu_data) = crdp;
341 if (!rt) {
342 uatomic_dec(&crdp->futex);
343 /* Decrement futex before reading call_rcu list */
344 cmm_smp_mb();
345 }
346 for (;;) {
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;
350 enum cds_wfcq_ret splice_ret;
351
352 if (set_thread_cpu_affinity(crdp))
353 urcu_die(errno);
354
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)
366 (void) poll(NULL, 0, 1);
367 uatomic_and(&crdp->flags, ~URCU_CALL_RCU_PAUSED);
368 cmm_smp_mb__after_uatomic_and();
369 rcu_register_thread();
370 }
371
372 cds_wfcq_init(&cbs_tmp_head, &cbs_tmp_tail);
373 splice_ret = __cds_wfcq_splice_blocking(&cbs_tmp_head,
374 &cbs_tmp_tail, &crdp->cbs_head, &crdp->cbs_tail);
375 urcu_posix_assert(splice_ret != CDS_WFCQ_RET_WOULDBLOCK);
376 urcu_posix_assert(splice_ret != CDS_WFCQ_RET_DEST_NON_EMPTY);
377 if (splice_ret != CDS_WFCQ_RET_SRC_EMPTY) {
378 synchronize_rcu();
379 cbcount = 0;
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);
386 rhp->func(rhp);
387 cbcount++;
388 }
389 uatomic_sub(&crdp->qlen, cbcount);
390 }
391 if (uatomic_read(&crdp->flags) & URCU_CALL_RCU_STOP)
392 break;
393 rcu_thread_offline();
394 if (!rt) {
395 if (cds_wfcq_empty(&crdp->cbs_head,
396 &crdp->cbs_tail)) {
397 call_rcu_wait(crdp);
398 (void) poll(NULL, 0, 10);
399 uatomic_dec(&crdp->futex);
400 /*
401 * Decrement futex before reading
402 * call_rcu list.
403 */
404 cmm_smp_mb();
405 } else {
406 (void) poll(NULL, 0, 10);
407 }
408 } else {
409 (void) poll(NULL, 0, 10);
410 }
411 rcu_thread_online();
412 }
413 if (!rt) {
414 /*
415 * Read call_rcu list before write futex.
416 */
417 cmm_smp_mb();
418 uatomic_set(&crdp->futex, 0);
419 }
420 uatomic_or(&crdp->flags, URCU_CALL_RCU_STOPPED);
421 rcu_unregister_thread();
422 return NULL;
423 }
424
425 /*
426 * Create both a call_rcu thread and the corresponding call_rcu_data
427 * structure, linking the structure in as specified. Caller must hold
428 * call_rcu_mutex.
429 */
430
431 static void call_rcu_data_init(struct call_rcu_data **crdpp,
432 unsigned long flags,
433 int cpu_affinity)
434 {
435 struct call_rcu_data *crdp;
436 int ret;
437 sigset_t newmask, oldmask;
438
439 crdp = malloc(sizeof(*crdp));
440 if (crdp == NULL)
441 urcu_die(errno);
442 memset(crdp, '\0', sizeof(*crdp));
443 cds_wfcq_init(&crdp->cbs_head, &crdp->cbs_tail);
444 crdp->qlen = 0;
445 crdp->futex = 0;
446 crdp->flags = flags;
447 cds_list_add(&crdp->list, &call_rcu_data_list);
448 crdp->cpu_affinity = cpu_affinity;
449 crdp->gp_count = 0;
450 cmm_smp_mb(); /* Structure initialized before pointer is planted. */
451 *crdpp = crdp;
452
453 ret = sigfillset(&newmask);
454 urcu_posix_assert(!ret);
455 ret = pthread_sigmask(SIG_BLOCK, &newmask, &oldmask);
456 urcu_posix_assert(!ret);
457
458 ret = pthread_create(&crdp->tid, NULL, call_rcu_thread, crdp);
459 if (ret)
460 urcu_die(ret);
461
462 ret = pthread_sigmask(SIG_SETMASK, &oldmask, NULL);
463 urcu_posix_assert(!ret);
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
470 * urcu_sched_getcpu().
471 *
472 * The call to this function and use of the returned call_rcu_data
473 * should be protected by RCU read-side lock.
474 */
475
476 struct call_rcu_data *get_cpu_call_rcu_data(int cpu)
477 {
478 static int warned = 0;
479 struct call_rcu_data **pcpu_crdp;
480
481 pcpu_crdp = rcu_dereference(per_cpu_call_rcu_data);
482 if (pcpu_crdp == NULL)
483 return NULL;
484 if (!warned && cpus_array_len > 0 && (cpu < 0 || cpus_array_len <= cpu)) {
485 fprintf(stderr, "[error] liburcu: get CPU # out of range\n");
486 warned = 1;
487 }
488 if (cpu < 0 || cpus_array_len <= cpu)
489 return NULL;
490 return rcu_dereference(pcpu_crdp[cpu]);
491 }
492
493 /*
494 * Return the tid corresponding to the call_rcu thread whose
495 * call_rcu_data structure is specified.
496 */
497
498 pthread_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
507 static struct call_rcu_data *__create_call_rcu_data(unsigned long flags,
508 int cpu_affinity)
509 {
510 struct call_rcu_data *crdp;
511
512 call_rcu_data_init(&crdp, flags, cpu_affinity);
513 return crdp;
514 }
515
516 struct call_rcu_data *create_call_rcu_data(unsigned long flags,
517 int cpu_affinity)
518 {
519 struct call_rcu_data *crdp;
520
521 call_rcu_lock(&call_rcu_mutex);
522 crdp = __create_call_rcu_data(flags, cpu_affinity);
523 call_rcu_unlock(&call_rcu_mutex);
524 return crdp;
525 }
526
527 /*
528 * Set the specified CPU to use the specified call_rcu_data structure.
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).
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.
538 */
539
540 int set_cpu_call_rcu_data(int cpu, struct call_rcu_data *crdp)
541 {
542 static int warned = 0;
543
544 call_rcu_lock(&call_rcu_mutex);
545 alloc_cpu_call_rcu_data();
546 if (cpu < 0 || cpus_array_len <= cpu) {
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 }
555
556 if (per_cpu_call_rcu_data == NULL) {
557 call_rcu_unlock(&call_rcu_mutex);
558 errno = ENOMEM;
559 return -ENOMEM;
560 }
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
568 rcu_set_pointer(&per_cpu_call_rcu_data[cpu], crdp);
569 call_rcu_unlock(&call_rcu_mutex);
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
579 struct 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 }
588 call_rcu_data_init(&default_call_rcu_data, 0, -1);
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.
600 *
601 * Calls to this function and use of the returned call_rcu_data should
602 * be protected by RCU read-side lock.
603 */
604 struct call_rcu_data *get_call_rcu_data(void)
605 {
606 struct call_rcu_data *crd;
607
608 if (URCU_TLS(thread_call_rcu_data) != NULL)
609 return URCU_TLS(thread_call_rcu_data);
610
611 if (cpus_array_len > 0) {
612 crd = get_cpu_call_rcu_data(urcu_sched_getcpu());
613 if (crd)
614 return crd;
615 }
616
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
624 struct call_rcu_data *get_thread_call_rcu_data(void)
625 {
626 return URCU_TLS(thread_call_rcu_data);
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.)
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).
638 */
639
640 void set_thread_call_rcu_data(struct call_rcu_data *crdp)
641 {
642 URCU_TLS(thread_call_rcu_data) = crdp;
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()
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.
651 */
652
653 int 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);
662 if (cpus_array_len <= 0) {
663 errno = EINVAL;
664 return -EINVAL;
665 }
666 if (per_cpu_call_rcu_data == NULL) {
667 errno = ENOMEM;
668 return -ENOMEM;
669 }
670 for (i = 0; i < cpus_array_len; i++) {
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 }
676 crdp = __create_call_rcu_data(flags, i);
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) {
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;
691 }
692 }
693 return 0;
694 }
695
696 /*
697 * Wake up the call_rcu thread corresponding to the specified
698 * call_rcu_data structure.
699 */
700 static void wake_call_rcu_thread(struct call_rcu_data *crdp)
701 {
702 if (!(_CMM_LOAD_SHARED(crdp->flags) & URCU_CALL_RCU_RT))
703 call_rcu_wake_up(crdp);
704 }
705
706 static 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
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().
728 *
729 * call_rcu must be called by registered RCU read-side threads.
730 */
731 void call_rcu(struct rcu_head *head,
732 void (*func)(struct rcu_head *head))
733 {
734 struct call_rcu_data *crdp;
735
736 /* Holding rcu read-side lock across use of per-cpu crdp */
737 _rcu_read_lock();
738 crdp = get_call_rcu_data();
739 _call_rcu(head, func, crdp);
740 _rcu_read_unlock();
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.
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.
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.
768 */
769 void call_rcu_data_free(struct call_rcu_data *crdp)
770 {
771 if (crdp == NULL || crdp == default_call_rcu_data) {
772 return;
773 }
774 if ((uatomic_read(&crdp->flags) & URCU_CALL_RCU_STOPPED) == 0) {
775 uatomic_or(&crdp->flags, URCU_CALL_RCU_STOP);
776 wake_call_rcu_thread(crdp);
777 while ((uatomic_read(&crdp->flags) & URCU_CALL_RCU_STOPPED) == 0)
778 (void) poll(NULL, 0, 1);
779 }
780 call_rcu_lock(&call_rcu_mutex);
781 if (!cds_wfcq_empty(&crdp->cbs_head, &crdp->cbs_tail)) {
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. */
785 (void) get_default_call_rcu_data();
786 call_rcu_lock(&call_rcu_mutex);
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);
790 uatomic_add(&default_call_rcu_data->qlen,
791 uatomic_read(&crdp->qlen));
792 wake_call_rcu_thread(default_call_rcu_data);
793 }
794
795 cds_list_del(&crdp->list);
796 call_rcu_unlock(&call_rcu_mutex);
797
798 free(crdp);
799 }
800
801 /*
802 * Clean up all the per-CPU call_rcu threads.
803 */
804 void free_all_cpu_call_rcu_data(void)
805 {
806 int cpu;
807 struct call_rcu_data **crdp;
808 static int warned = 0;
809
810 if (cpus_array_len <= 0)
811 return;
812
813 crdp = malloc(sizeof(*crdp) * cpus_array_len);
814 if (!crdp) {
815 if (!warned) {
816 fprintf(stderr, "[error] liburcu: unable to allocate per-CPU pointer array\n");
817 }
818 warned = 1;
819 return;
820 }
821
822 for (cpu = 0; cpu < cpus_array_len; cpu++) {
823 crdp[cpu] = get_cpu_call_rcu_data(cpu);
824 if (crdp[cpu] == NULL)
825 continue;
826 set_cpu_call_rcu_data(cpu, NULL);
827 }
828 /*
829 * Wait for call_rcu sites acting as RCU readers of the
830 * call_rcu_data to become quiescent.
831 */
832 synchronize_rcu();
833 for (cpu = 0; cpu < cpus_array_len; cpu++) {
834 if (crdp[cpu] == NULL)
835 continue;
836 call_rcu_data_free(crdp[cpu]);
837 }
838 free(crdp);
839 }
840
841 static
842 void 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
850 static
851 void _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;
858 if (!uatomic_sub_return(&completion->barrier_count, 1))
859 call_rcu_completion_wake_up(completion);
860 urcu_ref_put(&completion->ref, free_completion);
861 free(work);
862 }
863
864 /*
865 * Wait for all in-flight call_rcu callbacks to complete execution.
866 */
867 void rcu_barrier(void)
868 {
869 struct call_rcu_data *crdp;
870 struct call_rcu_completion *completion;
871 int count = 0;
872 int was_online;
873
874 /* Put in offline state in QSBR. */
875 was_online = _rcu_read_ongoing();
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 */
882 if (_rcu_read_ongoing()) {
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
892 completion = calloc(sizeof(*completion), 1);
893 if (!completion)
894 urcu_die(errno);
895
896 call_rcu_lock(&call_rcu_mutex);
897 cds_list_for_each_entry(crdp, &call_rcu_data_list, list)
898 count++;
899
900 /* Referenced by rcu_barrier() and each call_rcu thread. */
901 urcu_ref_set(&completion->ref, count + 1);
902 completion->barrier_count = count;
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);
908 if (!work)
909 urcu_die(errno);
910 work->completion = completion;
911 _call_rcu(&work->head, _rcu_barrier_complete, crdp);
912 }
913 call_rcu_unlock(&call_rcu_mutex);
914
915 /* Wait for them */
916 for (;;) {
917 uatomic_dec(&completion->futex);
918 /* Decrement futex before reading barrier_count */
919 cmm_smp_mb();
920 if (!uatomic_read(&completion->barrier_count))
921 break;
922 call_rcu_completion_wait(completion);
923 }
924
925 urcu_ref_put(&completion->ref, free_completion);
926
927 online:
928 if (was_online)
929 rcu_thread_online();
930 }
931
932 /*
933 * Acquire the call_rcu_mutex in order to ensure that the child sees
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.
936 * Suitable for pthread_atfork() and friends.
937 */
938 void call_rcu_before_fork(void)
939 {
940 struct call_rcu_data *crdp;
941 struct urcu_atfork *atfork;
942
943 call_rcu_lock(&call_rcu_mutex);
944
945 atfork = registered_rculfhash_atfork;
946 if (atfork)
947 atfork->before_fork(atfork->priv);
948
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)
956 (void) poll(NULL, 0, 1);
957 }
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 */
965 void call_rcu_after_fork_parent(void)
966 {
967 struct call_rcu_data *crdp;
968 struct urcu_atfork *atfork;
969
970 cds_list_for_each_entry(crdp, &call_rcu_data_list, list)
971 uatomic_and(&crdp->flags, ~URCU_CALL_RCU_PAUSE);
972 cds_list_for_each_entry(crdp, &call_rcu_data_list, list) {
973 while ((uatomic_read(&crdp->flags) & URCU_CALL_RCU_PAUSED) != 0)
974 (void) poll(NULL, 0, 1);
975 }
976 atfork = registered_rculfhash_atfork;
977 if (atfork)
978 atfork->after_fork_parent(atfork->priv);
979 call_rcu_unlock(&call_rcu_mutex);
980 }
981
982 /*
983 * Clean up call_rcu data structures in the child of a successful fork()
984 * that is not followed by exec(). Suitable for pthread_atfork() and
985 * friends.
986 */
987 void call_rcu_after_fork_child(void)
988 {
989 struct call_rcu_data *crdp, *next;
990 struct urcu_atfork *atfork;
991
992 /* Release the mutex. */
993 call_rcu_unlock(&call_rcu_mutex);
994
995 atfork = registered_rculfhash_atfork;
996 if (atfork)
997 atfork->after_fork_child(atfork->priv);
998
999 /* Do nothing when call_rcu() has not been used */
1000 if (cds_list_empty(&call_rcu_data_list))
1001 return;
1002
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
1010 /* Cleanup call_rcu_data pointers before use */
1011 cpus_array_len_reset();
1012 free(per_cpu_call_rcu_data);
1013 rcu_set_pointer(&per_cpu_call_rcu_data, NULL);
1014 URCU_TLS(thread_call_rcu_data) = NULL;
1015
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 */
1021 cds_list_for_each_entry_safe(crdp, next, &call_rcu_data_list, list) {
1022 if (crdp == default_call_rcu_data)
1023 continue;
1024 uatomic_set(&crdp->flags, URCU_CALL_RCU_STOPPED);
1025 call_rcu_data_free(crdp);
1026 }
1027 }
1028
1029 void 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;
1035 end:
1036 call_rcu_unlock(&call_rcu_mutex);
1037 }
1038
1039 void urcu_unregister_rculfhash_atfork(struct urcu_atfork *atfork __attribute__((unused)))
1040 {
1041 call_rcu_lock(&call_rcu_mutex);
1042 if (--registered_rculfhash_atfork_refcount)
1043 goto end;
1044 registered_rculfhash_atfork = NULL;
1045 end:
1046 call_rcu_unlock(&call_rcu_mutex);
1047 }
This page took 0.050974 seconds and 4 git commands to generate.