rculfhash: update header documentation
[urcu.git] / urcu / rculfhash.h
CommitLineData
a42cc659
MD
1#ifndef _URCU_RCULFHASH_H
2#define _URCU_RCULFHASH_H
ab7d5fc6 3
f0c29ed7
MD
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 *
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
15 *
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
cf77d1fa
MD
24 *
25 * Include this file _after_ including your URCU flavor.
f0c29ed7
MD
26 */
27
674f7a69 28#include <stdint.h>
abc490a1
MD
29#include <urcu-call-rcu.h>
30
01389791
MD
31#ifdef __cplusplus
32extern "C" {
33#endif
34
7f61a77f 35/*
14044b37 36 * struct cds_lfht_node and struct _cds_lfht_node should be aligned on
b198f0fd 37 * 4-bytes boundaries because the two lower bits are used as flags.
7f61a77f
MD
38 */
39
14044b37 40struct _cds_lfht_node {
b198f0fd 41 struct cds_lfht_node *next; /* ptr | DUMMY_FLAG | REMOVED_FLAG */
abc490a1 42 unsigned long reverse_hash;
58ca0741 43} __attribute__((aligned(4)));
cc4fcb10 44
ae62aa6a
MD
45/*
46 * struct cds_lfht_node can be embedded into a structure (as a field).
47 * caa_container_of() can be used to get the structure from the struct
48 * cds_lfht_node after a lookup.
49 */
14044b37 50struct cds_lfht_node {
cc4fcb10 51 /* cache-hot for iteration */
14044b37 52 struct _cds_lfht_node p; /* needs to be first field */
9b35f1e4
MD
53 void *key;
54 unsigned int key_len;
9b35f1e4 55 /* cache-cold for iteration */
abc490a1
MD
56 struct rcu_head head;
57};
58
adc0de68
MD
59struct cds_lfht_iter {
60 struct cds_lfht_node *node, *next;
61};
62
63static inline
64struct cds_lfht_node *cds_lfht_iter_get_node(struct cds_lfht_iter *iter)
65{
66 return iter->node;
67}
68
14044b37 69struct cds_lfht;
ab7d5fc6 70
5e28c532
MD
71/*
72 * Caution !
abc490a1 73 * Ensure reader and writer threads are registered as urcu readers.
5e28c532
MD
74 */
75
14044b37
MD
76typedef unsigned long (*cds_lfht_hash_fct)(void *key, size_t length,
77 unsigned long seed);
78typedef unsigned long (*cds_lfht_compare_fct)(void *key1, size_t key1_len,
79 void *key2, size_t key2_len);
abc490a1 80
f0c29ed7 81/*
14044b37 82 * cds_lfht_node_init - initialize a hash table node
f0c29ed7 83 */
abc490a1 84static inline
14044b37
MD
85void cds_lfht_node_init(struct cds_lfht_node *node, void *key,
86 size_t key_len)
abc490a1
MD
87{
88 node->key = key;
732ad076 89 node->key_len = key_len;
abc490a1 90}
674f7a69 91
b8af5011
MD
92/*
93 * Hash table creation flags.
94 */
95enum {
96 CDS_LFHT_AUTO_RESIZE = (1U << 0),
97};
98
674f7a69 99/*
7a9dcf9b 100 * _cds_lfht_new - API used by cds_lfht_new wrapper. Do not use directly.
674f7a69 101 */
7a9dcf9b 102struct cds_lfht *_cds_lfht_new(cds_lfht_hash_fct hash_fct,
14044b37
MD
103 cds_lfht_compare_fct compare_fct,
104 unsigned long hash_seed,
105 unsigned long init_size,
b8af5011 106 int flags,
14044b37 107 void (*cds_lfht_call_rcu)(struct rcu_head *head,
1475579c 108 void (*func)(struct rcu_head *head)),
01dbfa62
MD
109 void (*cds_lfht_synchronize_rcu)(void),
110 void (*cds_lfht_rcu_read_lock)(void),
5f511391
MD
111 void (*cds_lfht_rcu_read_unlock)(void),
112 void (*cds_lfht_rcu_thread_offline)(void),
b7d619b0
MD
113 void (*cds_lfht_rcu_thread_online)(void),
114 void (*cds_lfht_rcu_register_thread)(void),
115 void (*cds_lfht_rcu_unregister_thread)(void),
116 pthread_attr_t *attr);
ab7d5fc6 117
7a9dcf9b
MD
118/*
119 * cds_lfht_new - allocate a hash table.
f22dd01d
MD
120 * @hash_fct: the hashing function.
121 * @compare_fct: the key comparison function.
122 * @hash_seed: the seed for hash function.
123 * @init_size: number of nodes to allocate initially. Must be power of two.
124 * @flags: hash table creation flags (can be combined with bitwise or: '|').
125 * 0: no flags.
126 * CDS_LFHT_AUTO_RESIZE: automatically resize hash table.
b7d619b0 127 * @attr: optional resize worker thread attributes. NULL for default.
7a9dcf9b 128 *
7a9dcf9b
MD
129 * Return NULL on error.
130 * Note: the RCU flavor must be already included before the hash table header.
b7d619b0
MD
131 *
132 * The programmer is responsible for ensuring that resize operation has a
133 * priority equal to hash table updater threads. It should be performed by
134 * specifying the appropriate priority in the pthread "attr" argument, and,
135 * for CDS_LFHT_AUTO_RESIZE, by ensuring that call_rcu worker threads also have
136 * this priority level. Having lower priority for call_rcu and resize threads
137 * does not pose any correctness issue, but the resize operations could be
138 * starved by updates, thus leading to long hash table bucket chains.
3df0c49c 139 * Threads calling this API need to be registered RCU read-side threads.
7a9dcf9b
MD
140 */
141static inline
142struct cds_lfht *cds_lfht_new(cds_lfht_hash_fct hash_fct,
143 cds_lfht_compare_fct compare_fct,
144 unsigned long hash_seed,
145 unsigned long init_size,
b7d619b0
MD
146 int flags,
147 pthread_attr_t *attr)
7a9dcf9b
MD
148{
149 return _cds_lfht_new(hash_fct, compare_fct, hash_seed,
150 init_size, flags,
151 call_rcu, synchronize_rcu, rcu_read_lock,
152 rcu_read_unlock, rcu_thread_offline,
b7d619b0
MD
153 rcu_thread_online, rcu_register_thread,
154 rcu_unregister_thread, attr);
7a9dcf9b
MD
155}
156
f0c29ed7 157/*
14044b37 158 * cds_lfht_destroy - destroy a hash table.
b7d619b0
MD
159 * @ht: the hash table to destroy.
160 * @attr: (output) resize worker thread attributes, as received by cds_lfht_new.
161 * The caller will typically want to free this pointer if dynamically
162 * allocated.
6878c72b
MD
163 *
164 * Return 0 on success, negative error value on error.
3df0c49c 165 * Threads calling this API need to be registered RCU read-side threads.
f0c29ed7 166 */
b7d619b0 167int cds_lfht_destroy(struct cds_lfht *ht, pthread_attr_t **attr);
f0c29ed7
MD
168
169/*
14044b37 170 * cds_lfht_count_nodes - count the number of nodes in the hash table.
f0c29ed7
MD
171 *
172 * Call with rcu_read_lock held.
3df0c49c 173 * Threads calling this API need to be registered RCU read-side threads.
f0c29ed7 174 */
14044b37 175void cds_lfht_count_nodes(struct cds_lfht *ht,
d933dd0e 176 long *approx_before,
adc0de68 177 unsigned long *count,
973e5e1b 178 unsigned long *removed,
d933dd0e 179 long *approx_after);
ab7d5fc6 180
f0c29ed7 181/*
14044b37 182 * cds_lfht_lookup - lookup a node by key.
f0c29ed7 183 *
adc0de68 184 * Output in "*iter". *iter->node set to NULL if not found.
f0c29ed7 185 * Call with rcu_read_lock held.
3df0c49c 186 * Threads calling this API need to be registered RCU read-side threads.
f0c29ed7 187 */
adc0de68
MD
188void cds_lfht_lookup(struct cds_lfht *ht, void *key, size_t key_len,
189 struct cds_lfht_iter *iter);
ab7d5fc6 190
f0c29ed7 191/*
3883c0e5 192 * cds_lfht_next_duplicate - get the next item with same key (after a lookup).
f0c29ed7 193 *
adc0de68
MD
194 * Uses an iterator initialized by a lookup.
195 * Sets *iter-node to the following node with same key.
196 * Sets *iter->node to NULL if no following node exists with same key.
197 * RCU read-side lock must be held across cds_lfht_lookup and
198 * cds_lfht_next calls, and also between cds_lfht_next calls using the
199 * node returned by a previous cds_lfht_next.
200 * Call with rcu_read_lock held.
3df0c49c 201 * Threads calling this API need to be registered RCU read-side threads.
f0c29ed7 202 */
3883c0e5 203void cds_lfht_next_duplicate(struct cds_lfht *ht, struct cds_lfht_iter *iter);
4e9b9fbf
MD
204
205/*
206 * cds_lfht_first - get the first node in the table.
207 *
208 * Output in "*iter". *iter->node set to NULL if table is empty.
209 * Call with rcu_read_lock held.
3df0c49c 210 * Threads calling this API need to be registered RCU read-side threads.
4e9b9fbf
MD
211 */
212void cds_lfht_first(struct cds_lfht *ht, struct cds_lfht_iter *iter);
213
214/*
215 * cds_lfht_next - get the next node in the table.
216 *
217 * Input/Output in "*iter". *iter->node set to NULL if *iter was
218 * pointing to the last table node.
219 * Call with rcu_read_lock held.
3df0c49c 220 * Threads calling this API need to be registered RCU read-side threads.
4e9b9fbf
MD
221 */
222void cds_lfht_next(struct cds_lfht *ht, struct cds_lfht_iter *iter);
ab7d5fc6 223
18117871 224/*
14044b37 225 * cds_lfht_add - add a node to the hash table.
f0c29ed7 226 *
48ed1c18 227 * This function supports adding redundant keys into the table.
3df0c49c
MD
228 * Call with rcu_read_lock held.
229 * Threads calling this API need to be registered RCU read-side threads.
f0c29ed7 230 */
14044b37 231void cds_lfht_add(struct cds_lfht *ht, struct cds_lfht_node *node);
f0c29ed7
MD
232
233/*
14044b37 234 * cds_lfht_add_unique - add a node to hash table, if key is not present.
f0c29ed7 235 *
6878c72b 236 * Return the node added upon success.
860d07e8
MD
237 * Return the unique node already present upon failure. If
238 * cds_lfht_add_unique fails, the node passed as parameter should be
239 * freed by the caller.
f0c29ed7 240 * Call with rcu_read_lock held.
3df0c49c 241 * Threads calling this API need to be registered RCU read-side threads.
48ed1c18
MD
242 *
243 * The semantic of this function is that if only this function is used
244 * to add keys into the table, no duplicated keys should ever be
245 * observable in the table. The same guarantee apply for combination of
9357c415 246 * add_unique and add_replace (see below).
18117871 247 */
adc0de68
MD
248struct cds_lfht_node *cds_lfht_add_unique(struct cds_lfht *ht,
249 struct cds_lfht_node *node);
3eca1b8c 250
48ed1c18 251/*
9357c415 252 * cds_lfht_add_replace - replace or add a node within hash table.
48ed1c18
MD
253 *
254 * Return the node replaced upon success. If no node matching the key
255 * was present, return NULL, which also means the operation succeeded.
256 * This replacement operation should never fail.
257 * Call with rcu_read_lock held.
3df0c49c 258 * Threads calling this API need to be registered RCU read-side threads.
48ed1c18
MD
259 * After successful replacement, a grace period must be waited for before
260 * freeing the memory reserved for the returned node.
261 *
262 * The semantic of replacement vs lookups is the following: if lookups
9357c415
MD
263 * are performed between a key unique insertion and its removal, we
264 * guarantee that the lookups and get next will always find exactly one
265 * instance of the key if it is replaced concurrently with the lookups.
48ed1c18
MD
266 *
267 * Providing this semantic allows us to ensure that replacement-only
268 * schemes will never generate duplicated keys. It also allows us to
9357c415 269 * guarantee that a combination of add_replace and add_unique updates
48ed1c18
MD
270 * will never generate duplicated keys.
271 */
9357c415 272struct cds_lfht_node *cds_lfht_add_replace(struct cds_lfht *ht,
adc0de68 273 struct cds_lfht_node *node);
48ed1c18 274
f0c29ed7 275/*
9357c415 276 * cds_lfht_replace - replace a node pointer to by iter within hash table.
f0c29ed7 277 *
9357c415
MD
278 * Return 0 if replacement is successful, negative value otherwise.
279 * Replacing a NULL old node or an already removed node will fail with a
280 * negative value.
281 * Old node can be looked up with cds_lfht_lookup and cds_lfht_next.
282 * RCU read-side lock must be held between lookup and replacement.
283 * Call with rcu_read_lock held.
3df0c49c 284 * Threads calling this API need to be registered RCU read-side threads.
9357c415
MD
285 * After successful replacement, a grace period must be waited for before
286 * freeing the memory reserved for the old node (which can be accessed
287 * with cds_lfht_iter_get_node).
288 *
289 * The semantic of replacement vs lookups is the following: if lookups
290 * are performed between a key unique insertion and its removal, we
291 * guarantee that the lookups and get next will always find exactly one
292 * instance of the key if it is replaced concurrently with the lookups.
293 *
294 * Providing this semantic allows us to ensure that replacement-only
295 * schemes will never generate duplicated keys. It also allows us to
296 * guarantee that a combination of add_replace and add_unique updates
297 * will never generate duplicated keys.
298 */
299int cds_lfht_replace(struct cds_lfht *ht, struct cds_lfht_iter *old_iter,
300 struct cds_lfht_node *new_node);
301
302/*
303 * cds_lfht_del - remove node pointed to by iterator from hash table.
304 *
305 * Return 0 if the node is successfully removed, negative value
306 * otherwise.
307 * Replacing a NULL node or an already removed node will fail with a
308 * negative value.
309 * Node can be looked up with cds_lfht_lookup and cds_lfht_next.
310 * cds_lfht_iter_get_node.
311 * RCU read-side lock must be held between lookup and removal.
f0c29ed7 312 * Call with rcu_read_lock held.
3df0c49c 313 * Threads calling this API need to be registered RCU read-side threads.
48ed1c18 314 * After successful removal, a grace period must be waited for before
9357c415
MD
315 * freeing the memory reserved for old node (which can be accessed with
316 * cds_lfht_iter_get_node).
f0c29ed7 317 */
9357c415 318int cds_lfht_del(struct cds_lfht *ht, struct cds_lfht_iter *iter);
ab7d5fc6 319
f0c29ed7 320/*
14044b37 321 * cds_lfht_resize - Force a hash table resize
1475579c 322 * @new_size: update to this hash table size.
3df0c49c
MD
323 *
324 * Threads calling this API need to be registered RCU read-side threads.
f0c29ed7 325 */
1475579c 326void cds_lfht_resize(struct cds_lfht *ht, unsigned long new_size);
464a1ec9 327
01389791
MD
328#ifdef __cplusplus
329}
330#endif
331
a42cc659 332#endif /* _URCU_RCULFHASH_H */
This page took 0.03862 seconds and 4 git commands to generate.