2 * Resizable, Scalable, Concurrent Hash Table
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
11 * Code partially derived from nft_hash
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.
18 #ifndef _LINUX_RHASHTABLE_H
19 #define _LINUX_RHASHTABLE_H
21 #include <linux/rculist.h>
24 struct rhash_head __rcu *next;
27 #define INIT_HASH_HEAD(ptr) ((ptr)->next = NULL)
31 struct rhash_head __rcu *buckets[];
34 typedef u32 (*rht_hashfn_t)(const void *data, u32 len, u32 seed);
35 typedef u32 (*rht_obj_hashfn_t)(const void *data, u32 seed);
40 * struct rhashtable_params - Hash table construction parameters
41 * @nelem_hint: Hint on number of elements, should be 75% of desired size
42 * @key_len: Length of key
43 * @key_offset: Offset of key in struct to be hashed
44 * @head_offset: Offset of rhash_head in struct to be hashed
45 * @hash_rnd: Seed to use while hashing
46 * @max_shift: Maximum number of shifts while expanding
47 * @hashfn: Function to hash key
48 * @obj_hashfn: Function to hash object
49 * @grow_decision: If defined, may return true if table should expand
50 * @shrink_decision: If defined, may return true if table should shrink
51 * @mutex_is_held: Must return true if protecting mutex is held
53 struct rhashtable_params {
61 rht_obj_hashfn_t obj_hashfn;
62 bool (*grow_decision)(const struct rhashtable *ht,
64 bool (*shrink_decision)(const struct rhashtable *ht,
66 int (*mutex_is_held)(void);
70 * struct rhashtable - Hash table handle
72 * @nelems: Number of elements in table
73 * @shift: Current size (1 << shift)
74 * @p: Configuration parameters
77 struct bucket_table __rcu *tbl;
80 struct rhashtable_params p;
83 #ifdef CONFIG_PROVE_LOCKING
84 int lockdep_rht_mutex_is_held(const struct rhashtable *ht);
86 static inline int lockdep_rht_mutex_is_held(const struct rhashtable *ht)
90 #endif /* CONFIG_PROVE_LOCKING */
92 int rhashtable_init(struct rhashtable *ht, struct rhashtable_params *params);
94 u32 rhashtable_hashfn(const struct rhashtable *ht, const void *key, u32 len);
95 u32 rhashtable_obj_hashfn(const struct rhashtable *ht, void *ptr);
97 void rhashtable_insert(struct rhashtable *ht, struct rhash_head *node, gfp_t);
98 bool rhashtable_remove(struct rhashtable *ht, struct rhash_head *node, gfp_t);
99 void rhashtable_remove_pprev(struct rhashtable *ht, struct rhash_head *obj,
100 struct rhash_head __rcu **pprev, gfp_t flags);
102 bool rht_grow_above_75(const struct rhashtable *ht, size_t new_size);
103 bool rht_shrink_below_30(const struct rhashtable *ht, size_t new_size);
105 int rhashtable_expand(struct rhashtable *ht, gfp_t flags);
106 int rhashtable_shrink(struct rhashtable *ht, gfp_t flags);
108 void *rhashtable_lookup(const struct rhashtable *ht, const void *key);
109 void *rhashtable_lookup_compare(const struct rhashtable *ht, u32 hash,
110 bool (*compare)(void *, void *), void *arg);
112 void rhashtable_destroy(const struct rhashtable *ht);
114 #define rht_dereference(p, ht) \
115 rcu_dereference_protected(p, lockdep_rht_mutex_is_held(ht))
117 #define rht_dereference_rcu(p, ht) \
118 rcu_dereference_check(p, lockdep_rht_mutex_is_held(ht))
120 #define rht_entry(ptr, type, member) container_of(ptr, type, member)
121 #define rht_entry_safe(ptr, type, member) \
123 typeof(ptr) __ptr = (ptr); \
124 __ptr ? rht_entry(__ptr, type, member) : NULL; \
127 #define rht_next_entry_safe(pos, ht, member) \
129 pos ? rht_entry_safe(rht_dereference((pos)->member.next, ht), \
130 typeof(*(pos)), member) : NULL; \
134 * rht_for_each - iterate over hash chain
135 * @pos: &struct rhash_head to use as a loop cursor.
136 * @head: head of the hash chain (struct rhash_head *)
137 * @ht: pointer to your struct rhashtable
139 #define rht_for_each(pos, head, ht) \
140 for (pos = rht_dereference(head, ht); \
142 pos = rht_dereference((pos)->next, ht))
145 * rht_for_each_entry - iterate over hash chain of given type
146 * @pos: type * to use as a loop cursor.
147 * @head: head of the hash chain (struct rhash_head *)
148 * @ht: pointer to your struct rhashtable
149 * @member: name of the rhash_head within the hashable struct.
151 #define rht_for_each_entry(pos, head, ht, member) \
152 for (pos = rht_entry_safe(rht_dereference(head, ht), \
153 typeof(*(pos)), member); \
155 pos = rht_next_entry_safe(pos, ht, member))
158 * rht_for_each_entry_safe - safely iterate over hash chain of given type
159 * @pos: type * to use as a loop cursor.
160 * @n: type * to use for temporary next object storage
161 * @head: head of the hash chain (struct rhash_head *)
162 * @ht: pointer to your struct rhashtable
163 * @member: name of the rhash_head within the hashable struct.
165 * This hash chain list-traversal primitive allows for the looped code to
166 * remove the loop cursor from the list.
168 #define rht_for_each_entry_safe(pos, n, head, ht, member) \
169 for (pos = rht_entry_safe(rht_dereference(head, ht), \
170 typeof(*(pos)), member), \
171 n = rht_next_entry_safe(pos, ht, member); \
174 n = rht_next_entry_safe(pos, ht, member))
177 * rht_for_each_rcu - iterate over rcu hash chain
178 * @pos: &struct rhash_head to use as a loop cursor.
179 * @head: head of the hash chain (struct rhash_head *)
180 * @ht: pointer to your struct rhashtable
182 * This hash chain list-traversal primitive may safely run concurrently with
183 * the _rcu fkht mutation primitives such as rht_insert() as long as the
184 * traversal is guarded by rcu_read_lock().
186 #define rht_for_each_rcu(pos, head, ht) \
187 for (pos = rht_dereference_rcu(head, ht); \
189 pos = rht_dereference_rcu((pos)->next, ht))
192 * rht_for_each_entry_rcu - iterate over rcu hash chain of given type
193 * @pos: type * to use as a loop cursor.
194 * @head: head of the hash chain (struct rhash_head *)
195 * @member: name of the rhash_head within the hashable struct.
197 * This hash chain list-traversal primitive may safely run concurrently with
198 * the _rcu fkht mutation primitives such as rht_insert() as long as the
199 * traversal is guarded by rcu_read_lock().
201 #define rht_for_each_entry_rcu(pos, head, member) \
202 for (pos = rht_entry_safe(rcu_dereference_raw(head), \
203 typeof(*(pos)), member); \
205 pos = rht_entry_safe(rcu_dereference_raw((pos)->member.next), \
206 typeof(*(pos)), member))
208 #endif /* _LINUX_RHASHTABLE_H */