rhashtable.h 12.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Resizable, Scalable, Concurrent Hash Table
 *
 * Copyright (c) 2014 Thomas Graf <tgraf@suug.ch>
 * Copyright (c) 2008-2014 Patrick McHardy <kaber@trash.net>
 *
 * Based on the following paper by Josh Triplett, Paul E. McKenney
 * and Jonathan Walpole:
 * https://www.usenix.org/legacy/event/atc11/tech/final_files/Triplett.pdf
 *
 * Code partially derived from nft_hash
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#ifndef _LINUX_RHASHTABLE_H
#define _LINUX_RHASHTABLE_H

21
#include <linux/compiler.h>
22
#include <linux/list_nulls.h>
23
#include <linux/workqueue.h>
Y
Ying Xue 已提交
24
#include <linux/mutex.h>
25

26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*
 * The end of the chain is marked with a special nulls marks which has
 * the following format:
 *
 * +-------+-----------------------------------------------------+-+
 * | Base  |                      Hash                           |1|
 * +-------+-----------------------------------------------------+-+
 *
 * Base (4 bits) : Reserved to distinguish between multiple tables.
 *                 Specified via &struct rhashtable_params.nulls_base.
 * Hash (27 bits): Full hash (unmasked) of first element added to bucket
 * 1 (1 bit)     : Nulls marker (always set)
 *
 * The remaining bits of the next pointer remain unused for now.
 */
#define RHT_BASE_BITS		4
#define RHT_HASH_BITS		27
#define RHT_BASE_SHIFT		RHT_HASH_BITS

45
struct rhash_head {
46
	struct rhash_head __rcu		*next;
47 48
};

49 50 51
/**
 * struct bucket_table - Table of hash buckets
 * @size: Number of hash buckets
52
 * @rehash: Current bucket being rehashed
53
 * @hash_rnd: Random seed to fold into hash
54 55
 * @locks_mask: Mask to apply before accessing locks[]
 * @locks: Array of spinlocks protecting individual buckets
56
 * @walkers: List of active walkers
57
 * @rcu: RCU structure for freeing the table
58
 * @future_tbl: Table under construction during rehashing
59 60
 * @buckets: size * hash buckets
 */
61
struct bucket_table {
62 63
	unsigned int		size;
	unsigned int		rehash;
64
	u32			hash_rnd;
65 66
	unsigned int		locks_mask;
	spinlock_t		*locks;
67
	struct list_head	walkers;
68
	struct rcu_head		rcu;
69

70 71
	struct bucket_table __rcu *future_tbl;

72
	struct rhash_head __rcu	*buckets[] ____cacheline_aligned_in_smp;
73 74 75 76 77 78 79 80 81 82 83 84 85 86
};

typedef u32 (*rht_hashfn_t)(const void *data, u32 len, u32 seed);
typedef u32 (*rht_obj_hashfn_t)(const void *data, u32 seed);

struct rhashtable;

/**
 * struct rhashtable_params - Hash table construction parameters
 * @nelem_hint: Hint on number of elements, should be 75% of desired size
 * @key_len: Length of key
 * @key_offset: Offset of key in struct to be hashed
 * @head_offset: Offset of rhash_head in struct to be hashed
 * @max_shift: Maximum number of shifts while expanding
87
 * @min_shift: Minimum number of shifts while shrinking
88 89
 * @max_size: Maximum size while expanding
 * @min_size: Minimum size while shrinking
90
 * @nulls_base: Base value to generate nulls marker
91
 * @locks_mul: Number of bucket locks to allocate per cpu (default: 128)
92 93 94 95 96 97 98 99 100
 * @hashfn: Function to hash key
 * @obj_hashfn: Function to hash object
 */
struct rhashtable_params {
	size_t			nelem_hint;
	size_t			key_len;
	size_t			key_offset;
	size_t			head_offset;
	size_t			max_shift;
101
	size_t			min_shift;
102 103
	unsigned int		max_size;
	unsigned int		min_size;
104
	u32			nulls_base;
105
	size_t			locks_mul;
106 107 108 109 110 111 112 113 114
	rht_hashfn_t		hashfn;
	rht_obj_hashfn_t	obj_hashfn;
};

