4 * Userspace RCU library with explicit memory barriers
6 * Copyright (c) 2009 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 * Copyright (c) 2009 Paul E. McKenney, IBM Corporation.
8 * Copyright 2015 Red Hat, Inc.
10 * Ported to QEMU by Paolo Bonzini <pbonzini@redhat.com>
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2.1 of the License, or (at your option) any later version.
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 * IBM's contributions to this file may be relicensed under LGPLv2 or later.
29 #include "qemu-common.h"
36 #include "qemu/atomic.h"
37 #include "qemu/thread.h"
38 #include "qemu/main-loop.h"
41 * Global grace period counter. Bit 0 is always one in rcu_gp_ctr.
42 * Bits 1 and above are defined in synchronize_rcu.
44 #define RCU_GP_LOCKED (1UL << 0)
45 #define RCU_GP_CTR (1UL << 1)
47 unsigned long rcu_gp_ctr
= RCU_GP_LOCKED
;
49 QemuEvent rcu_gp_event
;
50 static QemuMutex rcu_registry_lock
;
51 static QemuMutex rcu_sync_lock
;
54 * Check whether a quiescent state was crossed between the beginning of
55 * update_counter_and_wait and now.
57 static inline int rcu_gp_ongoing(unsigned long *ctr
)
62 return v
&& (v
!= rcu_gp_ctr
);
65 /* Written to only by each individual reader. Read by both the reader and the
68 __thread
struct rcu_reader_data rcu_reader
;
70 /* Protected by rcu_registry_lock. */
71 typedef QLIST_HEAD(, rcu_reader_data
) ThreadList
;
72 static ThreadList registry
= QLIST_HEAD_INITIALIZER(registry
);
74 /* Wait for previous parity/grace period to be empty of readers. */
75 static void wait_for_readers(void)
77 ThreadList qsreaders
= QLIST_HEAD_INITIALIZER(qsreaders
);
78 struct rcu_reader_data
*index
, *tmp
;
81 /* We want to be notified of changes made to rcu_gp_ongoing
82 * while we walk the list.
84 qemu_event_reset(&rcu_gp_event
);
86 /* Instead of using atomic_mb_set for index->waiting, and
87 * atomic_mb_read for index->ctr, memory barriers are placed
88 * manually since writes to different threads are independent.
89 * atomic_mb_set has a smp_wmb before...
92 QLIST_FOREACH(index
, ®istry
, node
) {
93 atomic_set(&index
->waiting
, true);
96 /* ... and a smp_mb after. */
99 QLIST_FOREACH_SAFE(index
, ®istry
, node
, tmp
) {
100 if (!rcu_gp_ongoing(&index
->ctr
)) {
101 QLIST_REMOVE(index
, node
);
102 QLIST_INSERT_HEAD(&qsreaders
, index
, node
);
104 /* No need for mb_set here, worst of all we
105 * get some extra futex wakeups.
107 atomic_set(&index
->waiting
, false);
111 /* atomic_mb_read has smp_rmb after. */
114 if (QLIST_EMPTY(®istry
)) {
118 /* Wait for one thread to report a quiescent state and try again.
119 * Release rcu_registry_lock, so rcu_(un)register_thread() doesn't
120 * wait too much time.
122 * rcu_register_thread() may add nodes to ®istry; it will not
123 * wake up synchronize_rcu, but that is okay because at least another
124 * thread must exit its RCU read-side critical section before
125 * synchronize_rcu is done. The next iteration of the loop will
126 * move the new thread's rcu_reader from ®istry to &qsreaders,
127 * because rcu_gp_ongoing() will return false.
129 * rcu_unregister_thread() may remove nodes from &qsreaders instead
130 * of ®istry if it runs during qemu_event_wait. That's okay;
131 * the node then will not be added back to ®istry by QLIST_SWAP
132 * below. The invariant is that the node is part of one list when
133 * rcu_registry_lock is released.
135 qemu_mutex_unlock(&rcu_registry_lock
);
136 qemu_event_wait(&rcu_gp_event
);
137 qemu_mutex_lock(&rcu_registry_lock
);
140 /* put back the reader list in the registry */
141 QLIST_SWAP(®istry
, &qsreaders
, node
);
144 void synchronize_rcu(void)
146 qemu_mutex_lock(&rcu_sync_lock
);
147 qemu_mutex_lock(&rcu_registry_lock
);
149 if (!QLIST_EMPTY(®istry
)) {
150 /* In either case, the atomic_mb_set below blocks stores that free
151 * old RCU-protected pointers.
153 if (sizeof(rcu_gp_ctr
) < 8) {
154 /* For architectures with 32-bit longs, a two-subphases algorithm
155 * ensures we do not encounter overflow bugs.
157 * Switch parity: 0 -> 1, 1 -> 0.
159 atomic_mb_set(&rcu_gp_ctr
, rcu_gp_ctr
^ RCU_GP_CTR
);
161 atomic_mb_set(&rcu_gp_ctr
, rcu_gp_ctr
^ RCU_GP_CTR
);
163 /* Increment current grace period. */
164 atomic_mb_set(&rcu_gp_ctr
, rcu_gp_ctr
+ RCU_GP_CTR
);
170 qemu_mutex_unlock(&rcu_registry_lock
);
171 qemu_mutex_unlock(&rcu_sync_lock
);
175 #define RCU_CALL_MIN_SIZE 30
177 /* Multi-producer, single-consumer queue based on urcu/static/wfqueue.h
178 * from liburcu. Note that head is only used by the consumer.
180 static struct rcu_head dummy
;
181 static struct rcu_head
*head
= &dummy
, **tail
= &dummy
.next
;
182 static int rcu_call_count
;
183 static QemuEvent rcu_call_ready_event
;
185 static void enqueue(struct rcu_head
*node
)
187 struct rcu_head
**old_tail
;
190 old_tail
= atomic_xchg(&tail
, &node
->next
);
191 atomic_mb_set(old_tail
, node
);
194 static struct rcu_head
*try_dequeue(void)
196 struct rcu_head
*node
, *next
;
199 /* Test for an empty list, which we do not expect. Note that for
200 * the consumer head and tail are always consistent. The head
201 * is consistent because only the consumer reads/writes it.
202 * The tail, because it is the first step in the enqueuing.
203 * It is only the next pointers that might be inconsistent.
205 if (head
== &dummy
&& atomic_mb_read(&tail
) == &dummy
.next
) {
209 /* If the head node has NULL in its next pointer, the value is
210 * wrong and we need to wait until its enqueuer finishes the update.
213 next
= atomic_mb_read(&head
->next
);
218 /* Since we are the sole consumer, and we excluded the empty case
219 * above, the queue will always have at least two nodes: the
220 * dummy node, and the one being removed. So we do not need to update
225 /* If we dequeued the dummy node, add it back at the end and retry. */
226 if (node
== &dummy
) {
234 static void *call_rcu_thread(void *opaque
)
236 struct rcu_head
*node
;
238 rcu_register_thread();
242 int n
= atomic_read(&rcu_call_count
);
244 /* Heuristically wait for a decent number of callbacks to pile up.
245 * Fetch rcu_call_count now, we only must process elements that were
246 * added before synchronize_rcu() starts.
248 while (n
== 0 || (n
< RCU_CALL_MIN_SIZE
&& ++tries
<= 5)) {
251 qemu_event_reset(&rcu_call_ready_event
);
252 n
= atomic_read(&rcu_call_count
);
254 qemu_event_wait(&rcu_call_ready_event
);
257 n
= atomic_read(&rcu_call_count
);
260 atomic_sub(&rcu_call_count
, n
);
262 qemu_mutex_lock_iothread();
264 node
= try_dequeue();
266 qemu_mutex_unlock_iothread();
267 qemu_event_reset(&rcu_call_ready_event
);
268 node
= try_dequeue();
270 qemu_event_wait(&rcu_call_ready_event
);
271 node
= try_dequeue();
273 qemu_mutex_lock_iothread();
279 qemu_mutex_unlock_iothread();
284 void call_rcu1(struct rcu_head
*node
, void (*func
)(struct rcu_head
*node
))
288 atomic_inc(&rcu_call_count
);
289 qemu_event_set(&rcu_call_ready_event
);
292 void rcu_register_thread(void)
294 assert(rcu_reader
.ctr
== 0);
295 qemu_mutex_lock(&rcu_registry_lock
);
296 QLIST_INSERT_HEAD(®istry
, &rcu_reader
, node
);
297 qemu_mutex_unlock(&rcu_registry_lock
);
300 void rcu_unregister_thread(void)
302 qemu_mutex_lock(&rcu_registry_lock
);
303 QLIST_REMOVE(&rcu_reader
, node
);
304 qemu_mutex_unlock(&rcu_registry_lock
);
307 static void rcu_init_complete(void)
311 qemu_mutex_init(&rcu_registry_lock
);
312 qemu_mutex_init(&rcu_sync_lock
);
313 qemu_event_init(&rcu_gp_event
, true);
315 qemu_event_init(&rcu_call_ready_event
, false);
317 /* The caller is assumed to have iothread lock, so the call_rcu thread
318 * must have been quiescent even after forking, just recreate it.
320 qemu_thread_create(&thread
, "call_rcu", call_rcu_thread
,
321 NULL
, QEMU_THREAD_DETACHED
);
323 rcu_register_thread();
327 static void rcu_init_lock(void)
329 qemu_mutex_lock(&rcu_sync_lock
);
330 qemu_mutex_lock(&rcu_registry_lock
);
333 static void rcu_init_unlock(void)
335 qemu_mutex_unlock(&rcu_registry_lock
);
336 qemu_mutex_unlock(&rcu_sync_lock
);
340 void rcu_after_fork(void)
342 memset(®istry
, 0, sizeof(registry
));
346 static void __attribute__((__constructor__
)) rcu_init(void)
349 pthread_atfork(rcu_init_lock
, rcu_init_unlock
, rcu_init_unlock
);