blob: 238c8daa985249431be3271411232edcf9a58cf1 [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>
NeilBrown0eb71a92018-06-18 12:52:50 +100031#include <linux/rhashtable.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020032
33#define HASH_DEFAULT_SIZE 64UL
Herbert Xuc2e213c2015-03-18 20:01:16 +110034#define HASH_MIN_SIZE 4U
Florian Westphal4cf0b352016-08-12 12:03:52 +020035#define BUCKET_LOCKS_PER_CPU 32UL
Thomas Graf97defe12015-01-02 23:00:20 +010036
Herbert Xuda204202017-02-11 19:26:47 +080037union nested_table {
38 union nested_table __rcu *table;
39 struct rhash_head __rcu *bucket;
40};
41
Herbert Xu988dfbd2015-03-10 09:27:55 +110042static u32 head_hashfn(struct rhashtable *ht,
Thomas Graf8d24c0b2015-01-02 23:00:14 +010043 const struct bucket_table *tbl,
44 const struct rhash_head *he)
Thomas Graf7e1e7762014-08-02 11:47:44 +020045{
Herbert Xu02fd97c2015-03-20 21:57:00 +110046 return rht_head_hashfn(ht, tbl, he, ht->p);
Thomas Graf7e1e7762014-08-02 11:47:44 +020047}
48
Thomas Grafa03eaec2015-02-05 02:03:34 +010049#ifdef CONFIG_PROVE_LOCKING
Thomas Grafa03eaec2015-02-05 02:03:34 +010050#define ASSERT_RHT_MUTEX(HT) BUG_ON(!lockdep_rht_mutex_is_held(HT))
Thomas Grafa03eaec2015-02-05 02:03:34 +010051
52int lockdep_rht_mutex_is_held(struct rhashtable *ht)
53{
54 return (debug_locks) ? lockdep_is_held(&ht->mutex) : 1;
55}
56EXPORT_SYMBOL_GPL(lockdep_rht_mutex_is_held);
57
58int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash)
59{
Herbert Xu02fd97c2015-03-20 21:57:00 +110060 spinlock_t *lock = rht_bucket_lock(tbl, hash);
Thomas Grafa03eaec2015-02-05 02:03:34 +010061
62 return (debug_locks) ? lockdep_is_held(lock) : 1;
63}
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
Tom Herbert64e0cd02017-12-04 10:31:45 -0800108 free_bucket_spinlocks(tbl->locks);
Thomas Graf97defe12015-01-02 23:00:20 +0100109 kvfree(tbl);
110}
111
Herbert Xu9d901bc2015-03-14 13:57:23 +1100112static void bucket_table_free_rcu(struct rcu_head *head)
113{
114 bucket_table_free(container_of(head, struct bucket_table, rcu));
115}
116
Herbert Xuda204202017-02-11 19:26:47 +0800117static union nested_table *nested_table_alloc(struct rhashtable *ht,
118 union nested_table __rcu **prev,
NeilBrown5af68ef2018-06-18 12:52:50 +1000119 bool leaf)
Herbert Xuda204202017-02-11 19:26:47 +0800120{
121 union nested_table *ntbl;
122 int i;
123
124 ntbl = rcu_dereference(*prev);
125 if (ntbl)
126 return ntbl;
127
128 ntbl = kzalloc(PAGE_SIZE, GFP_ATOMIC);
129
NeilBrown5af68ef2018-06-18 12:52:50 +1000130 if (ntbl && leaf) {
131 for (i = 0; i < PAGE_SIZE / sizeof(ntbl[0]); i++)
NeilBrown9b4f64a2018-06-18 12:52:50 +1000132 INIT_RHT_NULLS_HEAD(ntbl[i].bucket);
Herbert Xuda204202017-02-11 19:26:47 +0800133 }
134
135 rcu_assign_pointer(*prev, ntbl);
136
137 return ntbl;
138}
139
140static struct bucket_table *nested_bucket_table_alloc(struct rhashtable *ht,
141 size_t nbuckets,
142 gfp_t gfp)
143{
144 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
145 struct bucket_table *tbl;
146 size_t size;
147
148 if (nbuckets < (1 << (shift + 1)))
149 return NULL;
150
151 size = sizeof(*tbl) + sizeof(tbl->buckets[0]);
152
153 tbl = kzalloc(size, gfp);
154 if (!tbl)
155 return NULL;
156
157 if (!nested_table_alloc(ht, (union nested_table __rcu **)tbl->buckets,
NeilBrown5af68ef2018-06-18 12:52:50 +1000158 false)) {
Herbert Xuda204202017-02-11 19:26:47 +0800159 kfree(tbl);
160 return NULL;
161 }
162
163 tbl->nest = (ilog2(nbuckets) - 1) % shift + 1;
164
165 return tbl;
166}
167
Thomas Graf97defe12015-01-02 23:00:20 +0100168static struct bucket_table *bucket_table_alloc(struct rhashtable *ht,
Herbert Xub9ecfda2015-03-24 00:50:27 +1100169 size_t nbuckets,
170 gfp_t gfp)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200171{
Daniel Borkmanneb6d1ab2015-02-20 00:53:38 +0100172 struct bucket_table *tbl = NULL;
Tom Herbert64e0cd02017-12-04 10:31:45 -0800173 size_t size, max_locks;
Thomas Graff89bd6f2015-01-02 23:00:21 +0100174 int i;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200175
176 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]);
Davidlohr Bueso93f976b2018-08-21 22:01:45 -0700177 tbl = kvzalloc(size, gfp);
Herbert Xuda204202017-02-11 19:26:47 +0800178
179 size = nbuckets;
180
181 if (tbl == NULL && gfp != GFP_KERNEL) {
182 tbl = nested_bucket_table_alloc(ht, nbuckets, gfp);
183 nbuckets = 0;
184 }
Thomas Graf7e1e7762014-08-02 11:47:44 +0200185 if (tbl == NULL)
186 return NULL;
187
Herbert Xuda204202017-02-11 19:26:47 +0800188 tbl->size = size;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200189
Tom Herbert64e0cd02017-12-04 10:31:45 -0800190 max_locks = size >> 1;
191 if (tbl->nest)
192 max_locks = min_t(size_t, max_locks, 1U << tbl->nest);
193
194 if (alloc_bucket_spinlocks(&tbl->locks, &tbl->locks_mask, max_locks,
195 ht->p.locks_mul, gfp) < 0) {
Thomas Graf97defe12015-01-02 23:00:20 +0100196 bucket_table_free(tbl);
197 return NULL;
198 }
Thomas Graf7e1e7762014-08-02 11:47:44 +0200199
Herbert Xueddee5ba2015-03-14 13:57:20 +1100200 INIT_LIST_HEAD(&tbl->walkers);
201
Jason A. Donenfeldd48ad082017-06-07 22:47:13 -0400202 tbl->hash_rnd = get_random_u32();
Herbert Xu5269b532015-03-14 13:57:22 +1100203
Thomas Graff89bd6f2015-01-02 23:00:21 +0100204 for (i = 0; i < nbuckets; i++)
NeilBrown9b4f64a2018-06-18 12:52:50 +1000205 INIT_RHT_NULLS_HEAD(tbl->buckets[i]);
Thomas Graff89bd6f2015-01-02 23:00:21 +0100206
Thomas Graf97defe12015-01-02 23:00:20 +0100207 return tbl;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200208}
209
Herbert Xub8244782015-03-24 00:50:26 +1100210static struct bucket_table *rhashtable_last_table(struct rhashtable *ht,
211 struct bucket_table *tbl)
212{
213 struct bucket_table *new_tbl;
214
215 do {
216 new_tbl = tbl;
217 tbl = rht_dereference_rcu(tbl->future_tbl, ht);
218 } while (tbl);
219
220 return new_tbl;
221}
222
Thomas Graf299e5c32015-03-24 14:18:17 +0100223static int rhashtable_rehash_one(struct rhashtable *ht, unsigned int old_hash)
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100224{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100225 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
NeilBrownc0690012018-06-18 12:52:50 +1000226 struct bucket_table *new_tbl = rhashtable_last_table(ht, old_tbl);
Herbert Xuda204202017-02-11 19:26:47 +0800227 struct rhash_head __rcu **pprev = rht_bucket_var(old_tbl, old_hash);
228 int err = -EAGAIN;
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100229 struct rhash_head *head, *next, *entry;
230 spinlock_t *new_bucket_lock;
Thomas Graf299e5c32015-03-24 14:18:17 +0100231 unsigned int new_hash;
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100232
Herbert Xuda204202017-02-11 19:26:47 +0800233 if (new_tbl->nest)
234 goto out;
235
236 err = -ENOENT;
237
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100238 rht_for_each(entry, old_tbl, old_hash) {
239 err = 0;
240 next = rht_dereference_bucket(entry->next, old_tbl, old_hash);
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100241
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100242 if (rht_is_a_nulls(next))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200243 break;
Thomas Graf97defe12015-01-02 23:00:20 +0100244
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100245 pprev = &entry->next;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200246 }
247
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100248 if (err)
249 goto out;
Thomas Graf97defe12015-01-02 23:00:20 +0100250
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100251 new_hash = head_hashfn(ht, new_tbl, entry);
Thomas Grafa5ec68e2015-02-05 02:03:32 +0100252
Herbert Xu02fd97c2015-03-20 21:57:00 +1100253 new_bucket_lock = rht_bucket_lock(new_tbl, new_hash);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100254
Herbert Xu8f2484b2015-03-14 13:57:21 +1100255 spin_lock_nested(new_bucket_lock, SINGLE_DEPTH_NESTING);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100256 head = rht_dereference_bucket(new_tbl->buckets[new_hash],
257 new_tbl, new_hash);
258
Dmitriy Vyukov7def0f92015-09-22 10:51:52 +0200259 RCU_INIT_POINTER(entry->next, head);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100260
261 rcu_assign_pointer(new_tbl->buckets[new_hash], entry);
262 spin_unlock(new_bucket_lock);
263
264 rcu_assign_pointer(*pprev, next);
265
266out:
267 return err;
Thomas Graf97defe12015-01-02 23:00:20 +0100268}
269
Herbert Xuda204202017-02-11 19:26:47 +0800270static int rhashtable_rehash_chain(struct rhashtable *ht,
Thomas Graf299e5c32015-03-24 14:18:17 +0100271 unsigned int old_hash)
Thomas Graf97defe12015-01-02 23:00:20 +0100272{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100273 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
274 spinlock_t *old_bucket_lock;
Herbert Xuda204202017-02-11 19:26:47 +0800275 int err;
Thomas Graf7cd10db2015-02-05 02:03:35 +0100276
Herbert Xu02fd97c2015-03-20 21:57:00 +1100277 old_bucket_lock = rht_bucket_lock(old_tbl, old_hash);
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100278
279 spin_lock_bh(old_bucket_lock);
Herbert Xuda204202017-02-11 19:26:47 +0800280 while (!(err = rhashtable_rehash_one(ht, old_hash)))
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100281 ;
Herbert Xuda204202017-02-11 19:26:47 +0800282
283 if (err == -ENOENT) {
284 old_tbl->rehash++;
285 err = 0;
286 }
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100287 spin_unlock_bh(old_bucket_lock);
Herbert Xuda204202017-02-11 19:26:47 +0800288
289 return err;
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100290}
291
Herbert Xub8244782015-03-24 00:50:26 +1100292static int rhashtable_rehash_attach(struct rhashtable *ht,
293 struct bucket_table *old_tbl,
294 struct bucket_table *new_tbl)
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100295{
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100296 /* Make insertions go into the new, empty table right away. Deletions
297 * and lookups will be attempted in both tables until we synchronize.
NeilBrown0ad66442018-06-18 12:52:50 +1000298 * As cmpxchg() provides strong barriers, we do not need
299 * rcu_assign_pointer().
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100300 */
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100301
NeilBrown0ad66442018-06-18 12:52:50 +1000302 if (cmpxchg(&old_tbl->future_tbl, NULL, new_tbl) != NULL)
303 return -EEXIST;
Herbert Xub8244782015-03-24 00:50:26 +1100304
305 return 0;
306}
307
308static int rhashtable_rehash_table(struct rhashtable *ht)
309{
310 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
311 struct bucket_table *new_tbl;
312 struct rhashtable_walker *walker;
Thomas Graf299e5c32015-03-24 14:18:17 +0100313 unsigned int old_hash;
Herbert Xuda204202017-02-11 19:26:47 +0800314 int err;
Herbert Xub8244782015-03-24 00:50:26 +1100315
316 new_tbl = rht_dereference(old_tbl->future_tbl, ht);
317 if (!new_tbl)
318 return 0;
319
Herbert Xuda204202017-02-11 19:26:47 +0800320 for (old_hash = 0; old_hash < old_tbl->size; old_hash++) {
321 err = rhashtable_rehash_chain(ht, old_hash);
322 if (err)
323 return err;
Eric Dumazetae6da1f2018-03-31 12:58:48 -0700324 cond_resched();
Herbert Xuda204202017-02-11 19:26:47 +0800325 }
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100326
327 /* Publish the new table pointer. */
328 rcu_assign_pointer(ht->tbl, new_tbl);
329
Herbert Xuba7c95e2015-03-24 09:53:17 +1100330 spin_lock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100331 list_for_each_entry(walker, &old_tbl->walkers, list)
332 walker->tbl = NULL;
Herbert Xuba7c95e2015-03-24 09:53:17 +1100333 spin_unlock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100334
Herbert Xuaa34a6cb02015-03-11 09:43:48 +1100335 /* Wait for readers. All new readers will see the new
336 * table, and thus no references to the old table will
337 * remain.
338 */
Herbert Xu9d901bc2015-03-14 13:57:23 +1100339 call_rcu(&old_tbl->rcu, bucket_table_free_rcu);
Herbert Xub8244782015-03-24 00:50:26 +1100340
341 return rht_dereference(new_tbl->future_tbl, ht) ? -EAGAIN : 0;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200342}
343
Herbert Xuda204202017-02-11 19:26:47 +0800344static int rhashtable_rehash_alloc(struct rhashtable *ht,
345 struct bucket_table *old_tbl,
346 unsigned int size)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200347{
Herbert Xuda204202017-02-11 19:26:47 +0800348 struct bucket_table *new_tbl;
Herbert Xub8244782015-03-24 00:50:26 +1100349 int err;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200350
351 ASSERT_RHT_MUTEX(ht);
352
Herbert Xuda204202017-02-11 19:26:47 +0800353 new_tbl = bucket_table_alloc(ht, size, GFP_KERNEL);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200354 if (new_tbl == NULL)
355 return -ENOMEM;
356
Herbert Xub8244782015-03-24 00:50:26 +1100357 err = rhashtable_rehash_attach(ht, old_tbl, new_tbl);
358 if (err)
359 bucket_table_free(new_tbl);
360
361 return err;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200362}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200363
364/**
365 * rhashtable_shrink - Shrink hash table while allowing concurrent lookups
366 * @ht: the hash table to shrink
Thomas Graf7e1e7762014-08-02 11:47:44 +0200367 *
Herbert Xu18093d12015-03-24 00:50:25 +1100368 * This function shrinks the hash table to fit, i.e., the smallest
369 * size would not cause it to expand right away automatically.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200370 *
Thomas Graf97defe12015-01-02 23:00:20 +0100371 * The caller must ensure that no concurrent resizing occurs by holding
372 * ht->mutex.
373 *
Thomas Graf7e1e7762014-08-02 11:47:44 +0200374 * The caller must ensure that no concurrent table mutations take place.
375 * It is however valid to have concurrent lookups if they are RCU protected.
Thomas Graf97defe12015-01-02 23:00:20 +0100376 *
377 * It is valid to have concurrent insertions and deletions protected by per
378 * bucket locks or concurrent RCU protected lookups and traversals.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200379 */
Herbert Xub8244782015-03-24 00:50:26 +1100380static int rhashtable_shrink(struct rhashtable *ht)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200381{
Herbert Xuda204202017-02-11 19:26:47 +0800382 struct bucket_table *old_tbl = rht_dereference(ht->tbl, ht);
Vegard Nossum12311952016-08-12 20:10:44 +0200383 unsigned int nelems = atomic_read(&ht->nelems);
384 unsigned int size = 0;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200385
Vegard Nossum12311952016-08-12 20:10:44 +0200386 if (nelems)
387 size = roundup_pow_of_two(nelems * 3 / 2);
Herbert Xu18093d12015-03-24 00:50:25 +1100388 if (size < ht->p.min_size)
389 size = ht->p.min_size;
390
391 if (old_tbl->size <= size)
392 return 0;
393
Herbert Xub8244782015-03-24 00:50:26 +1100394 if (rht_dereference(old_tbl->future_tbl, ht))
395 return -EEXIST;
396
Herbert Xuda204202017-02-11 19:26:47 +0800397 return rhashtable_rehash_alloc(ht, old_tbl, size);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200398}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200399
Thomas Graf97defe12015-01-02 23:00:20 +0100400static void rht_deferred_worker(struct work_struct *work)
401{
402 struct rhashtable *ht;
403 struct bucket_table *tbl;
Herbert Xub8244782015-03-24 00:50:26 +1100404 int err = 0;
Thomas Graf97defe12015-01-02 23:00:20 +0100405
Ying Xue57699a42015-01-16 11:13:09 +0800406 ht = container_of(work, struct rhashtable, run_work);
Thomas Graf97defe12015-01-02 23:00:20 +0100407 mutex_lock(&ht->mutex);
Herbert Xu28134a52015-02-04 07:33:22 +1100408
Thomas Graf97defe12015-01-02 23:00:20 +0100409 tbl = rht_dereference(ht->tbl, ht);
Herbert Xub8244782015-03-24 00:50:26 +1100410 tbl = rhashtable_last_table(ht, tbl);
Thomas Graf97defe12015-01-02 23:00:20 +0100411
Daniel Borkmanna5b68462015-03-12 15:28:40 +0100412 if (rht_grow_above_75(ht, tbl))
Herbert Xuda204202017-02-11 19:26:47 +0800413 err = rhashtable_rehash_alloc(ht, tbl, tbl->size * 2);
Thomas Grafb5e2c152015-03-24 20:42:19 +0000414 else if (ht->p.automatic_shrinking && rht_shrink_below_30(ht, tbl))
Herbert Xuda204202017-02-11 19:26:47 +0800415 err = rhashtable_shrink(ht);
416 else if (tbl->nest)
417 err = rhashtable_rehash_alloc(ht, tbl, tbl->size);
Herbert Xub8244782015-03-24 00:50:26 +1100418
Herbert Xuda204202017-02-11 19:26:47 +0800419 if (!err)
420 err = rhashtable_rehash_table(ht);
Herbert Xub8244782015-03-24 00:50:26 +1100421
Thomas Graf97defe12015-01-02 23:00:20 +0100422 mutex_unlock(&ht->mutex);
Herbert Xub8244782015-03-24 00:50:26 +1100423
424 if (err)
425 schedule_work(&ht->run_work);
Thomas Graf97defe12015-01-02 23:00:20 +0100426}
427
Herbert Xuca268932016-09-19 19:00:09 +0800428static int rhashtable_insert_rehash(struct rhashtable *ht,
429 struct bucket_table *tbl)
Herbert Xuccd57b12015-03-24 00:50:28 +1100430{
431 struct bucket_table *old_tbl;
432 struct bucket_table *new_tbl;
Herbert Xuccd57b12015-03-24 00:50:28 +1100433 unsigned int size;
434 int err;
435
436 old_tbl = rht_dereference_rcu(ht->tbl, ht);
Herbert Xuccd57b12015-03-24 00:50:28 +1100437
438 size = tbl->size;
439
Herbert Xu3cf92222015-12-03 20:41:29 +0800440 err = -EBUSY;
441
Herbert Xuccd57b12015-03-24 00:50:28 +1100442 if (rht_grow_above_75(ht, tbl))
443 size *= 2;
Thomas Grafa87b9eb2015-04-22 09:41:46 +0200444 /* Do not schedule more than one rehash */
445 else if (old_tbl != tbl)
Herbert Xu3cf92222015-12-03 20:41:29 +0800446 goto fail;
447
448 err = -ENOMEM;
Herbert Xuccd57b12015-03-24 00:50:28 +1100449
Davidlohr Bueso93f976b2018-08-21 22:01:45 -0700450 new_tbl = bucket_table_alloc(ht, size, GFP_ATOMIC | __GFP_NOWARN);
Herbert Xu3cf92222015-12-03 20:41:29 +0800451 if (new_tbl == NULL)
452 goto fail;
Herbert Xuccd57b12015-03-24 00:50:28 +1100453
454 err = rhashtable_rehash_attach(ht, tbl, new_tbl);
455 if (err) {
456 bucket_table_free(new_tbl);
457 if (err == -EEXIST)
458 err = 0;
459 } else
460 schedule_work(&ht->run_work);
461
462 return err;
Herbert Xu3cf92222015-12-03 20:41:29 +0800463
464fail:
465 /* Do not fail the insert if someone else did a rehash. */
NeilBrownc0690012018-06-18 12:52:50 +1000466 if (likely(rcu_access_pointer(tbl->future_tbl)))
Herbert Xu3cf92222015-12-03 20:41:29 +0800467 return 0;
468
469 /* Schedule async rehash to retry allocation in process context. */
470 if (err == -ENOMEM)
471 schedule_work(&ht->run_work);
472
473 return err;
Herbert Xuccd57b12015-03-24 00:50:28 +1100474}
Herbert Xuccd57b12015-03-24 00:50:28 +1100475
Herbert Xuca268932016-09-19 19:00:09 +0800476static void *rhashtable_lookup_one(struct rhashtable *ht,
477 struct bucket_table *tbl, unsigned int hash,
478 const void *key, struct rhash_head *obj)
Herbert Xu02fd97c2015-03-20 21:57:00 +1100479{
Herbert Xuca268932016-09-19 19:00:09 +0800480 struct rhashtable_compare_arg arg = {
481 .ht = ht,
482 .key = key,
483 };
484 struct rhash_head __rcu **pprev;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100485 struct rhash_head *head;
Herbert Xuca268932016-09-19 19:00:09 +0800486 int elasticity;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100487
Florian Westphal5f8ddea2017-04-16 02:55:09 +0200488 elasticity = RHT_ELASTICITY;
Herbert Xuda204202017-02-11 19:26:47 +0800489 pprev = rht_bucket_var(tbl, hash);
490 rht_for_each_continue(head, *pprev, tbl, hash) {
Herbert Xuca268932016-09-19 19:00:09 +0800491 struct rhlist_head *list;
492 struct rhlist_head *plist;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100493
Herbert Xuca268932016-09-19 19:00:09 +0800494 elasticity--;
495 if (!key ||
496 (ht->p.obj_cmpfn ?
497 ht->p.obj_cmpfn(&arg, rht_obj(ht, head)) :
Paul Blakeyd3dcf8e2018-03-04 17:29:48 +0200498 rhashtable_compare(&arg, rht_obj(ht, head)))) {
499 pprev = &head->next;
Herbert Xuca268932016-09-19 19:00:09 +0800500 continue;
Paul Blakeyd3dcf8e2018-03-04 17:29:48 +0200501 }
Herbert Xuca268932016-09-19 19:00:09 +0800502
503 if (!ht->rhlist)
504 return rht_obj(ht, head);
505
506 list = container_of(obj, struct rhlist_head, rhead);
507 plist = container_of(head, struct rhlist_head, rhead);
508
509 RCU_INIT_POINTER(list->next, plist);
510 head = rht_dereference_bucket(head->next, tbl, hash);
511 RCU_INIT_POINTER(list->rhead.next, head);
512 rcu_assign_pointer(*pprev, obj);
513
514 return NULL;
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200515 }
Herbert Xu02fd97c2015-03-20 21:57:00 +1100516
Herbert Xuca268932016-09-19 19:00:09 +0800517 if (elasticity <= 0)
518 return ERR_PTR(-EAGAIN);
519
520 return ERR_PTR(-ENOENT);
521}
522
523static struct bucket_table *rhashtable_insert_one(struct rhashtable *ht,
524 struct bucket_table *tbl,
525 unsigned int hash,
526 struct rhash_head *obj,
527 void *data)
528{
Herbert Xuda204202017-02-11 19:26:47 +0800529 struct rhash_head __rcu **pprev;
Herbert Xuca268932016-09-19 19:00:09 +0800530 struct bucket_table *new_tbl;
531 struct rhash_head *head;
532
533 if (!IS_ERR_OR_NULL(data))
534 return ERR_PTR(-EEXIST);
535
536 if (PTR_ERR(data) != -EAGAIN && PTR_ERR(data) != -ENOENT)
537 return ERR_CAST(data);
538
NeilBrownc0690012018-06-18 12:52:50 +1000539 new_tbl = rht_dereference_rcu(tbl->future_tbl, ht);
Herbert Xuca268932016-09-19 19:00:09 +0800540 if (new_tbl)
541 return new_tbl;
542
543 if (PTR_ERR(data) != -ENOENT)
544 return ERR_CAST(data);
545
Herbert Xu07ee0722015-05-15 11:30:47 +0800546 if (unlikely(rht_grow_above_max(ht, tbl)))
Herbert Xuca268932016-09-19 19:00:09 +0800547 return ERR_PTR(-E2BIG);
Herbert Xu07ee0722015-05-15 11:30:47 +0800548
Herbert Xuca268932016-09-19 19:00:09 +0800549 if (unlikely(rht_grow_above_100(ht, tbl)))
550 return ERR_PTR(-EAGAIN);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100551
Herbert Xuda204202017-02-11 19:26:47 +0800552 pprev = rht_bucket_insert(ht, tbl, hash);
553 if (!pprev)
554 return ERR_PTR(-ENOMEM);
555
556 head = rht_dereference_bucket(*pprev, tbl, hash);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100557
558 RCU_INIT_POINTER(obj->next, head);
Herbert Xuca268932016-09-19 19:00:09 +0800559 if (ht->rhlist) {
560 struct rhlist_head *list;
561
562 list = container_of(obj, struct rhlist_head, rhead);
563 RCU_INIT_POINTER(list->next, NULL);
564 }
Herbert Xu02fd97c2015-03-20 21:57:00 +1100565
Herbert Xuda204202017-02-11 19:26:47 +0800566 rcu_assign_pointer(*pprev, obj);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100567
568 atomic_inc(&ht->nelems);
Herbert Xuca268932016-09-19 19:00:09 +0800569 if (rht_grow_above_75(ht, tbl))
570 schedule_work(&ht->run_work);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100571
Herbert Xuca268932016-09-19 19:00:09 +0800572 return NULL;
573}
Herbert Xu02fd97c2015-03-20 21:57:00 +1100574
Herbert Xuca268932016-09-19 19:00:09 +0800575static void *rhashtable_try_insert(struct rhashtable *ht, const void *key,
576 struct rhash_head *obj)
577{
578 struct bucket_table *new_tbl;
579 struct bucket_table *tbl;
580 unsigned int hash;
581 spinlock_t *lock;
582 void *data;
583
584 tbl = rcu_dereference(ht->tbl);
585
586 /* All insertions must grab the oldest table containing
587 * the hashed bucket that is yet to be rehashed.
588 */
589 for (;;) {
590 hash = rht_head_hashfn(ht, tbl, obj, ht->p);
591 lock = rht_bucket_lock(tbl, hash);
592 spin_lock_bh(lock);
593
594 if (tbl->rehash <= hash)
595 break;
596
597 spin_unlock_bh(lock);
NeilBrownc0690012018-06-18 12:52:50 +1000598 tbl = rht_dereference_rcu(tbl->future_tbl, ht);
Herbert Xuca268932016-09-19 19:00:09 +0800599 }
600
601 data = rhashtable_lookup_one(ht, tbl, hash, key, obj);
602 new_tbl = rhashtable_insert_one(ht, tbl, hash, obj, data);
603 if (PTR_ERR(new_tbl) != -EEXIST)
604 data = ERR_CAST(new_tbl);
605
606 while (!IS_ERR_OR_NULL(new_tbl)) {
607 tbl = new_tbl;
608 hash = rht_head_hashfn(ht, tbl, obj, ht->p);
609 spin_lock_nested(rht_bucket_lock(tbl, hash),
610 SINGLE_DEPTH_NESTING);
611
612 data = rhashtable_lookup_one(ht, tbl, hash, key, obj);
613 new_tbl = rhashtable_insert_one(ht, tbl, hash, obj, data);
614 if (PTR_ERR(new_tbl) != -EEXIST)
615 data = ERR_CAST(new_tbl);
616
617 spin_unlock(rht_bucket_lock(tbl, hash));
618 }
619
620 spin_unlock_bh(lock);
621
622 if (PTR_ERR(data) == -EAGAIN)
623 data = ERR_PTR(rhashtable_insert_rehash(ht, tbl) ?:
624 -EAGAIN);
625
626 return data;
627}
628
629void *rhashtable_insert_slow(struct rhashtable *ht, const void *key,
630 struct rhash_head *obj)
631{
632 void *data;
633
634 do {
635 rcu_read_lock();
636 data = rhashtable_try_insert(ht, key, obj);
637 rcu_read_unlock();
638 } while (PTR_ERR(data) == -EAGAIN);
639
640 return data;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100641}
642EXPORT_SYMBOL_GPL(rhashtable_insert_slow);
643
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100644/**
Herbert Xu246779d2016-08-18 16:50:56 +0800645 * rhashtable_walk_enter - Initialise an iterator
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100646 * @ht: Table to walk over
647 * @iter: Hash table Iterator
648 *
649 * This function prepares a hash table walk.
650 *
651 * Note that if you restart a walk after rhashtable_walk_stop you
652 * may see the same object twice. Also, you may miss objects if
653 * there are removals in between rhashtable_walk_stop and the next
654 * call to rhashtable_walk_start.
655 *
656 * For a completely stable walk you should construct your own data
657 * structure outside the hash table.
658 *
NeilBrown82266e92018-04-24 08:29:13 +1000659 * This function may be called from any process context, including
660 * non-preemptable context, but cannot be called from softirq or
661 * hardirq context.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100662 *
Herbert Xu246779d2016-08-18 16:50:56 +0800663 * You must call rhashtable_walk_exit after this function returns.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100664 */
Herbert Xu246779d2016-08-18 16:50:56 +0800665void rhashtable_walk_enter(struct rhashtable *ht, struct rhashtable_iter *iter)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100666{
667 iter->ht = ht;
668 iter->p = NULL;
669 iter->slot = 0;
670 iter->skip = 0;
Tom Herbert2db54b42017-12-04 10:31:42 -0800671 iter->end_of_table = 0;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100672
Herbert Xuc6ff5262015-12-16 16:45:54 +0800673 spin_lock(&ht->lock);
Herbert Xu246779d2016-08-18 16:50:56 +0800674 iter->walker.tbl =
Herbert Xu179ccc02015-12-19 10:45:28 +0800675 rcu_dereference_protected(ht->tbl, lockdep_is_held(&ht->lock));
Herbert Xu246779d2016-08-18 16:50:56 +0800676 list_add(&iter->walker.list, &iter->walker.tbl->walkers);
Herbert Xuc6ff5262015-12-16 16:45:54 +0800677 spin_unlock(&ht->lock);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100678}
Herbert Xu246779d2016-08-18 16:50:56 +0800679EXPORT_SYMBOL_GPL(rhashtable_walk_enter);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100680
681/**
682 * rhashtable_walk_exit - Free an iterator
683 * @iter: Hash table Iterator
684 *
685 * This function frees resources allocated by rhashtable_walk_init.
686 */
687void rhashtable_walk_exit(struct rhashtable_iter *iter)
688{
Herbert Xuc6ff5262015-12-16 16:45:54 +0800689 spin_lock(&iter->ht->lock);
Herbert Xu246779d2016-08-18 16:50:56 +0800690 if (iter->walker.tbl)
691 list_del(&iter->walker.list);
Herbert Xuc6ff5262015-12-16 16:45:54 +0800692 spin_unlock(&iter->ht->lock);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100693}
694EXPORT_SYMBOL_GPL(rhashtable_walk_exit);
695
696/**
Tom Herbert97a6ec42017-12-04 10:31:41 -0800697 * rhashtable_walk_start_check - Start a hash table walk
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100698 * @iter: Hash table iterator
699 *
Andreas Gruenbacher06471692017-09-19 12:41:37 +0200700 * Start a hash table walk at the current iterator position. Note that we take
701 * the RCU lock in all cases including when we return an error. So you must
702 * always call rhashtable_walk_stop to clean up.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100703 *
704 * Returns zero if successful.
705 *
706 * Returns -EAGAIN if resize event occured. Note that the iterator
707 * will rewind back to the beginning and you may use it immediately
708 * by calling rhashtable_walk_next.
Tom Herbert97a6ec42017-12-04 10:31:41 -0800709 *
710 * rhashtable_walk_start is defined as an inline variant that returns
711 * void. This is preferred in cases where the caller would ignore
712 * resize events and always continue.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100713 */
Tom Herbert97a6ec42017-12-04 10:31:41 -0800714int rhashtable_walk_start_check(struct rhashtable_iter *iter)
Thomas Grafdb4374f2015-03-16 10:42:27 +0100715 __acquires(RCU)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100716{
Herbert Xueddee5ba2015-03-14 13:57:20 +1100717 struct rhashtable *ht = iter->ht;
NeilBrown5d240a82018-04-24 08:29:13 +1000718 bool rhlist = ht->rhlist;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100719
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100720 rcu_read_lock();
721
Herbert Xuc6ff5262015-12-16 16:45:54 +0800722 spin_lock(&ht->lock);
Herbert Xu246779d2016-08-18 16:50:56 +0800723 if (iter->walker.tbl)
724 list_del(&iter->walker.list);
Herbert Xuc6ff5262015-12-16 16:45:54 +0800725 spin_unlock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100726
NeilBrown5d240a82018-04-24 08:29:13 +1000727 if (iter->end_of_table)
728 return 0;
729 if (!iter->walker.tbl) {
Herbert Xu246779d2016-08-18 16:50:56 +0800730 iter->walker.tbl = rht_dereference_rcu(ht->tbl, ht);
NeilBrownb41cc042018-04-24 08:29:13 +1000731 iter->slot = 0;
732 iter->skip = 0;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100733 return -EAGAIN;
734 }
735
NeilBrown5d240a82018-04-24 08:29:13 +1000736 if (iter->p && !rhlist) {
737 /*
738 * We need to validate that 'p' is still in the table, and
739 * if so, update 'skip'
740 */
741 struct rhash_head *p;
742 int skip = 0;
743 rht_for_each_rcu(p, iter->walker.tbl, iter->slot) {
744 skip++;
745 if (p == iter->p) {
746 iter->skip = skip;
747 goto found;
748 }
749 }
750 iter->p = NULL;
751 } else if (iter->p && rhlist) {
752 /* Need to validate that 'list' is still in the table, and
753 * if so, update 'skip' and 'p'.
754 */
755 struct rhash_head *p;
756 struct rhlist_head *list;
757 int skip = 0;
758 rht_for_each_rcu(p, iter->walker.tbl, iter->slot) {
759 for (list = container_of(p, struct rhlist_head, rhead);
760 list;
761 list = rcu_dereference(list->next)) {
762 skip++;
763 if (list == iter->list) {
764 iter->p = p;
Rishabh Bhatnagarc643ecf2018-07-02 09:35:34 -0700765 iter->skip = skip;
NeilBrown5d240a82018-04-24 08:29:13 +1000766 goto found;
767 }
768 }
769 }
770 iter->p = NULL;
771 }
772found:
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100773 return 0;
774}
Tom Herbert97a6ec42017-12-04 10:31:41 -0800775EXPORT_SYMBOL_GPL(rhashtable_walk_start_check);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100776
777/**
Tom Herbert2db54b42017-12-04 10:31:42 -0800778 * __rhashtable_walk_find_next - Find the next element in a table (or the first
779 * one in case of a new walk).
780 *
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100781 * @iter: Hash table iterator
782 *
Tom Herbert2db54b42017-12-04 10:31:42 -0800783 * Returns the found object or NULL when the end of the table is reached.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100784 *
Tom Herbert2db54b42017-12-04 10:31:42 -0800785 * Returns -EAGAIN if resize event occurred.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100786 */
Tom Herbert2db54b42017-12-04 10:31:42 -0800787static void *__rhashtable_walk_find_next(struct rhashtable_iter *iter)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100788{
Herbert Xu246779d2016-08-18 16:50:56 +0800789 struct bucket_table *tbl = iter->walker.tbl;
Herbert Xuca268932016-09-19 19:00:09 +0800790 struct rhlist_head *list = iter->list;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100791 struct rhashtable *ht = iter->ht;
792 struct rhash_head *p = iter->p;
Herbert Xuca268932016-09-19 19:00:09 +0800793 bool rhlist = ht->rhlist;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100794
Tom Herbert2db54b42017-12-04 10:31:42 -0800795 if (!tbl)
796 return NULL;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100797
798 for (; iter->slot < tbl->size; iter->slot++) {
799 int skip = iter->skip;
800
801 rht_for_each_rcu(p, tbl, iter->slot) {
Herbert Xuca268932016-09-19 19:00:09 +0800802 if (rhlist) {
803 list = container_of(p, struct rhlist_head,
804 rhead);
805 do {
806 if (!skip)
807 goto next;
808 skip--;
809 list = rcu_dereference(list->next);
810 } while (list);
811
812 continue;
813 }
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100814 if (!skip)
815 break;
816 skip--;
817 }
818
819next:
820 if (!rht_is_a_nulls(p)) {
821 iter->skip++;
822 iter->p = p;
Herbert Xuca268932016-09-19 19:00:09 +0800823 iter->list = list;
824 return rht_obj(ht, rhlist ? &list->rhead : p);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100825 }
826
827 iter->skip = 0;
828 }
829
Phil Sutter142b9422015-07-06 15:51:20 +0200830 iter->p = NULL;
831
Herbert Xud88252f2015-03-24 00:50:19 +1100832 /* Ensure we see any new tables. */
833 smp_rmb();
834
Herbert Xu246779d2016-08-18 16:50:56 +0800835 iter->walker.tbl = rht_dereference_rcu(tbl->future_tbl, ht);
836 if (iter->walker.tbl) {
Herbert Xueddee5ba2015-03-14 13:57:20 +1100837 iter->slot = 0;
838 iter->skip = 0;
839 return ERR_PTR(-EAGAIN);
Tom Herbert2db54b42017-12-04 10:31:42 -0800840 } else {
841 iter->end_of_table = true;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100842 }
843
Thomas Grafc936a792015-05-05 02:22:53 +0200844 return NULL;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100845}
Tom Herbert2db54b42017-12-04 10:31:42 -0800846
847/**
848 * rhashtable_walk_next - Return the next object and advance the iterator
849 * @iter: Hash table iterator
850 *
851 * Note that you must call rhashtable_walk_stop when you are finished
852 * with the walk.
853 *
854 * Returns the next object or NULL when the end of the table is reached.
855 *
856 * Returns -EAGAIN if resize event occurred. Note that the iterator
857 * will rewind back to the beginning and you may continue to use it.
858 */
859void *rhashtable_walk_next(struct rhashtable_iter *iter)
860{
861 struct rhlist_head *list = iter->list;
862 struct rhashtable *ht = iter->ht;
863 struct rhash_head *p = iter->p;
864 bool rhlist = ht->rhlist;
865
866 if (p) {
867 if (!rhlist || !(list = rcu_dereference(list->next))) {
868 p = rcu_dereference(p->next);
869 list = container_of(p, struct rhlist_head, rhead);
870 }
871 if (!rht_is_a_nulls(p)) {
872 iter->skip++;
873 iter->p = p;
874 iter->list = list;
875 return rht_obj(ht, rhlist ? &list->rhead : p);
876 }
877
878 /* At the end of this slot, switch to next one and then find
879 * next entry from that point.
880 */
881 iter->skip = 0;
882 iter->slot++;
883 }
884
885 return __rhashtable_walk_find_next(iter);
886}
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100887EXPORT_SYMBOL_GPL(rhashtable_walk_next);
888
889/**
Tom Herbert2db54b42017-12-04 10:31:42 -0800890 * rhashtable_walk_peek - Return the next object but don't advance the iterator
891 * @iter: Hash table iterator
892 *
893 * Returns the next object or NULL when the end of the table is reached.
894 *
895 * Returns -EAGAIN if resize event occurred. Note that the iterator
896 * will rewind back to the beginning and you may continue to use it.
897 */
898void *rhashtable_walk_peek(struct rhashtable_iter *iter)
899{
900 struct rhlist_head *list = iter->list;
901 struct rhashtable *ht = iter->ht;
902 struct rhash_head *p = iter->p;
903
904 if (p)
905 return rht_obj(ht, ht->rhlist ? &list->rhead : p);
906
907 /* No object found in current iter, find next one in the table. */
908
909 if (iter->skip) {
910 /* A nonzero skip value points to the next entry in the table
911 * beyond that last one that was found. Decrement skip so
912 * we find the current value. __rhashtable_walk_find_next
913 * will restore the original value of skip assuming that
914 * the table hasn't changed.
915 */
916 iter->skip--;
917 }
918
919 return __rhashtable_walk_find_next(iter);
920}
921EXPORT_SYMBOL_GPL(rhashtable_walk_peek);
922
923/**
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100924 * rhashtable_walk_stop - Finish a hash table walk
925 * @iter: Hash table iterator
926 *
Andreas Gruenbacher06471692017-09-19 12:41:37 +0200927 * Finish a hash table walk. Does not reset the iterator to the start of the
928 * hash table.
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100929 */
930void rhashtable_walk_stop(struct rhashtable_iter *iter)
Thomas Grafdb4374f2015-03-16 10:42:27 +0100931 __releases(RCU)
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100932{
Herbert Xueddee5ba2015-03-14 13:57:20 +1100933 struct rhashtable *ht;
Herbert Xu246779d2016-08-18 16:50:56 +0800934 struct bucket_table *tbl = iter->walker.tbl;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100935
Herbert Xueddee5ba2015-03-14 13:57:20 +1100936 if (!tbl)
Herbert Xu963ecbd2015-03-15 21:12:04 +1100937 goto out;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100938
939 ht = iter->ht;
940
Herbert Xuba7c95e2015-03-24 09:53:17 +1100941 spin_lock(&ht->lock);
Herbert Xuc4db8842015-03-14 13:57:25 +1100942 if (tbl->rehash < tbl->size)
Herbert Xu246779d2016-08-18 16:50:56 +0800943 list_add(&iter->walker.list, &tbl->walkers);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100944 else
Herbert Xu246779d2016-08-18 16:50:56 +0800945 iter->walker.tbl = NULL;
Herbert Xuba7c95e2015-03-24 09:53:17 +1100946 spin_unlock(&ht->lock);
Herbert Xueddee5ba2015-03-14 13:57:20 +1100947
Herbert Xu963ecbd2015-03-15 21:12:04 +1100948out:
949 rcu_read_unlock();
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100950}
951EXPORT_SYMBOL_GPL(rhashtable_walk_stop);
952
Herbert Xu488fb86e2015-03-20 21:56:59 +1100953static size_t rounded_hashtable_size(const struct rhashtable_params *params)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200954{
Davidlohr Bueso107d01f2018-07-16 13:26:13 -0700955 size_t retsize;
956
957 if (params->nelem_hint)
958 retsize = max(roundup_pow_of_two(params->nelem_hint * 4 / 3),
959 (unsigned long)params->min_size);
960 else
961 retsize = max(HASH_DEFAULT_SIZE,
962 (unsigned long)params->min_size);
963
964 return retsize;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200965}
966
Herbert Xu31ccde22015-03-24 00:50:21 +1100967static u32 rhashtable_jhash2(const void *key, u32 length, u32 seed)
968{
969 return jhash2(key, length, seed);
970}
971
Thomas Graf7e1e7762014-08-02 11:47:44 +0200972/**
973 * rhashtable_init - initialize a new hash table
974 * @ht: hash table to be initialized
975 * @params: configuration parameters
976 *
977 * Initializes a new hash table based on the provided configuration
978 * parameters. A table can be configured either with a variable or
979 * fixed length key:
980 *
981 * Configuration Example 1: Fixed length keys
982 * struct test_obj {
983 * int key;
984 * void * my_member;
985 * struct rhash_head node;
986 * };
987 *
988 * struct rhashtable_params params = {
989 * .head_offset = offsetof(struct test_obj, node),
990 * .key_offset = offsetof(struct test_obj, key),
991 * .key_len = sizeof(int),
Daniel Borkmann87545892014-12-10 16:33:11 +0100992 * .hashfn = jhash,
Thomas Graf7e1e7762014-08-02 11:47:44 +0200993 * };
994 *
995 * Configuration Example 2: Variable length keys
996 * struct test_obj {
997 * [...]
998 * struct rhash_head node;
999 * };
1000 *
Patrick McHardy49f7b332015-03-25 13:07:45 +00001001 * u32 my_hash_fn(const void *data, u32 len, u32 seed)
Thomas Graf7e1e7762014-08-02 11:47:44 +02001002 * {
1003 * struct test_obj *obj = data;
1004 *
1005 * return [... hash ...];
1006 * }
1007 *
1008 * struct rhashtable_params params = {
1009 * .head_offset = offsetof(struct test_obj, node),
Daniel Borkmann87545892014-12-10 16:33:11 +01001010 * .hashfn = jhash,
Thomas Graf7e1e7762014-08-02 11:47:44 +02001011 * .obj_hashfn = my_hash_fn,
Thomas Graf7e1e7762014-08-02 11:47:44 +02001012 * };
1013 */
Herbert Xu488fb86e2015-03-20 21:56:59 +11001014int rhashtable_init(struct rhashtable *ht,
1015 const struct rhashtable_params *params)
Thomas Graf7e1e7762014-08-02 11:47:44 +02001016{
1017 struct bucket_table *tbl;
1018 size_t size;
1019
Herbert Xu31ccde22015-03-24 00:50:21 +11001020 if ((!params->key_len && !params->obj_hashfn) ||
Herbert Xu02fd97c2015-03-20 21:57:00 +11001021 (params->obj_hashfn && !params->obj_cmpfn))
Thomas Graf7e1e7762014-08-02 11:47:44 +02001022 return -EINVAL;
1023
Thomas Graf97defe12015-01-02 23:00:20 +01001024 memset(ht, 0, sizeof(*ht));
1025 mutex_init(&ht->mutex);
Herbert Xuba7c95e2015-03-24 09:53:17 +11001026 spin_lock_init(&ht->lock);
Thomas Graf97defe12015-01-02 23:00:20 +01001027 memcpy(&ht->p, params, sizeof(*params));
1028
Thomas Grafa998f712015-03-19 22:31:13 +00001029 if (params->min_size)
1030 ht->p.min_size = roundup_pow_of_two(params->min_size);
1031
Herbert Xu6d684e52017-04-27 13:44:51 +08001032 /* Cap total entries at 2^31 to avoid nelems overflow. */
1033 ht->max_elems = 1u << 31;
Herbert Xu2d2ab652017-04-28 14:10:48 +08001034
1035 if (params->max_size) {
1036 ht->p.max_size = rounddown_pow_of_two(params->max_size);
1037 if (ht->p.max_size < ht->max_elems / 2)
1038 ht->max_elems = ht->p.max_size * 2;
1039 }
Herbert Xu6d684e52017-04-27 13:44:51 +08001040
Florian Westphal48e75b432017-05-01 22:18:01 +02001041 ht->p.min_size = max_t(u16, ht->p.min_size, HASH_MIN_SIZE);
Thomas Grafa998f712015-03-19 22:31:13 +00001042
Davidlohr Bueso107d01f2018-07-16 13:26:13 -07001043 size = rounded_hashtable_size(&ht->p);
Herbert Xu3a324602015-12-16 18:13:14 +08001044
Thomas Graf97defe12015-01-02 23:00:20 +01001045 if (params->locks_mul)
1046 ht->p.locks_mul = roundup_pow_of_two(params->locks_mul);
1047 else
1048 ht->p.locks_mul = BUCKET_LOCKS_PER_CPU;
1049
Herbert Xu31ccde22015-03-24 00:50:21 +11001050 ht->key_len = ht->p.key_len;
1051 if (!params->hashfn) {
1052 ht->p.hashfn = jhash;
1053
1054 if (!(ht->key_len & (sizeof(u32) - 1))) {
1055 ht->key_len /= sizeof(u32);
1056 ht->p.hashfn = rhashtable_jhash2;
1057 }
1058 }
1059
Herbert Xub9ecfda2015-03-24 00:50:27 +11001060 tbl = bucket_table_alloc(ht, size, GFP_KERNEL);
Thomas Graf7e1e7762014-08-02 11:47:44 +02001061 if (tbl == NULL)
1062 return -ENOMEM;
1063
Ying Xue545a1482015-01-07 13:41:57 +08001064 atomic_set(&ht->nelems, 0);
Daniel Borkmanna5b68462015-03-12 15:28:40 +01001065
Thomas Graf7e1e7762014-08-02 11:47:44 +02001066 RCU_INIT_POINTER(ht->tbl, tbl);
1067
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +01001068 INIT_WORK(&ht->run_work, rht_deferred_worker);
Thomas Graf97defe12015-01-02 23:00:20 +01001069
Thomas Graf7e1e7762014-08-02 11:47:44 +02001070 return 0;
1071}
1072EXPORT_SYMBOL_GPL(rhashtable_init);
1073
1074/**
Herbert Xuca268932016-09-19 19:00:09 +08001075 * rhltable_init - initialize a new hash list table
1076 * @hlt: hash list table to be initialized
1077 * @params: configuration parameters
1078 *
1079 * Initializes a new hash list table.
1080 *
1081 * See documentation for rhashtable_init.
1082 */
1083int rhltable_init(struct rhltable *hlt, const struct rhashtable_params *params)
1084{
1085 int err;
1086
Herbert Xuca268932016-09-19 19:00:09 +08001087 err = rhashtable_init(&hlt->ht, params);
1088 hlt->ht.rhlist = true;
1089 return err;
1090}
1091EXPORT_SYMBOL_GPL(rhltable_init);
1092
1093static void rhashtable_free_one(struct rhashtable *ht, struct rhash_head *obj,
1094 void (*free_fn)(void *ptr, void *arg),
1095 void *arg)
1096{
1097 struct rhlist_head *list;
1098
1099 if (!ht->rhlist) {
1100 free_fn(rht_obj(ht, obj), arg);
1101 return;
1102 }
1103
1104 list = container_of(obj, struct rhlist_head, rhead);
1105 do {
1106 obj = &list->rhead;
1107 list = rht_dereference(list->next, ht);
1108 free_fn(rht_obj(ht, obj), arg);
1109 } while (list);
1110}
1111
1112/**
Thomas Graf6b6f3022015-03-24 14:18:20 +01001113 * rhashtable_free_and_destroy - free elements and destroy hash table
Thomas Graf7e1e7762014-08-02 11:47:44 +02001114 * @ht: the hash table to destroy
Thomas Graf6b6f3022015-03-24 14:18:20 +01001115 * @free_fn: callback to release resources of element
1116 * @arg: pointer passed to free_fn
Thomas Graf7e1e7762014-08-02 11:47:44 +02001117 *
Thomas Graf6b6f3022015-03-24 14:18:20 +01001118 * Stops an eventual async resize. If defined, invokes free_fn for each
1119 * element to releasal resources. Please note that RCU protected
1120 * readers may still be accessing the elements. Releasing of resources
1121 * must occur in a compatible manner. Then frees the bucket array.
1122 *
1123 * This function will eventually sleep to wait for an async resize
1124 * to complete. The caller is responsible that no further write operations
1125 * occurs in parallel.
Thomas Graf7e1e7762014-08-02 11:47:44 +02001126 */
Thomas Graf6b6f3022015-03-24 14:18:20 +01001127void rhashtable_free_and_destroy(struct rhashtable *ht,
1128 void (*free_fn)(void *ptr, void *arg),
1129 void *arg)
Thomas Graf7e1e7762014-08-02 11:47:44 +02001130{
Taehee Yoo00261292018-07-08 11:55:51 +09001131 struct bucket_table *tbl, *next_tbl;
Thomas Graf6b6f3022015-03-24 14:18:20 +01001132 unsigned int i;
Thomas Graf97defe12015-01-02 23:00:20 +01001133
Daniel Borkmann4c4b52d2015-02-25 16:31:54 +01001134 cancel_work_sync(&ht->run_work);
Ying Xue57699a42015-01-16 11:13:09 +08001135
Thomas Graf97defe12015-01-02 23:00:20 +01001136 mutex_lock(&ht->mutex);
Thomas Graf6b6f3022015-03-24 14:18:20 +01001137 tbl = rht_dereference(ht->tbl, ht);
Taehee Yoo00261292018-07-08 11:55:51 +09001138restart:
Thomas Graf6b6f3022015-03-24 14:18:20 +01001139 if (free_fn) {
1140 for (i = 0; i < tbl->size; i++) {
1141 struct rhash_head *pos, *next;
1142
Eric Dumazetae6da1f2018-03-31 12:58:48 -07001143 cond_resched();
Herbert Xuda204202017-02-11 19:26:47 +08001144 for (pos = rht_dereference(*rht_bucket(tbl, i), ht),
Thomas Graf6b6f3022015-03-24 14:18:20 +01001145 next = !rht_is_a_nulls(pos) ?
1146 rht_dereference(pos->next, ht) : NULL;
1147 !rht_is_a_nulls(pos);
1148 pos = next,
1149 next = !rht_is_a_nulls(pos) ?
1150 rht_dereference(pos->next, ht) : NULL)
Herbert Xuca268932016-09-19 19:00:09 +08001151 rhashtable_free_one(ht, pos, free_fn, arg);
Thomas Graf6b6f3022015-03-24 14:18:20 +01001152 }
1153 }
1154
Taehee Yoo00261292018-07-08 11:55:51 +09001155 next_tbl = rht_dereference(tbl->future_tbl, ht);
Thomas Graf6b6f3022015-03-24 14:18:20 +01001156 bucket_table_free(tbl);
Taehee Yoo00261292018-07-08 11:55:51 +09001157 if (next_tbl) {
1158 tbl = next_tbl;
1159 goto restart;
1160 }
Thomas Graf97defe12015-01-02 23:00:20 +01001161 mutex_unlock(&ht->mutex);
Thomas Graf7e1e7762014-08-02 11:47:44 +02001162}
Thomas Graf6b6f3022015-03-24 14:18:20 +01001163EXPORT_SYMBOL_GPL(rhashtable_free_and_destroy);
1164
1165void rhashtable_destroy(struct rhashtable *ht)
1166{
1167 return rhashtable_free_and_destroy(ht, NULL, NULL);
1168}
Thomas Graf7e1e7762014-08-02 11:47:44 +02001169EXPORT_SYMBOL_GPL(rhashtable_destroy);
Herbert Xuda204202017-02-11 19:26:47 +08001170
1171struct rhash_head __rcu **rht_bucket_nested(const struct bucket_table *tbl,
1172 unsigned int hash)
1173{
1174 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
1175 static struct rhash_head __rcu *rhnull =
1176 (struct rhash_head __rcu *)NULLS_MARKER(0);
1177 unsigned int index = hash & ((1 << tbl->nest) - 1);
1178 unsigned int size = tbl->size >> tbl->nest;
1179 unsigned int subhash = hash;
1180 union nested_table *ntbl;
1181
1182 ntbl = (union nested_table *)rcu_dereference_raw(tbl->buckets[0]);
Herbert Xuc4d26032017-02-25 22:39:50 +08001183 ntbl = rht_dereference_bucket_rcu(ntbl[index].table, tbl, hash);
Herbert Xuda204202017-02-11 19:26:47 +08001184 subhash >>= tbl->nest;
1185
1186 while (ntbl && size > (1 << shift)) {
1187 index = subhash & ((1 << shift) - 1);
Herbert Xuc4d26032017-02-25 22:39:50 +08001188 ntbl = rht_dereference_bucket_rcu(ntbl[index].table,
1189 tbl, hash);
Herbert Xuda204202017-02-11 19:26:47 +08001190 size >>= shift;
1191 subhash >>= shift;
1192 }
1193
1194 if (!ntbl)
1195 return &rhnull;
1196
1197 return &ntbl[subhash].bucket;
1198
1199}
1200EXPORT_SYMBOL_GPL(rht_bucket_nested);
1201
1202struct rhash_head __rcu **rht_bucket_nested_insert(struct rhashtable *ht,
1203 struct bucket_table *tbl,
1204 unsigned int hash)
1205{
1206 const unsigned int shift = PAGE_SHIFT - ilog2(sizeof(void *));
1207 unsigned int index = hash & ((1 << tbl->nest) - 1);
1208 unsigned int size = tbl->size >> tbl->nest;
1209 union nested_table *ntbl;
Herbert Xuda204202017-02-11 19:26:47 +08001210
1211 ntbl = (union nested_table *)rcu_dereference_raw(tbl->buckets[0]);
1212 hash >>= tbl->nest;
Herbert Xuda204202017-02-11 19:26:47 +08001213 ntbl = nested_table_alloc(ht, &ntbl[index].table,
NeilBrown5af68ef2018-06-18 12:52:50 +10001214 size <= (1 << shift));
Herbert Xuda204202017-02-11 19:26:47 +08001215
1216 while (ntbl && size > (1 << shift)) {
1217 index = hash & ((1 << shift) - 1);
1218 size >>= shift;
1219 hash >>= shift;
Herbert Xuda204202017-02-11 19:26:47 +08001220 ntbl = nested_table_alloc(ht, &ntbl[index].table,
NeilBrown5af68ef2018-06-18 12:52:50 +10001221 size <= (1 << shift));
Herbert Xuda204202017-02-11 19:26:47 +08001222 }
1223
1224 if (!ntbl)
1225 return NULL;
1226
1227 return &ntbl[hash].bucket;
1228
1229}
1230EXPORT_SYMBOL_GPL(rht_bucket_nested_insert);