rculfhash: use threshold and target
[urcu.git] / rculfhash.c
CommitLineData
5e28c532 1/*
abc490a1
MD
2 * rculfhash.c
3 *
4 * Userspace RCU library - Lock-Free Expandable RCU Hash Table
5 *
6 * Copyright 2010-2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
5e28c532
MD
21 */
22
2ed95849
MD
23#define _LGPL_SOURCE
24#include <stdlib.h>
e0ba718a
MD
25#include <errno.h>
26#include <assert.h>
27#include <stdio.h>
abc490a1 28#include <stdint.h>
f000907d 29#include <string.h>
e0ba718a 30
2ed95849 31#include <urcu.h>
abc490a1 32#include <urcu-call-rcu.h>
a42cc659
MD
33#include <urcu/arch.h>
34#include <urcu/uatomic.h>
674f7a69 35#include <urcu/jhash.h>
a42cc659 36#include <urcu/compiler.h>
abc490a1 37#include <urcu/rculfhash.h>
5e28c532 38#include <stdio.h>
464a1ec9 39#include <pthread.h>
44395fb7 40
f9830efd
MD
41#define DEBUG /* Test */
42
43#ifdef DEBUG
44#define dbg_printf(args...) printf(args)
45#else
46#define dbg_printf(args...)
47#endif
48
3390d470
MD
49#define CHAIN_LEN_TARGET 4
50#define CHAIN_LEN_RESIZE_THRESHOLD 16
2ed95849 51
abc490a1
MD
52#ifndef max
53#define max(a, b) ((a) > (b) ? (a) : (b))
54#endif
2ed95849 55
395270b6 56struct rcu_table {
abc490a1 57 unsigned long size; /* always a power of 2 */
f9830efd 58 unsigned long resize_target;
abc490a1 59 struct rcu_head head;
395270b6
MD
60 struct rcu_ht_node *tbl[0];
61};
62
2ed95849 63struct rcu_ht {
395270b6 64 struct rcu_table *t; /* shared */
2ed95849 65 ht_hash_fct hash_fct;
732ad076
MD
66 ht_compare_fct compare_fct;
67 unsigned long hash_seed;
464a1ec9 68 pthread_mutex_t resize_mutex; /* resize mutex: add/del mutex */
abc490a1
MD
69 void (*ht_call_rcu)(struct rcu_head *head,
70 void (*func)(struct rcu_head *head));
2ed95849
MD
71};
72
abc490a1
MD
73struct rcu_resize_work {
74 struct rcu_head head;
2ed95849 75 struct rcu_ht *ht;
abc490a1 76};
2ed95849 77
abc490a1
MD
78/*
79 * Algorithm to reverse bits in a word by lookup table, extended to
80 * 64-bit words.
f9830efd 81 * Source:
abc490a1 82 * http://graphics.stanford.edu/~seander/bithacks.html#BitReverseTable
f9830efd 83 * Originally from Public Domain.
abc490a1
MD
84 */
85
86static const uint8_t BitReverseTable256[256] =
2ed95849 87{
abc490a1
MD
88#define R2(n) (n), (n) + 2*64, (n) + 1*64, (n) + 3*64
89#define R4(n) R2(n), R2((n) + 2*16), R2((n) + 1*16), R2((n) + 3*16)
90#define R6(n) R4(n), R4((n) + 2*4 ), R4((n) + 1*4 ), R4((n) + 3*4 )
91 R6(0), R6(2), R6(1), R6(3)
92};
93#undef R2
94#undef R4
95#undef R6
2ed95849 96
abc490a1
MD
97static
98uint8_t bit_reverse_u8(uint8_t v)
99{
100 return BitReverseTable256[v];
101}
ab7d5fc6 102
abc490a1
MD
103static __attribute__((unused))
104uint32_t bit_reverse_u32(uint32_t v)
105{
106 return ((uint32_t) bit_reverse_u8(v) << 24) |
107 ((uint32_t) bit_reverse_u8(v >> 8) << 16) |
108 ((uint32_t) bit_reverse_u8(v >> 16) << 8) |
109 ((uint32_t) bit_reverse_u8(v >> 24));
2ed95849
MD
110}
111
abc490a1
MD
112static __attribute__((unused))
113uint64_t bit_reverse_u64(uint64_t v)
2ed95849 114{
abc490a1
MD
115 return ((uint64_t) bit_reverse_u8(v) << 56) |
116 ((uint64_t) bit_reverse_u8(v >> 8) << 48) |
117 ((uint64_t) bit_reverse_u8(v >> 16) << 40) |
118 ((uint64_t) bit_reverse_u8(v >> 24) << 32) |
119 ((uint64_t) bit_reverse_u8(v >> 32) << 24) |
120 ((uint64_t) bit_reverse_u8(v >> 40) << 16) |
121 ((uint64_t) bit_reverse_u8(v >> 48) << 8) |
122 ((uint64_t) bit_reverse_u8(v >> 56));
123}
124
125static
126unsigned long bit_reverse_ulong(unsigned long v)
127{
128#if (CAA_BITS_PER_LONG == 32)
129 return bit_reverse_u32(v);
130#else
131 return bit_reverse_u64(v);
132#endif
133}
134
f9830efd
MD
135/*
136 * Algorithm to find the log2 of a 32-bit unsigned integer.
137 * source: http://graphics.stanford.edu/~seander/bithacks.html#IntegerLogLookup
138 * Originally from Public Domain.
139 */
140static const char LogTable256[256] =
141{
142#define LT(n) n, n, n, n, n, n, n, n, n, n, n, n, n, n, n, n
143 -1, 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3,
144 LT(4), LT(5), LT(5), LT(6), LT(6), LT(6), LT(6),
145 LT(7), LT(7), LT(7), LT(7), LT(7), LT(7), LT(7), LT(7)
146};
147
148uint32_t log2_u32(uint32_t v)
149{
150 uint32_t t, tt;
151
152 if ((tt = (v >> 16)))
153 return (t = (tt >> 8))
154 ? 24 + LogTable256[t]
155 : 16 + LogTable256[tt];
156 else
157 return (t = (v >> 8))
158 ? 8 + LogTable256[t]
159 : LogTable256[v];
160}
161
162static
163void ht_resize_lazy(struct rcu_ht *ht, struct rcu_table *t, int growth);
164
165static
166void check_resize(struct rcu_ht *ht, struct rcu_table *t,
167 uint32_t chain_len)
168{
3390d470
MD
169 if (chain_len >= CHAIN_LEN_RESIZE_THRESHOLD)
170 ht_resize_lazy(ht, t,
171 log2_u32(chain_len - CHAIN_LEN_TARGET));
f9830efd
MD
172}
173
abc490a1
MD
174static
175struct rcu_ht_node *clear_flag(struct rcu_ht_node *node)
176{
177 return (struct rcu_ht_node *) (((unsigned long) node) & ~0x1);
178}
179
180static
181int is_removed(struct rcu_ht_node *node)
182{
183 return ((unsigned long) node) & 0x1;
184}
185
186static
187struct rcu_ht_node *flag_removed(struct rcu_ht_node *node)
188{
189 return (struct rcu_ht_node *) (((unsigned long) node) | 0x1);
190}
191
192static
f9830efd 193unsigned long _uatomic_max(unsigned long *ptr, unsigned long v)
abc490a1
MD
194{
195 unsigned long old1, old2;
196
197 old1 = uatomic_read(ptr);
198 do {
199 old2 = old1;
200 if (old2 >= v)
f9830efd 201 return old2;
abc490a1 202 } while ((old1 = uatomic_cmpxchg(ptr, old2, v)) != old2);
f9830efd 203 return v;
abc490a1
MD
204}
205
206static
f000907d 207void _ht_add(struct rcu_ht *ht, struct rcu_table *t, struct rcu_ht_node *node)
abc490a1
MD
208{
209 struct rcu_ht_node *iter_prev = NULL, *iter = NULL;
210
f000907d
MD
211 if (!t->size)
212 return;
abc490a1 213 for (;;) {
f9830efd 214 uint32_t chain_len = 0;
abc490a1
MD
215
216 iter_prev = rcu_dereference(t->tbl[node->hash & (t->size - 1)]);
217 assert(iter_prev);
218 assert(iter_prev->reverse_hash <= node->reverse_hash);
219 for (;;) {
220 iter = clear_flag(rcu_dereference(iter_prev->next));
221 if (unlikely(!iter))
222 break;
223 if (iter->reverse_hash < node->reverse_hash)
224 break;
225 iter_prev = iter;
f000907d 226 check_resize(ht, t, ++chain_len);
abc490a1
MD
227 }
228 /* add in iter_prev->next */
229 if (is_removed(iter))
230 continue;
f000907d 231 assert(node != iter);
abc490a1 232 node->next = iter;
f000907d 233 assert(iter_prev != node);
abc490a1
MD
234 if (uatomic_cmpxchg(&iter_prev->next, iter, node) != iter)
235 continue;
f000907d 236 break;
464a1ec9 237 }
abc490a1 238}
464a1ec9 239
abc490a1
MD
240static
241int _ht_remove(struct rcu_ht *ht, struct rcu_table *t, struct rcu_ht_node *node)
242{
243 struct rcu_ht_node *iter_prev, *iter, *next, *old;
244 unsigned long chain_len;
245 int found, ret = 0;
246 int flagged = 0;
5e28c532 247
abc490a1
MD
248retry:
249 chain_len = 0;
250 found = 0;
251 iter_prev = rcu_dereference(t->tbl[node->hash & (t->size - 1)]);
252 assert(iter_prev);
253 assert(iter_prev->reverse_hash <= node->reverse_hash);
2ed95849 254 for (;;) {
abc490a1
MD
255 iter = clear_flag(rcu_dereference(iter_prev->next));
256 if (unlikely(!iter))
257 break;
258 if (iter->reverse_hash < node->reverse_hash)
259 break;
260 if (iter == node) {
261 found = 1;
2ed95849
MD
262 break;
263 }
abc490a1
MD
264 iter_prev = iter;
265 }
266 if (!found) {
267 ret = -ENOENT;
268 goto end;
269 }
270 next = rcu_dereference(iter->next);
271 if (!flagged) {
272 if (is_removed(next)) {
273 ret = -ENOENT;
2ed95849
MD
274 goto end;
275 }
abc490a1 276 /* set deletion flag */
f000907d
MD
277 if ((old = uatomic_cmpxchg(&iter->next, next,
278 flag_removed(next))) != next) {
abc490a1
MD
279 if (old == flag_removed(next)) {
280 ret = -ENOENT;
281 goto end;
282 } else {
283 goto retry;
284 }
285 }
286 flagged = 1;
2ed95849 287 }
abc490a1
MD
288 /*
289 * Remove the element from the list. Retry if there has been a
290 * concurrent add (there cannot be a concurrent delete, because
291 * we won the deletion flag cmpxchg).
292 */
293 if (uatomic_cmpxchg(&iter_prev->next, iter, clear_flag(next)) != iter)
294 goto retry;
2ed95849 295end:
2ed95849 296 return ret;
abc490a1 297}
2ed95849 298
abc490a1
MD
299static
300void init_table(struct rcu_ht *ht, struct rcu_table *t,
301 unsigned long first, unsigned long len)
302{
303 unsigned long i, end;
304
305 end = first + len;
306 for (i = first; i < end; i++) {
307 /* Update table size when power of two */
308 if (i != 0 && !(i & (i - 1)))
309 t->size = i;
310 t->tbl[i] = calloc(1, sizeof(struct rcu_ht_node));
311 t->tbl[i]->dummy = 1;
312 t->tbl[i]->hash = i;
313 t->tbl[i]->reverse_hash = bit_reverse_ulong(i);
314 _ht_add(ht, t, t->tbl[i]);
315 }
f9830efd 316 t->resize_target = t->size = end;
2ed95849
MD
317}
318
abc490a1 319struct rcu_ht *ht_new(ht_hash_fct hash_fct,
732ad076
MD
320 ht_compare_fct compare_fct,
321 unsigned long hash_seed,
abc490a1
MD
322 unsigned long init_size,
323 void (*ht_call_rcu)(struct rcu_head *head,
324 void (*func)(struct rcu_head *head)))
325{
326 struct rcu_ht *ht;
327
328 ht = calloc(1, sizeof(struct rcu_ht));
329 ht->hash_fct = hash_fct;
732ad076
MD
330 ht->compare_fct = compare_fct;
331 ht->hash_seed = hash_seed;
f000907d 332 ht->ht_call_rcu = ht_call_rcu;
abc490a1
MD
333 /* this mutex should not nest in read-side C.S. */
334 pthread_mutex_init(&ht->resize_mutex, NULL);
335 ht->t = calloc(1, sizeof(struct rcu_table)
336 + (max(init_size, 1) * sizeof(struct rcu_ht_node *)));
337 ht->t->size = 0;
f000907d 338 pthread_mutex_lock(&ht->resize_mutex);
abc490a1 339 init_table(ht, ht->t, 0, max(init_size, 1));
f000907d 340 pthread_mutex_unlock(&ht->resize_mutex);
abc490a1
MD
341 return ht;
342}
343
732ad076 344struct rcu_ht_node *ht_lookup(struct rcu_ht *ht, void *key, size_t key_len)
2ed95849 345{
395270b6 346 struct rcu_table *t;
abc490a1
MD
347 struct rcu_ht_node *node;
348 unsigned long hash, reverse_hash;
2ed95849 349
732ad076 350 hash = ht->hash_fct(key, key_len, ht->hash_seed);
abc490a1 351 reverse_hash = bit_reverse_ulong(hash);
464a1ec9 352
395270b6 353 t = rcu_dereference(ht->t);
abc490a1 354 node = rcu_dereference(t->tbl[hash & (t->size - 1)]);
2ed95849 355 for (;;) {
abc490a1
MD
356 if (unlikely(!node))
357 break;
358 if (node->reverse_hash > reverse_hash) {
359 node = NULL;
360 break;
2ed95849 361 }
732ad076 362 if (!ht->compare_fct(node->key, node->key_len, key, key_len)) {
abc490a1
MD
363 if (is_removed(rcu_dereference(node->next)))
364 node = NULL;
2ed95849
MD
365 break;
366 }
abc490a1 367 node = clear_flag(rcu_dereference(node->next));
2ed95849 368 }
abc490a1
MD
369 return node;
370}
e0ba718a 371
f000907d 372void ht_add(struct rcu_ht *ht, struct rcu_ht_node *node)
abc490a1
MD
373{
374 struct rcu_table *t;
ab7d5fc6 375
732ad076 376 node->hash = ht->hash_fct(node->key, node->key_len, ht->hash_seed);
abc490a1 377 node->reverse_hash = bit_reverse_ulong((unsigned long) node->hash);
2ed95849 378
abc490a1 379 t = rcu_dereference(ht->t);
f000907d 380 _ht_add(ht, t, node);
2ed95849
MD
381}
382
abc490a1 383int ht_remove(struct rcu_ht *ht, struct rcu_ht_node *node)
2ed95849 384{
abc490a1
MD
385 struct rcu_table *t;
386
387 t = rcu_dereference(ht->t);
abc490a1 388 return _ht_remove(ht, t, node);
2ed95849 389}
ab7d5fc6 390
abc490a1
MD
391static
392int ht_delete_dummy(struct rcu_ht *ht)
674f7a69 393{
395270b6 394 struct rcu_table *t;
abc490a1
MD
395 struct rcu_ht_node *node;
396 unsigned long i;
674f7a69 397
abc490a1
MD
398 t = ht->t;
399 /* Check that the table is empty */
400 node = t->tbl[0];
401 do {
402 if (!node->dummy)
403 return -EPERM;
404 node = node->next;
405 } while (node);
406 /* Internal sanity check: all nodes left should be dummy */
395270b6 407 for (i = 0; i < t->size; i++) {
abc490a1
MD
408 assert(t->tbl[i]->dummy);
409 free(t->tbl[i]);
674f7a69 410 }
abc490a1 411 return 0;
674f7a69
MD
412}
413
414/*
415 * Should only be called when no more concurrent readers nor writers can
416 * possibly access the table.
417 */
5e28c532 418int ht_destroy(struct rcu_ht *ht)
674f7a69 419{
5e28c532
MD
420 int ret;
421
abc490a1
MD
422 ret = ht_delete_dummy(ht);
423 if (ret)
424 return ret;
395270b6 425 free(ht->t);
674f7a69 426 free(ht);
5e28c532 427 return ret;
674f7a69
MD
428}
429
abc490a1
MD
430static
431void ht_free_table_cb(struct rcu_head *head)
432{
433 struct rcu_table *t =
434 caa_container_of(head, struct rcu_table, head);
435 free(t);
436}
437
438/* called with resize mutex held */
439static
440void _do_ht_resize(struct rcu_ht *ht)
464a1ec9 441{
abc490a1 442 unsigned long new_size, old_size;
395270b6 443 struct rcu_table *new_t, *old_t;
464a1ec9 444
395270b6
MD
445 old_t = ht->t;
446 old_size = old_t->size;
464a1ec9 447
f9830efd
MD
448 new_size = CMM_LOAD_SHARED(old_t->resize_target);
449 dbg_printf("rculfhash: resize from %lu to %lu buckets\n",
450 old_size, new_size);
abc490a1 451 if (old_size == new_size)
464a1ec9 452 return;
f000907d 453 new_t = malloc(sizeof(struct rcu_table)
abc490a1 454 + (new_size * sizeof(struct rcu_ht_node *)));
f000907d
MD
455 assert(new_size > old_size);
456 memcpy(&new_t->tbl, &old_t->tbl,
457 old_size * sizeof(struct rcu_ht_node *));
458 init_table(ht, new_t, old_size, new_size - old_size);
f000907d
MD
459 /* Changing table and size atomically wrt lookups */
460 rcu_assign_pointer(ht->t, new_t);
461 ht->ht_call_rcu(&old_t->head, ht_free_table_cb);
464a1ec9
MD
462}
463
abc490a1 464static
f9830efd
MD
465unsigned long resize_target_update(struct rcu_table *t,
466 int growth_order)
464a1ec9 467{
f9830efd
MD
468 return _uatomic_max(&t->resize_target,
469 t->size << growth_order);
464a1ec9
MD
470}
471
464a1ec9
MD
472void ht_resize(struct rcu_ht *ht, int growth)
473{
f9830efd
MD
474 struct rcu_table *t = rcu_dereference(ht->t);
475 unsigned long target_size;
476
477 target_size = resize_target_update(t, growth);
478 if (t->size < target_size) {
479 pthread_mutex_lock(&ht->resize_mutex);
480 _do_ht_resize(ht);
481 pthread_mutex_unlock(&ht->resize_mutex);
482 }
abc490a1 483}
464a1ec9 484
abc490a1
MD
485static
486void do_resize_cb(struct rcu_head *head)
487{
488 struct rcu_resize_work *work =
489 caa_container_of(head, struct rcu_resize_work, head);
490 struct rcu_ht *ht = work->ht;
491
492 pthread_mutex_lock(&ht->resize_mutex);
493 _do_ht_resize(ht);
494 pthread_mutex_unlock(&ht->resize_mutex);
495 free(work);
464a1ec9
MD
496}
497
abc490a1 498static
f000907d 499void ht_resize_lazy(struct rcu_ht *ht, struct rcu_table *t, int growth)
ab7d5fc6 500{
abc490a1 501 struct rcu_resize_work *work;
f9830efd 502 unsigned long target_size;
abc490a1 503
f9830efd
MD
504 target_size = resize_target_update(t, growth);
505 if (t->size < target_size) {
506 work = malloc(sizeof(*work));
507 work->ht = ht;
508 ht->ht_call_rcu(&work->head, do_resize_cb);
509 }
ab7d5fc6 510}
This page took 0.045244 seconds and 4 git commands to generate.