blob: 172454e6b979e935ef0d184953b6c35b06c32592 [file] [log] [blame]
Thomas Graf7e1e7762014-08-02 11:47:44 +02001/*
2 * Resizable, Scalable, Concurrent Hash Table
3 *
Herbert Xu02fd97c2015-03-20 21:57:00 +11004 * Copyright (c) 2015 Herbert Xu <herbert@gondor.apana.org.au>
Thomas Grafa5ec68e2015-02-05 02:03:32 +01005 * Copyright (c) 2014-2015 Thomas Graf <tgraf@suug.ch>
Thomas Graf7e1e7762014-08-02 11:47:44 +02006 * Copyright (c) 2008-2014 Patrick McHardy <kaber@trash.net>
7 *
Thomas Graf7e1e7762014-08-02 11:47:44 +02008 * Code partially derived from nft_hash
Herbert Xu02fd97c2015-03-20 21:57:00 +11009 * Rewritten with rehash code from br_multicast plus single list
10 * pointer as suggested by Josh Triplett
Thomas Graf7e1e7762014-08-02 11:47:44 +020011 *
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
Herbert Xu07ee0722015-05-15 11:30:47 +080017#include <linux/atomic.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020018#include <linux/kernel.h>
19#include <linux/init.h>
20#include <linux/log2.h>
Eric Dumazet5beb5c92015-02-26 07:20:34 -080021#include <linux/sched.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020022#include <linux/slab.h>
23#include <linux/vmalloc.h>
24#include <linux/mm.h>
Daniel Borkmann87545892014-12-10 16:33:11 +010025#include <linux/jhash.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020026#include <linux/random.h>
27#include <linux/rhashtable.h>
Stephen Rothwell61d7b092015-02-09 14:04:03 +110028#include <linux/err.h>
Hauke Mehrtens6d795412015-06-06 22:07:23 +020029#include <linux/export.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020030
31#define HASH_DEFAULT_SIZE 64UL
Herbert Xuc2e213c2015-03-18 20:01:16 +110032#define HASH_MIN_SIZE 4U
Florian Westphal4cf0b352016-08-12 12:03:52 +020033#define BUCKET_LOCKS_PER_CPU 32UL
Thomas Graf97defe12015-01-02 23:00:20 +010034
Herbert Xuda204202017-02-11 19:26:47 +080035union nested_table {
36 union nested_table __rcu *table;
37 struct rhash_head __rcu *bucket;
38};
39
Herbert Xu988dfbd2015-03-10 09:27:55 +110040static u32 head_hashfn(struct rhashtable *ht,
Thomas Graf8d24c0b2015-01-02 23:00:14 +010041 const struct bucket_table *tbl,
42 const struct rhash_head *he)
Thomas Graf7e1e7762014-08-02 11:47:44 +020043{
Herbert Xu02fd97c2015-03-20 21:57:00 +110044 return rht_head_hashfn(ht, tbl, he, ht->p);
Thomas Graf7e1e7762014-08-02 11:47:44 +020045}
46
Thomas Grafa03eaec2015-02-05 02:03:34 +010047#ifdef CONFIG_PROVE_LOCKING
Thomas Grafa03eaec2015-02-05 02:03:34 +010048#define ASSERT_RHT_MUTEX(HT) BUG_ON(!lockdep_rht_mutex_is_held(HT))
Thomas Grafa03eaec2015-02-05 02:03:34 +010049
50int lockdep_rht_mutex_is_held(struct rhashtable *ht)
51{
52 return (debug_locks) ? lockdep_is_held(&ht->mutex) : 1;
53}
54EXPORT_SYMBOL_GPL(lockdep_rht_mutex_is_held);
55
56int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash)
57{
Herbert Xu02fd97c2015-03-20 21:57:00 +110058 spinlock_t *lock = rht_bucket_lock(tbl, hash);
Thomas Grafa03eaec2015-02-05 02:03:34 +010059
60 return (debug_locks) ? lockdep_is_held(lock) : 1;
61}
62EXPORT_SYMBOL_GPL(lockdep_rht_bucket_is_held);
63#else
64#define ASSERT_RHT_MUTEX(HT)
Thomas Grafa03eaec2015-02-05 02:03:34 +010065#endif
66
67
Herbert Xub9ecfda2015-03-24 00:50:27 +110068static int alloc_bucket_locks(struct rhashtable *ht, struct bucket_table *tbl,
69 gfp_t gfp)
Thomas Graf97defe12015-01-02 23:00:20 +010070{
71 unsigned int i, size;
72#if defined(CONFIG_PROVE_LOCKING)
73 unsigned int nr_pcpus = 2;
74#else
75 unsigned int nr_pcpus = num_possible_cpus();
76#endif
77
Florian Westphal4cf0b352016-08-12 12:03:52 +020078 nr_pcpus = min_t(unsigned int, nr_pcpus, 64UL);
Thomas Graf97defe12015-01-02 23:00:20 +010079 size = roundup_pow_of_two(nr_pcpus * ht->p.locks_mul);
80
Thomas Grafa5ec68e2015-02-05 02:03:32 +010081 /* Never allocate more than 0.5 locks per bucket */
82 size = min_t(unsigned int, size, tbl->size >> 1);
Thomas Graf97defe12015-01-02 23:00:20 +010083
Herbert Xuda204202017-02-11 19:26:47 +080084 if (tbl->nest)
85 size = min(size, 1U << tbl->nest);
86
Thomas Graf97defe12015-01-02 23:00:20 +010087 if (sizeof(spinlock_t) != 0) {
Eric Dumazet9dbeea72016-08-26 08:51:39 -070088 tbl->locks = NULL;
Thomas Graf97defe12015-01-02 23:00:20 +010089#ifdef CONFIG_NUMA
Herbert Xub9ecfda2015-03-24 00:50:27 +110090 if (size * sizeof(spinlock_t) > PAGE_SIZE &&
91 gfp == GFP_KERNEL)
Thomas Graf97defe12015-01-02 23:00:20 +010092 tbl->locks = vmalloc(size * sizeof(spinlock_t));
Thomas Graf97defe12015-01-02 23:00:20 +010093#endif
Florian Westphal4cf0b352016-08-12 12:03:52 +020094 if (gfp != GFP_KERNEL)
95 gfp |= __GFP_NOWARN | __GFP_NORETRY;
96
Eric Dumazet9dbeea72016-08-26 08:51:39 -070097 if (!tbl->locks)
98 tbl->locks = kmalloc_array(size, sizeof(spinlock_t),
99 gfp);
Thomas Graf97defe12015-01-02 23:00:20 +0100100 if (!tbl->locks)
101 return -ENOMEM;
102 for (i = 0; i < size; i++)
103 spin_lock_init(&tbl->locks[i]);
104 }
105 tbl->locks_mask = size - 1;
106
107 return 0;
108}
109
Herbert Xuda204202017-02-11 19:26:47 +0800110static void nested_table_free(union nested_table *ntbl, unsigned int size)
111{
112 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
113 const unsigned int len = 1 << shift;
114 unsigned int i;
115
116 ntbl = rcu_dereference_raw(ntbl->table);
117 if (!ntbl)
118 return;
119
120 if (size > len) {
121 size >>= shift;
122 for (i = 0; i < len; i++)
123 nested_table_free(ntbl + i, size);
124 }
125
126 kfree(ntbl);
127}
128
129static void nested_bucket_table_free(const struct bucket_table *tbl)
130{
131 unsigned int size = tbl->size >> tbl->nest;
132 unsigned int len = 1 << tbl->nest;
133 union nested_table *ntbl;
134 unsigned int i;
135
136 ntbl = (union nested_table *)rcu_dereference_raw(tbl->buckets[0]);
137
138 for (i = 0; i < len; i++)
139 nested_table_free(ntbl + i, size);
140
141 kfree(ntbl);
142}
143
Thomas Graf97defe12015-01-02 23:00:20 +0100144static void bucket_table_free(const struct bucket_table *tbl)
145{
Herbert Xuda204202017-02-11 19:26:47 +0800146 if (tbl->nest)
147 nested_bucket_table_free(tbl);
148
Thomas Graf97defe12015-01-02 23:00:20 +0100149 if (tbl)
150 kvfree(tbl->locks);
151
152 kvfree(tbl);
153}
154
Herbert Xu9d901bc2015-03-14 13:57:23 +1100155static void bucket_table_free_rcu(struct rcu_head *head)
156{
157 bucket_table_free(container_of(head, struct bucket_table, rcu));
158}
159
Herbert Xuda204202017-02-11 19:26:47 +0800160static union nested_table *nested_table_alloc(struct rhashtable *ht,
161 union nested_table __rcu **prev,
162 unsigned int shifted,
163 unsigned int nhash)
164{
165 union nested_table *ntbl;
166 int i;
167
168 ntbl = rcu_dereference(*prev);
169 if (ntbl)
170 return ntbl;
171
172 ntbl = kzalloc(PAGE_SIZE, GFP_ATOMIC);
173
174 if (ntbl && shifted) {
175 for (i = 0; i < PAGE_SIZE / sizeof(ntbl[0].bucket); i++)
176 INIT_RHT_NULLS_HEAD(ntbl[i].bucket, ht,
177 (i << shifted) | nhash);
178 }
179
180 rcu_assign_pointer(*prev, ntbl);
181
182 return ntbl;
183}
184
185static struct bucket_table *nested_bucket_table_alloc(struct rhashtable *ht,
186 size_t nbuckets,
187 gfp_t gfp)
188{
189 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
190 struct bucket_table *tbl;
191 size_t size;
192
193 if (nbuckets < (1 << (shift + 1)))
194 return NULL;
195
196 size = sizeof(*tbl) + sizeof(tbl->buckets[0]);
197
198 tbl = kzalloc(size, gfp);
199 if (!tbl)
200 return NULL;
201
202 if (!nested_table_alloc(ht, (union nested_table __rcu **)tbl->buckets,
203 0, 0)) {
204 kfree(tbl);
205 return NULL;
206 }
207
208 tbl->nest = (ilog2(nbuckets) - 1) % shift + 1;
209
210 return tbl;
211}
212
Thomas Graf97defe12015-01-02 23:00:20 +0100213static struct bucket_table *bucket_table_alloc(struct rhashtable *ht,
Herbert Xub9ecfda2015-03-24 00:50:27 +1100214 size_t nbuckets,
215 gfp_t gfp)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200216{
Daniel Borkmanneb6d1ab2015-02-20 00:53:38 +0100217 struct bucket_table *tbl = NULL;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200218 size_t size;
Thomas Graff89bd6f2015-01-02 23:00:21 +0100219 int i;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200220
221 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]);
Herbert Xub9ecfda2015-03-24 00:50:27 +1100222 if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER) ||
223 gfp != GFP_KERNEL)
224 tbl = kzalloc(size, gfp | __GFP_NOWARN | __GFP_NORETRY);
225 if (tbl == NULL && gfp == GFP_KERNEL)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200226 tbl = vzalloc(size);
Herbert Xuda204202017-02-11 19:26:47 +0800227
228 size = nbuckets;
229
230 if (tbl == NULL && gfp != GFP_KERNEL) {
231 tbl = nested_bucket_table_alloc(ht, nbuckets, gfp);
232 nbuckets = 0;
233 }
Thomas Graf7e1e7762014-08-02 11:47:44 +0200234 if (tbl == NULL)
235 return NULL;
236
Herbert Xuda204202017-02-11 19:26:47 +0800237 tbl->size = size;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200238
Herbert Xub9ecfda2015-03-24 00:50:27 +1100239 if (alloc_bucket_locks(ht, tbl, gfp) < 0) {
Thomas Graf97defe12015-01-02 23:00:20 +0100240 bucket_table_free(tbl);
241 return NULL;
242 }
Thomas Graf7e1e7762014-08-02 11:47:44 +0200243
Herbert Xueddee5ba2015-03-14 13:57:20 +1100244 INIT_LIST_HEAD(&tbl->walkers);
245
Herbert Xu5269b532015-03-14 13:57:22 +1100246 get_random_bytes(&tbl->hash_rnd, sizeof(tbl->hash_rnd));
247
Thomas Graff89bd6f2015-01-02 23:00:21 +0100248 for (i = 0; i < nbuckets; i++)
249 INIT_RHT_NULLS_HEAD(tbl->buckets[i], ht, i);
250
Thomas Graf97defe12015-01-02 23:00:20 +0100251 return tbl;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200252}
253
Herbert Xub8244782015-03-24 00:50:26 +1100254static struct bucket_table *rhashtable_last_table(struct rhashtable *ht,
255 struct bucket_table *tbl)
256{
257 struct bucket_table *new_tbl;
258
259 do {
260 new_tbl = tbl;
261 tbl = rht_dereference_rcu(tbl->future_tbl, ht);
262 } while (tbl);
263
264 return new_tbl;
265}
266
Thomas Graf299e5c32015-03-24 14:18:17 +0100267static int rhashtable_rehash_one(struct rhashtable *ht, unsigned int old_hash)
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100268{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100269 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
Herbert Xub8244782015-03-24 00:50:26 +1100270 struct bucket_table *new_tbl = rhashtable_last_table(ht,
271 rht_dereference_rcu(old_tbl->future_tbl, ht));
Herbert Xuda204202017-02-11 19:26:47 +0800272 struct rhash_head __rcu **pprev = rht_bucket_var(old_tbl, old_hash);
273 int err = -EAGAIN;
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100274 struct rhash_head *head, *next, *entry;
275 spinlock_t *new_bucket_lock;
Thomas Graf299e5c32015-03-24 14:18:17 +0100276 unsigned int new_hash;
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100277
Herbert Xuda204202017-02-11 19:26:47 +0800278 if (new_tbl->nest)
279 goto out;
280
281 err = -ENOENT;
282
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100283 rht_for_each(entry, old_tbl, old_hash) {
284 err = 0;
285 next = rht_dereference_bucket(entry->next, old_tbl, old_hash);
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100286
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100287 if (rht_is_a_nulls(next))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200288 break;
Thomas Graf97defe12015-01-02 23:00:20 +0100289
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100290 pprev = &entry->next;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200291 }
292
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100293 if (err)
294 goto out;
Thomas Graf97defe12015-01-02 23:00:20 +0100295
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100296 new_hash = head_hashfn(ht, new_tbl, entry);
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100297
Herbert Xu02fd97c2015-03-20 21:57:00 +1100298 new_bucket_lock = rht_bucket_lock(new_tbl, new_hash);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100299
Herbert Xu8f2484b2015-03-14 13:57:21 +1100300 spin_lock_nested(new_bucket_lock, SINGLE_DEPTH_NESTING);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100301 head = rht_dereference_bucket(new_tbl->buckets[new_hash],
302 new_tbl, new_hash);
303
Dmitriy Vyukov7def0f92015-09-22 10:51:52 +0200304 RCU_INIT_POINTER(entry->next, head);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100305
306 rcu_assign_pointer(new_tbl->buckets[new_hash], entry);
307 spin_unlock(new_bucket_lock);
308
309 rcu_assign_pointer(*pprev, next);
310
311out:
312 return err;
Thomas Graf97defe12015-01-02 23:00:20 +0100313}
314
Herbert Xuda204202017-02-11 19:26:47 +0800315static int rhashtable_rehash_chain(struct rhashtable *ht,
Thomas Graf299e5c32015-03-24 14:18:17 +0100316 unsigned int old_hash)
Thomas Graf97defe12015-01-02 23:00:20 +0100317{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100318 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
319 spinlock_t *old_bucket_lock;
Herbert Xuda204202017-02-11 19:26:47 +0800320 int err;
Thomas Graf7cd10db2015-02-05 02:03:35 +0100321
Herbert Xu02fd97c2015-03-20 21:57:00 +1100322 old_bucket_lock = rht_bucket_lock(old_tbl, old_hash);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100323
324 spin_lock_bh(old_bucket_lock);
Herbert Xuda204202017-02-11 19:26:47 +0800325 while (!(err = rhashtable_rehash_one(ht, old_hash)))
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100326 ;
Herbert Xuda204202017-02-11 19:26:47 +0800327
328 if (err == -ENOENT) {
329 old_tbl->rehash++;
330 err = 0;
331 }
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100332 spin_unlock_bh(old_bucket_lock);
Herbert Xuda204202017-02-11 19:26:47 +0800333
334 return err;
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100335}
336
Herbert Xub8244782015-03-24 00:50:26 +1100337static int rhashtable_rehash_attach(struct rhashtable *ht,
338 struct bucket_table *old_tbl,
339 struct bucket_table *new_tbl)
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100340{
Herbert Xub8244782015-03-24 00:50:26 +1100341 /* Protect future_tbl using the first bucket lock. */
342 spin_lock_bh(old_tbl->locks);
343
344 /* Did somebody beat us to it? */
345 if (rcu_access_pointer(old_tbl->future_tbl)) {
346 spin_unlock_bh(old_tbl->locks);
347 return -EEXIST;
348 }
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100349
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100350 /* Make insertions go into the new, empty table right away. Deletions
351 * and lookups will be attempted in both tables until we synchronize.
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100352 */
Herbert Xuc4db8842015-03-14 13:57:25 +1100353 rcu_assign_pointer(old_tbl->future_tbl, new_tbl);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100354
Herbert Xub8244782015-03-24 00:50:26 +1100355 spin_unlock_bh(old_tbl->locks);
356
357 return 0;
358}
359
360static int rhashtable_rehash_table(struct rhashtable *ht)
361{
362 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
363 struct bucket_table *new_tbl;
364 struct rhashtable_walker *walker;
Thomas Graf299e5c32015-03-24 14:18:17 +0100365 unsigned int old_hash;
Herbert Xuda204202017-02-11 19:26:47 +0800366 int err;
Herbert Xub8244782015-03-24 00:50:26 +1100367
368 new_tbl = rht_dereference(old_tbl->future_tbl, ht);
369 if (!new_tbl)
370 return 0;
371
Herbert Xuda204202017-02-11 19:26:47 +0800372 for (old_hash = 0; old_hash < old_tbl->size; old_hash++) {
373 err = rhashtable_rehash_chain(ht, old_hash);
374 if (err)
375 return err;
376 }
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100377
378 /* Publish the new table pointer. */
379 rcu_assign_pointer(ht->tbl, new_tbl);
380
Herbert Xuba7c95e2015-03-24 09:53:17 +1100381 spin_lock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100382 list_for_each_entry(walker, &old_tbl->walkers, list)
383 walker->tbl = NULL;
Herbert Xuba7c95e2015-03-24 09:53:17 +1100384 spin_unlock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100385
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100386 /* Wait for readers. All new readers will see the new
387 * table, and thus no references to the old table will
388 * remain.
389 */
Herbert Xu9d901bc2015-03-14 13:57:23 +1100390 call_rcu(&old_tbl->rcu, bucket_table_free_rcu);
Herbert Xub8244782015-03-24 00:50:26 +1100391
392 return rht_dereference(new_tbl->future_tbl, ht) ? -EAGAIN : 0;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200393}
394
Herbert Xuda204202017-02-11 19:26:47 +0800395static int rhashtable_rehash_alloc(struct rhashtable *ht,
396 struct bucket_table *old_tbl,
397 unsigned int size)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200398{
Herbert Xuda204202017-02-11 19:26:47 +0800399 struct bucket_table *new_tbl;
Herbert Xub8244782015-03-24 00:50:26 +1100400 int err;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200401
402 ASSERT_RHT_MUTEX(ht);
403
Herbert Xuda204202017-02-11 19:26:47 +0800404 new_tbl = bucket_table_alloc(ht, size, GFP_KERNEL);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200405 if (new_tbl == NULL)
406 return -ENOMEM;
407
Herbert Xub8244782015-03-24 00:50:26 +1100408 err = rhashtable_rehash_attach(ht, old_tbl, new_tbl);
409 if (err)
410 bucket_table_free(new_tbl);
411
412 return err;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200413}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200414
415/**
416 * rhashtable_shrink - Shrink hash table while allowing concurrent lookups
417 * @ht: the hash table to shrink
Thomas Graf7e1e7762014-08-02 11:47:44 +0200418 *
Herbert Xu18093d12015-03-24 00:50:25 +1100419 * This function shrinks the hash table to fit, i.e., the smallest
420 * size would not cause it to expand right away automatically.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200421 *
Thomas Graf97defe12015-01-02 23:00:20 +0100422 * The caller must ensure that no concurrent resizing occurs by holding
423 * ht->mutex.
424 *
Thomas Graf7e1e7762014-08-02 11:47:44 +0200425 * The caller must ensure that no concurrent table mutations take place.
426 * It is however valid to have concurrent lookups if they are RCU protected.
Thomas Graf97defe12015-01-02 23:00:20 +0100427 *
428 * It is valid to have concurrent insertions and deletions protected by per
429 * bucket locks or concurrent RCU protected lookups and traversals.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200430 */
Herbert Xub8244782015-03-24 00:50:26 +1100431static int rhashtable_shrink(struct rhashtable *ht)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200432{
Herbert Xuda204202017-02-11 19:26:47 +0800433 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
Vegard Nossum12311952016-08-12 20:10:44 +0200434 unsigned int nelems = atomic_read(&ht->nelems);
435 unsigned int size = 0;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200436
Vegard Nossum12311952016-08-12 20:10:44 +0200437 if (nelems)
438 size = roundup_pow_of_two(nelems * 3 / 2);
Herbert Xu18093d12015-03-24 00:50:25 +1100439 if (size < ht->p.min_size)
440 size = ht->p.min_size;
441
442 if (old_tbl->size <= size)
443 return 0;
444
Herbert Xub8244782015-03-24 00:50:26 +1100445 if (rht_dereference(old_tbl->future_tbl, ht))
446 return -EEXIST;
447
Herbert Xuda204202017-02-11 19:26:47 +0800448 return rhashtable_rehash_alloc(ht, old_tbl, size);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200449}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200450
Thomas Graf97defe12015-01-02 23:00:20 +0100451static void rht_deferred_worker(struct work_struct *work)
452{
453 struct rhashtable *ht;
454 struct bucket_table *tbl;
Herbert Xub8244782015-03-24 00:50:26 +1100455 int err = 0;
Thomas Graf97defe12015-01-02 23:00:20 +0100456
Ying Xue57699a42015-01-16 11:13:09 +0800457 ht = container_of(work, struct rhashtable, run_work);
Thomas Graf97defe12015-01-02 23:00:20 +0100458 mutex_lock(&ht->mutex);
Herbert Xu28134a52015-02-04 07:33:22 +1100459
Thomas Graf97defe12015-01-02 23:00:20 +0100460 tbl = rht_dereference(ht->tbl, ht);
Herbert Xub8244782015-03-24 00:50:26 +1100461 tbl = rhashtable_last_table(ht, tbl);
Thomas Graf97defe12015-01-02 23:00:20 +0100462
Daniel Borkmanna5b68462015-03-12 15:28:40 +0100463 if (rht_grow_above_75(ht, tbl))
Herbert Xuda204202017-02-11 19:26:47 +0800464 err = rhashtable_rehash_alloc(ht, tbl, tbl->size * 2);
Thomas Grafb5e2c152015-03-24 20:42:19 +0000465 else if (ht->p.automatic_shrinking && rht_shrink_below_30(ht, tbl))
Herbert Xuda204202017-02-11 19:26:47 +0800466 err = rhashtable_shrink(ht);
467 else if (tbl->nest)
468 err = rhashtable_rehash_alloc(ht, tbl, tbl->size);
Herbert Xub8244782015-03-24 00:50:26 +1100469
Herbert Xuda204202017-02-11 19:26:47 +0800470 if (!err)
471 err = rhashtable_rehash_table(ht);
Herbert Xub8244782015-03-24 00:50:26 +1100472
Thomas Graf97defe12015-01-02 23:00:20 +0100473 mutex_unlock(&ht->mutex);
Herbert Xub8244782015-03-24 00:50:26 +1100474
475 if (err)
476 schedule_work(&ht->run_work);
Thomas Graf97defe12015-01-02 23:00:20 +0100477}
478
Herbert Xuca268932016-09-19 19:00:09 +0800479static int rhashtable_insert_rehash(struct rhashtable *ht,
480 struct bucket_table *tbl)
Herbert Xuccd57b12015-03-24 00:50:28 +1100481{
482 struct bucket_table *old_tbl;
483 struct bucket_table *new_tbl;
Herbert Xuccd57b12015-03-24 00:50:28 +1100484 unsigned int size;
485 int err;
486
487 old_tbl = rht_dereference_rcu(ht->tbl, ht);
Herbert Xuccd57b12015-03-24 00:50:28 +1100488
489 size = tbl->size;
490
Herbert Xu3cf92222015-12-03 20:41:29 +0800491 err = -EBUSY;
492
Herbert Xuccd57b12015-03-24 00:50:28 +1100493 if (rht_grow_above_75(ht, tbl))
494 size *= 2;
Thomas Grafa87b9eb2015-04-22 09:41:46 +0200495 /* Do not schedule more than one rehash */
496 else if (old_tbl != tbl)
Herbert Xu3cf92222015-12-03 20:41:29 +0800497 goto fail;
498
499 err = -ENOMEM;
Herbert Xuccd57b12015-03-24 00:50:28 +1100500
501 new_tbl = bucket_table_alloc(ht, size, GFP_ATOMIC);
Herbert Xu3cf92222015-12-03 20:41:29 +0800502 if (new_tbl == NULL)
503 goto fail;
Herbert Xuccd57b12015-03-24 00:50:28 +1100504
505 err = rhashtable_rehash_attach(ht, tbl, new_tbl);
506 if (err) {
507 bucket_table_free(new_tbl);
508 if (err == -EEXIST)
509 err = 0;
510 } else
511 schedule_work(&ht->run_work);
512
513 return err;
Herbert Xu3cf92222015-12-03 20:41:29 +0800514
515fail:
516 /* Do not fail the insert if someone else did a rehash. */
517 if (likely(rcu_dereference_raw(tbl->future_tbl)))
518 return 0;
519
520 /* Schedule async rehash to retry allocation in process context. */
521 if (err == -ENOMEM)
522 schedule_work(&ht->run_work);
523
524 return err;
Herbert Xuccd57b12015-03-24 00:50:28 +1100525}
Herbert Xuccd57b12015-03-24 00:50:28 +1100526
Herbert Xuca268932016-09-19 19:00:09 +0800527static void *rhashtable_lookup_one(struct rhashtable *ht,
528 struct bucket_table *tbl, unsigned int hash,
529 const void *key, struct rhash_head *obj)
Herbert Xu02fd97c2015-03-20 21:57:00 +1100530{
Herbert Xuca268932016-09-19 19:00:09 +0800531 struct rhashtable_compare_arg arg = {
532 .ht = ht,
533 .key = key,
534 };
535 struct rhash_head __rcu **pprev;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100536 struct rhash_head *head;
Herbert Xuca268932016-09-19 19:00:09 +0800537 int elasticity;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100538
Herbert Xuca268932016-09-19 19:00:09 +0800539 elasticity = ht->elasticity;
Herbert Xuda204202017-02-11 19:26:47 +0800540 pprev = rht_bucket_var(tbl, hash);
541 rht_for_each_continue(head, *pprev, tbl, hash) {
Herbert Xuca268932016-09-19 19:00:09 +0800542 struct rhlist_head *list;
543 struct rhlist_head *plist;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100544
Herbert Xuca268932016-09-19 19:00:09 +0800545 elasticity--;
546 if (!key ||
547 (ht->p.obj_cmpfn ?
548 ht->p.obj_cmpfn(&arg, rht_obj(ht, head)) :
549 rhashtable_compare(&arg, rht_obj(ht, head))))
550 continue;
551
552 if (!ht->rhlist)
553 return rht_obj(ht, head);
554
555 list = container_of(obj, struct rhlist_head, rhead);
556 plist = container_of(head, struct rhlist_head, rhead);
557
558 RCU_INIT_POINTER(list->next, plist);
559 head = rht_dereference_bucket(head->next, tbl, hash);
560 RCU_INIT_POINTER(list->rhead.next, head);
561 rcu_assign_pointer(*pprev, obj);
562
563 return NULL;
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200564 }
Herbert Xu02fd97c2015-03-20 21:57:00 +1100565
Herbert Xuca268932016-09-19 19:00:09 +0800566 if (elasticity <= 0)
567 return ERR_PTR(-EAGAIN);
568
569 return ERR_PTR(-ENOENT);
570}
571
572static struct bucket_table *rhashtable_insert_one(struct rhashtable *ht,
573 struct bucket_table *tbl,
574 unsigned int hash,
575 struct rhash_head *obj,
576 void *data)
577{
Herbert Xuda204202017-02-11 19:26:47 +0800578 struct rhash_head __rcu **pprev;
Herbert Xuca268932016-09-19 19:00:09 +0800579 struct bucket_table *new_tbl;
580 struct rhash_head *head;
581
582 if (!IS_ERR_OR_NULL(data))
583 return ERR_PTR(-EEXIST);
584
585 if (PTR_ERR(data) != -EAGAIN && PTR_ERR(data) != -ENOENT)
586 return ERR_CAST(data);
587
588 new_tbl = rcu_dereference(tbl->future_tbl);
589 if (new_tbl)
590 return new_tbl;
591
592 if (PTR_ERR(data) != -ENOENT)
593 return ERR_CAST(data);
594
Herbert Xu07ee0722015-05-15 11:30:47 +0800595 if (unlikely(rht_grow_above_max(ht, tbl)))
Herbert Xuca268932016-09-19 19:00:09 +0800596 return ERR_PTR(-E2BIG);
Herbert Xu07ee0722015-05-15 11:30:47 +0800597
Herbert Xuca268932016-09-19 19:00:09 +0800598 if (unlikely(rht_grow_above_100(ht, tbl)))
599 return ERR_PTR(-EAGAIN);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100600
Herbert Xuda204202017-02-11 19:26:47 +0800601 pprev = rht_bucket_insert(ht, tbl, hash);
602 if (!pprev)
603 return ERR_PTR(-ENOMEM);
604
605 head = rht_dereference_bucket(*pprev, tbl, hash);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100606
607 RCU_INIT_POINTER(obj->next, head);
Herbert Xuca268932016-09-19 19:00:09 +0800608 if (ht->rhlist) {
609 struct rhlist_head *list;
610
611 list = container_of(obj, struct rhlist_head, rhead);
612 RCU_INIT_POINTER(list->next, NULL);
613 }
Herbert Xu02fd97c2015-03-20 21:57:00 +1100614
Herbert Xuda204202017-02-11 19:26:47 +0800615 rcu_assign_pointer(*pprev, obj);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100616
617 atomic_inc(&ht->nelems);
Herbert Xuca268932016-09-19 19:00:09 +0800618 if (rht_grow_above_75(ht, tbl))
619 schedule_work(&ht->run_work);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100620
Herbert Xuca268932016-09-19 19:00:09 +0800621 return NULL;
622}
Herbert Xu02fd97c2015-03-20 21:57:00 +1100623
Herbert Xuca268932016-09-19 19:00:09 +0800624static void *rhashtable_try_insert(struct rhashtable *ht, const void *key,
625 struct rhash_head *obj)
626{
627 struct bucket_table *new_tbl;
628 struct bucket_table *tbl;
629 unsigned int hash;
630 spinlock_t *lock;
631 void *data;
632
633 tbl = rcu_dereference(ht->tbl);
634
635 /* All insertions must grab the oldest table containing
636 * the hashed bucket that is yet to be rehashed.
637 */
638 for (;;) {
639 hash = rht_head_hashfn(ht, tbl, obj, ht->p);
640 lock = rht_bucket_lock(tbl, hash);
641 spin_lock_bh(lock);
642
643 if (tbl->rehash <= hash)
644 break;
645
646 spin_unlock_bh(lock);
647 tbl = rcu_dereference(tbl->future_tbl);
648 }
649
650 data = rhashtable_lookup_one(ht, tbl, hash, key, obj);
651 new_tbl = rhashtable_insert_one(ht, tbl, hash, obj, data);
652 if (PTR_ERR(new_tbl) != -EEXIST)
653 data = ERR_CAST(new_tbl);
654
655 while (!IS_ERR_OR_NULL(new_tbl)) {
656 tbl = new_tbl;
657 hash = rht_head_hashfn(ht, tbl, obj, ht->p);
658 spin_lock_nested(rht_bucket_lock(tbl, hash),
659 SINGLE_DEPTH_NESTING);
660
661 data = rhashtable_lookup_one(ht, tbl, hash, key, obj);
662 new_tbl = rhashtable_insert_one(ht, tbl, hash, obj, data);
663 if (PTR_ERR(new_tbl) != -EEXIST)
664 data = ERR_CAST(new_tbl);
665
666 spin_unlock(rht_bucket_lock(tbl, hash));
667 }
668
669 spin_unlock_bh(lock);
670
671 if (PTR_ERR(data) == -EAGAIN)
672 data = ERR_PTR(rhashtable_insert_rehash(ht, tbl) ?:
673 -EAGAIN);
674
675 return data;
676}
677
678void *rhashtable_insert_slow(struct rhashtable *ht, const void *key,
679 struct rhash_head *obj)
680{
681 void *data;
682
683 do {
684 rcu_read_lock();
685 data = rhashtable_try_insert(ht, key, obj);
686 rcu_read_unlock();
687 } while (PTR_ERR(data) == -EAGAIN);
688
689 return data;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100690}
691EXPORT_SYMBOL_GPL(rhashtable_insert_slow);
692
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100693/**
Herbert Xu246779d2016-08-18 16:50:56 +0800694 * rhashtable_walk_enter - Initialise an iterator
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100695 * @ht: Table to walk over
696 * @iter: Hash table Iterator
697 *
698 * This function prepares a hash table walk.
699 *
700 * Note that if you restart a walk after rhashtable_walk_stop you
701 * may see the same object twice. Also, you may miss objects if
702 * there are removals in between rhashtable_walk_stop and the next
703 * call to rhashtable_walk_start.
704 *
705 * For a completely stable walk you should construct your own data
706 * structure outside the hash table.
707 *
708 * This function may sleep so you must not call it from interrupt
709 * context or with spin locks held.
710 *
Herbert Xu246779d2016-08-18 16:50:56 +0800711 * You must call rhashtable_walk_exit after this function returns.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100712 */
Herbert Xu246779d2016-08-18 16:50:56 +0800713void rhashtable_walk_enter(struct rhashtable *ht, struct rhashtable_iter *iter)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100714{
715 iter->ht = ht;
716 iter->p = NULL;
717 iter->slot = 0;
718 iter->skip = 0;
719
Herbert Xuc6ff5262015-12-16 16:45:54 +0800720 spin_lock(&ht->lock);
Herbert Xu246779d2016-08-18 16:50:56 +0800721 iter->walker.tbl =
Herbert Xu179ccc02015-12-19 10:45:28 +0800722 rcu_dereference_protected(ht->tbl, lockdep_is_held(&ht->lock));
Herbert Xu246779d2016-08-18 16:50:56 +0800723 list_add(&iter->walker.list, &iter->walker.tbl->walkers);
Herbert Xuc6ff5262015-12-16 16:45:54 +0800724 spin_unlock(&ht->lock);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100725}
Herbert Xu246779d2016-08-18 16:50:56 +0800726EXPORT_SYMBOL_GPL(rhashtable_walk_enter);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100727
728/**
729 * rhashtable_walk_exit - Free an iterator
730 * @iter: Hash table Iterator
731 *
732 * This function frees resources allocated by rhashtable_walk_init.
733 */
734void rhashtable_walk_exit(struct rhashtable_iter *iter)
735{
Herbert Xuc6ff5262015-12-16 16:45:54 +0800736 spin_lock(&iter->ht->lock);
Herbert Xu246779d2016-08-18 16:50:56 +0800737 if (iter->walker.tbl)
738 list_del(&iter->walker.list);
Herbert Xuc6ff5262015-12-16 16:45:54 +0800739 spin_unlock(&iter->ht->lock);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100740}
741EXPORT_SYMBOL_GPL(rhashtable_walk_exit);
742
743/**
744 * rhashtable_walk_start - Start a hash table walk
745 * @iter: Hash table iterator
746 *
747 * Start a hash table walk. Note that we take the RCU lock in all
748 * cases including when we return an error. So you must always call
749 * rhashtable_walk_stop to clean up.
750 *
751 * Returns zero if successful.
752 *
753 * Returns -EAGAIN if resize event occured. Note that the iterator
754 * will rewind back to the beginning and you may use it immediately
755 * by calling rhashtable_walk_next.
756 */
757int rhashtable_walk_start(struct rhashtable_iter *iter)
Thomas Grafdb4374f2015-03-16 10:42:27 +0100758 __acquires(RCU)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100759{
Herbert Xueddee5ba2015-03-14 13:57:20 +1100760 struct rhashtable *ht = iter->ht;
761
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100762 rcu_read_lock();
763
Herbert Xuc6ff5262015-12-16 16:45:54 +0800764 spin_lock(&ht->lock);
Herbert Xu246779d2016-08-18 16:50:56 +0800765 if (iter->walker.tbl)
766 list_del(&iter->walker.list);
Herbert Xuc6ff5262015-12-16 16:45:54 +0800767 spin_unlock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100768
Herbert Xu246779d2016-08-18 16:50:56 +0800769 if (!iter->walker.tbl) {
770 iter->walker.tbl = rht_dereference_rcu(ht->tbl, ht);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100771 return -EAGAIN;
772 }
773
774 return 0;
775}
776EXPORT_SYMBOL_GPL(rhashtable_walk_start);
777
778/**
779 * rhashtable_walk_next - Return the next object and advance the iterator
780 * @iter: Hash table iterator
781 *
782 * Note that you must call rhashtable_walk_stop when you are finished
783 * with the walk.
784 *
785 * Returns the next object or NULL when the end of the table is reached.
786 *
787 * Returns -EAGAIN if resize event occured. Note that the iterator
788 * will rewind back to the beginning and you may continue to use it.
789 */
790void *rhashtable_walk_next(struct rhashtable_iter *iter)
791{
Herbert Xu246779d2016-08-18 16:50:56 +0800792 struct bucket_table *tbl = iter->walker.tbl;
Herbert Xuca268932016-09-19 19:00:09 +0800793 struct rhlist_head *list = iter->list;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100794 struct rhashtable *ht = iter->ht;
795 struct rhash_head *p = iter->p;
Herbert Xuca268932016-09-19 19:00:09 +0800796 bool rhlist = ht->rhlist;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100797
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100798 if (p) {
Herbert Xuca268932016-09-19 19:00:09 +0800799 if (!rhlist || !(list = rcu_dereference(list->next))) {
800 p = rcu_dereference(p->next);
801 list = container_of(p, struct rhlist_head, rhead);
802 }
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100803 goto next;
804 }
805
806 for (; iter->slot < tbl->size; iter->slot++) {
807 int skip = iter->skip;
808
809 rht_for_each_rcu(p, tbl, iter->slot) {
Herbert Xuca268932016-09-19 19:00:09 +0800810 if (rhlist) {
811 list = container_of(p, struct rhlist_head,
812 rhead);
813 do {
814 if (!skip)
815 goto next;
816 skip--;
817 list = rcu_dereference(list->next);
818 } while (list);
819
820 continue;
821 }
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100822 if (!skip)
823 break;
824 skip--;
825 }
826
827next:
828 if (!rht_is_a_nulls(p)) {
829 iter->skip++;
830 iter->p = p;
Herbert Xuca268932016-09-19 19:00:09 +0800831 iter->list = list;
832 return rht_obj(ht, rhlist ? &list->rhead : p);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100833 }
834
835 iter->skip = 0;
836 }
837
Phil Sutter142b9422015-07-06 15:51:20 +0200838 iter->p = NULL;
839
Herbert Xud88252f2015-03-24 00:50:19 +1100840 /* Ensure we see any new tables. */
841 smp_rmb();
842
Herbert Xu246779d2016-08-18 16:50:56 +0800843 iter->walker.tbl = rht_dereference_rcu(tbl->future_tbl, ht);
844 if (iter->walker.tbl) {
Herbert Xueddee5ba2015-03-14 13:57:20 +1100845 iter->slot = 0;
846 iter->skip = 0;
847 return ERR_PTR(-EAGAIN);
848 }
849
Thomas Grafc936a792015-05-05 02:22:53 +0200850 return NULL;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100851}
852EXPORT_SYMBOL_GPL(rhashtable_walk_next);
853
854/**
855 * rhashtable_walk_stop - Finish a hash table walk
856 * @iter: Hash table iterator
857 *
858 * Finish a hash table walk.
859 */
860void rhashtable_walk_stop(struct rhashtable_iter *iter)
Thomas Grafdb4374f2015-03-16 10:42:27 +0100861 __releases(RCU)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100862{
Herbert Xueddee5ba2015-03-14 13:57:20 +1100863 struct rhashtable *ht;
Herbert Xu246779d2016-08-18 16:50:56 +0800864 struct bucket_table *tbl = iter->walker.tbl;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100865
Herbert Xueddee5ba2015-03-14 13:57:20 +1100866 if (!tbl)
Herbert Xu963ecbd2015-03-15 21:12:04 +1100867 goto out;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100868
869 ht = iter->ht;
870
Herbert Xuba7c95e2015-03-24 09:53:17 +1100871 spin_lock(&ht->lock);
Herbert Xuc4db8842015-03-14 13:57:25 +1100872 if (tbl->rehash < tbl->size)
Herbert Xu246779d2016-08-18 16:50:56 +0800873 list_add(&iter->walker.list, &tbl->walkers);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100874 else
Herbert Xu246779d2016-08-18 16:50:56 +0800875 iter->walker.tbl = NULL;
Herbert Xuba7c95e2015-03-24 09:53:17 +1100876 spin_unlock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100877
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100878 iter->p = NULL;
Herbert Xu963ecbd2015-03-15 21:12:04 +1100879
880out:
881 rcu_read_unlock();
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100882}
883EXPORT_SYMBOL_GPL(rhashtable_walk_stop);
884
Herbert Xu488fb86e2015-03-20 21:56:59 +1100885static size_t rounded_hashtable_size(const struct rhashtable_params *params)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200886{
Ying Xue94000172014-09-03 09:22:36 +0800887 return max(roundup_pow_of_two(params->nelem_hint * 4 / 3),
Herbert Xue2e21c12015-03-18 20:01:21 +1100888 (unsigned long)params->min_size);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200889}
890
Herbert Xu31ccde22015-03-24 00:50:21 +1100891static u32 rhashtable_jhash2(const void *key, u32 length, u32 seed)
892{
893 return jhash2(key, length, seed);
894}
895
Thomas Graf7e1e7762014-08-02 11:47:44 +0200896/**
897 * rhashtable_init - initialize a new hash table
898 * @ht: hash table to be initialized
899 * @params: configuration parameters
900 *
901 * Initializes a new hash table based on the provided configuration
902 * parameters. A table can be configured either with a variable or
903 * fixed length key:
904 *
905 * Configuration Example 1: Fixed length keys
906 * struct test_obj {
907 * int key;
908 * void * my_member;
909 * struct rhash_head node;
910 * };
911 *
912 * struct rhashtable_params params = {
913 * .head_offset = offsetof(struct test_obj, node),
914 * .key_offset = offsetof(struct test_obj, key),
915 * .key_len = sizeof(int),
Daniel Borkmann87545892014-12-10 16:33:11 +0100916 * .hashfn = jhash,
Thomas Graff89bd6f2015-01-02 23:00:21 +0100917 * .nulls_base = (1U << RHT_BASE_SHIFT),
Thomas Graf7e1e7762014-08-02 11:47:44 +0200918 * };
919 *
920 * Configuration Example 2: Variable length keys
921 * struct test_obj {
922 * [...]
923 * struct rhash_head node;
924 * };
925 *
Patrick McHardy49f7b332015-03-25 13:07:45 +0000926 * u32 my_hash_fn(const void *data, u32 len, u32 seed)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200927 * {
928 * struct test_obj *obj = data;
929 *
930 * return [... hash ...];
931 * }
932 *
933 * struct rhashtable_params params = {
934 * .head_offset = offsetof(struct test_obj, node),
Daniel Borkmann87545892014-12-10 16:33:11 +0100935 * .hashfn = jhash,
Thomas Graf7e1e7762014-08-02 11:47:44 +0200936 * .obj_hashfn = my_hash_fn,
Thomas Graf7e1e7762014-08-02 11:47:44 +0200937 * };
938 */
Herbert Xu488fb86e2015-03-20 21:56:59 +1100939int rhashtable_init(struct rhashtable *ht,
940 const struct rhashtable_params *params)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200941{
942 struct bucket_table *tbl;
943 size_t size;
944
945 size = HASH_DEFAULT_SIZE;
946
Herbert Xu31ccde22015-03-24 00:50:21 +1100947 if ((!params->key_len && !params->obj_hashfn) ||
Herbert Xu02fd97c2015-03-20 21:57:00 +1100948 (params->obj_hashfn && !params->obj_cmpfn))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200949 return -EINVAL;
950
Thomas Graff89bd6f2015-01-02 23:00:21 +0100951 if (params->nulls_base && params->nulls_base < (1U << RHT_BASE_SHIFT))
952 return -EINVAL;
953
Thomas Graf97defe12015-01-02 23:00:20 +0100954 memset(ht, 0, sizeof(*ht));
955 mutex_init(&ht->mutex);
Herbert Xuba7c95e2015-03-24 09:53:17 +1100956 spin_lock_init(&ht->lock);
Thomas Graf97defe12015-01-02 23:00:20 +0100957 memcpy(&ht->p, params, sizeof(*params));
958
Thomas Grafa998f712015-03-19 22:31:13 +0000959 if (params->min_size)
960 ht->p.min_size = roundup_pow_of_two(params->min_size);
961
962 if (params->max_size)
963 ht->p.max_size = rounddown_pow_of_two(params->max_size);
964
Herbert Xu07ee0722015-05-15 11:30:47 +0800965 if (params->insecure_max_entries)
966 ht->p.insecure_max_entries =
967 rounddown_pow_of_two(params->insecure_max_entries);
968 else
969 ht->p.insecure_max_entries = ht->p.max_size * 2;
970
Herbert Xu488fb86e2015-03-20 21:56:59 +1100971 ht->p.min_size = max(ht->p.min_size, HASH_MIN_SIZE);
Thomas Grafa998f712015-03-19 22:31:13 +0000972
Herbert Xu3a324602015-12-16 18:13:14 +0800973 if (params->nelem_hint)
974 size = rounded_hashtable_size(&ht->p);
975
Herbert Xu27ed44a2015-03-24 13:37:30 +1100976 /* The maximum (not average) chain length grows with the
977 * size of the hash table, at a rate of (log N)/(log log N).
978 * The value of 16 is selected so that even if the hash
979 * table grew to 2^32 you would not expect the maximum
980 * chain length to exceed it unless we are under attack
981 * (or extremely unlucky).
982 *
983 * As this limit is only to detect attacks, we don't need
984 * to set it to a lower value as you'd need the chain
985 * length to vastly exceed 16 to have any real effect
986 * on the system.
987 */
Herbert Xuccd57b12015-03-24 00:50:28 +1100988 if (!params->insecure_elasticity)
989 ht->elasticity = 16;
990
Thomas Graf97defe12015-01-02 23:00:20 +0100991 if (params->locks_mul)
992 ht->p.locks_mul = roundup_pow_of_two(params->locks_mul);
993 else
994 ht->p.locks_mul = BUCKET_LOCKS_PER_CPU;
995
Herbert Xu31ccde22015-03-24 00:50:21 +1100996 ht->key_len = ht->p.key_len;
997 if (!params->hashfn) {
998 ht->p.hashfn = jhash;
999
1000 if (!(ht->key_len & (sizeof(u32) - 1))) {
1001 ht->key_len /= sizeof(u32);
1002 ht->p.hashfn = rhashtable_jhash2;
1003 }
1004 }
1005
Herbert Xub9ecfda2015-03-24 00:50:27 +11001006 tbl = bucket_table_alloc(ht, size, GFP_KERNEL);
Thomas Graf7e1e7762014-08-02 11:47:44 +02001007 if (tbl == NULL)
1008 return -ENOMEM;
1009
Ying Xue545a1482015-01-07 13:41:57 +08001010 atomic_set(&ht->nelems, 0);
Daniel Borkmanna5b68462015-03-12 15:28:40 +01001011
Thomas Graf7e1e7762014-08-02 11:47:44 +02001012 RCU_INIT_POINTER(ht->tbl, tbl);
1013
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +01001014 INIT_WORK(&ht->run_work, rht_deferred_worker);
Thomas Graf97defe12015-01-02 23:00:20 +01001015
Thomas Graf7e1e7762014-08-02 11:47:44 +02001016 return 0;
1017}
1018EXPORT_SYMBOL_GPL(rhashtable_init);
1019
1020/**
Herbert Xuca268932016-09-19 19:00:09 +08001021 * rhltable_init - initialize a new hash list table
1022 * @hlt: hash list table to be initialized
1023 * @params: configuration parameters
1024 *
1025 * Initializes a new hash list table.
1026 *
1027 * See documentation for rhashtable_init.
1028 */
1029int rhltable_init(struct rhltable *hlt, const struct rhashtable_params *params)
1030{
1031 int err;
1032
1033 /* No rhlist NULLs marking for now. */
1034 if (params->nulls_base)
1035 return -EINVAL;
1036
1037 err = rhashtable_init(&hlt->ht, params);
1038 hlt->ht.rhlist = true;
1039 return err;
1040}
1041EXPORT_SYMBOL_GPL(rhltable_init);
1042
1043static void rhashtable_free_one(struct rhashtable *ht, struct rhash_head *obj,
1044 void (*free_fn)(void *ptr, void *arg),
1045 void *arg)
1046{
1047 struct rhlist_head *list;
1048
1049 if (!ht->rhlist) {
1050 free_fn(rht_obj(ht, obj), arg);
1051 return;
1052 }
1053
1054 list = container_of(obj, struct rhlist_head, rhead);
1055 do {
1056 obj = &list->rhead;
1057 list = rht_dereference(list->next, ht);
1058 free_fn(rht_obj(ht, obj), arg);
1059 } while (list);
1060}
1061
1062/**
Thomas Graf6b6f3022015-03-24 14:18:20 +01001063 * rhashtable_free_and_destroy - free elements and destroy hash table
Thomas Graf7e1e7762014-08-02 11:47:44 +02001064 * @ht: the hash table to destroy
Thomas Graf6b6f3022015-03-24 14:18:20 +01001065 * @free_fn: callback to release resources of element
1066 * @arg: pointer passed to free_fn
Thomas Graf7e1e7762014-08-02 11:47:44 +02001067 *
Thomas Graf6b6f3022015-03-24 14:18:20 +01001068 * Stops an eventual async resize. If defined, invokes free_fn for each
1069 * element to releasal resources. Please note that RCU protected
1070 * readers may still be accessing the elements. Releasing of resources
1071 * must occur in a compatible manner. Then frees the bucket array.
1072 *
1073 * This function will eventually sleep to wait for an async resize
1074 * to complete. The caller is responsible that no further write operations
1075 * occurs in parallel.
Thomas Graf7e1e7762014-08-02 11:47:44 +02001076 */
Thomas Graf6b6f3022015-03-24 14:18:20 +01001077void rhashtable_free_and_destroy(struct rhashtable *ht,
1078 void (*free_fn)(void *ptr, void *arg),
1079 void *arg)
Thomas Graf7e1e7762014-08-02 11:47:44 +02001080{
Herbert Xuda204202017-02-11 19:26:47 +08001081 struct bucket_table *tbl;
Thomas Graf6b6f3022015-03-24 14:18:20 +01001082 unsigned int i;
Thomas Graf97defe12015-01-02 23:00:20 +01001083
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +01001084 cancel_work_sync(&ht->run_work);
Ying Xue57699a42015-01-16 11:13:09 +08001085
Thomas Graf97defe12015-01-02 23:00:20 +01001086 mutex_lock(&ht->mutex);
Thomas Graf6b6f3022015-03-24 14:18:20 +01001087 tbl = rht_dereference(ht->tbl, ht);
1088 if (free_fn) {
1089 for (i = 0; i < tbl->size; i++) {
1090 struct rhash_head *pos, *next;
1091
Herbert Xuda204202017-02-11 19:26:47 +08001092 for (pos = rht_dereference(*rht_bucket(tbl, i), ht),
Thomas Graf6b6f3022015-03-24 14:18:20 +01001093 next = !rht_is_a_nulls(pos) ?
1094 rht_dereference(pos->next, ht) : NULL;
1095 !rht_is_a_nulls(pos);
1096 pos = next,
1097 next = !rht_is_a_nulls(pos) ?
1098 rht_dereference(pos->next, ht) : NULL)
Herbert Xuca268932016-09-19 19:00:09 +08001099 rhashtable_free_one(ht, pos, free_fn, arg);
Thomas Graf6b6f3022015-03-24 14:18:20 +01001100 }
1101 }
1102
1103 bucket_table_free(tbl);
Thomas Graf97defe12015-01-02 23:00:20 +01001104 mutex_unlock(&ht->mutex);
Thomas Graf7e1e7762014-08-02 11:47:44 +02001105}
Thomas Graf6b6f3022015-03-24 14:18:20 +01001106EXPORT_SYMBOL_GPL(rhashtable_free_and_destroy);
1107
1108void rhashtable_destroy(struct rhashtable *ht)
1109{
1110 return rhashtable_free_and_destroy(ht, NULL, NULL);
1111}
Thomas Graf7e1e7762014-08-02 11:47:44 +02001112EXPORT_SYMBOL_GPL(rhashtable_destroy);
Herbert Xuda204202017-02-11 19:26:47 +08001113
1114struct rhash_head __rcu **rht_bucket_nested(const struct bucket_table *tbl,
1115 unsigned int hash)
1116{
1117 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
1118 static struct rhash_head __rcu *rhnull =
1119 (struct rhash_head __rcu *)NULLS_MARKER(0);
1120 unsigned int index = hash & ((1 << tbl->nest) - 1);
1121 unsigned int size = tbl->size >> tbl->nest;
1122 unsigned int subhash = hash;
1123 union nested_table *ntbl;
1124
1125 ntbl = (union nested_table *)rcu_dereference_raw(tbl->buckets[0]);
1126 ntbl = rht_dereference_bucket(ntbl[index].table, tbl, hash);
1127 subhash >>= tbl->nest;
1128
1129 while (ntbl && size > (1 << shift)) {
1130 index = subhash & ((1 << shift) - 1);
1131 ntbl = rht_dereference_bucket(ntbl[index].table, tbl, hash);
1132 size >>= shift;
1133 subhash >>= shift;
1134 }
1135
1136 if (!ntbl)
1137 return &rhnull;
1138
1139 return &ntbl[subhash].bucket;
1140
1141}
1142EXPORT_SYMBOL_GPL(rht_bucket_nested);
1143
1144struct rhash_head __rcu **rht_bucket_nested_insert(struct rhashtable *ht,
1145 struct bucket_table *tbl,
1146 unsigned int hash)
1147{
1148 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
1149 unsigned int index = hash & ((1 << tbl->nest) - 1);
1150 unsigned int size = tbl->size >> tbl->nest;
1151 union nested_table *ntbl;
1152 unsigned int shifted;
1153 unsigned int nhash;
1154
1155 ntbl = (union nested_table *)rcu_dereference_raw(tbl->buckets[0]);
1156 hash >>= tbl->nest;
1157 nhash = index;
1158 shifted = tbl->nest;
1159 ntbl = nested_table_alloc(ht, &ntbl[index].table,
1160 size <= (1 << shift) ? shifted : 0, nhash);
1161
1162 while (ntbl && size > (1 << shift)) {
1163 index = hash & ((1 << shift) - 1);
1164 size >>= shift;
1165 hash >>= shift;
1166 nhash |= index << shifted;
1167 shifted += shift;
1168 ntbl = nested_table_alloc(ht, &ntbl[index].table,
1169 size <= (1 << shift) ? shifted : 0,
1170 nhash);
1171 }
1172
1173 if (!ntbl)
1174 return NULL;
1175
1176 return &ntbl[hash].bucket;
1177
1178}
1179EXPORT_SYMBOL_GPL(rht_bucket_nested_insert);