blob: bdb7e4cadf05caa43d2993df13fb4e727a14154a [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Thomas Graf7e1e7762014-08-02 11:47:44 +02002/*
3 * Resizable, Scalable, Concurrent Hash Table
4 *
Herbert Xu02fd97c2015-03-20 21:57:00 +11005 * Copyright (c) 2015 Herbert Xu <herbert@gondor.apana.org.au>
Thomas Grafa5ec68e2015-02-05 02:03:32 +01006 * Copyright (c) 2014-2015 Thomas Graf <tgraf@suug.ch>
Thomas Graf7e1e7762014-08-02 11:47:44 +02007 * Copyright (c) 2008-2014 Patrick McHardy <kaber@trash.net>
8 *
Thomas Graf7e1e7762014-08-02 11:47:44 +02009 * Code partially derived from nft_hash
Herbert Xu02fd97c2015-03-20 21:57:00 +110010 * Rewritten with rehash code from br_multicast plus single list
11 * pointer as suggested by Josh Triplett
Thomas Graf7e1e7762014-08-02 11:47:44 +020012 */
13
Herbert Xu07ee0722015-05-15 11:30:47 +080014#include <linux/atomic.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020015#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/log2.h>
Eric Dumazet5beb5c92015-02-26 07:20:34 -080018#include <linux/sched.h>
Ingo Molnarb2d09102017-02-04 01:27:20 +010019#include <linux/rculist.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020020#include <linux/slab.h>
21#include <linux/vmalloc.h>
22#include <linux/mm.h>
Daniel Borkmann87545892014-12-10 16:33:11 +010023#include <linux/jhash.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020024#include <linux/random.h>
25#include <linux/rhashtable.h>
Stephen Rothwell61d7b092015-02-09 14:04:03 +110026#include <linux/err.h>
Hauke Mehrtens6d795412015-06-06 22:07:23 +020027#include <linux/export.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020028
29#define HASH_DEFAULT_SIZE 64UL
Herbert Xuc2e213c2015-03-18 20:01:16 +110030#define HASH_MIN_SIZE 4U
Thomas Graf97defe12015-01-02 23:00:20 +010031
Herbert Xuda204202017-02-11 19:26:47 +080032union nested_table {
33 union nested_table __rcu *table;
Herbert Xuba6306e2019-05-16 15:19:46 +080034 struct rhash_lock_head *bucket;
Herbert Xuda204202017-02-11 19:26:47 +080035};
36
Herbert Xu988dfbd2015-03-10 09:27:55 +110037static u32 head_hashfn(struct rhashtable *ht,
Thomas Graf8d24c0b2015-01-02 23:00:14 +010038 const struct bucket_table *tbl,
39 const struct rhash_head *he)
Thomas Graf7e1e7762014-08-02 11:47:44 +020040{
Herbert Xu02fd97c2015-03-20 21:57:00 +110041 return rht_head_hashfn(ht, tbl, he, ht->p);
Thomas Graf7e1e7762014-08-02 11:47:44 +020042}
43
Thomas Grafa03eaec2015-02-05 02:03:34 +010044#ifdef CONFIG_PROVE_LOCKING
Thomas Grafa03eaec2015-02-05 02:03:34 +010045#define ASSERT_RHT_MUTEX(HT) BUG_ON(!lockdep_rht_mutex_is_held(HT))
Thomas Grafa03eaec2015-02-05 02:03:34 +010046
47int lockdep_rht_mutex_is_held(struct rhashtable *ht)
48{
49 return (debug_locks) ? lockdep_is_held(&ht->mutex) : 1;
50}
51EXPORT_SYMBOL_GPL(lockdep_rht_mutex_is_held);
52
53int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash)
54{
NeilBrown8f0db012019-04-02 10:07:45 +110055 if (!debug_locks)
56 return 1;
57 if (unlikely(tbl->nest))
58 return 1;
NeilBrownca0b7092019-04-12 11:52:08 +100059 return bit_spin_is_locked(0, (unsigned long *)&tbl->buckets[hash]);
Thomas Grafa03eaec2015-02-05 02:03:34 +010060}
61EXPORT_SYMBOL_GPL(lockdep_rht_bucket_is_held);
62#else
63#define ASSERT_RHT_MUTEX(HT)
Thomas Grafa03eaec2015-02-05 02:03:34 +010064#endif
65
Herbert Xuda204202017-02-11 19:26:47 +080066static void nested_table_free(union nested_table *ntbl, unsigned int size)
67{
68 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
69 const unsigned int len = 1 << shift;
70 unsigned int i;
71
72 ntbl = rcu_dereference_raw(ntbl->table);
73 if (!ntbl)
74 return;
75
76 if (size > len) {
77 size >>= shift;
78 for (i = 0; i < len; i++)
79 nested_table_free(ntbl + i, size);
80 }
81
82 kfree(ntbl);
83}
84
85static void nested_bucket_table_free(const struct bucket_table *tbl)
86{
87 unsigned int size = tbl->size >> tbl->nest;
88 unsigned int len = 1 << tbl->nest;
89 union nested_table *ntbl;
90 unsigned int i;
91
92 ntbl = (union nested_table *)rcu_dereference_raw(tbl->buckets[0]);
93
94 for (i = 0; i < len; i++)
95 nested_table_free(ntbl + i, size);
96
97 kfree(ntbl);
98}
99
Thomas Graf97defe12015-01-02 23:00:20 +0100100static void bucket_table_free(const struct bucket_table *tbl)
101{
Herbert Xuda204202017-02-11 19:26:47 +0800102 if (tbl->nest)
103 nested_bucket_table_free(tbl);
104
Thomas Graf97defe12015-01-02 23:00:20 +0100105 kvfree(tbl);
106}
107
Herbert Xu9d901bc2015-03-14 13:57:23 +1100108static void bucket_table_free_rcu(struct rcu_head *head)
109{
110 bucket_table_free(container_of(head, struct bucket_table, rcu));
111}
112
Herbert Xuda204202017-02-11 19:26:47 +0800113static union nested_table *nested_table_alloc(struct rhashtable *ht,
114 union nested_table __rcu **prev,
NeilBrown5af68ef2018-06-18 12:52:50 +1000115 bool leaf)
Herbert Xuda204202017-02-11 19:26:47 +0800116{
117 union nested_table *ntbl;
118 int i;
119
120 ntbl = rcu_dereference(*prev);
121 if (ntbl)
122 return ntbl;
123
124 ntbl = kzalloc(PAGE_SIZE, GFP_ATOMIC);
125
NeilBrown5af68ef2018-06-18 12:52:50 +1000126 if (ntbl && leaf) {
127 for (i = 0; i < PAGE_SIZE / sizeof(ntbl[0]); i++)
NeilBrown9b4f64a2018-06-18 12:52:50 +1000128 INIT_RHT_NULLS_HEAD(ntbl[i].bucket);
Herbert Xuda204202017-02-11 19:26:47 +0800129 }
130
Herbert Xue9458a42019-05-16 15:19:48 +0800131 if (cmpxchg((union nested_table **)prev, NULL, ntbl) == NULL)
NeilBrown7a41c292019-04-02 10:07:45 +1100132 return ntbl;
133 /* Raced with another thread. */
134 kfree(ntbl);
135 return rcu_dereference(*prev);
Herbert Xuda204202017-02-11 19:26:47 +0800136}
137
138static struct bucket_table *nested_bucket_table_alloc(struct rhashtable *ht,
139 size_t nbuckets,
140 gfp_t gfp)
141{
142 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
143 struct bucket_table *tbl;
144 size_t size;
145
146 if (nbuckets < (1 << (shift + 1)))
147 return NULL;
148
149 size = sizeof(*tbl) + sizeof(tbl->buckets[0]);
150
151 tbl = kzalloc(size, gfp);
152 if (!tbl)
153 return NULL;
154
155 if (!nested_table_alloc(ht, (union nested_table __rcu **)tbl->buckets,
NeilBrown5af68ef2018-06-18 12:52:50 +1000156 false)) {
Herbert Xuda204202017-02-11 19:26:47 +0800157 kfree(tbl);
158 return NULL;
159 }
160
161 tbl->nest = (ilog2(nbuckets) - 1) % shift + 1;
162
163 return tbl;
164}
165
Thomas Graf97defe12015-01-02 23:00:20 +0100166static struct bucket_table *bucket_table_alloc(struct rhashtable *ht,
Herbert Xub9ecfda2015-03-24 00:50:27 +1100167 size_t nbuckets,
168 gfp_t gfp)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200169{
Daniel Borkmanneb6d1ab2015-02-20 00:53:38 +0100170 struct bucket_table *tbl = NULL;
NeilBrown8f0db012019-04-02 10:07:45 +1100171 size_t size;
Thomas Graff89bd6f2015-01-02 23:00:21 +0100172 int i;
NeilBrown149212f2019-04-02 10:07:45 +1100173 static struct lock_class_key __key;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200174
Gustavo A. R. Silvac252aa32019-04-11 18:43:06 -0500175 tbl = kvzalloc(struct_size(tbl, buckets, nbuckets), gfp);
Herbert Xuda204202017-02-11 19:26:47 +0800176
177 size = nbuckets;
178
Davidlohr Bueso2d22ecf2018-08-21 22:01:48 -0700179 if (tbl == NULL && (gfp & ~__GFP_NOFAIL) != GFP_KERNEL) {
Herbert Xuda204202017-02-11 19:26:47 +0800180 tbl = nested_bucket_table_alloc(ht, nbuckets, gfp);
181 nbuckets = 0;
182 }
Davidlohr Bueso2d22ecf2018-08-21 22:01:48 -0700183
Thomas Graf7e1e7762014-08-02 11:47:44 +0200184 if (tbl == NULL)
185 return NULL;
186
NeilBrown149212f2019-04-02 10:07:45 +1100187 lockdep_init_map(&tbl->dep_map, "rhashtable_bucket", &__key, 0);
188
Herbert Xuda204202017-02-11 19:26:47 +0800189 tbl->size = size;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200190
NeilBrown4feb7c72019-03-21 14:42:40 +1100191 rcu_head_init(&tbl->rcu);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100192 INIT_LIST_HEAD(&tbl->walkers);
193
Jason A. Donenfeldd48ad082017-06-07 22:47:13 -0400194 tbl->hash_rnd = get_random_u32();
Herbert Xu5269b532015-03-14 13:57:22 +1100195
Thomas Graff89bd6f2015-01-02 23:00:21 +0100196 for (i = 0; i < nbuckets; i++)
NeilBrown9b4f64a2018-06-18 12:52:50 +1000197 INIT_RHT_NULLS_HEAD(tbl->buckets[i]);
Thomas Graff89bd6f2015-01-02 23:00:21 +0100198
Thomas Graf97defe12015-01-02 23:00:20 +0100199 return tbl;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200200}
201
Herbert Xub8244782015-03-24 00:50:26 +1100202static struct bucket_table *rhashtable_last_table(struct rhashtable *ht,
203 struct bucket_table *tbl)
204{
205 struct bucket_table *new_tbl;
206
207 do {
208 new_tbl = tbl;
209 tbl = rht_dereference_rcu(tbl->future_tbl, ht);
210 } while (tbl);
211
212 return new_tbl;
213}
214
NeilBrown8f0db012019-04-02 10:07:45 +1100215static int rhashtable_rehash_one(struct rhashtable *ht,
Herbert Xuba6306e2019-05-16 15:19:46 +0800216 struct rhash_lock_head **bkt,
NeilBrown8f0db012019-04-02 10:07:45 +1100217 unsigned int old_hash)
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100218{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100219 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
NeilBrownc0690012018-06-18 12:52:50 +1000220 struct bucket_table *new_tbl = rhashtable_last_table(ht, old_tbl);
Herbert Xuda204202017-02-11 19:26:47 +0800221 int err = -EAGAIN;
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100222 struct rhash_head *head, *next, *entry;
NeilBrowne4edbe32019-04-12 11:52:07 +1000223 struct rhash_head __rcu **pprev = NULL;
Thomas Graf299e5c32015-03-24 14:18:17 +0100224 unsigned int new_hash;
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100225
Herbert Xuda204202017-02-11 19:26:47 +0800226 if (new_tbl->nest)
227 goto out;
228
229 err = -ENOENT;
230
NeilBrownadc6a3a2019-04-12 11:52:08 +1000231 rht_for_each_from(entry, rht_ptr(bkt, old_tbl, old_hash),
232 old_tbl, old_hash) {
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100233 err = 0;
234 next = rht_dereference_bucket(entry->next, old_tbl, old_hash);
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100235
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100236 if (rht_is_a_nulls(next))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200237 break;
Thomas Graf97defe12015-01-02 23:00:20 +0100238
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100239 pprev = &entry->next;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200240 }
241
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100242 if (err)
243 goto out;
Thomas Graf97defe12015-01-02 23:00:20 +0100244
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100245 new_hash = head_hashfn(ht, new_tbl, entry);
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100246
NeilBrown149212f2019-04-02 10:07:45 +1100247 rht_lock_nested(new_tbl, &new_tbl->buckets[new_hash], SINGLE_DEPTH_NESTING);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100248
NeilBrownadc6a3a2019-04-12 11:52:08 +1000249 head = rht_ptr(new_tbl->buckets + new_hash, new_tbl, new_hash);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100250
Dmitriy Vyukov7def0f92015-09-22 10:51:52 +0200251 RCU_INIT_POINTER(entry->next, head);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100252
NeilBrown149212f2019-04-02 10:07:45 +1100253 rht_assign_unlock(new_tbl, &new_tbl->buckets[new_hash], entry);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100254
NeilBrown8f0db012019-04-02 10:07:45 +1100255 if (pprev)
256 rcu_assign_pointer(*pprev, next);
257 else
258 /* Need to preserved the bit lock. */
NeilBrownf4712b42019-04-12 11:52:08 +1000259 rht_assign_locked(bkt, next);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100260
261out:
262 return err;
Thomas Graf97defe12015-01-02 23:00:20 +0100263}
264
Herbert Xuda204202017-02-11 19:26:47 +0800265static int rhashtable_rehash_chain(struct rhashtable *ht,
Thomas Graf299e5c32015-03-24 14:18:17 +0100266 unsigned int old_hash)
Thomas Graf97defe12015-01-02 23:00:20 +0100267{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100268 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
Herbert Xuba6306e2019-05-16 15:19:46 +0800269 struct rhash_lock_head **bkt = rht_bucket_var(old_tbl, old_hash);
Herbert Xuda204202017-02-11 19:26:47 +0800270 int err;
Thomas Graf7cd10db2015-02-05 02:03:35 +0100271
NeilBrown8f0db012019-04-02 10:07:45 +1100272 if (!bkt)
273 return 0;
NeilBrown149212f2019-04-02 10:07:45 +1100274 rht_lock(old_tbl, bkt);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100275
NeilBrown8f0db012019-04-02 10:07:45 +1100276 while (!(err = rhashtable_rehash_one(ht, bkt, old_hash)))
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100277 ;
Herbert Xuda204202017-02-11 19:26:47 +0800278
NeilBrown4feb7c72019-03-21 14:42:40 +1100279 if (err == -ENOENT)
Herbert Xuda204202017-02-11 19:26:47 +0800280 err = 0;
NeilBrown149212f2019-04-02 10:07:45 +1100281 rht_unlock(old_tbl, bkt);
Herbert Xuda204202017-02-11 19:26:47 +0800282
283 return err;
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100284}
285
Herbert Xub8244782015-03-24 00:50:26 +1100286static int rhashtable_rehash_attach(struct rhashtable *ht,
287 struct bucket_table *old_tbl,
288 struct bucket_table *new_tbl)
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100289{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100290 /* Make insertions go into the new, empty table right away. Deletions
291 * and lookups will be attempted in both tables until we synchronize.
NeilBrown0ad66442018-06-18 12:52:50 +1000292 * As cmpxchg() provides strong barriers, we do not need
293 * rcu_assign_pointer().
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100294 */
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100295
Herbert Xue9458a42019-05-16 15:19:48 +0800296 if (cmpxchg((struct bucket_table **)&old_tbl->future_tbl, NULL,
297 new_tbl) != NULL)
NeilBrown0ad66442018-06-18 12:52:50 +1000298 return -EEXIST;
Herbert Xub8244782015-03-24 00:50:26 +1100299
300 return 0;
301}
302
303static int rhashtable_rehash_table(struct rhashtable *ht)
304{
305 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
306 struct bucket_table *new_tbl;
307 struct rhashtable_walker *walker;
Thomas Graf299e5c32015-03-24 14:18:17 +0100308 unsigned int old_hash;
Herbert Xuda204202017-02-11 19:26:47 +0800309 int err;
Herbert Xub8244782015-03-24 00:50:26 +1100310
311 new_tbl = rht_dereference(old_tbl->future_tbl, ht);
312 if (!new_tbl)
313 return 0;
314
Herbert Xuda204202017-02-11 19:26:47 +0800315 for (old_hash = 0; old_hash < old_tbl->size; old_hash++) {
316 err = rhashtable_rehash_chain(ht, old_hash);
317 if (err)
318 return err;
Eric Dumazetae6da1f2018-03-31 12:58:48 -0700319 cond_resched();
Herbert Xuda204202017-02-11 19:26:47 +0800320 }
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100321
322 /* Publish the new table pointer. */
323 rcu_assign_pointer(ht->tbl, new_tbl);
324
Herbert Xuba7c95e2015-03-24 09:53:17 +1100325 spin_lock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100326 list_for_each_entry(walker, &old_tbl->walkers, list)
327 walker->tbl = NULL;
328
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100329 /* Wait for readers. All new readers will see the new
330 * table, and thus no references to the old table will
331 * remain.
NeilBrown4feb7c72019-03-21 14:42:40 +1100332 * We do this inside the locked region so that
333 * rhashtable_walk_stop() can use rcu_head_after_call_rcu()
334 * to check if it should not re-link the table.
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100335 */
Herbert Xu9d901bc2015-03-14 13:57:23 +1100336 call_rcu(&old_tbl->rcu, bucket_table_free_rcu);
NeilBrown4feb7c72019-03-21 14:42:40 +1100337 spin_unlock(&ht->lock);
Herbert Xub8244782015-03-24 00:50:26 +1100338
339 return rht_dereference(new_tbl->future_tbl, ht) ? -EAGAIN : 0;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200340}
341
Herbert Xuda204202017-02-11 19:26:47 +0800342static int rhashtable_rehash_alloc(struct rhashtable *ht,
343 struct bucket_table *old_tbl,
344 unsigned int size)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200345{
Herbert Xuda204202017-02-11 19:26:47 +0800346 struct bucket_table *new_tbl;
Herbert Xub8244782015-03-24 00:50:26 +1100347 int err;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200348
349 ASSERT_RHT_MUTEX(ht);
350
Herbert Xuda204202017-02-11 19:26:47 +0800351 new_tbl = bucket_table_alloc(ht, size, GFP_KERNEL);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200352 if (new_tbl == NULL)
353 return -ENOMEM;
354
Herbert Xub8244782015-03-24 00:50:26 +1100355 err = rhashtable_rehash_attach(ht, old_tbl, new_tbl);
356 if (err)
357 bucket_table_free(new_tbl);
358
359 return err;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200360}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200361
362/**
363 * rhashtable_shrink - Shrink hash table while allowing concurrent lookups
364 * @ht: the hash table to shrink
Thomas Graf7e1e7762014-08-02 11:47:44 +0200365 *
Herbert Xu18093d12015-03-24 00:50:25 +1100366 * This function shrinks the hash table to fit, i.e., the smallest
367 * size would not cause it to expand right away automatically.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200368 *
Thomas Graf97defe12015-01-02 23:00:20 +0100369 * The caller must ensure that no concurrent resizing occurs by holding
370 * ht->mutex.
371 *
Thomas Graf7e1e7762014-08-02 11:47:44 +0200372 * The caller must ensure that no concurrent table mutations take place.
373 * It is however valid to have concurrent lookups if they are RCU protected.
Thomas Graf97defe12015-01-02 23:00:20 +0100374 *
375 * It is valid to have concurrent insertions and deletions protected by per
376 * bucket locks or concurrent RCU protected lookups and traversals.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200377 */
Herbert Xub8244782015-03-24 00:50:26 +1100378static int rhashtable_shrink(struct rhashtable *ht)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200379{
Herbert Xuda204202017-02-11 19:26:47 +0800380 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
Vegard Nossum12311952016-08-12 20:10:44 +0200381 unsigned int nelems = atomic_read(&ht->nelems);
382 unsigned int size = 0;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200383
Vegard Nossum12311952016-08-12 20:10:44 +0200384 if (nelems)
385 size = roundup_pow_of_two(nelems * 3 / 2);
Herbert Xu18093d12015-03-24 00:50:25 +1100386 if (size < ht->p.min_size)
387 size = ht->p.min_size;
388
389 if (old_tbl->size <= size)
390 return 0;
391
Herbert Xub8244782015-03-24 00:50:26 +1100392 if (rht_dereference(old_tbl->future_tbl, ht))
393 return -EEXIST;
394
Herbert Xuda204202017-02-11 19:26:47 +0800395 return rhashtable_rehash_alloc(ht, old_tbl, size);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200396}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200397
Thomas Graf97defe12015-01-02 23:00:20 +0100398static void rht_deferred_worker(struct work_struct *work)
399{
400 struct rhashtable *ht;
401 struct bucket_table *tbl;
Herbert Xub8244782015-03-24 00:50:26 +1100402 int err = 0;
Thomas Graf97defe12015-01-02 23:00:20 +0100403
Ying Xue57699a42015-01-16 11:13:09 +0800404 ht = container_of(work, struct rhashtable, run_work);
Thomas Graf97defe12015-01-02 23:00:20 +0100405 mutex_lock(&ht->mutex);
Herbert Xu28134a52015-02-04 07:33:22 +1100406
Thomas Graf97defe12015-01-02 23:00:20 +0100407 tbl = rht_dereference(ht->tbl, ht);
Herbert Xub8244782015-03-24 00:50:26 +1100408 tbl = rhashtable_last_table(ht, tbl);
Thomas Graf97defe12015-01-02 23:00:20 +0100409
Daniel Borkmanna5b68462015-03-12 15:28:40 +0100410 if (rht_grow_above_75(ht, tbl))
Herbert Xuda204202017-02-11 19:26:47 +0800411 err = rhashtable_rehash_alloc(ht, tbl, tbl->size * 2);
Thomas Grafb5e2c152015-03-24 20:42:19 +0000412 else if (ht->p.automatic_shrinking && rht_shrink_below_30(ht, tbl))
Herbert Xuda204202017-02-11 19:26:47 +0800413 err = rhashtable_shrink(ht);
414 else if (tbl->nest)
415 err = rhashtable_rehash_alloc(ht, tbl, tbl->size);
Herbert Xub8244782015-03-24 00:50:26 +1100416
Herbert Xu408f13e2019-03-21 09:39:52 +0800417 if (!err || err == -EEXIST) {
418 int nerr;
419
420 nerr = rhashtable_rehash_table(ht);
421 err = err ?: nerr;
422 }
Herbert Xub8244782015-03-24 00:50:26 +1100423
Thomas Graf97defe12015-01-02 23:00:20 +0100424 mutex_unlock(&ht->mutex);
Herbert Xub8244782015-03-24 00:50:26 +1100425
426 if (err)
427 schedule_work(&ht->run_work);
Thomas Graf97defe12015-01-02 23:00:20 +0100428}
429
Herbert Xuca268932016-09-19 19:00:09 +0800430static int rhashtable_insert_rehash(struct rhashtable *ht,
431 struct bucket_table *tbl)
Herbert Xuccd57b12015-03-24 00:50:28 +1100432{
433 struct bucket_table *old_tbl;
434 struct bucket_table *new_tbl;
Herbert Xuccd57b12015-03-24 00:50:28 +1100435 unsigned int size;
436 int err;
437
438 old_tbl = rht_dereference_rcu(ht->tbl, ht);
Herbert Xuccd57b12015-03-24 00:50:28 +1100439
440 size = tbl->size;
441
Herbert Xu3cf92222015-12-03 20:41:29 +0800442 err = -EBUSY;
443
Herbert Xuccd57b12015-03-24 00:50:28 +1100444 if (rht_grow_above_75(ht, tbl))
445 size *= 2;
Thomas Grafa87b9eb2015-04-22 09:41:46 +0200446 /* Do not schedule more than one rehash */
447 else if (old_tbl != tbl)
Herbert Xu3cf92222015-12-03 20:41:29 +0800448 goto fail;
449
450 err = -ENOMEM;
Herbert Xuccd57b12015-03-24 00:50:28 +1100451
Davidlohr Bueso93f976b2018-08-21 22:01:45 -0700452 new_tbl = bucket_table_alloc(ht, size, GFP_ATOMIC | __GFP_NOWARN);
Herbert Xu3cf92222015-12-03 20:41:29 +0800453 if (new_tbl == NULL)
454 goto fail;
Herbert Xuccd57b12015-03-24 00:50:28 +1100455
456 err = rhashtable_rehash_attach(ht, tbl, new_tbl);
457 if (err) {
458 bucket_table_free(new_tbl);
459 if (err == -EEXIST)
460 err = 0;
461 } else
462 schedule_work(&ht->run_work);
463
464 return err;
Herbert Xu3cf92222015-12-03 20:41:29 +0800465
466fail:
467 /* Do not fail the insert if someone else did a rehash. */
NeilBrownc0690012018-06-18 12:52:50 +1000468 if (likely(rcu_access_pointer(tbl->future_tbl)))
Herbert Xu3cf92222015-12-03 20:41:29 +0800469 return 0;
470
471 /* Schedule async rehash to retry allocation in process context. */
472 if (err == -ENOMEM)
473 schedule_work(&ht->run_work);
474
475 return err;
Herbert Xuccd57b12015-03-24 00:50:28 +1100476}
Herbert Xuccd57b12015-03-24 00:50:28 +1100477
Herbert Xuca268932016-09-19 19:00:09 +0800478static void *rhashtable_lookup_one(struct rhashtable *ht,
Herbert Xuba6306e2019-05-16 15:19:46 +0800479 struct rhash_lock_head **bkt,
Herbert Xuca268932016-09-19 19:00:09 +0800480 struct bucket_table *tbl, unsigned int hash,
481 const void *key, struct rhash_head *obj)
Herbert Xu02fd97c2015-03-20 21:57:00 +1100482{
Herbert Xuca268932016-09-19 19:00:09 +0800483 struct rhashtable_compare_arg arg = {
484 .ht = ht,
485 .key = key,
486 };
NeilBrowne4edbe32019-04-12 11:52:07 +1000487 struct rhash_head __rcu **pprev = NULL;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100488 struct rhash_head *head;
Herbert Xuca268932016-09-19 19:00:09 +0800489 int elasticity;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100490
Florian Westphal5f8ddea2017-04-16 02:55:09 +0200491 elasticity = RHT_ELASTICITY;
NeilBrownadc6a3a2019-04-12 11:52:08 +1000492 rht_for_each_from(head, rht_ptr(bkt, tbl, hash), tbl, hash) {
Herbert Xuca268932016-09-19 19:00:09 +0800493 struct rhlist_head *list;
494 struct rhlist_head *plist;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100495
Herbert Xuca268932016-09-19 19:00:09 +0800496 elasticity--;
497 if (!key ||
498 (ht->p.obj_cmpfn ?
499 ht->p.obj_cmpfn(&arg, rht_obj(ht, head)) :
Paul Blakeyd3dcf8e2018-03-04 17:29:48 +0200500 rhashtable_compare(&arg, rht_obj(ht, head)))) {
501 pprev = &head->next;
Herbert Xuca268932016-09-19 19:00:09 +0800502 continue;
Paul Blakeyd3dcf8e2018-03-04 17:29:48 +0200503 }
Herbert Xuca268932016-09-19 19:00:09 +0800504
505 if (!ht->rhlist)
506 return rht_obj(ht, head);
507
508 list = container_of(obj, struct rhlist_head, rhead);
509 plist = container_of(head, struct rhlist_head, rhead);
510
511 RCU_INIT_POINTER(list->next, plist);
512 head = rht_dereference_bucket(head->next, tbl, hash);
513 RCU_INIT_POINTER(list->rhead.next, head);
NeilBrown8f0db012019-04-02 10:07:45 +1100514 if (pprev)
515 rcu_assign_pointer(*pprev, obj);
516 else
517 /* Need to preserve the bit lock */
NeilBrownf4712b42019-04-12 11:52:08 +1000518 rht_assign_locked(bkt, obj);
Herbert Xuca268932016-09-19 19:00:09 +0800519
520 return NULL;
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200521 }
Herbert Xu02fd97c2015-03-20 21:57:00 +1100522
Herbert Xuca268932016-09-19 19:00:09 +0800523 if (elasticity <= 0)
524 return ERR_PTR(-EAGAIN);
525
526 return ERR_PTR(-ENOENT);
527}
528
529static struct bucket_table *rhashtable_insert_one(struct rhashtable *ht,
Herbert Xuba6306e2019-05-16 15:19:46 +0800530 struct rhash_lock_head **bkt,
Herbert Xuca268932016-09-19 19:00:09 +0800531 struct bucket_table *tbl,
532 unsigned int hash,
533 struct rhash_head *obj,
534 void *data)
535{
536 struct bucket_table *new_tbl;
537 struct rhash_head *head;
538
539 if (!IS_ERR_OR_NULL(data))
540 return ERR_PTR(-EEXIST);
541
542 if (PTR_ERR(data) != -EAGAIN && PTR_ERR(data) != -ENOENT)
543 return ERR_CAST(data);
544
NeilBrownc0690012018-06-18 12:52:50 +1000545 new_tbl = rht_dereference_rcu(tbl->future_tbl, ht);
Herbert Xuca268932016-09-19 19:00:09 +0800546 if (new_tbl)
547 return new_tbl;
548
549 if (PTR_ERR(data) != -ENOENT)
550 return ERR_CAST(data);
551
Herbert Xu07ee0722015-05-15 11:30:47 +0800552 if (unlikely(rht_grow_above_max(ht, tbl)))
Herbert Xuca268932016-09-19 19:00:09 +0800553 return ERR_PTR(-E2BIG);
Herbert Xu07ee0722015-05-15 11:30:47 +0800554
Herbert Xuca268932016-09-19 19:00:09 +0800555 if (unlikely(rht_grow_above_100(ht, tbl)))
556 return ERR_PTR(-EAGAIN);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100557
NeilBrownadc6a3a2019-04-12 11:52:08 +1000558 head = rht_ptr(bkt, tbl, hash);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100559
560 RCU_INIT_POINTER(obj->next, head);
Herbert Xuca268932016-09-19 19:00:09 +0800561 if (ht->rhlist) {
562 struct rhlist_head *list;
563
564 list = container_of(obj, struct rhlist_head, rhead);
565 RCU_INIT_POINTER(list->next, NULL);
566 }
Herbert Xu02fd97c2015-03-20 21:57:00 +1100567
NeilBrown8f0db012019-04-02 10:07:45 +1100568 /* bkt is always the head of the list, so it holds
569 * the lock, which we need to preserve
570 */
NeilBrownf4712b42019-04-12 11:52:08 +1000571 rht_assign_locked(bkt, obj);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100572
573 atomic_inc(&ht->nelems);
Herbert Xuca268932016-09-19 19:00:09 +0800574 if (rht_grow_above_75(ht, tbl))
575 schedule_work(&ht->run_work);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100576
Herbert Xuca268932016-09-19 19:00:09 +0800577 return NULL;
578}
Herbert Xu02fd97c2015-03-20 21:57:00 +1100579
Herbert Xuca268932016-09-19 19:00:09 +0800580static void *rhashtable_try_insert(struct rhashtable *ht, const void *key,
581 struct rhash_head *obj)
582{
583 struct bucket_table *new_tbl;
584 struct bucket_table *tbl;
Herbert Xuba6306e2019-05-16 15:19:46 +0800585 struct rhash_lock_head **bkt;
Herbert Xuca268932016-09-19 19:00:09 +0800586 unsigned int hash;
Herbert Xuca268932016-09-19 19:00:09 +0800587 void *data;
588
NeilBrown4feb7c72019-03-21 14:42:40 +1100589 new_tbl = rcu_dereference(ht->tbl);
Herbert Xuca268932016-09-19 19:00:09 +0800590
NeilBrown4feb7c72019-03-21 14:42:40 +1100591 do {
Herbert Xuca268932016-09-19 19:00:09 +0800592 tbl = new_tbl;
593 hash = rht_head_hashfn(ht, tbl, obj, ht->p);
NeilBrown8f0db012019-04-02 10:07:45 +1100594 if (rcu_access_pointer(tbl->future_tbl))
595 /* Failure is OK */
596 bkt = rht_bucket_var(tbl, hash);
597 else
598 bkt = rht_bucket_insert(ht, tbl, hash);
599 if (bkt == NULL) {
600 new_tbl = rht_dereference_rcu(tbl->future_tbl, ht);
601 data = ERR_PTR(-EAGAIN);
602 } else {
NeilBrown149212f2019-04-02 10:07:45 +1100603 rht_lock(tbl, bkt);
NeilBrown8f0db012019-04-02 10:07:45 +1100604 data = rhashtable_lookup_one(ht, bkt, tbl,
605 hash, key, obj);
606 new_tbl = rhashtable_insert_one(ht, bkt, tbl,
607 hash, obj, data);
608 if (PTR_ERR(new_tbl) != -EEXIST)
609 data = ERR_CAST(new_tbl);
Herbert Xuca268932016-09-19 19:00:09 +0800610
NeilBrown149212f2019-04-02 10:07:45 +1100611 rht_unlock(tbl, bkt);
NeilBrown8f0db012019-04-02 10:07:45 +1100612 }
NeilBrown4feb7c72019-03-21 14:42:40 +1100613 } while (!IS_ERR_OR_NULL(new_tbl));
Herbert Xuca268932016-09-19 19:00:09 +0800614
615 if (PTR_ERR(data) == -EAGAIN)
616 data = ERR_PTR(rhashtable_insert_rehash(ht, tbl) ?:
617 -EAGAIN);
618
619 return data;
620}
621
622void *rhashtable_insert_slow(struct rhashtable *ht, const void *key,
623 struct rhash_head *obj)
624{
625 void *data;
626
627 do {
628 rcu_read_lock();
629 data = rhashtable_try_insert(ht, key, obj);
630 rcu_read_unlock();
631 } while (PTR_ERR(data) == -EAGAIN);
632
633 return data;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100634}
635EXPORT_SYMBOL_GPL(rhashtable_insert_slow);
636
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100637/**
Herbert Xu246779d2016-08-18 16:50:56 +0800638 * rhashtable_walk_enter - Initialise an iterator
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100639 * @ht: Table to walk over
640 * @iter: Hash table Iterator
641 *
642 * This function prepares a hash table walk.
643 *
644 * Note that if you restart a walk after rhashtable_walk_stop you
645 * may see the same object twice. Also, you may miss objects if
646 * there are removals in between rhashtable_walk_stop and the next
647 * call to rhashtable_walk_start.
648 *
649 * For a completely stable walk you should construct your own data
650 * structure outside the hash table.
651 *
NeilBrown82266e92018-04-24 08:29:13 +1000652 * This function may be called from any process context, including
653 * non-preemptable context, but cannot be called from softirq or
654 * hardirq context.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100655 *
Herbert Xu246779d2016-08-18 16:50:56 +0800656 * You must call rhashtable_walk_exit after this function returns.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100657 */
Herbert Xu246779d2016-08-18 16:50:56 +0800658void rhashtable_walk_enter(struct rhashtable *ht, struct rhashtable_iter *iter)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100659{
660 iter->ht = ht;
661 iter->p = NULL;
662 iter->slot = 0;
663 iter->skip = 0;
Tom Herbert2db54b42017-12-04 10:31:42 -0800664 iter->end_of_table = 0;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100665
Herbert Xuc6ff5262015-12-16 16:45:54 +0800666 spin_lock(&ht->lock);
Herbert Xu246779d2016-08-18 16:50:56 +0800667 iter->walker.tbl =
Herbert Xu179ccc02015-12-19 10:45:28 +0800668 rcu_dereference_protected(ht->tbl, lockdep_is_held(&ht->lock));
Herbert Xu246779d2016-08-18 16:50:56 +0800669 list_add(&iter->walker.list, &iter->walker.tbl->walkers);
Herbert Xuc6ff5262015-12-16 16:45:54 +0800670 spin_unlock(&ht->lock);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100671}
Herbert Xu246779d2016-08-18 16:50:56 +0800672EXPORT_SYMBOL_GPL(rhashtable_walk_enter);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100673
674/**
675 * rhashtable_walk_exit - Free an iterator
676 * @iter: Hash table Iterator
677 *
Herbert Xu6c4128f2019-02-14 22:03:27 +0800678 * This function frees resources allocated by rhashtable_walk_enter.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100679 */
680void rhashtable_walk_exit(struct rhashtable_iter *iter)
681{
Herbert Xuc6ff5262015-12-16 16:45:54 +0800682 spin_lock(&iter->ht->lock);
Herbert Xu246779d2016-08-18 16:50:56 +0800683 if (iter->walker.tbl)
684 list_del(&iter->walker.list);
Herbert Xuc6ff5262015-12-16 16:45:54 +0800685 spin_unlock(&iter->ht->lock);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100686}
687EXPORT_SYMBOL_GPL(rhashtable_walk_exit);
688
689/**
Tom Herbert97a6ec42017-12-04 10:31:41 -0800690 * rhashtable_walk_start_check - Start a hash table walk
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100691 * @iter: Hash table iterator
692 *
Andreas Gruenbacher06471692017-09-19 12:41:37 +0200693 * Start a hash table walk at the current iterator position. Note that we take
694 * the RCU lock in all cases including when we return an error. So you must
695 * always call rhashtable_walk_stop to clean up.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100696 *
697 * Returns zero if successful.
698 *
699 * Returns -EAGAIN if resize event occured. Note that the iterator
700 * will rewind back to the beginning and you may use it immediately
701 * by calling rhashtable_walk_next.
Tom Herbert97a6ec42017-12-04 10:31:41 -0800702 *
703 * rhashtable_walk_start is defined as an inline variant that returns
704 * void. This is preferred in cases where the caller would ignore
705 * resize events and always continue.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100706 */
Tom Herbert97a6ec42017-12-04 10:31:41 -0800707int rhashtable_walk_start_check(struct rhashtable_iter *iter)
Thomas Grafdb4374f2015-03-16 10:42:27 +0100708 __acquires(RCU)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100709{
Herbert Xueddee5ba2015-03-14 13:57:20 +1100710 struct rhashtable *ht = iter->ht;
NeilBrown5d240a82018-04-24 08:29:13 +1000711 bool rhlist = ht->rhlist;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100712
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100713 rcu_read_lock();
714
Herbert Xuc6ff5262015-12-16 16:45:54 +0800715 spin_lock(&ht->lock);
Herbert Xu246779d2016-08-18 16:50:56 +0800716 if (iter->walker.tbl)
717 list_del(&iter->walker.list);
Herbert Xuc6ff5262015-12-16 16:45:54 +0800718 spin_unlock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100719
NeilBrown5d240a82018-04-24 08:29:13 +1000720 if (iter->end_of_table)
721 return 0;
722 if (!iter->walker.tbl) {
Herbert Xu246779d2016-08-18 16:50:56 +0800723 iter->walker.tbl = rht_dereference_rcu(ht->tbl, ht);
NeilBrownb41cc042018-04-24 08:29:13 +1000724 iter->slot = 0;
725 iter->skip = 0;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100726 return -EAGAIN;
727 }
728
NeilBrown5d240a82018-04-24 08:29:13 +1000729 if (iter->p && !rhlist) {
730 /*
731 * We need to validate that 'p' is still in the table, and
732 * if so, update 'skip'
733 */
734 struct rhash_head *p;
735 int skip = 0;
736 rht_for_each_rcu(p, iter->walker.tbl, iter->slot) {
737 skip++;
738 if (p == iter->p) {
739 iter->skip = skip;
740 goto found;
741 }
742 }
743 iter->p = NULL;
744 } else if (iter->p && rhlist) {
745 /* Need to validate that 'list' is still in the table, and
746 * if so, update 'skip' and 'p'.
747 */
748 struct rhash_head *p;
749 struct rhlist_head *list;
750 int skip = 0;
751 rht_for_each_rcu(p, iter->walker.tbl, iter->slot) {
752 for (list = container_of(p, struct rhlist_head, rhead);
753 list;
754 list = rcu_dereference(list->next)) {
755 skip++;
756 if (list == iter->list) {
757 iter->p = p;
Rishabh Bhatnagarc643ecf2018-07-02 09:35:34 -0700758 iter->skip = skip;
NeilBrown5d240a82018-04-24 08:29:13 +1000759 goto found;
760 }
761 }
762 }
763 iter->p = NULL;
764 }
765found:
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100766 return 0;
767}
Tom Herbert97a6ec42017-12-04 10:31:41 -0800768EXPORT_SYMBOL_GPL(rhashtable_walk_start_check);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100769
770/**
Tom Herbert2db54b42017-12-04 10:31:42 -0800771 * __rhashtable_walk_find_next - Find the next element in a table (or the first
772 * one in case of a new walk).
773 *
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100774 * @iter: Hash table iterator
775 *
Tom Herbert2db54b42017-12-04 10:31:42 -0800776 * Returns the found object or NULL when the end of the table is reached.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100777 *
Tom Herbert2db54b42017-12-04 10:31:42 -0800778 * Returns -EAGAIN if resize event occurred.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100779 */
Tom Herbert2db54b42017-12-04 10:31:42 -0800780static void *__rhashtable_walk_find_next(struct rhashtable_iter *iter)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100781{
Herbert Xu246779d2016-08-18 16:50:56 +0800782 struct bucket_table *tbl = iter->walker.tbl;
Herbert Xuca268932016-09-19 19:00:09 +0800783 struct rhlist_head *list = iter->list;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100784 struct rhashtable *ht = iter->ht;
785 struct rhash_head *p = iter->p;
Herbert Xuca268932016-09-19 19:00:09 +0800786 bool rhlist = ht->rhlist;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100787
Tom Herbert2db54b42017-12-04 10:31:42 -0800788 if (!tbl)
789 return NULL;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100790
791 for (; iter->slot < tbl->size; iter->slot++) {
792 int skip = iter->skip;
793
794 rht_for_each_rcu(p, tbl, iter->slot) {
Herbert Xuca268932016-09-19 19:00:09 +0800795 if (rhlist) {
796 list = container_of(p, struct rhlist_head,
797 rhead);
798 do {
799 if (!skip)
800 goto next;
801 skip--;
802 list = rcu_dereference(list->next);
803 } while (list);
804
805 continue;
806 }
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100807 if (!skip)
808 break;
809 skip--;
810 }
811
812next:
813 if (!rht_is_a_nulls(p)) {
814 iter->skip++;
815 iter->p = p;
Herbert Xuca268932016-09-19 19:00:09 +0800816 iter->list = list;
817 return rht_obj(ht, rhlist ? &list->rhead : p);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100818 }
819
820 iter->skip = 0;
821 }
822
Phil Sutter142b9422015-07-06 15:51:20 +0200823 iter->p = NULL;
824
Herbert Xud88252f2015-03-24 00:50:19 +1100825 /* Ensure we see any new tables. */
826 smp_rmb();
827
Herbert Xu246779d2016-08-18 16:50:56 +0800828 iter->walker.tbl = rht_dereference_rcu(tbl->future_tbl, ht);
829 if (iter->walker.tbl) {
Herbert Xueddee5ba2015-03-14 13:57:20 +1100830 iter->slot = 0;
831 iter->skip = 0;
832 return ERR_PTR(-EAGAIN);
Tom Herbert2db54b42017-12-04 10:31:42 -0800833 } else {
834 iter->end_of_table = true;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100835 }
836
Thomas Grafc936a792015-05-05 02:22:53 +0200837 return NULL;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100838}
Tom Herbert2db54b42017-12-04 10:31:42 -0800839
840/**
841 * rhashtable_walk_next - Return the next object and advance the iterator
842 * @iter: Hash table iterator
843 *
844 * Note that you must call rhashtable_walk_stop when you are finished
845 * with the walk.
846 *
847 * Returns the next object or NULL when the end of the table is reached.
848 *
849 * Returns -EAGAIN if resize event occurred. Note that the iterator
850 * will rewind back to the beginning and you may continue to use it.
851 */
852void *rhashtable_walk_next(struct rhashtable_iter *iter)
853{
854 struct rhlist_head *list = iter->list;
855 struct rhashtable *ht = iter->ht;
856 struct rhash_head *p = iter->p;
857 bool rhlist = ht->rhlist;
858
859 if (p) {
860 if (!rhlist || !(list = rcu_dereference(list->next))) {
861 p = rcu_dereference(p->next);
862 list = container_of(p, struct rhlist_head, rhead);
863 }
864 if (!rht_is_a_nulls(p)) {
865 iter->skip++;
866 iter->p = p;
867 iter->list = list;
868 return rht_obj(ht, rhlist ? &list->rhead : p);
869 }
870
871 /* At the end of this slot, switch to next one and then find
872 * next entry from that point.
873 */
874 iter->skip = 0;
875 iter->slot++;
876 }
877
878 return __rhashtable_walk_find_next(iter);
879}
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100880EXPORT_SYMBOL_GPL(rhashtable_walk_next);
881
882/**
Tom Herbert2db54b42017-12-04 10:31:42 -0800883 * rhashtable_walk_peek - Return the next object but don't advance the iterator
884 * @iter: Hash table iterator
885 *
886 * Returns the next object or NULL when the end of the table is reached.
887 *
888 * Returns -EAGAIN if resize event occurred. Note that the iterator
889 * will rewind back to the beginning and you may continue to use it.
890 */
891void *rhashtable_walk_peek(struct rhashtable_iter *iter)
892{
893 struct rhlist_head *list = iter->list;
894 struct rhashtable *ht = iter->ht;
895 struct rhash_head *p = iter->p;
896
897 if (p)
898 return rht_obj(ht, ht->rhlist ? &list->rhead : p);
899
900 /* No object found in current iter, find next one in the table. */
901
902 if (iter->skip) {
903 /* A nonzero skip value points to the next entry in the table
904 * beyond that last one that was found. Decrement skip so
905 * we find the current value. __rhashtable_walk_find_next
906 * will restore the original value of skip assuming that
907 * the table hasn't changed.
908 */
909 iter->skip--;
910 }
911
912 return __rhashtable_walk_find_next(iter);
913}
914EXPORT_SYMBOL_GPL(rhashtable_walk_peek);
915
916/**
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100917 * rhashtable_walk_stop - Finish a hash table walk
918 * @iter: Hash table iterator
919 *
Andreas Gruenbacher06471692017-09-19 12:41:37 +0200920 * Finish a hash table walk. Does not reset the iterator to the start of the
921 * hash table.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100922 */
923void rhashtable_walk_stop(struct rhashtable_iter *iter)
Thomas Grafdb4374f2015-03-16 10:42:27 +0100924 __releases(RCU)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100925{
Herbert Xueddee5ba2015-03-14 13:57:20 +1100926 struct rhashtable *ht;
Herbert Xu246779d2016-08-18 16:50:56 +0800927 struct bucket_table *tbl = iter->walker.tbl;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100928
Herbert Xueddee5ba2015-03-14 13:57:20 +1100929 if (!tbl)
Herbert Xu963ecbd2015-03-15 21:12:04 +1100930 goto out;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100931
932 ht = iter->ht;
933
Herbert Xuba7c95e2015-03-24 09:53:17 +1100934 spin_lock(&ht->lock);
NeilBrown4feb7c72019-03-21 14:42:40 +1100935 if (rcu_head_after_call_rcu(&tbl->rcu, bucket_table_free_rcu))
936 /* This bucket table is being freed, don't re-link it. */
Herbert Xu246779d2016-08-18 16:50:56 +0800937 iter->walker.tbl = NULL;
NeilBrown4feb7c72019-03-21 14:42:40 +1100938 else
939 list_add(&iter->walker.list, &tbl->walkers);
Herbert Xuba7c95e2015-03-24 09:53:17 +1100940 spin_unlock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100941
Herbert Xu963ecbd2015-03-15 21:12:04 +1100942out:
943 rcu_read_unlock();
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100944}
945EXPORT_SYMBOL_GPL(rhashtable_walk_stop);
946
Herbert Xu488fb86e2015-03-20 21:56:59 +1100947static size_t rounded_hashtable_size(const struct rhashtable_params *params)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200948{
Davidlohr Bueso107d01f2018-07-16 13:26:13 -0700949 size_t retsize;
950
951 if (params->nelem_hint)
952 retsize = max(roundup_pow_of_two(params->nelem_hint * 4 / 3),
953 (unsigned long)params->min_size);
954 else
955 retsize = max(HASH_DEFAULT_SIZE,
956 (unsigned long)params->min_size);
957
958 return retsize;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200959}
960
Herbert Xu31ccde22015-03-24 00:50:21 +1100961static u32 rhashtable_jhash2(const void *key, u32 length, u32 seed)
962{
963 return jhash2(key, length, seed);
964}
965
Thomas Graf7e1e7762014-08-02 11:47:44 +0200966/**
967 * rhashtable_init - initialize a new hash table
968 * @ht: hash table to be initialized
969 * @params: configuration parameters
970 *
971 * Initializes a new hash table based on the provided configuration
972 * parameters. A table can be configured either with a variable or
973 * fixed length key:
974 *
975 * Configuration Example 1: Fixed length keys
976 * struct test_obj {
977 * int key;
978 * void * my_member;
979 * struct rhash_head node;
980 * };
981 *
982 * struct rhashtable_params params = {
983 * .head_offset = offsetof(struct test_obj, node),
984 * .key_offset = offsetof(struct test_obj, key),
985 * .key_len = sizeof(int),
Daniel Borkmann87545892014-12-10 16:33:11 +0100986 * .hashfn = jhash,
Thomas Graf7e1e7762014-08-02 11:47:44 +0200987 * };
988 *
989 * Configuration Example 2: Variable length keys
990 * struct test_obj {
991 * [...]
992 * struct rhash_head node;
993 * };
994 *
Patrick McHardy49f7b332015-03-25 13:07:45 +0000995 * u32 my_hash_fn(const void *data, u32 len, u32 seed)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200996 * {
997 * struct test_obj *obj = data;
998 *
999 * return [... hash ...];
1000 * }
1001 *
1002 * struct rhashtable_params params = {
1003 * .head_offset = offsetof(struct test_obj, node),
Daniel Borkmann87545892014-12-10 16:33:11 +01001004 * .hashfn = jhash,
Thomas Graf7e1e7762014-08-02 11:47:44 +02001005 * .obj_hashfn = my_hash_fn,
Thomas Graf7e1e7762014-08-02 11:47:44 +02001006 * };
1007 */
Herbert Xu488fb86e2015-03-20 21:56:59 +11001008int rhashtable_init(struct rhashtable *ht,
1009 const struct rhashtable_params *params)
Thomas Graf7e1e7762014-08-02 11:47:44 +02001010{
1011 struct bucket_table *tbl;
1012 size_t size;
1013
Herbert Xu31ccde22015-03-24 00:50:21 +11001014 if ((!params->key_len && !params->obj_hashfn) ||
Herbert Xu02fd97c2015-03-20 21:57:00 +11001015 (params->obj_hashfn && !params->obj_cmpfn))
Thomas Graf7e1e7762014-08-02 11:47:44 +02001016 return -EINVAL;
1017
Thomas Graf97defe12015-01-02 23:00:20 +01001018 memset(ht, 0, sizeof(*ht));
1019 mutex_init(&ht->mutex);
Herbert Xuba7c95e2015-03-24 09:53:17 +11001020 spin_lock_init(&ht->lock);
Thomas Graf97defe12015-01-02 23:00:20 +01001021 memcpy(&ht->p, params, sizeof(*params));
1022
Thomas Grafa998f712015-03-19 22:31:13 +00001023 if (params->min_size)
1024 ht->p.min_size = roundup_pow_of_two(params->min_size);
1025
Herbert Xu6d684e52017-04-27 13:44:51 +08001026 /* Cap total entries at 2^31 to avoid nelems overflow. */
1027 ht->max_elems = 1u << 31;
Herbert Xu2d2ab652017-04-28 14:10:48 +08001028
1029 if (params->max_size) {
1030 ht->p.max_size = rounddown_pow_of_two(params->max_size);
1031 if (ht->p.max_size < ht->max_elems / 2)
1032 ht->max_elems = ht->p.max_size * 2;
1033 }
Herbert Xu6d684e52017-04-27 13:44:51 +08001034
Florian Westphal48e75b432017-05-01 22:18:01 +02001035 ht->p.min_size = max_t(u16, ht->p.min_size, HASH_MIN_SIZE);
Thomas Grafa998f712015-03-19 22:31:13 +00001036
Davidlohr Bueso107d01f2018-07-16 13:26:13 -07001037 size = rounded_hashtable_size(&ht->p);
Herbert Xu3a324602015-12-16 18:13:14 +08001038
Herbert Xu31ccde22015-03-24 00:50:21 +11001039 ht->key_len = ht->p.key_len;
1040 if (!params->hashfn) {
1041 ht->p.hashfn = jhash;
1042
1043 if (!(ht->key_len & (sizeof(u32) - 1))) {
1044 ht->key_len /= sizeof(u32);
1045 ht->p.hashfn = rhashtable_jhash2;
1046 }
1047 }
1048
Davidlohr Bueso2d22ecf2018-08-21 22:01:48 -07001049 /*
1050 * This is api initialization and thus we need to guarantee the
1051 * initial rhashtable allocation. Upon failure, retry with the
1052 * smallest possible size with __GFP_NOFAIL semantics.
1053 */
Herbert Xub9ecfda2015-03-24 00:50:27 +11001054 tbl = bucket_table_alloc(ht, size, GFP_KERNEL);
Davidlohr Bueso2d22ecf2018-08-21 22:01:48 -07001055 if (unlikely(tbl == NULL)) {
1056 size = max_t(u16, ht->p.min_size, HASH_MIN_SIZE);
1057 tbl = bucket_table_alloc(ht, size, GFP_KERNEL | __GFP_NOFAIL);
1058 }
Thomas Graf7e1e7762014-08-02 11:47:44 +02001059
Ying Xue545a1482015-01-07 13:41:57 +08001060 atomic_set(&ht->nelems, 0);
Daniel Borkmanna5b68462015-03-12 15:28:40 +01001061
Thomas Graf7e1e7762014-08-02 11:47:44 +02001062 RCU_INIT_POINTER(ht->tbl, tbl);
1063
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +01001064 INIT_WORK(&ht->run_work, rht_deferred_worker);
Thomas Graf97defe12015-01-02 23:00:20 +01001065
Thomas Graf7e1e7762014-08-02 11:47:44 +02001066 return 0;
1067}
1068EXPORT_SYMBOL_GPL(rhashtable_init);
1069
1070/**
Herbert Xuca268932016-09-19 19:00:09 +08001071 * rhltable_init - initialize a new hash list table
1072 * @hlt: hash list table to be initialized
1073 * @params: configuration parameters
1074 *
1075 * Initializes a new hash list table.
1076 *
1077 * See documentation for rhashtable_init.
1078 */
1079int rhltable_init(struct rhltable *hlt, const struct rhashtable_params *params)
1080{
1081 int err;
1082
Herbert Xuca268932016-09-19 19:00:09 +08001083 err = rhashtable_init(&hlt->ht, params);
1084 hlt->ht.rhlist = true;
1085 return err;
1086}
1087EXPORT_SYMBOL_GPL(rhltable_init);
1088
1089static void rhashtable_free_one(struct rhashtable *ht, struct rhash_head *obj,
1090 void (*free_fn)(void *ptr, void *arg),
1091 void *arg)
1092{
1093 struct rhlist_head *list;
1094
1095 if (!ht->rhlist) {
1096 free_fn(rht_obj(ht, obj), arg);
1097 return;
1098 }
1099
1100 list = container_of(obj, struct rhlist_head, rhead);
1101 do {
1102 obj = &list->rhead;
1103 list = rht_dereference(list->next, ht);
1104 free_fn(rht_obj(ht, obj), arg);
1105 } while (list);
1106}
1107
1108/**
Thomas Graf6b6f3022015-03-24 14:18:20 +01001109 * rhashtable_free_and_destroy - free elements and destroy hash table
Thomas Graf7e1e7762014-08-02 11:47:44 +02001110 * @ht: the hash table to destroy
Thomas Graf6b6f3022015-03-24 14:18:20 +01001111 * @free_fn: callback to release resources of element
1112 * @arg: pointer passed to free_fn
Thomas Graf7e1e7762014-08-02 11:47:44 +02001113 *
Thomas Graf6b6f3022015-03-24 14:18:20 +01001114 * Stops an eventual async resize. If defined, invokes free_fn for each
1115 * element to releasal resources. Please note that RCU protected
1116 * readers may still be accessing the elements. Releasing of resources
1117 * must occur in a compatible manner. Then frees the bucket array.
1118 *
1119 * This function will eventually sleep to wait for an async resize
1120 * to complete. The caller is responsible that no further write operations
1121 * occurs in parallel.
Thomas Graf7e1e7762014-08-02 11:47:44 +02001122 */
Thomas Graf6b6f3022015-03-24 14:18:20 +01001123void rhashtable_free_and_destroy(struct rhashtable *ht,
1124 void (*free_fn)(void *ptr, void *arg),
1125 void *arg)
Thomas Graf7e1e7762014-08-02 11:47:44 +02001126{
Taehee Yoo00261292018-07-08 11:55:51 +09001127 struct bucket_table *tbl, *next_tbl;
Thomas Graf6b6f3022015-03-24 14:18:20 +01001128 unsigned int i;
Thomas Graf97defe12015-01-02 23:00:20 +01001129
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +01001130 cancel_work_sync(&ht->run_work);
Ying Xue57699a42015-01-16 11:13:09 +08001131
Thomas Graf97defe12015-01-02 23:00:20 +01001132 mutex_lock(&ht->mutex);
Thomas Graf6b6f3022015-03-24 14:18:20 +01001133 tbl = rht_dereference(ht->tbl, ht);
Taehee Yoo00261292018-07-08 11:55:51 +09001134restart:
Thomas Graf6b6f3022015-03-24 14:18:20 +01001135 if (free_fn) {
1136 for (i = 0; i < tbl->size; i++) {
1137 struct rhash_head *pos, *next;
1138
Eric Dumazetae6da1f2018-03-31 12:58:48 -07001139 cond_resched();
NeilBrownadc6a3a2019-04-12 11:52:08 +10001140 for (pos = rht_ptr_exclusive(rht_bucket(tbl, i)),
Thomas Graf6b6f3022015-03-24 14:18:20 +01001141 next = !rht_is_a_nulls(pos) ?
1142 rht_dereference(pos->next, ht) : NULL;
1143 !rht_is_a_nulls(pos);
1144 pos = next,
1145 next = !rht_is_a_nulls(pos) ?
1146 rht_dereference(pos->next, ht) : NULL)
Herbert Xuca268932016-09-19 19:00:09 +08001147 rhashtable_free_one(ht, pos, free_fn, arg);
Thomas Graf6b6f3022015-03-24 14:18:20 +01001148 }
1149 }
1150
Taehee Yoo00261292018-07-08 11:55:51 +09001151 next_tbl = rht_dereference(tbl->future_tbl, ht);
Thomas Graf6b6f3022015-03-24 14:18:20 +01001152 bucket_table_free(tbl);
Taehee Yoo00261292018-07-08 11:55:51 +09001153 if (next_tbl) {
1154 tbl = next_tbl;
1155 goto restart;
1156 }
Thomas Graf97defe12015-01-02 23:00:20 +01001157 mutex_unlock(&ht->mutex);
Thomas Graf7e1e7762014-08-02 11:47:44 +02001158}
Thomas Graf6b6f3022015-03-24 14:18:20 +01001159EXPORT_SYMBOL_GPL(rhashtable_free_and_destroy);
1160
1161void rhashtable_destroy(struct rhashtable *ht)
1162{
1163 return rhashtable_free_and_destroy(ht, NULL, NULL);
1164}
Thomas Graf7e1e7762014-08-02 11:47:44 +02001165EXPORT_SYMBOL_GPL(rhashtable_destroy);
Herbert Xuda204202017-02-11 19:26:47 +08001166
Herbert Xuba6306e2019-05-16 15:19:46 +08001167struct rhash_lock_head **__rht_bucket_nested(const struct bucket_table *tbl,
1168 unsigned int hash)
Herbert Xuda204202017-02-11 19:26:47 +08001169{
1170 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
Herbert Xuda204202017-02-11 19:26:47 +08001171 unsigned int index = hash & ((1 << tbl->nest) - 1);
1172 unsigned int size = tbl->size >> tbl->nest;
1173 unsigned int subhash = hash;
1174 union nested_table *ntbl;
1175
1176 ntbl = (union nested_table *)rcu_dereference_raw(tbl->buckets[0]);
Herbert Xuc4d26032017-02-25 22:39:50 +08001177 ntbl = rht_dereference_bucket_rcu(ntbl[index].table, tbl, hash);
Herbert Xuda204202017-02-11 19:26:47 +08001178 subhash >>= tbl->nest;
1179
1180 while (ntbl && size > (1 << shift)) {
1181 index = subhash & ((1 << shift) - 1);
Herbert Xuc4d26032017-02-25 22:39:50 +08001182 ntbl = rht_dereference_bucket_rcu(ntbl[index].table,
1183 tbl, hash);
Herbert Xuda204202017-02-11 19:26:47 +08001184 size >>= shift;
1185 subhash >>= shift;
1186 }
1187
NeilBrownff302db2019-04-02 10:07:45 +11001188 if (!ntbl)
1189 return NULL;
Herbert Xuda204202017-02-11 19:26:47 +08001190
1191 return &ntbl[subhash].bucket;
1192
1193}
NeilBrownff302db2019-04-02 10:07:45 +11001194EXPORT_SYMBOL_GPL(__rht_bucket_nested);
1195
Herbert Xuba6306e2019-05-16 15:19:46 +08001196struct rhash_lock_head **rht_bucket_nested(const struct bucket_table *tbl,
1197 unsigned int hash)
NeilBrownff302db2019-04-02 10:07:45 +11001198{
Herbert Xuba6306e2019-05-16 15:19:46 +08001199 static struct rhash_lock_head *rhnull;
NeilBrownff302db2019-04-02 10:07:45 +11001200
1201 if (!rhnull)
1202 INIT_RHT_NULLS_HEAD(rhnull);
1203 return __rht_bucket_nested(tbl, hash) ?: &rhnull;
1204}
Herbert Xuda204202017-02-11 19:26:47 +08001205EXPORT_SYMBOL_GPL(rht_bucket_nested);
1206
Herbert Xuba6306e2019-05-16 15:19:46 +08001207struct rhash_lock_head **rht_bucket_nested_insert(struct rhashtable *ht,
1208 struct bucket_table *tbl,
1209 unsigned int hash)
Herbert Xuda204202017-02-11 19:26:47 +08001210{
1211 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
1212 unsigned int index = hash & ((1 << tbl->nest) - 1);
1213 unsigned int size = tbl->size >> tbl->nest;
1214 union nested_table *ntbl;
Herbert Xuda204202017-02-11 19:26:47 +08001215
1216 ntbl = (union nested_table *)rcu_dereference_raw(tbl->buckets[0]);
1217 hash >>= tbl->nest;
Herbert Xuda204202017-02-11 19:26:47 +08001218 ntbl = nested_table_alloc(ht, &ntbl[index].table,
NeilBrown5af68ef2018-06-18 12:52:50 +10001219 size <= (1 << shift));
Herbert Xuda204202017-02-11 19:26:47 +08001220
1221 while (ntbl && size > (1 << shift)) {
1222 index = hash & ((1 << shift) - 1);
1223 size >>= shift;
1224 hash >>= shift;
Herbert Xuda204202017-02-11 19:26:47 +08001225 ntbl = nested_table_alloc(ht, &ntbl[index].table,
NeilBrown5af68ef2018-06-18 12:52:50 +10001226 size <= (1 << shift));
Herbert Xuda204202017-02-11 19:26:47 +08001227 }
1228
1229 if (!ntbl)
1230 return NULL;
1231
1232 return &ntbl[hash].bucket;
1233
1234}
1235EXPORT_SYMBOL_GPL(rht_bucket_nested_insert);