rculfhash: Check that init size is power of 2
[urcu.git] / rculfhash.c
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 /*
24 * Based on the following articles:
25 * - Ori Shalev and Nir Shavit. Split-ordered lists: Lock-free
26 * extensible hash tables. J. ACM 53, 3 (May 2006), 379-405.
27 * - Michael, M. M. High performance dynamic lock-free hash tables
28 * and list-based sets. In Proceedings of the fourteenth annual ACM
29 * symposium on Parallel algorithms and architectures, ACM Press,
30 * (2002), 73-82.
31 *
32 * Some specificities of this Lock-Free Expandable RCU Hash Table
33 * implementation:
34 *
35 * - RCU read-side critical section allows readers to perform hash
36 * table lookups and use the returned objects safely by delaying
37 * memory reclaim of a grace period.
38 * - Add and remove operations are lock-free, and do not need to
39 * allocate memory. They need to be executed within RCU read-side
40 * critical section to ensure the objects they read are valid and to
41 * deal with the cmpxchg ABA problem.
42 * - add and add_unique operations are supported. add_unique checks if
43 * the node key already exists in the hash table. It ensures no key
44 * duplicata exists.
45 * - The resize operation executes concurrently with add/remove/lookup.
46 * - Hash table nodes are contained within a split-ordered list. This
47 * list is ordered by incrementing reversed-bits-hash value.
48 * - An index of dummy nodes is kept. These dummy nodes are the hash
49 * table "buckets", and they are also chained together in the
50 * split-ordered list, which allows recursive expansion.
51 * - The resize operation only allows expanding the hash table.
52 * It is triggered either through an API call or automatically by
53 * detecting long chains in the add operation.
54 * - Resize operation initiated by long chain detection is executed by a
55 * call_rcu thread, which keeps lock-freedom of add and remove.
56 * - Resize operations are protected by a mutex.
57 * - The removal operation is split in two parts: first, a "removed"
58 * flag is set in the next pointer within the node to remove. Then,
59 * a "garbage collection" is performed in the bucket containing the
60 * removed node (from the start of the bucket up to the removed node).
61 * All encountered nodes with "removed" flag set in their next
62 * pointers are removed from the linked-list. If the cmpxchg used for
63 * removal fails (due to concurrent garbage-collection or concurrent
64 * add), we retry from the beginning of the bucket. This ensures that
65 * the node with "removed" flag set is removed from the hash table
66 * (not visible to lookups anymore) before the RCU read-side critical
67 * section held across removal ends. Furthermore, this ensures that
68 * the node with "removed" flag set is removed from the linked-list
69 * before its memory is reclaimed. Only the thread which removal
70 * successfully set the "removed" flag (with a cmpxchg) into a node's
71 * next pointer is considered to have succeeded its removal (and thus
72 * owns the node to reclaim). Because we garbage-collect starting from
73 * an invariant node (the start-of-bucket dummy node) up to the
74 * "removed" node (or find a reverse-hash that is higher), we are sure
75 * that a successful traversal of the chain leads to a chain that is
76 * present in the linked-list (the start node is never removed) and
77 * that is does not contain the "removed" node anymore, even if
78 * concurrent delete/add operations are changing the structure of the
79 * list concurrently.
80 * - The add operation performs gargage collection of buckets if it
81 * encounters nodes with removed flag set in the bucket where it wants
82 * to add its new node. This ensures lock-freedom of add operation by
83 * helping the remover unlink nodes from the list rather than to wait
84 * for it do to so.
85 * - A RCU "order table" indexed by log2(hash index) is copied and
86 * expanded by the resize operation. This order table allows finding
87 * the "dummy node" tables.
88 * - There is one dummy node table per hash index order. The size of
89 * each dummy node table is half the number of hashes contained in
90 * this order.
91 * - call_rcu is used to garbage-collect the old order table.
92 * - The per-order dummy node tables contain a compact version of the
93 * hash table nodes. These tables are invariant after they are
94 * populated into the hash table.
95 */
96
97 #define _LGPL_SOURCE
98 #include <stdlib.h>
99 #include <errno.h>
100 #include <assert.h>
101 #include <stdio.h>
102 #include <stdint.h>
103 #include <string.h>
104
105 #include <urcu.h>
106 #include <urcu-call-rcu.h>
107 #include <urcu/arch.h>
108 #include <urcu/uatomic.h>
109 #include <urcu/jhash.h>
110 #include <urcu/compiler.h>
111 #include <urcu/rculfhash.h>
112 #include <stdio.h>
113 #include <pthread.h>
114
115 #ifdef DEBUG
116 #define dbg_printf(fmt, args...) printf("[debug rculfhash] " fmt, ## args)
117 #else
118 #define dbg_printf(fmt, args...)
119 #endif
120
121 #define CHAIN_LEN_TARGET 4
122 #define CHAIN_LEN_RESIZE_THRESHOLD 8
123
124 #ifndef max
125 #define max(a, b) ((a) > (b) ? (a) : (b))
126 #endif
127
128 /*
129 * The removed flag needs to be updated atomically with the pointer.
130 * The dummy flag does not require to be updated atomically with the
131 * pointer, but it is added as a pointer low bit flag to save space.
132 */
133 #define REMOVED_FLAG (1UL << 0)
134 #define DUMMY_FLAG (1UL << 1)
135 #define FLAGS_MASK ((1UL << 2) - 1)
136
137 struct rcu_table {
138 unsigned long size; /* always a power of 2 */
139 unsigned long resize_target;
140 int resize_initiated;
141 struct rcu_head head;
142 struct _cds_lfht_node *tbl[0];
143 };
144
145 struct cds_lfht {
146 struct rcu_table *t; /* shared */
147 cds_lfht_hash_fct hash_fct;
148 cds_lfht_compare_fct compare_fct;
149 unsigned long hash_seed;
150 pthread_mutex_t resize_mutex; /* resize mutex: add/del mutex */
151 unsigned int in_progress_resize, in_progress_destroy;
152 void (*cds_lfht_call_rcu)(struct rcu_head *head,
153 void (*func)(struct rcu_head *head));
154 };
155
156 struct rcu_resize_work {
157 struct rcu_head head;
158 struct cds_lfht *ht;
159 };
160
161 /*
162 * Algorithm to reverse bits in a word by lookup table, extended to
163 * 64-bit words.
164 * Source:
165 * http://graphics.stanford.edu/~seander/bithacks.html#BitReverseTable
166 * Originally from Public Domain.
167 */
168
169 static const uint8_t BitReverseTable256[256] =
170 {
171 #define R2(n) (n), (n) + 2*64, (n) + 1*64, (n) + 3*64
172 #define R4(n) R2(n), R2((n) + 2*16), R2((n) + 1*16), R2((n) + 3*16)
173 #define R6(n) R4(n), R4((n) + 2*4 ), R4((n) + 1*4 ), R4((n) + 3*4 )
174 R6(0), R6(2), R6(1), R6(3)
175 };
176 #undef R2
177 #undef R4
178 #undef R6
179
180 static
181 uint8_t bit_reverse_u8(uint8_t v)
182 {
183 return BitReverseTable256[v];
184 }
185
186 static __attribute__((unused))
187 uint32_t bit_reverse_u32(uint32_t v)
188 {
189 return ((uint32_t) bit_reverse_u8(v) << 24) |
190 ((uint32_t) bit_reverse_u8(v >> 8) << 16) |
191 ((uint32_t) bit_reverse_u8(v >> 16) << 8) |
192 ((uint32_t) bit_reverse_u8(v >> 24));
193 }
194
195 static __attribute__((unused))
196 uint64_t bit_reverse_u64(uint64_t v)
197 {
198 return ((uint64_t) bit_reverse_u8(v) << 56) |
199 ((uint64_t) bit_reverse_u8(v >> 8) << 48) |
200 ((uint64_t) bit_reverse_u8(v >> 16) << 40) |
201 ((uint64_t) bit_reverse_u8(v >> 24) << 32) |
202 ((uint64_t) bit_reverse_u8(v >> 32) << 24) |
203 ((uint64_t) bit_reverse_u8(v >> 40) << 16) |
204 ((uint64_t) bit_reverse_u8(v >> 48) << 8) |
205 ((uint64_t) bit_reverse_u8(v >> 56));
206 }
207
208 static
209 unsigned long bit_reverse_ulong(unsigned long v)
210 {
211 #if (CAA_BITS_PER_LONG == 32)
212 return bit_reverse_u32(v);
213 #else
214 return bit_reverse_u64(v);
215 #endif
216 }
217
218 /*
219 * fls: returns the position of the most significant bit.
220 * Returns 0 if no bit is set, else returns the position of the most
221 * significant bit (from 1 to 32 on 32-bit, from 1 to 64 on 64-bit).
222 */
223 #if defined(__i386) || defined(__x86_64)
224 static inline
225 unsigned int fls_u32(uint32_t x)
226 {
227 int r;
228
229 asm("bsrl %1,%0\n\t"
230 "jnz 1f\n\t"
231 "movl $-1,%0\n\t"
232 "1:\n\t"
233 : "=r" (r) : "rm" (x));
234 return r + 1;
235 }
236 #define HAS_FLS_U32
237 #endif
238
239 #if defined(__x86_64)
240 static inline
241 unsigned int fls_u64(uint64_t x)
242 {
243 long r;
244
245 asm("bsrq %1,%0\n\t"
246 "jnz 1f\n\t"
247 "movq $-1,%0\n\t"
248 "1:\n\t"
249 : "=r" (r) : "rm" (x));
250 return r + 1;
251 }
252 #define HAS_FLS_U64
253 #endif
254
255 #ifndef HAS_FLS_U64
256 static __attribute__((unused))
257 unsigned int fls_u64(uint64_t x)
258 {
259 unsigned int r = 64;
260
261 if (!x)
262 return 0;
263
264 if (!(x & 0xFFFFFFFF00000000ULL)) {
265 x <<= 32;
266 r -= 32;
267 }
268 if (!(x & 0xFFFF000000000000ULL)) {
269 x <<= 16;
270 r -= 16;
271 }
272 if (!(x & 0xFF00000000000000ULL)) {
273 x <<= 8;
274 r -= 8;
275 }
276 if (!(x & 0xF000000000000000ULL)) {
277 x <<= 4;
278 r -= 4;
279 }
280 if (!(x & 0xC000000000000000ULL)) {
281 x <<= 2;
282 r -= 2;
283 }
284 if (!(x & 0x8000000000000000ULL)) {
285 x <<= 1;
286 r -= 1;
287 }
288 return r;
289 }
290 #endif
291
292 #ifndef HAS_FLS_U32
293 static __attribute__((unused))
294 unsigned int fls_u32(uint32_t x)
295 {
296 unsigned int r = 32;
297
298 if (!x)
299 return 0;
300 if (!(x & 0xFFFF0000U)) {
301 x <<= 16;
302 r -= 16;
303 }
304 if (!(x & 0xFF000000U)) {
305 x <<= 8;
306 r -= 8;
307 }
308 if (!(x & 0xF0000000U)) {
309 x <<= 4;
310 r -= 4;
311 }
312 if (!(x & 0xC0000000U)) {
313 x <<= 2;
314 r -= 2;
315 }
316 if (!(x & 0x80000000U)) {
317 x <<= 1;
318 r -= 1;
319 }
320 return r;
321 }
322 #endif
323
324 unsigned int fls_ulong(unsigned long x)
325 {
326 #if (CAA_BITS_PER_lONG == 32)
327 return fls_u32(x);
328 #else
329 return fls_u64(x);
330 #endif
331 }
332
333 int get_count_order_u32(uint32_t x)
334 {
335 int order;
336
337 order = fls_u32(x) - 1;
338 if (x & (x - 1))
339 order++;
340 return order;
341 }
342
343 int get_count_order_ulong(unsigned long x)
344 {
345 int order;
346
347 order = fls_ulong(x) - 1;
348 if (x & (x - 1))
349 order++;
350 return order;
351 }
352
353 static
354 void cds_lfht_resize_lazy(struct cds_lfht *ht, struct rcu_table *t, int growth);
355
356 static
357 void check_resize(struct cds_lfht *ht, struct rcu_table *t,
358 uint32_t chain_len)
359 {
360 if (chain_len > 100)
361 dbg_printf("WARNING: large chain length: %u.\n",
362 chain_len);
363 if (chain_len >= CHAIN_LEN_RESIZE_THRESHOLD)
364 cds_lfht_resize_lazy(ht, t,
365 get_count_order_u32(chain_len - (CHAIN_LEN_TARGET - 1)));
366 }
367
368 static
369 struct cds_lfht_node *clear_flag(struct cds_lfht_node *node)
370 {
371 return (struct cds_lfht_node *) (((unsigned long) node) & ~FLAGS_MASK);
372 }
373
374 static
375 int is_removed(struct cds_lfht_node *node)
376 {
377 return ((unsigned long) node) & REMOVED_FLAG;
378 }
379
380 static
381 struct cds_lfht_node *flag_removed(struct cds_lfht_node *node)
382 {
383 return (struct cds_lfht_node *) (((unsigned long) node) | REMOVED_FLAG);
384 }
385
386 static
387 int is_dummy(struct cds_lfht_node *node)
388 {
389 return ((unsigned long) node) & DUMMY_FLAG;
390 }
391
392 static
393 struct cds_lfht_node *flag_dummy(struct cds_lfht_node *node)
394 {
395 return (struct cds_lfht_node *) (((unsigned long) node) | DUMMY_FLAG);
396 }
397
398 static
399 unsigned long _uatomic_max(unsigned long *ptr, unsigned long v)
400 {
401 unsigned long old1, old2;
402
403 old1 = uatomic_read(ptr);
404 do {
405 old2 = old1;
406 if (old2 >= v)
407 return old2;
408 } while ((old1 = uatomic_cmpxchg(ptr, old2, v)) != old2);
409 return v;
410 }
411
412 /*
413 * Remove all logically deleted nodes from a bucket up to a certain node key.
414 */
415 static
416 void _cds_lfht_gc_bucket(struct cds_lfht_node *dummy, struct cds_lfht_node *node)
417 {
418 struct cds_lfht_node *iter_prev, *iter, *next, *new_next;
419
420 for (;;) {
421 iter_prev = dummy;
422 /* We can always skip the dummy node initially */
423 iter = rcu_dereference(iter_prev->p.next);
424 assert(iter_prev->p.reverse_hash <= node->p.reverse_hash);
425 for (;;) {
426 if (unlikely(!clear_flag(iter)))
427 return;
428 if (likely(clear_flag(iter)->p.reverse_hash > node->p.reverse_hash))
429 return;
430 next = rcu_dereference(clear_flag(iter)->p.next);
431 if (likely(is_removed(next)))
432 break;
433 iter_prev = clear_flag(iter);
434 iter = next;
435 }
436 assert(!is_removed(iter));
437 if (is_dummy(iter))
438 new_next = flag_dummy(clear_flag(next));
439 else
440 new_next = clear_flag(next);
441 (void) uatomic_cmpxchg(&iter_prev->p.next, iter, new_next);
442 }
443 }
444
445 static
446 struct cds_lfht_node *_cds_lfht_add(struct cds_lfht *ht, struct rcu_table *t,
447 struct cds_lfht_node *node, int unique, int dummy)
448 {
449 struct cds_lfht_node *iter_prev, *iter, *next, *new_node, *new_next,
450 *dummy_node;
451 struct _cds_lfht_node *lookup;
452 unsigned long hash, index, order;
453
454 if (!t->size) {
455 assert(dummy);
456 node->p.next = flag_dummy(NULL);
457 return node; /* Initial first add (head) */
458 }
459 hash = bit_reverse_ulong(node->p.reverse_hash);
460 for (;;) {
461 uint32_t chain_len = 0;
462
463 /*
464 * iter_prev points to the non-removed node prior to the
465 * insert location.
466 */
467 index = hash & (t->size - 1);
468 order = get_count_order_ulong(index + 1);
469 lookup = &t->tbl[order][index & ((1UL << (order - 1)) - 1)];
470 iter_prev = (struct cds_lfht_node *) lookup;
471 /* We can always skip the dummy node initially */
472 iter = rcu_dereference(iter_prev->p.next);
473 assert(iter_prev->p.reverse_hash <= node->p.reverse_hash);
474 for (;;) {
475 if (unlikely(!clear_flag(iter)))
476 goto insert;
477 if (likely(clear_flag(iter)->p.reverse_hash > node->p.reverse_hash))
478 goto insert;
479 next = rcu_dereference(clear_flag(iter)->p.next);
480 if (unlikely(is_removed(next)))
481 goto gc_node;
482 if (unique
483 && !is_dummy(next)
484 && !ht->compare_fct(node->key, node->key_len,
485 clear_flag(iter)->key,
486 clear_flag(iter)->key_len))
487 return clear_flag(iter);
488 /* Only account for identical reverse hash once */
489 if (iter_prev->p.reverse_hash != clear_flag(iter)->p.reverse_hash
490 && !is_dummy(next))
491 check_resize(ht, t, ++chain_len);
492 iter_prev = clear_flag(iter);
493 iter = next;
494 }
495 insert:
496 assert(node != clear_flag(iter));
497 assert(!is_removed(iter_prev));
498 assert(iter_prev != node);
499 if (!dummy)
500 node->p.next = clear_flag(iter);
501 else
502 node->p.next = flag_dummy(clear_flag(iter));
503 if (is_dummy(iter))
504 new_node = flag_dummy(node);
505 else
506 new_node = node;
507 if (uatomic_cmpxchg(&iter_prev->p.next, iter,
508 new_node) != iter)
509 continue; /* retry */
510 else
511 goto gc_end;
512 gc_node:
513 assert(!is_removed(iter));
514 if (is_dummy(iter))
515 new_next = flag_dummy(clear_flag(next));
516 else
517 new_next = clear_flag(next);
518 (void) uatomic_cmpxchg(&iter_prev->p.next, iter, new_next);
519 /* retry */
520 }
521 gc_end:
522 /* Garbage collect logically removed nodes in the bucket */
523 index = hash & (t->size - 1);
524 order = get_count_order_ulong(index + 1);
525 lookup = &t->tbl[order][index & ((1UL << (order - 1)) - 1)];
526 dummy_node = (struct cds_lfht_node *) lookup;
527 _cds_lfht_gc_bucket(dummy_node, node);
528 return node;
529 }
530
531 static
532 int _cds_lfht_remove(struct cds_lfht *ht, struct rcu_table *t,
533 struct cds_lfht_node *node)
534 {
535 struct cds_lfht_node *dummy, *next, *old;
536 struct _cds_lfht_node *lookup;
537 int flagged = 0;
538 unsigned long hash, index, order;
539
540 /* logically delete the node */
541 old = rcu_dereference(node->p.next);
542 do {
543 next = old;
544 if (unlikely(is_removed(next)))
545 goto end;
546 assert(!is_dummy(next));
547 old = uatomic_cmpxchg(&node->p.next, next,
548 flag_removed(next));
549 } while (old != next);
550
551 /* We performed the (logical) deletion. */
552 flagged = 1;
553
554 /*
555 * Ensure that the node is not visible to readers anymore: lookup for
556 * the node, and remove it (along with any other logically removed node)
557 * if found.
558 */
559 hash = bit_reverse_ulong(node->p.reverse_hash);
560 index = hash & (t->size - 1);
561 order = get_count_order_ulong(index + 1);
562 lookup = &t->tbl[order][index & ((1UL << (order - 1)) - 1)];
563 dummy = (struct cds_lfht_node *) lookup;
564 _cds_lfht_gc_bucket(dummy, node);
565 end:
566 /*
567 * Only the flagging action indicated that we (and no other)
568 * removed the node from the hash.
569 */
570 if (flagged) {
571 assert(is_removed(rcu_dereference(node->p.next)));
572 return 0;
573 } else
574 return -ENOENT;
575 }
576
577 static
578 void init_table(struct cds_lfht *ht, struct rcu_table *t,
579 unsigned long first_order, unsigned long len_order)
580 {
581 unsigned long i, end_order;
582
583 dbg_printf("init table: first_order %lu end_order %lu\n",
584 first_order, first_order + len_order);
585 end_order = first_order + len_order;
586 t->size = !first_order ? 0 : (1UL << (first_order - 1));
587 for (i = first_order; i < end_order; i++) {
588 unsigned long j, len;
589
590 len = !i ? 1 : 1UL << (i - 1);
591 dbg_printf("init order %lu len: %lu\n", i, len);
592 t->tbl[i] = calloc(len, sizeof(struct _cds_lfht_node));
593 for (j = 0; j < len; j++) {
594 dbg_printf("init entry: i %lu j %lu hash %lu\n",
595 i, j, !i ? 0 : (1UL << (i - 1)) + j);
596 struct cds_lfht_node *new_node =
597 (struct cds_lfht_node *) &t->tbl[i][j];
598 new_node->p.reverse_hash =
599 bit_reverse_ulong(!i ? 0 : (1UL << (i - 1)) + j);
600 (void) _cds_lfht_add(ht, t, new_node, 0, 1);
601 if (CMM_LOAD_SHARED(ht->in_progress_destroy))
602 break;
603 }
604 /* Update table size */
605 t->size = !i ? 1 : (1UL << i);
606 dbg_printf("init new size: %lu\n", t->size);
607 if (CMM_LOAD_SHARED(ht->in_progress_destroy))
608 break;
609 }
610 t->resize_target = t->size;
611 t->resize_initiated = 0;
612 }
613
614 struct cds_lfht *cds_lfht_new(cds_lfht_hash_fct hash_fct,
615 cds_lfht_compare_fct compare_fct,
616 unsigned long hash_seed,
617 unsigned long init_size,
618 void (*cds_lfht_call_rcu)(struct rcu_head *head,
619 void (*func)(struct rcu_head *head)))
620 {
621 struct cds_lfht *ht;
622 unsigned long order;
623
624 /* init_size must be power of two */
625 if (init_size & (init_size - 1))
626 return NULL;
627 ht = calloc(1, sizeof(struct cds_lfht));
628 ht->hash_fct = hash_fct;
629 ht->compare_fct = compare_fct;
630 ht->hash_seed = hash_seed;
631 ht->cds_lfht_call_rcu = cds_lfht_call_rcu;
632 ht->in_progress_resize = 0;
633 /* this mutex should not nest in read-side C.S. */
634 pthread_mutex_init(&ht->resize_mutex, NULL);
635 order = get_count_order_ulong(max(init_size, 1)) + 1;
636 ht->t = calloc(1, sizeof(struct cds_lfht)
637 + (order * sizeof(struct _cds_lfht_node *)));
638 ht->t->size = 0;
639 pthread_mutex_lock(&ht->resize_mutex);
640 init_table(ht, ht->t, 0, order);
641 pthread_mutex_unlock(&ht->resize_mutex);
642 return ht;
643 }
644
645 struct cds_lfht_node *cds_lfht_lookup(struct cds_lfht *ht, void *key, size_t key_len)
646 {
647 struct rcu_table *t;
648 struct cds_lfht_node *node, *next;
649 struct _cds_lfht_node *lookup;
650 unsigned long hash, reverse_hash, index, order;
651
652 hash = ht->hash_fct(key, key_len, ht->hash_seed);
653 reverse_hash = bit_reverse_ulong(hash);
654
655 t = rcu_dereference(ht->t);
656 index = hash & (t->size - 1);
657 order = get_count_order_ulong(index + 1);
658 lookup = &t->tbl[order][index & ((1UL << (order - 1)) - 1)];
659 dbg_printf("lookup hash %lu index %lu order %lu aridx %lu\n",
660 hash, index, order, index & ((1UL << (order - 1)) - 1));
661 node = (struct cds_lfht_node *) lookup;
662 for (;;) {
663 if (unlikely(!node))
664 break;
665 if (unlikely(node->p.reverse_hash > reverse_hash)) {
666 node = NULL;
667 break;
668 }
669 next = rcu_dereference(node->p.next);
670 if (likely(!is_removed(next))
671 && !is_dummy(next)
672 && likely(!ht->compare_fct(node->key, node->key_len, key, key_len))) {
673 break;
674 }
675 node = clear_flag(next);
676 }
677 assert(!node || !is_dummy(rcu_dereference(node->p.next)));
678 return node;
679 }
680
681 void cds_lfht_add(struct cds_lfht *ht, struct cds_lfht_node *node)
682 {
683 struct rcu_table *t;
684 unsigned long hash;
685
686 hash = ht->hash_fct(node->key, node->key_len, ht->hash_seed);
687 node->p.reverse_hash = bit_reverse_ulong((unsigned long) hash);
688
689 t = rcu_dereference(ht->t);
690 (void) _cds_lfht_add(ht, t, node, 0, 0);
691 }
692
693 struct cds_lfht_node *cds_lfht_add_unique(struct cds_lfht *ht,
694 struct cds_lfht_node *node)
695 {
696 struct rcu_table *t;
697 unsigned long hash;
698
699 hash = ht->hash_fct(node->key, node->key_len, ht->hash_seed);
700 node->p.reverse_hash = bit_reverse_ulong((unsigned long) hash);
701
702 t = rcu_dereference(ht->t);
703 return _cds_lfht_add(ht, t, node, 1, 0);
704 }
705
706 int cds_lfht_remove(struct cds_lfht *ht, struct cds_lfht_node *node)
707 {
708 struct rcu_table *t;
709
710 t = rcu_dereference(ht->t);
711 return _cds_lfht_remove(ht, t, node);
712 }
713
714 static
715 int cds_lfht_delete_dummy(struct cds_lfht *ht)
716 {
717 struct rcu_table *t;
718 struct cds_lfht_node *node;
719 struct _cds_lfht_node *lookup;
720 unsigned long order, i;
721
722 t = ht->t;
723 /* Check that the table is empty */
724 lookup = &t->tbl[0][0];
725 node = (struct cds_lfht_node *) lookup;
726 do {
727 node = clear_flag(node)->p.next;
728 if (!is_dummy(node))
729 return -EPERM;
730 assert(!is_removed(node));
731 } while (clear_flag(node));
732 /* Internal sanity check: all nodes left should be dummy */
733 for (order = 0; order < get_count_order_ulong(t->size) + 1; order++) {
734 unsigned long len;
735
736 len = !order ? 1 : 1UL << (order - 1);
737 for (i = 0; i < len; i++) {
738 dbg_printf("delete order %lu i %lu hash %lu\n",
739 order, i,
740 bit_reverse_ulong(t->tbl[order][i].reverse_hash));
741 assert(is_dummy(t->tbl[order][i].next));
742 }
743 free(t->tbl[order]);
744 }
745 return 0;
746 }
747
748 /*
749 * Should only be called when no more concurrent readers nor writers can
750 * possibly access the table.
751 */
752 int cds_lfht_destroy(struct cds_lfht *ht)
753 {
754 int ret;
755
756 /* Wait for in-flight resize operations to complete */
757 CMM_STORE_SHARED(ht->in_progress_destroy, 1);
758 while (uatomic_read(&ht->in_progress_resize))
759 poll(NULL, 0, 100); /* wait for 100ms */
760 ret = cds_lfht_delete_dummy(ht);
761 if (ret)
762 return ret;
763 free(ht->t);
764 free(ht);
765 return ret;
766 }
767
768 void cds_lfht_count_nodes(struct cds_lfht *ht,
769 unsigned long *count,
770 unsigned long *removed)
771 {
772 struct rcu_table *t;
773 struct cds_lfht_node *node, *next;
774 struct _cds_lfht_node *lookup;
775 unsigned long nr_dummy = 0;
776
777 *count = 0;
778 *removed = 0;
779
780 t = rcu_dereference(ht->t);
781 /* Count non-dummy nodes in the table */
782 lookup = &t->tbl[0][0];
783 node = (struct cds_lfht_node *) lookup;
784 do {
785 next = rcu_dereference(node->p.next);
786 if (is_removed(next)) {
787 assert(!is_dummy(next));
788 (*removed)++;
789 } else if (!is_dummy(next))
790 (*count)++;
791 else
792 (nr_dummy)++;
793 node = clear_flag(next);
794 } while (node);
795 dbg_printf("number of dummy nodes: %lu\n", nr_dummy);
796 }
797
798 static
799 void cds_lfht_free_table_cb(struct rcu_head *head)
800 {
801 struct rcu_table *t =
802 caa_container_of(head, struct rcu_table, head);
803 free(t);
804 }
805
806 /* called with resize mutex held */
807 static
808 void _do_cds_lfht_resize(struct cds_lfht *ht)
809 {
810 unsigned long new_size, old_size, old_order, new_order;
811 struct rcu_table *new_t, *old_t;
812
813 old_t = ht->t;
814 old_size = old_t->size;
815 old_order = get_count_order_ulong(old_size) + 1;
816
817 new_size = CMM_LOAD_SHARED(old_t->resize_target);
818 if (old_size == new_size)
819 return;
820 new_order = get_count_order_ulong(new_size) + 1;
821 dbg_printf("resize from %lu (order %lu) to %lu (order %lu) buckets\n",
822 old_size, old_order, new_size, new_order);
823 new_t = malloc(sizeof(struct cds_lfht)
824 + (new_order * sizeof(struct _cds_lfht_node *)));
825 assert(new_size > old_size);
826 memcpy(&new_t->tbl, &old_t->tbl,
827 old_order * sizeof(struct _cds_lfht_node *));
828 init_table(ht, new_t, old_order, new_order - old_order);
829 /* Changing table and size atomically wrt lookups */
830 rcu_assign_pointer(ht->t, new_t);
831 ht->cds_lfht_call_rcu(&old_t->head, cds_lfht_free_table_cb);
832 }
833
834 static
835 unsigned long resize_target_update(struct rcu_table *t,
836 int growth_order)
837 {
838 return _uatomic_max(&t->resize_target,
839 t->size << growth_order);
840 }
841
842 void cds_lfht_resize(struct cds_lfht *ht, int growth)
843 {
844 struct rcu_table *t = rcu_dereference(ht->t);
845 unsigned long target_size;
846
847 if (growth < 0) {
848 /*
849 * Silently refuse to shrink hash table. (not supported)
850 */
851 dbg_printf("shrinking hash table not supported.\n");
852 return;
853 }
854
855 target_size = resize_target_update(t, growth);
856 if (t->size < target_size) {
857 CMM_STORE_SHARED(t->resize_initiated, 1);
858 pthread_mutex_lock(&ht->resize_mutex);
859 _do_cds_lfht_resize(ht);
860 pthread_mutex_unlock(&ht->resize_mutex);
861 }
862 }
863
864 static
865 void do_resize_cb(struct rcu_head *head)
866 {
867 struct rcu_resize_work *work =
868 caa_container_of(head, struct rcu_resize_work, head);
869 struct cds_lfht *ht = work->ht;
870
871 pthread_mutex_lock(&ht->resize_mutex);
872 _do_cds_lfht_resize(ht);
873 pthread_mutex_unlock(&ht->resize_mutex);
874 free(work);
875 cmm_smp_mb(); /* finish resize before decrement */
876 uatomic_dec(&ht->in_progress_resize);
877 }
878
879 static
880 void cds_lfht_resize_lazy(struct cds_lfht *ht, struct rcu_table *t, int growth)
881 {
882 struct rcu_resize_work *work;
883 unsigned long target_size;
884
885 target_size = resize_target_update(t, growth);
886 if (!CMM_LOAD_SHARED(t->resize_initiated) && t->size < target_size) {
887 uatomic_inc(&ht->in_progress_resize);
888 cmm_smp_mb(); /* increment resize count before calling it */
889 work = malloc(sizeof(*work));
890 work->ht = ht;
891 ht->cds_lfht_call_rcu(&work->head, do_resize_cb);
892 CMM_STORE_SHARED(t->resize_initiated, 1);
893 }
894 }
This page took 0.04712 seconds and 5 git commands to generate.