wfcqueue tests: use dequeue empty state
[urcu.git] / urcu / static / wfstack.h
CommitLineData
edac6b69
MD
1#ifndef _URCU_STATIC_WFSTACK_H
2#define _URCU_STATIC_WFSTACK_H
294d3396
MD
3
4/*
edac6b69 5 * urcu/static/wfstack.h
294d3396 6 *
edac6b69 7 * Userspace RCU library - Stack with with wait-free push, blocking traversal.
294d3396 8 *
07c2a4fd
MD
9 * TO BE INCLUDED ONLY IN LGPL-COMPATIBLE CODE. See urcu/wfstack.h for
10 * linking dynamically with the userspace rcu library.
294d3396 11 *
a03a0f42 12 * Copyright 2010-2012 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
294d3396
MD
13 *
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public
16 * License as published by the Free Software Foundation; either
17 * version 2.1 of the License, or (at your option) any later version.
18 *
19 * This library is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
23 *
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 */
28
29#include <pthread.h>
30#include <assert.h>
b57aee66 31#include <poll.h>
edac6b69 32#include <stdbool.h>
294d3396 33#include <urcu/compiler.h>
a2e7bf9c 34#include <urcu/uatomic.h>
294d3396
MD
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
edac6b69 40#define CDS_WFS_END ((void *) 0x1UL)
16aa9ee8
DG
41#define CDS_WFS_ADAPT_ATTEMPTS 10 /* Retry if being set */
42#define CDS_WFS_WAIT 10 /* Wait 10 ms if being set */
294d3396 43
edac6b69
MD
44/*
45 * Stack with wait-free push, blocking traversal.
46 *
47 * Stack implementing push, pop, pop_all operations, as well as iterator
48 * on the stack head returned by pop_all.
49 *
c97c6ce5
MD
50 * Wait-free operations: cds_wfs_push, __cds_wfs_pop_all, cds_wfs_empty,
51 * cds_wfs_first.
52 * Blocking operations: cds_wfs_pop, cds_wfs_pop_all, cds_wfs_next,
53 * iteration on stack head returned by pop_all.
edac6b69
MD
54 *
55 * Synchronization table:
56 *
57 * External synchronization techniques described in the API below is
58 * required between pairs marked with "X". No external synchronization
59 * required between pairs marked with "-".
60 *
61 * cds_wfs_push __cds_wfs_pop __cds_wfs_pop_all
62 * cds_wfs_push - - -
63 * __cds_wfs_pop - X X
64 * __cds_wfs_pop_all - X -
65 *
66 * cds_wfs_pop and cds_wfs_pop_all use an internal mutex to provide
67 * synchronization.
68 */
69
70/*
71 * cds_wfs_node_init: initialize wait-free stack node.
72 */
756a0322 73static inline
16aa9ee8 74void _cds_wfs_node_init(struct cds_wfs_node *node)
294d3396
MD
75{
76 node->next = NULL;
77}
78
edac6b69
MD
79/*
80 * cds_wfs_init: initialize wait-free stack.
81 */
756a0322 82static inline
16aa9ee8 83void _cds_wfs_init(struct cds_wfs_stack *s)
294d3396
MD
84{
85 int ret;
86
edac6b69 87 s->head = CDS_WFS_END;
294d3396
MD
88 ret = pthread_mutex_init(&s->lock, NULL);
89 assert(!ret);
90}
91
edac6b69
MD
92static inline bool ___cds_wfs_end(void *node)
93{
94 return node == CDS_WFS_END;
95}
96
191098fc 97/*
edac6b69
MD
98 * cds_wfs_empty: return whether wait-free stack is empty.
99 *
100 * No memory barrier is issued. No mutual exclusion is required.
101 */
102static inline bool _cds_wfs_empty(struct cds_wfs_stack *s)
103{
104 return ___cds_wfs_end(CMM_LOAD_SHARED(s->head));
105}
106
107/*
108 * cds_wfs_push: push a node into the stack.
109 *
110 * Issues a full memory barrier before push. No mutual exclusion is
111 * required.
112 *
113 * Returns 0 if the stack was empty prior to adding the node.
114 * Returns non-zero otherwise.
191098fc 115 */
756a0322 116static inline
191098fc 117int _cds_wfs_push(struct cds_wfs_stack *s, struct cds_wfs_node *node)
294d3396 118{
edac6b69 119 struct cds_wfs_head *old_head, *new_head;
294d3396
MD
120
121 assert(node->next == NULL);
edac6b69 122 new_head = caa_container_of(node, struct cds_wfs_head, node);
294d3396 123 /*
edac6b69
MD
124 * uatomic_xchg() implicit memory barrier orders earlier stores
125 * to node (setting it to NULL) before publication.
294d3396 126 */
edac6b69 127 old_head = uatomic_xchg(&s->head, new_head);
294d3396 128 /*
edac6b69
MD
129 * At this point, dequeuers see a NULL node->next, they should
130 * busy-wait until node->next is set to old_head.
294d3396 131 */
edac6b69
MD
132 CMM_STORE_SHARED(node->next, &old_head->node);
133 return !___cds_wfs_end(old_head);
294d3396
MD
134}
135
136/*
edac6b69 137 * Waiting for push to complete enqueue and return the next node.
294d3396 138 */
edac6b69 139static inline struct cds_wfs_node *
af67624d 140___cds_wfs_node_sync_next(struct cds_wfs_node *node, int blocking)
294d3396 141{
edac6b69 142 struct cds_wfs_node *next;
294d3396
MD
143 int attempt = 0;
144
294d3396
MD
145 /*
146 * Adaptative busy-looping waiting for push to complete.
147 */
edac6b69 148 while ((next = CMM_LOAD_SHARED(node->next)) == NULL) {
af67624d
MD
149 if (!blocking)
150 return CDS_WFS_WOULDBLOCK;
16aa9ee8
DG
151 if (++attempt >= CDS_WFS_ADAPT_ATTEMPTS) {
152 poll(NULL, 0, CDS_WFS_WAIT); /* Wait for 10ms */
294d3396 153 attempt = 0;
edac6b69 154 } else {
06f22bdb 155 caa_cpu_relax();
edac6b69 156 }
294d3396 157 }
edac6b69
MD
158
159 return next;
294d3396
MD
160}
161
af67624d
MD
162static inline
163struct cds_wfs_node *
164___cds_wfs_pop(struct cds_wfs_stack *s, int blocking)
165{
166 struct cds_wfs_head *head, *new_head;
167 struct cds_wfs_node *next;
168
169 for (;;) {
170 head = CMM_LOAD_SHARED(s->head);
171 if (___cds_wfs_end(head))
172 return NULL;
173 next = ___cds_wfs_node_sync_next(&head->node, blocking);
174 if (!blocking && next == CDS_WFS_WOULDBLOCK)
175 return CDS_WFS_WOULDBLOCK;
176 new_head = caa_container_of(next, struct cds_wfs_head, node);
177 if (uatomic_cmpxchg(&s->head, head, new_head) == head)
178 return &head->node;
179 if (!blocking)
180 return CDS_WFS_WOULDBLOCK;
181 /* busy-loop if head changed under us */
182 }
183}
184
edac6b69
MD
185/*
186 * __cds_wfs_pop_blocking: pop a node from the stack.
187 *
188 * Returns NULL if stack is empty.
189 *
190 * __cds_wfs_pop_blocking needs to be synchronized using one of the
191 * following techniques:
192 *
193 * 1) Calling __cds_wfs_pop_blocking under rcu read lock critical
194 * section. The caller must wait for a grace period to pass before
195 * freeing the returned node or modifying the cds_wfs_node structure.
196 * 2) Using mutual exclusion (e.g. mutexes) to protect
197 * __cds_wfs_pop_blocking and __cds_wfs_pop_all callers.
198 * 3) Ensuring that only ONE thread can call __cds_wfs_pop_blocking()
199 * and __cds_wfs_pop_all(). (multi-provider/single-consumer scheme).
200 */
756a0322 201static inline
16aa9ee8 202struct cds_wfs_node *
edac6b69
MD
203___cds_wfs_pop_blocking(struct cds_wfs_stack *s)
204{
af67624d
MD
205 return ___cds_wfs_pop(s, 1);
206}
edac6b69 207
af67624d
MD
208/*
209 * __cds_wfs_pop_nonblocking: pop a node from the stack.
210 *
211 * Same as __cds_wfs_pop_blocking, but returns CDS_WFS_WOULDBLOCK if
212 * it needs to block.
213 */
214static inline
215struct cds_wfs_node *
216___cds_wfs_pop_nonblocking(struct cds_wfs_stack *s)
217{
218 return ___cds_wfs_pop(s, 0);
edac6b69
MD
219}
220
221/*
222 * __cds_wfs_pop_all: pop all nodes from a stack.
223 *
224 * __cds_wfs_pop_all does not require any synchronization with other
225 * push, nor with other __cds_wfs_pop_all, but requires synchronization
226 * matching the technique used to synchronize __cds_wfs_pop_blocking:
227 *
228 * 1) If __cds_wfs_pop_blocking is called under rcu read lock critical
229 * section, both __cds_wfs_pop_blocking and cds_wfs_pop_all callers
230 * must wait for a grace period to pass before freeing the returned
231 * node or modifying the cds_wfs_node structure. However, no RCU
232 * read-side critical section is needed around __cds_wfs_pop_all.
233 * 2) Using mutual exclusion (e.g. mutexes) to protect
234 * __cds_wfs_pop_blocking and __cds_wfs_pop_all callers.
235 * 3) Ensuring that only ONE thread can call __cds_wfs_pop_blocking()
236 * and __cds_wfs_pop_all(). (multi-provider/single-consumer scheme).
237 */
238static inline
239struct cds_wfs_head *
240___cds_wfs_pop_all(struct cds_wfs_stack *s)
241{
242 struct cds_wfs_head *head;
243
244 /*
245 * Implicit memory barrier after uatomic_xchg() matches implicit
246 * memory barrier before uatomic_xchg() in cds_wfs_push. It
247 * ensures that all nodes of the returned list are consistent.
248 * There is no need to issue memory barriers when iterating on
249 * the returned list, because the full memory barrier issued
250 * prior to each uatomic_cmpxchg, which each write to head, are
251 * taking care to order writes to each node prior to the full
252 * memory barrier after this uatomic_xchg().
253 */
254 head = uatomic_xchg(&s->head, CDS_WFS_END);
255 if (___cds_wfs_end(head))
256 return NULL;
257 return head;
258}
259
260/*
261 * cds_wfs_pop_lock: lock stack pop-protection mutex.
262 */
263static inline void _cds_wfs_pop_lock(struct cds_wfs_stack *s)
294d3396 264{
294d3396
MD
265 int ret;
266
267 ret = pthread_mutex_lock(&s->lock);
268 assert(!ret);
edac6b69
MD
269}
270
271/*
272 * cds_wfs_pop_unlock: unlock stack pop-protection mutex.
273 */
274static inline void _cds_wfs_pop_unlock(struct cds_wfs_stack *s)
275{
276 int ret;
277
294d3396
MD
278 ret = pthread_mutex_unlock(&s->lock);
279 assert(!ret);
edac6b69
MD
280}
281
282/*
283 * Call __cds_wfs_pop_blocking with an internal pop mutex held.
284 */
285static inline
286struct cds_wfs_node *
287_cds_wfs_pop_blocking(struct cds_wfs_stack *s)
288{
289 struct cds_wfs_node *retnode;
290
291 _cds_wfs_pop_lock(s);
292 retnode = ___cds_wfs_pop_blocking(s);
293 _cds_wfs_pop_unlock(s);
294d3396
MD
294 return retnode;
295}
296
edac6b69
MD
297/*
298 * Call __cds_wfs_pop_all with an internal pop mutex held.
299 */
300static inline
301struct cds_wfs_head *
302_cds_wfs_pop_all_blocking(struct cds_wfs_stack *s)
303{
304 struct cds_wfs_head *rethead;
305
306 _cds_wfs_pop_lock(s);
307 rethead = ___cds_wfs_pop_all(s);
308 _cds_wfs_pop_unlock(s);
309 return rethead;
310}
311
312/*
c7ba06ba 313 * cds_wfs_first: get first node of a popped stack.
edac6b69
MD
314 *
315 * Content written into the node before enqueue is guaranteed to be
316 * consistent, but no other memory ordering is ensured.
317 *
318 * Used by for-like iteration macros in urcu/wfstack.h:
319 * cds_wfs_for_each_blocking()
320 * cds_wfs_for_each_blocking_safe()
8af2956c
MD
321 *
322 * Returns NULL if popped stack is empty, top stack node otherwise.
edac6b69
MD
323 */
324static inline struct cds_wfs_node *
c7ba06ba 325_cds_wfs_first(struct cds_wfs_head *head)
edac6b69
MD
326{
327 if (___cds_wfs_end(head))
328 return NULL;
329 return &head->node;
330}
331
af67624d
MD
332static inline struct cds_wfs_node *
333___cds_wfs_next(struct cds_wfs_node *node, int blocking)
334{
335 struct cds_wfs_node *next;
336
337 next = ___cds_wfs_node_sync_next(node, blocking);
338 /*
339 * CDS_WFS_WOULDBLOCK != CSD_WFS_END, so we can check for end
340 * even if ___cds_wfs_node_sync_next returns CDS_WFS_WOULDBLOCK,
341 * and still return CDS_WFS_WOULDBLOCK.
342 */
343 if (___cds_wfs_end(next))
344 return NULL;
345 return next;
346}
347
edac6b69
MD
348/*
349 * cds_wfs_next_blocking: get next node of a popped stack.
350 *
351 * Content written into the node before enqueue is guaranteed to be
352 * consistent, but no other memory ordering is ensured.
353 *
354 * Used by for-like iteration macros in urcu/wfstack.h:
355 * cds_wfs_for_each_blocking()
356 * cds_wfs_for_each_blocking_safe()
8af2956c
MD
357 *
358 * Returns NULL if reached end of popped stack, non-NULL next stack
359 * node otherwise.
edac6b69
MD
360 */
361static inline struct cds_wfs_node *
362_cds_wfs_next_blocking(struct cds_wfs_node *node)
363{
af67624d
MD
364 return ___cds_wfs_next(node, 1);
365}
edac6b69 366
af67624d
MD
367
368/*
369 * cds_wfs_next_nonblocking: get next node of a popped stack.
370 *
371 * Same as cds_wfs_next_blocking, but returns CDS_WFS_WOULDBLOCK if it
372 * needs to block.
373 */
374static inline struct cds_wfs_node *
375_cds_wfs_next_nonblocking(struct cds_wfs_node *node)
376{
377 return ___cds_wfs_next(node, 0);
edac6b69
MD
378}
379
294d3396
MD
380#ifdef __cplusplus
381}
382#endif
383
edac6b69 384#endif /* _URCU_STATIC_WFSTACK_H */
This page took 0.043359 seconds and 4 git commands to generate.