]> git.ipfire.org Git - thirdparty/linux.git/blame - lib/rhashtable.c
rhashtable: Make rhashtable_init params argument const
[thirdparty/linux.git] / lib / rhashtable.c
CommitLineData
7e1e7763
TG
1/*
2 * Resizable, Scalable, Concurrent Hash Table
3 *
a5ec68e3 4 * Copyright (c) 2014-2015 Thomas Graf <tgraf@suug.ch>
7e1e7763
TG
5 * Copyright (c) 2008-2014 Patrick McHardy <kaber@trash.net>
6 *
7 * Based on the following paper:
8 * https://www.usenix.org/legacy/event/atc11/tech/final_files/Triplett.pdf
9 *
10 * Code partially derived from nft_hash
11 *
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.
15 */
16
17#include <linux/kernel.h>
18#include <linux/init.h>
19#include <linux/log2.h>
5beb5c90 20#include <linux/sched.h>
7e1e7763
TG
21#include <linux/slab.h>
22#include <linux/vmalloc.h>
23#include <linux/mm.h>
87545899 24#include <linux/jhash.h>
7e1e7763
TG
25#include <linux/random.h>
26#include <linux/rhashtable.h>
61d7b097 27#include <linux/err.h>
7e1e7763
TG
28
29#define HASH_DEFAULT_SIZE 64UL
c2e213cf 30#define HASH_MIN_SIZE 4U
97defe1e
TG
31#define BUCKET_LOCKS_PER_CPU 128UL
32
f89bd6f8
TG
33/* Base bits plus 1 bit for nulls marker */
34#define HASH_RESERVED_SPACE (RHT_BASE_BITS + 1)
35
97defe1e
TG
36/* The bucket lock is selected based on the hash and protects mutations
37 * on a group of hash buckets.
38 *
a5ec68e3
TG
39 * A maximum of tbl->size/2 bucket locks is allocated. This ensures that
40 * a single lock always covers both buckets which may both contains
41 * entries which link to the same bucket of the old table during resizing.
42 * This allows to simplify the locking as locking the bucket in both
43 * tables during resize always guarantee protection.
44 *
97defe1e
TG
45 * IMPORTANT: When holding the bucket lock of both the old and new table
46 * during expansions and shrinking, the old bucket lock must always be
47 * acquired first.
48 */
49static spinlock_t *bucket_lock(const struct bucket_table *tbl, u32 hash)
50{
51 return &tbl->locks[hash & tbl->locks_mask];
52}
7e1e7763 53
c91eee56 54static void *rht_obj(const struct rhashtable *ht, const struct rhash_head *he)
7e1e7763
TG
55{
56 return (void *) he - ht->p.head_offset;
57}
7e1e7763 58
8d24c0b4 59static u32 rht_bucket_index(const struct bucket_table *tbl, u32 hash)
7e1e7763 60{
ec9f71c5 61 return (hash >> HASH_RESERVED_SPACE) & (tbl->size - 1);
7e1e7763
TG
62}
63
aa34a6cb 64static u32 key_hashfn(struct rhashtable *ht, const struct bucket_table *tbl,
cffaa9cb 65 const void *key)
7e1e7763 66{
cffaa9cb 67 return rht_bucket_index(tbl, ht->p.hashfn(key, ht->p.key_len,
ec9f71c5 68 tbl->hash_rnd));
7e1e7763 69}
7e1e7763 70
988dfbd7 71static u32 head_hashfn(struct rhashtable *ht,
8d24c0b4
TG
72 const struct bucket_table *tbl,
73 const struct rhash_head *he)
7e1e7763 74{
ec9f71c5
HX
75 const char *ptr = rht_obj(ht, he);
76
77 return likely(ht->p.key_len) ?
78 key_hashfn(ht, tbl, ptr + ht->p.key_offset) :
79 rht_bucket_index(tbl, ht->p.obj_hashfn(ptr, tbl->hash_rnd));
7e1e7763
TG
80}
81
a03eaec0 82#ifdef CONFIG_PROVE_LOCKING
a03eaec0 83#define ASSERT_RHT_MUTEX(HT) BUG_ON(!lockdep_rht_mutex_is_held(HT))
a03eaec0
TG
84
85int lockdep_rht_mutex_is_held(struct rhashtable *ht)
86{
87 return (debug_locks) ? lockdep_is_held(&ht->mutex) : 1;
88}
89EXPORT_SYMBOL_GPL(lockdep_rht_mutex_is_held);
90
91int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash)
92{
93 spinlock_t *lock = bucket_lock(tbl, hash);
94
95 return (debug_locks) ? lockdep_is_held(lock) : 1;
96}
97EXPORT_SYMBOL_GPL(lockdep_rht_bucket_is_held);
98#else
99#define ASSERT_RHT_MUTEX(HT)
a03eaec0
TG
100#endif
101
102
97defe1e
TG
103static int alloc_bucket_locks(struct rhashtable *ht, struct bucket_table *tbl)
104{
105 unsigned int i, size;
106#if defined(CONFIG_PROVE_LOCKING)
107 unsigned int nr_pcpus = 2;
108#else
109 unsigned int nr_pcpus = num_possible_cpus();
110#endif
111
112 nr_pcpus = min_t(unsigned int, nr_pcpus, 32UL);
113 size = roundup_pow_of_two(nr_pcpus * ht->p.locks_mul);
114
a5ec68e3
TG
115 /* Never allocate more than 0.5 locks per bucket */
116 size = min_t(unsigned int, size, tbl->size >> 1);
97defe1e
TG
117
118 if (sizeof(spinlock_t) != 0) {
119#ifdef CONFIG_NUMA
120 if (size * sizeof(spinlock_t) > PAGE_SIZE)
121 tbl->locks = vmalloc(size * sizeof(spinlock_t));
122 else
123#endif
124 tbl->locks = kmalloc_array(size, sizeof(spinlock_t),
125 GFP_KERNEL);
126 if (!tbl->locks)
127 return -ENOMEM;
128 for (i = 0; i < size; i++)
129 spin_lock_init(&tbl->locks[i]);
130 }
131 tbl->locks_mask = size - 1;
132
133 return 0;
134}
135
136static void bucket_table_free(const struct bucket_table *tbl)
137{
138 if (tbl)
139 kvfree(tbl->locks);
140
141 kvfree(tbl);
142}
143
9d901bc0
HX
144static void bucket_table_free_rcu(struct rcu_head *head)
145{
146 bucket_table_free(container_of(head, struct bucket_table, rcu));
147}
148
97defe1e 149static struct bucket_table *bucket_table_alloc(struct rhashtable *ht,
5269b53d 150 size_t nbuckets)
7e1e7763 151{
eb6d1abf 152 struct bucket_table *tbl = NULL;
7e1e7763 153 size_t size;
f89bd6f8 154 int i;
7e1e7763
TG
155
156 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]);
eb6d1abf
DB
157 if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER))
158 tbl = kzalloc(size, GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY);
7e1e7763
TG
159 if (tbl == NULL)
160 tbl = vzalloc(size);
7e1e7763
TG
161 if (tbl == NULL)
162 return NULL;
163
164 tbl->size = nbuckets;
165
97defe1e
TG
166 if (alloc_bucket_locks(ht, tbl) < 0) {
167 bucket_table_free(tbl);
168 return NULL;
169 }
7e1e7763 170
eddee5ba
HX
171 INIT_LIST_HEAD(&tbl->walkers);
172
5269b53d
HX
173 get_random_bytes(&tbl->hash_rnd, sizeof(tbl->hash_rnd));
174
f89bd6f8
TG
175 for (i = 0; i < nbuckets; i++)
176 INIT_RHT_NULLS_HEAD(tbl->buckets[i], ht, i);
177
97defe1e 178 return tbl;
7e1e7763
TG
179}
180
181/**
182 * rht_grow_above_75 - returns true if nelems > 0.75 * table-size
183 * @ht: hash table
a5b6846f 184 * @tbl: current table
7e1e7763 185 */
a5b6846f
DB
186static bool rht_grow_above_75(const struct rhashtable *ht,
187 const struct bucket_table *tbl)
7e1e7763
TG
188{
189 /* Expand table when exceeding 75% load */
a5b6846f 190 return atomic_read(&ht->nelems) > (tbl->size / 4 * 3) &&
c2e213cf 191 (!ht->p.max_size || tbl->size < ht->p.max_size);
7e1e7763 192}
7e1e7763
TG
193
194/**
195 * rht_shrink_below_30 - returns true if nelems < 0.3 * table-size
196 * @ht: hash table
a5b6846f 197 * @tbl: current table
7e1e7763 198 */
a5b6846f
DB
199static bool rht_shrink_below_30(const struct rhashtable *ht,
200 const struct bucket_table *tbl)
7e1e7763
TG
201{
202 /* Shrink table beneath 30% load */
a5b6846f 203 return atomic_read(&ht->nelems) < (tbl->size * 3 / 10) &&
c2e213cf 204 tbl->size > ht->p.min_size;
7e1e7763 205}
7e1e7763 206
aa34a6cb 207static int rhashtable_rehash_one(struct rhashtable *ht, unsigned old_hash)
a5ec68e3 208{
aa34a6cb 209 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
c4db8848
HX
210 struct bucket_table *new_tbl =
211 rht_dereference(old_tbl->future_tbl, ht) ?: old_tbl;
aa34a6cb
HX
212 struct rhash_head __rcu **pprev = &old_tbl->buckets[old_hash];
213 int err = -ENOENT;
214 struct rhash_head *head, *next, *entry;
215 spinlock_t *new_bucket_lock;
216 unsigned new_hash;
217
218 rht_for_each(entry, old_tbl, old_hash) {
219 err = 0;
220 next = rht_dereference_bucket(entry->next, old_tbl, old_hash);
221
222 if (rht_is_a_nulls(next))
223 break;
a5ec68e3 224
aa34a6cb
HX
225 pprev = &entry->next;
226 }
a5ec68e3 227
aa34a6cb
HX
228 if (err)
229 goto out;
97defe1e 230
aa34a6cb 231 new_hash = head_hashfn(ht, new_tbl, entry);
7e1e7763 232
aa34a6cb 233 new_bucket_lock = bucket_lock(new_tbl, new_hash);
7e1e7763 234
8f2484bd 235 spin_lock_nested(new_bucket_lock, SINGLE_DEPTH_NESTING);
aa34a6cb
HX
236 head = rht_dereference_bucket(new_tbl->buckets[new_hash],
237 new_tbl, new_hash);
97defe1e 238
aa34a6cb
HX
239 if (rht_is_a_nulls(head))
240 INIT_RHT_NULLS_HEAD(entry->next, ht, new_hash);
241 else
242 RCU_INIT_POINTER(entry->next, head);
a5ec68e3 243
aa34a6cb
HX
244 rcu_assign_pointer(new_tbl->buckets[new_hash], entry);
245 spin_unlock(new_bucket_lock);
97defe1e 246
aa34a6cb 247 rcu_assign_pointer(*pprev, next);
7e1e7763 248
aa34a6cb
HX
249out:
250 return err;
251}
97defe1e 252
aa34a6cb
HX
253static void rhashtable_rehash_chain(struct rhashtable *ht, unsigned old_hash)
254{
255 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
256 spinlock_t *old_bucket_lock;
257
258 old_bucket_lock = bucket_lock(old_tbl, old_hash);
a5ec68e3 259
aa34a6cb
HX
260 spin_lock_bh(old_bucket_lock);
261 while (!rhashtable_rehash_one(ht, old_hash))
262 ;
63d512d0 263 old_tbl->rehash++;
aa34a6cb 264 spin_unlock_bh(old_bucket_lock);
97defe1e
TG
265}
266
aa34a6cb
HX
267static void rhashtable_rehash(struct rhashtable *ht,
268 struct bucket_table *new_tbl)
97defe1e 269{
aa34a6cb 270 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
eddee5ba 271 struct rhashtable_walker *walker;
aa34a6cb 272 unsigned old_hash;
7cd10db8 273
aa34a6cb
HX
274 /* Make insertions go into the new, empty table right away. Deletions
275 * and lookups will be attempted in both tables until we synchronize.
aa34a6cb 276 */
c4db8848 277 rcu_assign_pointer(old_tbl->future_tbl, new_tbl);
aa34a6cb 278
9497df88
HX
279 /* Ensure the new table is visible to readers. */
280 smp_wmb();
281
aa34a6cb
HX
282 for (old_hash = 0; old_hash < old_tbl->size; old_hash++)
283 rhashtable_rehash_chain(ht, old_hash);
284
285 /* Publish the new table pointer. */
286 rcu_assign_pointer(ht->tbl, new_tbl);
287
eddee5ba
HX
288 list_for_each_entry(walker, &old_tbl->walkers, list)
289 walker->tbl = NULL;
290
aa34a6cb
HX
291 /* Wait for readers. All new readers will see the new
292 * table, and thus no references to the old table will
293 * remain.
294 */
9d901bc0 295 call_rcu(&old_tbl->rcu, bucket_table_free_rcu);
7e1e7763
TG
296}
297
298/**
299 * rhashtable_expand - Expand hash table while allowing concurrent lookups
300 * @ht: the hash table to expand
7e1e7763 301 *
aa34a6cb 302 * A secondary bucket array is allocated and the hash entries are migrated.
7e1e7763
TG
303 *
304 * This function may only be called in a context where it is safe to call
305 * synchronize_rcu(), e.g. not within a rcu_read_lock() section.
306 *
97defe1e
TG
307 * The caller must ensure that no concurrent resizing occurs by holding
308 * ht->mutex.
309 *
310 * It is valid to have concurrent insertions and deletions protected by per
311 * bucket locks or concurrent RCU protected lookups and traversals.
7e1e7763 312 */
6eba8224 313int rhashtable_expand(struct rhashtable *ht)
7e1e7763
TG
314{
315 struct bucket_table *new_tbl, *old_tbl = rht_dereference(ht->tbl, ht);
7e1e7763
TG
316
317 ASSERT_RHT_MUTEX(ht);
318
5269b53d 319 new_tbl = bucket_table_alloc(ht, old_tbl->size * 2);
7e1e7763
TG
320 if (new_tbl == NULL)
321 return -ENOMEM;
322
aa34a6cb 323 rhashtable_rehash(ht, new_tbl);
7e1e7763
TG
324 return 0;
325}
326EXPORT_SYMBOL_GPL(rhashtable_expand);
327
328/**
329 * rhashtable_shrink - Shrink hash table while allowing concurrent lookups
330 * @ht: the hash table to shrink
7e1e7763
TG
331 *
332 * This function may only be called in a context where it is safe to call
333 * synchronize_rcu(), e.g. not within a rcu_read_lock() section.
334 *
97defe1e
TG
335 * The caller must ensure that no concurrent resizing occurs by holding
336 * ht->mutex.
337 *
7e1e7763
TG
338 * The caller must ensure that no concurrent table mutations take place.
339 * It is however valid to have concurrent lookups if they are RCU protected.
97defe1e
TG
340 *
341 * It is valid to have concurrent insertions and deletions protected by per
342 * bucket locks or concurrent RCU protected lookups and traversals.
7e1e7763 343 */
6eba8224 344int rhashtable_shrink(struct rhashtable *ht)
7e1e7763 345{
a5b6846f 346 struct bucket_table *new_tbl, *old_tbl = rht_dereference(ht->tbl, ht);
7e1e7763
TG
347
348 ASSERT_RHT_MUTEX(ht);
349
5269b53d 350 new_tbl = bucket_table_alloc(ht, old_tbl->size / 2);
97defe1e 351 if (new_tbl == NULL)
7e1e7763
TG
352 return -ENOMEM;
353
aa34a6cb 354 rhashtable_rehash(ht, new_tbl);
7e1e7763
TG
355 return 0;
356}
357EXPORT_SYMBOL_GPL(rhashtable_shrink);
358
97defe1e
TG
359static void rht_deferred_worker(struct work_struct *work)
360{
361 struct rhashtable *ht;
362 struct bucket_table *tbl;
363
57699a40 364 ht = container_of(work, struct rhashtable, run_work);
97defe1e 365 mutex_lock(&ht->mutex);
28134a53
HX
366 if (ht->being_destroyed)
367 goto unlock;
368
97defe1e
TG
369 tbl = rht_dereference(ht->tbl, ht);
370
a5b6846f 371 if (rht_grow_above_75(ht, tbl))
97defe1e 372 rhashtable_expand(ht);
a5b6846f 373 else if (rht_shrink_below_30(ht, tbl))
97defe1e 374 rhashtable_shrink(ht);
28134a53 375unlock:
97defe1e
TG
376 mutex_unlock(&ht->mutex);
377}
378
aa34a6cb
HX
379static bool __rhashtable_insert(struct rhashtable *ht, struct rhash_head *obj,
380 bool (*compare)(void *, void *), void *arg)
db304854 381{
aa34a6cb 382 struct bucket_table *tbl, *old_tbl;
020219a6 383 struct rhash_head *head;
aa34a6cb
HX
384 bool no_resize_running;
385 unsigned hash;
617011e7 386 spinlock_t *old_lock;
aa34a6cb
HX
387 bool success = true;
388
389 rcu_read_lock();
390
391 old_tbl = rht_dereference_rcu(ht->tbl, ht);
eca84933 392 hash = head_hashfn(ht, old_tbl, obj);
617011e7 393 old_lock = bucket_lock(old_tbl, hash);
aa34a6cb 394
617011e7 395 spin_lock_bh(old_lock);
aa34a6cb
HX
396
397 /* Because we have already taken the bucket lock in old_tbl,
398 * if we find that future_tbl is not yet visible then that
399 * guarantees all other insertions of the same entry will
400 * also grab the bucket lock in old_tbl because until the
401 * rehash completes ht->tbl won't be changed.
402 */
c4db8848 403 tbl = rht_dereference_rcu(old_tbl->future_tbl, ht) ?: old_tbl;
aa34a6cb 404 if (tbl != old_tbl) {
eca84933 405 hash = head_hashfn(ht, tbl, obj);
8f2484bd 406 spin_lock_nested(bucket_lock(tbl, hash), SINGLE_DEPTH_NESTING);
aa34a6cb
HX
407 }
408
409 if (compare &&
410 rhashtable_lookup_compare(ht, rht_obj(ht, obj) + ht->p.key_offset,
411 compare, arg)) {
412 success = false;
413 goto exit;
414 }
415
416 no_resize_running = tbl == old_tbl;
020219a6 417
020219a6 418 head = rht_dereference_bucket(tbl->buckets[hash], tbl, hash);
db304854
YX
419
420 if (rht_is_a_nulls(head))
421 INIT_RHT_NULLS_HEAD(obj->next, ht, hash);
422 else
423 RCU_INIT_POINTER(obj->next, head);
424
425 rcu_assign_pointer(tbl->buckets[hash], obj);
426
427 atomic_inc(&ht->nelems);
a5b6846f 428 if (no_resize_running && rht_grow_above_75(ht, tbl))
4c4b52d9 429 schedule_work(&ht->run_work);
aa34a6cb
HX
430
431exit:
617011e7 432 if (tbl != old_tbl)
aa34a6cb 433 spin_unlock(bucket_lock(tbl, hash));
aa34a6cb 434
617011e7 435 spin_unlock_bh(old_lock);
aa34a6cb
HX
436
437 rcu_read_unlock();
438
439 return success;
db304854
YX
440}
441
7e1e7763 442/**
db304854 443 * rhashtable_insert - insert object into hash table
7e1e7763
TG
444 * @ht: hash table
445 * @obj: pointer to hash head inside object
7e1e7763 446 *
97defe1e
TG
447 * Will take a per bucket spinlock to protect against mutual mutations
448 * on the same bucket. Multiple insertions may occur in parallel unless
449 * they map to the same bucket lock.
7e1e7763 450 *
97defe1e
TG
451 * It is safe to call this function from atomic context.
452 *
453 * Will trigger an automatic deferred table resizing if the size grows
454 * beyond the watermark indicated by grow_decision() which can be passed
455 * to rhashtable_init().
7e1e7763 456 */
6eba8224 457void rhashtable_insert(struct rhashtable *ht, struct rhash_head *obj)
7e1e7763 458{
aa34a6cb
HX
459 __rhashtable_insert(ht, obj, NULL, NULL);
460}
461EXPORT_SYMBOL_GPL(rhashtable_insert);
462
463static bool __rhashtable_remove(struct rhashtable *ht,
464 struct bucket_table *tbl,
465 struct rhash_head *obj)
466{
467 struct rhash_head __rcu **pprev;
468 struct rhash_head *he;
469 spinlock_t * lock;
97defe1e 470 unsigned hash;
aa34a6cb 471 bool ret = false;
7e1e7763 472
eca84933 473 hash = head_hashfn(ht, tbl, obj);
aa34a6cb 474 lock = bucket_lock(tbl, hash);
7e1e7763 475
aa34a6cb 476 spin_lock_bh(lock);
97defe1e 477
aa34a6cb
HX
478 pprev = &tbl->buckets[hash];
479 rht_for_each(he, tbl, hash) {
480 if (he != obj) {
481 pprev = &he->next;
482 continue;
483 }
7e1e7763 484
aa34a6cb
HX
485 rcu_assign_pointer(*pprev, obj->next);
486 ret = true;
487 break;
488 }
489
490 spin_unlock_bh(lock);
491
492 return ret;
7e1e7763 493}
7e1e7763 494
7e1e7763
TG
495/**
496 * rhashtable_remove - remove object from hash table
497 * @ht: hash table
498 * @obj: pointer to hash head inside object
7e1e7763
TG
499 *
500 * Since the hash chain is single linked, the removal operation needs to
501 * walk the bucket chain upon removal. The removal operation is thus
502 * considerable slow if the hash table is not correctly sized.
503 *
db304854 504 * Will automatically shrink the table via rhashtable_expand() if the
7e1e7763
TG
505 * shrink_decision function specified at rhashtable_init() returns true.
506 *
507 * The caller must ensure that no concurrent table mutations occur. It is
508 * however valid to have concurrent lookups if they are RCU protected.
509 */
6eba8224 510bool rhashtable_remove(struct rhashtable *ht, struct rhash_head *obj)
7e1e7763 511{
565e8640 512 struct bucket_table *tbl;
aa34a6cb 513 bool ret;
7e1e7763 514
97defe1e 515 rcu_read_lock();
7e1e7763 516
565e8640 517 tbl = rht_dereference_rcu(ht->tbl, ht);
7e1e7763 518
aa34a6cb
HX
519 /* Because we have already taken (and released) the bucket
520 * lock in old_tbl, if we find that future_tbl is not yet
521 * visible then that guarantees the entry to still be in
565e8640 522 * the old tbl if it exists.
fe6a043c 523 */
565e8640
HX
524 while (!(ret = __rhashtable_remove(ht, tbl, obj)) &&
525 (tbl = rht_dereference_rcu(tbl->future_tbl, ht)))
526 ;
fe6a043c
TG
527
528 if (ret) {
529 atomic_dec(&ht->nelems);
565e8640 530 if (rht_shrink_below_30(ht, tbl))
4c4b52d9 531 schedule_work(&ht->run_work);
fe6a043c
TG
532 }
533
97defe1e
TG
534 rcu_read_unlock();
535
fe6a043c 536 return ret;
7e1e7763
TG
537}
538EXPORT_SYMBOL_GPL(rhashtable_remove);
539
efb975a6
YX
540struct rhashtable_compare_arg {
541 struct rhashtable *ht;
542 const void *key;
543};
544
545static bool rhashtable_compare(void *ptr, void *arg)
546{
547 struct rhashtable_compare_arg *x = arg;
548 struct rhashtable *ht = x->ht;
549
550 return !memcmp(ptr + ht->p.key_offset, x->key, ht->p.key_len);
551}
552
7e1e7763
TG
553/**
554 * rhashtable_lookup - lookup key in hash table
555 * @ht: hash table
556 * @key: pointer to key
557 *
558 * Computes the hash value for the key and traverses the bucket chain looking
559 * for a entry with an identical key. The first matching entry is returned.
560 *
561 * This lookup function may only be used for fixed key hash table (key_len
db304854 562 * parameter set). It will BUG() if used inappropriately.
7e1e7763 563 *
97defe1e 564 * Lookups may occur in parallel with hashtable mutations and resizing.
7e1e7763 565 */
97defe1e 566void *rhashtable_lookup(struct rhashtable *ht, const void *key)
7e1e7763 567{
efb975a6
YX
568 struct rhashtable_compare_arg arg = {
569 .ht = ht,
570 .key = key,
571 };
7e1e7763
TG
572
573 BUG_ON(!ht->p.key_len);
574
efb975a6 575 return rhashtable_lookup_compare(ht, key, &rhashtable_compare, &arg);
7e1e7763
TG
576}
577EXPORT_SYMBOL_GPL(rhashtable_lookup);
578
579/**
580 * rhashtable_lookup_compare - search hash table with compare function
581 * @ht: hash table
8d24c0b4 582 * @key: the pointer to the key
7e1e7763
TG
583 * @compare: compare function, must return true on match
584 * @arg: argument passed on to compare function
585 *
586 * Traverses the bucket chain behind the provided hash value and calls the
587 * specified compare function for each entry.
588 *
97defe1e 589 * Lookups may occur in parallel with hashtable mutations and resizing.
7e1e7763
TG
590 *
591 * Returns the first entry on which the compare function returned true.
592 */
97defe1e 593void *rhashtable_lookup_compare(struct rhashtable *ht, const void *key,
7e1e7763
TG
594 bool (*compare)(void *, void *), void *arg)
595{
c4db8848 596 const struct bucket_table *tbl;
7e1e7763 597 struct rhash_head *he;
8d24c0b4 598 u32 hash;
7e1e7763 599
97defe1e
TG
600 rcu_read_lock();
601
aa34a6cb 602 tbl = rht_dereference_rcu(ht->tbl, ht);
97defe1e 603restart:
39361947 604 hash = key_hashfn(ht, tbl, key);
8d2b1879 605 rht_for_each_rcu(he, tbl, hash) {
7e1e7763
TG
606 if (!compare(rht_obj(ht, he), arg))
607 continue;
97defe1e 608 rcu_read_unlock();
a4b18cda 609 return rht_obj(ht, he);
7e1e7763
TG
610 }
611
9497df88
HX
612 /* Ensure we see any new tables. */
613 smp_rmb();
614
c4db8848
HX
615 tbl = rht_dereference_rcu(tbl->future_tbl, ht);
616 if (unlikely(tbl))
97defe1e 617 goto restart;
97defe1e
TG
618 rcu_read_unlock();
619
7e1e7763
TG
620 return NULL;
621}
622EXPORT_SYMBOL_GPL(rhashtable_lookup_compare);
623
db304854
YX
624/**
625 * rhashtable_lookup_insert - lookup and insert object into hash table
626 * @ht: hash table
627 * @obj: pointer to hash head inside object
628 *
629 * Locks down the bucket chain in both the old and new table if a resize
630 * is in progress to ensure that writers can't remove from the old table
631 * and can't insert to the new table during the atomic operation of search
632 * and insertion. Searches for duplicates in both the old and new table if
633 * a resize is in progress.
634 *
635 * This lookup function may only be used for fixed key hash table (key_len
636 * parameter set). It will BUG() if used inappropriately.
637 *
638 * It is safe to call this function from atomic context.
639 *
640 * Will trigger an automatic deferred table resizing if the size grows
641 * beyond the watermark indicated by grow_decision() which can be passed
642 * to rhashtable_init().
643 */
644bool rhashtable_lookup_insert(struct rhashtable *ht, struct rhash_head *obj)
7a868d1e
YX
645{
646 struct rhashtable_compare_arg arg = {
647 .ht = ht,
648 .key = rht_obj(ht, obj) + ht->p.key_offset,
649 };
650
651 BUG_ON(!ht->p.key_len);
652
653 return rhashtable_lookup_compare_insert(ht, obj, &rhashtable_compare,
654 &arg);
655}
656EXPORT_SYMBOL_GPL(rhashtable_lookup_insert);
657
658/**
659 * rhashtable_lookup_compare_insert - search and insert object to hash table
660 * with compare function
661 * @ht: hash table
662 * @obj: pointer to hash head inside object
663 * @compare: compare function, must return true on match
664 * @arg: argument passed on to compare function
665 *
666 * Locks down the bucket chain in both the old and new table if a resize
667 * is in progress to ensure that writers can't remove from the old table
668 * and can't insert to the new table during the atomic operation of search
669 * and insertion. Searches for duplicates in both the old and new table if
670 * a resize is in progress.
671 *
672 * Lookups may occur in parallel with hashtable mutations and resizing.
673 *
674 * Will trigger an automatic deferred table resizing if the size grows
675 * beyond the watermark indicated by grow_decision() which can be passed
676 * to rhashtable_init().
677 */
678bool rhashtable_lookup_compare_insert(struct rhashtable *ht,
679 struct rhash_head *obj,
680 bool (*compare)(void *, void *),
681 void *arg)
db304854 682{
db304854
YX
683 BUG_ON(!ht->p.key_len);
684
aa34a6cb 685 return __rhashtable_insert(ht, obj, compare, arg);
db304854 686}
7a868d1e 687EXPORT_SYMBOL_GPL(rhashtable_lookup_compare_insert);
db304854 688
f2dba9c6
HX
689/**
690 * rhashtable_walk_init - Initialise an iterator
691 * @ht: Table to walk over
692 * @iter: Hash table Iterator
693 *
694 * This function prepares a hash table walk.
695 *
696 * Note that if you restart a walk after rhashtable_walk_stop you
697 * may see the same object twice. Also, you may miss objects if
698 * there are removals in between rhashtable_walk_stop and the next
699 * call to rhashtable_walk_start.
700 *
701 * For a completely stable walk you should construct your own data
702 * structure outside the hash table.
703 *
704 * This function may sleep so you must not call it from interrupt
705 * context or with spin locks held.
706 *
707 * You must call rhashtable_walk_exit if this function returns
708 * successfully.
709 */
710int rhashtable_walk_init(struct rhashtable *ht, struct rhashtable_iter *iter)
711{
712 iter->ht = ht;
713 iter->p = NULL;
714 iter->slot = 0;
715 iter->skip = 0;
716
717 iter->walker = kmalloc(sizeof(*iter->walker), GFP_KERNEL);
718 if (!iter->walker)
719 return -ENOMEM;
720
721 mutex_lock(&ht->mutex);
eddee5ba
HX
722 iter->walker->tbl = rht_dereference(ht->tbl, ht);
723 list_add(&iter->walker->list, &iter->walker->tbl->walkers);
f2dba9c6
HX
724 mutex_unlock(&ht->mutex);
725
726 return 0;
727}
728EXPORT_SYMBOL_GPL(rhashtable_walk_init);
729
730/**
731 * rhashtable_walk_exit - Free an iterator
732 * @iter: Hash table Iterator
733 *
734 * This function frees resources allocated by rhashtable_walk_init.
735 */
736void rhashtable_walk_exit(struct rhashtable_iter *iter)
737{
738 mutex_lock(&iter->ht->mutex);
eddee5ba
HX
739 if (iter->walker->tbl)
740 list_del(&iter->walker->list);
f2dba9c6
HX
741 mutex_unlock(&iter->ht->mutex);
742 kfree(iter->walker);
743}
744EXPORT_SYMBOL_GPL(rhashtable_walk_exit);
745
746/**
747 * rhashtable_walk_start - Start a hash table walk
748 * @iter: Hash table iterator
749 *
750 * Start a hash table walk. Note that we take the RCU lock in all
751 * cases including when we return an error. So you must always call
752 * rhashtable_walk_stop to clean up.
753 *
754 * Returns zero if successful.
755 *
756 * Returns -EAGAIN if resize event occured. Note that the iterator
757 * will rewind back to the beginning and you may use it immediately
758 * by calling rhashtable_walk_next.
759 */
760int rhashtable_walk_start(struct rhashtable_iter *iter)
db4374f4 761 __acquires(RCU)
f2dba9c6 762{
eddee5ba
HX
763 struct rhashtable *ht = iter->ht;
764
765 mutex_lock(&ht->mutex);
766
767 if (iter->walker->tbl)
768 list_del(&iter->walker->list);
769
f2dba9c6
HX
770 rcu_read_lock();
771
eddee5ba
HX
772 mutex_unlock(&ht->mutex);
773
774 if (!iter->walker->tbl) {
775 iter->walker->tbl = rht_dereference_rcu(ht->tbl, ht);
f2dba9c6
HX
776 return -EAGAIN;
777 }
778
779 return 0;
780}
781EXPORT_SYMBOL_GPL(rhashtable_walk_start);
782
783/**
784 * rhashtable_walk_next - Return the next object and advance the iterator
785 * @iter: Hash table iterator
786 *
787 * Note that you must call rhashtable_walk_stop when you are finished
788 * with the walk.
789 *
790 * Returns the next object or NULL when the end of the table is reached.
791 *
792 * Returns -EAGAIN if resize event occured. Note that the iterator
793 * will rewind back to the beginning and you may continue to use it.
794 */
795void *rhashtable_walk_next(struct rhashtable_iter *iter)
796{
eddee5ba 797 struct bucket_table *tbl = iter->walker->tbl;
f2dba9c6
HX
798 struct rhashtable *ht = iter->ht;
799 struct rhash_head *p = iter->p;
800 void *obj = NULL;
801
f2dba9c6
HX
802 if (p) {
803 p = rht_dereference_bucket_rcu(p->next, tbl, iter->slot);
804 goto next;
805 }
806
807 for (; iter->slot < tbl->size; iter->slot++) {
808 int skip = iter->skip;
809
810 rht_for_each_rcu(p, tbl, iter->slot) {
811 if (!skip)
812 break;
813 skip--;
814 }
815
816next:
817 if (!rht_is_a_nulls(p)) {
818 iter->skip++;
819 iter->p = p;
820 obj = rht_obj(ht, p);
821 goto out;
822 }
823
824 iter->skip = 0;
825 }
826
c4db8848
HX
827 iter->walker->tbl = rht_dereference_rcu(tbl->future_tbl, ht);
828 if (iter->walker->tbl) {
f2dba9c6
HX
829 iter->slot = 0;
830 iter->skip = 0;
f2dba9c6
HX
831 return ERR_PTR(-EAGAIN);
832 }
833
eddee5ba
HX
834 iter->p = NULL;
835
836out:
837
f2dba9c6
HX
838 return obj;
839}
840EXPORT_SYMBOL_GPL(rhashtable_walk_next);
841
842/**
843 * rhashtable_walk_stop - Finish a hash table walk
844 * @iter: Hash table iterator
845 *
846 * Finish a hash table walk.
847 */
848void rhashtable_walk_stop(struct rhashtable_iter *iter)
db4374f4 849 __releases(RCU)
f2dba9c6 850{
eddee5ba
HX
851 struct rhashtable *ht;
852 struct bucket_table *tbl = iter->walker->tbl;
853
eddee5ba 854 if (!tbl)
963ecbd4 855 goto out;
eddee5ba
HX
856
857 ht = iter->ht;
858
859 mutex_lock(&ht->mutex);
c4db8848 860 if (tbl->rehash < tbl->size)
eddee5ba
HX
861 list_add(&iter->walker->list, &tbl->walkers);
862 else
863 iter->walker->tbl = NULL;
864 mutex_unlock(&ht->mutex);
865
f2dba9c6 866 iter->p = NULL;
963ecbd4
HX
867
868out:
869 rcu_read_unlock();
f2dba9c6
HX
870}
871EXPORT_SYMBOL_GPL(rhashtable_walk_stop);
872
488fb86e 873static size_t rounded_hashtable_size(const struct rhashtable_params *params)
7e1e7763 874{
94000176 875 return max(roundup_pow_of_two(params->nelem_hint * 4 / 3),
e2e21c1c 876 (unsigned long)params->min_size);
7e1e7763
TG
877}
878
879/**
880 * rhashtable_init - initialize a new hash table
881 * @ht: hash table to be initialized
882 * @params: configuration parameters
883 *
884 * Initializes a new hash table based on the provided configuration
885 * parameters. A table can be configured either with a variable or
886 * fixed length key:
887 *
888 * Configuration Example 1: Fixed length keys
889 * struct test_obj {
890 * int key;
891 * void * my_member;
892 * struct rhash_head node;
893 * };
894 *
895 * struct rhashtable_params params = {
896 * .head_offset = offsetof(struct test_obj, node),
897 * .key_offset = offsetof(struct test_obj, key),
898 * .key_len = sizeof(int),
87545899 899 * .hashfn = jhash,
f89bd6f8 900 * .nulls_base = (1U << RHT_BASE_SHIFT),
7e1e7763
TG
901 * };
902 *
903 * Configuration Example 2: Variable length keys
904 * struct test_obj {
905 * [...]
906 * struct rhash_head node;
907 * };
908 *
909 * u32 my_hash_fn(const void *data, u32 seed)
910 * {
911 * struct test_obj *obj = data;
912 *
913 * return [... hash ...];
914 * }
915 *
916 * struct rhashtable_params params = {
917 * .head_offset = offsetof(struct test_obj, node),
87545899 918 * .hashfn = jhash,
7e1e7763 919 * .obj_hashfn = my_hash_fn,
7e1e7763
TG
920 * };
921 */
488fb86e
HX
922int rhashtable_init(struct rhashtable *ht,
923 const struct rhashtable_params *params)
7e1e7763
TG
924{
925 struct bucket_table *tbl;
926 size_t size;
927
928 size = HASH_DEFAULT_SIZE;
929
930 if ((params->key_len && !params->hashfn) ||
931 (!params->key_len && !params->obj_hashfn))
932 return -EINVAL;
933
f89bd6f8
TG
934 if (params->nulls_base && params->nulls_base < (1U << RHT_BASE_SHIFT))
935 return -EINVAL;
936
7e1e7763 937 if (params->nelem_hint)
94000176 938 size = rounded_hashtable_size(params);
7e1e7763 939
97defe1e
TG
940 memset(ht, 0, sizeof(*ht));
941 mutex_init(&ht->mutex);
942 memcpy(&ht->p, params, sizeof(*params));
943
a998f712
TG
944 if (params->min_size)
945 ht->p.min_size = roundup_pow_of_two(params->min_size);
946
947 if (params->max_size)
948 ht->p.max_size = rounddown_pow_of_two(params->max_size);
949
488fb86e 950 ht->p.min_size = max(ht->p.min_size, HASH_MIN_SIZE);
a998f712 951
97defe1e
TG
952 if (params->locks_mul)
953 ht->p.locks_mul = roundup_pow_of_two(params->locks_mul);
954 else
955 ht->p.locks_mul = BUCKET_LOCKS_PER_CPU;
956
5269b53d 957 tbl = bucket_table_alloc(ht, size);
7e1e7763
TG
958 if (tbl == NULL)
959 return -ENOMEM;
960
545a148e 961 atomic_set(&ht->nelems, 0);
a5b6846f 962
7e1e7763
TG
963 RCU_INIT_POINTER(ht->tbl, tbl);
964
4c4b52d9 965 INIT_WORK(&ht->run_work, rht_deferred_worker);
97defe1e 966
7e1e7763
TG
967 return 0;
968}
969EXPORT_SYMBOL_GPL(rhashtable_init);
970
971/**
972 * rhashtable_destroy - destroy hash table
973 * @ht: the hash table to destroy
974 *
ae82ddcf
PNA
975 * Frees the bucket array. This function is not rcu safe, therefore the caller
976 * has to make sure that no resizing may happen by unpublishing the hashtable
977 * and waiting for the quiescent cycle before releasing the bucket array.
7e1e7763 978 */
97defe1e 979void rhashtable_destroy(struct rhashtable *ht)
7e1e7763 980{
97defe1e
TG
981 ht->being_destroyed = true;
982
4c4b52d9 983 cancel_work_sync(&ht->run_work);
97defe1e 984
57699a40 985 mutex_lock(&ht->mutex);
97defe1e 986 bucket_table_free(rht_dereference(ht->tbl, ht));
97defe1e 987 mutex_unlock(&ht->mutex);
7e1e7763
TG
988}
989EXPORT_SYMBOL_GPL(rhashtable_destroy);