rculfqueue: Document dummy pointer value access
[urcu.git] / urcu / static / rculfqueue.h
CommitLineData
3d02c34d
MD
1#ifndef _URCU_RCULFQUEUE_STATIC_H
2#define _URCU_RCULFQUEUE_STATIC_H
3
4/*
5 * rculfqueue-static.h
6 *
7 * Userspace RCU library - Lock-Free RCU Queue
8 *
9 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 *
11 * TO BE INCLUDED ONLY IN LGPL-COMPATIBLE CODE. See rculfqueue.h for linking
12 * dynamically with the userspace rcu library.
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
e17d9985 29#include <urcu-call-rcu.h>
a2e7bf9c 30#include <urcu/uatomic.h>
3d02c34d 31#include <assert.h>
e17d9985 32#include <errno.h>
3d02c34d
MD
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
e17d9985
MD
38struct cds_lfq_node_rcu_dummy {
39 struct cds_lfq_node_rcu parent;
40 struct rcu_head head;
41 struct cds_lfq_queue_rcu *q;
42};
43
3d02c34d 44/*
e17d9985
MD
45 * Lock-free RCU queue. Enqueue and dequeue operations hold a RCU read
46 * lock to deal with cmpxchg ABA problem. This queue is *not* circular:
47 * head points to the oldest node, tail points to the newest node.
0cca1a2d 48 * A dummy node is kept to ensure enqueue and dequeue can always proceed
e17d9985
MD
49 * concurrently. Keeping a separate head and tail helps with large
50 * queues: enqueue and dequeue can proceed concurrently without
51 * wrestling for exclusive access to the same variables.
52 *
0cca1a2d
MD
53 * Dequeue retry if it detects that it would be dequeueing the last node
54 * (it means a dummy node dequeue-requeue is in progress). This ensures
55 * that there is always at least one node in the queue.
e17d9985 56 *
0cca1a2d
MD
57 * In the dequeue operation, we internally reallocate the dummy node
58 * upon dequeue/requeue and use call_rcu to free the old one after a
59 * grace period.
3d02c34d
MD
60 */
61
e17d9985 62static inline
909292c2 63int is_dummy(struct cds_lfq_queue_rcu *q, struct cds_lfq_node_rcu *node)
e17d9985 64{
707c65a8 65 return node == CMM_LOAD_SHARED(q->dummy);
e17d9985
MD
66}
67
68static inline
69struct cds_lfq_node_rcu *make_dummy(struct cds_lfq_queue_rcu *q,
70 struct cds_lfq_node_rcu *next)
71{
72 struct cds_lfq_node_rcu_dummy *dummy;
73
74 dummy = malloc(sizeof(struct cds_lfq_node_rcu_dummy));
8f03ed0d 75 assert(dummy);
e17d9985
MD
76 dummy->parent.next = next;
77 dummy->q = q;
909292c2 78 return &dummy->parent;
e17d9985
MD
79}
80
81static inline
82void free_dummy(struct rcu_head *head)
83{
84 struct cds_lfq_node_rcu_dummy *dummy =
85 caa_container_of(head, struct cds_lfq_node_rcu_dummy, head);
86 free(dummy);
87}
88
89static inline
90void rcu_free_dummy(struct cds_lfq_node_rcu *node)
91{
92 struct cds_lfq_node_rcu_dummy *dummy;
3d02c34d 93
909292c2 94 dummy = caa_container_of(node, struct cds_lfq_node_rcu_dummy, parent);
e17d9985
MD
95 dummy->q->queue_call_rcu(&dummy->head, free_dummy);
96}
97
98static inline
16aa9ee8 99void _cds_lfq_node_init_rcu(struct cds_lfq_node_rcu *node)
3d02c34d
MD
100{
101 node->next = NULL;
3d02c34d
MD
102}
103
e17d9985 104static inline
d9b52143 105void _cds_lfq_init_rcu(struct cds_lfq_queue_rcu *q,
e17d9985
MD
106 void queue_call_rcu(struct rcu_head *head,
107 void (*func)(struct rcu_head *head)))
108{
109 q->tail = make_dummy(q, NULL);
909292c2 110 q->dummy = q->tail;
0cca1a2d 111 q->head = q->tail;
e17d9985
MD
112 q->queue_call_rcu = queue_call_rcu;
113}
114
115/*
116 * The queue should be emptied before calling destroy.
117 *
118 * Return 0 on success, -EPERM if queue is not empty.
119 */
120static inline
121int _cds_lfq_destroy_rcu(struct cds_lfq_queue_rcu *q)
3d02c34d 122{
0cca1a2d 123 struct cds_lfq_node_rcu *head;
e17d9985
MD
124
125 head = rcu_dereference(q->head);
909292c2 126 if (!(is_dummy(q, head) && head->next == NULL))
e17d9985
MD
127 return -EPERM; /* not empty */
128 rcu_free_dummy(head);
e17d9985 129 return 0;
3d02c34d
MD
130}
131
d9b52143
MD
132/*
133 * Should be called under rcu read lock critical section.
134 */
e17d9985 135static inline
d9b52143
MD
136void _cds_lfq_enqueue_rcu(struct cds_lfq_queue_rcu *q,
137 struct cds_lfq_node_rcu *node)
3d02c34d 138{
3d02c34d
MD
139 /*
140 * uatomic_cmpxchg() implicit memory barrier orders earlier stores to
141 * node before publication.
142 */
143
144 for (;;) {
16aa9ee8 145 struct cds_lfq_node_rcu *tail, *next;
3d02c34d 146
3d02c34d 147 tail = rcu_dereference(q->tail);
909292c2 148 next = uatomic_cmpxchg(&tail->next, NULL, node);
3d02c34d
MD
149 if (next == NULL) {
150 /*
151 * Tail was at the end of queue, we successfully
e17d9985
MD
152 * appended to it. Now move tail (another
153 * enqueue might beat us to it, that's fine).
3d02c34d 154 */
85b57703 155 (void) uatomic_cmpxchg(&q->tail, tail, node);
3d02c34d
MD
156 return;
157 } else {
158 /*
e17d9985
MD
159 * Failure to append to current tail.
160 * Help moving tail further and retry.
3d02c34d 161 */
85b57703 162 (void) uatomic_cmpxchg(&q->tail, tail, next);
3d02c34d
MD
163 continue;
164 }
165 }
166}
167
168/*
d9b52143
MD
169 * Should be called under rcu read lock critical section.
170 *
e17d9985
MD
171 * The caller must wait for a grace period to pass before freeing the returned
172 * node or modifying the cds_lfq_node_rcu structure.
173 * Returns NULL if queue is empty.
3d02c34d 174 */
e17d9985 175static inline
a34df756 176struct cds_lfq_node_rcu *_cds_lfq_dequeue_rcu(struct cds_lfq_queue_rcu *q)
3d02c34d
MD
177{
178 for (;;) {
16aa9ee8 179 struct cds_lfq_node_rcu *head, *next;
3d02c34d 180
3d02c34d 181 head = rcu_dereference(q->head);
909292c2
MD
182 next = rcu_dereference(head->next);
183 if (is_dummy(q, head) && next == NULL)
e17d9985
MD
184 return NULL; /* empty */
185 /*
186 * We never, ever allow dequeue to get to a state where
187 * the queue is empty (we need at least one node in the
188 * queue). This is ensured by checking if the head next
189 * is NULL and retry in that case (this means a
190 * concurrent dummy node re-enqueue is in progress).
191 */
3d02c34d
MD
192 if (next) {
193 if (uatomic_cmpxchg(&q->head, head, next) == head) {
909292c2 194 if (is_dummy(q, head)) {
e17d9985
MD
195 struct cds_lfq_node_rcu *node;
196 /*
197 * Requeue dummy. We need to
198 * reallocate to protect from
199 * ABA.
200 */
201 rcu_free_dummy(head);
202 node = make_dummy(q, NULL);
909292c2
MD
203 /*
204 * We are the only thread
205 * allowed to update dummy (we
707c65a8
MD
206 * own the old dummy). Other
207 * dequeue threads read it
208 * concurrently with RCU
209 * read-lock held, which
210 * protects from ABA.
909292c2 211 */
707c65a8 212 CMM_STORE_SHARED(q->dummy, node);
e17d9985
MD
213 _cds_lfq_enqueue_rcu(q, node);
214 continue; /* try again */
215 }
216 return head;
3d02c34d
MD
217 } else {
218 /* Concurrently pushed, retry */
3d02c34d
MD
219 continue;
220 }
221 } else {
e17d9985
MD
222 /* Dummy node re-enqueue is in progress, retry. */
223 continue;
3d02c34d
MD
224 }
225 }
226}
227
228#ifdef __cplusplus
229}
230#endif
231
232#endif /* _URCU_RCULFQUEUE_STATIC_H */
This page took 0.032597 seconds and 4 git commands to generate.