blob: 7b9bd77ed684fe1b2f3fdeda3d84babc40c41570 [file] [log] [blame]
Thomas Graf7e1e7762014-08-02 11:47:44 +02001/*
2 * Resizable, Scalable, Concurrent Hash Table
3 *
4 * Copyright (c) 2014 Thomas Graf <tgraf@suug.ch>
5 * Copyright (c) 2008-2014 Patrick McHardy <kaber@trash.net>
6 *
7 * Based on the following paper by Josh Triplett, Paul E. McKenney
8 * and Jonathan Walpole:
9 * https://www.usenix.org/legacy/event/atc11/tech/final_files/Triplett.pdf
10 *
11 * Code partially derived from nft_hash
12 *
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
Thomas Graff89bd6f2015-01-02 23:00:21 +010021#include <linux/list_nulls.h>
Thomas Graf97defe12015-01-02 23:00:20 +010022#include <linux/workqueue.h>
Ying Xue86b35b62015-01-04 15:25:09 +080023#include <linux/mutex.h>
Thomas Graf7e1e7762014-08-02 11:47:44 +020024
Thomas Graff89bd6f2015-01-02 23:00:21 +010025/*
26 * The end of the chain is marked with a special nulls marks which has
27 * the following format:
28 *
29 * +-------+-----------------------------------------------------+-+
30 * | Base | Hash |1|
31 * +-------+-----------------------------------------------------+-+
32 *
33 * Base (4 bits) : Reserved to distinguish between multiple tables.
34 * Specified via &struct rhashtable_params.nulls_base.
35 * Hash (27 bits): Full hash (unmasked) of first element added to bucket
36 * 1 (1 bit) : Nulls marker (always set)
37 *
38 * The remaining bits of the next pointer remain unused for now.
39 */
40#define RHT_BASE_BITS 4
41#define RHT_HASH_BITS 27
42#define RHT_BASE_SHIFT RHT_HASH_BITS
43
Thomas Graf7e1e7762014-08-02 11:47:44 +020044struct rhash_head {
Thomas Graf5300fdc2014-08-13 16:38:29 +020045 struct rhash_head __rcu *next;
Thomas Graf7e1e7762014-08-02 11:47:44 +020046};
47
Thomas Graf97defe12015-01-02 23:00:20 +010048/**
49 * struct bucket_table - Table of hash buckets
50 * @size: Number of hash buckets
51 * @locks_mask: Mask to apply before accessing locks[]
52 * @locks: Array of spinlocks protecting individual buckets
53 * @buckets: size * hash buckets
54 */
Thomas Graf7e1e7762014-08-02 11:47:44 +020055struct bucket_table {
56 size_t size;
Thomas Graf97defe12015-01-02 23:00:20 +010057 unsigned int locks_mask;
58 spinlock_t *locks;
Thomas Graf7e1e7762014-08-02 11:47:44 +020059 struct rhash_head __rcu *buckets[];
60};
61
62typedef u32 (*rht_hashfn_t)(const void *data, u32 len, u32 seed);
63typedef u32 (*rht_obj_hashfn_t)(const void *data, u32 seed);
64
65struct rhashtable;
66
67/**
68 * struct rhashtable_params - Hash table construction parameters
69 * @nelem_hint: Hint on number of elements, should be 75% of desired size
70 * @key_len: Length of key
71 * @key_offset: Offset of key in struct to be hashed
72 * @head_offset: Offset of rhash_head in struct to be hashed
73 * @hash_rnd: Seed to use while hashing
74 * @max_shift: Maximum number of shifts while expanding
Ying Xue94000172014-09-03 09:22:36 +080075 * @min_shift: Minimum number of shifts while shrinking
Thomas Graff89bd6f2015-01-02 23:00:21 +010076 * @nulls_base: Base value to generate nulls marker
Thomas Graf97defe12015-01-02 23:00:20 +010077 * @locks_mul: Number of bucket locks to allocate per cpu (default: 128)
Thomas Graf7e1e7762014-08-02 11:47:44 +020078 * @hashfn: Function to hash key
79 * @obj_hashfn: Function to hash object
80 * @grow_decision: If defined, may return true if table should expand
81 * @shrink_decision: If defined, may return true if table should shrink
Thomas Graf7e1e7762014-08-02 11:47:44 +020082 */
83struct rhashtable_params {
84 size_t nelem_hint;
85 size_t key_len;
86 size_t key_offset;
87 size_t head_offset;
88 u32 hash_rnd;
89 size_t max_shift;
Ying Xue94000172014-09-03 09:22:36 +080090 size_t min_shift;
Thomas Graff89bd6f2015-01-02 23:00:21 +010091 u32 nulls_base;
Thomas Graf97defe12015-01-02 23:00:20 +010092 size_t locks_mul;
Thomas Graf7e1e7762014-08-02 11:47:44 +020093 rht_hashfn_t hashfn;
94 rht_obj_hashfn_t obj_hashfn;
95 bool (*grow_decision)(const struct rhashtable *ht,
96 size_t new_size);
97 bool (*shrink_decision)(const struct rhashtable *ht,
98 size_t new_size);
Thomas Graf7e1e7762014-08-02 11:47:44 +020099};
100
101/**
102 * struct rhashtable - Hash table handle
103 * @tbl: Bucket table
Thomas Graf97defe12015-01-02 23:00:20 +0100104 * @future_tbl: Table under construction during expansion/shrinking
Thomas Graf7e1e7762014-08-02 11:47:44 +0200105 * @nelems: Number of elements in table
106 * @shift: Current size (1 << shift)
107 * @p: Configuration parameters
Thomas Graf97defe12015-01-02 23:00:20 +0100108 * @run_work: Deferred worker to expand/shrink asynchronously
109 * @mutex: Mutex to protect current/future table swapping
110 * @being_destroyed: True if table is set up for destruction
Thomas Graf7e1e7762014-08-02 11:47:44 +0200111 */
112struct rhashtable {
113 struct bucket_table __rcu *tbl;
Thomas Graf97defe12015-01-02 23:00:20 +0100114 struct bucket_table __rcu *future_tbl;
115 atomic_t nelems;
Ying Xuec0c09bf2015-01-07 13:41:56 +0800116 atomic_t shift;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200117 struct rhashtable_params p;
Thomas Graf97defe12015-01-02 23:00:20 +0100118 struct delayed_work run_work;
119 struct mutex mutex;
120 bool being_destroyed;
Thomas Graf7e1e7762014-08-02 11:47:44 +0200121};
122
Thomas Graff89bd6f2015-01-02 23:00:21 +0100123static inline unsigned long rht_marker(const struct rhashtable *ht, u32 hash)
124{
125 return NULLS_MARKER(ht->p.nulls_base + hash);
126}
127
128#define INIT_RHT_NULLS_HEAD(ptr, ht, hash) \
129 ((ptr) = (typeof(ptr)) rht_marker(ht, hash))
130
131static inline bool rht_is_a_nulls(const struct rhash_head *ptr)
132{
133 return ((unsigned long) ptr & 1);
134}
135
136static inline unsigned long rht_get_nulls_value(const struct rhash_head *ptr)
137{
138 return ((unsigned long) ptr) >> 1;
139}
140
Thomas Graf7e1e7762014-08-02 11:47:44 +0200141#ifdef CONFIG_PROVE_LOCKING
Thomas Graf97defe12015-01-02 23:00:20 +0100142int lockdep_rht_mutex_is_held(struct rhashtable *ht);
Thomas Graf88d6ed12015-01-02 23:00:16 +0100143int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200144#else
Thomas Graf97defe12015-01-02 23:00:20 +0100145static inline int lockdep_rht_mutex_is_held(struct rhashtable *ht)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200146{
147 return 1;
148}
Thomas Graf88d6ed12015-01-02 23:00:16 +0100149
150static inline int lockdep_rht_bucket_is_held(const struct bucket_table *tbl,
151 u32 hash)
152{
153 return 1;
154}
Thomas Graf7e1e7762014-08-02 11:47:44 +0200155#endif /* CONFIG_PROVE_LOCKING */
156
157int rhashtable_init(struct rhashtable *ht, struct rhashtable_params *params);
158
Thomas Graf6eba8222014-11-13 13:45:46 +0100159void rhashtable_insert(struct rhashtable *ht, struct rhash_head *node);
160bool rhashtable_remove(struct rhashtable *ht, struct rhash_head *node);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200161
162bool rht_grow_above_75(const struct rhashtable *ht, size_t new_size);
163bool rht_shrink_below_30(const struct rhashtable *ht, size_t new_size);
164
Thomas Graf6eba8222014-11-13 13:45:46 +0100165int rhashtable_expand(struct rhashtable *ht);
166int rhashtable_shrink(struct rhashtable *ht);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200167
Thomas Graf97defe12015-01-02 23:00:20 +0100168void *rhashtable_lookup(struct rhashtable *ht, const void *key);
169void *rhashtable_lookup_compare(struct rhashtable *ht, const void *key,
Thomas Graf7e1e7762014-08-02 11:47:44 +0200170 bool (*compare)(void *, void *), void *arg);
Ying Xue7a868d12015-01-12 14:52:22 +0800171
Ying Xuedb304852015-01-07 13:41:54 +0800172bool rhashtable_lookup_insert(struct rhashtable *ht, struct rhash_head *obj);
Ying Xue7a868d12015-01-12 14:52:22 +0800173bool rhashtable_lookup_compare_insert(struct rhashtable *ht,
174 struct rhash_head *obj,
175 bool (*compare)(void *, void *),
176 void *arg);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200177
Thomas Graf97defe12015-01-02 23:00:20 +0100178void rhashtable_destroy(struct rhashtable *ht);
Thomas Graf7e1e7762014-08-02 11:47:44 +0200179
180#define rht_dereference(p, ht) \
181 rcu_dereference_protected(p, lockdep_rht_mutex_is_held(ht))
182
183#define rht_dereference_rcu(p, ht) \
184 rcu_dereference_check(p, lockdep_rht_mutex_is_held(ht))
185
Thomas Graf88d6ed12015-01-02 23:00:16 +0100186#define rht_dereference_bucket(p, tbl, hash) \
187 rcu_dereference_protected(p, lockdep_rht_bucket_is_held(tbl, hash))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200188
Thomas Graf88d6ed12015-01-02 23:00:16 +0100189#define rht_dereference_bucket_rcu(p, tbl, hash) \
190 rcu_dereference_check(p, lockdep_rht_bucket_is_held(tbl, hash))
191
192#define rht_entry(tpos, pos, member) \
193 ({ tpos = container_of(pos, typeof(*tpos), member); 1; })
194
195/**
196 * rht_for_each_continue - continue iterating over hash chain
197 * @pos: the &struct rhash_head to use as a loop cursor.
198 * @head: the previous &struct rhash_head to continue from
199 * @tbl: the &struct bucket_table
200 * @hash: the hash value / bucket index
201 */
202#define rht_for_each_continue(pos, head, tbl, hash) \
203 for (pos = rht_dereference_bucket(head, tbl, hash); \
Thomas Graff89bd6f2015-01-02 23:00:21 +0100204 !rht_is_a_nulls(pos); \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100205 pos = rht_dereference_bucket((pos)->next, tbl, hash))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200206
207/**
208 * rht_for_each - iterate over hash chain
Thomas Graf88d6ed12015-01-02 23:00:16 +0100209 * @pos: the &struct rhash_head to use as a loop cursor.
210 * @tbl: the &struct bucket_table
211 * @hash: the hash value / bucket index
Thomas Graf7e1e7762014-08-02 11:47:44 +0200212 */
Thomas Graf88d6ed12015-01-02 23:00:16 +0100213#define rht_for_each(pos, tbl, hash) \
214 rht_for_each_continue(pos, (tbl)->buckets[hash], tbl, hash)
215
216/**
217 * rht_for_each_entry_continue - continue iterating over hash chain
218 * @tpos: the type * to use as a loop cursor.
219 * @pos: the &struct rhash_head to use as a loop cursor.
220 * @head: the previous &struct rhash_head to continue from
221 * @tbl: the &struct bucket_table
222 * @hash: the hash value / bucket index
223 * @member: name of the &struct rhash_head within the hashable struct.
224 */
225#define rht_for_each_entry_continue(tpos, pos, head, tbl, hash, member) \
226 for (pos = rht_dereference_bucket(head, tbl, hash); \
Thomas Graff89bd6f2015-01-02 23:00:21 +0100227 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100228 pos = rht_dereference_bucket((pos)->next, tbl, hash))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200229
230/**
231 * rht_for_each_entry - iterate over hash chain of given type
Thomas Graf88d6ed12015-01-02 23:00:16 +0100232 * @tpos: the type * to use as a loop cursor.
233 * @pos: the &struct rhash_head to use as a loop cursor.
234 * @tbl: the &struct bucket_table
235 * @hash: the hash value / bucket index
236 * @member: name of the &struct rhash_head within the hashable struct.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200237 */
Thomas Graf88d6ed12015-01-02 23:00:16 +0100238#define rht_for_each_entry(tpos, pos, tbl, hash, member) \
239 rht_for_each_entry_continue(tpos, pos, (tbl)->buckets[hash], \
240 tbl, hash, member)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200241
242/**
243 * rht_for_each_entry_safe - safely iterate over hash chain of given type
Thomas Graf88d6ed12015-01-02 23:00:16 +0100244 * @tpos: the type * to use as a loop cursor.
245 * @pos: the &struct rhash_head to use as a loop cursor.
246 * @next: the &struct rhash_head to use as next in loop cursor.
247 * @tbl: the &struct bucket_table
248 * @hash: the hash value / bucket index
249 * @member: name of the &struct rhash_head within the hashable struct.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200250 *
251 * This hash chain list-traversal primitive allows for the looped code to
252 * remove the loop cursor from the list.
253 */
Thomas Graf88d6ed12015-01-02 23:00:16 +0100254#define rht_for_each_entry_safe(tpos, pos, next, tbl, hash, member) \
255 for (pos = rht_dereference_bucket((tbl)->buckets[hash], tbl, hash), \
Thomas Graff89bd6f2015-01-02 23:00:21 +0100256 next = !rht_is_a_nulls(pos) ? \
257 rht_dereference_bucket(pos->next, tbl, hash) : NULL; \
258 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100259 pos = next)
260
261/**
262 * rht_for_each_rcu_continue - continue iterating over rcu hash chain
263 * @pos: the &struct rhash_head to use as a loop cursor.
264 * @head: the previous &struct rhash_head to continue from
265 * @tbl: the &struct bucket_table
266 * @hash: the hash value / bucket index
267 *
268 * This hash chain list-traversal primitive may safely run concurrently with
269 * the _rcu mutation primitives such as rhashtable_insert() as long as the
270 * traversal is guarded by rcu_read_lock().
271 */
272#define rht_for_each_rcu_continue(pos, head, tbl, hash) \
273 for (({barrier(); }), \
274 pos = rht_dereference_bucket_rcu(head, tbl, hash); \
Thomas Graff89bd6f2015-01-02 23:00:21 +0100275 !rht_is_a_nulls(pos); \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100276 pos = rcu_dereference_raw(pos->next))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200277
278/**
279 * rht_for_each_rcu - iterate over rcu hash chain
Thomas Graf88d6ed12015-01-02 23:00:16 +0100280 * @pos: the &struct rhash_head to use as a loop cursor.
281 * @tbl: the &struct bucket_table
282 * @hash: the hash value / bucket index
Thomas Graf7e1e7762014-08-02 11:47:44 +0200283 *
284 * This hash chain list-traversal primitive may safely run concurrently with
Thomas Graf88d6ed12015-01-02 23:00:16 +0100285 * the _rcu mutation primitives such as rhashtable_insert() as long as the
Thomas Graf7e1e7762014-08-02 11:47:44 +0200286 * traversal is guarded by rcu_read_lock().
287 */
Thomas Graf88d6ed12015-01-02 23:00:16 +0100288#define rht_for_each_rcu(pos, tbl, hash) \
289 rht_for_each_rcu_continue(pos, (tbl)->buckets[hash], tbl, hash)
290
291/**
292 * rht_for_each_entry_rcu_continue - continue iterating over rcu hash chain
293 * @tpos: the type * to use as a loop cursor.
294 * @pos: the &struct rhash_head to use as a loop cursor.
295 * @head: the previous &struct rhash_head to continue from
296 * @tbl: the &struct bucket_table
297 * @hash: the hash value / bucket index
298 * @member: name of the &struct rhash_head within the hashable struct.
299 *
300 * This hash chain list-traversal primitive may safely run concurrently with
301 * the _rcu mutation primitives such as rhashtable_insert() as long as the
302 * traversal is guarded by rcu_read_lock().
303 */
304#define rht_for_each_entry_rcu_continue(tpos, pos, head, tbl, hash, member) \
305 for (({barrier(); }), \
306 pos = rht_dereference_bucket_rcu(head, tbl, hash); \
Thomas Graff89bd6f2015-01-02 23:00:21 +0100307 (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member); \
Thomas Graf88d6ed12015-01-02 23:00:16 +0100308 pos = rht_dereference_bucket_rcu(pos->next, tbl, hash))
Thomas Graf7e1e7762014-08-02 11:47:44 +0200309
310/**
311 * rht_for_each_entry_rcu - iterate over rcu hash chain of given type
Thomas Graf88d6ed12015-01-02 23:00:16 +0100312 * @tpos: the type * to use as a loop cursor.
313 * @pos: the &struct rhash_head to use as a loop cursor.
314 * @tbl: the &struct bucket_table
315 * @hash: the hash value / bucket index
316 * @member: name of the &struct rhash_head within the hashable struct.
Thomas Graf7e1e7762014-08-02 11:47:44 +0200317 *
318 * This hash chain list-traversal primitive may safely run concurrently with
Thomas Graf88d6ed12015-01-02 23:00:16 +0100319 * the _rcu mutation primitives such as rhashtable_insert() as long as the
Thomas Graf7e1e7762014-08-02 11:47:44 +0200320 * traversal is guarded by rcu_read_lock().
321 */
Thomas Graf88d6ed12015-01-02 23:00:16 +0100322#define rht_for_each_entry_rcu(tpos, pos, tbl, hash, member) \
323 rht_for_each_entry_rcu_continue(tpos, pos, (tbl)->buckets[hash],\
324 tbl, hash, member)
Thomas Graf7e1e7762014-08-02 11:47:44 +0200325
326#endif /* _LINUX_RHASHTABLE_H */