rhashtable: Fix sleeping inside RCU critical section in walk_stop
[linux-2.6-block.git] / include / linux / rhashtable.h
CommitLineData
7e1e7763
TG
1/*
2 * Resizable, Scalable, Concurrent Hash Table
3 *
dc0ee268 4 * Copyright (c) 2015 Herbert Xu <herbert@gondor.apana.org.au>
7e1e7763
TG
5 * Copyright (c) 2014 Thomas Graf <tgraf@suug.ch>
6 * Copyright (c) 2008-2014 Patrick McHardy <kaber@trash.net>
7 *
7e1e7763 8 * Code partially derived from nft_hash
dc0ee268
HX
9 * Rewritten with rehash code from br_multicast plus single list
10 * pointer as suggested by Josh Triplett
7e1e7763
TG
11 *
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
f2dba9c6 20#include <linux/compiler.h>
6626af69 21#include <linux/errno.h>
31ccde2d 22#include <linux/jhash.h>
f89bd6f8 23#include <linux/list_nulls.h>
97defe1e 24#include <linux/workqueue.h>
86b35b64 25#include <linux/mutex.h>
02fd97c3 26#include <linux/rcupdate.h>
7e1e7763 27
f89bd6f8
TG
28/*
29 * The end of the chain is marked with a special nulls marks which has
30 * the following format:
31 *
32 * +-------+-----------------------------------------------------+-+
33 * | Base | Hash |1|
34 * +-------+-----------------------------------------------------+-+
35 *
36 * Base (4 bits) : Reserved to distinguish between multiple tables.
37 * Specified via &struct rhashtable_params.nulls_base.
38 * Hash (27 bits): Full hash (unmasked) of first element added to bucket
39 * 1 (1 bit) : Nulls marker (always set)
40 *
41 * The remaining bits of the next pointer remain unused for now.
42 */
43#define RHT_BASE_BITS 4
44#define RHT_HASH_BITS 27
45#define RHT_BASE_SHIFT RHT_HASH_BITS
46
02fd97c3
HX
47/* Base bits plus 1 bit for nulls marker */
48#define RHT_HASH_RESERVED_SPACE (RHT_BASE_BITS + 1)
49
7e1e7763 50struct rhash_head {
5300fdcb 51 struct rhash_head __rcu *next;
7e1e7763
TG
52};
53
97defe1e
TG
54/**
55 * struct bucket_table - Table of hash buckets
56 * @size: Number of hash buckets
63d512d0 57 * @rehash: Current bucket being rehashed
988dfbd7 58 * @hash_rnd: Random seed to fold into hash
97defe1e
TG
59 * @locks_mask: Mask to apply before accessing locks[]
60 * @locks: Array of spinlocks protecting individual buckets
eddee5ba 61 * @walkers: List of active walkers
9d901bc0 62 * @rcu: RCU structure for freeing the table
c4db8848 63 * @future_tbl: Table under construction during rehashing
97defe1e
TG
64 * @buckets: size * hash buckets
65 */
7e1e7763 66struct bucket_table {
63d512d0
HX
67 unsigned int size;
68 unsigned int rehash;
988dfbd7 69 u32 hash_rnd;
b9ebafbe
ED
70 unsigned int locks_mask;
71 spinlock_t *locks;
eddee5ba 72 struct list_head walkers;
9d901bc0 73 struct rcu_head rcu;
b9ebafbe 74
c4db8848
HX
75 struct bucket_table __rcu *future_tbl;
76
b9ebafbe 77 struct rhash_head __rcu *buckets[] ____cacheline_aligned_in_smp;
7e1e7763
TG
78};
79
02fd97c3
HX
80/**
81 * struct rhashtable_compare_arg - Key for the function rhashtable_compare
82 * @ht: Hash table
83 * @key: Key to compare against
84 */
85struct rhashtable_compare_arg {
86 struct rhashtable *ht;
87 const void *key;
88};
89
7e1e7763
TG
90typedef u32 (*rht_hashfn_t)(const void *data, u32 len, u32 seed);
91typedef u32 (*rht_obj_hashfn_t)(const void *data, u32 seed);
02fd97c3
HX
92typedef int (*rht_obj_cmpfn_t)(struct rhashtable_compare_arg *arg,
93 const void *obj);
7e1e7763
TG
94
95struct rhashtable;
96
97/**
98 * struct rhashtable_params - Hash table construction parameters
99 * @nelem_hint: Hint on number of elements, should be 75% of desired size
100 * @key_len: Length of key
101 * @key_offset: Offset of key in struct to be hashed
102 * @head_offset: Offset of rhash_head in struct to be hashed
c2e213cf
HX
103 * @max_size: Maximum size while expanding
104 * @min_size: Minimum size while shrinking
f89bd6f8 105 * @nulls_base: Base value to generate nulls marker
ccd57b1b 106 * @insecure_elasticity: Set to true to disable chain length checks
97defe1e 107 * @locks_mul: Number of bucket locks to allocate per cpu (default: 128)
31ccde2d 108 * @hashfn: Hash function (default: jhash2 if !(key_len % 4), or jhash)
7e1e7763 109 * @obj_hashfn: Function to hash object
02fd97c3 110 * @obj_cmpfn: Function to compare key with object
7e1e7763
TG
111 */
112struct rhashtable_params {
113 size_t nelem_hint;
114 size_t key_len;
115 size_t key_offset;
116 size_t head_offset;
c2e213cf
HX
117 unsigned int max_size;
118 unsigned int min_size;
f89bd6f8 119 u32 nulls_base;
ccd57b1b 120 bool insecure_elasticity;
97defe1e 121 size_t locks_mul;
7e1e7763
TG
122 rht_hashfn_t hashfn;
123 rht_obj_hashfn_t obj_hashfn;
02fd97c3 124 rht_obj_cmpfn_t obj_cmpfn;
7e1e7763
TG
125};
126
127/**
128 * struct rhashtable - Hash table handle
129 * @tbl: Bucket table
130 * @nelems: Number of elements in table
31ccde2d 131 * @key_len: Key length for hashfn
ccd57b1b 132 * @elasticity: Maximum chain length before rehash
7e1e7763 133 * @p: Configuration parameters
97defe1e
TG
134 * @run_work: Deferred worker to expand/shrink asynchronously
135 * @mutex: Mutex to protect current/future table swapping
ba7c95ea 136 * @lock: Spin lock to protect walker list
97defe1e 137 * @being_destroyed: True if table is set up for destruction
7e1e7763
TG
138 */
139struct rhashtable {
140 struct bucket_table __rcu *tbl;
97defe1e 141 atomic_t nelems;
a5b6846f 142 bool being_destroyed;
31ccde2d 143 unsigned int key_len;
ccd57b1b 144 unsigned int elasticity;
7e1e7763 145 struct rhashtable_params p;
57699a40 146 struct work_struct run_work;
97defe1e 147 struct mutex mutex;
ba7c95ea 148 spinlock_t lock;
7e1e7763
TG
149};
150
f2dba9c6
HX
151/**
152 * struct rhashtable_walker - Hash table walker
153 * @list: List entry on list of walkers
eddee5ba 154 * @tbl: The table that we were walking over
f2dba9c6
HX
155 */
156struct rhashtable_walker {
157 struct list_head list;
eddee5ba 158 struct bucket_table *tbl;
f2dba9c6
HX
159};
160
161/**
162 * struct rhashtable_iter - Hash table iterator, fits into netlink cb
163 * @ht: Table to iterate through
164 * @p: Current pointer
165 * @walker: Associated rhashtable walker
166 * @slot: Current slot
167 * @skip: Number of entries to skip in slot
168 */
169struct rhashtable_iter {
170 struct rhashtable *ht;
171 struct rhash_head *p;
172 struct rhashtable_walker *walker;
173 unsigned int slot;
174 unsigned int skip;
175};
176
f89bd6f8
TG
177static inline unsigned long rht_marker(const struct rhashtable *ht, u32 hash)
178{
179 return NULLS_MARKER(ht->p.nulls_base + hash);
180}
181
182#define INIT_RHT_NULLS_HEAD(ptr, ht, hash) \
183 ((ptr) = (typeof(ptr)) rht_marker(ht, hash))
184
185static inline bool rht_is_a_nulls(const struct rhash_head *ptr)
186{
187 return ((unsigned long) ptr & 1);
188}
189
190static inline unsigned long rht_get_nulls_value(const struct rhash_head *ptr)
191{
192 return ((unsigned long) ptr) >> 1;
193}
194
02fd97c3
HX
195static inline void *rht_obj(const struct rhashtable *ht,
196 const struct rhash_head *he)
197{
198 return (char *)he - ht->p.head_offset;
199}
200
201static inline unsigned int rht_bucket_index(const struct bucket_table *tbl,
202 unsigned int hash)
203{
204 return (hash >> RHT_HASH_RESERVED_SPACE) & (tbl->size - 1);
205}
206
207static inline unsigned int rht_key_hashfn(
208 struct rhashtable *ht, const struct bucket_table *tbl,
209 const void *key, const struct rhashtable_params params)
210{
31ccde2d 211 unsigned hash;
de91b25c 212
31ccde2d
HX
213 /* params must be equal to ht->p if it isn't constant. */
214 if (!__builtin_constant_p(params.key_len))
215 hash = ht->p.hashfn(key, ht->key_len, tbl->hash_rnd);
216 else if (params.key_len) {
217 unsigned key_len = params.key_len;
218
219 if (params.hashfn)
220 hash = params.hashfn(key, key_len, tbl->hash_rnd);
221 else if (key_len & (sizeof(u32) - 1))
222 hash = jhash(key, key_len, tbl->hash_rnd);
223 else
224 hash = jhash2(key, key_len / sizeof(u32),
225 tbl->hash_rnd);
226 } else {
227 unsigned key_len = ht->p.key_len;
228
229 if (params.hashfn)
230 hash = params.hashfn(key, key_len, tbl->hash_rnd);
231 else
232 hash = jhash(key, key_len, tbl->hash_rnd);
233 }
234
235 return rht_bucket_index(tbl, hash);
02fd97c3
HX
236}
237
238static inline unsigned int rht_head_hashfn(
239 struct rhashtable *ht, const struct bucket_table *tbl,
240 const struct rhash_head *he, const struct rhashtable_params params)
241{
242 const char *ptr = rht_obj(ht, he);
243
244 return likely(params.obj_hashfn) ?
245 rht_bucket_index(tbl, params.obj_hashfn(ptr, tbl->hash_rnd)) :
246 rht_key_hashfn(ht, tbl, ptr + params.key_offset, params);
247}
248
249/**
250 * rht_grow_above_75 - returns true if nelems > 0.75 * table-size
251 * @ht: hash table
252 * @tbl: current table
253 */
254static inline bool rht_grow_above_75(const struct rhashtable *ht,
255 const struct bucket_table *tbl)
256{
257 /* Expand table when exceeding 75% load */
258 return atomic_read(&ht->nelems) > (tbl->size / 4 * 3) &&
259 (!ht->p.max_size || tbl->size < ht->p.max_size);
260}
261
262/**
263 * rht_shrink_below_30 - returns true if nelems < 0.3 * table-size
264 * @ht: hash table
265 * @tbl: current table
266 */
267static inline bool rht_shrink_below_30(const struct rhashtable *ht,
268 const struct bucket_table *tbl)
269{
270 /* Shrink table beneath 30% load */
271 return atomic_read(&ht->nelems) < (tbl->size * 3 / 10) &&
272 tbl->size > ht->p.min_size;
273}
274
ccd57b1b
HX
275/**
276 * rht_grow_above_100 - returns true if nelems > table-size
277 * @ht: hash table
278 * @tbl: current table
279 */
280static inline bool rht_grow_above_100(const struct rhashtable *ht,
281 const struct bucket_table *tbl)
282{
283 return atomic_read(&ht->nelems) > tbl->size;
284}
285
02fd97c3
HX
286/* The bucket lock is selected based on the hash and protects mutations
287 * on a group of hash buckets.
288 *
289 * A maximum of tbl->size/2 bucket locks is allocated. This ensures that
290 * a single lock always covers both buckets which may both contains
291 * entries which link to the same bucket of the old table during resizing.
292 * This allows to simplify the locking as locking the bucket in both
293 * tables during resize always guarantee protection.
294 *
295 * IMPORTANT: When holding the bucket lock of both the old and new table
296 * during expansions and shrinking, the old bucket lock must always be
297 * acquired first.
298 */
299static inline spinlock_t *rht_bucket_lock(const struct bucket_table *tbl,
300 unsigned int hash)
301{
302 return &tbl->locks[hash & tbl->locks_mask];
303}
304
7e1e7763 305#ifdef CONFIG_PROVE_LOCKING
97defe1e 306int lockdep_rht_mutex_is_held(struct rhashtable *ht);
88d6ed15 307int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash);
7e1e7763 308#else
97defe1e 309static inline int lockdep_rht_mutex_is_held(struct rhashtable *ht)
7e1e7763
TG
310{
311 return 1;
312}
88d6ed15
TG
313
314static inline int lockdep_rht_bucket_is_held(const struct bucket_table *tbl,
315 u32 hash)
316{
317 return 1;
318}
7e1e7763
TG
319#endif /* CONFIG_PROVE_LOCKING */
320
488fb86e
HX
321int rhashtable_init(struct rhashtable *ht,
322 const struct rhashtable_params *params);
7e1e7763 323
02fd97c3
HX
324int rhashtable_insert_slow(struct rhashtable *ht, const void *key,
325 struct rhash_head *obj,
326 struct bucket_table *old_tbl);
ccd57b1b 327int rhashtable_insert_rehash(struct rhashtable *ht);
7e1e7763 328
f2dba9c6
HX
329int rhashtable_walk_init(struct rhashtable *ht, struct rhashtable_iter *iter);
330void rhashtable_walk_exit(struct rhashtable_iter *iter);
331int rhashtable_walk_start(struct rhashtable_iter *iter) __acquires(RCU);
332void *rhashtable_walk_next(struct rhashtable_iter *iter);
333void rhashtable_walk_stop(struct rhashtable_iter *iter) __releases(RCU);
334
97defe1e 335void rhashtable_destroy(struct rhashtable *ht);
7e1e7763
TG
336
337#define rht_dereference(p, ht) \
338 rcu_dereference_protected(p, lockdep_rht_mutex_is_held(ht))
339
340#define rht_dereference_rcu(p, ht) \
341 rcu_dereference_check(p, lockdep_rht_mutex_is_held(ht))
342
88d6ed15
TG
343#define rht_dereference_bucket(p, tbl, hash) \
344 rcu_dereference_protected(p, lockdep_rht_bucket_is_held(tbl, hash))
7e1e7763 345
88d6ed15
TG
346#define rht_dereference_bucket_rcu(p, tbl, hash) \
347 rcu_dereference_check(p, lockdep_rht_bucket_is_held(tbl, hash))
348
349#define rht_entry(tpos, pos, member) \
350 ({ tpos = container_of(pos, typeof(*tpos), member); 1; })
7e1e7763
TG
351
352/**
88d6ed15
TG
353 * rht_for_each_continue - continue iterating over hash chain
354 * @pos: the &struct rhash_head to use as a loop cursor.
355 * @head: the previous &struct rhash_head to continue from
356 * @tbl: the &struct bucket_table
357 * @hash: the hash value / bucket index
7e1e7763 358 */
88d6ed15
TG
359#define rht_for_each_continue(pos, head, tbl, hash) \
360 for (pos = rht_dereference_bucket(head, tbl, hash); \
f89bd6f8 361 !rht_is_a_nulls(pos); \
88d6ed15
TG
362 pos = rht_dereference_bucket((pos)->next, tbl, hash))
363
364/**
365 * rht_for_each - iterate over hash chain
366 * @pos: the &struct rhash_head to use as a loop cursor.
367 * @tbl: the &struct bucket_table
368 * @hash: the hash value / bucket index
369 */
370#define rht_for_each(pos, tbl, hash) \
371 rht_for_each_continue(pos, (tbl)->buckets[hash], tbl, hash)
372
373/**
374 * rht_for_each_entry_continue - continue iterating over hash chain
375 * @tpos: the type * to use as a loop cursor.
376 * @pos: the &struct rhash_head to use as a loop cursor.
377 * @head: the previous &struct rhash_head to continue from
378 * @tbl: the &struct bucket_table
379 * @hash: the hash value / bucket index
380 * @member: name of the &struct rhash_head within the hashable struct.
381 */
382#define rht_for_each_entry_continue(tpos, pos, head, tbl, hash, member) \
383 for (pos = rht_dereference_bucket(head, tbl, hash); \
f89bd6f8 384 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \
88d6ed15 385 pos = rht_dereference_bucket((pos)->next, tbl, hash))
7e1e7763
TG
386
387/**
388 * rht_for_each_entry - iterate over hash chain of given type
88d6ed15
TG
389 * @tpos: the type * to use as a loop cursor.
390 * @pos: the &struct rhash_head to use as a loop cursor.
391 * @tbl: the &struct bucket_table
392 * @hash: the hash value / bucket index
393 * @member: name of the &struct rhash_head within the hashable struct.
7e1e7763 394 */
88d6ed15
TG
395#define rht_for_each_entry(tpos, pos, tbl, hash, member) \
396 rht_for_each_entry_continue(tpos, pos, (tbl)->buckets[hash], \
397 tbl, hash, member)
7e1e7763
TG
398
399/**
400 * rht_for_each_entry_safe - safely iterate over hash chain of given type
88d6ed15
TG
401 * @tpos: the type * to use as a loop cursor.
402 * @pos: the &struct rhash_head to use as a loop cursor.
403 * @next: the &struct rhash_head to use as next in loop cursor.
404 * @tbl: the &struct bucket_table
405 * @hash: the hash value / bucket index
406 * @member: name of the &struct rhash_head within the hashable struct.
7e1e7763
TG
407 *
408 * This hash chain list-traversal primitive allows for the looped code to
409 * remove the loop cursor from the list.
410 */
88d6ed15
TG
411#define rht_for_each_entry_safe(tpos, pos, next, tbl, hash, member) \
412 for (pos = rht_dereference_bucket((tbl)->buckets[hash], tbl, hash), \
f89bd6f8
TG
413 next = !rht_is_a_nulls(pos) ? \
414 rht_dereference_bucket(pos->next, tbl, hash) : NULL; \
415 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \
607954b0
PM
416 pos = next, \
417 next = !rht_is_a_nulls(pos) ? \
418 rht_dereference_bucket(pos->next, tbl, hash) : NULL)
88d6ed15
TG
419
420/**
421 * rht_for_each_rcu_continue - continue iterating over rcu hash chain
422 * @pos: the &struct rhash_head to use as a loop cursor.
423 * @head: the previous &struct rhash_head to continue from
424 * @tbl: the &struct bucket_table
425 * @hash: the hash value / bucket index
426 *
427 * This hash chain list-traversal primitive may safely run concurrently with
428 * the _rcu mutation primitives such as rhashtable_insert() as long as the
429 * traversal is guarded by rcu_read_lock().
430 */
431#define rht_for_each_rcu_continue(pos, head, tbl, hash) \
432 for (({barrier(); }), \
433 pos = rht_dereference_bucket_rcu(head, tbl, hash); \
f89bd6f8 434 !rht_is_a_nulls(pos); \
88d6ed15 435 pos = rcu_dereference_raw(pos->next))
7e1e7763
TG
436
437/**
438 * rht_for_each_rcu - iterate over rcu hash chain
88d6ed15
TG
439 * @pos: the &struct rhash_head to use as a loop cursor.
440 * @tbl: the &struct bucket_table
441 * @hash: the hash value / bucket index
7e1e7763
TG
442 *
443 * This hash chain list-traversal primitive may safely run concurrently with
88d6ed15 444 * the _rcu mutation primitives such as rhashtable_insert() as long as the
7e1e7763
TG
445 * traversal is guarded by rcu_read_lock().
446 */
88d6ed15
TG
447#define rht_for_each_rcu(pos, tbl, hash) \
448 rht_for_each_rcu_continue(pos, (tbl)->buckets[hash], tbl, hash)
449
450/**
451 * rht_for_each_entry_rcu_continue - continue iterating over rcu hash chain
452 * @tpos: the type * to use as a loop cursor.
453 * @pos: the &struct rhash_head to use as a loop cursor.
454 * @head: the previous &struct rhash_head to continue from
455 * @tbl: the &struct bucket_table
456 * @hash: the hash value / bucket index
457 * @member: name of the &struct rhash_head within the hashable struct.
458 *
459 * This hash chain list-traversal primitive may safely run concurrently with
460 * the _rcu mutation primitives such as rhashtable_insert() as long as the
461 * traversal is guarded by rcu_read_lock().
462 */
463#define rht_for_each_entry_rcu_continue(tpos, pos, head, tbl, hash, member) \
464 for (({barrier(); }), \
465 pos = rht_dereference_bucket_rcu(head, tbl, hash); \
f89bd6f8 466 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \
88d6ed15 467 pos = rht_dereference_bucket_rcu(pos->next, tbl, hash))
7e1e7763
TG
468
469/**
470 * rht_for_each_entry_rcu - iterate over rcu hash chain of given type
88d6ed15
TG
471 * @tpos: the type * to use as a loop cursor.
472 * @pos: the &struct rhash_head to use as a loop cursor.
473 * @tbl: the &struct bucket_table
474 * @hash: the hash value / bucket index
475 * @member: name of the &struct rhash_head within the hashable struct.
7e1e7763
TG
476 *
477 * This hash chain list-traversal primitive may safely run concurrently with
88d6ed15 478 * the _rcu mutation primitives such as rhashtable_insert() as long as the
7e1e7763
TG
479 * traversal is guarded by rcu_read_lock().
480 */
88d6ed15
TG
481#define rht_for_each_entry_rcu(tpos, pos, tbl, hash, member) \
482 rht_for_each_entry_rcu_continue(tpos, pos, (tbl)->buckets[hash],\
483 tbl, hash, member)
7e1e7763 484
02fd97c3
HX
485static inline int rhashtable_compare(struct rhashtable_compare_arg *arg,
486 const void *obj)
487{
488 struct rhashtable *ht = arg->ht;
489 const char *ptr = obj;
490
491 return memcmp(ptr + ht->p.key_offset, arg->key, ht->p.key_len);
492}
493
494/**
495 * rhashtable_lookup_fast - search hash table, inlined version
496 * @ht: hash table
497 * @key: the pointer to the key
498 * @params: hash table parameters
499 *
500 * Computes the hash value for the key and traverses the bucket chain looking
501 * for a entry with an identical key. The first matching entry is returned.
502 *
503 * Returns the first entry on which the compare function returned true.
504 */
505static inline void *rhashtable_lookup_fast(
506 struct rhashtable *ht, const void *key,
507 const struct rhashtable_params params)
508{
509 struct rhashtable_compare_arg arg = {
510 .ht = ht,
511 .key = key,
512 };
513 const struct bucket_table *tbl;
514 struct rhash_head *he;
515 unsigned hash;
516
517 rcu_read_lock();
518
519 tbl = rht_dereference_rcu(ht->tbl, ht);
520restart:
521 hash = rht_key_hashfn(ht, tbl, key, params);
522 rht_for_each_rcu(he, tbl, hash) {
523 if (params.obj_cmpfn ?
524 params.obj_cmpfn(&arg, rht_obj(ht, he)) :
525 rhashtable_compare(&arg, rht_obj(ht, he)))
526 continue;
527 rcu_read_unlock();
528 return rht_obj(ht, he);
529 }
530
531 /* Ensure we see any new tables. */
532 smp_rmb();
533
534 tbl = rht_dereference_rcu(tbl->future_tbl, ht);
535 if (unlikely(tbl))
536 goto restart;
537 rcu_read_unlock();
538
539 return NULL;
540}
541
542static inline int __rhashtable_insert_fast(
543 struct rhashtable *ht, const void *key, struct rhash_head *obj,
544 const struct rhashtable_params params)
545{
546 struct rhashtable_compare_arg arg = {
547 .ht = ht,
548 .key = key,
549 };
02fd97c3
HX
550 struct bucket_table *tbl, *new_tbl;
551 struct rhash_head *head;
552 spinlock_t *lock;
ccd57b1b 553 unsigned elasticity;
02fd97c3 554 unsigned hash;
ccd57b1b 555 int err;
02fd97c3 556
ccd57b1b 557restart:
02fd97c3
HX
558 rcu_read_lock();
559
560 tbl = rht_dereference_rcu(ht->tbl, ht);
02fd97c3 561
b824478b
HX
562 /* All insertions must grab the oldest table containing
563 * the hashed bucket that is yet to be rehashed.
02fd97c3 564 */
b824478b
HX
565 for (;;) {
566 hash = rht_head_hashfn(ht, tbl, obj, params);
567 lock = rht_bucket_lock(tbl, hash);
568 spin_lock_bh(lock);
569
570 if (tbl->rehash <= hash)
571 break;
572
573 spin_unlock_bh(lock);
574 tbl = rht_dereference_rcu(tbl->future_tbl, ht);
575 }
576
02fd97c3
HX
577 new_tbl = rht_dereference_rcu(tbl->future_tbl, ht);
578 if (unlikely(new_tbl)) {
579 err = rhashtable_insert_slow(ht, key, obj, new_tbl);
ccd57b1b
HX
580 if (err == -EAGAIN)
581 goto slow_path;
02fd97c3
HX
582 goto out;
583 }
584
ccd57b1b
HX
585 if (unlikely(rht_grow_above_100(ht, tbl))) {
586slow_path:
587 spin_unlock_bh(lock);
588 rcu_read_unlock();
589 err = rhashtable_insert_rehash(ht);
590 if (err)
591 return err;
592
593 goto restart;
594 }
02fd97c3 595
ccd57b1b
HX
596 err = -EEXIST;
597 elasticity = ht->elasticity;
02fd97c3 598 rht_for_each(head, tbl, hash) {
ccd57b1b
HX
599 if (key &&
600 unlikely(!(params.obj_cmpfn ?
02fd97c3
HX
601 params.obj_cmpfn(&arg, rht_obj(ht, head)) :
602 rhashtable_compare(&arg, rht_obj(ht, head)))))
603 goto out;
ccd57b1b
HX
604 if (!--elasticity)
605 goto slow_path;
02fd97c3
HX
606 }
607
02fd97c3
HX
608 err = 0;
609
610 head = rht_dereference_bucket(tbl->buckets[hash], tbl, hash);
611
612 RCU_INIT_POINTER(obj->next, head);
613
614 rcu_assign_pointer(tbl->buckets[hash], obj);
615
616 atomic_inc(&ht->nelems);
617 if (rht_grow_above_75(ht, tbl))
618 schedule_work(&ht->run_work);
619
620out:
621 spin_unlock_bh(lock);
622 rcu_read_unlock();
623
624 return err;
625}
626
627/**
628 * rhashtable_insert_fast - insert object into hash table
629 * @ht: hash table
630 * @obj: pointer to hash head inside object
631 * @params: hash table parameters
632 *
633 * Will take a per bucket spinlock to protect against mutual mutations
634 * on the same bucket. Multiple insertions may occur in parallel unless
635 * they map to the same bucket lock.
636 *
637 * It is safe to call this function from atomic context.
638 *
639 * Will trigger an automatic deferred table resizing if the size grows
640 * beyond the watermark indicated by grow_decision() which can be passed
641 * to rhashtable_init().
642 */
643static inline int rhashtable_insert_fast(
644 struct rhashtable *ht, struct rhash_head *obj,
645 const struct rhashtable_params params)
646{
647 return __rhashtable_insert_fast(ht, NULL, obj, params);
648}
649
650/**
651 * rhashtable_lookup_insert_fast - lookup and insert object into hash table
652 * @ht: hash table
653 * @obj: pointer to hash head inside object
654 * @params: hash table parameters
655 *
656 * Locks down the bucket chain in both the old and new table if a resize
657 * is in progress to ensure that writers can't remove from the old table
658 * and can't insert to the new table during the atomic operation of search
659 * and insertion. Searches for duplicates in both the old and new table if
660 * a resize is in progress.
661 *
662 * This lookup function may only be used for fixed key hash table (key_len
663 * parameter set). It will BUG() if used inappropriately.
664 *
665 * It is safe to call this function from atomic context.
666 *
667 * Will trigger an automatic deferred table resizing if the size grows
668 * beyond the watermark indicated by grow_decision() which can be passed
669 * to rhashtable_init().
670 */
671static inline int rhashtable_lookup_insert_fast(
672 struct rhashtable *ht, struct rhash_head *obj,
673 const struct rhashtable_params params)
674{
675 const char *key = rht_obj(ht, obj);
676
677 BUG_ON(ht->p.obj_hashfn);
678
679 return __rhashtable_insert_fast(ht, key + ht->p.key_offset, obj,
680 params);
681}
682
683/**
684 * rhashtable_lookup_insert_key - search and insert object to hash table
685 * with explicit key
686 * @ht: hash table
687 * @key: key
688 * @obj: pointer to hash head inside object
689 * @params: hash table parameters
690 *
691 * Locks down the bucket chain in both the old and new table if a resize
692 * is in progress to ensure that writers can't remove from the old table
693 * and can't insert to the new table during the atomic operation of search
694 * and insertion. Searches for duplicates in both the old and new table if
695 * a resize is in progress.
696 *
697 * Lookups may occur in parallel with hashtable mutations and resizing.
698 *
699 * Will trigger an automatic deferred table resizing if the size grows
700 * beyond the watermark indicated by grow_decision() which can be passed
701 * to rhashtable_init().
702 *
703 * Returns zero on success.
704 */
705static inline int rhashtable_lookup_insert_key(
706 struct rhashtable *ht, const void *key, struct rhash_head *obj,
707 const struct rhashtable_params params)
708{
709 BUG_ON(!ht->p.obj_hashfn || !key);
710
711 return __rhashtable_insert_fast(ht, key, obj, params);
712}
713
714static inline int __rhashtable_remove_fast(
715 struct rhashtable *ht, struct bucket_table *tbl,
716 struct rhash_head *obj, const struct rhashtable_params params)
717{
718 struct rhash_head __rcu **pprev;
719 struct rhash_head *he;
720 spinlock_t * lock;
721 unsigned hash;
722 int err = -ENOENT;
723
724 hash = rht_head_hashfn(ht, tbl, obj, params);
725 lock = rht_bucket_lock(tbl, hash);
726
727 spin_lock_bh(lock);
728
729 pprev = &tbl->buckets[hash];
730 rht_for_each(he, tbl, hash) {
731 if (he != obj) {
732 pprev = &he->next;
733 continue;
734 }
735
736 rcu_assign_pointer(*pprev, obj->next);
737 err = 0;
738 break;
739 }
740
741 spin_unlock_bh(lock);
742
743 return err;
744}
745
746/**
747 * rhashtable_remove_fast - remove object from hash table
748 * @ht: hash table
749 * @obj: pointer to hash head inside object
750 * @params: hash table parameters
751 *
752 * Since the hash chain is single linked, the removal operation needs to
753 * walk the bucket chain upon removal. The removal operation is thus
754 * considerable slow if the hash table is not correctly sized.
755 *
756 * Will automatically shrink the table via rhashtable_expand() if the
757 * shrink_decision function specified at rhashtable_init() returns true.
758 *
759 * Returns zero on success, -ENOENT if the entry could not be found.
760 */
761static inline int rhashtable_remove_fast(
762 struct rhashtable *ht, struct rhash_head *obj,
763 const struct rhashtable_params params)
764{
765 struct bucket_table *tbl;
766 int err;
767
768 rcu_read_lock();
769
770 tbl = rht_dereference_rcu(ht->tbl, ht);
771
772 /* Because we have already taken (and released) the bucket
773 * lock in old_tbl, if we find that future_tbl is not yet
774 * visible then that guarantees the entry to still be in
775 * the old tbl if it exists.
776 */
777 while ((err = __rhashtable_remove_fast(ht, tbl, obj, params)) &&
778 (tbl = rht_dereference_rcu(tbl->future_tbl, ht)))
779 ;
780
781 if (err)
782 goto out;
783
784 atomic_dec(&ht->nelems);
785 if (rht_shrink_below_30(ht, tbl))
786 schedule_work(&ht->run_work);
787
788out:
789 rcu_read_unlock();
790
791 return err;
792}
793
7e1e7763 794#endif /* _LINUX_RHASHTABLE_H */