blob: 0c9175aeab8ad24fd277e6c6e99af05bdb0691eb [file] [log] [blame]
NeilBrown0eb71a92018-06-18 12:52:50 +10001/* SPDX-License-Identifier: GPL-2.0 */
Thomas Graf7e1e7762014-08-02 11:47:44 +02002/*
3 * Resizable, Scalable, Concurrent Hash Table
4 *
Herbert Xuca268932016-09-19 19:00:09 +08005 * Copyright (c) 2015-2016 Herbert Xu <herbert@gondor.apana.org.au>
Thomas Grafb5e2c152015-03-24 20:42:19 +00006 * Copyright (c) 2014-2015 Thomas Graf <tgraf@suug.ch>
Thomas Graf7e1e7762014-08-02 11:47:44 +02007 * Copyright (c) 2008-2014 Patrick McHardy <kaber@trash.net>
8 *
Thomas Graf7e1e7762014-08-02 11:47:44 +02009 * Code partially derived from nft_hash
Herbert Xudc0ee262015-03-20 21:57:06 +110010 * Rewritten with rehash code from br_multicast plus single list
11 * pointer as suggested by Josh Triplett
Thomas Graf7e1e7762014-08-02 11:47:44 +020012 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
16 */
17
18#ifndef _LINUX_RHASHTABLE_H
19#define _LINUX_RHASHTABLE_H
20
Herbert Xu3cf92222015-12-03 20:41:29 +080021#include <linux/err.h>
Herbert Xu6626af62015-03-20 18:18:45 -040022#include <linux/errno.h>
Herbert Xu31ccde22015-03-24 00:50:21 +110023#include <linux/jhash.h>
Thomas Graff89bd6f2015-01-02 23:00:21 +010024#include <linux/list_nulls.h>
Thomas Graf97defe12015-01-02 23:00:20 +010025#include <linux/workqueue.h>
Ingo Molnarb2d09102017-02-04 01:27:20 +010026#include <linux/rculist.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020027
NeilBrown0eb71a92018-06-18 12:52:50 +100028#include <linux/rhashtable-types.h>
Thomas Graff89bd6f2015-01-02 23:00:21 +010029/*
30 * The end of the chain is marked with a special nulls marks which has
NeilBrown9f9a7072018-06-18 12:52:50 +100031 * the least significant bit set.
Thomas Graff89bd6f2015-01-02 23:00:21 +010032 */
Herbert Xu02fd97c2015-03-20 21:57:00 +110033
Florian Westphal5f8ddea2017-04-16 02:55:09 +020034/* Maximum chain length before rehash
35 *
36 * The maximum (not average) chain length grows with the size of the hash
37 * table, at a rate of (log N)/(log log N).
38 *
39 * The value of 16 is selected so that even if the hash table grew to
40 * 2^32 you would not expect the maximum chain length to exceed it
41 * unless we are under attack (or extremely unlucky).
42 *
43 * As this limit is only to detect attacks, we don't need to set it to a
44 * lower value as you'd need the chain length to vastly exceed 16 to have
45 * any real effect on the system.
46 */
47#define RHT_ELASTICITY 16u
48
Thomas Graf97defe12015-01-02 23:00:20 +010049/**
50 * struct bucket_table - Table of hash buckets
51 * @size: Number of hash buckets
Herbert Xuda204202017-02-11 19:26:47 +080052 * @nest: Number of bits of first-level nested table.
Herbert Xu63d512d2015-03-14 13:57:24 +110053 * @rehash: Current bucket being rehashed
Herbert Xu988dfbd2015-03-10 09:27:55 +110054 * @hash_rnd: Random seed to fold into hash
Thomas Graf97defe12015-01-02 23:00:20 +010055 * @locks_mask: Mask to apply before accessing locks[]
56 * @locks: Array of spinlocks protecting individual buckets
Herbert Xueddee5ba2015-03-14 13:57:20 +110057 * @walkers: List of active walkers
Herbert Xu9d901bc2015-03-14 13:57:23 +110058 * @rcu: RCU structure for freeing the table
Herbert Xuc4db8842015-03-14 13:57:25 +110059 * @future_tbl: Table under construction during rehashing
Herbert Xuda204202017-02-11 19:26:47 +080060 * @ntbl: Nested table used when out of memory.
Thomas Graf97defe12015-01-02 23:00:20 +010061 * @buckets: size * hash buckets
62 */
Thomas Graf7e1e7762014-08-02 11:47:44 +020063struct bucket_table {
Herbert Xu63d512d2015-03-14 13:57:24 +110064 unsigned int size;
Herbert Xuda204202017-02-11 19:26:47 +080065 unsigned int nest;
Herbert Xu988dfbd2015-03-10 09:27:55 +110066 u32 hash_rnd;
Eric Dumazetb9ebafb2015-02-20 06:48:57 -080067 unsigned int locks_mask;
68 spinlock_t *locks;
Herbert Xueddee5ba2015-03-14 13:57:20 +110069 struct list_head walkers;
Herbert Xu9d901bc2015-03-14 13:57:23 +110070 struct rcu_head rcu;
Eric Dumazetb9ebafb2015-02-20 06:48:57 -080071
Herbert Xuc4db8842015-03-14 13:57:25 +110072 struct bucket_table __rcu *future_tbl;
73
Herbert Xuda204202017-02-11 19:26:47 +080074 struct rhash_head __rcu *buckets[] ____cacheline_aligned_in_smp;
Thomas Graf7e1e7762014-08-02 11:47:44 +020075};
76
NeilBrown82208d0d2018-11-30 10:26:50 +110077/*
78 * NULLS_MARKER() expects a hash value with the low
79 * bits mostly likely to be significant, and it discards
80 * the msb.
81 * We git it an address, in which the bottom 2 bits are
82 * always 0, and the msb might be significant.
83 * So we shift the address down one bit to align with
84 * expectations and avoid losing a significant bit.
85 */
86#define RHT_NULLS_MARKER(ptr) \
87 ((void *)NULLS_MARKER(((unsigned long) (ptr)) >> 1))
NeilBrown9b4f64a2018-06-18 12:52:50 +100088#define INIT_RHT_NULLS_HEAD(ptr) \
NeilBrown82208d0d2018-11-30 10:26:50 +110089 ((ptr) = RHT_NULLS_MARKER(&(ptr)))
Thomas Graff89bd6f2015-01-02 23:00:21 +010090
91static inline bool rht_is_a_nulls(const struct rhash_head *ptr)
92{
93 return ((unsigned long) ptr & 1);
94}
95
Herbert Xu02fd97c2015-03-20 21:57:00 +110096static inline void *rht_obj(const struct rhashtable *ht,
97 const struct rhash_head *he)
98{
99 return (char *)he - ht->p.head_offset;
100}
101
102static inline unsigned int rht_bucket_index(const struct bucket_table *tbl,
103 unsigned int hash)
104{
NeilBrown9f9a7072018-06-18 12:52:50 +1000105 return hash & (tbl->size - 1);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100106}
107
Tom Herbert2b860932017-12-04 10:31:43 -0800108static inline unsigned int rht_key_get_hash(struct rhashtable *ht,
109 const void *key, const struct rhashtable_params params,
110 unsigned int hash_rnd)
Herbert Xu02fd97c2015-03-20 21:57:00 +1100111{
Thomas Graf299e5c32015-03-24 14:18:17 +0100112 unsigned int hash;
Herbert Xude91b252015-03-24 00:50:20 +1100113
Herbert Xu31ccde22015-03-24 00:50:21 +1100114 /* params must be equal to ht->p if it isn't constant. */
115 if (!__builtin_constant_p(params.key_len))
Tom Herbert2b860932017-12-04 10:31:43 -0800116 hash = ht->p.hashfn(key, ht->key_len, hash_rnd);
Herbert Xu31ccde22015-03-24 00:50:21 +1100117 else if (params.key_len) {
Thomas Graf299e5c32015-03-24 14:18:17 +0100118 unsigned int key_len = params.key_len;
Herbert Xu31ccde22015-03-24 00:50:21 +1100119
120 if (params.hashfn)
Tom Herbert2b860932017-12-04 10:31:43 -0800121 hash = params.hashfn(key, key_len, hash_rnd);
Herbert Xu31ccde22015-03-24 00:50:21 +1100122 else if (key_len & (sizeof(u32) - 1))
Tom Herbert2b860932017-12-04 10:31:43 -0800123 hash = jhash(key, key_len, hash_rnd);
Herbert Xu31ccde22015-03-24 00:50:21 +1100124 else
Tom Herbert2b860932017-12-04 10:31:43 -0800125 hash = jhash2(key, key_len / sizeof(u32), hash_rnd);
Herbert Xu31ccde22015-03-24 00:50:21 +1100126 } else {
Thomas Graf299e5c32015-03-24 14:18:17 +0100127 unsigned int key_len = ht->p.key_len;
Herbert Xu31ccde22015-03-24 00:50:21 +1100128
129 if (params.hashfn)
Tom Herbert2b860932017-12-04 10:31:43 -0800130 hash = params.hashfn(key, key_len, hash_rnd);
Herbert Xu31ccde22015-03-24 00:50:21 +1100131 else
Tom Herbert2b860932017-12-04 10:31:43 -0800132 hash = jhash(key, key_len, hash_rnd);
Herbert Xu31ccde22015-03-24 00:50:21 +1100133 }
134
Tom Herbert2b860932017-12-04 10:31:43 -0800135 return hash;
136}
137
138static inline unsigned int rht_key_hashfn(
139 struct rhashtable *ht, const struct bucket_table *tbl,
140 const void *key, const struct rhashtable_params params)
141{
142 unsigned int hash = rht_key_get_hash(ht, key, params, tbl->hash_rnd);
143
Herbert Xu31ccde22015-03-24 00:50:21 +1100144 return rht_bucket_index(tbl, hash);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100145}
146
147static inline unsigned int rht_head_hashfn(
148 struct rhashtable *ht, const struct bucket_table *tbl,
149 const struct rhash_head *he, const struct rhashtable_params params)
150{
151 const char *ptr = rht_obj(ht, he);
152
153 return likely(params.obj_hashfn) ?
Patrick McHardy49f7b332015-03-25 13:07:45 +0000154 rht_bucket_index(tbl, params.obj_hashfn(ptr, params.key_len ?:
155 ht->p.key_len,
156 tbl->hash_rnd)) :
Herbert Xu02fd97c2015-03-20 21:57:00 +1100157 rht_key_hashfn(ht, tbl, ptr + params.key_offset, params);
158}
159
160/**
161 * rht_grow_above_75 - returns true if nelems > 0.75 * table-size
162 * @ht: hash table
163 * @tbl: current table
164 */
165static inline bool rht_grow_above_75(const struct rhashtable *ht,
166 const struct bucket_table *tbl)
167{
168 /* Expand table when exceeding 75% load */
169 return atomic_read(&ht->nelems) > (tbl->size / 4 * 3) &&
170 (!ht->p.max_size || tbl->size < ht->p.max_size);
171}
172
173/**
174 * rht_shrink_below_30 - returns true if nelems < 0.3 * table-size
175 * @ht: hash table
176 * @tbl: current table
177 */
178static inline bool rht_shrink_below_30(const struct rhashtable *ht,
179 const struct bucket_table *tbl)
180{
181 /* Shrink table beneath 30% load */
182 return atomic_read(&ht->nelems) < (tbl->size * 3 / 10) &&
183 tbl->size > ht->p.min_size;
184}
185
Herbert Xuccd57b12015-03-24 00:50:28 +1100186/**
187 * rht_grow_above_100 - returns true if nelems > table-size
188 * @ht: hash table
189 * @tbl: current table
190 */
191static inline bool rht_grow_above_100(const struct rhashtable *ht,
192 const struct bucket_table *tbl)
193{
Johannes Berg1d8dc3d2015-04-23 16:38:43 +0200194 return atomic_read(&ht->nelems) > tbl->size &&
195 (!ht->p.max_size || tbl->size < ht->p.max_size);
Herbert Xuccd57b12015-03-24 00:50:28 +1100196}
197
Herbert Xu07ee0722015-05-15 11:30:47 +0800198/**
199 * rht_grow_above_max - returns true if table is above maximum
200 * @ht: hash table
201 * @tbl: current table
202 */
203static inline bool rht_grow_above_max(const struct rhashtable *ht,
204 const struct bucket_table *tbl)
205{
Herbert Xu6d684e52017-04-27 13:44:51 +0800206 return atomic_read(&ht->nelems) >= ht->max_elems;
Herbert Xu07ee0722015-05-15 11:30:47 +0800207}
208
Herbert Xu02fd97c2015-03-20 21:57:00 +1100209/* The bucket lock is selected based on the hash and protects mutations
210 * on a group of hash buckets.
211 *
212 * A maximum of tbl->size/2 bucket locks is allocated. This ensures that
213 * a single lock always covers both buckets which may both contains
214 * entries which link to the same bucket of the old table during resizing.
215 * This allows to simplify the locking as locking the bucket in both
216 * tables during resize always guarantee protection.
217 *
218 * IMPORTANT: When holding the bucket lock of both the old and new table
219 * during expansions and shrinking, the old bucket lock must always be
220 * acquired first.
221 */
222static inline spinlock_t *rht_bucket_lock(const struct bucket_table *tbl,
223 unsigned int hash)
224{
225 return &tbl->locks[hash & tbl->locks_mask];
226}
227
Thomas Graf7e1e7762014-08-02 11:47:44 +0200228#ifdef CONFIG_PROVE_LOCKING
Thomas Graf97defe12015-01-02 23:00:20 +0100229int lockdep_rht_mutex_is_held(struct rhashtable *ht);
Thomas Graf88d6ed12015-01-02 23:00:16 +0100230int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200231#else
Thomas Graf97defe12015-01-02 23:00:20 +0100232static inline int lockdep_rht_mutex_is_held(struct rhashtable *ht)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200233{
234 return 1;
235}
Thomas Graf88d6ed12015-01-02 23:00:16 +0100236
237static inline int lockdep_rht_bucket_is_held(const struct bucket_table *tbl,
238 u32 hash)
239{
240 return 1;
241}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200242#endif /* CONFIG_PROVE_LOCKING */
243
Herbert Xuca268932016-09-19 19:00:09 +0800244void *rhashtable_insert_slow(struct rhashtable *ht, const void *key,
245 struct rhash_head *obj);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200246
Herbert Xu246779d2016-08-18 16:50:56 +0800247void rhashtable_walk_enter(struct rhashtable *ht,
248 struct rhashtable_iter *iter);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100249void rhashtable_walk_exit(struct rhashtable_iter *iter);
Tom Herbert97a6ec42017-12-04 10:31:41 -0800250int rhashtable_walk_start_check(struct rhashtable_iter *iter) __acquires(RCU);
251
252static inline void rhashtable_walk_start(struct rhashtable_iter *iter)
253{
254 (void)rhashtable_walk_start_check(iter);
255}
256
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100257void *rhashtable_walk_next(struct rhashtable_iter *iter);
Tom Herbert2db54b42017-12-04 10:31:42 -0800258void *rhashtable_walk_peek(struct rhashtable_iter *iter);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100259void rhashtable_walk_stop(struct rhashtable_iter *iter) __releases(RCU);
260
Thomas Graf6b6f3022015-03-24 14:18:20 +0100261void rhashtable_free_and_destroy(struct rhashtable *ht,
262 void (*free_fn)(void *ptr, void *arg),
263 void *arg);
Thomas Graf97defe12015-01-02 23:00:20 +0100264void rhashtable_destroy(struct rhashtable *ht);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200265
Herbert Xuda204202017-02-11 19:26:47 +0800266struct rhash_head __rcu **rht_bucket_nested(const struct bucket_table *tbl,
267 unsigned int hash);
NeilBrownff302db2019-04-02 10:07:45 +1100268struct rhash_head __rcu **__rht_bucket_nested(const struct bucket_table *tbl,
269 unsigned int hash);
Herbert Xuda204202017-02-11 19:26:47 +0800270struct rhash_head __rcu **rht_bucket_nested_insert(struct rhashtable *ht,
271 struct bucket_table *tbl,
272 unsigned int hash);
273
Thomas Graf7e1e7762014-08-02 11:47:44 +0200274#define rht_dereference(p, ht) \
275 rcu_dereference_protected(p, lockdep_rht_mutex_is_held(ht))
276
277#define rht_dereference_rcu(p, ht) \
278 rcu_dereference_check(p, lockdep_rht_mutex_is_held(ht))
279
Thomas Graf88d6ed12015-01-02 23:00:16 +0100280#define rht_dereference_bucket(p, tbl, hash) \
281 rcu_dereference_protected(p, lockdep_rht_bucket_is_held(tbl, hash))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200282
Thomas Graf88d6ed12015-01-02 23:00:16 +0100283#define rht_dereference_bucket_rcu(p, tbl, hash) \
284 rcu_dereference_check(p, lockdep_rht_bucket_is_held(tbl, hash))
285
286#define rht_entry(tpos, pos, member) \
287 ({ tpos = container_of(pos, typeof(*tpos), member); 1; })
288
Herbert Xuda204202017-02-11 19:26:47 +0800289static inline struct rhash_head __rcu *const *rht_bucket(
290 const struct bucket_table *tbl, unsigned int hash)
291{
292 return unlikely(tbl->nest) ? rht_bucket_nested(tbl, hash) :
293 &tbl->buckets[hash];
294}
295
296static inline struct rhash_head __rcu **rht_bucket_var(
297 struct bucket_table *tbl, unsigned int hash)
298{
NeilBrownff302db2019-04-02 10:07:45 +1100299 return unlikely(tbl->nest) ? __rht_bucket_nested(tbl, hash) :
Herbert Xuda204202017-02-11 19:26:47 +0800300 &tbl->buckets[hash];
301}
302
303static inline struct rhash_head __rcu **rht_bucket_insert(
304 struct rhashtable *ht, struct bucket_table *tbl, unsigned int hash)
305{
306 return unlikely(tbl->nest) ? rht_bucket_nested_insert(ht, tbl, hash) :
307 &tbl->buckets[hash];
308}
309
Thomas Graf88d6ed12015-01-02 23:00:16 +0100310/**
NeilBrownf7ad68b2019-03-21 14:42:40 +1100311 * rht_for_each_from - iterate over hash chain from given head
Thomas Graf88d6ed12015-01-02 23:00:16 +0100312 * @pos: the &struct rhash_head to use as a loop cursor.
NeilBrownf7ad68b2019-03-21 14:42:40 +1100313 * @head: the &struct rhash_head to start from
Thomas Graf88d6ed12015-01-02 23:00:16 +0100314 * @tbl: the &struct bucket_table
315 * @hash: the hash value / bucket index
316 */
NeilBrownf7ad68b2019-03-21 14:42:40 +1100317#define rht_for_each_from(pos, head, tbl, hash) \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100318 for (pos = rht_dereference_bucket(head, tbl, hash); \
Thomas Graff89bd6f2015-01-02 23:00:21 +0100319 !rht_is_a_nulls(pos); \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100320 pos = rht_dereference_bucket((pos)->next, tbl, hash))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200321
322/**
323 * rht_for_each - iterate over hash chain
Thomas Graf88d6ed12015-01-02 23:00:16 +0100324 * @pos: the &struct rhash_head to use as a loop cursor.
325 * @tbl: the &struct bucket_table
326 * @hash: the hash value / bucket index
Thomas Graf7e1e7762014-08-02 11:47:44 +0200327 */
Thomas Graf88d6ed12015-01-02 23:00:16 +0100328#define rht_for_each(pos, tbl, hash) \
NeilBrownf7ad68b2019-03-21 14:42:40 +1100329 rht_for_each_from(pos, *rht_bucket(tbl, hash), tbl, hash)
Thomas Graf88d6ed12015-01-02 23:00:16 +0100330
331/**
NeilBrownf7ad68b2019-03-21 14:42:40 +1100332 * rht_for_each_entry_from - iterate over hash chain from given head
Thomas Graf88d6ed12015-01-02 23:00:16 +0100333 * @tpos: the type * to use as a loop cursor.
334 * @pos: the &struct rhash_head to use as a loop cursor.
NeilBrownf7ad68b2019-03-21 14:42:40 +1100335 * @head: the &struct rhash_head to start from
Thomas Graf88d6ed12015-01-02 23:00:16 +0100336 * @tbl: the &struct bucket_table
337 * @hash: the hash value / bucket index
338 * @member: name of the &struct rhash_head within the hashable struct.
339 */
NeilBrownf7ad68b2019-03-21 14:42:40 +1100340#define rht_for_each_entry_from(tpos, pos, head, tbl, hash, member) \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100341 for (pos = rht_dereference_bucket(head, tbl, hash); \
Thomas Graff89bd6f2015-01-02 23:00:21 +0100342 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100343 pos = rht_dereference_bucket((pos)->next, tbl, hash))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200344
345/**
346 * rht_for_each_entry - iterate over hash chain of given type
Thomas Graf88d6ed12015-01-02 23:00:16 +0100347 * @tpos: the type * to use as a loop cursor.
348 * @pos: the &struct rhash_head to use as a loop cursor.
349 * @tbl: the &struct bucket_table
350 * @hash: the hash value / bucket index
351 * @member: name of the &struct rhash_head within the hashable struct.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200352 */
Thomas Graf88d6ed12015-01-02 23:00:16 +0100353#define rht_for_each_entry(tpos, pos, tbl, hash, member) \
NeilBrownf7ad68b2019-03-21 14:42:40 +1100354 rht_for_each_entry_from(tpos, pos, *rht_bucket(tbl, hash), \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100355 tbl, hash, member)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200356
357/**
358 * rht_for_each_entry_safe - safely iterate over hash chain of given type
Thomas Graf88d6ed12015-01-02 23:00:16 +0100359 * @tpos: the type * to use as a loop cursor.
360 * @pos: the &struct rhash_head to use as a loop cursor.
361 * @next: the &struct rhash_head to use as next in loop cursor.
362 * @tbl: the &struct bucket_table
363 * @hash: the hash value / bucket index
364 * @member: name of the &struct rhash_head within the hashable struct.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200365 *
366 * This hash chain list-traversal primitive allows for the looped code to
367 * remove the loop cursor from the list.
368 */
Herbert Xuda204202017-02-11 19:26:47 +0800369#define rht_for_each_entry_safe(tpos, pos, next, tbl, hash, member) \
370 for (pos = rht_dereference_bucket(*rht_bucket(tbl, hash), tbl, hash), \
371 next = !rht_is_a_nulls(pos) ? \
372 rht_dereference_bucket(pos->next, tbl, hash) : NULL; \
373 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \
374 pos = next, \
375 next = !rht_is_a_nulls(pos) ? \
Patrick McHardy607954b2015-01-21 11:12:13 +0000376 rht_dereference_bucket(pos->next, tbl, hash) : NULL)
Thomas Graf88d6ed12015-01-02 23:00:16 +0100377
378/**
NeilBrownf7ad68b2019-03-21 14:42:40 +1100379 * rht_for_each_rcu_from - iterate over rcu hash chain from given head
Thomas Graf88d6ed12015-01-02 23:00:16 +0100380 * @pos: the &struct rhash_head to use as a loop cursor.
NeilBrownf7ad68b2019-03-21 14:42:40 +1100381 * @head: the &struct rhash_head to start from
Thomas Graf88d6ed12015-01-02 23:00:16 +0100382 * @tbl: the &struct bucket_table
383 * @hash: the hash value / bucket index
384 *
385 * This hash chain list-traversal primitive may safely run concurrently with
386 * the _rcu mutation primitives such as rhashtable_insert() as long as the
387 * traversal is guarded by rcu_read_lock().
388 */
NeilBrownf7ad68b2019-03-21 14:42:40 +1100389#define rht_for_each_rcu_from(pos, head, tbl, hash) \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100390 for (({barrier(); }), \
391 pos = rht_dereference_bucket_rcu(head, tbl, hash); \
Thomas Graff89bd6f2015-01-02 23:00:21 +0100392 !rht_is_a_nulls(pos); \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100393 pos = rcu_dereference_raw(pos->next))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200394
395/**
396 * rht_for_each_rcu - iterate over rcu hash chain
Thomas Graf88d6ed12015-01-02 23:00:16 +0100397 * @pos: the &struct rhash_head to use as a loop cursor.
398 * @tbl: the &struct bucket_table
399 * @hash: the hash value / bucket index
Thomas Graf7e1e7762014-08-02 11:47:44 +0200400 *
401 * This hash chain list-traversal primitive may safely run concurrently with
Thomas Graf88d6ed12015-01-02 23:00:16 +0100402 * the _rcu mutation primitives such as rhashtable_insert() as long as the
Thomas Graf7e1e7762014-08-02 11:47:44 +0200403 * traversal is guarded by rcu_read_lock().
404 */
Thomas Graf88d6ed12015-01-02 23:00:16 +0100405#define rht_for_each_rcu(pos, tbl, hash) \
NeilBrownf7ad68b2019-03-21 14:42:40 +1100406 rht_for_each_rcu_from(pos, *rht_bucket(tbl, hash), tbl, hash)
Thomas Graf88d6ed12015-01-02 23:00:16 +0100407
408/**
NeilBrownf7ad68b2019-03-21 14:42:40 +1100409 * rht_for_each_entry_rcu_from - iterated over rcu hash chain from given head
Thomas Graf88d6ed12015-01-02 23:00:16 +0100410 * @tpos: the type * to use as a loop cursor.
411 * @pos: the &struct rhash_head to use as a loop cursor.
NeilBrownf7ad68b2019-03-21 14:42:40 +1100412 * @head: the &struct rhash_head to start from
Thomas Graf88d6ed12015-01-02 23:00:16 +0100413 * @tbl: the &struct bucket_table
414 * @hash: the hash value / bucket index
415 * @member: name of the &struct rhash_head within the hashable struct.
416 *
417 * This hash chain list-traversal primitive may safely run concurrently with
418 * the _rcu mutation primitives such as rhashtable_insert() as long as the
419 * traversal is guarded by rcu_read_lock().
420 */
NeilBrownf7ad68b2019-03-21 14:42:40 +1100421#define rht_for_each_entry_rcu_from(tpos, pos, head, tbl, hash, member) \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100422 for (({barrier(); }), \
423 pos = rht_dereference_bucket_rcu(head, tbl, hash); \
Thomas Graff89bd6f2015-01-02 23:00:21 +0100424 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100425 pos = rht_dereference_bucket_rcu(pos->next, tbl, hash))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200426
427/**
428 * rht_for_each_entry_rcu - iterate over rcu hash chain of given type
Thomas Graf88d6ed12015-01-02 23:00:16 +0100429 * @tpos: the type * to use as a loop cursor.
430 * @pos: the &struct rhash_head to use as a loop cursor.
431 * @tbl: the &struct bucket_table
432 * @hash: the hash value / bucket index
433 * @member: name of the &struct rhash_head within the hashable struct.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200434 *
435 * This hash chain list-traversal primitive may safely run concurrently with
Thomas Graf88d6ed12015-01-02 23:00:16 +0100436 * the _rcu mutation primitives such as rhashtable_insert() as long as the
Thomas Graf7e1e7762014-08-02 11:47:44 +0200437 * traversal is guarded by rcu_read_lock().
438 */
Herbert Xuda204202017-02-11 19:26:47 +0800439#define rht_for_each_entry_rcu(tpos, pos, tbl, hash, member) \
NeilBrownf7ad68b2019-03-21 14:42:40 +1100440 rht_for_each_entry_rcu_from(tpos, pos, *rht_bucket(tbl, hash), \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100441 tbl, hash, member)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200442
Herbert Xuca268932016-09-19 19:00:09 +0800443/**
444 * rhl_for_each_rcu - iterate over rcu hash table list
445 * @pos: the &struct rlist_head to use as a loop cursor.
446 * @list: the head of the list
447 *
448 * This hash chain list-traversal primitive should be used on the
449 * list returned by rhltable_lookup.
450 */
451#define rhl_for_each_rcu(pos, list) \
452 for (pos = list; pos; pos = rcu_dereference_raw(pos->next))
453
454/**
455 * rhl_for_each_entry_rcu - iterate over rcu hash table list of given type
456 * @tpos: the type * to use as a loop cursor.
457 * @pos: the &struct rlist_head to use as a loop cursor.
458 * @list: the head of the list
459 * @member: name of the &struct rlist_head within the hashable struct.
460 *
461 * This hash chain list-traversal primitive should be used on the
462 * list returned by rhltable_lookup.
463 */
464#define rhl_for_each_entry_rcu(tpos, pos, list, member) \
465 for (pos = list; pos && rht_entry(tpos, pos, member); \
466 pos = rcu_dereference_raw(pos->next))
467
Herbert Xu02fd97c2015-03-20 21:57:00 +1100468static inline int rhashtable_compare(struct rhashtable_compare_arg *arg,
469 const void *obj)
470{
471 struct rhashtable *ht = arg->ht;
472 const char *ptr = obj;
473
474 return memcmp(ptr + ht->p.key_offset, arg->key, ht->p.key_len);
475}
476
Herbert Xuca268932016-09-19 19:00:09 +0800477/* Internal function, do not use. */
478static inline struct rhash_head *__rhashtable_lookup(
Herbert Xu02fd97c2015-03-20 21:57:00 +1100479 struct rhashtable *ht, const void *key,
480 const struct rhashtable_params params)
481{
482 struct rhashtable_compare_arg arg = {
483 .ht = ht,
484 .key = key,
485 };
NeilBrown82208d0d2018-11-30 10:26:50 +1100486 struct rhash_head __rcu * const *head;
Herbert Xuda204202017-02-11 19:26:47 +0800487 struct bucket_table *tbl;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100488 struct rhash_head *he;
Thomas Graf299e5c32015-03-24 14:18:17 +0100489 unsigned int hash;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100490
Herbert Xu02fd97c2015-03-20 21:57:00 +1100491 tbl = rht_dereference_rcu(ht->tbl, ht);
492restart:
493 hash = rht_key_hashfn(ht, tbl, key, params);
NeilBrown82208d0d2018-11-30 10:26:50 +1100494 head = rht_bucket(tbl, hash);
495 do {
NeilBrownf7ad68b2019-03-21 14:42:40 +1100496 rht_for_each_rcu_from(he, *head, tbl, hash) {
NeilBrown82208d0d2018-11-30 10:26:50 +1100497 if (params.obj_cmpfn ?
498 params.obj_cmpfn(&arg, rht_obj(ht, he)) :
499 rhashtable_compare(&arg, rht_obj(ht, he)))
500 continue;
501 return he;
502 }
503 /* An object might have been moved to a different hash chain,
504 * while we walk along it - better check and retry.
505 */
506 } while (he != RHT_NULLS_MARKER(head));
Herbert Xu02fd97c2015-03-20 21:57:00 +1100507
508 /* Ensure we see any new tables. */
509 smp_rmb();
510
511 tbl = rht_dereference_rcu(tbl->future_tbl, ht);
512 if (unlikely(tbl))
513 goto restart;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100514
515 return NULL;
516}
517
Herbert Xuca268932016-09-19 19:00:09 +0800518/**
519 * rhashtable_lookup - search hash table
520 * @ht: hash table
521 * @key: the pointer to the key
522 * @params: hash table parameters
523 *
524 * Computes the hash value for the key and traverses the bucket chain looking
525 * for a entry with an identical key. The first matching entry is returned.
526 *
527 * This must only be called under the RCU read lock.
528 *
529 * Returns the first entry on which the compare function returned true.
530 */
531static inline void *rhashtable_lookup(
532 struct rhashtable *ht, const void *key,
533 const struct rhashtable_params params)
534{
535 struct rhash_head *he = __rhashtable_lookup(ht, key, params);
536
537 return he ? rht_obj(ht, he) : NULL;
538}
539
540/**
541 * rhashtable_lookup_fast - search hash table, without RCU read lock
542 * @ht: hash table
543 * @key: the pointer to the key
544 * @params: hash table parameters
545 *
546 * Computes the hash value for the key and traverses the bucket chain looking
547 * for a entry with an identical key. The first matching entry is returned.
548 *
549 * Only use this function when you have other mechanisms guaranteeing
550 * that the object won't go away after the RCU read lock is released.
551 *
552 * Returns the first entry on which the compare function returned true.
553 */
554static inline void *rhashtable_lookup_fast(
555 struct rhashtable *ht, const void *key,
556 const struct rhashtable_params params)
557{
558 void *obj;
559
560 rcu_read_lock();
561 obj = rhashtable_lookup(ht, key, params);
562 rcu_read_unlock();
563
564 return obj;
565}
566
567/**
568 * rhltable_lookup - search hash list table
569 * @hlt: hash table
570 * @key: the pointer to the key
571 * @params: hash table parameters
572 *
573 * Computes the hash value for the key and traverses the bucket chain looking
574 * for a entry with an identical key. All matching entries are returned
575 * in a list.
576 *
577 * This must only be called under the RCU read lock.
578 *
579 * Returns the list of entries that match the given key.
580 */
581static inline struct rhlist_head *rhltable_lookup(
582 struct rhltable *hlt, const void *key,
583 const struct rhashtable_params params)
584{
585 struct rhash_head *he = __rhashtable_lookup(&hlt->ht, key, params);
586
587 return he ? container_of(he, struct rhlist_head, rhead) : NULL;
588}
589
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200590/* Internal function, please use rhashtable_insert_fast() instead. This
591 * function returns the existing element already in hashes in there is a clash,
592 * otherwise it returns an error via ERR_PTR().
593 */
594static inline void *__rhashtable_insert_fast(
Herbert Xu02fd97c2015-03-20 21:57:00 +1100595 struct rhashtable *ht, const void *key, struct rhash_head *obj,
Herbert Xuca268932016-09-19 19:00:09 +0800596 const struct rhashtable_params params, bool rhlist)
Herbert Xu02fd97c2015-03-20 21:57:00 +1100597{
598 struct rhashtable_compare_arg arg = {
599 .ht = ht,
600 .key = key,
601 };
Herbert Xuca268932016-09-19 19:00:09 +0800602 struct rhash_head __rcu **pprev;
603 struct bucket_table *tbl;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100604 struct rhash_head *head;
605 spinlock_t *lock;
Thomas Graf299e5c32015-03-24 14:18:17 +0100606 unsigned int hash;
Herbert Xuca268932016-09-19 19:00:09 +0800607 int elasticity;
608 void *data;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100609
610 rcu_read_lock();
611
612 tbl = rht_dereference_rcu(ht->tbl, ht);
Herbert Xuca268932016-09-19 19:00:09 +0800613 hash = rht_head_hashfn(ht, tbl, obj, params);
614 lock = rht_bucket_lock(tbl, hash);
615 spin_lock_bh(lock);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100616
NeilBrownc0690012018-06-18 12:52:50 +1000617 if (unlikely(rcu_access_pointer(tbl->future_tbl))) {
Herbert Xuca268932016-09-19 19:00:09 +0800618slow_path:
Herbert Xub8244782015-03-24 00:50:26 +1100619 spin_unlock_bh(lock);
Herbert Xuca268932016-09-19 19:00:09 +0800620 rcu_read_unlock();
621 return rhashtable_insert_slow(ht, key, obj);
Herbert Xub8244782015-03-24 00:50:26 +1100622 }
623
Florian Westphal5f8ddea2017-04-16 02:55:09 +0200624 elasticity = RHT_ELASTICITY;
Herbert Xuda204202017-02-11 19:26:47 +0800625 pprev = rht_bucket_insert(ht, tbl, hash);
626 data = ERR_PTR(-ENOMEM);
627 if (!pprev)
628 goto out;
629
NeilBrownf7ad68b2019-03-21 14:42:40 +1100630 rht_for_each_from(head, *pprev, tbl, hash) {
Herbert Xuca268932016-09-19 19:00:09 +0800631 struct rhlist_head *plist;
632 struct rhlist_head *list;
Herbert Xu3cf92222015-12-03 20:41:29 +0800633
Herbert Xuca268932016-09-19 19:00:09 +0800634 elasticity--;
635 if (!key ||
636 (params.obj_cmpfn ?
637 params.obj_cmpfn(&arg, rht_obj(ht, head)) :
Paul Blakeyd3dcf8e2018-03-04 17:29:48 +0200638 rhashtable_compare(&arg, rht_obj(ht, head)))) {
639 pprev = &head->next;
Herbert Xuca268932016-09-19 19:00:09 +0800640 continue;
Paul Blakeyd3dcf8e2018-03-04 17:29:48 +0200641 }
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200642
Herbert Xuca268932016-09-19 19:00:09 +0800643 data = rht_obj(ht, head);
644
645 if (!rhlist)
646 goto out;
647
648
649 list = container_of(obj, struct rhlist_head, rhead);
650 plist = container_of(head, struct rhlist_head, rhead);
651
652 RCU_INIT_POINTER(list->next, plist);
653 head = rht_dereference_bucket(head->next, tbl, hash);
654 RCU_INIT_POINTER(list->rhead.next, head);
655 rcu_assign_pointer(*pprev, obj);
656
657 goto good;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100658 }
659
Herbert Xuca268932016-09-19 19:00:09 +0800660 if (elasticity <= 0)
661 goto slow_path;
662
663 data = ERR_PTR(-E2BIG);
Herbert Xu07ee0722015-05-15 11:30:47 +0800664 if (unlikely(rht_grow_above_max(ht, tbl)))
665 goto out;
666
Herbert Xuca268932016-09-19 19:00:09 +0800667 if (unlikely(rht_grow_above_100(ht, tbl)))
668 goto slow_path;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100669
Herbert Xuda204202017-02-11 19:26:47 +0800670 head = rht_dereference_bucket(*pprev, tbl, hash);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100671
672 RCU_INIT_POINTER(obj->next, head);
Herbert Xuca268932016-09-19 19:00:09 +0800673 if (rhlist) {
674 struct rhlist_head *list;
675
676 list = container_of(obj, struct rhlist_head, rhead);
677 RCU_INIT_POINTER(list->next, NULL);
678 }
Herbert Xu02fd97c2015-03-20 21:57:00 +1100679
Herbert Xuda204202017-02-11 19:26:47 +0800680 rcu_assign_pointer(*pprev, obj);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100681
682 atomic_inc(&ht->nelems);
683 if (rht_grow_above_75(ht, tbl))
684 schedule_work(&ht->run_work);
685
Herbert Xuca268932016-09-19 19:00:09 +0800686good:
687 data = NULL;
688
Herbert Xu02fd97c2015-03-20 21:57:00 +1100689out:
690 spin_unlock_bh(lock);
691 rcu_read_unlock();
692
Herbert Xuca268932016-09-19 19:00:09 +0800693 return data;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100694}
695
696/**
697 * rhashtable_insert_fast - insert object into hash table
698 * @ht: hash table
699 * @obj: pointer to hash head inside object
700 * @params: hash table parameters
701 *
702 * Will take a per bucket spinlock to protect against mutual mutations
703 * on the same bucket. Multiple insertions may occur in parallel unless
704 * they map to the same bucket lock.
705 *
706 * It is safe to call this function from atomic context.
707 *
NeilBrown0c6f69a2018-04-24 08:29:13 +1000708 * Will trigger an automatic deferred table resizing if residency in the
709 * table grows beyond 70%.
Herbert Xu02fd97c2015-03-20 21:57:00 +1100710 */
711static inline int rhashtable_insert_fast(
712 struct rhashtable *ht, struct rhash_head *obj,
713 const struct rhashtable_params params)
714{
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200715 void *ret;
716
Herbert Xuca268932016-09-19 19:00:09 +0800717 ret = __rhashtable_insert_fast(ht, NULL, obj, params, false);
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200718 if (IS_ERR(ret))
719 return PTR_ERR(ret);
720
721 return ret == NULL ? 0 : -EEXIST;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100722}
723
724/**
Herbert Xuca268932016-09-19 19:00:09 +0800725 * rhltable_insert_key - insert object into hash list table
726 * @hlt: hash list table
727 * @key: the pointer to the key
728 * @list: pointer to hash list head inside object
729 * @params: hash table parameters
730 *
731 * Will take a per bucket spinlock to protect against mutual mutations
732 * on the same bucket. Multiple insertions may occur in parallel unless
733 * they map to the same bucket lock.
734 *
735 * It is safe to call this function from atomic context.
736 *
NeilBrown0c6f69a2018-04-24 08:29:13 +1000737 * Will trigger an automatic deferred table resizing if residency in the
738 * table grows beyond 70%.
Herbert Xuca268932016-09-19 19:00:09 +0800739 */
740static inline int rhltable_insert_key(
741 struct rhltable *hlt, const void *key, struct rhlist_head *list,
742 const struct rhashtable_params params)
743{
744 return PTR_ERR(__rhashtable_insert_fast(&hlt->ht, key, &list->rhead,
745 params, true));
746}
747
748/**
749 * rhltable_insert - insert object into hash list table
750 * @hlt: hash list table
751 * @list: pointer to hash list head inside object
752 * @params: hash table parameters
753 *
754 * Will take a per bucket spinlock to protect against mutual mutations
755 * on the same bucket. Multiple insertions may occur in parallel unless
756 * they map to the same bucket lock.
757 *
758 * It is safe to call this function from atomic context.
759 *
NeilBrown0c6f69a2018-04-24 08:29:13 +1000760 * Will trigger an automatic deferred table resizing if residency in the
761 * table grows beyond 70%.
Herbert Xuca268932016-09-19 19:00:09 +0800762 */
763static inline int rhltable_insert(
764 struct rhltable *hlt, struct rhlist_head *list,
765 const struct rhashtable_params params)
766{
767 const char *key = rht_obj(&hlt->ht, &list->rhead);
768
769 key += params.key_offset;
770
771 return rhltable_insert_key(hlt, key, list, params);
772}
773
774/**
Herbert Xu02fd97c2015-03-20 21:57:00 +1100775 * rhashtable_lookup_insert_fast - lookup and insert object into hash table
776 * @ht: hash table
777 * @obj: pointer to hash head inside object
778 * @params: hash table parameters
779 *
Herbert Xu02fd97c2015-03-20 21:57:00 +1100780 * This lookup function may only be used for fixed key hash table (key_len
781 * parameter set). It will BUG() if used inappropriately.
782 *
783 * It is safe to call this function from atomic context.
784 *
NeilBrown0c6f69a2018-04-24 08:29:13 +1000785 * Will trigger an automatic deferred table resizing if residency in the
786 * table grows beyond 70%.
Herbert Xu02fd97c2015-03-20 21:57:00 +1100787 */
788static inline int rhashtable_lookup_insert_fast(
789 struct rhashtable *ht, struct rhash_head *obj,
790 const struct rhashtable_params params)
791{
792 const char *key = rht_obj(ht, obj);
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200793 void *ret;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100794
795 BUG_ON(ht->p.obj_hashfn);
796
Herbert Xuca268932016-09-19 19:00:09 +0800797 ret = __rhashtable_insert_fast(ht, key + ht->p.key_offset, obj, params,
798 false);
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200799 if (IS_ERR(ret))
800 return PTR_ERR(ret);
801
802 return ret == NULL ? 0 : -EEXIST;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100803}
804
805/**
Andreas Gruenbacherf9fe1c12017-03-18 00:36:15 +0100806 * rhashtable_lookup_get_insert_fast - lookup and insert object into hash table
807 * @ht: hash table
808 * @obj: pointer to hash head inside object
809 * @params: hash table parameters
810 *
811 * Just like rhashtable_lookup_insert_fast(), but this function returns the
812 * object if it exists, NULL if it did not and the insertion was successful,
813 * and an ERR_PTR otherwise.
814 */
815static inline void *rhashtable_lookup_get_insert_fast(
816 struct rhashtable *ht, struct rhash_head *obj,
817 const struct rhashtable_params params)
818{
819 const char *key = rht_obj(ht, obj);
820
821 BUG_ON(ht->p.obj_hashfn);
822
823 return __rhashtable_insert_fast(ht, key + ht->p.key_offset, obj, params,
824 false);
825}
826
827/**
Herbert Xu02fd97c2015-03-20 21:57:00 +1100828 * rhashtable_lookup_insert_key - search and insert object to hash table
829 * with explicit key
830 * @ht: hash table
831 * @key: key
832 * @obj: pointer to hash head inside object
833 * @params: hash table parameters
834 *
Herbert Xu02fd97c2015-03-20 21:57:00 +1100835 * Lookups may occur in parallel with hashtable mutations and resizing.
836 *
NeilBrown0c6f69a2018-04-24 08:29:13 +1000837 * Will trigger an automatic deferred table resizing if residency in the
838 * table grows beyond 70%.
Herbert Xu02fd97c2015-03-20 21:57:00 +1100839 *
840 * Returns zero on success.
841 */
842static inline int rhashtable_lookup_insert_key(
843 struct rhashtable *ht, const void *key, struct rhash_head *obj,
844 const struct rhashtable_params params)
845{
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200846 void *ret;
847
848 BUG_ON(!ht->p.obj_hashfn || !key);
849
Herbert Xuca268932016-09-19 19:00:09 +0800850 ret = __rhashtable_insert_fast(ht, key, obj, params, false);
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200851 if (IS_ERR(ret))
852 return PTR_ERR(ret);
853
854 return ret == NULL ? 0 : -EEXIST;
855}
856
857/**
858 * rhashtable_lookup_get_insert_key - lookup and insert object into hash table
859 * @ht: hash table
860 * @obj: pointer to hash head inside object
861 * @params: hash table parameters
862 * @data: pointer to element data already in hashes
863 *
864 * Just like rhashtable_lookup_insert_key(), but this function returns the
865 * object if it exists, NULL if it does not and the insertion was successful,
866 * and an ERR_PTR otherwise.
867 */
868static inline void *rhashtable_lookup_get_insert_key(
869 struct rhashtable *ht, const void *key, struct rhash_head *obj,
870 const struct rhashtable_params params)
871{
Herbert Xu02fd97c2015-03-20 21:57:00 +1100872 BUG_ON(!ht->p.obj_hashfn || !key);
873
Herbert Xuca268932016-09-19 19:00:09 +0800874 return __rhashtable_insert_fast(ht, key, obj, params, false);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100875}
876
Thomas Grafac833bd2015-03-24 14:18:18 +0100877/* Internal function, please use rhashtable_remove_fast() instead */
Herbert Xuca268932016-09-19 19:00:09 +0800878static inline int __rhashtable_remove_fast_one(
Herbert Xu02fd97c2015-03-20 21:57:00 +1100879 struct rhashtable *ht, struct bucket_table *tbl,
Herbert Xuca268932016-09-19 19:00:09 +0800880 struct rhash_head *obj, const struct rhashtable_params params,
881 bool rhlist)
Herbert Xu02fd97c2015-03-20 21:57:00 +1100882{
883 struct rhash_head __rcu **pprev;
884 struct rhash_head *he;
885 spinlock_t * lock;
Thomas Graf299e5c32015-03-24 14:18:17 +0100886 unsigned int hash;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100887 int err = -ENOENT;
888
889 hash = rht_head_hashfn(ht, tbl, obj, params);
890 lock = rht_bucket_lock(tbl, hash);
891
892 spin_lock_bh(lock);
893
Herbert Xuda204202017-02-11 19:26:47 +0800894 pprev = rht_bucket_var(tbl, hash);
NeilBrownff302db2019-04-02 10:07:45 +1100895 if (!pprev)
896 goto out;
NeilBrownf7ad68b2019-03-21 14:42:40 +1100897 rht_for_each_from(he, *pprev, tbl, hash) {
Herbert Xuca268932016-09-19 19:00:09 +0800898 struct rhlist_head *list;
899
900 list = container_of(he, struct rhlist_head, rhead);
901
Herbert Xu02fd97c2015-03-20 21:57:00 +1100902 if (he != obj) {
Herbert Xuca268932016-09-19 19:00:09 +0800903 struct rhlist_head __rcu **lpprev;
904
Herbert Xu02fd97c2015-03-20 21:57:00 +1100905 pprev = &he->next;
Herbert Xuca268932016-09-19 19:00:09 +0800906
907 if (!rhlist)
908 continue;
909
910 do {
911 lpprev = &list->next;
912 list = rht_dereference_bucket(list->next,
913 tbl, hash);
914 } while (list && obj != &list->rhead);
915
916 if (!list)
917 continue;
918
919 list = rht_dereference_bucket(list->next, tbl, hash);
920 RCU_INIT_POINTER(*lpprev, list);
921 err = 0;
922 break;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100923 }
924
Herbert Xuca268932016-09-19 19:00:09 +0800925 obj = rht_dereference_bucket(obj->next, tbl, hash);
926 err = 1;
927
928 if (rhlist) {
929 list = rht_dereference_bucket(list->next, tbl, hash);
930 if (list) {
931 RCU_INIT_POINTER(list->rhead.next, obj);
932 obj = &list->rhead;
933 err = 0;
934 }
935 }
936
937 rcu_assign_pointer(*pprev, obj);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100938 break;
939 }
940
NeilBrownff302db2019-04-02 10:07:45 +1100941out:
Herbert Xu02fd97c2015-03-20 21:57:00 +1100942 spin_unlock_bh(lock);
943
Herbert Xuca268932016-09-19 19:00:09 +0800944 if (err > 0) {
945 atomic_dec(&ht->nelems);
946 if (unlikely(ht->p.automatic_shrinking &&
947 rht_shrink_below_30(ht, tbl)))
948 schedule_work(&ht->run_work);
949 err = 0;
950 }
951
952 return err;
953}
954
955/* Internal function, please use rhashtable_remove_fast() instead */
956static inline int __rhashtable_remove_fast(
957 struct rhashtable *ht, struct rhash_head *obj,
958 const struct rhashtable_params params, bool rhlist)
959{
960 struct bucket_table *tbl;
961 int err;
962
963 rcu_read_lock();
964
965 tbl = rht_dereference_rcu(ht->tbl, ht);
966
967 /* Because we have already taken (and released) the bucket
968 * lock in old_tbl, if we find that future_tbl is not yet
969 * visible then that guarantees the entry to still be in
970 * the old tbl if it exists.
971 */
972 while ((err = __rhashtable_remove_fast_one(ht, tbl, obj, params,
973 rhlist)) &&
974 (tbl = rht_dereference_rcu(tbl->future_tbl, ht)))
975 ;
976
977 rcu_read_unlock();
978
Herbert Xu02fd97c2015-03-20 21:57:00 +1100979 return err;
980}
981
982/**
983 * rhashtable_remove_fast - remove object from hash table
984 * @ht: hash table
985 * @obj: pointer to hash head inside object
986 * @params: hash table parameters
987 *
988 * Since the hash chain is single linked, the removal operation needs to
989 * walk the bucket chain upon removal. The removal operation is thus
990 * considerable slow if the hash table is not correctly sized.
991 *
NeilBrown0c6f69a2018-04-24 08:29:13 +1000992 * Will automatically shrink the table if permitted when residency drops
993 * below 30%.
Herbert Xu02fd97c2015-03-20 21:57:00 +1100994 *
995 * Returns zero on success, -ENOENT if the entry could not be found.
996 */
997static inline int rhashtable_remove_fast(
998 struct rhashtable *ht, struct rhash_head *obj,
999 const struct rhashtable_params params)
1000{
Herbert Xuca268932016-09-19 19:00:09 +08001001 return __rhashtable_remove_fast(ht, obj, params, false);
1002}
Herbert Xu02fd97c2015-03-20 21:57:00 +11001003
Herbert Xuca268932016-09-19 19:00:09 +08001004/**
1005 * rhltable_remove - remove object from hash list table
1006 * @hlt: hash list table
1007 * @list: pointer to hash list head inside object
1008 * @params: hash table parameters
1009 *
1010 * Since the hash chain is single linked, the removal operation needs to
1011 * walk the bucket chain upon removal. The removal operation is thus
1012 * considerable slow if the hash table is not correctly sized.
1013 *
NeilBrown0c6f69a2018-04-24 08:29:13 +10001014 * Will automatically shrink the table if permitted when residency drops
1015 * below 30%
Herbert Xuca268932016-09-19 19:00:09 +08001016 *
1017 * Returns zero on success, -ENOENT if the entry could not be found.
1018 */
1019static inline int rhltable_remove(
1020 struct rhltable *hlt, struct rhlist_head *list,
1021 const struct rhashtable_params params)
1022{
1023 return __rhashtable_remove_fast(&hlt->ht, &list->rhead, params, true);
Herbert Xu02fd97c2015-03-20 21:57:00 +11001024}
1025
Tom Herbert3502cad2015-12-15 15:41:36 -08001026/* Internal function, please use rhashtable_replace_fast() instead */
1027static inline int __rhashtable_replace_fast(
1028 struct rhashtable *ht, struct bucket_table *tbl,
1029 struct rhash_head *obj_old, struct rhash_head *obj_new,
1030 const struct rhashtable_params params)
1031{
1032 struct rhash_head __rcu **pprev;
1033 struct rhash_head *he;
1034 spinlock_t *lock;
1035 unsigned int hash;
1036 int err = -ENOENT;
1037
1038 /* Minimally, the old and new objects must have same hash
1039 * (which should mean identifiers are the same).
1040 */
1041 hash = rht_head_hashfn(ht, tbl, obj_old, params);
1042 if (hash != rht_head_hashfn(ht, tbl, obj_new, params))
1043 return -EINVAL;
1044
1045 lock = rht_bucket_lock(tbl, hash);
1046
1047 spin_lock_bh(lock);
1048
Herbert Xuda204202017-02-11 19:26:47 +08001049 pprev = rht_bucket_var(tbl, hash);
NeilBrownff302db2019-04-02 10:07:45 +11001050 if (!pprev)
1051 goto out;
NeilBrownf7ad68b2019-03-21 14:42:40 +11001052 rht_for_each_from(he, *pprev, tbl, hash) {
Tom Herbert3502cad2015-12-15 15:41:36 -08001053 if (he != obj_old) {
1054 pprev = &he->next;
1055 continue;
1056 }
1057
1058 rcu_assign_pointer(obj_new->next, obj_old->next);
1059 rcu_assign_pointer(*pprev, obj_new);
1060 err = 0;
1061 break;
1062 }
NeilBrownff302db2019-04-02 10:07:45 +11001063out:
Tom Herbert3502cad2015-12-15 15:41:36 -08001064 spin_unlock_bh(lock);
1065
1066 return err;
1067}
1068
1069/**
1070 * rhashtable_replace_fast - replace an object in hash table
1071 * @ht: hash table
1072 * @obj_old: pointer to hash head inside object being replaced
1073 * @obj_new: pointer to hash head inside object which is new
1074 * @params: hash table parameters
1075 *
1076 * Replacing an object doesn't affect the number of elements in the hash table
1077 * or bucket, so we don't need to worry about shrinking or expanding the
1078 * table here.
1079 *
1080 * Returns zero on success, -ENOENT if the entry could not be found,
1081 * -EINVAL if hash is not the same for the old and new objects.
1082 */
1083static inline int rhashtable_replace_fast(
1084 struct rhashtable *ht, struct rhash_head *obj_old,
1085 struct rhash_head *obj_new,
1086 const struct rhashtable_params params)
1087{
1088 struct bucket_table *tbl;
1089 int err;
1090
1091 rcu_read_lock();
1092
1093 tbl = rht_dereference_rcu(ht->tbl, ht);
1094
1095 /* Because we have already taken (and released) the bucket
1096 * lock in old_tbl, if we find that future_tbl is not yet
1097 * visible then that guarantees the entry to still be in
1098 * the old tbl if it exists.
1099 */
1100 while ((err = __rhashtable_replace_fast(ht, tbl, obj_old,
1101 obj_new, params)) &&
1102 (tbl = rht_dereference_rcu(tbl->future_tbl, ht)))
1103 ;
1104
1105 rcu_read_unlock();
1106
1107 return err;
1108}
1109
Herbert Xuca268932016-09-19 19:00:09 +08001110/**
1111 * rhltable_walk_enter - Initialise an iterator
1112 * @hlt: Table to walk over
1113 * @iter: Hash table Iterator
1114 *
1115 * This function prepares a hash table walk.
1116 *
1117 * Note that if you restart a walk after rhashtable_walk_stop you
1118 * may see the same object twice. Also, you may miss objects if
1119 * there are removals in between rhashtable_walk_stop and the next
1120 * call to rhashtable_walk_start.
1121 *
1122 * For a completely stable walk you should construct your own data
1123 * structure outside the hash table.
1124 *
NeilBrown82266e92018-04-24 08:29:13 +10001125 * This function may be called from any process context, including
1126 * non-preemptable context, but cannot be called from softirq or
1127 * hardirq context.
Herbert Xuca268932016-09-19 19:00:09 +08001128 *
1129 * You must call rhashtable_walk_exit after this function returns.
1130 */
1131static inline void rhltable_walk_enter(struct rhltable *hlt,
1132 struct rhashtable_iter *iter)
1133{
1134 return rhashtable_walk_enter(&hlt->ht, iter);
1135}
1136
1137/**
1138 * rhltable_free_and_destroy - free elements and destroy hash list table
1139 * @hlt: the hash list table to destroy
1140 * @free_fn: callback to release resources of element
1141 * @arg: pointer passed to free_fn
1142 *
1143 * See documentation for rhashtable_free_and_destroy.
1144 */
1145static inline void rhltable_free_and_destroy(struct rhltable *hlt,
1146 void (*free_fn)(void *ptr,
1147 void *arg),
1148 void *arg)
1149{
1150 return rhashtable_free_and_destroy(&hlt->ht, free_fn, arg);
1151}
1152
1153static inline void rhltable_destroy(struct rhltable *hlt)
1154{
1155 return rhltable_free_and_destroy(hlt, NULL, NULL);
1156}
1157
Thomas Graf7e1e7762014-08-02 11:47:44 +02001158#endif /* _LINUX_RHASHTABLE_H */