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