Documentation: rculfhash: cds_lfht_resize not within read-side C.S.
[urcu.git] / urcu / rculfhash.h
1 #ifndef _URCU_RCULFHASH_H
2 #define _URCU_RCULFHASH_H
3
4 /*
5 * urcu/rculfhash.h
6 *
7 * Userspace RCU library - Lock-Free RCU Hash Table
8 *
9 * Copyright 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 * Copyright 2011 - Lai Jiangshan <laijs@cn.fujitsu.com>
11 *
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.
16 *
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.
21 *
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
25 *
26 * Include this file _after_ including your URCU flavor.
27 */
28
29 #include <stdint.h>
30 #include <urcu/compiler.h>
31 #include <urcu-call-rcu.h>
32 #include <urcu-flavor.h>
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 /*
39 * cds_lfht_node: Contains the next pointers and reverse-hash
40 * value required for lookup and traversal of the hash table.
41 *
42 * struct cds_lfht_node should be aligned on 8-bytes boundaries because
43 * the three lower bits are used as flags. It is worth noting that the
44 * information contained within these three bits could be represented on
45 * two bits by re-using the same bit for REMOVAL_OWNER_FLAG and
46 * BUCKET_FLAG. This can be done if we ensure that no iterator nor
47 * updater check the BUCKET_FLAG after it detects that the REMOVED_FLAG
48 * is set. Given the minimum size of struct cds_lfht_node is 8 bytes on
49 * 32-bit architectures, we choose to go for simplicity and reserve
50 * three bits.
51 *
52 * struct cds_lfht_node can be embedded into a structure (as a field).
53 * caa_container_of() can be used to get the structure from the struct
54 * cds_lfht_node after a lookup.
55 *
56 * The structure which embeds it typically holds the key (or key-value
57 * pair) of the object. The caller code is responsible for calculation
58 * of the hash value for cds_lfht APIs.
59 */
60 struct cds_lfht_node {
61 struct cds_lfht_node *next; /* ptr | REMOVAL_OWNER_FLAG | BUCKET_FLAG | REMOVED_FLAG */
62 unsigned long reverse_hash;
63 } __attribute__((aligned(8)));
64
65 /* cds_lfht_iter: Used to track state while traversing a hash chain. */
66 struct cds_lfht_iter {
67 struct cds_lfht_node *node, *next;
68 };
69
70 static inline
71 struct cds_lfht_node *cds_lfht_iter_get_node(struct cds_lfht_iter *iter)
72 {
73 return iter->node;
74 }
75
76 struct cds_lfht;
77
78 /*
79 * Caution !
80 * Ensure reader and writer threads are registered as urcu readers.
81 */
82
83 typedef int (*cds_lfht_match_fct)(struct cds_lfht_node *node, const void *key);
84
85 /*
86 * cds_lfht_node_init - initialize a hash table node
87 * @node: the node to initialize.
88 *
89 * This function is kept to be eventually used for debugging purposes
90 * (detection of memory corruption).
91 */
92 static inline
93 void cds_lfht_node_init(struct cds_lfht_node *node)
94 {
95 }
96
97 /*
98 * Hash table creation flags.
99 */
100 enum {
101 CDS_LFHT_AUTO_RESIZE = (1U << 0),
102 CDS_LFHT_ACCOUNTING = (1U << 1),
103 };
104
105 struct cds_lfht_mm_type {
106 struct cds_lfht *(*alloc_cds_lfht)(unsigned long min_nr_alloc_buckets,
107 unsigned long max_nr_buckets);
108 void (*alloc_bucket_table)(struct cds_lfht *ht, unsigned long order);
109 void (*free_bucket_table)(struct cds_lfht *ht, unsigned long order);
110 struct cds_lfht_node *(*bucket_at)(struct cds_lfht *ht,
111 unsigned long index);
112 };
113
114 extern const struct cds_lfht_mm_type cds_lfht_mm_order;
115 extern const struct cds_lfht_mm_type cds_lfht_mm_chunk;
116 extern const struct cds_lfht_mm_type cds_lfht_mm_mmap;
117
118 /*
119 * _cds_lfht_new - API used by cds_lfht_new wrapper. Do not use directly.
120 */
121 extern
122 struct cds_lfht *_cds_lfht_new(unsigned long init_size,
123 unsigned long min_nr_alloc_buckets,
124 unsigned long max_nr_buckets,
125 int flags,
126 const struct cds_lfht_mm_type *mm,
127 const struct rcu_flavor_struct *flavor,
128 pthread_attr_t *attr);
129
130 /*
131 * cds_lfht_new - allocate a hash table.
132 * @init_size: number of buckets to allocate initially. Must be power of two.
133 * @min_nr_alloc_buckets: the minimum number of allocated buckets.
134 * (must be power of two)
135 * @max_nr_buckets: the maximum number of hash table buckets allowed.
136 * (must be power of two)
137 * @flags: hash table creation flags (can be combined with bitwise or: '|').
138 * 0: no flags.
139 * CDS_LFHT_AUTO_RESIZE: automatically resize hash table.
140 * CDS_LFHT_ACCOUNTING: count the number of node addition
141 * and removal in the table
142 * @attr: optional resize worker thread attributes. NULL for default.
143 *
144 * Return NULL on error.
145 * Note: the RCU flavor must be already included before the hash table header.
146 *
147 * The programmer is responsible for ensuring that resize operation has a
148 * priority equal to hash table updater threads. It should be performed by
149 * specifying the appropriate priority in the pthread "attr" argument, and,
150 * for CDS_LFHT_AUTO_RESIZE, by ensuring that call_rcu worker threads also have
151 * this priority level. Having lower priority for call_rcu and resize threads
152 * does not pose any correctness issue, but the resize operations could be
153 * starved by updates, thus leading to long hash table bucket chains.
154 * Threads calling cds_lfht_new are NOT required to be registered RCU
155 * read-side threads. It can be called very early. (e.g. before RCU is
156 * initialized)
157 */
158 static inline
159 struct cds_lfht *cds_lfht_new(unsigned long init_size,
160 unsigned long min_nr_alloc_buckets,
161 unsigned long max_nr_buckets,
162 int flags,
163 pthread_attr_t *attr)
164 {
165 return _cds_lfht_new(init_size, min_nr_alloc_buckets, max_nr_buckets,
166 flags, NULL, &rcu_flavor, attr);
167 }
168
169 /*
170 * cds_lfht_destroy - destroy a hash table.
171 * @ht: the hash table to destroy.
172 * @attr: (output) resize worker thread attributes, as received by cds_lfht_new.
173 * The caller will typically want to free this pointer if dynamically
174 * allocated. The attr point can be NULL if the caller does not
175 * need to be informed of the value passed to cds_lfht_new().
176 *
177 * Return 0 on success, negative error value on error.
178 * Threads calling this API need to be registered RCU read-side threads.
179 * cds_lfht_destroy should *not* be called from a RCU read-side critical
180 * section.
181 */
182 extern
183 int cds_lfht_destroy(struct cds_lfht *ht, pthread_attr_t **attr);
184
185 /*
186 * cds_lfht_count_nodes - count the number of nodes in the hash table.
187 * @ht: the hash table.
188 * @split_count_before: sample the node count split-counter before traversal.
189 * @count: traverse the hash table, count the number of nodes observed.
190 * @split_count_after: sample the node count split-counter after traversal.
191 *
192 * Call with rcu_read_lock held.
193 * Threads calling this API need to be registered RCU read-side threads.
194 */
195 extern
196 void cds_lfht_count_nodes(struct cds_lfht *ht,
197 long *split_count_before,
198 unsigned long *count,
199 long *split_count_after);
200
201 /*
202 * cds_lfht_lookup - lookup a node by key.
203 * @ht: the hash table.
204 * @hash: the key hash.
205 * @match: the key match function.
206 * @key: the current node key.
207 * @iter: node, if found (output). *iter->node set to NULL if not found.
208 *
209 * Call with rcu_read_lock held.
210 * Threads calling this API need to be registered RCU read-side threads.
211 * This function acts as a rcu_dereference() to read the node pointer.
212 */
213 extern
214 void cds_lfht_lookup(struct cds_lfht *ht, unsigned long hash,
215 cds_lfht_match_fct match, const void *key,
216 struct cds_lfht_iter *iter);
217
218 /*
219 * cds_lfht_next_duplicate - get the next item with same key, after iterator.
220 * @ht: the hash table.
221 * @match: the key match function.
222 * @key: the current node key.
223 * @iter: input: current iterator.
224 * output: node, if found. *iter->node set to NULL if not found.
225 *
226 * Uses an iterator initialized by a lookup or traversal. Important: the
227 * iterator _needs_ to be initialized before calling
228 * cds_lfht_next_duplicate.
229 * Sets *iter-node to the following node with same key.
230 * Sets *iter->node to NULL if no following node exists with same key.
231 * RCU read-side lock must be held across cds_lfht_lookup and
232 * cds_lfht_next calls, and also between cds_lfht_next calls using the
233 * node returned by a previous cds_lfht_next.
234 * Call with rcu_read_lock held.
235 * Threads calling this API need to be registered RCU read-side threads.
236 * This function acts as a rcu_dereference() to read the node pointer.
237 */
238 extern
239 void cds_lfht_next_duplicate(struct cds_lfht *ht,
240 cds_lfht_match_fct match, const void *key,
241 struct cds_lfht_iter *iter);
242
243 /*
244 * cds_lfht_first - get the first node in the table.
245 * @ht: the hash table.
246 * @iter: First node, if exists (output). *iter->node set to NULL if not found.
247 *
248 * Output in "*iter". *iter->node set to NULL if table is empty.
249 * Call with rcu_read_lock held.
250 * Threads calling this API need to be registered RCU read-side threads.
251 * This function acts as a rcu_dereference() to read the node pointer.
252 */
253 extern
254 void cds_lfht_first(struct cds_lfht *ht, struct cds_lfht_iter *iter);
255
256 /*
257 * cds_lfht_next - get the next node in the table.
258 * @ht: the hash table.
259 * @iter: input: current iterator.
260 * output: next node, if exists. *iter->node set to NULL if not found.
261 *
262 * Input/Output in "*iter". *iter->node set to NULL if *iter was
263 * pointing to the last table node.
264 * Call with rcu_read_lock held.
265 * Threads calling this API need to be registered RCU read-side threads.
266 * This function acts as a rcu_dereference() to read the node pointer.
267 */
268 extern
269 void cds_lfht_next(struct cds_lfht *ht, struct cds_lfht_iter *iter);
270
271 /*
272 * cds_lfht_add - add a node to the hash table.
273 * @ht: the hash table.
274 * @hash: the key hash.
275 * @node: the node to add.
276 *
277 * This function supports adding redundant keys into the table.
278 * Call with rcu_read_lock held.
279 * Threads calling this API need to be registered RCU read-side threads.
280 * This function issues a full memory barrier before and after its
281 * atomic commit.
282 */
283 extern
284 void cds_lfht_add(struct cds_lfht *ht, unsigned long hash,
285 struct cds_lfht_node *node);
286
287 /*
288 * cds_lfht_add_unique - add a node to hash table, if key is not present.
289 * @ht: the hash table.
290 * @hash: the node's hash.
291 * @match: the key match function.
292 * @key: the node's key.
293 * @node: the node to try adding.
294 *
295 * Return the node added upon success.
296 * Return the unique node already present upon failure. If
297 * cds_lfht_add_unique fails, the node passed as parameter should be
298 * freed by the caller. In this case, the caller does NOT need to wait
299 * for a grace period before freeing the node.
300 * Call with rcu_read_lock held.
301 * Threads calling this API need to be registered RCU read-side threads.
302 *
303 * The semantic of this function is that if only this function is used
304 * to add keys into the table, no duplicated keys should ever be
305 * observable in the table. The same guarantee apply for combination of
306 * add_unique and add_replace (see below).
307 *
308 * Upon success, this function issues a full memory barrier before and
309 * after its atomic commit. Upon failure, this function acts like a
310 * simple lookup operation: it acts as a rcu_dereference() to read the
311 * node pointer. The failure case does not guarantee any other memory
312 * barrier.
313 */
314 extern
315 struct cds_lfht_node *cds_lfht_add_unique(struct cds_lfht *ht,
316 unsigned long hash,
317 cds_lfht_match_fct match,
318 const void *key,
319 struct cds_lfht_node *node);
320
321 /*
322 * cds_lfht_add_replace - replace or add a node within hash table.
323 * @ht: the hash table.
324 * @hash: the node's hash.
325 * @match: the key match function.
326 * @key: the node's key.
327 * @node: the node to add.
328 *
329 * Return the node replaced upon success. If no node matching the key
330 * was present, return NULL, which also means the operation succeeded.
331 * This replacement operation should never fail.
332 * Call with rcu_read_lock held.
333 * Threads calling this API need to be registered RCU read-side threads.
334 * After successful replacement, a grace period must be waited for before
335 * freeing the memory reserved for the returned node.
336 *
337 * The semantic of replacement vs lookups and traversals is the
338 * following: if lookups and traversals are performed between a key
339 * unique insertion and its removal, we guarantee that the lookups and
340 * traversals will always find exactly one instance of the key if it is
341 * replaced concurrently with the lookups.
342 *
343 * Providing this semantic allows us to ensure that replacement-only
344 * schemes will never generate duplicated keys. It also allows us to
345 * guarantee that a combination of add_replace and add_unique updates
346 * will never generate duplicated keys.
347 *
348 * This function issues a full memory barrier before and after its
349 * atomic commit.
350 */
351 extern
352 struct cds_lfht_node *cds_lfht_add_replace(struct cds_lfht *ht,
353 unsigned long hash,
354 cds_lfht_match_fct match,
355 const void *key,
356 struct cds_lfht_node *node);
357
358 /*
359 * cds_lfht_replace - replace a node pointed to by iter within hash table.
360 * @ht: the hash table.
361 * @old_iter: the iterator position of the node to replace.
362 * @hash: the node's hash.
363 * @match: the key match function.
364 * @key: the node's key.
365 * @new_node: the new node to use as replacement.
366 *
367 * Return 0 if replacement is successful, negative value otherwise.
368 * Replacing a NULL old node or an already removed node will fail with
369 * -ENOENT.
370 * If the hash or value of the node to replace and the new node differ,
371 * this function returns -EINVAL without proceeding to the replacement.
372 * Old node can be looked up with cds_lfht_lookup and cds_lfht_next.
373 * RCU read-side lock must be held between lookup and replacement.
374 * Call with rcu_read_lock held.
375 * Threads calling this API need to be registered RCU read-side threads.
376 * After successful replacement, a grace period must be waited for before
377 * freeing the memory reserved for the old node (which can be accessed
378 * with cds_lfht_iter_get_node).
379 *
380 * The semantic of replacement vs lookups is the same as
381 * cds_lfht_add_replace().
382 *
383 * Upon success, this function issues a full memory barrier before and
384 * after its atomic commit. Upon failure, this function does not issue
385 * any memory barrier.
386 */
387 extern
388 int cds_lfht_replace(struct cds_lfht *ht,
389 struct cds_lfht_iter *old_iter,
390 unsigned long hash,
391 cds_lfht_match_fct match,
392 const void *key,
393 struct cds_lfht_node *new_node);
394
395 /*
396 * cds_lfht_del - remove node pointed to by iterator from hash table.
397 * @ht: the hash table.
398 * @node: the node to delete.
399 *
400 * Return 0 if the node is successfully removed, negative value
401 * otherwise.
402 * Deleting a NULL node or an already removed node will fail with a
403 * negative value.
404 * Node can be looked up with cds_lfht_lookup and cds_lfht_next,
405 * followed by use of cds_lfht_iter_get_node.
406 * RCU read-side lock must be held between lookup and removal.
407 * Call with rcu_read_lock held.
408 * Threads calling this API need to be registered RCU read-side threads.
409 * After successful removal, a grace period must be waited for before
410 * freeing the memory reserved for old node (which can be accessed with
411 * cds_lfht_iter_get_node).
412 * Upon success, this function issues a full memory barrier before and
413 * after its atomic commit. Upon failure, this function does not issue
414 * any memory barrier.
415 */
416 extern
417 int cds_lfht_del(struct cds_lfht *ht, struct cds_lfht_node *node);
418
419 /*
420 * cds_lfht_is_node_deleted - query whether a node is removed from hash table.
421 *
422 * Return non-zero if the node is deleted from the hash table, 0
423 * otherwise.
424 * Node can be looked up with cds_lfht_lookup and cds_lfht_next,
425 * followed by use of cds_lfht_iter_get_node.
426 * RCU read-side lock must be held between lookup and call to this
427 * function.
428 * Call with rcu_read_lock held.
429 * Threads calling this API need to be registered RCU read-side threads.
430 * This function does not issue any memory barrier.
431 */
432 extern
433 int cds_lfht_is_node_deleted(struct cds_lfht_node *node);
434
435 /*
436 * cds_lfht_resize - Force a hash table resize
437 * @ht: the hash table.
438 * @new_size: update to this hash table size.
439 *
440 * Threads calling this API need to be registered RCU read-side threads.
441 * This function does not (necessarily) issue memory barriers.
442 * cds_lfht_resize should *not* be called from a RCU read-side critical
443 * section.
444 */
445 extern
446 void cds_lfht_resize(struct cds_lfht *ht, unsigned long new_size);
447
448 /*
449 * Note: it is safe to perform element removal (del), replacement, or
450 * any hash table update operation during any of the following hash
451 * table traversals.
452 * These functions act as rcu_dereference() to read the node pointers.
453 */
454 #define cds_lfht_for_each(ht, iter, node) \
455 for (cds_lfht_first(ht, iter), \
456 node = cds_lfht_iter_get_node(iter); \
457 node != NULL; \
458 cds_lfht_next(ht, iter), \
459 node = cds_lfht_iter_get_node(iter))
460
461 #define cds_lfht_for_each_duplicate(ht, hash, match, key, iter, node) \
462 for (cds_lfht_lookup(ht, hash, match, key, iter), \
463 node = cds_lfht_iter_get_node(iter); \
464 node != NULL; \
465 cds_lfht_next_duplicate(ht, match, key, iter), \
466 node = cds_lfht_iter_get_node(iter))
467
468 #define cds_lfht_for_each_entry(ht, iter, pos, member) \
469 for (cds_lfht_first(ht, iter), \
470 pos = caa_container_of(cds_lfht_iter_get_node(iter), \
471 __typeof__(*(pos)), member); \
472 &(pos)->member != NULL; \
473 cds_lfht_next(ht, iter), \
474 pos = caa_container_of(cds_lfht_iter_get_node(iter), \
475 __typeof__(*(pos)), member))
476
477 #define cds_lfht_for_each_entry_duplicate(ht, hash, match, key, \
478 iter, pos, member) \
479 for (cds_lfht_lookup(ht, hash, match, key, iter), \
480 pos = caa_container_of(cds_lfht_iter_get_node(iter), \
481 __typeof__(*(pos)), member); \
482 &(pos)->member != NULL; \
483 cds_lfht_next_duplicate(ht, match, key, iter), \
484 pos = caa_container_of(cds_lfht_iter_get_node(iter), \
485 __typeof__(*(pos)), member))
486
487 #ifdef __cplusplus
488 }
489 #endif
490
491 #endif /* _URCU_RCULFHASH_H */
This page took 0.039891 seconds and 5 git commands to generate.