2 * Resizable, Scalable, Concurrent Hash Table
4 * Copyright (c) 2015 Herbert Xu <herbert@gondor.apana.org.au>
5 * Copyright (c) 2014-2015 Thomas Graf <tgraf@suug.ch>
6 * Copyright (c) 2008-2014 Patrick McHardy <kaber@trash.net>
8 * Code partially derived from nft_hash
9 * Rewritten with rehash code from br_multicast plus single list
10 * pointer as suggested by Josh Triplett
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
17 #include <linux/atomic.h>
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/log2.h>
21 #include <linux/sched.h>
22 #include <linux/rculist.h>
23 #include <linux/slab.h>
24 #include <linux/vmalloc.h>
26 #include <linux/jhash.h>
27 #include <linux/random.h>
28 #include <linux/rhashtable.h>
29 #include <linux/err.h>
30 #include <linux/export.h>
32 #define HASH_DEFAULT_SIZE 64UL
33 #define HASH_MIN_SIZE 4U
34 #define BUCKET_LOCKS_PER_CPU 32UL
37 union nested_table __rcu
*table
;
38 struct rhash_head __rcu
*bucket
;
41 static u32
head_hashfn(struct rhashtable
*ht
,
42 const struct bucket_table
*tbl
,
43 const struct rhash_head
*he
)
45 return rht_head_hashfn(ht
, tbl
, he
, ht
->p
);
48 #ifdef CONFIG_PROVE_LOCKING
49 #define ASSERT_RHT_MUTEX(HT) BUG_ON(!lockdep_rht_mutex_is_held(HT))
51 int lockdep_rht_mutex_is_held(struct rhashtable
*ht
)
53 return (debug_locks
) ? lockdep_is_held(&ht
->mutex
) : 1;
55 EXPORT_SYMBOL_GPL(lockdep_rht_mutex_is_held
);
57 int lockdep_rht_bucket_is_held(const struct bucket_table
*tbl
, u32 hash
)
59 spinlock_t
*lock
= rht_bucket_lock(tbl
, hash
);
61 return (debug_locks
) ? lockdep_is_held(lock
) : 1;
63 EXPORT_SYMBOL_GPL(lockdep_rht_bucket_is_held
);
65 #define ASSERT_RHT_MUTEX(HT)
69 static int alloc_bucket_locks(struct rhashtable
*ht
, struct bucket_table
*tbl
,
73 #if defined(CONFIG_PROVE_LOCKING)
74 unsigned int nr_pcpus
= 2;
76 unsigned int nr_pcpus
= num_possible_cpus();
79 nr_pcpus
= min_t(unsigned int, nr_pcpus
, 64UL);
80 size
= roundup_pow_of_two(nr_pcpus
* ht
->p
.locks_mul
);
82 /* Never allocate more than 0.5 locks per bucket */
83 size
= min_t(unsigned int, size
, tbl
->size
>> 1);
86 size
= min(size
, 1U << tbl
->nest
);
88 if (sizeof(spinlock_t
) != 0) {
89 if (gfpflags_allow_blocking(gfp
))
90 tbl
->locks
= kvmalloc(size
* sizeof(spinlock_t
), gfp
);
92 tbl
->locks
= kmalloc_array(size
, sizeof(spinlock_t
),
96 for (i
= 0; i
< size
; i
++)
97 spin_lock_init(&tbl
->locks
[i
]);
99 tbl
->locks_mask
= size
- 1;
104 static void nested_table_free(union nested_table
*ntbl
, unsigned int size
)
106 const unsigned int shift
= PAGE_SHIFT
- ilog2(sizeof(void *));
107 const unsigned int len
= 1 << shift
;
110 ntbl
= rcu_dereference_raw(ntbl
->table
);
116 for (i
= 0; i
< len
; i
++)
117 nested_table_free(ntbl
+ i
, size
);
123 static void nested_bucket_table_free(const struct bucket_table
*tbl
)
125 unsigned int size
= tbl
->size
>> tbl
->nest
;
126 unsigned int len
= 1 << tbl
->nest
;
127 union nested_table
*ntbl
;
130 ntbl
= (union nested_table
*)rcu_dereference_raw(tbl
->buckets
[0]);
132 for (i
= 0; i
< len
; i
++)
133 nested_table_free(ntbl
+ i
, size
);
138 static void bucket_table_free(const struct bucket_table
*tbl
)
141 nested_bucket_table_free(tbl
);
147 static void bucket_table_free_rcu(struct rcu_head
*head
)
149 bucket_table_free(container_of(head
, struct bucket_table
, rcu
));
152 static union nested_table
*nested_table_alloc(struct rhashtable
*ht
,
153 union nested_table __rcu
**prev
,
154 unsigned int shifted
,
157 union nested_table
*ntbl
;
160 ntbl
= rcu_dereference(*prev
);
164 ntbl
= kzalloc(PAGE_SIZE
, GFP_ATOMIC
);
166 if (ntbl
&& shifted
) {
167 for (i
= 0; i
< PAGE_SIZE
/ sizeof(ntbl
[0].bucket
); i
++)
168 INIT_RHT_NULLS_HEAD(ntbl
[i
].bucket
, ht
,
169 (i
<< shifted
) | nhash
);
172 rcu_assign_pointer(*prev
, ntbl
);
177 static struct bucket_table
*nested_bucket_table_alloc(struct rhashtable
*ht
,
181 const unsigned int shift
= PAGE_SHIFT
- ilog2(sizeof(void *));
182 struct bucket_table
*tbl
;
185 if (nbuckets
< (1 << (shift
+ 1)))
188 size
= sizeof(*tbl
) + sizeof(tbl
->buckets
[0]);
190 tbl
= kzalloc(size
, gfp
);
194 if (!nested_table_alloc(ht
, (union nested_table __rcu
**)tbl
->buckets
,
200 tbl
->nest
= (ilog2(nbuckets
) - 1) % shift
+ 1;
205 static struct bucket_table
*bucket_table_alloc(struct rhashtable
*ht
,
209 struct bucket_table
*tbl
= NULL
;
213 size
= sizeof(*tbl
) + nbuckets
* sizeof(tbl
->buckets
[0]);
214 if (gfp
!= GFP_KERNEL
)
215 tbl
= kzalloc(size
, gfp
| __GFP_NOWARN
| __GFP_NORETRY
);
217 tbl
= kvzalloc(size
, gfp
);
221 if (tbl
== NULL
&& gfp
!= GFP_KERNEL
) {
222 tbl
= nested_bucket_table_alloc(ht
, nbuckets
, gfp
);
230 if (alloc_bucket_locks(ht
, tbl
, gfp
) < 0) {
231 bucket_table_free(tbl
);
235 INIT_LIST_HEAD(&tbl
->walkers
);
237 tbl
->hash_rnd
= get_random_u32();
239 for (i
= 0; i
< nbuckets
; i
++)
240 INIT_RHT_NULLS_HEAD(tbl
->buckets
[i
], ht
, i
);
245 static struct bucket_table
*rhashtable_last_table(struct rhashtable
*ht
,
246 struct bucket_table
*tbl
)
248 struct bucket_table
*new_tbl
;
252 tbl
= rht_dereference_rcu(tbl
->future_tbl
, ht
);
258 static int rhashtable_rehash_one(struct rhashtable
*ht
, unsigned int old_hash
)
260 struct bucket_table
*old_tbl
= rht_dereference(ht
->tbl
, ht
);
261 struct bucket_table
*new_tbl
= rhashtable_last_table(ht
,
262 rht_dereference_rcu(old_tbl
->future_tbl
, ht
));
263 struct rhash_head __rcu
**pprev
= rht_bucket_var(old_tbl
, old_hash
);
265 struct rhash_head
*head
, *next
, *entry
;
266 spinlock_t
*new_bucket_lock
;
267 unsigned int new_hash
;
274 rht_for_each(entry
, old_tbl
, old_hash
) {
276 next
= rht_dereference_bucket(entry
->next
, old_tbl
, old_hash
);
278 if (rht_is_a_nulls(next
))
281 pprev
= &entry
->next
;
287 new_hash
= head_hashfn(ht
, new_tbl
, entry
);
289 new_bucket_lock
= rht_bucket_lock(new_tbl
, new_hash
);
291 spin_lock_nested(new_bucket_lock
, SINGLE_DEPTH_NESTING
);
292 head
= rht_dereference_bucket(new_tbl
->buckets
[new_hash
],
295 RCU_INIT_POINTER(entry
->next
, head
);
297 rcu_assign_pointer(new_tbl
->buckets
[new_hash
], entry
);
298 spin_unlock(new_bucket_lock
);
300 rcu_assign_pointer(*pprev
, next
);
306 static int rhashtable_rehash_chain(struct rhashtable
*ht
,
307 unsigned int old_hash
)
309 struct bucket_table
*old_tbl
= rht_dereference(ht
->tbl
, ht
);
310 spinlock_t
*old_bucket_lock
;
313 old_bucket_lock
= rht_bucket_lock(old_tbl
, old_hash
);
315 spin_lock_bh(old_bucket_lock
);
316 while (!(err
= rhashtable_rehash_one(ht
, old_hash
)))
319 if (err
== -ENOENT
) {
323 spin_unlock_bh(old_bucket_lock
);
328 static int rhashtable_rehash_attach(struct rhashtable
*ht
,
329 struct bucket_table
*old_tbl
,
330 struct bucket_table
*new_tbl
)
332 /* Protect future_tbl using the first bucket lock. */
333 spin_lock_bh(old_tbl
->locks
);
335 /* Did somebody beat us to it? */
336 if (rcu_access_pointer(old_tbl
->future_tbl
)) {
337 spin_unlock_bh(old_tbl
->locks
);
341 /* Make insertions go into the new, empty table right away. Deletions
342 * and lookups will be attempted in both tables until we synchronize.
344 rcu_assign_pointer(old_tbl
->future_tbl
, new_tbl
);
346 spin_unlock_bh(old_tbl
->locks
);
351 static int rhashtable_rehash_table(struct rhashtable
*ht
)
353 struct bucket_table
*old_tbl
= rht_dereference(ht
->tbl
, ht
);
354 struct bucket_table
*new_tbl
;
355 struct rhashtable_walker
*walker
;
356 unsigned int old_hash
;
359 new_tbl
= rht_dereference(old_tbl
->future_tbl
, ht
);
363 for (old_hash
= 0; old_hash
< old_tbl
->size
; old_hash
++) {
364 err
= rhashtable_rehash_chain(ht
, old_hash
);
370 /* Publish the new table pointer. */
371 rcu_assign_pointer(ht
->tbl
, new_tbl
);
373 spin_lock(&ht
->lock
);
374 list_for_each_entry(walker
, &old_tbl
->walkers
, list
)
376 spin_unlock(&ht
->lock
);
378 /* Wait for readers. All new readers will see the new
379 * table, and thus no references to the old table will
382 call_rcu(&old_tbl
->rcu
, bucket_table_free_rcu
);
384 return rht_dereference(new_tbl
->future_tbl
, ht
) ? -EAGAIN
: 0;
387 static int rhashtable_rehash_alloc(struct rhashtable
*ht
,
388 struct bucket_table
*old_tbl
,
391 struct bucket_table
*new_tbl
;
394 ASSERT_RHT_MUTEX(ht
);
396 new_tbl
= bucket_table_alloc(ht
, size
, GFP_KERNEL
);
400 err
= rhashtable_rehash_attach(ht
, old_tbl
, new_tbl
);
402 bucket_table_free(new_tbl
);
408 * rhashtable_shrink - Shrink hash table while allowing concurrent lookups
409 * @ht: the hash table to shrink
411 * This function shrinks the hash table to fit, i.e., the smallest
412 * size would not cause it to expand right away automatically.
414 * The caller must ensure that no concurrent resizing occurs by holding
417 * The caller must ensure that no concurrent table mutations take place.
418 * It is however valid to have concurrent lookups if they are RCU protected.
420 * It is valid to have concurrent insertions and deletions protected by per
421 * bucket locks or concurrent RCU protected lookups and traversals.
423 static int rhashtable_shrink(struct rhashtable
*ht
)
425 struct bucket_table
*old_tbl
= rht_dereference(ht
->tbl
, ht
);
426 unsigned int nelems
= atomic_read(&ht
->nelems
);
427 unsigned int size
= 0;
430 size
= roundup_pow_of_two(nelems
* 3 / 2);
431 if (size
< ht
->p
.min_size
)
432 size
= ht
->p
.min_size
;
434 if (old_tbl
->size
<= size
)
437 if (rht_dereference(old_tbl
->future_tbl
, ht
))
440 return rhashtable_rehash_alloc(ht
, old_tbl
, size
);
443 static void rht_deferred_worker(struct work_struct
*work
)
445 struct rhashtable
*ht
;
446 struct bucket_table
*tbl
;
449 ht
= container_of(work
, struct rhashtable
, run_work
);
450 mutex_lock(&ht
->mutex
);
452 tbl
= rht_dereference(ht
->tbl
, ht
);
453 tbl
= rhashtable_last_table(ht
, tbl
);
455 if (rht_grow_above_75(ht
, tbl
))
456 err
= rhashtable_rehash_alloc(ht
, tbl
, tbl
->size
* 2);
457 else if (ht
->p
.automatic_shrinking
&& rht_shrink_below_30(ht
, tbl
))
458 err
= rhashtable_shrink(ht
);
460 err
= rhashtable_rehash_alloc(ht
, tbl
, tbl
->size
);
462 if (!err
|| err
== -EEXIST
) {
465 nerr
= rhashtable_rehash_table(ht
);
469 mutex_unlock(&ht
->mutex
);
472 schedule_work(&ht
->run_work
);
475 static int rhashtable_insert_rehash(struct rhashtable
*ht
,
476 struct bucket_table
*tbl
)
478 struct bucket_table
*old_tbl
;
479 struct bucket_table
*new_tbl
;
483 old_tbl
= rht_dereference_rcu(ht
->tbl
, ht
);
489 if (rht_grow_above_75(ht
, tbl
))
491 /* Do not schedule more than one rehash */
492 else if (old_tbl
!= tbl
)
497 new_tbl
= bucket_table_alloc(ht
, size
, GFP_ATOMIC
);
501 err
= rhashtable_rehash_attach(ht
, tbl
, new_tbl
);
503 bucket_table_free(new_tbl
);
507 schedule_work(&ht
->run_work
);
512 /* Do not fail the insert if someone else did a rehash. */
513 if (likely(rcu_dereference_raw(tbl
->future_tbl
)))
516 /* Schedule async rehash to retry allocation in process context. */
518 schedule_work(&ht
->run_work
);
523 static void *rhashtable_lookup_one(struct rhashtable
*ht
,
524 struct bucket_table
*tbl
, unsigned int hash
,
525 const void *key
, struct rhash_head
*obj
)
527 struct rhashtable_compare_arg arg
= {
531 struct rhash_head __rcu
**pprev
;
532 struct rhash_head
*head
;
535 elasticity
= RHT_ELASTICITY
;
536 pprev
= rht_bucket_var(tbl
, hash
);
537 rht_for_each_continue(head
, *pprev
, tbl
, hash
) {
538 struct rhlist_head
*list
;
539 struct rhlist_head
*plist
;
544 ht
->p
.obj_cmpfn(&arg
, rht_obj(ht
, head
)) :
545 rhashtable_compare(&arg
, rht_obj(ht
, head
)))) {
551 return rht_obj(ht
, head
);
553 list
= container_of(obj
, struct rhlist_head
, rhead
);
554 plist
= container_of(head
, struct rhlist_head
, rhead
);
556 RCU_INIT_POINTER(list
->next
, plist
);
557 head
= rht_dereference_bucket(head
->next
, tbl
, hash
);
558 RCU_INIT_POINTER(list
->rhead
.next
, head
);
559 rcu_assign_pointer(*pprev
, obj
);
565 return ERR_PTR(-EAGAIN
);
567 return ERR_PTR(-ENOENT
);
570 static struct bucket_table
*rhashtable_insert_one(struct rhashtable
*ht
,
571 struct bucket_table
*tbl
,
573 struct rhash_head
*obj
,
576 struct rhash_head __rcu
**pprev
;
577 struct bucket_table
*new_tbl
;
578 struct rhash_head
*head
;
580 if (!IS_ERR_OR_NULL(data
))
581 return ERR_PTR(-EEXIST
);
583 if (PTR_ERR(data
) != -EAGAIN
&& PTR_ERR(data
) != -ENOENT
)
584 return ERR_CAST(data
);
586 new_tbl
= rcu_dereference(tbl
->future_tbl
);
590 if (PTR_ERR(data
) != -ENOENT
)
591 return ERR_CAST(data
);
593 if (unlikely(rht_grow_above_max(ht
, tbl
)))
594 return ERR_PTR(-E2BIG
);
596 if (unlikely(rht_grow_above_100(ht
, tbl
)))
597 return ERR_PTR(-EAGAIN
);
599 pprev
= rht_bucket_insert(ht
, tbl
, hash
);
601 return ERR_PTR(-ENOMEM
);
603 head
= rht_dereference_bucket(*pprev
, tbl
, hash
);
605 RCU_INIT_POINTER(obj
->next
, head
);
607 struct rhlist_head
*list
;
609 list
= container_of(obj
, struct rhlist_head
, rhead
);
610 RCU_INIT_POINTER(list
->next
, NULL
);
613 rcu_assign_pointer(*pprev
, obj
);
615 atomic_inc(&ht
->nelems
);
616 if (rht_grow_above_75(ht
, tbl
))
617 schedule_work(&ht
->run_work
);
622 static void *rhashtable_try_insert(struct rhashtable
*ht
, const void *key
,
623 struct rhash_head
*obj
)
625 struct bucket_table
*new_tbl
;
626 struct bucket_table
*tbl
;
631 tbl
= rcu_dereference(ht
->tbl
);
633 /* All insertions must grab the oldest table containing
634 * the hashed bucket that is yet to be rehashed.
637 hash
= rht_head_hashfn(ht
, tbl
, obj
, ht
->p
);
638 lock
= rht_bucket_lock(tbl
, hash
);
641 if (tbl
->rehash
<= hash
)
644 spin_unlock_bh(lock
);
645 tbl
= rcu_dereference(tbl
->future_tbl
);
648 data
= rhashtable_lookup_one(ht
, tbl
, hash
, key
, obj
);
649 new_tbl
= rhashtable_insert_one(ht
, tbl
, hash
, obj
, data
);
650 if (PTR_ERR(new_tbl
) != -EEXIST
)
651 data
= ERR_CAST(new_tbl
);
653 while (!IS_ERR_OR_NULL(new_tbl
)) {
655 hash
= rht_head_hashfn(ht
, tbl
, obj
, ht
->p
);
656 spin_lock_nested(rht_bucket_lock(tbl
, hash
),
657 SINGLE_DEPTH_NESTING
);
659 data
= rhashtable_lookup_one(ht
, tbl
, hash
, key
, obj
);
660 new_tbl
= rhashtable_insert_one(ht
, tbl
, hash
, obj
, data
);
661 if (PTR_ERR(new_tbl
) != -EEXIST
)
662 data
= ERR_CAST(new_tbl
);
664 spin_unlock(rht_bucket_lock(tbl
, hash
));
667 spin_unlock_bh(lock
);
669 if (PTR_ERR(data
) == -EAGAIN
)
670 data
= ERR_PTR(rhashtable_insert_rehash(ht
, tbl
) ?:
676 void *rhashtable_insert_slow(struct rhashtable
*ht
, const void *key
,
677 struct rhash_head
*obj
)
683 data
= rhashtable_try_insert(ht
, key
, obj
);
685 } while (PTR_ERR(data
) == -EAGAIN
);
689 EXPORT_SYMBOL_GPL(rhashtable_insert_slow
);
692 * rhashtable_walk_enter - Initialise an iterator
693 * @ht: Table to walk over
694 * @iter: Hash table Iterator
696 * This function prepares a hash table walk.
698 * Note that if you restart a walk after rhashtable_walk_stop you
699 * may see the same object twice. Also, you may miss objects if
700 * there are removals in between rhashtable_walk_stop and the next
701 * call to rhashtable_walk_start.
703 * For a completely stable walk you should construct your own data
704 * structure outside the hash table.
706 * This function may sleep so you must not call it from interrupt
707 * context or with spin locks held.
709 * You must call rhashtable_walk_exit after this function returns.
711 void rhashtable_walk_enter(struct rhashtable
*ht
, struct rhashtable_iter
*iter
)
718 spin_lock(&ht
->lock
);
720 rcu_dereference_protected(ht
->tbl
, lockdep_is_held(&ht
->lock
));
721 list_add(&iter
->walker
.list
, &iter
->walker
.tbl
->walkers
);
722 spin_unlock(&ht
->lock
);
724 EXPORT_SYMBOL_GPL(rhashtable_walk_enter
);
727 * rhashtable_walk_exit - Free an iterator
728 * @iter: Hash table Iterator
730 * This function frees resources allocated by rhashtable_walk_init.
732 void rhashtable_walk_exit(struct rhashtable_iter
*iter
)
734 spin_lock(&iter
->ht
->lock
);
735 if (iter
->walker
.tbl
)
736 list_del(&iter
->walker
.list
);
737 spin_unlock(&iter
->ht
->lock
);
739 EXPORT_SYMBOL_GPL(rhashtable_walk_exit
);
742 * rhashtable_walk_start - Start a hash table walk
743 * @iter: Hash table iterator
745 * Start a hash table walk at the current iterator position. Note that we take
746 * the RCU lock in all cases including when we return an error. So you must
747 * always call rhashtable_walk_stop to clean up.
749 * Returns zero if successful.
751 * Returns -EAGAIN if resize event occured. Note that the iterator
752 * will rewind back to the beginning and you may use it immediately
753 * by calling rhashtable_walk_next.
755 int rhashtable_walk_start(struct rhashtable_iter
*iter
)
758 struct rhashtable
*ht
= iter
->ht
;
762 spin_lock(&ht
->lock
);
763 if (iter
->walker
.tbl
)
764 list_del(&iter
->walker
.list
);
765 spin_unlock(&ht
->lock
);
767 if (!iter
->walker
.tbl
) {
768 iter
->walker
.tbl
= rht_dereference_rcu(ht
->tbl
, ht
);
774 EXPORT_SYMBOL_GPL(rhashtable_walk_start
);
777 * rhashtable_walk_next - Return the next object and advance the iterator
778 * @iter: Hash table iterator
780 * Note that you must call rhashtable_walk_stop when you are finished
783 * Returns the next object or NULL when the end of the table is reached.
785 * Returns -EAGAIN if resize event occured. Note that the iterator
786 * will rewind back to the beginning and you may continue to use it.
788 void *rhashtable_walk_next(struct rhashtable_iter
*iter
)
790 struct bucket_table
*tbl
= iter
->walker
.tbl
;
791 struct rhlist_head
*list
= iter
->list
;
792 struct rhashtable
*ht
= iter
->ht
;
793 struct rhash_head
*p
= iter
->p
;
794 bool rhlist
= ht
->rhlist
;
797 if (!rhlist
|| !(list
= rcu_dereference(list
->next
))) {
798 p
= rcu_dereference(p
->next
);
799 list
= container_of(p
, struct rhlist_head
, rhead
);
804 for (; iter
->slot
< tbl
->size
; iter
->slot
++) {
805 int skip
= iter
->skip
;
807 rht_for_each_rcu(p
, tbl
, iter
->slot
) {
809 list
= container_of(p
, struct rhlist_head
,
815 list
= rcu_dereference(list
->next
);
826 if (!rht_is_a_nulls(p
)) {
830 return rht_obj(ht
, rhlist
? &list
->rhead
: p
);
838 /* Ensure we see any new tables. */
841 iter
->walker
.tbl
= rht_dereference_rcu(tbl
->future_tbl
, ht
);
842 if (iter
->walker
.tbl
) {
845 return ERR_PTR(-EAGAIN
);
850 EXPORT_SYMBOL_GPL(rhashtable_walk_next
);
853 * rhashtable_walk_stop - Finish a hash table walk
854 * @iter: Hash table iterator
856 * Finish a hash table walk. Does not reset the iterator to the start of the
859 void rhashtable_walk_stop(struct rhashtable_iter
*iter
)
862 struct rhashtable
*ht
;
863 struct bucket_table
*tbl
= iter
->walker
.tbl
;
870 spin_lock(&ht
->lock
);
871 if (tbl
->rehash
< tbl
->size
)
872 list_add(&iter
->walker
.list
, &tbl
->walkers
);
874 iter
->walker
.tbl
= NULL
;
875 spin_unlock(&ht
->lock
);
882 EXPORT_SYMBOL_GPL(rhashtable_walk_stop
);
884 static size_t rounded_hashtable_size(const struct rhashtable_params
*params
)
888 if (params
->nelem_hint
)
889 retsize
= max(roundup_pow_of_two(params
->nelem_hint
* 4 / 3),
890 (unsigned long)params
->min_size
);
892 retsize
= max(HASH_DEFAULT_SIZE
,
893 (unsigned long)params
->min_size
);
898 static u32
rhashtable_jhash2(const void *key
, u32 length
, u32 seed
)
900 return jhash2(key
, length
, seed
);
904 * rhashtable_init - initialize a new hash table
905 * @ht: hash table to be initialized
906 * @params: configuration parameters
908 * Initializes a new hash table based on the provided configuration
909 * parameters. A table can be configured either with a variable or
912 * Configuration Example 1: Fixed length keys
916 * struct rhash_head node;
919 * struct rhashtable_params params = {
920 * .head_offset = offsetof(struct test_obj, node),
921 * .key_offset = offsetof(struct test_obj, key),
922 * .key_len = sizeof(int),
924 * .nulls_base = (1U << RHT_BASE_SHIFT),
927 * Configuration Example 2: Variable length keys
930 * struct rhash_head node;
933 * u32 my_hash_fn(const void *data, u32 len, u32 seed)
935 * struct test_obj *obj = data;
937 * return [... hash ...];
940 * struct rhashtable_params params = {
941 * .head_offset = offsetof(struct test_obj, node),
943 * .obj_hashfn = my_hash_fn,
946 int rhashtable_init(struct rhashtable
*ht
,
947 const struct rhashtable_params
*params
)
949 struct bucket_table
*tbl
;
952 if ((!params
->key_len
&& !params
->obj_hashfn
) ||
953 (params
->obj_hashfn
&& !params
->obj_cmpfn
))
956 if (params
->nulls_base
&& params
->nulls_base
< (1U << RHT_BASE_SHIFT
))
959 memset(ht
, 0, sizeof(*ht
));
960 mutex_init(&ht
->mutex
);
961 spin_lock_init(&ht
->lock
);
962 memcpy(&ht
->p
, params
, sizeof(*params
));
964 if (params
->min_size
)
965 ht
->p
.min_size
= roundup_pow_of_two(params
->min_size
);
967 /* Cap total entries at 2^31 to avoid nelems overflow. */
968 ht
->max_elems
= 1u << 31;
970 if (params
->max_size
) {
971 ht
->p
.max_size
= rounddown_pow_of_two(params
->max_size
);
972 if (ht
->p
.max_size
< ht
->max_elems
/ 2)
973 ht
->max_elems
= ht
->p
.max_size
* 2;
976 ht
->p
.min_size
= max_t(u16
, ht
->p
.min_size
, HASH_MIN_SIZE
);
978 size
= rounded_hashtable_size(&ht
->p
);
980 if (params
->locks_mul
)
981 ht
->p
.locks_mul
= roundup_pow_of_two(params
->locks_mul
);
983 ht
->p
.locks_mul
= BUCKET_LOCKS_PER_CPU
;
985 ht
->key_len
= ht
->p
.key_len
;
986 if (!params
->hashfn
) {
987 ht
->p
.hashfn
= jhash
;
989 if (!(ht
->key_len
& (sizeof(u32
) - 1))) {
990 ht
->key_len
/= sizeof(u32
);
991 ht
->p
.hashfn
= rhashtable_jhash2
;
995 tbl
= bucket_table_alloc(ht
, size
, GFP_KERNEL
);
999 atomic_set(&ht
->nelems
, 0);
1001 RCU_INIT_POINTER(ht
->tbl
, tbl
);
1003 INIT_WORK(&ht
->run_work
, rht_deferred_worker
);
1007 EXPORT_SYMBOL_GPL(rhashtable_init
);
1010 * rhltable_init - initialize a new hash list table
1011 * @hlt: hash list table to be initialized
1012 * @params: configuration parameters
1014 * Initializes a new hash list table.
1016 * See documentation for rhashtable_init.
1018 int rhltable_init(struct rhltable
*hlt
, const struct rhashtable_params
*params
)
1022 /* No rhlist NULLs marking for now. */
1023 if (params
->nulls_base
)
1026 err
= rhashtable_init(&hlt
->ht
, params
);
1027 hlt
->ht
.rhlist
= true;
1030 EXPORT_SYMBOL_GPL(rhltable_init
);
1032 static void rhashtable_free_one(struct rhashtable
*ht
, struct rhash_head
*obj
,
1033 void (*free_fn
)(void *ptr
, void *arg
),
1036 struct rhlist_head
*list
;
1039 free_fn(rht_obj(ht
, obj
), arg
);
1043 list
= container_of(obj
, struct rhlist_head
, rhead
);
1046 list
= rht_dereference(list
->next
, ht
);
1047 free_fn(rht_obj(ht
, obj
), arg
);
1052 * rhashtable_free_and_destroy - free elements and destroy hash table
1053 * @ht: the hash table to destroy
1054 * @free_fn: callback to release resources of element
1055 * @arg: pointer passed to free_fn
1057 * Stops an eventual async resize. If defined, invokes free_fn for each
1058 * element to releasal resources. Please note that RCU protected
1059 * readers may still be accessing the elements. Releasing of resources
1060 * must occur in a compatible manner. Then frees the bucket array.
1062 * This function will eventually sleep to wait for an async resize
1063 * to complete. The caller is responsible that no further write operations
1064 * occurs in parallel.
1066 void rhashtable_free_and_destroy(struct rhashtable
*ht
,
1067 void (*free_fn
)(void *ptr
, void *arg
),
1070 struct bucket_table
*tbl
;
1073 cancel_work_sync(&ht
->run_work
);
1075 mutex_lock(&ht
->mutex
);
1076 tbl
= rht_dereference(ht
->tbl
, ht
);
1078 for (i
= 0; i
< tbl
->size
; i
++) {
1079 struct rhash_head
*pos
, *next
;
1082 for (pos
= rht_dereference(*rht_bucket(tbl
, i
), ht
),
1083 next
= !rht_is_a_nulls(pos
) ?
1084 rht_dereference(pos
->next
, ht
) : NULL
;
1085 !rht_is_a_nulls(pos
);
1087 next
= !rht_is_a_nulls(pos
) ?
1088 rht_dereference(pos
->next
, ht
) : NULL
)
1089 rhashtable_free_one(ht
, pos
, free_fn
, arg
);
1093 bucket_table_free(tbl
);
1094 mutex_unlock(&ht
->mutex
);
1096 EXPORT_SYMBOL_GPL(rhashtable_free_and_destroy
);
1098 void rhashtable_destroy(struct rhashtable
*ht
)
1100 return rhashtable_free_and_destroy(ht
, NULL
, NULL
);
1102 EXPORT_SYMBOL_GPL(rhashtable_destroy
);
1104 struct rhash_head __rcu
**rht_bucket_nested(const struct bucket_table
*tbl
,
1107 const unsigned int shift
= PAGE_SHIFT
- ilog2(sizeof(void *));
1108 static struct rhash_head __rcu
*rhnull
=
1109 (struct rhash_head __rcu
*)NULLS_MARKER(0);
1110 unsigned int index
= hash
& ((1 << tbl
->nest
) - 1);
1111 unsigned int size
= tbl
->size
>> tbl
->nest
;
1112 unsigned int subhash
= hash
;
1113 union nested_table
*ntbl
;
1115 ntbl
= (union nested_table
*)rcu_dereference_raw(tbl
->buckets
[0]);
1116 ntbl
= rht_dereference_bucket_rcu(ntbl
[index
].table
, tbl
, hash
);
1117 subhash
>>= tbl
->nest
;
1119 while (ntbl
&& size
> (1 << shift
)) {
1120 index
= subhash
& ((1 << shift
) - 1);
1121 ntbl
= rht_dereference_bucket_rcu(ntbl
[index
].table
,
1130 return &ntbl
[subhash
].bucket
;
1133 EXPORT_SYMBOL_GPL(rht_bucket_nested
);
1135 struct rhash_head __rcu
**rht_bucket_nested_insert(struct rhashtable
*ht
,
1136 struct bucket_table
*tbl
,
1139 const unsigned int shift
= PAGE_SHIFT
- ilog2(sizeof(void *));
1140 unsigned int index
= hash
& ((1 << tbl
->nest
) - 1);
1141 unsigned int size
= tbl
->size
>> tbl
->nest
;
1142 union nested_table
*ntbl
;
1143 unsigned int shifted
;
1146 ntbl
= (union nested_table
*)rcu_dereference_raw(tbl
->buckets
[0]);
1149 shifted
= tbl
->nest
;
1150 ntbl
= nested_table_alloc(ht
, &ntbl
[index
].table
,
1151 size
<= (1 << shift
) ? shifted
: 0, nhash
);
1153 while (ntbl
&& size
> (1 << shift
)) {
1154 index
= hash
& ((1 << shift
) - 1);
1157 nhash
|= index
<< shifted
;
1159 ntbl
= nested_table_alloc(ht
, &ntbl
[index
].table
,
1160 size
<= (1 << shift
) ? shifted
: 0,
1167 return &ntbl
[hash
].bucket
;
1170 EXPORT_SYMBOL_GPL(rht_bucket_nested_insert
);