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