blob: 838cccc4ef7e1fa9438897b7a97c802a4ca2634a [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,
Herbert Xucffaa9c2015-03-12 14:49:40 +110084 const void *key)
Thomas Graf7e1e7762014-08-02 11:47:44 +020085{
Herbert Xucffaa9c2015-03-12 14:49:40 +110086 return rht_bucket_index(tbl, ht->p.hashfn(key, ht->p.key_len,
87 tbl->hash_rnd) >>
Herbert Xu8d2b1872015-03-12 14:49:38 +110088 HASH_RESERVED_SPACE);
Thomas Graf7e1e7762014-08-02 11:47:44 +020089}
Thomas Graf7e1e7762014-08-02 11:47:44 +020090
Herbert Xu988dfbd2015-03-10 09:27:55 +110091static u32 head_hashfn(struct rhashtable *ht,
Thomas Graf8d24c0b2015-01-02 23:00:14 +010092 const struct bucket_table *tbl,
93 const struct rhash_head *he)
Thomas Graf7e1e7762014-08-02 11:47:44 +020094{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +110095 return rht_bucket_index(tbl, obj_raw_hashfn(ht, tbl, rht_obj(ht, he)));
Thomas Graf7e1e7762014-08-02 11:47:44 +020096}
97
Thomas Grafa03eaec2015-02-05 02:03:34 +010098#ifdef CONFIG_PROVE_LOCKING
Thomas Grafa03eaec2015-02-05 02:03:34 +010099#define ASSERT_RHT_MUTEX(HT) BUG_ON(!lockdep_rht_mutex_is_held(HT))
Thomas Grafa03eaec2015-02-05 02:03:34 +0100100
101int lockdep_rht_mutex_is_held(struct rhashtable *ht)
102{
103 return (debug_locks) ? lockdep_is_held(&ht->mutex) : 1;
104}
105EXPORT_SYMBOL_GPL(lockdep_rht_mutex_is_held);
106
107int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash)
108{
109 spinlock_t *lock = bucket_lock(tbl, hash);
110
111 return (debug_locks) ? lockdep_is_held(lock) : 1;
112}
113EXPORT_SYMBOL_GPL(lockdep_rht_bucket_is_held);
114#else
115#define ASSERT_RHT_MUTEX(HT)
Thomas Grafa03eaec2015-02-05 02:03:34 +0100116#endif
117
118
Thomas Graf97defe12015-01-02 23:00:20 +0100119static int alloc_bucket_locks(struct rhashtable *ht, struct bucket_table *tbl)
120{
121 unsigned int i, size;
122#if defined(CONFIG_PROVE_LOCKING)
123 unsigned int nr_pcpus = 2;
124#else
125 unsigned int nr_pcpus = num_possible_cpus();
126#endif
127
128 nr_pcpus = min_t(unsigned int, nr_pcpus, 32UL);
129 size = roundup_pow_of_two(nr_pcpus * ht->p.locks_mul);
130
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100131 /* Never allocate more than 0.5 locks per bucket */
132 size = min_t(unsigned int, size, tbl->size >> 1);
Thomas Graf97defe12015-01-02 23:00:20 +0100133
134 if (sizeof(spinlock_t) != 0) {
135#ifdef CONFIG_NUMA
136 if (size * sizeof(spinlock_t) > PAGE_SIZE)
137 tbl->locks = vmalloc(size * sizeof(spinlock_t));
138 else
139#endif
140 tbl->locks = kmalloc_array(size, sizeof(spinlock_t),
141 GFP_KERNEL);
142 if (!tbl->locks)
143 return -ENOMEM;
144 for (i = 0; i < size; i++)
145 spin_lock_init(&tbl->locks[i]);
146 }
147 tbl->locks_mask = size - 1;
148
149 return 0;
150}
151
152static void bucket_table_free(const struct bucket_table *tbl)
153{
154 if (tbl)
155 kvfree(tbl->locks);
156
157 kvfree(tbl);
158}
159
160static struct bucket_table *bucket_table_alloc(struct rhashtable *ht,
161 size_t nbuckets)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200162{
Daniel Borkmanneb6d1ab2015-02-20 00:53:38 +0100163 struct bucket_table *tbl = NULL;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200164 size_t size;
Thomas Graff89bd6f2015-01-02 23:00:21 +0100165 int i;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200166
167 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]);
Daniel Borkmanneb6d1ab2015-02-20 00:53:38 +0100168 if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER))
169 tbl = kzalloc(size, GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200170 if (tbl == NULL)
171 tbl = vzalloc(size);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200172 if (tbl == NULL)
173 return NULL;
174
175 tbl->size = nbuckets;
176
Thomas Graf97defe12015-01-02 23:00:20 +0100177 if (alloc_bucket_locks(ht, tbl) < 0) {
178 bucket_table_free(tbl);
179 return NULL;
180 }
Thomas Graf7e1e7762014-08-02 11:47:44 +0200181
Thomas Graff89bd6f2015-01-02 23:00:21 +0100182 for (i = 0; i < nbuckets; i++)
183 INIT_RHT_NULLS_HEAD(tbl->buckets[i], ht, i);
184
Thomas Graf97defe12015-01-02 23:00:20 +0100185 return tbl;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200186}
187
188/**
189 * rht_grow_above_75 - returns true if nelems > 0.75 * table-size
190 * @ht: hash table
191 * @new_size: new table size
192 */
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100193static bool rht_grow_above_75(const struct rhashtable *ht, size_t new_size)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200194{
195 /* Expand table when exceeding 75% load */
Ying Xuec0c09bf2015-01-07 13:41:56 +0800196 return atomic_read(&ht->nelems) > (new_size / 4 * 3) &&
Daniel Borkmann8331de72015-02-25 16:31:53 +0100197 (!ht->p.max_shift || atomic_read(&ht->shift) < ht->p.max_shift);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200198}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200199
200/**
201 * rht_shrink_below_30 - returns true if nelems < 0.3 * table-size
202 * @ht: hash table
203 * @new_size: new table size
204 */
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100205static bool rht_shrink_below_30(const struct rhashtable *ht, size_t new_size)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200206{
207 /* Shrink table beneath 30% load */
Ying Xuec0c09bf2015-01-07 13:41:56 +0800208 return atomic_read(&ht->nelems) < (new_size * 3 / 10) &&
209 (atomic_read(&ht->shift) > ht->p.min_shift);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200210}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200211
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100212static int rhashtable_rehash_one(struct rhashtable *ht, unsigned old_hash)
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100213{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100214 struct bucket_table *new_tbl = rht_dereference(ht->future_tbl, ht);
215 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
216 struct rhash_head __rcu **pprev = &old_tbl->buckets[old_hash];
217 int err = -ENOENT;
218 struct rhash_head *head, *next, *entry;
219 spinlock_t *new_bucket_lock;
220 unsigned new_hash;
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100221
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100222 rht_for_each(entry, old_tbl, old_hash) {
223 err = 0;
224 next = rht_dereference_bucket(entry->next, old_tbl, old_hash);
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100225
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100226 if (rht_is_a_nulls(next))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200227 break;
Thomas Graf97defe12015-01-02 23:00:20 +0100228
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100229 pprev = &entry->next;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200230 }
231
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100232 if (err)
233 goto out;
Thomas Graf97defe12015-01-02 23:00:20 +0100234
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100235 new_hash = head_hashfn(ht, new_tbl, entry);
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100236
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100237 new_bucket_lock = bucket_lock(new_tbl, new_hash);
238
Herbert Xu84ed82b2015-03-12 14:47:13 +1100239 spin_lock_nested(new_bucket_lock, RHT_LOCK_NESTED);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100240 head = rht_dereference_bucket(new_tbl->buckets[new_hash],
241 new_tbl, new_hash);
242
243 if (rht_is_a_nulls(head))
244 INIT_RHT_NULLS_HEAD(entry->next, ht, new_hash);
245 else
246 RCU_INIT_POINTER(entry->next, head);
247
248 rcu_assign_pointer(new_tbl->buckets[new_hash], entry);
249 spin_unlock(new_bucket_lock);
250
251 rcu_assign_pointer(*pprev, next);
252
253out:
254 return err;
Thomas Graf97defe12015-01-02 23:00:20 +0100255}
256
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100257static void rhashtable_rehash_chain(struct rhashtable *ht, unsigned old_hash)
Thomas Graf97defe12015-01-02 23:00:20 +0100258{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100259 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
260 spinlock_t *old_bucket_lock;
Thomas Graf7cd10db2015-02-05 02:03:35 +0100261
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100262 old_bucket_lock = bucket_lock(old_tbl, old_hash);
263
264 spin_lock_bh(old_bucket_lock);
265 while (!rhashtable_rehash_one(ht, old_hash))
266 ;
267 spin_unlock_bh(old_bucket_lock);
268}
269
270static void rhashtable_rehash(struct rhashtable *ht,
271 struct bucket_table *new_tbl)
272{
273 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
274 unsigned old_hash;
275
276 get_random_bytes(&new_tbl->hash_rnd, sizeof(new_tbl->hash_rnd));
277
278 /* Make insertions go into the new, empty table right away. Deletions
279 * and lookups will be attempted in both tables until we synchronize.
280 * The synchronize_rcu() guarantees for the new table to be picked up
281 * so no new additions go into the old table while we relink.
282 */
283 rcu_assign_pointer(ht->future_tbl, new_tbl);
284
285 for (old_hash = 0; old_hash < old_tbl->size; old_hash++)
286 rhashtable_rehash_chain(ht, old_hash);
287
288 /* Publish the new table pointer. */
289 rcu_assign_pointer(ht->tbl, new_tbl);
290
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 */
295 synchronize_rcu();
296
297 bucket_table_free(old_tbl);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200298}
299
300/**
301 * rhashtable_expand - Expand hash table while allowing concurrent lookups
302 * @ht: the hash table to expand
Thomas Graf7e1e7762014-08-02 11:47:44 +0200303 *
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100304 * A secondary bucket array is allocated and the hash entries are migrated.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200305 *
306 * This function may only be called in a context where it is safe to call
307 * synchronize_rcu(), e.g. not within a rcu_read_lock() section.
308 *
Thomas Graf97defe12015-01-02 23:00:20 +0100309 * The caller must ensure that no concurrent resizing occurs by holding
310 * ht->mutex.
311 *
312 * It is valid to have concurrent insertions and deletions protected by per
313 * bucket locks or concurrent RCU protected lookups and traversals.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200314 */
Thomas Graf6eba8222014-11-13 13:45:46 +0100315int rhashtable_expand(struct rhashtable *ht)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200316{
317 struct bucket_table *new_tbl, *old_tbl = rht_dereference(ht->tbl, ht);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200318
319 ASSERT_RHT_MUTEX(ht);
320
Thomas Graf97defe12015-01-02 23:00:20 +0100321 new_tbl = bucket_table_alloc(ht, old_tbl->size * 2);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200322 if (new_tbl == NULL)
323 return -ENOMEM;
324
Herbert Xu988dfbd2015-03-10 09:27:55 +1100325 new_tbl->hash_rnd = old_tbl->hash_rnd;
326
Ying Xuec0c09bf2015-01-07 13:41:56 +0800327 atomic_inc(&ht->shift);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200328
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100329 rhashtable_rehash(ht, new_tbl);
Thomas Graf97defe12015-01-02 23:00:20 +0100330
Thomas Graf7e1e7762014-08-02 11:47:44 +0200331 return 0;
332}
333EXPORT_SYMBOL_GPL(rhashtable_expand);
334
335/**
336 * rhashtable_shrink - Shrink hash table while allowing concurrent lookups
337 * @ht: the hash table to shrink
Thomas Graf7e1e7762014-08-02 11:47:44 +0200338 *
339 * This function may only be called in a context where it is safe to call
340 * synchronize_rcu(), e.g. not within a rcu_read_lock() section.
341 *
Thomas Graf97defe12015-01-02 23:00:20 +0100342 * The caller must ensure that no concurrent resizing occurs by holding
343 * ht->mutex.
344 *
Thomas Graf7e1e7762014-08-02 11:47:44 +0200345 * The caller must ensure that no concurrent table mutations take place.
346 * It is however valid to have concurrent lookups if they are RCU protected.
Thomas Graf97defe12015-01-02 23:00:20 +0100347 *
348 * It is valid to have concurrent insertions and deletions protected by per
349 * bucket locks or concurrent RCU protected lookups and traversals.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200350 */
Thomas Graf6eba8222014-11-13 13:45:46 +0100351int rhashtable_shrink(struct rhashtable *ht)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200352{
Thomas Graf97defe12015-01-02 23:00:20 +0100353 struct bucket_table *new_tbl, *tbl = rht_dereference(ht->tbl, ht);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200354
355 ASSERT_RHT_MUTEX(ht);
356
Thomas Graf97defe12015-01-02 23:00:20 +0100357 new_tbl = bucket_table_alloc(ht, tbl->size / 2);
358 if (new_tbl == NULL)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200359 return -ENOMEM;
360
Herbert Xu988dfbd2015-03-10 09:27:55 +1100361 new_tbl->hash_rnd = tbl->hash_rnd;
362
Ying Xuec0c09bf2015-01-07 13:41:56 +0800363 atomic_dec(&ht->shift);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200364
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100365 rhashtable_rehash(ht, new_tbl);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200366
367 return 0;
368}
369EXPORT_SYMBOL_GPL(rhashtable_shrink);
370
Thomas Graf97defe12015-01-02 23:00:20 +0100371static void rht_deferred_worker(struct work_struct *work)
372{
373 struct rhashtable *ht;
374 struct bucket_table *tbl;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100375 struct rhashtable_walker *walker;
Thomas Graf97defe12015-01-02 23:00:20 +0100376
Ying Xue57699a42015-01-16 11:13:09 +0800377 ht = container_of(work, struct rhashtable, run_work);
Thomas Graf97defe12015-01-02 23:00:20 +0100378 mutex_lock(&ht->mutex);
Herbert Xu28134a52015-02-04 07:33:22 +1100379 if (ht->being_destroyed)
380 goto unlock;
381
Thomas Graf97defe12015-01-02 23:00:20 +0100382 tbl = rht_dereference(ht->tbl, ht);
383
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100384 list_for_each_entry(walker, &ht->walkers, list)
385 walker->resize = true;
386
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100387 if (rht_grow_above_75(ht, tbl->size))
Thomas Graf97defe12015-01-02 23:00:20 +0100388 rhashtable_expand(ht);
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100389 else if (rht_shrink_below_30(ht, tbl->size))
Thomas Graf97defe12015-01-02 23:00:20 +0100390 rhashtable_shrink(ht);
Herbert Xu28134a52015-02-04 07:33:22 +1100391unlock:
Thomas Graf97defe12015-01-02 23:00:20 +0100392 mutex_unlock(&ht->mutex);
393}
394
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100395static bool __rhashtable_insert(struct rhashtable *ht, struct rhash_head *obj,
396 bool (*compare)(void *, void *), void *arg)
Ying Xuedb304852015-01-07 13:41:54 +0800397{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100398 struct bucket_table *tbl, *old_tbl;
Thomas Graf020219a2015-02-06 16:08:43 +0000399 struct rhash_head *head;
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100400 bool no_resize_running;
401 unsigned hash;
402 bool success = true;
403
404 rcu_read_lock();
405
406 old_tbl = rht_dereference_rcu(ht->tbl, ht);
Herbert Xueca84932015-03-12 14:49:39 +1100407 hash = head_hashfn(ht, old_tbl, obj);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100408
409 spin_lock_bh(bucket_lock(old_tbl, hash));
410
411 /* Because we have already taken the bucket lock in old_tbl,
412 * if we find that future_tbl is not yet visible then that
413 * guarantees all other insertions of the same entry will
414 * also grab the bucket lock in old_tbl because until the
415 * rehash completes ht->tbl won't be changed.
416 */
417 tbl = rht_dereference_rcu(ht->future_tbl, ht);
418 if (tbl != old_tbl) {
Herbert Xueca84932015-03-12 14:49:39 +1100419 hash = head_hashfn(ht, tbl, obj);
Herbert Xu84ed82b2015-03-12 14:47:13 +1100420 spin_lock_nested(bucket_lock(tbl, hash), RHT_LOCK_NESTED);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100421 }
422
423 if (compare &&
424 rhashtable_lookup_compare(ht, rht_obj(ht, obj) + ht->p.key_offset,
425 compare, arg)) {
426 success = false;
427 goto exit;
428 }
429
430 no_resize_running = tbl == old_tbl;
Thomas Graf020219a2015-02-06 16:08:43 +0000431
Thomas Graf020219a2015-02-06 16:08:43 +0000432 head = rht_dereference_bucket(tbl->buckets[hash], tbl, hash);
Ying Xuedb304852015-01-07 13:41:54 +0800433
434 if (rht_is_a_nulls(head))
435 INIT_RHT_NULLS_HEAD(obj->next, ht, hash);
436 else
437 RCU_INIT_POINTER(obj->next, head);
438
439 rcu_assign_pointer(tbl->buckets[hash], obj);
440
441 atomic_inc(&ht->nelems);
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +0100442 if (no_resize_running && rht_grow_above_75(ht, tbl->size))
443 schedule_work(&ht->run_work);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100444
445exit:
446 if (tbl != old_tbl) {
Herbert Xueca84932015-03-12 14:49:39 +1100447 hash = head_hashfn(ht, tbl, obj);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100448 spin_unlock(bucket_lock(tbl, hash));
449 }
450
Herbert Xueca84932015-03-12 14:49:39 +1100451 hash = head_hashfn(ht, old_tbl, obj);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100452 spin_unlock_bh(bucket_lock(old_tbl, hash));
453
454 rcu_read_unlock();
455
456 return success;
Ying Xuedb304852015-01-07 13:41:54 +0800457}
458
Thomas Graf7e1e7762014-08-02 11:47:44 +0200459/**
Ying Xuedb304852015-01-07 13:41:54 +0800460 * rhashtable_insert - insert object into hash table
Thomas Graf7e1e7762014-08-02 11:47:44 +0200461 * @ht: hash table
462 * @obj: pointer to hash head inside object
Thomas Graf7e1e7762014-08-02 11:47:44 +0200463 *
Thomas Graf97defe12015-01-02 23:00:20 +0100464 * Will take a per bucket spinlock to protect against mutual mutations
465 * on the same bucket. Multiple insertions may occur in parallel unless
466 * they map to the same bucket lock.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200467 *
Thomas Graf97defe12015-01-02 23:00:20 +0100468 * It is safe to call this function from atomic context.
469 *
470 * Will trigger an automatic deferred table resizing if the size grows
471 * beyond the watermark indicated by grow_decision() which can be passed
472 * to rhashtable_init().
Thomas Graf7e1e7762014-08-02 11:47:44 +0200473 */
Thomas Graf6eba8222014-11-13 13:45:46 +0100474void rhashtable_insert(struct rhashtable *ht, struct rhash_head *obj)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200475{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100476 __rhashtable_insert(ht, obj, NULL, NULL);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200477}
478EXPORT_SYMBOL_GPL(rhashtable_insert);
479
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100480static bool __rhashtable_remove(struct rhashtable *ht,
481 struct bucket_table *tbl,
482 struct rhash_head *obj)
483{
484 struct rhash_head __rcu **pprev;
485 struct rhash_head *he;
486 spinlock_t * lock;
487 unsigned hash;
488 bool ret = false;
489
Herbert Xueca84932015-03-12 14:49:39 +1100490 hash = head_hashfn(ht, tbl, obj);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100491 lock = bucket_lock(tbl, hash);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100492
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);
Herbert Xucffaa9c2015-03-12 14:49:40 +1100623 hash = key_hashfn(ht, tbl, key);
Thomas Graf97defe12015-01-02 23:00:20 +0100624restart:
Herbert Xu8d2b1872015-03-12 14:49:38 +1100625 rht_for_each_rcu(he, 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);