blob: 935ec80f213ff46028d0413a21d4ca69e906ccc0 [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>
Ingo Molnarb2d09102017-02-04 01:27:20 +010022#include <linux/rculist.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020023#include <linux/slab.h>
24#include <linux/vmalloc.h>
25#include <linux/mm.h>
Daniel Borkmann87545892014-12-10 16:33:11 +010026#include <linux/jhash.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020027#include <linux/random.h>
28#include <linux/rhashtable.h>
Stephen Rothwell61d7b092015-02-09 14:04:03 +110029#include <linux/err.h>
Hauke Mehrtens6d795412015-06-06 22:07:23 +020030#include <linux/export.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020031
32#define HASH_DEFAULT_SIZE 64UL
Herbert Xuc2e213c2015-03-18 20:01:16 +110033#define HASH_MIN_SIZE 4U
Thomas Graf97defe12015-01-02 23:00:20 +010034
Herbert Xuda204202017-02-11 19:26:47 +080035union nested_table {
36 union nested_table __rcu *table;
Herbert Xuba6306e2019-05-16 15:19:46 +080037 struct rhash_lock_head *bucket;
Herbert Xuda204202017-02-11 19:26:47 +080038};
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{
NeilBrown8f0db012019-04-02 10:07:45 +110058 if (!debug_locks)
59 return 1;
60 if (unlikely(tbl->nest))
61 return 1;
NeilBrownca0b7092019-04-12 11:52:08 +100062 return bit_spin_is_locked(0, (unsigned long *)&tbl->buckets[hash]);
Thomas Grafa03eaec2015-02-05 02:03:34 +010063}
64EXPORT_SYMBOL_GPL(lockdep_rht_bucket_is_held);
65#else
66#define ASSERT_RHT_MUTEX(HT)
Thomas Grafa03eaec2015-02-05 02:03:34 +010067#endif
68
Herbert Xuda204202017-02-11 19:26:47 +080069static void nested_table_free(union nested_table *ntbl, unsigned int size)
70{
71 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
72 const unsigned int len = 1 << shift;
73 unsigned int i;
74
75 ntbl = rcu_dereference_raw(ntbl->table);
76 if (!ntbl)
77 return;
78
79 if (size > len) {
80 size >>= shift;
81 for (i = 0; i < len; i++)
82 nested_table_free(ntbl + i, size);
83 }
84
85 kfree(ntbl);
86}
87
88static void nested_bucket_table_free(const struct bucket_table *tbl)
89{
90 unsigned int size = tbl->size >> tbl->nest;
91 unsigned int len = 1 << tbl->nest;
92 union nested_table *ntbl;
93 unsigned int i;
94
95 ntbl = (union nested_table *)rcu_dereference_raw(tbl->buckets[0]);
96
97 for (i = 0; i < len; i++)
98 nested_table_free(ntbl + i, size);
99
100 kfree(ntbl);
101}
102
Thomas Graf97defe12015-01-02 23:00:20 +0100103static void bucket_table_free(const struct bucket_table *tbl)
104{
Herbert Xuda204202017-02-11 19:26:47 +0800105 if (tbl->nest)
106 nested_bucket_table_free(tbl);
107
Thomas Graf97defe12015-01-02 23:00:20 +0100108 kvfree(tbl);
109}
110
Herbert Xu9d901bc2015-03-14 13:57:23 +1100111static void bucket_table_free_rcu(struct rcu_head *head)
112{
113 bucket_table_free(container_of(head, struct bucket_table, rcu));
114}
115
Herbert Xuda204202017-02-11 19:26:47 +0800116static union nested_table *nested_table_alloc(struct rhashtable *ht,
117 union nested_table __rcu **prev,
NeilBrown5af68ef2018-06-18 12:52:50 +1000118 bool leaf)
Herbert Xuda204202017-02-11 19:26:47 +0800119{
120 union nested_table *ntbl;
121 int i;
122
123 ntbl = rcu_dereference(*prev);
124 if (ntbl)
125 return ntbl;
126
127 ntbl = kzalloc(PAGE_SIZE, GFP_ATOMIC);
128
NeilBrown5af68ef2018-06-18 12:52:50 +1000129 if (ntbl && leaf) {
130 for (i = 0; i < PAGE_SIZE / sizeof(ntbl[0]); i++)
NeilBrown9b4f64a2018-06-18 12:52:50 +1000131 INIT_RHT_NULLS_HEAD(ntbl[i].bucket);
Herbert Xuda204202017-02-11 19:26:47 +0800132 }
133
Herbert Xue9458a42019-05-16 15:19:48 +0800134 if (cmpxchg((union nested_table **)prev, NULL, ntbl) == NULL)
NeilBrown7a41c292019-04-02 10:07:45 +1100135 return ntbl;
136 /* Raced with another thread. */
137 kfree(ntbl);
138 return rcu_dereference(*prev);
Herbert Xuda204202017-02-11 19:26:47 +0800139}
140
141static struct bucket_table *nested_bucket_table_alloc(struct rhashtable *ht,
142 size_t nbuckets,
143 gfp_t gfp)
144{
145 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
146 struct bucket_table *tbl;
147 size_t size;
148
149 if (nbuckets < (1 << (shift + 1)))
150 return NULL;
151
152 size = sizeof(*tbl) + sizeof(tbl->buckets[0]);
153
154 tbl = kzalloc(size, gfp);
155 if (!tbl)
156 return NULL;
157
158 if (!nested_table_alloc(ht, (union nested_table __rcu **)tbl->buckets,
NeilBrown5af68ef2018-06-18 12:52:50 +1000159 false)) {
Herbert Xuda204202017-02-11 19:26:47 +0800160 kfree(tbl);
161 return NULL;
162 }
163
164 tbl->nest = (ilog2(nbuckets) - 1) % shift + 1;
165
166 return tbl;
167}
168
Thomas Graf97defe12015-01-02 23:00:20 +0100169static struct bucket_table *bucket_table_alloc(struct rhashtable *ht,
Herbert Xub9ecfda2015-03-24 00:50:27 +1100170 size_t nbuckets,
171 gfp_t gfp)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200172{
Daniel Borkmanneb6d1ab2015-02-20 00:53:38 +0100173 struct bucket_table *tbl = NULL;
NeilBrown8f0db012019-04-02 10:07:45 +1100174 size_t size;
Thomas Graff89bd6f2015-01-02 23:00:21 +0100175 int i;
NeilBrown149212f2019-04-02 10:07:45 +1100176 static struct lock_class_key __key;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200177
Gustavo A. R. Silvac252aa32019-04-11 18:43:06 -0500178 tbl = kvzalloc(struct_size(tbl, buckets, nbuckets), gfp);
Herbert Xuda204202017-02-11 19:26:47 +0800179
180 size = nbuckets;
181
Davidlohr Bueso2d22ecf2018-08-21 22:01:48 -0700182 if (tbl == NULL && (gfp & ~__GFP_NOFAIL) != GFP_KERNEL) {
Herbert Xuda204202017-02-11 19:26:47 +0800183 tbl = nested_bucket_table_alloc(ht, nbuckets, gfp);
184 nbuckets = 0;
185 }
Davidlohr Bueso2d22ecf2018-08-21 22:01:48 -0700186
Thomas Graf7e1e7762014-08-02 11:47:44 +0200187 if (tbl == NULL)
188 return NULL;
189
NeilBrown149212f2019-04-02 10:07:45 +1100190 lockdep_init_map(&tbl->dep_map, "rhashtable_bucket", &__key, 0);
191
Herbert Xuda204202017-02-11 19:26:47 +0800192 tbl->size = size;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200193
NeilBrown4feb7c72019-03-21 14:42:40 +1100194 rcu_head_init(&tbl->rcu);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100195 INIT_LIST_HEAD(&tbl->walkers);
196
Jason A. Donenfeldd48ad082017-06-07 22:47:13 -0400197 tbl->hash_rnd = get_random_u32();
Herbert Xu5269b532015-03-14 13:57:22 +1100198
Thomas Graff89bd6f2015-01-02 23:00:21 +0100199 for (i = 0; i < nbuckets; i++)
NeilBrown9b4f64a2018-06-18 12:52:50 +1000200 INIT_RHT_NULLS_HEAD(tbl->buckets[i]);
Thomas Graff89bd6f2015-01-02 23:00:21 +0100201
Thomas Graf97defe12015-01-02 23:00:20 +0100202 return tbl;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200203}
204
Herbert Xub8244782015-03-24 00:50:26 +1100205static struct bucket_table *rhashtable_last_table(struct rhashtable *ht,
206 struct bucket_table *tbl)
207{
208 struct bucket_table *new_tbl;
209
210 do {
211 new_tbl = tbl;
212 tbl = rht_dereference_rcu(tbl->future_tbl, ht);
213 } while (tbl);
214
215 return new_tbl;
216}
217
NeilBrown8f0db012019-04-02 10:07:45 +1100218static int rhashtable_rehash_one(struct rhashtable *ht,
Herbert Xuba6306e2019-05-16 15:19:46 +0800219 struct rhash_lock_head **bkt,
NeilBrown8f0db012019-04-02 10:07:45 +1100220 unsigned int old_hash)
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100221{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100222 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
NeilBrownc0690012018-06-18 12:52:50 +1000223 struct bucket_table *new_tbl = rhashtable_last_table(ht, old_tbl);
Herbert Xuda204202017-02-11 19:26:47 +0800224 int err = -EAGAIN;
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100225 struct rhash_head *head, *next, *entry;
NeilBrowne4edbe32019-04-12 11:52:07 +1000226 struct rhash_head __rcu **pprev = NULL;
Thomas Graf299e5c32015-03-24 14:18:17 +0100227 unsigned int new_hash;
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100228
Herbert Xuda204202017-02-11 19:26:47 +0800229 if (new_tbl->nest)
230 goto out;
231
232 err = -ENOENT;
233
NeilBrownadc6a3a2019-04-12 11:52:08 +1000234 rht_for_each_from(entry, rht_ptr(bkt, old_tbl, old_hash),
235 old_tbl, old_hash) {
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100236 err = 0;
237 next = rht_dereference_bucket(entry->next, old_tbl, old_hash);
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100238
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100239 if (rht_is_a_nulls(next))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200240 break;
Thomas Graf97defe12015-01-02 23:00:20 +0100241
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100242 pprev = &entry->next;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200243 }
244
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100245 if (err)
246 goto out;
Thomas Graf97defe12015-01-02 23:00:20 +0100247
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100248 new_hash = head_hashfn(ht, new_tbl, entry);
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100249
NeilBrown149212f2019-04-02 10:07:45 +1100250 rht_lock_nested(new_tbl, &new_tbl->buckets[new_hash], SINGLE_DEPTH_NESTING);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100251
NeilBrownadc6a3a2019-04-12 11:52:08 +1000252 head = rht_ptr(new_tbl->buckets + new_hash, new_tbl, new_hash);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100253
Dmitriy Vyukov7def0f92015-09-22 10:51:52 +0200254 RCU_INIT_POINTER(entry->next, head);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100255
NeilBrown149212f2019-04-02 10:07:45 +1100256 rht_assign_unlock(new_tbl, &new_tbl->buckets[new_hash], entry);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100257
NeilBrown8f0db012019-04-02 10:07:45 +1100258 if (pprev)
259 rcu_assign_pointer(*pprev, next);
260 else
261 /* Need to preserved the bit lock. */
NeilBrownf4712b42019-04-12 11:52:08 +1000262 rht_assign_locked(bkt, next);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100263
264out:
265 return err;
Thomas Graf97defe12015-01-02 23:00:20 +0100266}
267
Herbert Xuda204202017-02-11 19:26:47 +0800268static int rhashtable_rehash_chain(struct rhashtable *ht,
Thomas Graf299e5c32015-03-24 14:18:17 +0100269 unsigned int old_hash)
Thomas Graf97defe12015-01-02 23:00:20 +0100270{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100271 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
Herbert Xuba6306e2019-05-16 15:19:46 +0800272 struct rhash_lock_head **bkt = rht_bucket_var(old_tbl, old_hash);
Herbert Xuda204202017-02-11 19:26:47 +0800273 int err;
Thomas Graf7cd10db2015-02-05 02:03:35 +0100274
NeilBrown8f0db012019-04-02 10:07:45 +1100275 if (!bkt)
276 return 0;
NeilBrown149212f2019-04-02 10:07:45 +1100277 rht_lock(old_tbl, bkt);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100278
NeilBrown8f0db012019-04-02 10:07:45 +1100279 while (!(err = rhashtable_rehash_one(ht, bkt, old_hash)))
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100280 ;
Herbert Xuda204202017-02-11 19:26:47 +0800281
NeilBrown4feb7c72019-03-21 14:42:40 +1100282 if (err == -ENOENT)
Herbert Xuda204202017-02-11 19:26:47 +0800283 err = 0;
NeilBrown149212f2019-04-02 10:07:45 +1100284 rht_unlock(old_tbl, bkt);
Herbert Xuda204202017-02-11 19:26:47 +0800285
286 return err;
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100287}
288
Herbert Xub8244782015-03-24 00:50:26 +1100289static int rhashtable_rehash_attach(struct rhashtable *ht,
290 struct bucket_table *old_tbl,
291 struct bucket_table *new_tbl)
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100292{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100293 /* Make insertions go into the new, empty table right away. Deletions
294 * and lookups will be attempted in both tables until we synchronize.
NeilBrown0ad66442018-06-18 12:52:50 +1000295 * As cmpxchg() provides strong barriers, we do not need
296 * rcu_assign_pointer().
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100297 */
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100298
Herbert Xue9458a42019-05-16 15:19:48 +0800299 if (cmpxchg((struct bucket_table **)&old_tbl->future_tbl, NULL,
300 new_tbl) != NULL)
NeilBrown0ad66442018-06-18 12:52:50 +1000301 return -EEXIST;
Herbert Xub8244782015-03-24 00:50:26 +1100302
303 return 0;
304}
305
306static int rhashtable_rehash_table(struct rhashtable *ht)
307{
308 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
309 struct bucket_table *new_tbl;
310 struct rhashtable_walker *walker;
Thomas Graf299e5c32015-03-24 14:18:17 +0100311 unsigned int old_hash;
Herbert Xuda204202017-02-11 19:26:47 +0800312 int err;
Herbert Xub8244782015-03-24 00:50:26 +1100313
314 new_tbl = rht_dereference(old_tbl->future_tbl, ht);
315 if (!new_tbl)
316 return 0;
317
Herbert Xuda204202017-02-11 19:26:47 +0800318 for (old_hash = 0; old_hash < old_tbl->size; old_hash++) {
319 err = rhashtable_rehash_chain(ht, old_hash);
320 if (err)
321 return err;
Eric Dumazetae6da1f2018-03-31 12:58:48 -0700322 cond_resched();
Herbert Xuda204202017-02-11 19:26:47 +0800323 }
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100324
325 /* Publish the new table pointer. */
326 rcu_assign_pointer(ht->tbl, new_tbl);
327
Herbert Xuba7c95e2015-03-24 09:53:17 +1100328 spin_lock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100329 list_for_each_entry(walker, &old_tbl->walkers, list)
330 walker->tbl = NULL;
331
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100332 /* Wait for readers. All new readers will see the new
333 * table, and thus no references to the old table will
334 * remain.
NeilBrown4feb7c72019-03-21 14:42:40 +1100335 * We do this inside the locked region so that
336 * rhashtable_walk_stop() can use rcu_head_after_call_rcu()
337 * to check if it should not re-link the table.
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100338 */
Herbert Xu9d901bc2015-03-14 13:57:23 +1100339 call_rcu(&old_tbl->rcu, bucket_table_free_rcu);
NeilBrown4feb7c72019-03-21 14:42:40 +1100340 spin_unlock(&ht->lock);
Herbert Xub8244782015-03-24 00:50:26 +1100341
342 return rht_dereference(new_tbl->future_tbl, ht) ? -EAGAIN : 0;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200343}
344
Herbert Xuda204202017-02-11 19:26:47 +0800345static int rhashtable_rehash_alloc(struct rhashtable *ht,
346 struct bucket_table *old_tbl,
347 unsigned int size)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200348{
Herbert Xuda204202017-02-11 19:26:47 +0800349 struct bucket_table *new_tbl;
Herbert Xub8244782015-03-24 00:50:26 +1100350 int err;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200351
352 ASSERT_RHT_MUTEX(ht);
353
Herbert Xuda204202017-02-11 19:26:47 +0800354 new_tbl = bucket_table_alloc(ht, size, GFP_KERNEL);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200355 if (new_tbl == NULL)
356 return -ENOMEM;
357
Herbert Xub8244782015-03-24 00:50:26 +1100358 err = rhashtable_rehash_attach(ht, old_tbl, new_tbl);
359 if (err)
360 bucket_table_free(new_tbl);
361
362 return err;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200363}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200364
365/**
366 * rhashtable_shrink - Shrink hash table while allowing concurrent lookups
367 * @ht: the hash table to shrink
Thomas Graf7e1e7762014-08-02 11:47:44 +0200368 *
Herbert Xu18093d12015-03-24 00:50:25 +1100369 * This function shrinks the hash table to fit, i.e., the smallest
370 * size would not cause it to expand right away automatically.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200371 *
Thomas Graf97defe12015-01-02 23:00:20 +0100372 * The caller must ensure that no concurrent resizing occurs by holding
373 * ht->mutex.
374 *
Thomas Graf7e1e7762014-08-02 11:47:44 +0200375 * The caller must ensure that no concurrent table mutations take place.
376 * It is however valid to have concurrent lookups if they are RCU protected.
Thomas Graf97defe12015-01-02 23:00:20 +0100377 *
378 * It is valid to have concurrent insertions and deletions protected by per
379 * bucket locks or concurrent RCU protected lookups and traversals.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200380 */
Herbert Xub8244782015-03-24 00:50:26 +1100381static int rhashtable_shrink(struct rhashtable *ht)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200382{
Herbert Xuda204202017-02-11 19:26:47 +0800383 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
Vegard Nossum12311952016-08-12 20:10:44 +0200384 unsigned int nelems = atomic_read(&ht->nelems);
385 unsigned int size = 0;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200386
Vegard Nossum12311952016-08-12 20:10:44 +0200387 if (nelems)
388 size = roundup_pow_of_two(nelems * 3 / 2);
Herbert Xu18093d12015-03-24 00:50:25 +1100389 if (size < ht->p.min_size)
390 size = ht->p.min_size;
391
392 if (old_tbl->size <= size)
393 return 0;
394
Herbert Xub8244782015-03-24 00:50:26 +1100395 if (rht_dereference(old_tbl->future_tbl, ht))
396 return -EEXIST;
397
Herbert Xuda204202017-02-11 19:26:47 +0800398 return rhashtable_rehash_alloc(ht, old_tbl, size);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200399}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200400
Thomas Graf97defe12015-01-02 23:00:20 +0100401static void rht_deferred_worker(struct work_struct *work)
402{
403 struct rhashtable *ht;
404 struct bucket_table *tbl;
Herbert Xub8244782015-03-24 00:50:26 +1100405 int err = 0;
Thomas Graf97defe12015-01-02 23:00:20 +0100406
Ying Xue57699a42015-01-16 11:13:09 +0800407 ht = container_of(work, struct rhashtable, run_work);
Thomas Graf97defe12015-01-02 23:00:20 +0100408 mutex_lock(&ht->mutex);
Herbert Xu28134a52015-02-04 07:33:22 +1100409
Thomas Graf97defe12015-01-02 23:00:20 +0100410 tbl = rht_dereference(ht->tbl, ht);
Herbert Xub8244782015-03-24 00:50:26 +1100411 tbl = rhashtable_last_table(ht, tbl);
Thomas Graf97defe12015-01-02 23:00:20 +0100412
Daniel Borkmanna5b68462015-03-12 15:28:40 +0100413 if (rht_grow_above_75(ht, tbl))
Herbert Xuda204202017-02-11 19:26:47 +0800414 err = rhashtable_rehash_alloc(ht, tbl, tbl->size * 2);
Thomas Grafb5e2c152015-03-24 20:42:19 +0000415 else if (ht->p.automatic_shrinking && rht_shrink_below_30(ht, tbl))
Herbert Xuda204202017-02-11 19:26:47 +0800416 err = rhashtable_shrink(ht);
417 else if (tbl->nest)
418 err = rhashtable_rehash_alloc(ht, tbl, tbl->size);
Herbert Xub8244782015-03-24 00:50:26 +1100419
Herbert Xu408f13e2019-03-21 09:39:52 +0800420 if (!err || err == -EEXIST) {
421 int nerr;
422
423 nerr = rhashtable_rehash_table(ht);
424 err = err ?: nerr;
425 }
Herbert Xub8244782015-03-24 00:50:26 +1100426
Thomas Graf97defe12015-01-02 23:00:20 +0100427 mutex_unlock(&ht->mutex);
Herbert Xub8244782015-03-24 00:50:26 +1100428
429 if (err)
430 schedule_work(&ht->run_work);
Thomas Graf97defe12015-01-02 23:00:20 +0100431}
432
Herbert Xuca268932016-09-19 19:00:09 +0800433static int rhashtable_insert_rehash(struct rhashtable *ht,
434 struct bucket_table *tbl)
Herbert Xuccd57b12015-03-24 00:50:28 +1100435{
436 struct bucket_table *old_tbl;
437 struct bucket_table *new_tbl;
Herbert Xuccd57b12015-03-24 00:50:28 +1100438 unsigned int size;
439 int err;
440
441 old_tbl = rht_dereference_rcu(ht->tbl, ht);
Herbert Xuccd57b12015-03-24 00:50:28 +1100442
443 size = tbl->size;
444
Herbert Xu3cf92222015-12-03 20:41:29 +0800445 err = -EBUSY;
446
Herbert Xuccd57b12015-03-24 00:50:28 +1100447 if (rht_grow_above_75(ht, tbl))
448 size *= 2;
Thomas Grafa87b9eb2015-04-22 09:41:46 +0200449 /* Do not schedule more than one rehash */
450 else if (old_tbl != tbl)
Herbert Xu3cf92222015-12-03 20:41:29 +0800451 goto fail;
452
453 err = -ENOMEM;
Herbert Xuccd57b12015-03-24 00:50:28 +1100454
Davidlohr Bueso93f976b2018-08-21 22:01:45 -0700455 new_tbl = bucket_table_alloc(ht, size, GFP_ATOMIC | __GFP_NOWARN);
Herbert Xu3cf92222015-12-03 20:41:29 +0800456 if (new_tbl == NULL)
457 goto fail;
Herbert Xuccd57b12015-03-24 00:50:28 +1100458
459 err = rhashtable_rehash_attach(ht, tbl, new_tbl);
460 if (err) {
461 bucket_table_free(new_tbl);
462 if (err == -EEXIST)
463 err = 0;
464 } else
465 schedule_work(&ht->run_work);
466
467 return err;
Herbert Xu3cf92222015-12-03 20:41:29 +0800468
469fail:
470 /* Do not fail the insert if someone else did a rehash. */
NeilBrownc0690012018-06-18 12:52:50 +1000471 if (likely(rcu_access_pointer(tbl->future_tbl)))
Herbert Xu3cf92222015-12-03 20:41:29 +0800472 return 0;
473
474 /* Schedule async rehash to retry allocation in process context. */
475 if (err == -ENOMEM)
476 schedule_work(&ht->run_work);
477
478 return err;
Herbert Xuccd57b12015-03-24 00:50:28 +1100479}
Herbert Xuccd57b12015-03-24 00:50:28 +1100480
Herbert Xuca268932016-09-19 19:00:09 +0800481static void *rhashtable_lookup_one(struct rhashtable *ht,
Herbert Xuba6306e2019-05-16 15:19:46 +0800482 struct rhash_lock_head **bkt,
Herbert Xuca268932016-09-19 19:00:09 +0800483 struct bucket_table *tbl, unsigned int hash,
484 const void *key, struct rhash_head *obj)
Herbert Xu02fd97c2015-03-20 21:57:00 +1100485{
Herbert Xuca268932016-09-19 19:00:09 +0800486 struct rhashtable_compare_arg arg = {
487 .ht = ht,
488 .key = key,
489 };
NeilBrowne4edbe32019-04-12 11:52:07 +1000490 struct rhash_head __rcu **pprev = NULL;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100491 struct rhash_head *head;
Herbert Xuca268932016-09-19 19:00:09 +0800492 int elasticity;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100493
Florian Westphal5f8ddea2017-04-16 02:55:09 +0200494 elasticity = RHT_ELASTICITY;
NeilBrownadc6a3a2019-04-12 11:52:08 +1000495 rht_for_each_from(head, rht_ptr(bkt, tbl, hash), tbl, hash) {
Herbert Xuca268932016-09-19 19:00:09 +0800496 struct rhlist_head *list;
497 struct rhlist_head *plist;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100498
Herbert Xuca268932016-09-19 19:00:09 +0800499 elasticity--;
500 if (!key ||
501 (ht->p.obj_cmpfn ?
502 ht->p.obj_cmpfn(&arg, rht_obj(ht, head)) :
Paul Blakeyd3dcf8e2018-03-04 17:29:48 +0200503 rhashtable_compare(&arg, rht_obj(ht, head)))) {
504 pprev = &head->next;
Herbert Xuca268932016-09-19 19:00:09 +0800505 continue;
Paul Blakeyd3dcf8e2018-03-04 17:29:48 +0200506 }
Herbert Xuca268932016-09-19 19:00:09 +0800507
508 if (!ht->rhlist)
509 return rht_obj(ht, head);
510
511 list = container_of(obj, struct rhlist_head, rhead);
512 plist = container_of(head, struct rhlist_head, rhead);
513
514 RCU_INIT_POINTER(list->next, plist);
515 head = rht_dereference_bucket(head->next, tbl, hash);
516 RCU_INIT_POINTER(list->rhead.next, head);
NeilBrown8f0db012019-04-02 10:07:45 +1100517 if (pprev)
518 rcu_assign_pointer(*pprev, obj);
519 else
520 /* Need to preserve the bit lock */
NeilBrownf4712b42019-04-12 11:52:08 +1000521 rht_assign_locked(bkt, obj);
Herbert Xuca268932016-09-19 19:00:09 +0800522
523 return NULL;
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200524 }
Herbert Xu02fd97c2015-03-20 21:57:00 +1100525
Herbert Xuca268932016-09-19 19:00:09 +0800526 if (elasticity <= 0)
527 return ERR_PTR(-EAGAIN);
528
529 return ERR_PTR(-ENOENT);
530}
531
532static struct bucket_table *rhashtable_insert_one(struct rhashtable *ht,
Herbert Xuba6306e2019-05-16 15:19:46 +0800533 struct rhash_lock_head **bkt,
Herbert Xuca268932016-09-19 19:00:09 +0800534 struct bucket_table *tbl,
535 unsigned int hash,
536 struct rhash_head *obj,
537 void *data)
538{
539 struct bucket_table *new_tbl;
540 struct rhash_head *head;
541
542 if (!IS_ERR_OR_NULL(data))
543 return ERR_PTR(-EEXIST);
544
545 if (PTR_ERR(data) != -EAGAIN && PTR_ERR(data) != -ENOENT)
546 return ERR_CAST(data);
547
NeilBrownc0690012018-06-18 12:52:50 +1000548 new_tbl = rht_dereference_rcu(tbl->future_tbl, ht);
Herbert Xuca268932016-09-19 19:00:09 +0800549 if (new_tbl)
550 return new_tbl;
551
552 if (PTR_ERR(data) != -ENOENT)
553 return ERR_CAST(data);
554
Herbert Xu07ee0722015-05-15 11:30:47 +0800555 if (unlikely(rht_grow_above_max(ht, tbl)))
Herbert Xuca268932016-09-19 19:00:09 +0800556 return ERR_PTR(-E2BIG);
Herbert Xu07ee0722015-05-15 11:30:47 +0800557
Herbert Xuca268932016-09-19 19:00:09 +0800558 if (unlikely(rht_grow_above_100(ht, tbl)))
559 return ERR_PTR(-EAGAIN);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100560
NeilBrownadc6a3a2019-04-12 11:52:08 +1000561 head = rht_ptr(bkt, tbl, hash);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100562
563 RCU_INIT_POINTER(obj->next, head);
Herbert Xuca268932016-09-19 19:00:09 +0800564 if (ht->rhlist) {
565 struct rhlist_head *list;
566
567 list = container_of(obj, struct rhlist_head, rhead);
568 RCU_INIT_POINTER(list->next, NULL);
569 }
Herbert Xu02fd97c2015-03-20 21:57:00 +1100570
NeilBrown8f0db012019-04-02 10:07:45 +1100571 /* bkt is always the head of the list, so it holds
572 * the lock, which we need to preserve
573 */
NeilBrownf4712b42019-04-12 11:52:08 +1000574 rht_assign_locked(bkt, obj);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100575
576 atomic_inc(&ht->nelems);
Herbert Xuca268932016-09-19 19:00:09 +0800577 if (rht_grow_above_75(ht, tbl))
578 schedule_work(&ht->run_work);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100579
Herbert Xuca268932016-09-19 19:00:09 +0800580 return NULL;
581}
Herbert Xu02fd97c2015-03-20 21:57:00 +1100582
Herbert Xuca268932016-09-19 19:00:09 +0800583static void *rhashtable_try_insert(struct rhashtable *ht, const void *key,
584 struct rhash_head *obj)
585{
586 struct bucket_table *new_tbl;
587 struct bucket_table *tbl;
Herbert Xuba6306e2019-05-16 15:19:46 +0800588 struct rhash_lock_head **bkt;
Herbert Xuca268932016-09-19 19:00:09 +0800589 unsigned int hash;
Herbert Xuca268932016-09-19 19:00:09 +0800590 void *data;
591
NeilBrown4feb7c72019-03-21 14:42:40 +1100592 new_tbl = rcu_dereference(ht->tbl);
Herbert Xuca268932016-09-19 19:00:09 +0800593
NeilBrown4feb7c72019-03-21 14:42:40 +1100594 do {
Herbert Xuca268932016-09-19 19:00:09 +0800595 tbl = new_tbl;
596 hash = rht_head_hashfn(ht, tbl, obj, ht->p);
NeilBrown8f0db012019-04-02 10:07:45 +1100597 if (rcu_access_pointer(tbl->future_tbl))
598 /* Failure is OK */
599 bkt = rht_bucket_var(tbl, hash);
600 else
601 bkt = rht_bucket_insert(ht, tbl, hash);
602 if (bkt == NULL) {
603 new_tbl = rht_dereference_rcu(tbl->future_tbl, ht);
604 data = ERR_PTR(-EAGAIN);
605 } else {
NeilBrown149212f2019-04-02 10:07:45 +1100606 rht_lock(tbl, bkt);
NeilBrown8f0db012019-04-02 10:07:45 +1100607 data = rhashtable_lookup_one(ht, bkt, tbl,
608 hash, key, obj);
609 new_tbl = rhashtable_insert_one(ht, bkt, tbl,
610 hash, obj, data);
611 if (PTR_ERR(new_tbl) != -EEXIST)
612 data = ERR_CAST(new_tbl);
Herbert Xuca268932016-09-19 19:00:09 +0800613
NeilBrown149212f2019-04-02 10:07:45 +1100614 rht_unlock(tbl, bkt);
NeilBrown8f0db012019-04-02 10:07:45 +1100615 }
NeilBrown4feb7c72019-03-21 14:42:40 +1100616 } while (!IS_ERR_OR_NULL(new_tbl));
Herbert Xuca268932016-09-19 19:00:09 +0800617
618 if (PTR_ERR(data) == -EAGAIN)
619 data = ERR_PTR(rhashtable_insert_rehash(ht, tbl) ?:
620 -EAGAIN);
621
622 return data;
623}
624
625void *rhashtable_insert_slow(struct rhashtable *ht, const void *key,
626 struct rhash_head *obj)
627{
628 void *data;
629
630 do {
631 rcu_read_lock();
632 data = rhashtable_try_insert(ht, key, obj);
633 rcu_read_unlock();
634 } while (PTR_ERR(data) == -EAGAIN);
635
636 return data;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100637}
638EXPORT_SYMBOL_GPL(rhashtable_insert_slow);
639
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100640/**
Herbert Xu246779d2016-08-18 16:50:56 +0800641 * rhashtable_walk_enter - Initialise an iterator
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100642 * @ht: Table to walk over
643 * @iter: Hash table Iterator
644 *
645 * This function prepares a hash table walk.
646 *
647 * Note that if you restart a walk after rhashtable_walk_stop you
648 * may see the same object twice. Also, you may miss objects if
649 * there are removals in between rhashtable_walk_stop and the next
650 * call to rhashtable_walk_start.
651 *
652 * For a completely stable walk you should construct your own data
653 * structure outside the hash table.
654 *
NeilBrown82266e92018-04-24 08:29:13 +1000655 * This function may be called from any process context, including
656 * non-preemptable context, but cannot be called from softirq or
657 * hardirq context.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100658 *
Herbert Xu246779d2016-08-18 16:50:56 +0800659 * You must call rhashtable_walk_exit after this function returns.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100660 */
Herbert Xu246779d2016-08-18 16:50:56 +0800661void rhashtable_walk_enter(struct rhashtable *ht, struct rhashtable_iter *iter)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100662{
663 iter->ht = ht;
664 iter->p = NULL;
665 iter->slot = 0;
666 iter->skip = 0;
Tom Herbert2db54b42017-12-04 10:31:42 -0800667 iter->end_of_table = 0;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100668
Herbert Xuc6ff5262015-12-16 16:45:54 +0800669 spin_lock(&ht->lock);
Herbert Xu246779d2016-08-18 16:50:56 +0800670 iter->walker.tbl =
Herbert Xu179ccc02015-12-19 10:45:28 +0800671 rcu_dereference_protected(ht->tbl, lockdep_is_held(&ht->lock));
Herbert Xu246779d2016-08-18 16:50:56 +0800672 list_add(&iter->walker.list, &iter->walker.tbl->walkers);
Herbert Xuc6ff5262015-12-16 16:45:54 +0800673 spin_unlock(&ht->lock);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100674}
Herbert Xu246779d2016-08-18 16:50:56 +0800675EXPORT_SYMBOL_GPL(rhashtable_walk_enter);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100676
677/**
678 * rhashtable_walk_exit - Free an iterator
679 * @iter: Hash table Iterator
680 *
Herbert Xu6c4128f2019-02-14 22:03:27 +0800681 * This function frees resources allocated by rhashtable_walk_enter.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100682 */
683void rhashtable_walk_exit(struct rhashtable_iter *iter)
684{
Herbert Xuc6ff5262015-12-16 16:45:54 +0800685 spin_lock(&iter->ht->lock);
Herbert Xu246779d2016-08-18 16:50:56 +0800686 if (iter->walker.tbl)
687 list_del(&iter->walker.list);
Herbert Xuc6ff5262015-12-16 16:45:54 +0800688 spin_unlock(&iter->ht->lock);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100689}
690EXPORT_SYMBOL_GPL(rhashtable_walk_exit);
691
692/**
Tom Herbert97a6ec42017-12-04 10:31:41 -0800693 * rhashtable_walk_start_check - Start a hash table walk
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100694 * @iter: Hash table iterator
695 *
Andreas Gruenbacher06471692017-09-19 12:41:37 +0200696 * Start a hash table walk at the current iterator position. Note that we take
697 * the RCU lock in all cases including when we return an error. So you must
698 * always call rhashtable_walk_stop to clean up.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100699 *
700 * Returns zero if successful.
701 *
702 * Returns -EAGAIN if resize event occured. Note that the iterator
703 * will rewind back to the beginning and you may use it immediately
704 * by calling rhashtable_walk_next.
Tom Herbert97a6ec42017-12-04 10:31:41 -0800705 *
706 * rhashtable_walk_start is defined as an inline variant that returns
707 * void. This is preferred in cases where the caller would ignore
708 * resize events and always continue.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100709 */
Tom Herbert97a6ec42017-12-04 10:31:41 -0800710int rhashtable_walk_start_check(struct rhashtable_iter *iter)
Thomas Grafdb4374f2015-03-16 10:42:27 +0100711 __acquires(RCU)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100712{
Herbert Xueddee5ba2015-03-14 13:57:20 +1100713 struct rhashtable *ht = iter->ht;
NeilBrown5d240a82018-04-24 08:29:13 +1000714 bool rhlist = ht->rhlist;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100715
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100716 rcu_read_lock();
717
Herbert Xuc6ff5262015-12-16 16:45:54 +0800718 spin_lock(&ht->lock);
Herbert Xu246779d2016-08-18 16:50:56 +0800719 if (iter->walker.tbl)
720 list_del(&iter->walker.list);
Herbert Xuc6ff5262015-12-16 16:45:54 +0800721 spin_unlock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100722
NeilBrown5d240a82018-04-24 08:29:13 +1000723 if (iter->end_of_table)
724 return 0;
725 if (!iter->walker.tbl) {
Herbert Xu246779d2016-08-18 16:50:56 +0800726 iter->walker.tbl = rht_dereference_rcu(ht->tbl, ht);
NeilBrownb41cc042018-04-24 08:29:13 +1000727 iter->slot = 0;
728 iter->skip = 0;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100729 return -EAGAIN;
730 }
731
NeilBrown5d240a82018-04-24 08:29:13 +1000732 if (iter->p && !rhlist) {
733 /*
734 * We need to validate that 'p' is still in the table, and
735 * if so, update 'skip'
736 */
737 struct rhash_head *p;
738 int skip = 0;
739 rht_for_each_rcu(p, iter->walker.tbl, iter->slot) {
740 skip++;
741 if (p == iter->p) {
742 iter->skip = skip;
743 goto found;
744 }
745 }
746 iter->p = NULL;
747 } else if (iter->p && rhlist) {
748 /* Need to validate that 'list' is still in the table, and
749 * if so, update 'skip' and 'p'.
750 */
751 struct rhash_head *p;
752 struct rhlist_head *list;
753 int skip = 0;
754 rht_for_each_rcu(p, iter->walker.tbl, iter->slot) {
755 for (list = container_of(p, struct rhlist_head, rhead);
756 list;
757 list = rcu_dereference(list->next)) {
758 skip++;
759 if (list == iter->list) {
760 iter->p = p;
Rishabh Bhatnagarc643ecf2018-07-02 09:35:34 -0700761 iter->skip = skip;
NeilBrown5d240a82018-04-24 08:29:13 +1000762 goto found;
763 }
764 }
765 }
766 iter->p = NULL;
767 }
768found:
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100769 return 0;
770}
Tom Herbert97a6ec42017-12-04 10:31:41 -0800771EXPORT_SYMBOL_GPL(rhashtable_walk_start_check);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100772
773/**
Tom Herbert2db54b42017-12-04 10:31:42 -0800774 * __rhashtable_walk_find_next - Find the next element in a table (or the first
775 * one in case of a new walk).
776 *
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100777 * @iter: Hash table iterator
778 *
Tom Herbert2db54b42017-12-04 10:31:42 -0800779 * Returns the found object or NULL when the end of the table is reached.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100780 *
Tom Herbert2db54b42017-12-04 10:31:42 -0800781 * Returns -EAGAIN if resize event occurred.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100782 */
Tom Herbert2db54b42017-12-04 10:31:42 -0800783static void *__rhashtable_walk_find_next(struct rhashtable_iter *iter)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100784{
Herbert Xu246779d2016-08-18 16:50:56 +0800785 struct bucket_table *tbl = iter->walker.tbl;
Herbert Xuca268932016-09-19 19:00:09 +0800786 struct rhlist_head *list = iter->list;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100787 struct rhashtable *ht = iter->ht;
788 struct rhash_head *p = iter->p;
Herbert Xuca268932016-09-19 19:00:09 +0800789 bool rhlist = ht->rhlist;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100790
Tom Herbert2db54b42017-12-04 10:31:42 -0800791 if (!tbl)
792 return NULL;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100793
794 for (; iter->slot < tbl->size; iter->slot++) {
795 int skip = iter->skip;
796
797 rht_for_each_rcu(p, tbl, iter->slot) {
Herbert Xuca268932016-09-19 19:00:09 +0800798 if (rhlist) {
799 list = container_of(p, struct rhlist_head,
800 rhead);
801 do {
802 if (!skip)
803 goto next;
804 skip--;
805 list = rcu_dereference(list->next);
806 } while (list);
807
808 continue;
809 }
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100810 if (!skip)
811 break;
812 skip--;
813 }
814
815next:
816 if (!rht_is_a_nulls(p)) {
817 iter->skip++;
818 iter->p = p;
Herbert Xuca268932016-09-19 19:00:09 +0800819 iter->list = list;
820 return rht_obj(ht, rhlist ? &list->rhead : p);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100821 }
822
823 iter->skip = 0;
824 }
825
Phil Sutter142b9422015-07-06 15:51:20 +0200826 iter->p = NULL;
827
Herbert Xud88252f2015-03-24 00:50:19 +1100828 /* Ensure we see any new tables. */
829 smp_rmb();
830
Herbert Xu246779d2016-08-18 16:50:56 +0800831 iter->walker.tbl = rht_dereference_rcu(tbl->future_tbl, ht);
832 if (iter->walker.tbl) {
Herbert Xueddee5ba2015-03-14 13:57:20 +1100833 iter->slot = 0;
834 iter->skip = 0;
835 return ERR_PTR(-EAGAIN);
Tom Herbert2db54b42017-12-04 10:31:42 -0800836 } else {
837 iter->end_of_table = true;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100838 }
839
Thomas Grafc936a792015-05-05 02:22:53 +0200840 return NULL;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100841}
Tom Herbert2db54b42017-12-04 10:31:42 -0800842
843/**
844 * rhashtable_walk_next - Return the next object and advance the iterator
845 * @iter: Hash table iterator
846 *
847 * Note that you must call rhashtable_walk_stop when you are finished
848 * with the walk.
849 *
850 * Returns the next object or NULL when the end of the table is reached.
851 *
852 * Returns -EAGAIN if resize event occurred. Note that the iterator
853 * will rewind back to the beginning and you may continue to use it.
854 */
855void *rhashtable_walk_next(struct rhashtable_iter *iter)
856{
857 struct rhlist_head *list = iter->list;
858 struct rhashtable *ht = iter->ht;
859 struct rhash_head *p = iter->p;
860 bool rhlist = ht->rhlist;
861
862 if (p) {
863 if (!rhlist || !(list = rcu_dereference(list->next))) {
864 p = rcu_dereference(p->next);
865 list = container_of(p, struct rhlist_head, rhead);
866 }
867 if (!rht_is_a_nulls(p)) {
868 iter->skip++;
869 iter->p = p;
870 iter->list = list;
871 return rht_obj(ht, rhlist ? &list->rhead : p);
872 }
873
874 /* At the end of this slot, switch to next one and then find
875 * next entry from that point.
876 */
877 iter->skip = 0;
878 iter->slot++;
879 }
880
881 return __rhashtable_walk_find_next(iter);
882}
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100883EXPORT_SYMBOL_GPL(rhashtable_walk_next);
884
885/**
Tom Herbert2db54b42017-12-04 10:31:42 -0800886 * rhashtable_walk_peek - Return the next object but don't advance the iterator
887 * @iter: Hash table iterator
888 *
889 * Returns the next object or NULL when the end of the table is reached.
890 *
891 * Returns -EAGAIN if resize event occurred. Note that the iterator
892 * will rewind back to the beginning and you may continue to use it.
893 */
894void *rhashtable_walk_peek(struct rhashtable_iter *iter)
895{
896 struct rhlist_head *list = iter->list;
897 struct rhashtable *ht = iter->ht;
898 struct rhash_head *p = iter->p;
899
900 if (p)
901 return rht_obj(ht, ht->rhlist ? &list->rhead : p);
902
903 /* No object found in current iter, find next one in the table. */
904
905 if (iter->skip) {
906 /* A nonzero skip value points to the next entry in the table
907 * beyond that last one that was found. Decrement skip so
908 * we find the current value. __rhashtable_walk_find_next
909 * will restore the original value of skip assuming that
910 * the table hasn't changed.
911 */
912 iter->skip--;
913 }
914
915 return __rhashtable_walk_find_next(iter);
916}
917EXPORT_SYMBOL_GPL(rhashtable_walk_peek);
918
919/**
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100920 * rhashtable_walk_stop - Finish a hash table walk
921 * @iter: Hash table iterator
922 *
Andreas Gruenbacher06471692017-09-19 12:41:37 +0200923 * Finish a hash table walk. Does not reset the iterator to the start of the
924 * hash table.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100925 */
926void rhashtable_walk_stop(struct rhashtable_iter *iter)
Thomas Grafdb4374f2015-03-16 10:42:27 +0100927 __releases(RCU)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100928{
Herbert Xueddee5ba2015-03-14 13:57:20 +1100929 struct rhashtable *ht;
Herbert Xu246779d2016-08-18 16:50:56 +0800930 struct bucket_table *tbl = iter->walker.tbl;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100931
Herbert Xueddee5ba2015-03-14 13:57:20 +1100932 if (!tbl)
Herbert Xu963ecbd2015-03-15 21:12:04 +1100933 goto out;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100934
935 ht = iter->ht;
936
Herbert Xuba7c95e2015-03-24 09:53:17 +1100937 spin_lock(&ht->lock);
NeilBrown4feb7c72019-03-21 14:42:40 +1100938 if (rcu_head_after_call_rcu(&tbl->rcu, bucket_table_free_rcu))
939 /* This bucket table is being freed, don't re-link it. */
Herbert Xu246779d2016-08-18 16:50:56 +0800940 iter->walker.tbl = NULL;
NeilBrown4feb7c72019-03-21 14:42:40 +1100941 else
942 list_add(&iter->walker.list, &tbl->walkers);
Herbert Xuba7c95e2015-03-24 09:53:17 +1100943 spin_unlock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100944
Herbert Xu963ecbd2015-03-15 21:12:04 +1100945out:
946 rcu_read_unlock();
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100947}
948EXPORT_SYMBOL_GPL(rhashtable_walk_stop);
949
Herbert Xu488fb86e2015-03-20 21:56:59 +1100950static size_t rounded_hashtable_size(const struct rhashtable_params *params)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200951{
Davidlohr Bueso107d01f2018-07-16 13:26:13 -0700952 size_t retsize;
953
954 if (params->nelem_hint)
955 retsize = max(roundup_pow_of_two(params->nelem_hint * 4 / 3),
956 (unsigned long)params->min_size);
957 else
958 retsize = max(HASH_DEFAULT_SIZE,
959 (unsigned long)params->min_size);
960
961 return retsize;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200962}
963
Herbert Xu31ccde22015-03-24 00:50:21 +1100964static u32 rhashtable_jhash2(const void *key, u32 length, u32 seed)
965{
966 return jhash2(key, length, seed);
967}
968
Thomas Graf7e1e7762014-08-02 11:47:44 +0200969/**
970 * rhashtable_init - initialize a new hash table
971 * @ht: hash table to be initialized
972 * @params: configuration parameters
973 *
974 * Initializes a new hash table based on the provided configuration
975 * parameters. A table can be configured either with a variable or
976 * fixed length key:
977 *
978 * Configuration Example 1: Fixed length keys
979 * struct test_obj {
980 * int key;
981 * void * my_member;
982 * struct rhash_head node;
983 * };
984 *
985 * struct rhashtable_params params = {
986 * .head_offset = offsetof(struct test_obj, node),
987 * .key_offset = offsetof(struct test_obj, key),
988 * .key_len = sizeof(int),
Daniel Borkmann87545892014-12-10 16:33:11 +0100989 * .hashfn = jhash,
Thomas Graf7e1e7762014-08-02 11:47:44 +0200990 * };
991 *
992 * Configuration Example 2: Variable length keys
993 * struct test_obj {
994 * [...]
995 * struct rhash_head node;
996 * };
997 *
Patrick McHardy49f7b332015-03-25 13:07:45 +0000998 * u32 my_hash_fn(const void *data, u32 len, u32 seed)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200999 * {
1000 * struct test_obj *obj = data;
1001 *
1002 * return [... hash ...];
1003 * }
1004 *
1005 * struct rhashtable_params params = {
1006 * .head_offset = offsetof(struct test_obj, node),
Daniel Borkmann87545892014-12-10 16:33:11 +01001007 * .hashfn = jhash,
Thomas Graf7e1e7762014-08-02 11:47:44 +02001008 * .obj_hashfn = my_hash_fn,
Thomas Graf7e1e7762014-08-02 11:47:44 +02001009 * };
1010 */
Herbert Xu488fb86e2015-03-20 21:56:59 +11001011int rhashtable_init(struct rhashtable *ht,
1012 const struct rhashtable_params *params)
Thomas Graf7e1e7762014-08-02 11:47:44 +02001013{
1014 struct bucket_table *tbl;
1015 size_t size;
1016
Herbert Xu31ccde22015-03-24 00:50:21 +11001017 if ((!params->key_len && !params->obj_hashfn) ||
Herbert Xu02fd97c2015-03-20 21:57:00 +11001018 (params->obj_hashfn && !params->obj_cmpfn))
Thomas Graf7e1e7762014-08-02 11:47:44 +02001019 return -EINVAL;
1020
Thomas Graf97defe12015-01-02 23:00:20 +01001021 memset(ht, 0, sizeof(*ht));
1022 mutex_init(&ht->mutex);
Herbert Xuba7c95e2015-03-24 09:53:17 +11001023 spin_lock_init(&ht->lock);
Thomas Graf97defe12015-01-02 23:00:20 +01001024 memcpy(&ht->p, params, sizeof(*params));
1025
Thomas Grafa998f712015-03-19 22:31:13 +00001026 if (params->min_size)
1027 ht->p.min_size = roundup_pow_of_two(params->min_size);
1028
Herbert Xu6d684e52017-04-27 13:44:51 +08001029 /* Cap total entries at 2^31 to avoid nelems overflow. */
1030 ht->max_elems = 1u << 31;
Herbert Xu2d2ab652017-04-28 14:10:48 +08001031
1032 if (params->max_size) {
1033 ht->p.max_size = rounddown_pow_of_two(params->max_size);
1034 if (ht->p.max_size < ht->max_elems / 2)
1035 ht->max_elems = ht->p.max_size * 2;
1036 }
Herbert Xu6d684e52017-04-27 13:44:51 +08001037
Florian Westphal48e75b432017-05-01 22:18:01 +02001038 ht->p.min_size = max_t(u16, ht->p.min_size, HASH_MIN_SIZE);
Thomas Grafa998f712015-03-19 22:31:13 +00001039
Davidlohr Bueso107d01f2018-07-16 13:26:13 -07001040 size = rounded_hashtable_size(&ht->p);
Herbert Xu3a324602015-12-16 18:13:14 +08001041
Herbert Xu31ccde22015-03-24 00:50:21 +11001042 ht->key_len = ht->p.key_len;
1043 if (!params->hashfn) {
1044 ht->p.hashfn = jhash;
1045
1046 if (!(ht->key_len & (sizeof(u32) - 1))) {
1047 ht->key_len /= sizeof(u32);
1048 ht->p.hashfn = rhashtable_jhash2;
1049 }
1050 }
1051
Davidlohr Bueso2d22ecf2018-08-21 22:01:48 -07001052 /*
1053 * This is api initialization and thus we need to guarantee the
1054 * initial rhashtable allocation. Upon failure, retry with the
1055 * smallest possible size with __GFP_NOFAIL semantics.
1056 */
Herbert Xub9ecfda2015-03-24 00:50:27 +11001057 tbl = bucket_table_alloc(ht, size, GFP_KERNEL);
Davidlohr Bueso2d22ecf2018-08-21 22:01:48 -07001058 if (unlikely(tbl == NULL)) {
1059 size = max_t(u16, ht->p.min_size, HASH_MIN_SIZE);
1060 tbl = bucket_table_alloc(ht, size, GFP_KERNEL | __GFP_NOFAIL);
1061 }
Thomas Graf7e1e7762014-08-02 11:47:44 +02001062
Ying Xue545a1482015-01-07 13:41:57 +08001063 atomic_set(&ht->nelems, 0);
Daniel Borkmanna5b68462015-03-12 15:28:40 +01001064
Thomas Graf7e1e7762014-08-02 11:47:44 +02001065 RCU_INIT_POINTER(ht->tbl, tbl);
1066
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +01001067 INIT_WORK(&ht->run_work, rht_deferred_worker);
Thomas Graf97defe12015-01-02 23:00:20 +01001068
Thomas Graf7e1e7762014-08-02 11:47:44 +02001069 return 0;
1070}
1071EXPORT_SYMBOL_GPL(rhashtable_init);
1072
1073/**
Herbert Xuca268932016-09-19 19:00:09 +08001074 * rhltable_init - initialize a new hash list table
1075 * @hlt: hash list table to be initialized
1076 * @params: configuration parameters
1077 *
1078 * Initializes a new hash list table.
1079 *
1080 * See documentation for rhashtable_init.
1081 */
1082int rhltable_init(struct rhltable *hlt, const struct rhashtable_params *params)
1083{
1084 int err;
1085
Herbert Xuca268932016-09-19 19:00:09 +08001086 err = rhashtable_init(&hlt->ht, params);
1087 hlt->ht.rhlist = true;
1088 return err;
1089}
1090EXPORT_SYMBOL_GPL(rhltable_init);
1091
1092static void rhashtable_free_one(struct rhashtable *ht, struct rhash_head *obj,
1093 void (*free_fn)(void *ptr, void *arg),
1094 void *arg)
1095{
1096 struct rhlist_head *list;
1097
1098 if (!ht->rhlist) {
1099 free_fn(rht_obj(ht, obj), arg);
1100 return;
1101 }
1102
1103 list = container_of(obj, struct rhlist_head, rhead);
1104 do {
1105 obj = &list->rhead;
1106 list = rht_dereference(list->next, ht);
1107 free_fn(rht_obj(ht, obj), arg);
1108 } while (list);
1109}
1110
1111/**
Thomas Graf6b6f3022015-03-24 14:18:20 +01001112 * rhashtable_free_and_destroy - free elements and destroy hash table
Thomas Graf7e1e7762014-08-02 11:47:44 +02001113 * @ht: the hash table to destroy
Thomas Graf6b6f3022015-03-24 14:18:20 +01001114 * @free_fn: callback to release resources of element
1115 * @arg: pointer passed to free_fn
Thomas Graf7e1e7762014-08-02 11:47:44 +02001116 *
Thomas Graf6b6f3022015-03-24 14:18:20 +01001117 * Stops an eventual async resize. If defined, invokes free_fn for each
1118 * element to releasal resources. Please note that RCU protected
1119 * readers may still be accessing the elements. Releasing of resources
1120 * must occur in a compatible manner. Then frees the bucket array.
1121 *
1122 * This function will eventually sleep to wait for an async resize
1123 * to complete. The caller is responsible that no further write operations
1124 * occurs in parallel.
Thomas Graf7e1e7762014-08-02 11:47:44 +02001125 */
Thomas Graf6b6f3022015-03-24 14:18:20 +01001126void rhashtable_free_and_destroy(struct rhashtable *ht,
1127 void (*free_fn)(void *ptr, void *arg),
1128 void *arg)
Thomas Graf7e1e7762014-08-02 11:47:44 +02001129{
Taehee Yoo00261292018-07-08 11:55:51 +09001130 struct bucket_table *tbl, *next_tbl;
Thomas Graf6b6f3022015-03-24 14:18:20 +01001131 unsigned int i;
Thomas Graf97defe12015-01-02 23:00:20 +01001132
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +01001133 cancel_work_sync(&ht->run_work);
Ying Xue57699a42015-01-16 11:13:09 +08001134
Thomas Graf97defe12015-01-02 23:00:20 +01001135 mutex_lock(&ht->mutex);
Thomas Graf6b6f3022015-03-24 14:18:20 +01001136 tbl = rht_dereference(ht->tbl, ht);
Taehee Yoo00261292018-07-08 11:55:51 +09001137restart:
Thomas Graf6b6f3022015-03-24 14:18:20 +01001138 if (free_fn) {
1139 for (i = 0; i < tbl->size; i++) {
1140 struct rhash_head *pos, *next;
1141
Eric Dumazetae6da1f2018-03-31 12:58:48 -07001142 cond_resched();
NeilBrownadc6a3a2019-04-12 11:52:08 +10001143 for (pos = rht_ptr_exclusive(rht_bucket(tbl, i)),
Thomas Graf6b6f3022015-03-24 14:18:20 +01001144 next = !rht_is_a_nulls(pos) ?
1145 rht_dereference(pos->next, ht) : NULL;
1146 !rht_is_a_nulls(pos);
1147 pos = next,
1148 next = !rht_is_a_nulls(pos) ?
1149 rht_dereference(pos->next, ht) : NULL)
Herbert Xuca268932016-09-19 19:00:09 +08001150 rhashtable_free_one(ht, pos, free_fn, arg);
Thomas Graf6b6f3022015-03-24 14:18:20 +01001151 }
1152 }
1153
Taehee Yoo00261292018-07-08 11:55:51 +09001154 next_tbl = rht_dereference(tbl->future_tbl, ht);
Thomas Graf6b6f3022015-03-24 14:18:20 +01001155 bucket_table_free(tbl);
Taehee Yoo00261292018-07-08 11:55:51 +09001156 if (next_tbl) {
1157 tbl = next_tbl;
1158 goto restart;
1159 }
Thomas Graf97defe12015-01-02 23:00:20 +01001160 mutex_unlock(&ht->mutex);
Thomas Graf7e1e7762014-08-02 11:47:44 +02001161}
Thomas Graf6b6f3022015-03-24 14:18:20 +01001162EXPORT_SYMBOL_GPL(rhashtable_free_and_destroy);
1163
1164void rhashtable_destroy(struct rhashtable *ht)
1165{
1166 return rhashtable_free_and_destroy(ht, NULL, NULL);
1167}
Thomas Graf7e1e7762014-08-02 11:47:44 +02001168EXPORT_SYMBOL_GPL(rhashtable_destroy);
Herbert Xuda204202017-02-11 19:26:47 +08001169
Herbert Xuba6306e2019-05-16 15:19:46 +08001170struct rhash_lock_head **__rht_bucket_nested(const struct bucket_table *tbl,
1171 unsigned int hash)
Herbert Xuda204202017-02-11 19:26:47 +08001172{
1173 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
Herbert Xuda204202017-02-11 19:26:47 +08001174 unsigned int index = hash & ((1 << tbl->nest) - 1);
1175 unsigned int size = tbl->size >> tbl->nest;
1176 unsigned int subhash = hash;
1177 union nested_table *ntbl;
1178
1179 ntbl = (union nested_table *)rcu_dereference_raw(tbl->buckets[0]);
Herbert Xuc4d26032017-02-25 22:39:50 +08001180 ntbl = rht_dereference_bucket_rcu(ntbl[index].table, tbl, hash);
Herbert Xuda204202017-02-11 19:26:47 +08001181 subhash >>= tbl->nest;
1182
1183 while (ntbl && size > (1 << shift)) {
1184 index = subhash & ((1 << shift) - 1);
Herbert Xuc4d26032017-02-25 22:39:50 +08001185 ntbl = rht_dereference_bucket_rcu(ntbl[index].table,
1186 tbl, hash);
Herbert Xuda204202017-02-11 19:26:47 +08001187 size >>= shift;
1188 subhash >>= shift;
1189 }
1190
NeilBrownff302db2019-04-02 10:07:45 +11001191 if (!ntbl)
1192 return NULL;
Herbert Xuda204202017-02-11 19:26:47 +08001193
1194 return &ntbl[subhash].bucket;
1195
1196}
NeilBrownff302db2019-04-02 10:07:45 +11001197EXPORT_SYMBOL_GPL(__rht_bucket_nested);
1198
Herbert Xuba6306e2019-05-16 15:19:46 +08001199struct rhash_lock_head **rht_bucket_nested(const struct bucket_table *tbl,
1200 unsigned int hash)
NeilBrownff302db2019-04-02 10:07:45 +11001201{
Herbert Xuba6306e2019-05-16 15:19:46 +08001202 static struct rhash_lock_head *rhnull;
NeilBrownff302db2019-04-02 10:07:45 +11001203
1204 if (!rhnull)
1205 INIT_RHT_NULLS_HEAD(rhnull);
1206 return __rht_bucket_nested(tbl, hash) ?: &rhnull;
1207}
Herbert Xuda204202017-02-11 19:26:47 +08001208EXPORT_SYMBOL_GPL(rht_bucket_nested);
1209
Herbert Xuba6306e2019-05-16 15:19:46 +08001210struct rhash_lock_head **rht_bucket_nested_insert(struct rhashtable *ht,
1211 struct bucket_table *tbl,
1212 unsigned int hash)
Herbert Xuda204202017-02-11 19:26:47 +08001213{
1214 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
1215 unsigned int index = hash & ((1 << tbl->nest) - 1);
1216 unsigned int size = tbl->size >> tbl->nest;
1217 union nested_table *ntbl;
Herbert Xuda204202017-02-11 19:26:47 +08001218
1219 ntbl = (union nested_table *)rcu_dereference_raw(tbl->buckets[0]);
1220 hash >>= tbl->nest;
Herbert Xuda204202017-02-11 19:26:47 +08001221 ntbl = nested_table_alloc(ht, &ntbl[index].table,
NeilBrown5af68ef2018-06-18 12:52:50 +10001222 size <= (1 << shift));
Herbert Xuda204202017-02-11 19:26:47 +08001223
1224 while (ntbl && size > (1 << shift)) {
1225 index = hash & ((1 << shift) - 1);
1226 size >>= shift;
1227 hash >>= shift;
Herbert Xuda204202017-02-11 19:26:47 +08001228 ntbl = nested_table_alloc(ht, &ntbl[index].table,
NeilBrown5af68ef2018-06-18 12:52:50 +10001229 size <= (1 << shift));
Herbert Xuda204202017-02-11 19:26:47 +08001230 }
1231
1232 if (!ntbl)
1233 return NULL;
1234
1235 return &ntbl[hash].bucket;
1236
1237}
1238EXPORT_SYMBOL_GPL(rht_bucket_nested_insert);