1 #ifndef _URCU_WFCQUEUE_H
2 #define _URCU_WFCQUEUE_H
7 * Userspace RCU library - Concurrent Queue with Wait-Free Enqueue/Blocking Dequeue
9 * Copyright 2010-2012 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 * Copyright 2011-2012 - Lai Jiangshan <laijs@cn.fujitsu.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
30 #include <urcu/compiler.h>
31 #include <urcu/arch.h>
38 * Concurrent queue with wait-free enqueue/blocking dequeue.
40 * This queue has been designed and implemented collaboratively by
41 * Mathieu Desnoyers and Lai Jiangshan. Inspired from
42 * half-wait-free/half-blocking queue implementation done by Paul E.
46 #define CDS_WFCQ_WOULDBLOCK ((void *) -1UL)
49 CDS_WFCQ_RET_WOULDBLOCK
= -1,
50 CDS_WFCQ_RET_DEST_EMPTY
= 0,
51 CDS_WFCQ_RET_DEST_NON_EMPTY
= 1,
52 CDS_WFCQ_RET_SRC_EMPTY
= 2,
56 CDS_WFCQ_STATE_LAST
= (1U << 0),
59 struct cds_wfcq_node
{
60 struct cds_wfcq_node
*next
;
64 * Do not put head and tail on the same cache-line if concurrent
65 * enqueue/dequeue are expected from many CPUs. This eliminates
66 * false-sharing between enqueue and dequeue.
68 struct cds_wfcq_head
{
69 struct cds_wfcq_node node
;
73 struct cds_wfcq_tail
{
74 struct cds_wfcq_node
*p
;
79 #include <urcu/static/wfcqueue.h>
81 #define cds_wfcq_node_init _cds_wfcq_node_init
82 #define cds_wfcq_init _cds_wfcq_init
83 #define cds_wfcq_empty _cds_wfcq_empty
84 #define cds_wfcq_enqueue _cds_wfcq_enqueue
87 #define cds_wfcq_dequeue_lock _cds_wfcq_dequeue_lock
88 #define cds_wfcq_dequeue_unlock _cds_wfcq_dequeue_unlock
90 /* Locking performed within cds_wfcq calls. */
91 #define cds_wfcq_dequeue_blocking _cds_wfcq_dequeue_blocking
92 #define cds_wfcq_dequeue_with_state_blocking \
93 _cds_wfcq_dequeue_with_state_blocking
94 #define cds_wfcq_splice_blocking _cds_wfcq_splice_blocking
95 #define cds_wfcq_first_blocking _cds_wfcq_first_blocking
96 #define cds_wfcq_next_blocking _cds_wfcq_next_blocking
98 /* Locking ensured by caller by holding cds_wfcq_dequeue_lock() */
99 #define __cds_wfcq_dequeue_blocking ___cds_wfcq_dequeue_blocking
100 #define __cds_wfcq_dequeue_with_state_blocking \
101 ___cds_wfcq_dequeue_with_state_blocking
102 #define __cds_wfcq_splice_blocking ___cds_wfcq_splice_blocking
103 #define __cds_wfcq_first_blocking ___cds_wfcq_first_blocking
104 #define __cds_wfcq_next_blocking ___cds_wfcq_next_blocking
107 * Locking ensured by caller by holding cds_wfcq_dequeue_lock().
108 * Non-blocking: deque, first, next return CDS_WFCQ_WOULDBLOCK if they
109 * need to block. splice returns nonzero if it needs to block.
111 #define __cds_wfcq_dequeue_nonblocking ___cds_wfcq_dequeue_nonblocking
112 #define __cds_wfcq_dequeue_with_state_nonblocking \
113 ___cds_wfcq_dequeue_with_state_nonblocking
114 #define __cds_wfcq_splice_nonblocking ___cds_wfcq_splice_nonblocking
115 #define __cds_wfcq_first_nonblocking ___cds_wfcq_first_nonblocking
116 #define __cds_wfcq_next_nonblocking ___cds_wfcq_next_nonblocking
118 #else /* !_LGPL_SOURCE */
121 * Mutual exclusion of cds_wfcq_* / __cds_wfcq_* API
123 * Synchronization table:
125 * External synchronization techniques described in the API below is
126 * required between pairs marked with "X". No external synchronization
127 * required between pairs marked with "-".
130 * [1] cds_wfcq_enqueue
131 * [2] __cds_wfcq_splice (destination queue)
132 * [3] __cds_wfcq_dequeue
133 * [4] __cds_wfcq_splice (source queue)
134 * [5] __cds_wfcq_first
135 * [6] __cds_wfcq_next
137 * [1] [2] [3] [4] [5] [6]
145 * Mutual exclusion can be ensured by holding cds_wfcq_dequeue_lock().
147 * For convenience, cds_wfcq_dequeue_blocking() and
148 * cds_wfcq_splice_blocking() hold the dequeue lock.
150 * Besides locking, mutual exclusion of dequeue, splice and iteration
151 * can be ensured by performing all of those operations from a single
152 * thread, without requiring any lock.
156 * cds_wfcq_node_init: initialize wait-free queue node.
158 extern void cds_wfcq_node_init(struct cds_wfcq_node
*node
);
161 * cds_wfcq_init: initialize wait-free queue.
163 extern void cds_wfcq_init(struct cds_wfcq_head
*head
,
164 struct cds_wfcq_tail
*tail
);
167 * cds_wfcq_empty: return whether wait-free queue is empty.
169 * No memory barrier is issued. No mutual exclusion is required.
171 extern bool cds_wfcq_empty(struct cds_wfcq_head
*head
,
172 struct cds_wfcq_tail
*tail
);
175 * cds_wfcq_dequeue_lock: take the dequeue mutual exclusion lock.
177 extern void cds_wfcq_dequeue_lock(struct cds_wfcq_head
*head
,
178 struct cds_wfcq_tail
*tail
);
181 * cds_wfcq_dequeue_unlock: release the dequeue mutual exclusion lock.
183 extern void cds_wfcq_dequeue_unlock(struct cds_wfcq_head
*head
,
184 struct cds_wfcq_tail
*tail
);
187 * cds_wfcq_enqueue: enqueue a node into a wait-free queue.
189 * Issues a full memory barrier before enqueue. No mutual exclusion is
192 * Returns false if the queue was empty prior to adding the node.
193 * Returns true otherwise.
195 extern bool cds_wfcq_enqueue(struct cds_wfcq_head
*head
,
196 struct cds_wfcq_tail
*tail
,
197 struct cds_wfcq_node
*node
);
200 * cds_wfcq_dequeue_blocking: dequeue a node from a wait-free queue.
202 * Content written into the node before enqueue is guaranteed to be
203 * consistent, but no other memory ordering is ensured.
204 * It is valid to reuse and free a dequeued node immediately.
205 * Mutual exclusion with cds_wfcq_dequeue_blocking and dequeue lock is
208 extern struct cds_wfcq_node
*cds_wfcq_dequeue_blocking(
209 struct cds_wfcq_head
*head
,
210 struct cds_wfcq_tail
*tail
);
213 * cds_wfcq_dequeue_with_state_blocking: dequeue with state.
215 * Same as cds_wfcq_dequeue_blocking, but saves whether dequeueing the
216 * last node of the queue into state (CDS_WFCQ_STATE_LAST).
218 extern struct cds_wfcq_node
*cds_wfcq_dequeue_with_state_blocking(
219 struct cds_wfcq_head
*head
,
220 struct cds_wfcq_tail
*tail
,
224 * cds_wfcq_splice_blocking: enqueue all src_q nodes at the end of dest_q.
226 * Dequeue all nodes from src_q.
227 * dest_q must be already initialized.
228 * Content written into the node before enqueue is guaranteed to be
229 * consistent, but no other memory ordering is ensured.
230 * Mutual exclusion with cds_wfcq_dequeue_blocking and dequeue lock is
233 * Returns enum cds_wfcq_ret which indicates the state of the src or
234 * dest queue. Cannot block.
236 extern enum cds_wfcq_ret
cds_wfcq_splice_blocking(
237 struct cds_wfcq_head
*dest_q_head
,
238 struct cds_wfcq_tail
*dest_q_tail
,
239 struct cds_wfcq_head
*src_q_head
,
240 struct cds_wfcq_tail
*src_q_tail
);
243 * __cds_wfcq_dequeue_blocking: dequeue a node from a wait-free queue.
245 * Content written into the node before enqueue is guaranteed to be
246 * consistent, but no other memory ordering is ensured.
247 * It is valid to reuse and free a dequeued node immediately.
248 * Dequeue/splice/iteration mutual exclusion should be ensured by the
251 extern struct cds_wfcq_node
*__cds_wfcq_dequeue_blocking(
252 struct cds_wfcq_head
*head
,
253 struct cds_wfcq_tail
*tail
);
256 * __cds_wfcq_dequeue_with_state_blocking: dequeue with state.
258 * Same as __cds_wfcq_dequeue_blocking, but saves whether dequeueing the
259 * last node of the queue into state (CDS_WFCQ_STATE_LAST).
261 extern struct cds_wfcq_node
*__cds_wfcq_dequeue_with_state_blocking(
262 struct cds_wfcq_head
*head
,
263 struct cds_wfcq_tail
*tail
,
267 * __cds_wfcq_dequeue_nonblocking: dequeue a node from a wait-free queue.
269 * Same as __cds_wfcq_dequeue_blocking, but returns CDS_WFCQ_WOULDBLOCK
270 * if it needs to block.
272 extern struct cds_wfcq_node
*__cds_wfcq_dequeue_nonblocking(
273 struct cds_wfcq_head
*head
,
274 struct cds_wfcq_tail
*tail
);
277 * __cds_wfcq_dequeue_with_state_blocking: dequeue with state.
279 * Same as __cds_wfcq_dequeue_nonblocking, but saves whether dequeueing
280 * the last node of the queue into state (CDS_WFCQ_STATE_LAST).
282 extern struct cds_wfcq_node
*__cds_wfcq_dequeue_with_state_nonblocking(
283 struct cds_wfcq_head
*head
,
284 struct cds_wfcq_tail
*tail
,
288 * __cds_wfcq_splice_blocking: enqueue all src_q nodes at the end of dest_q.
290 * Dequeue all nodes from src_q.
291 * dest_q must be already initialized.
292 * Mutual exclusion for src_q should be ensured by the caller as
293 * specified in the "Synchronisation table".
294 * Returns enum cds_wfcq_ret which indicates the state of the src or
295 * dest queue. Never returns CDS_WFCQ_RET_WOULDBLOCK.
297 extern enum cds_wfcq_ret
__cds_wfcq_splice_blocking(
298 struct cds_wfcq_head
*dest_q_head
,
299 struct cds_wfcq_tail
*dest_q_tail
,
300 struct cds_wfcq_head
*src_q_head
,
301 struct cds_wfcq_tail
*src_q_tail
);
304 * __cds_wfcq_splice_nonblocking: enqueue all src_q nodes at the end of dest_q.
306 * Same as __cds_wfcq_splice_blocking, but returns
307 * CDS_WFCQ_RET_WOULDBLOCK if it needs to block.
309 extern enum cds_wfcq_ret
__cds_wfcq_splice_nonblocking(
310 struct cds_wfcq_head
*dest_q_head
,
311 struct cds_wfcq_tail
*dest_q_tail
,
312 struct cds_wfcq_head
*src_q_head
,
313 struct cds_wfcq_tail
*src_q_tail
);
316 * __cds_wfcq_first_blocking: get first node of a queue, without dequeuing.
318 * Content written into the node before enqueue is guaranteed to be
319 * consistent, but no other memory ordering is ensured.
320 * Dequeue/splice/iteration mutual exclusion should be ensured by the
323 * Used by for-like iteration macros:
324 * __cds_wfcq_for_each_blocking()
325 * __cds_wfcq_for_each_blocking_safe()
327 * Returns NULL if queue is empty, first node otherwise.
329 extern struct cds_wfcq_node
*__cds_wfcq_first_blocking(
330 struct cds_wfcq_head
*head
,
331 struct cds_wfcq_tail
*tail
);
334 * __cds_wfcq_first_nonblocking: get first node of a queue, without dequeuing.
336 * Same as __cds_wfcq_first_blocking, but returns CDS_WFCQ_WOULDBLOCK if
339 extern struct cds_wfcq_node
*__cds_wfcq_first_nonblocking(
340 struct cds_wfcq_head
*head
,
341 struct cds_wfcq_tail
*tail
);
344 * __cds_wfcq_next_blocking: get next node of a queue, without dequeuing.
346 * Content written into the node before enqueue is guaranteed to be
347 * consistent, but no other memory ordering is ensured.
348 * Dequeue/splice/iteration mutual exclusion should be ensured by the
351 * Used by for-like iteration macros:
352 * __cds_wfcq_for_each_blocking()
353 * __cds_wfcq_for_each_blocking_safe()
355 * Returns NULL if reached end of queue, non-NULL next queue node
358 extern struct cds_wfcq_node
*__cds_wfcq_next_blocking(
359 struct cds_wfcq_head
*head
,
360 struct cds_wfcq_tail
*tail
,
361 struct cds_wfcq_node
*node
);
364 * __cds_wfcq_next_blocking: get next node of a queue, without dequeuing.
366 * Same as __cds_wfcq_next_blocking, but returns CDS_WFCQ_WOULDBLOCK if
369 extern struct cds_wfcq_node
*__cds_wfcq_next_nonblocking(
370 struct cds_wfcq_head
*head
,
371 struct cds_wfcq_tail
*tail
,
372 struct cds_wfcq_node
*node
);
374 #endif /* !_LGPL_SOURCE */
377 * __cds_wfcq_for_each_blocking: Iterate over all nodes in a queue,
378 * without dequeuing them.
379 * @head: head of the queue (struct cds_wfcq_head pointer).
380 * @tail: tail of the queue (struct cds_wfcq_tail pointer).
381 * @node: iterator on the queue (struct cds_wfcq_node pointer).
383 * Content written into each node before enqueue is guaranteed to be
384 * consistent, but no other memory ordering is ensured.
385 * Dequeue/splice/iteration mutual exclusion should be ensured by the
388 #define __cds_wfcq_for_each_blocking(head, tail, node) \
389 for (node = __cds_wfcq_first_blocking(head, tail); \
391 node = __cds_wfcq_next_blocking(head, tail, node))
394 * __cds_wfcq_for_each_blocking_safe: Iterate over all nodes in a queue,
395 * without dequeuing them. Safe against deletion.
396 * @head: head of the queue (struct cds_wfcq_head pointer).
397 * @tail: tail of the queue (struct cds_wfcq_tail pointer).
398 * @node: iterator on the queue (struct cds_wfcq_node pointer).
399 * @n: struct cds_wfcq_node pointer holding the next pointer (used
402 * Content written into each node before enqueue is guaranteed to be
403 * consistent, but no other memory ordering is ensured.
404 * Dequeue/splice/iteration mutual exclusion should be ensured by the
407 #define __cds_wfcq_for_each_blocking_safe(head, tail, node, n) \
408 for (node = __cds_wfcq_first_blocking(head, tail), \
409 n = (node ? __cds_wfcq_next_blocking(head, tail, node) : NULL); \
411 node = n, n = (node ? __cds_wfcq_next_blocking(head, tail, node) : NULL))
417 #endif /* _URCU_WFCQUEUE_H */