blob: 7d56a7ea2b2e8cdcf471da6aaa6ac0be3c51acaa [file] [log] [blame]
Thomas Graf7e1e7762014-08-02 11:47:44 +02001/*
2 * Resizable, Scalable, Concurrent Hash Table
3 *
Herbert Xuca268932016-09-19 19:00:09 +08004 * Copyright (c) 2015-2016 Herbert Xu <herbert@gondor.apana.org.au>
Thomas Grafb5e2c152015-03-24 20:42:19 +00005 * 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 Xudc0ee262015-03-20 21:57:06 +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
17#ifndef _LINUX_RHASHTABLE_H
18#define _LINUX_RHASHTABLE_H
19
Herbert Xu07ee0722015-05-15 11:30:47 +080020#include <linux/atomic.h>
Herbert Xuf2dba9c2015-02-04 07:33:23 +110021#include <linux/compiler.h>
Herbert Xu3cf92222015-12-03 20:41:29 +080022#include <linux/err.h>
Herbert Xu6626af62015-03-20 18:18:45 -040023#include <linux/errno.h>
Herbert Xu31ccde22015-03-24 00:50:21 +110024#include <linux/jhash.h>
Thomas Graff89bd6f2015-01-02 23:00:21 +010025#include <linux/list_nulls.h>
Thomas Graf97defe12015-01-02 23:00:20 +010026#include <linux/workqueue.h>
Ying Xue86b35b62015-01-04 15:25:09 +080027#include <linux/mutex.h>
Ingo Molnarb2d09102017-02-04 01:27:20 +010028#include <linux/rculist.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020029
Thomas Graff89bd6f2015-01-02 23:00:21 +010030/*
31 * The end of the chain is marked with a special nulls marks which has
32 * the following format:
33 *
34 * +-------+-----------------------------------------------------+-+
35 * | Base | Hash |1|
36 * +-------+-----------------------------------------------------+-+
37 *
38 * Base (4 bits) : Reserved to distinguish between multiple tables.
39 * Specified via &struct rhashtable_params.nulls_base.
40 * Hash (27 bits): Full hash (unmasked) of first element added to bucket
41 * 1 (1 bit) : Nulls marker (always set)
42 *
43 * The remaining bits of the next pointer remain unused for now.
44 */
45#define RHT_BASE_BITS 4
46#define RHT_HASH_BITS 27
47#define RHT_BASE_SHIFT RHT_HASH_BITS
48
Herbert Xu02fd97c2015-03-20 21:57:00 +110049/* Base bits plus 1 bit for nulls marker */
50#define RHT_HASH_RESERVED_SPACE (RHT_BASE_BITS + 1)
51
Florian Westphal5f8ddea2017-04-16 02:55:09 +020052/* Maximum chain length before rehash
53 *
54 * The maximum (not average) chain length grows with the size of the hash
55 * table, at a rate of (log N)/(log log N).
56 *
57 * The value of 16 is selected so that even if the hash table grew to
58 * 2^32 you would not expect the maximum chain length to exceed it
59 * unless we are under attack (or extremely unlucky).
60 *
61 * As this limit is only to detect attacks, we don't need to set it to a
62 * lower value as you'd need the chain length to vastly exceed 16 to have
63 * any real effect on the system.
64 */
65#define RHT_ELASTICITY 16u
66
Thomas Graf7e1e7762014-08-02 11:47:44 +020067struct rhash_head {
Thomas Graf5300fdc2014-08-13 16:38:29 +020068 struct rhash_head __rcu *next;
Thomas Graf7e1e7762014-08-02 11:47:44 +020069};
70
Herbert Xuca268932016-09-19 19:00:09 +080071struct rhlist_head {
72 struct rhash_head rhead;
73 struct rhlist_head __rcu *next;
74};
75
Thomas Graf97defe12015-01-02 23:00:20 +010076/**
77 * struct bucket_table - Table of hash buckets
78 * @size: Number of hash buckets
Herbert Xuda204202017-02-11 19:26:47 +080079 * @nest: Number of bits of first-level nested table.
Herbert Xu63d512d2015-03-14 13:57:24 +110080 * @rehash: Current bucket being rehashed
Herbert Xu988dfbd2015-03-10 09:27:55 +110081 * @hash_rnd: Random seed to fold into hash
Thomas Graf97defe12015-01-02 23:00:20 +010082 * @locks_mask: Mask to apply before accessing locks[]
83 * @locks: Array of spinlocks protecting individual buckets
Herbert Xueddee5ba2015-03-14 13:57:20 +110084 * @walkers: List of active walkers
Herbert Xu9d901bc2015-03-14 13:57:23 +110085 * @rcu: RCU structure for freeing the table
Herbert Xuc4db8842015-03-14 13:57:25 +110086 * @future_tbl: Table under construction during rehashing
Herbert Xuda204202017-02-11 19:26:47 +080087 * @ntbl: Nested table used when out of memory.
Thomas Graf97defe12015-01-02 23:00:20 +010088 * @buckets: size * hash buckets
89 */
Thomas Graf7e1e7762014-08-02 11:47:44 +020090struct bucket_table {
Herbert Xu63d512d2015-03-14 13:57:24 +110091 unsigned int size;
Herbert Xuda204202017-02-11 19:26:47 +080092 unsigned int nest;
Herbert Xu63d512d2015-03-14 13:57:24 +110093 unsigned int rehash;
Herbert Xu988dfbd2015-03-10 09:27:55 +110094 u32 hash_rnd;
Eric Dumazetb9ebafb2015-02-20 06:48:57 -080095 unsigned int locks_mask;
96 spinlock_t *locks;
Herbert Xueddee5ba2015-03-14 13:57:20 +110097 struct list_head walkers;
Herbert Xu9d901bc2015-03-14 13:57:23 +110098 struct rcu_head rcu;
Eric Dumazetb9ebafb2015-02-20 06:48:57 -080099
Herbert Xuc4db8842015-03-14 13:57:25 +1100100 struct bucket_table __rcu *future_tbl;
101
Herbert Xuda204202017-02-11 19:26:47 +0800102 struct rhash_head __rcu *buckets[] ____cacheline_aligned_in_smp;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200103};
104
Herbert Xu02fd97c2015-03-20 21:57:00 +1100105/**
106 * struct rhashtable_compare_arg - Key for the function rhashtable_compare
107 * @ht: Hash table
108 * @key: Key to compare against
109 */
110struct rhashtable_compare_arg {
111 struct rhashtable *ht;
112 const void *key;
113};
114
Thomas Graf7e1e7762014-08-02 11:47:44 +0200115typedef u32 (*rht_hashfn_t)(const void *data, u32 len, u32 seed);
Patrick McHardy49f7b332015-03-25 13:07:45 +0000116typedef u32 (*rht_obj_hashfn_t)(const void *data, u32 len, u32 seed);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100117typedef int (*rht_obj_cmpfn_t)(struct rhashtable_compare_arg *arg,
118 const void *obj);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200119
120struct rhashtable;
121
122/**
123 * struct rhashtable_params - Hash table construction parameters
124 * @nelem_hint: Hint on number of elements, should be 75% of desired size
125 * @key_len: Length of key
126 * @key_offset: Offset of key in struct to be hashed
127 * @head_offset: Offset of rhash_head in struct to be hashed
Herbert Xuc2e213c2015-03-18 20:01:16 +1100128 * @max_size: Maximum size while expanding
129 * @min_size: Minimum size while shrinking
Thomas Graf97defe12015-01-02 23:00:20 +0100130 * @locks_mul: Number of bucket locks to allocate per cpu (default: 128)
Florian Westphal48e75b432017-05-01 22:18:01 +0200131 * @automatic_shrinking: Enable automatic shrinking of tables
132 * @nulls_base: Base value to generate nulls marker
Herbert Xu31ccde22015-03-24 00:50:21 +1100133 * @hashfn: Hash function (default: jhash2 if !(key_len % 4), or jhash)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200134 * @obj_hashfn: Function to hash object
Herbert Xu02fd97c2015-03-20 21:57:00 +1100135 * @obj_cmpfn: Function to compare key with object
Thomas Graf7e1e7762014-08-02 11:47:44 +0200136 */
137struct rhashtable_params {
Florian Westphal48e75b432017-05-01 22:18:01 +0200138 u16 nelem_hint;
139 u16 key_len;
140 u16 key_offset;
141 u16 head_offset;
Herbert Xuc2e213c2015-03-18 20:01:16 +1100142 unsigned int max_size;
Florian Westphal48e75b432017-05-01 22:18:01 +0200143 u16 min_size;
Thomas Grafb5e2c152015-03-24 20:42:19 +0000144 bool automatic_shrinking;
Florian Westphal48e75b432017-05-01 22:18:01 +0200145 u8 locks_mul;
146 u32 nulls_base;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200147 rht_hashfn_t hashfn;
148 rht_obj_hashfn_t obj_hashfn;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100149 rht_obj_cmpfn_t obj_cmpfn;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200150};
151
152/**
153 * struct rhashtable - Hash table handle
154 * @tbl: Bucket table
155 * @nelems: Number of elements in table
Herbert Xu31ccde22015-03-24 00:50:21 +1100156 * @key_len: Key length for hashfn
Thomas Graf7e1e7762014-08-02 11:47:44 +0200157 * @p: Configuration parameters
Herbert Xu6d684e52017-04-27 13:44:51 +0800158 * @max_elems: Maximum number of elements in table
Herbert Xuca268932016-09-19 19:00:09 +0800159 * @rhlist: True if this is an rhltable
Thomas Graf97defe12015-01-02 23:00:20 +0100160 * @run_work: Deferred worker to expand/shrink asynchronously
161 * @mutex: Mutex to protect current/future table swapping
Herbert Xuba7c95e2015-03-24 09:53:17 +1100162 * @lock: Spin lock to protect walker list
Thomas Graf7e1e7762014-08-02 11:47:44 +0200163 */
164struct rhashtable {
165 struct bucket_table __rcu *tbl;
Thomas Graf97defe12015-01-02 23:00:20 +0100166 atomic_t nelems;
Herbert Xu31ccde22015-03-24 00:50:21 +1100167 unsigned int key_len;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200168 struct rhashtable_params p;
Herbert Xu6d684e52017-04-27 13:44:51 +0800169 unsigned int max_elems;
Herbert Xuca268932016-09-19 19:00:09 +0800170 bool rhlist;
Ying Xue57699a42015-01-16 11:13:09 +0800171 struct work_struct run_work;
Thomas Graf97defe12015-01-02 23:00:20 +0100172 struct mutex mutex;
Herbert Xuba7c95e2015-03-24 09:53:17 +1100173 spinlock_t lock;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200174};
175
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100176/**
Herbert Xuca268932016-09-19 19:00:09 +0800177 * struct rhltable - Hash table with duplicate objects in a list
178 * @ht: Underlying rhtable
179 */
180struct rhltable {
181 struct rhashtable ht;
182};
183
184/**
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100185 * struct rhashtable_walker - Hash table walker
186 * @list: List entry on list of walkers
Herbert Xueddee5ba2015-03-14 13:57:20 +1100187 * @tbl: The table that we were walking over
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100188 */
189struct rhashtable_walker {
190 struct list_head list;
Herbert Xueddee5ba2015-03-14 13:57:20 +1100191 struct bucket_table *tbl;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100192};
193
194/**
Herbert Xuca268932016-09-19 19:00:09 +0800195 * struct rhashtable_iter - Hash table iterator
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100196 * @ht: Table to iterate through
197 * @p: Current pointer
Herbert Xuca268932016-09-19 19:00:09 +0800198 * @list: Current hash list pointer
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100199 * @walker: Associated rhashtable walker
200 * @slot: Current slot
201 * @skip: Number of entries to skip in slot
202 */
203struct rhashtable_iter {
204 struct rhashtable *ht;
205 struct rhash_head *p;
Herbert Xuca268932016-09-19 19:00:09 +0800206 struct rhlist_head *list;
Herbert Xu246779d2016-08-18 16:50:56 +0800207 struct rhashtable_walker walker;
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100208 unsigned int slot;
209 unsigned int skip;
210};
211
Thomas Graff89bd6f2015-01-02 23:00:21 +0100212static inline unsigned long rht_marker(const struct rhashtable *ht, u32 hash)
213{
214 return NULLS_MARKER(ht->p.nulls_base + hash);
215}
216
217#define INIT_RHT_NULLS_HEAD(ptr, ht, hash) \
218 ((ptr) = (typeof(ptr)) rht_marker(ht, hash))
219
220static inline bool rht_is_a_nulls(const struct rhash_head *ptr)
221{
222 return ((unsigned long) ptr & 1);
223}
224
225static inline unsigned long rht_get_nulls_value(const struct rhash_head *ptr)
226{
227 return ((unsigned long) ptr) >> 1;
228}
229
Herbert Xu02fd97c2015-03-20 21:57:00 +1100230static inline void *rht_obj(const struct rhashtable *ht,
231 const struct rhash_head *he)
232{
233 return (char *)he - ht->p.head_offset;
234}
235
236static inline unsigned int rht_bucket_index(const struct bucket_table *tbl,
237 unsigned int hash)
238{
239 return (hash >> RHT_HASH_RESERVED_SPACE) & (tbl->size - 1);
240}
241
242static inline unsigned int rht_key_hashfn(
243 struct rhashtable *ht, const struct bucket_table *tbl,
244 const void *key, const struct rhashtable_params params)
245{
Thomas Graf299e5c32015-03-24 14:18:17 +0100246 unsigned int hash;
Herbert Xude91b252015-03-24 00:50:20 +1100247
Herbert Xu31ccde22015-03-24 00:50:21 +1100248 /* params must be equal to ht->p if it isn't constant. */
249 if (!__builtin_constant_p(params.key_len))
250 hash = ht->p.hashfn(key, ht->key_len, tbl->hash_rnd);
251 else if (params.key_len) {
Thomas Graf299e5c32015-03-24 14:18:17 +0100252 unsigned int key_len = params.key_len;
Herbert Xu31ccde22015-03-24 00:50:21 +1100253
254 if (params.hashfn)
255 hash = params.hashfn(key, key_len, tbl->hash_rnd);
256 else if (key_len & (sizeof(u32) - 1))
257 hash = jhash(key, key_len, tbl->hash_rnd);
258 else
259 hash = jhash2(key, key_len / sizeof(u32),
260 tbl->hash_rnd);
261 } else {
Thomas Graf299e5c32015-03-24 14:18:17 +0100262 unsigned int key_len = ht->p.key_len;
Herbert Xu31ccde22015-03-24 00:50:21 +1100263
264 if (params.hashfn)
265 hash = params.hashfn(key, key_len, tbl->hash_rnd);
266 else
267 hash = jhash(key, key_len, tbl->hash_rnd);
268 }
269
270 return rht_bucket_index(tbl, hash);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100271}
272
273static inline unsigned int rht_head_hashfn(
274 struct rhashtable *ht, const struct bucket_table *tbl,
275 const struct rhash_head *he, const struct rhashtable_params params)
276{
277 const char *ptr = rht_obj(ht, he);
278
279 return likely(params.obj_hashfn) ?
Patrick McHardy49f7b332015-03-25 13:07:45 +0000280 rht_bucket_index(tbl, params.obj_hashfn(ptr, params.key_len ?:
281 ht->p.key_len,
282 tbl->hash_rnd)) :
Herbert Xu02fd97c2015-03-20 21:57:00 +1100283 rht_key_hashfn(ht, tbl, ptr + params.key_offset, params);
284}
285
286/**
287 * rht_grow_above_75 - returns true if nelems > 0.75 * table-size
288 * @ht: hash table
289 * @tbl: current table
290 */
291static inline bool rht_grow_above_75(const struct rhashtable *ht,
292 const struct bucket_table *tbl)
293{
294 /* Expand table when exceeding 75% load */
295 return atomic_read(&ht->nelems) > (tbl->size / 4 * 3) &&
296 (!ht->p.max_size || tbl->size < ht->p.max_size);
297}
298
299/**
300 * rht_shrink_below_30 - returns true if nelems < 0.3 * table-size
301 * @ht: hash table
302 * @tbl: current table
303 */
304static inline bool rht_shrink_below_30(const struct rhashtable *ht,
305 const struct bucket_table *tbl)
306{
307 /* Shrink table beneath 30% load */
308 return atomic_read(&ht->nelems) < (tbl->size * 3 / 10) &&
309 tbl->size > ht->p.min_size;
310}
311
Herbert Xuccd57b12015-03-24 00:50:28 +1100312/**
313 * rht_grow_above_100 - returns true if nelems > table-size
314 * @ht: hash table
315 * @tbl: current table
316 */
317static inline bool rht_grow_above_100(const struct rhashtable *ht,
318 const struct bucket_table *tbl)
319{
Johannes Berg1d8dc3d2015-04-23 16:38:43 +0200320 return atomic_read(&ht->nelems) > tbl->size &&
321 (!ht->p.max_size || tbl->size < ht->p.max_size);
Herbert Xuccd57b12015-03-24 00:50:28 +1100322}
323
Herbert Xu07ee0722015-05-15 11:30:47 +0800324/**
325 * rht_grow_above_max - returns true if table is above maximum
326 * @ht: hash table
327 * @tbl: current table
328 */
329static inline bool rht_grow_above_max(const struct rhashtable *ht,
330 const struct bucket_table *tbl)
331{
Herbert Xu6d684e52017-04-27 13:44:51 +0800332 return atomic_read(&ht->nelems) >= ht->max_elems;
Herbert Xu07ee0722015-05-15 11:30:47 +0800333}
334
Herbert Xu02fd97c2015-03-20 21:57:00 +1100335/* The bucket lock is selected based on the hash and protects mutations
336 * on a group of hash buckets.
337 *
338 * A maximum of tbl->size/2 bucket locks is allocated. This ensures that
339 * a single lock always covers both buckets which may both contains
340 * entries which link to the same bucket of the old table during resizing.
341 * This allows to simplify the locking as locking the bucket in both
342 * tables during resize always guarantee protection.
343 *
344 * IMPORTANT: When holding the bucket lock of both the old and new table
345 * during expansions and shrinking, the old bucket lock must always be
346 * acquired first.
347 */
348static inline spinlock_t *rht_bucket_lock(const struct bucket_table *tbl,
349 unsigned int hash)
350{
351 return &tbl->locks[hash & tbl->locks_mask];
352}
353
Thomas Graf7e1e7762014-08-02 11:47:44 +0200354#ifdef CONFIG_PROVE_LOCKING
Thomas Graf97defe12015-01-02 23:00:20 +0100355int lockdep_rht_mutex_is_held(struct rhashtable *ht);
Thomas Graf88d6ed12015-01-02 23:00:16 +0100356int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200357#else
Thomas Graf97defe12015-01-02 23:00:20 +0100358static inline int lockdep_rht_mutex_is_held(struct rhashtable *ht)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200359{
360 return 1;
361}
Thomas Graf88d6ed12015-01-02 23:00:16 +0100362
363static inline int lockdep_rht_bucket_is_held(const struct bucket_table *tbl,
364 u32 hash)
365{
366 return 1;
367}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200368#endif /* CONFIG_PROVE_LOCKING */
369
Herbert Xu488fb86e2015-03-20 21:56:59 +1100370int rhashtable_init(struct rhashtable *ht,
371 const struct rhashtable_params *params);
Herbert Xuca268932016-09-19 19:00:09 +0800372int rhltable_init(struct rhltable *hlt,
373 const struct rhashtable_params *params);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200374
Herbert Xuca268932016-09-19 19:00:09 +0800375void *rhashtable_insert_slow(struct rhashtable *ht, const void *key,
376 struct rhash_head *obj);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200377
Herbert Xu246779d2016-08-18 16:50:56 +0800378void rhashtable_walk_enter(struct rhashtable *ht,
379 struct rhashtable_iter *iter);
Herbert Xuf2dba9c2015-02-04 07:33:23 +1100380void rhashtable_walk_exit(struct rhashtable_iter *iter);
381int rhashtable_walk_start(struct rhashtable_iter *iter) __acquires(RCU);
382void *rhashtable_walk_next(struct rhashtable_iter *iter);
383void rhashtable_walk_stop(struct rhashtable_iter *iter) __releases(RCU);
384
Thomas Graf6b6f3022015-03-24 14:18:20 +0100385void rhashtable_free_and_destroy(struct rhashtable *ht,
386 void (*free_fn)(void *ptr, void *arg),
387 void *arg);
Thomas Graf97defe12015-01-02 23:00:20 +0100388void rhashtable_destroy(struct rhashtable *ht);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200389
Herbert Xuda204202017-02-11 19:26:47 +0800390struct rhash_head __rcu **rht_bucket_nested(const struct bucket_table *tbl,
391 unsigned int hash);
392struct rhash_head __rcu **rht_bucket_nested_insert(struct rhashtable *ht,
393 struct bucket_table *tbl,
394 unsigned int hash);
395
Thomas Graf7e1e7762014-08-02 11:47:44 +0200396#define rht_dereference(p, ht) \
397 rcu_dereference_protected(p, lockdep_rht_mutex_is_held(ht))
398
399#define rht_dereference_rcu(p, ht) \
400 rcu_dereference_check(p, lockdep_rht_mutex_is_held(ht))
401
Thomas Graf88d6ed12015-01-02 23:00:16 +0100402#define rht_dereference_bucket(p, tbl, hash) \
403 rcu_dereference_protected(p, lockdep_rht_bucket_is_held(tbl, hash))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200404
Thomas Graf88d6ed12015-01-02 23:00:16 +0100405#define rht_dereference_bucket_rcu(p, tbl, hash) \
406 rcu_dereference_check(p, lockdep_rht_bucket_is_held(tbl, hash))
407
408#define rht_entry(tpos, pos, member) \
409 ({ tpos = container_of(pos, typeof(*tpos), member); 1; })
410
Herbert Xuda204202017-02-11 19:26:47 +0800411static inline struct rhash_head __rcu *const *rht_bucket(
412 const struct bucket_table *tbl, unsigned int hash)
413{
414 return unlikely(tbl->nest) ? rht_bucket_nested(tbl, hash) :
415 &tbl->buckets[hash];
416}
417
418static inline struct rhash_head __rcu **rht_bucket_var(
419 struct bucket_table *tbl, unsigned int hash)
420{
421 return unlikely(tbl->nest) ? rht_bucket_nested(tbl, hash) :
422 &tbl->buckets[hash];
423}
424
425static inline struct rhash_head __rcu **rht_bucket_insert(
426 struct rhashtable *ht, struct bucket_table *tbl, unsigned int hash)
427{
428 return unlikely(tbl->nest) ? rht_bucket_nested_insert(ht, tbl, hash) :
429 &tbl->buckets[hash];
430}
431
Thomas Graf88d6ed12015-01-02 23:00:16 +0100432/**
433 * rht_for_each_continue - continue iterating over hash chain
434 * @pos: the &struct rhash_head to use as a loop cursor.
435 * @head: the previous &struct rhash_head to continue from
436 * @tbl: the &struct bucket_table
437 * @hash: the hash value / bucket index
438 */
439#define rht_for_each_continue(pos, head, tbl, hash) \
440 for (pos = rht_dereference_bucket(head, tbl, hash); \
Thomas Graff89bd6f2015-01-02 23:00:21 +0100441 !rht_is_a_nulls(pos); \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100442 pos = rht_dereference_bucket((pos)->next, tbl, hash))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200443
444/**
445 * rht_for_each - iterate over hash chain
Thomas Graf88d6ed12015-01-02 23:00:16 +0100446 * @pos: the &struct rhash_head to use as a loop cursor.
447 * @tbl: the &struct bucket_table
448 * @hash: the hash value / bucket index
Thomas Graf7e1e7762014-08-02 11:47:44 +0200449 */
Thomas Graf88d6ed12015-01-02 23:00:16 +0100450#define rht_for_each(pos, tbl, hash) \
Herbert Xuda204202017-02-11 19:26:47 +0800451 rht_for_each_continue(pos, *rht_bucket(tbl, hash), tbl, hash)
Thomas Graf88d6ed12015-01-02 23:00:16 +0100452
453/**
454 * rht_for_each_entry_continue - continue iterating over hash chain
455 * @tpos: the type * to use as a loop cursor.
456 * @pos: the &struct rhash_head to use as a loop cursor.
457 * @head: the previous &struct rhash_head to continue from
458 * @tbl: the &struct bucket_table
459 * @hash: the hash value / bucket index
460 * @member: name of the &struct rhash_head within the hashable struct.
461 */
462#define rht_for_each_entry_continue(tpos, pos, head, tbl, hash, member) \
463 for (pos = rht_dereference_bucket(head, tbl, hash); \
Thomas Graff89bd6f2015-01-02 23:00:21 +0100464 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100465 pos = rht_dereference_bucket((pos)->next, tbl, hash))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200466
467/**
468 * rht_for_each_entry - iterate over hash chain of given type
Thomas Graf88d6ed12015-01-02 23:00:16 +0100469 * @tpos: the type * to use as a loop cursor.
470 * @pos: the &struct rhash_head to use as a loop cursor.
471 * @tbl: the &struct bucket_table
472 * @hash: the hash value / bucket index
473 * @member: name of the &struct rhash_head within the hashable struct.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200474 */
Thomas Graf88d6ed12015-01-02 23:00:16 +0100475#define rht_for_each_entry(tpos, pos, tbl, hash, member) \
Herbert Xuda204202017-02-11 19:26:47 +0800476 rht_for_each_entry_continue(tpos, pos, *rht_bucket(tbl, hash), \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100477 tbl, hash, member)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200478
479/**
480 * rht_for_each_entry_safe - safely iterate over hash chain of given type
Thomas Graf88d6ed12015-01-02 23:00:16 +0100481 * @tpos: the type * to use as a loop cursor.
482 * @pos: the &struct rhash_head to use as a loop cursor.
483 * @next: the &struct rhash_head to use as next in loop cursor.
484 * @tbl: the &struct bucket_table
485 * @hash: the hash value / bucket index
486 * @member: name of the &struct rhash_head within the hashable struct.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200487 *
488 * This hash chain list-traversal primitive allows for the looped code to
489 * remove the loop cursor from the list.
490 */
Herbert Xuda204202017-02-11 19:26:47 +0800491#define rht_for_each_entry_safe(tpos, pos, next, tbl, hash, member) \
492 for (pos = rht_dereference_bucket(*rht_bucket(tbl, hash), tbl, hash), \
493 next = !rht_is_a_nulls(pos) ? \
494 rht_dereference_bucket(pos->next, tbl, hash) : NULL; \
495 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \
496 pos = next, \
497 next = !rht_is_a_nulls(pos) ? \
Patrick McHardy607954b2015-01-21 11:12:13 +0000498 rht_dereference_bucket(pos->next, tbl, hash) : NULL)
Thomas Graf88d6ed12015-01-02 23:00:16 +0100499
500/**
501 * rht_for_each_rcu_continue - continue iterating over rcu hash chain
502 * @pos: the &struct rhash_head to use as a loop cursor.
503 * @head: the previous &struct rhash_head to continue from
504 * @tbl: the &struct bucket_table
505 * @hash: the hash value / bucket index
506 *
507 * This hash chain list-traversal primitive may safely run concurrently with
508 * the _rcu mutation primitives such as rhashtable_insert() as long as the
509 * traversal is guarded by rcu_read_lock().
510 */
511#define rht_for_each_rcu_continue(pos, head, tbl, hash) \
512 for (({barrier(); }), \
513 pos = rht_dereference_bucket_rcu(head, tbl, hash); \
Thomas Graff89bd6f2015-01-02 23:00:21 +0100514 !rht_is_a_nulls(pos); \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100515 pos = rcu_dereference_raw(pos->next))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200516
517/**
518 * rht_for_each_rcu - iterate over rcu hash chain
Thomas Graf88d6ed12015-01-02 23:00:16 +0100519 * @pos: the &struct rhash_head to use as a loop cursor.
520 * @tbl: the &struct bucket_table
521 * @hash: the hash value / bucket index
Thomas Graf7e1e7762014-08-02 11:47:44 +0200522 *
523 * This hash chain list-traversal primitive may safely run concurrently with
Thomas Graf88d6ed12015-01-02 23:00:16 +0100524 * the _rcu mutation primitives such as rhashtable_insert() as long as the
Thomas Graf7e1e7762014-08-02 11:47:44 +0200525 * traversal is guarded by rcu_read_lock().
526 */
Thomas Graf88d6ed12015-01-02 23:00:16 +0100527#define rht_for_each_rcu(pos, tbl, hash) \
Herbert Xuda204202017-02-11 19:26:47 +0800528 rht_for_each_rcu_continue(pos, *rht_bucket(tbl, hash), tbl, hash)
Thomas Graf88d6ed12015-01-02 23:00:16 +0100529
530/**
531 * rht_for_each_entry_rcu_continue - continue iterating over rcu hash chain
532 * @tpos: the type * to use as a loop cursor.
533 * @pos: the &struct rhash_head to use as a loop cursor.
534 * @head: the previous &struct rhash_head to continue from
535 * @tbl: the &struct bucket_table
536 * @hash: the hash value / bucket index
537 * @member: name of the &struct rhash_head within the hashable struct.
538 *
539 * This hash chain list-traversal primitive may safely run concurrently with
540 * the _rcu mutation primitives such as rhashtable_insert() as long as the
541 * traversal is guarded by rcu_read_lock().
542 */
543#define rht_for_each_entry_rcu_continue(tpos, pos, head, tbl, hash, member) \
544 for (({barrier(); }), \
545 pos = rht_dereference_bucket_rcu(head, tbl, hash); \
Thomas Graff89bd6f2015-01-02 23:00:21 +0100546 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100547 pos = rht_dereference_bucket_rcu(pos->next, tbl, hash))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200548
549/**
550 * rht_for_each_entry_rcu - iterate over rcu hash chain of given type
Thomas Graf88d6ed12015-01-02 23:00:16 +0100551 * @tpos: the type * to use as a loop cursor.
552 * @pos: the &struct rhash_head to use as a loop cursor.
553 * @tbl: the &struct bucket_table
554 * @hash: the hash value / bucket index
555 * @member: name of the &struct rhash_head within the hashable struct.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200556 *
557 * This hash chain list-traversal primitive may safely run concurrently with
Thomas Graf88d6ed12015-01-02 23:00:16 +0100558 * the _rcu mutation primitives such as rhashtable_insert() as long as the
Thomas Graf7e1e7762014-08-02 11:47:44 +0200559 * traversal is guarded by rcu_read_lock().
560 */
Herbert Xuda204202017-02-11 19:26:47 +0800561#define rht_for_each_entry_rcu(tpos, pos, tbl, hash, member) \
562 rht_for_each_entry_rcu_continue(tpos, pos, *rht_bucket(tbl, hash), \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100563 tbl, hash, member)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200564
Herbert Xuca268932016-09-19 19:00:09 +0800565/**
566 * rhl_for_each_rcu - iterate over rcu hash table list
567 * @pos: the &struct rlist_head to use as a loop cursor.
568 * @list: the head of the list
569 *
570 * This hash chain list-traversal primitive should be used on the
571 * list returned by rhltable_lookup.
572 */
573#define rhl_for_each_rcu(pos, list) \
574 for (pos = list; pos; pos = rcu_dereference_raw(pos->next))
575
576/**
577 * rhl_for_each_entry_rcu - iterate over rcu hash table list of given type
578 * @tpos: the type * to use as a loop cursor.
579 * @pos: the &struct rlist_head to use as a loop cursor.
580 * @list: the head of the list
581 * @member: name of the &struct rlist_head within the hashable struct.
582 *
583 * This hash chain list-traversal primitive should be used on the
584 * list returned by rhltable_lookup.
585 */
586#define rhl_for_each_entry_rcu(tpos, pos, list, member) \
587 for (pos = list; pos && rht_entry(tpos, pos, member); \
588 pos = rcu_dereference_raw(pos->next))
589
Herbert Xu02fd97c2015-03-20 21:57:00 +1100590static inline int rhashtable_compare(struct rhashtable_compare_arg *arg,
591 const void *obj)
592{
593 struct rhashtable *ht = arg->ht;
594 const char *ptr = obj;
595
596 return memcmp(ptr + ht->p.key_offset, arg->key, ht->p.key_len);
597}
598
Herbert Xuca268932016-09-19 19:00:09 +0800599/* Internal function, do not use. */
600static inline struct rhash_head *__rhashtable_lookup(
Herbert Xu02fd97c2015-03-20 21:57:00 +1100601 struct rhashtable *ht, const void *key,
602 const struct rhashtable_params params)
603{
604 struct rhashtable_compare_arg arg = {
605 .ht = ht,
606 .key = key,
607 };
Herbert Xuda204202017-02-11 19:26:47 +0800608 struct bucket_table *tbl;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100609 struct rhash_head *he;
Thomas Graf299e5c32015-03-24 14:18:17 +0100610 unsigned int hash;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100611
Herbert Xu02fd97c2015-03-20 21:57:00 +1100612 tbl = rht_dereference_rcu(ht->tbl, ht);
613restart:
614 hash = rht_key_hashfn(ht, tbl, key, params);
615 rht_for_each_rcu(he, tbl, hash) {
616 if (params.obj_cmpfn ?
617 params.obj_cmpfn(&arg, rht_obj(ht, he)) :
618 rhashtable_compare(&arg, rht_obj(ht, he)))
619 continue;
Herbert Xuca268932016-09-19 19:00:09 +0800620 return he;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100621 }
622
623 /* Ensure we see any new tables. */
624 smp_rmb();
625
626 tbl = rht_dereference_rcu(tbl->future_tbl, ht);
627 if (unlikely(tbl))
628 goto restart;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100629
630 return NULL;
631}
632
Herbert Xuca268932016-09-19 19:00:09 +0800633/**
634 * rhashtable_lookup - search hash table
635 * @ht: hash table
636 * @key: the pointer to the key
637 * @params: hash table parameters
638 *
639 * Computes the hash value for the key and traverses the bucket chain looking
640 * for a entry with an identical key. The first matching entry is returned.
641 *
642 * This must only be called under the RCU read lock.
643 *
644 * Returns the first entry on which the compare function returned true.
645 */
646static inline void *rhashtable_lookup(
647 struct rhashtable *ht, const void *key,
648 const struct rhashtable_params params)
649{
650 struct rhash_head *he = __rhashtable_lookup(ht, key, params);
651
652 return he ? rht_obj(ht, he) : NULL;
653}
654
655/**
656 * rhashtable_lookup_fast - search hash table, without RCU read lock
657 * @ht: hash table
658 * @key: the pointer to the key
659 * @params: hash table parameters
660 *
661 * Computes the hash value for the key and traverses the bucket chain looking
662 * for a entry with an identical key. The first matching entry is returned.
663 *
664 * Only use this function when you have other mechanisms guaranteeing
665 * that the object won't go away after the RCU read lock is released.
666 *
667 * Returns the first entry on which the compare function returned true.
668 */
669static inline void *rhashtable_lookup_fast(
670 struct rhashtable *ht, const void *key,
671 const struct rhashtable_params params)
672{
673 void *obj;
674
675 rcu_read_lock();
676 obj = rhashtable_lookup(ht, key, params);
677 rcu_read_unlock();
678
679 return obj;
680}
681
682/**
683 * rhltable_lookup - search hash list table
684 * @hlt: hash table
685 * @key: the pointer to the key
686 * @params: hash table parameters
687 *
688 * Computes the hash value for the key and traverses the bucket chain looking
689 * for a entry with an identical key. All matching entries are returned
690 * in a list.
691 *
692 * This must only be called under the RCU read lock.
693 *
694 * Returns the list of entries that match the given key.
695 */
696static inline struct rhlist_head *rhltable_lookup(
697 struct rhltable *hlt, const void *key,
698 const struct rhashtable_params params)
699{
700 struct rhash_head *he = __rhashtable_lookup(&hlt->ht, key, params);
701
702 return he ? container_of(he, struct rhlist_head, rhead) : NULL;
703}
704
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200705/* Internal function, please use rhashtable_insert_fast() instead. This
706 * function returns the existing element already in hashes in there is a clash,
707 * otherwise it returns an error via ERR_PTR().
708 */
709static inline void *__rhashtable_insert_fast(
Herbert Xu02fd97c2015-03-20 21:57:00 +1100710 struct rhashtable *ht, const void *key, struct rhash_head *obj,
Herbert Xuca268932016-09-19 19:00:09 +0800711 const struct rhashtable_params params, bool rhlist)
Herbert Xu02fd97c2015-03-20 21:57:00 +1100712{
713 struct rhashtable_compare_arg arg = {
714 .ht = ht,
715 .key = key,
716 };
Herbert Xuca268932016-09-19 19:00:09 +0800717 struct rhash_head __rcu **pprev;
718 struct bucket_table *tbl;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100719 struct rhash_head *head;
720 spinlock_t *lock;
Thomas Graf299e5c32015-03-24 14:18:17 +0100721 unsigned int hash;
Herbert Xuca268932016-09-19 19:00:09 +0800722 int elasticity;
723 void *data;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100724
725 rcu_read_lock();
726
727 tbl = rht_dereference_rcu(ht->tbl, ht);
Herbert Xuca268932016-09-19 19:00:09 +0800728 hash = rht_head_hashfn(ht, tbl, obj, params);
729 lock = rht_bucket_lock(tbl, hash);
730 spin_lock_bh(lock);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100731
Herbert Xuca268932016-09-19 19:00:09 +0800732 if (unlikely(rht_dereference_bucket(tbl->future_tbl, tbl, hash))) {
733slow_path:
Herbert Xub8244782015-03-24 00:50:26 +1100734 spin_unlock_bh(lock);
Herbert Xuca268932016-09-19 19:00:09 +0800735 rcu_read_unlock();
736 return rhashtable_insert_slow(ht, key, obj);
Herbert Xub8244782015-03-24 00:50:26 +1100737 }
738
Florian Westphal5f8ddea2017-04-16 02:55:09 +0200739 elasticity = RHT_ELASTICITY;
Herbert Xuda204202017-02-11 19:26:47 +0800740 pprev = rht_bucket_insert(ht, tbl, hash);
741 data = ERR_PTR(-ENOMEM);
742 if (!pprev)
743 goto out;
744
745 rht_for_each_continue(head, *pprev, tbl, hash) {
Herbert Xuca268932016-09-19 19:00:09 +0800746 struct rhlist_head *plist;
747 struct rhlist_head *list;
Herbert Xu3cf92222015-12-03 20:41:29 +0800748
Herbert Xuca268932016-09-19 19:00:09 +0800749 elasticity--;
750 if (!key ||
751 (params.obj_cmpfn ?
752 params.obj_cmpfn(&arg, rht_obj(ht, head)) :
753 rhashtable_compare(&arg, rht_obj(ht, head))))
754 continue;
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200755
Herbert Xuca268932016-09-19 19:00:09 +0800756 data = rht_obj(ht, head);
757
758 if (!rhlist)
759 goto out;
760
761
762 list = container_of(obj, struct rhlist_head, rhead);
763 plist = container_of(head, struct rhlist_head, rhead);
764
765 RCU_INIT_POINTER(list->next, plist);
766 head = rht_dereference_bucket(head->next, tbl, hash);
767 RCU_INIT_POINTER(list->rhead.next, head);
768 rcu_assign_pointer(*pprev, obj);
769
770 goto good;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100771 }
772
Herbert Xuca268932016-09-19 19:00:09 +0800773 if (elasticity <= 0)
774 goto slow_path;
775
776 data = ERR_PTR(-E2BIG);
Herbert Xu07ee0722015-05-15 11:30:47 +0800777 if (unlikely(rht_grow_above_max(ht, tbl)))
778 goto out;
779
Herbert Xuca268932016-09-19 19:00:09 +0800780 if (unlikely(rht_grow_above_100(ht, tbl)))
781 goto slow_path;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100782
Herbert Xuda204202017-02-11 19:26:47 +0800783 head = rht_dereference_bucket(*pprev, tbl, hash);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100784
785 RCU_INIT_POINTER(obj->next, head);
Herbert Xuca268932016-09-19 19:00:09 +0800786 if (rhlist) {
787 struct rhlist_head *list;
788
789 list = container_of(obj, struct rhlist_head, rhead);
790 RCU_INIT_POINTER(list->next, NULL);
791 }
Herbert Xu02fd97c2015-03-20 21:57:00 +1100792
Herbert Xuda204202017-02-11 19:26:47 +0800793 rcu_assign_pointer(*pprev, obj);
Herbert Xu02fd97c2015-03-20 21:57:00 +1100794
795 atomic_inc(&ht->nelems);
796 if (rht_grow_above_75(ht, tbl))
797 schedule_work(&ht->run_work);
798
Herbert Xuca268932016-09-19 19:00:09 +0800799good:
800 data = NULL;
801
Herbert Xu02fd97c2015-03-20 21:57:00 +1100802out:
803 spin_unlock_bh(lock);
804 rcu_read_unlock();
805
Herbert Xuca268932016-09-19 19:00:09 +0800806 return data;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100807}
808
809/**
810 * rhashtable_insert_fast - insert object into hash table
811 * @ht: hash table
812 * @obj: pointer to hash head inside object
813 * @params: hash table parameters
814 *
815 * Will take a per bucket spinlock to protect against mutual mutations
816 * on the same bucket. Multiple insertions may occur in parallel unless
817 * they map to the same bucket lock.
818 *
819 * It is safe to call this function from atomic context.
820 *
821 * Will trigger an automatic deferred table resizing if the size grows
822 * beyond the watermark indicated by grow_decision() which can be passed
823 * to rhashtable_init().
824 */
825static inline int rhashtable_insert_fast(
826 struct rhashtable *ht, struct rhash_head *obj,
827 const struct rhashtable_params params)
828{
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200829 void *ret;
830
Herbert Xuca268932016-09-19 19:00:09 +0800831 ret = __rhashtable_insert_fast(ht, NULL, obj, params, false);
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200832 if (IS_ERR(ret))
833 return PTR_ERR(ret);
834
835 return ret == NULL ? 0 : -EEXIST;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100836}
837
838/**
Herbert Xuca268932016-09-19 19:00:09 +0800839 * rhltable_insert_key - insert object into hash list table
840 * @hlt: hash list table
841 * @key: the pointer to the key
842 * @list: pointer to hash list head inside object
843 * @params: hash table parameters
844 *
845 * Will take a per bucket spinlock to protect against mutual mutations
846 * on the same bucket. Multiple insertions may occur in parallel unless
847 * they map to the same bucket lock.
848 *
849 * It is safe to call this function from atomic context.
850 *
851 * Will trigger an automatic deferred table resizing if the size grows
852 * beyond the watermark indicated by grow_decision() which can be passed
853 * to rhashtable_init().
854 */
855static inline int rhltable_insert_key(
856 struct rhltable *hlt, const void *key, struct rhlist_head *list,
857 const struct rhashtable_params params)
858{
859 return PTR_ERR(__rhashtable_insert_fast(&hlt->ht, key, &list->rhead,
860 params, true));
861}
862
863/**
864 * rhltable_insert - insert object into hash list table
865 * @hlt: hash list table
866 * @list: pointer to hash list head inside object
867 * @params: hash table parameters
868 *
869 * Will take a per bucket spinlock to protect against mutual mutations
870 * on the same bucket. Multiple insertions may occur in parallel unless
871 * they map to the same bucket lock.
872 *
873 * It is safe to call this function from atomic context.
874 *
875 * Will trigger an automatic deferred table resizing if the size grows
876 * beyond the watermark indicated by grow_decision() which can be passed
877 * to rhashtable_init().
878 */
879static inline int rhltable_insert(
880 struct rhltable *hlt, struct rhlist_head *list,
881 const struct rhashtable_params params)
882{
883 const char *key = rht_obj(&hlt->ht, &list->rhead);
884
885 key += params.key_offset;
886
887 return rhltable_insert_key(hlt, key, list, params);
888}
889
890/**
Herbert Xu02fd97c2015-03-20 21:57:00 +1100891 * rhashtable_lookup_insert_fast - lookup and insert object into hash table
892 * @ht: hash table
893 * @obj: pointer to hash head inside object
894 * @params: hash table parameters
895 *
896 * Locks down the bucket chain in both the old and new table if a resize
897 * is in progress to ensure that writers can't remove from the old table
898 * and can't insert to the new table during the atomic operation of search
899 * and insertion. Searches for duplicates in both the old and new table if
900 * a resize is in progress.
901 *
902 * This lookup function may only be used for fixed key hash table (key_len
903 * parameter set). It will BUG() if used inappropriately.
904 *
905 * It is safe to call this function from atomic context.
906 *
907 * Will trigger an automatic deferred table resizing if the size grows
908 * beyond the watermark indicated by grow_decision() which can be passed
909 * to rhashtable_init().
910 */
911static inline int rhashtable_lookup_insert_fast(
912 struct rhashtable *ht, struct rhash_head *obj,
913 const struct rhashtable_params params)
914{
915 const char *key = rht_obj(ht, obj);
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200916 void *ret;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100917
918 BUG_ON(ht->p.obj_hashfn);
919
Herbert Xuca268932016-09-19 19:00:09 +0800920 ret = __rhashtable_insert_fast(ht, key + ht->p.key_offset, obj, params,
921 false);
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200922 if (IS_ERR(ret))
923 return PTR_ERR(ret);
924
925 return ret == NULL ? 0 : -EEXIST;
Herbert Xu02fd97c2015-03-20 21:57:00 +1100926}
927
928/**
Andreas Gruenbacherf9fe1c12017-03-18 00:36:15 +0100929 * rhashtable_lookup_get_insert_fast - lookup and insert object into hash table
930 * @ht: hash table
931 * @obj: pointer to hash head inside object
932 * @params: hash table parameters
933 *
934 * Just like rhashtable_lookup_insert_fast(), but this function returns the
935 * object if it exists, NULL if it did not and the insertion was successful,
936 * and an ERR_PTR otherwise.
937 */
938static inline void *rhashtable_lookup_get_insert_fast(
939 struct rhashtable *ht, struct rhash_head *obj,
940 const struct rhashtable_params params)
941{
942 const char *key = rht_obj(ht, obj);
943
944 BUG_ON(ht->p.obj_hashfn);
945
946 return __rhashtable_insert_fast(ht, key + ht->p.key_offset, obj, params,
947 false);
948}
949
950/**
Herbert Xu02fd97c2015-03-20 21:57:00 +1100951 * rhashtable_lookup_insert_key - search and insert object to hash table
952 * with explicit key
953 * @ht: hash table
954 * @key: key
955 * @obj: pointer to hash head inside object
956 * @params: hash table parameters
957 *
958 * Locks down the bucket chain in both the old and new table if a resize
959 * is in progress to ensure that writers can't remove from the old table
960 * and can't insert to the new table during the atomic operation of search
961 * and insertion. Searches for duplicates in both the old and new table if
962 * a resize is in progress.
963 *
964 * Lookups may occur in parallel with hashtable mutations and resizing.
965 *
966 * Will trigger an automatic deferred table resizing if the size grows
967 * beyond the watermark indicated by grow_decision() which can be passed
968 * to rhashtable_init().
969 *
970 * Returns zero on success.
971 */
972static inline int rhashtable_lookup_insert_key(
973 struct rhashtable *ht, const void *key, struct rhash_head *obj,
974 const struct rhashtable_params params)
975{
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200976 void *ret;
977
978 BUG_ON(!ht->p.obj_hashfn || !key);
979
Herbert Xuca268932016-09-19 19:00:09 +0800980 ret = __rhashtable_insert_fast(ht, key, obj, params, false);
Pablo Neira Ayuso5ca8cc52016-08-24 12:31:31 +0200981 if (IS_ERR(ret))
982 return PTR_ERR(ret);
983
984 return ret == NULL ? 0 : -EEXIST;
985}
986
987/**
988 * rhashtable_lookup_get_insert_key - lookup and insert object into hash table
989 * @ht: hash table
990 * @obj: pointer to hash head inside object
991 * @params: hash table parameters
992 * @data: pointer to element data already in hashes
993 *
994 * Just like rhashtable_lookup_insert_key(), but this function returns the
995 * object if it exists, NULL if it does not and the insertion was successful,
996 * and an ERR_PTR otherwise.
997 */
998static inline void *rhashtable_lookup_get_insert_key(
999 struct rhashtable *ht, const void *key, struct rhash_head *obj,
1000 const struct rhashtable_params params)
1001{
Herbert Xu02fd97c2015-03-20 21:57:00 +11001002 BUG_ON(!ht->p.obj_hashfn || !key);
1003
Herbert Xuca268932016-09-19 19:00:09 +08001004 return __rhashtable_insert_fast(ht, key, obj, params, false);
Herbert Xu02fd97c2015-03-20 21:57:00 +11001005}
1006
Thomas Grafac833bd2015-03-24 14:18:18 +01001007/* Internal function, please use rhashtable_remove_fast() instead */
Herbert Xuca268932016-09-19 19:00:09 +08001008static inline int __rhashtable_remove_fast_one(
Herbert Xu02fd97c2015-03-20 21:57:00 +11001009 struct rhashtable *ht, struct bucket_table *tbl,
Herbert Xuca268932016-09-19 19:00:09 +08001010 struct rhash_head *obj, const struct rhashtable_params params,
1011 bool rhlist)
Herbert Xu02fd97c2015-03-20 21:57:00 +11001012{
1013 struct rhash_head __rcu **pprev;
1014 struct rhash_head *he;
1015 spinlock_t * lock;
Thomas Graf299e5c32015-03-24 14:18:17 +01001016 unsigned int hash;
Herbert Xu02fd97c2015-03-20 21:57:00 +11001017 int err = -ENOENT;
1018
1019 hash = rht_head_hashfn(ht, tbl, obj, params);
1020 lock = rht_bucket_lock(tbl, hash);
1021
1022 spin_lock_bh(lock);
1023
Herbert Xuda204202017-02-11 19:26:47 +08001024 pprev = rht_bucket_var(tbl, hash);
1025 rht_for_each_continue(he, *pprev, tbl, hash) {
Herbert Xuca268932016-09-19 19:00:09 +08001026 struct rhlist_head *list;
1027
1028 list = container_of(he, struct rhlist_head, rhead);
1029
Herbert Xu02fd97c2015-03-20 21:57:00 +11001030 if (he != obj) {
Herbert Xuca268932016-09-19 19:00:09 +08001031 struct rhlist_head __rcu **lpprev;
1032
Herbert Xu02fd97c2015-03-20 21:57:00 +11001033 pprev = &he->next;
Herbert Xuca268932016-09-19 19:00:09 +08001034
1035 if (!rhlist)
1036 continue;
1037
1038 do {
1039 lpprev = &list->next;
1040 list = rht_dereference_bucket(list->next,
1041 tbl, hash);
1042 } while (list && obj != &list->rhead);
1043
1044 if (!list)
1045 continue;
1046
1047 list = rht_dereference_bucket(list->next, tbl, hash);
1048 RCU_INIT_POINTER(*lpprev, list);
1049 err = 0;
1050 break;
Herbert Xu02fd97c2015-03-20 21:57:00 +11001051 }
1052
Herbert Xuca268932016-09-19 19:00:09 +08001053 obj = rht_dereference_bucket(obj->next, tbl, hash);
1054 err = 1;
1055
1056 if (rhlist) {
1057 list = rht_dereference_bucket(list->next, tbl, hash);
1058 if (list) {
1059 RCU_INIT_POINTER(list->rhead.next, obj);
1060 obj = &list->rhead;
1061 err = 0;
1062 }
1063 }
1064
1065 rcu_assign_pointer(*pprev, obj);
Herbert Xu02fd97c2015-03-20 21:57:00 +11001066 break;
1067 }
1068
1069 spin_unlock_bh(lock);
1070
Herbert Xuca268932016-09-19 19:00:09 +08001071 if (err > 0) {
1072 atomic_dec(&ht->nelems);
1073 if (unlikely(ht->p.automatic_shrinking &&
1074 rht_shrink_below_30(ht, tbl)))
1075 schedule_work(&ht->run_work);
1076 err = 0;
1077 }
1078
1079 return err;
1080}
1081
1082/* Internal function, please use rhashtable_remove_fast() instead */
1083static inline int __rhashtable_remove_fast(
1084 struct rhashtable *ht, struct rhash_head *obj,
1085 const struct rhashtable_params params, bool rhlist)
1086{
1087 struct bucket_table *tbl;
1088 int err;
1089
1090 rcu_read_lock();
1091
1092 tbl = rht_dereference_rcu(ht->tbl, ht);
1093
1094 /* Because we have already taken (and released) the bucket
1095 * lock in old_tbl, if we find that future_tbl is not yet
1096 * visible then that guarantees the entry to still be in
1097 * the old tbl if it exists.
1098 */
1099 while ((err = __rhashtable_remove_fast_one(ht, tbl, obj, params,
1100 rhlist)) &&
1101 (tbl = rht_dereference_rcu(tbl->future_tbl, ht)))
1102 ;
1103
1104 rcu_read_unlock();
1105
Herbert Xu02fd97c2015-03-20 21:57:00 +11001106 return err;
1107}
1108
1109/**
1110 * rhashtable_remove_fast - remove object from hash table
1111 * @ht: hash table
1112 * @obj: pointer to hash head inside object
1113 * @params: hash table parameters
1114 *
1115 * Since the hash chain is single linked, the removal operation needs to
1116 * walk the bucket chain upon removal. The removal operation is thus
1117 * considerable slow if the hash table is not correctly sized.
1118 *
1119 * Will automatically shrink the table via rhashtable_expand() if the
1120 * shrink_decision function specified at rhashtable_init() returns true.
1121 *
1122 * Returns zero on success, -ENOENT if the entry could not be found.
1123 */
1124static inline int rhashtable_remove_fast(
1125 struct rhashtable *ht, struct rhash_head *obj,
1126 const struct rhashtable_params params)
1127{
Herbert Xuca268932016-09-19 19:00:09 +08001128 return __rhashtable_remove_fast(ht, obj, params, false);
1129}
Herbert Xu02fd97c2015-03-20 21:57:00 +11001130
Herbert Xuca268932016-09-19 19:00:09 +08001131/**
1132 * rhltable_remove - remove object from hash list table
1133 * @hlt: hash list table
1134 * @list: pointer to hash list head inside object
1135 * @params: hash table parameters
1136 *
1137 * Since the hash chain is single linked, the removal operation needs to
1138 * walk the bucket chain upon removal. The removal operation is thus
1139 * considerable slow if the hash table is not correctly sized.
1140 *
1141 * Will automatically shrink the table via rhashtable_expand() if the
1142 * shrink_decision function specified at rhashtable_init() returns true.
1143 *
1144 * Returns zero on success, -ENOENT if the entry could not be found.
1145 */
1146static inline int rhltable_remove(
1147 struct rhltable *hlt, struct rhlist_head *list,
1148 const struct rhashtable_params params)
1149{
1150 return __rhashtable_remove_fast(&hlt->ht, &list->rhead, params, true);
Herbert Xu02fd97c2015-03-20 21:57:00 +11001151}
1152
Tom Herbert3502cad2015-12-15 15:41:36 -08001153/* Internal function, please use rhashtable_replace_fast() instead */
1154static inline int __rhashtable_replace_fast(
1155 struct rhashtable *ht, struct bucket_table *tbl,
1156 struct rhash_head *obj_old, struct rhash_head *obj_new,
1157 const struct rhashtable_params params)
1158{
1159 struct rhash_head __rcu **pprev;
1160 struct rhash_head *he;
1161 spinlock_t *lock;
1162 unsigned int hash;
1163 int err = -ENOENT;
1164
1165 /* Minimally, the old and new objects must have same hash
1166 * (which should mean identifiers are the same).
1167 */
1168 hash = rht_head_hashfn(ht, tbl, obj_old, params);
1169 if (hash != rht_head_hashfn(ht, tbl, obj_new, params))
1170 return -EINVAL;
1171
1172 lock = rht_bucket_lock(tbl, hash);
1173
1174 spin_lock_bh(lock);
1175
Herbert Xuda204202017-02-11 19:26:47 +08001176 pprev = rht_bucket_var(tbl, hash);
1177 rht_for_each_continue(he, *pprev, tbl, hash) {
Tom Herbert3502cad2015-12-15 15:41:36 -08001178 if (he != obj_old) {
1179 pprev = &he->next;
1180 continue;
1181 }
1182
1183 rcu_assign_pointer(obj_new->next, obj_old->next);
1184 rcu_assign_pointer(*pprev, obj_new);
1185 err = 0;
1186 break;
1187 }
1188
1189 spin_unlock_bh(lock);
1190
1191 return err;
1192}
1193
1194/**
1195 * rhashtable_replace_fast - replace an object in hash table
1196 * @ht: hash table
1197 * @obj_old: pointer to hash head inside object being replaced
1198 * @obj_new: pointer to hash head inside object which is new
1199 * @params: hash table parameters
1200 *
1201 * Replacing an object doesn't affect the number of elements in the hash table
1202 * or bucket, so we don't need to worry about shrinking or expanding the
1203 * table here.
1204 *
1205 * Returns zero on success, -ENOENT if the entry could not be found,
1206 * -EINVAL if hash is not the same for the old and new objects.
1207 */
1208static inline int rhashtable_replace_fast(
1209 struct rhashtable *ht, struct rhash_head *obj_old,
1210 struct rhash_head *obj_new,
1211 const struct rhashtable_params params)
1212{
1213 struct bucket_table *tbl;
1214 int err;
1215
1216 rcu_read_lock();
1217
1218 tbl = rht_dereference_rcu(ht->tbl, ht);
1219
1220 /* Because we have already taken (and released) the bucket
1221 * lock in old_tbl, if we find that future_tbl is not yet
1222 * visible then that guarantees the entry to still be in
1223 * the old tbl if it exists.
1224 */
1225 while ((err = __rhashtable_replace_fast(ht, tbl, obj_old,
1226 obj_new, params)) &&
1227 (tbl = rht_dereference_rcu(tbl->future_tbl, ht)))
1228 ;
1229
1230 rcu_read_unlock();
1231
1232 return err;
1233}
1234
Herbert Xu246779d2016-08-18 16:50:56 +08001235/* Obsolete function, do not use in new code. */
1236static inline int rhashtable_walk_init(struct rhashtable *ht,
1237 struct rhashtable_iter *iter, gfp_t gfp)
1238{
1239 rhashtable_walk_enter(ht, iter);
1240 return 0;
1241}
1242
Herbert Xuca268932016-09-19 19:00:09 +08001243/**
1244 * rhltable_walk_enter - Initialise an iterator
1245 * @hlt: Table to walk over
1246 * @iter: Hash table Iterator
1247 *
1248 * This function prepares a hash table walk.
1249 *
1250 * Note that if you restart a walk after rhashtable_walk_stop you
1251 * may see the same object twice. Also, you may miss objects if
1252 * there are removals in between rhashtable_walk_stop and the next
1253 * call to rhashtable_walk_start.
1254 *
1255 * For a completely stable walk you should construct your own data
1256 * structure outside the hash table.
1257 *
1258 * This function may sleep so you must not call it from interrupt
1259 * context or with spin locks held.
1260 *
1261 * You must call rhashtable_walk_exit after this function returns.
1262 */
1263static inline void rhltable_walk_enter(struct rhltable *hlt,
1264 struct rhashtable_iter *iter)
1265{
1266 return rhashtable_walk_enter(&hlt->ht, iter);
1267}
1268
1269/**
1270 * rhltable_free_and_destroy - free elements and destroy hash list table
1271 * @hlt: the hash list table to destroy
1272 * @free_fn: callback to release resources of element
1273 * @arg: pointer passed to free_fn
1274 *
1275 * See documentation for rhashtable_free_and_destroy.
1276 */
1277static inline void rhltable_free_and_destroy(struct rhltable *hlt,
1278 void (*free_fn)(void *ptr,
1279 void *arg),
1280 void *arg)
1281{
1282 return rhashtable_free_and_destroy(&hlt->ht, free_fn, arg);
1283}
1284
1285static inline void rhltable_destroy(struct rhltable *hlt)
1286{
1287 return rhltable_free_and_destroy(hlt, NULL, NULL);
1288}
1289
Thomas Graf7e1e7762014-08-02 11:47:44 +02001290#endif /* _LINUX_RHASHTABLE_H */