/**
 * struct rhashtable - Hash table handle
 * @tbl: Bucket table
 * @nelems: Number of elements in table
 * @p: Configuration parameters
115 116 117
 * @run_work: Deferred worker to expand/shrink asynchronously
 * @mutex: Mutex to protect current/future table swapping
 * @being_destroyed: True if table is set up for destruction
118 119 120
 */
struct rhashtable {
	struct bucket_table __rcu	*tbl;
121
	atomic_t			nelems;
122
	bool                            being_destroyed;
123
	struct rhashtable_params	p;
124
	struct work_struct		run_work;
125
	struct mutex                    mutex;
126 127
};

128 129 130
/**
 * struct rhashtable_walker - Hash table walker
 * @list: List entry on list of walkers
131
 * @tbl: The table that we were walking over
132 133 134
 */
struct rhashtable_walker {
	struct list_head list;
135
	struct bucket_table *tbl;
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
};

/**
 * struct rhashtable_iter - Hash table iterator, fits into netlink cb
 * @ht: Table to iterate through
 * @p: Current pointer
 * @walker: Associated rhashtable walker
 * @slot: Current slot
 * @skip: Number of entries to skip in slot
 */
struct rhashtable_iter {
	struct rhashtable *ht;
	struct rhash_head *p;
	struct rhashtable_walker *walker;
	unsigned int slot;
	unsigned int skip;
};

154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
static inline unsigned long rht_marker(const struct rhashtable *ht, u32 hash)
{
	return NULLS_MARKER(ht->p.nulls_base + hash);
}

#define INIT_RHT_NULLS_HEAD(ptr, ht, hash) \
	((ptr) = (typeof(ptr)) rht_marker(ht, hash))

static inline bool rht_is_a_nulls(const struct rhash_head *ptr)
{
	return ((unsigned long) ptr & 1);
}

static inline unsigned long rht_get_nulls_value(const struct rhash_head *ptr)
{
	return ((unsigned long) ptr) >> 1;
}

172
#ifdef CONFIG_PROVE_LOCKING
173
int lockdep_rht_mutex_is_held(struct rhashtable *ht);
174
int lockdep_rht_bucket_is_held(const struct bucket_table *tbl, u32 hash);
175
#else
176
static inline int lockdep_rht_mutex_is_held(struct rhashtable *ht)
177 178 179
{
	return 1;
}
180 181 182 183 184 185

static inline int lockdep_rht_bucket_is_held(const struct bucket_table *tbl,
					     u32 hash)
{
	return 1;
}
186 187 188 189
#endif /* CONFIG_PROVE_LOCKING */

int rhashtable_init(struct rhashtable *ht, struct rhashtable_params *params);

190 191
void rhashtable_insert(struct rhashtable *ht, struct rhash_head *node);
bool rhashtable_remove(struct rhashtable *ht, struct rhash_head *node);
192

193 194
int rhashtable_expand(struct rhashtable *ht);
int rhashtable_shrink(struct rhashtable *ht);
195

196 197
void *rhashtable_lookup(struct rhashtable *ht, const void *key);
void *rhashtable_lookup_compare(struct rhashtable *ht, const void *key,
198
				bool (*compare)(void *, void *), void *arg);
199

200
bool rhashtable_lookup_insert(struct rhashtable *ht, struct rhash_head *obj);
201 202 203 204
bool rhashtable_lookup_compare_insert(struct rhashtable *ht,
				      struct rhash_head *obj,
				      bool (*compare)(void *, void *),
				      void *arg);
205

206 207 208 209 210 211
int rhashtable_walk_init(struct rhashtable *ht, struct rhashtable_iter *iter);
void rhashtable_walk_exit(struct rhashtable_iter *iter);
int rhashtable_walk_start(struct rhashtable_iter *iter) __acquires(RCU);
void *rhashtable_walk_next(struct rhashtable_iter *iter);
void rhashtable_walk_stop(struct rhashtable_iter *iter) __releases(RCU);

