Update resize thresholds
[urcu.git] / rculfhash.c
... / ...
CommitLineData
1/*
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
21 */
22
23#define _LGPL_SOURCE
24#include <stdlib.h>
25#include <errno.h>
26#include <assert.h>
27#include <stdio.h>
28#include <stdint.h>
29#include <string.h>
30
31#include <urcu.h>
32#include <urcu-call-rcu.h>
33#include <urcu/arch.h>
34#include <urcu/uatomic.h>
35#include <urcu/jhash.h>
36#include <urcu/compiler.h>
37#include <urcu/rculfhash.h>
38#include <stdio.h>
39#include <pthread.h>
40
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
49#define CHAIN_LEN_TARGET 1
50#define CHAIN_LEN_RESIZE_THRESHOLD 2
51
52#ifndef max
53#define max(a, b) ((a) > (b) ? (a) : (b))
54#endif
55
56struct rcu_table {
57 unsigned long size; /* always a power of 2 */
58 unsigned long resize_target;
59 int resize_initiated;
60 struct rcu_head head;
61 struct rcu_ht_node *tbl[0];
62};
63
64struct rcu_ht {
65 struct rcu_table *t; /* shared */
66 ht_hash_fct hash_fct;
67 ht_compare_fct compare_fct;
68 unsigned long hash_seed;
69 pthread_mutex_t resize_mutex; /* resize mutex: add/del mutex */
70 void (*ht_call_rcu)(struct rcu_head *head,
71 void (*func)(struct rcu_head *head));
72};
73
74struct rcu_resize_work {
75 struct rcu_head head;
76 struct rcu_ht *ht;
77};
78
79/*
80 * Algorithm to reverse bits in a word by lookup table, extended to
81 * 64-bit words.
82 * Source:
83 * http://graphics.stanford.edu/~seander/bithacks.html#BitReverseTable
84 * Originally from Public Domain.
85 */
86
87static const uint8_t BitReverseTable256[256] =
88{
89#define R2(n) (n), (n) + 2*64, (n) + 1*64, (n) + 3*64
90#define R4(n) R2(n), R2((n) + 2*16), R2((n) + 1*16), R2((n) + 3*16)
91#define R6(n) R4(n), R4((n) + 2*4 ), R4((n) + 1*4 ), R4((n) + 3*4 )
92 R6(0), R6(2), R6(1), R6(3)
93};
94#undef R2
95#undef R4
96#undef R6
97
98static
99uint8_t bit_reverse_u8(uint8_t v)
100{
101 return BitReverseTable256[v];
102}
103
104static __attribute__((unused))
105uint32_t bit_reverse_u32(uint32_t v)
106{
107 return ((uint32_t) bit_reverse_u8(v) << 24) |
108 ((uint32_t) bit_reverse_u8(v >> 8) << 16) |
109 ((uint32_t) bit_reverse_u8(v >> 16) << 8) |
110 ((uint32_t) bit_reverse_u8(v >> 24));
111}
112
113static __attribute__((unused))
114uint64_t bit_reverse_u64(uint64_t v)
115{
116 return ((uint64_t) bit_reverse_u8(v) << 56) |
117 ((uint64_t) bit_reverse_u8(v >> 8) << 48) |
118 ((uint64_t) bit_reverse_u8(v >> 16) << 40) |
119 ((uint64_t) bit_reverse_u8(v >> 24) << 32) |
120 ((uint64_t) bit_reverse_u8(v >> 32) << 24) |
121 ((uint64_t) bit_reverse_u8(v >> 40) << 16) |
122 ((uint64_t) bit_reverse_u8(v >> 48) << 8) |
123 ((uint64_t) bit_reverse_u8(v >> 56));
124}
125
126static
127unsigned long bit_reverse_ulong(unsigned long v)
128{
129#if (CAA_BITS_PER_LONG == 32)
130 return bit_reverse_u32(v);
131#else
132 return bit_reverse_u64(v);
133#endif
134}
135
136/*
137 * Algorithm to find the log2 of a 32-bit unsigned integer.
138 * source: http://graphics.stanford.edu/~seander/bithacks.html#IntegerLogLookup
139 * Originally from Public Domain.
140 */
141static const char LogTable256[256] =
142{
143#define LT(n) n, n, n, n, n, n, n, n, n, n, n, n, n, n, n, n
144 -1, 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3,
145 LT(4), LT(5), LT(5), LT(6), LT(6), LT(6), LT(6),
146 LT(7), LT(7), LT(7), LT(7), LT(7), LT(7), LT(7), LT(7)
147};
148
149uint32_t log2_u32(uint32_t v)
150{
151 uint32_t t, tt;
152
153 if ((tt = (v >> 16)))
154 return (t = (tt >> 8))
155 ? 24 + LogTable256[t]
156 : 16 + LogTable256[tt];
157 else
158 return (t = (v >> 8))
159 ? 8 + LogTable256[t]
160 : LogTable256[v];
161}
162
163static
164void ht_resize_lazy(struct rcu_ht *ht, struct rcu_table *t, int growth);
165
166static
167void check_resize(struct rcu_ht *ht, struct rcu_table *t,
168 uint32_t chain_len)
169{
170 if (chain_len >= CHAIN_LEN_RESIZE_THRESHOLD)
171 ht_resize_lazy(ht, t,
172 log2_u32(chain_len - CHAIN_LEN_TARGET - 1));
173}
174
175static
176struct rcu_ht_node *clear_flag(struct rcu_ht_node *node)
177{
178 return (struct rcu_ht_node *) (((unsigned long) node) & ~0x1);
179}
180
181static
182int is_removed(struct rcu_ht_node *node)
183{
184 return ((unsigned long) node) & 0x1;
185}
186
187static
188struct rcu_ht_node *flag_removed(struct rcu_ht_node *node)
189{
190 return (struct rcu_ht_node *) (((unsigned long) node) | 0x1);
191}
192
193static
194unsigned long _uatomic_max(unsigned long *ptr, unsigned long v)
195{
196 unsigned long old1, old2;
197
198 old1 = uatomic_read(ptr);
199 do {
200 old2 = old1;
201 if (old2 >= v)
202 return old2;
203 } while ((old1 = uatomic_cmpxchg(ptr, old2, v)) != old2);
204 return v;
205}
206
207static
208void _ht_add(struct rcu_ht *ht, struct rcu_table *t, struct rcu_ht_node *node)
209{
210 struct rcu_ht_node *iter_prev, *iter, *iter_prev_next, *next;
211
212 if (!t->size)
213 return;
214 for (;;) {
215 uint32_t chain_len = 0;
216
217 /*
218 * iter_prev points to the non-removed node prior to the
219 * insert location.
220 * iter iterates until it finds the next non-removed
221 * node.
222 */
223 iter_prev = rcu_dereference(t->tbl[node->hash & (t->size - 1)]);
224 /* We can always skip the dummy node initially */
225 iter_prev_next = next = rcu_dereference(iter_prev->next);
226 assert(iter_prev);
227 assert(iter_prev->reverse_hash <= node->reverse_hash);
228 for (;;) {
229 iter = next;
230 if (unlikely(!clear_flag(iter)))
231 break;
232 next = rcu_dereference(clear_flag(iter)->next);
233 if (unlikely(is_removed(next)))
234 continue;
235 if (clear_flag(iter)->reverse_hash > node->reverse_hash)
236 break;
237 /* Only account for identical reverse hash once */
238 if (iter_prev->reverse_hash != clear_flag(iter)->reverse_hash)
239 check_resize(ht, t, ++chain_len);
240 iter_prev = clear_flag(iter);
241 iter_prev_next = next;
242 }
243 assert(node != iter);
244 assert(!is_removed(iter_prev));
245 assert(iter_prev != node);
246 node->next = iter;
247 if (uatomic_cmpxchg(&iter_prev->next, iter_prev_next,
248 node) != iter_prev_next)
249 continue;
250 else
251 break;
252 }
253}
254
255static
256int _ht_remove(struct rcu_ht *ht, struct rcu_table *t, struct rcu_ht_node *node)
257{
258 struct rcu_ht_node *iter_prev, *iter, *iter_prev_next, *next, *old;
259 unsigned long chain_len;
260 int found;
261 int flagged = 0;
262
263retry:
264 chain_len = 0;
265 found = 0;
266 /*
267 * iter_prev points to the non-removed node prior to the remove
268 * location.
269 * node is the node to remove.
270 */
271 iter_prev = rcu_dereference(t->tbl[node->hash & (t->size - 1)]);
272 /* We can always skip the dummy node initially */
273 iter_prev_next = next = rcu_dereference(iter_prev->next);
274 assert(iter_prev);
275 assert(iter_prev->reverse_hash <= node->reverse_hash);
276 for (;;) {
277 iter = next;
278 if (unlikely(!clear_flag(iter)))
279 break;
280 next = rcu_dereference(clear_flag(iter)->next);
281 if (iter == node) {
282 found = 1;
283 break;
284 }
285 if (unlikely(is_removed(next)))
286 continue;
287 if (clear_flag(iter)->reverse_hash > node->reverse_hash)
288 break;
289 iter_prev = clear_flag(iter);
290 iter_prev_next = next;
291 }
292 if (!found)
293 goto end;
294 if (!flagged) {
295 if (is_removed(next))
296 goto end;
297 /* set deletion flag */
298 if ((old = uatomic_cmpxchg(&iter->next, next,
299 flag_removed(next))) != next) {
300 if (old == flag_removed(next))
301 goto end;
302 else
303 goto retry;
304 }
305 flagged = 1;
306 }
307 /*
308 * Remove the element from the list.
309 * - Retry if there has been a concurrent add before us.
310 * - Retry if the prev node has been deleted (its next removed
311 * flag would be set).
312 * - There cannot be a concurrent delete for our position, because
313 * we won the deletion flag cmpxchg.
314 * - If there is a concurrent add or remove after us while our
315 * removed flag is set, it will skip us and link directly after
316 * the prior non-removed node before us. In this case, the
317 * retry will not find the node in the list anymore.
318 */
319 if (uatomic_cmpxchg(&iter_prev->next, iter_prev_next,
320 clear_flag(next)) != iter_prev_next)
321 goto retry;
322end:
323 /*
324 * Only the flagging action indicated that we (and no other)
325 * removed the node from the hash.
326 */
327 if (flagged)
328 return 0;
329 else
330 return -ENOENT;
331}
332
333static
334void init_table(struct rcu_ht *ht, struct rcu_table *t,
335 unsigned long first, unsigned long len)
336{
337 unsigned long i, end;
338
339 end = first + len;
340 for (i = first; i < end; i++) {
341 /* Update table size when power of two */
342 if (i != 0 && !(i & (i - 1)))
343 t->size = i;
344 t->tbl[i] = calloc(1, sizeof(struct rcu_ht_node));
345 t->tbl[i]->dummy = 1;
346 t->tbl[i]->hash = i;
347 t->tbl[i]->reverse_hash = bit_reverse_ulong(i);
348 _ht_add(ht, t, t->tbl[i]);
349 }
350 t->resize_target = t->size = end;
351 t->resize_initiated = 0;
352}
353
354struct rcu_ht *ht_new(ht_hash_fct hash_fct,
355 ht_compare_fct compare_fct,
356 unsigned long hash_seed,
357 unsigned long init_size,
358 void (*ht_call_rcu)(struct rcu_head *head,
359 void (*func)(struct rcu_head *head)))
360{
361 struct rcu_ht *ht;
362
363 ht = calloc(1, sizeof(struct rcu_ht));
364 ht->hash_fct = hash_fct;
365 ht->compare_fct = compare_fct;
366 ht->hash_seed = hash_seed;
367 ht->ht_call_rcu = ht_call_rcu;
368 /* this mutex should not nest in read-side C.S. */
369 pthread_mutex_init(&ht->resize_mutex, NULL);
370 ht->t = calloc(1, sizeof(struct rcu_table)
371 + (max(init_size, 1) * sizeof(struct rcu_ht_node *)));
372 ht->t->size = 0;
373 pthread_mutex_lock(&ht->resize_mutex);
374 init_table(ht, ht->t, 0, max(init_size, 1));
375 pthread_mutex_unlock(&ht->resize_mutex);
376 return ht;
377}
378
379struct rcu_ht_node *ht_lookup(struct rcu_ht *ht, void *key, size_t key_len)
380{
381 struct rcu_table *t;
382 struct rcu_ht_node *node;
383 unsigned long hash, reverse_hash;
384
385 hash = ht->hash_fct(key, key_len, ht->hash_seed);
386 reverse_hash = bit_reverse_ulong(hash);
387
388 t = rcu_dereference(ht->t);
389 node = rcu_dereference(t->tbl[hash & (t->size - 1)]);
390 for (;;) {
391 if (unlikely(!node))
392 break;
393 if (unlikely(node->reverse_hash > reverse_hash)) {
394 node = NULL;
395 break;
396 }
397 if (!ht->compare_fct(node->key, node->key_len, key, key_len)) {
398 if (unlikely(is_removed(rcu_dereference(node->next))))
399 node = NULL;
400 break;
401 }
402 node = clear_flag(rcu_dereference(node->next));
403 }
404 return node;
405}
406
407void ht_add(struct rcu_ht *ht, struct rcu_ht_node *node)
408{
409 struct rcu_table *t;
410
411 node->hash = ht->hash_fct(node->key, node->key_len, ht->hash_seed);
412 node->reverse_hash = bit_reverse_ulong((unsigned long) node->hash);
413
414 t = rcu_dereference(ht->t);
415 _ht_add(ht, t, node);
416}
417
418int ht_remove(struct rcu_ht *ht, struct rcu_ht_node *node)
419{
420 struct rcu_table *t;
421
422 t = rcu_dereference(ht->t);
423 return _ht_remove(ht, t, node);
424}
425
426static
427int ht_delete_dummy(struct rcu_ht *ht)
428{
429 struct rcu_table *t;
430 struct rcu_ht_node *node;
431 unsigned long i;
432
433 t = ht->t;
434 /* Check that the table is empty */
435 node = t->tbl[0];
436 do {
437 if (!node->dummy)
438 return -EPERM;
439 node = node->next;
440 } while (node);
441 /* Internal sanity check: all nodes left should be dummy */
442 for (i = 0; i < t->size; i++) {
443 assert(t->tbl[i]->dummy);
444 free(t->tbl[i]);
445 }
446 return 0;
447}
448
449/*
450 * Should only be called when no more concurrent readers nor writers can
451 * possibly access the table.
452 */
453int ht_destroy(struct rcu_ht *ht)
454{
455 int ret;
456
457 ret = ht_delete_dummy(ht);
458 if (ret)
459 return ret;
460 free(ht->t);
461 free(ht);
462 return ret;
463}
464
465static
466void ht_free_table_cb(struct rcu_head *head)
467{
468 struct rcu_table *t =
469 caa_container_of(head, struct rcu_table, head);
470 free(t);
471}
472
473/* called with resize mutex held */
474static
475void _do_ht_resize(struct rcu_ht *ht)
476{
477 unsigned long new_size, old_size;
478 struct rcu_table *new_t, *old_t;
479
480 old_t = ht->t;
481 old_size = old_t->size;
482
483 new_size = CMM_LOAD_SHARED(old_t->resize_target);
484 dbg_printf("rculfhash: resize from %lu to %lu buckets\n",
485 old_size, new_size);
486 if (old_size == new_size)
487 return;
488 new_t = malloc(sizeof(struct rcu_table)
489 + (new_size * sizeof(struct rcu_ht_node *)));
490 assert(new_size > old_size);
491 memcpy(&new_t->tbl, &old_t->tbl,
492 old_size * sizeof(struct rcu_ht_node *));
493 init_table(ht, new_t, old_size, new_size - old_size);
494 /* Changing table and size atomically wrt lookups */
495 rcu_assign_pointer(ht->t, new_t);
496 ht->ht_call_rcu(&old_t->head, ht_free_table_cb);
497}
498
499static
500unsigned long resize_target_update(struct rcu_table *t,
501 int growth_order)
502{
503 return _uatomic_max(&t->resize_target,
504 t->size << growth_order);
505}
506
507void ht_resize(struct rcu_ht *ht, int growth)
508{
509 struct rcu_table *t = rcu_dereference(ht->t);
510 unsigned long target_size;
511
512 target_size = resize_target_update(t, growth);
513 if (t->size < target_size) {
514 CMM_STORE_SHARED(t->resize_initiated, 1);
515 pthread_mutex_lock(&ht->resize_mutex);
516 _do_ht_resize(ht);
517 pthread_mutex_unlock(&ht->resize_mutex);
518 }
519}
520
521static
522void do_resize_cb(struct rcu_head *head)
523{
524 struct rcu_resize_work *work =
525 caa_container_of(head, struct rcu_resize_work, head);
526 struct rcu_ht *ht = work->ht;
527
528 pthread_mutex_lock(&ht->resize_mutex);
529 _do_ht_resize(ht);
530 pthread_mutex_unlock(&ht->resize_mutex);
531 free(work);
532}
533
534static
535void ht_resize_lazy(struct rcu_ht *ht, struct rcu_table *t, int growth)
536{
537 struct rcu_resize_work *work;
538 unsigned long target_size;
539
540 target_size = resize_target_update(t, growth);
541 if (!CMM_LOAD_SHARED(t->resize_initiated) && t->size < target_size) {
542 work = malloc(sizeof(*work));
543 work->ht = ht;
544 ht->ht_call_rcu(&work->head, do_resize_cb);
545 CMM_STORE_SHARED(t->resize_initiated, 1);
546 }
547}
This page took 0.023463 seconds and 4 git commands to generate.