blob: b1c19c5fb326353c67cf82fb8fda7bbc83cd6e40 [file] [log] [blame]
Thomas Graf7e1e7762014-08-02 11:47:44 +02001/*
2 * Resizable, Scalable, Concurrent Hash Table
3 *
Thomas Grafa5ec68e2015-02-05 02:03:32 +01004 * Copyright (c) 2014-2015 Thomas Graf <tgraf@suug.ch>
Thomas Graf7e1e7762014-08-02 11:47:44 +02005 * 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>
Eric Dumazet5beb5c92015-02-26 07:20:34 -080020#include <linux/sched.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020021#include <linux/slab.h>
22#include <linux/vmalloc.h>
23#include <linux/mm.h>
Daniel Borkmann87545892014-12-10 16:33:11 +010024#include <linux/jhash.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020025#include <linux/random.h>
26#include <linux/rhashtable.h>
Stephen Rothwell61d7b092015-02-09 14:04:03 +110027#include <linux/err.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020028
29#define HASH_DEFAULT_SIZE 64UL
30#define HASH_MIN_SIZE 4UL
Thomas Graf97defe12015-01-02 23:00:20 +010031#define BUCKET_LOCKS_PER_CPU 128UL
32
Thomas Graff89bd6f2015-01-02 23:00:21 +010033/* Base bits plus 1 bit for nulls marker */
34#define HASH_RESERVED_SPACE (RHT_BASE_BITS + 1)
35
Thomas Graf97defe12015-01-02 23:00:20 +010036enum {
37 RHT_LOCK_NORMAL,
38 RHT_LOCK_NESTED,
Thomas Graf97defe12015-01-02 23:00:20 +010039};
40
41/* The bucket lock is selected based on the hash and protects mutations
42 * on a group of hash buckets.
43 *
Thomas Grafa5ec68e2015-02-05 02:03:32 +010044 * 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 *
Thomas Graf97defe12015-01-02 23:00:20 +010050 * 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}
Thomas Graf7e1e7762014-08-02 11:47:44 +020058
Thomas Grafc91eee52014-08-13 16:38:30 +020059static void *rht_obj(const struct rhashtable *ht, const struct rhash_head *he)
Thomas Graf7e1e7762014-08-02 11:47:44 +020060{
61 return (void *) he - ht->p.head_offset;
62}
Thomas Graf7e1e7762014-08-02 11:47:44 +020063
Thomas Graf8d24c0b2015-01-02 23:00:14 +010064static u32 rht_bucket_index(const struct bucket_table *tbl, u32 hash)
Thomas Graf7e1e7762014-08-02 11:47:44 +020065{
Thomas Graf8d24c0b2015-01-02 23:00:14 +010066 return hash & (tbl->size - 1);
Thomas Graf7e1e7762014-08-02 11:47:44 +020067}
68
Herbert Xuaa34a6cb02015-03-11 09:43:48 +110069static u32 obj_raw_hashfn(struct rhashtable *ht,
70 const struct bucket_table *tbl, const void *ptr)
Thomas Graf8d24c0b2015-01-02 23:00:14 +010071{
72 u32 hash;
73
74 if (unlikely(!ht->p.key_len))
Herbert Xu988dfbd2015-03-10 09:27:55 +110075 hash = ht->p.obj_hashfn(ptr, tbl->hash_rnd);
Thomas Graf8d24c0b2015-01-02 23:00:14 +010076 else
77 hash = ht->p.hashfn(ptr + ht->p.key_offset, ht->p.key_len,
Herbert Xu988dfbd2015-03-10 09:27:55 +110078 tbl->hash_rnd);
Thomas Graf8d24c0b2015-01-02 23:00:14 +010079
Thomas Graff89bd6f2015-01-02 23:00:21 +010080 return hash >> HASH_RESERVED_SPACE;
Thomas Graf8d24c0b2015-01-02 23:00:14 +010081}
82
Herbert Xuaa34a6cb02015-03-11 09:43:48 +110083static u32 key_hashfn(struct rhashtable *ht, const struct bucket_table *tbl,
84 const void *key, u32 len)
Thomas Graf7e1e7762014-08-02 11:47:44 +020085{
Herbert Xu988dfbd2015-03-10 09:27:55 +110086 return ht->p.hashfn(key, len, tbl->hash_rnd) >> HASH_RESERVED_SPACE;
Thomas Graf7e1e7762014-08-02 11:47:44 +020087}
Thomas Graf7e1e7762014-08-02 11:47:44 +020088
Herbert Xu988dfbd2015-03-10 09:27:55 +110089static u32 head_hashfn(struct rhashtable *ht,
Thomas Graf8d24c0b2015-01-02 23:00:14 +010090 const struct bucket_table *tbl,
91 const struct rhash_head *he)
Thomas Graf7e1e7762014-08-02 11:47:44 +020092{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +110093 return rht_bucket_index(tbl, obj_raw_hashfn(ht, tbl, rht_obj(ht, he)));
Thomas Graf7e1e7762014-08-02 11:47:44 +020094}
95
Thomas Grafa03eaec2015-02-05 02:03:34 +010096#ifdef CONFIG_PROVE_LOCKING
Thomas Grafa03eaec2015-02-05 02:03:34 +010097#define ASSERT_RHT_MUTEX(HT) BUG_ON(!lockdep_rht_mutex_is_held(HT))
Thomas Grafa03eaec2015-02-05 02:03:34 +010098
99int lockdep_rht_mutex_is_held(struct rhashtable *ht)
100{
101 return (debug_locks) ? lockdep_is_held(&ht->mutex) : 1;
102}
103EXPORT_SYMBOL_GPL(lockdep_rht_mutex_is_held);
104
105int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash)
106{
107 spinlock_t *lock = bucket_lock(tbl, hash);
108
109 return (debug_locks) ? lockdep_is_held(lock) : 1;
110}
111EXPORT_SYMBOL_GPL(lockdep_rht_bucket_is_held);
112#else
113#define ASSERT_RHT_MUTEX(HT)
Thomas Grafa03eaec2015-02-05 02:03:34 +0100114#endif
115
116
Thomas Graf97defe12015-01-02 23:00:20 +0100117static int alloc_bucket_locks(struct rhashtable *ht, struct bucket_table *tbl)
118{
119 unsigned int i, size;
120#if defined(CONFIG_PROVE_LOCKING)
121 unsigned int nr_pcpus = 2;
122#else
123 unsigned int nr_pcpus = num_possible_cpus();
124#endif
125
126 nr_pcpus = min_t(unsigned int, nr_pcpus, 32UL);
127 size = roundup_pow_of_two(nr_pcpus * ht->p.locks_mul);
128
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100129 /* Never allocate more than 0.5 locks per bucket */
130 size = min_t(unsigned int, size, tbl->size >> 1);
Thomas Graf97defe12015-01-02 23:00:20 +0100131
132 if (sizeof(spinlock_t) != 0) {
133#ifdef CONFIG_NUMA
134 if (size * sizeof(spinlock_t) > PAGE_SIZE)
135 tbl->locks = vmalloc(size * sizeof(spinlock_t));
136 else
137#endif
138 tbl->locks = kmalloc_array(size, sizeof(spinlock_t),
139 GFP_KERNEL);
140 if (!tbl->locks)
141 return -ENOMEM;
142 for (i = 0; i < size; i++)
143 spin_lock_init(&tbl->locks[i]);
144 }
145 tbl->locks_mask = size - 1;
146
147 return 0;
148}
149
150static void bucket_table_free(const struct bucket_table *tbl)
151{
152 if (tbl)
153 kvfree(tbl->locks);
154
155 kvfree(tbl);
156}
157
158static struct bucket_table *bucket_table_alloc(struct rhashtable *ht,
159 size_t nbuckets)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200160{
Daniel Borkmanneb6d1ab2015-02-20 00:53:38 +0100161 struct bucket_table *tbl = NULL;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200162 size_t size;
Thomas Graff89bd6f2015-01-02 23:00:21 +0100163 int i;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200164
165 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]);
Daniel Borkmanneb6d1ab2015-02-20 00:53:38 +0100166 if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER))
167 tbl = kzalloc(size, GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200168 if (tbl == NULL)
169 tbl = vzalloc(size);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200170 if (tbl == NULL)
171 return NULL;
172
173 tbl->size = nbuckets;
174
Thomas Graf97defe12015-01-02 23:00:20 +0100175 if (alloc_bucket_locks(ht, tbl) < 0) {
176 bucket_table_free(tbl);
177 return NULL;
178 }
Thomas Graf7e1e7762014-08-02 11:47:44 +0200179
Thomas Graff89bd6f2015-01-02 23:00:21 +0100180 for (i = 0; i < nbuckets; i++)
181 INIT_RHT_NULLS_HEAD(tbl->buckets[i], ht, i);
182
Thomas Graf97defe12015-01-02 23:00:20 +0100183 return tbl;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200184}
185
186/**
187 * rht_grow_above_75 - returns true if nelems > 0.75 * table-size
188 * @ht: hash table
189 * @new_size: new table size
190 */
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100191static bool rht_grow_above_75(const struct rhashtable *ht, size_t new_size)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200192{
193 /* Expand table when exceeding 75% load */
Ying Xuec0c09bf2015-01-07 13:41:56 +0800194 return atomic_read(&ht->nelems) > (new_size / 4 * 3) &&
Daniel Borkmann8331de72015-02-25 16:31:53 +0100195 (!ht->p.max_shift || atomic_read(&ht->shift) < ht->p.max_shift);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200196}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200197
198/**
199 * rht_shrink_below_30 - returns true if nelems < 0.3 * table-size
200 * @ht: hash table
201 * @new_size: new table size
202 */
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100203static bool rht_shrink_below_30(const struct rhashtable *ht, size_t new_size)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200204{
205 /* Shrink table beneath 30% load */
Ying Xuec0c09bf2015-01-07 13:41:56 +0800206 return atomic_read(&ht->nelems) < (new_size * 3 / 10) &&
207 (atomic_read(&ht->shift) > ht->p.min_shift);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200208}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200209
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100210static int rhashtable_rehash_one(struct rhashtable *ht, unsigned old_hash)
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100211{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100212 struct bucket_table *new_tbl = rht_dereference(ht->future_tbl, ht);
213 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
214 struct rhash_head __rcu **pprev = &old_tbl->buckets[old_hash];
215 int err = -ENOENT;
216 struct rhash_head *head, *next, *entry;
217 spinlock_t *new_bucket_lock;
218 unsigned new_hash;
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100219
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100220 rht_for_each(entry, old_tbl, old_hash) {
221 err = 0;
222 next = rht_dereference_bucket(entry->next, old_tbl, old_hash);
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100223
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100224 if (rht_is_a_nulls(next))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200225 break;
Thomas Graf97defe12015-01-02 23:00:20 +0100226
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100227 pprev = &entry->next;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200228 }
229
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100230 if (err)
231 goto out;
Thomas Graf97defe12015-01-02 23:00:20 +0100232
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100233 new_hash = head_hashfn(ht, new_tbl, entry);
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100234
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100235 new_bucket_lock = bucket_lock(new_tbl, new_hash);
236
237 spin_lock(new_bucket_lock);
238 head = rht_dereference_bucket(new_tbl->buckets[new_hash],
239 new_tbl, new_hash);
240
241 if (rht_is_a_nulls(head))
242 INIT_RHT_NULLS_HEAD(entry->next, ht, new_hash);
243 else
244 RCU_INIT_POINTER(entry->next, head);
245
246 rcu_assign_pointer(new_tbl->buckets[new_hash], entry);
247 spin_unlock(new_bucket_lock);
248
249 rcu_assign_pointer(*pprev, next);
250
251out:
252 return err;
Thomas Graf97defe12015-01-02 23:00:20 +0100253}
254
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100255static void rhashtable_rehash_chain(struct rhashtable *ht, unsigned old_hash)
Thomas Graf97defe12015-01-02 23:00:20 +0100256{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100257 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
258 spinlock_t *old_bucket_lock;
Thomas Graf7cd10db2015-02-05 02:03:35 +0100259
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100260 old_bucket_lock = bucket_lock(old_tbl, old_hash);
261
262 spin_lock_bh(old_bucket_lock);
263 while (!rhashtable_rehash_one(ht, old_hash))
264 ;
265 spin_unlock_bh(old_bucket_lock);
266}
267
268static void rhashtable_rehash(struct rhashtable *ht,
269 struct bucket_table *new_tbl)
270{
271 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
272 unsigned old_hash;
273
274 get_random_bytes(&new_tbl->hash_rnd, sizeof(new_tbl->hash_rnd));
275
276 /* Make insertions go into the new, empty table right away. Deletions
277 * and lookups will be attempted in both tables until we synchronize.
278 * The synchronize_rcu() guarantees for the new table to be picked up
279 * so no new additions go into the old table while we relink.
280 */
281 rcu_assign_pointer(ht->future_tbl, new_tbl);
282
283 for (old_hash = 0; old_hash < old_tbl->size; old_hash++)
284 rhashtable_rehash_chain(ht, old_hash);
285
286 /* Publish the new table pointer. */
287 rcu_assign_pointer(ht->tbl, new_tbl);
288
289 /* Wait for readers. All new readers will see the new
290 * table, and thus no references to the old table will
291 * remain.
292 */
293 synchronize_rcu();
294
295 bucket_table_free(old_tbl);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200296}
297
298/**
299 * rhashtable_expand - Expand hash table while allowing concurrent lookups
300 * @ht: the hash table to expand
Thomas Graf7e1e7762014-08-02 11:47:44 +0200301 *
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100302 * A secondary bucket array is allocated and the hash entries are migrated.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200303 *
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 *
Thomas Graf97defe12015-01-02 23:00:20 +0100307 * 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.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200312 */
Thomas Graf6eba8222014-11-13 13:45:46 +0100313int rhashtable_expand(struct rhashtable *ht)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200314{
315 struct bucket_table *new_tbl, *old_tbl = rht_dereference(ht->tbl, ht);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200316
317 ASSERT_RHT_MUTEX(ht);
318
Thomas Graf97defe12015-01-02 23:00:20 +0100319 new_tbl = bucket_table_alloc(ht, old_tbl->size * 2);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200320 if (new_tbl == NULL)
321 return -ENOMEM;
322
Herbert Xu988dfbd2015-03-10 09:27:55 +1100323 new_tbl->hash_rnd = old_tbl->hash_rnd;
324
Ying Xuec0c09bf2015-01-07 13:41:56 +0800325 atomic_inc(&ht->shift);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200326
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100327 rhashtable_rehash(ht, new_tbl);
Thomas Graf97defe12015-01-02 23:00:20 +0100328
Thomas Graf7e1e7762014-08-02 11:47:44 +0200329 return 0;
330}
331EXPORT_SYMBOL_GPL(rhashtable_expand);
332
333/**
334 * rhashtable_shrink - Shrink hash table while allowing concurrent lookups
335 * @ht: the hash table to shrink
Thomas Graf7e1e7762014-08-02 11:47:44 +0200336 *
337 * This function may only be called in a context where it is safe to call
338 * synchronize_rcu(), e.g. not within a rcu_read_lock() section.
339 *
Thomas Graf97defe12015-01-02 23:00:20 +0100340 * The caller must ensure that no concurrent resizing occurs by holding
341 * ht->mutex.
342 *
Thomas Graf7e1e7762014-08-02 11:47:44 +0200343 * The caller must ensure that no concurrent table mutations take place.
344 * It is however valid to have concurrent lookups if they are RCU protected.
Thomas Graf97defe12015-01-02 23:00:20 +0100345 *
346 * It is valid to have concurrent insertions and deletions protected by per
347 * bucket locks or concurrent RCU protected lookups and traversals.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200348 */
Thomas Graf6eba8222014-11-13 13:45:46 +0100349int rhashtable_shrink(struct rhashtable *ht)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200350{
Thomas Graf97defe12015-01-02 23:00:20 +0100351 struct bucket_table *new_tbl, *tbl = rht_dereference(ht->tbl, ht);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200352
353 ASSERT_RHT_MUTEX(ht);
354
Thomas Graf97defe12015-01-02 23:00:20 +0100355 new_tbl = bucket_table_alloc(ht, tbl->size / 2);
356 if (new_tbl == NULL)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200357 return -ENOMEM;
358
Herbert Xu988dfbd2015-03-10 09:27:55 +1100359 new_tbl->hash_rnd = tbl->hash_rnd;
360
Ying Xuec0c09bf2015-01-07 13:41:56 +0800361 atomic_dec(&ht->shift);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200362
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100363 rhashtable_rehash(ht, new_tbl);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200364
365 return 0;
366}
367EXPORT_SYMBOL_GPL(rhashtable_shrink);
368
Thomas Graf97defe12015-01-02 23:00:20 +0100369static void rht_deferred_worker(struct work_struct *work)
370{
371 struct rhashtable *ht;
372 struct bucket_table *tbl;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100373 struct rhashtable_walker *walker;
Thomas Graf97defe12015-01-02 23:00:20 +0100374
Ying Xue57699a42015-01-16 11:13:09 +0800375 ht = container_of(work, struct rhashtable, run_work);
Thomas Graf97defe12015-01-02 23:00:20 +0100376 mutex_lock(&ht->mutex);
Herbert Xu28134a52015-02-04 07:33:22 +1100377 if (ht->being_destroyed)
378 goto unlock;
379
Thomas Graf97defe12015-01-02 23:00:20 +0100380 tbl = rht_dereference(ht->tbl, ht);
381
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100382 list_for_each_entry(walker, &ht->walkers, list)
383 walker->resize = true;
384
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100385 if (rht_grow_above_75(ht, tbl->size))
Thomas Graf97defe12015-01-02 23:00:20 +0100386 rhashtable_expand(ht);
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100387 else if (rht_shrink_below_30(ht, tbl->size))
Thomas Graf97defe12015-01-02 23:00:20 +0100388 rhashtable_shrink(ht);
Herbert Xu28134a52015-02-04 07:33:22 +1100389unlock:
Thomas Graf97defe12015-01-02 23:00:20 +0100390 mutex_unlock(&ht->mutex);
391}
392
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100393static bool __rhashtable_insert(struct rhashtable *ht, struct rhash_head *obj,
394 bool (*compare)(void *, void *), void *arg)
Ying Xuedb304852015-01-07 13:41:54 +0800395{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100396 struct bucket_table *tbl, *old_tbl;
Thomas Graf020219a2015-02-06 16:08:43 +0000397 struct rhash_head *head;
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100398 bool no_resize_running;
399 unsigned hash;
400 bool success = true;
401
402 rcu_read_lock();
403
404 old_tbl = rht_dereference_rcu(ht->tbl, ht);
405 hash = obj_raw_hashfn(ht, old_tbl, rht_obj(ht, obj));
406
407 spin_lock_bh(bucket_lock(old_tbl, hash));
408
409 /* Because we have already taken the bucket lock in old_tbl,
410 * if we find that future_tbl is not yet visible then that
411 * guarantees all other insertions of the same entry will
412 * also grab the bucket lock in old_tbl because until the
413 * rehash completes ht->tbl won't be changed.
414 */
415 tbl = rht_dereference_rcu(ht->future_tbl, ht);
416 if (tbl != old_tbl) {
417 hash = obj_raw_hashfn(ht, tbl, rht_obj(ht, obj));
418 spin_lock(bucket_lock(tbl, hash));
419 }
420
421 if (compare &&
422 rhashtable_lookup_compare(ht, rht_obj(ht, obj) + ht->p.key_offset,
423 compare, arg)) {
424 success = false;
425 goto exit;
426 }
427
428 no_resize_running = tbl == old_tbl;
Thomas Graf020219a2015-02-06 16:08:43 +0000429
430 hash = rht_bucket_index(tbl, hash);
431 head = rht_dereference_bucket(tbl->buckets[hash], tbl, hash);
Ying Xuedb304852015-01-07 13:41:54 +0800432
433 if (rht_is_a_nulls(head))
434 INIT_RHT_NULLS_HEAD(obj->next, ht, hash);
435 else
436 RCU_INIT_POINTER(obj->next, head);
437
438 rcu_assign_pointer(tbl->buckets[hash], obj);
439
440 atomic_inc(&ht->nelems);
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100441 if (no_resize_running && rht_grow_above_75(ht, tbl->size))
442 schedule_work(&ht->run_work);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100443
444exit:
445 if (tbl != old_tbl) {
446 hash = obj_raw_hashfn(ht, tbl, rht_obj(ht, obj));
447 spin_unlock(bucket_lock(tbl, hash));
448 }
449
450 hash = obj_raw_hashfn(ht, old_tbl, rht_obj(ht, obj));
451 spin_unlock_bh(bucket_lock(old_tbl, hash));
452
453 rcu_read_unlock();
454
455 return success;
Ying Xuedb304852015-01-07 13:41:54 +0800456}
457
Thomas Graf7e1e7762014-08-02 11:47:44 +0200458/**
Ying Xuedb304852015-01-07 13:41:54 +0800459 * rhashtable_insert - insert object into hash table
Thomas Graf7e1e7762014-08-02 11:47:44 +0200460 * @ht: hash table
461 * @obj: pointer to hash head inside object
Thomas Graf7e1e7762014-08-02 11:47:44 +0200462 *
Thomas Graf97defe12015-01-02 23:00:20 +0100463 * Will take a per bucket spinlock to protect against mutual mutations
464 * on the same bucket. Multiple insertions may occur in parallel unless
465 * they map to the same bucket lock.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200466 *
Thomas Graf97defe12015-01-02 23:00:20 +0100467 * It is safe to call this function from atomic context.
468 *
469 * Will trigger an automatic deferred table resizing if the size grows
470 * beyond the watermark indicated by grow_decision() which can be passed
471 * to rhashtable_init().
Thomas Graf7e1e7762014-08-02 11:47:44 +0200472 */
Thomas Graf6eba8222014-11-13 13:45:46 +0100473void rhashtable_insert(struct rhashtable *ht, struct rhash_head *obj)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200474{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100475 __rhashtable_insert(ht, obj, NULL, NULL);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200476}
477EXPORT_SYMBOL_GPL(rhashtable_insert);
478
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100479static bool __rhashtable_remove(struct rhashtable *ht,
480 struct bucket_table *tbl,
481 struct rhash_head *obj)
482{
483 struct rhash_head __rcu **pprev;
484 struct rhash_head *he;
485 spinlock_t * lock;
486 unsigned hash;
487 bool ret = false;
488
489 hash = obj_raw_hashfn(ht, tbl, rht_obj(ht, obj));
490 lock = bucket_lock(tbl, hash);
491 hash = rht_bucket_index(tbl, hash);
492
493 spin_lock_bh(lock);
494
495 pprev = &tbl->buckets[hash];
496 rht_for_each(he, tbl, hash) {
497 if (he != obj) {
498 pprev = &he->next;
499 continue;
500 }
501
502 rcu_assign_pointer(*pprev, obj->next);
503 ret = true;
504 break;
505 }
506
507 spin_unlock_bh(lock);
508
509 return ret;
510}
511
Thomas Graf7e1e7762014-08-02 11:47:44 +0200512/**
Thomas Graf7e1e7762014-08-02 11:47:44 +0200513 * rhashtable_remove - remove object from hash table
514 * @ht: hash table
515 * @obj: pointer to hash head inside object
Thomas Graf7e1e7762014-08-02 11:47:44 +0200516 *
517 * Since the hash chain is single linked, the removal operation needs to
518 * walk the bucket chain upon removal. The removal operation is thus
519 * considerable slow if the hash table is not correctly sized.
520 *
Ying Xuedb304852015-01-07 13:41:54 +0800521 * Will automatically shrink the table via rhashtable_expand() if the
Thomas Graf7e1e7762014-08-02 11:47:44 +0200522 * shrink_decision function specified at rhashtable_init() returns true.
523 *
524 * The caller must ensure that no concurrent table mutations occur. It is
525 * however valid to have concurrent lookups if they are RCU protected.
526 */
Thomas Graf6eba8222014-11-13 13:45:46 +0100527bool rhashtable_remove(struct rhashtable *ht, struct rhash_head *obj)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200528{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100529 struct bucket_table *tbl, *old_tbl;
530 bool ret;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200531
Thomas Graf97defe12015-01-02 23:00:20 +0100532 rcu_read_lock();
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100533
Thomas Graf020219a2015-02-06 16:08:43 +0000534 old_tbl = rht_dereference_rcu(ht->tbl, ht);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100535 ret = __rhashtable_remove(ht, old_tbl, obj);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200536
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100537 /* Because we have already taken (and released) the bucket
538 * lock in old_tbl, if we find that future_tbl is not yet
539 * visible then that guarantees the entry to still be in
540 * old_tbl if it exists.
Thomas Graffe6a0432015-01-21 11:54:01 +0000541 */
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100542 tbl = rht_dereference_rcu(ht->future_tbl, ht);
543 if (!ret && old_tbl != tbl)
544 ret = __rhashtable_remove(ht, tbl, obj);
Thomas Graffe6a0432015-01-21 11:54:01 +0000545
546 if (ret) {
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100547 bool no_resize_running = tbl == old_tbl;
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100548
Thomas Graffe6a0432015-01-21 11:54:01 +0000549 atomic_dec(&ht->nelems);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100550 if (no_resize_running && rht_shrink_below_30(ht, tbl->size))
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100551 schedule_work(&ht->run_work);
Thomas Graffe6a0432015-01-21 11:54:01 +0000552 }
553
Thomas Graf97defe12015-01-02 23:00:20 +0100554 rcu_read_unlock();
555
Thomas Graffe6a0432015-01-21 11:54:01 +0000556 return ret;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200557}
558EXPORT_SYMBOL_GPL(rhashtable_remove);
559
Ying Xueefb975a62015-01-07 13:41:52 +0800560struct rhashtable_compare_arg {
561 struct rhashtable *ht;
562 const void *key;
563};
564
565static bool rhashtable_compare(void *ptr, void *arg)
566{
567 struct rhashtable_compare_arg *x = arg;
568 struct rhashtable *ht = x->ht;
569
570 return !memcmp(ptr + ht->p.key_offset, x->key, ht->p.key_len);
571}
572
Thomas Graf7e1e7762014-08-02 11:47:44 +0200573/**
574 * rhashtable_lookup - lookup key in hash table
575 * @ht: hash table
576 * @key: pointer to key
577 *
578 * Computes the hash value for the key and traverses the bucket chain looking
579 * for a entry with an identical key. The first matching entry is returned.
580 *
581 * This lookup function may only be used for fixed key hash table (key_len
Ying Xuedb304852015-01-07 13:41:54 +0800582 * parameter set). It will BUG() if used inappropriately.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200583 *
Thomas Graf97defe12015-01-02 23:00:20 +0100584 * Lookups may occur in parallel with hashtable mutations and resizing.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200585 */
Thomas Graf97defe12015-01-02 23:00:20 +0100586void *rhashtable_lookup(struct rhashtable *ht, const void *key)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200587{
Ying Xueefb975a62015-01-07 13:41:52 +0800588 struct rhashtable_compare_arg arg = {
589 .ht = ht,
590 .key = key,
591 };
Thomas Graf7e1e7762014-08-02 11:47:44 +0200592
593 BUG_ON(!ht->p.key_len);
594
Ying Xueefb975a62015-01-07 13:41:52 +0800595 return rhashtable_lookup_compare(ht, key, &rhashtable_compare, &arg);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200596}
597EXPORT_SYMBOL_GPL(rhashtable_lookup);
598
599/**
600 * rhashtable_lookup_compare - search hash table with compare function
601 * @ht: hash table
Thomas Graf8d24c0b2015-01-02 23:00:14 +0100602 * @key: the pointer to the key
Thomas Graf7e1e7762014-08-02 11:47:44 +0200603 * @compare: compare function, must return true on match
604 * @arg: argument passed on to compare function
605 *
606 * Traverses the bucket chain behind the provided hash value and calls the
607 * specified compare function for each entry.
608 *
Thomas Graf97defe12015-01-02 23:00:20 +0100609 * Lookups may occur in parallel with hashtable mutations and resizing.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200610 *
611 * Returns the first entry on which the compare function returned true.
612 */
Thomas Graf97defe12015-01-02 23:00:20 +0100613void *rhashtable_lookup_compare(struct rhashtable *ht, const void *key,
Thomas Graf7e1e7762014-08-02 11:47:44 +0200614 bool (*compare)(void *, void *), void *arg)
615{
Thomas Graf97defe12015-01-02 23:00:20 +0100616 const struct bucket_table *tbl, *old_tbl;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200617 struct rhash_head *he;
Thomas Graf8d24c0b2015-01-02 23:00:14 +0100618 u32 hash;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200619
Thomas Graf97defe12015-01-02 23:00:20 +0100620 rcu_read_lock();
621
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100622 tbl = rht_dereference_rcu(ht->tbl, ht);
623 hash = key_hashfn(ht, tbl, key, ht->p.key_len);
Thomas Graf97defe12015-01-02 23:00:20 +0100624restart:
625 rht_for_each_rcu(he, tbl, rht_bucket_index(tbl, hash)) {
Thomas Graf7e1e7762014-08-02 11:47:44 +0200626 if (!compare(rht_obj(ht, he), arg))
627 continue;
Thomas Graf97defe12015-01-02 23:00:20 +0100628 rcu_read_unlock();
Thomas Grafa4b18cd2015-01-02 23:00:15 +0100629 return rht_obj(ht, he);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200630 }
631
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100632 old_tbl = tbl;
633 tbl = rht_dereference_rcu(ht->future_tbl, ht);
634 if (unlikely(tbl != old_tbl))
Thomas Graf97defe12015-01-02 23:00:20 +0100635 goto restart;
Thomas Graf97defe12015-01-02 23:00:20 +0100636 rcu_read_unlock();
637
Thomas Graf7e1e7762014-08-02 11:47:44 +0200638 return NULL;
639}
640EXPORT_SYMBOL_GPL(rhashtable_lookup_compare);
641
Ying Xuedb304852015-01-07 13:41:54 +0800642/**
643 * rhashtable_lookup_insert - lookup and insert object into hash table
644 * @ht: hash table
645 * @obj: pointer to hash head inside object
646 *
647 * Locks down the bucket chain in both the old and new table if a resize
648 * is in progress to ensure that writers can't remove from the old table
649 * and can't insert to the new table during the atomic operation of search
650 * and insertion. Searches for duplicates in both the old and new table if
651 * a resize is in progress.
652 *
653 * This lookup function may only be used for fixed key hash table (key_len
654 * parameter set). It will BUG() if used inappropriately.
655 *
656 * It is safe to call this function from atomic context.
657 *
658 * Will trigger an automatic deferred table resizing if the size grows
659 * beyond the watermark indicated by grow_decision() which can be passed
660 * to rhashtable_init().
661 */
662bool rhashtable_lookup_insert(struct rhashtable *ht, struct rhash_head *obj)
663{
Ying Xue7a868d12015-01-12 14:52:22 +0800664 struct rhashtable_compare_arg arg = {
665 .ht = ht,
666 .key = rht_obj(ht, obj) + ht->p.key_offset,
667 };
668
669 BUG_ON(!ht->p.key_len);
670
671 return rhashtable_lookup_compare_insert(ht, obj, &rhashtable_compare,
672 &arg);
673}
674EXPORT_SYMBOL_GPL(rhashtable_lookup_insert);
675
676/**
677 * rhashtable_lookup_compare_insert - search and insert object to hash table
678 * with compare function
679 * @ht: hash table
680 * @obj: pointer to hash head inside object
681 * @compare: compare function, must return true on match
682 * @arg: argument passed on to compare function
683 *
684 * Locks down the bucket chain in both the old and new table if a resize
685 * is in progress to ensure that writers can't remove from the old table
686 * and can't insert to the new table during the atomic operation of search
687 * and insertion. Searches for duplicates in both the old and new table if
688 * a resize is in progress.
689 *
690 * Lookups may occur in parallel with hashtable mutations and resizing.
691 *
692 * Will trigger an automatic deferred table resizing if the size grows
693 * beyond the watermark indicated by grow_decision() which can be passed
694 * to rhashtable_init().
695 */
696bool rhashtable_lookup_compare_insert(struct rhashtable *ht,
697 struct rhash_head *obj,
698 bool (*compare)(void *, void *),
699 void *arg)
700{
Ying Xuedb304852015-01-07 13:41:54 +0800701 BUG_ON(!ht->p.key_len);
702
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100703 return __rhashtable_insert(ht, obj, compare, arg);
Ying Xuedb304852015-01-07 13:41:54 +0800704}
Ying Xue7a868d12015-01-12 14:52:22 +0800705EXPORT_SYMBOL_GPL(rhashtable_lookup_compare_insert);
Ying Xuedb304852015-01-07 13:41:54 +0800706
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100707/**
708 * rhashtable_walk_init - Initialise an iterator
709 * @ht: Table to walk over
710 * @iter: Hash table Iterator
711 *
712 * This function prepares a hash table walk.
713 *
714 * Note that if you restart a walk after rhashtable_walk_stop you
715 * may see the same object twice. Also, you may miss objects if
716 * there are removals in between rhashtable_walk_stop and the next
717 * call to rhashtable_walk_start.
718 *
719 * For a completely stable walk you should construct your own data
720 * structure outside the hash table.
721 *
722 * This function may sleep so you must not call it from interrupt
723 * context or with spin locks held.
724 *
725 * You must call rhashtable_walk_exit if this function returns
726 * successfully.
727 */
728int rhashtable_walk_init(struct rhashtable *ht, struct rhashtable_iter *iter)
729{
730 iter->ht = ht;
731 iter->p = NULL;
732 iter->slot = 0;
733 iter->skip = 0;
734
735 iter->walker = kmalloc(sizeof(*iter->walker), GFP_KERNEL);
736 if (!iter->walker)
737 return -ENOMEM;
738
Sasha Levin71bb0012015-02-23 04:35:06 -0500739 INIT_LIST_HEAD(&iter->walker->list);
740 iter->walker->resize = false;
741
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100742 mutex_lock(&ht->mutex);
743 list_add(&iter->walker->list, &ht->walkers);
744 mutex_unlock(&ht->mutex);
745
746 return 0;
747}
748EXPORT_SYMBOL_GPL(rhashtable_walk_init);
749
750/**
751 * rhashtable_walk_exit - Free an iterator
752 * @iter: Hash table Iterator
753 *
754 * This function frees resources allocated by rhashtable_walk_init.
755 */
756void rhashtable_walk_exit(struct rhashtable_iter *iter)
757{
758 mutex_lock(&iter->ht->mutex);
759 list_del(&iter->walker->list);
760 mutex_unlock(&iter->ht->mutex);
761 kfree(iter->walker);
762}
763EXPORT_SYMBOL_GPL(rhashtable_walk_exit);
764
765/**
766 * rhashtable_walk_start - Start a hash table walk
767 * @iter: Hash table iterator
768 *
769 * Start a hash table walk. Note that we take the RCU lock in all
770 * cases including when we return an error. So you must always call
771 * rhashtable_walk_stop to clean up.
772 *
773 * Returns zero if successful.
774 *
775 * Returns -EAGAIN if resize event occured. Note that the iterator
776 * will rewind back to the beginning and you may use it immediately
777 * by calling rhashtable_walk_next.
778 */
779int rhashtable_walk_start(struct rhashtable_iter *iter)
780{
781 rcu_read_lock();
782
783 if (iter->walker->resize) {
784 iter->slot = 0;
785 iter->skip = 0;
786 iter->walker->resize = false;
787 return -EAGAIN;
788 }
789
790 return 0;
791}
792EXPORT_SYMBOL_GPL(rhashtable_walk_start);
793
794/**
795 * rhashtable_walk_next - Return the next object and advance the iterator
796 * @iter: Hash table iterator
797 *
798 * Note that you must call rhashtable_walk_stop when you are finished
799 * with the walk.
800 *
801 * Returns the next object or NULL when the end of the table is reached.
802 *
803 * Returns -EAGAIN if resize event occured. Note that the iterator
804 * will rewind back to the beginning and you may continue to use it.
805 */
806void *rhashtable_walk_next(struct rhashtable_iter *iter)
807{
808 const struct bucket_table *tbl;
809 struct rhashtable *ht = iter->ht;
810 struct rhash_head *p = iter->p;
811 void *obj = NULL;
812
813 tbl = rht_dereference_rcu(ht->tbl, ht);
814
815 if (p) {
816 p = rht_dereference_bucket_rcu(p->next, tbl, iter->slot);
817 goto next;
818 }
819
820 for (; iter->slot < tbl->size; iter->slot++) {
821 int skip = iter->skip;
822
823 rht_for_each_rcu(p, tbl, iter->slot) {
824 if (!skip)
825 break;
826 skip--;
827 }
828
829next:
830 if (!rht_is_a_nulls(p)) {
831 iter->skip++;
832 iter->p = p;
833 obj = rht_obj(ht, p);
834 goto out;
835 }
836
837 iter->skip = 0;
838 }
839
840 iter->p = NULL;
841
842out:
843 if (iter->walker->resize) {
844 iter->p = NULL;
845 iter->slot = 0;
846 iter->skip = 0;
847 iter->walker->resize = false;
848 return ERR_PTR(-EAGAIN);
849 }
850
851 return obj;
852}
853EXPORT_SYMBOL_GPL(rhashtable_walk_next);
854
855/**
856 * rhashtable_walk_stop - Finish a hash table walk
857 * @iter: Hash table iterator
858 *
859 * Finish a hash table walk.
860 */
861void rhashtable_walk_stop(struct rhashtable_iter *iter)
862{
863 rcu_read_unlock();
864 iter->p = NULL;
865}
866EXPORT_SYMBOL_GPL(rhashtable_walk_stop);
867
Ying Xue94000172014-09-03 09:22:36 +0800868static size_t rounded_hashtable_size(struct rhashtable_params *params)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200869{
Ying Xue94000172014-09-03 09:22:36 +0800870 return max(roundup_pow_of_two(params->nelem_hint * 4 / 3),
871 1UL << params->min_shift);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200872}
873
874/**
875 * rhashtable_init - initialize a new hash table
876 * @ht: hash table to be initialized
877 * @params: configuration parameters
878 *
879 * Initializes a new hash table based on the provided configuration
880 * parameters. A table can be configured either with a variable or
881 * fixed length key:
882 *
883 * Configuration Example 1: Fixed length keys
884 * struct test_obj {
885 * int key;
886 * void * my_member;
887 * struct rhash_head node;
888 * };
889 *
890 * struct rhashtable_params params = {
891 * .head_offset = offsetof(struct test_obj, node),
892 * .key_offset = offsetof(struct test_obj, key),
893 * .key_len = sizeof(int),
Daniel Borkmann87545892014-12-10 16:33:11 +0100894 * .hashfn = jhash,
Thomas Graff89bd6f2015-01-02 23:00:21 +0100895 * .nulls_base = (1U << RHT_BASE_SHIFT),
Thomas Graf7e1e7762014-08-02 11:47:44 +0200896 * };
897 *
898 * Configuration Example 2: Variable length keys
899 * struct test_obj {
900 * [...]
901 * struct rhash_head node;
902 * };
903 *
904 * u32 my_hash_fn(const void *data, u32 seed)
905 * {
906 * struct test_obj *obj = data;
907 *
908 * return [... hash ...];
909 * }
910 *
911 * struct rhashtable_params params = {
912 * .head_offset = offsetof(struct test_obj, node),
Daniel Borkmann87545892014-12-10 16:33:11 +0100913 * .hashfn = jhash,
Thomas Graf7e1e7762014-08-02 11:47:44 +0200914 * .obj_hashfn = my_hash_fn,
Thomas Graf7e1e7762014-08-02 11:47:44 +0200915 * };
916 */
917int rhashtable_init(struct rhashtable *ht, struct rhashtable_params *params)
918{
919 struct bucket_table *tbl;
920 size_t size;
921
922 size = HASH_DEFAULT_SIZE;
923
924 if ((params->key_len && !params->hashfn) ||
925 (!params->key_len && !params->obj_hashfn))
926 return -EINVAL;
927
Thomas Graff89bd6f2015-01-02 23:00:21 +0100928 if (params->nulls_base && params->nulls_base < (1U << RHT_BASE_SHIFT))
929 return -EINVAL;
930
Ying Xue94000172014-09-03 09:22:36 +0800931 params->min_shift = max_t(size_t, params->min_shift,
932 ilog2(HASH_MIN_SIZE));
933
Thomas Graf7e1e7762014-08-02 11:47:44 +0200934 if (params->nelem_hint)
Ying Xue94000172014-09-03 09:22:36 +0800935 size = rounded_hashtable_size(params);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200936
Thomas Graf97defe12015-01-02 23:00:20 +0100937 memset(ht, 0, sizeof(*ht));
938 mutex_init(&ht->mutex);
939 memcpy(&ht->p, params, sizeof(*params));
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100940 INIT_LIST_HEAD(&ht->walkers);
Thomas Graf97defe12015-01-02 23:00:20 +0100941
942 if (params->locks_mul)
943 ht->p.locks_mul = roundup_pow_of_two(params->locks_mul);
944 else
945 ht->p.locks_mul = BUCKET_LOCKS_PER_CPU;
946
947 tbl = bucket_table_alloc(ht, size);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200948 if (tbl == NULL)
949 return -ENOMEM;
950
Herbert Xu988dfbd2015-03-10 09:27:55 +1100951 get_random_bytes(&tbl->hash_rnd, sizeof(tbl->hash_rnd));
952
Ying Xue545a1482015-01-07 13:41:57 +0800953 atomic_set(&ht->nelems, 0);
Ying Xuec0c09bf2015-01-07 13:41:56 +0800954 atomic_set(&ht->shift, ilog2(tbl->size));
Thomas Graf7e1e7762014-08-02 11:47:44 +0200955 RCU_INIT_POINTER(ht->tbl, tbl);
Thomas Graf97defe12015-01-02 23:00:20 +0100956 RCU_INIT_POINTER(ht->future_tbl, tbl);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200957
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100958 INIT_WORK(&ht->run_work, rht_deferred_worker);
Thomas Graf97defe12015-01-02 23:00:20 +0100959
Thomas Graf7e1e7762014-08-02 11:47:44 +0200960 return 0;
961}
962EXPORT_SYMBOL_GPL(rhashtable_init);
963
964/**
965 * rhashtable_destroy - destroy hash table
966 * @ht: the hash table to destroy
967 *
Pablo Neira Ayusoae82ddc2014-09-02 00:26:05 +0200968 * Frees the bucket array. This function is not rcu safe, therefore the caller
969 * has to make sure that no resizing may happen by unpublishing the hashtable
970 * and waiting for the quiescent cycle before releasing the bucket array.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200971 */
Thomas Graf97defe12015-01-02 23:00:20 +0100972void rhashtable_destroy(struct rhashtable *ht)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200973{
Thomas Graf97defe12015-01-02 23:00:20 +0100974 ht->being_destroyed = true;
975
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100976 cancel_work_sync(&ht->run_work);
Ying Xue57699a42015-01-16 11:13:09 +0800977
Thomas Graf97defe12015-01-02 23:00:20 +0100978 mutex_lock(&ht->mutex);
Thomas Graf97defe12015-01-02 23:00:20 +0100979 bucket_table_free(rht_dereference(ht->tbl, ht));
Thomas Graf97defe12015-01-02 23:00:20 +0100980 mutex_unlock(&ht->mutex);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200981}
982EXPORT_SYMBOL_GPL(rhashtable_destroy);