212
void rhashtable_destroy(struct rhashtable *ht);
213 214 215 216 217 218 219

#define rht_dereference(p, ht) \
	rcu_dereference_protected(p, lockdep_rht_mutex_is_held(ht))

#define rht_dereference_rcu(p, ht) \
	rcu_dereference_check(p, lockdep_rht_mutex_is_held(ht))

220 221
#define rht_dereference_bucket(p, tbl, hash) \
	rcu_dereference_protected(p, lockdep_rht_bucket_is_held(tbl, hash))
222

223 224 225 226 227
#define rht_dereference_bucket_rcu(p, tbl, hash) \
	rcu_dereference_check(p, lockdep_rht_bucket_is_held(tbl, hash))

#define rht_entry(tpos, pos, member) \
	({ tpos = container_of(pos, typeof(*tpos), member); 1; })
228 229

/**
230 231 232 233 234
 * rht_for_each_continue - continue iterating over hash chain
 * @pos:	the &struct rhash_head to use as a loop cursor.
 * @head:	the previous &struct rhash_head to continue from
 * @tbl:	the &struct bucket_table
 * @hash:	the hash value / bucket index
235
 */
236 237
#define rht_for_each_continue(pos, head, tbl, hash) \
	for (pos = rht_dereference_bucket(head, tbl, hash); \
238
	     !rht_is_a_nulls(pos); \
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
	     pos = rht_dereference_bucket((pos)->next, tbl, hash))

/**
 * rht_for_each - iterate over hash chain
 * @pos:	the &struct rhash_head to use as a loop cursor.
 * @tbl:	the &struct bucket_table
 * @hash:	the hash value / bucket index
 */
#define rht_for_each(pos, tbl, hash) \
	rht_for_each_continue(pos, (tbl)->buckets[hash], tbl, hash)

/**
 * rht_for_each_entry_continue - continue iterating over hash chain
 * @tpos:	the type * to use as a loop cursor.
 * @pos:	the &struct rhash_head to use as a loop cursor.
 * @head:	the previous &struct rhash_head to continue from
 * @tbl:	the &struct bucket_table
 * @hash:	the hash value / bucket index
 * @member:	name of the &struct rhash_head within the hashable struct.
 */
#define rht_for_each_entry_continue(tpos, pos, head, tbl, hash, member)	\
	for (pos = rht_dereference_bucket(head, tbl, hash);		\
261
	     (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member);	\
262
	     pos = rht_dereference_bucket((pos)->next, tbl, hash))
263 264 265

/**
 * rht_for_each_entry - iterate over hash chain of given type
266 267 268 269 270
 * @tpos:	the type * to use as a loop cursor.
 * @pos:	the &struct rhash_head to use as a loop cursor.
 * @tbl:	the &struct bucket_table
 * @hash:	the hash value / bucket index
 * @member:	name of the &struct rhash_head within the hashable struct.
271
 */
272 273 274
#define rht_for_each_entry(tpos, pos, tbl, hash, member)		\
	rht_for_each_entry_continue(tpos, pos, (tbl)->buckets[hash],	\
				    tbl, hash, member)
275 276 277

/**
 * rht_for_each_entry_safe - safely iterate over hash chain of given type
278 279 280 281 282 283
 * @tpos:	the type * to use as a loop cursor.
 * @pos:	the &struct rhash_head to use as a loop cursor.
 * @next:	the &struct rhash_head to use as next in loop cursor.
 * @tbl:	the &struct bucket_table
 * @hash:	the hash value / bucket index
 * @member:	name of the &struct rhash_head within the hashable struct.
284 285 286 287
 *
 * This hash chain list-traversal primitive allows for the looped code to
 * remove the loop cursor from the list.
 */
