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