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