288 289
#define rht_for_each_entry_safe(tpos, pos, next, tbl, hash, member)	    \
	for (pos = rht_dereference_bucket((tbl)->buckets[hash], tbl, hash), \
290 291 292
	     next = !rht_is_a_nulls(pos) ?				    \
		       rht_dereference_bucket(pos->next, tbl, hash) : NULL; \
	     (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member);	    \
293 294 295
	     pos = next,						    \
	     next = !rht_is_a_nulls(pos) ?				    \
		       rht_dereference_bucket(pos->next, tbl, hash) : NULL)
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310

/**
 * rht_for_each_rcu_continue - continue iterating over rcu hash chain
 * @pos:	the &struct rhash_head to use as a loop cursor.
 * @head:	the previous &struct rhash_head to continue from
 * @tbl:	the &struct bucket_table
 * @hash:	the hash value / bucket index
 *
 * This hash chain list-traversal primitive may safely run concurrently with
 * the _rcu mutation primitives such as rhashtable_insert() as long as the
 * traversal is guarded by rcu_read_lock().
 */
#define rht_for_each_rcu_continue(pos, head, tbl, hash)			\
	for (({barrier(); }),						\
	     pos = rht_dereference_bucket_rcu(head, tbl, hash);		\
311
	     !rht_is_a_nulls(pos);					\
312
	     pos = rcu_dereference_raw(pos->next))
313 314 315

/**
 * rht_for_each_rcu - iterate over rcu hash chain
316 317 318
 * @pos:	the &struct rhash_head to use as a loop cursor.
 * @tbl:	the &struct bucket_table
 * @hash:	the hash value / bucket index
319 320
 *
 * This hash chain list-traversal primitive may safely run concurrently with
321
 * the _rcu mutation primitives such as rhashtable_insert() as long as the
322 323
 * traversal is guarded by rcu_read_lock().
 */
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
#define rht_for_each_rcu(pos, tbl, hash)				\
	rht_for_each_rcu_continue(pos, (tbl)->buckets[hash], tbl, hash)

/**
 * rht_for_each_entry_rcu_continue - continue iterating over rcu hash chain
 * @tpos:	the type * to use as a loop cursor.
 * @pos:	the &struct rhash_head to use as a loop cursor.
 * @head:	the previous &struct rhash_head to continue from
 * @tbl:	the &struct bucket_table
 * @hash:	the hash value / bucket index
 * @member:	name of the &struct rhash_head within the hashable struct.
 *
 * This hash chain list-traversal primitive may safely run concurrently with
 * the _rcu mutation primitives such as rhashtable_insert() as long as the
 * traversal is guarded by rcu_read_lock().
 */
#define rht_for_each_entry_rcu_continue(tpos, pos, head, tbl, hash, member) \
	for (({barrier(); }),						    \
	     pos = rht_dereference_bucket_rcu(head, tbl, hash);		    \
343
	     (!rht_is_a_nulls(pos)) && rht_entry(tpos, pos, member);	    \
344
	     pos = rht_dereference_bucket_rcu(pos->next, tbl, hash))
345 346 347

/**
 * rht_for_each_entry_rcu - iterate over rcu hash chain of given type
348 349 350 351 352
 * @tpos:	the type * to use as a loop cursor.
 * @pos:	the &struct rhash_head to use as a loop cursor.
 * @tbl:	the &struct bucket_table
 * @hash:	the hash value / bucket index
 * @member:	name of the &struct rhash_head within the hashable struct.
353 354
 *
 * This hash chain list-traversal primitive may safely run concurrently with
355
 * the _rcu mutation primitives such as rhashtable_insert() as long as the
356 357
 * traversal is guarded by rcu_read_lock().
 */
358 359 360
#define rht_for_each_entry_rcu(tpos, pos, tbl, hash, member)		\
	rht_for_each_entry_rcu_continue(tpos, pos, (tbl)->buckets[hash],\
					tbl, hash, member)
361 362

#endif /* _LINUX_RHASHTABLE_H */